Repository: zingp/NLP Branch: master Commit: 87cddc4db741 Files: 188 Total size: 41.6 MB Directory structure: gitextract_6ic6_av9/ ├── .gitignore ├── LSTM_crf/ │ └── torch_crf.ipynb ├── P000CheatSheet/ │ ├── Matrix_multiplication.ipynb │ ├── Untitled.ipynb │ ├── pack_padded_and_pad_packed.ipynb │ ├── posEmbeding.ipynb │ ├── py-rouge.ipynb │ ├── pytorch_nn_cheat_sheet.ipynb │ ├── struct_tf.ipynb │ └── torch_gather.ipynb ├── P001-Naive-Bayes-Text-Classifier/ │ ├── Database/ │ │ └── SogouC/ │ │ ├── ClassList.txt │ │ └── Sample/ │ │ ├── C000008/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000010/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000013/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000014/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000016/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000020/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000022/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ ├── C000023/ │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ └── 19.txt │ │ └── C000024/ │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ └── 19.txt │ ├── NaiveBayes-TextClassifier.ipynb │ ├── stopwords_cn.txt │ └── 朴素贝叶斯新闻分类.html ├── P002-Pytorch-Two-Layers-Neural-Net/ │ └── two_layer_neural_net.ipynb ├── P003-pytorch-Language-Model/ │ ├── _1_lm_lstm.ipynb │ ├── _2_lm_lstm_bll.ipynb │ └── _3_lm_lstm_lc.ipynb ├── P004-Pytorch-Word2Vec/ │ └── PytorchWord2Vec.ipynb ├── P005-Pytorch-Text-Classifer/ │ ├── _0_情感分类_词向量平均.ipynb │ ├── _1_attention_wordavg.ipynb │ └── _2_self_attention_wordavg.ipynb ├── P006TheAnnotatedTransformer/ │ ├── model_transformer.ipynb │ └── test.ipynb ├── P007PytorchPointerGeneratorNetwork/ │ ├── make_finished_files.ipynb │ ├── pointer-generator/ │ │ ├── __init__.py │ │ ├── attention_decoder.py │ │ ├── batcher.py │ │ ├── beam_search.py │ │ ├── data.py │ │ ├── decode.py │ │ ├── inspect_checkpoint.py │ │ ├── model.py │ │ ├── run_summarization.py │ │ └── util.py │ ├── pointer-generator-network-test.ipynb │ ├── rouge_test.ipynb │ ├── test.ipynb │ └── weibo_news_preprocession.ipynb ├── P008GPT2TextSummary/ │ ├── Untitled.ipynb │ └── gpt2_text_summary.ipynb ├── P009StructureLearning/ │ ├── POS-RNN-hw.ipynb │ ├── dev.txt │ ├── pos-hmm-hw-solution.ipynb │ ├── pos-hmm-hw.ipynb │ └── train.txt ├── P010Model/ │ ├── data.pk │ └── model_transformer.py ├── P011WordSegmenting/ │ └── chinese_word_segmenting.ipynb ├── P012translate/ │ ├── machine_translation.ipynb │ └── torch_test.ipynb ├── P013BertCode/ │ └── bertTrainTest.ipynb ├── P014Aho-Corasick-algorithm/ │ └── AC.ipynb ├── named_entity_recognition/ │ ├── .gitignore │ ├── README.md │ ├── ResumeNER/ │ │ ├── dev.char.bmes │ │ ├── test.char.bmes │ │ └── train.char.bmes │ ├── ckpts/ │ │ ├── bilstm.pkl │ │ ├── bilstm_crf.pkl │ │ ├── crf.pkl │ │ └── hmm.pkl │ ├── data.py │ ├── evaluate.py │ ├── evaluating.py │ ├── main.py │ ├── models/ │ │ ├── __init__.py │ │ ├── bilstm.py │ │ ├── bilstm_crf.py │ │ ├── config.py │ │ ├── crf.py │ │ ├── hmm.py │ │ └── util.py │ ├── output.txt │ ├── requirement.txt │ ├── test.py │ └── utils.py └── word2vector/ ├── fasttext/ │ ├── README.md │ ├── fasttext.py │ ├── run.sh │ ├── utils.py │ └── wget.py ├── glove/ │ ├── README.md │ ├── glove.py │ ├── run.sh │ ├── utils.py │ └── wget.py ├── ngrams/ │ ├── README.md │ ├── gen_model.sh │ └── lm.py ├── requirements.txt └── word2vec/ ├── README.md ├── debug.ipynb ├── run.sh ├── utils.py ├── wget.py ├── word2vec-python3.ipynb └── word2vec.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # .idea .idea # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints/ # IPython profile_default/ ipython_config.py # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.jsoni # picture *.png # data file data/ *.csv *.DS_Store # models *.pt *ubyte.gz *ubyte *.model *.th *.pth ================================================ FILE: LSTM_crf/torch_crf.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Bi-LSTM Conditional Random Field Discussion\n", "- https://pytorch.org/tutorials/beginner/nlp/advanced_tutorial.html\n", "- https://pytorch.apachecn.org/docs/0.3/nlp_advanced_tutorial.html\n", "- 《Log-Linear Models, MEMMs, and CRFs》" ] }, { "cell_type": "code", "execution_count": 69, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.autograd as autograd\n", "import torch.nn as nn\n", "import torch.optim as optim" ] }, { "cell_type": "code", "execution_count": 70, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 70, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.manual_seed(1)" ] }, { "cell_type": "code", "execution_count": 71, "metadata": {}, "outputs": [], "source": [ "def argmax(vec):\n", " # 返回最大概率对应的类别\n", " _, idx = torch.max(vec, 1)\n", " return idx.item()\n", "\n", "\n", "def prepare_sequence(seq, to_ix):\n", " idxs = [to_ix[w] for w in seq]\n", " return torch.tensor(idxs, dtype=torch.long)\n", "\n", "\n", "# 使用数值上稳定的方法为前向算法计算指数和的对数\n", "def log_sum_exp(vec):\n", " # 等于torch.log(torch.sum(torch.exp(vec)))\n", " max_score = vec[0, argmax(vec)]\n", " max_score_broadcast = max_score.view(1, -1).expand(1, vec.size()[1])\n", " return max_score + \\\n", " torch.log(torch.sum(torch.exp(vec - max_score_broadcast)))\n" ] }, { "cell_type": "code", "execution_count": 83, "metadata": {}, "outputs": [], "source": [ "class BiLSTM_CRF(nn.Module):\n", "\n", " def __init__(self, vocab_size, tag_to_ix, embedding_dim, hidden_dim):\n", " super(BiLSTM_CRF, self).__init__()\n", " self.embedding_dim = embedding_dim\n", " self.hidden_dim = hidden_dim\n", " self.vocab_size = vocab_size\n", " self.tag_to_ix = tag_to_ix\n", " self.tagset_size = len(tag_to_ix)\n", "\n", " self.word_embeds = nn.Embedding(vocab_size, embedding_dim)\n", " self.lstm = nn.LSTM(embedding_dim, hidden_dim // 2,\n", " num_layers=1, bidirectional=True)\n", "\n", " # 将LSTM的输出映射到标记空间\n", " self.hidden2tag = nn.Linear(hidden_dim, self.tagset_size)\n", "\n", " # 过渡参数矩阵. 条目 i,j 是 *从* j *到* i 的过渡的分数\n", " self.transitions = nn.Parameter(\n", " torch.randn(self.tagset_size, self.tagset_size))\n", " \n", " print(\"self.transitions:\", self.transitions)\n", " \n", " # 这两句声明强制约束了我们不能向开始标记标注传递和从结束标注传递\n", " self.transitions.data[tag_to_ix[START_TAG], :] = -10000\n", " self.transitions.data[:, tag_to_ix[STOP_TAG]] = -10000\n", " print(\"self.transitions ------>:\", self.transitions)\n", " self.hidden = self.init_hidden()\n", "\n", " def init_hidden(self):\n", " return (torch.randn(2, 1, self.hidden_dim // 2),\n", " torch.randn(2, 1, self.hidden_dim // 2))\n", "\n", " def _forward_alg(self, feats):\n", " # 2 feats (seq, tag_nums)\n", " # 执行前向算法来计算分割函数\n", " init_alphas = torch.full((1, self.tagset_size), -10000.)\n", " print(\"init_alphas:\", init_alphas.size())\n", " # START_TAG 包含所有的分数\n", " init_alphas[0][self.tag_to_ix[START_TAG]] = 0.\n", "\n", " # 将其包在一个变量类型中继而得到自动的反向传播\n", " forward_var = init_alphas\n", "\n", " # 在句子中迭代\n", " # 第一个词的(1, score)\n", " for feat in feats:\n", " print(\" one feat:\", feat.size())\n", " alphas_t = [] # 当前时间步的前向变量\n", " print(\"-\" * 50)\n", " for next_tag in range(self.tagset_size):\n", " print(\"next_tag::\", next_tag)\n", " # 对 emission 得分执行广播机制: 它总是相同的,\n", " # 不论前一个标注如何\n", " emit_score = feat[next_tag].view(1, -1).expand(1, self.tagset_size)\n", " print(\"emit_score:\", emit_score, emit_score.size())\n", " # trans_score 第 i 个条目是从i过渡到 next_tag 的分数(转移到当前标签)\n", " trans_score = self.transitions[next_tag].view(1, -1)\n", " print(\"trans_score:\", trans_score, trans_score.size())\n", " # next_tag_var 第 i 个条目是在我们执行 对数-求和-指数 前\n", " # 边缘的值 (i -> next_tag)\n", " print(\"forward_var:\", forward_var, forward_var.size())\n", " next_tag_var = forward_var + trans_score + emit_score\n", " print(\"next_tag_var:\", next_tag_var, next_tag_var.size())\n", " # 这个标注的前向变量是对所有的分数执行 对数-求和-指数\n", " alphas_t.append(log_sum_exp(next_tag_var).view(1))\n", " print(\"alphas_t:\", alphas_t, len(alphas_t))\n", " forward_var = torch.cat(alphas_t).view(1, -1)\n", " print(\"forward_var:\", forward_var, forward_var.size())\n", " terminal_var = forward_var + self.transitions[self.tag_to_ix[STOP_TAG]]\n", " print(\"self.transitions[self.tag_to_ix[STOP_TAG]\", self.tag_to_ix[STOP_TAG], self.transitions[self.tag_to_ix[STOP_TAG]])\n", " alpha = log_sum_exp(terminal_var)\n", " return alpha\n", "\n", " def _get_lstm_features(self, sentence):\n", " # 1\n", " self.hidden = self.init_hidden()\n", " embeds = self.word_embeds(sentence).view(len(sentence), 1, -1)\n", " # (batch_size, seq_len, hidden_dim//2*2)\n", " lstm_out, self.hidden = self.lstm(embeds, self.hidden)\n", " # 去掉中间的\n", " print(\"lstm_out:\", lstm_out.size())\n", " lstm_out = lstm_out.view(len(sentence), self.hidden_dim)\n", " lstm_feats = self.hidden2tag(lstm_out)\n", " print(\"lstm_feats:\", lstm_feats.size())\n", " # (seq, tag_nums)\n", " return lstm_feats\n", "\n", " def _score_sentence(self, feats, tags):\n", " # 给出标记序列的分数\n", " score = torch.zeros(1)\n", " tags = torch.cat([torch.tensor([self.tag_to_ix[START_TAG]], dtype=torch.long), tags])\n", " for i, feat in enumerate(feats):\n", " score = score + \\\n", " self.transitions[tags[i + 1], tags[i]] + feat[tags[i + 1]]\n", " score = score + self.transitions[self.tag_to_ix[STOP_TAG], tags[-1]]\n", " return score\n", "\n", " def _viterbi_decode(self, feats):\n", " backpointers = []\n", "\n", " # 在对数空间中初始化维特比变量\n", " init_vvars = torch.full((1, self.tagset_size), -10000.)\n", " init_vvars[0][self.tag_to_ix[START_TAG]] = 0\n", "\n", " # 在第 i 步的 forward_var 存放第 i-1 步的维特比变量\n", " forward_var = init_vvars\n", " for feat in feats:\n", " bptrs_t = [] # 存放这一步的后指针\n", " viterbivars_t = [] # 存放这一步的维特比变量\n", "\n", " for next_tag in range(self.tagset_size):\n", " # next_tag_var[i] 存放先前一步标注i的\n", " # 维特比变量, 加上了从标注 i 到 next_tag 的过渡的分数\n", " # 我们在这里并没有将 emission 分数包含进来, 因为\n", " # 最大值并不依赖于它们(我们在下面对它们进行的是相加)\n", " next_tag_var = forward_var + self.transitions[next_tag]\n", " best_tag_id = argmax(next_tag_var)\n", " bptrs_t.append(best_tag_id)\n", " viterbivars_t.append(next_tag_var[0][best_tag_id].view(1))\n", " # 现在将所有 emission 得分相加, 将 forward_var\n", " # 赋值到我们刚刚计算出来的维特比变量集合\n", " forward_var = (torch.cat(viterbivars_t) + feat).view(1, -1)\n", " backpointers.append(bptrs_t)\n", "\n", " # 过渡到 STOP_TAG\n", " terminal_var = forward_var + self.transitions[self.tag_to_ix[STOP_TAG]]\n", " best_tag_id = argmax(terminal_var)\n", " path_score = terminal_var[0][best_tag_id]\n", "\n", " # 跟着后指针去解码最佳路径\n", " best_path = [best_tag_id]\n", " for bptrs_t in reversed(backpointers):\n", " best_tag_id = bptrs_t[best_tag_id]\n", " best_path.append(best_tag_id)\n", " # 弹出开始的标签 (我们并不希望把这个返回到调用函数)\n", " start = best_path.pop()\n", " assert start == self.tag_to_ix[START_TAG] # 健全性检查\n", " best_path.reverse()\n", " return path_score, best_path\n", "\n", " def neg_log_likelihood(self, sentence, tags):\n", " #(seq_len, tag_size)\n", " feats = self._get_lstm_features(sentence)\n", " # 所有可能tag链分数总和\n", " forward_score = self._forward_alg(feats)\n", " # 真实句子分数\n", " gold_score = self._score_sentence(feats, tags)\n", " return forward_score - gold_score\n", "\n", " def forward(self, sentence): # 不要把这和上面的 _forward_alg 混淆\n", " # 得到 BiLSTM 输出分数\n", " lstm_feats = self._get_lstm_features(sentence)\n", "\n", " # 给定特征, 找到最好的路径\n", " score, tag_seq = self._viterbi_decode(lstm_feats)\n", " return score, tag_seq" ] }, { "cell_type": "code", "execution_count": 84, "metadata": {}, "outputs": [], "source": [ "START_TAG = \"\"\n", "STOP_TAG = \"\"\n", "EMBEDDING_DIM = 5\n", "HIDDEN_DIM = 4\n", "\n", "# 制造训练数据\n", "training_data = [(\n", " \"长 城 位 于 北 京 市 延 庆 县\".split(),\n", " \"B I O O B I I B I I\".split()\n", "), (\n", " \"中 国 最 好 的 大 学 是 清 华 大 学\".split(),\n", " \"B I O O O B I O B I I I\".split()\n", ")]\n", "\n", "\n", "word_to_ix = {}\n", "for sentence, tags in training_data:\n", " for word in sentence:\n", " if word not in word_to_ix:\n", " word_to_ix[word] = len(word_to_ix)\n", "\n", "tag_to_ix = {\"B\": 0, \"I\": 1, \"O\": 2, START_TAG: 3, STOP_TAG: 4}" ] }, { "cell_type": "code", "execution_count": 85, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'长': 0, '城': 1, '位': 2, '于': 3, '北': 4, '京': 5, '市': 6, '延': 7, '庆': 8, '县': 9, '中': 10, '国': 11, '最': 12, '好': 13, '的': 14, '大': 15, '学': 16, '是': 17, '清': 18, '华': 19}\n" ] } ], "source": [ "print(word_to_ix)" ] }, { "cell_type": "code", "execution_count": 86, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "self.transitions: Parameter containing:\n", "tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, 1.1781e+00],\n", " [-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.2827e+00],\n", " [-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0897e+00],\n", " [-9.1565e-04, 5.6519e-01, 1.2051e+00, -6.8299e-02, -4.8749e-01],\n", " [-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -9.1309e-01]],\n", " requires_grad=True)\n", "self.transitions ------>: Parameter containing:\n", "tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04],\n", " [-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04],\n", " [-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04],\n", " [-1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04],\n", " [-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " requires_grad=True)\n" ] } ], "source": [ "model = BiLSTM_CRF(len(word_to_ix), tag_to_ix, EMBEDDING_DIM, HIDDEN_DIM)\n", "optimizer = optim.SGD(model.parameters(), lr=0.01, weight_decay=1e-4)" ] }, { "cell_type": "code", "execution_count": 87, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "lstm_out: torch.Size([10, 1, 4])\n", "lstm_feats: torch.Size([10, 5])\n", "训练前: ['长', '城', '位', '于', '北', '京', '市', '延', '庆', '县'] (tensor(5.0105), [2, 1, 2, 1, 2, 1, 2, 1, 2, 1])\n", "tensor([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])\n", "lstm_out: torch.Size([10, 1, 4])\n", "lstm_feats: torch.Size([10, 5])\n", "init_alphas: torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.4104, 0.4104, 0.4104, 0.4104, 0.4104]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[-10000., -10000., -10000., 0., -10000.]]) torch.Size([1, 5])\n", "next_tag_var: tensor([[-1.0001e+04, -9.9986e+03, -9.9992e+03, 3.4595e-01, -2.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([0.3459], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2503, 0.2503, 0.2503, 0.2503, 0.2503]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[-10000., -10000., -10000., 0., -10000.]]) torch.Size([1, 5])\n", "next_tag_var: tensor([[-1.0001e+04, -1.0002e+04, -9.9991e+03, 8.2302e-01, -2.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([0.3459], grad_fn=), tensor([0.8230], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.4697, -0.4697, -0.4697, -0.4697, -0.4697]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[-10000., -10000., -10000., 0., -10000.]]) torch.Size([1, 5])\n", "next_tag_var: tensor([[-1.0002e+04, -1.0001e+04, -1.0001e+04, 1.1466e+00, -2.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([0.3459], grad_fn=), tensor([0.8230], grad_fn=), tensor([1.1466], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[-0.0036, -0.0036, -0.0036, -0.0036, -0.0036]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[-10000., -10000., -10000., 0., -10000.]]) torch.Size([1, 5])\n", "next_tag_var: tensor([[-20000.0039, -20000.0039, -20000.0039, -10000.0039, -20000.0039]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([0.3459], grad_fn=), tensor([0.8230], grad_fn=), tensor([1.1466], grad_fn=), tensor([-10000.0039], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.3023, -0.3023, -0.3023, -0.3023, -0.3023]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[-10000., -10000., -10000., 0., -10000.]]) torch.Size([1, 5])\n", "next_tag_var: tensor([[-1.0001e+04, -9.9988e+03, -1.0000e+04, -2.3649e-01, -2.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([0.3459], grad_fn=), tensor([0.8230], grad_fn=), tensor([1.1466], grad_fn=), tensor([-10000.0039], grad_fn=), tensor([-0.2365], grad_fn=)] 5\n", "forward_var: tensor([[ 3.4595e-01, 8.2302e-01, 1.1466e+00, -1.0000e+04, -2.3649e-01]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.3177, 0.3177, 0.3177, 0.3177, 0.3177]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.4595e-01, 8.2302e-01, 1.1466e+00, -1.0000e+04, -2.3649e-01]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[-2.5370e-01, 2.1270e+00, 1.9019e+00, -9.9998e+03, -9.9999e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([2.7640], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2904, 0.2904, 0.2904, 0.2904, 0.2904]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.4595e-01, 8.2302e-01, 1.1466e+00, -1.0000e+04, -2.3649e-01]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[-1.0323e+00, -1.2989e+00, 2.0854e+00, -9.9991e+03, -9.9999e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([2.7640], grad_fn=), tensor([2.1607], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.4401, -0.4401, -0.4401, -0.4401, -0.4401]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.4595e-01, 8.2302e-01, 1.1466e+00, -1.0000e+04, -2.3649e-01]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[-1.5343e+00, 2.5536e-01, 5.1831e-01, -9.9988e+03, -1.0001e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([2.7640], grad_fn=), tensor([2.1607], grad_fn=), tensor([1.1587], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.0854, 0.0854, 0.0854, 0.0854, 0.0854]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.4595e-01, 8.2302e-01, 1.1466e+00, -1.0000e+04, -2.3649e-01]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9999.5693, -9999.0918, -9998.7686, -19999.9180, -10000.1514]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([2.7640], grad_fn=), tensor([2.1607], grad_fn=), tensor([1.1587], grad_fn=), tensor([-9997.8828], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.2287, -0.2287, -0.2287, -0.2287, -0.2287]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.4595e-01, 8.2302e-01, 1.1466e+00, -1.0000e+04, -2.3649e-01]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[-3.7982e-01, 2.0634e+00, 9.5547e-01, -1.0000e+04, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([2.7640], grad_fn=), tensor([2.1607], grad_fn=), tensor([1.1587], grad_fn=), tensor([-9997.8828], grad_fn=), tensor([2.4120], grad_fn=)] 5\n", "forward_var: tensor([[ 2.7640e+00, 2.1607e+00, 1.1587e+00, -9.9979e+03, 2.4120e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.1949, 0.1949, 0.1949, 0.1949, 0.1949]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 2.7640e+00, 2.1607e+00, 1.1587e+00, -9.9979e+03, 2.4120e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 2.0416e+00, 3.3418e+00, 1.7911e+00, -9.9978e+03, -9.9974e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([3.7369], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2991, 0.2991, 0.2991, 0.2991, 0.2991]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 2.7640e+00, 2.1607e+00, 1.1587e+00, -9.9979e+03, 2.4120e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 1.3945e+00, 4.7397e-02, 2.1061e+00, -9.9970e+03, -9.9973e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([3.7369], grad_fn=), tensor([2.5876], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.3622, -0.3622, -0.3622, -0.3622, -0.3622]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 2.7640e+00, 2.1607e+00, 1.1587e+00, -9.9979e+03, 2.4120e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 9.6160e-01, 1.6708e+00, 6.0821e-01, -9.9966e+03, -9.9980e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([3.7369], grad_fn=), tensor([2.5876], grad_fn=), tensor([2.2793], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.1018, 0.1018, 0.1018, 0.1018, 0.1018]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 2.7640e+00, 2.1607e+00, 1.1587e+00, -9.9979e+03, 2.4120e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9997.1348, -9997.7373, -9998.7402, -19997.7812, -9997.4863]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([3.7369], grad_fn=), tensor([2.5876], grad_fn=), tensor([2.2793], grad_fn=), tensor([-9996.2383], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.3620, -0.3620, -0.3620, -0.3620, -0.3620]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 2.7640e+00, 2.1607e+00, 1.1587e+00, -9.9979e+03, 2.4120e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 1.9049e+00, 3.2677e+00, 8.3419e-01, -9.9982e+03, -9.9980e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([3.7369], grad_fn=), tensor([2.5876], grad_fn=), tensor([2.2793], grad_fn=), tensor([-9996.2383], grad_fn=), tensor([3.5631], grad_fn=)] 5\n", "forward_var: tensor([[ 3.7369e+00, 2.5876e+00, 2.2793e+00, -9.9962e+03, 3.5631e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.1523, 0.1523, 0.1523, 0.1523, 0.1523]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.7369e+00, 2.5876e+00, 2.2793e+00, -9.9962e+03, 3.5631e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 2.9718e+00, 3.7261e+00, 2.8692e+00, -9.9962e+03, -9.9963e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([4.3652], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2306, 0.2306, 0.2306, 0.2306, 0.2306]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.7369e+00, 2.5876e+00, 2.2793e+00, -9.9962e+03, 3.5631e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 2.2988e+00, 4.0584e-01, 3.1583e+00, -9.9954e+03, -9.9962e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([4.3652], grad_fn=), tensor([3.5551], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.3525, -0.3525, -0.3525, -0.3525, -0.3525]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.7369e+00, 2.5876e+00, 2.2793e+00, -9.9962e+03, 3.5631e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 1.9442e+00, 2.1075e+00, 1.7386e+00, -9.9950e+03, -9.9968e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([4.3652], grad_fn=), tensor([3.5551], grad_fn=), tensor([3.0400], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.0509, 0.0509, 0.0509, 0.0509, 0.0509]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.7369e+00, 2.5876e+00, 2.2793e+00, -9.9962e+03, 3.5631e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9996.2119, -9997.3613, -9997.6699, -19996.1875, -9996.3857]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([4.3652], grad_fn=), tensor([3.5551], grad_fn=), tensor([3.0400], grad_fn=), tensor([-9995.3408], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.4251, -0.4251, -0.4251, -0.4251, -0.4251]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 3.7369e+00, 2.5876e+00, 2.2793e+00, -9.9962e+03, 3.5631e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 2.8147e+00, 3.6315e+00, 1.8917e+00, -9.9966e+03, -9.9969e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([4.3652], grad_fn=), tensor([3.5551], grad_fn=), tensor([3.0400], grad_fn=), tensor([-9995.3408], grad_fn=), tensor([4.1123], grad_fn=)] 5\n", "forward_var: tensor([[ 4.3652e+00, 3.5551e+00, 3.0400e+00, -9.9953e+03, 4.1123e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.0359, 0.0359, 0.0359, 0.0359, 0.0359]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 4.3652e+00, 3.5551e+00, 3.0400e+00, -9.9953e+03, 4.1123e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 3.4838e+00, 4.5772e+00, 3.5135e+00, -9.9954e+03, -9.9959e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.0962], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2854, 0.2854, 0.2854, 0.2854, 0.2854]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 4.3652e+00, 3.5551e+00, 3.0400e+00, -9.9953e+03, 4.1123e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 2.9820e+00, 1.4282e+00, 3.9738e+00, -9.9945e+03, -9.9956e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.0962], grad_fn=), tensor([4.3449], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.4203, -0.4203, -0.4203, -0.4203, -0.4203]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 4.3652e+00, 3.5551e+00, 3.0400e+00, -9.9953e+03, 4.1123e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 2.5047e+00, 3.0073e+00, 2.4315e+00, -9.9941e+03, -9.9963e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.0962], grad_fn=), tensor([4.3449], grad_fn=), tensor([3.7807], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.1320, 0.1320, 0.1320, 0.1320, 0.1320]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 4.3652e+00, 3.5551e+00, 3.0400e+00, -9.9953e+03, 4.1123e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9995.5029, -9996.3135, -9996.8281, -19995.2070, -9995.7559]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.0962], grad_fn=), tensor([4.3449], grad_fn=), tensor([3.7807], grad_fn=), tensor([-9994.5918], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.4417, -0.4417, -0.4417, -0.4417, -0.4417]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 4.3652e+00, 3.5551e+00, 3.0400e+00, -9.9953e+03, 4.1123e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 3.4264e+00, 4.5824e+00, 2.6358e+00, -9.9957e+03, -9.9963e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.0962], grad_fn=), tensor([4.3449], grad_fn=), tensor([3.7807], grad_fn=), tensor([-9994.5918], grad_fn=), tensor([4.9592], grad_fn=)] 5\n", "forward_var: tensor([[ 5.0962e+00, 4.3449e+00, 3.7807e+00, -9.9946e+03, 4.9592e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.0857, 0.0857, 0.0857, 0.0857, 0.0857]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.0962e+00, 4.3449e+00, 3.7807e+00, -9.9946e+03, 4.9592e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 4.2645e+00, 5.4168e+00, 4.3040e+00, -9.9946e+03, -9.9950e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.9143], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2034, 0.2034, 0.2034, 0.2034, 0.2034]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.0962e+00, 4.3449e+00, 3.7807e+00, -9.9946e+03, 4.9592e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 3.6309e+00, 2.1359e+00, 4.6325e+00, -9.9938e+03, -9.9948e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.9143], grad_fn=), tensor([5.0038], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.4373, -0.4373, -0.4373, -0.4373, -0.4373]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.0962e+00, 4.3449e+00, 3.7807e+00, -9.9946e+03, 4.9592e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 3.2187e+00, 3.7800e+00, 3.1552e+00, -9.9934e+03, -9.9955e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.9143], grad_fn=), tensor([5.0038], grad_fn=), tensor([4.5247], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.0575, 0.0575, 0.0575, 0.0575, 0.0575]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.0962e+00, 4.3449e+00, 3.7807e+00, -9.9946e+03, 4.9592e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9994.8467, -9995.5977, -9996.1621, -19994.5352, -9994.9834]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.9143], grad_fn=), tensor([5.0038], grad_fn=), tensor([4.5247], grad_fn=), tensor([-9993.8867], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.4256, -0.4256, -0.4256, -0.4256, -0.4256]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.0962e+00, 4.3449e+00, 3.7807e+00, -9.9946e+03, 4.9592e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 4.1734e+00, 5.3883e+00, 3.3926e+00, -9.9950e+03, -9.9955e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([5.9143], grad_fn=), tensor([5.0038], grad_fn=), tensor([4.5247], grad_fn=), tensor([-9993.8867], grad_fn=), tensor([5.7478], grad_fn=)] 5\n", "forward_var: tensor([[ 5.9143e+00, 5.0038e+00, 4.5247e+00, -9.9939e+03, 5.7478e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.0251, 0.0251, 0.0251, 0.0251, 0.0251]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.9143e+00, 5.0038e+00, 4.5247e+00, -9.9939e+03, 5.7478e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 5.0220e+00, 6.0151e+00, 4.9874e+00, -9.9939e+03, -9.9942e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([6.5622], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2328, 0.2328, 0.2328, 0.2328, 0.2328]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.9143e+00, 5.0038e+00, 4.5247e+00, -9.9939e+03, 5.7478e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 4.4784e+00, 2.8243e+00, 5.4060e+00, -9.9931e+03, -9.9940e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([6.5622], grad_fn=), tensor([5.7920], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.4197, -0.4197, -0.4197, -0.4197, -0.4197]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.9143e+00, 5.0038e+00, 4.5247e+00, -9.9939e+03, 5.7478e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 4.0544e+00, 4.4565e+00, 3.9168e+00, -9.9927e+03, -9.9947e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([6.5622], grad_fn=), tensor([5.7920], grad_fn=), tensor([5.2683], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.1857, 0.1857, 0.1857, 0.1857, 0.1857]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.9143e+00, 5.0038e+00, 4.5247e+00, -9.9939e+03, 5.7478e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9993.9004, -9994.8105, -9995.2900, -19993.7012, -9994.0664]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([6.5622], grad_fn=), tensor([5.7920], grad_fn=), tensor([5.2683], grad_fn=), tensor([-9992.9844], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.1530, -0.1530, -0.1530, -0.1530, -0.1530]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 5.9143e+00, 5.0038e+00, 4.5247e+00, -9.9939e+03, 5.7478e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 5.2642e+00, 6.3199e+00, 4.4093e+00, -9.9940e+03, -9.9944e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([6.5622], grad_fn=), tensor([5.7920], grad_fn=), tensor([5.2683], grad_fn=), tensor([-9992.9844], grad_fn=), tensor([6.7226], grad_fn=)] 5\n", "forward_var: tensor([[ 6.5622e+00, 5.7920e+00, 5.2683e+00, -9.9930e+03, 6.7226e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.4723, 0.4723, 0.4723, 0.4723, 0.4723]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 6.5622e+00, 5.7920e+00, 5.2683e+00, -9.9930e+03, 6.7226e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 6.1171e+00, 7.2505e+00, 6.1781e+00, -9.9926e+03, -9.9928e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([7.7598], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2881, 0.2881, 0.2881, 0.2881, 0.2881]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 6.5622e+00, 5.7920e+00, 5.2683e+00, -9.9930e+03, 6.7226e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 5.1816e+00, 3.6678e+00, 6.2048e+00, -9.9921e+03, -9.9930e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([7.7598], grad_fn=), tensor([6.5684], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.5325, -0.5325, -0.5325, -0.5325, -0.5325]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 6.5622e+00, 5.7920e+00, 5.2683e+00, -9.9930e+03, 6.7226e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 4.5895e+00, 5.1319e+00, 4.5475e+00, -9.9919e+03, -9.9938e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([7.7598], grad_fn=), tensor([6.5684], grad_fn=), tensor([5.8922], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[5.0604e-05, 5.0604e-05, 5.0604e-05, 5.0604e-05, 5.0604e-05]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 6.5622e+00, 5.7920e+00, 5.2683e+00, -9.9930e+03, 6.7226e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9993.4375, -9994.2080, -9994.7314, -19992.9844, -9993.2773]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([7.7598], grad_fn=), tensor([6.5684], grad_fn=), tensor([5.8922], grad_fn=), tensor([-9992.3691], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.2954, -0.2954, -0.2954, -0.2954, -0.2954]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 6.5622e+00, 5.7920e+00, 5.2683e+00, -9.9930e+03, 6.7226e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 5.7697e+00, 6.9656e+00, 5.0104e+00, -9.9932e+03, -9.9936e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([7.7598], grad_fn=), tensor([6.5684], grad_fn=), tensor([5.8922], grad_fn=), tensor([-9992.3691], grad_fn=), tensor([7.3330], grad_fn=)] 5\n", "forward_var: tensor([[ 7.7598e+00, 6.5684e+00, 5.8922e+00, -9.9924e+03, 7.3330e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.4129, 0.4129, 0.4129, 0.4129, 0.4129]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 7.7598e+00, 6.5684e+00, 5.8922e+00, -9.9924e+03, 7.3330e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 7.2553e+00, 7.9676e+00, 6.7427e+00, -9.9920e+03, -9.9923e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([8.5466], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.2848, 0.2848, 0.2848, 0.2848, 0.2848]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 7.7598e+00, 6.5684e+00, 5.8922e+00, -9.9924e+03, 7.3330e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 6.3759e+00, 4.4408e+00, 6.8253e+00, -9.9915e+03, -9.9924e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([8.5466], grad_fn=), tensor([7.3735], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.4398, -0.4398, -0.4398, -0.4398, -0.4398]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 7.7598e+00, 6.5684e+00, 5.8922e+00, -9.9924e+03, 7.3330e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 5.8798e+00, 6.0010e+00, 5.2641e+00, -9.9912e+03, -9.9931e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([8.5466], grad_fn=), tensor([7.3735], grad_fn=), tensor([6.8616], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.0043, 0.0043, 0.0043, 0.0043, 0.0043]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 7.7598e+00, 6.5684e+00, 5.8922e+00, -9.9924e+03, 7.3330e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9992.2363, -9993.4277, -9994.1035, -19992.3652, -9992.6631]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([8.5466], grad_fn=), tensor([7.3735], grad_fn=), tensor([6.8616], grad_fn=), tensor([-9991.4893], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.3557, -0.3557, -0.3557, -0.3557, -0.3557]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 7.7598e+00, 6.5684e+00, 5.8922e+00, -9.9924e+03, 7.3330e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 6.9069e+00, 7.6817e+00, 5.5740e+00, -9.9927e+03, -9.9930e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([8.5466], grad_fn=), tensor([7.3735], grad_fn=), tensor([6.8616], grad_fn=), tensor([-9991.4893], grad_fn=), tensor([8.1406], grad_fn=)] 5\n", "forward_var: tensor([[ 8.5466e+00, 7.3735e+00, 6.8616e+00, -9.9915e+03, 8.1406e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", " one feat: torch.Size([5])\n", "--------------------------------------------------\n", "next_tag:: 0\n", "emit_score: tensor([[0.0517, 0.0517, 0.0517, 0.0517, 0.0517]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-9.1739e-01, 9.8618e-01, 4.3756e-01, -6.4480e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 8.5466e+00, 7.3735e+00, 6.8616e+00, -9.9915e+03, 8.1406e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 7.6809e+00, 8.4114e+00, 7.3508e+00, -9.9915e+03, -9.9918e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([9.0146], grad_fn=)] 1\n", "next_tag:: 1\n", "emit_score: tensor([[0.3364, 0.3364, 0.3364, 0.3364, 0.3364]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.6687e+00, -2.4124e+00, 6.4837e-01, 5.7270e-01, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 8.5466e+00, 7.3735e+00, 6.8616e+00, -9.9915e+03, 8.1406e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 7.2143e+00, 5.2976e+00, 7.8464e+00, -9.9906e+03, -9.9915e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([9.0146], grad_fn=), tensor([8.3224], grad_fn=)] 2\n", "next_tag:: 2\n", "emit_score: tensor([[-0.4075, -0.4075, -0.4075, -0.4075, -0.4075]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01, 1.6163e+00, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 8.5466e+00, 7.3735e+00, 6.8616e+00, -9.9915e+03, 8.1406e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 6.6989e+00, 6.8384e+00, 6.2658e+00, -9.9903e+03, -9.9923e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([9.0146], grad_fn=), tensor([8.3224], grad_fn=), tensor([7.7279], grad_fn=)] 3\n", "next_tag:: 3\n", "emit_score: tensor([[0.1421, 0.1421, 0.1421, 0.1421, 0.1421]], grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 8.5466e+00, 7.3735e+00, 6.8616e+00, -9.9915e+03, 8.1406e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ -9991.3115, -9992.4854, -9992.9971, -19991.3457, -9991.7178]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([9.0146], grad_fn=), tensor([8.3224], grad_fn=), tensor([7.7279], grad_fn=), tensor([-9990.5410], grad_fn=)] 4\n", "next_tag:: 4\n", "emit_score: tensor([[-0.5091, -0.5091, -0.5091, -0.5091, -0.5091]],\n", " grad_fn=) torch.Size([1, 5])\n", "trans_score: tensor([[-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04]],\n", " grad_fn=) torch.Size([1, 5])\n", "forward_var: tensor([[ 8.5466e+00, 7.3735e+00, 6.8616e+00, -9.9915e+03, 8.1406e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "next_tag_var: tensor([[ 7.5404e+00, 8.3334e+00, 6.3899e+00, -9.9919e+03, -9.9924e+03]],\n", " grad_fn=) torch.Size([1, 5])\n", "alphas_t: [tensor([9.0146], grad_fn=), tensor([8.3224], grad_fn=), tensor([7.7279], grad_fn=), tensor([-9990.5410], grad_fn=), tensor([8.8007], grad_fn=)] 5\n", "forward_var: tensor([[ 9.0146e+00, 8.3224e+00, 7.7279e+00, -9.9905e+03, 8.8007e+00]],\n", " grad_fn=) torch.Size([1, 5])\n", "self.transitions[self.tag_to_ix[STOP_TAG] 4 tensor([-4.9711e-01, 1.4690e+00, 3.7535e-02, 6.5826e-02, -1.0000e+04],\n", " grad_fn=)\n", "loss: tensor([15.9027], grad_fn=)\n", "lstm_out: torch.Size([10, 1, 4])\n", "lstm_feats: torch.Size([10, 5])\n", "训练后: ['长', '城', '位', '于', '北', '京', '市', '延', '庆', '县'] (tensor(5.0174), [2, 1, 2, 1, 2, 1, 2, 1, 2, 1])\n" ] } ], "source": [ "# 训练前检查预测结果\n", "with torch.no_grad():\n", " precheck_sent = prepare_sequence(training_data[0][0], word_to_ix)\n", " precheck_tags = torch.tensor([tag_to_ix[t] for t in training_data[0][1]], dtype=torch.long)\n", " print(\"训练前:\", training_data[0][0], model(precheck_sent))\n", "\n", "\n", "# 通常不会训这么多epochs, 这是demo数据\n", "# for epoch in range(300): \n", "for sentence, tags in training_data:\n", " # 第一步: 需要记住的是Pytorch会累积梯度\n", " # 我们需要在每次实例之前把它们清除\n", " # ['the', 'wall', 'street', 'journal', 'reported', 'today', 'that', 'apple', 'corporation', 'made', 'money'] \n", " # ['B', 'I', 'I', 'I', 'O', 'O', 'O', 'B', 'I', 'O', 'O']\n", " model.zero_grad()\n", "\n", " # 第二步: 为我们的网络准备好输入, 即把它们转变成单词索引变量 (Variables)\n", " sentence_in = prepare_sequence(sentence, word_to_ix)\n", " targets = torch.tensor([tag_to_ix[t] for t in tags], dtype=torch.long)\n", " print(sentence_in)\n", " # 第三步: 运行前向传递\n", " # 负对数似然\n", " loss = model.neg_log_likelihood(sentence_in, targets)\n", " print(\"loss:\", loss)\n", " break\n", " # 第四步: 计算损失, 梯度以及使用 optimizer.step() 来更新参数\n", " loss.backward()\n", " optimizer.step()\n", "\n", "# 在训练之后检查预测结果\n", "with torch.no_grad():\n", " precheck_sent = prepare_sequence(training_data[0][0], word_to_ix)\n", " print(\"训练后:\", training_data[0][0], model(precheck_sent))" ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([0.1903, 0.9510, 0.7418, 0.6104, 0.4461])" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "feat = torch.rand(5)\n", "feat" ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.7418, 0.7418, 0.7418, 0.7418, 0.7418]])" ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "feat[2].view(1, -1).expand(1, 5)" ] }, { "cell_type": "code", "execution_count": 47, "metadata": {}, "outputs": [ { "ename": "TypeError", "evalue": "expected Tensor as element 0 in argument 0, but got int", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mtorch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcat\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;31mTypeError\u001b[0m: expected Tensor as element 0 in argument 0, but got int" ] } ], "source": [ "# 使用数值上稳定的方法为前向算法计算指数和的对数\n", "\n", "def log_sum_exp(vec):\n", " max_score = vec[0, argmax(vec)]\n", " max_score_broadcast = max_score.view(1, -1).expand(1, vec.size()[1])\n", " return max_score + \\\n", " torch.log(torch.sum(torch.exp(vec - max_score_broadcast)))" ] }, { "cell_type": "code", "execution_count": 102, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.9307, 0.8109, 0.4847, 0.2767, 0.5331]])" ] }, "execution_count": 102, "metadata": {}, "output_type": "execute_result" } ], "source": [ "vec = torch.rand(1,5)\n", "vec" ] }, { "cell_type": "code", "execution_count": 103, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(0.9307)" ] }, "execution_count": 103, "metadata": {}, "output_type": "execute_result" } ], "source": [ "max_score = vec[0, argmax(vec)]\n", "max_score" ] }, { "cell_type": "code", "execution_count": 104, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.9307, 0.9307, 0.9307, 0.9307, 0.9307]])" ] }, "execution_count": 104, "metadata": {}, "output_type": "execute_result" } ], "source": [ "max_score_broadcast = max_score.view(1, -1).expand(1, vec.size()[1])\n", "max_score_broadcast" ] }, { "cell_type": "code", "execution_count": 105, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[ 0.0000, -0.1198, -0.4460, -0.6540, -0.3975]])" ] }, "execution_count": 105, "metadata": {}, "output_type": "execute_result" } ], "source": [ "vec - max_score_broadcast" ] }, { "cell_type": "code", "execution_count": 106, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(1.3135)" ] }, "execution_count": 106, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x_ = torch.log(torch.sum(torch.exp(vec - max_score_broadcast)))\n", "x_" ] }, { "cell_type": "code", "execution_count": 107, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(2.2442)" ] }, "execution_count": 107, "metadata": {}, "output_type": "execute_result" } ], "source": [ "max_score + x_" ] }, { "cell_type": "code", "execution_count": 108, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(2.2442)" ] }, "execution_count": 108, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.log(torch.sum(torch.exp(vec)))" ] }, { "cell_type": "code", "execution_count": 109, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.8894, 0.8167, 0.2974, 0.3956, 0.6985]])" ] }, "execution_count": 109, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x_t = torch.rand(1,5)\n", "x_t" ] }, { "cell_type": "code", "execution_count": 98, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensor(2.1582) tensor(2.1582)\n" ] } ], "source": [ "print(log_sum_exp(x_t), torch.log(torch.sum(torch.exp(x_t))))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 68, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[2.1000, 2.2000]])" ] }, "execution_count": 68, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.cat([torch.tensor(2.1).view(1), torch.tensor(2.2).view(1)]).view(1, -1)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [], "source": [ "_, y = torch.max(x, 1)" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0, 1, 1, 0],\n", " [2, 0, 0, 1]])" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "ename": "RuntimeError", "evalue": "The expanded size of the tensor (3) must match the existing size (32) at non-singleton dimension 1. Target sizes: [1, 3]. Tensor sizes: [1, 32]", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mRuntimeError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mx\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mview\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m-\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mexpand\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msize\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;31mRuntimeError\u001b[0m: The expanded size of the tensor (3) must match the existing size (32) at non-singleton dimension 1. Target sizes: [1, 3]. Tensor sizes: [1, 32]" ] } ], "source": [ "x[0, y].view(1, -1).expand(1, x.size()[1])" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "self.transitions: Parameter containing:\n", "tensor([[-2.0531, 0.1550, -0.7984, -0.7743, 1.3765],\n", " [ 0.3320, 0.0276, -1.6227, 0.3256, -0.3506],\n", " [-0.1191, -0.0183, 0.9328, -1.5924, 1.8704],\n", " [ 0.0952, -0.8484, 0.4585, -0.6996, 0.0129],\n", " [ 0.1481, 0.7436, -0.9027, -1.5715, -0.9465]], requires_grad=True)\n", "self.transitions ------>: Parameter containing:\n", "tensor([[-2.0531e+00, 1.5505e-01, -7.9837e-01, -7.7434e-01, -1.0000e+04],\n", " [ 3.3201e-01, 2.7574e-02, -1.6227e+00, 3.2563e-01, -1.0000e+04],\n", " [-1.1905e-01, -1.8328e-02, 9.3275e-01, -1.5924e+00, -1.0000e+04],\n", " [-1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04],\n", " [ 1.4810e-01, 7.4357e-01, -9.0270e-01, -1.5715e+00, -1.0000e+04]],\n", " requires_grad=True)\n" ] } ], "source": [ "transitions = nn.Parameter(torch.randn(5, 5))\n", " \n", "print(\"self.transitions:\", transitions)\n", "\n", "# These two statements enforce the constraint that we never transfer\n", "# to the start tag and we never transfer from the stop tag\n", "transitions.data[3, :] = -10000\n", "transitions.data[:, 4] = -10000\n", "print(\"self.transitions ------>:\", transitions)" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-10000., -10000., -10000., -10000., -10000.]])" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.full((1, 5), -10000.)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "lstm_out.view(len(sentence), self.hidden_dim)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "x1 = torch.randn(10, 1, 4)\n", "x2 = torch.randn(2, 1, 2)" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(torch.Size([10, 1, 4]), torch.Size([2, 1, 2]))" ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x1.size(), x2.size()" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([10, 4])" ] }, "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x1.view(10, 4).size()" ] }, { "cell_type": "code", "execution_count": 60, "metadata": {}, "outputs": [], "source": [ "x_one = torch.tensor(0.2)" ] }, { "cell_type": "code", "execution_count": 61, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(0.2000)" ] }, "execution_count": 61, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x_one" ] }, { "cell_type": "code", "execution_count": 64, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.2000, 0.2000, 0.2000, 0.2000, 0.2000]])" ] }, "execution_count": 64, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x_one.view(1, -1).expand(1, 5)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/Matrix_multiplication.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import numpy as np" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(2, 3)" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x = np.array([[0,1,0],\n", " [0,0,1]])\n", "x.shape" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(3, 4)" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "W = np.array([[1,2,3,4],\n", " [2,2,2,2],\n", " [5,5,5,5]])\n", "W.shape" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([[2, 2, 2, 2],\n", " [5, 5, 5, 5]])" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x.dot(W) # 第r行乘以c列得到新矩阵的r行,c列。行乘每列。" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.10" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/Untitled.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "?torch.Tensor.scatter_add_" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "x = torch.rand(2, 5)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.5788, 0.9383, 0.4485, 0.3223, 0.4562],\n", " [0.1863, 0.9070, 0.9751, 0.5211, 0.4711]])" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "b = torch.ones(3, 5)" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1., 1., 1., 1., 1.],\n", " [1., 1., 1., 1., 1.],\n", " [1., 1., 1., 1., 1.]])" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "b" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1.5788, 1.9070, 1.9751, 1.3223, 1.4562],\n", " [1.0000, 1.9383, 1.0000, 1.5211, 1.0000],\n", " [1.1863, 1.0000, 1.4485, 1.0000, 1.4711]])" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "b.scatter_add(0, torch.tensor([[0, 1, 2, 0, 0], [2, 0, 0, 1, 2]]), x)" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1.5788, 1.9070, 1.9751, 1.3223, 1.4562],\n", " [1.0000, 1.9383, 1.0000, 1.5211, 1.0000],\n", " [1.1863, 1.0000, 1.4485, 1.0000, 1.4711]])" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "b.scatter_add(0, torch.tensor([[0, 1, 2, 0, 0], [2, 0, 0, 1, 2]]), x)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/pack_padded_and_pad_packed.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## pack_padded_sequence\n", "- https://pytorch.org/docs/1.0.1/nn.html#torch.nn.utils.rnn.pack_padded_sequence\n", "- 在使用深度学习特别是LSTM进行文本分析时,经常会遇到文本长度不一样的情况,此时就需要对同一个batch中的不同文本使用padding的方式进行文本长度对齐,方便将训练数据输入到LSTM模型进行训练,同时为了保证模型训练的精度,应该同时告诉LSTM相关padding的情况,此时,pytorch中的pack_padded_sequence就有了用武之地。\n", "- 通常pading的位置向量都是0,我们需要使用pack_padded_sequence() 把数据压紧,即去掉pading的部分,减少冗余。然后再输入网络中,如lstm等。通过网络后的结果也是压紧的,需要通过pad_packed_sequence()还原。\n", "- torch.nn.utils.rnn.pack_padded_sequence(input, lengths, batch_first=False)\n", "```\n", "input (Tensor) – padded batch of variable length sequences.\n", "lengths (Tensor) – list of sequences lengths of each batch element.\n", "batch_first (bool, optional) – if True, the input is expected in B x T x * format.\n", "```\n", "- pad_packed_sequence 解压" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn as nn\n", "import torch.nn.utils as utils\n", "from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequence" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "1.0.1\n" ] } ], "source": [ "print(torch.__version__)" ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [], "source": [ "# 定义一个双向lstm网络层\n", "lstm = nn.LSTM(4, 100, num_layers=1, batch_first=True, bidirectional=True) " ] }, { "cell_type": "code", "execution_count": 47, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([4, 3, 4])" ] }, "execution_count": 47, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 定义一个有padding的序列数据,也就是有冗余的0\n", "x = torch.tensor([[[1,2,3,4],\n", " [2,3,4,5],\n", " [2,5,6,0]],\n", " [[1,2,1,1],\n", " [1,6,7,9],\n", " [0,0,0,0]],\n", " [[1,2,3,4],\n", " [1,1,1,1],\n", " [0,0,0,0]],\n", " [[1,2,3,4],\n", " [0,0,0,0],\n", " [0,0,0,0]],\n", " ])\n", "x = x.float()\n", "x.size()" ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "PackedSequence(data=tensor([[1., 2., 3., 4.],\n", " [1., 2., 1., 1.],\n", " [1., 2., 3., 4.],\n", " [1., 2., 3., 4.],\n", " [2., 3., 4., 5.],\n", " [1., 6., 7., 9.],\n", " [1., 1., 1., 1.],\n", " [2., 5., 6., 0.]]), batch_sizes=tensor([4, 3, 1]))" ] }, "execution_count": 48, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 压紧数据,去掉冗余\n", "packed = pack_padded_sequence(x, torch.tensor([3, 2, 2,1]), batch_first=True) # 打包,压缩\n", "packed" ] }, { "cell_type": "code", "execution_count": 49, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "PackedSequence(data=tensor([[-0.1277, -0.0269, -0.0070, ..., -0.0997, 0.0827, 0.0156],\n", " [-0.0272, -0.0503, -0.0239, ..., -0.0778, 0.0617, -0.0288],\n", " [-0.1277, -0.0269, -0.0070, ..., -0.0498, 0.0694, 0.0405],\n", " ...,\n", " [-0.2541, -0.0296, -0.0304, ..., -0.0526, 0.0918, 0.0056],\n", " [-0.0754, -0.0565, -0.0133, ..., -0.0139, 0.0202, 0.0313],\n", " [-0.2212, -0.0844, -0.0038, ..., -0.0590, -0.0370, 0.0686]],\n", " grad_fn=), batch_sizes=tensor([4, 3, 1]))" ] }, "execution_count": 49, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 通过lstm进行计算\n", "output, hidden = lstm(packed)\n", "# 得到的结果也是压紧的\n", "output" ] }, { "cell_type": "code", "execution_count": 50, "metadata": {}, "outputs": [], "source": [ "# 解压\n", "encoder_outputs, lenghts = pad_packed_sequence(output, batch_first=True) # 解包" ] }, { "cell_type": "code", "execution_count": 51, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[-0.1277, -0.0269, -0.0070, ..., -0.0997, 0.0827, 0.0156],\n", " [-0.1971, -0.0458, -0.0240, ..., -0.0674, 0.0357, 0.0496],\n", " [-0.2212, -0.0844, -0.0038, ..., -0.0590, -0.0370, 0.0686]],\n", "\n", " [[-0.0272, -0.0503, -0.0239, ..., -0.0778, 0.0617, -0.0288],\n", " [-0.2541, -0.0296, -0.0304, ..., -0.0526, 0.0918, 0.0056],\n", " [ 0.0000, 0.0000, 0.0000, ..., 0.0000, 0.0000, 0.0000]],\n", "\n", " [[-0.1277, -0.0269, -0.0070, ..., -0.0498, 0.0694, 0.0405],\n", " [-0.0754, -0.0565, -0.0133, ..., -0.0139, 0.0202, 0.0313],\n", " [ 0.0000, 0.0000, 0.0000, ..., 0.0000, 0.0000, 0.0000]],\n", "\n", " [[-0.1277, -0.0269, -0.0070, ..., -0.0408, 0.0545, 0.0386],\n", " [ 0.0000, 0.0000, 0.0000, ..., 0.0000, 0.0000, 0.0000],\n", " [ 0.0000, 0.0000, 0.0000, ..., 0.0000, 0.0000, 0.0000]]],\n", " grad_fn=)" ] }, "execution_count": 51, "metadata": {}, "output_type": "execute_result" } ], "source": [ "encoder_outputs" ] }, { "cell_type": "code", "execution_count": 52, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([4, 3, 200])" ] }, "execution_count": 52, "metadata": {}, "output_type": "execute_result" } ], "source": [ "encoder_outputs.size() # size: [3, 3, 200] 双向的,所以是200维度" ] }, { "cell_type": "code", "execution_count": 53, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([4, 3, 200])" ] }, "execution_count": 53, "metadata": {}, "output_type": "execute_result" } ], "source": [ "encoder_outputs = encoder_outputs.contiguous()\n", "encoder_outputs.size()" ] }, { "cell_type": "code", "execution_count": 54, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([12, 200])" ] }, "execution_count": 54, "metadata": {}, "output_type": "execute_result" } ], "source": [ "feature = encoder_outputs.view(-1, 200)\n", "feature.size()" ] }, { "cell_type": "code", "execution_count": 55, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([12, 200])" ] }, "execution_count": 55, "metadata": {}, "output_type": "execute_result" } ], "source": [ "line = nn.Linear(200,200, bias=False)\n", "y = line(feature)\n", "y.size()" ] }, { "cell_type": "code", "execution_count": 56, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([3, 2, 2, 1])" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "lenghts" ] }, { "cell_type": "code", "execution_count": 57, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "2" ] }, "execution_count": 57, "metadata": {}, "output_type": "execute_result" } ], "source": [ "## 来看下双向lstm的输出\n", "len(hidden) # 双向lstm 结果是2 " ] }, { "cell_type": "code", "execution_count": 65, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([2, 4, 100])" ] }, "execution_count": 65, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h, c = hidden\n", "h.size()" ] }, { "cell_type": "code", "execution_count": 66, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([2, 4, 100])" ] }, "execution_count": 66, "metadata": {}, "output_type": "execute_result" } ], "source": [ "c.size()" ] }, { "cell_type": "code", "execution_count": 70, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([4, 200])" ] }, "execution_count": 70, "metadata": {}, "output_type": "execute_result" } ], "source": [ "inp = h.transpose(0, 1).contiguous().view(-1, 200) # view就是reshape\n", "inp.size()" ] }, { "cell_type": "code", "execution_count": 61, "metadata": {}, "outputs": [], "source": [ "# 定义一个单向lstm网络层\n", "lstm2 = nn.LSTM(4, 100, num_layers=1, batch_first=True) " ] }, { "cell_type": "code", "execution_count": 62, "metadata": {}, "outputs": [], "source": [ "out, hid = lstm2(x)" ] }, { "cell_type": "code", "execution_count": 63, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "2" ] }, "execution_count": 63, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(hid)" ] }, { "cell_type": "code", "execution_count": 64, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([1, 4, 100])" ] }, "execution_count": 64, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hid[0].size()" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "## 有必要了解一下lstm的输出结果" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/posEmbeding.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import math" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([5000, 512])" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "max_len = 5000\n", "d_model = 512\n", "pe = torch.zeros(max_len, d_model)\n", "pe.size()" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " ...,\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.]])" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pe[:,0::2]" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "position = torch.arange(0, max_len, 1.).unsqueeze(1)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'torch.FloatTensor'" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "div_term = torch.exp(torch.arange(0, d_model, 2.0) * -(math.log(10000.0) / d_model))\n", "div_term.type()" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'torch.FloatTensor'" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "position.type()" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([5000, 512])" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pe[:, 0::2] = torch.sin(position * div_term)\n", "pe[:, 1::2] = torch.cos(position * div_term)\n", "pe.size()" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([1, 5000, 512])" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pe = pe.unsqueeze(0)\n", "pe.size()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/py-rouge.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import rouge\n", "from rouge import Rouge" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "a = [\"i am a student from xx school\"] # 预测摘要 (可以是列表也可以是句子)\n", "b = [\"i am a student from school on china\"] #真实摘要\n", "\n", "rouge_obj = Rouge()\n", "rouge_score = rouge_obj.get_scores(a, b)\n", "# print(rouge_score[0][\"rouge-1\"])\n", "# print(rouge_score[0][\"rouge-2\"])\n", "# print(rouge_score[0][\"rouge-l\"])" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{}\n" ] } ], "source": [ "print(rouge_score)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "def prepare_results(p, r, f):\n", " return '\\t{}:\\t{}: {:5.2f}\\t{}: {:5.2f}\\t{}: {:5.2f}'.format(metric, 'P', 100.0 * p, 'R', 100.0 * r, 'F1', 100.0 * f)\n" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Evaluation with Avg\n", "\trouge-1:\tP: 15.05\tR: 13.59\tF1: 14.29\n", "\trouge-2:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\trouge-3:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\trouge-4:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\trouge-l:\tP: 16.88\tR: 15.50\tF1: 16.16\n", "\trouge-w:\tP: 8.29\tR: 4.04\tF1: 5.43\n", "\n", "Evaluation with Best\n", "\trouge-1:\tP: 15.05\tR: 13.59\tF1: 14.29\n", "\trouge-2:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\trouge-3:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\trouge-4:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\trouge-l:\tP: 16.88\tR: 15.50\tF1: 16.16\n", "\trouge-w:\tP: 8.29\tR: 4.04\tF1: 5.43\n", "\n", "Evaluation with Individual\n", "\tHypothesis #0 & Reference #0: \n", "\t\trouge-1:\tP: 15.05\tR: 13.59\tF1: 14.29\n", "\n", "\tHypothesis #0 & Reference #0: \n", "\t\trouge-2:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\n", "\tHypothesis #0 & Reference #0: \n", "\t\trouge-3:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\n", "\tHypothesis #0 & Reference #0: \n", "\t\trouge-4:\tP: 0.00\tR: 0.00\tF1: 0.00\n", "\n", "\tHypothesis #0 & Reference #0: \n", "\t\trouge-l:\tP: 16.88\tR: 15.50\tF1: 16.16\n", "\n", "\tHypothesis #0 & Reference #0: \n", "\t\trouge-w:\tP: 8.29\tR: 4.04\tF1: 5.43\n", "\n", "\n" ] } ], "source": [ "for aggregator in ['Avg', 'Best', 'Individual']:\n", " print('Evaluation with {}'.format(aggregator))\n", " apply_avg = aggregator == 'Avg'\n", " apply_best = aggregator == 'Best'\n", "\n", " evaluator = rouge.Rouge(metrics=['rouge-n', 'rouge-l', 'rouge-w'],\n", " max_n=4,\n", " limit_length=True,\n", " length_limit=100,\n", " length_limit_type='words',\n", " apply_avg=apply_avg,\n", " apply_best=apply_best,\n", " alpha=0.5, # Default F1_score\n", " weight_factor=1.2,\n", " stemming=True)\n", "\n", "\n", "# hypothesis_1 = \"我 是 中国人。\\n我 来自 中国 北京。\\n\"\n", "# references_1 = [\"我 来自 北京。\\n\", \"我 是 中国人。\\n\",\n", "# ]\n", "\n", " hypothesis_2 = \"China 's government said Thursday that two prominent dissidents arrested this week are suspected of endangering national security _ the clearest sign yet Chinese leaders plan to quash a would-be opposition party .\\nOne leader of a suppressed new political party will be tried on Dec. 17 on a charge of colluding with foreign enemies of China '' to incite the subversion of state power , '' according to court documents given to his wife on Monday .\\nWith attorneys locked up , harassed or plain scared , two prominent dissidents will defend themselves against charges of subversion Thursday in China 's highest-profile dissident trials in two years .\\n\"\n", " references_2 = \"Hurricane Mitch, category 5 hurricane, brought widespread death and destruction to Central American.\\nEspecially hard hit was Honduras where an estimated 6,076 people lost their lives.\\nThe hurricane, which lingered off the coast of Honduras for 3 days before moving off, flooded large areas, destroying crops and property.\\nThe U.S. and European Union were joined by Pope John Paul II in a call for money and workers to help the stricken area.\\nPresident Clinton sent Tipper Gore, wife of Vice President Gore to the area to deliver much needed supplies to the area, demonstrating U.S. commitment to the recovery of the region.\\n\"\n", "# hypothesis_2 = \"我 爱 中国。\\n\"\n", "# references_2 = \"我 爱 你 中国。\\n\"\n", " all_hypothesis = [hypothesis_2]\n", " all_references = [references_2]\n", "\n", " scores = evaluator.get_scores(all_hypothesis, all_references)\n", "\n", " for metric, results in sorted(scores.items(), key=lambda x: x[0]):\n", " if not apply_avg and not apply_best: # value is a type of list as we evaluate each summary vs each reference\n", " for hypothesis_id, results_per_ref in enumerate(results):\n", " nb_references = len(results_per_ref['p'])\n", " for reference_id in range(nb_references):\n", " print('\\tHypothesis #{} & Reference #{}: '.format(hypothesis_id, reference_id))\n", " print('\\t' + prepare_results(results_per_ref['p'][reference_id], results_per_ref['r'][reference_id], results_per_ref['f'][reference_id]))\n", " print()\n", " else:\n", " print(prepare_results(results['p'], results['r'], results['f']))\n", " print()" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [], "source": [ "# 好像只能计算英文啊" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/pytorch_nn_cheat_sheet.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn as nn\n", "from torch.autograd import Variable\n", "import torch.nn.functional as F" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## nn.Embedding介绍\n", "- [https://pytorch.org/docs/stable/nn.html](https://pytorch.org/docs/stable/nn.html)\n", "----\n", "- pytorch里面实现word embedding是通过一个函数来实现的:nn.Embedding。Embedding的作用就是将词语向量化,通常会将词语表示为一个连续箱梁。\n", "- 官方介绍\n", " - 一个简单的查找表,用于存储固定字典和大小的嵌入。\n", " - 此模块通常用于存储单词嵌入并使用索引检索它们。模块的输入是索引列表,输出是相应的字嵌入。\n", " \n", "- CLASS torch.nn.Embedding(num_embeddings, embedding_dim, padding_idx=None, max_norm=None, norm_type=2.0, scale_grad_by_freq=False, sparse=False, _weight=None)\n", "\n", "- 参数:\n", " - num_embeddings (int) – 词典的大小,也就是词典有多少个词。比如你有一个30000的词典,这里就是30000.\n", "\n", " - embedding_dim (int) – the size of each embedding vector。将词语表示成embedding_dim维的向量。指定向量的维度。\n", "\n", " - padding_idx (int, optional) – If given, pads the output with the embedding vector at padding_idx (initialized to zeros) whenever it encounters the index.设置padding_idx后,padding_idx中的嵌入向量将初始化为全零。但是,请注意,之后可以修改该向量,例如,使用定制的初始化方法,从而改变用于填充输出的向量。嵌入中此向量的渐变始终为零。\n", "\n", " - max_norm (float, optional) – If given, each embedding vector with norm larger than max_norm is renormalized to have norm max_norm.\n", " - norm_type (float, optional) – The p of the p-norm to compute for the max_norm option. Default 2.\n", " - scale_grad_by_freq (boolean, optional) – If given, this will scale gradients by the inverse of frequency of the words in the mini-batch. Default False.\n", " - sparse (bool, optional) – If True, gradient w.r.t. weight matrix will be a sparse tensor. See Notes for more details regarding sparse gradients.\n", "- 看个例子吧" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensor([[ 0.3746, -1.0797, -0.6317, -0.6281, -0.4120]],\n", " grad_fn=)\n" ] } ], "source": [ "# 定义一个词典:word2idx = {'hello': 0, 'world': 1, '!':2},每个单词我们需要用一个数字去表示它,这里对于hello这个词,用0来表示它。\n", "word2idx = {'hello': 0, 'world': 1, '!':2}\n", "\n", "# 定义Embedding层,这里的3表示词典共有3个词,5表示5维度,其实也就是一个3x5的矩阵.\n", "# 如果你有1000个词,每个词希望是100维,你就可以这样建立一个word embedding,nn.Embedding(1000, 100)。\n", "# 这就相当于词语和表示词语的向量建立了一张表,想知道一个词的向量表示可以通过这张表去查。\n", "embeds = nn.Embedding(3, 5)\n", "\n", "# 如何查询hello这个词的向量表示呢?\n", "\n", "# 通过词语在原来字典中的索引查词向量,hello的索引是0\n", "hello_idx = torch.LongTensor([word2idx['hello']])\n", "\n", "# 特别注意这里需要一个Variable,因为我们需要访问nn.Embedding里面定义的元素,且word embeding算是神经网络里面的参数,所以我们需要定义Variable\n", "hello_idx = Variable(hello_idx)\n", "# 现在输入Variable格式的索引就可以查看词向量了\n", "hello_embed = embeds(hello_idx)\n", "\n", "# 输出hello这个词的<初始词向量>\n", "print(hello_embed)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 注意\n", "- 注意这里的词向量的建立只是**初始的词向量**,并没有经过任何修改优化,我们需要建立神经网络通过learning修改word embedding里面的参数使得word embedding每一个词向量能够表示每一个不同的词。" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## nn.LSTM" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "rnn = nn.LSTM(10, 20) " ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "input_data = torch.randn(5, 3, 10) # seq_len, batch, input_size" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# h0 = torch.randn(1, 3, 20) # 初始化\n", "# h0" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "# c0 = torch.randn(1, 3, 20)\n", "# c0" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "output, (hn, cn) = rnn(input_data)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([5, 3, 20])" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "output.size()" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-0.1023, -0.2195, -0.3629, -0.0977, -0.1240, -0.1357, -0.2260, -0.0529,\n", " 0.0173, 0.0663, 0.0418, -0.0313, -0.1414, 0.1390, 0.0395, -0.2833,\n", " 0.0786, -0.0190, 0.0141, -0.0871],\n", " [-0.0481, -0.1797, -0.0957, -0.0579, 0.0646, -0.1703, 0.0248, -0.1381,\n", " -0.1028, 0.1341, 0.1645, 0.0634, -0.1689, 0.0230, -0.0375, -0.1674,\n", " -0.0029, -0.0914, 0.0958, -0.0738],\n", " [-0.0141, -0.0795, 0.0149, 0.0237, 0.0830, -0.2079, 0.2409, -0.0418,\n", " -0.0247, 0.2118, 0.1507, -0.0559, -0.1114, -0.0887, -0.2693, -0.0222,\n", " 0.0394, -0.0820, -0.0806, -0.0231]], grad_fn=)" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "output[4]" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[-0.1023, -0.2195, -0.3629, -0.0977, -0.1240, -0.1357, -0.2260,\n", " -0.0529, 0.0173, 0.0663, 0.0418, -0.0313, -0.1414, 0.1390,\n", " 0.0395, -0.2833, 0.0786, -0.0190, 0.0141, -0.0871],\n", " [-0.0481, -0.1797, -0.0957, -0.0579, 0.0646, -0.1703, 0.0248,\n", " -0.1381, -0.1028, 0.1341, 0.1645, 0.0634, -0.1689, 0.0230,\n", " -0.0375, -0.1674, -0.0029, -0.0914, 0.0958, -0.0738],\n", " [-0.0141, -0.0795, 0.0149, 0.0237, 0.0830, -0.2079, 0.2409,\n", " -0.0418, -0.0247, 0.2118, 0.1507, -0.0559, -0.1114, -0.0887,\n", " -0.2693, -0.0222, 0.0394, -0.0820, -0.0806, -0.0231]]],\n", " grad_fn=)" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hn" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 结论\n", "- 我们可以看到hn是最后一次输出,output是所有输出。因此output的最后一个元素和hn是一样的。\n", "- cn是细胞状态tensor" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([1, 3, 20])" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hn.size()" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([1, 3, 20])" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cn.size()" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[-0.2094, -0.5293, -0.7267, -0.1446, -0.1959, -0.2274, -0.4356,\n", " -0.1363, 0.0553, 0.1174, 0.1804, -0.1037, -0.3693, 0.3561,\n", " 0.0795, -0.5906, 0.2023, -0.0374, 0.0280, -0.2041],\n", " [-0.1044, -0.4315, -0.1768, -0.1072, 0.1064, -0.3795, 0.0522,\n", " -0.3305, -0.2329, 0.2719, 0.3601, 0.1317, -0.4066, 0.0497,\n", " -0.0728, -0.4711, -0.0061, -0.1587, 0.1639, -0.1596],\n", " [-0.0240, -0.2553, 0.0266, 0.0601, 0.1633, -0.5237, 0.4116,\n", " -0.0992, -0.0575, 0.3210, 0.2774, -0.1068, -0.2709, -0.1610,\n", " -0.4528, -0.0570, 0.0676, -0.1944, -0.1193, -0.0365]]],\n", " grad_fn=)" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cn" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "fc = nn.Linear(20, 20)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "out = fc(output)" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([5, 3, 20])" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "out.size()" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([ 0.0896, -0.0571, -0.0152, -0.0691, -0.0199, -0.0406, 0.2308, -0.2142,\n", " -0.1767, -0.0639, -0.0081, 0.1343, -0.1078, -0.2064, -0.1733, -0.1182,\n", " 0.1361, -0.2758, 0.1620, 0.1076], grad_fn=)" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "out[0][0]" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "rnn2 = nn.LSTM(10, 20, batch_first=True) " ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "# bacth,seq_len, word_vec_dim\n", "input_data2 = torch.randn(32, 5, 10) # hc层size(layer_num, bacth, out_dim)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "out, (hn, cn) = rnn2(input_data2)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "torch.Size([32, 5, 20]) torch.Size([1, 32, 20]) torch.Size([1, 32, 20])\n" ] } ], "source": [ "print(out.size(), hn.size(), cn.size())" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [], "source": [ "a = torch.randn(2).unsqueeze(0)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-0.4607, -0.4461]])" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "a" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 两个形状相同的tonsor相乘" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "a = torch.tensor([[1,2,3], \n", " [2,3,4]])\n", "b = torch.tensor([[2,2,2], \n", " [2,2,1]])" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[2, 4, 6],\n", " [4, 6, 4]])" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "c = a*b\n", "c" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 1.0323, 0.1239, 1.1077, 0.2164, 0.4767, 0.4025, 0.2399,\n", " -0.1330, 0.5671, 0.1008],\n", " [ 0.0843, 0.7463, 0.6705, 0.1488, 0.6736, -0.2464, -0.5746,\n", " 0.6086, 0.9737, 0.0711],\n", " [ 1.8035, 0.8987, -0.6655, -1.0680, -0.5026, 0.5141, 1.4208,\n", " 0.2101, 0.4502, 1.3422],\n", " [ 1.0504, 1.3057, 0.2206, -1.7455, -1.2488, -0.4145, 0.8532,\n", " 0.8481, 0.6439, 0.8128],\n", " [ 0.7198, 0.6862, 0.3618, 0.1609, -0.0922, -0.3626, 0.5601,\n", " -0.0230, -1.4171, -0.9066]],\n", "\n", " [[ 1.2316, 0.4093, -0.0454, -0.0887, -0.0333, -0.4516, 0.8812,\n", " 0.6673, -2.0286, 0.5245],\n", " [-0.6719, -1.0660, 1.0303, -2.0076, -0.1587, -0.7049, -0.4192,\n", " -1.6840, -0.0913, -0.8211],\n", " [-0.0361, 1.6295, -0.2098, -0.5681, 0.6524, 0.3682, -1.0326,\n", " 0.8690, -0.8374, -0.7785],\n", " [-1.1685, -0.4528, 0.8089, -0.6248, -1.4823, 1.7067, 0.0343,\n", " -0.1233, -0.4694, 0.7405],\n", " [ 1.4695, -0.7846, 1.3884, 1.2469, 0.4381, -0.4211, 1.2470,\n", " 1.1484, -1.1954, 1.2651]]])" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "a = torch.randn(2, 5, 10)\n", "a" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([2, 5])" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "c = a.sum(2)\n", "c.size()" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[-0.1212, -1.1875, -0.8154, -0.2603, 0.1208],\n", " [-1.7234, 0.9401, 0.5191, -1.1418, 0.0485],\n", " [-0.5145, 0.5186, 0.4932, 0.5364, -0.8625]],\n", "\n", " [[-0.2743, -0.4564, 1.8824, 0.5533, 2.1877],\n", " [-0.9605, 1.0729, 0.4791, -0.9585, -0.0132],\n", " [-1.3529, -0.8772, 0.2921, -0.8205, -0.1080]]])" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x = torch.randn([2,3,5])\n", "x " ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[0, 0, 0, 0, 1],\n", " [0, 1, 1, 0, 1],\n", " [0, 1, 1, 1, 0]],\n", "\n", " [[0, 0, 1, 1, 1],\n", " [0, 1, 1, 0, 0],\n", " [0, 0, 1, 0, 0]]], dtype=torch.uint8)" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "mask = (x>0)\n", "mask" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([0.1208, 0.9401, 0.5191, 0.0485, 0.5186, 0.4932, 0.5364, 1.8824, 0.5533,\n", " 2.1877, 1.0729, 0.4791, 0.2921])" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "d = x[mask] # 压扁成一个列表\n", "d" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [], "source": [ "import torch.nn.functional as F" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [], "source": [ "s = F.logsigmoid(d)" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(-0.4262)" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "s.mean() # 得到一个数字" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(-1.1681)" ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.log(1 - torch.sigmoid(d)).mean()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## nn.Parameter" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [], "source": [ "?nn.Parameter" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([10])" ] }, "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ "embed_dim = 10\n", "data = torch.randn(embed_dim)\n", "data.size()" ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [], "source": [ "u = nn.Parameter(data)" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Parameter containing:\n", "tensor([-0.6100, 0.1809, 0.7675, -0.5735, 0.1123, 0.4894, -0.8654, -1.0640,\n", " -1.2618, -0.8684], requires_grad=True)" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "u" ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 0.5720, -0.4873, -0.1925, -0.1972, -0.0626, 1.5768, 1.0680,\n", " 1.2321, -0.4564, -0.0703],\n", " [ 0.5284, -0.7402, 0.4011, 0.0832, -1.9947, -0.9723, 0.9434,\n", " 0.4962, 0.3930, 0.5200],\n", " [ 0.2165, 0.9300, 1.4055, -0.9435, -0.1495, -0.5030, 0.3633,\n", " 0.9413, 1.4385, -0.7606],\n", " [ 0.2950, 0.9037, -0.9711, 0.0556, -1.5093, -1.8391, -0.6188,\n", " -1.2471, -0.8059, -0.6884],\n", " [ 1.0337, -0.6484, 2.1221, 0.9859, 2.1802, -2.2094, -0.0289,\n", " 0.8381, 0.3553, 0.2861],\n", " [-0.1302, 1.4063, 0.4567, -1.1085, 1.9764, -0.1228, 0.9814,\n", " 0.9537, -0.6450, 0.7175],\n", " [-0.1446, -0.1117, 0.0594, -1.7827, -0.4155, -0.0715, 0.0213,\n", " 0.7226, 0.6909, 1.2786],\n", " [ 0.6332, 0.4564, -0.1636, 0.3665, 0.6061, -0.0314, -1.5227,\n", " 0.0369, 1.3917, -0.5979]],\n", "\n", " [[-1.3836, -0.8652, -1.3644, -0.8995, -0.2949, 1.2752, 0.1303,\n", " -0.1627, -0.0075, 0.5403],\n", " [-0.6614, 0.1664, -1.5498, 0.5317, 0.2322, -1.9863, -1.3148,\n", " 1.4275, 0.2129, -0.4953],\n", " [ 0.8388, 1.4253, 0.0090, -0.3771, 0.9039, -0.7850, 1.3202,\n", " -0.2476, -0.6281, -0.1383],\n", " [ 0.6462, -1.8107, -1.2915, -2.1775, -0.3828, 1.3362, -2.3330,\n", " -0.5165, -1.5412, 0.8136],\n", " [ 0.2981, -1.2633, -0.5012, -0.6578, -1.3874, -0.8003, 0.6939,\n", " -0.1877, -0.8000, 0.0059],\n", " [ 1.6177, -0.0819, -1.4117, 0.1513, -0.7835, -0.4023, -0.5751,\n", " 0.6236, 0.5185, -0.3257],\n", " [-0.1068, -0.0104, -0.2874, 1.0380, 0.3855, 0.3236, -1.3724,\n", " 1.6858, 0.5404, 0.6867],\n", " [-1.1484, 0.4463, -0.0490, 0.8154, -1.3611, -1.0358, -1.0115,\n", " -1.4956, -2.3987, -0.7667]],\n", "\n", " [[-0.7427, 0.3397, 1.4941, -0.3975, 0.6718, 1.2874, 0.5164,\n", " 0.7475, 1.2911, -0.7312],\n", " [ 0.5112, 0.2203, -0.3803, -0.5714, 1.2393, 0.8208, -0.9187,\n", " -0.0765, 0.6135, -0.7404],\n", " [ 1.2199, 0.1526, 0.9363, 1.3509, -0.4017, 0.6033, 1.9226,\n", " 0.7188, 1.0180, -0.3175],\n", " [-0.2175, 0.4603, -0.3155, -0.1717, -0.4508, -1.5037, -0.1207,\n", " 0.4838, 0.7382, 1.0409],\n", " [-0.9812, 0.3711, 0.3704, -0.9340, 0.1421, -1.5631, -1.3793,\n", " -0.6578, -1.3985, -0.4181],\n", " [-0.3646, -1.0626, 0.4232, 0.9070, -2.3748, 0.1342, -0.0346,\n", " 0.3152, 0.8232, -1.2286],\n", " [-0.4408, -0.4749, -0.8820, -0.4570, 0.7494, -0.8769, -0.9241,\n", " -0.4344, 0.7485, -0.6219],\n", " [ 1.4999, -0.0245, -0.8926, -0.4930, -0.1407, -1.3070, 1.9463,\n", " -0.8084, 0.0198, -0.4131]],\n", "\n", " [[ 1.6712, 0.5194, 0.8257, -1.2828, -1.3533, 0.5400, 1.3997,\n", " 2.2241, 0.3703, 0.0891],\n", " [-0.1004, 0.3773, 2.5188, 0.2890, 0.9379, 0.7492, 0.9603,\n", " -1.4914, 0.8701, -0.2691],\n", " [ 0.0435, -0.1540, 0.3223, -1.1497, -0.4520, 0.3094, 0.3129,\n", " 0.4398, -0.1206, 0.2182],\n", " [-1.1895, -3.0451, 1.2849, -0.6265, -0.7783, 1.2033, -0.3295,\n", " -1.4985, -1.9538, -0.5790],\n", " [-1.2533, -1.2236, -0.6427, -0.5228, -0.6071, -1.0755, -0.3622,\n", " -1.4241, -1.7820, 0.3037],\n", " [-1.5930, -0.3212, -1.1160, -0.5363, -1.2299, -0.6331, -0.4287,\n", " -0.5349, 0.2315, 0.8747],\n", " [-0.2205, -0.3187, -0.6099, 1.1537, -0.7896, 0.6231, 0.2791,\n", " -1.3267, -1.3005, 0.5643],\n", " [ 1.7372, 0.3188, 0.6492, -0.5857, -0.2604, -0.4235, -1.3535,\n", " 1.3899, 1.4772, 0.6812]]])" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "embed = torch.randn(4, 8, 10) #[batch, seq_len, embed]\n", "embed" ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([4, 8, 10])" ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x = u.repeat(embed.size(0), embed.size(1), 1)\n", "x.size()" ] }, { "cell_type": "code", "execution_count": 70, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-0.2212, -0.4839, -0.1610, 0.2061, -0.2068, -0.0250, -0.2900, -0.0944],\n", " [ 0.0531, -0.2761, -0.0455, 0.3600, -0.0608, -0.4872, -0.3845, 0.6251],\n", " [ 0.0520, 0.1996, -0.5176, -0.5650, 0.6570, -0.0836, 0.0536, -0.3301],\n", " [-0.3879, 0.2709, 0.0507, 0.6181, 0.4528, -0.0298, 0.2379, -0.4050]],\n", " grad_fn=)" ] }, "execution_count": 70, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cos = F.cosine_similarity(embed, x, dim=2)\n", "cos" ] }, { "cell_type": "code", "execution_count": 77, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.1154, 0.0888, 0.1226, 0.1769, 0.1171, 0.1404, 0.1077, 0.1310],\n", " [0.1270, 0.0913, 0.1150, 0.1725, 0.1133, 0.0740, 0.0820, 0.2249],\n", " [0.1307, 0.1515, 0.0739, 0.0705, 0.2393, 0.1141, 0.1309, 0.0892],\n", " [0.0724, 0.1398, 0.1122, 0.1979, 0.1677, 0.1035, 0.1353, 0.0711]],\n", " grad_fn=)" ] }, "execution_count": 77, "metadata": {}, "output_type": "execute_result" } ], "source": [ "alpha = F.softmax(cos, dim=1) # 每个序列一行,每每行的每个元素代表对应的单词的权重\n", "alpha" ] }, { "cell_type": "code", "execution_count": 113, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensor(0.0660, grad_fn=) tensor(-0.0562, grad_fn=)\n" ] } ], "source": [ "d = alpha.unsqueeze(2)\n", "print(embed[0][0][0]*d[0][0][0],embed[0][0][1]*d[0][0][0])" ] }, { "cell_type": "code", "execution_count": 110, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 0.0660, -0.0562, -0.0222, -0.0228, -0.0072, 0.1820, 0.1233,\n", " 0.1422, -0.0527, -0.0081],\n", " [ 0.0469, -0.0657, 0.0356, 0.0074, -0.1770, -0.0863, 0.0837,\n", " 0.0440, 0.0349, 0.0462],\n", " [ 0.0265, 0.1140, 0.1723, -0.1157, -0.0183, -0.0617, 0.0445,\n", " 0.1154, 0.1763, -0.0932],\n", " [ 0.0522, 0.1599, -0.1718, 0.0098, -0.2671, -0.3254, -0.1095,\n", " -0.2207, -0.1426, -0.1218],\n", " [ 0.1210, -0.0759, 0.2485, 0.1154, 0.2553, -0.2587, -0.0034,\n", " 0.0981, 0.0416, 0.0335],\n", " [-0.0183, 0.1975, 0.0641, -0.1557, 0.2776, -0.0173, 0.1378,\n", " 0.1339, -0.0906, 0.1008],\n", " [-0.0156, -0.0120, 0.0064, -0.1921, -0.0448, -0.0077, 0.0023,\n", " 0.0779, 0.0744, 0.1378],\n", " [ 0.0830, 0.0598, -0.0214, 0.0480, 0.0794, -0.0041, -0.1995,\n", " 0.0048, 0.1823, -0.0783]],\n", "\n", " [[-0.1756, -0.1098, -0.1732, -0.1142, -0.0374, 0.1619, 0.0165,\n", " -0.0207, -0.0010, 0.0686],\n", " [-0.0604, 0.0152, -0.1416, 0.0486, 0.0212, -0.1814, -0.1201,\n", " 0.1304, 0.0194, -0.0452],\n", " [ 0.0965, 0.1640, 0.0010, -0.0434, 0.1040, -0.0903, 0.1519,\n", " -0.0285, -0.0723, -0.0159],\n", " [ 0.1115, -0.3124, -0.2228, -0.3757, -0.0661, 0.2306, -0.4025,\n", " -0.0891, -0.2659, 0.1404],\n", " [ 0.0338, -0.1431, -0.0568, -0.0745, -0.1572, -0.0907, 0.0786,\n", " -0.0213, -0.0906, 0.0007],\n", " [ 0.1196, -0.0061, -0.1044, 0.0112, -0.0580, -0.0298, -0.0425,\n", " 0.0461, 0.0383, -0.0241],\n", " [-0.0087, -0.0009, -0.0236, 0.0851, 0.0316, 0.0265, -0.1125,\n", " 0.1382, 0.0443, 0.0563],\n", " [-0.2583, 0.1004, -0.0110, 0.1834, -0.3062, -0.2330, -0.2275,\n", " -0.3364, -0.5395, -0.1725]],\n", "\n", " [[-0.0970, 0.0444, 0.1952, -0.0519, 0.0878, 0.1682, 0.0675,\n", " 0.0977, 0.1687, -0.0955],\n", " [ 0.0774, 0.0334, -0.0576, -0.0866, 0.1877, 0.1243, -0.1392,\n", " -0.0116, 0.0929, -0.1121],\n", " [ 0.0902, 0.0113, 0.0692, 0.0999, -0.0297, 0.0446, 0.1421,\n", " 0.0531, 0.0753, -0.0235],\n", " [-0.0153, 0.0325, -0.0222, -0.0121, -0.0318, -0.1060, -0.0085,\n", " 0.0341, 0.0520, 0.0734],\n", " [-0.2348, 0.0888, 0.0886, -0.2235, 0.0340, -0.3740, -0.3301,\n", " -0.1574, -0.3346, -0.1000],\n", " [-0.0416, -0.1212, 0.0483, 0.1035, -0.2710, 0.0153, -0.0039,\n", " 0.0360, 0.0939, -0.1402],\n", " [-0.0577, -0.0622, -0.1154, -0.0598, 0.0981, -0.1148, -0.1209,\n", " -0.0569, 0.0980, -0.0814],\n", " [ 0.1338, -0.0022, -0.0796, -0.0440, -0.0125, -0.1166, 0.1736,\n", " -0.0721, 0.0018, -0.0368]],\n", "\n", " [[ 0.1209, 0.0376, 0.0598, -0.0928, -0.0979, 0.0391, 0.1013,\n", " 0.1609, 0.0268, 0.0064],\n", " [-0.0140, 0.0528, 0.3522, 0.0404, 0.1312, 0.1048, 0.1343,\n", " -0.2086, 0.1217, -0.0376],\n", " [ 0.0049, -0.0173, 0.0362, -0.1290, -0.0507, 0.0347, 0.0351,\n", " 0.0493, -0.0135, 0.0245],\n", " [-0.2354, -0.6026, 0.2543, -0.1240, -0.1540, 0.2381, -0.0652,\n", " -0.2965, -0.3866, -0.1146],\n", " [-0.2102, -0.2052, -0.1078, -0.0877, -0.1018, -0.1804, -0.0608,\n", " -0.2389, -0.2989, 0.0509],\n", " [-0.1649, -0.0332, -0.1155, -0.0555, -0.1273, -0.0655, -0.0444,\n", " -0.0554, 0.0240, 0.0906],\n", " [-0.0298, -0.0431, -0.0825, 0.1561, -0.1068, 0.0843, 0.0378,\n", " -0.1795, -0.1760, 0.0763],\n", " [ 0.1236, 0.0227, 0.0462, -0.0417, -0.0185, -0.0301, -0.0963,\n", " 0.0989, 0.1051, 0.0485]]], grad_fn=)" ] }, "execution_count": 110, "metadata": {}, "output_type": "execute_result" } ], "source": [ "embed*alpha.unsqueeze(2)" ] }, { "cell_type": "code", "execution_count": 90, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[ 0.3618, 0.3213, 0.3114, -0.3055, 0.0978, -0.5791, 0.0793, 0.3957,\n", " 0.2237, 0.0167],\n", " [-0.1417, -0.2927, -0.7323, -0.2796, -0.4680, -0.2061, -0.6581, -0.1812,\n", " -0.8672, 0.0082],\n", " [-0.1451, 0.0247, 0.1265, -0.2745, 0.0626, -0.3589, -0.2194, -0.0770,\n", " 0.2479, -0.5162],\n", " [-0.4050, -0.7885, 0.4427, -0.3342, -0.5260, 0.2249, 0.0418, -0.6697,\n", " -0.5975, 0.1450]], grad_fn=)" ] }, "execution_count": 90, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y = torch.sum(embed*alpha.unsqueeze(2), dim=1)\n", "y" ] }, { "cell_type": "code", "execution_count": 91, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([4, 10])" ] }, "execution_count": 91, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y.size()" ] }, { "cell_type": "code", "execution_count": 92, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[ 0.3618, 0.3213, 0.3114, -0.3055, 0.0978, -0.5791, 0.0793, 0.3957,\n", " 0.2237, 0.0167],\n", " [-0.1417, -0.2927, -0.7323, -0.2796, -0.4680, -0.2061, -0.6581, -0.1812,\n", " -0.8672, 0.0082],\n", " [-0.1451, 0.0247, 0.1265, -0.2745, 0.0626, -0.3589, -0.2194, -0.0770,\n", " 0.2479, -0.5162],\n", " [-0.4050, -0.7885, 0.4427, -0.3342, -0.5260, 0.2249, 0.0418, -0.6697,\n", " -0.5975, 0.1450]], grad_fn=)" ] }, "execution_count": 92, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y.squeeze(1)" ] }, { "cell_type": "code", "execution_count": 97, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.4853],\n", " [0.5154],\n", " [0.4474],\n", " [0.1978]], grad_fn=)" ] }, "execution_count": 97, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fx = nn.Linear(10,1)(y)\n", "fx" ] }, { "cell_type": "code", "execution_count": 101, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.6190],\n", " [0.6261],\n", " [0.6100],\n", " [0.5493]], grad_fn=)" ] }, "execution_count": 101, "metadata": {}, "output_type": "execute_result" } ], "source": [ "score = torch.sigmoid(fx) # 0-1之间的数\n", "score" ] }, { "cell_type": "code", "execution_count": 106, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1.],\n", " [1.],\n", " [1.],\n", " [1.]], grad_fn=)" ] }, "execution_count": 106, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.round(score) #返回相邻最近的整数,四舍五入" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## torch.nn.functional.cosine_similarity计算方法" ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensor([[ 0.3437, 0.3895, 1.4366],\n", " [-3.1125, -0.4749, -0.6235]]) tensor([[-0.9672, 0.4503, -0.3470],\n", " [ 0.2393, 1.8958, -1.3947]])\n" ] } ], "source": [ "x1 = torch.randn(2,3)\n", "x2 = torch.randn(2,3)\n", "print(x1, x2)" ] }, { "cell_type": "code", "execution_count": 49, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([-0.3825, -0.1021])" ] }, "execution_count": 49, "metadata": {}, "output_type": "execute_result" } ], "source": [ "F.cosine_similarity(x1, x2)" ] }, { "cell_type": "code", "execution_count": 64, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(-0.3825)" ] }, "execution_count": 64, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# cosine_similarity的计算公式\n", "sum(x1[0]*x2[0]) / (torch.norm(x1[0])*torch.norm(x2[0])+1e-8)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 截断函数\n", "----\n", "- torch.ceil(input, out=None) #返回向正方向取得最小整数\n", "- torch.floor(input, out=None) #返回向负方向取得最大整数\n", "\n", "- torch.round(input, out=None) #返回相邻最近的整数,四舍五入\n", "\n", "- torch.trunc(input, out=None) #返回整数部分数值\n", "- torch.frac(tensor, out=None) #返回小数部分数值\n", "\n", "- torch.fmod(input, divisor, out=None) #返回input/divisor的余数\n", "- torch.remainder(input, divisor, out=None) #同上" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## torch.matmul\n", "- mm只能进行矩阵乘法,也就是输入的两个tensor维度只能是(n×m)(n\\times m)(n×m)和(m×p)(m\\times p)(m×p)\n", "- bmm是两个三维张量相乘, 两个tensor维度是(b×n×m)和(b×m×p)得到 (b×n×p), 第一维b代表batch_size。\n", "- matmul可以进行张量乘法, 输入可以是高维。\n", "\n", "- scores = torch.matmul(x, x.transpose(-2, -1)) / math.sqrt(d_k)\n", "\n", "- [torch.transpose](https://pytorch.org/docs/stable/torch.html#torch.transpose) # tonser的转置" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 0.0608, -0.1447, -0.3057, 0.9118, -0.3778, 1.2587, -1.7109,\n", " -1.0704, 0.4352, -2.0029],\n", " [ 0.9735, 1.0512, -1.4398, -0.6600, 0.3955, 0.3646, 0.0474,\n", " -1.5265, 0.0718, 0.4676],\n", " [-0.5715, -1.2914, 0.1073, -0.3753, 0.5765, -0.9402, -1.1904,\n", " 0.5456, 0.1140, -0.1685],\n", " [ 0.4498, 0.7682, 0.2298, 0.6669, -1.0050, 1.4804, 0.5312,\n", " 1.0791, -0.7552, -0.3538],\n", " [-0.8476, -0.7348, -0.9190, 0.1542, 0.4850, -0.5129, 3.2134,\n", " 1.1763, 0.1987, 1.1999]],\n", "\n", " [[ 1.1443, 0.6204, 0.6688, -0.7729, 0.1621, 0.0467, 0.8106,\n", " 1.8824, -0.2517, 1.4625],\n", " [ 0.7914, 0.0971, 0.2454, 0.2563, 1.5868, -0.2585, -0.5065,\n", " -1.3138, -0.2943, 0.3584],\n", " [ 1.2666, 0.3284, 1.6281, 0.7337, -1.0108, 0.1650, -0.0435,\n", " 0.9840, -0.8043, 0.7147],\n", " [-1.0370, 0.2351, -1.2820, 0.9013, 1.2597, -1.7748, -2.1565,\n", " 0.6012, 2.0741, -0.4460],\n", " [ 1.0765, -0.1866, -1.2976, -0.2885, 0.0313, -0.0154, 1.1737,\n", " -1.2480, 1.9115, 1.0470]]])" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x1 = torch.randn(2, 5, 10)\n", "x1" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 0.0608, 0.9735, -0.5715, 0.4498, -0.8476],\n", " [-0.1447, 1.0512, -1.2914, 0.7682, -0.7348],\n", " [-0.3057, -1.4398, 0.1073, 0.2298, -0.9190],\n", " [ 0.9118, -0.6600, -0.3753, 0.6669, 0.1542],\n", " [-0.3778, 0.3955, 0.5765, -1.0050, 0.4850],\n", " [ 1.2587, 0.3646, -0.9402, 1.4804, -0.5129],\n", " [-1.7109, 0.0474, -1.1904, 0.5312, 3.2134],\n", " [-1.0704, -1.5265, 0.5456, 1.0791, 1.1763],\n", " [ 0.4352, 0.0718, 0.1140, -0.7552, 0.1987],\n", " [-2.0029, 0.4676, -0.1685, -0.3538, 1.1999]],\n", "\n", " [[ 1.1443, 0.7914, 1.2666, -1.0370, 1.0765],\n", " [ 0.6204, 0.0971, 0.3284, 0.2351, -0.1866],\n", " [ 0.6688, 0.2454, 1.6281, -1.2820, -1.2976],\n", " [-0.7729, 0.2563, 0.7337, 0.9013, -0.2885],\n", " [ 0.1621, 1.5868, -1.0108, 1.2597, 0.0313],\n", " [ 0.0467, -0.2585, 0.1650, -1.7748, -0.0154],\n", " [ 0.8106, -0.5065, -0.0435, -2.1565, 1.1737],\n", " [ 1.8824, -1.3138, 0.9840, 0.6012, -1.2480],\n", " [-0.2517, -0.2943, -0.8043, 2.0741, 1.9115],\n", " [ 1.4625, 0.3584, 0.7147, -0.4460, 1.0470]]])" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x2 = x1.transpose(-2, -1)\n", "x2" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[10.9509, 0.7026, 0.2158, 1.0130, -9.4263],\n", " [ 0.7026, 7.4071, -2.8955, -1.2250, -1.4394],\n", " [ 0.2158, -2.8955, 5.1194, -3.5163, -1.3244],\n", " [ 1.0130, -1.2250, -3.5163, 6.6340, 0.1013],\n", " [-9.4263, -1.4394, -1.3244, 0.1013, 15.8137]],\n", "\n", " [[ 9.1703, -1.1083, 5.0835, -4.2642, 0.1277],\n", " [-1.1083, 5.5442, -0.8025, 1.1083, 1.3530],\n", " [ 5.0835, -0.8025, 8.0778, -5.5296, -3.1245],\n", " [-4.2642, 1.1083, -5.5296, 17.8355, 0.5264],\n", " [ 0.1277, 1.3530, -3.1245, 0.5264, 10.6467]]])" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y = torch.matmul(x1, x2) #2, 5,10 * 2, 10, 5\n", "y" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([2, 5, 5])" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y.size()" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 5.4754, 0.3513, 0.1079, 0.5065, -4.7131],\n", " [ 0.3513, 3.7035, -1.4478, -0.6125, -0.7197],\n", " [ 0.1079, -1.4478, 2.5597, -1.7581, -0.6622],\n", " [ 0.5065, -0.6125, -1.7581, 3.3170, 0.0506],\n", " [-4.7131, -0.7197, -0.6622, 0.0506, 7.9068]],\n", "\n", " [[ 4.5851, -0.5541, 2.5418, -2.1321, 0.0639],\n", " [-0.5541, 2.7721, -0.4012, 0.5542, 0.6765],\n", " [ 2.5418, -0.4012, 4.0389, -2.7648, -1.5622],\n", " [-2.1321, 0.5542, -2.7648, 8.9177, 0.2632],\n", " [ 0.0639, 0.6765, -1.5622, 0.2632, 5.3234]]])" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y / 2" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "a = '微信 是否 会 收费 ? 近日 工信部 和 腾讯 公司 的 不同 回应 让 微信 的 未来 显得 扑朔迷离 。 随着 3G 网络 的 普及 , 许多 国家 和 地区 都 有 像 “ 微信 ” 这样 能够 实现 即时通讯 、 通话 的 手机 应用 。 “ 微信 ” 在 国外 什么样 ? 它们 收费 吗 ? 一张 图带 你 了解 海外 “ 微信 ” 。 ____ ____ ' \n", "b = '“ 微信 ” 在 海外'\n", "c = '[ 话筒 ] “ 微信 ” 在 国外 什么样 ? 它们 收费 吗 ? [ 话筒 ] [ 思考 ] [ 吃惊 ] [ 吃惊 ]'" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------------------------------------\n", "原 文: \u001b[01;34m 微信 是否 会 收费 ? 近日 工信部 和 腾讯 公司 的 不同 回应 让 微信 的 未来 显得 扑朔迷离 。 随着 3G 网络 的 普及 , 许多 国家 和 地区 都 有 像 “ 微信 ” 这样 能够 实现 即时通讯 、 通话 的 手机 应用 。 “ 微信 ” 在 国外 什么样 ? 它们 收费 吗 ? 一张 图带 你 了解 海外 “ 微信 ” 。 ____ ____ \u001b[0m\n", "\n", "参考摘要: \u001b[01;35m “ 微信 ” 在 海外 \u001b[0m\n", "\n", "生成摘要: \u001b[01;36m [ 话筒 ] “ 微信 ” 在 国外 什么样 ? 它们 收费 吗 ? [ 话筒 ] [ 思考 ] [ 吃惊 ] [ 吃惊 ] \u001b[0m\n", "\n", "--------------------------------------------------------------------------------------------------------------\n" ] } ], "source": [ "print('-' * 110)\n", "print('{} \\033[01;34m {} \\033[0m\\n'.format('原 文:', a))\n", "print('{} \\033[01;35m {} \\033[0m\\n'.format('参考摘要:', b))\n", "print('{} \\033[01;36m {} \\033[0m\\n'.format('生成摘要:', c))\n", "print('-' * 110)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "\n", "a = '日前 , 教育部 公布 2012 年度 普通 高等学校 本科专业 设置 备案 或 审批 结果 。 全国 高校 258 个 专业 未 通过 审批 , 且 很多 是 当下 热门 专业 , 如 法学 、 会计 、 工商管理 等 , 有些 专业 已经 被 列入 教育部 的 预警 专业 。 教育界 人士 分析 , 人才 市场 的 需求 已 开始 出现 “ 供大于求 ” 现象 。' \n", "b = '258 个 专业 被 否决 !!____!! !!____!! 部分 热门 专业 遭 “ 预警 ”'\n", "c = '教育部 : 全国 高校 258 个 专业 未 通过 审批 , 且 很多 是 当下 热门 专业 , 如 法学 、 会计 、 工商管理 等 专业 已经 审批 结果'\n" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------------------------------------------------------------------------------------------\n", "原 文: \u001b[01;34m 日前 , 教育部 公布 2012 年度 普通 高等学校 本科专业 设置 备案 或 审批 结果 。 全国 高校 258 个 专业 未 通过 审批 , 且 很多 是 当下 热门 专业 , 如 法学 、 会计 、 工商管理 等 , 有些 专业 已经 被 列入 教育部 的 预警 专业 。 教育界 人士 分析 , 人才 市场 的 需求 已 开始 出现 “ 供大于求 ” 现象 。 \u001b[0m\n", "\n", "参考摘要: \u001b[01;35m 258 个 专业 被 否决 !!____!! !!____!! 部分 热门 专业 遭 “ 预警 ” \u001b[0m\n", "\n", "生成摘要: \u001b[01;36m 教育部 : 全国 高校 258 个 专业 未 通过 审批 , 且 很多 是 当下 热门 专业 , 如 法学 、 会计 、 工商管理 等 专业 已经 审批 结果 \u001b[0m\n", "\n", "--------------------------------------------------------------------------------------------------------------\n" ] } ], "source": [ "print('-' * 110)\n", "print('{} \\033[01;34m {} \\033[0m\\n'.format('原 文:', a))\n", "print('{} \\033[01;35m {} \\033[0m\\n'.format('参考摘要:', b))\n", "print('{} \\033[01;36m {} \\033[0m\\n'.format('生成摘要:', c))\n", "print('-' * 110)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/struct_tf.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## tf.example" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import glob\n", "import random\n", "import struct\n", "import csv\n", "from tensorflow.core.example import example_pb2" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "train_bin_files = \"../P007PytorchPointerGeneratorNetwork/cnn-dailymail/finished_files/chunked/train_*\"" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "filelists = glob.glob(train_bin_files)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'../P007PytorchPointerGeneratorNetwork/cnn-dailymail/finished_files/chunked/train_000.bin'" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "filelists[0]" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "len_bytes: b'\\xd9\\x11\\x00\\x00\\x00\\x00\\x00\\x00'\n", "str_len: 4569\n", "example_str: b\"\\n\\xd6#\\n\\xdf\\x02\\n\\x08abstract\\x12\\xd2\\x02\\n\\xcf\\x02\\n\\xcc\\x02 mentally ill inmates in miami are housed on the `` forgotten floor '' judge steven leifman says most are there as a result of `` avoidable felonies '' while cnn tours facility , patient shouts : `` i am the son of the president '' leifman says the system is unjust and he 's fighting for change . \\n\\xf1 \\n\\x07article\\x12\\xe5 \\n\\xe2 \\n\\xdf editor 's note : in our behind the scenes series , cnn correspondents share their experiences in covering news and analyze the stories behind the events . here , soledad o'brien takes users inside a jail where many of the inmates are mentally ill . an inmate housed on the `` forgotten floor , '' where many mentally ill inmates are housed in miami before trial . miami , florida -lrb- cnn -rrb- -- the ninth floor of the miami-dade pretrial detention facility is dubbed the `` forgotten floor . '' here , inmates with the most severe mental illnesses are incarcerated until they 're ready to appear in court . most often , they face drug charges or charges of assaulting an officer -- charges that judge steven leifman says are usually `` avoidable felonies . '' he says the arrests often result from confrontations with police . mentally ill people often wo n't do what they 're told when police arrive on the scene -- confrontation seems to exacerbate their illness and they become more paranoid , delusional , and less likely to follow directions , according to leifman . so , they end up on the ninth floor severely mentally disturbed , but not getting any real help because they 're in jail . we toured the jail with leifman . he is well known in miami as an advocate for justice and the mentally ill . even though we were not exactly welcomed with open arms by the guards , we were given permission to shoot videotape and tour the floor . go inside the ` forgotten floor ' '' at first , it 's hard to determine where the people are . the prisoners are wearing sleeveless robes . imagine cutting holes for arms and feet in a heavy wool sleeping bag -- that 's kind of what they look like . they 're designed to keep the mentally ill patients from injuring themselves . that 's also why they have no shoes , laces or mattresses . leifman says about one-third of all people in miami-dade county jails are mentally ill . so , he says , the sheer volume is overwhelming the system , and the result is what we see on the ninth floor . of course , it is a jail , so it 's not supposed to be warm and comforting , but the lights glare , the cells are tiny and it 's loud . we see two , sometimes three men -- sometimes in the robes , sometimes naked , lying or sitting in their cells . `` i am the son of the president . you need to get me out of here ! '' one man shouts at me . he is absolutely serious , convinced that help is on the way -- if only he could reach the white house . leifman tells me that these prisoner-patients will often circulate through the system , occasionally stabilizing in a mental hospital , only to return to jail to face their charges . it 's brutally unjust , in his mind , and he has become a strong advocate for changing things in miami . over a meal later , we talk about how things got this way for mental patients . leifman says 200 years ago people were considered `` lunatics '' and they were locked up in jails even if they had no charges against them . they were just considered unfit to be in society . over the years , he says , there was some public outcry , and the mentally ill were moved out of jails and into hospitals . but leifman says many of these mental hospitals were so horrible they were shut down . where did the patients go ? nowhere . the streets . they became , in many cases , the homeless , he says . they never got treatment . leifman says in 1955 there were more than half a million people in state mental hospitals , and today that number has been reduced 90 percent , and 40,000 to 50,000 people are in mental hospitals . the judge says he 's working to change this . starting in 2008 , many inmates who would otherwise have been brought to the `` forgotten floor '' will instead be sent to a new mental health facility -- the first step on a journey toward long-term treatment , not just punishment . leifman says it 's not the complete answer , but it 's a start . leifman says the best part is that it 's a win-win solution . the patients win , the families are relieved , and the state saves money by simply not cycling these prisoners through again and again . and , for leifman , justice is served . e-mail to a friend .\"\n" ] } ], "source": [ "f = filelists[0]\n", "reader = open(f, 'rb')\n", "while True:\n", " len_bytes = reader.read(8)\n", " print(\"len_bytes:\", len_bytes)\n", " if not len_bytes:\n", " break # finished reading this file\n", " str_len = struct.unpack('q', len_bytes)[0]\n", " print(\"str_len:\", str_len)\n", " example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0]\n", " print(\"example_str:\", example_str)\n", " break\n", " #yield example_pb2.Example.FromString(example_str)" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "# example_str = b\"I love you\"\n", "example = example_pb2.Example.FromString(example_str)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "features {\n", " feature {\n", " key: \"abstract\"\n", " value {\n", " bytes_list {\n", " value: \" mentally ill inmates in miami are housed on the `` forgotten floor \\'\\' judge steven leifman says most are there as a result of `` avoidable felonies \\'\\' while cnn tours facility , patient shouts : `` i am the son of the president \\'\\' leifman says the system is unjust and he \\'s fighting for change . \"\n", " }\n", " }\n", " }\n", " feature {\n", " key: \"article\"\n", " value {\n", " bytes_list {\n", " value: \"editor \\'s note : in our behind the scenes series , cnn correspondents share their experiences in covering news and analyze the stories behind the events . here , soledad o\\'brien takes users inside a jail where many of the inmates are mentally ill . an inmate housed on the `` forgotten floor , \\'\\' where many mentally ill inmates are housed in miami before trial . miami , florida -lrb- cnn -rrb- -- the ninth floor of the miami-dade pretrial detention facility is dubbed the `` forgotten floor . \\'\\' here , inmates with the most severe mental illnesses are incarcerated until they \\'re ready to appear in court . most often , they face drug charges or charges of assaulting an officer -- charges that judge steven leifman says are usually `` avoidable felonies . \\'\\' he says the arrests often result from confrontations with police . mentally ill people often wo n\\'t do what they \\'re told when police arrive on the scene -- confrontation seems to exacerbate their illness and they become more paranoid , delusional , and less likely to follow directions , according to leifman . so , they end up on the ninth floor severely mentally disturbed , but not getting any real help because they \\'re in jail . we toured the jail with leifman . he is well known in miami as an advocate for justice and the mentally ill . even though we were not exactly welcomed with open arms by the guards , we were given permission to shoot videotape and tour the floor . go inside the ` forgotten floor \\' \\'\\' at first , it \\'s hard to determine where the people are . the prisoners are wearing sleeveless robes . imagine cutting holes for arms and feet in a heavy wool sleeping bag -- that \\'s kind of what they look like . they \\'re designed to keep the mentally ill patients from injuring themselves . that \\'s also why they have no shoes , laces or mattresses . leifman says about one-third of all people in miami-dade county jails are mentally ill . so , he says , the sheer volume is overwhelming the system , and the result is what we see on the ninth floor . of course , it is a jail , so it \\'s not supposed to be warm and comforting , but the lights glare , the cells are tiny and it \\'s loud . we see two , sometimes three men -- sometimes in the robes , sometimes naked , lying or sitting in their cells . `` i am the son of the president . you need to get me out of here ! \\'\\' one man shouts at me . he is absolutely serious , convinced that help is on the way -- if only he could reach the white house . leifman tells me that these prisoner-patients will often circulate through the system , occasionally stabilizing in a mental hospital , only to return to jail to face their charges . it \\'s brutally unjust , in his mind , and he has become a strong advocate for changing things in miami . over a meal later , we talk about how things got this way for mental patients . leifman says 200 years ago people were considered `` lunatics \\'\\' and they were locked up in jails even if they had no charges against them . they were just considered unfit to be in society . over the years , he says , there was some public outcry , and the mentally ill were moved out of jails and into hospitals . but leifman says many of these mental hospitals were so horrible they were shut down . where did the patients go ? nowhere . the streets . they became , in many cases , the homeless , he says . they never got treatment . leifman says in 1955 there were more than half a million people in state mental hospitals , and today that number has been reduced 90 percent , and 40,000 to 50,000 people are in mental hospitals . the judge says he \\'s working to change this . starting in 2008 , many inmates who would otherwise have been brought to the `` forgotten floor \\'\\' will instead be sent to a new mental health facility -- the first step on a journey toward long-term treatment , not just punishment . leifman says it \\'s not the complete answer , but it \\'s a start . leifman says the best part is that it \\'s a win-win solution . the patients win , the families are relieved , and the state saves money by simply not cycling these prisoners through again and again . and , for leifman , justice is served . e-mail to a friend .\"\n", " }\n", " }\n", " }\n", "}" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "example" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "’\n" ] } ], "source": [ "print(u'\\u2019')" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "”\n" ] } ], "source": [ "print(u'\\u201d')" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "b'\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00'" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "st = \"I love NLP\"\n", "struct.pack('q', 8)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P000CheatSheet/torch_gather.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "import torch" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[2],\n", " [3],\n", " [4]])" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "b = torch.tensor([2,3,4])\n", "b.size()\n", "b.unsqueeze(1)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([3, 5])" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "a = torch.tensor([[0.1,0.1,0.3,0.2,0.3],\n", " [0.4,0.4,0.1,0.05,0.05],\n", " [0.1,0.1,0.1,0.2,0.5]])\n", "a.size()" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.3000],\n", " [0.0500],\n", " [0.5000]])" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "c = torch.gather(a, 1, b.unsqueeze(1))\n", "c" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-1.2040],\n", " [-2.9957],\n", " [-0.6931]])" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.log(c)" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "import math" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-0.6931471805599453" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "math.log(0.5)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 如何计算多分类的交叉熵损失?" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "y_true = ['1', '4', '5'] # 样本的真实标签\n", "\n", "y_pred = [\n", " [0.1, 0.6, 0.3, 0, 0, 0, 0, 0, 0, 0],\n", " [0, 0.3, 0.2, 0, 0.5, 0, 0, 0, 0, 0],\n", " [0.6, 0.3, 0, 0, 0, 0.1, 0, 0, 0, 0]\n", "] \n", "# 样本的预测概率\n", "labels = ['0','1','2','3','4','5','6','7','8','9'] # 所有标签" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "from sklearn.metrics import log_loss\n", "from sklearn.preprocessing import LabelBinarizer\n", "from math import log" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loss by sklearn is:1.1688526324400008.\n" ] } ], "source": [ "# 利用sklearn中的log_loss()函数计算交叉熵\n", "sk_log_loss = log_loss(y_true, y_pred, labels=labels)\n", "print(\"Loss by sklearn is:%s.\" %sk_log_loss)" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[[0 1 0 0 0 0 0 0 0 0]\n", " [0 0 0 0 1 0 0 0 0 0]\n", " [0 0 0 0 0 1 0 0 0 0]]\n", "0\n", "0.1\n", "---\n", "1\n", "0.6\n", "---\n", "0\n", "0.3\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "0.3\n", "---\n", "0\n", "0.2\n", "---\n", "0\n", "1e-15\n", "---\n", "1\n", "0.5\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "0.6\n", "---\n", "0\n", "0.3\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "1\n", "0.1\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "0\n", "1e-15\n", "---\n", "Loss by equation is:1.1688526324399937.\n" ] } ], "source": [ "# 对样本的真实标签进行标签二值化\n", "lb = LabelBinarizer()\n", "lb.fit(labels)\n", "transformed_labels = lb.transform(y_true)\n", "print(transformed_labels)\n", "\n", "N = len(y_true) # 样本个数\n", "K = len(labels) # 标签个数\n", "\n", "eps = 1e-15 # 预测概率的控制值\n", "Loss = 0 # 损失值初始化\n", "\n", "for i in range(N):\n", " for k in range(K):\n", " # 控制预测概率在[eps, 1-eps]内,避免求对数时出现问题\n", " if y_pred[i][k] < eps:\n", " y_pred[i][k] = eps\n", " if y_pred[i][k] > 1-eps:\n", " y_pred[i][k] = 1-eps\n", " # 多分类问题的交叉熵计算公式\n", " print(transformed_labels[i][k])\n", " \n", " print(y_pred[i][k])\n", " print(\"---\")\n", " Loss -= transformed_labels[i][k]*log(y_pred[i][k])\n", "\n", "Loss /= N\n", "print(\"Loss by equation is:%s.\" % Loss)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "d = torch.gather(torch.tensor(y_pred), 1, torch.tensor([int(i) for i in y_true], dtype=torch.long).unsqueeze(1))" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.5108],\n", " [0.6931],\n", " [2.3026]])" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "-torch.log(d)" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "3.5065" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "2.3026+0.5108+0.6931" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/ClassList.txt ================================================ C000008 财经 C000010 IT C000013 健康 C000014 体育 C000016 旅游 C000020 教育 C000022 招聘 C000023 文化 C000024 军事 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/10.txt ================================================   本报记者陈雪频实习记者唐翔发自上海   一家刚刚成立两年的网络支付公司,它的目标是成为市值100亿美元的上市公司。   这家公司叫做快钱,说这句话的是快钱的CEO关国光。他之前曾任网易的高级副总裁,负责过网易的上市工作。对于为什么选择第三方支付作为创业方向,他曾经对媒体这样说:“我能看到这个胡同对面是什么,别人只能看到这个胡同。”自信与狂妄只有一步之遥——这几乎是所有创业者的共同特征,是自信还是狂妄也许需要留待时间来考证。   对于市值100亿美元的上市公司,他是这样算这笔账的,“百度上市时广告客户数量只有4万,而且它所做的只是把客户吸引过来,就可以支撑起现有的庞大市值;而我们几年后的客户数量是几千万,而且这些客户都是能直接带来利润的,说市值100亿美元一点都不夸张。”   这家公司2005年年底注册用户达到400万,计划今年注册用户突破1000万,号称是国内最大的第三方网络支付平台。“在美国跟支付相关的收入已经超过了所有商业银行本身利差收入的总和,我所查到的数据是3000亿美元,其中超过70%是个人消费者带来的收入。”关国光喜欢借用美国支付产业的现状与中国的情况进行比较。虽然美国和中国差异显著,但他坚信中国的第三方支付市场前景非常广阔。   便利和安全挑战网络支付   “你只需要一个手机号码或者一个邮件地址就可以网络支付。”在快钱的户外广告中这样写道,这和传统的需要银行账户才能进行网络支付的习惯形成了鲜明的对比。   然而这种支付模式和传统的网络支付并无本质的区别,因为每一个手机号码和邮件地址背后都会对应着一个账户——这个账户可以是信用卡账户、借记卡账户,也包括邮局汇款、手机代收、电话代收、预付费卡和点卡等多种形式。   “快钱的功能其实就相当于融合了很多交易工具的VISA卡,所以又被称为网络VISA。”关国光说,“从本质上讲,我们和VISA等采用的底层技术是没有差别的,我们和它的区别在于VISA卡面对的交易工具比较单一,而快钱面对的是多种分散的交易工具。”   因为“信用缺位”,网络支付一直是困扰中国电子商务发展的瓶颈之一。网络支付平台相当于“信用缺位”条件下的“补位产物”,它把众多的银行卡整合到一个页面端口,以支付公司作为信用中介,在买家确认收到商品前,代替买卖双方暂时保管货款。   目前最知名的网络支付平台包括阿里巴巴的支付宝和eBay的Paypal(贝宝)。关国光表示,快钱最大的特点是第三方的支付平台,主要客户为那些中小公司。这些网络支付平台的主要业务是针对母公司的,不太可能被其母公司同行使用。   “而用户可以选择使用从银行卡、邮政汇款到点卡、预付费卡的各种支付方式,快钱平台对人口和支付工具的覆盖都非常广泛,这是我们创新的地方。”关国光告诉《第一财经日报》。   交易的安全性是网上支付平台最大的问题。关国光说:“快钱采用了各种机制来保证用户资金的安全性,例如回款机制等,可以在用户付款过程由于各种意外因素中止或未完成时,系统将用户账户自动回复到交易开始时的原始状态。”除此之外,快钱也建立了一系列监控机制,有问题的交易系统会被强制暂停两天以供审查。内部财务方面则遵守相互监督的原则,不会让任何一个人参与主导交易全程。在交易的识别方面,快钱有一套交易过滤引擎,可以识别出较明显的问题交易行为。   增值服务:网络支付的撒手锏   在关国光看来,快钱平台可以提供详细的用户行为记录,进而方便商户掌握用户的喜好和需要。这种增值服务对于支付平台至关重要。   在市场推广方面,快钱公司市场推广的目标就是让用户知道快钱这个品牌,然后将精力集中在核心应用上。“快钱的策略就是同主流应用相捆绑,致力同大厂商合作,因为目前大型门户所掌握的用户资源是相当多的。”   “我们不必去强迫用户使用快钱,因为网络支付只是交易过程中的一个附加品,单推一个支付平台是没有效果的。”关国光表示,“快钱的策略就是要找准交易,捆绑和依托在上面,用户在进行电子交易时,自然而然就会用到我们的支付平台。”   除此之外,快钱的策略是先稳定一批活跃用户后,再将目光放到普通用户上。关国光把快钱的营销模式称为非线型营销,“一个注册用户在支付交易中往往会带入一个未注册用户,用户之间的互动会形成网络效应。”   从创业开始,快钱的商业模式就没有变化过。“快钱的后端绝不做应用。”关国光信誓旦旦地表示。他认为一旦快钱做了应用,将面临更多的竞争对手,同时也违背了自己独立的第三方支付平台的市场定位。   快钱未来的梦想是:首先,将所有的支付工具整合为一个接口,随着流量的增加,给商户带来的价值是一样的,但成本更低。其次,快钱拥有用户的详细数据资料,可以实现数据库营销,为客户提供增值服务,例如支持客户的促销、推广等,或者为客户创造商业机会。   2005年8月,快钱公司获得美国DCM和半岛基金的首批风险投资,第二轮目前还在评估之中。关国光表示,对快钱来说,融资是一件水到渠成的事情,是最后考虑的问题。快钱挑选风投的条件只有两个,一是必须在中国有过投资;二是在中国的投资必须取得过成功。   “电子支付行业是一个入行容易、生存难的行业,”关国光说,“任何企业要在这个领域取得成功,就必须脚踏实地地认真去做,绝不能抱着投机的心理。” ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/11.txt ================================================   焦点个股:苏宁电器(002024),该股早市涨停开盘,其后虽在获利盘的抛压下略有回落但在强大买盘的推动下该股已经再次封于涨停,可见主力资金积极拉升的意愿相当强烈。   盘面解析:1.技术层面上,早市指数小幅探低后迅速回升,在中石化强势上扬的带动下指数已经成功翻红,多头实力之强令人瞠目结舌。不过在市场高度繁荣的情形下投资者也需谨慎操作,必竟持续的上攻已经消耗了大量的多头动能。   2.盘中热点来看,相比周二略有退温。但依然可以看到目前热点效应向外扩散的迹象相当明显。高度活跌的板块已经从前期的有色金属、金融地产股向外扩大至军工概念、航天航空等。   操作思路:短线依然需规避一下技术性回调风险,盘中切记不可追高。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/12.txt ================================================   智威汤逊全球CEO:大众传媒依然是品牌传播的好选择   本报记者康健发自上海   “想让品牌更快、更广地进入消费者,大众传媒仍然是很好的选择。”智威汤逊全球CEO Michael Maedel近日在上海的办公室告诉《第一财经(相关:理财 证券)日报》。他对有些人“电视、平面媒体失去意义”的观点不以为然。   智威汤逊是美国最大的广告公司之一,与奥美广告一起隶属于WPP集团,3月底刚刚收购了中国本土的上海奥维思市场营销服务公司。   大众媒体和互动媒体对半   针对新的媒体方式日益涌现,企业广告主投放广告越来越无所适从的情景,Michael认为,广告主应该进行定性定量的分析,使任何投放都有清晰的出发点:消费者。要让媒介触及消费者,使他们更愿意来倾听公司。   当然,在媒介越来越多的情形下,意味着传播方式的变化。过去主流的是大众传播,现在互动性和定制性带来了新的挑战——如何让品牌与消费者更加互动。   智威汤逊东北亚区域总监兼大中国区CEO唐锐涛则认为,中国面临两个挑战:品牌主张明确化和如何深化与消费者的关系。   他认为,大众品牌并未失去其价值,借助大众媒体可以清楚地传达品牌的真实含义。而在此基础上,还需要更新的形式使产品和消费者的关系进一步深化。通过互动媒体,可以将以往被动的关系变成主动对话的消费者关系。   唐锐涛的经验法则是,在进行投放的时候,大众媒体和新媒体“对半开”,前者致力于建立品牌,后者用于深化与消费者关系。   同时,产品根据消费者参与的程度也分为高消费者参与度产品和低消费者参与度产品。使用媒介取决于产品本身的复杂度。如饼干等不假思索就购买的产品,大众媒体作用比较大。汽车等奢侈品需要增加对话和互动,让消费者深入这个品牌。   全球品牌,本土特色   Michael特别强调品牌的全球定位和本地表述。他提到,即便广告主是洗衣机,在各个市场,洗衣机的价格跟消费者的工资比例不一样,有些市场用2天的工资就可以买一台,而有些市场,消费者需要用自己三个月的工资才能购买到。这样的情况下,消费者的参与度就完全不一样了。那些用三个月工资才能买得起洗衣机的人会花更多时间去了解产品的性能是否耐用,这跟成熟市场完全不同。   “本地化并不意味着把全球广告翻译成中文,这是一种拙劣的方式。”Michael 称。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/13.txt ================================================    新华网上海5月10日电 中国石化集团上海工程有限公司最近与中石化第二建设公司、荷兰AK公司组成联合体,一举成为沙特延布年产40万吨聚乙烯和40万吨聚丙烯生产装置项目的总承包商,总承包金额7.5亿美元,其中上海工程公司承包金额4.65亿美元。    据《解放日报》报道,目前,沙特石化项目的基础设计工作已接近尾声,其中上海工程公司派出20多人赴荷兰参与设计。项目详细设计工作将于年底结束。明年年初施工开始,直至2008年4月竣工。这期间,大批中国设备、材料将运往红海岸边,四五百名中国技术、管理和施工人员将奋战在异国土地上。   两年前,上海工程公司得知沙特基础工业公司决定在红海西岸的延布建设大型石化联合企业,而AK公司正参与其中部分装置的竞标。权衡利弊,上海工程公司决定放弃单打独斗而与AK公司携手,提出三方组成联合体参与竞标的设想。中外三方过去在其他项目上多次合作,相互知根知底,因此一拍即合,很快签订合作协议参与竞标。如此优势互补,果然在竞标时将所有对手远远地抛在了身后。   根据总承包合同,荷兰AK公司负责项目基础设计,上海工程公司派人参与;项目详细设计由上海工程公司负责完成,AK公司给予支持。项目主要设备、仪表、主要电气设备,由AK公司负责采购,其余设备和大宗材料由上海工程公司负责采购,项目施工由第二建设公司负责实施。   上海工程公司是一家具有53年历史的国内大型工程设计承包企业,先后成功完成了上海化工区总体规划设计,上海石化、扬子石化、杜邦纤维等国内外4000多项设计和承包工程。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/14.txt ================================================   根据艾瑞市场咨询有限公司发布的2005年《中国网上支付研究》报告,中国网上支付的市场规模在2001 年为9 亿元,2004 年就达到了75亿元,年均复合增长率为102.7%。艾瑞预测2007年我国网上支付市场规模将达到人民币605亿元。   应该说在超过4亿个手机用户和1亿多网民支撑下,网上支付市场的想象空间无疑是巨大的。   对此,北京YeePay公司首席执行官唐彬甚至认为,支付需求现在已经是国内未被满足的最大需求。但2005年以前,作为结算支付主体的商业银行在面对大量低端商户支付业务时显然是一种不在乎、视而不见的态度。在这种情况下,商业银行选择向支付公司提供支付网关接口,将网上支付业务外包给支付公司,正如eNet硅谷动力商务运营部总监张磊所说的那样,支付公司成为商业银行支付业务的总代理商。   面对网上支付公司的崛起,商业银行开始觉醒起来,采取措施应对威胁;另一方面,网上支付公司也暴露出它监管上的弊病。原6688商城拖欠挪用商户结算款就是明例。   这个时候传出央行要在2006年出台《电子支付指引(第二号)》文件,即《支付清算组织管理办法》的消息,主要内容被认为是“关系到第三方支付公司的牌照发放”,据了解,在电子支付领域,牌照数量不会超过10张;对于清算体系,央行的原则是“以央行作为主导,商业银行作为主体,社会组织作为补充”,而以快钱公司为代表的第三方支付公司就属于“社会组织”。另一家第三方支付商好购公司总经理何明攀在接受《第一财经(相关:理财 证券)日报》采访时表示央行之所以要出台管理办法就是为了防止网上金融欺诈和无序竞争,规范网上支付市场。   易观国际认为,随着今年底金融业全面开放的大限临近,中国第三方支付市场的重组与洗牌将在所难免,在目前国内40家左右的第三方支付服务商中,至少有一半会出局。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/15.txt ================================================   本报讯 (记者李英辉)已经退出北京市场两年多的车贷险业务重现市场。记者昨天获悉,安邦财险将在本月启动车贷险业务。   购买车贷险后,一旦贷款人不能还贷款,保险公司要负责赔偿银行贷款。该险种面市后,曾极大地促进了银行车贷业务的发展。由于车贷险的赔付率竟然超过100%,保险公司不堪重负,两年前全面退出市场。   新车贷险做了重大调整。原来只要被保险人逾期还款,保险公司就须代其还款。新条款中,保险公司的履约责任由第一位降到第二位,如出现被保险人逾期还款的现象,先由银行和汽车公司追偿,然后进入保险公司赔偿程序。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/16.txt ================================================    本报北京5月9日讯 记者潘跃今天从中国红十字会总会举办的“博爱论坛”上获悉:目前,全国已有641个县(市、区)开展试点工作,有1.63亿农民参加了合作医疗。试点地区农民的医疗负担有所减轻,因病致贫、因病返贫的情况有所缓解。   据有关资料显示,我国医疗资源分配极不均衡,占全国人口20%的城市人口占有我国卫生资源的80%,而占全国人口80%的农村人口仅占有20%的卫生资源。近年来,由于医疗服务保障的城乡差异,大城市的人均寿命比农村高12年,而贫困地区儿童死亡率则是大城市的9倍。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/17.txt ================================================   设想一下,如果某家银行花了大力气进行品牌建设,可顾客每每面对的是铁栅栏后面一张冷冰冰的脸,敷衍推诿,甚至恶语相向,他们自然很难相信这家银行所作的品牌承诺,也会动摇对银行的信任   本报记者范松璐发自上海   在一个金融服务品牌提升研讨会上,扬特品牌欧洲的董事长TerryTyrrell饶有兴趣地展示了一些别出心裁的银行标志,从图案的设计中很容易发现为人们所熟悉的知名公司品牌的影子,比如麦当劳那个醒目的“m”和苹果电脑缺了口的苹果,而类似可口可乐的标志下,索性写着“CocaCash”,看到这些易于识别和引发联想的标志,台下观众发出一阵阵会心的笑声。   “当然,这些银行标志只是我的想象,不过,目前在金融服务业领域,有没有像这几家企业那样影响深远的品牌呢?恐怕还没有。”Terry说。在激烈的竞争环境中,弱势品牌可能会被猎食,不过,只知道掏钱购买弱势品牌、而并不能建立一个强大品牌的猎食者也未必能得到良好的投资回报。对现有的银行而言,建立自身的强势品牌适逢其时,而且相当重要。   应求与众不同   国内金融服务业暗流汹涌。2006年是中国进入WTO,承诺开放金融市场的关键一年,外资银行即将进入,竞争格局正发生变化,市场内部也萌生诸多影响零售银行业务成长的因素——高强度的经济发展、政府收缩对社会福利的补助、房屋私有率提高、人口日益老龄化、个人消费成为经济发展的关键动力,而且企业银行业务要利用总体性平衡来管理中小型企业贷款、开发收费产品。   讲到银行现存的症结,人们的第一反应往往是不良贷款比率偏高、风险评估实战经验不足、消费性金融产品缺失、企业管理标准不够完备等等。但另一方面,不容忽视的是,国内银行的品牌建设也存在某种滞后——鲜有差异化的品牌定位、品牌经营思维和以客户为本的鲜明形象,顾客感受到的环境和服务面目雷同,甚至干脆一模一样。扬特中国区创意总监黄鼎杰展示了一页图片,是某家知名商业银行的营业厅,“能看出来这是哪一家银行吗?”的确,对多数人来说,只能感觉似曾相识,却基本无从分辨究竟是哪一家。   再看银行的图标,如果把具体的图案及字体隐去,会发现图标的颜色和形状极其接近,比如四大国有商业银行的图标都是圆形图案加上银行名字。“圆形,应该是钱币的意思,不过是否可以改换一下视觉形象,让自己更醒目些,区分性会带来更多机会。”黄鼎杰还展示了某家美国银行的营业厅照片,乍一看去,难以想象这居然会是银行,而更像一家前卫酒吧——设计活泼明快,各种独特有趣的细节点缀夺人眼球,还有咖啡台和上网的电脑,“在这样的银行里,等待也似乎不那么让人心焦了——不过这种风格在国内还是有些超前,可能很多人会不放心把钱放进去。”黄鼎杰觉得,毕竟大多数顾客对银行的期望还是以“专业、安全、权威”为主,在此基础上,如果适当加入更多“友善、亲切”的元素,会进一步提升银行在顾客心中的形象。比如在香港,大多数银行的保安并不穿制服,这些细节往往能拉近顾客的心理距离。   对银行来说,通过识别系统、广告活动等方式来建立品牌构造是远远不够的,必须有更高标准,还要更多地从感情上联结顾客,建立强烈的认同感。银行业正在掀起一场争取客户心智的战役。   别让冰山倾覆   Terry展示了一幅冰山的图片,在他看来,人们从外面感受一家企业,就如同看到露出海面的冰山,其中包括品牌的定位、个性、表述等方面,而水面以下深藏不露的更大部分则是企业自身对内的战略、愿景、价值和激励,这些是令品牌长久保持活力的源泉,作用更为关键,正所谓“吸引人的真实”(com p e llin g tru th)。露出水面的冰山可以吸引外界注意,但倘若缺少真实的根基,冰山终究难逃倾覆的命运。   很多企业在努力建立和管理品牌的时候,不觉间会犯一个错误,只把注意力聚焦在顾客身上,而忽略了对员工的沟通、了解和重视。   “如果不能把员工培养成忠实的内部品牌拥护者,那就太可惜了。”扬特中国区董事总经理Debora Chatwin 认为,前线员工应该成为真正的品牌大使,发挥独特能力,和顾客建立良好关系,给公司带来利润,自己也得到更大的满足。   员工投入度对公司的回报影响不可忽视,《星期日泰晤士报》在2002年一项“最佳雇主”调查中也指出,获得雇员好评的公司股价和股息收益增幅达25%,远高于同期英国全股指数6.3%的上涨幅度。再回到国内,盖勒普2004年进行了一项调查,将工作的人们分为“投入型”、“不投入型”、“积极投入型”三种类型,结果显示,有68%的人属于“不投入型”,对工作没有激情,觉得工作与自己个人关系不大,工作时几乎形同梦游。粗暴、冷漠、不满足的员工会伤及客户和公司自身,身处服务业的银行更是如此。   设想一下,如果某家银行花了大力气进行品牌建设,可顾客每每面对的是铁栅栏后面一张冷冰冰的脸,敷衍推诿,甚至恶语相向,他们自然很难相信这家银行所作的品牌承诺,也会动摇对银行的信任。许多国有商业银行在此方面可能需要多一些反思。“领导层的重视是使得员工与品牌紧密联结在一起的重要因素。”Terry表示。   “员工联结”修固品牌根基   银行的顾客细分、产品开发、风险管理都需要高水平的管理者和职员,有些人才要从外部市场引进并整合到银行的运营和文化中,这一点上,超越金钱奖励而创造积极向上的企业文化可能更为长远。   渣打银行在员工联结方面的努力产生了一定的效果,面对资源收缩、员工士气开始低落的现象,银行开展了名为“树立典范”(TaketheLead)的内部沟通计划,希望将所有人力资源和传播活动加以整合,清晰传递管理层的承诺,对员工进行积极有效的奖励,使他们重获工作的信心和自豪感,表现自己的领导才能。   计划的代言人是一个活泼的卡通人物“StarMan”(星仔),它的各种形象代表了各种“树立典范”的行动,力求将抽象鼓励变成具体榜样。渣打银行向高级经理们发放一套介绍计划的录像带和新的员工通讯录,贯彻名为“JustSayThankYou”(说句谢谢您)的员工表扬计划,用有“星”形象的卡片给努力工作的同事写谢谢,公司刊物也更名为“TheLeader”(典范)。另外,银行在对外的信息传递中也采用很多“星仔”标志,这一切都使员工对整个计划的印象不断深化,并逐步加强认同感。最终,顾客满意度显著上升,员工流失减少,对品牌内涵的理解更深。   “员工联结”不只是让大伙儿了解正在发生的事情,更要得到他们的投入和参与,与品牌之间产生一种紧密的情感。这样不仅能使冰山露出水面的部分看上去很美,深埋在水下、不易为人所见的真实根基也会更加牢固,做到这些,依靠银行自身长久的修为。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/18.txt ================================================   如果你周围的不少人都晋升了,那就该好好反省自己了。看看以下种种晋升“绝症”,是否有自己的身影呢?   职位成功晋级,事业更上层楼,这是不少经理人的职业目标。然而,很多经理人努力打拼却依旧还在原地徘徊。   在竞争社会,当你不能升职的时候,要先考虑是企业体制的问题,还是你自己的问题。如果是体制问题,你可能根本就没有机会,完全可以选择主动离开。如果你周围的不少人都晋升了,那就该好好反省自己了。看看以下种种晋升“绝症”,是否有自己的身影呢?   失语症——上司换了8个,我还是当绿叶   邓珉在一家知名房地产物业公司做行政人事主管,从2001年到现在,公司先后换了两任老总,换了8个项目经理,每个项目经理升职调走了,而她却一直在原地不动。让邓珉困惑的是,她要不停地适应新领导的管理风格,而且自己的发展空间有限。物业公司的行政人事工作并不复杂,她只要用30%的精力就足够应付得了。公司也一直认为邓珉是个老同志,比较稳定塌实,哪里需要就让邓珉过去。   “失语”诊断:邓珉一直在做默默无闻的“失语”绿叶,整整陪衬了8位上司。行政支持工作并不是最“抢眼”的红花,企业很容易把你定性。虽然你在公司给大家留下了不错的印象,但企业往往是哪里需要你,就把你往哪里搬。   药方:生意就是生意,经理人要更多地考虑自身的利益,衡量自己的投入和产出,千万别做赔本的买卖。想要晋升,就要勇于表现出来,要捅破这层窗户纸。第一,想要。第二,要做。第三,要让老板知道。一定要向老板提出你的想法,你可以结合企业的资源和现状来分析,要让老板意识到,你的确想要承担更大的责任。另外,表明你现有工作做得不错,你也有这样的能力。在企业环境相对稳定时,企业在重用一个人的时候,看重的不是能力,而是信任。这方面你有优势。   自闭症——就盯着自己的一亩三分地   一年前,业绩出色的路平被破格提升为企划经理,但他还是走业务路线,手底下没兵,只有一个助理协助他。他一直对市场企划总监这个职位心仪已久,没想到最后却被能力、业绩远不如自己的同事PK下来。   原来,一向喜欢单打独斗的路平总是有点各色,他只愿意盯准自己那一亩三分地。例会时,部门讨论其他市场活动方案,他总是一言不发。等到询问起他的意见时,他便说,“不好意思,我没来得及看。”平日的团队活动或是聚会,也难见他的身影。老板用人所长,结果导向,对路平也是睁一只眼闭一只眼。但同事们不免背后嘀咕,说路平小农意识。   “自闭”诊断:各色的路平眼里只有自己那一摊。在结果导向、业绩为王的公司,这样也许没错。但在晋升路上,过分的“自闭”会让上司有所顾虑,同事的反作用力也会断送你的晋升良机。   药方:职场中人人都是生意伙伴,上司、同事都是价值链上的客户和资源。只盘算着自己的眼前利益,往往会失去更多“商机”。路平要积极和同事们主动交往,能者多劳,既然你点子多,不妨多给同事们出一些好创意,而你在支持同事的同时,不仅获得了一个好人缘,进而也熟悉其他业务线,增强了自身的实力。如果其他业务线你也能轻松玩转的话,上司一定会给你更多机会的。   狂妄症——“我就愿意让别人听我的”   安妮是一家呼叫中心项目部的客服经理,她刚上任不久,就引起了下属的极度不满,而且被投诉到公司总部。   原来,安妮个性强势,上任后就进行了一系列改革,重新排班,规范服务,整顿流程等等。改革取得了一定成效,以前忙乱的客服工作逐渐变得有序,但安妮自己却引起了一片倒伐之声。当下属在外面忙得团团转时,她却在自己的单间里会客聊天,而且经常不来上班。而自由散漫的安妮对下属却是实施高压手段,用她的话来说,“我就愿意管人,让别人听我的。”她安排自己的亲信任职,监视其他下属言行,搞得员工怨声载道。几个月后,项目高管调整,其他几个项目的中层都获得了提升,惟独安妮没有新的发展空间,最终辞职而去。   “狂妄”诊断:安妮有着强烈的领导欲望,管理风格泼辣强悍,但她却忽略了接受方的感受。改革虽然初见成效,但她自己却难为表率,严人宽己的领导风格必然难以服众。   药方:狂妄的强权不是万灵药,身为管理者,安妮既是规则的制定者,也是规则的裁判,如果自己都处处破坏规则,一时的业绩也只能是短期效应。而下属员工是经理的供应商,水能载舟,也能覆舟,业绩是需要大家一起努力做出来的。安妮如果早些努力调试自己,采取一些柔性管理手段,避免激进改革,以身作则让员工口服心服,也不至于在项目调整时弄得丢盔卸甲。   多动症——不开心就跳,越跳越迷茫   30出头的汪力已经换了6家企业,现在一家IT企业任数码产品经理。年轻时为了薪水而跳,把跳槽当成涨薪的跳板,往往是这家企业还没彻底了断,就已经在下家开始领薪水。近一年来,汪力倒还算得上稳定,一直没什么非分之想。但上个月,公司的产品总监换成了一个台湾老板,对汪力似乎有些看不顺眼,重要业务会议不让他参加,一些产品的推广预算也卡得很紧。汪力感觉自己不被信任,正逐渐被边缘化,他又动了大不了走人的念头。   汪力把自己的简历给了一家猎头,没想到猎头却称,他跳槽频率过快,如果要晋升高职,希望并不大。如果平级跳,汪力又不甘心。   “多动”诊断:通常,猎头非常不喜欢频繁跳槽的人,因为频繁跳槽说明此人目标不清晰,对公司的忠诚度值得怀疑。汪力一直对自己期望较高,如果现实稍不如意,便有“弃暗投明”的念头。但频频转换,跳成了习惯,在每一个职位上都不能积累较多的资本,更谈不上为晋升打下坚实根基了。   药方:在猎头眼中,在一家公司中高层职位上干满3年的候选人是比较理想的。汪力如果认准了行业,就要努力埋头做下去,没有完美的企业和上司,你在这家企业被边缘化,如果不能咸鱼翻生的话,再换一家也同样如此。只有想清楚自己的目标,稳扎稳打,步步为营,用实在的业绩说话,下一个晋升机会才不会擦肩而过。   其他非典型晋升“绝症”   1.“红眼病”,容不得他人比自己能干,喜欢背后冷嘲热讽。   2.“营养不良”,知识和能力总是跟不上企业步伐。   3.“骨质疏松”,没有主见,人云亦云,就会做老好人。   ……   第N种:“抑郁症”,非黑即白,抱怨连连却缺乏行动力。   (文章出自:前程无忧〈人力资本〉杂志) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/19.txt ================================================   本报讯 (记者段志敏)中国移动北京地区手机资费刚刚下调,零售终端迅速作出反应。昨天下午,北京苏宁电器宣布本周末起手机大降价。包括诺基亚、摩托罗拉、索爱、三星等主流品牌在内的手机降幅将超过20%。   北京苏宁电器市场部经理徐正飞说,此次降价外资手机是主力,诺基亚降价机型多达10款,摩托罗拉和索尼爱立信降价机型也分别达到8款和6款。不少外资品牌新机型降幅超过20%。   苏宁电器华北地区管理总部执行总裁范志军认为,北京移动资费首次大幅调低,必将刺激北京手机市场消费,带来新增长,预计市场增幅应在30%以上。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/10.txt ================================================   本报讯 (记者 王京) 联想THINKPAD近期几乎全系列笔记本电脑降价促销,最高降幅达到800美元,降幅达到42%。这是记者昨天从联想美国官方网站发现的。   联想相关人士表示,这是为纪念新联想成立1周年而在美国市场推出的促销,产品包括THINKPAD T、X以及Z系列笔记本。促销不是打价格战,THINK品牌走高端商务路线方向不会改变。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/11.txt ================================================   本报讯 全球最大个人电脑制造商戴尔公司8日说,由于市场竞争激烈,以及定价策略不当,该公司今年第一季度盈利预计有所下降。消息发布之后,戴尔股价一度下跌近6%,创下一年来的新低。   戴尔公司估计,其第一季度收入约为142亿美元,每股收益33美分。此前公司预测当季收入为142亿至146亿美元,每股收益36至38美分,而分析师平均预测戴尔同期收入为145.2亿美元,每股收益38美分。   为抢夺失去的市场份额,戴尔公司一些产品打折力度很大。戴尔公司首席执行官凯文·罗林斯在一份声明中说,公司在售后服务和产品质量方面一直在投资,同时不断下调价格。戴尔公司将于5月18日公布第一季度的财报。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/12.txt ================================================   本报讯(记者 陆一波)售价8.5万港元的《文渊阁四库全书电子版》在易趣网上竟以60元的价格拍卖。为此,拥有该电子出版物版权的迪志文化出版有限公司将共同经营易趣网的上海易趣贸易有限公司和亿贝易趣网络信息服务(上海)有限公司告进法院。昨天,市二中院开庭审理此案。   去年11月,迪志公司发现易趣网未经其许可,允许并配合其用户在网上公开拍卖该电子出版物,且这17张光盘均属盗版。迪志公司将易趣网的经营公司告进法院,要求立即停止侵权,赔偿经济损失人民币50万元并刊登致歉声明等。   易趣网的代理律师辩称,易趣网仅是网络交易的专用平台,未直接实施侵权交易,且网上已设知识产权查询系统,供权利人举报。该公司已尽合理范围内的注意义务,没有责任。   庭审中,法院发现《文渊阁四库全书电子版》的版权由迪志公司和上海人民出版社共同所有,故宣布该案将在上海人民出版社参加诉讼后继续开庭审理。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/13.txt ================================================   关键字:裁员 美国在线 呼叫中心   标题:美国在线计划裁员1300人占全球员工总数7%   时间:美国东部时间5月9日上午10时30分消息   来源:英文雅虎   内容摘要:美国在线计划裁员1300人,约占其全球员工总数的7%,位于费罗里达州杰克逊维尔呼叫中心将被关闭,此外,位于犹他州奥格登美国亚利桑那州图森的呼叫中心也被列入此次裁员的范围。这是自去年秋天美国在线裁员700人以来最大规模的一次人员精简行动。去年10月份,面对拨号上网用户数量持续下跌,美国在线关闭奥兰多的呼叫中心,位于杰克逊维尔和总部杜勒斯的呼叫中心有部分职位被削减,总共裁员700人,约占其全球员工总数的4%,尽管美国在线的用户流失现象严重,但该公司的发言人尼古拉斯-格拉汉姆将这一结果归咎于用户对电脑的日益了解以及更多工具的出现,他表示:“与1996年美国在线建立会员中心相比,2006年的英特网世界是一个完全不同的世界,美国在线的会员们头脑更加灵活,具备更加丰富的电脑知识,他们几乎都是电脑通,一般的故障都能自己排除,呼叫中心的功能日趋减弱。”一项数据显示,自2004年以来,美国在线的呼叫量下降了近一半。   关键字:手机销售 排名 瑞典   标题:4月份Telia商店手机销售排名前10位   时间:美国东部时间5月9日上午11时35分消息   来源:法新社   内容摘要:瑞典最大的通信产品零售店Telia今天公布2006年4月份手机销售排行榜,进入销售前十的手机中索爱占5款,诺基亚占3款,三星占2款,其中有两款是3G手机(诺基亚6280和三星Z140),六款有照相功能,六款有MP3播放功能,具体的排名为:排名前十位的手机为:(1)索爱K750i(上月排名第四)、(2)诺基亚3120(上月排名第三)、(3)诺基亚5140i(上月排名第一)、(4)索爱Z300i(上月排名第五)、(5)诺基亚6280(与上月的排名一致)、(6)索爱W810i(与上月的排名一致)、(7)三星X660(与上月的排名一致)、(8)索爱Z520i(上月排名第二)、(9)索爱W800i(上月排名第六)、(10)三星Z140(上月排名第九)。Telia是瑞典最大的移动电话零售店,拥有78个商店,该排名就是依据各商店的销售数据得出的结果,Telia市场部的负责人指出,“照相以及MP3播放功能已经成为许多客户对手机的基本要求,手机用户对于移动电视的需求也在不断增加。”   关键字:业内合作 下载 电视连续剧   标题:苹果公司提供福克斯娱乐集团出品的电视连续剧的下载   时间:美国东部时间5月9日上午11时20分消息   来源:英文雅虎   内容摘要:苹果公司日前宣布,iTunes音乐商店(Music Store)已经开始销售福克斯娱乐集团出品的电视连续剧,例如此前风靡全球的《24》。苹果公司介绍称,每部电视连续剧的下载费用为1.99美元,除了《24》之外,《盾牌》、《越狱》、《吸血鬼猎人巴菲》也在下载之列。此前,iTunes音乐商店提供来自ABC、CBS以及NBC的节目下载服务。   关键字:民意测验 电子游戏 美国   标题:40%美国成年男子玩电子游戏   时间:美国东部时间5月9日上午10时20分消息   来源:英文雅虎   内容摘要:美联社与美国在线近期开展的一项民意测验显示,十个成年美国男人当中有四人通过电脑或者游戏机玩电子游戏,其中有45%的人通过因特网玩电子游戏,多于三分之一的人2005年花费在网络游戏上的资金达到两百美元,42%的人每周玩电子游戏的时间超过了四个小时,26%的人通过游戏机玩电子游戏,六分之一的人每周在线玩游戏的时间为十个小时。关于游戏的内容,战略游戏最受欢迎,其次为体育游戏,冒险游戏还有射击游戏以及仿真游戏。   关键字:打击盗版 下载 华纳兄弟   标题:华纳兄弟计划通过BitTorrent提供影片下载服务   时间:美国东部时间5月9日上午11时55分消息   来源:英文雅虎   内容摘要:美国娱乐业巨头华纳兄弟公司(Warner Brothers)将成为第一家向BitTorrent用户提供电影内容下载服务的公司,该公司希望通过此举打击盗版行为。华纳兄弟家庭娱乐公司总裁Tsujihara表示:“盗版的问题变得越来越严重,我们的这种作法是将这一问题变成一种机会,如果我们能够将5%,10%甚至是15%的这些用户转化成合法的用户,其影响力将会十分的重大。”华纳兄弟公司指出,用户可以租用或者下载那些可以被制作成DVD的拷贝,但是此项服务推出日期以及具体的定价目前还不得而知。此前,华纳兄弟准备将电影如《蝙蝠侠》、电视连续剧《玩酷世代》等影片通过P2P网络在网路上销售。该公司一负责人指出,成功打败目前线上剽窃行为最有效的武器之一就是向用户提供合法且容易使用的替代性选择。In2Movies服务使观众能够合法下载华纳旗下百视达的电影、地区性节目。   关键字:业绩 荷兰电讯公司 净收入   标题:荷兰电讯公司Royal KPN NV周二表示其第一季度净收入达到3.83亿美元   时间:美国东部时间5月9日上午11时20分消息   来源:道琼斯新闻   内容摘要:荷兰电讯公司Royal KPN NV周二表示其第一季度净收入达到3.83亿美元,比去年同期的2.74亿美元增长了40%,销售收入也达到了37.2亿美元。在固定电话部门收入下降2.3%达到21.4亿美元的情况下,移动收入增长了15%,达到了19亿美元。此外,该公司在德国新增加用户70万。   关键字:新举措 漫游费 沃达丰   标题:沃达丰表示将在明年降低手机漫游资费   时间:美国东部时间5月9日上午10时25分消息   来源:道琼斯新闻   内容摘要:迫于欧洲委员会的压力,英国电信巨头沃达丰公司(Vodafone)近日表示将在明年降低手机漫游资费,其低价幅度将达到40%。欧洲委员会此前的建议称,当欧洲用户出国后,他们不应该被收取漫游费,不能因为他们出国旅行而缴纳更高的费用。   关键字:新产品 超薄手机 三星   标题:三星公司在莫斯科电信展推出两款超薄手机   时间:美国东部时间5月9日上午10时40分消息   来源:英文雅虎   内容摘要:在莫斯科的Sviaz ExpoComm 2006电信展上,三星公司推出两款超薄手机,其中一款为SGH-X820,厚6.9毫米,重66克,内置200万像素摄像头和MP3播放器,容量80MB,支持视频录制、蓝牙和电视输出。另外一款为滑盖式手机SGH-D900,厚度及重量比SGH-X820稍大一些,内置300万像素摄像头,支持Quad-band GSM网络,但三星公司并没有透露这两款手机的价格。   关键字:服务 高清晰 数字广播   标题:英国广播公司(BBC)首次推出免费的数字广播服务   时间:美国东部时间5月9日上午7时10分消息   来源:路透社   内容摘要:英国广播公司(BBC)本周内首次推出了使用电视格式的高清晰数字广播,这项服务将进行为期一年的试验。根据此前英国广播公司所作的调查显示,了解高清晰数字广播的听众都期待着BBC尽早开通高清晰数字广播服务,并希望在任何频道都能收到该广播。据报道,该项广播将从5月11日正式开通,开通之初仅限于拥有高清晰设备的用户。BBC公司同时还证实了在世界杯期间,在某些地区数字广播能用电缆进行传播。从6月9日开始,BBC公司将对世界杯进行高清晰无线电和电视的同时联播。这种联播还将应用于温布尔登主要的赛事。BBC电视部门总监加纳?贝内特(Jana Bennett)说:“高清晰数字广播是BBC公司计划在未来向全世界提供高清晰服务的而迈出的第一步,虽然步幅小,但是是激动人心的。”   关键字:电脑黑客 审判 服刑   标题:美国电脑黑客安契塔被判入狱57个月   时间:美国东部时间5月9日上午10时35分消息   来源:法新社   内容摘要:美国电脑黑客安契塔被判入狱57个月。检方指出,安契塔,20岁,是知名秘密骇客网络“地下蠕虫大师”的要员,于去年十一月被捕,这是第一起遭起诉的相关案件。他被控侵入四十万余部电脑(或称僵尸网路,bot nets)损害其系统,并促使受害电脑大量寄发垃圾邮件。遭安契塔入侵的,还包括美国军方的服务器。 在洛杉矶的联邦法庭上,面对17项指控,安契塔承认密谋违反电脑诈欺滥用法、反垃圾邮件法,和损及美国军方电脑。他并坦承散播能促使电脑发送垃圾邮件、广告以及对网站发动瘫痪性攻击的恶意软体。 检方发言人莫柴克说:“安契塔尤其对这一连串的秘密犯行负有责任,他入侵加州近五十万部电脑系统,受波及的电脑并不限于家用电脑,这也让他与他人得以发动大规模的攻击。” 安契塔在庭上同意赔偿军事单位一万五千美元,他的不法获益也遭没收,其中包括逾六万美元现金、一辆BMW汽车与一些电脑设备。(章田编译) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/14.txt ================================================   本报讯(记者 马海邻)记者昨天得到确切消息,新浪公司今天将宣布由曹国伟接替汪延担任CEO,汪延则任董事会重要职位。   曹国伟此前是新浪总裁兼CFO(首席财务官)。他于1999年加入新浪,任主管财务的副总,之后任职CFO、CFO兼COO(首席运营官)。曹国伟先后获得复旦大学新闻学学士、美国奥克拉荷马大学新闻学硕士学位,1993年获德国奥斯町大学商业管理学院财务专业硕士学位后,任职普华永道。其人被外界评价为强势的鹰派管理风格,曾获《首席财务官》杂志和IDG中国共同评选的“2005年度杰出CFO”。   外界认为,由曹国伟主导的2003年1月收购讯龙、2004年3月收购深圳网兴科技,这两笔收购不仅奠定了新浪此后在无线增值业务上的地位,同时也增加了新浪经营模式的多样性与稳定性,对新浪意义非凡。新浪董事会对公司2005年以来业绩的滑坡、非广告业务收入下滑感到忧虑,希望曹国伟能够力挽狂澜,加强新业务的拓展。   汪延于2003年5月取代茅道临出任新浪CEO。有关新浪再次换帅的传闻,起于去年下半年。昨晚新浪内部一名高层人士证实,今天在发布财务季报的同时,宣布人事变动. ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/15.txt ================================================   全国25个入围项目 北京考古项目遗憾落选   十大考古新发现揭晓   本报记者黄涛报道 经过两天的专家评审,由中国文物报社和中国考古学会主办的“2005年度全国十大考古新发现”昨天晚上7点正式揭晓。25个参与评选的入围项目中,浙江嵊州小黄山遗址、湖南洪江高庙遗址等10个考古项目最终成功入选,北京门头沟东胡林遗址遗憾落选。   评选已延续16年   主持此次评选的中国考古学会理事长徐苹芳介绍,十大考古新发现开评至今已经是第16年,此次考古新发现评选从今年1月启动。与去年由各地申报不同的是,今年采取专家根据中国文物报发表资料遴选的办法,由有关专家联合推荐入围项目。   入围项目的推荐充分考虑学术价值、是否推进学科发展、社会影响、发掘中的 文物保护意识等因素,同时综合时代和区域考古成果等,从2005年1—12月期间国家文物局批准发掘的100余项考古发现中,召集专家会议筛选出24项,涵盖旧 石器时代至宋元时期各个类型的文化遗存。只有 福建东海平潭“碗礁1号”清代沉船遗址是经两位以上专家推荐,直接申请参评的。   参评须经国家批准   “在16年的评选中,评选的标准至今没有改变。”徐苹芳介绍说,评选标准总结来说就是“三个价值”和“一个新”。   参评项目必须是经过国家批准,发掘过程也符合国家的考古发掘规程。而这些考古发现的项目必须在全国范围内具有突出的历史价值、艺术价值和科学价值。而“新”则是指在中国考古学科中增添了新的内容和发现,这些标准缺一不可。   评委“忍痛割爱”   此次入选的项目中多数属于年代较远的遗址,徐苹芳解释说,18名评委们并没有“厚古薄今”的意思,完全根据考古的价值来评判。但是由于2005年是中国考古的“丰收年”,参选的项目水平都相当高,因此评委们最终也不得不“忍痛割爱”。   希望社会关注文保   在评选过程中,许多参评项目的代表都对记者表示,参加评选是否能最终入选并不是最重要的,而只是希望以此引起社会对文物保护的关注。   考古专家张忠培表示,随着目前全国建设速度的加快,许多考古项目都是被迫“抢救”发掘出来的。因此,希望以评选的方式推动社会和政府关注文物古迹的保护,为国人留下更多的“遗产”。   十大考古新发现入选项目   1.浙江嵊州小黄山遗址   浙江省文物考古研究所   2.湖南洪江高庙遗址   湖南省文物考古研究所   3.贵州威宁中水遗址   贵州省文物考古研究所   4.河南鹤壁刘庄遗址   河南省文物考古研究所、鹤壁市文物工作队   5.福建浦城猫耳弄山商代窑群   福建省文物管理委员会考古队、福建省博物院考古研究所等   6.山西绛县横水西周墓地   山西省考古研究所等   7.陕西韩城梁带村两周遗址   陕西省考古研究所   8.江苏句容、金坛周代土墩墓   南京博物院考古研究所   9.河南内黄杨庄汉代聚落遗址   河南省文物考古研究所   10.山西大同沙岭北魏壁画墓 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/16.txt ================================================   □本报记者 陆琼琼   记者昨日从新浪获悉,汪延已经正式辞去CEO一职,曹国伟将接替汪延升任CEO,正式掌舵新浪。短时间内,从CFO到COO,到CEO,曹国伟的工作能力得到多方认可,出任新浪第四任掌门似乎并不出人意外。   著名网络评论人方兴东认为,对于本来就已经失去灵魂人物的新浪来说,曹国伟的当家很可能会走向一条更稳健、更务实的发展道路。但另有分析人士指出,即使曹国伟的务实作风有益于新浪,如果董事长段永基不离开,新浪仍然难逃厄运。以上分析人士解释说,作为新浪董事长的段永基却把主要精力花在了新浪之外的公司。   日前传闻中的新浪+TOM模式将弥补新浪无线增值方面的不足。记者从可靠渠道了解到,曹国伟接任CEO后还将继续带领新浪与TOM集团洽谈。“其实双方的谈判没有停止过,只是在有些细节上的分歧致使双方迟迟没有谈成。”该人士透露。   新浪将在美国当地时间5月9日公布第一季度财报,分析师预计新浪第一季度营收为4590万美元,每股收益为0.15美元,同比下滑25%%。在所有研究新浪股票的分析师中,有五位对新浪的评级为“买入”,有八位的评级为“持有”,有两位的评级为“卖出”。   新浪5月8日收盘于28.52美元,比上一交易日上涨0.07%%。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/17.txt ================================================   新华社电 美国宇航局官员近日说,宇航局已决定设立一项总奖金为250万美元的大奖赛,希望用这种方式选出未来登陆月球的飞行器设计方案。   美宇航局副局长戴尔5月5日在加利福尼亚州举行的一次航天会议上说,宇航局已选定“X大奖”基金会管理这项竞赛,宇航局除了出奖金外,也将在未来的月球登陆计划中应用获奖方案。   这项大奖赛要求参赛者设计出能在月球上飞行、着陆的飞行器原型。“X大奖”基金会说,它将比赛分成两个级别,在地球上模拟月球飞行。第一阶段,参赛飞行器要求从地球上的发射点发射到50米高度,盘旋飞行90秒钟,并在距发射点100米处的指定地点着陆,比赛的第一名将获得35万美元奖金。   而第二级别的难度高得多。参赛飞行器要求从发射点发射至50米高度,盘旋飞行180秒,并在100米外类似月球表面的一处崎岖地点精确着陆。这项比赛的第一名将获得125万美元的奖金,其方案很可能被宇航局采纳,作为未来登陆月球的飞行器的原型。   “X大奖”基金会因举办私人设计航天器大奖赛而著名,著名航天设计师伯特·鲁坦设计的“宇宙飞船一号”于2004年成功地飞入亚轨道,成为全世界第一个私人设计建造的航天器,并赢得了1000万美元的“X大奖”。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/18.txt ================================================   日前,据联想相关负责人表示,为了纪念新联想成立一周年,联想在美国市场将ThinkPad T,X以及Z系列笔记本进行一次降价促销活动。   据了解,此次降价最高达到了800美元,降幅也达到了42%。但联想方面表示,此次降价仅仅是针对该活动,ThinkPad品牌今后的路线仍是以高端为主. ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/19.txt ================================================   科龙德勤案又有新进展:已有多位科龙H股股东到律师处咨询、登记,所涉股份达200余万股。而这些投资者正在为等待提起民事赔偿所需的前置条件焦急等待。   4月29日,上海新望闻达律师事务所律师宋一欣、秦桢凯在中国证券网上发表了《向境内外科龙H股投资者征集民事赔偿诉讼代理的启事》,全面接受科龙电器流通H股及A股投资者的诉讼及仲裁委托代理事项。宋一欣律师告诉《上海证券报》记者,“《启事》刊登当天,就有H股股东前来咨询登记,由于五一长假,事务所休息,许多H股股东想方设法找到我的电子信箱同我联系。截至今天,已有七八位H股股东前来咨询、登记,所涉及股份己达50余万股,损失金额有待统计。这些H股股东中有境外居民。他们正焦急等待此案前置程序的满足。”   首位代表科龙股东状告德勤的上海市光明律师事务所南京分所律师涂勇则向记者透露:“多位科龙H股股东前来向我咨询起诉事宜。其中一位就持有150万股科龙H股,持股成本高达300多万元。他非常渴望前置程序能尽快满足,以便诉上公堂。”   据宋一欣介绍,“根据最高人民法院司法解释的规定,提起虚假陈述民事赔偿诉讼必须满足前置条件,即中国证监会或财政部的行政处罚决定,或有关法院认定有罪并生效的刑事判决书,两者以先出台者为准。”   “在科龙案中,中国证监会已经对科龙电器与德勤会计师事务所进行了行政处罚前的听证程序,如果没有意外,估计今年上半年内行政处罚决定将出台;而顾雏军编制虚假财务报告罪案已经被广东省佛山市人民检察院立案、即将提起公诉,刑事审判在即。因此,包括H股股东在内的科龙电器权益受损的投资者提起民事赔偿应该不成问题,只是需要等待,万事俱备、只欠东风。”宋一欣进一步解释道。   谈及此案的被告,宋一欣表示,“科龙电器虚假陈述可涉及很多被告,如科龙电器公司;顾雏军等原董事、高管人员及直接责任人员;存在失职的原监事会成员和独立董事;进行审计的会计师事务所(会计师行)及其承担责任的合伙人、相关注册会计师;由于虚假陈述而获益的关联企业、控股股东等。但主要被告有三,即科龙电器公司、顾雏军、德勤华永会计师事务所(A股股东)或德勤·关黄陈会计师行(H股股东)。”   宋一欣称,“证券民事赔偿诉讼应当采取目前《民事诉讼法》规定的共同诉讼方式,科龙案也是如此。以共同诉讼提起的原告由于合并后按比例计算诉讼费,故其支出的诉讼费要比单独诉讼提起的原告所支付的诉讼费要少。所以,作为代理律师,从投资者的角度考虑,我需要筹集到一定数量投资者委托后才安排起诉。”(本报记者 岳敬飞 何军) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/10.txt ================================================   专仿竞争共存   近日,美国医药保健管理协会(PCMA)的一份评估报告指出,专利药厂家就老年人经常使用的专利药出台了一系列措施,试图限制仿制药厂商产销该类产品,通过诉讼、游说立法和专利成分陷阱等手段,力求最大程度延缓仿制药上市或进入联邦医疗保险体系。   PCMA代表医药管理公司如医疗保险业的利益。该协会会长MarkMerritt表示,专利药厂家正努力在未来5年内阻止若干仿制药上市,从而换回高达230亿美元的专利药销售额。据该协会的统计,到2010年有大约14支老年人常用药的专利将到期,如果仿制药如期面市,仅通过仿制降胆固醇药舒降之和普拉固、抗抑郁药左洛复、前列腺药保列治就可能为美国联邦医疗保险节约130亿美元。   代表美国专利药制造商利益的美国药品研究与制造商协会(PhRMA)反驳了Merritt的指责,指出联邦医疗保险预算正在逐年下降,而且仿制药的使用率非常高,处方药中有一半以上是仿制药,证明专利药厂家没有操纵市场,限制仿制药出台。   代表不同利益的两家行会组织都在表达一个共同的意思就是——专利药厂家和仿制药厂家针锋相对。而实际上,专利药厂家和仿制药厂家私下里也有同盟之时。   4月24日,美国FDA表示,近期将开展一项市场舞弊行为的调查。FDA指出,专利药厂家和仿制药厂家通过签定赔偿协议,主动延迟仿制药的上市时间,或控制面市药物数量,以商业合同的形式钻法律的空子,使专利药厂家继续获得高额利润,而仿制药企业则从专利药厂家手中获得现金回报。   专利药和仿制药之间的法律斗争由来已久,专利药厂家和仿制药厂家都逐渐意识到这是一场制药工业的内耗。1999年,诞生了第一份由专利药厂家向仿制药厂家“购买”推迟仿制药物上市承诺的赔偿协议。专利药厂家可以因此维持销售额和利润,仿制药企业一方面可以获得稳定的收入,一方面可借机压缩仿制药领域内竞争对手的市场空间。   美国联邦贸易委员会披露,去年9月先后有3份赔偿协议生效,之后又至少签订了6份类似的赔偿协议。最近发生的两起判决更是催化了制药企业签订类似协议的热情。   其中一宗涉及年销售额38亿美元的赛诺菲-安万特公司产品波立维,该产品在美国市场上由百时美施贵宝公司销售。赛诺菲-安万特公司和百时美施贵宝公司与仿制药公司Apotex签定了赔偿协议。根据协议,Apotex公司将所研制的波立维仿制药上市时间延后至2011年,同时得到一笔赔偿金,赔偿金额没有披露。这份协议的签订意味着,美国纳税人还要继续支付高额药费长达5年。第一只仿制药上市将平均导致原专利药价格缩水40%,市场独享期后,其他仿制药上市将使原专利药价格平均再缩水20%~40%。联邦贸易委员会正在考虑如何对这一协议作出反应。另一起协议涉及先灵葆雅公司,联邦贸易委员会已经要求最高法院巡回法庭给予驳回。联邦贸易委员会表示,如果巡回法庭没有驳回该协议,将导致专利药厂家和仿制药厂家随意限制竞争,操纵市场,分享暴利。   联邦贸易委员会已经向白宫管理与预算办公室提交报告,希望获准对多达200家制药企业发出传票,彻底调查类似的赔偿协议是否触犯了反竞争法。但就目前各制药企业强大的游说力量而言,落实反竞争调查的难度相当大。   仿制药增长势不可挡   在未来5年里,仿制药市场的成长趋势不可抵挡。IMS的分析数据显示,在未来5年中,仿制药的销售额将以14%~17%的速度递增,比整个医药行业的销售预期多9%。Bain&Company公司认为,仅2008年就将有价值780亿美元的处方药受到仿制药的冲击,而2005年这个数字为200亿美元。   仿制药获得发展的另一个原因是政府的青睐。美国联邦医疗保健和医疗补助服务中心(CMMS)降低了2006年的医疗开支预算,从381亿美元减缩至305美元。在经济发展不畅的时候,美国政府格外希望看到更多便宜的仿制药上市,以缓解联邦预算压力。   这个夏天,辉瑞公司年销售额达33亿美元的抗抑郁畅销药左洛复将失去专利保护,受到仿制药冲击后,年销售额预计为4.7亿美元。仿制药大户泰华公司更愿意自己掌握市场,而不是通过赔偿协议获得利润。泰华美国公司发言人KevinMannix说,泰华公司已经获准第一个推出左洛复的仿制药,泰华公司将有6个月的市场独享期。   生物制药领域可能成为新的仿制药冲击市场。美国没有批准生物仿制药,但在美国以外生物仿制药有较为显著的发展。   美国不得不正视生物仿制药市场的前景。首先,生物制药市场庞大,2005年销售总额大约310亿美元,市场空间相当可观。其次,生物制剂复杂程度远高于化学制剂,仿制成本和难度相当高,因而对美国主要生物制药企业的冲击不至于非常严重,也就不会动摇美国在全球的生物领先地位。据统计,生物仿制药的对原药物的价格影响只有10%~20%,而化学制剂则高达80%。此外,如果不及时拓展生物仿制药市场,那么欧洲生物制药行业将快速发展,赶超美国,并通过对美国生物制剂的仿制,分流美国制药企业的利润。   或成寡头垄断局面   经过几年的发展,仿制药市场有可能从市场竞争阶段进入寡头垄断阶段。在未来几年出现大量专利药到期的情况下,这一现象有可能加剧。   咨询公司ThomsonIBES的分析资料显示,泰华公司在未来3~5年中可能保持20%的惊人年收入增幅,2006年的市营率预期为21,接近理想状态的20,而同行业平均市营率是24。泰华公司目前拥有多达160个左右的简化申请新药备案,其中也包括若干生物药物的仿制药报批内容。2006年度,泰华公司有望把持美国仿制药市场20%的份额。泰华公司的目标集中在未来5年内几乎所有制药行业将要失去专利、目前市场价值高达1000亿美元的药物,这些药物的仿制药市场价值至少为200亿美元。   其他有望成为寡头的仿制药企业中,Andrx公司2006年的市营率预期为24,每股收益增幅预期为19%,销售额预期为11.03亿美元,公司的市场价值为17.5亿美元;Barr公司2006年的市营率预期为19,每股收益增幅预期为16%,销售额预期为12.81亿美元,公司的市场价值为64.47亿美元;Mylan公司2006年的市营率预期为18,每股收益增幅预期为19%,销售额预期为12.46亿美元,公司的市场价值为46.31亿美元;Perrigo公司2006年的市营率预期为22,每股收益增幅预期为10%,销售额预期为14.61亿美元,公司的市场价值为15.55亿美元;华生公司2006年的市营率预期为20,每股收益增幅预期为10%,销售额预期为18.71亿美元,公司的市场价值为30.98亿美元。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/11.txt ================================================   万络给止痛药市场带来的阴霾久久仍未散去,但这丝毫不能说明该市场的需求在减少。在既定的需求现实下,COX-2抑制剂的衰落,必然引来趁虚而入者。不久前我国河南帅克制药和贵州益佰先后宣称将倚靠新的止痛药进入该领域,一场“分羹”之战显然已经急促展开。   潜力巨大的镇痛药市场一直是跨国公司的天下,而最近它们的优势地位正经受挑战,其缘由是2004年8月份王牌止痛药万络爆出安全性问题引发了市场对新型非甾体止痛药的不信任感。   去年9月万络自动撤出我国后腾出了巨大的市场空间,引起了众多企业的觊觎,去年5月13日,中美史克曾经发起“霞光行动”,试图从困境中挽救其OTC王牌药芬必得,但更多的国内企业则尽量避开身处安全性危机旋涡中的COX-2抑制剂领域,希望从新的镇痛领域入手找到征战止痛药市场的新武器。   不久前我国河南帅克制药和贵州益佰先后宣称将倚靠新的止痛药进入这个潜力仅次于感冒药的新领域,据帅克制药董事长张克军透露,帅克开发的止痛新药氨酚曲马多片即将上市。据记者了解,该产品也是今年西安杨森力推的重点产品。而贵州益佰方面则透露,该公司将凭借一种止痛中药来分切国内巨大的止痛药市场。   显然,一场新的止痛药市场“分羹”大战已经打响。   止痛药市场依然是金矿   分析人士指出,尽管目前使用最多的COX-2抑制剂正遭遇安全性危机,但对于整个止痛药并不构成影响,此事件的最大可能是各大类止痛药由此进行一轮市场替代,而与此同时,整个市场还在继续增长。   中国已经步入老龄化社会,中老年人口约有5亿。风湿和类风湿关节炎、肩周炎、颈椎病、骨质增生等疾病在老年甚至中年人群中属于常见病、多发病,各类疼痛病症患者约占中老年群体的65%,而且这一群体数量还在不断的增加。   另外,随着我国制造业大国地位的不断提升,产业工人数量急剧膨胀,长期的劳作容易导致各种机体劳损和关节疼痛,因此,该群体已经成为疼痛药物消费的另一个大群体。由于电脑等工具的引入,人们的工作和生活方式已经发生了根本的改变,长期的静坐催生了这一人群各种疼痛的出现,这是导致疼痛人群增长的又一个重要因素。   据IMS国际咨询公司预测,2005年,全球止痛剂市场总量达800亿美元以上。目前,美国、欧洲和日本是全球最大的止痛药市场,过去30年来止痛药市场销售额一直在稳步上升。国内的资料也显示:我国非处方药市场上止痛药增长迅速,其销售仅次于感冒药,大约占到了20%的比例。   与此同时,目前医学更加注重病人的生活质量,对患各种疾病引起的疼痛的治疗也催生了新的止痛药市场。以癌症疼痛为例,   据我国卫生部统计数据显示,20世纪90年代我国肿瘤发病率已上升为127例/10万人。近年来我国每年新增肿瘤患者160万~170万人,死于恶性肿瘤人数达140万人,肿瘤患者总数估计在450万人左右。肿瘤患者中至少有1/3存在着不同程度的疼痛,其中晚期患者占60%~90%。   市场加速洗牌   由于止痛药使用领域及其广泛,所以各类药物的使用不能一概而论,但就医院处方板块分析,目前主要有四大类镇痛药,分别为阿片类镇痛药、非甾体类镇痛药、植物类镇痛药以及抗偏头痛制剂。非甾体类镇痛药原本是被寄予了厚望,在万络以及西乐葆等一批新型药物的带动下整个市场发展趋势非常喜人。1998年,全国14个典型城市入网医院的非甾体抗炎药购药金额为9903.3万元,到2002年已经增长至14022.3万元(见表1)。   不过由于非甾体类镇痛药的安全性问题,其市场有逐渐下滑的趋势,而阿片类药物则有上升的势头,相互市场取代现象比较明显。以使用较多的癌症镇痛为例,在2002~2004年样本医院镇痛类药物使用情况(见表2)中,阿片类镇痛药的市场分额由2002年的62.4%上升到2004年的68.4%。而非甾体类镇痛药的份额却从2002年的34.4%下跌至2004年的29.2%。   在阿片类镇痛药中,目前主要由曲马多、芬太尼和吗啡3大品种领衔,这三大品种占整个阿片类药品使用金额的70%以上(见附图)。   芬太尼为人工合成的非衍生物类阿片药片,属于强阿片类镇痛药,WHO将它归入第三阶梯镇痛药,其主要通过激动阿片类受体(μ受体)而发挥镇痛作用,止痛作用为相同剂量吗啡的50~100倍。吗啡主要用于晚期癌症患者第三阶梯止痛。从市场趋势来看,曲马多增长后劲十足,该产品是胺苯环醇类人工合成弱阿片类药物,镇痛强度在同等剂量时,相当于吗啡的1/5,但明显强于其他非类固醇抗炎药,适用于中、重度癌性疼痛,被WHO列为癌痛三阶梯止痛治疗的第二阶梯推荐药物。该药与阿片受体的亲和力比吗啡弱6000倍,基本不存在成瘾性,可以长期使用,因此在治疗剂量下,不产生呼吸抑制,不影响心血管功能,也不产生便秘、排尿困难等不良反应。由于该药的管制相对较松,除可以用于癌症疼痛的治疗外,还可以在骨关节炎、腰椎间盘突出症、肩关节周围炎、创伤、手术后疼痛和骨质疏松症所致的腰腿痛中使用。该类药在医保目录中属乙类药物,目前癌痛临床应用中多为缓释片。   复合使用药物增长势头明显   目前镇痛药市场还有一个明显的趋势就是越来越强调联合用药,根据2005年前三季度典型医院用药情况显示,一些复合使用的药物增长势头明显,像氨基比林+安替比林+巴比妥,克痛宁+曲马多+布洛芬,羟考酮+对乙酰氨基酚等。   张克军也认为,鉴于止痛新药不断遭受安全性问题,复方用药将是镇痛药今后新产品开发的一个重要方向,一些新型的复方产品正显示良好的市场前景,目前选择的重点就是将一些原来在临床使用多年,疗效确切,安全性高的药组合在一起。像最近上市的氨酚曲马多片就是由阿片类和非甾体类使用最久的盐酸曲马多和对乙酰氨基酚组合在一起的复方产品,临床研究证实该药主要用于缓解中度及重度疼痛,起效迅速,镇痛效果明显,无成瘾性,不良反应相比其单方制剂和其他参比制剂明显更低,该产品2001年8月在美国由FDA批准上市。西安杨森在去年将该药引进我国,目前正在力拓市场。鉴于该产品在我国无相关产权保护,河南帅克制药在国内企业中抢先仿制了这个产品。张克军透露,该产品目前已经上市,有望培养成为一个镇痛药的大品种,或许依靠新型复方制剂可以参与重新划分止痛药市场的格局。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/12.txt ================================================   三九医药(000999)和三九生化(000403)今日同时发布公告,三九医药转让三九生化38.11%股权事宜获得国资委批准,三九医药将所持有的三九生化6162.1064万股和1906.0936万股国有法人股分别转让给振兴集团有限公司和山西恒源煤业有限公司。   协议签订一年后,股权转让终于取得重大进展,也为三九集团的重组工作打下更坚实的基础。但在这一年中,三九生化却发生了大变化。   根据年报,三九生化2005年度亏损5.21亿元,而2004年亏损额为1.98亿元,同时,每股净资产由2004年的2.55元变为-0.05元,净利润和净资产发生大幅变动。但在双方签订的协议中,收购价格为每股2.55元。   某券商投行人士认为,由于当时双方所签的协议价格是以2004年的审计报告为依据的,时隔一年,公司的审计结果发生重大变化,如果仍然用2004年的审计结果来进行交易似乎并不合适。   也有业内人士认为,签订的协议具有法律效力,国资委的批准是协议生效的前提。如今既然已经获准,就应该按照协议的价格执行。   此前三九生化发布的2005年度报告被审计机构出具了非标意见,14位公司高管也对年报表示质疑。围绕股权转让,相关各方不知是否还会发生争议。但业内人士评价,对公司而言,股权顺利转让,让公司步入正常发展的轨道,这才是最重要的。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/13.txt ================================================   国家食品药品监督管理局南方医药经济研究所主办的首届“中国制药工业百强年会暨第三终端高峰论坛”将于5月15日-17日在成都举行。会议由《医药经济报》、广州标点医药信息有限公司承办。   据主办方透露,年会将发布2005年医药产业的各项运行数据,包括2005年医药销售领先品种,2005年中药销售领先的企业、化学药销售领先的企业排名等。会上即将发布的制药工业百强排名,其数据采集和分析方法与往年不同。2004年的统计数据分别依照化学制剂生产企业、中成药生产企业、医药商业来统计,2005年则是将那些既有工业生产也有商业经营的企业集团作为一个单位来统计,以便彰显这些“医药巨头”在我国医药产业中的重要地位。   会议主要议程还包括“2005中国最具影响力药企发布”、“第三终端高峰论坛等”。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/14.txt ================================================   一场史无前例的非典让股骨头坏死走进了人们的视线。据推测,我国每年的股骨头坏死新发病例在15万~20万之间,累积需治疗的病例在500万~750万之间。   治疗股骨头坏死最理想的方法是保存患者自身股骨头,而达到此目的应早期诊断,早期治疗。   目前股骨头坏死的早期诊断和治疗的有效方法仍是世界性难题。   搜狐健康特邀北亚医院肖正权院长做客专家在线访谈间,与网友们谈股骨头坏死治疗方面的问题。     访谈主题:股骨头坏死     访谈时间:5月12日15:00-16:00     访谈地点:搜狐健康专家在线访谈间(地址稍后公布) <预先提问>   专家介绍   院长简介:肖正权        主任医师,医学硕士        出身于著名中医世家,肖氏医学第九代传人,国家指定全国百名名老中医肖贯一教授的学术继承人,尽得其祖父真传。就读于黑龙江省中医药大学,是基础医学院院长李冀导师的硕士研究生。先后从师于世界骨伤联合会副主席、中国中医研究院博士生导师董福慧教授,中国工程院院士博士生导师程莘农教授。北京大学医院院长EMBA毕业。 肖正权院长     ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/15.txt ================================================   全国治理医药购销领域商业贿赂专项工作正在轰轰烈烈地展开,却有骗子趁机诈骗医务人员。日前,广东省卫生厅向全省医务人员发出了“谨防有人利用打击商业贿赂诈骗”的提示。   治理医药购销领域商业贿赂专项工作于3月底在全国拉开帷幕之后,各地卫生行政部门积极贯彻中央精神,部署专项治理工作。近来,广东省许多医务人员突然收到手机短信或者信件,被告知希望其认真自查自纠,将收受的红包和回扣款项主动上缴汇入某个指定账号,争取宽大处理。然而广东省卫生行政部门还没有设立回扣款上缴账户,更没有向医务人员发出过上缴款项的通知。为此,广东省卫生厅向全省的医疗机构和医务人员下发紧急通知,提醒谨防受骗上当。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/16.txt ================================================   深圳一家医院近日与当地银行合作,推出大额医疗“免息分期付款”的服务项目。患者只要在银行办理一张信用卡,在医院就部分项目治疗时可享受分期付款的优待,利息则由院方支付。   目前享有“免息分期付款”的对象被限定在有稳定经济来源的市民,而且医疗项目较窄。市民认为,大额医疗“免息分期付款”也应向困难市民推广,这样或可解决不能一次交足医疗费患者的一时之急,将付款压力分解,避免延误治疗。   医院替患者掏利息   对于在深圳工作不久的张先生来说,虽然每月有近7000元的稳定收入,但由于买房、买车实行的都是按揭贷款,每月的进账在支付银行贷款后虽有节余,但要一次性支付儿子两万多元的近视矫正手术费用,还存在资金不足的困难。   不过,张先生已经决定在儿子高考结束后,通过“免息分期付款”的方式,在某医院为儿子实行手术。根据医院新近推出的“免息分期付款”医疗服务项目,他只要在银行开个信用卡,银行先替他“埋单”,他今后只要在约定的期限内把银行的钱还上就行。   据率先在深圳市推出“免息分期付款”医疗服务项目的深圳某民营医院有关负责人介绍,近年来,在他们接诊的患者中,总有一些因为暂时费用问题不得不延缓治疗。因此他们一直在寻找一种能够解决这一问题的办法。当他们把这一想法与深圳市银联沟通时,立即得到了他们的支持,并决定联手推出“免息分期付款”服务。   仅两项医疗服务可享此待遇   与其他“按揭消费”不同的是,“免息分期付款”医疗服务手续极为简单,患者的诊疗费用只要在1500元至3万元之间,能支付首期600元的诊疗费,无需进行审批,刷一下约定银行的信用卡就可完成“贷款”过程。   医院推出的“免息分期付款”服务,近期还暂时限定在眼科的准分子近视矫正手术和口腔科的治疗项目上。该院有关负责人介绍说,这样做除了基于积累经验,为今后推广做准备,并最大限度地控制风险考虑外,主要是考虑到这两个项目的费用相对较高,不能一次性付款者相对较多。   无稳定收入难享“免息分期付款”   作为一种新的医疗服务方式,“免息分期付款”一推出就引起部分市民的兴趣,尽管服务项目目前还比较狭窄,市民认为将来完全可以向其他医疗服务项目推广。   记者了解到,目前能享有该项服务的还只是符合取得信用卡条件的患者。一般要有稳定的收入,收入低、真正困难的市民则因为不符合取得信用卡的条件,其大额手术暂难享此待遇。   院方表示,这样做主要是避免医院承担收款风险。   市民建议“穷人”治大病也可“分期付款”   市民王先生认为,最需要“免息分期付款”服务的是家庭困难而又不幸患大病、急病的患者。现实生活中,医院经常碰到一些本来可以治愈的病人,病治到一半,因为费用问题,只好请求出院回家。对这样的病人,出于对自身经济利益的考虑,大多数医院多采取听之任之的态度。   由于目前推行“免息分期付款”仅仅是民营医院,其“宣传”的意图还比较明显。希望国有医院也能考虑创新收费方式,真正让困难户也能看得起病。   王先生建议,医院与银行可以考虑让贫困户提供担保,如房产担保、亲友担保、社会团体担保等方式获得救急款项,再“分期付款”还款。通过这种付款方式,将付款压力分解,避免延误治疗。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/17.txt ================================================   牙防组事件再起风波,此次争议的核心是,口腔用品认证办法的管理对象应该是“保健”品还是“护理”品。   本报独家获悉,4月24日,中国口腔清洁护理用品工业协会(原牙膏工业协会,下称“牙膏协会”)以书面形式向国家认证认可监督管理委员会(下称“认监委”)递交了一份文件,称如果把牙膏纳入认证,将不利于企业的发展。   文件陈述了数条理由,诸如牙膏企业的每个产品都必须认证将会影响到生产和销售的效率等等。   文件还称,即便必须认证,也应该是认证“口腔护理”用品,而不是“口腔保健”用品。   4月13日,认监委发布了《口腔保健用品认证管理办法(征求意见稿)》。   自发布之日以来,围绕这两个词的拉锯始终没有停止。而在意见征求期过后,卫生部法规司将根据程序将这个办法发布成为部颁标准。   “如不采用‘保健’,而采用‘护理’,那么办法将失去意义。”江苏雪豹日化有限公司的董事长童渝于昨日向认监委提交了一份针锋相对的建议。   据知情人士透露,牙膏协会如此激烈反对的原因是,一旦“保健”认证推行,将会由具备专业团队的相关单位来担当。而牙膏协会属于原轻工系统,缺乏这些资源。   “所以他们更倾向于用‘护理’一词,可以名正言顺地把认证权纳入自己的管理范畴。”   相对于强调牙膏功能性的“保健”,“护理”一词在字面的意义更倾向于清洁。前者的主管部门是卫生部门,后者则是牙膏协会。   有消息人士称,现在已有数百家单位开始申请成为合法的牙膏认证机构。   “最后的认证机构已经基本成型。”有关人士透露说,这个即将浮出水面的机构与卫生系统下属的全国牙防组有着紧密的“血缘”关系。   在此之前的牙防组事件中,没有认证资格的全国牙防组违规认证十多年,被北京律师李纲告上法庭。此后,认监委紧急启动认证程序,目前最后的用词尚不明朗。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/18.txt ================================================  中国人为啥没有西方人高?   饮食人类学家发现,旧石器时代的先祖们茹毛饮血,食肉和生食,身材比我们高大30%左右。今天的西方人,仍然喜欢吃带血丝的肉和生菜色拉,身材也仍旧比吃米面和爱烹调的亚洲人“大一号”。特别是阿尔卑斯山以北的日耳曼民族,分布在德国、荷兰和北欧等地,冬天长,睡眠久,喝鲜奶,食生肉,男人平均身高1.8米以上。其中,荷兰人又酷爱鲜奶和乳制品,人均身高为世界之最。   营养学家发现,谷物和薯类含凝聚素,影响蛋白的吸收和多胺的数量,会使生长缓慢,身材矮小。肉食比素食含有更丰富的营养和性激素原料,生食比熟食含有更多的生长激素原料。人的发育在12岁前主要靠生长激素,12~25岁主要靠性激素。营养和激素水平可以影响当代人身高,持续到四代以后可以显著改变遗传基因。   在百万年漫长的冬夜里,北欧人世世代代长时间睡眠,分泌了充足的生长激素。同时大量的动物性生食提供了丰富的营养和性激素原料,这使得他们能够昂首全人类。在动物性食品中,牛奶含大量激素,它可以使小牛在数月里长高,也可以帮助乳糖酶充足的小孩在数年内长高。喝奶最多、乳糖酶充足的荷兰人,平均身高成为人类的“珠峰”。   以下的最佳营养、睡眠和运动方式,会使你的孩子长得高:   第一、最佳营养。   多吃10类食品,包括鱼类、海鲜、海藻、肉类、蛋类、菌类、坚果、种子、蔬菜、水果,有些可生吃;多吃母乳,多喝鲜奶(如果乳糖酶充足),不加热,以保证营养素和激素原料的摄入。   早、晚是喝奶的最佳时机,早餐时喝奶,给一天的活力提供充分的营养保证;晚上喝牛奶,不但有助于睡眠,而且有助于人体对其营养成份的吸收。最佳营养   据美英两国医学专家研究发现,牛奶中含有两种过去人们未知的催眠物质,其中一种是能够促进睡眠的以血清素合成的色氨酸,由于它的作用,往往只需要一杯牛奶就可以使人入睡;另外一种则是具有类似麻醉镇静作用的天然吗啡类的物质。所以,如果在早晨饮奶,就必然会使人的大脑皮层受到抑制,影响白天的工作和学习。此外,早晨饮奶也不利于消化和吸收,这是因为牛奶的蛋白质要经过胃和小肠的分解形成氨基酸后才能被人体吸收,而早晨空腹状态下,胃、肠的排空是很快的,因此牛奶还来不及消化就被排到了大肠。再有,食物当中被吸收的蛋白质只有在热量充足的基础上才能构成人体组织的一部分,倘若热量不足,吸收的蛋白质就很快变成热量而被消耗掉了,这无疑是一种大材小用的浪费。   因此营养专家们认为,牛奶最好在傍晚或临睡之前半小时饮用。  喝牛奶应当避误区  牛奶含有丰富的营养,其中不但包括必需氨基酸,还有含量高且易吸收的钙,长期饮用对身体非常有好处。不过,饮用牛奶一定要讲究方式,以下是喝牛奶常见的误区,你一定要注意避免———   空腹喝牛奶  空腹饮用牛奶会使肠蠕动增加,牛奶在胃内停留时间缩短,使内部的营养素不能被充分吸收利用。喝牛奶最好与一些淀粉类的食物,如馒头、面包、玉米粥、豆类等同食,有利于消化和吸收。   食物搭配不当  牛奶不宜与含鞣酸的食物同吃,如浓茶、柿子等,这些食物易与牛奶反应结块成团,影响消化。   偏爱高度加工的牛奶  高度加工后的牛奶,其营养价值不一定比鲜牛奶好。这是因为经过多次加工后,牛奶中大多加入了微量元素或无机盐,但这些成分并非每个人都需要补充,所以也就不一定适合每一个人。   第二、睡眠充足。   12岁以下睡眠8小时以上,以保证生长激素的分泌。最佳睡眠   睡眠或觉醒是正常的生理过程,但它不是人为能完全自主控制的活动,而是一个被动过程。它不像人体某些活动可按人的意志,说来就来,要止则止。失眠的人常常难以诱导师自己进入睡眠而苦恼。其实早期的轻度失眠,经过自我调理的办法就常可得益,具体归纳如下:   平常而自然的心态。出现失眠不必过分担心,越是紧张,越是强行入睡,结果适得其反。有些人对连续多天出现失眠更是紧张不安,认为这样下去大脑得不到休息,不是短寿,也会生病。这类担心所致的过分焦虑,对睡眠本身及其健康的危害更大。   寻求并消除失眠的原因。造成失眠的因素颇多,前已提及,只要稍加注意,不难发现。原因消除,失眠自愈,对因疾病引起的失眠症状,要及时求医。不能认为:失眠不过是小问题,算不了病而延误治疗。   身心松驰,有益睡眠。睡前到户外散步一会儿,放松一下精神,上床前或洗个沐浴,或热水泡脚,然后就寝,对顺利入眠有百利而无一害。诱导人体进入睡眠状态,有许多具体方法,例如:放松功,已在民间流传,可以借助。此外,再介绍两种简而易行之法:   闭目入静法。上床之后,先合上双眼,然后把眼睛微微张开一条缝,保持与外界有些接触,虽然,精神活动仍在运作,然而,交感神经活动的张力已大大下降,诱导人体渐渐进入睡意蒙胧状态。   鸣天鼓法。上床后,仰卧闭目,左掌掩左耳,右掌掩右耳,用指头弹击后脑勺,使之听到呼呼的响声。弹击的次数到自觉微累为止。停止弹击后,头慢慢靠近睡枕,两后自然安放于身之两侧,便会很快入睡了。   睡眠诱导。聆听平淡而有节律的音响,例如:火车运行声、蟋蟀叫、滴水声以及春雨淅沥淅沥声音的磁带,或音乐催眠音带,有助睡眠,还可以此建立诱导睡眠的条件反射。   饮热牛奶法。睡前饮一杯加糖的热牛奶,据研究表明,能增加人体胰岛素的分泌,增加氨酸进入脑细胞,促使人脑分泌睡眠的血清素;同时牛奶中含有微量吗啡样式物质,具有镇定安神作用,从而促使人体安稳入睡。   合适的睡姿。睡眠姿势当然以舒适为宜,且可因人而异。但睡眠以侧卧为佳,养生家曹慈山在《睡诀》中指出:“左侧卧屈左足,屈左臂,以手上承头,伸右足,以右手置于右股间。右侧卧位反是。”这种睡眠姿势有利于全身放松,睡得安稳。   若疲劳而难以入睡者,不妨食用苹果、香蕉、橘、橙、梨等一类水果。因为,这类水果的芳香味,对神经系统有镇静作用;水果中的糖分,能使大脑皮质抑制而易进入睡眠状态。   若因出差在外,不适应环境而致失眠时,应先有思想准备,主动调适,有备无患,不致因紧张担心睡不好。同时还可采用以上助眠之法,则可避免失眠。最佳运动   第三、足量运动。   尽量在户外,每天运动几个小时以上,以增加各种营养物质,包括维生素D、钙和“太阳能”的形成和吸收,促进骨骼和肌肉的快速生长。   身高能否如意,取决于几个因素,首先是遗传因素,占70%,此外,取决于其他条件,包括运动、营养、环境和社会因素等。为了让孩子长得更高一点,家长应注意以下几点:  一、莫错过生长快速期  在儿童少年青春发育过程中,何时身高长得最快呢?研究证实,绝大多数中国汉族儿童的身高突增高峰为女童12岁左右、男童14岁左右;90%以上女童身高增长最快的年龄在11~13岁之间,男童为13~15岁之间。为了让孩子长得高一些,家长尤其应注意孩子在生长快速期的营养、运动等问题。}   二、应注重营养补充  营养是儿童体格生长的关键。体格正常生长所需的能量、蛋白质和氨基酸,必须由食物供给,主要是肉、蛋、豆及豆类食物。骨的形成还需要足够量的钙、磷及微量的锰和铁。钙的摄入不足及维生素D缺乏时,会造成骨矿化不足,维生素A缺乏会使骨变短变厚,维生素C缺乏会使骨细胞间质形成缺陷而变脆,这些都会影响骨的生长。   目前一般家庭在有荤有素的饮食中,营养应该是全面及足量的,家长应该注意不要让孩子养成偏食的习惯,更不要让孩子过多地吃零食而影响重要营养物质的摄入。  三、莫忽视运动锻炼  体育运动可加强机体新陈代谢过程,加速血液循环,促进生长激素分泌,加快骨组织生长,有益于人体长高。以下几种运动对增高有一定效果,不妨一试。  1. ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/19.txt ================================================   9日在京举行的世界卫生组织慢性病全球报告中文版首发式上,卫生部公布了中国慢性病情况。其中一个令人瞠目的数字是,目前全国约有3.5亿吸烟者,2000年由吸烟导致的死亡人数近100万人,超过艾滋病、结核、交通事故以及自杀死亡人数的总和,占全部死亡人数的12%。   卫生部警告说,如不采取控制措施,预计到2020年时这个比例将上升至33%,死亡人数将达到200万人,其中有一半人将在35-64岁之间死亡。   2002年我国男性吸烟率为66.0%,女性吸烟率为3.08%,与1996年比,尽管吸烟率略有下降,随着总人口的增加,吸烟人数仍然增加了3000万人。   吸烟对青年十分有害,因此,应尽早戒烟。戒烟方法很多,下面十二种戒烟法,可供少年吸烟者试一试:  (1)特意在一二天内超量吸烟(每天吸两包左右),使人体对香烟的味道产生反感,从而戒烟;或在患伤风感冒没有吸烟欲望时戒烟。  (2)想象自己在吸烟,同时想象令人作呕的事情(比如你手中烟盒或香烟上有痰渍等等)。  (3)将戒烟的原因写在纸上,经常阅读;如能可能,尽量补充新内容。  (4)将想购买的物品写下来,按其价格计算可购买香烟的包数。逐日将用来购买香烟的钱储存在“聚宝盆”内。每过一个月,清点一次钱数。  (5)同朋友打“赌”,保证戒烟。当然这要用自己的烟钱作为 “赌注”。  (6)不整条买烟。     相关事件:     卫生部:我国青少年吸烟人数高达5000万     9日在京举行的世界卫生组织慢性病全球报告中文版首发式上,卫生部公布的中国慢性病情况表明,目前中国青少年吸烟人数高达5000万人。>>>全文     与潜意识对话 临床催眠治疗能帮助戒烟     美国科学家最近经研究发现,在正规的临床催眠师帮助下接受催眠治疗,有可能帮助吸烟者成功戒烟且长时间保持戒烟状态。>>>全文     生活习惯影响烟瘾 晚睡早起的人烟瘾更大     据最新一期《国际生物钟学》期刊研究显示,德国科学家发现,早晨起床时间在5点之前、晚上11点之后睡觉的人更容易吸烟!>>>全文 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/10.txt ================================================  足彩06032期王智意甲解盘   1.卡利亚里VS国际米兰:杯赛对国米的吸引力更大,目前平赔较低,本场在“0”的基础上需适当补“1”。   2.切沃VS佛罗伦萨:主队近来状态出现下滑,客队为冠军杯名额则到了不容有失的阶段,然而澳彩却为本场开出主队低水的平手初盘,看来“紫百合”是不会轻松拿到3分。   3.恩波利VS阿斯科利:庄家仅为主场5连胜的恩波利开出平半浅盘,分明是对该队取胜信心不足的表现。   4.拉齐奥VS帕尔马:主队在球半盘下的赢盘能力并不突出,而且初盘存在刻意看低帕尔马的嫌疑,本场补“1”稳妥。   5.AC米兰VS罗马:米兰很少在对手身上发生连续输盘的事情,首回合米兰输盘,本场可对他们看高半线。   6.帕勒莫VS梅西纳:此战已经无关紧要,初盘显示本场是“3/1”格局。   7.雷吉纳VS尤文图斯:初盘显示了客队的强大,且本场关系到客队夺冠问题,此时尤文图斯可任胆选。   8.特雷维索VS乌迪内斯:乌迪内斯在客场已连续拿下3盘,在状态正佳的时候,澳彩只为其开出平手初盘,想必“乌鸡”的势头会就此中断。足彩06032期王智德甲解盘   9.科隆VS比勒菲尔德:初盘高开意图明显,庄家引筹码去上盘的嫌疑极大,本场科隆有望不败。   10.拜仁慕尼黑VS多特蒙德:多特蒙德客场至多连赢两盘,本场已到其盘路极限,而且澳彩初盘也有意在冷落主队。   11.汉堡VS不莱梅:半球盘下两队在本赛季尚无平局记录,本场适合选择“3/0”。   12.杜伊斯堡VS美因兹:初盘与欧赔极为不符,庄家有利用主队已经降级的题材诱下美因兹的嫌疑。   13.沙尔克04VS斯图加特:初盘主队水位偏高,目前斯图加特客场盘路有反弹迹象,本场不排除客队抢分可能。   14.沃尔夫斯堡VS凯泽斯劳滕:命悬一线的战役,庄家为本场开出了较高的平局赔率,想必两队有望分出胜负。   栏目心水(256元)   0 03 1 31 3 31 31 1 3 3 30 3 30 30   栏目心水(2048元)   01 10 1 31 30 31 31 1 3 3 30 31 31 302  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/11.txt ================================================   这是一次跨越世纪的重逢,这是一次弥补历史的棋坛盛事。5月23日至27日,在美丽的沈阳世博园,来自中国、日本和韩国三国的九位当年叱咤世界棋坛的围棋元老,将上演一次对决。昨天,本次元老赛的参赛者之一、中国围棋协会主席陈祖德表示,他对即将在沈阳揭幕的2006年中、日、韩三国围棋元老赛非常期待:“这是一次弥补历史的比赛!”  三国元老首次聚首  本次三国元老赛由国家体育总局棋牌运动管理中心、中国围棋协会主办、由沈阳市体育局、沈阳市体育总会、沈阳晚报、沈阳市围棋协会、沈阳电视台协办。比赛地点设在沈阳世界园艺博览会,是2006年沈阳市承办的级别最高的比赛,也是2006年国内外广泛关注的重要体育赛事之一。  参加比赛的中日韩围棋元老都是二十世纪世界最著名的围棋代表人物,他们分别是中国队的陈祖德、王汝南和聂卫平;日本队的林海峰、宫本直毅和羽根泰正;韩国队的金寅、河灿锡和尹琦铉。除了中国的三位元老赫赫有名外,日本的林海峰是一代围棋巨人吴清源的弟子,曾三连霸名人战,五获本因坊,被日本《棋道》杂志敬称为棋界“阿信”;宫本直毅九段师从于关西棋院创始人桥本宇太郎九段,他在1974年率团访华,对聂卫平一生的命运发挥过至关重要的影响。中国棋迷相对陌生的金寅更是韩国著名的超一流九段棋手。相当于韩国的“陈祖德”,从1965年开始,韩国进入了名副其实的“金寅时代”,曾影响韩国围棋界十多年,七十年代后期,由于曹薰铉、徐奉洙等新人的崛起,金寅渐渐地退出了棋战的第一线。但正是他将韩国围棋引上了现代之路。陈祖德:这是弥补历史的比赛  中国围棋协会主席、原中国棋院院长陈祖德先生,昨天在接受本报记者采访时对这次比赛给予了很高的评价,“这是世界第一次!”陈老说,“以前我们只是分别搞过中日和中韩的元老比赛,我们这批三个国家的棋手聚会还是第一次,因此这次比赛让人感到很兴奋。”  陈祖德介绍说,因为各种历史原因,他和那个时代的韩日两国的高手们在各自棋力达到顶峰的时候没有交过手,这可以算是一个历史的遗憾,而这次三国元老赛正是弥补了他那个时代的选手的一个遗憾,填补世界围棋的一次历史空白,同时也将对中国围棋产生深远的影响。  当陈祖德听说比赛要在美丽的沈阳世博园举行时,显得非常的高兴:“那太好了,我早就听说那里非常美,我想在那里比赛将是一次享受!这次聚会太令人期待了!”  世博园将书写世界围棋佳话  美丽的沈阳世博园已迎来八方游客,而这次九位中日韩围棋元老的跨世纪聚会,将为这美丽的地方书写一段佳话。据了解,本次比赛将在25和26日两天举行交叉比赛,到时候,当年未能一决雌雄的围棋元老们将亮出各自的绝活,留下一个个经典的对局。  棋盘山,流传着传说与故事,凝聚着历史与现实融合的美丽,这里,将迎来一代宗师们的笑语;世博园,汇聚着鲜花与绿草,传递着人与自然和谐共生的理念,这里,还将留下世界围棋的一段佳话……   ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/12.txt ================================================   皇帝“金口”吓走奇才   詹姆斯绝对全能,能突破、能投篮、能运球、能传球,还能……用嘴赢得比赛。在骑士队114比113战胜奇才队以总比分4比2晋级东区半决赛的比赛中,詹姆斯就施展了一回他的嘴上功夫,仅只言片语就说得阿里纳斯罚输了比赛。刚刚在联盟里混了三年的詹姆斯,已经开始向伯德、米勒等“口技”出众的老前辈看齐了。   现场 一张嘴战败一双手   阿里纳斯有一双投手的手,这双手可以让他投中三分线两米开外的三分球,可以让他在对骑士队的生死大战上独得36分。然而阿里纳斯没有想到,当这双可以把罚球命中率控制在80%以上的手遭遇詹姆斯宽而厚的双唇时,竟然抖得连一个球也罚不进。   是阿里纳斯的手葬送了奇才队,还是从詹姆斯唇间吐出的只言片语成就了骑士?   一切应该从比赛最后两秒说起。当时,得到球的阿里纳斯没有选择地在三分线两米开外起跳投篮。球出手后,阿里纳斯的双眼一直盯着皮球在空中飞行的轨迹,当球进筐的一刹那,阿里纳斯几乎和全场观众的惊呼声同步举起双手。这是他对这双手的感谢,是它们让奇才队出现了一丝生的希望。或许,当时的阿里纳斯已经开始认为胜利女神在这一天是站在他们这边的。   可一切并不顺利,阿里纳斯的最后一投好像耗尽了他的神奇。在加时赛里,骑士队的防守让他一分未得。直到比赛还剩15秒,休斯对阿里纳斯犯规,后者才获得了两次轻易得分的罚球机会。而这时,奇才队领先一分。   本赛季罚球命中率高达82%的阿里纳斯走上了罚球线,在习惯性的将球绕身三周之后,他的第一罚并没有罚中。手感还没有恢复,阿里纳斯深吸了一口气。   就在这时,詹姆斯走到阿里纳斯身边,拍着对方的胸口,低着头轻轻地说道:“如果你连第二罚也错失了,你知道谁会来终结比赛。”在之前第三场和第五场的较量中,骑士队均以一分优势险胜,而且都是由詹姆斯在最后时刻强攻上篮投中制胜球。   阿里纳斯的表情变得很凝重,而他的罚篮准备动作也发生了改变。他第二次罚球前,并没有在腰间绕球,而是直接罚篮。这是平时的阿里纳斯绝不会做的事情。阿里纳斯心急了,方寸大乱!结果,第二罚球偏得比第一罚时还离谱。骑士队反攻的机会来了。   战术 皇帝发话 小兵下手   詹姆斯真的履行了对阿里纳斯的“诺言”,在接下来的进攻中对奇才队进行了绝杀吗?没有。完成绝杀的是阿里纳斯根本想不到的达蒙·琼斯。应该说,詹姆斯的话完全是一次攻心战术。   在阿里纳斯罚失两球后,骑士队随即叫了暂停。主帅布朗布置了他这场比赛的最后一个战术:詹姆斯主攻,休斯接应,如果休斯还没有机会,球就交给琼斯投。   比赛再次开始,詹姆斯一接到球,阿里纳斯和丹尼尔斯马上跟出三分线,对詹姆斯进行包夹,奇才队显然不希望再重蹈前几场的覆辙,因此立刻对其采取包夹战术。已经知道如何应对的“小皇帝”将球传给休斯,而在一旁防守琼斯的巴特勒立刻选择了放弃对琼斯的防守,去盯防休斯。而此时琼斯在底线无人防守,休斯立即传球,琼斯一击命中。    “很显然,胜利女神今晚并没有站在我们这边。你能想象吗?一个罚球命中率在80%的投手,在最后时刻竟然两罚不中。我只能说,今晚太糟糕了。”比赛已经结束,阿里纳斯还在想着刚才发生的事情。   历史 “邮差周日不送信”   詹姆斯并不是第一个使用攻心战术帮助球队获胜的人。这其中最经典的莫过于原公牛队著名球星皮蓬对马龙说的那句“邮差周日不送信”,简直就是詹姆斯对阿里纳斯的翻版。   1996-97赛季公牛与爵士总决赛第六场,那是一个星期天。两支球队杀得难解难分,终场前35秒战成82比82平。马龙在最后关头获得罚球机会,但站在一边的皮蓬对绰号“邮差”的马龙说:“星期天邮差不送信。”一句话让马龙“心惊胆战”,结果终场前9.2秒居然两次关键罚球砸筐而出。   而此后“飞人”乔丹在下一回合进攻时,一个胯下运球,突然急停并向后撤步,一记稳稳的跳投随着终场哨响飞入篮筐,公牛队84比82两分险胜。这一球也是近20年来NBA总决赛中惟一一个真正的压哨绝杀球。   “口技大师” 各有绝活   用言语干扰对手心态,从精神上击败对手的情况在NBA的赛场上很普遍,包括伯德、乔丹、米勒在内的一批天皇巨星都会利用这招来打击对手的自信心。然而每位巨星运用“口技”的特点却各不相同。   伯德 先知型   伯德喜欢对某个事件进行“预测”,再把他“预测”的结果告诉对手,最后用自己的实力将他的“预言”实现。   “我要在这里进三分送你们回家。”——伯德在一场比赛的最后一次进攻前指着三分线外的一块地板对对手说,当时拥有进攻权的凯尔特人队与对手平分。结果界外球开出后,伯德真的在那里接球投进压哨三分,赢下比赛。   “你们决定谁要拿第二名了吗?”——1986年全明星三分球大赛前,伯德一进休息室就问所有参赛者。伯德最终夺得了那届三分大赛的冠军。   乔丹 显摆型   乔丹喜欢向所有人炫耀自己的超人实力,因此,使用“口技”也就变成了他向对手显摆的工具。在他使用这招时,完全是一副上帝对凡人训诫的模样。   “你投呀,我让你投……投呀!”——乔丹在防守时最常说的话,通常情况下对手都会投篮不中。   “加油,你差点就守住我了。”——乔丹在进攻得手之后最常说的话。   姚明 努力型   别以为母语是汉语的姚明不会使用“口技”。在NBA征战了三个赛季的姚明融入NBA是全方位的,在口技方面虽然不比之前几位大师,但也有上乘之作。   “我要打得你把护齿都吞下去。”——2005年2月10日,在火箭队105比92战胜公牛队的比赛中,姚明对公牛队中锋钱德勒说。在说完这句话后,姚明在对手头上连得6分。是役,他10投9中砍下21分。   “口技对决”米勒太嫩   使用“口技”攻击对手,并不是百分之百能成功的。在NBA的历史中,经常使用“口技”的雷杰·米勒就碰到过使用“口技”得到反效果的事情,因为他攻击的对象是心理素质超强且更擅长“口技”的伯德。   在米勒的新秀赛季,年轻的米勒在步行者队的主场第一次碰到伯德。当时步行者队落后两分,伯德获得罚球机会。米勒随即向伯德发出“嘿!嘿!”的干扰声。“你没开玩笑吧,菜鸟?”伯德对米勒说,然后从容地罚进一球。当伯德再次得到球时,他又说:“菜鸟,我告诉你,我是现在联盟里最顶尖的投手,全NBA!知道吗?你还有什么想说的吗?”接着,伯德又罚进一球。“我当时真是蠢到十八层地狱去了。”米勒在自己的回忆录中提到这段往事时,评价自己当时的表现说。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/13.txt ================================================   有江湖的地方,就有恩怨。一个远离辽足视线很久的人物———马林,突然和三轮不胜的辽足扯上了关系。“下岗的马林接替战绩不佳的唐尧东?”一件原本也许是捕风捉影的事,引来当事人完全不同的反应:马林一笑置之,唐尧东则咆哮如雷。而辽宁队队长肇俊哲则说:“辽宁队现在遇到很多困难,希望外界的炒作不要再给辽足添乱了。”   马林笑言:我下岗还能给别人造成威胁?   昨天下午,马林刚办理完辞去中甲江苏舜天俱乐部主教练一职的后续事务,由南京飞回大连,被几个好友拉着接风,正推杯换盏之际,一则辽足主帅的消息却让他哑然失笑。   昨日一则报道称,辽宁队近期战绩不佳,逼近降级区,如果辽宁队持续不胜,俱乐部将考虑换帅,而辽足旧帅马林,刚刚从江苏下岗,又有张曙光和辽宁队队员的支持,极有可能接替唐尧东。而在今年年初的辽足主帅竞聘时,马林恰恰是唐尧东的竞争对手。   “我刚刚从南京回来,刚下飞机,如果你不说,我还不知道这事。”马林似乎无事一身轻,还陶醉在与舜天“甜蜜”的分手中,“舜天集团董事长、俱乐部老总对我的工作都给予了肯定,通过几个月的相处,我们相互了解,彼此信任支持,我走的时候,俱乐部老总特地送到机场,我们还抹了眼泪。”   不在其位,不谋其政。马林说他对辽宁队的感情从来都是割舍不下,但在带舜天期间,他只关注自己队伍和对手的情况,对辽宁队的情况一无所知,毕竟是两个级别的联赛,现在他又刚刚下岗,正想休息几天。至于将来的事,他也不好说。   唐尧东咆哮:谁能带好辽宁队你就找谁去!   记者昨日连线唐尧东时,原本是想请他介绍一下辽宁队今日主场迎战西安国际的备战情况,国际上轮战胜实德后,士气正旺,欲在辽宁主场取得两连胜。不料唐尧东没好气地说:“这怎么能说,这是机密。我都说了,明天的比赛还怎么打。”   记者随后问到唐指导是否感受到压力,有媒体称俱乐部正在酝酿换帅,当听到马林这个名字时,唐尧东顿时怒了:“谁能带好辽宁队你就找谁去,这事你找我干吗。”记者请其心平气和一些,还未等记者说完,唐尧东极其严肃地把话一字字蹦道:“我———挂———电———话———了。”   辽足俱乐部董事长陈加松正在北京商谈招商事宜,在被问到换帅的问题上时,陈加松表示到目前为止还没有考虑过,而张曙光的电话则一直无人接听。   队长肇俊哲:外界声音导致辽足不团结更可怕   小肇在谈到今天对国际的比赛时,表示力争3分,国际虽然赢了实德,但毕竟是在辽足主场,辽宁队定当全力以赴。在谈到换帅的传闻时,小肇十分反感:“辽宁队输球并不可怕,外部的声音导致辽宁队内部不团结才更可怕。”   小肇说:“在辽宁队最困难的时候,全队上下都在尽力打好每一场比赛,希望外界的炒作不要给辽宁队添乱了。唐导非常不容易,队里人手本来就缺,再加上伤病,上轮客场输给天津,也是实力摆在那儿。输球是大家的责任,不能让一个人背。当然,作为教练,责任会更大些,压力也大。现在全队上下都十分支持唐导,我们现在最需要的就是团结一致,共渡难关。”   小肇最后说道:“谁都不容易,大家互相理解吧!”   本报记者黄进报道 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/14.txt ================================================   北京、莫斯科、美国 三次看升旗感受不同  大郅:北京这次最难忘  《体育天地·mvp》记者朱冲报道  “起来,不愿做奴隶的人们……”5月8日凌晨5点,王治郅随中国男篮一起在天安门广场参加了升旗仪式。当国歌响起的时候,王治郅两眼紧盯五星红旗,轻声唱着国歌。这是王治郅四年以来第一次在自己祖国的土地上听到国歌响起,看到国旗升起。所以,王治郅说:“这是我最难忘的一次看升旗。”  国旗让我感到责任  在谈到升旗的感受时,王治郅说:“所有热爱祖国的人在看到五星红旗冉冉升起的时候都会有同一种感受,那就是作为一名中国人的骄傲和自豪。我一共在天安门广场参加过两次升旗,第一次是上初中的时候,虽然时间过去十几年了,但这种感情是不变的,而且只会继续加深。”  的确,这一次升旗对于王治郅来说很特别,因为这是他在经历了“滞美不归”事件之后第一次看到升旗,这是他四年以来第一次回到自己的祖国看到升旗。“四年来祖国的发展日新月异,升旗的时候,我脑子里想了很多,浮现了很多场景。我想起了回国后我父母带我逛漂亮的四环、五环路,想起了看到的雄伟建筑,想起了随处可见的‘新北京、新奥运、同一个世界、同一个梦想’的宣传牌。”王治郅严肃地说,“当时我就感受到一种责任,我希望在2008年的北京奥运会上站在领奖台上再次看到国旗升起,听到国歌响起。”  在莫斯科看升旗很激动  说到北京奥运会,王治郅又自然而然地想起了2001年7月13日的莫斯科,北京申奥现场。当时,王治郅是申奥的形象大使。  “作为北京申奥代表团的成员,当我在莫斯科亲眼看到萨马兰奇宣布北京获胜的那个时刻,我真的感到心潮澎湃。”王治郅说,“在申奥现场没有升旗仪式,没有奏国歌,但当宣布我们获胜的时候,我们全部拿出了早就准备好的国旗。等回到大使馆,看到国旗升起、国歌响起的时候我们所有人都感到无比的激动和自豪。”  看到姚明就能看到国旗  除了奥运会以外,这次升旗还让王治郅想起了他在美国的生活。在美国的四年是大郅最为孤独的经历,也是最想念祖国的时候。“在美国,只有到中国大使馆去才能看到国旗,听到国歌。”王治郅说。  当王治郅还在NBA时,他和姚明在赛场上的每一次相遇都被称为移动长城的对接。“我记得,无论我遇到姚明还是巴特尔,球馆里都会有很多华人球迷来加油,看台上也会看到国旗,那时候我们就感到一种身处国外的民族自豪感。”王治郅说,“但我和姚明在场上的相遇机会很少,更多的只能是在场下匆匆聊几句,所以我特别能理解姚明所说的,在NBA就感到中国人太少,我真的希望看到越来越多的中国人能够出现在世界最高水平的联盟中证明我们中国人的实力。所以对于姚明成为状元秀,对于姚明在NBA取得的成就和成功,我由衷地替他感到高兴,这是所有中国人的骄傲。” ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/15.txt ================================================   本期足彩做为意德联赛的收官之战,仍保留了三大悬念,即意甲的冠军归属、欧冠资格之争及德甲的最后一场保级大战。相信很多理性彩民也会在选择上不敢轻易来把这三场比赛做稳胆来选择。下面,本人就本期足彩做以剖析,仅供大家参考。   随着五大联赛即将全面结束,有四国联赛已经提前产生了本国联赛冠军,本周末的尤文图斯和AC米兰将把这个悬念留到最后。首先分析一下对阵形势:主场王A米对阵的球队是对欧冠联赛虎视眈眈的“红狼”罗马,而客场王尤文将对阵早已安全上岸的自己的嫡系雷吉纳队,尤文更有三分领先优势。不考虑联赛冠军,A米也不可能允许自己一年内两次栽倒在“红狼“脚下,而尤文则更不会允许小弟坏了自己的夺冠美梦。可以说,两队绝对不允许自己有任何失误。“红狼”的奇迹要看竞争死敌佛罗伦萨败或平切沃,而自己则必须战胜A米才能搭上欧冠末班车,当然,这种理论上的可能会使任何人产生幻想。但要记住,这场比赛是“红狼”客场与国米死拼意大利杯后的第三天进行,夺杯与否的心理及体力将直接影响它的发挥。综合种种数据表明,A米将有95%的可能在圣罗西球场击败罗马(尽管有消息说罗马王子托蒂将复出登场)。而尤文将最可能在雷吉纳象征性的进攻下如愿以一个小比分顺利拿下,最大的奇迹则是尤文以一分的优势顺利夺冠。   第二悬念是佛罗伦萨和罗马的冠军联赛资格之争。本赛季佛罗伦萨在重金投入下终于有了最好的回报,在“重炮”托尼的率领下,主客场发挥极为稳定,积分始终处于前列,而能够跻身冠军联赛是其队上下的最大目标,此翻客场挑战“飞驴”切沃,是其能否保住联赛第四的关键之战。但佛罗伦萨面对的对手是已经踏入联盟杯赛场的已经没有任何追求的切沃,这一战就看切沃的战意了,但不论怎样,指望罗马客场翻盘A米的希望毕竟不是很大。所以,无论佛罗伦萨输赢,其出现的机会还是最大的,以切沃的特点,又鉴于其客场曾输给过切沃,似乎好象不会轻易让佛罗伦萨过关的,但最大的可能是各取一分,互不伤了和气。不过指望佛罗伦萨客场战胜切沃似乎不大可能。   第三悬念是相差一分的沃尔夫斯堡和凯泽谁能最后保级成功。这两支昔日的德甲油条终于在本轮迎来了决定命运的生死大战。本赛季“狼堡”主场的防守一直处于德甲的榜眼位置,进攻则处在榜尾。昔日顾头不顾尾的毛病终于以只加强防守不会进攻换取到了濒临降级的厄运。本赛季凯泽主场轻松拿下“狼堡”,但这回客场作战,尽管达到了只许胜不许输的境地,但面对整个赛季主场只失了十四个球的“狼堡”,恐怕再次取胜的可能性几乎就不存在了。生死一线间,决定命运的比赛,“狼堡”人是不会把优势转化为劣势的。如果凯泽选择狂轰乱炸式的进攻,或许输的更惨,本人估计,最有可能的结果是:战平占60%,“狼堡”胜40%。   其它场次比赛,要侧重于赛季最后一个主场为基准,注意已掉级的几支球队可能会打出取悦球迷的进功足球,意甲倾向于二到三场平局,德甲几支强队之战主要考虑各参加世界杯国球员的战意。估计本期足彩奖金会有一定程度的提高。   本人心水:   1:31   2:1   3:31   4:3   5:3   6:3   7:10   8:30   9:3   10:31   11:30   12:30   13:3   14:31    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/16.txt ================================================   刚刚在上周六以0比2惨败在长春队脚下的沈足,今天下午将在客场挑战升班马厦门蓝狮,尽管在此前,沈足曾在换帅之后创造了三连胜和四轮不败的骄人战绩,但随着上一轮主场失利,使得沈足刚刚赢来的保级优势顿时化为乌有,对此,沈足俱乐部总经理何兵表示:“过去的胜利已经成为过去,我们现在必须要冷静地面对现实,从现在开始,我们打的每一场比赛都是保级战,特别是跟厦门这样的保级球队作战,我们更是要全力争胜。”   为了提前适应厦门当地的天气和场地,沈足在本周一就抵达厦门,开始了赛前备战,尽管在上一轮遭遇惨败,但沈足将士却并没有因此灰心丧气,相反,随着许博、普科两名绝对主力的回归,全队对本轮挑战厦门蓝狮充满了必胜的信心,场上队长汪强告诉记者:“我们上一轮输给长春其实很正常,一方面我们缺少了两名主力队员,另一方面今年长春队非常强,他们现在排名第二就足以说明他们非常有实力。不过,本轮和厦门队比赛,我们还是非常有信心拿下来,今年厦门队的实力并不是很强,虽然客场比赛有些困难,但我们全队的目标非常明确,就是全取3分,最坏也要带着1分回来。”   许博和普科的回归也令主教练库夫曼感到非常高兴,因为他又可以派出他最满意的主力阵容出战。对于今天的比赛,库夫曼表示:“厦门队已经几轮没有赢球了,我想他们对这场比赛也会虎视眈眈,但中国有句俗话是狭路相逢勇者胜,到时候就看我们谁更顽强吧。”   本报记者刘淼报道 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/17.txt ================================================   中新网5月10日电今日出版的辽沈晚报刊载了中国球员李铁从英国利物浦发回来的文章,详细阐述了他和老东家埃弗顿队解约的内幕。文章全文如下:   今天我必须要在这里纠正一个概念上的错误。国内媒体昨天都用了“埃弗顿与李铁解约”这样的标题来报道我的留洋现状,其实这个说法是不正确的。   我与埃弗顿队的工作合同在今年6月30日正式到期,埃弗顿目前只是初步决定“不再与我续约”,这与“解约”完全是两个概念。其实,我将离开埃弗顿早已经不是什么秘密,否则我也不会主动与其他一些球会进行积极的接触。最近两年,我因为伤病的原因一直没有替埃弗顿打过比赛,埃弗顿也在去年买进了大批前卫队员,人员储备方面显得很充足,所以可能教练感觉不再需要我了。   这是再正常不过的游戏规则了,我非常理解埃弗顿的想法。事实上,是我主动找到埃弗顿决策层,先表明去意的。与我一起与俱乐部谈过话的还有邓肯·弗格森,他是因为年龄实在太大,明年就36岁了,没办法适应埃弗顿激烈的竞争,这才心生离意。而我,则是希望能换个地方得到新的发展机会。   “不再续约埃弗顿”意味着我从7月份开始就成为自由球员,实际上这对我寻找新工作是非常有利的一个筹码,毕竟能不花一分钱就能得到一个身价100多万英镑的球员,对任何俱乐部都是一件很实惠的事情。也许大家还不知道,其实我在今年1月份的赛季中转会期里,就有过租借到别队的机会,但当时我就是考虑到那时我会有一笔不菲的转会费,这势必会影响到我的去向。所以,我才决定等到赛季结束,这无疑会帮助我找到更理想的新东家。   再具体解释一下,基恩与曼联的那种分手形式叫“解约”。当时曼联在基恩的合同还有6个月到期的时候表态不再留用他,这样基恩就领得了一笔曼联支付的违约金,这才远投他乡的。如果埃弗顿队在我合同未到期之际与我“解约”,他们是得付违约金的。(李铁)    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/18.txt ================================================   第4场位:从第06020期胜负彩起,在第4场位上,最近11期足彩出现的数字序列为“31111331331”,已经连续11轮不出“0”,而此前“0”还是比较受欢迎的,这就意味着在连续11轮不出“0”后,本轮第4场位出“0”的几率很大,此外本场位目前连续出“1”的动力不是很强,如此看来,此场位拉齐奥VS帕尔马的比赛,彩路表明两队有望分出胜负。投注建议:3/0   第6场位:从第06025期胜负彩起,在第6场位上,最近6期足彩出现的数字序列为“330300”,已经连续6轮不出“1”。而此前本场位连续出“1”的次数极多,这就意味着在连续6轮不出“1”后,本轮第6场位出“1”的几率已经大大增强,如此看来此场位帕勒莫VS梅西纳的比赛,彩路表明两队有望和平收场。投注建议:1   第8场位:从第06024期胜负彩起,在第12场位上,最近7期足彩出现的数字序列为“3133313”,已经连续7轮不出“0”,而此前“0”还是比较受欢迎的,这就意味着在连续7轮不出“0”后,本轮第12场位出“0”的几率很大,此外本场位最近连续出“3”的动力过强,本场很可能出现回落,如此看来,此场位杜伊斯堡VS美因茨的比赛,彩路表明主队无望取胜。投注建议:1/0 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/19.txt ================================================   场次 对阵            时间         推介(128元)       推介(512元)   1 卡利亚VS国 米  14日21时           0/1                0/3   2 切 沃VS佛罗伦  14日21时            1                 0/3   3 恩波利VS阿斯科  14日21时            1                 1/0   4 拉齐奥VS帕尔马  14日21时            3                 3/1   5 AC米兰VS罗 马  14日21时           3/1                3/0   6 巴勒莫VS梅西纳  14日21时           3                   3   7 雷吉纳VS尤 文  14日21时           0                   0   8 特雷维VS乌迪内  14日21时           1                   1   9 科 隆VS比勒菲  13日21时30分       3                   3   10 拜 仁VS多 特 13日21时30分      3/1                  3   11 汉 堡VS不莱梅 13日21时30分      3/0                 3/0   12 杜伊斯VS美因兹 13日21时30分      3/1                  1   13 沙尔克VS斯图加 13日21时30分       3                  3/1   14 沃尔夫VS凯泽斯 13日21时30分      3/0                 3/0   上期成绩 11 10 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/10.txt ================================================     中国游客在马来西亚     中国“旅游休闲”商机,正从东南亚向东北亚“扇形展开”     新华网北京5月6日电(记者钱春弦)5月2日,从事服装设计的胡明明第四次飞往泰国普吉岛度假。黄金周对她而言,就是躺在普吉岛沙滩上,晒一周太阳。作为中国公民最早的旅游目的地代表景点,普吉岛代表了东南亚国家在中国消费者心目中的独特地位:回头客越来越多。 中国游客涌至,“标志”泰国从海啸中复苏     泰国国家旅游局的数据显示,2005年前往普吉的中国旅游者达10万人次左右,预计2006年这个数字将突破15万,从而成为泰国南部旅游业在印度洋海啸后全面恢复的“重要标志”。     中国国家旅游局等权威部门的数据显示,“五一”期间,除港澳特区游外,中国公民出境旅游的主要目的地仍然是周边国家,而东南亚国家是首选之地。目前,中国游客已经成为新加坡观光、饭店、百货、餐饮业提高利润,增加就业的支柱。     新加坡雄心勃勃要成为中国旅游者中转站。世界旅游组织预测,未来10年中国将成为世界主要旅游强国,成千上万前往非洲、印度洋国家的中国游客,将是使新加坡成为世界航运中心的重要因素。     与喜爱“老地方”的胡明明不同,喜欢新奇的安新“五一”去了柬埔寨。在中国政府帮助维护当地文化古迹同时,这些古迹又吸引了中国旅游者,他们的消费,正成为这个中国邻邦的收入来源之一。 5月4日,一名小朋友乘坐摩托艇在海上兜风。新华社发 俄罗斯、蒙古游成为今年新亮点     东南亚国家打出“山水相连”牌,韩国和日本旅游界则希望以“文化渊源”赢得中国“休闲商机”。在《大长今》、“韩流”等文化因素刺激之下,中韩两国之间的航线变得越来越繁忙。就在“五一”前,大韩航空宣布计划5年内将韩中航线增至50条。而中韩日三国各自的经济中心上海、釜山、大阪开始致力于发展旅游业“黄金大三角”,并计划在“五一”后以“三驾马车”联袂去欧洲营销。     旅游交通经济分析师刘斌说,2006年“五一”黄金周,中国周边旅游的新亮点是俄罗斯、蒙古国。随着夏季到来,北亚风光呈现出独特的吸引力。俄、蒙两国也已开始设法“分享”中国的“休闲商机”了。目前,俄罗斯专门为中国旅游者成立的“无国界世界”协会正全力以赴利用中俄两国互办“国家年”的机遇,吸引更多中国游客“北上消费”。     旅游观察家指出,中国“旅游休闲”商机,正从东南亚向东北亚“扇形展开”,并惠及越来越多的邻邦。     “五一”前后,中国南方航空股份有限公司开通北京至伊尔库兹克航线,这是南航开辟的第五条中俄国际航线。海南[图库]航空也宣布要开通圣彼得堡航线。中国公民周边旅游从东南亚向东北亚“扇形展开”,航空业界则“春江水暖鸭先知”。     刘斌认为,目前东南亚抢得中国“休闲潮”之先,可以为中国东盟经济贸易一体化“推波助澜”。东北亚地区作为中国主要客源市场,“双向流动”将催生“东北亚旅游圈”,从而与东南亚旅游圈南北呼应。可以预测,这一扇形最终将由东北向西北,经中亚、南亚在中国的大西南地区实现东南旅游圈与南亚旅游圈的接合。这样,中国人的休闲不仅将成为所有周边国家的商机,而且将成为中国与这些国家睦邻友好的“休闲纽带”。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/11.txt ================================================    【据新华社北京5月6日电】2006年“五一”黄金周,以新马泰为主的东南亚地区继续成为中国公民出境旅游休闲的主要目的地,与此同时韩国、日本观光界大力推动“东北亚旅游圈”以吸引中国游客;俄罗斯、蒙古国也加入争抢中国游客的行列。中国国家旅游局的数据显示,“五一”期间,除港澳特区游外,中国公民出境旅游的主要目的地仍然是周边国家,而东南亚国家是首选之地。(编辑小娜)    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/12.txt ================================================   2006年3月底至4月初,在中国最大的出境旅游展——上海世界旅游资源博览会上,日本有关机构在进行宣传。伴随着“五一”黄金周的到来,许多中国游客走出国门,开始了他们的海外之旅。中国的黄金周不仅使国内旅游市场出现高潮,也为国外旅游业创造了商机。西班牙埃菲社日前报道说,一年3次的黄金周给国内外旅游者带来了良机。2005年,中国人外出旅行达到12亿人次,出境旅游达3200万人次。这个“亚洲巨人”已经是世界上最大的国内旅游市场。到2020年,中国将成为全球第四大旅游客源输出国。与世界其他旅游国家一样,西   班牙希望来自中国的游客能大量增加。但要实现这一目标,必须具备拥有接待中国游客的专门人才和开通到中国的直通航线等条件。   中国游客的足迹遍布全球   埃及的金字塔、尼罗河及南方卢克索的帝王谷、王后谷等,都是中国游客的必游之地,有着无穷的神秘感和吸引力。记者在采访中了解到,“五一”黄金周期间到埃及的中国游客人数比较平稳。因为现在埃及天气逐渐变得炎热,不是旅游的最佳时节。在金字塔前,一对年轻中国夫妇激动地告诉记者,他们从小就对金字塔心驰神往,现在终于如愿以偿,感觉就像在做梦。一名在外企工作的中国男子说:“新马泰我都去过了,也常去欧洲出差,但感觉还是埃及比较神秘,令人向往,以后有机会还想再来。”   由于今年三四月份泰国政局动荡,许多游客都取消了原定计划。所以,今年“五一”黄金周期间来泰国的中国游客不是特别多。泰国旅游局局长朱塔玛·丝瑞婉在“五一”前专门带着新线路和各种优惠折扣到上海搞活动,吸引中国游客。记者4月30日返回泰国前特地到中国银行北京分行打听了泰铢的兑换情况。平时泰铢是冷门币种,但这几天换的人特别多。与记者同机的一对香港夫妇说:“上次来,1港元能换5铢,现在只能换4铢多。”   就像外国人到中国不能不逛故宫一样,地处曼谷老城区的大王宫,是来泰国的外国游客的必去景点。“五一”黄金周第二天,记者来到大王宫,一位名叫帕拉提的讲解员谈到中国游客时很兴奋,他用不怎么流利的汉语笑着说:“中国游客最多,是No.1,其次才是日本和韩国的游客。我是个英语讲解员,但中国游客太多了,我不得不学习汉语。”   印度时代旅游有限公司的总经理瑞佳·纳亚尔介绍说,中国游客到印度旅游一般有3条线路:第一条就是北部印度金三角游;第二条是佛教圣地游;第三条是南部印度水乡游。她说,该公司近几年平均每年要接待不下30个中国旅行团,中国游客最想看的是印度神秘而多样的文化,然后是自然的风光。高72.56米的库塔布塔是印度最高古塔,是印度教文化和伊斯兰教文化交融的建筑。在该景区,记者遇到了一个来自上海的旅游团。领队吴女士告诉记者,近几年,来印度的中国游客特别多,尤其是在春节和国庆节前,报名来印度旅游的电话整天响个不停。“五一”期间,印度的天气特别热,泰姬陵里不让穿鞋,人们走在大理[图库]石地面上就好像踩在火盆上,所以游客并不多。尽管如此,来印度旅游的中国人还是比以前多了不少,据中国东方航空公司驻印度办事处的朱先生介绍,3年前在“五一”期间从北京飞往新德里的航班有一半座位是空的,现在,还不到“五一”航班就满员了,其中绝大部分乘客都是来旅游的。   各国准备迎接更多中国游客   中国正式开办公民出境旅游开始于1997年,当年的出境人数为532万人次,而2005年已达3100多万人次。面对中国游客人数的迅猛增长,各国都表现出了极大的热情,千方百计吸引中国游客。   法国旅游业和服务业非常了解中国的节假日,每逢黄金周,都会提前做好准备。新年时,埃菲尔铁塔上有专人向登塔的中国游客赠送印有“恭喜发财”和“新春愉快”等字样的纪念品。“五一”期间,中国游客获赠的则是法国的五一节鲜花——玲兰花。不仅国家旅游机构对中国游客十分关注,地方上也是如此。为提供更好的旅游环境,鲁昂专门开设了中文网站,伊勒-维莱讷省政府也准备设立办公室专门负责与中国游客有关的事务。   自从2004年欧洲向中国游客敞开大门以来,中国游客的人数与日俱增。据法国政府机构的统计,目前中国游客不仅在人数上已超过日本和美国,成为欧洲最大的外国游客群,消费能力也已超过了这两个国家的游客。2005年,来法国的中国游客达到60万人次,预计到2008年,将达到100万人次。埃菲尔铁塔、卢浮宫、香榭丽舍大街、巴黎圣母院、凯旋门和红磨坊等地都是中国游客的必去之处。巴黎的一些街道现在基本变成了中国人的免税店,那里很多店铺都是华人经营的,如果是法国人开的店铺,十有八九都有华人售货员。   埃及对接待中国游客很重视,在金字塔等主要景点,不但配有中文版的导游册,而且说中文的埃及导游也越来越多。埃及人认识到,欧洲、美国是他们的主要游客源,但这些国家的旅游市场基本都饱和了。正是看中了中国客源的巨大潜能,埃及才加大了吸引中国游客的力度。   日本政府提出“观光立国”战略,将中国列为最重要的游客来源国,并采取各种措施吸引中国游客。去年,日本全面开放了中国游客团体游。2006年春节,日本方面在位于富士山麓的“富士乐园”为中国游客举行了专场活动,与游客一起庆祝新春佳节。日本的许多旅游景点都设置了中文标志,并附有中文解说和广播,一些面向外国游客的免税商店或购物中心还聘请了能讲普通话的服务员和导购小姐。尽管日本的地名基本上都用汉字标写,但东京等主要城市的地铁车站还是增添了简体中文标志。此外,日本的金融机构还积极同中国银行业合作,有银联标志的中国银行卡目前可以在日本主要饭店和商店刷卡消费。   印度旅游部一名官员说,去年到印度来的中国游客有5万多人,尽管这个数字和10多亿人口相比实在是不值一提,但还是比前几年增长了很多倍。印度旅游部长乔杜里最近常说这样一句话:“中国是印度旅游业一个潜在的巨大市场,我们要想方设法把中国游客吸引过来。”印度旅游部最近在中国举办了“印度道路展”和“印度旅游研讨会”,在中国媒体上投巨资做旅游广告,向各旅行社发放旅游手册,并正努力在北京设立代表处。   外国人心目中的中国游客   埃及“三角洲”旅行社副总经理艾哈迈德告诉记者,中国人给他们留下了温文尔雅的印象,表现出了东方人的气质。不过,也有人认为中国游客“太小气了”,小费给得少,有的人甚至都不给。日本人对中国游客的总体印象还不错,认为他们很有购买力,能够促进日本的消费,但对部分中国游客在公共场所大声喧哗以及个别游客乱扔垃圾、随地吐痰等不文明行为也有一些看法。   由于出境游价格不菲,所以出境旅游的中国公民绝大部分属于高消费群体。他们的消费能力让“时尚之都”巴黎的人们感到震惊,巴黎市中心一家酒店的经理说:“中国游客来法国,是我们的一大商机,但旅游时间安排得太仓促,我们也失掉了不少机会。中国游客上车睡觉,下车拍照,一点都不挑剔,但他们买起奢侈品的阔气劲让我们十分惊讶。”有人专门编了个顺口溜:中国游客身体真棒,刚下飞机就来照相,早起晚睡吃住不挑,高档商品卖得脱销。7天游10国,2小时游完卢浮宫,其他景点半天搞定,晚饭后自费去红磨坊,一天就可以游遍巴黎,这在外国人听来简直难以置信。一对来欧洲旅行结婚的年轻人告诉记者:“这次就当锻炼身体,下次再也不跟团来了。”   埃及“星星”旅行社的负责人说:“去年到埃及的中国游客大约有近万人,虽然人数不是很多,但增长迅猛。中国游客喜欢边旅游边购物,许多人都购买大量的纸草画、金字塔模型、铜盘以及金银首饰等,这极大地拉动了当地的消费。“三角洲”旅行社的副总经理艾哈迈德说:“中国游客,尤其是公费组团来的,常常入住高档酒店,十分讲究排场,可以说对埃及的旅游业发展做出了不小贡献,景点附近埃及人家的生活因此大有改善。”   印度工业联合会的一份报告显示,中国游客的增多使印度五星级宾馆的入住率大大提高,中国游客喜欢大量购买印度的工艺品,对印度的经济是一种巨大的拉动。▲   本报驻泰国、埃及、印度特派记者 任建民 黄培昭 任 彦 本报驻日本、法国特约记者 张莉霞 唐惠颖 本报特约记者 汪 析 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/13.txt ================================================    世界的旅游业越来越熟悉一个新名词——中国的黄金周。每到这个时候,中国都会迎来一次旅游高潮,一直席卷周边甚至更为遥远的一些国家和地区,使他们也跟随着这种固定的周期迎来一个个旅游、消费旺季。   尽管出入境管理部门尚未公布具体数字,全国假日办负责人预测说,今年“五一”黄金周,出境旅游规模很可能超过去年“五一”黄金周1000多万人次的水平。   中国游客涌来   “标志”泰国从海啸中复苏   5月2日,从事服装设计的胡明明第四次飞往泰国普吉岛度假。黄金周对她而言,就是躺在普吉岛沙滩上,晒一周太阳。作为中国公民最早的旅游目的地代表景点,普吉岛代表了东南亚国家在中国消费者心目中的独特地位:回头客越来越多。   泰国国家旅游局的数据显示,2005年前往普吉的中国旅游者达10万人次左右,预计2006年将突破15万,从而成为泰国南部旅游业在印度洋海啸后全面恢复的“重要标志”。   目前中国人出境游基本都是第一次出国,因此更看重价格。“中国人喜欢出访大城市,且往往都是走马观花,到哪里都要先照相。”一旅行社总经理助理郭明告诉记者。出境爱购物可能是中国人出境游的又一大特色。   俄罗斯、蒙古游   国人今年出游“新亮点”   东南亚国家打出“山水相连”牌,韩国和日本旅游界则希望以“文化渊源”赢得中国“休闲商机”。在《大长今》、“韩流”等文化因素刺激之下,中韩两国之间的航线变得越来越繁忙。就在“五一”前,大韩航空宣布计划5年内将韩中航线增至50条。   旅游交通经济分析师刘斌说,2006年“五一”黄金周,中国周边旅游的新亮点是俄罗斯、蒙古国。随着夏季到来,北亚风光呈现出独特的吸引力。目前,俄罗斯专门为中国旅游者成立的“无国界世界”协会正全力以赴利用中俄两国互办“国家年”的机遇,吸引更多中国游客“北上消费”。   羡慕黄金周   印度日本都“心动”了   旅游观察家指出,中国“旅游休闲”商机,正从东南亚向东北亚“扇形展开”,并惠及越来越多的邻邦。   刘斌认为,目前东南亚抢得中国“休闲潮”之先,可以为中国东盟经济贸易一体化“推波助澜”。东北亚地区作为中国主要客源市场,“双向流动”将催生“东北亚旅游圈”,从而与东南亚旅游圈南北呼应。这样,中国人的休闲不仅将成为所有周边国家的商机,而且将成为中国与这些国家睦邻友好的“休闲纽带”。   从发展旅游经济的角度来说,中国的黄金周无疑让各国羡慕。印度的一家报纸曾对中国政府“聪明并且执行有力的黄金周政策”大加赞赏,认为印度政府应当向中国学习。而日本为了促进旅游、拉动内需,也修改了“节日法”,人为地制造出更多的长假,方便人们外出旅游或安排各种休闲活动。(新华每日电讯)   新闻链接   悉尼   “处处是中国人,还以为回国了”   “到悉尼来旅游,到处都能看到中国人的面孔。要不是看到外国人多点,还以为又回到了中国呢!”一位来自北京的张姓游客说。   这也是不少中国游客初到澳大利亚时的感觉。去年,有28万中国游客赴澳旅游,占来澳游客总数的5.2%。   在去年12月澳大利亚联邦政府发布的旅游战略中,中国被认为是澳旅游业增长最快的市场。据澳旅游业预测委员会预计,中国到澳大利亚旅游的人数将以每年16.5%的速度增长,到2014年,将会有110万中国游客来澳旅游,澳大利亚每7名游客中就有1名中国公民。届时,中国将有望成为澳大利亚最大的客源国,中国游客每年将为澳旅游业贡献60亿澳元。   巴黎   中国人不再“上车睡觉下车拍照”   四五月份本是中国人赴法旅游的淡季,但“五一”长假却是淡季中的旺季,法国各大华人旅行社在此期间接待的中国游客数量几乎是平时的两倍。而中国人对赴法国乃至欧洲旅游的观念也发生改变。   据法国文华旅行社总经理陈超英介绍,过去,中国游客总想在最短时间内以最少费用游览到最多数量的法国及其周边国家景点。一时间,“上车睡觉,下车拍照,一问什么都不知道”这段顺口溜成了此类贪多求全的旅游方式的生动写照。   几年过去,随着出境游机会增加,越来越多的中国游客迷上了欧美游客所青睐的休闲游和主题游。陈超英说,以文华旅行社为例,参加休闲游和主题游的中国游客三年前只占中国游客总数的5%,现在已占到了30%,预计三年后将达到50%左右。他说,这不仅说明中国游客的消费能力提高,也说明他们的消费心理趋于成熟。    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/14.txt ================================================   时报讯 昨天是五一黄金周的最后一天,游客们纷纷踏上了回家的旅程,宁波各大景区全面“退烧”。而此时,宁波的各大餐饮商场负责人却喜笑颜开。   宁波市假日办统计数据显示,7天时间内,宁波市共接待游客216.3万人次,创历年五一黄金周新高。全市旅游总收入达12.9亿元人民币,同比增长12.5%。也就是说,游客在宁波的人均旅游单项消费近600元。   随着人们旅游需求层次的提高,旅游正从观光时代转向休闲时代,这个特点在今年更为明显。“吃农家饭、住农家屋、学农家活、享农家乐”,乡村旅游景区成为了热点。   从宁波市接待的游客分布情况分析,大部分来自省内周边地区和上海、江苏等地,景区内各地牌照的私家车成为亮点和看点,特别是随着高速公路网络的完善,来自长三角地区、福建、江西等地的私家车明显增多,宁波市已成为长三角地区一个重要的旅游目的地。   今年的五一黄金周,宁波游客的出游观念趋于理性。和去年相比,出境游人数下降,国内游人数增长,但长线游的人数增长幅度不大,短线游和休闲度假线人气旺盛。宁波市民长线游主要集中在北京、海南、桂林[图库]、西安[图库]、大连[图库]、香港等地,长三角周边景点成为短线游的热点。甬金高速开通以后,往金华、江西方向的游客数量也呈快速增长态势。    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/15.txt ================================================    新华报业网讯 “五一”黄金周昨天结束。从南京[图库]市旅游局和统计局的统计数据来看,今年“五一”黄金周旅游的主要指标再次创下新高。七天里,南京共接待旅游者274万人次,较上年同期增长22.3%;实现旅游收入18.95亿元,较上年同比增长25.2%,多收入3.8亿元。全市旅游接待人次及旅游收入双双刷新了南京历届黄金周的最高纪录。   黄金周里,记者截取不同时间段、针对不同采访对象进行了调查,对整个黄金周的旅游进行了全方位的盘点。   周边短线游客数量明显增加   数据:七天长假里,南京外出旅游度假的人数在百万以上,其中周边景点接待人数已经出炉:溧水傅家边农业科技观光园每天接待游客在千人以上,江心洲七天吸引了4万游客,浦口帅旗农庄每天接待游客人数同比增长30%,八卦洲接待游客2万人次,是去年同期的1.5倍,金牛湖接待游客2.1万人次,浦口珍珠泉旅游度假区接待游客12万人次,老山森林公园接待游客近2万人次,高淳瑶池山庄及迎湖桃园接待量超过5万人次。   解析:今年“五一”,出境游、国内游的人数都比去年同期增长,特别是南京周边的景点由于交通、服务设施逐步完善,把很多游客都留在了本地。另一方面,现代人休闲度假方式趋向多元化,花一两天用于本地游或短途旅游,其他时间还可参加健身、看碟、上网等其他活动,比整个假期都在外旅游的方式更加丰富。   随着今年“农家乐”快速兴起,市民流向城郊乡村成为“五一”黄金周旅游新热点。   景区接待游客数量再攀高点   数据:“五一”七天,南京主要旅游景区点共接待游园人次425万,较上年同期增长24%。一些新景区点也迎来了如潮的客流,绿博园“五一”期间接待游客突破14万人次,奥体中心每日的人流量在1.5万人次左右,阅江楼接待游客5.6万人次。   解析:大批游客蜂拥各大景区,景区门票收入大赚了一把,每天接近饱和的客流量对服务水准也提出更高要求,各景点基本能让游客满意而归。尽管如此,一些热门景点还是人满为患,游玩质量下降在所难免。从统计数据看,长假里主要景区的外地游客占8成以上,20%的本地游客其实完全也可以选择近郊的其他景点度过假期。   跟旅游团出游比例再次减少   数据:全市旅行社组团出游5.4万人次,接团6.8万人次,均较去年同期有了显著的增长。   解析:因为各景点为游客提供的服务设施更加到位,交通、住宿、餐饮更加便捷,游客不跟随团队同样可以轻松出游,不会有太多不便;走马观花的玩法使每个景点都不能细细观赏体会,这与现代人喜爱无拘无束、追求轻松舒适的旅游偏好已经不相适应。   经济型酒店成自助游客首选   数据:“五一”期间,南京旅游星级饭店平均客房入住率在80%以上,客房的周转次数和利用率达到最大化,除了节前的团队预订,宾馆适度预留的散客房间与市场需求基本吻合,旅游宾馆基本处于最佳接待状况。   解析:随着旅游市场走旺,游客对旅游舒适度要求更高,高端游客和豪华旅游团越来越多,于是星级酒店也能分得黄金周旅游的一杯羹。而100多元的价位,服务标准化的经济型酒店,近年来成为大量自助游客的首选。    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/16.txt ================================================ 黄金周里,哈尔滨[图库]市中央大街俄罗斯文化节盛装开幕。文化节历时5个月,期间将举办中俄艺术作品展、俄罗斯绘画作品展、俄罗斯民乐巡展等6大主题活动。 王世义本报记者杜怀宇 摄   “五一”黄金周,游人在镜泊湖畔欣赏到了漫山遍野的映山红。  张克非 摄 “五一”黄金周,五大连池[图库]风景区迎来旅游高峰。   接待人数比去年同期翻了一番。   本报记者 司汉科 摄   春回大地,花草初绽,黑龙江涌动着勃勃生机。据省假日办统计,“五一”黄金周我省接待国内游客179.6万人次,国内旅游收入8.08亿元人民币,分别比去年同期增长6.02%和9.2%;接待入境游客1.85万人次,旅游外汇收入552万美元,分别比去年同期增长12%和15%。黄金周期间无重大旅游安全事故和旅游投诉,各重点旅游城市和各大景区景点欢声笑语,秩序井然,今年“五一”黄金周旅游呈现出以下几大特点:   黄金周热提前   黄金周热的提前出现是今年“五一”黄金周最突出的特点。      虽然今年我省气温低于往年,但由于省内各级旅游部门提前进行市场预热和宣传,黄金周旅游市场非但没受到影响,反而更胜往年,且提前火了起来。   为充分享受春回大地的休闲惬意,各地市民纷纷避开黄金周高峰提前出游。4月中旬以来,进出我省的游客明显增多,五大连池、扎龙自然保护区[图库]、牡丹江镜泊湖等地都提前迎来了省外大型旅游团队。哈尔滨太平国际机场运送旅客8000余人次,比去年同期增长35%。   黄金周的火热趋势在“五一”期间得以延续且更加火爆。据省旅游局行业管理处处长王洪国介绍,“五一”期间,省内多家旅行社分别组织了百余人的团队来我省旅游,游客以俄罗斯、韩国、东南亚以及台湾、湖北、辽宁、四川、重庆等地为主。今年黄金周旅行社出游组团量与去年同期持平。北京、沈阳、千山、大连、华东五市等短线旅游较为火爆,因电视剧热播而闻名国内的山西乔家大院旅游线路异军突起,游客报名踊跃;长线游以海南、四川、云南三线为主,出境游以港澳、韩国、日本、东南亚四线增幅明显。   省内游成主旋律   今年“五一”期间我省春光明媚,各地草木返绿,处处洋溢着生机与活力。许多避开出行高峰的旅游者,选择一半时间在家休息,一半时间踏上经济实惠、轻松温馨的省内游。长假期间,80%的龙江旅游者选择到省内著名旅游景区及居住地附近的景区观光休闲,“龙江人游龙江”成为今年我省黄金周旅游的主旋律。   黄金周期间,省内著名旅游景区(点)纷纷举办特色活动,游客接待量均创历史最好水平。太阳岛风景区的俄罗斯歌舞风情表演、当代顶级艺术家代表作品展、俄罗斯商品展销等主题活动截至5月6日引来游客5.52万人次,门票收入127.8万元,分别比去年同期增长76.9%和413.3%。哈尔滨极地馆新编排的白鲸、海狮等动物表演,吸引游客日均万余人,其中绝大多数为省内游客,俄罗斯团队比春节黄金周有大幅增长。龙珠二龙山举办的“首届哈市大学生千人登山大赛”,吸引游客1.66万人次,同比增长8.5%。五大连池达子香旅游节吸引游客1.2万人次,门票收入30.76万元。截至5月6日,哈尔滨游乐园接待游客17万人次,门票收入154万元,同比增长209%和42.5%;扎龙自然保护区接待游客1.41万人次,门票收入28.2万元;兴凯湖接待游客1.35万人次;虎头经济开发区接待游客2.5万人次;大庆油田乐园接待游客1.29万人次。   乡村游备受青睐   龙江乡村“五一”不寂寞。在我省乡间公路上车来车往,尽是乡村旅游者,有自驾车友朋相邀的,也有乘大客车全家出行的。我省18家农业旅游示范点风格各异,哈尔滨市郊、齐齐哈尔、牡丹江、伊春等地的清新朴实的山野民舍、北方少数民族风情小屋、大湿地休闲别墅,吸引了众多省内外游客。他们或登山踏青,或采摘野菜,或徜徉水边,或赏民族歌舞,品味农家炖菜,尽情享受世外桃源的悠闲与恬静,体会与都市生活不一样的村野情趣。香炉山、帽儿山、松峰山、兴十四村、牡丹江朝鲜屯、铁力年丰朝鲜民族自治乡、同江街津口赫哲村等地“五一”七天宾客盈门。许多游客自主设计乡村旅游线路,一路游览多处乡村,给当地农民带来了可观的经济效益。   黄金周期间,哈尔滨市几家大的汽车租赁公司生意火爆,面包车、越野车等车型被抢订一空。玉泉狩猎场、长寿山、横道河子、五营森林公园、街津口赫哲族渔村等景区接待自驾车游客平均比去年同期增长了10%。   (黑龙江日报) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/17.txt ================================================   本报讯(见习记者 张昱)5月8日,记者从银川市旅游局获悉,该市列入2006年五一黄金周数据统计范围的21家旅游景区,共接待游客17.6万人次,门票收入454.18万元,分别比上年同期增长14%和24%。   记者了解到,银川市今年五一期间,接待外来游客13.76万人次,旅游收入4180.34万元,比上年同期增长了21.24%和32.5%。其中,过夜旅游者5.78万人次,旅游收入2987.97万元,比上年同期增长21.4%和30.7%;一日游游客7.98万人次,旅游收入1192.37万元,比上年同期增长21%和37%;旅行社累计接团321个,累计接待人数1.21万人次,比上年同期增长7%和4%。   五一黄金周,银川市各旅行社累计组团310个,出游7734人次,主要出游目的地有山东、河南、北京、广州[图库]、四川、山西、陕西、青海、海南、云南、桂林[图库]等地。有来自北京、四川、安徽、大连[图库]等地的4个旅游包机和6个旅游专列抵达银川。出境游有港澳、日本、韩国、新马泰等地。黄金周期间,银川接待海外游客63人,分别来自泰国、日本、荷兰、美国、德国等国家。   来源:宁夏网 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/18.txt ================================================   【今日商报报道】 (通讯员 吕中 记者 赵文)据统计,“五一”黄金周期间,全省共接待游客992.49万人次,比2005年同期增长19.4%;实现旅游总收入70.93亿元,同比增长24.1%。   与以往“五一”黄金周相比,我省旅游市场呈现了以下特点:一是假日旅游协调机制有效发挥。经过前16个黄金周的考验,我省已经形成了一套较为完善的信息反馈和预警机制,假日旅游协调机制更加完善。领导重视程度高。随着我省投诉网络的不断完善和投诉渠道的不断增多,游客维权意识的进一步提高,今年“五一”黄金周7天全省共收到游客投诉81起,同比增长了一倍,其中投诉旅行社23起,占投诉总量的28.4%,所占比例同比下降16.7%。目前各类投诉达成处理意见的100%,协商处理完毕95%。   二是城市旅游服务功能日益完善。随着“城市即旅游,旅游即城市”理念的进一步深入推广,我省各市加紧建设景区间道路,加快完善旅游标识,相继建立旅游集散中心、咨询中心等,城市旅游服务设施更加完善,并在“五一”黄金周期间充分显现,游客满意率进一步提高。南京在地铁、内外秦淮河整治和新火车站等诸多城市配套工程相继完成基础上,充分发挥旅游集散中心的功能,将绿博园、奥体中心等一批新景点包装策划,受到市场的欢迎。   三是乡村旅游备受青睐。农业旅游正作为提高农民收入、提升农民素质、改善农村面貌的一项新的旅游产品,不断受到市场的青睐。南京根据对监测点的测算,节日前4天共有30万市民和游客体验了乡村休闲旅游活动,其中溧水傅家边农业科技观光园、江心洲景区、浦口帅旗农庄和迎湖桃园等全国农业旅游示范点接待量均较平时有了显著的增长,其中傅家边每天接待团队游客数千人,江心洲节日七天吸引了4万游客上岛,每天接待游客同比增长30%。   四是旅游活动丰富多彩。主要体现在:旅游节庆好戏连台。南京各大公园开展了各类主题活动,如玄武湖[图库]的《梦想中国》江苏选拔赛、夫子庙祭孔乐舞表演、明孝陵《大明华章》文化展演等,都吸引了不少游客参与。据对纳入统计范围的229个旅游区(点)的统计,节日期间共接待海内外旅游者1914.5万人次,同比增长22.8%;实现门票收入2.08亿元,同比增长24.3%。   五是休闲旅游将成为主流。主要表现在:自驾车游增长迅速。南京对夫子庙、中山陵[图库]等主要景点的自驾车游客进行了统计,这部分游客占到了13%以上。据对全省旅行社的统计,全省旅行社共接待游客41.28万人次,同比增长37%,其中本省游客24.68万人次,占59.8%;组团22.83万人次,同比增长28.9%;组织公民出境游6935人次,增长27.3%。   六是旅游拉动消费作用明显。“五一”旅游的火爆为住宿、餐饮、购物和交通等相关行业带来了商机。节日餐饮和旅游购物也是红红火火。南京、苏州、无锡、常州、镇江、扬州、徐州、连云港[图库]八市39家纳入“五一”黄金周监测的商业企业,共实现销售零售额7.12亿元,同比增长30.9%。       ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/19.txt ================================================   中广网5月9日广州图库消息(记者何伟奇 通讯员仇文确)据广东肇庆图库旅游部门统计,“五一”黄金周到肇庆各地主要旅游景区的游客人数达106万人次,与去年同期相比增长16%,其中城市接待旅游者人数为55.95万人次,同比增长10.2%,旅游收入2.09亿元,同比增长12.4%。       “五一”黄金周肇庆鼎湖山举行“山泉泼水节”   “五一”黄金周期间,七星岩图库推出的“十里走单骑”自行车环湖游、鼎湖山“山泉泼水节”、德庆醇正岭面古迹游、封开萝筐节、梦多奇溶洞、怀集燕峰峡温泉漂流、广宁竹海美食、四会造纸村访古、高要生态园寻梦等活动让游客感受到肇庆千里旅游走廊旅游“天天有新意、日日景不同”的休闲旅游新体验。        肇庆千里旅游走廊如诗如画   今年肇庆市不断完善旅游配套设施建设,在千里旅游走廊上新增设了多个一目了然的景区指引牌,为自驾车旅游人士提供了清晰的指引。此外还加强了旅游安全生产管理和规范旅游服务质量管理,推出了旅游志愿者服务,为到达景区的游客免费提供方便指引,受到众多中外旅游者的欢迎。   来源:中国广播网 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/10.txt ================================================   【来源:你来我网】 【作者:蝴蝶飞飞】   如果有一天,我们不在关心什么是关键问题,而是把关键性思考融入我们的思维习惯中,那么这良好的思维习惯,就会成为我们战胜一切问题的利器,为我们提供应对一切问题的真正关键的路径。   为了爱----我考研   初恋多少都有些骗局的味道,可是我竟迷恋的那么持久,或许正是那场无情的游戏,才使我的考研如此顺利。执手相看已不再有往日的情感,却难挥去那份刻骨铭心的记忆。从此后漂泊的心在何处栖息,还会不会有浓情酿就的泪滴?高山流水依然是我永远的寻觅,不再苛求爱恨随缘聚散两相依。   他大我八岁,又在攻读博士学位。他说他博士毕业已经整整三十岁,那时的他更需要一个家,他说像我这样年轻的女孩,离开了校园,走进生活,会很快忘记他。为了爱,也为了满足我天生的虚荣,跟他拉近距离,我决定了考研。直到现在我依然认为我的成功一半的原因在于他的督促,另外的一半原因是因为我自己的努力。在这里,我把自己成功的考研历程展示给大家,希望能给匆忙备考的你提供些许借鉴。   关于报考院校----选择我喜欢的   一般来说,选择专业比选择学校更重要,一旦你选择了自己喜爱的专业,再根据自己的实际情况选择颇有名气的学校,这样的选择才是明智的。切记,不要为了上名校而盲目的选择自己并不喜欢的专业,而又不得不去学习那些课程,为考试而学习,为毕业证而学习,这样不但折磨自己,而且很难学有所成。因为即使你腰缠万贯,享有很高的声誉,但是,你所从事的不是自己喜欢的工作,日子对你来说过的会很痛苦的。我之所以选择陕西师范大学,是因为我考虑到了自己的爱好和实力,加上他严谨的治学态度。运筹帷幄方能决胜千里,我终于可以如愿以偿的研究自己喜爱的先秦文学了。   备考秘笈   在准备考研的过程中,就我个人经验,十分关键的是:   (一)时间的安排,今天做什么,明天做什么,一定要心中有数,要周密安排自己的作息时间,制定学习计划,并认真的去执行,决不能散漫无序的混日子。   (二)有效的利用时间,提高单位时间的学习效率。每个人要根据自己的“生物钟”和学习环境对时间做出科学的安排,利用大脑最清醒、记忆力最强的时间去学习,这样可以收到事半功倍的效果。我喜欢白天看书,晚上入睡之前再回忆这一天所看的内容,以加深记忆。   (三)注意锻炼身体。“身体是革命的本钱”,无论到什么时候,身体对于我们来说都是最重要的,我那时候和舍友约定好每天6:00起床然后去操场沿每圈400米的跑道跑三圈,之后背一个小时的单词。当时我用的是人民日报出版社的黑博士8100快速突破然后再吃饭。这时的晨跑作用在于清醒大脑和避免赖床不起,产生一种清新舒适的学习心情。冬天的时候,我将锻炼的时间安排在下午5:00左右,这时刚好经过一整天的复习,以少量的身体锻炼来减少些许疲劳,调节枯燥的学习生活,之后再去洗澡、吃饭、上晚自习,会轻松许多的。   (四)坚持不懈的精神。既然选择了考研,就应该承受得起他的枯燥与艰辛,或许你要为过分的闷热和严酷的冰冻而打退堂鼓,或许你要为教室----宿舍----饭堂三点一线的单调倍感乏味,或许你会因为整日不见心中的他或她而产生孤寂之感,面对这些你一定要坚定信念,要始终相信阳光总在风雨后,所有的付出都是对你顽强意志的考验,而这正是能否成功的一个关键,所以,面临如此的意志测试,你一定要坚持!   虽然我的成功并未换来自己所要得幸福,但是,没有他的鼓励,我知道我是不可能这么容易成功的,整个复习过程中,他无时无刻不在悉心鼓励我,他的一个激励,一个眼神,都能够促发我心中无尽的力量,在见不到他的今天,我同样感谢他对我的鼓励,但愿处于甜蜜爱情生活之中的考研者们能够互相理解,互相鼓励,让你们的爱情也为考研加油!    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/11.txt ================================================   【来源:你来我网】 【作者:kiidy】   “花落繁枝千万片,犹自多情,学雪随风转”,2006年的春天,这种莺飞草长、树绿花香的常景,在我眼中变得特别的美丽。一年的时间,在许多人的生活中都不会有什么特别、不会产生多大变化,但在同样的时空中,在与别人一样的收获之外,我完成了考研的复习,是这种成功使我体会到了风景与心情的不同。我不是聪明人,也不太笨。   做每件事要想成的都挺不容易的,所以我干什么事情,只要认准了都特使劲。考研是大事,从一开始就没想过不考,原因很多:父母的期望,逃避工作及喜欢校园生活。   考研,真的爱你吗?   我想并不是每个同学都想考研,还有许多不考研的友人们对我们考研大军不屑一顾,事实是考上了也并不一定就前程似锦,要知道两三年后依然是面临很大的就业压力,而工作的同学已经是经验丰富,在职场上有所作为了!这要看个人的追求、家庭经济状况,要综合来衡量自己是否需要考研,是否有必要再拼一次。如果知道了自己下一步该干什么,并且目标明确,那就只管拼了。早期气馁的,中途放弃的,上了考场还没考完的大有人在,所以下了决心就要坚持到底,俗话说“坚持到底就是胜利”用在考研上是最恰当不过的了。   跨专业,做我想做的   我没考化学类的,而是选择了管理类,原因依然很多,主要是我对化学不来电,高中学得就不好,大学成绩也不好,我很了解我自己,考上了我还会像读本科那样痛苦,混日子,浪费青春,我是不会在这一领域有什么建树的。活了这么大有太多的迫不得已,想让自己的想法和意愿做一次主,于是我选择跨专业考研。大家都知道相对来讲,理转文易,文转理难。对于理工类的同学来说,只要英语比较不错,选择文科中的经济,管理类的考数三、数四的是比较有优势的;要是选择心理学或是法学这样的专业,就要求你有浓厚的兴趣和良好的记忆力来支撑,要有比较好的英语基础,这样胜出的机会才大一些。   在选择院校方面要依人而定了,跨专业的同学选择34所(截至笔者报名,全国有34所院校独立招收研究生,划分数线,提前复试)还是会明智一些,由于34所复试比较早,若不幸被刷那还可以调剂,还有复试的机会。若报考很强学校的热门专业,风险必然很大。我经过再三考虑还是决定考旅游管理专业的最知名学校之一——北京第二外国语学院(中国旅游学院),这样便开始了我快乐的考研日子。   复习,持久战   当时我自视英语还行,数学不好,于是上了两个数学辅导班,别的班没上。现在回头看我有许多复习中失误的地方,在这里可以说一下,大家引以为戒。我是题海战术型选手,由于采纳一位研友的建议,我在后期很少做模拟题,只顾钻历年真题,分析出题的大方向,而去年的考题是多而不难,要求计算能力强,我是会做而做不对,那题错得太垃圾了。前期的努力大半都在后期折腾没了。考完后有许多同学说有原题啊,做过之类的话,我是听得一头雾水,那题我可是从来也没见过,还有,我保证题也没见过我。数学是难点,但不是不可战胜的,我总结,要考好数学,基本功是必不可少的,一味钻高难度的题是得不偿失的。因此,要宏观、微观一起抓,两手都要硬!   专业课我是下了很大的功夫的,书看了十几遍吧,记不清了,还做了读书笔记,把所有可能考的全都列了出来。没办法,谁叫我跨专业考呢,于是早上背晚上背,一遍一遍,像个精神病人。   英语的复习是全程的,每天都要练习听力,背背单词,阅读复习资料也看了许多,英语关键是培养语感,黑博士的120篇,220篇,240篇,我连着都做完了。历年考题,反反复复也看了好多遍,要知道我所报考的二外(北京第二外国语学院)对英语要求可都不低,对手都是很牛的人啊,英语都得七八十分。现在多做些题,分析几百篇阅读,最起码考完我不后悔。所以奉劝英语过了六级的同学不要大意啊!   坚持,给我力量   到了后期心里想的就这么一句“坚持到底就是胜利”。那时身体不是很疲惫,但心里很是疲惫。很多同志到后期依然天天坐镇,但究竟效率如何,学了什么,也只有他自己最清楚。我那时隔一段时间就放纵一下,打打排球或是和研友们定期侃侃,总之要学会自我调节。走出考场的那一刹那我想的不是考得怎样,而是以后我做什么都不怕了。因为我为了自己的理想坚持奋斗了十个月,那可是三百多个日日夜夜啊,容易吗我!   我们寝室有四姐妹,每天相互鼓励,共同学习,有哪个想偷懒了,其他三个会同时谴责她。无疑,这样的氛围是考研路上最可贵的,可惜的是最后只有三姐妹上了考场,还有一个月就考试的时候,另一个美眉说什么也不学了,任我们百般劝说。后来我们三个都考上了(她俩分别被北京化工大学、长春理工大学录取了),美眉把肠子都悔青了。还是那句话:考研路上早期气馁的,中途放弃的,上了考场还没考完的大有人在,所以下了决心就要坚持到底。坚持到底就是胜利。   调剂,恨你然后爱你   成绩出来了,335分,差额复试要排在48名左右,我的排在50名左右,因为我报的专业方向太热(旅游企业管理),心想是没戏了,而且二外不是34所自主招生的院校,复试比较晚。我便像个无头苍蝇一样到处搜索联系调剂学校,很快档案就被湘潭大学调走了。当我在湖南复试时,二外才出复试线,呵呵!除了我报的方向是339分左右,其他的方向都是320分左右,我还想调剂到二外的其他方向,可档案已经调走了,这时想回也回不去了。二外的学长和我说:“你丫就安心在湖南复试吧!其他方向你也调不了啊!二外350分的复试都不一定上呢,调剂是正确。”这样也给我了很多安慰。幸运的是我调剂到南方一所比较有名的重点大学,学校环境很好,让我欣喜。更幸运的是,我跟了一位好导师——阎友兵教授,他不但是我学术研究上的带头人,更是我做人处事的好榜样。在老师和朋友的支持下,我已经下定决心考博,圆我二外的梦!   这就是我的考研之路,辛酸苦辣,冷暖自知。    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/12.txt ================================================   话题多、题材广、时间紧、要求高的议论文写作一直是雅思写作中的难点,思维狭窄、词汇不足也一直是中国考生的通病,如何在议论文写作中拓宽思路?怎样背诵8000个雅思词汇?备考雅思写作的误区和应对方法又是什么?上周末,启德教育吴建业老师在广州图书馆给广大考生上了一堂生动的雅思议论文写作课。   开拓思维的十大原则   据统计,近年来雅思议论文写作共有265个话题,常考的涉及环保、经济、社会、教育、犯罪等题材,十分广泛。鉴于很多考生写作时感觉无话可说,吴建业提醒考生从经济、时间、健康、情感、教育、心理、权利、文化、环保和道德十大原则来思考话题的意义。他以养狗为例:经济上要花很多钱;情感上亲近狗就会在一定程度上疏远家人;遛狗、给狗冲凉等浪费时间;狗传播疾病会影响健康;养狗会影响学习;狗很忠诚,养狗会让人从心理上疏远狡诈的人类;侵犯邻居的权利;狗到处排泄会破坏环境等。“这样大家碰到任何一个话题都不用心虚了。”但是他同时提醒广大考生不必面面俱到,只要挑出十大原则中的两三点来自圆其说就绰绰有余了。   记住800个核心词汇   “垃圾怎么说?可回收垃圾?可降解的垃圾?……”课堂上,吴建业关于垃圾的几个提问难倒了很多在场的英语专业的学生。吴建业老师表示,中国学生在学校学习的词汇在很多场合用不上,比如英语专业八级侧重于文学名著,商务英语则侧重谈判、商业词汇。雅思需要8000词汇,但相当一部分考生疯狂地从A背到Z,还存在想说却说不出来,即使说得出来也衔接不来的问题。怎么办?   “分类背诵,联想记忆。”吴建业告诉广大考生,只要掌握了800个词汇,就可轻松应对雅思写作。“当然这些词汇是剔除了dog、pig之类的核心词汇。”那什么词才叫核心词汇呢?吴建业举了一个例子,如由奢侈→贫穷→救助→难民→……,就这样把相关联的词汇串通起来背诵,既掌握了词汇,而这些词汇往往是一篇文章中可能涉及的内容。   写个性化的八股文   吴老师还指出了考生的备考误区和应对方法。针对很多人希望通过学习外文名著来提高写作水平的想法,吴老师认为外国名著对大多数中国考生而言是可望而不可及的。“外国人学汉语要学习汉语说得好的大山和大牛,而不可能让他们学习鲁迅先生的《药》、《孔乙己》等名篇。”同样,中国考生要学习英语学得优秀的中国人,他认为真正优秀的教材其实是中国考生的优秀范文。   提到一些辅导老师教育学生写作文一定要真情流露,想到什么就说什么,吴老师认为这是不现实的,因为对大多数中国考生来说,做到挥洒自如、下笔自若、真情流露很难。而很多人争相背诵名师的范文又搞得千人一面,味同嚼蜡。鉴于此,他认为既要学习范文的格式,又要有所改装,加入自己的东西,凸显个性,“写个性化的八股文”。   讲座上,吴老师还提醒考生写作时不要想着标新立异、旁征博引,只要能够自圆其说,多用权威、翔实的数据事例来说明观点就好,否则会画蛇添足。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/13.txt ================================================   一番周折后终于在多伦多考完了新托福考试,整个考试持续了近8个小时。为什么呢, 因为考完了第二部分听力后,美国ETS考试中心的Server出了故障,让所有当天的考 生苦苦等了3个小时,而且中间不许离开。笔者所在的考场有耐心坚持到最后的考生 连一半都不到。这3个小时让我有机会把考试中心的情况了解得更清楚一些:考场布 置成一个开放式的办公室,每个考生都有自己的cube,但不隔音,由于口语考试考场 内到处能听到说话的声音。笔者所在的楼层能容纳16人,当天有3个欧洲移民(看上 去都四五十岁了),5个印度人,2个南韩人,2个香港女孩,一个从Kingston来的亚裔 男孩,还有一个就是我了,是唯一一个中国大陆来的(很显然中国同学都被吓住了)。   考前我原以为新托福当场能像机考TOEFL一样给我一个成绩范围,好歹安慰一下我8个小时 下来疲惫的心灵,结果没有,最后考场工作人员告诉我要等3-4周后我才能收到成绩,所以 大家要注意了这是和以前很大的一个不同。由于不知道考试结果,我只能和大家分享一下 考试体会。新托福决无想象中和各种广告中宣传的那么难,但要考好,必须有综合的考试 技巧,一定的英文能力和较快的反应速度。   一.考试技巧分成2个方面:一是考生必须要相当熟悉新托福的考试形式和内容。 考试总共有4大部分。   1.阅读: 过程中不可作笔记,共3篇文章40个问题,要求60分钟内答完。这3篇文章又分成两个独立计时部分,前一部分只有1篇文章14个问题,20分钟内解答,其间可以返回;第二个部分是另外2篇文章40分钟,之间也可以返回。   2.听力:按ETS的介绍,听力应该只有2个独立的计时部分,每部分中有1个长对话和 2个long lectures, 每个部分的答题时间是10分钟。但我当天却遇到了3个独立计时部分,后来才明白其中一个部分是实验题,但考试时是不知道那个部分的。(听力完毕后,考生有10分钟休息时间,我建议带点吃的喝的。)   3. 口语:共6个问题。第1,2 个问题是大家熟悉的话题,各给15秒准备,用45 秒对着耳机上的麦克风回答,由电脑严格记时,有点像对着answer machine留言的样子。第3,4 个问题先给45秒读一段文章,然后听一段话,再让你口头总结和概括,给30 秒准备,60秒回答,前者主要是关于student life, 后者是 academic 方面的。第5, 6题是让你听一个对话和一个academic方面的段子,然后20秒准备,60秒回答。   4. 写作:2篇文章。第一篇是先3分钟内读一段文字,再听关于这段文字的一段评论,然后在20分钟内写出一篇150-225个词的文章。写文章时,所读的文章会出现在屏幕的左侧,并且电脑会显示你所写的字数。第二篇文章是在30分钟内写300个词的文章,题目显然仍然是从原机考TOEFL作文题库中选的。现在的写作部分均只能打字,不再有手写这一选择。   考生在熟悉了考试内容后,就必须熟练掌握各种题的解题技巧。阅读部分应学会 对文章本身的处理,10大题型尤其是插句子题,组织信息和总结题的解法。听力 部分现在变得更长更臭,究竟什么地方是考点必须会预测和记笔记,尤其是针对 2选题和排序题。口语部分仅靠现场临时发挥是不够的,必须背一些模版和常用 句子,这样才能尽可能表达清楚和连贯。写作的2篇文章要求考生熟练掌握驳论 文和议论文的写法:第一篇一定是让你写出说话者是如何反驳阅读文章的内容的, 这种文章的写法套路非常固定;而另一篇的8类写法考生也必须熟悉并在考前勤加 练习。   二.英文能力   从阅读开始就要求考生具备一定的词汇量,不用太多,6000就可以了。有些书 建议大家每天背60个单词,这是不够的,我建议大家每天至少要看300个单词。 在打下词汇基础后还需一定的阅读能力,阅读中有三种题均在考能力,一道问 下面那句话是原文的改写;一道是句子插入题;一道是总结文章内容题。   听力部分也是一样,满脑子技巧就是听不懂,上去考试肯定没戏。建议大家 从精听着手,辅以泛听,2个月内一定能有质的提高,但前提是每天至少听上 2个小时。   口语部分。各位中国考生应该感谢ETS给我们提供了一个提高英语口语的机会。 不少人总想不通新托福为什么要加考口语,一提到这个问题就怨声载道。我建 议大家调整一下心态,有这个埋怨的时间还不如多练习练习,课堂上练,课后 练,对着老师练,对录音机练,口语很快就会提高了。毕竟口语除了考试要用, 也是日常生活中最practical的,我们已经听说过多少因为口语不好和自己喜 欢的工作失之交臂的故事了。   写作部分要求掌握文章的结构和遣词造句能力,否则很难拿到高分。   三.速度   考生需要阅读速度快,听力反应速度快,口语部分表达快,写作部分键盘速度快。     (来源:搜狐教育社区) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/14.txt ================================================   50余名沈阳市职业学校校长近日走进清华园,在沈阳市教育局与清华大学共同举办的首期沈阳市职业学校校长高级研修班上为自己,更为沈阳的职业教育而“充电”。   沈阳市中等职业学校重组于上世纪80年代,绝大部分学校是由薄弱学校改造而成。近年来,随着国家、省、市各级政府对职业教育的重视,沈阳市职业教育   有了较大发展。目前,沈阳市已有中等职业学校131所,中等职业学校教师9500人,专业教师4800人,在校生9万余人,年毕业生3万余人。   2006年,为了让职业教育有一个更大的发展,沈阳市决定不仅在硬件上加大投入,按照国家级示范校的标准建6所万人规模的中等职业学校,同时,还要在在软件建设上有一个新突破,按照国家职业教育教学质量评估标准,全面提升沈阳市中等职业学校教育教学质量。为此,沈阳市教育局借助清华大学这样一个高层次的培训平台,举办各种层次的共10期研修班,对分管各项工作的副校长和专业教师约500人进行培训,通过国家教育部职业与成人教育司有关领导、国内优秀企业家、教育专家、知名学者和国内重点职业院校校长的讲座及经验交流,使参加研修人员政策水平、理论知识、教学管理能力及个人学养得到提高,从而全面提升沈阳市职业院校的内涵建设,进一步培养、打造出一支高水平的职业院校优秀的管理者和“双师型”教师队伍。   沈阳市副市长王玲、沈阳市教育局局长李梦玲、教育部职成司副司长刘占山、清华大学副校长陈吉宁参加了首期研修班的开班仪式。他们表示,清华大学和沈阳市的这种合作,必将促进沈阳市职业教育的跨越式发展,双方在市、校人才合作培养模式上的有益探索,不仅会加深和扩大双方在各个领域的合作,也会对全国的职业教育提供有益的经验。   来源:光明日报 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/15.txt ================================================   每小时付费过百元 孩子压力大不领情   请家教不为辅导功课,而是帮孩子填报志愿。昨天(9日),北京高考填报志愿网站刚一开通,不少家长就开始雇用大学生当起了“志愿家教”。北师大家教中心的负责人说,目前已有数十位家长来登记。而在其他一些家教中心也出现了类似需求。“志愿家教”主要由大三、大四和研一的学生担任,费用一般为每小时100元至200元不等。   家长   向大学生打听高校情况   家住六里桥的许女士正读高三的儿子就要报志愿了。昨天(9日),她专门请了半天假到北师大家教中心打听“报志愿家教”的事儿。“家里人都不熟悉大学情况,问学校老师又怕老师忙不过来,因此想找个大学生当报志愿家教,给孩子讲一些大学的情况,比如学校风气呀、生活条件什么的,让我们心里有数。”许女士说,希望能找个大三、大四的学生当家教,对大学比较了解,和孩子年龄又相差得不太大,比较容易沟通。   家教   “过来人”经验有助抉择   北京师范大学大三学生葛庆已经和一位家长签好了合同,从昨天起,他将连续5天到考生家中辅导报志愿。葛庆说,自己去年就辅导过家里亲戚的孩子报志愿。“上了大学之后,才知道大学到底怎么样。考生光看一些介绍是不够的,就是应该多听听‘过来人’的说法。以我对大学的了解,我会给他我的建议。我在考生家里首先多和他聊,看他的兴趣,然后根据我的资源和经验帮他了解这个学校的情况,食堂的条件、宿舍的情况、考研的比例、某专业就业情况等。”葛庆笑着说,还有学校里男女生比例多少、女生是否漂亮什么的。这些信息对考生作出选择应该很有帮助的。   考生   被过多干涉感觉压力大   尽管家长乐此不疲,但高三学生小峰对妈妈请来的“志愿家教”并不喜欢。小峰说,“报志愿有这么难吗?要想了解学校的情况,上网查查不就行了,干吗非要花钱雇人呢?本来是我自己的事情,这么多人为我作主,让我反倒没了主意,也让我觉得压力特别大。”   专家提醒   不宜增加考生心理负担   “利用‘大朋友’的经验来帮助孩子,这是国外一种常见的做法。但这么做一定要有个‘度’,不要过多地给孩子增加心理负担。”北京青少年法律与心理咨询中心主任宗春山说,采取各种方式更多地关注孩子,实际上是家长内心焦虑的一种表现。高考在即,适当地“忽视孩子”是必要的,应该给孩子创造一个轻松的应考环境。也有专家指出,大学生们对大学的认识是否客观正确?是否会因为自身的局限给考生误导?专家建议,“志愿辅导”只是辅导,考生应有自己的选择,家长也应该尊重考生的意见。 编辑:苏琳    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/16.txt ================================================   【来源: 太奇MBA】   英语各项复习及对策   英语试卷满分为100分,考试时间为180分钟,试题分为五部分:词汇知识,综合填空,阅读理解,英译汉和写作。   词汇和语法是语言能力的基础,没有丰富的词汇和对语法知识的掌握,一个人的英语水平不可能真正得到提高,部分考生认为词汇、语法所占分值不大,就以为词汇和语法不重要,放松甚至放弃对语法和词汇的复习,这是舍本逐末的做法,是极其错误的。除了单项选择外,其它部分考题也与语法、词汇密切相关,如完形填空,既要考词汇,又要考语法。阅读理解,、翻译、写作等题型的考试,也需要考生对词汇和语法的熟练运用。   词汇的复习是英语备考的基础,但单纯的词汇记忆费时而收效慢,大家一定要结合阅读、翻译等练习来记忆单词。建议大家在复习前期集中一段时间,如每日2~3小时,进行词汇的密集记忆,目标是对大纲内词汇、习惯用法有大概但全面的了解。在备考中期,考生主要借助阅读与翻译来巩固词汇,这一阶段要注意方法,先做阅读与翻译,然后再查询并记录印象模糊的单词与词组(这部分词汇要抽空经常复习),大学一定要注意,一边阅读一边翻词汇手册是最糟糕的复习方式。备考后期,特别是考前,考生一定要重新过几遍词汇,力求留下清晰印象,避免因词汇的不熟练而影响阅读速度。   在备考过程中,最好准备一本附有例句和常用搭配的MBA词汇手册。   阅读理解这一题型占了英语总分的40%,是MBA中的重头戏。阅读理解能力的强弱从总体上反映了一个考生的语言运用能力,考生要提高阅读能力,就必须进行大量的阅读。在阅读中精读和快读相结合,是提高阅读水平的有效途径。许多考生说自己做了很多题,看了很多文章,但水平还是老样子,其中的主要原因在于他们没有对文章进行精读。我们应该明白,只有精读才能打好我们的语言基础,如果一味求快,老是快读,英语水平是很难实现质的飞跃的。   我建议那些英语基础比较差的考生平时练习要以精读为主,每天看两三篇文章,注意文章的主题、段落大意、核心句、关键词,对一些长句难句进行透彻的分析,遇到生词要用小本子记下来,必要时回过头来查字典,一些好的例句和好的表达方式要背下来,打好语言知识的基础,这样对短文写作也有好处。在这个基础上再适当安排一些快读,一般精读和快读的比例为1:3,当然这不是绝对的,大家可以根据自身的情况进行调整。只有在做了大量精读的基础上,大家才能快读,才能快速从短文中获取有用的信息,在考试中取得好的成绩。   英译汉考题主要测试考生根据上下文用汉语准确表达原文意思的能力。这方面能力的提高可以从两方面的着手。   一方面要对阅读理解时遇到的长难句进行深入的分析,搞清句子的结构,词汇的含义,有些词汇的意思字典中都没有,大家还得根据上下文的意思进行词义的引申。   另一方面,要坚持做一些单项的英译汉的练习,选择的训练材料最好是英汉对照的。训练时要争取不看答案,尽量根据上下文的意思来翻译,然后再对照原文进行比较、思考、推敲,找到自己的不足和弱点,如果是句子结构上翻译的错误,就必须在训练中加强对句子结构的分析。   在翻译技巧上,现在很多考研指导书都有所涉及,大家可以选择一本好好研读。翻译讲求的是“信、达、雅”,信就是要忠实于原文,达要求的是翻译出来的句子必须准确表达原句的主旨和大意,雅指翻译的句子生动流畅,而不是生硬涩口。大家做到了这一点,自然就能在考试中得到自己理想的分数。   突破英语写作难关首先需要掌握一些固定的句式。把平时自己喜欢的句子用汉语写出来,固定下来,之后就套用英语句式。比如It’s + adj. + that / to 就是比较典型的一种句型,可以经常套用。这其实就是一项“汉译英”的工作,考生在作文时,很难临场即兴写出那些正确而优美的句子,只能靠平时积累下来。   其次可以把自己写的句子“炫示”于人。为什么要让别人看自己的“弱点”呢?原因就是,考生根本无法判别自己造出来的英语句子是否正确。而在阅卷时,句子错误或不通是很大的一个失分点。在高手的修正指点下,受益的还是你自己。   此外,注意学习动词,尤其是动词词组的用法。英语句子的构造以动词为主,写出地道的英语句子也以动词或动词词组的妙用为本。如有这样一句经常出现在作文中的话,“许多恼人的问题仍然悬而未决。”很多考生会这样写:Many puzzling questions are still suspending. 转换一下动词:Many puzzling questioned remain unanswered. 效果就大不一样了。   当然,提高笔头表达能力才是真正的关键。1 多读范文;多读范文能使考生了解写作方法,写作的常用词汇,记住其中一些比较好的用法。2 多写作文;第二轮复习应该坚持每周写一篇作文并且要把每一篇写好,不要在一个水平上反复重复,要力争写好每一篇,这样写几篇后就会有收获。临近考试,可以按照规定时间写作,此时写作的题目要广泛,各种话题都要写一些,以增强适应性。3 写作时可以多查字典,不看范文;写作时遇到不会写的词句要多查字典,还要看该词的用法,这样才能保证正确使用;写前不要看范文,看了范文会影响自己的思路,写完后再参看范文。4 注意书写整齐;平时写作就要注意书写整齐,规范,要在平时养成良好习惯,在考场上才能发挥得好。    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/17.txt ================================================   【来源: 太奇MBA】   数学各门课的特点及复习对策   从考生总结一句话:得数学者得天下。在复习的过程中,要针对不同的课程复习特点进行复习。初数部分知识点少(主要就是绝对值,不等式和方程,数列,),概念简单(大部分都是在高中学过的),技巧性强(同样一种题可以用很多种方法去分析),题型变换性强(同一个知识点可以引申出很多题型),所以这部分考试容易失分,做题的时候一定要细心。每年考试往往不是最难的部分如微积分失分最多,而是初等数学部分失分最多,稍微一不留神就会少考虑一个条件。初数部分的复习对策就是抓重点,也就是抓必考题型(如绝对值、不等式和方程、数列每年必考),然后以点带面,复习其它次重点的部分(比如二项式定理、比和比例)。在平时做这部分练习的时候,大家一定要开阔自己的思路,千万不要一上来就按传统的方法求解。比如有一道题是这样的:用绳子量井深,把绳子折于三折,井外余绳 4 尺,把绳子折于四折,井外余绳 1 尺,求井深?很多同学在做这道题的时候,一上来就设两个未知变量,列方程组,然后费了很长时间才把答案解出来。其实你考虑一下,当三折量井的时候,相当于余绳 3×4 = 12 尺,当四折量井的时候,相当于余绳 4×1 = 4 尺,然后口算出井深为 12 - 4 = 8 尺。初数中类似这样的题很多,常见的还有甲乙两人围绕跑道相向而行的相遇追及问题等等。通过这个简单的例子说明,大家在学初数的时候,一定要“灵活”,透过试题表面找到等量关系。   微积分这部分知识点很多,占整个数学知识点的三分之一以上,概念抽象,需要很强的抽象思维能力,并且重逆向思维(尤其体现在极值的充分性和必要性),技巧性较强,题型变幻莫测,是数学中最难的一部分,所以容易失分。建议大家在复习这一部分的时候,多做一些充分性判断题,因为一定要训练自己的逆向思维能力,只有这样才能在有限的时间内分析问题的时候做到游刃有余。还一点是要注意微积分知识点之间的相互联系,比如连续、可导、微分之间的关系,以及驻点、极值点、最值点之间的关系等。关于微积分的复习,可以按照我总结的几句话为方向进行复习,这就是:   极限是基础 ( 是建立连续、导数的基础 )   连续是条线 ( 联系了导数与积分 )   导数是关键 ( 概念必考,导数的应用考计算 )   积分考计算 ( 广义积分判收敛、定积分求面积 )   线性代数这门课知识点连贯(所有知识点都是围绕着向量的相关性展开的),概念易理解(因为这些概念都可以通过简单的例子进行说明),技巧性差(不管怎么出题,方法都是固定的),题型有核心(我们可以将每个知识点的出题形式进行归纳总结,翻来覆去就这么几种题型),所以说比较容易得分。针对线性代数的特点,我们可以这样准备复习:首先要将线性代数的知识点进行条理化,可以参看下面列的方框图(此处省略):   线性代数从内容上看纵横交错,前后联系紧密,环环相扣,相互渗透,因此解题方法灵活多变,复习时应当不断地归纳总结,努力搞清内在联系,使所学知识融会贯通,接口与切入点多了,熟悉了,思路自然就开阔了。例如:设 A 是 m×n 矩阵, B 是 n×s 矩阵,且 AB = 0 ,那么用分块矩阵可知 B 的列向量都是齐次方程组 Ax = 0 的解,再根据基础解系的理论以及矩阵的秩与向量组秩的关系,可以有 r(B)≤n-r(A) 即 r(A) + r(B)≤n 进而可求矩阵 A 或 B 中的某些参数。又如,对于 n 阶行列式我们知道:若| A |= 0 ,则 Ax = 0 必有非零解,而 Ax = b 没有惟一解 ( 可能有无穷多解,也可能无解 ) ,而当| A | ≠0 时,可用克莱姆法则求 Ax = b 的惟一解;对于 n 个 n 维向量 α 1 , α2 , …αn 可以利用行列式 A 的数值是否为零| A |=| α1 α2 …αn |来判断向量组的线性相关性;矩阵 A 的秩 r(A) 是用 A 中非零子式的最高阶数来定义的,若 r(A) < r ,则 A 中 r 阶子式全为 0 。凡此种种,正是因为线性代数各知识点之间有着千丝万缕的联系,代数题的综合性与灵活性就较大,大家整理归纳时要注重串联、衔接与转换。应当搞清公式、定理成立的条件,不能张冠李戴,同时还应注重逻辑性以及语言的叙述表达应准确、简明。 最后应注意几个概念间矩阵运算,比如矩阵的逆、伴随、转置等,这些关系一般出现在计算矩阵方程中。   对于概率这门课,知识点分散,知识点相互间联系较少,但公式多(可以说,概率的考试就是公式应用的考试),所以做题基本无技巧,题型相对稳定,这部分是大家最容易稳拿分的。对于概率的复习,首先要理解公式,知道公式什么时候用,用在什么地方,怎么用。在随机事件部分重点掌握条件概率公式与乘法公式、全概与贝叶斯公式,尤其对于完备事件组的概念一定要好好把握。概率的考试重点在随机变量,这部分在考分中占有相当大的比重。在随即变量中,一定要对随机变量的独立性要着重关注,因为它是很多公式成立的前提基础,如 D(X + Y) = DX+DY , E(XY)=EXEY 等。还有一个需要注意的是随机变量的分布函数和密度函数,对于这两个函数一般不会出概念题,而会出问题求解题。所以大家一定要掌握它们最重要的性质:分布函数最重要的性质是极限性质,密度函数最重要的性质是归一性质,利用这些性质可以求得题干中的参数。对于考纲上规定的要掌握的 6 个常见随机变量,为方便记忆,可列表记忆:   {图片1显示}   总之,要加强综合解题能力的训练,力求在解题思路上有所突破。 MBA 试题与教科书上的习题的不同点在于,前者是在对基本概念、基本定理、基本方法充分理解的基础上的综合应用,有较大的灵活性,往往一个命题覆盖多个内容,涉及到概念、直观背景、推理和计算。许多考生往往难以适应,其突出感觉是没有思路,这正是考生考前准备应解决的突破口。考虑到数学学科的特点,要求考生自己将所有的解题思路都琢磨出来是十分困难的,这方面通常可以通过求教有经验的老师,参加有较好信誉的辅导班,或者阅读有关的辅导书解决。必须强调的是,辅导班或辅导书只是学习的一种手段,最终解决问题还要靠自己动手动脑。要充分利用一切学习机会,力求对常见的考题类型、题型、思路、特点有一个系统的把握,并在此基础上自己动手做一定数量的综合性练习题,温故而知新,不断提高自己的分析解题能力。    ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/18.txt ================================================  关于辅导班  【来源: 太奇MBA】   一、关于辅导班   为什么参加辅导班?   作为考研热潮的衍生物,考前辅导班一直备受关注,态度也是褒贬不一。但是和普研相比,MBA考前辅导班却显得格外重要。这是因为:   参加MBA入学考试的考生至少已工作3年,学过的知识已经忘了很多,或者已经过时。大部分考生是在职备考,没有充足的时间系统的复习,参加辅导班是迅速提高应试能力的必要手段;备考生中,很多人是非管理专业的学生,参加辅导班,在有经验的老师的指导下可迅速解惑。   如何选择辅导班?   辅导班的选择是很重要的,但由于目前社会上辅导班数目众多,鱼龙混杂,如果考友稍有不慎选择不当,不但造成财力的损失,还会影响正常的备考复习。对如何选择辅导班给出一点建议:   师资力量:辅导班的主体是老师,一个高水平的老师往往能深入浅出的讲解基础知识使学员迅速解惑;从不同的角度分析题型开拓学员思路,帮助学员顺利完成备考生活。   课程安排:有了好的老师,也要有系统合理的课程的安排。考生的基础和备考时间都是千差万别的,针对不同学员的特点进行课程设置也是对学员负责的表现之一。   办学经验:作为资深考前辅导班,它的经验也是学员们的宝贵财富。历年积累的强大学习资料库,对MBA联考走势的准确把握以及对各校招生情况的了解,对考生考入满意的学校是有极大的意义。   管理水平:一个辅导班的管理对于学员的学习也是很关键的。辅导班有义务给学员创造一种积极活跃的学习交流氛围,象太奇组织倡导的学习小组就能使学员更好的相互学习和鼓励。   口碑:目前的状况是广告满天飞,各种各样的承诺也是不觉于耳,多听听往年师兄师姐的亲身体会,对选到合适的辅导班是有更大的指导意义的。   如何发挥辅导班的作用?   选好辅导班是考生的第一步,目前MBA考前辅导班林立,使得许多人无所适从。但一条重要的参考标准是师资力量和管理服务水平。首先考生应明确这样的观念:辅导班不是万能的,它只是外部辅助条件,永远取代不了自身的努力;再就是备考期间注意做到以下几点:   提前准备。参加辅导班之前,最好能够完成一次全面的复习,尤其是数学和管理,这样才能有的放矢,带着问题去,才能达到最好的听课效果。每次上课之前,最好也能作好该课的课前预习。   不轻易缺课,认真听讲,作好笔记。辅导班的课程安排是非常紧凑的,每堂课的知识量很大,缺课之后是很难弥补的。上课尽量跟上进度,不懂的地方也要作好笔记,课后也好再思考或问老师、同学。   作好笔记整理,定期回顾。笔记的整理决不是重抄一遍,而是要根据老师的讲课脉络,理清知识架构;分析体会老师的解题思路,整理好典型例题的解题方法;并对疑难问题做进一步思考。   结合教材,作好练习。这也是非常重要的一环,可以帮助你进一步理解概念并提高实际动手能力。   如何上好MBA考试英语辅导班   众所周知,MBA联考科目中英语可谓是一只拦路虎。它既需要我们有背功,也要求我们要有足够的耐心去训练做题套路。因此,考生一般多选择英语基础、强化辅导班,一是通过听课可以督促自己学习,强压训练;二是有的考生觉得自己底子薄、基础差,希望早点动手准备,提高英语水平;三是还有部分考生出于跟风心理,认为别人都上辅导班,如果自己不上,总觉得心里没底。   尽管上辅导班的考生心态各异,但目标却是一致的:通过考试。为了能达到这一目标,我们有必要先了解辅导班的性质及作用。与常规英语课的教学不同,它是一种强化训练:时间短,信息量大,针对性强。通过上辅导班,考生可以明确考点与往年相比较大的变动:淡化语法,加强读写运用。同时,辅导老师还根据当年特点,有效的突出复习重点,训练针对性强的复习方法及做题技巧。   既然辅导班的重点在强化训练上,那么就要求广大考生在上辅导班之前做到有备而来,这样才能充分发挥听课的作用。   首先,储备一定的词汇量。考生在听课之前应量熟悉它们。这是关系上辅导班是否有良好效果的重要因素这一,否则边听课边背单词,不仅跟不上老师的进度,还会影响到自己的信心。当然这几千个单词在上课之前不一定要求全部会认会写,只要求能够盾到它就想起它的词义就可以了,对于那些重点的常考词,老师在课上会专门强调的。背单词是一个漫长的过程,绝非在一段时间就可以解决的,它应贯穿整个备考的始终。   其次,巩固基础语法知识,加强语法在析句方面的应用。在英语言中,单词就像棋子,而语法则如下棋规则。中国人从来就不畏语法考试,因为以前的英语考试中我们多是背规则,练规则,考规则。出题人不考类似“像棋中马应该怎么走“的规则问题,而是把整个棋局摆在考生面前,让考生自己按照规则走。它不仅要求考生对基础语法知识的全面掌握,更加注重语法在句子、文章中的运用。因此,考生在全面了解语法基础知识之后,重点应放在长、难句的结构分析上,长、难名既然是阅读理解的基础,也是英语泽汉考查的实质性内容。   如果你已经做好了上面几项准备工作,那么再来上辅导班无疑是有备而来,有的放矢了,这样听课的收获远远超过了那些毫无准备的考生。但是由于辅导班时间集中、强度大,致使许多考生容易产生松懈的情绪,或是不能坚持听课或是完全被动地跟随着老师走,把这段时间的学习完全交到了老师手中,这些作法都直接影响到听课的效果。此外,课后的巩固是备考中不容忽视的环节。听课期间由于上课占用大部分的时间与精力,因此总要注意少而精的原则:不要马上开始大量做试题,复习重点应放在听课笔记上。下课要趁热打铁,及时复习课堂笔记,体会老师上课的做题技巧,并且利用真题进行个别专项操练。例如,课上老师讲到阅读理解中选项的分类:主旨题与细节题及它们分别有哪些标志词,那么在课后复习中,我们就可以拿出一、两套真题单独分析选项,而无须多花时间去读原文、做题,这样复习训练,目的更明确,花费时间也不会太多,而又能达到事半功倍的效果。辅导书的选择  二、辅导书的选择:   参考书的选择——与其博览群书,不如精读一本   在MBA的参考书市场上,每科都有几本由名师编写的“经典”。这在有关MBA的网站上都可以看到,网站还有网上售书业务。参考书用这些通用版就可以。其实,只要是有一定名望的参考书,基本上都可以涵盖全部知识点,在所选题目、答案解析方面都可以满足要求。参考书的选择是复习前要做的重要准备工作,它不仅关系到复习进度的快慢和掌握的效率,更重要的是对你的解题思路的影响,因为在数学做题中,技巧很关键,在MBA考试中,应该在75分钟左右完成25道题目。问题求解14道题,每题3.5分钟,49分钟;充分性判断11道题,每题2.5分钟,27分钟。根据多年测算经验,如果不能保证2.5与3.5这个数学“黄金时间点”综合考试肯定完不成(其中包括了运算过程中“意外出错”的改正时间)。所以说“挤时间”成为重中之重,如何挤时间只能靠熟练的基本概念掌握与纯熟的解题技巧。所以大家在平时做题中,一定要养成良好的解题习惯,提高解题速度。下面就大家不同的数学基础层次来推荐不同的参考书目。   (1)基础较差,没学过数学,或者工龄很长,学过的知识大部分遗忘了的考生。对于这种零基础的情况,数学要分科复习,一科一科的突破。数学包括四科,即初等数学、线性代数、微积分和概率。对于初数,可参看高等教育出版社出的高中代数书,它分为上下册,大家可以参看里面的针对MBA考试的不等式和方程,绝对值和数列部分。这些部分讲的比较浅显易懂,适合大家建立初数基础。建议大家在看书的时候,一定要把课后的习题做一下,千万不要一看自己会做了就不去做了,切记眼高手低是复习的致命陷阱。线性代数和概率可以参看大学本科文科专业的通用教材,比如参看人大或高等教育出版社出的教材,重点要把向量(组)的线性关系看透,否则后面的齐次和非齐次线性方程组解的结构就不易理解。微积分大家可参看同济大学出版社出的高等数学上下册,这也是大学本科的通用教材,主要把上册内容好好看看,因为下册讲的都是多元函数,多元函数不是考试重点,其中把与MBA相关的知识点好好看看,对复习很有帮助。概率的复习难点在于古典概型,其中涉及概念一定要好好理解,复习重点和考试重点在于随机变量,这部分公式很多,所以大家在复习的时候一定要在理解的基础上把公式记熟练。   (2)基础一般的考生。这类考生占大多数,大家在复习的时候可参看机械工业出版社出的MBA 数学辅导书,这也是按照考试指导委员会制定的大纲进行编排的。这本书知识点归纳清晰,例题讲解详细,练习面面俱到,难度与真实考题难度基本一致,很适合有初步基础的考生提高成绩。这本书最后附有模拟题,大家在复习完后可以检验一下自己复习掌握的程度。当你把这本书看完后,你接下来可以看看奇迹230分这本书,这本书的习题综合性比较强,适合大家考前强化冲刺使用。这两本书大多数书店都有销售,这也是所有备考MBA必备的辅导书,因为每年的考题都能从其中找到出题的影子。   (3)基础很好,想取高分的考生。对于这类好生,既然复习的很扎实,掌握的很牢固,可以参看一下普研的参考书,普研的数学四与MBA考试接近,大家可以将与MBA相关的题做一下,这对数学复习是大有裨益的。但也没有必要追求太深太难的题目,MBA数学还是侧重对基础的考察。   总之大家在复习的时候一定要围绕一个原则:一定要始终以机工版教材为核心,因为这本教材为MBA指导委员会唯一指定的全国统编教材,在本书中都能够找到历年真题的“影子”,这本书的难度与考试难度相当吻合,且重点突出,思路清晰,例题典型,建议考生做2-3遍。大家在复习中要注意,关键在于如何用这些书。参考书不能贪多,我觉得,每科有一至两本即可。选定了这主要的一两本书后,就要充分利用,把书读透;如果时间充裕,看两三遍最好。每本书都有自己的体系,与其博览群书,不如精读一本。往年的考题是最好的复习资料,当你将知识点都复习完的时候,可以做做历年真题,从中可以把握命题思路和答案的组织方式。   但是,从许多考生经验来看,只复习这一套书还是远远不够的,恰当的选择其他的辅导书还是很有必要的。   2  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/19.txt ================================================   1.考生填报志愿采取网上填报方式,考生须在规定时间内登录北京教育考试院网站填报志愿,网址为www.jeea.cn/ 或gk.bbn.com.cn/ 。同时提供电话填报方式,考生可通过拨打声讯电话1606790填报志愿或查询志愿。   2.考生填报志愿,要严格按照《2006年全国普通高等学校在京招生专业目录》填写信息。   3.考生填报志愿时,宜先草拟一份志愿表,内容包括考生的考生号和要填报的院校代码及名称、专业代码及名称,以保证填报志愿的准确和填报过程的顺利。   4.考生在网上报名阶段设定的密码作为网上填报志愿的初始密码。在第一次填报志愿之前将开通系统供考生修改密码,考生必须修改密码才能进行志愿填报,考生需牢记修改后的密码,凭此密码进行第一次志愿填报、第二次志愿填报和各批次志愿补报。如考生忘记密码,须在系统开通的日期内携带本人身份证到本报名单位登记申请恢复密码。   5.在第一次志愿填报时同时采集考生特征,考生特征的主要内容为照顾对象,具备相关特征的考生须参加第一次填报。考生在选中相应选项后必须向报名单位提供相关证明材料方为有效。   6.第一次填报提前批、本科一批、本科二批、本科三批的志愿及艺术类高职录取院校的志愿,提前录取院校可选报两个志愿学校,第一批、第二批、第三批录取院校可在本批内各选报三个志愿学校,艺术类高职可选报两个志愿学校,每个志愿学校可选报五个专业。   7.第二次填报专科录取批次的志愿,可选报四个志愿学校, 每个志愿学校可选报五个专业。   8.今年继续实行公布批次未完成计划重新征集志愿再行录取的方式。在本科一批、本科二批、本科三批和专科批次的正式志愿录取结束后,如高等学校计划未完成,将公布未完成计划,重新征集考生志愿再行录取。   在每个批次的志愿补报期间,达到相应批次录取控制分数线且未被录取的考生可补报相应批次未完成招生计划的院校和专业志愿。录取期间各批次未完成计划的院校和专业信息请参照北京教育考试院网站或媒体宣传。   本科各批次补报志愿可选报三个志愿学校, 每个志愿学校可选报三个专业。专科批次补报志愿可选报四个志愿学校, 每个志愿学校可选报三个专业。   补报志愿在录取时按照“分数优先,从高分到低分,按志愿顺序”一次性向招生学校投档,由招生学校审查录取。   9.电话填报必须使用北京市固定电话操作,且务必使用音频电话。   10.志愿填报日程安排   5月 9日 8:00—5月12日 8:00   系统开通供考生修改密码   5月12日8:00—5月17日18:00   第一次志愿填报   7月31日8:00—8月 2日18:00   第二次志愿填报   预计7月14日(以录取期间公布的为准)   本科一批志愿补报   预计7月21日(以录取期间公布的为准)   本科二批志愿补报   预计7月27日(以录取期间公布的为准)   本科三批志愿补报   预计8月 7日(以录取期间公布的为准)   专科批次志愿补报   网上填报志愿步骤   通过浏览器登录www.bjeea.cn/ ,点击“网上报名”,然后点击“2006年北京市普通高等学校招生网上志愿填报”进入系统,或者直接登录gk.bbn.com.cn/ 进入系统;   点击“修改密码”修改自己的密码;   点击“提交志愿信息”,输入考生号、密码和校验码,点击“确定”进行登录进入志愿填报页;   有关考生填报考生特征;   填报院校志愿和专业志愿,在院校框中输入3位院校代码,在专业框中输入2位专业代码(输入代码后会显示相应院校名称和专业名称),并选报是否服从专业调剂和是否愿意走读;   点击“提交”完成志愿填报。   声讯电话填报流程   编辑:苏琳 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/10.txt ================================================   新华网深圳3月3日电(记者贾文军)全国拳击锦标赛3日在深圳市龙岗体育中心拉开战幕,在接下来的一周里,来自全国各地的200多名拳击健儿将在这里展开角逐。   本次锦标赛由国家体育总局拳击跆拳道运动管理中心主办。比赛设置了51公斤、57公斤、64公斤、75公斤和91公斤5个级别,全国各地共有45支代表队参赛。   此前,中国拳击队已经在深圳进行了3个月的冬训。国家体育总局拳击跆拳道运动管理中心副主任崔富国表示,要通过这次比赛来检验冬训的成果,也要根据比赛成绩为2008年北京奥运会选拔优秀人才。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/11.txt ================================================   《看今天》两会特别报道已经开始启动,两会和我们每个人的生活息息相关,让我们一同关注两会。您最想跟两会的代表委员说些什么?您有什么问题和建议想告诉他们?您可以拨打《看今天》的热线电话:010-51005100,也可以在搜狐网的两会专题上留言,《看今天》栏目组将搭起你和两会代表委员之间的桥梁。(注:以下问题主要面对北京网民,如果您是外地网友,请注明你所在的地域) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/12.txt ================================================   2006年2月25日北京,香港利苑饮食集团在京开办的第一家食府—北京利苑酒家,在位于王府井金宝街的金宝大厦内隆重开业,此次开业标志着香港利苑饮食集团首次将目光聚焦北京。   利苑酒家是近年来进驻北京历史最悠久的粤菜食府之一。自1973年在香港九龙开办第一家店以来, 利苑集团在饮食界已拚搏近30余年,旗下拥有13所酒家, 遍布香港、中国大陆、新加坡, 凭借着雄厚的实力, 各家店均屡获殊荣。1992年至2006年,新加坡利苑酒家连续24年荣获《Singapore Tatler》新加坡最佳食府之一;而香港利苑酒家则荣获《Hong Kong Tatler》2006年度香港最佳食府称号;2005年,利苑酒家被评为香港资本杰出行政品牌。   此次进驻北京,利苑在酒家的装潢与菜品烹制上煞费苦心。投资三千五百万元,特地邀请了的著名意大利裔设计师Hernan . Zanghellini为北京利苑进行设计,他曾经为香港多个著名的高级餐厅及会所提供设计。北京利苑囊括了中、西方传统与现代特色,充分满足顾客的各种需要。而独具利苑特色的16间贵宾厅房设有配餐间与洗手间,它们的独立设计也是十分精巧,既保证了菜品最大程度的鲜美又为宾客提供最便捷的服务。酒家的装饰也是匠心别具,每一个小小的饰物都是酒家费心竭力挑选、订做的。餐桌上每一盆花都是邀请香港著名插花大师,绿芷花艺公司(Green Finger)的陈庆让先生到京专程花费数天时间制作而成;酒家中每一件陈设都是费尽心思,四处搜罗精选而来;就连小小的餐具衬盘也是按照每一贵宾室不同的风格量身定做, 设计精美, 身价不斐。   此外,素有香港“饮食界少林寺”之称的利苑集团,在陈主席“先教做人,后教做事”的经营理念下,坚持以健康的原料、精湛的烹饪方法为顾客提供高贵、正宗的精美粤式菜品; 将食物最自然的颜色、最鲜美的味道搭配在一起,充分将食物最鲜美的一面展现在顾客面前,并不断对菜式进行创新,三十年来创出上千款菜式,将中国及世界各地食物的精华,融入传统粤菜之中,菜式千变万化,成为新派粤菜的佼佼者。北京利苑更是潜心研究“南菜北做”,坚持使用来自原产地的原料,保持食物最正宗的味道,使菜品既有传统粤菜的鲜美又更加符合北方顾客的口味;并且专程从香港、广州等老店调配经验丰富的优秀服务人员为北京店近200名员工进行培训;更是将高端科技运用到酒家经营当中,每个贵宾室均配有无线上网设施,最大限度地为客人提供方便,而点餐所用的电脑系统更是容纳了1万余种不同选择,满足每一位客人对菜品的特殊要求;尽力为顾客打造一个优雅、舒适的高品质的用餐空间。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/13.txt ================================================   留守人士自我安慰:在北京过春节的十理由   www.XINHUANET.com2006年02月01日 20:00:35来源:新华网   【字号:大 中 小】 【背景色 】 【留言】 【评论】   过年留守北京这个决定英明 在北京过年的十大理由   难道真的是“非副刊”前不久那期“有钱没钱咱都回家过年”造的孽吗?这几天,当汹涌人潮涌向首都国际机场、北京站、北京西站、北京南站、北京北站(请问北京还有别的站吗)时,我们感到了一丝恐慌。   一想到瘦小的我将于今晚被装进那个绿皮儿临时加车里并将颠簸14个小时,一种强烈的愿望纠缠了我:真想不走了,留在北京过年!   是的,如果你不回家过年,那你可能会变成一个不孝子,因为老爹老娘正盼着你常回家看看。但是,你已经没法回去了,那就别折磨自己了,春节到来前一天,“非副刊”推出十大理由,帮助留在北京过年的你做到心安理得。   理由一,省旅途劳顿。这些劳顿包括——半夜三更去火车站搏票的麻烦;和讨厌的同事赔笑脸以便说服人家替你值班的麻烦;坐完飞机坐火车、坐完火车坐汽车、坐完汽车坐牛车的麻烦。省去这些麻烦后,你只需猫在自己的小窝里,坐看窗外风生水起、风云变幻就可以了。   理由二,省钱。科技意味着花很多钱让事情变得简单,然而回家却意味着花很多钱让事情变得麻烦。我的同事苏三去西站的人潮人海中花了700多块钱买了一张高价硬卧票;我的领导花2000元买到一张去长沙的飞机票,他将有生以来第一次坐头等舱,因为售票员说,这是年前最后一张飞长沙的机票,你要不要;诚然,我的火车票只花了33块(我说过是加车),但这并不意味着我不需要为回家而肉痛,我有四个亲侄子三个亲外甥,我两个表嫂一个表姐也都赶在我回家前生了孩子。你知道,这年头,红包里不装个百八十块,根本拿不出手。   理由三,感受北京的交通畅通!你知道,这是你做梦都在企盼的情景啊。当百万雄师过大江的时候,江的这边立马清静了下来。所以,当百万外地人返乡过年的时候,整个北京城也会刷地清静下来。那时,北京有极为宽阔的马路,想想看,那么宽的路上只有你等少数几个或者几辆车在溜达,多气派啊。   理由四,睡觉。如果不回家,你完全可以关掉手机大睡七天没人干涉!   理由五,为了你的牵挂——你的花,你的鸟,你的猫,你的狗,甚至为了你厨房里的小强。如果回家过年,你会像我一样忍受与爱犬分别的痛苦,你厨房里的小强也会因为找不到充足的口粮饥饿而死。想给它们打个慰问电话吧,可人家又不会说话。如果在北京过年,就可以和它们长相厮守了。   理由六,为了小偷。当然,我不是指和小偷长相厮守,我指的是避免小偷在你回家过年的时候光顾你的小窝。即使你像我一样穷吧,想想看,小偷先生坐在你的马桶上,看着别人写给你的情书,吃着你积攒的零食,肯定会让你很不爽的。   理由七,为了你的健康。你不用被爹娘拽着给你大姑去拜年,也不用被同学拽去通宵搓麻,他们不知道你颈椎不好,医生说过汽车急刹车的话,别人没事,你的脖子就有可能断掉。你也不必被拉着去和N年不见的中学同学应酬,听人家吹牛你不爽,看人家带着漂亮的女友你不爽。   理由八,真正感受一把北京这个和你息息相关的城市。你知道,春节期间,北京大大小小的庙会很多的。老北京的民俗集中展示在你眼前(有关这项,请看B06-B09的庙会专版)。想想看,上午到商场积分凑返券,下午逛庙会看燕子李三、大刀王五们表演,时而来串糖葫芦,时而来坨棉花糖,很有味道呢。   理由九,省去离愁别绪。你知道这样说很不孝,但是你娘总是这样说:“不回来也罢了,回来后又走掉,娘心里头难受啊。”为了让娘少些离愁,干脆把路费钱省出来寄给你娘吧。   理由十,没有理由,因为你是北京人。如果你是北京人,干吗不舒舒坦坦地呆在北京呢?啥时候外出旅游不行啊,偏偏赶这个挤死人不偿命的春运高峰?!何况,北京也可以放鞭炮了,你还可以去京郊农家小院小住几天,你可以去延庆泡温泉,可以去密云滑雪……   最后,无论你因为哪种理由留在北京过年,你都是值得羡慕的。那些正在火车上颠簸的人,他们此刻所渴望的幸福,正是你现在所拥有的。所以,珍惜吧,兄弟。至于你对家的思念,他们会帮你带到的。 来源:华夏时报 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/14.txt ================================================   大学生小袁网上投简历求职,一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知,他们没有在广东设立分公司,也没有在广东进行招聘。警方提醒,这很可能是个骗局。   小袁是在一知名人才网站上发出电子简历的,令小袁意外的是,简历没投几天,就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他,公司现在正要   引进一批毕业生,年前就到岗培训,询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日,对方煞有介事地给小袁进行了电话招聘面试。三天后,小袁接到电话通知面试通过了,于1月22日到广东东莞体检、复试。   据小袁所知,这家半导体公司好像是在上海,而对方让去东莞复试,他有点纳闷。曹女士解释说,公司要在东莞设立分点,亟待一批相关专业的大学生加盟。随后,她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。   小袁动心了,1月17日他来到火车站,准备预订到东莞的车票。由于没有直达车,到广州的票也没有了,他只好又回到了学校。此时,冷静下来的小袁才感觉事情有点不对劲。随后,他上网搜索了这家公司的详细资料,发现只有上海总部在发布招聘启事,其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。   随后,小袁拨打了东莞110报警电话,当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生,被不法分子骗进传销窝点。   (来源:北京人才市场报) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/15.txt ================================================   讲述:我网上求职险遭名企骗局   http://www.sina.com.cn 2006年01月28日10:31   大学生小袁网上投简历求职,一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知,他们没有在广东设立分公司,也没有在广东进行招聘。警方提醒,这很可能是个骗局。   小袁是在一知名人才网站上发出电子简历的,令小袁意外的是,简历没投几天,就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他,公司现在正要   引进一批毕业生,年前就到岗培训,询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日,对方煞有介事地给小袁进行了电话招聘面试。三天后,小袁接到电话通知面试通过了,于1月22日到广东东莞体检、复试。   据小袁所知,这家半导体公司好像是在上海,而对方让去东莞复试,他有点纳闷。曹女士解释说,公司要在东莞设立分点,亟待一批相关专业的大学生加盟。随后,她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。   小袁动心了,1月17日他来到火车站,准备预订到东莞的车票。由于没有直达车,到广州的票也没有了,他只好又回到了学校。此时,冷静下来的小袁才感觉事情有点不对劲。随后,他上网搜索了这家公司的详细资料,发现只有上海总部在发布招聘启事,其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。   随后,小袁拨打了东莞110报警电话,当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生,被不法分子骗进传销窝点。(文/)   (来源:北京人才市场报) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/16.txt ================================================   大学生求职供求不匹配凸显   2006年,大学毕业生求职面临的最大障碍是供求不匹配。前程无忧最新发布的调查显示:月薪1000元已成为毕业生的求职底线;七成以上企业认为2005届毕业生在工作中表现平平,缺乏责任感、不愿吃苦和环境适应能力差成为毕业生的致命伤。   本次调查覆盖国内27个省市40所重点大学的5.8万名应届毕业生,访问涉及33大行业的5800家企业。在受访企业中,3515家计划今年再次招聘毕业生。其中3108家提出明确招聘人数,提供空缺职位6——6.5万个,比上年增加了三分之一。但大量招聘毕业生的企业并不多,计划招聘超过100人的企业只有148家,不足5%。   调查还发现,民营企业已成为就业机会的最大提供者,提供的收入水平已接近外资企业。1169家民营企业计划招聘2.8——3万名毕业生,超出了外企2.2——2.3万名的人才需求。   2006应届毕业生最愿意工作的地区是上海、北京和广东,其次为浙江省和江苏省。毕业生都把“经济发达、机会多、平均收入比较高”,作为选择工作地区的第一标准。   热门行业供求不对称   大学生求职中的供需矛盾,不只体现在数量和排行上,由于知识、能力不匹配,企业对能否招到合适的大学生表示“不乐观”。   调查显示,计划招聘毕业生最多的五大行业分别是:计算机、电子技术、快速消费品、生物制药和房地产,需要人数3.8——3.9万个。而毕业生愿意投身的前五大行业依次为:通讯电信、金融证券、计算机、互联网和贸易。   在通讯电信行业,招聘规模和收入增长都在收缩,人才需求数位列第13位。传统的固网运营人才比重已经偏高,新兴的3G、NGN、IPTV等方面的技术人才稀缺,企业更愿意招聘硕士和博士毕业生。   在计算机和电子技术行业,企业招聘毕业生主要从事技术研发和技术应用,对知识专业度要求很高。如Intel计划全国招聘500人,主要考虑硕士以上应届毕业生,本科生求职之路并不乐观。   金融证券人才一直是人才市场的热门。但金融证券行业目前主要急缺业务人员和高层次的经营管理人才,企业通常只招两三名应届毕业生作为人才储备。   而需求旺盛的快速消费品和批发零售行业,在毕业生愿意从事的行业排名中分列第15和第24位,生物制药行业列第19位,愿意在保险业工作的学生仅有721人,列倒数第三。   大量销售职位无人问津   销售是企业收入最为倚重的职能,可是满腔抱负的学生多数不愿从事。据说有保险公司到一家重点大学联系校园招聘会,就业指导办公室的老师直接劝企业放弃,没有毕业生愿意做保险业务代表。   调查发现,企业最缺销售人才,提供空缺职位2.96——3.03万个;其次是技术研发和应用8770——9480人;再次是生产制造和工程、工艺设计和市场广告等方面的人才。3515家计划招聘2006应届毕业生的企业中,2866家有意让毕业生做销售工作;148家招聘规模超过100人的企业,95%以上招聘毕业生担任营销职能。   但毕业生愿意从事的工作职能前五位分别是:技术研发、市场广告、人力资源管理、贸易采购和行政后勤,愿意从事销售的人数排在第八位。   调查分析,很多毕业生认为销售工作要看人脸色,刚毕业没有社会关系和销售渠道,往往累得半死还赚不到钱。也有学生认为,做销售技术含量低,不稳定也不体面。有意思的是,不少学生愿意从事外贸工作,认为它和一般销售不同,不仅收入可以较快提高,还可以接触到国际公司。   最为尴尬的可能要属生物制药行业。很多跨国企业都想招聘大学毕业生,培养和储备销售人才。但很多医学院的毕业生表示宁愿在小医院拿低工资,也不想到跨国公司任医药代表。   对此专家表示,没有比销售工作更能培养人的意志品质和沟通交往能力了。中国服务业需要一大批兼具专业知识和技能的营销人才,一个汽车高级销售经理的年薪约50万元,优秀的保险业务代表年薪可达百万元,但这样的人才往往有价无市。    计划招聘应届毕业生最多的前八大行业 应届毕业生愿意从事的前八大行业 毕业生收入预期(上)和企业给付水平(下)的比较     ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/17.txt ================================================   大学生小袁网上投简历求职,一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知,他们没有在广东设立分公司,也没有在广东进行招聘。警方提醒,这很可能是个骗局。   小袁是在一知名人才网站上发出电子简历的,令小袁意外的是,简历没投几天,就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他,公司现在正要   引进一批毕业生,年前就到岗培训,询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日,对方煞有介事地给小袁进行了电话招聘面试。三天后,小袁接到电话通知面试通过了,于1月22日到广东东莞体检、复试。   据小袁所知,这家半导体公司好像是在上海,而对方让去东莞复试,他有点纳闷。曹女士解释说,公司要在东莞设立分点,亟待一批相关专业的大学生加盟。随后,她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。   小袁动心了,1月17日他来到火车站,准备预订到东莞的车票。由于没有直达车,到广州的票也没有了,他只好又回到了学校。此时,冷静下来的小袁才感觉事情有点不对劲。随后,他上网搜索了这家公司的详细资料,发现只有上海总部在发布招聘启事,其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。   随后,小袁拨打了东莞110报警电话,当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生,被不法分子骗进传销窝点。   (来源:北京人才市场报) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/18.txt ================================================   大学生小袁网上投简历求职,一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知,他们没有在广东设立分公司,也没有在广东进行招聘。警方提醒,这很可能是个骗局。   小袁是在一知名人才网站上发出电子简历的,令小袁意外的是,简历没投几天,就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他,公司现在正要   引进一批毕业生,年前就到岗培训,询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日,对方煞有介事地给小袁进行了电话招聘面试。三天后,小袁接到电话通知面试通过了,于1月22日到广东东莞体检、复试。   据小袁所知,这家半导体公司好像是在上海,而对方让去东莞复试,他有点纳闷。曹女士解释说,公司要在东莞设立分点,亟待一批相关专业的大学生加盟。随后,她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。   小袁动心了,1月17日他来到火车站,准备预订到东莞的车票。由于没有直达车,到广州的票也没有了,他只好又回到了学校。此时,冷静下来的小袁才感觉事情有点不对劲。随后,他上网搜索了这家公司的详细资料,发现只有上海总部在发布招聘启事,其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。   随后,小袁拨打了东莞110报警电话,当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生,被不法分子骗进传销窝点。   (来源:北京人才市场报) ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/19.txt ================================================   20位网友领到免费回家机票   自从Qunar与搜狐、天益游网站合办“夺宝奇兵”的活动以来,已经有好多人中得免费机票,其中有二十位已经定好回家的机票,时间就在临近春节之前。为了让大家能够轻松愉快的领到机票,Qunar和天益游决定把领票地点放在咖啡店,让大家既可领到免费机票,又可以享受到咖啡的浓香,让活动至始至终有个完美的诠释。   上周五晚上六点多钟,中奖人陆陆续续来到领奖现场,在Qunar几个工作人员的组织下,由去哪儿旅游搜索引擎合伙人庄臣超和天益游总经理谭治国把机票发到每位中奖人手中。先来的惊诧,后来的惊讶,大家都没想到有这么多中得大奖的人可以拿到年前的免费机票。其中有好几位家离北京都很远,家在贵阳、兰州、重庆、广州的都有,每次都挺害怕过年,而今年他们不再为此而担心了。当大家听到还有到机场的免费接送时,不由得发出欢乐的笑声。   活动很快结束了,大家留下合影,也回去了。对某些人来说这一刻已经在记忆中消失,而对于某些人来说,这一刻刻骨铭心! ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/10.txt ================================================    从今天的影响来看,2004年创立的"数字炼金馆"无疑是"数独"兴起历程中一个标志性事件,尽管它当初不过是数独天才们互相诘难的产物。  随着不断有更多的数独爱好者向他们提问,"数字炼金馆"认为有必要精炼"数独"题的篇目,以原创的经典题目让更多数独迷得到打开数字迷宫的快乐,而不是被垃圾题目弄得晕头转向。  现在,68%的数独迷只做《疯狂数独》的题目,因为,它意味着更多的原创、更多的经典、更多的快乐、更多的疯狂。  数独(Sudoku)是目前风靡全球的一种数字游戏,其概念源自两百年前盲眼的瑞士数学家欧拉发明的"拉丁方格"的游戏。但数独一词来自日文(すうどく),是由"数"和"独"两个词组成,这一游戏完全适合当今这个以游戏为乐事的时代,而且数独游戏无需翻译就能跨越一切国界。  这种游戏令很多人为之痴狂,而且同步席卷了整个世界。英国几乎所有的报纸都刊登了数独游戏,甚至还进了黄金时间的电视节目里;从澳大利亚到克罗地亚,从法国到美国,各家报纸杂志纷纷刊登这种填数游戏,日本人每月购买的数独杂志超过60万份,《纽约时报》甚至考虑将数独与其备受推崇的纵横字谜一同纳入在周日刊上;网络上的数独游戏数不胜数,人们甚至可以将它下载到手机上。有人预言,数独可能会重演20世纪80年代全球人手一个"魔方"的盛况。  人们在推究数独热的原因时,首先想到的是很多国家的人本来就喜爱玩拼图游戏;再者,数字具有神奇的属性,数的性质让无数数学大师痴迷,很多举世闻名的数学难题都是数论问题。  当然,数独的流行还有深层次的原因,在3D游戏、网游等各种高级游戏越来越华丽、玩法越来越复杂的今天,如同其他很多越来越复杂的新事物一样,新游戏已经丧失了简单游戏的很多优点。然而,数独由于规则简单,却变化无穷,在推敲之中完全不必用到数学计算,只需运用逻辑推理能力,所以受到老少男女的喜爱。  数独也许算不上刺激,但非常有趣,似乎思路被卡住了,却突然之间推敲出某个数字,从而成功地解出答案,由此而生的满足感棒极了。这是一个从混乱中理出头绪的游戏,能够在不确定的生活里,随时拥有如此简单且立即的"惊喜",总是令人心情愉快的。  在中国,《疯狂数独》作为数字炼金馆的原创经典,引领了数独爱好者的疯狂,数独在中国即将掀起一阵数字游戏的狂风,迅速中小学生手中风靡起来,随之成为众多青少年和都市白领为之痴迷的智力、娱乐游戏。人手一册《疯狂数独》,考验和你智力和能力,挑战数独的极限境界。  出版社:中国三峡出版社  出版时间:2005年10月  定价:20元   共找到20,159,004 个相关网页. ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/11.txt ================================================    由文物出版社出版的《中国大史记·传世邮币珍藏》26日在故宫太庙举行了首发式。据出版方介绍,这套图书创造了中国出版界的六个第一,一问世便吸引了足够的眼球。  据介绍,《中国大史记·传世邮币珍藏》共收藏了100枚中国古代钱币珍品和722枚邮票真品,根据不同历史朝代的更替,分为八卷。每卷 图书除收录相对应时期的邮票与古币外,还设有“历史故事”、“中国大事记”、“世界大事记”、“历史小百科”四大文字版块,使五千年中华历史风云更加立体、深入地呈现在读者面前。这样厚重的安排使得本书创造了多项中国出版史上的六个第一,一出世而惊四座,成为今年出版界最引人瞩目的图书之一。  这六项第一是:  ——最全,是第一部不断代的以中国古钱币和邮票实物佐证历史的大全;  ——最多,收藏的古钱币和邮票珍品总数多达800多枚,任何其他同类图书都难望其项背;  ——最早,古代钱币从4000多年前我国最早的原始货币“贝币”开始,到骨贝、“蚁鼻钱”、秦半两、“一化”、刀币等珍稀古币一路沿承,直至清朝最后一枚方孔圆钱——宣统通宝,邮票则包括中国1888年出品的第二枚邮票“小龙票”;    ——材质最丰富,除金币外的所有钱币材质,如天然贝、骨、铜、铁、铅锡、银、镍均有收藏;  ——最珍稀,如远古的贝币、刀币、布币,中国第二枚邮票“小龙票”、数十枚“文革”时期邮票和老纪特票等;  ——最少,全国仅发行2000册,决不再版,也不可能再版。  《中国大史记》是翰墨林公司酝酿、筹备多年、积钱币学专家、历史学家、设计大师、策划大师之力,经过三年准备、一年制作之功所得。书中收录的所有钱币和邮票均经相关权威部门鉴定为真品。  当目睹这些锈迹斑驳、饱经历史沧桑的古钱币,中国5000年来的文明进程、社会兴衰、王朝更迭乃至经济的起落跃然于眼前。从秦皇汉武到唐宗宋祖,从春秋战国到隋唐明清,直至光绪民国。历史不再是尘封的典籍,从此鲜活生动起来;当七百余枚邮票成为中国上下五千年历史的形象载体,就获得了前所未有的冲击力,讲述着中国数千年的历史,展示着中华灿烂文化,直观地表现了中华文明前进的脚步。  正是由于这六个出版界第一,该书策划人饶声勇在首发式上自豪地说,文明的脉搏、文化的回声、文物的绝唱,薪火相传,百世一系,尽汇《中国大史记》。  原人大常会副委员长布赫,文化部副部长郑欣淼,国家文物局博物馆专家组组长、中国博物馆学会理事长、国际博协中国国家委员会主席、北京市人民政府专家顾问团顾问吕济民,中华全国集邮联合会秘书长盛名环,收藏协会副会长杜耀西等出席了北京秀世传播机构承办的首发式,全国政协副主席张克辉为首发式撰写了贺信。 共找到985,015 个相关网页. ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/14.txt ================================================ 《大长今》调查 1、你看《大长今》吗? 不看 赶上就看 正在追着看 看过n遍 2、《大长今》吸引你的是 情节曲折,悬念迭起 俊男靓女美食 爱情亲情友情感人,台词经典 励志向上,善和美打动人心 3、你认为日韩剧成功在哪里 细节取胜,平淡中见真情 情节设计合理,戏剧性强 人物立体丰满,贴近生活,比较真实 演员表演分寸适当,不夸张 包含很多时尚元素,画面唯美 var NewWin = null; function WinOpen(url) {if(!NewWin || NewWin.closed) {NewWin=LoadWin(url,'win_poll',418,300);}else{NewWin.focus();}} function LoadWin(url, name, width, height) {var str='scrollbars,resizable,location,height='+height+',innerHeight='+height+',width='+width+',innerWidth='+width; if(window.screen) {var ah=screen.availHeight-30; var aw=screen.availWidth-10; var xc=(aw-width)/2; var yc=(ah-height)/2; str +=',left='+xc+',screenX='+xc; str +=',top='+yc+',screenY='+yc;} return window.open(url,name,str); }搜狗(www.sogou.com)搜索:“人物”,共找到28,456,427 个相关网页. ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/15.txt ================================================ 【哀乐中年】 1949年文华影业公司出品 哀乐中年     原著:张爱玲编剧:桑弧导演:桑弧片长:100分钟色彩:黑白主演:石  挥  饰  陈绍常      韩  非  饰  陈建中      李浣青  饰  经理女儿      朱嘉琛  饰  敏华 【剧情简介】     陈绍常创办小学多年,自任校长。其妻英年早逝,留下三个孩子赖他照料。别人每每劝他续弦,但他目睹挚友刘之权的女儿敏华备受后母虐待之苦,便打消了续娶之念。后来,刘之权全家迁居外地,多年音讯杳然。某日,敏华突然前来叩见,谋求职业。绍常同情她的遭遇,便留她在校任教。此时,绍常的孩子也都成人。长子建中在一家银行供职,与银行经理的女儿结婚,社会地位也日益提高。他力劝绍常退休,在家颐养晚年。绍常被勉强说服而向学校提出辞呈,并推荐敏华继任校长。建中为了表示支持,恳请岳父捐款给学校并担任学校的董事长。绍常赋闲在家,孩子们成家后,与他往来日疏。只有敏华,为了工作常来和他谈心,她深知他的事业心很强,生命力也还旺盛,应该工作。经敏华热情、诚挚的邀请,绍常又回到学校。不久,学校里一个同事托他向敏华求婚,他忽然感到一种异样的心情,开始觉察到自己已爱上敏华。同时,他发现敏华也一直爱着他。于是,他告诉建中,自己准备结婚,却遭到建中与家里所有人的坚决反对。建中并宣称,他代表岳父以学校董事长的名义,将敏华撤职。绍常为维护他和敏华的感情,也毅然离开学校。他俩结婚后,共同创办另一所小学。在新学校开学之日,也正是敏华的婴儿呱呱坠地之时,他们都感到“生命无处不在”的喜悦。上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] 下一页  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/16.txt ================================================ 【倾城之恋】     1984年香港邵氏公司出品 倾城之恋       到处都是传奇,可不见得有这么圆满的收场。胡琴咿咿呀呀拉着,在万盏灯火的夜晚,拉过来又拉过去,说不尽的苍凉的故事——不问也罢!---【倾城之恋】 出品:邵逸夫原著:张爱玲改编:蓬草美术:区丁平摄影:何东尼作曲:林敏怡作词:林敏聪演唱:汪明荃片长:95min语言:粤语/普通话外文别名:Love in a FallenCity(1984)副导演:关锦鹏、曹建南导演:许鞍华主演:周润发  饰  范柳原      缪骞人  饰  白流苏获奖:第25届金马奖最佳服装设计       第4届香港电影金像奖最佳音乐 【剧情简介】       本片改编自张爱玲的同名原著小说,是一部具有相当怀旧色彩的爱情故事,讲述一个城市(香港)的陷落,是为了成全范柳原(周润发)和白流苏(缪骞人)的爱情。导演许鞍华捕捉到了男女之间那种似假还真的微妙感情,但对白有所拘紧,局限在原著小说中,有欠挥洒自如。本片的情节发展为前后二部分,前半部描写离婚多年的白流苏在上海的娘家饱爱兄嫂的讽刺欺凌,后半部白流苏到了香港,跟风流浪子周润发展开了拉锯式的爱情。缪演得相当敏感而细腻,把一个不错的上海女子塑造得相当有味道,而周也卖弄了他的俊雅潇洒。幸而导演掌握了对白独有的尖刻嘲讽,重现了香港四十年代的风情。上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] 下一页  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/17.txt ================================================ 【红玫瑰与白玫瑰】 1994年第一机构有限公司出品 红玫瑰白玫瑰       也许每一个男子全都有过这样的两个女人,至少两个.娶了红玫瑰,久而久之,红的变了墙上的一抹蚊子血,白的还是“床前明月光”;娶了白玫瑰,白的便是衣服上的一粒饭粘子,红的却是心口上的一颗朱砂痣。                                    --【红玫瑰与白玫瑰】 原著:    张爱玲编剧:    刘恒林 亦华导演:    关锦鹏摄影:    杜可风美术指导:朴若木色彩:    彩色片长:    110min分级:    芬兰/K-16语言:    粤语外文别名:Red Rose White Rose(1994)主演:    赵文宣  饰  佟振保          陈  冲  饰  王娇蕊          叶玉卿  饰  孟烟郦获奖:   台湾电影金马奖最佳女主角、最佳剧本、最佳美术设计、最佳造型设计、最佳电影音乐 【剧情简介】      振保的生命里就有两个女人,他说一个是他的白玫瑰,一个是他的红玫瑰。一个是圣洁的妻,一个是热烈的情妇……留洋回来的振保(赵文瑄饰)在一家外商公司谋了个高职。为了交通方便,他租了老同学王士洪的屋子。振保留学期间,有一个叫玫瑰的初恋情人。他曾因拒绝过玫瑰的求欢而获取了“柳下惠”的好名声。王士洪有一位风情万种的太太,她总令振保想入非非。有一次,士洪去新加坡做生意了,经过几番灵与肉的斗争,在一个乍暖还寒的雨日,振保被这位叫娇蕊(陈冲饰)的太太“囚住”了。令振保所料不及的是娇蕊这次是付出了真爱的。当她提出把真相告诉了王士洪时,振保病倒了。在病房,振保把真实的一面告诉了娇蕊——他不想为此情而承受太多责难。娇蕊收拾她纷乱的泪珠,出奇的冷静起来,从此走出了他的生命。  在母亲撮合下,振保带着点悲凉的牺牲感,娶了身材单薄、静如止水的孟烟鹂(叶玉卿饰)。新娘给人的感觉只是笼统的白净,她无法唤起振保的性欲。振保开始在外边嫖妓。可是有一天,他竟发现了他的阴影里没有任何光泽的白玫瑰烟鹂,居然和一个形象猬狎的裁缝关系暧昧。从此,振保在外边公开玩女人,一味地放浪形骸起来。有一天,他在公共汽车上巧遇了他生命中的“红玫瑰”娇蕊,她已是一种中年人的俗艳了。岁月无情,花开花落,在泪光中,振保的红玫瑰与白玫瑰已是一种现实中的幻影。旧日的善良一点一点地逼近振保。回到家,在一番歇斯底里的发作后,振保又重新变成了一个好人。 上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] 下一页  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/18.txt ================================================ 【半生缘】 1997年香港东方影业公司出品 半生缘     他一旦想起曼桢,就觉得他从来也没有停止想念她过。就是自己以为已经忘记她的时候,她也还是在那里的,在他一切思想的背后。                                                原著:张爱玲编剧:陈健忠色彩:彩色片长:125min语言:普通话外文别名:Eighteen Springs(1997)    Half Life Fate(1997)导演:许鞍华主演:吴倩莲  饰  顾曼桢      黎  明  饰  沈世均      黄  磊  饰  许叔惠      吴辰君  饰  石翠芝      梅艳芳  饰  顾曼璐      葛  优  饰   祝鸿才      王志文  饰   张豫槿获奖:1998年香港电影协会最佳女主角奖      1998年香港电影金像最佳女配角奖 【剧情简介】    30年代的上海。世钧和曼桢是同一工厂做工的恋人。曼桢早年丧父,家庭生活靠姐姐曼璐当舞女维持,后来曼璐又当了妓女,最终嫁给了有妇之夫祝鸿才。为了保全自已的地位,不能生育的曼璐以一种怨毒的心态与其夫合谋,令祝强奸了曼桢。曼桢为姐姐、姐夫生下一子,葬送了自已的恋情。姐姐死后,她也嫁给了祝鸿才。多年后,曼桢与世钧重逢,两人发现,前情虽在,后缘难续。 上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] 下一页  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/19.txt ================================================ 《金锁记》 金锁记    根据张爱玲同名小说改编,“张爱玲名著中的名著”,继《大宅门》《橘子红了》之后又一部唯美、豪华的家族大戏。清末民初,小镇上天真烂漫的少女曹七巧(刘欣饰)和京城大户姜家的三少爷季泽(邵峰饰)一见钟情,可七巧的哥哥曹大年(刘永生饰)贪图钱财要把妹妹嫁给患有软骨病的老二钟泽(气壳饰),七巧为了接近季泽,答应这门婚事。失望至极的季泽在仲泽的婚宴上喝得酩酊大醉,令七巧心痛欲裂。此后,季泽越来越沉沦,常常夜宿妓院,七巧冒险到妓院劝阻,与酒醉的季泽同居了一晚,并因此怀孕,生下一子,由此招致众人的诸多非议。仲泽为保护妻子,临终时,坚定地声称自己是这孩子的亲生父亲,姜老太太(奚美娟饰)亦为维护自家的名声,痛斥众人对七巧的攻击。老大伯泽(程前饰)夫妇为了倾吞家产,利用七巧对季泽的感情,设下一个个圈套,造成七巧和季泽误会重重,使得她们本来纯洁的情感在金钱和岁月的摧残下渐渐消逝。于是七巧的人格开始扭曲,性情变得冷酷,她甚至亲手毁掉了儿女的婚姻和幸福,变成一个刻薄自私、终日靠鸦片麻痹灵魂的女人。 上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] 下一页  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/10.txt ================================================   本报北京5月9日电 董宾、高立英报道:北空某导弹团今天传出喜讯,营参谋长谭正提出的兵器改进方案,使困扰该团和兵器设计厂家三载的兵器重大隐患迎刃而解,赢得了官兵和有关专家的赞扬。   几年前,该团列装新型防空导弹,在检验性实弹打靶中,几次出现故障,影响了该新型武器系统战斗力的发挥。为彻底查找兵器问题隐患,有关兵器研发厂家多次派专家组进行伴随保障和跟踪观察。然而,由于故障症结难被察觉,问题始终久拖未决。   在该团前不久的实弹演练时,营参谋长谭正在调试兵器参数过程中,敏锐地察觉到这一问题再次出现。经过分析论证,他果断推定:战车某项计算机程序编排不当,是造成系统作战程序相互冲突和影响的主要原因。为此,他大胆提出了改进方案。有关专家对近百样程序进行抽样检测后,肯定了他的看法。针对他的建议,该团随后采取了应急措施,清除了故障隐患,打出了全面列装后的“满堂红”,长期困扰兵器故障终于得以解决。   看似偶然却艰辛。据了解,为彻底查找出武器系统隐患,谭正经过大量实践,对兵器性能了然于心,记下了几大本操作心得,先后对几十种可能的原因逐一进行推测、判断和排除,对上万组计算机数据进行统计、采样、筛选和分析,最终使问题顺利得以解决。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/11.txt ================================================   张连军 熊言春 本报特约通讯员 韩光 张旭航   【主人公小传】耿大勇,沈阳军区某装甲团四连连长。任连长以来,他带领连队多次完成新装备试训任务,先后荣立一等功一次,二等功一次,三等功两次。去年,他被沈阳军区树为“优秀指挥员”。   精通我国某新型坦克三大专业;对百余项常用技术性能参数和百余个常用部件“一口清”;百余种常见故障都能手到病除;创造了该型坦克实装操作的多项第一……沈阳军区某装甲团四连连长耿大勇,以顽强的拼搏精神,创造了一个又一个佳绩。这位貌不惊人的中尉军官,身上究竟蕴藏着怎样的能量?“千方百计地让新装备尽早发挥出最大效能,这是我责无旁贷的使命,也是我战胜一切困难的力量源泉。”耿大勇自豪地说。   勇担重任——不负众望练精兵   深夜,某陌生地域,“红”、“蓝”两军狭路相逢,展开殊死搏杀。战斗陷入胶着状态时,一路奇兵从“天”而降,以雷霆万钧之势直插“蓝军”腹地,一举端掉了“蓝军”指挥所。   “陆战之王”果然厉害!演练结束后,导演部的指挥和参谋人员对连长耿大勇倍加赞赏。   2004年7月,时任某装甲团八连连长的耿大勇蜜月仅仅过了7天就离开新婚的妻子,心急火燎地赶回部队。因为他听说部队刚刚列装了某新型坦克,新装备训练即将拉开帷幕。   该型坦克是全军首次列装,谁来当新型坦克连连长?师团党委研究决定:谁有本事谁登台,连长人选由比武打擂产生。   理论考核、实装操作。在一双双眼睛的注视下,功底扎实的耿大勇一路过关斩将,在20多名候选人中脱颖而出,被任命为新坦克连的第一任连长。   没有教材,他带领官兵从最基本的知识学起,先从长达2600多页的说明书开始研究。仅一个月时间,他就掌握了新坦克的部件构造、工作原理、操作规程等基础知识,并向团领导建言,请设计监造该型坦克的专家来连队现场教学。   27位专家住进了团队,耿大勇白天请专家授课,晚上带着全连官兵挑灯夜战消化吸收。他们谦虚好学的作风深深感染了专家,原计划只有半个月的专家指导活动,一直持续了二十几天。期间,耿大勇将专家讲课的录像资料、文字资料整理后刻入26张光盘,做成了新型坦克训练的辅导教材。   3个月后,他通过专家授课、对照说明书与实车摸索,在没有训练教材的情况下,达到对新装备构造、原理、性能的“一口清”,成为全连问不倒、专家考不住的“多面手”。师团两级常委学习新装备,耿大勇首当其冲成为教练员;坦克出了故障,他又成了维修员。   勇于探路——敢为人先铸辉煌   2004年10月,师受领了参加军区组织的实兵演习任务。耿大勇主动请缨:“新型坦克是我军陆地作战的主战装备,如不能尽早通过实兵演习将其练实练精,怎能在未来战场上克敌制胜?”   铁路输送、千里机动、百公里奔袭,列装仅3个月的新装备全程参加实兵演练,无一掉队,充分展示了优异性能。   “新型坦克不能跟在后面跑龙套,必须成为勇闯敌阵的尖刀利刃。”为了在恶劣自然条件下检验新型坦克的战斗性能,让新装备真正形成战斗力,耿大勇在实弹演习中再次请求当尖刀连。   炮弹运过来了,这是耿大勇第一次见到新型坦克的实弹。启封炮管、校正火炮,战斗发起前的两个小时转瞬即逝,而按操作规程,实弹射击前还应进行实弹校炮。然而此时,出发命令已经下达。   耿大勇拉开坚持要求实弹校炮的专家,坚定地钻入铁甲战车,承担起打第一炮的重任。   “轰!”高速前进的坦克怒吼着打出了第一炮。这是该型坦克列装后打出的第一炮,高速出膛的穿甲弹准确击中了远距离靶标。   首发命中!演习场沸腾了,到场观摩的坦克设计专家啧啧称奇,现场指挥的军区首长交口称赞。   军区导演部经评定后得出结论,该型坦克列装3个月已初步形成战斗力。耿大勇用他敢为天下先的果敢精神、时不我待的危机意识,在我军某新型坦克的发展史上写下了浓重的一笔。   在平时训练中,耿大勇严格要求,大胆尝试。压制观瞄系统仪器昂贵,一块小小的热成像仪接收玻璃就4万多元。有的同志提出,有关训练课目风险太大,还是不要训为好。耿大勇却认为,决不能用消极保安全来降低训练标准。在制定出详实训练和警戒预案后,他第一个上车进行训练。结果全连无一漏训,全部达到优秀标准。   勇于创新——实现装备新跨越   初冬的科尔沁草原,滴水成冰。耿大勇率新型坦克连在营编成内千里奔袭,直插敌阵。突然,“蓝军”对我实施大功率电子干扰,友邻连队与指挥所失去联系,若失去友邻支援孤军奋战,战斗很可能会以失败告终。   危急关头,耿大勇急中生智,他利用简易记号通知友邻:“收缩队形,向我靠拢!”而后,他引导全营继续发起冲击。   “战斗”胜利后,导演部对耿大勇灵活处置“敌”情赢得战斗胜利的举措大为赞赏。但耿大勇深知,某新型坦克毕竟只是少量列装,实现新老装备的完美结合,才能真正推动战斗力跨越式发展。   从此,耿大勇开始了新一轮的刻苦攻关。整整两个月,他把自己“泡”在各种资料里,啃下了《装甲战》、《坦克作战理论》等许多大部头的著作,并对两代主战坦克的战技术性能进行定量分析,总结出“新装备靠前观察定位、射击诸元传老装备”等10余种战法,有效地提升了部队整体作战能力。   高素质催生战斗力。在耿大勇的建议下,前年10月份连队建成全师规模最大的连队网络学习室,每周拿出两个晚上组织官兵学习培训,每月组织一次考核比武,现在连队干部全部通过国家计算机二级考试,战士人人都能独立制作多媒体课件。连队还开展了“一专多能”训练,连队整体作战能力显著提升,全连行进间对固定目标射击,取得114发炮弹命中107发的好成绩。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/12.txt ================================================   周维华 田宁 本报特约通讯员 侯国荣   4月16日凌晨,一阵急促的报警铃声骤然响起。刚刚在上级组织的军事训练考核中夺得桂冠、被誉为“陆地铁拳”的兰州军区某装甲团,组织千人百车挺进腾格里沙漠腹地,拉开了综合演练的帷幕。   紧急出动风驰电掣   [演练实录]作战时间4月16日凌晨4时50分。上级命令装甲团务必于当日13时前到达预定作战地域。   5时13分。团长张永明通过无线电台下达命令:“迅速进入一级战备!”顷刻之间,寂静的营区就像开足马达的机器高速运转起来,各种车辆在短短几分钟内开到了指定位置。“前沿攻击群准备完毕!”、“纵深攻击群准备完毕!”通信、工兵、防化、侦察等分队打破建制,按战斗要素迅速补充到各攻击群(队),后装保障群正在紧张地为各作战群(队)补充弹药、油料、器材等。   “向作战地域开进!”5时18分,团长一声令下,上百辆坦克、步兵战车排成三条长龙飞奔作战地域。   [相关链接]几年前,装甲团进行紧急拉动演练,全团集合就用了50多分钟。今年,该团从首长、机关到营连分队,都制定了一整套紧急出动、战备等级转换、抢险救灾等战备行动预案,并坚持不定期组织实兵、实装拉动演练。在此基础上,团里研制了一批便携式野战箱、柜,实现了战备器材装箱化、弹药补给精确化、紧急出动程序化,使部队远程机动能力明显提高。   网上鏖战虚拟对抗   [演练实录]作战时间4月16日6时许。突然,信息传输员报告:“团指挥系统受到‘敌方’破坏干扰,通信指挥中断。”   “立即启动信息化作战单元指挥平台,对‘敌’干扰雷达、破袭分队进行搜索,实施电磁压制和火力打击。”无线电台传来“红军”指挥员沉着冷静的命令。很快,“红军”就将“蓝军”目标逐一锁定。“红军”信息化作战单元指挥屏幕上显示:“敌”一个加强坦克连正借助强电子干扰和烟雾遮障快速穿插,企图利用正面火力突袭的间隙,对“红军”指挥所实施偷袭。   面对“蓝军”的电磁干扰和突然袭击,“红军”沉着应战,利用“蓝军”电磁压制的间隙,巧妙地通过自动化作战指挥局域网源源不断地将敌情通报、作战命令传输到演练一线。   [相关链接]面对新军事变革的挑战,装甲团确立了“以现有装备为平台,以无线数据网为载体,以作战指挥流程为主线,以指挥控制为重点”的信息化建设总体规划,构建起团、营、连、排、班(车)五位一体的信息化作战模块,实现了团指挥网络一体化。   铁拳突击攻如猛虎   [演练实录]作战时间4月17日凌晨3时许,牛首山某山谷。“嗖,嗖,嗖!”“红军”数枚车载导弹喷射出橘黄色的火舌,呼啸着扑向“蓝军”阵地,对进攻之“敌”进行了猛烈打击。   随着战场态势的变化。各作战群(队)长下达了火力打击的命令。“轰!轰!轰!”榴弹炮、坦克炮、车载导弹大显神威,各种火力呼啸着向“敌”目标飞去……   铁拳突击,攻如猛虎。一时间,一发发愤怒的炮弹砸在“蓝军”阵地上,“蓝军”的防线开始土崩瓦解。“红军”一举攻克“蓝军”阵地。   随着3发绿色信号弹升空,演练落下帷幕。此刻,“陆地铁拳”的旗帜高高飘扬在“蓝军”6号高地上。   [相关链接]这次综合演练,装甲团整建制挺进腾格里沙漠和高山峡谷等复杂地域,进行了实兵实装对抗演练。他们采取全要素之间练协同、模块之间练集成的方法,探索模块整合训练的具体内容、方法手段,探索实战背景下的作战编组、指挥模式、基本战法等,实现了单一作战模块内各个作战要素的有机整合。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/13.txt ================================================   本报特约通讯员 刘一代 本报特约记者 王永孝   阳春时节,记者来到第二炮兵指挥学院作战实验室,浓浓的信息化气息扑面而来。作战实验室主任甄明安告诉记者:“我们的目标是‘出了实验室,就能上战场’,如今已有近2000名学员在这里接受过对抗模拟演练。”   “模拟战争”学打仗   未来战场是什么样子?这是军事专家和各级指挥员共同关注和深入研究的一个重要问题。   战争年代,可以在战争中学会打仗,而和平时期,可以通过“模拟战争”学打仗。那么,“模拟战争”如何实现呢?   战斗精神和技能的培育,离不开战场环境的熏陶。只有把官兵投入到逼真的“战场”环境当中,才能在“实战”中锤炼出过硬的战斗胆识和技能。   解决这些严峻的现实问题,都离不开一个逼真的“战场”!然而,要建设一个这样的平台又谈何容易!对于素有“百人一杆枪”之称的战略导弹部队来说,开展实战背景下的导弹发射训练,所需的导弹武器装备、协同要素、操作号手相对较多,设置战场环境,简直困难重重。   打造适应未来战争需要高素质人才的紧迫感牵动着学院的上上下下。院长李体林亲自挂帅,跑机关、下部队,协调有关业务部门充分调研论证。他们以自身的科技力量为依托,经过多年努力,终于建成了集“导调指挥、战场仿真、监测评估、训练管理、综合保障”等多功能为一体的作战实验室。.   激烈对抗练真功   作战实验室的功能到底有多大?4月上旬,记者在这个实验室目睹了一场“某型导弹部队作战演习”。只见“红”、“蓝”指挥所双方指挥员根据战场发展的态势,正在果断地下达各种作战命令。电子显示屏上,战场态势瞬息万变。“蓝军”第一波次导弹猛烈地突击后,“红军”阵地硝烟弥漫。“红”“蓝”两军在虚拟战场上斗智斗勇,时而“红军”阵地被袭,时而“蓝军”战场网络陷入瘫痪。担任各种角色的学员完全将自己置身到战斗之中,在面临强敌进攻时,有的运筹帷幄,有的手忙脚乱。   好一个真实的战斗场面!据介绍,这是作战实验室的三维视景仿真系统,它由战场观察模块、视景仿真实体、视景数据库等组成,用于三维战场场景的生成。有了它,人员、装备的真实性和地形的立体感大大增强,学员在这里学习训练,如同身临其境。   “实验室就是战场。”这是深深根植于该院师生心中的一个观念。利用实验室对抗演练,该院要求每一名参演学员一进入“战场”,必须进入“战斗”状态,每一批学员都要结合新装备使用、新战法攻关和新课目试训,将理论和实践、技术和战术、战法和训法有机地结合起来,拿出自己的对策,在“炮火硝烟”中砥砺打赢本领。   七个学科撑起一个“平台”   更让人惊喜的是,作战实验室的建成,把军种战役学、作战指挥学等7个学科群有机地融合在一起。7个学科群专业有别,又互有联系,一体化的教学功能大大增强。   加强软件开发,拓展作战实验室功能。该院集中力量研制并开发出用于作战指挥、战法训练和作战实验研究的各型导弹训练模拟系统,以及一体化联合作战指挥训练系统等10多套软件系统,这些系统基本满足了第二炮兵部队各级指挥员提高作战指挥能力的培训和信息化作战功能、作战指挥效能的实验研究需要,从而使作战实验室成为多学科知识的交会点。   突出集团意识,建设作战实验室群。该院以作战实验室为核心,将作战指挥学、军种战役学、合同战术学等学科的专业实验室,第二炮兵作战模拟实验中心,装备指挥自动化实验室等重点教学场所与作战实验室联为一体,通过网上互通,构建起了一个庞大的作战实验室群,实现了跨学科建设资源的综合利用。   注重课题牵引,培养学科学术带头人。围绕作战实验室的建设,学院先后投资700多万元,遴选60多个课题,吸纳10多个教研室的教员参与课题研究,培养出一大批在全军有影响的中青年导弹专家。   作战实验室的功能不断拓展,并发展成为全军重点建设项目。如今,作战实验室已成为学院信息技术的聚焦地和信息交流中心,多学科专业知识在这里交会融合,促进了学科建设整体水平的提高。在实验室建设的推动下,该学院第二炮兵战役学科被评为全军重点学科,战役学博士后科研流动站在该院正式挂牌。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/14.txt ================================================  台湾布导弹 威胁闽江口 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军现役的203毫米口径巨炮,该炮可将96公斤重的弹丸倾泻到对方阵地,造成可怕的破坏效果。   台湾布导弹 威胁闽江口   5月6日,台湾东森新闻台独家披露称,台湾军方正在离大陆仅约60公里的东引岛配置“雄风二型”反舰导弹,这是台军方首次在台湾最北端的小岛配置反舰导弹。分析家认为,台军此举极具有挑衅性。   台湾东森电视台5月6日独家透露,台湾“国防部”、“海军司令部”已经正式决定:在距离大陆只有60公里左右的台湾最北端的小岛——东引岛配置射程可达150公里的岸射型“雄风二型”反舰导弹。一旦完成部署,台军就可以有效扼制大陆闽江口,占有制海的军事优势。   有台湾军方高官放话说,部署在东引的“雄风二型”导弹,对解放军自北而下的东海舰队有“吓阻作用”。通过在东引岛上部署各种尖端武器,以长短渐进的层次,形成有效防御,增加战略纵深,东引岛还与基隆的两处“天弓”导弹阵地呼应,借此确保台澎金马的空域安全,从而构成“捍卫台湾空防的第一道防线”和“对大陆进行反击的前沿阵地”,实现台湾当局所谓的“决战境外”的战略构想。   事实上,台军在东引岛上部署导弹并非新鲜事,两年前英国《简氏防务周刊》就报道,台湾军队在东引岛上兴建了大型导弹和雷达基地,以“遏制”大陆海空军越过台海攻击。   台军官员曾表示:“东引岛部署‘天弓’导弹,打击面可覆盖大陆沿海各主要机场。”“天弓”导弹分为阵地部署或机动部署。以东引岛的地形特质,“天弓”导弹应以阵地部署,并以垂直发射担任战备。另外,东引岛还部署有担任低空防御的美国“毒刺”导弹。因此,有评论认为,台军在马祖建导弹和雷达基地,目的是限制大陆海空军在台湾海峡北端的机动能力。   两年前已经部署的两类防空导弹,现在加上“雄风”二型导弹,小小的东引岛上部署了台军三类最核心的导弹群。   台湾当局为达成其“以武拒统”的图谋,近年来一直在加强金门、马祖、乌丘和东引四岛的军事力量,企图将金马二岛变为台军实施防卫作战的第一道防御线。其实这道防线,只能给自己壮壮胆。东引岛所在马祖诸岛距福建沿海最近只有16公里,就在大陆的眼皮底下——不管部署在这些岛屿上的台军火力有多强,都抵挡不住远程大炮的“饱和轰击”。   台军弹药库有大约300个,从分布情况来看,不仅数量不多,而且过于集中,易于摧毁。台军高层评估说,如果台海战事爆发,台军半数以上的军火库可能遭到摧毁。这些外岛会成为一座座孤岛。台湾军方想激怒大陆? 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器   台湾军方想激怒大陆?   台湾军方和当局在东引岛的军事部署其实别有用心。   当前中美关系升温,并且布什政府对陈水扁的不满越来越强烈。在这种情况下,台湾当局很想通过主动挑衅来激怒大陆回应,然后换得美国对台湾的支持,以达到分离中美关系的目的。   同时,这种部署,是对“汉光演习”暴露弱点的修复。5月4日,台“国防部”公布“汉光22号”演习结果,计算机裁定显示,在敌方无人遥控飞机、导弹及空中首波攻击下,三军主战战力尚能保存,但导弹阵地、机场、雷达站等固定设施,在预警与反导弹能力不足之下会严重受损,只能勉强保存战力。台军并非首度高唱自己的导弹与反导能力不足,台军的根本目的,其实就是换取外界对其研发导弹,增强军力的支持。   参考词典   东引岛   东引岛是马祖列岛最东端的一个小岛。长期以来,东引岛一直是台军马祖防区的一个重要据点,从上世纪50年代到70年代,台湾所谓“反共救国军指挥部”就设在这里。   东引岛上有一个可停泊5000吨船舰的中柱港,和一座直升机机场。东引岛属于山岳型岛屿,岛上地质为花岗岩,四周都是悬崖峭壁,完全没有沙滩,海边水深最浅处都有2米,是一个完全不可能进行两栖登陆的岛屿,若想占领此岛,惟有利用直升机实施空降。所以,台军认为,他们可以在这个小岛上“同大陆打持久战”。台军在岛上部署了“毒刺”防空导弹,就是为了预防解放军实施直升机空降突袭。   “雄风”二型反舰导弹   “雄风”2是台湾中山科学研究院仿照美国“捕鲸叉”,研制的第二代亚音速中程反舰导弹。   它与美国的“捕鲸叉”相似,采用X型配置的正常式气动布局,弹长3.9米,直径0.35米,采用可折叠式弹翼,翼展0.9米。导弹的发射重量为500公斤,所带大量燃料使其具有超视距攻击能力。导弹的巡航速度为0.9马赫,巡航高度低于15米导弹的命中率达到了90%。台军在距离大陆沿海16——60公里的岛屿部署了大批导弹 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器台军部署了大批导弹是一种对大陆的挑衅 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器从军事角度讲,这也是一种自寻死路的表现 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军各型远程压制武器解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用 文章认为,台军在距离大陆沿海16——60公里的岛屿部署了大批导弹,这不但是一种对大陆的挑衅,从军事角度讲,这也是一种自寻死路的表现。据此前的分析认为,大陆远程火炮技术世界领先,解放军几乎拥有各种型号各种射程的火炮,一旦开战,台军那些金贵的导弹将完全置于大陆海量的火炮射程之内,解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图:解放军短程战术导弹,可作为远程压制火力的补充,起点穴作用2     ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/15.txt ================================================   中新网5月9日电 据共同社报道,围绕导弹防御系统(MD)问题,日本海上自卫队9日宣布,将派海上自卫队“宙斯盾”舰参加美国即将于6月在夏威夷近海实施的海基型拦截导弹(SM3)的拦截试验,对目标进行雷达跟踪。   “宙斯盾”护卫舰是首次参加此类拦截演习。海上自卫队幕僚长(相当于参谋长)斋藤隆表示,“将力争提高双方在海上的相互协调性”,由此可见,日美在MD方面共享信息等合作体制将进一步得到确立。   据海上自卫队透露,预定参加此次演习的是曾经根据《反恐特别措施法》在阿拉伯海上进行过海上燃油补给活动的“雾岛(KIRISHIMA)”号(7250吨)。美国海军的“宙斯盾”舰计划用SM3对模拟弹道导弹进行拦截,而“雾岛”号将跟踪模拟弹道导弹的轨迹。   “雾岛”号计划于本月从位于神奈川县的横须贺基地出发,在参加拦截试验结束后还将参加环太平洋联合演习。   美国迄今为止曾6次成功地进行了SM3拦截试验。日本政府将于2007年度年底开始为海上自卫队的”宙斯盾”护卫舰装备SM3。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/16.txt ================================================   “猎鹰”展翅——中国L15新型高级教练机研制成功   "猎鹰"的首飞成功,对于完善中国初、中、高级教练机的研制生产体系,满足第三代和新型飞机飞行员的训练需要,竞争国际教练机市场都具有重要的意义。   伊朗全面备战防突袭   伊朗加紧更新武器装备、扩大弹道导弹生产与储存,本着“放进来打”的原则,发挥自身本土作战的优势,使侵略者意识到,与伊朗的战争将是一场得不偿失之仗。   台军重视烟幕装备   美国新驻华武官打过仗   英国海军的希望——45型导弹驱逐舰   目标:伊朗核设施——以色列F-16I战斗机   二战中的德国直升机   坦克与直升机之争   PzH2000自行榴弹炮行销欧洲   美国的反恐适应性训练基地   美军士兵在基地几可乱真的模拟环境中练战术、练协同,也练习如何与占领区居民打交道。为期两周左右的高强度培训,让士兵更从容地开赴反恐前线。   铁甲的圣地——中国坦克博物馆行记   中国唯一一座以坦克装甲兵为主题的专题博物馆,其中不乏珍贵的馆藏文物,作为军事爱好者,这是不容错过的好去处。   可预知的屠戮——老虎峰血战沉思   老虎峰是印巴军事对峙的锡亚琴冰川地区的重要咽喉要地。1999年的卡吉尔之战中,印巴双方曾在这里展开了一场殊死的厮杀。   X-23突击步枪   X-23是读者设计的一款突击步枪,集成了G36和SCAR的部分优点,用3DMax软件制作完成。   ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/17.txt ================================================   “猎鹰”试翼——我国第三代高级教练机开始试飞   Chinese Third Generation Training Plane Begins Flight Test   L-15总设计师对若干问题的解答   An Interview with the Chief-Designer of L-15   崎岖的“太行”之路——我国新型大推力涡扇发动机的研制历程   Chinese Home Made New High Thrust Turbofan Engine Fielded   伊朗:孤独的圣战   Iran Focus: Will Iran Be the Next Iraq   核萌芽的保护伞——伊朗常规武装力量评介   An Assessment: The Conventional Armed Forces of Iran   专题:军用机器人技术   Military Robots Technology   科学而非幻想——美国军用机器人走向战场   It's Not Fiction: U.S Military Robots Go To War   机器人技术及其军事应用——访北京航空航天大学ITM实验室   Robotics Technology and Its Military Applications   维护公众安全的机器人卫士——武警装备专家谈反恐机器人   On the Anti-Terror Robots: An Interview with the Researcher from Chinese People's Armed Police Force   以创新性思维发展中国的拐弯枪   An Innovation: Chinese-Made Corner Shot Weapon System   “探戈杀手”演绎美国未来潜艇技术   Tango Bravo Brings Fundamental Changes to U.S Next Generation Submarine   展望未来的军用无线局域网   Future Military Wireless LAN: Wi-Fi or WAPI, WiMAX or McWILL?   突破生理耐受极限——欧美飞行员生命保障系统评介   The Development of Pilots Life Support System in the U.S and Europe   不走别人走过的弯路——外军信息化建设中的几点教训   Some Lessons Taken from Informationization Construction of Foreign Armed Forces   飞速扩展的美国陆军无人机训练   The Training for U.S Army UAV Rapidly Expanded   美空军培养专职无人机飞行员   A Career Flying UAVs   评析美国两份防务评审报告   An Contrast: U.S Government 06'QDR Report and A Non-Government One   美国人看日本国防工业发展   An U.S Point of View: The Development of Japanese Defense Industry   台湾岛及周边海区的地理与气候   Geographical and Climatic Survey of Taiwan Island and Its Circumjacent Sea Area   ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/18.txt ================================================   新华网北京5月9日电题:强军兴军的科学方略——科学发展观引领人民军队阔步前进   记者贾永、曹智   处在新的历史发展时期的人民军队,军事斗争准备和改革、建设、发展的任务十分繁重。如何推动国防和军队建设又快又好发展,有效履行新世纪新阶段我军历史使命?   中央军委主席胡锦涛指出:要自觉把科学发展观贯彻落实到国防和军队建设的各个领域和全过程,实现国防和军队建设全面协调可持续发展。   潮平两岸阔,风正一帆悬。前进在科学发展轨道上的人民军队,正在发生着日新月异的变化。   科学发展观:加强国防和军队建设的重要指导方针   党的旗帜就是军队的旗帜。全军和武警部队着眼于在军队建设中把科学发展观这一重要指导方针牢固确立起来,不断有新的举措、新的进展——   军委、总部作出一系列部署,下发《关于全军部队深入学习宣传贯彻科学发展观的意见》,委托国防大学举办新世纪新阶段我军历史使命理论研讨班,编印《树立和落实科学发展观理论学习读本》,发全军团以上领导干部。各级把科学发展观纳入党委中心组学习和干部轮训内容,纳入部队思想政治教育,纳入院校教育教学,全军团以上领导干部普遍轮训一遍。   全军部队开展忠实履行新世纪新阶段我军历史使命教育活动,突出学习贯彻科学发展观这个主题。各级党委及时对学习贯彻科学发展观进行研究部署,并结合部队实际制定具体落实措施。军师级单位普遍编写学习辅导材料。各单位通过重点抓团以上领导干部,促进和带动部队的学习贯彻。   军队理论工作者深入研究阐释科学发展观,取得了一批高质量的研究成果,新闻、出版、文艺等单位推出了一批优秀作品和图书、音像读物。由总政治部向全军推荐的《八荣八耻人人须知》等歌曲,已唱响座座军营。全军先后召开学习贯彻江泽民国防和军队建设思想研讨会,在国防和军队建设中贯彻落实科学发展观座谈会。各部队制定建设发展规划,研究出台政策制度,破解重点难点问题等,都自觉做到谋划发展以科学发展观为依据,指导工作以科学发展观为遵循,检查成效以科学发展观为准绳。   2005年9月,中央军委转发北京军区某防空旅按照科学发展观要求全面加强部队建设的基本经验,号召全军部队坚持瞄着信息化,主动有作为,科学搞建设,实干求发展……   在科学发展观的指引下,我军革命化现代化正规化建设取得长足进展。裁减军队员额20万,规模基本适度。我军官兵思想政治觉悟不断提高,高素质新型军事人才成批涌现……科学发展观的基本观点和要求,正在转化为三军将士推进国防和军队建设的巨大动力。   贴近实战:演兵场劲吹求真务实之风   战机、装甲车纵横驰骋,看得见的导弹、炮弹,看不见的无线电波往复穿梭……2005年金秋时节,一场代号“北剑-2005”的对抗性军事演习在内蒙古草原深处举行。   这场实兵演习不设预案,战斗行动完全由对抗双方指挥员自主决定。24个国家的军事观察员现地观摩。中国军队开放与务实的作风,透过秋日里的硝烟战火展示给了世界。   回眸一年来演兵场出现的新变化,《军事学术》杂志总编辑胡文龙感慨道:“紧贴实战,从难从严训练,求真务实之风劲吹演兵场。”   2006年年初,解放军四总部向全军发出年度军事训练考核结果通报。在以往一贯以表彰为主的通报中首次出现了3个由军事训练一级降为二级单位的名单。这次考核首次运用“部队演习评估系统”,从指挥控制、远程机动、火力打击、整体防护和综合保障5个方面对陆军部队整体作战能力进行了全面检验。   着眼于增强我军信息化条件下的威慑和实战能力,仗怎么打、兵就怎么练——   联合指挥所里,不同来源的陆海空天电系统打通了信息壁垒;实兵训练场上,蓝天的战机与地面的战车保持着“对话”;空地联合火力突击,直升机携轻型机械化分队纵深攻击……经过两年多的探索,成都军区陆空一体化训练令人耳目一新。   成都军区参谋长吕登明对此评价说,“陆空一体化训练,使空中地面各种力量在行动中形成了一个完整的整体。”   与此同时,各部队还把未来的战场搬进了虚拟的网络空间——用计算机网络构成的“战争实验室”。从装甲车驾驶到战机、战舰操作,仿真模拟器材已成为提高官兵军事素质和训练水平的重要手段。   与国家信息化建设相同步,2005年,全军各部队共举办信息化讲座和高新技术知识培训班7000余场次。一年中,全军部队普遍进行了信息化条件下的拉动、演练……   我军的军事训练进一步走上全面、协调和可持续发展轨道,在复杂形势下有效应对危机、维护和平、遏制战争、打赢战争的能力不断增强。   以人为本:激发出前所未有的创造活力   “从抗菌内裤、抗菌袜到温寒区棉衣、士兵皮鞋,”有着4年兵龄的武警总部一级士官王君,指着今年“五一”前刚刚下发的新夏常服说,“从里到外,这几年换发的新品种加起来有十六七件。”   透视全军和武警部队历年来十余次换装不难发现,以人为本,正体现在诸如换发军服这样的一处处细节中——   根据军事训练强度和营养素供给制定科学食谱,基层官兵的饮食结构正在从温饱型转向营养型;边海防一线,昔日的木制、铁塔式哨楼,已被永久式砖木、钢筋混凝土结构的哨楼所代替;远程医疗会诊系统把全军各级医院连在了一起,患病官兵不论身处何方,都能在第一时间内得到专家诊断;入党、提干、考学、选取士官等过去被认为是敏感的问题,战士们可以通过局域网公开评议;士官文化补习学校和各种专业技术培训班遍布军营……   点点滴滴,体现了人民军队以人为本的治军理念。   来玉楔环扳手、亚平模拟燃油开启活门……走进南海舰队军械技术保障大队荣誉室,用士官名字命名的技术和革新成果引人注目。在北京军区某防空旅和济南军区某摩步师,普通士兵参与了全军性训练大纲的编修;在沈阳军区、兰州军区,来自士兵的建设性意见写入了军区年度工作计划……以人为本,激发出官兵前所未有的创造活力。   而人才战略工程的实施,则更加有力地推进了部队建设水平的提高。2005年7月,我军首期中青年领导干部培训班毕业,一群平均年龄只有42.5岁的师职干部经过深造后从国防大学走向演兵场。这一年的金桂飘香时节,全军在110多所普通高校招收的1.2万余名国防生,又陆续走进地方大学校园。与此同时,我军招收的第八批女飞行员也进入空军航空大学,她们将成为选拔培养中国女航天员的储备力量……   目前,我军作战部队军师团领导95%以上具有大专以上文化程度,空军一线飞行员全部具有大学学历,海军一线舰长100%毕业于专业院校,第二炮兵部队的技术军官几乎都具有学士以上学位。   科学管理:后勤和装备建设在创新中频添活力   公交车开进部队大院,地方的饮食公司取代部队的自办食堂,越来越多的军人住上了地方经济适用房。随着军队后勤保障日益市场化、社会化,全军部队目前集中采购的规模已达到150亿元,资金节约率在7%左右。   “我们基地通过竞争机制,与4家地方公司签订了生活物资供应协议,食品配送、煤气供应、粮油保障全部交由他们办理,不但提高了效率,而且经费节约率达1/3左右。”驻澳门部队珠海基地物资采购供应站管理员方仁迎说。   2004年7月1日,中央军委在济南战区实施的大联勤改革试点正式启动,我军后勤体制改革开始了历史性跨越。   我军正处于由机械化半机械化向信息化跨越式发展的重要战略机遇期,需要很大的投入。把有限的军费管好用好,用在刀刃上,用出效益来,既是贯彻落实科学发展观的必然要求,也是一个紧迫而重大的现实课题。   全军和武警部队采取有力措施,确保有限财力最大限度地转化为保障力、战斗力——   推行预算编制改革,建设军队财务管理信息系统,严格执行财经法规制度,目前军以下部队标准经费收支平衡率已稳定在95%以上,旅团部队生活费规范化管理达标率为85%以上。   2005年8月,中央军委批转了《总后勤部关于大力加强军队资源节约工作的意见》,建设节约型军营蔚然成风。   我军武器装备建设注重顶层设计,坚持走以信息化为主导、机械化信息化复合发展的道路,几年间,建成一批武器装备科研生产基地,武器装备的研发、试验验证、集成、制造能力进一步提升,一批新型信息化作战平台、精确制导弹药、电子对抗装备陆续装备部队,武器装备的综合保障水平有了新的提高,逐步向全系统、全寿命管理的方向发展。   2006年刚刚开始,我军陆军装备采购向市场化改革迈出坚实步伐——20余家优秀高科技民营企业经过遴选,逐步进入试点单位武汉军代局所承担任务的配套市场,10余家实力雄厚的非军工国有企业加入到军品市场竞争行列。这些企业生产的20多种陆军装备配套产品,合格率达99.1%……   解放思想、开拓创新,积极转变管理领导方式,为我军建设的科学发展提供了更具活力的体制机制保证。   统筹兼顾:大局下行动谱写出军民团结新篇章   这是中俄联合军事演习期间发生在山东半岛的一幕——   为确保海上实兵演练按时展开,胶南市组织群众清理附近海域,7个村庄近5000名群众秩序井然地疏散,近百艘渔船静静泊进港湾,开阔迷人的旅游海滩空无一人……   在经济发展的基础上推进国防建设,把国防建设融入经济社会发展体系之中,如今已成为全社会的共识——   在广东,3次获得“全国双拥模范城”的江门市,帮助驻军建成了“驻军信息化指挥网”“国防教育网”;在西部,各地利用西部大开发的有利时机,新增、改扩建国防公路和边防公路16条。而过去一年,全国上千所大专院校和科研院所就为部队举办高技术知识讲座2万余次,帮助轮训官兵5万多人次……   在各级政府和人民群众的支援下,过去交通不便、信息闭塞的万里边防,如今都通上了公路。无论是全军海拔最高的神仙湾哨所,还是帕米尔高原之巅的红其拉甫前哨班,各部队都已开通了局域网……   人民子弟兵也把参加和支援地方经济建设,作为自己义不容辞的职责,谱写出一曲曲拥政爱民的新乐章。   川藏公路——西藏繁荣与稳定的生命线。担负进藏物资运输任务的成都军区川藏兵站部的汽车兵们,沿线援建的46个文明村、小康村,成了雪域高原的一道人文景观。   在海南岛,部队参与建设的125个生态文明村已初具规模。在新疆、在内蒙古,在广大少数民族地区,5000多个军民共建点成为促进民族团结和社会发展的重要基地。   传播法律知识,开展移风易俗,创建和谐社区,建设生态家园,遍及全国的5万多个军民共建点,正在被广大军民不断赋予科学发展观的时代内涵。   浦寨——几年前,广西中越边境15号界碑旁一个只有13户人家的小村落,随着边境排雷的结束,已经发展成为一座商贾云集的现代化边城。   “看着边寨群众一天天富起来,我们由衷地高兴啊!”驻守在中越边境的广西边防某团哨长魏远航说。   国防建设与经济建设协调发展,正和谐统一在亿万军民富国强兵的不懈追求中。 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/19.txt ================================================   以禁止女兵穿低腰裤   已有120名女兵因违规被关禁闭   据新华社电 以军日前正在开展一场“全方位作战行动”。这次作战的目标可不是巴勒斯坦,而是女兵的低腰裤。   以军一位发言人7日说:“根据以色列国防军军纪,北方司令部决定实施更加严格的政策,使士兵的穿着符合纪律规定。”以色列女兵纷纷抱怨说,军装不能很好地展示她们的身材。为了追赶时尚潮流,这些女兵们经常重新设计自己的军装,有些人甚至把它们改成了低腰裤。然而,女兵们爱美的天性并没有获得军队指挥官的同情,他们认为,低腰裤严重威胁着以军的纪律基础。   以军要求女兵们把那些改过的低腰裤交到军需商店,以换回符合规定的军裤。此外,目前已经约有120名女兵因穿着违规低腰裤而被关禁闭。  ================================================ FILE: P001-Naive-Bayes-Text-Classifier/NaiveBayes-TextClassifier.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 朴素贝叶斯算法原理与搜狗新闻分类实战" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 贝叶斯公式\n", "贝叶斯公式就一行:\n", "\n", "$$P(Y|X)=P(X|Y)P(Y)/P(X)$$\n", "而它其实是由以下的联合概率公式推导出来:\n", "\n", "$$P(Y,X)=P(Y|X)P(X)=P(X|Y)P(Y)$$\n", "其中$P(Y)$叫做先验概率, $P(Y|X)$叫做后验概率,$P(Y,X)$叫做联合概率。\n", "\n", "没了,贝叶斯最核心的公式就这么些。\n", "\n", "## 机器学习的视角理解贝叶斯公式\n", "在机器学习的视角下,我们把 X 理解成“具有某特征”,把 Y 理解成“类别标签”(一般机器学习为题中都是X=>特征, Y=>结果对吧)。在最简单的二分类问题(是与否判定)下,我们将 Y 理解成“属于某类”的标签。于是贝叶斯公式就变形成了下面的样子:\n", "\n", "$$P(“属于某类”|“具有某特征”)=P(“具有某特征”|“属于某类”)P(“属于某类”)P(“具有某特征”)$$ \n", "我们简化解释一下上述公式:\n", "\n", "- $P(“属于某类”|“具有某特征”)=$在已知某样本“具有某特征”的条件下,该样本“属于某类”的概率。所以叫做『后验概率』。\n", "- $P(“具有某特征”|“属于某类”)$= 在已知某样本“属于某类”的条件下,该样本“具有某特征”的概率。 \n", "- $P(“属于某类”)$= (在未知某样本具有该“具有某特征”的条件下,)该样本“属于某类”的概率。所以叫做『先验概率』。\n", "- $P(“具有某特征”)$= (在未知某样本“属于某类”的条件下,)该样本“具有某特征”的概率。\n", "\n", "而我们二分类问题的最终目的就是要判断$P(“属于某类”|“具有某特征”)$是否大于1/2就够了。贝叶斯方法把计算**\"具有某特征的条件下属于某类\"**的概率转换成需要计算“属于某类的条件下具有某特征”的概率,而后者获取方法就简单多了,我们只需要找到一些包含已知特征标签的样本,即可进行训练。而样本的类别标签都是明确的,所以贝叶斯方法在机器学习里属于有监督学习方法。\n", "\n", "这里再补充一下,一般『先验概率』、『后验概率』是相对出现的,比如 P(Y) 与 P(Y|X) 是关于 Y 的先验概率与后验概率, P(X) 与 P(X|Y) 是关于 X 的先验概率与后验概率。" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 搜狗新闻主题分类\n", "- 这是一个文本分类问题,经典的新闻主题分类,下面用朴素贝叶斯来做\n", "- 数据集可百度网盘下载:链接:https://pan.baidu.com/s/14yMZNWrrgO7FVlGw4vLS3A 密码:wg90" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import os\n", "import time\n", "import random\n", "import jieba # 处理中文\n", "import nltk # 处理英文\n", "import sklearn\n", "from sklearn.naive_bayes import MultinomialNB\n", "import numpy as np\n", "import pylab as pl\n", "import matplotlib.pyplot as plt\n", "from collections import Counter" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "def text_processing(folder_path, test_rate=0.2):\n", " data_list = []\n", " label_list = []\n", "\n", " folder_list = os.listdir(folder_path)\n", " for folder in folder_list:\n", " text_folder_path = os.path.join(folder_path, folder)\n", " text_files = os.listdir(text_folder_path)\n", "\n", " # 读取每个文件\n", " n = 1\n", " for file in text_files:\n", " if n > 100:\n", " # 怕内存爆掉,只取100个样本文件,后期可以注释掉\n", " print(\"n>100\")\n", " break\n", " with open(os.path.join(text_folder_path, file), \"r\") as f:\n", " text = f.read()\n", " # read() 返回值为str,每次读取整个文件,将文件所有内容放到一个字符串变量中\n", " # readline() 返回值为str,每次只读取一行,每行的内容放在一个字符串变量中\n", " # readlines() 返回值为list,一次读取整个文件,每行的内容放在一个字符串变量中作为列表的一个元素。\n", "\n", " # 使用jieba分词\n", " # 开启并行分词,参数为并行进程数\n", " jieba.enable_parallel()\n", " word_cut = jieba.cut(text, cut_all=False) # 精确模式,返回的结构是一个可迭代的genertor\n", " word_list = list(word_cut)\n", " jieba.disable_parallel() # 关闭并行分词模式\n", "\n", " data_list.append(word_list) # 训练集list\n", " label_list.append(folder) # 训练集标签分类\n", " n += 1\n", "\n", " # 划分数据集和测试集\n", " data_label_list = list(zip(data_list, label_list))\n", " random.shuffle(data_label_list)\n", "\n", " idx = int(len(data_label_list)*test_rate)+1\n", " print(\"总样本数:\", len(data_label_list))\n", " train_list = data_label_list[idx:]\n", " test_list = data_label_list[:idx]\n", " # print(train_list)\n", " \n", " # 这里返回包含一组列表的元祖([])\n", " train_data_li, train_label_li = zip(*train_list)\n", " test_data_li, test_label_li = zip(*test_list)\n", "\n", " # 统计词频,得到词频逆序字典?为什么不用总的样本来统计词频而是用训练集\n", " vocab_dict = dict(Counter([w for li in train_data_li for w in li]))\n", " vocab_list = sorted(vocab_dict.items(), key=lambda f: f[1], reverse=True)\n", "\n", " vocab_list, _ = zip(*vocab_list)\n", " vocab_list = list(vocab_list)\n", " return vocab_list, train_data_li, train_label_li, test_data_li, test_label_li" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Building prefix dict from the default dictionary ...\n", "Loading model from cache /tmp/jieba.cache\n", "Loading model cost 1.009 seconds.\n", "Prefix dict has been built succesfully.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "总样本数: 90\n", "词汇个数: 9875\n", "训练集样本个数: 71\n", "测试集样本个数: 19\n", "训练集标签: 71\n", "测试集标签: 19\n" ] } ], "source": [ "random.seed(2019)\n", "folder_path = \"Database/SogouC/Sample\"\n", "vocab_list, train_data_list, train_label_list, test_data_list, test_label_list = text_processing(folder_path, test_rate=0.2)\n", "print(\"词汇个数:\", len(vocab_list)) \n", "print(\"训练集样本个数:\", len(train_data_list)) \n", "print(\"测试集样本个数:\", len(test_data_list)) \n", "print(\"训练集标签:\", len(train_label_list)) \n", "print(\"测试集标签:\", len(test_label_list)) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 停用词去重\n", "- 清洗停用词" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "# 词去重\n", "def make_word_set(words_file):\n", " words_set = set()\n", " with open(words_file, \"r\") as f:\n", " for line in f:\n", " word = line.strip()\n", " if len(word) > 0 and word not in words_set:\n", " words_set.add(word)\n", " return words_set" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "停用词个数: 428\n", "stopwords_set: {'甚至于', '仍旧', '并不', '此次', '全体', '所', '依照', '沿着', '嘛', '否则', '才是', '何处', '万一', '可以', '曾', '但', '且', '您', '那样', '嗡', '或是', '下', '鉴于', '而外', '还是', '另外', '吧', '既然', '说来', '尔', '当地', '这会', '被', '他们', '然而', '本地', '那时', '甚至', '一', '或者说', '或', '受到', '别处', '了', '哟', '诸', '不论', '哪些', '其余', '凡', '只消', '上', '彼此', '哪', '这', '即', '何况', '进而', '果然', '由于', '不尽', '因而', '不单', '距', '之', '多会', '与', '及至', '就是说', '则', '与否', '这里', '例如', '此外', '多么', '朝着', '只有', '简言之', '来自', '这么', '随', '由此', '这边', '后者', '所在', '往', '哪怕', '此处', '既往', '唯有', '不只', '仍', '比如', '以来', '许多', '致', '就是', '是', '若是', '去', '又及', '趁', '又', '同', '除外', '个人', '至今', '宁可', '它们', '由', '使', '得', '在于', '此', '向着', '我', '而已', '个', '全部', '如上', '不然', '比', '两者', '跟', '另', '你', '个别', '自己', '为了', '此间', '那儿', '介于', '诸位', '无', '就算', '一切', '嘻嘻', '有的', '对比', '接着', '倘若', '呵呵', '一些', '只', '一旦', '儿', '前者', '那些', '本着', '譬如', '只限于', '再有', '啦', '而是', '出来', '除非', '怎么办', '所有', '连带', '别的', '不仅', '何以', '自从', '或者', '从', '某些', '当然', '虽然', '正巧', '即便', '至', '即使', '让', '什么', '小', '于', '继而', '还要', '关于', '么', '经过', '和', '那里', '虽说', '怎样', '以免', '本人', '值此', '按照', '截至', '为此', '沿', '据此', '另一方面', '可见', '其', '连同', '我们', '各位', '与其', '也', '而后', '既', '不料', '况且', '来说', '某某', '嘿嘿', '格里斯', '故而', '尽管如此', '人', '很', '替代', '什么的', '假如', '及', '以至', '再', '一来', '不是', '正是', '较之', '这般', '从而', '其它', '给', '对待', '怎么样', '今', '起', '自', '既是', '这儿', '来', '自身', '啥', '因之', '根据', '每', '看', '只需', '并且', '正值', '只限', '如是', '基于', '到', '她们', '各', '为', '以', '着', '遵照', '对方', '以为', '只因', '不管', '最', '首先', '并非', '除了', '他', '任何', '依据', '随着', '总之', '同时', '如果说', '们', '某个', '凭借', '不如', '于是', '用来', '拿', '那么', '不外乎', '这些', '彼时', '几', '以及', '据', '那', '打', '要不', '处在', '那边', '等等', '再则', '从此', '哪个', '随后', '在', '可是', '你们', '除此', '反而', '的', '遵循', '别', '至于', '别人', '的确', '为止', '作为', '靠', '随时', '人们', '尽管', '已', '不仅仅', '怎', '如同下', '只怕', '有时', '就要', '后', '本身', '其次', '此地', '咱们', '以上', '这个', '对于', '如若', '为什么', '这样', '才能', '有些', '各自', '因', '要不然', '因为', '那个', '咱', '此时', '凭', '何', '该', '的话', '加之', '便于', '哪儿', '似的', '其中', '诸如', '若非', '其他', '多少', '不', '它', '直到', '大家', '谁人', '得了', '为何', '非但', '别说', '以致', '她', '如此', '分别', '甚而', '正如', '用', '每当', '可', '要么', '虽', '开外', '固然', '加以', '但是', '若', '却', '还有', '而且', '何时', '他人', '不过', '要是', '逐步', '以便', '如何', '然后', '为着', '不光', '如', '有关', '乃至', '某', '趁着', '只要', '只是', '凡是', '哇', '反之', '针对', '照着', '无论', '那般', '不但', '向', '乃', '还', '把', '并', '因此', '亦', '有', '当', '什么样', '如果', '谁', '出于', '如下', '而', '怎么', '赖以', '些', '不至于', '所以', '毋宁', '不尽然', '之所以', '光是', '好'}\n" ] } ], "source": [ "stopwords_file = \"./stopwords_cn.txt\"\n", "stopwords_set = make_word_set(stopwords_file) # 去重后的停用词\n", "print(\"停用词个数:\", len(stopwords_set))\n", "print(\"stopwords_set:\", stopwords_set)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 从词袋中选取有代表的特征词\n", "- 第一步生成的词袋里有很多通用的、无意义的词语,需要去掉。 \n", "- 有代表性的词语很大概率是一些对最终类别区分有作用的词语。并且后面这些词语会作为特征作为模型的输入。" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "def vocab_select(vocab_list, deleteN, stopwords_set=set()):\n", " # 选取特征词\n", " feature_words = []\n", " n = 1\n", " # 从deleteN 开始,舍弃前从deleteN个单词\n", " # 因为越前面的词词频越高,在所有类别中都可能出现很多次\n", " for t in range(deleteN, len(vocab_list), 1):\n", " if n > 1000:\n", " # 选取1000个词汇,也就是特征词是1000\n", " break\n", " # 满足三个条件:不是数字;不在停用词表;长度2~4就添加到特征词列表\n", " if not vocab_list[t].isdigit() and \\\n", " vocab_list[t] not in stopwords_set and \\\n", " 1" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "finished\n" ] } ], "source": [ "print (\"start\")\n", "\n", "# 文本预处理\n", "folder_path = './Database/SogouC/Sample'\n", "\n", "all_words_list, train_data_list, train_class_list, test_data_list, test_class_list = text_processing(folder_path, test_rate=0.2)\n", "\n", "# 生成stopwords_set\n", "stopwords_file = './stopwords_cn.txt'\n", "stopwords_set = make_word_set(stopwords_file)\n", "\n", "# 文本特征提取和分类\n", "flag = 'sklearn'\n", "deleteNs = range(0, 1000, 20)\n", "test_accuracy_list = []\n", "for deleteN in deleteNs:\n", " feature_words = vocab_select(all_words_list, deleteN, stopwords_set)\n", " train_feature_list, test_feature_list = text_features(train_data_list, test_data_list, feature_words, flag)\n", " test_accuracy = text_classifier(train_feature_list, test_feature_list, train_class_list, test_class_list, flag)\n", " test_accuracy_list.append(test_accuracy)\n", "print(test_accuracy_list)\n", "\n", "# 结果评价\n", "plt.figure()\n", "plt.plot(deleteNs, test_accuracy_list)\n", "plt.title('Relationship of deleteNs and test_accuracy')\n", "plt.xlabel('deleteNs')\n", "plt.ylabel('test_accuracy')\n", "plt.show()\n", "#plt.savefig('result.png')\n", "\n", "print (\"finished\")" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [], "source": [ "from sklearn.naive_bayes import ComplementNB, GaussianNB, BernoulliNB" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "start\n", "总样本数: 90\n", "[0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7894736842105263, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.7894736842105263, 0.7894736842105263, 0.8947368421052632, 0.8947368421052632, 0.8947368421052632, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8947368421052632, 0.8947368421052632, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.7894736842105263, 0.7894736842105263, 0.7894736842105263, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8947368421052632, 0.8947368421052632, 0.8947368421052632]\n" ] }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYwAAAEWCAYAAAB1xKBvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcZHV97//Xu7fqmZ6etXsQGJYBRwRXdC6KYjQqMpIb0EQjE41BCWgUYnygEa5GEfVGjYomwQU3XCKIJJpRETRI9MoPdQZZdEB0RIRh6xpmq+6eruqq/vz+OOf01NRUd52qrlPr5/l49KOrzlbfU8v5nO8uM8M555yrpKfZCXDOOdcePGA455yLxQOGc865WDxgOOeci8UDhnPOuVg8YDjnnIvFA0aLk/QCSdsXsP+nJf1jPdNU5jVM0uPnWPdqSd9P6HX/VtKjksYlrYqx/X2SXhxju6PDc+qrT0rbg6T/kfQ3zU6Ha10eMBogvFDtCy9sj0i6UtKSBF7nbEk/KV5mZm80s/fV+7XiMrN/N7OX1Pu4kvqBjwEvMbMlZvZYvV8jZjoOes8rbP+CMBhdXrL8J5LOrnsC60TSJZK+WqdjzXmD4VqbB4zG+VMzWwI8HTgRuLjJ6Wl3hwCDwNZmJ6QGE8BrJR3d5HS4eXRbDjMODxgNZmaPADcQBA4AJKUkfUTS/WERy6clLSq3v6SLJP1OUkbSXZJeHi4/Hvg0cHKYk9kdLr9S0vuL9j9X0jZJOyVtknRY0TqT9EZJv5W0S9LlkhSue7ykH0naI2mHpK+XJO3Fc+x3wB14+Bp/J+ne8Dj/LKns9zB8Xz4u6aHw7+PhsicA94Sb7Zb0wzn2/ytJf5D0mKR3lqzrKXovH5N0jaSVcxxnmaTPS3pY0oOS3i+pd573vNLnuRu4EnjPHK9X6b0u3vYbYa51j6QfS3pS0borw8/iu+H35WeSji1af6qkX4f7/hugOV5jA/B/gFeF53nHfO/LfOcg6cfhYe8Ij/Wqec5thaTvSEqH36vvSFpTtH6lpC+G341dkr5VtO5MSbdL2ht+xhvC5QcUS6oo56T9RZHnSLof+GGM93iRpI+G37M9CnKKi8L3/IKS87lT0svmOt+2YGb+l/AfcB/w4vDxGuCXwCeK1n8c2ASsBIaBbwP/FK57AbC9aNtXAocRBPtXEdytHhquOxv4SclrXwm8P3z8QmAH8AwgBfwr8OOibQ34DrAcOBJIAxvCdVcB7wxfdxA4JeZ+B6Qp3Pam8FyPBH4D/M0c79ulwE+B1cAo8P8B7wvXHR0eq2+OfU8AxoE/Cs/1Y0C+6HP4+/DYa8L1nwGuKnds4Fvh+qEwLT8H3jDPe17x8wQeB+wFjguX/wQ4u9J7XeY8Xx++Rip83dtLPvudwElAH/DvwNXhupHw9V8B9ANvDd+fuT6LS4Cvliyb732p9H15fIzfzSrgz4HF4Tl+A/hW0frvAl8HVoTn8Pxw+UnAHuDU8PUPB55Y+lssPa+iz/3L4TktivEeXw78T/gavcBzwu3+AvhZ0XZPAx4DBpp9PVrQtazZCeiGv/BLOg5kwi/kjcDycJ0ILvrHFm1/MvD78PELKAoYZY59O3Bm+Phs5g8Ynwc+XLRuCTANHB0+t5If9jXAReHjLwNXAGvKpGG+/Q5IU7jthqLnbwJunOPcfgecXvT8NOC+8HH0454rYLyb8OIYPh8CcuwPGHcDLypaf2j4XvQVH5ug6CsbXTzCbTcCN81xfrE/T+DDwNfDx8UBY873usL3bHmY7mVFn/3nitafDvw6fPxa4Kcl6d5OzIAR432p9H2pGDDK7Pd0YFfR5zUDrCiz3WeAy+b5LVYKGMfEeY8JgtE+4GlltksRBOt14fOPAJ+s9pxb7c+LpBrnZWY2THDBeCLBHR4Ed86LgVsl7Q6LNa4Plx9E0mvDrHa07ZOLjlXJYcAfoidmNk5w13N40TaPFD2eJAgqAP9AcFH5uaStkl5fcuy59ivngaLHfwjTVTG9FbYtt+/s65jZBMG5Ro4Cvln0Pt4NFAguhJRs1w88XLTtZwjuqMup5vP8EHCapKeVLK/0XgMQFot9MCxy2UtwMYQDvw9zfS6l749x4OdSSaX3JdY5zEfSYkmfCYt79gI/BpaHxV5HADvNbFeZXY8guNmo1ez7UOE9HiHIPR30WmaWJbhxeo2CIteNwFcWkKaW4JU6DWZmP5J0JcEdx8sIioj2AU8yswfn21fSUcBngRcBt5hZQdLt7C97rjT08EMEP/ToeEME2f55XzdM9yPAueF+pwD/LenHZrat0r5lHMH+yuojw3TNl94425Z6GDg+eiJpMcG5Rh4AXm9mN5fuqAMrox8guJMeMbN8mdcpfc9jf55m9pikjwPvK1ke973+S+BM4MUEF7JlwC7mqIso8TDB50D4Oip+Xi65Jc/nfV/q9H25EDgOeJaZPSLp6cBtBOf3ALBS0nIz210mbcdS3gRBQI88rsw2xec633u8A5gKX+uOMsf5EkGQ+AkwaWa3zJGmtuE5jOb4OHCqpKeb2QxBELhM0moASYdLOq3MfkMEX+Z0uN3rCHIYkUeBNZIG5njdrwGvk/R0SSng/xKUs95XKcGSXllU4bgrTEeh0n5zeHtYoXkE8BaCcuhyrgLeJWlU0ghBMVPcpp3XAv9b0inh+3EpB37fPw18IAzChK9xZulBzOxh4PvARyUtVVBZfqyk54ebHPCeV/l5QlC38hwODG5x3+thgov2YwQXwf87/1tygO8CT5L0ZwpaA/0d5S+ekUeBo8O75YrvS4VzeBQ4JkYahwmC724FDRLeE60IX/97wCfD71K/pD8KV3+e4Hv+ojBdh0t6YrjuduCscPv1BHU4ldJQ9j0OP+svAB+TdFiYGzk5/G0RBogZ4KN0QO4CPGA0hZmlCcp4ow517wC2AT8Ns73/TXBnVbrfXQRfvlsIfnRPAYrvkH9IcDf+iKQdZfa/MXzN/yC4wzwWOCtmsv8X8DNJ4wQVum8xs9/H3LfUfwG3Evx4v0vwAy/n/cAW4E6ChgK/CJdVZGZbgTcTBMmHCS5axR0gP0FwHt+XlCGoAH/WHId7LTAA3BUe51qCMnQo/57H+jzDdO4lqMsobqEV973+MkEx3YNh2n46R/rLve4OggYUHyS4GK7jwO9SqW+E/x+T9Ivw8Xzvy3zncAnwpbAo6y/mec2PA4sI7uR/SlC0V+yvCOqdfg2METRkwMx+DrwOuIyg8vtH7M9Z/yPB934X8F6C78d8Kr3HbyP4bm4mqLP4EAdeV79M8DutSx+WZlNYIeNcQ0gygorAWoqynGsrkl4LnGdmpzQ7LfXgOQznnEtAWG/2JoLWYh3BA4Zzrmkk/R8FHfhK/77X7LQtRFhnlSYoOq5U7NU2vEjKOedcLJ7DcM45F0ui/TAUjN/yCYIu858zsw+WrD+KoFnaKEELg9eY2fZw3V8D7wo3fb+ZfanS642MjNjRRx9dvxNwzrkucOutt+4ws7KdhYslViQV9sb8DcF4LtsJmp1tDJuGRtt8A/iOmX1J0guB15nZX4VtrrcA6wnab98KPHOOXp2z1q9fb1u2bEnkfJxzrlNJutXM1lfaLskiqZOAbWZ2r5nlgKsJekwWO4FgXCUIBqSL1p8G/MDMoq7/PwA2JJhW55xzFSQZMA7nwLFptnPgmEUQdKf/8/Dxy4FhBTOnxdnXOedcAyUZMMqNZ1Na/vU24PmSbgOeT9CbMh9z3+BFpPMkbZG0JZ1OLyS9zjnn5pFkwNjOgYOZraFk4Dgze8jM/szMTiQYOx8z2xNn36JjXGFm681s/ehoxTob55xzNUoyYGwG1klaGw7MdhbBmDKzJI1o/2xrFxO0mIJgRrqXhIOKrQBeEi5zzjnXJIkFjHDI4/MJLvR3A9eY2VZJl0o6I9zsBcA9kn5DMA/BB8J9dxIM+bw5/Ls0XOacc65JOqqntzerdc656sVtVusTKDnX4r59x0P89tFMVfusO2SYP31a3MkJkzc1XeCLN9/HvtzBc1D19vSw8VlHsHp4sAkpaz23/mEnP7qn+gY8r3n2Uaxemux76AHDuRZmZlx4zR3kCjMozjx6gBkM9PbwJ085lJ6emDsl7OZtO/jQ9b8GOOg8zGCwv4c3PH+uSfK6y4e+dw8/v29n7M87ctqTH+cBw7lulivMkCvM8PbTjuPNf/z4WPt88ebf895v38XufdOsHJpr8sXGenRvFoBbLn4hhy5bdMC6J7/nhtn1Dh7NTHHG0w7jXzae2OykHMQHH3SuhU1mg1lNhwZ6Y+8zOpwCIJ1pnYtwlJZVQ6mD1o0Op0iPt05amy2dyc5+hq3GA4ZzLWwiLPNfnIpfGDC6pAUDxvgUKxb3M9B38CVndEmKdGaqCalqPRPZPJO5ggcM51z1JnNRDqOKgBHlMMZb5yI8313z6HCqpYJbM0XvQxT0W40HDOda2EQ2ymG0f5GUB4zKoqI5z2E456pWSw5jSaqPwf6elroIp8ezc941jw6n2DuVZ2q60OBUtZ7ZHIYHDOdctcajHEYVld6SWD082DIBw8xIZ7JzNvmMAskOr/ie/cxWe8BwzlVrMqz0Hqqi0huCO9SxFgkYmWyeqemZuXMYS4PlrZLeZhrLTNHbI1Ysbo3m0KU8YDjXwiZqaFYLUcuj1rgAVypmacVWXc2SzmQZWTLQMh0uS3nAcK6FTdbQrBZaq29DpYCxugUr6ZullftggAcM51palMNY1F9lDmM4xe7JabL55lckVwoYK4cGkDxgwPyNA1qBBwznWthkLs+i/l56qyyiiC7Oj43nkkhWVSr1Lejr7WHV0EDL5IiayXMYzrmaTeQKDFXRByPSSvUC6fEs/b1i2aL+ObcZaaE6l2aZmTF2jOc8YDjnajOZzbO4ij4YkVbqvBdU5Kbmrcj1znuwazJHYca8SMo5V5uJXKGqPhiR1S3UVHUsk63Yr8ADxv7PKukhyhci0YAhaYOkeyRtk3RRmfVHSrpJ0m2S7pR0eri8X9KXJP1S0t2SLk4ync61qslcniVVtpCC/aPCtsJFOE65fNTRsJNmAK1Wq/fyhgQDhqRe4HLgpcAJwEZJJ5Rs9i6Cub5PBM4CPhkufyWQMrOnAM8E3iDp6KTS6lyrmsgWqm5SCzDQ18OKxf0tMQBhnIAxOpwiV5hh776DZ+TrFq0+8CAkm8M4CdhmZveaWQ64GjizZBsDloaPlwEPFS0fktQHLAJywN4E0+pcS5rM5avutBdphWKewoyxc6JyU9FWHGG30Vp94EFINmAcDjxQ9Hx7uKzYJcBrJG0HrgMuCJdfC0wADwP3Ax8xs53lXkTSeZK2SNqSTlc/D65zrWwiW6ip0htaI2A8NpFlxipfBKOA0gp1Ls2SzmRZPNBb9TAwjZRkwCjXJKK0gHIjcKWZrQFOB74iqYcgd1IADgPWAhdKOqbci5jZFWa23szWj46O1i/1zrWAyVy+pma1EA4P0uS+DXHL5VupVVeztHofDEg2YGwHjih6vob9RU6Rc4BrAMzsFmAQGAH+ErjezKbNbAy4GVifYFqda0lBK6mF5TCaWZHsASO+dKa1e3lDsgFjM7BO0lpJAwSV2ptKtrkfeBGApOMJAkY6XP5CBYaAZwO/TjCtzrWc6cIMufxMzXUYq4cHmZqeIZNtXkXybFPR4fmbii4d7GOgr7Xm8Gi0sczUbHPoVpVYwDCzPHA+cANwN0FrqK2SLpV0RrjZhcC5ku4ArgLOtuB26HJgCfArgsDzRTO7M6m0OteKosmTamklBa1x1x699kiFO2dJLTXCbjO0Qw4j0doVM7uOoDK7eNm7ix7fBTy3zH7jBE1rneta0fSsC2klBcGF6NjRJXVLVzXSmSzDqT4WxTiHVhpht9Gmpgvsncp3dR2Gc24Bah3aPNISOYzx+BW5q1ugVVez7GiDJrXgAcO5llXr5EmRVhiAMJ3JMhLzItgKzYCbpR16eYMHDOda1kSUw6ixldSyRf3096qpxTw7qmgqOjqcYudkjunCTMKpaj37e3m37jhS4AHDuZY1GeUwauyH0dOjpg8bXk1F7uhwCjPYOdH8OTwarR16eYMHDOda1kJzGNDceoF9uQKZbD52U9FWKEJrlnQmiwSrlgw0Oynz8oDhXIuKmtXWmsOA4I61WcNtVDuYXnR3PZbpvvGkxjJZVi4eoL+3tS/JrZ0657pY1Kx2ITmMZlYkRwMJVlOHAd2bw2j14ijwgOFcy5rNYdTYSgqCu/udE1kKM40fHqTalj8jXV4k5QHDOVeziVyeVF8PfQsophgdTjFjwaixjVZtwBjs72XZov7uDRgt3ssbPGA417Ims4UFD3XdzGKedCZLj/bP/hdHN/b2NrOqOjg2kwcM51rURC5f03zexZoaMMazrBxK0dtTbqaD8rpxPKm9U3ly+RkPGM652k1mCwwtoMIb9ncEa1YOo9qLYDf29m6XXt7gAcO5ljWRy7N4AU1qobipauMvwmOZLKtrCBjdNute1IzYA4ZzrmaTuYXnMBYN9DKc6murHMZkrjDbpLgbRJ9NtcG1GTxgONeiJrILr8OA5lQkz8wYO2qoyO3G3t7tMo4UeMBwrmVN5PILbiUFMNKEeoE9+6aZLljVTUVnK+m7qKVUejzLQG8PSxclOj1RXSQaMCRtkHSPpG2SLiqz/khJN0m6TdKdkk4vWvdUSbdI2irpl5JaP/w6V0eT2ULdchg7Ghwwah1MLxp3qttyGKPDKaT4rcmaJbGAIamXYKrVlwInABslnVCy2bsIpm49kWDO70+G+/YBXwXeaGZPAl4ATCeVVudaUb1yGM1oqlpry59uLZKKO2dIsyWZwzgJ2GZm95pZDrgaOLNkGwOWho+XAQ+Fj18C3GlmdwCY2WNmVkgwrc61lMKMMTU9U7ccRiabZ1+ucT+hWgPGisUD9Pao6wJGO/TyhmQDxuHAA0XPt4fLil0CvEbSdoK5vy8Ilz8BMEk3SPqFpH+Y60UknSdpi6Qt6XS6fql3romi6VkX2koK9re+aeRFOGoqWm3Ln2AOj4GuGrE2ncnGHgK+2ZIMGOUK5EpHQNsIXGlma4DTga9I6gH6gFOAV4f/Xy7pReVexMyuMLP1ZrZ+dHS0fql3romigQcX2g8DiiuSG3cRTmeyDPb3sKSGIrVu6rw3XZhh52TOcxgEOYojip6vYX+RU+Qc4BoAM7sFGARGwn1/ZGY7zGySIPfxjATT6lxLifoh1COH0YzhQRZSkTu6pHvGk9o5kcOsPTrtQbIBYzOwTtJaSQMEldqbSra5H3gRgKTjCQJGGrgBeKqkxWEF+POBuxJMq3MtZTaHUac6DGhwwBivvVy+m3IY7TQsCCQYMMwsD5xPcPG/m6A11FZJl0o6I9zsQuBcSXcAVwFnW2AX8DGCoHM78Asz+25SaXWu1UQ5jFqKdEqtGkrRo+bkMGoxOpxix3iOmSbM4dFo7RYwEu0pYmbXERQnFS97d9Hju4DnzrHvVwma1jrXdfbXYSz8J9rbI1YONbaYJ53JctLalTXtu3p4kMKMsWsyx6o2KduvVbXT2Dab9/R2rgVNzLaSWniRFDS2mCeXn2HX5HTNQ110U2/vWjs4NosHDOda0GS2fjkMCJq3NipgRLP71dpUtJvm9k5nsiwd7GOwvz43BknzgOFcC0oih9GoYcPH9i6smCXaLzpOJxvLTLVN7gI8YDjXkva3kqpPDiOoSM42pCJ5oRW5XVUktYDGAc3gAcO5FjSRzdPfKwb66vMTHV2SYrpg7NmX/JBsCy2XH0r1sXigt2uKpEaH22dcVQ8YzrWgyVyhbrkLaOxde3ShX7VkoOZjdEtfjHYaRwo8YDjXksaz+brVX0BjK5LTmSzLF/eT6qs9/c0YYbfRJrJ5JnIFL5Jyzi3MZC5ftxZS0PiAsdC75tVLO394kB1t1qQWPGA415ImsoW65jAaOWJtenzho692Qw6jnebyjnjAcK4FTebyda3DWJLqY7C/pyHDho9lphacwxgdTrFn3zRT0507Dc5Ymw0LAh4wnGtJE9kCQ3UY2jwiqSEVyWZWl6ai0f47OrhYqt3GkQIPGM61pHrnMKAxw4aPZ/NMTc/ULWB0crFUOpOlt0esWFx7a7JG84DhXAuayNU3hwGNaapar7vmaByqTg8Yq4aCKWnbhQcM51rQZDaBHEYjA0aNAw9GuqG3d3q8vXp5gwcM51rOzIwxOV1gqI7NaiG4iO+anCaXn6nrcYvVa/TVqNNfp+cw2i1gJDofhnPV2jM5zUd/cA/7cu3fOubpRy7n1c86qur9pvIFzOo38GAkujhd+I07GKzTkCOlfpceP+C1atXf28PKoQG+c+fDPLhrX+z9Dl02yFtPfUJNU8PGcfsDu/naz/6A1WFIrnvT4zzxcYcu/EANlGjAkLQB+ATQC3zOzD5Ysv5I4EvA8nCbi8JJl4rX3wVcYmYfSTKtrjX8ZNsOvnzLHxgdTtHfRmW7pfZO5bn+V4/UFDAm6jy0eeSZR61g7cgQt963s67HLfWcY1exfFH/go9z2pMex4/uGePmbTtibT85XWD35DRnnXQkhy1ftODXL+erP/0D37ztQQ6pQ85g+eIB/ugJo3VIVeMkFjAk9QKXA6cC24HNkjaFs+xF3kUwdeunJJ1AMDvf0UXrLwO+l1QaXetJh/0Ern/L89p6trXLb9rGP99wD1PTharnOpis89DmkeMeN8xNb3tBXY+ZpH/6s6dUtf0P7nqUc7+8hR3j2cQCRjqT5UmHLWXT+ackcvxWVzFfKmmLpDdLWlHlsU8CtpnZvWaWA64GzizZxoCl4eNlwENFr/sy4F5ga5Wv69pYejxLX5s1NSwn6rhWSxn8bA6jzpXena4RTXHbbbDAeotTkHkWcBhBDuFqSacpXgHh4cADRc+3h8uKXQK8RtJ2gtzFBQCShoB3AO+t9CKSzguD2pZ0Oh0jWa6Vje3NMrIkRU8bF0cBjC6tvZXPbA6jzs1qO100xEaSE0WNZRY+7Ek7qxgwzGybmb0TeALwNeALwP2S3itpvlney/3iS6uKNgJXmtka4HTgK5J6CALFZWY2HiN9V5jZejNbPzraXuWB7mDt2NSwnIXMGjdR58mTukXSLasKM8bOie7OYcT6Rkp6KvA6gov6fwD/DpwC/BB4+hy7bQeOKHq+hqIip9A5wAYAM7tF0iAwAjwLeIWkDxNUiM9ImjKzf4uTXte+0pkshyxtnwll5rJ6Af0IJrOew6hFqq+X5Yv7EwsYj01kmbH2Gsqj3ioGDEm3AruBzxO0Yoo+jZ9Jeu48u24G1klaCzxIULT1lyXb3A+8CLhS0vHAIJA2s+cVvf4lwLgHi+6QzmR58mHLmp2MBVs5NIBU293ueBQwPIdRtSRHuW3HsZ/qLc438pVmdm+5FWb2Z3PtZGZ5SecDNxA0mf2CmW2VdCmwxcw2ARcCn5X0VoLiqrPN6tHC2bWjwozx2ESuI36Qfb09rBoaqOnitX8+b89hVGt0OLnxsjxgxAsYfyPpw2a2GyBsLXWhmb2r0o5hn4rrSpa9u+jxXcB8uRTM7JIYaXQdYNdkjsKMdcwPcqTGu92J2Upvz2FUa3Q4xW33707k2PUa9qSdxWkl9dIoWACY2S6Cugzn6qrT7uBqvdudzBboEaQS6o3dyaIiqSQKKuo17Ek7i/ON7JU0+w5JWgR07zvmEtOOM5DNZ/XwIDtqzGEMDfQlNrxFJ1u9NMW+6cJsS7N6SmeyDKf6WNTFRYVx8rxfBW6U9EWCeobXEwzn4VxdteMMZPOJRoc1s6ou/pPZAou9hVRNou/O2N4plowuqeuxx9pwsMB6qxgwzOzDkn5J0JpJwPvM7IbEU+a6TpTDGOmQdu6jwylyhRn27JtmeRU916Mchqte8Twax9Q5YKQzWUY8YFRmZt/Dx3RyCUtnsgwN9HZMZW/xUBXVBIzJnOcwapXkPBo7MlmOP2xp5Q07WJyxpJ4tabOkcUk5SQVJexuRONddOqWXd6TW8aQmsp7DqFWS40l1+zhSEK/S+98IhvD4LbAI+BvgX5NMlOtO6cxUZwWMGu92J3P1nzypWyxf1E9fj+oeMPblCmSy+Y76ftYiVrs9M9sG9JpZwcy+CPxxssly3agdZyCbT613uxO5vHfaq1FPj2ru/zKfHd6kFohXhzEpaQC4PRzb6WFgKNlkuW6UzmQ55fEjzU5G3Swd7GOgr6fqi9dktuBFUguQRG/vTmvBV6s4OYy/Crc7H5ggGFDwz5NMlOs+U9MF9k7lWd0BAw9GJLF6uPq73Ylc3iu9F2D1cKqmUYLnE03s1Sl9hGo1721MOGveB8zsNcAUMeancK4W+4dd6KwfZLV3u2YW1GF4DqNmo8Mp7nxwT12P2WmjENRq3hyGmRWA0bBIyrnEdOqwC6NLqrvbzeZnKMyY5zAWYHQ4xWPjWQoz9RseJJ3J0iNYNdRZ389qxbmNuQ+4WdImgiIpAMzsY0klynWfTr2DGx1OseUPu2JvH41U6zmM2o0Op5gx2FnHkY/T41lWDqXobfOZIBcqzrfyofCvBxhONjmuW3VywNg5kWO6MEN/b+Uqw4lwLgxvJVW74v4vdQsYHdaCr1ZxhgbxeguXuHQmixRMPNRJoovMY+M5HrescoW+D22+cEn09vaAEYgz495NHDwXN2b2wkRS5LpSejzLysUDse7C20nx3W6sgJH1yZMWKone3ulMlsev9gKWOLcxbyt6PEjQpDYf5+CSNgCfIJhx73Nm9sGS9UcSjHy7PNzmIjO7TtKpwAeBASAHvN3MfhjnNV176tQ7uKiZcHp8Cqg89eyk5zAWbHbE2rAp7EKZGenxLKuXdt73s1pxiqRuLVl0s6QfVdovbJJ7OXAqsB3YLGlTOMte5F3ANWb2KUknEMzOdzSwA/hTM3tI0pMJpnk9PM4JufbUqUNHV3u36zmMhVs80MeSVF/dchi7J6eZLljHNfmuRZwiqZVFT3uAZwKPi3Hsk4Bt0Xzgkq4GzgSKA4YB0fCPywgq1zGz24q22QoMSkqZWTKT9bqm25HJcuxo5w0gMLIkqJOJe/GazWF4K6kFGa2hw+RcOrXJdy3ifCvWnhjCAAAX9ElEQVRvJbiwi6Ao6vfAOTH2Oxx4oOj5duBZJdtcAnxf0gUEw428uMxx/hy4ba5gIek84DyAI488MkayXKsxs44tkkr19bJsUX/8HEbYrNb7YSzMaB3Hk+rUFny1iFMktbbGY5drsFxaeb4RuNLMPirpZOArkp5sZjMAkp4EfAh4yTzpuwK4AmD9+vX1n8jXJW7vvjy5wkzHZvlHh1OzYxFVMpn1HEY9jA6nuPuR+szC4AFjvzjzYbxZ0vKi5yskvSnGsbcTjDsVWUNY5FTkHOAaADO7haBSfSR8nTXAN4HXmtnvYryea1NBhXDn/iCrududyBWQYFG/5zAWoq5FUh4wZsVpw3iume2OnpjZLuDcGPttBtZJWhsOLXIWsKlkm/sJpn5F0vEEASMdBqjvAheb2c0xXsu1sU4fCbSa8aQms3kW9/fS0+U9ihdqdDhFZirP1HRhwcdKj2dJ9fUw7C3XYgWMHhXNYB+2fqrYu8rM8gQj3N4A3E3QGmqrpEslnRFudiFwrqQ7gKuAs83Mwv0eD/yjpNvDv9VVnZlrG9Ed3Orhzhmptlg1I9ZO5Aos9gvTgtWzL0Y6EzSpLboMdq0438wbgGskfZqgDuKNwPVxDm5m1xE0lS1e9u6ix3cBzy2z3/uB98d5Ddf+Oj3LPzqcYjJXCKZerRAMJnN5hrxJ7YLt74uR5YiVixd0rLHMVMfWr1UrTsB4B0ErpL8lqMj+PvC5JBPluks6k2Wgr4elg515Z118t1spYExkCyz2Cu8Fq3U+9XLSmSxrRzqvyXct4nwzFwGfNbNPw2yRVAqYTDJhrnukM1lGl3Rulr94bKOjK1x4JnN5hrxJ7YKtruN4UulMlpPWrqy8YReIU4dxI0HQiCwC/juZ5LhulB7vzD4YkWrK0ydynsOoh5VDA0gLz2Hk8jPsmpxmdEln1q9VK07AGDSz8ehJ+HhhhYLOFenUTnuRqHhkbG/lsY0ms57DqIe+3h5WDQ0sOGA8NtHZ9WvVihMwJiQ9I3oi6ZnAvuSS5LpNpweMFYsH6O1RrOKRiWzecxh1MlKH3t6d3iCjWnG+mX8PfENS1OnuUOBVySXJdZPpwgw7J3Md3Qqlp0eMLIl3tzuRK3grqTqpdj71cjxgHCjO0CCbJT0ROI6gldSvzWw68ZS5rrBzIocZHT909OrhwVgBYzKX934YdbJ6eJDfje1Y0DHGZvsIdfb3M66438zjgBMIemKfKAkz+3JyyXLdYvYOroNzGBCNJzV/HUYuP8N0wTyHUSdRDsPMam6BF30/Vy3prJkgaxVnLKn3AP8a/v0x8GHgjHl3ci6m6CLa6Vn+OONJRUObex1GfYwOp5guGHv21V4gks5kWb64n1SfB3GIV+n9CoLxnh4xs9cBTyPoh+HcgnVLGfHocIod4zlmZuYeUDka2txbSdVHPYYHifoIuUCcgLEvHG48L2kpMAYck2yyXLeIfswjHf6jHB1OUZgxdk3m5twmGtrccxj1UY/e3p3eR6hacQLGlnD02M8STKb0C+DniabKdY10JsvSwT4GO3w47+KxjebiOYz6Gq1Db+9Ob/JdrTitpKK5Lz4t6XpgqZndGa2X9CQz25pUAl1n65Y7uOLikeMPLb+NT55UXwstkpqdCbLDc7/ViJPDmGVm9xUHi9BX6pge12XSmWzHDmtebHWMi9f+HIYHjHpYOthHqq8n9myHpcazefZNFzq+yXc1qgoYc+jMEeNcQ3RLlj+qo5mveGR/KykvkqoHSQuaea9bGmRUox4Bw+fRdjUb65KAMZTqY2igd/4cRtZzGPVWl4DhAw/OqkfAmJOkDZLukbRN0kVl1h8p6SZJt0m6U9LpResuDve7R9JpSabTNcdENs9krtAVAQMqX7w8h1F/1cynXirKDXbL9zOOegSMsu0Ew3kzLgdeStBLfKOkE0o2exfB1K0nEsz5/clw3xPC508CNgCfDI/nOki39PKOVAoYUQ7Dm9XWz0LGk/IiqYPF6el943zLzOzZc+x6ErDNzO41sxxwNXBmyTYGLA0fLwOiAQ7PBK42s6yZ/R7YFh7PdZBuu4OrdPGazOUZ7O+ht8erBetldDjFzokc04WZqvdNZ7L09Yjli/oTSFl7mjNgSBqUtBIYkbRC0srw72jgsBjHPhx4oOj59nBZsUuA10jaTjD39wVV7Bul8zxJWyRtSafTMZLlWkW33cFVKh6ZyOW9SW2dRd+tx8bn7jA5l3Qmy8iSFD0ewGfNl8N4A0FHvSeG/6O//yIoaqqk3LtcWkG+EbjSzNYApwNfkdQTc99godkVZrbezNaPjo7GSJZrFdHFs1tGAl29dJA9+6aZmi6UXT+RLbDYO+3VVdRku5Z6jPR41pvUlpjzdsbMPgF8QtIFZvavNRx7O3BE0fM17C9yipxDUEeBmd0iaRAYibmva3PpTJbeHrFicXeMBBrV1ewYz7JmxcGTVk5kPYdRb/t72E8RlHrHN7Y3y6HLvIVUsTiV3o9IGgaQ9C5J/1k8A988NgPrJK2VNEBQib2pZJv7CQY2RNLxBMOnp8PtzpKUkrQWWIcPR9Jxgiz/QNdk+Sv1PJ7MFbyFVJ0tpLd3t4xCUI04AeMfzSwj6RTgNOBLwKcq7WRmeeB84AbgboLWUFslXSopGh79QuBcSXcAVwFnW2ArcA1wF3A98GYzK5+Pd21rLDPVVT/ISheviVze+2DU2Ug4j0W1AaMwYzzmAeMgcb6d0YX6T4BPmdl/SbokzsHN7DqCyuziZe8uenwX8Nw59v0A8IE4r+PaU3q8u8bpqTQY3mS20DX1OY2S6utl2aL+qpvW7pzIMWPd0yAjrjg5jAclfQb4C+A6SamY+zk3r24ZFiSycmgAqUIOw+sw6q6W3t7d1kcorjgX/r8gKFbaYGa7gZXA2xNNlet4MzPGjvFcVwWM/t4eVi4emL8Ow1tJ1V0tvb27rY9QXBUDhplNEkyadEq4KA/8NslEuc63azJHYca67g5uvrtdbyWVjFp6e3dbH6G44s7p/Q7g4nBRP/DVJBPlOl/0A169tLuaLY4Op8oOt50vzJDNz/iwIAlYPZxibG8Ws/jjpHbLXPPVilMk9XLgDGACwMweAoaTTJTrfN16BzdXDmNy2mfbS8rocIp904XZ+UbiSGeyLEn1eQAvESdg5CwIzQYgaSjZJLluMLa3OysVo+KR0rvdSR/aPDG19MXotgYZccX5dl4TtpJaLulc4PUE83s7V7NurVQcXZIil5/hNZ//GT3a32ExGi7EO+7VX/Qde+vXb2d4MF5A/tWDe1i32gtSSsV590aBa4G9wHHAu4EXJ5ko1/nSmSyL+nu77o76eetGOWnto0yWKR45+ZhVPOPIFU1IVWd76uHLed66EcazecbDedMrOXpkiJc/o+x4p10tzq/1VDN7B/CDaIGkjxJUhDtXk3SmOwd2O+5xw1zzhpObnYyusmxxP18551nNTkZHmDNgSPpb4E3AMZLuLFo1DNycdMJcZ0tnuquXt3OdYL4cxteA7wH/BBRPr5oxs52Jpsp1vPR4liccsqTZyXDOVWG+4c33AHsI5qxwrq7SmSzPPXZVs5PhnKuCjwnlGi6bL7Bn33TXtZByrt15wHAN162d9pxrdx4wXMN5wHCuPXnAcA23f+jo7hpHyrl2l2jAkLRB0j2Stkm6qMz6yyTdHv79RtLuonUflrRV0t2S/kVSd8zj2QW6tZe3c+0usW62knqBy4FTge3AZkmbwln2ADCztxZtfwFwYvj4OQQz8T01XP0T4PnA/ySVXtc46UwWCVaF02c659pDkjmMk4BtZnavmeWAq4Ez59l+I8G83hAMdDgIDAApgiHVH00wra6B0pksKxcP0N/rJaLOtZMkf7GHAw8UPd8eLjuIpKOAtcAPAczsFuAm4OHw7wYzu3uOfc+TtEXSlnQ6Xcfku6T4SKDOtackA0a5Ooe5ZjA5C7jWzAoAkh4PHA+sIQgyL5T0R+V2NLMrzGy9ma0fHR2tQ7Jd0sY8YDjXlpIMGNuBI4qerwEemmPbs9hfHAXBpE0/NbNxMxsnGKLk2Ymk0jWcjyPlXHtKMmBsBtZJWitpgCAobCrdSNJxwArglqLF9wPPl9QnqZ+gwrtskZRrL2ZGetxzGM61o8QChpnlgfOBGwgu9teY2VZJl0o6o2jTjcDVduAUZNcCvwN+CdwB3GFm304qra5x9k7lyeVnPGA414YSnb3GzK4DritZ9u6S55eU2a8AvCHJtLnm8F7ezrUvb9foGmp/L28PGM61Gw8YrqGiXt7dONuec+3OA4ZrKB9Hyrn25QHDNdRYZoqB3h6WLkq0+sw5lwAPGK6hol7ePpakc+3HA4ZrqHQmy4i3kHKuLXnAcA3lvbyda18eMFxD7fBe3s61LQ8YrmHyhRkem8ix2gOGc23JA4ZrmJ0TOcy8l7dz7coDhmuYMR8WxLm25gHDNYyPI+Vce/OA4RrGx5Fyrr15wHANE40j5TkM59qTBwzXMOlMluHBPgb7e5udFOdcDTxguIZJ+1zezrW1RAOGpA2S7pG0TdJFZdZfJun28O83knYXrTtS0vcl3S3pLklHJ5lWl7x0Jut9MJxrY4kNGSqpF7gcOBXYDmyWtMnM7oq2MbO3Fm1/AXBi0SG+DHzAzH4gaQkwk1RaXWOMZaZ4yprlzU6Gc65GSeYwTgK2mdm9ZpYDrgbOnGf7jcBVAJJOAPrM7AcAZjZuZpMJptU1gI8j5Vx7SzJgHA48UPR8e7jsIJKOAtYCPwwXPQHYLek/Jd0m6Z/DHEu5fc+TtEXSlnQ6Xcfku3qayOaZyBW8DsO5NpZkwCg34YHNse1ZwLVmVgif9wHPA94G/C/gGODscjua2RVmtt7M1o+Oji4sxS4xO7xJrXNtL8mAsR04ouj5GuChObY9i7A4qmjf28LirDzwLeAZiaTSNYT38nau/SUZMDYD6yStlTRAEBQ2lW4k6ThgBXBLyb4rJEVZhhcCd5Xu69qH9/J2rv0lFjDCnMH5wA3A3cA1ZrZV0qWSzijadCNwtZlZ0b4FguKoGyX9kqB467NJpdUlL+rlvXqpBwzn2lVizWoBzOw64LqSZe8ueX7JHPv+AHhqYolzDZXOZOntESsWDzQ7Kc65GnlPb9cQY3uzrBoaoLenXFsI51w78IDhGiLtU7M61/Y8YLiG8HGknGt/HjBcQ3gvb+fanwcMl7iZGWOHF0k51/Y8YLjE7d43TX7GPGA41+Y8YLjERZ32Vg8PNjklzrmF8IDhEjeWmQJ8WBDn2p0HDJc4H0fKuc7gAcMlzgOGc53BA4ZLXDqTZVF/L0MDZac0cc61CQ8YLnFRL2/JhwVxrp15wHCJ817eznUGDxgucd7L27nO4AHDJS49nvV5MJzrAB4wXKKy+QK7J6c9h+FcB0g0YEjaIOkeSdskXVRm/WWSbg//fiNpd8n6pZIelPRvSabTJWfHeA7wJrXOdYLEZtyT1AtcDpwKbAc2S9pkZrNzc5vZW4u2vwA4seQw7wN+lFQaXfK8D4ZznSPJHMZJwDYzu9fMcsDVwJnzbL8RuCp6IumZwCHA9xNMo0uYBwznOkeSAeNw4IGi59vDZQeRdBSwFvhh+LwH+Cjw9kovIuk8SVskbUmn0wtOtKsvDxjOdY4kA0a5Xlo2x7ZnAdeaWSF8/ibgOjN7YI7t9x/Q7AozW29m60dHR2tMqktKFDBWDXnAcK7dJVaHQZCjOKLo+RrgoTm2PQt4c9Hzk4HnSXoTsAQYkDRuZgdVnLvWlh6fYuXQAAN93iDPuXaXZMDYDKyTtBZ4kCAo/GXpRpKOA1YAt0TLzOzVRevPBtYnGSze++2t/OS3O5I6fFd7ZM8Uhy73eTCc6wSJBQwzy0s6H7gB6AW+YGZbJV0KbDGzTeGmG4GrzWyu4qrEHbpskHWHLGnWy3e0dYcs4UVPPKTZyXDO1YGaeJ2uu/Xr19uWLVuanQznnGsrkm41s/WVtvOCZeecc7F4wHDOOReLBwznnHOxeMBwzjkXiwcM55xzsXjAcM45F4sHDOecc7F4wHDOORdLR3Xck5QG/lDj7iNAN44P4ufdXbr1vKF7zz3OeR9lZhVHb+2ogLEQkrbE6enYafy8u0u3njd077nX87y9SMo551wsHjCcc87F4gFjvyuanYAm8fPuLt163tC951638/Y6DOecc7F4DsM551wsHjCcc87F4gEDkLRB0j2StknqqHnDJR0h6SZJd0vaKukt4fKVkn4g6bfh/xXhckn6l/C9uFPSM5p7BrWT1CvpNknfCZ+vlfSz8Jy/LmkgXJ4Kn28L1x/dzHQvlKTlkq6V9Ovwcz+5Sz7vt4bf8V9JukrSYCd+5pK+IGlM0q+KllX9+Ur663D730r66ziv3fUBQ1IvcDnwUuAEYKOkE5qbqrrKAxea2fHAs4E3h+d3EXCjma0DbgyfQ/A+rAv/zgM+1fgk181bgLuLnn8IuCw8513AOeHyc4BdZvZ44LJwu3b2CeB6M3si8DSC96CjP29JhwN/B6w3sycTTAt9Fp35mV8JbChZVtXnK2kl8B7gWcBJwHuiIDMvM+vqP+Bk4Iai5xcDFzc7XQme738BpwL3AIeGyw4F7gkffwbYWLT97Hbt9AesCX84LwS+A4igt2tf6edOMO/8yeHjvnA7NfscajzvpcDvS9PfBZ/34cADwMrwM/wOcFqnfubA0cCvav18gY3AZ4qWH7DdXH9dn8Ng/xctsj1c1nHCbPeJwM+AQ8zsYYDw/+pws055Pz4O/AMwEz5fBew2s3z4vPi8Zs85XL8n3L4dHQOkgS+GxXGfkzREh3/eZvYg8BHgfuBhgs/wVrrjM4fqP9+aPncPGMGdZ6mOa2ssaQnwH8Dfm9ne+TYts6yt3g9J/xsYM7NbixeX2dRirGs3fcAzgE+Z2YnABPuLJ8rpiHMPi1POBNYChwFDBMUxpTrxM5/PXOdZ0/l7wAgi6xFFz9cADzUpLYmQ1E8QLP7dzP4zXPyopEPD9YcCY+HyTng/ngucIek+4GqCYqmPA8sl9YXbFJ/X7DmH65cBOxuZ4DraDmw3s5+Fz68lCCCd/HkDvBj4vZmlzWwa+E/gOXTHZw7Vf741fe4eMGAzsC5sTTFAUFG2qclpqhtJAj4P3G1mHytatQmIWkb8NUHdRrT8tWHrimcDe6Ksbrsws4vNbI2ZHU3wef7QzF4N3AS8Itys9Jyj9+IV4fZtebdpZo8AD0g6Llz0IuAuOvjzDt0PPFvS4vA7H513x3/moWo/3xuAl0haEebOXhIum1+zK29a4Q84HfgN8Dvgnc1OT53P7RSCrOadwO3h3+kE5bU3Ar8N/68MtxdBq7HfAb8kaHXS9PNYwPm/APhO+PgY4OfANuAbQCpcPhg+3xauP6bZ6V7gOT8d2BJ+5t8CVnTD5w28F/g18CvgK0CqEz9z4CqCepppgpzCObV8vsDrw/PfBrwuzmv70CDOOedi8SIp55xzsXjAcM45F4sHDOecc7F4wHDOOReLBwznnHOxeMBwrgJJl0h6W63rw21eFmdQy/BYk5JWFy0bry7FziXDA4ZzjfEygtGQ49gBXJhgWpyriQcM58qQ9E4Fc6T8N3BcuOxYSddLulXS/5P0xDL7HbSNpOcAZwD/LOn2cJv5jvUF4FXhENTFxx6S9F1Jd4RzPrwqwbfAuYP0Vd7Eue4i6ZkEQ4qcSPAb+QXByKdXAG80s99KehbwSYJxqoodtI2ZvVDSJoIe59eGr3HjPMcaJwgabyGYsyCyAXjIzP4kPMayep+7c/PxgOHcwZ4HfNPMJgHCi/0gwWB23wiGKgKCoSdmhSMCz7tNFdv9C3C7pI8WLfsl8BFJHyIIPv+vprNzrkYeMJwrr3TMnB6CuRWePs8+cbaJtZ2Z7Zb0NeBNRct+E+Z+Tgf+SdL3zezSCq/lXN14HYZzB/sx8HJJiyQNA38KTAK/l/RKmJ0r+WnFO1kwz8hc22SA4RjbFfsY8AbCGztJhwGTZvZVgsmC2nb+bdeePGA4V8LMfgF8nWBk3/8AoqKfVwPnSLoD2EowYU+puba5Gnh7OAvesXGOZWY7gG+yv7jqKcDPJd0OvBN4/0LP1blq+Gi1zjnnYvEchnPOuVg8YDjnnIvFA4ZzzrlYPGA455yLxQOGc865WDxgOOeci8UDhnPOuVj+f3qgZOlCdym+AAAAAElFTkSuQmCC\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "finished\n" ] } ], "source": [ "print (\"start\")\n", "\n", "# 文本预处理\n", "folder_path = './Database/SogouC/Sample'\n", "\n", "all_words_list, train_data_list, train_class_list, test_data_list, test_class_list = text_processing(folder_path, test_rate=0.2)\n", "\n", "# 生成stopwords_set\n", "stopwords_file = './stopwords_cn.txt'\n", "stopwords_set = make_word_set(stopwords_file)\n", "\n", "# 文本特征提取和分类\n", "flag = 'sklearn'\n", "deleteNs = range(0, 1000, 20)\n", "test_accuracy_list = []\n", "for deleteN in deleteNs:\n", " feature_words = vocab_select(all_words_list, deleteN, stopwords_set)\n", " train_feature_list, test_feature_list = text_features(train_data_list, test_data_list, feature_words, flag)\n", " test_accuracy = text_classifier(train_feature_list, test_feature_list, train_class_list, test_class_list, flag)\n", " test_accuracy_list.append(test_accuracy)\n", "print(test_accuracy_list)\n", "\n", "# 结果评价\n", "plt.figure()\n", "plt.plot(deleteNs, test_accuracy_list)\n", "plt.title('Relationship of deleteNs and test_accuracy')\n", "plt.xlabel('deleteNs')\n", "plt.ylabel('test_accuracy')\n", "plt.show()\n", "#plt.savefig('result.png')\n", "\n", "print (\"finished\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 不同贝叶斯分类的对比" ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [], "source": [ "# 分类\n", "def text_classifier_by_sklearn(train_feature_list, test_feature_list, \n", " train_label_list, test_label_list, sklearn_class_func=MultinomialNB):\n", " # sklearn分类器\n", " classifier = sklearn_class_func().fit(train_feature_list, train_label_list)\n", " # MultinomialNB()的使用方法和参数见:https://www.cnblogs.com/pinard/p/6074222.html\n", " test_accuracy = classifier.score(test_feature_list, test_label_list)\n", " return test_accuracy" ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "总样本数: 90\n", "MultinomialNB Accu: 0.6842105263157895\n", "GaussianNB Accu: 0.631578947368421\n", "ComplementNB Accu: 0.6842105263157895\n", "BernoulliNB Accu: 0.6842105263157895\n" ] } ], "source": [ "\n", "# 文本预处理\n", "folder_path = './Database/SogouC/Sample'\n", "\n", "all_words_list, train_data_list, train_class_list, test_data_list, test_class_list = text_processing(folder_path, test_rate=0.2)\n", "\n", "# 生成stopwords_set\n", "stopwords_file = './stopwords_cn.txt'\n", "stopwords_set = make_word_set(stopwords_file)\n", "\n", "deleteN = 20\n", "feature_words = vocab_select(all_words_list, deleteN, stopwords_set)\n", "train_feature_list, test_feature_list = text_features(train_data_list, test_data_list, feature_words, flag)\n", "\n", "name_func_dict = {\n", " \"MultinomialNB\": MultinomialNB,\n", " \"GaussianNB\": GaussianNB, \n", " \"ComplementNB\": ComplementNB, \n", " \"BernoulliNB\": ComplementNB,\n", "}\n", "\n", "for func_name, func in name_func_dict.items():\n", " test_accuracy = text_classifier_by_sklearn(train_feature_list, test_feature_list, \n", " train_class_list, test_class_list, sklearn_class_func=func)\n", " print(\"{} Accu: {}\".format(func_name, test_accuracy)) \n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P001-Naive-Bayes-Text-Classifier/stopwords_cn.txt ================================================ 的 一 不 在 人 有 是 为 以 于 上 他 而 后 之 来 及 了 因 下 可 到 由 这 与 也 此 但 并 个 其 已 无 小 我 们 起 最 再 今 去 好 只 又 或 很 亦 某 把 那 你 乃 它 怎么 任何 连同 开外 再有 哪些 甚至于 又及 当然 就是 遵照 以来 赖以 否则 此间 后者 按照 才是 自身 再则 就算 即便 有些 例如 它们 虽然 为此 以免 别处 我们 依据 趁着 就要 各位 别的 前者 不外乎 虽说 除此 个别 的话 甚而 那般 譬如 作为 谁人 进而 那边 首先 因此 怎么样 果然 除非 以上 为何 要么 随时 如果说 诸如 还是 一旦 基于 本人 因而 继而 不单 此时 等等 截至 不但 故而 全体 从此 对于 朝着 怎样 以为 那儿 或是 本身 况且 处在 吧 不至于 那个 被 诸位 从而 比 各自 针对 此外 何处 为了 这般 别 仍旧 既然 反而 关于 较之 不管 趁 彼时 这边 不光 宁可 要是 其他 其它 由于 还要 经过 不过 来说 当 从 除了 到 既是 的确 得 说来 打 据此 只限于 什么的 还有 只怕 不尽 多会 正巧 凡 为什么 以至 以致 某个 与否 凭借 儿 不仅 尔 两者 该 另外 一来 正如 那里 不尽然 毋宁 这儿 嘿嘿 就是说 正是 既往 随着 于是 各 给 跟 那么 而后 和 何 似的 不料 其余 或者 介于 别人 还 这个 受到 只是 即使 即 几 不论 本着 既 及至 加以 多么 其中 别说 这会 依照 人们 如此 个人 出来 看 另一方面 唯有 据 距 靠 接着 何况 啦 加之 至今 凡是 他们 一切 那时 只限 不然 许多 在于 了 某某 除外 来自 便于 同时 只消 只需 不如 只要 另 并不 不仅仅 这里 么 总之 因为 每 固然 们 不是 嘛 或者说 然而 假如 如何 这么 可见 如果 拿 简言之 多少 哪 那 光是 非但 呵呵 只有 只因 连带 正值 沿着 哪儿 他人 若非 怎么办 她们 您 凭 而且 与其 如同下 有的 那些 甚至 为止 无论 鉴于 嘻嘻 哪个 然后 直到 且 却 并非 对比 为着 一些 让 何时 仍 啥 而是 自从 比如 之所以 如 你们 若 使 那样 所以 得了 谁 当地 有关 所有 因之 用来 虽 随 所在 同 对待 而外 分别 所 她 某些 对方 哇 嗡 往 哪 不只 但是 全部 尽管 些 大家 以便 自己 可是 反之 这些 向 什么 由此 万一 而已 何以 咱们 沿 值此 向着 哪怕 倘若 出于 哟 如上 如若 替代 用 什么样 如是 照着 此处 于 这样 每当 咱 此次 至于 则 怎 曾 至 致 此地 要不然 逐步 格里斯 本地 着 诸 要不 自 其次 尽管如此 遵循 乃至 若是 并且 如下 可以 才能 以及 彼此 根据 随后 有时 ================================================ FILE: P001-Naive-Bayes-Text-Classifier/朴素贝叶斯新闻分类.html ================================================ 朴素贝叶斯新闻分类

朴素贝叶斯与应用

by 寒小阳(hanxiaoyang.ml@gmail.com)

贝叶斯理论简单回顾

在我们有一大堆样本(包含特征类别)的时候,我们非常容易通过统计得到 $p(特征|类别)$.

大家又都很熟悉下述公式:

$$p(x)p(y|x) = p(y)p(x|y)$$

所以做一个小小的变换

$$p(特征)p(类别|特征) = p(类别)p(特征|类别)$$$$p(类别|特征) = \frac{p(类别)p(特征|类别)}{p(特征)}$$

独立假设

看起来很简单,但实际上,你的特征可能是很多维的

$$p(features|class) = p({f_0, f_1, \ldots ,f_n}|c)$$

就算是2个维度吧,可以简单写成

$$p({f_0, f_1}|c) = p(f_1|c, f_0)p(f_0|c)$$

这时候我们加一个特别牛逼的假设:特征之间是独立的。这样就得到了

$$p({f_0, f_1}|c) = p(f_1|c)p(f_0|c)$$

其实也就是:

$$p({f_0, f_1, \ldots, f_n}|c) = \Pi^n_i p(f_i|c)$$

贝叶斯分类器

OK,回到机器学习,其实我们就是对每个类别计算一个概率$p(c_i)$,然后再计算所有特征的条件概率$p(f_j|c_i)$,那么分类的时候我们就是依据贝叶斯找一个最可能的类别:

$$p(class_i|{f_0, f_1, \ldots, f_n})= \frac{p(class_i)}{p({f_0, f_1, \ldots, f_n})} \Pi^n_j p(f_j|c_i)$$

文本分类问题

下面我们来看一个文本分类问题,经典的新闻主题分类,用朴素贝叶斯怎么做。

In [2]:
#coding: utf-8
import os
import time
import random
import jieba  #处理中文
#import nltk  #处理英文
import sklearn
from sklearn.naive_bayes import MultinomialNB
import numpy as np
import pylab as pl
import matplotlib.pyplot as plt
In [4]:
#粗暴的词去重
def make_word_set(words_file):
    words_set = set()
    with open(words_file, 'r') as fp:
        for line in fp.readlines():
            word = line.strip().decode("utf-8")
            if len(word)>0 and word not in words_set: # 去重
                words_set.add(word)
    return words_set
In [5]:
# 文本处理,也就是样本生成过程
def text_processing(folder_path, test_size=0.2):
    folder_list = os.listdir(folder_path)
    data_list = []
    class_list = []

    # 遍历文件夹
    for folder in folder_list:
        new_folder_path = os.path.join(folder_path, folder)
        files = os.listdir(new_folder_path)
        # 读取文件
        j = 1
        for file in files:
            if j > 100: # 怕内存爆掉,只取100个样本文件,你可以注释掉取完
                break
            with open(os.path.join(new_folder_path, file), 'r') as fp:
               raw = fp.read()
            ## 是的,随处可见的jieba中文分词
            jieba.enable_parallel(4) # 开启并行分词模式,参数为并行进程数,不支持windows
            word_cut = jieba.cut(raw, cut_all=False) # 精确模式,返回的结构是一个可迭代的genertor
            word_list = list(word_cut) # genertor转化为list,每个词unicode格式
            jieba.disable_parallel() # 关闭并行分词模式
            
            data_list.append(word_list) #训练集list
            class_list.append(folder.decode('utf-8')) #类别
            j += 1
    
    ## 粗暴地划分训练集和测试集
    data_class_list = zip(data_list, class_list)
    random.shuffle(data_class_list)
    index = int(len(data_class_list)*test_size)+1
    train_list = data_class_list[index:]
    test_list = data_class_list[:index]
    train_data_list, train_class_list = zip(*train_list)
    test_data_list, test_class_list = zip(*test_list)
    
    #其实可以用sklearn自带的部分做
    #train_data_list, test_data_list, train_class_list, test_class_list = sklearn.cross_validation.train_test_split(data_list, class_list, test_size=test_size)
    

    # 统计词频放入all_words_dict
    all_words_dict = {}
    for word_list in train_data_list:
        for word in word_list:
            if all_words_dict.has_key(word):
                all_words_dict[word] += 1
            else:
                all_words_dict[word] = 1

    # key函数利用词频进行降序排序
    all_words_tuple_list = sorted(all_words_dict.items(), key=lambda f:f[1], reverse=True) # 内建函数sorted参数需为list
    all_words_list = list(zip(*all_words_tuple_list)[0])

    return all_words_list, train_data_list, test_data_list, train_class_list, test_class_list
In [6]:
def words_dict(all_words_list, deleteN, stopwords_set=set()):
    # 选取特征词
    feature_words = []
    n = 1
    for t in range(deleteN, len(all_words_list), 1):
        if n > 1000: # feature_words的维度1000
            break
            
        if not all_words_list[t].isdigit() and all_words_list[t] not in stopwords_set and 1<len(all_words_list[t])<5:
            feature_words.append(all_words_list[t])
            n += 1
    return feature_words
In [7]:
# 文本特征
def text_features(train_data_list, test_data_list, feature_words, flag='nltk'):
    def text_features(text, feature_words):
        text_words = set(text)
        ## -----------------------------------------------------------------------------------
        if flag == 'nltk':
            ## nltk特征 dict
            features = {word:1 if word in text_words else 0 for word in feature_words}
        elif flag == 'sklearn':
            ## sklearn特征 list
            features = [1 if word in text_words else 0 for word in feature_words]
        else:
            features = []
        ## -----------------------------------------------------------------------------------
        return features
    train_feature_list = [text_features(text, feature_words) for text in train_data_list]
    test_feature_list = [text_features(text, feature_words) for text in test_data_list]
    return train_feature_list, test_feature_list
In [8]:
# 分类,同时输出准确率等
def text_classifier(train_feature_list, test_feature_list, train_class_list, test_class_list, flag='nltk'):
    ## -----------------------------------------------------------------------------------
    if flag == 'nltk':
        ## 使用nltk分类器
        train_flist = zip(train_feature_list, train_class_list)
        test_flist = zip(test_feature_list, test_class_list)
        classifier = nltk.classify.NaiveBayesClassifier.train(train_flist)
        test_accuracy = nltk.classify.accuracy(classifier, test_flist)
    elif flag == 'sklearn':
        ## sklearn分类器
        classifier = MultinomialNB().fit(train_feature_list, train_class_list)
        test_accuracy = classifier.score(test_feature_list, test_class_list)
    else:
        test_accuracy = []
    return test_accuracy
In [13]:
print "start"

## 文本预处理
folder_path = './Database/SogouC/Sample'
all_words_list, train_data_list, test_data_list, train_class_list, test_class_list = text_processing(folder_path, test_size=0.2)

# 生成stopwords_set
stopwords_file = './stopwords_cn.txt'
stopwords_set = make_word_set(stopwords_file)

## 文本特征提取和分类
# flag = 'nltk'
flag = 'sklearn'
deleteNs = range(0, 1000, 20)
test_accuracy_list = []
for deleteN in deleteNs:
    # feature_words = words_dict(all_words_list, deleteN)
    feature_words = words_dict(all_words_list, deleteN, stopwords_set)
    train_feature_list, test_feature_list = text_features(train_data_list, test_data_list, feature_words, flag)
    test_accuracy = text_classifier(train_feature_list, test_feature_list, train_class_list, test_class_list, flag)
    test_accuracy_list.append(test_accuracy)
print test_accuracy_list

# 结果评价
#plt.figure()
plt.plot(deleteNs, test_accuracy_list)
plt.title('Relationship of deleteNs and test_accuracy')
plt.xlabel('deleteNs')
plt.ylabel('test_accuracy')
plt.show()
#plt.savefig('result.png')

print "finished"
start
[0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.68421052631578949, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.52631578947368418, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.57894736842105265, 0.68421052631578949, 0.57894736842105265, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.68421052631578949, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102]
finished
================================================ FILE: P002-Pytorch-Two-Layers-Neural-Net/two_layer_neural_net.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## pytorch实现两层神经网络\n", "- 文档:https://pytorch.org/docs/torch" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'1.0.1'" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.__version__" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 用numpy实现两层神经网络\n", "一个全连接ReLU神经网络,一个隐藏层,没有bias。用来从x预测y,使用L2 Loss。\n", "- $h = W_1X$\n", "- $a = max(0, h)$\n", "- $y_{hat} = W_2a$\n", "\n", "这一实现完全使用numpy来计算前向神经网络,loss,和反向传播。\n", "- forward pass\n", "- loss\n", "- backward pass\n", "\n", "numpy ndarray是一个普通的n维array。它不知道任何关于深度学习或者梯度(gradient)的知识,也不知道计算图(computation graph),只是一种用来计算数学运算的数据结构。" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "import numpy as np" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "训练集维度: 1000\n", "itor: 0 | loss:36379916.30562085\n", "itor: 50 | loss:11522.84048949815\n", "itor: 100 | loss:312.54151381266536\n", "itor: 150 | loss:13.699522200570192\n", "itor: 200 | loss:0.7797040963869617\n", "itor: 250 | loss:0.05274861775962181\n", "itor: 300 | loss:0.004007803190526088\n", "itor: 350 | loss:0.00032858051495920253\n", "itor: 400 | loss:2.82897568570412e-05\n", "itor: 450 | loss:2.5142220375801123e-06\n", "itor: 500 | loss:2.2822002515655443e-07\n" ] } ], "source": [ "# 样本个数,输入维度,hinton, 输出维度\n", "N, D_in, H, D_out = 64, 1000, 100, 10\n", "\n", "# 随机创建一些训练数据\n", "x = np.random.randn(N, D_in)\n", "y = np.random.randn(N, D_out)\n", "print(\"训练集维度:\", len(x[1]))\n", "\n", "w1 = np.random.randn(D_in, H)\n", "w2 = np.random.randn(H, D_out)\n", "\n", "learning_rate = 1e-6\n", "for it in range(501):\n", " # 向前传播\n", " h = x.dot(w1) # N * H\n", " # X 与 Y 逐位比较取其大者, 至少接收两个参数\n", " h_relu = np.maximum(h, 0) # N * H\n", " y_pred = h_relu.dot(w2) # N * D_out\n", " \n", " # 计算损失\n", " loss = np.square(y_pred - y).sum()\n", " # print(it, loss)\n", " \n", " # 反向传播\n", " # 计算梯度\n", " grad_y_pred = 2.0 * (y_pred - y) # N * D_out\n", " grad_w2 = h_relu.T.dot(grad_y_pred)\n", " grad_h_relu = grad_y_pred.dot(w2.T)\n", " grad_h = grad_h_relu.copy()\n", " grad_h[h<0] = 0\n", " grad_w1 = x.T.dot(grad_h)\n", " \n", " # update weights of w1 and w2\n", " w1 -= learning_rate * grad_w1\n", " w2 -= learning_rate * grad_w2\n", " if it % 50 == 0:\n", " print(\"itor: {} | loss:{}\".format(it, loss))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## PyTorch: Tensors\n", "- 使用PyTorch tensors来创建前向神经网络,计算损失,以及反向传播。\n", "- 一个PyTorch Tensor很像一个numpy的ndarray。但是它和numpy ndarray最大的区别是,PyTorch Tensor可以在CPU或者GPU上运算。如果想要在GPU上运算,就需要把Tensor换成cuda类型。" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "itor: 0 | loss:26421104.0\n", "itor: 50 | loss:8897.6162109375\n", "itor: 100 | loss:248.85116577148438\n", "itor: 150 | loss:12.546610832214355\n", "itor: 200 | loss:0.842868447303772\n", "itor: 250 | loss:0.06756731867790222\n", "itor: 300 | loss:0.006269404664635658\n", "itor: 350 | loss:0.0008211490930989385\n", "itor: 400 | loss:0.0001843837380874902\n", "itor: 450 | loss:6.254202889977023e-05\n", "itor: 500 | loss:2.910074545070529e-05\n" ] } ], "source": [ "N, D_in, H, D_out = 64, 1000, 100, 10\n", "\n", "# 随机创建一些训练数据\n", "x = torch.randn(N, D_in)\n", "y = torch.randn(N, D_out)\n", "\n", "w1 = torch.randn(D_in, H)\n", "w2 = torch.randn(H, D_out)\n", "\n", "learning_rate = 1e-6\n", "for it in range(501):\n", " # Forward pass\n", " h = x.mm(w1) # N * H\n", " # clamp(min=x)小于x的等于x,>x等于本身\n", " h_relu = h.clamp(min=0) # N * H\n", " y_pred = h_relu.mm(w2) # N * D_out\n", " \n", " # compute loss\n", " loss = (y_pred - y).pow(2).sum().item()\n", " \n", " # Backward pass\n", " # compute the gradient\n", " grad_y_pred = 2.0 * (y_pred - y)\n", " ## mm是点乘\n", " grad_w2 = h_relu.t().mm(grad_y_pred)\n", " grad_h_relu = grad_y_pred.mm(w2.t())\n", " grad_h = grad_h_relu.clone()\n", " grad_h[h<0] = 0\n", " grad_w1 = x.t().mm(grad_h)\n", " \n", " # update weights of w1 and w2\n", " w1 -= learning_rate * grad_w1\n", " w2 -= learning_rate * grad_w2\n", " if it % 50 == 0:\n", " print(\"itor: {} | loss:{}\".format(it, loss))" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-1, 2, 3]])" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "a = torch.tensor([[-1,2,3]])\n", "a" ] }, { "cell_type": "code", "execution_count": 45, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0, 2, 3]])" ] }, "execution_count": 45, "metadata": {}, "output_type": "execute_result" } ], "source": [ "h_relu = a.clamp(min=0)\n", "h_relu" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## PyTorch: nn\n", "\n", "- 这次我们使用PyTorch中nn这个库来构建网络。\n", "- 用PyTorch autograd来构建计算图和计算gradients,\n", "- 然后PyTorch会帮我们自动计算gradient。" ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "itor: 0 | loss:34639348.0\n", "itor: 50 | loss:14032.80859375\n", "itor: 100 | loss:599.4075927734375\n", "itor: 150 | loss:46.61559295654297\n", "itor: 200 | loss:4.714935302734375\n", "itor: 250 | loss:0.5426292419433594\n", "itor: 300 | loss:0.06672129034996033\n", "itor: 350 | loss:0.00874057225883007\n", "itor: 400 | loss:0.0014095803489908576\n", "itor: 450 | loss:0.00035330350510776043\n", "itor: 500 | loss:0.0001314057590207085\n" ] } ], "source": [ "import torch.nn as nn\n", "\n", "N, D_in, H, D_out = 64, 1000, 100, 10\n", "\n", "# 随机创建一些训练数据\n", "x = torch.randn(N, D_in)\n", "y = torch.randn(N, D_out)\n", "\n", "model = torch.nn.Sequential(\n", " torch.nn.Linear(D_in, H, bias=False), # w_1 * x + b_1\n", " torch.nn.ReLU(),\n", " torch.nn.Linear(H, D_out, bias=False),\n", ")\n", "\n", "torch.nn.init.normal_(model[0].weight)\n", "torch.nn.init.normal_(model[2].weight)\n", "\n", "# model = model.cuda()\n", "\n", "loss_fn = nn.MSELoss(reduction='sum')\n", "\n", "learning_rate = 1e-6\n", "for it in range(501):\n", " # Forward pass\n", " y_pred = model(x) # model.forward() \n", " \n", " # compute loss\n", " loss = loss_fn(y_pred, y) # computation graph\n", "# print(it, loss.item())\n", " \n", " # Backward pass\n", " loss.backward()\n", " \n", " # update weights of w1 and w2\n", " with torch.no_grad():\n", " for param in model.parameters(): # param (tensor, grad)\n", " param -= learning_rate * param.grad\n", " \n", " model.zero_grad()\n", " if it % 50 == 0:\n", " print(\"itor: {} | loss:{}\".format(it, loss))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## PyTorch: optim\n", "\n", "- 这一次我们不再手动更新模型的weights,而是使用optim这个包来帮助我们更新参数。\n", "- optim这个package提供了各种不同的模型优化方法,包括SGD+momentum, RMSProp, Adam等等。" ] }, { "cell_type": "code", "execution_count": 50, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "itor: 0 | loss:25604472.0\n", "itor: 50 | loss:13182.306640625\n", "itor: 100 | loss:355.7388916015625\n", "itor: 150 | loss:17.296062469482422\n", "itor: 200 | loss:1.1180250644683838\n", "itor: 250 | loss:0.08529026061296463\n", "itor: 300 | loss:0.0075076608918607235\n", "itor: 350 | loss:0.0009207671391777694\n", "itor: 400 | loss:0.0002065193111775443\n", "itor: 450 | loss:7.471397111658007e-05\n" ] } ], "source": [ "import torch.nn as nn\n", "\n", "N, D_in, H, D_out = 64, 1000, 100, 10\n", "\n", "# 随机创建一些训练数据\n", "x = torch.randn(N, D_in)\n", "y = torch.randn(N, D_out)\n", "\n", "model = torch.nn.Sequential(\n", " torch.nn.Linear(D_in, H, bias=False), # w_1 * x + b_1\n", " torch.nn.ReLU(),\n", " torch.nn.Linear(H, D_out, bias=False),\n", ")\n", "\n", "torch.nn.init.normal_(model[0].weight)\n", "torch.nn.init.normal_(model[2].weight)\n", "\n", "# model = model.cuda()\n", "\n", "loss_fn = nn.MSELoss(reduction='sum')\n", "# learning_rate = 1e-4\n", "# optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\n", "\n", "learning_rate = 1e-6\n", "optimizer = torch.optim.SGD(model.parameters(), lr=learning_rate)\n", "\n", "for it in range(500):\n", " # Forward pass\n", " y_pred = model(x) # model.forward() \n", " \n", " # compute loss\n", " loss = loss_fn(y_pred, y) # computation graph\n", "# print(it, loss.item())\n", "\n", " optimizer.zero_grad()\n", " # Backward pass\n", " loss.backward()\n", " \n", " # update model parameters\n", " optimizer.step()\n", " if it % 50 == 0:\n", " print(\"itor: {} | loss:{}\".format(it, loss))\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "PyTorch: 自定义 nn Modules\n", "--------------------------\n", "\n", "我们可以定义一个模型,这个模型继承自nn.Module类。如果需要定义一个比Sequential模型更加复杂的模型,就需要定义nn.Module模型。" ] }, { "cell_type": "code", "execution_count": 51, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "0 733.0379028320312\n", "itor: 0 | loss:733.0379028320312\n", "1 715.0055541992188\n", "2 697.4888916015625\n", "3 680.5151977539062\n", "4 664.1006469726562\n", "5 648.2057495117188\n", "6 632.8078002929688\n", "7 617.8178100585938\n", "8 603.2796020507812\n", "9 589.1598510742188\n", "10 575.4701538085938\n", "11 562.09765625\n", "12 549.1077270507812\n", "13 536.4368286132812\n", "14 524.1356201171875\n", "15 512.1729736328125\n", "16 500.55474853515625\n", "17 489.3145446777344\n", "18 478.4518127441406\n", "19 467.8425598144531\n", "20 457.54962158203125\n", "21 447.5525817871094\n", "22 437.77862548828125\n", "23 428.2828674316406\n", "24 419.04010009765625\n", "25 410.01165771484375\n", "26 401.2219543457031\n", "27 392.6513977050781\n", "28 384.2953796386719\n", "29 376.14251708984375\n", "30 368.1478576660156\n", "31 360.3475036621094\n", "32 352.6905517578125\n", "33 345.2397766113281\n", "34 337.96453857421875\n", "35 330.8605041503906\n", "36 323.9277648925781\n", "37 317.14654541015625\n", "38 310.4918212890625\n", "39 303.96148681640625\n", "40 297.5679016113281\n", "41 291.3141174316406\n", "42 285.1827087402344\n", "43 279.1679992675781\n", "44 273.2625732421875\n", "45 267.4571228027344\n", "46 261.7709655761719\n", "47 256.1896667480469\n", "48 250.71438598632812\n", "49 245.3334503173828\n", "50 240.03909301757812\n", "itor: 50 | loss:240.03909301757812\n", "51 234.8412322998047\n", "52 229.7264404296875\n", "53 224.70428466796875\n", "54 219.77076721191406\n", "55 214.94232177734375\n", "56 210.19667053222656\n", "57 205.53404235839844\n", "58 200.95599365234375\n", "59 196.4488067626953\n", "60 192.01954650878906\n", "61 187.6593780517578\n", "62 183.37176513671875\n", "63 179.15797424316406\n", "64 175.02517700195312\n", "65 170.9685516357422\n", "66 166.99330139160156\n", "67 163.08091735839844\n", "68 159.24078369140625\n", "69 155.4721221923828\n", "70 151.7720184326172\n", "71 148.15354919433594\n", "72 144.6126251220703\n", "73 141.1290283203125\n", "74 137.70669555664062\n", "75 134.35499572753906\n", "76 131.06094360351562\n", "77 127.82689666748047\n", "78 124.64949035644531\n", "79 121.52757263183594\n", "80 118.46273040771484\n", "81 115.45610809326172\n", "82 112.50567626953125\n", "83 109.60916137695312\n", "84 106.76937866210938\n", "85 103.97940826416016\n", "86 101.2391128540039\n", "87 98.5517578125\n", "88 95.91950988769531\n", "89 93.336181640625\n", "90 90.8083267211914\n", "91 88.32605743408203\n", "92 85.8914566040039\n", "93 83.5086669921875\n", "94 81.17327117919922\n", "95 78.8879623413086\n", "96 76.6518783569336\n", "97 74.46295166015625\n", "98 72.324951171875\n", "99 70.23460388183594\n", "100 68.19005584716797\n", "itor: 100 | loss:68.19005584716797\n", "101 66.19355773925781\n", "102 64.2402572631836\n", "103 62.33251953125\n", "104 60.46738815307617\n", "105 58.646697998046875\n", "106 56.868186950683594\n", "107 55.13227844238281\n", "108 53.44150924682617\n", "109 51.79106140136719\n", "110 50.182125091552734\n", "111 48.614463806152344\n", "112 47.08914566040039\n", "113 45.599822998046875\n", "114 44.148719787597656\n", "115 42.73536682128906\n", "116 41.35887908935547\n", "117 40.017032623291016\n", "118 38.711524963378906\n", "119 37.4423828125\n", "120 36.207462310791016\n", "121 35.00621795654297\n", "122 33.836585998535156\n", "123 32.700279235839844\n", "124 31.596023559570312\n", "125 30.52574348449707\n", "126 29.485641479492188\n", "127 28.475622177124023\n", "128 27.494762420654297\n", "129 26.542402267456055\n", "130 25.618410110473633\n", "131 24.72108268737793\n", "132 23.8505802154541\n", "133 23.007007598876953\n", "134 22.188146591186523\n", "135 21.395854949951172\n", "136 20.62778091430664\n", "137 19.88361358642578\n", "138 19.163785934448242\n", "139 18.465486526489258\n", "140 17.789155960083008\n", "141 17.13450050354004\n", "142 16.501205444335938\n", "143 15.88807201385498\n", "144 15.295546531677246\n", "145 14.722426414489746\n", "146 14.168596267700195\n", "147 13.63260555267334\n", "148 13.114553451538086\n", "149 12.614130020141602\n", "150 12.131239891052246\n", "itor: 150 | loss:12.131239891052246\n", "151 11.66529655456543\n", "152 11.215197563171387\n", "153 10.780630111694336\n", "154 10.361506462097168\n", "155 9.956844329833984\n", "156 9.566601753234863\n", "157 9.1907320022583\n", "158 8.828181266784668\n", "159 8.478806495666504\n", "160 8.142232894897461\n", "161 7.8181891441345215\n", "162 7.506022930145264\n", "163 7.2052321434021\n", "164 6.91557502746582\n", "165 6.636617660522461\n", "166 6.368254661560059\n", "167 6.110063552856445\n", "168 5.8614606857299805\n", "169 5.622430801391602\n", "170 5.392721176147461\n", "171 5.171601295471191\n", "172 4.959075927734375\n", "173 4.7549896240234375\n", "174 4.559126853942871\n", "175 4.3705878257751465\n", "176 4.189553260803223\n", "177 4.015899658203125\n", "178 3.8490376472473145\n", "179 3.689058780670166\n", "180 3.5353012084960938\n", "181 3.387801170349121\n", "182 3.2462048530578613\n", "183 3.110319137573242\n", "184 2.97992205619812\n", "185 2.854776382446289\n", "186 2.734652280807495\n", "187 2.6196062564849854\n", "188 2.509150743484497\n", "189 2.4034101963043213\n", "190 2.301755905151367\n", "191 2.2043099403381348\n", "192 2.110752820968628\n", "193 2.021108388900757\n", "194 1.9352127313613892\n", "195 1.852871060371399\n", "196 1.7738977670669556\n", "197 1.6982849836349487\n", "198 1.625936508178711\n", "199 1.5565831661224365\n", "200 1.4901046752929688\n", "itor: 200 | loss:1.4901046752929688\n", "201 1.426509141921997\n", "202 1.3656851053237915\n", "203 1.307332158088684\n", "204 1.2515028715133667\n", "205 1.1980562210083008\n", "206 1.14688241481781\n", "207 1.0978437662124634\n", "208 1.0508701801300049\n", "209 1.0059775114059448\n", "210 0.9629369974136353\n", "211 0.921754002571106\n", "212 0.882357656955719\n", "213 0.8445923924446106\n", "214 0.8084595799446106\n", "215 0.7739132642745972\n", "216 0.740837812423706\n", "217 0.7091805338859558\n", "218 0.6788672804832458\n", "219 0.6498571038246155\n", "220 0.6220843195915222\n", "221 0.5954957008361816\n", "222 0.5700555443763733\n", "223 0.5457085371017456\n", "224 0.5224031805992126\n", "225 0.5000970363616943\n", "226 0.47873106598854065\n", "227 0.45830944180488586\n", "228 0.4387199580669403\n", "229 0.4199889600276947\n", "230 0.40207639336586\n", "231 0.38491538166999817\n", "232 0.36848723888397217\n", "233 0.3527631163597107\n", "234 0.33773520588874817\n", "235 0.3233593702316284\n", "236 0.3095877170562744\n", "237 0.2964196503162384\n", "238 0.28382357954978943\n", "239 0.2717515230178833\n", "240 0.26019781827926636\n", "241 0.24913620948791504\n", "242 0.2385556846857071\n", "243 0.22840794920921326\n", "244 0.21870805323123932\n", "245 0.20940563082695007\n", "246 0.20050184428691864\n", "247 0.19198377430438995\n", "248 0.1838187426328659\n", "249 0.17600645124912262\n", "250 0.16852475702762604\n", "itor: 250 | loss:0.16852475702762604\n", "251 0.16135680675506592\n", "252 0.15449529886245728\n", "253 0.14792171120643616\n", "254 0.14162664115428925\n", "255 0.13559795916080475\n", "256 0.12982532382011414\n", "257 0.12429676204919815\n", "258 0.11900199949741364\n", "259 0.11392949521541595\n", "260 0.10907794535160065\n", "261 0.10443369299173355\n", "262 0.09998496621847153\n", "263 0.0957256481051445\n", "264 0.09164328873157501\n", "265 0.087736114859581\n", "266 0.08399540185928345\n", "267 0.08040788024663925\n", "268 0.07697564363479614\n", "269 0.07368747144937515\n", "270 0.07053933292627335\n", "271 0.06752251833677292\n", "272 0.06463374197483063\n", "273 0.061865806579589844\n", "274 0.05921589583158493\n", "275 0.05668210983276367\n", "276 0.0542558878660202\n", "277 0.05193295702338219\n", "278 0.04970851540565491\n", "279 0.0475761853158474\n", "280 0.04553404077887535\n", "281 0.04357927292585373\n", "282 0.041706398129463196\n", "283 0.0399136021733284\n", "284 0.03819454833865166\n", "285 0.036549121141433716\n", "286 0.03497181087732315\n", "287 0.0334622897207737\n", "288 0.032016571611166\n", "289 0.030631322413682938\n", "290 0.02930576354265213\n", "291 0.02803533524274826\n", "292 0.026819124817848206\n", "293 0.025654619559645653\n", "294 0.024539165198802948\n", "295 0.02347114495933056\n", "296 0.022448502480983734\n", "297 0.02146925777196884\n", "298 0.020531175658106804\n", "299 0.01963333785533905\n", "300 0.01877356879413128\n", "itor: 300 | loss:0.01877356879413128\n", "301 0.017950711771845818\n", "302 0.01716262847185135\n", "303 0.016408631578087807\n", "304 0.01568690501153469\n", "305 0.01499559823423624\n", "306 0.014334158971905708\n", "307 0.013700740411877632\n", "308 0.013094576075673103\n", "309 0.012514401227235794\n", "310 0.011959209106862545\n", "311 0.011427808552980423\n", "312 0.010919475927948952\n", "313 0.010433000512421131\n", "314 0.009967455640435219\n", "315 0.00952212419360876\n", "316 0.009096047841012478\n", "317 0.008688473142683506\n", "318 0.008298458531498909\n", "319 0.007925556041300297\n", "320 0.00756881246343255\n", "321 0.007227570749819279\n", "322 0.006901302374899387\n", "323 0.00658924225717783\n", "324 0.00629085348919034\n", "325 0.006005675531923771\n", "326 0.005732644349336624\n", "327 0.005471854005008936\n", "328 0.005222533363848925\n", "329 0.004984118975698948\n", "330 0.0047562927938997746\n", "331 0.004538547247648239\n", "332 0.004330404102802277\n", "333 0.004131576512008905\n", "334 0.003941478207707405\n", "335 0.0037598349153995514\n", "336 0.0035863355733454227\n", "337 0.0034205319825559855\n", "338 0.0032621929422020912\n", "339 0.003110914258286357\n", "340 0.0029663697350770235\n", "341 0.0028283866122365\n", "342 0.0026965574361383915\n", "343 0.0025706575252115726\n", "344 0.0024504426401108503\n", "345 0.002335740951821208\n", "346 0.002226143376901746\n", "347 0.002121537923812866\n", "348 0.0020216854754835367\n", "349 0.0019263827707618475\n", "350 0.0018354194471612573\n", "itor: 350 | loss:0.0018354194471612573\n", "351 0.0017486372962594032\n", "352 0.0016657868400216103\n", "353 0.0015867657493799925\n", "354 0.0015113611007109284\n", "355 0.0014393865130841732\n", "356 0.0013707540929317474\n", "357 0.00130530446767807\n", "358 0.0012428824556991458\n", "359 0.0011833207681775093\n", "360 0.001126525574363768\n", "361 0.0010723703308030963\n", "362 0.0010207598097622395\n", "363 0.000971512752585113\n", "364 0.0009245909750461578\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "365 0.0008798656053841114\n", "366 0.0008372166194021702\n", "367 0.0007965742261148989\n", "368 0.0007578626973554492\n", "369 0.0007209571776911616\n", "370 0.0006857806001789868\n", "371 0.000652278249617666\n", "372 0.0006203744560480118\n", "373 0.0005900075775571167\n", "374 0.0005610770895145833\n", "375 0.0005335356690920889\n", "376 0.0005072933272458613\n", "377 0.0004823018389288336\n", "378 0.00045850162860006094\n", "379 0.0004358526784926653\n", "380 0.00041428091935813427\n", "381 0.00039375151391141117\n", "382 0.00037419970612972975\n", "383 0.0003555973235052079\n", "384 0.00033788266591727734\n", "385 0.0003210420545656234\n", "386 0.0003050037776120007\n", "387 0.00028973701409995556\n", "388 0.0002752211585175246\n", "389 0.0002614006807561964\n", "390 0.0002482580894138664\n", "391 0.00023575864906888455\n", "392 0.0002238633023807779\n", "393 0.00021254907187540084\n", "394 0.000201794522581622\n", "395 0.0001915686298161745\n", "396 0.00018184821237809956\n", "397 0.00017260605818592012\n", "398 0.0001638112444197759\n", "399 0.00015545614587608725\n", "400 0.0001475143217248842\n", "itor: 400 | loss:0.0001475143217248842\n", "401 0.0001399632601533085\n", "402 0.00013278757978696376\n", "403 0.00012597277236636728\n", "404 0.00011950647603953257\n", "405 0.0001133719488279894\n", "406 0.00010754159302450716\n", "407 0.00010200327960774302\n", "408 9.674495231593028e-05\n", "409 9.175214654533193e-05\n", "410 8.700854959897697e-05\n", "411 8.250032260548323e-05\n", "412 7.822456245776266e-05\n", "413 7.416475273203105e-05\n", "414 7.030786946415901e-05\n", "415 6.664611282758415e-05\n", "416 6.317067163763568e-05\n", "417 5.987334589008242e-05\n", "418 5.673985288012773e-05\n", "419 5.376888293540105e-05\n", "420 5.094870357424952e-05\n", "421 4.82736541016493e-05\n", "422 4.5731492718914524e-05\n", "423 4.33214008808136e-05\n", "424 4.1036022594198585e-05\n", "425 3.886507329298183e-05\n", "426 3.680891313706525e-05\n", "427 3.485591150820255e-05\n", "428 3.300643220427446e-05\n", "429 3.124899376416579e-05\n", "430 2.958733239211142e-05\n", "431 2.800888250931166e-05\n", "432 2.6511224859859794e-05\n", "433 2.509452315280214e-05\n", "434 2.3747425075271167e-05\n", "435 2.2474763682112098e-05\n", "436 2.126479557773564e-05\n", "437 2.012101685977541e-05\n", "438 1.9035418517887592e-05\n", "439 1.8007665858021937e-05\n", "440 1.7034471966326237e-05\n", "441 1.6110379874589853e-05\n", "442 1.5236693798215128e-05\n", "443 1.440924188500503e-05\n", "444 1.362529019388603e-05\n", "445 1.2881573638878763e-05\n", "446 1.2177484677522443e-05\n", "447 1.151292963186279e-05\n", "448 1.0881620255531743e-05\n", "449 1.0284459676768165e-05\n", "450 9.72040925262263e-06\n", "itor: 450 | loss:9.72040925262263e-06\n", "451 9.185148883261718e-06\n", "452 8.679205166117754e-06\n", "453 8.199809599318542e-06\n", "454 7.74587897467427e-06\n", "455 7.317171366594266e-06\n", "456 6.912358458066592e-06\n", "457 6.5278377405775245e-06\n", "458 6.164257683849428e-06\n", "459 5.820666501676897e-06\n", "460 5.496231551660458e-06\n", "461 5.188785962673137e-06\n", "462 4.89842977913213e-06\n", "463 4.624025223165518e-06\n", "464 4.36335540143773e-06\n", "465 4.118970082345186e-06\n", "466 3.886555987264728e-06\n", "467 3.6669953260570765e-06\n", "468 3.4603658605192322e-06\n", "469 3.2640502922731685e-06\n", "470 3.079132966377074e-06\n", "471 2.9048217129457043e-06\n", "472 2.7397129542805487e-06\n", "473 2.582770321168937e-06\n", "474 2.436055183352437e-06\n", "475 2.297183073096676e-06\n", "476 2.1656144326698268e-06\n", "477 2.040970230154926e-06\n", "478 1.9233864350098884e-06\n", "479 1.812603727557871e-06\n", "480 1.7083531247408246e-06\n", "481 1.6101266737678088e-06\n", "482 1.5170415963439154e-06\n", "483 1.4289674936662777e-06\n", "484 1.3461143453241675e-06\n", "485 1.2679073506660643e-06\n", "486 1.194136189042183e-06\n", "487 1.124579057432129e-06\n", "488 1.05921310478152e-06\n", "489 9.969859320335672e-07\n", "490 9.3883414820084e-07\n", "491 8.835854146127531e-07\n", "492 8.318909294757759e-07\n", "493 7.828302841517143e-07\n", "494 7.369587819994194e-07\n", "495 6.932365295142517e-07\n", "496 6.522329840663588e-07\n", "497 6.13299448559701e-07\n", "498 5.771529458797886e-07\n", "499 5.429189400274481e-07\n" ] } ], "source": [ "import torch.nn as nn\n", "\n", "N, D_in, H, D_out = 64, 1000, 100, 10\n", "\n", "# 随机创建一些训练数据\n", "x = torch.randn(N, D_in)\n", "y = torch.randn(N, D_out)\n", "\n", "class TwoLayerNet(torch.nn.Module):\n", " def __init__(self, D_in, H, D_out):\n", " super(TwoLayerNet, self).__init__()\n", " # define the model architecture\n", " self.linear1 = torch.nn.Linear(D_in, H, bias=False)\n", " self.linear2 = torch.nn.Linear(H, D_out, bias=False)\n", " \n", " def forward(self, x):\n", " y_pred = self.linear2(self.linear1(x).clamp(min=0))\n", " return y_pred\n", "\n", "model = TwoLayerNet(D_in, H, D_out)\n", "loss_fn = nn.MSELoss(reduction='sum')\n", "learning_rate = 1e-4\n", "optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\n", "\n", "for it in range(500):\n", " # Forward pass\n", " y_pred = model(x) # model.forward() \n", " \n", " # compute loss\n", " loss = loss_fn(y_pred, y) # computation graph\n", " print(it, loss.item())\n", "\n", " optimizer.zero_grad()\n", " # Backward pass\n", " loss.backward()\n", " \n", " # update model parameters\n", " optimizer.step()\n", " if it % 50 == 0:\n", " print(\"itor: {} | loss:{}\".format(it, loss))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.10" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P003-pytorch-Language-Model/_1_lm_lstm.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 语言模型\n", "------\n", "## 1 简介\n", "- pytorch实现LSTM训练语言模型\n", "- 使用的数据集:\n", " - bobsue.lm.train.txt:语言模型训练数据(LMTRAIN)\n", " - bobsue.lm.dev.txt:语言模型验证数据(LMDEV)\n", " - bobsue.lm.test.txt:语言模型测试数据(LMTEST)\n", " - bobsue.prevsent.train.tsv:基于上文的语言模型训练数据(PREVSENTTRAIN)\n", " - bobsue.prevsent.dev.tsv:基于上文的上文语言模型验证数据(PREVSENTDEV)\n", " - bobsue.prevsent.test.tsv:基于上文的上文语言模型测试数据(PREVSENTTEST)\n", " - bobsue.voc.txt:词汇表文件,每行是一个单词\n", " - lm文件中的每一行都包含一个故事中的句子。prev文件中的每一行都包含一故事中的一个句子,tab,然后是故事中的下一个句子。注意:prevsent文件中每一行的第二个字段与相应的lm文件中的对应行相同。( 也就是说:cut -f 2 bobsue.prevsent.x.tsv与bobsue.lm.x.txt相同)完整的词汇表包含在文件bobsue.voc.txt中,每一行是一个单词。在这个任务中不会出现未知单词。\n", "- 评估\n", " - 我们使用单词预测准确率作为主要评估指标而非困惑度(perplexity)。因为当你试图比较某些损失函数时,perplexity不太好用。\n", "\n", "-----\n", "## 2 具体内容\n", "### 用Log Loss训练LSTM模型\n", "- 实现一个基于LSTM的语言模型。具体为:\n", " - 对每个当前的hidden state做一个线性变化和softmax处理,预测下一个单词。\n", " - 使用Log Loss (Cross Entropy Loss)来训练该模型。使用**EVALLM**的步骤来评估模型。\n", " - 汇报模型训练结果和代码。你的单词预测准确率应该能够达到30%以上。\n", "- 要求\n", " - 至少训练10个epoch\n", " - 可以使用不同的模型参数。建议使用一层LSTM,200 hidden dimension作为词向量和LSTM hidden state的大小。\n", " - 模型参数的初始值可以随机设定\n", " - 输入和输出层的word embedding参数可以不一样,当然你也可以尝试把他们设置成一样。\n", " - 使用Adam或者SGD等optimizer来优化模型。\n", " - 在提交报告的时候请尽可能详细描述你的所有模型参数。\n", "----\n", "### 错误分析\n", "- 请在你的代码中添加一项功能,可以展示出你模型预测错误的单词,将标准答案单词和模型预测的单词分别打印出来。\n", "- 请写下你的模型最常见的35个预测错误(正确答案是a,模型预测了b)。\n", "- 通过观察这些常见的错误,将错误分类。你不需要将每个错误都分类,不过建议同学们花点时间观察自己模型的错误,看看他们是否有一定的相关性。大家可以尝试从以下角度思考错误类型:\n", " - 为什么你的模型会预测出这个单词?\n", " - 模型怎么样才能做得更好?这个模型犯的错误是很接近正确答案的吗?如果是的话,这个错误答案与正确答案有何相似之处?\n", " - 把这35个预测错误归类成你定义的错误类别。讨论一下你的模型在哪些方面做得比较好,哪些方面做的不好。" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn as nn\n", "import torch.nn.functional as F\n", "import torch.optim as optim\n", "\n", "from collections import Counter" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# 数据文件\n", "word_file = './data/bobsue.voc.txt'\n", "train_file = './data/bobsue.lm.train.txt'\n", "test_file = './data/bobsue.lm.test.txt'\n", "dev_file = './data/bobsue.lm.dev.txt'\n", "\n", "BATCH_SIZE = 32 # 批次大小\n", "EMBEDDING_DIM = 200 # 词向量维度\n", "HIDDEN_DIM = 200 # 隐含层\n", "GRAD_CLIP = 5. # 梯度截断值\n", "EPOCHS = 20 \n", "LEARN_RATE = 0.01 # 初始学习率\n", "\n", "BEST_VALID_ACC = 0. # 初始验证集上的损失值,设为最大\n", "MODEL_PATH = \"lm-best-dim{}.pth\" # 模型名称\n", "USE_CUDA = torch.cuda.is_available() # 是否使用GPU\n", "NUM_CUDA = torch.cuda.device_count() # GPU数量" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1 数据预处理\n", "### 1.1 读取数据文件,构建词汇集、word2idx、idx2word。" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def load_word_set(filename):\n", " with open(filename, \"r\", encoding=\"utf-8\") as f:\n", " word_set = set([line.strip() for line in f])\n", " return word_set" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "word_set = load_word_set(word_file)\n", "word2idx = {w:i for i, w in enumerate(word_set, 1)}\n", "idx2word = {i:w for i, w in enumerate(word_set, 1)}\n", "\n", "# 将pad的索引设置为0并添加到词表\n", "PAD_IDX = 0\n", "word2idx[\"\"] = PAD_IDX\n", "idx2word[PAD_IDX] = \"\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 1.2 训练、验证、测试数据准备\n", "- 将数据处理成模型可以接收的格式" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "def load_corpus(filename):\n", " \"\"\"读取数据集,返回句子列表\"\"\"\n", " with open(filename, \"r\", encoding=\"utf-8\") as f:\n", " sentences = [line.strip() for line in f]\n", " return sentences\n", "\n", "def sentences2words(sentences):\n", " \"\"\"将句子列表转换成单词列表\"\"\"\n", " return [w for s in sentences for w in s.split()]\n", "\n", "def max_sentence_num(sentences):\n", " \"\"\"返回最长句子单词数量\"\"\"\n", " return max([len(s.split()) for s in sentences ])" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "# 各数据集的句子列表\n", "train_sentences = load_corpus(train_file)\n", "dev_sentences = load_corpus(dev_file)\n", "test_sentences = load_corpus(test_file)\n", "\n", "# 各数据集的单词列表\n", "train_words = sentences2words(train_sentences)\n", "dev_words = sentences2words(dev_sentences)\n", "test_words = sentences2words(test_sentences)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "训练集句子数: 6036, 单词数: 71367.\n", "验证集句子数: 750, 单词数: 8707.\n", "测试集句子数: 750, 单词数: 8809.\n", "--------------------------------------------------\n", "训练集最长句子单词个数: 21\n", "验证集最长句子单词个数: 20\n", "测试集最长句子单词个数: 21\n" ] } ], "source": [ "# 查看处理后训练集、验证集、测试集的基本情况\n", "s = \"{}句子数: {}, 单词数: {}.\"\n", "print(s.format(\"训练集\", len(train_sentences), len(train_words)))\n", "print(s.format(\"验证集\", len(dev_sentences), len(dev_words)))\n", "print(s.format(\"测试集\", len(test_sentences), len(test_words)))\n", "\n", "print(\"-\"*50)\n", "\n", "# 这里需要知道各数据集上最长句子的单词📚,以便后面构造单词索引向量的时候设置一个恰当的维度\n", "print(\"训练集最长句子单词个数:\", max_sentence_num(train_sentences))\n", "print(\"验证集最长句子单词个数:\", max_sentence_num(dev_sentences))\n", "print(\"测试集最长句子单词个数:\", max_sentence_num(test_sentences))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "def build_x_y(corpus, word2idx, seq_len=21):\n", " \"\"\"\n", " 构造输入模型的特征以及标签。\n", " 输入:\n", " corpus: 列表,每个元素是一个句子。\n", " word2idx: 字典,key是单词,value是单词的索引。\n", " seq_len:int, 句子切分后的单词序列的长度。\n", " 返回:\n", " sentences:二维列表,每一行是一个句子切分后单词的索引列表(不包括句子的最后一个单词)。输入模型的x。\n", " labels:二维列表,每一行是一个句子切分后单词的索引列表(不包括句子的第一个单词)。y。\n", " \"\"\"\n", " sentences = []\n", " labels = []\n", " for sentence in corpus:\n", " words = sentence.split()\n", " sentence_vec = [0]*seq_len\n", " for i, w in enumerate(words[:-1]):\n", " sentence_vec[i] = word2idx[w]\n", " sentences.append(sentence_vec)\n", " \n", " label_vec = [0] * seq_len\n", " for i, w in enumerate(words[1:]):\n", " label_vec[i] = word2idx[w]\n", " labels.append(label_vec)\n", " return sentences, labels" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "train_data, train_label = build_x_y(train_sentences, word2idx)\n", "dev_data, dev_label = build_x_y(dev_sentences, word2idx)\n", "test_data, test_label = build_x_y(test_sentences, word2idx)" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[1079, 1029, 717, 122, 1259, 413, 1224, 944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\n", " [1029, 717, 122, 1259, 413, 1224, 944, 1308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\n" ] } ], "source": [ "# 查看处理后的训练集第一个样本及标签\n", "print(train_data[1])\n", "print(\" \"*5, train_label[1])" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ " The girl broke up with Bob . \n", " The girl broke up with Bob . \n" ] } ], "source": [ "idx = 1\n", "print(\" \".join([idx2word[i] for i in train_data[idx]]))\n", "\n", "print(\" \"*3, \" \".join([idx2word[i] for i in train_label[idx]]))" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "# 构造批次数据\n", "def build_batch_data(data, label, batch_size=32):\n", " \"\"\"构建 batch tensor,返回 batch 列表,每个batch为二元组包含data和label\"\"\"\n", " batch_data = []\n", " data_tensor = torch.tensor(data, dtype=torch.long)\n", " label_tensor = torch.tensor(label, dtype=torch.long)\n", " n, dim = data_tensor.size()\n", " for start in range(0, n, batch_size):\n", " end = start + batch_size\n", " if end > n:\n", " dbatch = data_tensor[start: ]\n", " lbatch = label_tensor[start: ]\n", " print(\"最后一个batch size:\", dbatch.size())\n", " break\n", " else:\n", " dbatch = data_tensor[start: end]\n", " lbatch = label_tensor[start: end]\n", " batch_data.append((dbatch, lbatch))\n", " return batch_data" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "最后一个batch size: torch.Size([20, 21])\n", "最后一个batch size: torch.Size([14, 21])\n", "最后一个batch size: torch.Size([14, 21])\n" ] } ], "source": [ "train_batch = build_batch_data(train_data, train_label, batch_size=BATCH_SIZE)\n", "dev_batch = build_batch_data(dev_data, dev_label, batch_size=BATCH_SIZE)\n", "test_batch = build_batch_data(test_data, test_label, batch_size=BATCH_SIZE)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "188 23 23\n" ] } ], "source": [ "# 查看各数据集有多少个batch\n", "print(len(train_batch), len(dev_batch), len(test_batch))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2 定义模型" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "# 定义模型\n", "class MyLSTM(nn.Module):\n", " def __init__(self, vocab_size, embedding_dim, hidden_dim):\n", " super(MyLSTM, self).__init__()\n", " self.vocab_size = vocab_size\n", " self.hidden_dim = hidden_dim\n", " self.word_embeddings = nn.Embedding(self.vocab_size, embedding_dim)\n", " # batch_first=True 意味着输入是(batch, seq, feature)\n", " self.lstm = nn.LSTM(embedding_dim, hidden_dim, batch_first=True)\n", " self.hidden2word = nn.Linear(hidden_dim, self.vocab_size)\n", " \n", " def forward(self, x):\n", " embeds = self.word_embeddings(x)\n", " lstm_out, (h_n, c_n) = self.lstm(embeds)\n", " target_space = self.hidden2word(lstm_out.contiguous().view(-1, self.hidden_dim))\n", " mask = (x != PAD_IDX).view(-1)\n", " mask_target = target_space[mask]\n", " \n", " target_scores = F.log_softmax(mask_target, dim=1)\n", " return target_scores\n", "\n", " \n", "# 计算准确率\n", "def acc_score(pred_score, y):\n", " # 返回最大的概率的索引\n", " y_pred = pred_score.argmax(dim=1)\n", " # print(y.view(-1))\n", " acc_count = torch.eq(y_pred, y.view(-1))\n", " score = acc_count.sum().item() / acc_count.size()[0]\n", " return score\n", "\n", "\n", "# 训练函数\n", "def train(model, device, iterator, optimizer, criterion, grad_clip):\n", " epoch_loss = 0 # 积累变量\n", " epoch_acc = 0 # 积累变量\n", " model.train() # 该函数表示PHASE=Train\n", " \n", " for x, y in iterator: # 拿每一个minibatch\n", " x = x.to(device)\n", " y = y.to(device)\n", " \n", " optimizer.zero_grad()\n", " mask = y != PAD_IDX\n", " pure_y = y[mask]\n", " \n", " fx = model(x) # 进行forward\n", " loss = criterion(fx, pure_y) # 计算loss\n", " acc = acc_score(fx, pure_y) # 计算准确率\n", " loss.backward() # 进行BP\n", " \n", " # 梯度裁剪\n", " torch.nn.utils.clip_grad_norm_(model.parameters(), grad_clip)\n", " optimizer.step() # 更新参数\n", " \n", " epoch_loss += loss\n", " epoch_acc += acc\n", " \n", " return epoch_loss/len(iterator),epoch_acc/len(iterator)\n", "\n", "\n", "# 验证函数,验证集和测试集用,不更新梯度\n", "def evaluate(model, device, iterator, criterion):\n", " model.eval() # 不更新参数,预测模式\n", " epoch_loss=0 # 积累变量\n", " epoch_acc=0 # 积累变量\n", " \n", " with torch.no_grad():\n", " for x, y in iterator:\n", " x = x.to(device)\n", " y = y.to(device)\n", " mask = y != PAD_IDX\n", " pure_y = y[mask]\n", " \n", " fx = model(x)\n", " loss = criterion(fx, pure_y)\n", " acc = acc_score(fx, pure_y)\n", " epoch_loss += loss\n", " epoch_acc += acc\n", " return epoch_loss/len(iterator), epoch_acc/len(iterator)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3 模型训练与评价" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[0, 1, 2, 3]\n" ] } ], "source": [ "VOCAB_SIZE = len(word2idx) # 词汇表长度\n", "\n", "model = MyLSTM(VOCAB_SIZE, EMBEDDING_DIM, HIDDEN_DIM)\n", "\n", "DEVICE = torch.device(\"cuda\" if USE_CUDA else 'cpu')\n", "model = model.to(DEVICE)\n", "\n", "# 使用多块GPU\n", "if NUM_CUDA > 1:\n", " device_ids = list(range(NUM_CUDA))\n", " print(device_ids)\n", " model = nn.DataParallel(model, device_ids=device_ids)\n", " # model = nn.parallel.DistributedDataParallel(model, device_ids=device_ids)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- 保存最优模型的逻辑是,每一个epoch之后再对比验证集损失值,验证集损失降低才认为模型更优。" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/anaconda3/lib/python3.6/site-packages/torch/nn/modules/rnn.py:179: RuntimeWarning: RNN module weights are not part of single contiguous chunk of memory. This means they need to be compacted at every call, possibly greatly increasing memory usage. To compact weights again call flatten_parameters().\n", " self.dropout, self.training, self.bidirectional, self.batch_first)\n", "/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type MyLSTM. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "save best model: lm-best-dim200.pth\n", "Epoch:1|Train Loss:3.9867|Train Acc:0.284045|Val Loss:3.54076|Val Acc:0.322146\n", "Epoch:1|Train Loss:3.9867|Train Acc:0.284045|Val Loss:3.54076|Val Acc:0.322146\n", "save best model: lm-best-dim200.pth\n", "Epoch:2|Train Loss:3.28995|Train Acc:0.32511|Val Loss:3.49253|Val Acc:0.325996\n", "Epoch:2|Train Loss:3.28995|Train Acc:0.32511|Val Loss:3.49253|Val Acc:0.325996\n", "Epoch:3|Train Loss:2.96528|Train Acc:0.348784|Val Loss:3.55743|Val Acc:0.325569\n", "Epoch:4|Train Loss:2.71137|Train Acc:0.374167|Val Loss:3.66872|Val Acc:0.316473\n", "Current lr: 0.01\n", "Epoch:5|Train Loss:2.50227|Train Acc:0.404593|Val Loss:3.74011|Val Acc:0.320505\n", "Epoch:6|Train Loss:2.32764|Train Acc:0.431737|Val Loss:3.86074|Val Acc:0.314687\n", "Epoch:7|Train Loss:2.17701|Train Acc:0.460746|Val Loss:3.96021|Val Acc:0.309366\n", "Current lr: 0.005\n", "Epoch:8|Train Loss:2.05596|Train Acc:0.485682|Val Loss:4.06588|Val Acc:0.305292\n", "Early stop!\n" ] } ], "source": [ "criterion = nn.NLLLoss() # 指定损失函数\n", "optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE) # 指定优化器\n", "scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5) # 学习率缩减\n", "\n", "model_name = MODEL_PATH.format(EMBEDDING_DIM)\n", "LOG_INFO = 'Epoch:{}|Train Loss:{:.6}|Train Acc:{:.6}|Val Loss:{:.6}|Val Acc:{:.6}'\n", "\n", "SCHED_NUM = 0\n", "for epoch in range(1, EPOCHS+1):\n", " train_loss, train_acc = train(model, DEVICE, train_batch, optimizer, criterion, GRAD_CLIP)\n", " valid_loss, valid_acc = evaluate(model, DEVICE, dev_batch, criterion)\n", " if valid_acc > BEST_VALID_ACC: # 如果是最好的模型就保存到文件夹\n", " BEST_VALID_ACC = valid_acc\n", " torch.save(model, model_name)\n", " print(\"save best model:\", model_name)\n", " print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))\n", " SCHED_NUM = 0\n", " else:\n", " SCHED_NUM += 1\n", " if SCHED_NUM % 3 == 0:\n", " scheduler.step()\n", " print(\"Current lr:\", optimizer.param_groups[0]['lr'])\n", " if SCHED_NUM == 7:\n", " print(\"Early stop!\")\n", " break\n", " print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 3.5174615383148193 | Test Acc: 0.3169802856441505 |\n" ] } ], "source": [ "model = torch.load(model_name)\n", "test_loss, test_acc = evaluate(model, DEVICE, test_batch, criterion)\n", "print('Test Loss: {0} | Test Acc: {1} |'.format(test_loss, test_acc))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 4 打印错误单词" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "# 答应预测错误的单词\n", "def print_pred_error_words(model,device,data_batch):\n", " model.eval()\n", " error_words = []\n", " with torch.no_grad():\n", " for x, y in data_batch:\n", " x = x.to(device)\n", " y = y.to(device)\n", " \n", " mask = (y!=PAD_IDX)\n", " fx = model(x)\n", " \n", " pred_idx = fx.argmax(dim=1)\n", " ground_truth_idx = y[mask]\n", " for p, g in zip(pred_idx.tolist(), ground_truth_idx.tolist()):\n", " if p != g:\n", " error_words.append(\" | \".join([idx2word[g], idx2word[p]]))\n", " return error_words" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "model = torch.load(MODEL_PATH.format(EMBEDDING_DIM))\n", "error_words = print_pred_error_words(model, DEVICE, test_batch)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "真实值 | 预测值 | 预测错误次数\n", "('Bob | He', 137)\n", "('She | He', 109)\n", "('Sue | He', 89)\n", "('to | .', 43)\n", "('and | .', 41)\n", "('had | was', 40)\n", "('his | the', 37)\n", "('decided | was', 37)\n", "('for | .', 31)\n", "('her | the', 30)\n", "(', | .', 28)\n", "('His | He', 26)\n", "('. | to', 25)\n", "('in | .', 25)\n", "('One | He', 25)\n", "('a | the', 24)\n", "('. | the', 23)\n", "('and | to', 23)\n", "('went | was', 21)\n", "('But | He', 21)\n", "('Her | He', 21)\n", "('The | He', 21)\n", "('got | was', 19)\n", "('When | He', 19)\n", "('They | He', 19)\n", "('it | the', 18)\n", "('a | to', 17)\n", "('! | .', 17)\n", "('wanted | was', 17)\n", "('she | he', 15)\n", "('he | Bob', 15)\n", "('her | a', 15)\n", "('the | her', 15)\n", "('the | .', 15)\n", "('he | to', 15)\n" ] } ], "source": [ "words_counter = Counter(error_words)\n", "TopN = 35\n", "topn_words = words_counter.most_common(TopN)\n", "print(\"真实值 | 预测值 | 预测错误次数\")\n", "for w in topn_words:\n", " print(w)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P003-pytorch-Language-Model/_2_lm_lstm_bll.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Binary Log Loss实验\n", "- 尝试一个不同的损失函数: binary log loss + 负例采样" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn as nn\n", "import torch.nn.functional as F\n", "import torch.optim as optim\n", "\n", "import numpy as np\n", "from collections import Counter" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# 数据文件\n", "word_file = './data/bobsue.voc.txt'\n", "train_file = './data/bobsue.lm.train.txt'\n", "test_file = './data/bobsue.lm.test.txt'\n", "dev_file = './data/bobsue.lm.dev.txt'\n", "\n", "BATCH_SIZE = 32 # 批次大小\n", "EMBEDDING_DIM = 200 # 词向量维度\n", "EMBEDDING_OUT = 100 # 输出层词向量维度\n", "HIDDEN_DIM = 200 # 隐含层\n", "GRAD_CLIP = 5. # 梯度截断值\n", "EPOCHS = 20\n", "LEARN_RATE = 0.001 # 初始学习率\n", "SAMPLE_NUM = 20 # 负例采样数目\n", "\n", "BEST_VALID_LOSS = float('inf') # 初始验证集上的损失值,设为最大\n", "MODEL_PATH = \"lm-bll-samp-{}.pth\" # 模型名称\n", "USE_CUDA = torch.cuda.is_available() # 是否使用GPU\n", "NUM_CUDA = torch.cuda.device_count() # GPU数量" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def load_word_set(filename):\n", " with open(filename, \"r\", encoding=\"utf-8\") as f:\n", " word_set = set([line.strip() for line in f])\n", " return word_set" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "def create_word_set(*paths, power=1):\n", " text = []\n", " for path in paths:\n", " with open(path, 'r', encoding='utf-8') as f:\n", " for line in f:\n", " text.extend(line.split())\n", " word_set = set(text)\n", " word2idx = {w:i for i, w in enumerate(word_set, 1)}\n", " idx2word = {i:w for i, w in enumerate(word_set, 1)}\n", " vocab = Counter(text)\n", " word_counts = torch.tensor([vocab[w] for w in word_set], dtype=torch.float32)\n", " \n", " word_freqs = word_counts / word_counts.sum()\n", " return word_set, word2idx, idx2word, word_freqs" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "def load_corpus(filename):\n", " \"\"\"读取数据集,返回句子列表\"\"\"\n", " with open(filename, \"r\", encoding=\"utf-8\") as f:\n", " sentences = [line.strip() for line in f]\n", " return sentences\n", "\n", "def sentences2words(sentences):\n", " return [w for s in sentences for w in s.split()]" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "word_set, word2idx, idx2word, word_freqs = create_word_set(train_file, dev_file, test_file, power=1)\n", "\n", "# 设置 值为 0\n", "PAD_IDX = 0\n", "idx2word[PAD_IDX] = ''\n", "word2idx[''] = PAD_IDX\n", "\n", "VOCAB_SIZE = len(word_set)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1492" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "VOCAB_SIZE" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "train_sentences = load_corpus(train_file)\n", "dev_sentences = load_corpus(dev_file)\n", "test_sentences = load_corpus(test_file)\n", "\n", "train_words = sentences2words(train_sentences)\n", "dev_words = sentences2words(dev_sentences)\n", "test_words = sentences2words(test_sentences)" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "训练集句子数: 6036,单词数: 71367.\n", "验证集句子数: 750,单词数: 8707.\n", "测试集句子数: 750,单词数: 8809.\n" ] } ], "source": [ "s = \"{}句子数: {},单词数: {}.\"\n", "print(s.format(\"训练集\", len(train_sentences), len(train_words)))\n", "print(s.format(\"验证集\", len(dev_sentences), len(dev_words)))\n", "print(s.format(\"测试集\", len(test_sentences), len(test_words)))" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "def max_sentence_num(sentences):\n", " \"\"\"返回最长句子单词数量\"\"\"\n", " return max([len(s.split()) for s in sentences ])" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "训练集最长句子单词个数: 21\n", "验证集最长句子单词个数: 20\n", "测试集最长句子单词个数: 21\n", "训练集最短句子单词个数: 5\n", "验证集最短句子单词个数: 5\n", "测试集最短句子单词个数: 6\n" ] } ], "source": [ "print(\"训练集最长句子单词个数:\", max([len(s.split()) for s in train_sentences ]))\n", "print(\"验证集最长句子单词个数:\", max([len(s.split()) for s in dev_sentences ]))\n", "print(\"测试集最长句子单词个数:\", max([len(s.split()) for s in test_sentences ]))\n", "\n", "print(\"训练集最短句子单词个数:\", min([len(s.split()) for s in train_sentences ]))\n", "print(\"验证集最短句子单词个数:\", min([len(s.split()) for s in dev_sentences ]))\n", "print(\"测试集最短句子单词个数:\", min([len(s.split()) for s in test_sentences ]))" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "def model_sequence(corpus, word2idx, word_freqs, sample_num=20, seq_len=21):\n", " \"\"\"输入语料句子列表,返回模型输入序列的idx\"\"\"\n", " labels = []\n", " sentences = []\n", " neg_words = []\n", " for sentence in corpus:\n", " words = sentence.split()\n", " sentence_tample = [0] * seq_len\n", " for i, w in enumerate(words[:-1]):\n", " sentence_tample[i] = word2idx[w]\n", " target_tample = [0] * seq_len\n", " for i, w in enumerate(words[1:]):\n", " target_tample[i] = word2idx[w]\n", " sentences.append(sentence_tample)\n", " labels.append(target_tample)\n", " # 负例采样\n", " neg_words.append(torch.multinomial(word_freqs, seq_len * sample_num, True))\n", " return (sentences, labels, neg_words)" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "train_data, train_label, train_neg = model_sequence(train_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", "dev_data, dev_label, dev_neg = model_sequence(dev_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", "test_data, test_label, test_neg = model_sequence(test_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[272, 44, 627, 297, 1042, 577, 673, 1389, 1131, 146, 1171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\n", " She ate quickly and asked to be taken home . ----------------------------------------\n", "She ate quickly and asked to be taken home . ----------------------------------------\n", "tensor([ 273, 584, 848, 832, 736, 1170, 854, 539, 78, 271, 635, 436,\n", " 672, 397, 271, 457, 92, 1429, 381, 1439, 774, 214, 271, 736,\n", " 823, 322, 194, 1240, 976, 736, 1488, 1041, 1170, 1332, 1200, 12,\n", " 1170, 1487, 963, 1470, 501, 1182, 825, 630, 637, 669, 510, 1047,\n", " 271, 291, 952, 920, 164, 1240, 1250, 736, 1426, 630, 1240, 1070,\n", " 1150, 97, 736, 1038, 736, 61, 450, 514, 271, 109, 630, 732,\n", " 1170, 455, 672, 271, 672, 1240, 736, 1066, 362, 596, 273, 617,\n", " 1436, 672, 164, 799, 909, 1170, 1170, 247, 370, 227, 325, 1187,\n", " 1381, 247, 779, 971, 927, 277, 271, 664, 736, 271, 864, 672,\n", " 1078, 982, 1170, 271, 821, 1126, 834, 204, 36, 1170, 1186, 920,\n", " 252, 19, 1170, 636, 1170, 271, 736, 909, 676, 392, 1170, 1170,\n", " 736, 1170, 1439, 672, 1170, 1433, 736, 972, 1168, 271, 608, 72,\n", " 271, 1170, 652, 472, 322, 923, 2, 1126, 1101, 920, 1041, 358,\n", " 736, 809, 1052, 78, 450, 1403, 1240, 736, 1286, 736, 588, 800,\n", " 823, 637, 78, 457, 911, 385, 36, 662, 1040, 736, 1405, 1041,\n", " 736, 895, 253, 271, 239, 736, 457, 1020, 1242, 36, 325, 271,\n", " 1433, 1405, 851, 1439, 367, 52, 1170, 1170, 321, 78, 1240, 1403,\n", " 1439, 322, 86, 71, 750, 322, 271, 877, 672, 736, 1205, 271,\n", " 508, 1072, 1041, 736, 1170, 1439, 355, 770, 1170, 736, 1041, 1047,\n", " 139, 72, 271, 920, 42, 831, 43, 271, 1047, 271, 1403, 813,\n", " 920, 596, 637, 770, 273, 1439, 1448, 1215, 457, 271, 589, 920,\n", " 736, 1170, 1041, 450, 197, 395, 325, 291, 911, 780, 31, 1099,\n", " 247, 1170, 31, 1164, 1363, 1170, 736, 204, 247, 1170, 164, 1203,\n", " 836, 204, 271, 736, 672, 971, 844, 30, 8, 243, 973, 736,\n", " 1013, 1170, 457, 164, 963, 864, 271, 736, 736, 1396, 316, 43,\n", " 43, 931, 31, 43, 325, 1170, 1403, 1312, 501, 381, 218, 736,\n", " 271, 637, 322, 799, 417, 1347, 770, 457, 221, 271, 273, 1170,\n", " 939, 271, 1290, 301, 96, 1101, 327, 1446, 736, 799, 187, 672,\n", " 271, 247, 84, 217, 78, 932, 1170, 864, 372, 920, 271, 1170,\n", " 78, 1413, 931, 271, 1102, 1240, 952, 920, 1170, 78, 815, 1240,\n", " 271, 247, 1209, 782, 52, 1151, 413, 365, 247, 247, 1189, 1183,\n", " 271, 494, 1403, 699, 271, 1240, 1240, 1112, 164, 963, 1170, 920,\n", " 1391, 459, 736, 1477, 1170, 1292, 920, 271, 43, 468, 664, 1170,\n", " 371, 597, 588, 920, 291, 962, 1047, 1170, 271, 1170, 1189, 1439,\n", " 78, 557, 1209, 1240, 273, 194, 72, 630, 1188, 576, 630, 322])\n" ] } ], "source": [ "a = train_data[0]\n", "print(a)\n", "for i in a:\n", " print(idx2word[i], end=' ')\n", "print(\"--\"*20)\n", "b = train_label[0]\n", "for i in b:\n", " print(idx2word[i], end=' ')\n", "print(\"--\"*20)\n", "print(train_neg[0])" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([420])" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "n = train_neg[0]\n", "n.size()" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "def gene_batch_data(data, label, neg, batch_size=32):\n", " \"\"\"\n", " 构建 batch tensor,返回 batch 列表,每个batch为三元组包含data和label、neg_word\n", " \"\"\"\n", " batch_data = []\n", " data_tensor = torch.tensor(data, dtype=torch.long)\n", " label_tensor = torch.tensor(label, dtype=torch.long)\n", " neg_tensor = torch.stack(neg)\n", " n, dim = data_tensor.size()\n", " for start in range(0, n, batch_size):\n", " end = start + batch_size\n", " if end > n:\n", " break\n", " dbatch = data_tensor[start: ]\n", " lbatch = label_tensor[start: ]\n", " nbatch = neg_tensor[start: ]\n", " print(\"最后一个batch size:\", dbatch.size())\n", "# break\n", " else:\n", " dbatch = data_tensor[start: end]\n", " lbatch = label_tensor[start: end]\n", " nbatch = neg_tensor[start: end]\n", " batch_data.append((dbatch, lbatch, nbatch))\n", " return batch_data" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "train_batch = gene_batch_data(train_data, train_label, train_neg, batch_size=BATCH_SIZE)\n", "dev_batch = gene_batch_data(dev_data, dev_label, dev_neg, batch_size=BATCH_SIZE)\n", "test_batch = gene_batch_data(test_data, test_label, test_neg, batch_size=BATCH_SIZE)" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "class LSTMNegModel(nn.Module):\n", " def __init__(self, embedding_dim, embedding_out, hidden_dim, vocab_size, sample_num):\n", " super(LSTMNegModel, self).__init__()\n", " self.sample_num = sample_num\n", " self.embedding_dim = embedding_dim\n", " self.hidden_dim = hidden_dim\n", " self.in_embed = nn.Embedding(vocab_size, embedding_dim)\n", " self.out_embed = nn.Embedding(vocab_size, embedding_out)\n", " self.lstm = nn.LSTM(embedding_dim, hidden_dim, batch_first=True)\n", " self.linear = nn.Linear(hidden_dim, embedding_out)\n", " \n", " def forward(self, data):\n", " text, label, neg = data\n", " # print(\"-\"*20)\n", " # print(text.size())\n", " # print(label.size())\n", " # print(neg.size()) # (bacth, SAMPLE_NUM*seq_len)\n", " # (torch.tensor([1,2,3,1]) != 1) ==>[0,1,1, 0]\n", " mask = (text != PAD_IDX) # (batch, seq_len)\n", " # print(\"mask:\", mask.size())\n", " # (batch, seq_len)-->(batch, 1, seq_len)-->(batch,SAMPLE_NUM,seq_len)-->(batch, SAMPLE_NUM*seq_len)\n", " neg_mask = mask.unsqueeze(1).expand(text.size(0), SAMPLE_NUM, text.size(1)).contiguous().view(neg.size(0), neg.size(1))\n", " # 当调用contiguous()时,会强制拷贝一份tensor\n", "\n", " # print(\"neg_mask:\", neg_mask.size(), neg_mask.sum()) # (batch, seq_len*sample_num)\n", " \n", " embed = self.in_embed(text) # (bacth,seq_len) --> (bacth, seq_len, in_emd_dim)\n", " \n", " # (batch, seq_len) -> (batch, seq_len, out_emb_dim)\n", " label_embed = self.out_embed(label)\n", " # (batch, seq_len*sample_num)-> (batch, seq_len*sample_num, out_emb_dim)\n", " neg_embed = self.out_embed(neg)\n", " \n", " # (batch, seq_len, in_emb_dim) -> (batch, seq_len, out_emb_dim(hn_dim))\n", " lstm_out, (h_n, c_n) = self.lstm(embed)\n", " # (batch, seq_len, out_emb_dim) -> (batch, seq_len, out_emb_dim) 即形状不变\n", " out = self.linear(lstm_out)\n", " \n", " # 计算损失\n", " # (batch, seq_len, out_emb_dim) * (batch, seq_len, out_emb_dim) -> sum(2)-(batch, seq_len)\n", " # 对应元素相乘,2维度上求和\n", " label_score = (out * label_embed).sum(2)\n", " # label_score = torch.mm(label_embed.squeeze(1), out.squeeze(1).permute(1, 0))\n", " # (batch, seq_len*sample_num, out_emb_dim) * (batch, seq_len*sample_num, out_emb_dim) \n", " out_expand = out.unsqueeze(1).expand(out.size(0), SAMPLE_NUM, out.size(1), \n", " out.size(2)).contiguous().view(\n", " neg_embed.size(0), neg_embed.size(1), neg_embed.size(2))\n", " # (batch, seq_len*sample_num, out_emb_dim) -> (batch, seq_len*sample_num)\n", " # 词向量合成一个数的意义是什么?\n", " neg_score = (out_expand * neg_embed).sum(2)\n", "\n", " label_score = label_score[mask] # 这个操作会压缩成一行\n", " neg_score = neg_score[neg_mask]\n", " \n", " log_label = F.logsigmoid(label_score).mean() # 一个常数,这里取平均的意义是什么?\n", " log_neg = torch.log(1 - torch.sigmoid(neg_score)).mean()\n", "\n", " loss = log_label + log_neg\n", " \n", " return -loss" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "VOCAB_SIZE = len(word2idx)\n", "model = LSTMNegModel(EMBEDDING_DIM, EMBEDDING_OUT, HIDDEN_DIM, VOCAB_SIZE, SAMPLE_NUM)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "# DEVICE = torch.device(\"cuda\" if USE_CUDA else 'cpu')\n", "DEVICE = torch.device(\"cpu\")\n", "model = model.to(DEVICE)\n", "# if NUM_CUDA > 1:\n", "# device_ids = list(range(NUM_CUDA))\n", "# print(device_ids)\n", "# model = nn.DataParallel(model, device_ids=device_ids)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [], "source": [ "def acc_score(y_hat, y):\n", " # 返回最大的概率的索引\n", " pred = y_hat.argmax(dim=1)\n", " # print(y.view(-1))\n", " acc_count = torch.eq(pred, y.view(-1))\n", " score = acc_count.sum().item() / acc_count.size()[0]\n", " return score\n", "\n", "def evaluate(model, device, iterator):\n", " epoch_loss = 0 # 积累变量\n", " model.eval() # 不更新参数,预测模式\n", " \n", " with torch.no_grad():\n", " for x, y, z in iterator:\n", " x = x.to(device)\n", " y = y.to(device)\n", " z = z.to(device)\n", " \n", " loss = model((x,y,z))\n", " epoch_loss += loss.item()\n", " \n", " return epoch_loss/len(iterator)\n", "\n", "\n", "def train(model, device, iterator, optimizer, grad_clip):\n", " epoch_loss = 0 # 积累变量\n", " model.train() # 该函数表示PHASE=Train\n", " \n", " for x, y, z in iterator: # 拿每一个minibatch\n", " x = x.to(device)\n", " y = y.to(device)\n", " z = z.to(device)\n", " \n", " optimizer.zero_grad()\n", " \n", " loss = model((x,y,z)) # loss\n", " loss.backward() # 进行BP\n", " # 梯度裁剪\n", " torch.nn.utils.clip_grad_norm_(model.parameters(), grad_clip)\n", " optimizer.step() # 更新参数\n", " epoch_loss += loss.item()\n", "\n", " return epoch_loss/len(iterator)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type LSTMNegModel. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Save model path:lm-bll-samp-20.pth| train loss 0.6933950247599724| valid loss 0.4913798246694648\n", "Epoch:1|Train Loss:0.6933950247599724|Val Loss:0.4913798246694648\n", "Save model path:lm-bll-samp-20.pth| train loss 0.4101916064924382| valid loss 0.40508265080659284\n", "Epoch:2|Train Loss:0.4101916064924382|Val Loss:0.40508265080659284\n", "Save model path:lm-bll-samp-20.pth| train loss 0.3178675065332271| valid loss 0.3808679373367973\n", "Epoch:3|Train Loss:0.3178675065332271|Val Loss:0.3808679373367973\n", "Epoch:4|Train Loss:0.25422142271665815|Val Loss:0.385563172723936\n", "Epoch:5|Train Loss:0.20191996536673384|Val Loss:0.4142624761747277\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.15997874011543203|Val Loss:0.45911684243575385\n", "Epoch:7|Train Loss:0.12928659540224582|Val Loss:0.497904518376226\n", "Epoch:8|Train Loss:0.1091923418038703|Val Loss:0.5218355098496312\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:nan|Val Loss:nan\n", "Early stop!\n" ] } ], "source": [ "optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE) # 指定优化器\n", "scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5) # 学习率缩减?\n", "\n", "SCHED_NUM = 0\n", "model_name = MODEL_PATH.format(SAMPLE_NUM)\n", "for epoch in range(1, EPOCHS+1):\n", " train_loss = train(model, DEVICE, train_batch, optimizer, GRAD_CLIP)\n", " valid_loss = evaluate(model, DEVICE, dev_batch)\n", " if valid_loss < BEST_VALID_LOSS: # 如果是最好的模型就保存到文件夹\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(model, model_name)\n", " print(\"Save model path:{}| train loss {}| valid loss {}\".format(model_name, train_loss, valid_loss))\n", " SCHED_NUM = 0\n", " else:\n", " SCHED_NUM += 1\n", " if SCHED_NUM % 3 == 0:\n", " scheduler.step()\n", " print(\"Current lr:\", optimizer.param_groups[0]['lr'])\n", " if SCHED_NUM == 7:\n", " print(\"Early stop!\")\n", " break\n", " print('Epoch:{}|Train Loss:{}|Val Loss:{}'.format(epoch, train_loss, valid_loss))\n", " " ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.3985916440901549\n" ] } ], "source": [ "model = torch.load(model_name)\n", "test_loss = evaluate(model, DEVICE, test_batch)\n", "print('Test Loss: {}'.format(test_loss))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 问题\n", "- 在使用binary log loss 的情况下,如何评价模型?\n", "- 梯度截断的情况下依然会存在loss nan?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 不同负采样数量" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "***负采样数量20***\n", "Save model path:lm-bll-samp-20.pth| train loss 0.6850260819526429| valid loss 0.48111668617829034\n", "Epoch:1|Train Loss:0.6850260819526429|Val Loss:0.48111668617829034\n", "Save model path:lm-bll-samp-20.pth| train loss 0.4033044838207833| valid loss 0.4045242161854454\n", "Epoch:2|Train Loss:0.4033044838207833|Val Loss:0.4045242161854454\n", "Save model path:lm-bll-samp-20.pth| train loss 0.317084124430697| valid loss 0.38859081268310547\n", "Epoch:3|Train Loss:0.317084124430697|Val Loss:0.38859081268310547\n", "Epoch:4|Train Loss:0.25521340173609713|Val Loss:0.3989918193091517\n", "Epoch:5|Train Loss:0.20302926701434115|Val Loss:0.4337702691555023\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.1606861978690041|Val Loss:0.4862003248670827\n", "Epoch:7|Train Loss:0.12954443748644057|Val Loss:0.5440482626790586\n", "Epoch:8|Train Loss:0.10722808088076875|Val Loss:0.601476040871247\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.09415154880348672|Val Loss:0.6661981914354407\n", "Early stop!\n", "Start test model: lm-bll-samp-20.pth\n", "Test Loss: 0.4130882659684057\n", "***负采样数量100***\n", "Save model path:lm-bll-samp-100.pth| train loss 0.6820947372532905| valid loss 0.48492626003597095\n", "Epoch:1|Train Loss:0.6820947372532905|Val Loss:0.48492626003597095\n", "Save model path:lm-bll-samp-100.pth| train loss 0.3994534594264436| valid loss 0.3995167561199354\n", "Epoch:2|Train Loss:0.3994534594264436|Val Loss:0.3995167561199354\n", "Save model path:lm-bll-samp-100.pth| train loss 0.3109292778721515| valid loss 0.37747382728949835\n", "Epoch:3|Train Loss:0.3109292778721515|Val Loss:0.37747382728949835\n", "Epoch:4|Train Loss:0.2507707264195097|Val Loss:0.38404754063357477\n", "Epoch:5|Train Loss:0.20165716135438452|Val Loss:0.4151491781939631\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.16272602127270497|Val Loss:0.46648676369501196\n", "Epoch:7|Train Loss:nan|Val Loss:nan\n", "Epoch:8|Train Loss:nan|Val Loss:nan\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:nan|Val Loss:nan\n", "Early stop!\n", "Start test model: lm-bll-samp-100.pth\n", "Test Loss: 0.40173600160557293\n", "***负采样数量500***\n", "Save model path:lm-bll-samp-500.pth| train loss 0.6668317427343511| valid loss 0.47362106779347296\n", "Epoch:1|Train Loss:0.6668317427343511|Val Loss:0.47362106779347296\n", "Save model path:lm-bll-samp-500.pth| train loss 0.3925739087639971| valid loss 0.40046126816583716\n", "Epoch:2|Train Loss:0.3925739087639971|Val Loss:0.40046126816583716\n", "Save model path:lm-bll-samp-500.pth| train loss 0.30847049036875684| valid loss 0.3803785054580025\n", "Epoch:3|Train Loss:0.30847049036875684|Val Loss:0.3803785054580025\n", "Epoch:4|Train Loss:0.24861439689993858|Val Loss:0.3855181465978208\n", "Epoch:5|Train Loss:nan|Val Loss:nan\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:nan|Val Loss:nan\n", "Epoch:7|Train Loss:nan|Val Loss:nan\n", "Epoch:8|Train Loss:nan|Val Loss:nan\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:nan|Val Loss:nan\n", "Early stop!\n", "Start test model: lm-bll-samp-500.pth\n", "Test Loss: 0.40358193283495697\n" ] } ], "source": [ "sample_num = [20, 100, 500]\n", "for n in sample_num:\n", " print(\"***负采样数量{}***\".format(n))\n", " model_name = 'lm-bll-samp-{}.pth'.format(n)\n", " SAMPLE_NUM = n\n", " BEST_VALID_LOSS = float('inf')\n", " train_data, train_label, train_neg = model_sequence(train_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", " dev_data, dev_label, dev_neg = model_sequence(dev_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", " test_data, test_label, test_neg = model_sequence(test_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", " \n", " \n", " train_batch = gene_batch_data(train_data, train_label, train_neg, batch_size=BATCH_SIZE)\n", " dev_batch = gene_batch_data(dev_data, dev_label, dev_neg, batch_size=BATCH_SIZE)\n", " test_batch = gene_batch_data(test_data, test_label, test_neg, batch_size=BATCH_SIZE)\n", " \n", " model = LSTMNegModel(EMBEDDING_DIM, EMBEDDING_OUT, HIDDEN_DIM, VOCAB_SIZE, SAMPLE_NUM)\n", " DEVICE = torch.device(\"cpu\")\n", " model = model.to(DEVICE)\n", " \n", " \n", " optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE) # 指定优化器\n", " scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5) # 学习率缩减?\n", "\n", " SCHED_NUM = 0\n", " for epoch in range(1, EPOCHS+1):\n", " train_loss = train(model, DEVICE, train_batch, optimizer, GRAD_CLIP)\n", " valid_loss = evaluate(model, DEVICE, dev_batch)\n", " if valid_loss < BEST_VALID_LOSS: # 如果是最好的模型就保存到文件夹\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(model, model_name)\n", " print(\"Save model path:{}| train loss {}| valid loss {}\".format(model_name, train_loss, valid_loss))\n", " SCHED_NUM = 0\n", " else:\n", " SCHED_NUM += 1\n", " if SCHED_NUM % 3 == 0:\n", " scheduler.step()\n", " print(\"Current lr:\", optimizer.param_groups[0]['lr'])\n", " if SCHED_NUM == 7:\n", " print(\"Early stop!\")\n", " break\n", " print('Epoch:{}|Train Loss:{}|Val Loss:{}'.format(epoch, train_loss, valid_loss))\n", " print(\"Start test model:\", model_name)\n", " model = torch.load(model_name)\n", " test_loss = evaluate(model, DEVICE, test_batch)\n", " print('Test Loss: {}'.format(test_loss))" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.41382545232772827\n" ] } ], "source": [ "model = torch.load('lm-bll-samp-20.pth')\n", "test_loss = evaluate(model, DEVICE, test_batch)\n", "print('Test Loss: {}'.format(test_loss))" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.3996773258499477\n" ] } ], "source": [ "model = torch.load('lm-bll-samp-100.pth')\n", "test_loss = evaluate(model, DEVICE, test_batch)\n", "print('Test Loss: {}'.format(test_loss))" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.40358193283495697\n" ] } ], "source": [ "model = torch.load('lm-bll-samp-500.pth')\n", "test_loss = evaluate(model, DEVICE, test_batch)\n", "print('Test Loss: {}'.format(test_loss))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 不同采样频率" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "def create_word_set(*paths, power=1):\n", " text = []\n", " for path in paths:\n", " with open(path, 'r', encoding='utf-8') as f:\n", " for line in f:\n", " text.extend(line.split())\n", " word_set = set(text)\n", " word2idx = {w:i for i, w in enumerate(word_set, 1)}\n", " idx2word = {i:w for i, w in enumerate(word_set, 1)}\n", " vocab = Counter(text)\n", " word_counts = torch.tensor([vocab[w] for w in word_set], dtype=torch.float32)\n", " \n", " word_freqs = word_counts / word_counts.sum()\n", " word_freqs = word_freqs ** power\n", " word_freqs = word_freqs / word_freqs.sum()\n", " return word_set, word2idx, idx2word, word_freqs" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "***负采样评率0.1***\n", "Save model path:lm-bll-power-10.0.pth| train loss 0.9948989587261322| valid loss 0.7935010117033253\n", "Epoch:1|Train Loss:0.9948989587261322|Val Loss:0.7935010117033253\n", "Save model path:lm-bll-power-10.0.pth| train loss 0.6510189051957841| valid loss 0.6306528008502462\n", "Epoch:2|Train Loss:0.6510189051957841|Val Loss:0.6306528008502462\n", "Save model path:lm-bll-power-10.0.pth| train loss 0.50438765388854| valid loss 0.5974134932393613\n", "Epoch:3|Train Loss:0.50438765388854|Val Loss:0.5974134932393613\n", "Epoch:4|Train Loss:0.40621826670905375|Val Loss:0.6067650797574416\n", "Epoch:5|Train Loss:0.32600710128850124|Val Loss:0.6531567625377489\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.2615356782966472|Val Loss:0.7258318662643433\n", "Epoch:7|Train Loss:0.2128219671864459|Val Loss:0.8177054602166881\n", "Epoch:8|Train Loss:0.1776645783572755|Val Loss:0.9252345847046893\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.15405175513885122|Val Loss:1.0920288873755413\n", "Early stop!\n", "Start test model: lm-bll-power-10.0.pth\n", "Test Loss: 0.6086942449859951\n", "***负采样评率0.2***\n", "Save model path:lm-bll-power-20.0.pth| train loss 0.9748336850328648| valid loss 0.7547413758609606\n", "Epoch:1|Train Loss:0.9748336850328648|Val Loss:0.7547413758609606\n", "Save model path:lm-bll-power-20.0.pth| train loss 0.6323788933297421| valid loss 0.6168249871419824\n", "Epoch:2|Train Loss:0.6323788933297421|Val Loss:0.6168249871419824\n", "Save model path:lm-bll-power-20.0.pth| train loss 0.49545912064136344| valid loss 0.5861824880475583\n", "Epoch:3|Train Loss:0.49545912064136344|Val Loss:0.5861824880475583\n", "Epoch:4|Train Loss:0.4001466446417443|Val Loss:0.596151370069255\n", "Epoch:5|Train Loss:0.3228167788462436|Val Loss:0.642710136330646\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.2610978181374834|Val Loss:0.7307759652967039\n", "Epoch:7|Train Loss:0.21398929641284842|Val Loss:0.8385945662208225\n", "Epoch:8|Train Loss:0.17975101477288186|Val Loss:1.004443163457124\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.15831324410565356|Val Loss:0.9026282792506011\n", "Early stop!\n", "Start test model: lm-bll-power-20.0.pth\n", "Test Loss: 0.6021935447402622\n", "***负采样评率0.30000000000000004***\n", "Save model path:lm-bll-power-30.000000000000004.pth| train loss 0.9867634741549797| valid loss 0.7650853395462036\n", "Epoch:1|Train Loss:0.9867634741549797|Val Loss:0.7650853395462036\n", "Save model path:lm-bll-power-30.000000000000004.pth| train loss 0.626170499210662| valid loss 0.6223440610844156\n", "Epoch:2|Train Loss:0.626170499210662|Val Loss:0.6223440610844156\n", "Save model path:lm-bll-power-30.000000000000004.pth| train loss 0.4874343772200828| valid loss 0.5943890810012817\n", "Epoch:3|Train Loss:0.4874343772200828|Val Loss:0.5943890810012817\n", "Epoch:4|Train Loss:0.3933774288347427|Val Loss:0.6066625170085741\n", "Epoch:5|Train Loss:0.3164727397738619|Val Loss:0.6591577426246975\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.25485571735399837|Val Loss:0.746193616286568\n", "Epoch:7|Train Loss:0.2084565154732542|Val Loss:0.8437900776448457\n", "Epoch:8|Train Loss:0.17540406427801924|Val Loss:0.863612755485203\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.15683165810843733|Val Loss:1.003725712713988\n", "Early stop!\n", "Start test model: lm-bll-power-30.000000000000004.pth\n", "Test Loss: 0.6106626650561457\n", "***负采样评率0.4***\n", "Save model path:lm-bll-power-40.0.pth| train loss 0.958821158776892| valid loss 0.7331090128940084\n", "Epoch:1|Train Loss:0.958821158776892|Val Loss:0.7331090128940084\n", "Save model path:lm-bll-power-40.0.pth| train loss 0.6107472032308578| valid loss 0.6006786901017894\n", "Epoch:2|Train Loss:0.6107472032308578|Val Loss:0.6006786901017894\n", "Save model path:lm-bll-power-40.0.pth| train loss 0.48071020381881835| valid loss 0.5776361797166907\n", "Epoch:3|Train Loss:0.48071020381881835|Val Loss:0.5776361797166907\n", "Epoch:4|Train Loss:0.38891044940720215|Val Loss:0.5957515913507213\n", "Epoch:5|Train Loss:0.31141142134970806|Val Loss:0.6544018750605376\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.24939557156981307|Val Loss:0.7439283702684485\n", "Epoch:7|Train Loss:0.20372031050476622|Val Loss:0.8144047649010367\n", "Epoch:8|Train Loss:0.17533108195725908|Val Loss:0.823820103769717\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.15775305611339022|Val Loss:0.9542471403660981\n", "Early stop!\n", "Start test model: lm-bll-power-40.0.pth\n", "Test Loss: 0.5966390539770541\n", "***负采样评率0.5***\n", "Save model path:lm-bll-power-50.0.pth| train loss 0.9435701893365129| valid loss 0.7158774007921633\n", "Epoch:1|Train Loss:0.9435701893365129|Val Loss:0.7158774007921633\n", "Save model path:lm-bll-power-50.0.pth| train loss 0.5931281227063625| valid loss 0.5870136437208756\n", "Epoch:2|Train Loss:0.5931281227063625|Val Loss:0.5870136437208756\n", "Save model path:lm-bll-power-50.0.pth| train loss 0.46800439947463096| valid loss 0.5646290286727573\n", "Epoch:3|Train Loss:0.46800439947463096|Val Loss:0.5646290286727573\n", "Epoch:4|Train Loss:0.3798060012941665|Val Loss:0.5805345747781836\n", "Epoch:5|Train Loss:0.30568357564984483|Val Loss:0.62824373141579\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.24523917720355887|Val Loss:0.7107136223627173\n", "Epoch:7|Train Loss:0.1996127222763731|Val Loss:0.8021654020185056\n", "Epoch:8|Train Loss:0.1671095055310016|Val Loss:0.8597482520601024\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.15087596774893872|Val Loss:0.8610861327337183\n", "Early stop!\n", "Start test model: lm-bll-power-50.0.pth\n", "Test Loss: 0.5790753831034121\n", "***负采样评率0.6000000000000001***\n", "Save model path:lm-bll-power-60.00000000000001.pth| train loss 0.9017548186981932| valid loss 0.6799185172371243\n", "Epoch:1|Train Loss:0.9017548186981932|Val Loss:0.6799185172371243\n", "Save model path:lm-bll-power-60.00000000000001.pth| train loss 0.5692631783003502| valid loss 0.5619786070740741\n", "Epoch:2|Train Loss:0.5692631783003502|Val Loss:0.5619786070740741\n", "Save model path:lm-bll-power-60.00000000000001.pth| train loss 0.4475860703498759| valid loss 0.5372326749822368\n", "Epoch:3|Train Loss:0.4475860703498759|Val Loss:0.5372326749822368\n", "Epoch:4|Train Loss:0.36160829314526094|Val Loss:0.5483119708040486\n", "Epoch:5|Train Loss:0.28881952483603296|Val Loss:0.5967876664970232\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.22951148006510227|Val Loss:0.676640132199163\n", "Epoch:7|Train Loss:nan|Val Loss:nan\n", "Epoch:8|Train Loss:nan|Val Loss:nan\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:nan|Val Loss:nan\n", "Early stop!\n", "Start test model: lm-bll-power-60.00000000000001.pth\n", "Test Loss: 0.5482260558916174\n", "***负采样评率0.7000000000000001***\n", "Save model path:lm-bll-power-70.0.pth| train loss 0.8648699962712348| valid loss 0.6393718849057737\n", "Epoch:1|Train Loss:0.8648699962712348|Val Loss:0.6393718849057737\n", "Save model path:lm-bll-power-70.0.pth| train loss 0.537889005814461| valid loss 0.5257362218006797\n", "Epoch:2|Train Loss:0.537889005814461|Val Loss:0.5257362218006797\n", "Save model path:lm-bll-power-70.0.pth| train loss 0.42365823353224613| valid loss 0.4987663678500963\n", "Epoch:3|Train Loss:0.42365823353224613|Val Loss:0.4987663678500963\n", "Epoch:4|Train Loss:0.34248341810196004|Val Loss:0.5069697680680648\n", "Epoch:5|Train Loss:0.2736330385854904|Val Loss:0.5483671076919722\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.21770472816647368|Val Loss:0.6155142512010492\n", "Epoch:7|Train Loss:0.175786009890602|Val Loss:0.6884120028951893\n", "Epoch:8|Train Loss:0.14760311391759426|Val Loss:0.7698867321014404\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.1315900529239406|Val Loss:0.7835414772448333\n", "Early stop!\n", "Start test model: lm-bll-power-70.0.pth\n", "Test Loss: 0.5211785280186197\n", "***负采样评率0.8***\n", "Save model path:lm-bll-power-80.0.pth| train loss 0.8012913681091146| valid loss 0.5941181701162587\n", "Epoch:1|Train Loss:0.8012913681091146|Val Loss:0.5941181701162587\n", "Save model path:lm-bll-power-80.0.pth| train loss 0.4963791089806151| valid loss 0.48974250321802887\n", "Epoch:2|Train Loss:0.4963791089806151|Val Loss:0.48974250321802887\n", "Save model path:lm-bll-power-80.0.pth| train loss 0.38738526134414875| valid loss 0.46564420539399853\n", "Epoch:3|Train Loss:0.38738526134414875|Val Loss:0.46564420539399853\n", "Epoch:4|Train Loss:0.3097085648394646|Val Loss:0.4749450255995211\n", "Epoch:5|Train Loss:0.24491260787273975|Val Loss:0.5136380921239438\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.19346652766491504|Val Loss:0.5805068029009778\n", "Epoch:7|Train Loss:0.15600876759816992|Val Loss:0.6635569048964459\n", "Epoch:8|Train Loss:0.12969337978420106|Val Loss:0.7160062427106111\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:0.11285069826594059|Val Loss:0.7800557846608369\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Early stop!\n", "Start test model: lm-bll-power-80.0.pth\n", "Test Loss: 0.48981772298398224\n", "***负采样评率0.9***\n", "Save model path:lm-bll-power-90.0.pth| train loss 0.7386503298865988| valid loss 0.5410839500634567\n", "Epoch:1|Train Loss:0.7386503298865988|Val Loss:0.5410839500634567\n", "Save model path:lm-bll-power-90.0.pth| train loss 0.4514954851028767| valid loss 0.45555459546006244\n", "Epoch:2|Train Loss:0.4514954851028767|Val Loss:0.45555459546006244\n", "Save model path:lm-bll-power-90.0.pth| train loss 0.3583537828414998| valid loss 0.4365962821504344\n", "Epoch:3|Train Loss:0.3583537828414998|Val Loss:0.4365962821504344\n", "Epoch:4|Train Loss:0.2898053713142872|Val Loss:0.4457312926002171\n", "Epoch:5|Train Loss:0.2302773582174423|Val Loss:0.4818404653797979\n", "Current lr: 0.001\n", "Epoch:6|Train Loss:0.18138453071104718|Val Loss:0.5416174245917279\n", "Epoch:7|Train Loss:0.14555465786698016|Val Loss:0.5979200472002444\n", "Epoch:8|Train Loss:0.120943028876122|Val Loss:0.6374243718126545\n", "Current lr: 0.0005\n", "Epoch:9|Train Loss:nan|Val Loss:nan\n", "Early stop!\n", "Start test model: lm-bll-power-90.0.pth\n", "Test Loss: 0.45819183795348456\n" ] } ], "source": [ "SAMPLE_NUM = 20\n", "\n", "for p in range(1, 10):\n", " BEST_VALID_LOSS = float('inf')\n", " power = 0.1*p \n", " print(\"***负采样评率{}***\".format(power))\n", " model_name = 'lm-bll-power-{}.pth'.format(power*100)\n", " word_set, word2idx, idx2word, word_freqs = create_word_set(train_file, dev_file, test_file, power=power)\n", "\n", " # 设置 值为 0\n", " PAD_IDX = 0\n", " idx2word[PAD_IDX] = ''\n", " word2idx[''] = PAD_IDX\n", " \n", " train_sentences = load_corpus(train_file)\n", " dev_sentences = load_corpus(dev_file)\n", " test_sentences = load_corpus(test_file)\n", "\n", " train_words = sentences2words(train_sentences)\n", " dev_words = sentences2words(dev_sentences)\n", " test_words = sentences2words(test_sentences)\n", " train_data, train_label, train_neg = model_sequence(train_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", " dev_data, dev_label, dev_neg = model_sequence(dev_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", " test_data, test_label, test_neg = model_sequence(test_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\n", " \n", " \n", " train_batch = gene_batch_data(train_data, train_label, train_neg, batch_size=BATCH_SIZE)\n", " dev_batch = gene_batch_data(dev_data, dev_label, dev_neg, batch_size=BATCH_SIZE)\n", " test_batch = gene_batch_data(test_data, test_label, test_neg, batch_size=BATCH_SIZE)\n", " \n", " model = LSTMNegModel(EMBEDDING_DIM, EMBEDDING_OUT, HIDDEN_DIM, VOCAB_SIZE, SAMPLE_NUM)\n", " DEVICE = torch.device(\"cpu\")\n", " model = model.to(DEVICE)\n", " \n", " \n", " optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE) # 指定优化器\n", " scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5) # 学习率缩减?\n", "\n", " SCHED_NUM = 0\n", " for epoch in range(1, EPOCHS+1):\n", " train_loss = train(model, DEVICE, train_batch, optimizer, GRAD_CLIP)\n", " valid_loss = evaluate(model, DEVICE, dev_batch)\n", " if valid_loss < BEST_VALID_LOSS: # 如果是最好的模型就保存到文件夹\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(model, model_name)\n", " print(\"Save model path:{}| train loss {}| valid loss {}\".format(model_name, train_loss, valid_loss))\n", " SCHED_NUM = 0\n", " else:\n", " SCHED_NUM += 1\n", " if SCHED_NUM % 3 == 0:\n", " scheduler.step()\n", " print(\"Current lr:\", optimizer.param_groups[0]['lr'])\n", " if SCHED_NUM == 7:\n", " print(\"Early stop!\")\n", " break\n", " print('Epoch:{}|Train Loss:{}|Val Loss:{}'.format(epoch, train_loss, valid_loss))\n", " print(\"Start test model:\", model_name)\n", " model = torch.load(model_name)\n", " test_loss = evaluate(model, DEVICE, test_batch)\n", " print('Test Loss: {}'.format(test_loss))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P003-pytorch-Language-Model/_3_lm_lstm_lc.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## 更大的context\n", "- 使用额外的context(语境/上下文)训练我们的语言模型" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn as nn\n", "import torch.nn.functional as F\n", "import torch.optim as optim\n", "\n", "import numpy as np\n", "from collections import Counter" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "train_file = './data/bobsue.prevsent.train.tsv'\n", "dev_file = './data/bobsue.prevsent.dev.tsv'\n", "test_file = './data/bobsue.prevsent.test.tsv'\n", "word_file = './data/bobsue.voc.txt'\n", "\n", "BATCH_SIZE = 32 # 批次大小\n", "EMBEDDING_DIM = 200 # 词向量维度\n", "HIDDEN_DIM = 200 # 隐含层\n", "GRAD_CLIP = 5. # 梯度截断值\n", "EPOCHS = 20\n", "LEARNING_RATE = 0.01 # 初始学习率\n", "\n", "BEST_VALID_ACC = 0. # 初始验证集上的损失值,设为0\n", "MODEL_PATH = \"lm-large-cont-dim{}.pth\" # 模型名称\n", "USE_CUDA = torch.cuda.is_available() # 是否使用GPU\n", "NUM_CUDA = torch.cuda.device_count() # GPU数量" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def read_word_set(path):\n", " with open(path, 'r', encoding='utf-8') as f:\n", " text = f.readlines()\n", " words = [w.strip() for w in text]\n", " return words" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "words_set = read_word_set(word_file)\n", "word2idx = {w:i for i, w in enumerate(words_set, 1)}\n", "idx2word = {i:w for i, w in enumerate(words_set, 1)}\n", "# 设置 值为 0\n", "PAD_IDX = 0\n", "idx2word[PAD_IDX] = ''\n", "word2idx[''] = PAD_IDX" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "def read_corpus(path):\n", " \"\"\"读取数据集,返回句子列表\"\"\"\n", " contexts = []\n", " target_sentences = []\n", " with open(path, 'r', encoding='utf-8') as f:\n", " for sentence in f.readlines():\n", " sentence = sentence.strip()\n", " context, target_sentence = sentence.split('\\t')\n", " contexts.append(context)\n", " target_sentences.append(target_sentence)\n", " \n", " return (contexts, target_sentences)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "train_context, train_target = read_corpus(train_file)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(6036, 6036)" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(train_context), len(train_target)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(' Sue realized she was really bored . ',\n", " ' She ate quickly and asked to be taken home . ')" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "train_context[0], train_target[0]" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "train_context, train_target = read_corpus(train_file)\n", "dev_context, dev_target = read_corpus(dev_file)\n", "test_context, test_target = read_corpus(test_file)\n", "\n", "train_words = [w for s in train_context+train_target for w in s.split()]\n", "dev_words = [w for s in dev_context+dev_target for w in s.split()]\n", "test_words = [w for s in test_context+test_target for w in s.split()]" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "训练集集句子个数:750\n", "验证集句子个数:750\n", "测试集句子个数:750\n", "训练集集单词个数:139045\n", "验证集单词个数:16984\n", "测试集单词个数:17233\n" ] } ], "source": [ "print(\"训练集集句子个数:{}\".format(len(test_context)))\n", "print(\"验证集句子个数:{}\".format(len(dev_context)))\n", "print(\"测试集句子个数:{}\".format(len(test_context)))\n", "\n", "print(\"训练集集单词个数:{}\".format(len(train_words)))\n", "print(\"验证集单词个数:{}\".format(len(dev_words)))\n", "print(\"测试集单词个数:{}\".format(len(test_words)))" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "训练集第二句最长句子长度为:21\n", "验证集第二句最长句子长度为:20\n", "测试集第二句最长句子长度为:21\n" ] } ], "source": [ "print(\"训练集第二句最长句子长度为:{}\".format(max([len(s.split()) for s in train_target])))\n", "print(\"验证集第二句最长句子长度为:{}\".format(max([len(s.split()) for s in dev_target])))\n", "print(\"测试集第二句最长句子长度为:{}\".format(max([len(s.split()) for s in test_target])))" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "def prepare_sequence(context, target, word2idx, seq_len=21):\n", " \"\"\"输入语料句子列表,返回模型输入序列的idx\"\"\"\n", " contexts = []\n", " sentences = []\n", " labels = []\n", " \n", " for c, t in zip(context,target):\n", " c_words = c.split()\n", " c_tample = [0] * seq_len\n", " for i, w in enumerate(c_words):\n", " c_tample[i] = word2idx[w]\n", " contexts.append(c_tample)\n", " \n", " \n", " t_words = t.split()\n", " sentence_tample = [0] * seq_len\n", " for i, w in enumerate(t_words[:-1]):\n", " sentence_tample[i] = word2idx[w]\n", " sentences.append(sentence_tample)\n", " \n", " target_tample = [0] * seq_len\n", " for i, w in enumerate(t_words[1:]):\n", " target_tample[i] = word2idx[w]\n", " labels.append(target_tample)\n", " \n", " return contexts, sentences, labels" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "train_context, train_data, train_label = prepare_sequence(train_context, train_target, word2idx)\n", "dev_context, dev_data, dev_label = prepare_sequence(dev_context, dev_target, word2idx)\n", "test_context, test_data, test_label = prepare_sequence(test_context, test_target, word2idx)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ " Sue realized she was really bored . \n", " She ate quickly and asked to be taken home . \n", "She ate quickly and asked to be taken home . \n" ] } ], "source": [ "idx = 0\n", "for i in train_context[idx]:\n", " if i==0:\n", " print()\n", " break\n", " print(idx2word[i], end=' ')\n", " \n", "for i in train_data[idx]:\n", " if i==0:\n", " print()\n", " break\n", " print(idx2word[i], end=' ')\n", " \n", "for i in train_label[idx]:\n", " if i==0:\n", " print()\n", " break\n", " print(idx2word[i], end=' ')" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "def get_batch(context, data, label, batch_size=32):\n", " \"\"\"\n", " 构建 batch tensor,返回 batch 列表,每个batch为二元组包含data和label\n", " \n", " \"\"\"\n", " batch_data = []\n", " context_tensor = torch.tensor(context, dtype=torch.long)\n", " data_tensor = torch.tensor(data, dtype=torch.long)\n", " label_tensor = torch.tensor(label, dtype=torch.long)\n", " n, dim = data_tensor.size()\n", " for start in range(0, n, batch_size):\n", " end = start + batch_size\n", " if end > n:\n", " print(\"data not eq batch size.\")\n", " break\n", " cbatch = context_tensor[start: ]\n", " dbatch = data_tensor[start: ]\n", " lbatch = label_tensor[start: ]\n", " print(batch.size())\n", " else:\n", " cbatch = context_tensor[start: end]\n", " dbatch = data_tensor[start: end]\n", " lbatch = label_tensor[start: end]\n", " batch_data.append((cbatch, dbatch, lbatch))\n", " return batch_data" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "data not eq batch size.\n", "data not eq batch size.\n", "data not eq batch size.\n" ] } ], "source": [ "train_batch = get_batch(train_context, train_data, train_label, batch_size=BATCH_SIZE)\n", "dev_batch = get_batch(dev_context, dev_data, dev_label, batch_size=BATCH_SIZE)\n", "test_batch = get_batch(test_context, test_data, test_label, batch_size=BATCH_SIZE)" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "class LSTMLM(nn.Module):\n", " def __init__(self, embedding_dim, hidden_dim, vocab_size):\n", " super(LSTMLM, self).__init__()\n", " self.hidden_dim = hidden_dim\n", " self.word_embeddings = nn.Embedding(vocab_size, embedding_dim)\n", " self.lstm = nn.LSTM(embedding_dim, hidden_dim, batch_first=True)\n", " self.hidden2word = nn.Linear(hidden_dim, vocab_size)\n", " \n", " def forward(self, context, data):\n", " \n", " # [batch_size, seq_len] ==> [batch_size, seq_len, embedding_dim]\n", " context_embed = self.word_embeddings(context)\n", " embeds = self.word_embeddings(data)\n", " # [batch, seq_len, imput_size] ==> [batch, seq_len, hidden_size]\n", " lstm_out, hidden = self.lstm(context_embed)\n", " lstm_out, (h_n, c_n) = self.lstm(embeds, hidden)\n", " # [batch, seq_len, hidden_size] ==> [batch*seq_len, vocab_size]\n", " target_space = self.hidden2word(lstm_out.contiguous().view(-1, self.hidden_dim))\n", " # 添加mask\n", " mask = (data != PAD_IDX).view(-1)\n", " # 获取 非pad 数据\n", " mask_target = target_space[mask]\n", " \n", " target_scores = F.log_softmax(mask_target, dim=1)\n", " return target_scores" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "def acc_score(y_hat, y):\n", " # 返回最大的概率的索引\n", " pred = y_hat.argmax(dim=1)\n", " # print(y.view(-1))\n", " acc_count = torch.eq(pred, y.view(-1))\n", " score = acc_count.sum().item() / acc_count.size()[0]\n", " return score\n", "\n", "def train(model, device, iterator, optimizer, criterion, grad_clip):\n", " epoch_loss = 0 # 积累变量\n", " epoch_acc = 0 # 积累变量\n", " model.train() # 该函数表示PHASE=Train\n", " \n", " for c, x, y in iterator: # 拿每一个minibatch\n", " c = c.to(device)\n", " x = x.to(device)\n", " y = y.to(device)\n", " \n", " optimizer.zero_grad()\n", " mask = y != PAD_IDX\n", " pure_y = y[mask]\n", " \n", " fx = model(c, x) # 进行forward\n", " loss = criterion(fx, pure_y) # 计算loss\n", " acc = acc_score(fx, pure_y) # 计算准确率\n", " loss.backward() # 进行BP\n", " \n", " # 梯度裁剪\n", " torch.nn.utils.clip_grad_norm_(model.parameters(), grad_clip)\n", " optimizer.step() # 更新参数\n", " \n", " epoch_loss += loss\n", " epoch_acc += acc\n", " \n", " return epoch_loss/len(iterator),epoch_acc/len(iterator)\n", "\n", "def evaluate(model, device, iterator, criterion):\n", " model.eval() # 不更新参数,预测模式\n", " epoch_loss=0 # 积累变量\n", " epoch_acc=0 # 积累变量\n", " \n", " with torch.no_grad():\n", " for c, x, y in iterator:\n", " c = c.to(device)\n", " x = x.to(device)\n", " y = y.to(device)\n", " mask = y != PAD_IDX\n", " pure_y = y[mask]\n", " \n", " fx = model(c, x)\n", " loss = criterion(fx, pure_y)\n", " acc = acc_score(fx, pure_y)\n", " epoch_loss += loss\n", " epoch_acc += acc\n", " return epoch_loss/len(iterator), epoch_acc/len(iterator)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[0, 1, 2, 3]\n" ] } ], "source": [ "model = LSTMLM(EMBEDDING_DIM, HIDDEN_DIM, len(word2idx))\n", "# 使用GPU\n", "DEVICE = torch.device(\"cuda\" if USE_CUDA else 'cpu')\n", "model = model.to(DEVICE)\n", "if NUM_CUDA > 1:\n", " device_ids = list(range(NUM_CUDA))\n", " print(device_ids)\n", " model = nn.DataParallel(model, device_ids=device_ids)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/anaconda3/lib/python3.6/site-packages/torch/nn/modules/rnn.py:179: RuntimeWarning: RNN module weights are not part of single contiguous chunk of memory. This means they need to be compacted at every call, possibly greatly increasing memory usage. To compact weights again call flatten_parameters().\n", " self.dropout, self.training, self.bidirectional, self.batch_first)\n", "/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type LSTMLM. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Save model: lm-large-cont-dim200.pth\n", "Epoch:1|Train Loss:3.98225|Train Acc:0.279988|Val Loss:3.53932|Val Acc:0.318935\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:2|Train Loss:3.29483|Train Acc:0.325456|Val Loss:3.50593|Val Acc:0.322937\n", "Current lr: 0.01\n", "Epoch:3|Train Loss:2.9768|Train Acc:0.346684|Val Loss:3.55512|Val Acc:0.320301\n", "Current lr: 0.005\n", "Epoch:4|Train Loss:2.73913|Train Acc:0.369789|Val Loss:3.65205|Val Acc:0.318491\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:5|Train Loss:2.33257|Train Acc:0.438309|Val Loss:3.66164|Val Acc:0.324247\n", "Current lr: 0.0025\n", "Epoch:6|Train Loss:2.07493|Train Acc:0.490698|Val Loss:3.74153|Val Acc:0.319476\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:7|Train Loss:1.81699|Train Acc:0.552415|Val Loss:3.76917|Val Acc:0.326346\n", "Current lr: 0.00125\n", "Epoch:8|Train Loss:1.69411|Train Acc:0.582961|Val Loss:3.82684|Val Acc:0.325274\n", "Current lr: 0.000625\n", "Epoch:9|Train Loss:1.56808|Train Acc:0.616432|Val Loss:3.85215|Val Acc:0.3233\n", "Current lr: 0.0003125\n", "Epoch:10|Train Loss:1.49412|Train Acc:0.637624|Val Loss:3.87085|Val Acc:0.323787\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:11|Train Loss:1.45339|Train Acc:0.649028|Val Loss:3.88107|Val Acc:0.326846\n", "Current lr: 0.00015625\n", "Epoch:12|Train Loss:1.43826|Train Acc:0.652809|Val Loss:3.88965|Val Acc:0.32667\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:13|Train Loss:1.41802|Train Acc:0.659076|Val Loss:3.89433|Val Acc:0.329787\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:14|Train Loss:1.41019|Train Acc:0.664199|Val Loss:3.89817|Val Acc:0.330222\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:15|Train Loss:1.4018|Train Acc:0.668941|Val Loss:3.90172|Val Acc:0.331231\n", "Save model: lm-large-cont-dim200.pth\n", "Epoch:16|Train Loss:1.39323|Train Acc:0.67114|Val Loss:3.90542|Val Acc:0.331238\n", "Current lr: 7.8125e-05\n", "Epoch:17|Train Loss:1.3845|Train Acc:0.674491|Val Loss:3.90938|Val Acc:0.330333\n", "Current lr: 3.90625e-05\n", "Epoch:18|Train Loss:1.37252|Train Acc:0.678065|Val Loss:3.91194|Val Acc:0.331097\n", "Current lr: 1.953125e-05\n", "Epoch:19|Train Loss:1.36638|Train Acc:0.680176|Val Loss:3.91317|Val Acc:0.33096\n", "Current lr: 9.765625e-06\n", "Epoch:20|Train Loss:1.36329|Train Acc:0.681004|Val Loss:3.91378|Val Acc:0.330965\n" ] } ], "source": [ "criterion = nn.NLLLoss() # 指定损失函数\n", "optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE) # 指定优化器\n", "scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5) # 学习率缩减?\n", "\n", "model_name = MODEL_PATH.format(EMBEDDING_DIM)\n", "LOG_INFO = 'Epoch:{}|Train Loss:{:.6}|Train Acc:{:.6}|Val Loss:{:.6}|Val Acc:{:.6}'\n", "\n", "SCHED_NUM = 0\n", "for epoch in range(1, EPOCHS+1):\n", " train_loss, train_acc = train(model, DEVICE, train_batch, optimizer, criterion, GRAD_CLIP)\n", " valid_loss, valid_acc = evaluate(model, DEVICE, dev_batch, criterion)\n", " # 如果是测试集准确率有提升\n", " if valid_acc > BEST_VALID_ACC: \n", " BEST_VALID_ACC = valid_acc\n", " torch.save(model, model_name)\n", " print(\"Save model: \", model_name)\n", " SCHED_NUM = 0\n", " else:\n", " SCHED_NUM += 1\n", " scheduler.step()\n", " print(\"Current lr:\", optimizer.param_groups[0]['lr'])\n", " if SCHED_NUM == 7:\n", " print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))\n", " print(\"Early stop!\")\n", " break\n", " print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 3.91726 | Test Acc: 0.333578 |\n" ] } ], "source": [ "model = torch.load(model_name)\n", "model = model.to(DEVICE)\n", "test_loss, test_acc = evaluate(model, DEVICE, test_batch, criterion)\n", "print('Test Loss: {:.6} | Test Acc: {:.6} |'.format(test_loss, test_acc))" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "def print_pred_error_words(model,device,data_batch):\n", " model.eval()\n", " error_words = []\n", " with torch.no_grad():\n", " for c, x, y in data_batch:\n", " c = c.to(device)\n", " x = x.to(device)\n", " y = y.to(device)\n", " \n", " mask = (y!=PAD_IDX)\n", " fx = model(c, x)\n", " \n", " pred_idx = fx.argmax(dim=1)\n", " ground_truth_idx = y[mask]\n", " for p, g in zip(pred_idx.tolist(), ground_truth_idx.tolist()):\n", " if p != g:\n", " error_words.append(\" | \".join([idx2word[g], idx2word[p]]))\n", " return error_words" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [], "source": [ "model = torch.load(model_name)\n", "error_words = print_pred_error_words(model, DEVICE, test_batch)" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "真实值 | 预测值 | 预测错误次数\n", "('Bob | He', 88)\n", "('Sue | She', 54)\n", "('to | .', 44)\n", "('had | was', 38)\n", "('decided | was', 37)\n", "('Bob | She', 33)\n", "('and | .', 30)\n", "('. | to', 26)\n", "('her | the', 24)\n", "('in | .', 24)\n", "('Sue | He', 24)\n", "('for | .', 24)\n", "('his | the', 22)\n", "('She | He', 21)\n", "('He | She', 20)\n", "(', | .', 20)\n", "('the | his', 20)\n", "('. | and', 20)\n", "('the | .', 19)\n", "('His | He', 17)\n", "('a | the', 17)\n", "('went | was', 17)\n", "('the | her', 16)\n", "('Her | She', 16)\n", "('and | to', 16)\n", "(\"'s | was\", 15)\n", "('got | was', 15)\n", "('Sue | Bob', 15)\n", "('she | he', 14)\n", "('a | to', 14)\n", "('the | a', 14)\n", "('They | She', 14)\n", "('One | She', 14)\n", "('wanted | was', 14)\n", "('he | to', 14)\n" ] } ], "source": [ "words_counter = Counter(error_words)\n", "TopN = 35\n", "topn_words = words_counter.most_common(TopN)\n", "print(\"真实值 | 预测值 | 预测错误次数\")\n", "for w in topn_words:\n", " print(w)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P004-Pytorch-Word2Vec/PytorchWord2Vec.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## 词向量\n", "#### 学习目标\n", "\n", "- 学习词向量的概念\n", "- 用Skip-thought模型训练词向量\n", "- 学习使用PyTorch dataset和dataloader\n", "- 学习定义PyTorch模型\n", "- 学习torch.nn中常见的Module\n", " - Embedding\n", "- 学习常见的PyTorch operations\n", " - bmm\n", " - logsigmoid\n", "- 保存和读取PyTorch模型\n", "\n", "- 第二课使用的训练数据可以从以下链接下载到。\n", " - 链接:https://pan.baidu.com/s/1tFeK3mXuVXEy3EMarfeWvg 密码:v2z5\n", "\n", "#### 内容\n", "\n", "- 在这一份notebook中,我们会(尽可能)尝试复现论文[Distributed Representations of Words and Phrases and their Compositionality](http://papers.nips.cc/paper/5021-distributed-representations-of-words-and-phrases-and-their-compositionality.pdf)中训练词向量的方法. 我们会实现Skip-gram模型,并且使用论文中noice contrastive sampling的目标函数。\n", "\n", "- 这篇论文有很多模型实现的细节,这些细节对于词向量的好坏至关重要。我们虽然无法完全复现论文中的实验结果,主要是由于计算资源等各种细节原因,但是我们还是可以大致展示如何训练词向量。\n", "\n", "- 以下是一些我们没有实现的细节\n", " - subsampling:参考论文section 2.3" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn as nn\n", "import torch.nn.functional as F\n", "import torch.utils.data as tud\n", "from torch.nn.parameter import Parameter\n", "\n", "from collections import Counter\n", "import numpy as np\n", "import random\n", "import math\n", "\n", "import pandas as pd\n", "import scipy\n", "import sklearn\n", "from sklearn.metrics.pairwise import cosine_similarity" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n", "\n", "# 为保证实验结果可以复现,我们经常会把各种random seed固定在某一个值\n", "SEED = 2019\n", "random.seed(SEED)\n", "np.random.seed(SEED)\n", "torch.manual_seed(SEED)\n", "if torch.cuda.is_available():\n", " torch.cuda.manual_seed(SEED)\n", " \n", "# 设定一些超参数\n", "K = 100 # 负样本数量\n", "C = 3 # word2vec窗口大小(半径)\n", "EPOCHS = 2 # 跑完一次全量数据为一次EPOCHS\n", "MAX_VOCAB_SIZE = 30000 # 词典容量,即有3万个单词\n", "BATCH_SIZE = 128 # 每批次数据大小\n", "LEARNING_RATE = 0.2 # 初始学习率\n", "EMBEDDING_SIZE = 100 # 词向量维度\n", "\n", "\n", "TRAIN_FILE = \"data/text8/text8.train.txt\"\n", "EVAL_FILE = \"data/text8/text8.dev.txt\"\n", "TEST_FILE = \"data/text8/text8.test.txt\"" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "# tokenize函数,把一篇文本转化成一个个单词\n", "def word_tockenize(text):\n", " return text.split()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 数据预处理(文本处理)\n", "- 从文本文件中读取所有的文字,通过这些文本创建一个vocabulary\n", "- 由于单词数量可能太大,我们只选取最常见的MAX_VOCAB_SIZE个单词\n", "- 我们添加一个UNK单词表示所有不常见的单词\n", "- 我们需要记录单词到index的mapping,以及index到单词的mapping,单词的count,单词的(normalized) frequency,以及单词总数。" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "def text_preprocess(txt_file):\n", " with open(txt_file, \"r\") as f:\n", " text = f.read()\n", " text = [w for w in word_tockenize(text.lower())]\n", " # 词频最大的MAX_VOCAB_SIZE-1个单词,剩下一个留给”\"\n", " vocab = dict(Counter(text).most_common(MAX_VOCAB_SIZE-1)) \n", " # 其他未在vocab中的单词用代替,并计算unk的词频,添加到vocab字典中\n", " vocab[\"\"] = len(text) - np.sum(list(vocab.values()))\n", " \n", " idx2word = [word for word in vocab.keys()] \n", " word2idx = {word: i for i, word in enumerate(idx2word)}\n", " \n", " # 负样本采样\n", " # 每个单词出现的数量列表\n", " word_counts = np.array([count for count in vocab.values()], \n", " dtype=np.float32)\n", " word_freqs = word_counts / np.sum(word_counts)\n", " word_freqs = word_freqs ** (3./4.)\n", " word_freqs = word_freqs / np.sum(word_freqs)\n", " vocab_size = len(idx2word)\n", " print(vocab_size)\n", " return text, idx2word, word2idx, word_freqs, word_counts, vocab_size" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "30000\n" ] } ], "source": [ "text, idx2word, word2idx, word_freqs, word_counts, VOCAB_SIZE = text_preprocess(TRAIN_FILE)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['the', 'of', 'and', 'one', 'in', 'a', 'to', 'zero', 'nine', 'two']" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "idx2word[:10]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 实现DataLoader\n", "一个dataloader需要以下内容:\n", "\n", "- 把所有text编码成数字,然后用subsampling预处理这些文字。\n", "- 保存vocabulary,单词count,normalized word frequency\n", "- 每个iteration sample一个中心词\n", "- 根据当前的中心词返回context单词\n", "- 根据中心词sample一些negative单词\n", "- 返回单词的counts\n", "\n", "这里有一个好的tutorial介绍如何使用[PyTorch dataloader](https://pytorch.org/tutorials/beginner/data_loading_tutorial.html).\n", "为了使用dataloader,我们需要定义以下两个function:\n", "\n", "- ```__len__``` function需要返回整个数据集中有多少个item\n", "- ```__get__``` 根据给定的index返回一个item\n", "\n", "有了dataloader之后,我们可以轻松随机打乱整个数据集,拿到一个batch的数据等等。" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 理解torch.multinomial 采样函数\n", "--------------\n", "- torch.multinomial(input, num_samples, replacement=False, out=None) → LongTensor\n", " - 作用是对input的每一行做num_samples次取值,输出的张量是每一次取值时input张量对应行的**下标**。\n", " - 输入是一个input张量,一个取样数量可以是列表,和一个布尔值replacement。\n", " - input张量可以看成一个权重张量,每一个元素代表其在该行中的权重。如果有元素为0,那么在其他不为0的元素\n", " - 被取干净之前,这个元素是不会被取到的。\n", " - num_samples是每一行的取值次数,该值不能大于每一样的元素数,否则会报错。\n", " - replacement指的是取样时是否是有放回的取样,True是有放回,False无放回。\n", "----\n", "- 官方例子\n", "```python\n", "weights = torch.tensor([0, 0.8, 2, 0], dtype=torch.float) # create a tensor of weights\n", "print(torch.multinomial(weights, 2))\n", "# tensor([2, 1])\n", "print(torch.multinomial(weights, 4, replacement=True))\n", "# tensor([2, 2, 1, 2])\n", "```" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "class WordEmbeddingDataset(tud.Dataset):\n", " def __init__(self, text, word2idx, idx2word, word_freqs, word_counts):\n", " super(WordEmbeddingDataset, self).__init__()\n", " # 文档编码\n", " self.text_encoded = [word2idx.get(t, VOCAB_SIZE-1) for t in text]\n", " self.text_encoded = torch.Tensor(self.text_encoded).long()\n", "\n", " self.word2idx = word2idx\n", " self.idx2word = idx2word\n", " self.word_freqs = torch.Tensor(word_freqs)\n", " self.word_counts = torch.Tensor(word_counts)\n", " \n", " def __len__(self):\n", " ''' \n", " 返回整个数据集(所有单词)的长度\n", " '''\n", " return len(self.text_encoded)\n", " \n", " def __getitem__(self, idx):\n", " ''' \n", " 这个function返回以下数据用于训练\n", " - 中心词\n", " - 这个单词附近的(positive)单词\n", " - 随机采样的K个单词作为negative sample\n", " '''\n", " center_word = self.text_encoded[idx]\n", " pos_indices = list(range(idx-C, idx))+list(range(idx+1, idx+C+1))\n", " # 返回除中心词之外的附近的单词的索引\n", " pos_indices = [i % len(self.text_encoded) for i in pos_indices]\n", " # 周围词编码列表\n", " pos_words = self.text_encoded[pos_indices]\n", " # 多项式分布采样\n", " neg_words = torch.multinomial(self.word_freqs, K * pos_words.shape[0], True)\n", " \n", " return center_word, pos_words, neg_words " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 创建Dataset与Dataloader" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "dataset = WordEmbeddingDataset(text, word2idx, idx2word, word_freqs, word_counts)\n", "dataloader = tud.DataLoader(dataset, batch_size=BATCH_SIZE, shuffle=True, num_workers=4)" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensor(428) torch.Size([128])\n", "tensor([13053, 267, 314, 1, 0, 113]) torch.Size([128])\n", "tensor([ 9576, 2082, 279, 21829, 2247, 953, 3666, 23787, 1562, 465,\n", " 408, 11302, 1286, 7, 546, 1, 39, 2556, 16, 6145,\n", " 6253, 25, 476, 271, 16, 1830, 28, 12, 1607, 23,\n", " 7888, 0, 7863, 331, 521, 406, 6392, 12881, 5695, 5322,\n", " 2289, 697, 26196, 1396, 13726, 7781, 19, 21110, 60, 90,\n", " 15, 776, 18314, 2433, 19, 12410, 9995, 16336, 29999, 1439,\n", " 2480, 17925, 14, 2, 3978, 1225, 349, 1537, 2450, 1053,\n", " 26771, 2577, 0, 4777, 1503, 6077, 601, 241, 1621, 8592,\n", " 11, 24580, 103, 557, 9434, 9990, 15, 6, 27198, 32,\n", " 926, 2860, 251, 2720, 196, 19, 10197, 3980, 5902, 117,\n", " 1, 11078, 1063, 912, 26, 25, 7395, 43, 1201, 368,\n", " 645, 761, 59, 26620, 25032, 6552, 29999, 5468, 14295, 0,\n", " 2328, 817, 30, 37, 16986, 184, 31, 17739, 4321, 18647,\n", " 626, 162, 16649, 4789, 1180, 1, 16826, 140, 224, 7348,\n", " 4979, 11255, 7222, 21236, 3563, 1613, 1126, 4796, 1260, 1266,\n", " 83, 15459, 1384, 23111, 12, 2882, 3453, 21782, 326, 1,\n", " 24668, 10, 4514, 177, 1547, 28461, 60, 571, 329, 4,\n", " 15079, 5239, 7424, 5960, 1576, 17409, 1876, 11498, 1212, 554,\n", " 417, 2810, 28861, 463, 2178, 0, 21, 3636, 1575, 892,\n", " 1427, 29811, 1267, 462, 244, 22, 6712, 6, 903, 1686,\n", " 2368, 38, 4260, 27994, 18, 13272, 503, 1, 12269, 1584,\n", " 124, 0, 10804, 3146, 8851, 2009, 7989, 9000, 30, 11973,\n", " 5, 1957, 126, 2184, 2, 54, 9716, 26132, 14, 12,\n", " 670, 18220, 49, 5, 6, 8363, 2053, 11037, 5077, 20,\n", " 2469, 15912, 748, 4698, 191, 58, 5142, 8578, 7576, 236,\n", " 5860, 4, 15, 25395, 3211, 54, 869, 1, 728, 5,\n", " 5996, 76, 1113, 2347, 1564, 8866, 6272, 73, 15429, 45,\n", " 1, 582, 51, 11152, 873, 153, 338, 7185, 44, 69,\n", " 738, 6127, 29999, 24991, 1025, 17, 3745, 2386, 9295, 10882,\n", " 59, 9255, 738, 12219, 822, 886, 53, 103, 572, 215,\n", " 29999, 2578, 2486, 385, 964, 3356, 3757, 7669, 90, 1982,\n", " 891, 236, 4075, 28148, 3235, 8384, 18, 11066, 3144, 2273,\n", " 23, 19070, 18571, 9719, 78, 4364, 4607, 999, 1, 291,\n", " 35, 4820, 21795, 1066, 22590, 2197, 664, 7210, 29, 1039,\n", " 23990, 5002, 508, 860, 242, 27623, 29999, 11, 12204, 2171,\n", " 4983, 1646, 1928, 9, 243, 496, 56, 335, 10833, 2,\n", " 3567, 1767, 135, 3903, 372, 25, 0, 903, 8868, 444,\n", " 2430, 8395, 2152, 10763, 23, 3246, 10, 14784, 2661, 17631,\n", " 2893, 1268, 7852, 4110, 2050, 23244, 7547, 4588, 4102, 6179,\n", " 9784, 1303, 3242, 9, 92, 13216, 29048, 5437, 20718, 660,\n", " 260, 20686, 487, 8095, 342, 7475, 2452, 120, 15514, 8295,\n", " 26, 130, 2568, 16588, 15441, 1661, 94, 54, 3798, 4073,\n", " 14964, 4568, 3092, 379, 1101, 28703, 24, 22072, 9952, 25327,\n", " 12018, 2463, 23, 18, 1454, 25, 89, 1265, 4005, 27452,\n", " 4242, 11, 210, 15166, 23341, 1768, 17, 48, 675, 7678,\n", " 404, 1432, 6750, 4227, 232, 21635, 16438, 3, 4, 17153,\n", " 1275, 1419, 1541, 1904, 4337, 6846, 1808, 2432, 8223, 13159,\n", " 1908, 6174, 2304, 986, 2, 15, 3460, 11839, 431, 248,\n", " 24557, 101, 1, 13539, 3088, 25414, 17546, 4321, 512, 1326,\n", " 2425, 188, 1193, 500, 20, 762, 3018, 9416, 363, 19,\n", " 5139, 15786, 4415, 2, 1486, 927, 2003, 44, 107, 72,\n", " 1645, 6218, 7, 782, 15815, 16, 61, 6174, 18, 90,\n", " 18594, 1550, 15072, 8540, 120, 22, 12451, 5243, 1923, 1293,\n", " 305, 1267, 1434, 6581, 2168, 22, 24760, 658, 1668, 738,\n", " 2959, 10, 3704, 25956, 382, 4705, 31, 7013, 32, 3,\n", " 20, 22645, 22722, 14006, 6683, 288, 74, 3766, 8361, 8454,\n", " 117, 3125, 35, 13420, 4, 7523, 13239, 16, 4794, 3857,\n", " 39, 29999, 12271, 3992, 320, 18459, 20338, 173, 6212, 2051,\n", " 5214, 4421, 28549, 730, 48, 470, 2131, 1405, 383, 1205,\n", " 274, 19799, 359, 29999, 3112, 9795, 11527, 5090, 7965, 24565]) torch.Size([128])\n", "--------------------\n" ] } ], "source": [ "i = 0\n", "for center_word, pos_words, neg_words in dataloader:\n", " print(center_word[0], center_word.size())\n", " print(pos_words[0], center_word.size())\n", " print(neg_words[0], center_word.size())\n", " print(\"-\"*20)\n", " i += 1\n", " if i == 1:\n", " break" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 定义pytorch 模型" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "class EmbeddingModel(nn.Module):\n", " def __init__(self, vocab_size, embed_size):\n", " ''' \n", " 初始化输入和输出embedding\n", " '''\n", " super(EmbeddingModel, self).__init__()\n", " self.vocab_size = vocab_size\n", " self.embed_size = embed_size\n", " \n", " # 两个都初始化的好处?\n", " initrange = 0.5 / self.embed_size\n", " self.in_embed = nn.Embedding(self.vocab_size, self.embed_size, sparse=False)\n", " self.in_embed.weight.data.uniform_(-initrange, initrange)\n", " \n", " self.out_embed = nn.Embedding(self.vocab_size, self.embed_size, sparse=False)\n", " self.out_embed.weight.data.uniform_(-initrange, initrange)\n", " \n", " def forward(self, input_labels, pos_labels, neg_labels):\n", " '''\n", " input_labels: 中心词, [batch_size]\n", " pos_labels: 中心词周围 context window 出现过的单词 [batch_size * (window_size * 2)]\n", " neg_labelss: 中心词周围没有出现过的单词,从 negative sampling 得到 \n", " [batch_size, (window_size * 2 * K)]\n", " \n", " return: loss, [batch_size]\n", " '''\n", " \n", " batch_size = input_labels.size(0)\n", " \n", " input_embedding = self.in_embed(input_labels) # B * embed_size\n", " pos_embedding = self.out_embed(pos_labels) # B * (2*C) * embed_size\n", " neg_embedding = self.out_embed(neg_labels) # B * (2*C * K) * embed_size\n", " \n", " log_pos = torch.bmm(pos_embedding, input_embedding.unsqueeze(2)).squeeze() # B * (2*C)\n", " log_neg = torch.bmm(neg_embedding, -input_embedding.unsqueeze(2)).squeeze() # B * (2*C*K)\n", "\n", " log_pos = F.logsigmoid(log_pos).sum(1)\n", " log_neg = F.logsigmoid(log_neg).sum(1) # batch_size\n", " \n", " loss = log_pos + log_neg\n", " \n", " return -loss\n", " \n", " def input_embeddings(self):\n", " return self.in_embed.weight.data.cpu().numpy()" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "model = EmbeddingModel(VOCAB_SIZE, EMBEDDING_SIZE)\n", "model = model.to(device)\n", "optimizer = torch.optim.SGD(model.parameters(), lr=LEARNING_RATE)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "def evaluate(filename, embedding_weights): \n", " if filename.endswith(\".csv\"):\n", " data = pd.read_csv(filename, sep=\",\")\n", " else:\n", " data = pd.read_csv(filename, sep=\"\\t\")\n", " human_similarity = []\n", " model_similarity = []\n", " for i in data.iloc[:, 0:2].index:\n", " word1, word2 = data.iloc[i, 0], data.iloc[i, 1]\n", " if word1 not in word_to_idx or word2 not in word_to_idx:\n", " continue\n", " else:\n", " word1_idx, word2_idx = word_to_idx[word1], word_to_idx[word2]\n", " word1_embed, word2_embed = embedding_weights[[word1_idx]], embedding_weights[[word2_idx]]\n", " model_similarity.append(float(sklearn.metrics.pairwise.cosine_similarity(word1_embed, word2_embed)))\n", " human_similarity.append(float(data.iloc[i, 2]))\n", "\n", " return scipy.stats.spearmanr(human_similarity, model_similarity)# , model_similarity\n", "\n", "def find_nearest(word):\n", " index = word_to_idx[word]\n", " embedding = embedding_weights[index]\n", " cos_dis = np.array([scipy.spatial.distance.cosine(e, embedding) for e in embedding_weights])\n", " return [idx_to_word[i] for i in cos_dis.argsort()[:10]]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 训练模型\n", "-----\n", "- 模型一般需要训练若干个epoch\n", "- 每个epoch我们都把所有的数据分成若干个batch\n", "- 把每个batch的输入和输出都包装成cuda tensor\n", "- forward pass,通过输入的句子预测每个单词的下一个单词\n", "- 用模型的预测和正确的下一个单词计算cross entropy loss\n", "- 清空模型当前gradient\n", "- backward pass\n", "- 更新模型参数\n", "- 每隔一定的iteration输出模型在当前iteration的loss,以及在验证数据集上做模型的评估" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "epoch: 0, iter: 0, loss: 420.0472106933594\n", "epoch: 0, iter: 1000, loss: 110.64915466308594\n", "epoch: 0, iter: 2000, loss: 63.69944763183594\n", "epoch: 0, iter: 3000, loss: 55.475433349609375\n", "epoch: 0, iter: 4000, loss: 45.3078498840332\n", "epoch: 0, iter: 5000, loss: 41.215545654296875\n", "epoch: 0, iter: 6000, loss: 37.93198776245117\n", "epoch: 0, iter: 7000, loss: 35.823787689208984\n", "epoch: 0, iter: 8000, loss: 35.2523193359375\n", "epoch: 0, iter: 9000, loss: 35.85188674926758\n", "epoch: 0, iter: 10000, loss: 35.528446197509766\n", "epoch: 0, iter: 11000, loss: 34.1132698059082\n", "epoch: 0, iter: 12000, loss: 34.4886474609375\n", "epoch: 0, iter: 13000, loss: 33.55486297607422\n", "epoch: 0, iter: 14000, loss: 33.06645202636719\n", "epoch: 0, iter: 15000, loss: 35.073768615722656\n", "epoch: 0, iter: 16000, loss: 33.03211212158203\n", "epoch: 0, iter: 17000, loss: 32.87288284301758\n", "epoch: 0, iter: 18000, loss: 32.25053024291992\n", "epoch: 0, iter: 19000, loss: 33.15672302246094\n", "epoch: 0, iter: 20000, loss: 33.965084075927734\n", "epoch: 0, iter: 21000, loss: 31.78493881225586\n", "epoch: 0, iter: 22000, loss: 31.21977996826172\n", "epoch: 0, iter: 23000, loss: 31.222129821777344\n", "epoch: 0, iter: 24000, loss: 32.180294036865234\n", "epoch: 0, iter: 25000, loss: 32.11918640136719\n", "epoch: 0, iter: 26000, loss: 32.410438537597656\n", "epoch: 0, iter: 27000, loss: 31.191852569580078\n", "epoch: 0, iter: 28000, loss: 31.6796817779541\n", "epoch: 0, iter: 29000, loss: 32.07501220703125\n", "epoch: 0, iter: 30000, loss: 31.589771270751953\n", "epoch: 0, iter: 31000, loss: 30.55971908569336\n", "epoch: 0, iter: 32000, loss: 31.50411605834961\n", "epoch: 0, iter: 33000, loss: 32.12269592285156\n", "epoch: 0, iter: 34000, loss: 31.799057006835938\n", "epoch: 0, iter: 35000, loss: 31.488569259643555\n", "epoch: 0, iter: 36000, loss: 32.0762939453125\n", "epoch: 0, iter: 37000, loss: 31.718448638916016\n", "epoch: 0, iter: 38000, loss: 31.836288452148438\n", "epoch: 0, iter: 39000, loss: 30.796913146972656\n", "epoch: 0, iter: 40000, loss: 31.26019287109375\n", "epoch: 0, iter: 41000, loss: 31.18332290649414\n", "epoch: 0, iter: 42000, loss: 31.035846710205078\n", "epoch: 0, iter: 43000, loss: 31.67388153076172\n", "epoch: 0, iter: 44000, loss: 30.95718002319336\n", "epoch: 0, iter: 45000, loss: 31.227718353271484\n", "epoch: 0, iter: 46000, loss: 30.958019256591797\n", "epoch: 0, iter: 47000, loss: 30.802886962890625\n", "epoch: 0, iter: 48000, loss: 31.316438674926758\n", "epoch: 0, iter: 49000, loss: 31.068218231201172\n", "epoch: 0, iter: 50000, loss: 30.90799331665039\n", "epoch: 0, iter: 51000, loss: 30.834815979003906\n", "epoch: 0, iter: 52000, loss: 30.801921844482422\n", "epoch: 0, iter: 53000, loss: 31.455249786376953\n", "epoch: 0, iter: 54000, loss: 31.085723876953125\n", "epoch: 0, iter: 55000, loss: 31.31935691833496\n", "epoch: 0, iter: 56000, loss: 31.21722412109375\n", "epoch: 0, iter: 57000, loss: 31.02591323852539\n", "epoch: 0, iter: 58000, loss: 30.76601791381836\n", "epoch: 0, iter: 59000, loss: 30.669824600219727\n", "epoch: 0, iter: 60000, loss: 31.46889305114746\n", "epoch: 0, iter: 61000, loss: 30.514265060424805\n", "epoch: 0, iter: 62000, loss: 30.749996185302734\n", "epoch: 0, iter: 63000, loss: 31.39304542541504\n", "epoch: 0, iter: 64000, loss: 31.034055709838867\n", "epoch: 0, iter: 65000, loss: 30.75653839111328\n", "epoch: 0, iter: 66000, loss: 31.44009780883789\n", "epoch: 0, iter: 67000, loss: 30.631933212280273\n", "epoch: 0, iter: 68000, loss: 30.852642059326172\n", "epoch: 0, iter: 69000, loss: 30.440444946289062\n", "epoch: 0, iter: 70000, loss: 30.89693260192871\n", "epoch: 0, iter: 71000, loss: 30.34482192993164\n", "epoch: 0, iter: 72000, loss: 30.580995559692383\n", "epoch: 0, iter: 73000, loss: 30.62125015258789\n", "epoch: 0, iter: 74000, loss: 31.25283432006836\n", "epoch: 0, iter: 75000, loss: 31.340688705444336\n", "epoch: 0, iter: 76000, loss: 31.031070709228516\n", "epoch: 0, iter: 77000, loss: 30.721107482910156\n", "epoch: 0, iter: 78000, loss: 31.15871238708496\n", "epoch: 0, iter: 79000, loss: 30.72861099243164\n", "epoch: 0, iter: 80000, loss: 30.686187744140625\n", "epoch: 0, iter: 81000, loss: 30.96906280517578\n", "epoch: 0, iter: 82000, loss: 30.64755630493164\n", "epoch: 0, iter: 83000, loss: 30.86237907409668\n", "epoch: 0, iter: 84000, loss: 31.073986053466797\n", "epoch: 0, iter: 85000, loss: 30.927490234375\n", "epoch: 0, iter: 86000, loss: 30.70050048828125\n", "epoch: 0, iter: 87000, loss: 31.14577865600586\n", "epoch: 0, iter: 88000, loss: 30.773733139038086\n", "epoch: 0, iter: 89000, loss: 30.837783813476562\n", "epoch: 0, iter: 90000, loss: 30.594697952270508\n", "epoch: 0, iter: 91000, loss: 30.5462646484375\n", "epoch: 0, iter: 92000, loss: 31.061866760253906\n", "epoch: 0, iter: 93000, loss: 30.809398651123047\n", "epoch: 0, iter: 94000, loss: 30.77594757080078\n", "epoch: 0, iter: 95000, loss: 30.586809158325195\n", "epoch: 0, iter: 96000, loss: 30.77543830871582\n", "epoch: 0, iter: 97000, loss: 30.87103271484375\n", "epoch: 0, iter: 98000, loss: 30.16326141357422\n", "epoch: 0, iter: 99000, loss: 30.258590698242188\n", "epoch: 0, iter: 100000, loss: 30.997915267944336\n", "epoch: 0, iter: 101000, loss: 30.836084365844727\n", "epoch: 0, iter: 102000, loss: 30.87259292602539\n", "epoch: 0, iter: 103000, loss: 30.514392852783203\n", "epoch: 0, iter: 104000, loss: 30.22088050842285\n", "epoch: 0, iter: 105000, loss: 30.869644165039062\n", "epoch: 0, iter: 106000, loss: 30.51873016357422\n", "epoch: 0, iter: 107000, loss: 30.863828659057617\n", "epoch: 0, iter: 108000, loss: 30.66390609741211\n", "epoch: 0, iter: 109000, loss: 30.905582427978516\n", "epoch: 0, iter: 110000, loss: 31.3685302734375\n", "epoch: 0, iter: 111000, loss: 30.87140655517578\n", "epoch: 0, iter: 112000, loss: 30.823673248291016\n", "epoch: 0, iter: 113000, loss: 31.092639923095703\n", "epoch: 0, iter: 114000, loss: 30.361209869384766\n", "epoch: 0, iter: 115000, loss: 30.724641799926758\n", "epoch: 0, iter: 116000, loss: 30.91895866394043\n", "epoch: 0, iter: 117000, loss: 30.906103134155273\n", "epoch: 0, iter: 118000, loss: 30.354206085205078\n", "epoch: 0, iter: 119000, loss: 30.33993911743164\n", "epoch: 1, iter: 0, loss: 30.718202590942383\n", "epoch: 1, iter: 1000, loss: 30.54977035522461\n", "epoch: 1, iter: 2000, loss: 30.735172271728516\n", "epoch: 1, iter: 3000, loss: 30.505659103393555\n", "epoch: 1, iter: 4000, loss: 30.68982696533203\n", "epoch: 1, iter: 5000, loss: 30.236034393310547\n", "epoch: 1, iter: 6000, loss: 30.450191497802734\n", "epoch: 1, iter: 7000, loss: 30.46800994873047\n", "epoch: 1, iter: 8000, loss: 30.587671279907227\n", "epoch: 1, iter: 9000, loss: 30.89776039123535\n", "epoch: 1, iter: 10000, loss: 30.453964233398438\n", "epoch: 1, iter: 11000, loss: 30.340309143066406\n", "epoch: 1, iter: 12000, loss: 30.579856872558594\n", "epoch: 1, iter: 13000, loss: 30.941007614135742\n", "epoch: 1, iter: 14000, loss: 30.401355743408203\n", "epoch: 1, iter: 15000, loss: 30.470251083374023\n", "epoch: 1, iter: 16000, loss: 30.4851131439209\n", "epoch: 1, iter: 17000, loss: 31.073944091796875\n", "epoch: 1, iter: 18000, loss: 30.842205047607422\n", "epoch: 1, iter: 19000, loss: 30.65728759765625\n", "epoch: 1, iter: 20000, loss: 30.513702392578125\n", "epoch: 1, iter: 21000, loss: 30.401121139526367\n", "epoch: 1, iter: 22000, loss: 30.139076232910156\n", "epoch: 1, iter: 23000, loss: 30.591323852539062\n", "epoch: 1, iter: 24000, loss: 30.598430633544922\n", "epoch: 1, iter: 25000, loss: 30.648696899414062\n", "epoch: 1, iter: 26000, loss: 31.000125885009766\n", "epoch: 1, iter: 27000, loss: 30.409883499145508\n", "epoch: 1, iter: 28000, loss: 30.217910766601562\n", "epoch: 1, iter: 29000, loss: 30.617969512939453\n", "epoch: 1, iter: 30000, loss: 30.025922775268555\n", "epoch: 1, iter: 31000, loss: 30.6910457611084\n", "epoch: 1, iter: 32000, loss: 30.752849578857422\n", "epoch: 1, iter: 33000, loss: 30.63628578186035\n", "epoch: 1, iter: 34000, loss: 30.728408813476562\n", "epoch: 1, iter: 35000, loss: 30.473583221435547\n", "epoch: 1, iter: 36000, loss: 30.26988410949707\n", "epoch: 1, iter: 37000, loss: 30.499309539794922\n", "epoch: 1, iter: 38000, loss: 30.24459457397461\n", "epoch: 1, iter: 39000, loss: 30.781661987304688\n", "epoch: 1, iter: 40000, loss: 30.572044372558594\n", "epoch: 1, iter: 41000, loss: 30.40477752685547\n", "epoch: 1, iter: 42000, loss: 29.991519927978516\n", "epoch: 1, iter: 43000, loss: 30.25002098083496\n", "epoch: 1, iter: 44000, loss: 30.90960693359375\n", "epoch: 1, iter: 45000, loss: 30.67990493774414\n", "epoch: 1, iter: 46000, loss: 30.910268783569336\n", "epoch: 1, iter: 47000, loss: 30.526987075805664\n", "epoch: 1, iter: 48000, loss: 29.802139282226562\n", "epoch: 1, iter: 49000, loss: 30.346729278564453\n", "epoch: 1, iter: 50000, loss: 30.558292388916016\n", "epoch: 1, iter: 51000, loss: 30.506786346435547\n", "epoch: 1, iter: 52000, loss: 30.17622947692871\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "epoch: 1, iter: 53000, loss: 30.422870635986328\n", "epoch: 1, iter: 54000, loss: 30.511688232421875\n", "epoch: 1, iter: 55000, loss: 30.220746994018555\n", "epoch: 1, iter: 56000, loss: 30.517898559570312\n", "epoch: 1, iter: 57000, loss: 30.228534698486328\n", "epoch: 1, iter: 58000, loss: 29.6726016998291\n", "epoch: 1, iter: 59000, loss: 30.818809509277344\n", "epoch: 1, iter: 60000, loss: 30.15318489074707\n", "epoch: 1, iter: 61000, loss: 30.516082763671875\n", "epoch: 1, iter: 62000, loss: 30.354167938232422\n", "epoch: 1, iter: 63000, loss: 30.65067481994629\n", "epoch: 1, iter: 64000, loss: 30.16307830810547\n", "epoch: 1, iter: 65000, loss: 30.29519271850586\n", "epoch: 1, iter: 66000, loss: 30.450511932373047\n", "epoch: 1, iter: 67000, loss: 30.45915985107422\n", "epoch: 1, iter: 68000, loss: 30.23889923095703\n", "epoch: 1, iter: 69000, loss: 30.60623550415039\n", "epoch: 1, iter: 70000, loss: 30.522491455078125\n", "epoch: 1, iter: 71000, loss: 30.621078491210938\n", "epoch: 1, iter: 72000, loss: 30.627422332763672\n", "epoch: 1, iter: 73000, loss: 30.85080337524414\n", "epoch: 1, iter: 74000, loss: 30.2876033782959\n", "epoch: 1, iter: 75000, loss: 30.20944595336914\n", "epoch: 1, iter: 76000, loss: 30.489473342895508\n", "epoch: 1, iter: 77000, loss: 30.41691017150879\n", "epoch: 1, iter: 78000, loss: 30.45703887939453\n", "epoch: 1, iter: 79000, loss: 30.2554874420166\n", "epoch: 1, iter: 80000, loss: 30.326425552368164\n", "epoch: 1, iter: 81000, loss: 30.35062599182129\n", "epoch: 1, iter: 82000, loss: 31.12557029724121\n", "epoch: 1, iter: 83000, loss: 30.172191619873047\n", "epoch: 1, iter: 84000, loss: 30.336368560791016\n", "epoch: 1, iter: 85000, loss: 30.32604217529297\n", "epoch: 1, iter: 86000, loss: 30.477481842041016\n", "epoch: 1, iter: 87000, loss: 30.725988388061523\n", "epoch: 1, iter: 88000, loss: 30.35128402709961\n", "epoch: 1, iter: 89000, loss: 31.01091766357422\n", "epoch: 1, iter: 90000, loss: 30.491222381591797\n", "epoch: 1, iter: 91000, loss: 30.21773910522461\n", "epoch: 1, iter: 92000, loss: 29.86251449584961\n", "epoch: 1, iter: 93000, loss: 29.85382652282715\n", "epoch: 1, iter: 94000, loss: 30.321523666381836\n", "epoch: 1, iter: 95000, loss: 29.814773559570312\n", "epoch: 1, iter: 96000, loss: 30.574665069580078\n", "epoch: 1, iter: 97000, loss: 30.14328956604004\n", "epoch: 1, iter: 98000, loss: 29.90842056274414\n", "epoch: 1, iter: 99000, loss: 30.273555755615234\n", "epoch: 1, iter: 100000, loss: 29.937362670898438\n", "epoch: 1, iter: 101000, loss: 30.375999450683594\n", "epoch: 1, iter: 102000, loss: 30.64742660522461\n", "epoch: 1, iter: 103000, loss: 30.526161193847656\n", "epoch: 1, iter: 104000, loss: 30.345212936401367\n", "epoch: 1, iter: 105000, loss: 30.510639190673828\n", "epoch: 1, iter: 106000, loss: 30.42151641845703\n", "epoch: 1, iter: 107000, loss: 30.565765380859375\n", "epoch: 1, iter: 108000, loss: 29.951072692871094\n", "epoch: 1, iter: 109000, loss: 30.22141456604004\n", "epoch: 1, iter: 110000, loss: 30.723838806152344\n", "epoch: 1, iter: 111000, loss: 30.395931243896484\n", "epoch: 1, iter: 112000, loss: 30.433988571166992\n", "epoch: 1, iter: 113000, loss: 30.041824340820312\n", "epoch: 1, iter: 114000, loss: 30.053401947021484\n", "epoch: 1, iter: 115000, loss: 30.419116973876953\n", "epoch: 1, iter: 116000, loss: 30.211109161376953\n", "epoch: 1, iter: 117000, loss: 30.66413116455078\n", "epoch: 1, iter: 118000, loss: 29.81429672241211\n", "epoch: 1, iter: 119000, loss: 30.27712059020996\n" ] } ], "source": [ "\n", "for e in range(EPOCHS):\n", " for i, (input_labels, pos_labels, neg_labels) in enumerate(dataloader):\n", " # TODO\n", " input_labels = input_labels.long()\n", " pos_labels = pos_labels.long()\n", " neg_labels = neg_labels.long()\n", "\n", " input_labels = input_labels.to(device)\n", " pos_labels = pos_labels.to(device)\n", " neg_labels = neg_labels.to(device)\n", " \n", " optimizer.zero_grad()\n", " loss = model(input_labels, pos_labels, neg_labels).mean()\n", " loss.backward()\n", " optimizer.step()\n", "\n", " if i % 1000 == 0:\n", " print(\"epoch: {}, iter: {}, loss: {}\".format(e, i, loss.item()))\n", " \n", " \n", "# if i % 2000 == 0:\n", "# embedding_weights = model.input_embeddings()\n", "# sim_simlex = evaluate(\"simlex-999.txt\", embedding_weights)\n", "# sim_men = evaluate(\"men.txt\", embedding_weights)\n", "# sim_353 = evaluate(\"wordsim353.csv\", embedding_weights)\n", "# with open(LOG_FILE, \"a\") as fout:\n", "# print(\"epoch: {}, iteration: {}, simlex-999: {}, men: {}, sim353: {}, nearest to monster: {}\\n\".format(\n", "# e, i, sim_simlex, sim_men, sim_353, find_nearest(\"monster\")))\n", "# fout.write(\"epoch: {}, iteration: {}, simlex-999: {}, men: {}, sim353: {}, nearest to monster: {}\\n\".format(\n", "# e, i, sim_simlex, sim_men, sim_353, find_nearest(\"monster\")))\n", " \n", " embedding_weights = model.input_embeddings()\n", " np.save(\"embedding-{}\".format(EMBEDDING_SIZE), embedding_weights)\n", " torch.save(model.state_dict(), \"embedding-{}.th\".format(EMBEDDING_SIZE))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "## 未完待续\n", " 需要明白的点:\n", " 采样\n", " 输入输出的embedding是分开的?\n", " 后面的验证是什么鬼?\n", " 如何评价?\n", " " ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P005-Pytorch-Text-Classifer/_0_情感分类_词向量平均.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Sentiment Classfication By Word Averaging\n", "- 情感分类(2分类)示例\n", "- 采用词向量平均\n", "- 数据集-链接: https://pan.baidu.com/s/10iR2LvO_T_vp0eetMa6awQ 密码: tp29" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import time\n", "import random\n", "import torch\n", "import torch.nn as nn\n", "import torch.nn.functional as F\n", "import torch.optim as optim\n", "from collections import Counter" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "random.seed(2019)\n", "# 使用benchmark以启动CUDNN_FIND自动寻找最快的操作,\n", "# 当计算图不会改变的时候(每次输入形状相同,模型不改变)的情况下可以提高性能,反之则降低性能。\n", "# torch.backends.cudnn.deterministic = True" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "VOCAB_SIZE = 14_828\n", "\n", "EPOCHS = 5\n", "BATCH_SIZE = 32\n", "LEARNING_RATE = 0.01\n", "BEST_VALID_LOSS = float('inf')\n", "\n", "EMBEDDING_DIM = 100\n", "OUTPUT_DIM = 1\n", "\n", "train_file = \"data/senti.train.tsv\"\n", "eval_file = \"data/senti.dev.tsv\"\n", "test_file = \"data/senti.test.tsv\"\n", "\n", "USE_CUDA = torch.cuda.is_available()\n", "DEVICE = torch.device('cuda:0' if USE_CUDA else 'cpu')\n", "NUM_CUDA = torch.cuda.device_count()" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "def load_text_file(filename):\n", " \"\"\"将样本的特征与标签分开,并将样本特征分词\"\"\"\n", " sentences = []\n", " label = []\n", " with open(filename, \"r\") as f:\n", " sent_list = [line.strip().split('\\t') for line in f]\n", " for sample in sent_list:\n", " sentences.append(sample[0].lower().split(\" \"))\n", " label.append(int(sample[-1]))\n", " return sentences, label\n", "\n", "\n", "def build_word_dic(sentences_list, vocab_size=20_000):\n", " \"\"\"构建words_set, word2idx, idx2word\"\"\"\n", " words_list = [w for line in sentences_list for w in line]\n", " counter = Counter(words_list)\n", " words_topn = counter.most_common(vocab_size)\n", " words_set = [item[0] for item in words_topn]\n", " words_set = ['', \"\"] + words_set\n", " word2idx = {w:i for i, w in enumerate(words_set)}\n", " idx2word = {i:w for i, w in enumerate(words_set)}\n", " return words_topn, word2idx, idx2word\n", "\n", "\n", "def build_x_y(word2idx, sentences_list, label_list, sent_len=30):\n", " \"\"\"构建输入模型的数据,对每个单词编码,每个句子通过添加pading保持一样长\"\"\"\n", " x = []\n", " y = []\n", " for sent, label in zip(sentences_list, label_list):\n", " word_x = [0]*sent_len\n", " if len(sent) > sent_len:\n", " sent = sent[:sent_len]\n", " for i, w in enumerate(sent):\n", " if w in word2idx:\n", " word_x[i] = word2idx[w]\n", " else:\n", " word_x[i] = word2idx['']\n", " x.append(word_x)\n", " y.append(label)\n", " return x, y\n", "\n", "# 构造批次数据\n", "def build_batch_data(data, label, batch_size=32):\n", " \"\"\"构建 batch tensor,返回 batch 列表,每个batch为二元组包含data和label\"\"\"\n", " batch_data = []\n", " data_tensor = torch.tensor(data, dtype=torch.long)\n", " label_tensor = torch.tensor(label, dtype=torch.float)\n", " n, dim = data_tensor.size()\n", " for start in range(0, n, batch_size):\n", " end = start + batch_size\n", " if end > n:\n", " break\n", " dbatch = data_tensor[start: ]\n", " lbatch = label_tensor[start: ]\n", " print(\"最后一个batch size:\", dbatch.size())\n", " else:\n", " dbatch = data_tensor[start: end]\n", " lbatch = label_tensor[start: end]\n", " batch_data.append((dbatch, lbatch))\n", " return batch_data" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "train_sentences, train_label = load_text_file(train_file)\n", "eval_sentences, eval_label = load_text_file(eval_file)\n", "test_sentences, test_label = load_text_file(test_file)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "处理后的样本与标签: ['hide', 'new', 'secretions', 'from', 'the', 'parental', 'units'] 0\n", "各个数据集样本数量:\n", "67349 67349\n", "872 872\n", "1821 1821\n", "各数据集最长最短句子单词数:\n", "52 1\n", "47 2\n", "56 2\n" ] } ], "source": [ "print(\"处理后的样本与标签:\", train_sentences[0], train_label[0])\n", "print(\"各个数据集样本数量:\")\n", "print(len(train_sentences), len(train_label))\n", "print(len(eval_sentences), len(eval_label))\n", "print(len(test_sentences), len(test_label))\n", "\n", "print(\"各数据集最长最短句子单词数:\")\n", "print(max([len(s) for s in train_sentences]), min([len(s) for s in train_sentences]))\n", "print(max([len(s) for s in eval_sentences]), min([len(s) for s in eval_sentences]))\n", "print(max([len(s) for s in test_sentences]), min([len(s) for s in test_sentences]))" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "max_seq_len = 56\n", "words_set, word2idx, idx2word = build_word_dic(train_sentences, vocab_size=VOCAB_SIZE)\n", "train_x, train_y = build_x_y(word2idx, train_sentences, train_label,sent_len=max_seq_len)\n", "eval_x, eval_y = build_x_y(word2idx, eval_sentences, eval_label,sent_len=max_seq_len)\n", "test_x, test_y = build_x_y(word2idx, test_sentences, test_label,sent_len=max_seq_len)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "词典长度: 14828 14830 14830\n", "训练集样本数量: 67349 67349\n" ] } ], "source": [ "print(\"词典长度:\", len(words_set), len(word2idx), len(idx2word))\n", "print(\"训练集样本数量:\", len(train_x), len(train_y))" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "train_data = build_batch_data(train_x, train_y, batch_size=BATCH_SIZE)\n", "eval_data = build_batch_data(eval_x, eval_y, batch_size=BATCH_SIZE)\n", "test_data = build_batch_data(test_x, test_y, batch_size=BATCH_SIZE)" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(torch.Size([32, 56]), torch.Size([32]))" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "train_data[0][0].size(), train_data[0][1].size()" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([0., 0., 1., 0., 0., 0., 1., 1., 0., 1., 0., 0., 0., 0., 0., 1., 0., 1.,\n", " 0., 1., 1., 1., 1., 1., 0., 1., 0., 1., 1., 0., 0., 1.])" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "train_data[0][1]" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "# Word Averaging Model\n", "class WordAVGModel(nn.Module):\n", " def __init__(self, vocab_size, embedding_dim, output_dim, pad_idx):\n", " super(WordAVGModel, self).__init__()\n", " self.embedding = nn.Embedding(vocab_size, embedding_dim, padding_idx=pad_idx)\n", " self.fc = nn.Linear(embedding_dim, output_dim)\n", " \n", " def forward(self, data):\n", " # print(\"data\", data.size())\n", " embedded = self.embedding(data) # [sent len, batch size, emb dim]\n", " # print(\"embdded\", embedded.size())\n", " # embedded = embedded.permute(1, 0, 2) # [batch size, sent len, emb dim]\n", " # print(\"embdded2:\", embedded.size())\n", " pooled = F.avg_pool2d(embedded, (embedded.shape[1], 1)).squeeze(1) # [batch size, embedding_dim]\n", " # print(\"poold:\", pooled.size())\n", " score = self.fc(pooled)\n", " return score\n", " \n", "def binary_accuracy(preds, y):\n", " \"\"\"\n", " 计算准确率\n", " \"\"\"\n", " rounded_preds = torch.round(torch.sigmoid(preds))\n", " correct = (rounded_preds == y).float() \n", " acc = correct.sum() / len(correct)\n", " return acc\n", "\n", "def train(model, device, iterator, optimizer, criterion):\n", " \"\"\"训练函数\"\"\"\n", " \n", " epoch_loss = 0\n", " epoch_acc = 0\n", " model.train()\n", " \n", " for x, y in iterator:\n", " x, y = x.to(device), y.to(device) # torch.int64\n", " optimizer.zero_grad()\n", " predictions = model(x).squeeze(1) # torch.float32 \n", " \n", " loss = criterion(predictions, y)\n", " acc = binary_accuracy(predictions, y)\n", " loss.backward()\n", " optimizer.step()\n", " \n", " epoch_loss += loss.item()\n", " epoch_acc += acc.item()\n", " \n", " return epoch_loss / len(iterator), epoch_acc / len(iterator)\n", "\n", "def evaluate(model, device, iterator, criterion):\n", " \"\"\"验证函数\"\"\"\n", " epoch_loss = 0\n", " epoch_acc = 0\n", " model.eval()\n", " \n", " with torch.no_grad():\n", " for x, y in iterator:\n", " x, y = x.to(device), y.to(device)\n", " predictions = model(x).squeeze(1)\n", " loss = criterion(predictions, y)\n", " acc = binary_accuracy(predictions, y)\n", " epoch_loss += loss.item()\n", " epoch_acc += acc.item()\n", " \n", " return epoch_loss / len(iterator), epoch_acc / len(iterator)\n", "\n", "def count_parameters(model):\n", " \"\"\"统计模型的参数量\"\"\"\n", " return sum(p.numel() for p in model.parameters() if p.requires_grad)\n", "\n", "def epoch_time(start_time, end_time):\n", " \"\"\"计算时间差,单位秒\"\"\"\n", " elapsed_time = end_time - start_time\n", " elapsed_mins = int(elapsed_time / 60)\n", " elapsed_secs = int(elapsed_time - (elapsed_mins * 60))\n", " return elapsed_mins, elapsed_secs" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "模型有1,483,101个可调节参数, 大约5.657581329345703 M.\n" ] } ], "source": [ "INPUT_DIM = len(words_set) + 2\n", "PAD_IDX = word2idx['']\n", "\n", "model = WordAVGModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\n", "print(f'模型有{count_parameters(model):,}个可调节参数, 大约{count_parameters(model)*4/1024/1024} M.')\n", "\n", "model = model.to(DEVICE)\n", "\n", "# 使用多块GPU\n", "# if NUM_CUDA > 1:\n", "# device_ids = list(range(NUM_CUDA))\n", "# print(device_ids)\n", "# model = nn.DataParallel(model, device_ids=device_ids)\n", "optimizer = optim.Adam(model.parameters(),lr=LEARNING_RATE)\n", "criterion = nn.BCEWithLogitsLoss()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 训练模型" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/serialization.py:292: UserWarning: Couldn't retrieve source code for container of type WordAVGModel. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n", "/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/serialization.py:292: UserWarning: Couldn't retrieve source code for container of type Embedding. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n", "/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/serialization.py:292: UserWarning: Couldn't retrieve source code for container of type Linear. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "***Save Best Model wordavg-model.pth***\n", "Epoch: 01 | Epoch Time: 0m 2s\n", "\tTrain Loss: 0.370 | Train Acc: 83.19%\n", "\t Val. Loss: 0.562 | Val. Acc: 81.13%\n", "Epoch: 02 | Epoch Time: 0m 2s\n", "\tTrain Loss: 0.226 | Train Acc: 91.20%\n", "\t Val. Loss: 0.681 | Val. Acc: 82.06%\n", "Epoch: 03 | Epoch Time: 0m 2s\n", "\tTrain Loss: 0.191 | Train Acc: 92.70%\n", "\t Val. Loss: 0.788 | Val. Acc: 82.41%\n", "Epoch: 04 | Epoch Time: 0m 2s\n", "\tTrain Loss: 0.171 | Train Acc: 93.52%\n", "\t Val. Loss: 0.888 | Val. Acc: 81.48%\n", "Epoch: 05 | Epoch Time: 0m 2s\n", "\tTrain Loss: 0.157 | Train Acc: 94.11%\n", "\t Val. Loss: 0.993 | Val. Acc: 80.67%\n" ] } ], "source": [ "model_name = 'wordavg-model.pth'\n", "for epoch in range(1, EPOCHS+1):\n", " start_time = time.time()\n", " train_loss, train_acc = train(model, DEVICE, train_data, optimizer, criterion)\n", " valid_loss, valid_acc = evaluate(model, DEVICE, eval_data, criterion)\n", " end_time = time.time()\n", "\n", " epoch_mins, epoch_secs = epoch_time(start_time, end_time)\n", " if valid_loss < BEST_VALID_LOSS:\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(model, model_name)\n", " print(f'***Save Best Model {model_name}***')\n", " \n", " print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\n", " print(f'\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\n", " print(f'\\t Val. Loss: {valid_loss:.3f} | Val. Acc: {valid_acc*100:.2f}%')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 测试集上的表现" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.5002752636958446 | Test Acc: 0.8097098214285714 |\n" ] } ], "source": [ "model = torch.load(model_name)\n", "test_loss, test_acc = evaluate(model, DEVICE, test_data, criterion)\n", "print('Test Loss: {0} | Test Acc: {1} |'.format(test_loss, test_acc))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 计算词向量L2 Norm" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Embed size: torch.Size([14830, 100])\n" ] } ], "source": [ "embed = model.embedding.weight.data\n", "print(\"Embed size:\", embed.size())\n", "word_l2norm = torch.norm(embed, dim=1)\n", "embed_l2norm, embed_l2normnorm_idx = word_l2norm.sort()" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "L2 norm 最小的 15 个单词:\n", " 0.11879125237464905\n", "times 7.761016845703125\n", "expeditious 7.798865795135498\n", "nights 7.943765163421631\n", "fallible 7.999438285827637\n", "cheering 8.00982666015625\n", "freak-outs 8.024674415588379\n", "ol' 8.026588439941406\n", "steeped 8.085253715515137\n", "prophet 8.100972175598145\n", "ennui 8.163886070251465\n", "besides 8.185270309448242\n", "independent 8.185609817504883\n", "showing 8.20890998840332\n", "loquacious 8.211852073669434\n" ] } ], "source": [ "print('L2 norm 最小的 15 个单词:')\n", "for i,s in zip(embed_l2normnorm_idx[:15].tolist(), embed_l2norm[:15].tolist()):\n", " print(idx2word[i], s)" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "L2 norm 最大的 15 个单词:\n", "annoying 22.8407039642334\n", "wonderfully 23.056434631347656\n", "touching 23.10053062438965\n", "pointless 23.324430465698242\n", "pretentious 23.505430221557617\n", "terrific 23.599756240844727\n", "devoid 23.609289169311523\n", "lousy 24.04730987548828\n", "hilarious 24.437118530273438\n", "failure 24.47695541381836\n", "stupid 24.875703811645508\n", "worst 25.027503967285156\n", "lacking 25.51972007751465\n", "remarkable 25.560626983642578\n", "mess 26.684070587158203\n" ] } ], "source": [ "print('L2 norm 最大的 15 个单词:')\n", "for i,s in zip(embed_l2normnorm_idx[-15:].tolist(), embed_l2norm[-15:].tolist()):\n", " print(idx2word[i],s)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P005-Pytorch-Text-Classifer/_1_attention_wordavg.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Attention Weighted word averaging" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import time\n", "import random\n", "import numpy as np\n", "from collections import Counter\n", "\n", "import torch\n", "import torch.nn as nn\n", "import torch.optim as optim\n", "import torch.nn.functional as F\n", "\n", "random.seed(2019)" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "VOCAB_SIZE = 14_828\n", "\n", "EPOCHS = 5\n", "BATCH_SIZE = 32\n", "LEARNING_RATE = 0.01\n", "BEST_VALID_LOSS = float('inf')\n", "\n", "EMBEDDING_DIM = 100\n", "OUTPUT_DIM = 1\n", "\n", "train_file = \"data/senti.train.tsv\"\n", "eval_file = \"data/senti.dev.tsv\"\n", "test_file = \"data/senti.test.tsv\"\n", "\n", "USE_CUDA = torch.cuda.is_available()\n", "DEVICE = torch.device('cuda:1' if USE_CUDA else 'cpu')\n", "NUM_CUDA = torch.cuda.device_count()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def load_text_file(filename):\n", " \"\"\"将样本的特征与标签分开,并将样本特征分词\"\"\"\n", " sentences = []\n", " label = []\n", " with open(filename, \"r\") as f:\n", " sent_list = [line.strip().split('\\t') for line in f]\n", " for sample in sent_list:\n", " sentences.append(sample[0].lower().split(\" \"))\n", " label.append(int(sample[-1]))\n", " return sentences, label\n", "\n", "\n", "def build_word_dic(sentences_list, vocab_size=20_000):\n", " \"\"\"构建words_set, word2idx, idx2word\"\"\"\n", " words_list = [w for line in sentences_list for w in line]\n", " counter = Counter(words_list)\n", " words_topn = counter.most_common(vocab_size)\n", " words_set = [item[0] for item in words_topn]\n", " words_set = ['', \"\"] + words_set\n", " word2idx = {w:i for i, w in enumerate(words_set)}\n", " idx2word = {i:w for i, w in enumerate(words_set)}\n", " return words_topn, word2idx, idx2word\n", "\n", "\n", "def build_x_y(word2idx, sentences_list, label_list, sent_len=30):\n", " \"\"\"构建输入模型的数据,对每个单词编码,每个句子通过添加pading保持一样长\"\"\"\n", " x = []\n", " y = []\n", " for sent, label in zip(sentences_list, label_list):\n", " word_x = [0]*sent_len\n", " if len(sent) > sent_len:\n", " sent = sent[:sent_len]\n", " for i, w in enumerate(sent):\n", " if w in word2idx:\n", " word_x[i] = word2idx[w]\n", " else:\n", " word_x[i] = word2idx['']\n", " x.append(word_x)\n", " y.append(label)\n", " return x, y\n", "\n", "\n", "def build_batch_data(data, label, batch_size=32):\n", " \"\"\"构建tensor格式的批次数据,返回batch列表,每个batch为二元组包含feature和label\"\"\"\n", " batch_data = []\n", " # 打乱顺序\n", " data_labels = [[x, y] for x, y in zip(data, label)]\n", " random.shuffle(data_labels)\n", " xlist = [item[0] for item in data_labels]\n", " ylist = [item[1] for item in data_labels]\n", " \n", " x_tensor = torch.tensor(xlist, dtype=torch.long)\n", " y_tensor = torch.tensor(ylist, dtype=torch.float)\n", " n, dim = x_tensor.size()\n", " for start in range(0, n, batch_size):\n", " end = start + batch_size\n", " if end > n:\n", " break\n", " xbatch = x_tensor[start: ]\n", " ybatch = y_tensor[start: ]\n", " print(\"最后一个batch size:\", dbatch.size())\n", " else:\n", " xbatch = x_tensor[start: end]\n", " ybatch = y_tensor[start: end]\n", " batch_data.append((xbatch, ybatch))\n", " return batch_data" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "train_sentences, train_label = load_text_file(train_file)\n", "eval_sentences, eval_label = load_text_file(eval_file)\n", "test_sentences, test_label = load_text_file(test_file)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "处理后的样本与标签: ['hide', 'new', 'secretions', 'from', 'the', 'parental', 'units'] 0\n", "各个数据集样本数量:\n", "67349 67349\n", "872 872\n", "1821 1821\n", "各数据集最长最短句子单词数:\n", "52 1\n", "47 2\n", "56 2\n" ] } ], "source": [ "print(\"处理后的样本与标签:\", train_sentences[0], train_label[0])\n", "print(\"各个数据集样本数量:\")\n", "print(len(train_sentences), len(train_label))\n", "print(len(eval_sentences), len(eval_label))\n", "print(len(test_sentences), len(test_label))\n", "\n", "print(\"各数据集最长最短句子单词数:\")\n", "print(max([len(s) for s in train_sentences]), min([len(s) for s in train_sentences]))\n", "print(max([len(s) for s in eval_sentences]), min([len(s) for s in eval_sentences]))\n", "print(max([len(s) for s in test_sentences]), min([len(s) for s in test_sentences]))" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "max_seq_len = 56\n", "words_set, word2idx, idx2word = build_word_dic(train_sentences, vocab_size=VOCAB_SIZE)\n", "train_x, train_y = build_x_y(word2idx, train_sentences, train_label,sent_len=max_seq_len)\n", "eval_x, eval_y = build_x_y(word2idx, eval_sentences, eval_label,sent_len=max_seq_len)\n", "test_x, test_y = build_x_y(word2idx, test_sentences, test_label,sent_len=max_seq_len)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "词典长度: 14828 14830 14830\n", "训练集样本数量: 67349 67349\n" ] } ], "source": [ "print(\"词典长度:\", len(words_set), len(word2idx), len(idx2word))\n", "print(\"训练集样本数量:\", len(train_x), len(train_y))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "train_data = build_batch_data(train_x, train_y, batch_size=BATCH_SIZE)\n", "eval_data = build_batch_data(eval_x, eval_y, batch_size=BATCH_SIZE)\n", "test_data = build_batch_data(test_x, test_y, batch_size=BATCH_SIZE)" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "class AttAvgModel(nn.Module):\n", " def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\n", " super(AttAvgModel, self).__init__()\n", " self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\n", " initrange = 0.1\n", " self.embedding.weight.data.uniform_(-initrange, initrange)\n", " # 计算 Attention 向量\n", " self.u = nn.Parameter(torch.randn(embed_dim))\n", " self.fc = nn.Linear(embed_dim, output_size, bias=False)\n", " \n", " def forward(self, text):\n", " # [batch, seq_len] -> [batch, seq_len, emb_dim]\n", " embed = self.embedding(text)\n", " \n", " # 扩展u这组参数,为的是计算和词向量的相似度,最后得到权重\n", " # [emb_dim] -> [batch, seq_len, emb_dim]\n", " u = self.u.repeat(embed.size(0), embed.size(1), 1) # 在最后一个参数上重复自己\n", " \n", " # 计算余弦相似度\n", " cos = F.cosine_similarity(embed, u, dim=2) # [batch, seq_len] 计算每个词向量和对应的u向量的余弦相似度\n", " \n", " # 计算权重 \n", " alpha = F.softmax(cos, dim=1) # [bacth, seq_len] softmax的作用是使得每个序列的个单词权重之和为1\n", " alpha = alpha.unsqueeze(2) # [bacth, seq_len, 1]\n", " \n", " # embed*alpha => [bacth, seq_len, emb_dim] 相当于每个词向量(的每个元素)都乘上一个权重\n", " h_attn = torch.sum(embed*alpha, dim=1).squeeze(1) # 在1维度上sum 相当于把序列(句子)求和[batch, emb_dim]\n", " \n", " # [batch, emb_dim] -> [batch, output_size]即[batch, 1]\n", " out = self.fc(h_attn) \n", " \n", " return out\n", " \n", " def get_embed_weight(self):\n", " \"\"\"获取embedding层参数\"\"\"\n", " return self.embedding.weight.data\n", " \n", " def get_u(self):\n", " \"\"\"attention向量\"\"\"\n", " return self.u\n", "\n", "\n", "def binary_accuracy(preds, y):\n", " \"\"\"计算准确率\"\"\"\n", " rounded_preds = torch.round(torch.sigmoid(preds))\n", " correct = (rounded_preds == y).float() \n", " acc = correct.sum()/len(correct)\n", " return acc\n", "\n", "\n", "def train(model, device, iterator, optimizer, criterion):\n", " \"\"\"训练函数\"\"\"\n", " \n", " epoch_loss = 0\n", " epoch_acc = 0\n", " model.train()\n", " \n", " for x, y in iterator:\n", " x, y = x.to(device), y.to(device) # torch.int64\n", " optimizer.zero_grad()\n", " predictions = model(x).squeeze(1) # torch.float32 \n", " \n", " loss = criterion(predictions, y)\n", " acc = binary_accuracy(predictions, y)\n", " loss.backward()\n", " optimizer.step()\n", " \n", " epoch_loss += loss.item()\n", " epoch_acc += acc.item()\n", " \n", " return epoch_loss / len(iterator), epoch_acc / len(iterator)\n", "\n", "\n", "def evaluate(model, device, iterator, criterion):\n", " \"\"\"验证函数\"\"\"\n", " epoch_loss = 0\n", " epoch_acc = 0\n", " model.eval()\n", " \n", " with torch.no_grad():\n", " for x, y in iterator:\n", " x, y = x.to(device), y.to(device)\n", " predictions = model(x).squeeze(1)\n", " loss = criterion(predictions, y)\n", " acc = binary_accuracy(predictions, y)\n", " epoch_loss += loss.item()\n", " epoch_acc += acc.item()\n", " \n", " return epoch_loss / len(iterator), epoch_acc / len(iterator)\n", "\n", "\n", "def count_parameters(model):\n", " \"\"\"统计模型的参数量\"\"\"\n", " return sum(p.numel() for p in model.parameters() if p.requires_grad)\n", "\n", "\n", "def epoch_time(start_time, end_time):\n", " \"\"\"计算时间差,返回分钟, 秒钟\"\"\"\n", " elapsed_time = end_time - start_time\n", " elapsed_mins = int(elapsed_time / 60)\n", " elapsed_secs = int(elapsed_time - (elapsed_mins * 60))\n", " return elapsed_mins, elapsed_secs" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "INPUT_DIM 14830\n", "模型有1,483,200个可调节参数, 大约5.657958984375 M.\n", "device: cuda:1\n" ] } ], "source": [ "INPUT_DIM = len(words_set) + 2\n", "print(\"INPUT_DIM\", INPUT_DIM)\n", "PAD_IDX = word2idx['']\n", "\n", "model = AttAvgModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\n", "print(f'模型有{count_parameters(model):,}个可调节参数, 大约{count_parameters(model)*4/1024/1024} M.')\n", "\n", "model = model.to(DEVICE)\n", "print(\"device:\", DEVICE)\n", "\n", " \n", "optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE)\n", "criterion = nn.BCEWithLogitsLoss()" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type AttAvgModel. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "***Save Best Model attention-wavg-model.pth***\n", "Epoch: 01 | Epoch Time: 0m 9s\n", "\tTrain Loss: 0.327 | Train Acc: 85.78%\n", "\t Val. Loss: 0.493 | Val. Acc: 81.25%\n", "Epoch: 02 | Epoch Time: 0m 10s\n", "\tTrain Loss: 0.194 | Train Acc: 92.50%\n", "\t Val. Loss: 0.588 | Val. Acc: 79.86%\n", "Epoch: 03 | Epoch Time: 0m 10s\n", "\tTrain Loss: 0.163 | Train Acc: 93.81%\n", "\t Val. Loss: 0.685 | Val. Acc: 80.09%\n", "Epoch: 04 | Epoch Time: 0m 9s\n", "\tTrain Loss: 0.138 | Train Acc: 94.90%\n", "\t Val. Loss: 0.813 | Val. Acc: 79.86%\n", "Epoch: 05 | Epoch Time: 0m 9s\n", "\tTrain Loss: 0.117 | Train Acc: 95.70%\n", "\t Val. Loss: 0.955 | Val. Acc: 80.44%\n" ] } ], "source": [ "model_name = 'attention-wavg-model.pth'\n", "for epoch in range(1, EPOCHS+1):\n", " start_time = time.time()\n", " train_loss, train_acc = train(model, DEVICE, train_data, optimizer, criterion)\n", " valid_loss, valid_acc = evaluate(model, DEVICE, eval_data, criterion)\n", " end_time = time.time()\n", "\n", " epoch_mins, epoch_secs = epoch_time(start_time, end_time)\n", " if valid_loss < BEST_VALID_LOSS:\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(model, model_name)\n", " print(f'***Save Best Model {model_name}***')\n", " \n", " print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\n", " print(f'\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\n", " print(f'\\t Val. Loss: {valid_loss:.3f} | Val. Acc: {valid_acc*100:.2f}%')" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.4549624267965555 | Test Acc: 0.8141741071428571 |\n" ] } ], "source": [ "model = torch.load(model_name)\n", "test_loss, test_acc = evaluate(model, DEVICE, test_data, criterion)\n", "print('Test Loss: {0} | Test Acc: {1} |'.format(test_loss, test_acc))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 分析词向量和Attention向量" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "model = torch.load(model_name)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "word_embedding = model.get_embed_weight() # 注意多GPU的时候是这样\n", "u = model.get_u()" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "torch.Size([14830, 100]) torch.Size([100])\n" ] } ], "source": [ "print(word_embedding.size(), u.size())" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "torch.Size([14830, 100])\n" ] } ], "source": [ "u_repeat = u.repeat(word_embedding.size()[0], 1)\n", "print(u_repeat.size())\n", "cos_sim = torch.cosine_similarity(word_embedding, u_repeat, dim=1)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "cos_score, cos_idx = cos_sim.sort()" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Cosine similarity最高的15个单词:\n", "nose : 0.8122435808181763\n", "soccer : 0.819983184337616\n", "telanovela : 0.8228465914726257\n", "tank : 0.8235946297645569\n", "hopelessly : 0.823834240436554\n", "connected : 0.828292965888977\n", "rises : 0.8358004689216614\n", "n't : 0.8396202921867371\n", "down : 0.8575065732002258\n", "induces : 0.8670101165771484\n", "seems : 0.8749212026596069\n", "not : 0.8817094564437866\n", "wrong : 0.885643720626831\n", "minutes : 0.9224189519882202\n", "or : 0.9354701042175293\n" ] } ], "source": [ "print(\"Cosine similarity最高的15个单词:\")\n", "for i, s in zip(cos_idx[-15:], cos_score[-15: ]):\n", " print(f\"{idx2word[i.item()]} : {s.item()}\")" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Cosine similarity最低的15个单词:\n", "caine : -0.9839131236076355\n", "boys : -0.9837092161178589\n", "stardom : -0.9834532141685486\n", "player : -0.9832771420478821\n", "roots : -0.9796615839004517\n", "sometimes : -0.9795486927032471\n", "contrivances : -0.9772619605064392\n", "describe : -0.9753174185752869\n", "words : -0.9740455746650696\n", "purpose : -0.9728651642799377\n", "italian : -0.9713523387908936\n", "actually : -0.9706254601478577\n", "quite : -0.9703256487846375\n", "delivery : -0.9696605205535889\n", "enervating : -0.9686934351921082\n" ] } ], "source": [ "print(\"Cosine similarity最低的15个单词:\")\n", "for i, s in zip(cos_idx[: 15], cos_score[: 15]):\n", " print(f\"{idx2word[i.item()]} : {s.item()}\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 相同单词在不同语境下attention的变化" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "661\n" ] } ], "source": [ "words_freq = []\n", "for w in words_set:\n", " if w[-1] >100:\n", " words_freq.append(w[0])\n", "print(len(words_freq))" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "\"the , a and of . to 's is that in it as with an film its for movie this you but be on n't by more -- one at than has not about his from are like so or all have most story ' good ... into out too who -rrb- up characters i funny -lrb- comedy if just no does much what can even ` your their will time some bad `` little '' very way which best any love been life make work enough there only he makes us new movies never something do they through was well action great would own made director humor many we really performances plot drama her how could films sense see such better other fun audience people every off two without cast nothing feel both when being look character may should entertaining acting real ever often performance them long : while still world because script also interesting another heart kind 're those hollywood dialogue watch minutes first screen down few get big over far thriller might less hard human moments actors tale compelling romantic rather cinema had year family almost material end watching seen - worth 've seem itself picture original take before my seems were documentary emotional our quite after find old these visual comes man things back fascinating moving sweet right works between feels here scenes full come piece direction care yet ; music go dull me going takes years special ultimately young ca keep making anything laughs 'll times why american worst smart give experience comic enjoyable least cinematic lot part where beautiful entertainment history style sometimes though thing art clever kids away gives again him together bit she intelligence dark idea gets amusing engaging same powerful once women genre intelligent star energy subject did charming surprisingly actually summer anyone charm want screenplay point filmmaking short place narrative solid pretty flick around feeling nearly feature silly simply whose manages strong face predictable wit think enjoy war truly offers show say deeply goes perfect know satisfying then power fans whole theater need effort always becomes done spirit fresh beautifully true trying premise half quirky three since filmmakers suspense tone dramatic portrait hilarious horror under last interest fine flat effects rare high rich series hours probably children everyone romance ideas touching ? familiar looking remarkable modern study 'd especially imagination wonderful pleasure classic boring small easy everything set exercise leave title level instead stuff honest culture past dumb intriguing tv wo video filmmaker light turn already actor audiences storytelling sad lack matter recent stories obvious mind written put despite talent ending terrific images french memorable project visually serious woman completely adventure become opera beauty talented gentle camera likely looks mess emotionally fails ride day slow sure cold having reason himself head cliches gorgeous directed beyond inside mr. jokes left men bland proves melodrama shot ways low impossible easily run above stupid thoughtful hour contrived excellent must simple ugly eyes different debut complex tired else fairly lacks viewer otherwise de believe shows brilliant viewers comedies each sort warmth passion black certainly writing turns particularly attempt play welcome wrong violence lost formula social cheap themselves genuine soap personal role delightful thoroughly crime either book sequences animation plays line hero version sex historical impressive barely home seeing appealing nor fact gags along quality clichés worse change got adults old-fashioned found lives middle surprising engrossing death running girl ambitious next message important creative fantasy able now live pretentious worthy ! sequel 'm decent psychological warm ends tragedy nice imagine entirely none perfectly michael waste creepy act remains sit deep concept unfunny laugh rock pictures job unsettling journey inventive usual try insight winning painful cool vision john unique attention convincing bring neither moral mystery stylish satire nature thin leaves master knows success side against believable artist lacking awful elements tedious lead reality seat working shallow mood situations view epic considerable appeal period provocative falls moment create days sentimental political scene sensitive watchable endearing cinematography road hackneyed\"" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "\" \".join(words_freq)" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "def word2sentences(sent_list, words_set, word2idx, freq=100):\n", " words_freq = []\n", " for w in words_set:\n", " if w[-1] >100:\n", " words_freq.append(w[0])\n", " print(len(words_freq), words_freq[0])\n", " w2sents = {}\n", " w2sentnums = {}\n", " for w in words_freq:\n", " w2sents[w] = []\n", " w2sentnums[w] = []\n", " for s in sent_list:\n", " if w in s:\n", " w2sents[w].append(s)\n", " w2sentnums[w].append([word2idx[word] for word in s])\n", " return words_freq, w2sents, w2sentnums " ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "661 the\n" ] } ], "source": [ "words_freq, w2sents, w2sentnums= word2sentences(train_sentences, words_set, word2idx, freq=100) " ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "19892" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(w2sents['the'])" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "19892" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(w2sentnums['the'])" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "def get_attentions(sentence, word_embedding, u, word2idx):\n", " \"\"\"计算一个句子中每个单词在句子中的Attention,返回单词与Attention值的字典\"\"\"\n", " num_sentence = [word2idx[w] for w in sentence]\n", " s_embed = word_embedding[num_sentence]\n", " u = u.repeat(s_embed.size(0), 1)\n", " score = torch.cosine_similarity(s_embed, u, dim=1)\n", " attn = torch.softmax(score, dim=0)\n", " return {w:a for w,a in zip(sentence, attn.tolist()) }" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [], "source": [ "model = torch.load(model_name)\n", "word_embedding = model.get_embed_weight() # 注意多GPU的时候中间加上module\n", "u = model.get_u()" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [], "source": [ "def get_word_sentens_attn_dic(w2sents, word_embedding, u, word2idx):\n", " word_sentens_attn_dic = {}\n", " word_attention_li = {}\n", " for word, sent_list in w2sents.items():\n", " word_sentens_attn_dic[word] = []\n", " word_attention_li[word] = []\n", " for sentence in sent_list:\n", " dic = get_attentions(sentence, word_embedding, u, word2idx)\n", " word_sentens_attn_dic[word].append(dic)\n", " word_attention_li[word].append(dic[word])\n", " return word_sentens_attn_dic, word_attention_li" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [], "source": [ "word_sentens_attn_dic, word_attention_li = get_word_sentens_attn_dic(w2sents, word_embedding, u, word2idx) # 这步很慢" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [], "source": [ "def meam_std_list(word_attention_li):\n", " \"\"\"计算Attentions的平均值和标准差,并按标准差排序\"\"\"\n", " word_mean_std_li = []\n", " for w in word_attention_li:\n", " arr = np.array(word_attention_li[w])\n", " word_mean_std_li.append((w, arr.mean(), arr.std()))\n", " word_mean_std_li = sorted(word_mean_std_li, key=lambda x:x[2], reverse=True)\n", " return word_mean_std_li" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[0.1190217062830925,\n", " 0.0888654813170433,\n", " 0.06562710553407669,\n", " 0.04432917386293411,\n", " 0.10898833721876144,\n", " 0.2384878396987915,\n", " 0.10173339396715164,\n", " 0.10063987225294113,\n", " 0.03695022687315941,\n", " 0.05876564234495163,\n", " 0.1934322565793991,\n", " 0.10889307409524918,\n", " 0.03232577070593834,\n", " 0.11339320987462997,\n", " 0.03404928743839264,\n", " 0.11830116808414459,\n", " 0.2688466012477875,\n", " 0.06260889768600464,\n", " 0.02309643104672432,\n", " 0.06964331865310669,\n", " 0.03861911594867706,\n", " 0.13636240363121033,\n", " 0.12204936146736145,\n", " 0.06669215857982635,\n", " 0.024942168965935707,\n", " 0.03721117228269577,\n", " 0.03583051636815071,\n", " 0.03584276884794235,\n", " 0.030492568388581276,\n", " 0.049663230776786804,\n", " 0.05735832452774048,\n", " 0.017051974311470985,\n", " 0.03523822873830795,\n", " 0.03202565386891365,\n", " 0.04725823923945427,\n", " 0.12893228232860565,\n", " 0.05369587987661362,\n", " 0.059402815997600555,\n", " 0.03468054160475731,\n", " 0.05395803973078728,\n", " 0.03539625182747841,\n", " 0.2015077769756317,\n", " 0.09085898846387863,\n", " 0.028005624189972878,\n", " 0.0667819231748581,\n", " 0.04037237539887428,\n", " 0.18131670355796814,\n", " 0.05987803265452385,\n", " 0.05780469998717308,\n", " 0.02719230204820633,\n", " 0.030423060059547424,\n", " 0.05053051561117172,\n", " 0.06877638399600983,\n", " 0.05907575041055679,\n", " 0.021351618692278862,\n", " 0.11394309997558594,\n", " 0.053594399243593216,\n", " 0.10110218822956085,\n", " 0.13501515984535217,\n", " 0.050411127507686615,\n", " 0.03422318026423454,\n", " 0.2536636292934418,\n", " 0.061379726976156235,\n", " 0.09928023815155029,\n", " 0.04747406020760536,\n", " 0.10411464422941208,\n", " 0.5169481039047241,\n", " 0.06736201047897339,\n", " 0.15860888361930847,\n", " 0.05372478440403938,\n", " 0.11371945589780807,\n", " 0.03602738305926323,\n", " 0.18691308796405792,\n", " 0.10293374955654144,\n", " 0.06345084309577942,\n", " 0.06563040614128113,\n", " 0.04486239701509476,\n", " 0.02011091262102127,\n", " 0.10817983746528625,\n", " 0.07393988221883774,\n", " 0.17515778541564941,\n", " 0.07506236433982849,\n", " 0.12377643585205078,\n", " 0.06288991868495941,\n", " 0.052632614970207214,\n", " 0.11619420349597931,\n", " 0.03847669064998627,\n", " 0.07587035745382309,\n", " 0.311026930809021,\n", " 0.08157555013895035,\n", " 0.16591787338256836,\n", " 0.02459457516670227,\n", " 0.1466558277606964,\n", " 0.02945157326757908,\n", " 0.03548036888241768,\n", " 0.03053637407720089,\n", " 0.06344855576753616,\n", " 0.0557742603123188,\n", " 0.03470824286341667,\n", " 0.13192571699619293,\n", " 0.037928856909275055,\n", " 0.044478949159383774,\n", " 0.06271667778491974,\n", " 0.07074806839227676,\n", " 0.03992407023906708,\n", " 0.10563419759273529,\n", " 0.16265082359313965,\n", " 0.030746934935450554,\n", " 0.06765319406986237,\n", " 0.18624959886074066,\n", " 0.03647158667445183,\n", " 0.05157794430851936,\n", " 0.07289182394742966,\n", " 0.08590467274188995,\n", " 0.037205882370471954,\n", " 0.0257713682949543,\n", " 0.05212021619081497,\n", " 0.21074552834033966,\n", " 0.06060027331113815,\n", " 0.19964373111724854,\n", " 0.16401366889476776,\n", " 0.028099291026592255,\n", " 0.09699218720197678,\n", " 0.1128750592470169,\n", " 0.153528094291687,\n", " 0.11045274883508682,\n", " 0.09178707748651505,\n", " 0.055407024919986725,\n", " 0.04496483877301216,\n", " 0.03719280660152435,\n", " 0.09319733083248138,\n", " 0.07012350112199783,\n", " 0.03973418101668358,\n", " 0.04156848043203354,\n", " 0.1707957535982132,\n", " 0.03374147415161133,\n", " 0.1648533046245575,\n", " 0.06694913655519485,\n", " 0.04881034791469574,\n", " 0.044650476425886154,\n", " 0.1442776620388031,\n", " 0.09604538232088089,\n", " 0.06381257623434067,\n", " 0.26622605323791504,\n", " 0.030317753553390503,\n", " 0.22371108829975128,\n", " 0.08151829242706299,\n", " 0.23407316207885742,\n", " 0.029585257172584534,\n", " 0.06266219913959503,\n", " 0.26549261808395386,\n", " 0.06774194538593292,\n", " 0.02396443672478199,\n", " 0.03396550565958023,\n", " 0.0450105257332325,\n", " 0.04149557277560234,\n", " 0.04695688188076019,\n", " 0.05122069641947746,\n", " 0.02033059298992157,\n", " 0.08892922848463058,\n", " 0.03899766132235527,\n", " 0.06255039572715759,\n", " 0.0334644615650177,\n", " 0.2850794494152069,\n", " 0.04772552102804184,\n", " 0.1060880646109581,\n", " 0.088255375623703,\n", " 0.06618666648864746,\n", " 0.061119891703128815,\n", " 0.03122597560286522,\n", " 0.03851215913891792,\n", " 0.045152127742767334,\n", " 0.04264447093009949,\n", " 0.0540623739361763,\n", " 0.06660711020231247,\n", " 0.04495788365602493,\n", " 0.03237925469875336,\n", " 0.052003130316734314,\n", " 0.04870743304491043,\n", " 0.03287087008357048,\n", " 0.1530287265777588,\n", " 0.06592223048210144,\n", " 0.11171049624681473,\n", " 0.0700758621096611,\n", " 0.09055113047361374,\n", " 0.14344580471515656,\n", " 0.02901759371161461,\n", " 0.04834083467721939,\n", " 0.037656188011169434,\n", " 0.10242567211389542,\n", " 0.1825432926416397,\n", " 0.19612830877304077,\n", " 0.06464529037475586,\n", " 0.09119366854429245,\n", " 0.028015658259391785,\n", " 0.07851945608854294,\n", " 0.10461153090000153,\n", " 0.14327417314052582,\n", " 0.049767717719078064,\n", " 0.09648337215185165,\n", " 0.015945641323924065,\n", " 0.024270113557577133,\n", " 0.07491869479417801,\n", " 0.04213240370154381,\n", " 0.04413394257426262,\n", " 0.039152756333351135,\n", " 0.05446626991033554,\n", " 0.019847305491566658,\n", " 0.05792763829231262,\n", " 0.024212120100855827,\n", " 0.03902474045753479,\n", " 0.06913848966360092,\n", " 0.029697084799408913,\n", " 0.026168061420321465,\n", " 0.08621005713939667,\n", " 0.07626429200172424,\n", " 0.031165048480033875,\n", " 0.06632594019174576,\n", " 0.24267765879631042,\n", " 0.1918545812368393,\n", " 0.10814889520406723,\n", " 0.10232631117105484,\n", " 0.07839473336935043,\n", " 0.02742159366607666,\n", " 0.15463294088840485,\n", " 0.023295704275369644,\n", " 0.02080385573208332,\n", " 0.02996056340634823,\n", " 0.04610548913478851,\n", " 0.09957515448331833,\n", " 0.04806463047862053,\n", " 0.08573813736438751,\n", " 0.04728425294160843,\n", " 0.18879355490207672,\n", " 0.033618222922086716,\n", " 0.07075203955173492,\n", " 0.1164277046918869,\n", " 0.3264194130897522,\n", " 0.1723061501979828,\n", " 0.10902751237154007,\n", " 0.19211715459823608,\n", " 0.09303739666938782,\n", " 0.04016238823533058,\n", " 0.049924347549676895,\n", " 0.25351372361183167,\n", " 0.09723994135856628,\n", " 0.04845902696251869,\n", " 0.07687260955572128,\n", " 0.2092534452676773,\n", " 0.05441931262612343,\n", " 0.04299810156226158,\n", " 0.2191939651966095,\n", " 0.040391575545072556,\n", " 0.03540709614753723,\n", " 0.0642881914973259,\n", " 0.05204727128148079,\n", " 0.10873828828334808,\n", " 0.07282879948616028,\n", " 0.09578656405210495,\n", " 0.03383275493979454,\n", " 0.05712180212140083,\n", " 0.039114102721214294,\n", " 0.033581968396902084,\n", " 0.1568588763475418,\n", " 0.06475626677274704,\n", " 0.02475585602223873,\n", " 0.41876330971717834,\n", " 0.03612890839576721,\n", " 0.11657785624265671,\n", " 0.05431724339723587,\n", " 0.16770441830158234,\n", " 0.030350498855113983,\n", " 0.13726596534252167,\n", " 0.06324649602174759,\n", " 0.07860378175973892,\n", " 0.12398781627416611,\n", " 0.021274574100971222,\n", " 0.022703271359205246,\n", " 0.048349566757678986,\n", " 0.11050061881542206,\n", " 0.06524597853422165,\n", " 0.0734436884522438,\n", " 0.149702787399292,\n", " 0.03898262977600098,\n", " 0.06958620995283127,\n", " 0.024460135027766228,\n", " 0.027979765087366104,\n", " 0.127155140042305,\n", " 0.03166554495692253,\n", " 0.13801684975624084,\n", " 0.038323547691106796,\n", " 0.06787386536598206,\n", " 0.035622257739305496,\n", " 0.10033565759658813,\n", " 0.0311440359801054,\n", " 0.02600337564945221,\n", " 0.10641063749790192,\n", " 0.03634757176041603,\n", " 0.04158780351281166,\n", " 0.037957508116960526,\n", " 0.03828288987278938,\n", " 0.030446473509073257,\n", " 0.05256654694676399,\n", " 0.103183314204216,\n", " 0.07303179055452347,\n", " 0.0567825585603714,\n", " 0.04656092822551727,\n", " 0.17782475054264069,\n", " 0.05894114822149277,\n", " 0.037706296890974045,\n", " 0.05997772887349129,\n", " 0.09483397006988525,\n", " 0.09648361057043076,\n", " 0.058775644749403,\n", " 0.025263430550694466,\n", " 0.03559737652540207,\n", " 0.03718835487961769,\n", " 0.037433210760354996,\n", " 0.08024080842733383,\n", " 0.0329367034137249,\n", " 0.03249708190560341,\n", " 0.10160797089338303,\n", " 0.07969211041927338,\n", " 0.06215725839138031,\n", " 0.17166589200496674,\n", " 0.14642252027988434,\n", " 0.10035371780395508,\n", " 0.05296153202652931,\n", " 0.056795310229063034,\n", " 0.612654983997345,\n", " 0.09611662477254868,\n", " 0.06100054457783699,\n", " 0.031606439501047134,\n", " 0.02365294098854065,\n", " 0.022931382060050964,\n", " 0.06888768076896667,\n", " 0.08355206996202469,\n", " 0.08406144380569458,\n", " 0.042591702193021774,\n", " 0.05930786579847336,\n", " 0.05367044359445572,\n", " 0.06695730984210968,\n", " 0.14204104244709015,\n", " 0.06348727643489838,\n", " 0.05567392706871033,\n", " 0.06174761801958084,\n", " 0.033453695476055145,\n", " 0.03891436755657196,\n", " 0.020075727254152298,\n", " 0.0414951890707016,\n", " 0.032506175339221954,\n", " 0.06736794114112854,\n", " 0.10158678144216537,\n", " 0.09006553888320923,\n", " 0.04150666669011116,\n", " 0.02684030868113041,\n", " 0.025398092344403267,\n", " 0.1797437220811844,\n", " 0.04471973702311516,\n", " 0.021255958825349808,\n", " 0.03510395810008049,\n", " 0.03382451832294464,\n", " 0.10007128119468689,\n", " 0.04526577144861221,\n", " 0.026842957362532616,\n", " 0.08270543068647385,\n", " 0.10471946746110916,\n", " 0.057283055037260056,\n", " 0.07271410524845123,\n", " 0.04449273645877838,\n", " 0.13745062053203583,\n", " 0.12911921739578247,\n", " 0.14784403145313263,\n", " 0.09329920262098312,\n", " 0.1216944083571434,\n", " 0.027337318286299706,\n", " 0.02396107278764248,\n", " 0.042377181351184845,\n", " 0.062158361077308655,\n", " 0.04446171969175339,\n", " 0.04728274047374725,\n", " 0.05980304628610611,\n", " 0.02914244867861271,\n", " 0.06978300213813782,\n", " 0.04375814273953438,\n", " 0.20036965608596802,\n", " 0.07997465878725052,\n", " 0.06835726648569107,\n", " 0.041683170944452286,\n", " 0.030514631420373917,\n", " 0.026652103289961815,\n", " 0.17441785335540771,\n", " 0.05094584450125694,\n", " 0.021957408636808395,\n", " 0.2710874676704407,\n", " 0.24634550511837006,\n", " 0.07649432867765427,\n", " 0.2960168421268463,\n", " 0.10140511393547058,\n", " 0.14266598224639893,\n", " 0.05118827149271965,\n", " 0.08693334460258484,\n", " 0.06925912201404572,\n", " 0.029692446812987328,\n", " 0.10609026998281479,\n", " 0.08814039081335068,\n", " 0.026836788281798363,\n", " 0.05979667603969574,\n", " 0.12237458676099777,\n", " 0.06713636964559555,\n", " 0.05575822293758392,\n", " 0.0751352459192276,\n", " 0.05496926233172417,\n", " 0.13758447766304016,\n", " 0.046654775738716125,\n", " 0.03589659184217453,\n", " 0.11613260954618454,\n", " 0.06733033806085587,\n", " 0.03474242240190506,\n", " 0.029289567843079567,\n", " 0.11257215589284897,\n", " 0.034357309341430664,\n", " 0.037685949355363846,\n", " 0.0689353346824646,\n", " 0.1257118135690689,\n", " 0.04883013293147087,\n", " 0.08084968477487564,\n", " 0.04231289029121399,\n", " 0.09856132417917252,\n", " 0.12087294459342957,\n", " 0.10143931210041046,\n", " 0.04290332645177841,\n", " 0.062068067491054535,\n", " 0.10409357398748398,\n", " 0.052931539714336395,\n", " 0.07590798288583755,\n", " 0.09673279523849487,\n", " 0.03474681079387665,\n", " 0.05684053152799606,\n", " 0.20651596784591675,\n", " 0.05751960352063179,\n", " 0.0388704277575016,\n", " 0.052278485149145126,\n", " 0.21900348365306854,\n", " 0.10898563265800476,\n", " 0.06644424796104431,\n", " 0.024152887985110283,\n", " 0.024472199380397797,\n", " 0.14489804208278656,\n", " 0.11115849763154984,\n", " 0.16496263444423676,\n", " 0.054227616637945175,\n", " 0.038841359317302704,\n", " 0.050011854618787766,\n", " 0.07934903353452682,\n", " 0.045532867312431335,\n", " 0.03091382049024105,\n", " 0.04723147675395012,\n", " 0.02147972211241722,\n", " 0.1578952819108963,\n", " 0.05623535439372063,\n", " 0.08519773930311203,\n", " 0.09720073640346527,\n", " 0.05237424001097679,\n", " 0.042325709015131,\n", " 0.027779225260019302,\n", " 0.02864629216492176,\n", " 0.02926797792315483,\n", " 0.048948630690574646,\n", " 0.053239062428474426,\n", " 0.1079203188419342,\n", " 0.029218783602118492,\n", " 0.07322125136852264,\n", " 0.10054854303598404,\n", " 0.0599575899541378,\n", " 0.09058400243520737,\n", " 0.08807015419006348,\n", " 0.12061145901679993,\n", " 0.04694662243127823,\n", " 0.08164673298597336,\n", " 0.06242657080292702,\n", " 0.039607975631952286,\n", " 0.07213323563337326,\n", " 0.08763103932142258,\n", " 0.36704784631729126,\n", " 0.19707000255584717,\n", " 0.050492268055677414,\n", " 0.07695997506380081,\n", " 0.03952956944704056,\n", " 0.017810743302106857,\n", " 0.06521592289209366,\n", " 0.02978295460343361,\n", " 0.055338699370622635,\n", " 0.06651680916547775,\n", " 0.43312087655067444,\n", " 0.0465678796172142,\n", " 0.11148732900619507,\n", " 0.10537445545196533,\n", " 0.12400811910629272,\n", " 0.03807182237505913,\n", " 0.036441538482904434,\n", " 0.05027085170149803,\n", " 0.06196950003504753,\n", " 0.04203026741743088,\n", " 0.1277773231267929,\n", " 0.03500267118215561,\n", " 0.05122890695929527,\n", " 0.0615219920873642,\n", " 0.06823304295539856,\n", " 0.10229797661304474,\n", " 0.05532129108905792,\n", " 0.16119715571403503,\n", " 0.04524514824151993,\n", " 0.04730745032429695,\n", " 0.037781454622745514,\n", " 0.0650399923324585,\n", " 0.07493326812982559,\n", " 0.024397533386945724,\n", " 0.06201842054724693,\n", " 0.05733151733875275,\n", " 0.02287258766591549,\n", " 0.029992271214723587,\n", " 0.0939626395702362,\n", " 0.032379694283008575,\n", " 0.06151549890637398,\n", " 0.23052428662776947,\n", " 0.06615308672189713,\n", " 0.04075095057487488,\n", " 0.06179390475153923,\n", " 0.04788685962557793,\n", " 0.1022413820028305,\n", " 0.056595299392938614,\n", " 0.10720273107290268,\n", " 0.14514988660812378,\n", " 0.057095155119895935,\n", " 0.18891212344169617,\n", " 0.06199021637439728,\n", " 0.17338153719902039,\n", " 0.27672380208969116,\n", " 0.07017537951469421,\n", " 0.037071358412504196,\n", " 0.08029317110776901,\n", " 0.046313583850860596,\n", " 0.03629003092646599,\n", " 0.13619562983512878,\n", " 0.07153468579053879,\n", " 0.028945429250597954,\n", " 0.05423334613442421,\n", " 0.09934449195861816,\n", " 0.061402883380651474,\n", " 0.04495488479733467,\n", " 0.020015913993120193,\n", " 0.08921083062887192,\n", " 0.03637588396668434,\n", " 0.16574226319789886,\n", " 0.03518042340874672,\n", " 0.1232433021068573,\n", " 0.05054579675197601,\n", " 0.05714532732963562,\n", " 0.12758584320545197,\n", " 0.05928238108754158,\n", " 0.09040574729442596,\n", " 0.045560263097286224,\n", " 0.06065494939684868,\n", " 0.0639016181230545,\n", " 0.06216944754123688,\n", " 0.051946718245744705,\n", " 0.07809852063655853,\n", " 0.08668864518404007,\n", " 0.059763938188552856,\n", " 0.11776655167341232,\n", " 0.02165316604077816,\n", " 0.04879682883620262,\n", " 0.1077425479888916,\n", " 0.04762463644146919,\n", " 0.03258078172802925,\n", " 0.2842461168766022,\n", " 0.15722881257534027,\n", " 0.08321468532085419,\n", " 0.08282601833343506,\n", " 0.11945679038763046,\n", " 0.05725580081343651,\n", " 0.09673463553190231,\n", " 0.09139511734247208,\n", " 0.06647444516420364,\n", " 0.021132294088602066,\n", " 0.02373507246375084,\n", " 0.03873834386467934,\n", " 0.03577394783496857,\n", " 0.10084836930036545,\n", " 0.09320175647735596,\n", " 0.03343222662806511,\n", " 0.09565657377243042,\n", " 0.055659353733062744,\n", " 0.13756383955478668,\n", " 0.04973261430859566,\n", " 0.07952773571014404,\n", " 0.0373360700905323,\n", " 0.06799793243408203,\n", " 0.18782731890678406,\n", " 0.12481880187988281,\n", " 0.08948549628257751,\n", " 0.07691624760627747,\n", " 0.2143297642469406,\n", " 0.24471847712993622,\n", " 0.13806290924549103,\n", " 0.08955729007720947,\n", " 0.04822927713394165,\n", " 0.05488996207714081,\n", " 0.05147157981991768,\n", " 0.11493594944477081,\n", " 0.27329903841018677,\n", " 0.038257185369729996,\n", " 0.1911698281764984,\n", " 0.0374474823474884,\n", " 0.42283785343170166,\n", " 0.18635936081409454,\n", " 0.07980402559041977,\n", " 0.04040278121829033,\n", " 0.17801012098789215,\n", " 0.021549591794610023,\n", " 0.047216035425662994,\n", " 0.036992285400629044,\n", " 0.02616749331355095,\n", " 0.20294639468193054,\n", " 0.05861371010541916,\n", " 0.042352236807346344,\n", " 0.04433530569076538,\n", " 0.07780134677886963,\n", " 0.1884113997220993,\n", " 0.039914168417453766,\n", " 0.0670749768614769,\n", " 0.043691087514162064,\n", " 0.05375536158680916,\n", " 0.11839774250984192,\n", " 0.13607870042324066,\n", " 0.13213743269443512,\n", " 0.06453520804643631,\n", " 0.07444753497838974,\n", " 0.04670301824808121,\n", " 0.07157900184392929,\n", " 0.338763952255249,\n", " 0.0301892701536417,\n", " 0.11264295130968094,\n", " 0.04852312058210373,\n", " 0.028430629521608353,\n", " 0.058528438210487366,\n", " 0.11265045404434204,\n", " 0.1392105519771576,\n", " 0.030259858816862106,\n", " 0.059427566826343536,\n", " 0.02608046866953373,\n", " 0.02269883267581463,\n", " 0.08451254665851593,\n", " 0.045840464532375336,\n", " 0.2491520643234253,\n", " 0.08189588785171509,\n", " 0.12396872788667679,\n", " 0.04240015894174576,\n", " 0.0513860359787941,\n", " 0.12833380699157715,\n", " 0.028289228677749634,\n", " 0.05517812818288803,\n", " 0.08532628417015076,\n", " 0.06375166028738022,\n", " 0.10383864492177963,\n", " 0.03583001345396042,\n", " 0.2652103304862976,\n", " 0.11617652326822281,\n", " 0.18399181962013245,\n", " 0.032059602439403534,\n", " 0.031177954748272896,\n", " 0.09739363938570023,\n", " 0.03539005666971207,\n", " 0.018924688920378685,\n", " 0.02270606905221939,\n", " 0.13008300960063934,\n", " 0.12139811366796494,\n", " 0.046806588768959045,\n", " 0.07612582296133041,\n", " 0.13960519433021545,\n", " 0.03722599148750305,\n", " 0.07501398772001266,\n", " 0.08636559545993805,\n", " 0.11962509900331497,\n", " 0.1232992559671402,\n", " 0.040459275245666504,\n", " 0.11167016625404358,\n", " 0.050891440361738205,\n", " 0.08285205811262131,\n", " 0.0449562706053257,\n", " 0.07763224840164185,\n", " 0.14657843112945557,\n", " 0.03163966163992882,\n", " 0.09385009855031967,\n", " 0.05724480748176575,\n", " 0.12611329555511475,\n", " 0.024767419323325157,\n", " 0.06178374961018562,\n", " 0.03997806832194328,\n", " 0.027165589854121208,\n", " 0.06513053923845291,\n", " 0.050190653651952744,\n", " 0.04496728628873825,\n", " 0.05325282737612724,\n", " 0.019831562414765358,\n", " 0.03136029466986656,\n", " 0.03060004860162735,\n", " 0.09297516196966171,\n", " 0.04592094197869301,\n", " 0.024548077955842018,\n", " 0.14033615589141846,\n", " 0.045503392815589905,\n", " 0.07301647216081619,\n", " 0.05543583258986473,\n", " 0.0221114419400692,\n", " 0.6265426874160767,\n", " 0.03140518441796303,\n", " 0.12650227546691895,\n", " 0.06702972948551178,\n", " 0.16972941160202026,\n", " 0.15718790888786316,\n", " 0.03349948301911354,\n", " 0.08135166019201279,\n", " 0.055221278220415115,\n", " 0.14982888102531433,\n", " 0.03489070013165474,\n", " 0.03052414022386074,\n", " 0.03753295913338661,\n", " 0.02294224500656128,\n", " 0.06025979667901993,\n", " 0.18139444291591644,\n", " 0.1279875636100769,\n", " 0.019069697707891464,\n", " 0.0267944373190403,\n", " 0.1770668476819992,\n", " 0.1793706715106964,\n", " 0.09214803576469421,\n", " 0.04147719964385033,\n", " 0.09642037749290466,\n", " 0.0588296540081501,\n", " 0.07551804184913635,\n", " 0.02806948311626911,\n", " 0.03908955305814743,\n", " 0.040883976966142654,\n", " 0.045370109379291534,\n", " 0.053778745234012604,\n", " 0.037208572030067444,\n", " 0.03763310983777046,\n", " 0.05172067880630493,\n", " 0.11758095771074295,\n", " 0.03661714494228363,\n", " 0.041850004345178604,\n", " 0.17033270001411438,\n", " 0.5737029910087585,\n", " 0.053698260337114334,\n", " 0.12936334311962128,\n", " 0.061049021780490875,\n", " 0.028339093551039696,\n", " 0.07561339437961578,\n", " 0.033847272396087646,\n", " 0.05946680158376694,\n", " 0.10608530044555664,\n", " 0.057932980358600616,\n", " 0.07907281816005707,\n", " 0.06371144205331802,\n", " 0.06025350093841553,\n", " 0.09854678809642792,\n", " 0.02916502021253109,\n", " 0.13957583904266357,\n", " 0.11364433169364929,\n", " 0.039870355278253555,\n", " 0.07696317881345749,\n", " 0.03643231838941574,\n", " 0.06038641929626465,\n", " 0.04953371360898018,\n", " 0.1655670553445816,\n", " 0.08648756891489029,\n", " 0.0566597543656826,\n", " 0.10527636855840683,\n", " 0.16847766935825348,\n", " 0.06840163469314575,\n", " 0.02945428527891636,\n", " 0.06192723289132118,\n", " 0.1478622704744339,\n", " 0.0722048208117485,\n", " 0.06298573315143585,\n", " 0.07516064494848251,\n", " 0.2604660093784332,\n", " 0.30824390053749084,\n", " 0.033967070281505585,\n", " 0.0966741070151329,\n", " 0.042531151324510574,\n", " 0.029532575979828835,\n", " 0.058474794030189514,\n", " 0.021080605685710907,\n", " 0.07856316864490509,\n", " 0.09532849490642548,\n", " 0.22755971550941467,\n", " 0.034103792160749435,\n", " 0.1438179612159729,\n", " 0.024848632514476776,\n", " 0.037472158670425415,\n", " 0.018815329298377037,\n", " 0.0568460114300251,\n", " 0.05384759604930878,\n", " 0.12004279345273972,\n", " 0.032671503722667694,\n", " 0.08404472470283508,\n", " 0.024228142574429512,\n", " 0.05024796351790428,\n", " 0.06648421287536621,\n", " 0.08278580009937286,\n", " 0.06827743351459503,\n", " 0.04952514171600342,\n", " 0.4017587900161743,\n", " 0.03897494450211525,\n", " 0.09109407663345337,\n", " 0.3763371706008911,\n", " 0.21625541150569916,\n", " 0.5029148459434509,\n", " 0.19662372767925262,\n", " 0.1347530633211136,\n", " 0.06841906905174255,\n", " 0.0971040353178978,\n", " 0.03509891405701637,\n", " 0.1628592312335968,\n", " 0.06142311915755272,\n", " 0.06586005538702011,\n", " 0.04480540007352829,\n", " 0.05868183821439743,\n", " 0.0419393815100193,\n", " 0.03379281610250473,\n", " 0.13919095695018768,\n", " 0.02525876834988594,\n", " 0.11987438052892685,\n", " 0.08026784658432007,\n", " 0.13593152165412903,\n", " 0.36814039945602417,\n", " 0.09495224058628082,\n", " 0.05721588805317879,\n", " 0.05046723783016205,\n", " 0.10939318686723709,\n", " 0.049867983907461166,\n", " 0.038386426866054535,\n", " 0.06744446605443954,\n", " 0.09973515570163727,\n", " 0.03663421422243118,\n", " 0.13550259172916412,\n", " 0.018425723537802696,\n", " 0.15455536544322968,\n", " 0.06755463778972626,\n", " 0.020557375624775887,\n", " 0.04286770150065422,\n", " 0.08751440793275833,\n", " 0.05411035194993019,\n", " 0.2547513544559479,\n", " 0.10548006743192673,\n", " 0.0553574338555336,\n", " 0.037535957992076874,\n", " 0.041605666279792786,\n", " 0.10682918131351471,\n", " 0.1383773684501648,\n", " 0.03680591285228729,\n", " 0.07151277363300323,\n", " 0.14258208870887756,\n", " 0.03216893970966339,\n", " 0.036895815283060074,\n", " 0.020616913214325905,\n", " 0.06479767709970474,\n", " 0.09668432921171188,\n", " 0.044976625591516495,\n", " 0.05411948263645172,\n", " 0.018028339371085167,\n", " 0.03899696469306946,\n", " 0.04694199562072754,\n", " 0.02461916022002697,\n", " 0.03189811110496521,\n", " 0.08907338976860046,\n", " 0.1375758796930313,\n", " 0.12521083652973175,\n", " 0.11718465387821198,\n", " 0.2725251019001007,\n", " 0.058143630623817444,\n", " 0.12151399254798889,\n", " 0.1284765899181366,\n", " 0.13175520300865173,\n", " 0.08789083361625671,\n", " 0.02928311377763748,\n", " 0.09605032950639725,\n", " 0.05553583800792694,\n", " 0.05359324440360069,\n", " 0.17190039157867432,\n", " 0.043378885835409164,\n", " 0.05734424665570259,\n", " 0.13160184025764465,\n", " 0.07879728078842163,\n", " 0.05319330096244812,\n", " 0.09009312093257904,\n", " 0.03154662996530533,\n", " 0.04068861901760101,\n", " 0.2433079034090042,\n", " 0.08300592750310898,\n", " 0.038297057151794434,\n", " 0.031096117570996284,\n", " 0.09350099414587021,\n", " 0.05104351416230202,\n", " 0.3151170611381531,\n", " 0.05532943457365036,\n", " 0.03205609321594238,\n", " 0.0830257311463356,\n", " 0.023052101954817772,\n", " 0.0322871059179306,\n", " 0.04687163233757019,\n", " 0.040724292397499084,\n", " 0.05738189443945885,\n", " 0.1914212554693222,\n", " 0.05997275188565254,\n", " 0.02160460688173771,\n", " 0.08172950893640518,\n", " 0.176561176776886,\n", " 0.10342389345169067,\n", " 0.03590356186032295,\n", " 0.028980424627661705,\n", " 0.08463802188634872,\n", " 0.03462473675608635,\n", " 0.09696123003959656,\n", " 0.0948820561170578,\n", " 0.030164236202836037,\n", " 0.08163236081600189,\n", " 0.09079662710428238,\n", " 0.08527382463216782,\n", " 0.03231038525700569,\n", " 0.1413751095533371,\n", " 0.05265148729085922,\n", " 0.04552474990487099,\n", " 0.04973987117409706,\n", " 0.14013969898223877,\n", " 0.031088031828403473,\n", " 0.19475050270557404,\n", " 0.16975688934326172,\n", " 0.16272719204425812,\n", " 0.04928617924451828,\n", " 0.051445577293634415,\n", " 0.06299855560064316,\n", " 0.07096774876117706,\n", " 0.0978393629193306,\n", " 0.02766236662864685,\n", " 0.12742745876312256,\n", " 0.020139947533607483,\n", " 0.1681257039308548,\n", " 0.06954234093427658,\n", " 0.04525081068277359,\n", " 0.6642180681228638,\n", " 0.37605851888656616,\n", " 0.08714096248149872,\n", " 0.05549418553709984,\n", " 0.08315110206604004,\n", " 0.036607809364795685,\n", " 0.13532887399196625,\n", " 0.05552152171730995,\n", " 0.15510864555835724,\n", " 0.03938803821802139,\n", " 0.17317302525043488,\n", " 0.04052438214421272,\n", " 0.04465610533952713,\n", " 0.2384616583585739,\n", " 0.05964722856879234,\n", " 0.21297132968902588,\n", " 0.0394112691283226,\n", " 0.03628295660018921,\n", " 0.05524817854166031,\n", " 0.06795297563076019,\n", " 0.027968518435955048,\n", " 0.09682062268257141,\n", " 0.0484076552093029,\n", " 0.12839503586292267,\n", " 0.019582655280828476,\n", " 0.09756653010845184,\n", " 0.08792352676391602,\n", " 0.046953123062849045,\n", " 0.08002877980470657,\n", " 0.03534771874547005,\n", " 0.03409164026379585,\n", " 0.06404507905244827,\n", " 0.15466471016407013,\n", " 0.05313846096396446,\n", " 0.06594367325305939,\n", " 0.09293480962514877,\n", " 0.02737482264637947,\n", " 0.04459265619516373,\n", " 0.02688700333237648,\n", " 0.03877761587500572,\n", " 0.030191695317626,\n", " 0.07304501533508301,\n", " 0.06893777847290039,\n", " 0.07463103532791138,\n", " 0.22722698748111725,\n", " 0.058241937309503555,\n", " 0.05778706818819046,\n", " ...]" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "## 出现大于100次的单词在句子中的权重,句子需要是等长的吗?\n", "word_attention_li['the']" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [], "source": [ "word_mean_std_li = meam_std_list(word_attention_li)" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "30个标准差最大的单词: \n", "awful | std:0.2445\n", "stupid | std:0.2341\n", "tedious | std:0.2339\n", "terrific | std:0.2335\n", "watchable | std:0.2332\n", "excellent | std:0.225\n", "painful | std:0.2246\n", "brilliant | std:0.2244\n", "impressive | std:0.2235\n", "appealing | std:0.2233\n", "inventive | std:0.2226\n", "waste | std:0.2218\n", "beautifully | std:0.2206\n", "flat | std:0.218\n", "bland | std:0.2173\n", "worthy | std:0.2161\n", "remarkable | std:0.2155\n", "provocative | std:0.2146\n", "intriguing | std:0.2144\n", "cool | std:0.2143\n", "fine | std:0.2141\n", "boring | std:0.2137\n", "unfunny | std:0.2135\n", "mess | std:0.2135\n", "hackneyed | std:0.2115\n", "engrossing | std:0.2104\n", "gorgeous | std:0.2103\n", "lacking | std:0.2083\n", "delightful | std:0.2069\n", "stylish | std:0.2067\n" ] } ], "source": [ "print('30个标准差最大的单词: ')\n", "for word, amean, astd in word_mean_std_li[:30]:\n", " print('{} | std:{:.4}'.format(word, astd))" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'inane': 0.4294554591178894,\n", " 'and': 0.1071346178650856,\n", " 'awful': 0.4634098410606384},\n", " {'a': 0.14175325632095337,\n", " 'thoroughly': 0.14105528593063354,\n", " 'awful': 0.580115556716919,\n", " 'movie': 0.13707591593265533},\n", " {'is': 0.13191638886928558,\n", " 'awful': 0.6552016139030457,\n", " '.': 0.21288198232650757},\n", " {'this': 0.034046296030282974,\n", " 'wretchedly': 0.16158755123615265,\n", " 'unfunny': 0.1627073585987091,\n", " 'wannabe': 0.16242194175720215,\n", " 'comedy': 0.05273708328604698,\n", " 'is': 0.03338056057691574,\n", " 'inane': 0.1536465287208557,\n", " 'and': 0.03832961246371269,\n", " 'awful': 0.16579440236091614,\n", " '-': 0.035348568111658096},\n", " {'if': 0.06239921972155571,\n", " 'oscar': 0.0761847272515297,\n", " 'had': 0.02653614804148674,\n", " 'a': 0.022323040291666985,\n", " 'category': 0.02682187594473362,\n", " 'called': 0.0599784180521965,\n", " 'best': 0.06136414036154747,\n", " 'bad': 0.09426537156105042,\n", " 'film': 0.028234658762812614,\n", " 'you': 0.03237655386328697,\n", " 'thought': 0.03296743333339691,\n", " 'was': 0.053605612367391586,\n", " 'going': 0.030031228438019753,\n", " 'to': 0.04958777129650116,\n", " 'be': 0.022541198879480362,\n", " 'really': 0.020105689764022827,\n", " 'awful': 0.09135551750659943,\n", " 'but': 0.05589110404253006,\n", " \"n't\": 0.09982476383447647},\n", " {'the': 0.09079662710428238,\n", " 'master': 0.1595860719680786,\n", " 'of': 0.13098527491092682,\n", " 'disguise': 0.24217694997787476,\n", " 'is': 0.049660585820674896,\n", " 'awful': 0.2466539442539215,\n", " '.': 0.08014049381017685},\n", " {'laughably': 0.13230930268764496,\n", " ',': 0.2168578803539276,\n", " 'irredeemably': 0.2219807654619217,\n", " 'awful': 0.3236837685108185,\n", " '.': 0.10516829788684845},\n", " {'thoroughly': 0.19559204578399658, 'awful': 0.8044079542160034},\n", " {'a': 0.019940337166190147,\n", " 'thoroughly': 0.019842153415083885,\n", " 'awful': 0.0816044807434082,\n", " 'movie': 0.019282380118966103,\n", " '--': 0.017907172441482544,\n", " 'dumb': 0.08333073556423187,\n", " ',': 0.054672423750162125,\n", " 'narratively': 0.021039120852947235,\n", " 'chaotic': 0.07769117504358292,\n", " 'visually': 0.021352296695113182,\n", " 'sloppy': 0.0803229808807373,\n", " '...': 0.0183599554002285,\n", " 'weird': 0.06036731228232384,\n", " 'amalgam': 0.07513318955898285,\n", " 'of': 0.043335966765880585,\n", " '`': 0.04615305736660957,\n", " 'the': 0.030039703473448753,\n", " 'thing': 0.06902974098920822,\n", " \"'\": 0.021290428936481476,\n", " 'and': 0.01886594481766224,\n", " 'geriatric': 0.025886304676532745},\n", " {'leaves': 0.065589539706707,\n", " 'an': 0.08327170461416245,\n", " 'awful': 0.35922572016716003,\n", " 'sour': 0.35161733627319336,\n", " 'taste': 0.14029574394226074},\n", " {'explores': 0.20533469319343567,\n", " 'the': 0.09154585748910904,\n", " 'awful': 0.24868926405906677,\n", " 'complications': 0.12292340397834778,\n", " 'of': 0.13206613063812256,\n", " 'one': 0.054083701223134995,\n", " 'terrifying': 0.05196862667798996,\n", " 'day': 0.09338836371898651},\n", " {'most': 0.13492874801158905,\n", " 'awful': 0.7256471514701843,\n", " 'acts': 0.139424130320549},\n", " {'awful': 0.6692163348197937, 'complications': 0.3307836949825287},\n", " {'an': 0.08911683410406113,\n", " 'awful': 0.38444098830223083,\n", " 'sour': 0.37629854679107666,\n", " 'taste': 0.1501435935497284},\n", " {'after': 0.09156420081853867,\n", " 'the': 0.13955366611480713,\n", " 'most': 0.07049179822206497,\n", " 'awful': 0.3791050612926483,\n", " 'acts': 0.07284035533666611,\n", " 'are': 0.07767992466688156,\n", " 'committed': 0.16876499354839325},\n", " {\"'s\": 0.1126924604177475,\n", " 'pauly': 0.2691709101200104,\n", " 'shore': 0.28010356426239014,\n", " 'awful': 0.3380330502986908},\n", " {'awful': 0.8088712692260742, 'movie': 0.19112874567508698},\n", " {'so': 0.06524837017059326,\n", " 'insanely': 0.05868121609091759,\n", " 'stupid': 0.21289615333080292,\n", " ',': 0.14679308235645294,\n", " 'awful': 0.21910451352596283,\n", " 'in': 0.051732514053583145,\n", " 'many': 0.05644390359520912,\n", " 'ways': 0.05860355496406555},\n", " {\"'s\": 0.032297469675540924,\n", " 'truly': 0.022847717627882957,\n", " 'awful': 0.09687971323728561,\n", " 'and': 0.022397389635443687,\n", " 'heartbreaking': 0.07621611654758453,\n", " 'subject': 0.06262871623039246,\n", " 'matter': 0.02416684292256832,\n", " ',': 0.06490634381771088,\n", " 'but': 0.059270795434713364,\n", " 'one': 0.021068915724754333,\n", " 'whose': 0.024620911106467247,\n", " 'lessons': 0.06716205924749374,\n", " 'are': 0.01985098421573639,\n", " 'well': 0.04671965539455414,\n", " 'worth': 0.05730024725198746,\n", " 'revisiting': 0.07806351035833359,\n", " 'as': 0.06219511479139328,\n", " 'many': 0.024957355111837387,\n", " 'times': 0.019390465691685677,\n", " 'possible': 0.023387199267745018,\n", " '.': 0.031477250158786774},\n", " {'merely': 0.11045300215482712,\n", " 'bad': 0.23517031967639923,\n", " 'rather': 0.1533563882112503,\n", " 'than': 0.057572513818740845,\n", " 'painfully': 0.21553681790828705,\n", " 'awful': 0.22791090607643127},\n", " {'bad': 0.20714429020881653,\n", " 'film': 0.06204450502991676,\n", " 'you': 0.0711461529135704,\n", " 'thought': 0.07244458049535751,\n", " 'was': 0.1177961453795433,\n", " 'going': 0.06599240005016327,\n", " 'to': 0.10896710306406021,\n", " 'be': 0.049533359706401825,\n", " 'really': 0.04418142884969711,\n", " 'awful': 0.20075000822544098},\n", " {'mind-numbingly': 0.08115215599536896,\n", " 'awful': 0.09863696992397308,\n", " 'that': 0.032588474452495575,\n", " 'you': 0.03495711088180542,\n", " 'hope': 0.0504283607006073,\n", " 'britney': 0.09704826027154922,\n", " 'wo': 0.09770813584327698,\n", " \"n't\": 0.10778125375509262,\n", " 'do': 0.07122764736413956,\n", " 'it': 0.04121299833059311,\n", " 'one': 0.02145107463002205,\n", " 'more': 0.021068723872303963,\n", " 'time': 0.025203166529536247,\n", " ',': 0.06608365476131439,\n", " 'as': 0.0633232444524765,\n", " 'far': 0.02680554986000061},\n", " {'the': 0.15361973643302917,\n", " 'most': 0.07759689539670944,\n", " 'awful': 0.4173163175582886,\n", " 'acts': 0.08018217235803604,\n", " 'are': 0.0855095386505127,\n", " 'committed': 0.18577536940574646},\n", " {'as': 0.11850421130657196,\n", " 'awful': 0.18459093570709229,\n", " 'some': 0.04163077473640442,\n", " 'of': 0.09802678972482681,\n", " 'the': 0.06795040518045425,\n", " 'recent': 0.10908572375774384,\n", " 'hollywood': 0.045708801597356796,\n", " 'trip': 0.03681496903300285,\n", " 'tripe': 0.17918314039707184},\n", " {',': 0.08382131904363632,\n", " 'it': 0.05227508395910263,\n", " 'eventually': 0.028522614389657974,\n", " 'works': 0.09486135095357895,\n", " 'its': 0.026132509112358093,\n", " 'way': 0.029977288097143173,\n", " 'up': 0.026895593851804733,\n", " 'to': 0.06791098415851593,\n", " 'merely': 0.060633499175310135,\n", " 'bad': 0.12909743189811707,\n", " 'rather': 0.08418543636798859,\n", " 'than': 0.031604599207639694,\n", " 'painfully': 0.1183195635676384,\n", " 'awful': 0.1251123547554016,\n", " '.': 0.04065033048391342},\n", " {'awful': 0.4220530390739441,\n", " 'sour': 0.41311395168304443,\n", " 'taste': 0.1648329794406891},\n", " {\"'s\": 0.033347148448228836,\n", " 'truly': 0.023590276017785072,\n", " 'awful': 0.10002832859754562,\n", " 'and': 0.023125311359763145,\n", " 'heartbreaking': 0.07869316637516022,\n", " 'subject': 0.06466417014598846,\n", " 'matter': 0.024952273815870285,\n", " ',': 0.06701581925153732,\n", " 'but': 0.06119711324572563,\n", " 'one': 0.021753663197159767,\n", " 'whose': 0.02542109787464142,\n", " 'lessons': 0.06934484839439392,\n", " 'are': 0.020496148616075516,\n", " 'well': 0.048238057643175125,\n", " 'worth': 0.05916252359747887,\n", " 'revisiting': 0.08060060441493988,\n", " 'as': 0.06421647220849991,\n", " 'many': 0.025768477469682693,\n", " 'times': 0.020020661875605583,\n", " 'possible': 0.024147290736436844},\n", " {'completely': 0.049199871718883514,\n", " 'awful': 0.1276017129421234,\n", " 'iranian': 0.03834697976708412,\n", " 'drama': 0.030272113159298897,\n", " '...': 0.02870873734354973,\n", " 'as': 0.08191811293363571,\n", " 'much': 0.02512318640947342,\n", " 'fun': 0.10083401948213577,\n", " 'a': 0.031179923564195633,\n", " 'grouchy': 0.09717969596385956,\n", " 'ayatollah': 0.023847129195928574,\n", " 'in': 0.03012789599597454,\n", " 'cold': 0.12421756237745285,\n", " 'mosque': 0.09834505617618561},\n", " {'is': 0.02889944054186344,\n", " 'so': 0.042744871228933334,\n", " 'insanely': 0.038442663848400116,\n", " 'stupid': 0.1394704282283783,\n", " ',': 0.09616564959287643,\n", " 'awful': 0.14353759586811066,\n", " 'in': 0.0338904969394207,\n", " 'many': 0.036976974457502365,\n", " 'ways': 0.03839178755879402,\n", " 'that': 0.047423105686903,\n", " 'watching': 0.03678854554891586,\n", " 'it': 0.05997360497713089,\n", " 'leaves': 0.02620793879032135,\n", " 'you': 0.05086996778845787,\n", " 'giddy': 0.09472718089818954},\n", " {'it': 0.09412791579961777,\n", " 'explores': 0.18600699305534363,\n", " 'the': 0.0829288437962532,\n", " 'awful': 0.22528067231178284,\n", " 'complications': 0.11135289072990417,\n", " 'of': 0.11963502317667007,\n", " 'one': 0.04899291694164276,\n", " 'terrifying': 0.047076933085918427,\n", " 'day': 0.08459792286157608},\n", " {'what': 0.01864301599562168,\n", " 'one': 0.016994623467326164,\n", " 'is': 0.015733523294329643,\n", " 'left': 0.060892459005117416,\n", " 'with': 0.023125046864151955,\n", " ',': 0.05235479772090912,\n", " 'even': 0.022429782897233963,\n", " 'after': 0.018874188885092735,\n", " 'the': 0.028766289353370667,\n", " 'most': 0.014530520886182785,\n", " 'awful': 0.07814517617225647,\n", " 'acts': 0.015014630742371082,\n", " 'are': 0.01601221412420273,\n", " 'committed': 0.03478763997554779,\n", " 'an': 0.018114745616912842,\n", " 'overwhelming': 0.020814383402466774,\n", " 'sadness': 0.02933056280016899,\n", " 'that': 0.02581823244690895,\n", " 'feels': 0.07203766703605652,\n", " 'as': 0.05016786605119705,\n", " 'if': 0.05337607115507126,\n", " 'it': 0.032651014626026154,\n", " 'has': 0.02361379750072956,\n", " 'made': 0.016102956607937813,\n", " 'its': 0.016322365030646324,\n", " 'way': 0.01872381381690502,\n", " 'into': 0.021546926349401474,\n", " 'your': 0.014629960991442204,\n", " 'very': 0.01732904091477394,\n", " 'bloodstream': 0.05963826924562454,\n", " '.': 0.025390200316905975},\n", " {'awful': 0.4288741946220398,\n", " 'snooze': 0.43178004026412964,\n", " '.': 0.13934578001499176},\n", " {'mind-numbingly': 0.07909561693668365,\n", " 'awful': 0.09613732993602753,\n", " 'that': 0.03176262229681015,\n", " 'you': 0.03407123684883118,\n", " 'hope': 0.049150414764881134,\n", " 'britney': 0.09458888322114944,\n", " 'wo': 0.0952320396900177,\n", " \"n't\": 0.10504988580942154,\n", " 'do': 0.06942261755466461,\n", " 'it': 0.04016858711838722,\n", " 'one': 0.020907465368509293,\n", " 'more': 0.020534805953502655,\n", " 'time': 0.02456447295844555,\n", " ',': 0.06440897285938263,\n", " 'as': 0.061718519777059555,\n", " 'far': 0.026126248762011528,\n", " 'movies': 0.02534175105392933},\n", " {'thoroughly': 0.15506432950496674,\n", " 'awful': 0.6377303004264832,\n", " '.': 0.20720535516738892},\n", " {'you': 0.09735230356454849,\n", " 'thought': 0.09912901371717453,\n", " 'was': 0.16118547320365906,\n", " 'going': 0.09030020236968994,\n", " 'to': 0.14910432696342468,\n", " 'be': 0.06777860969305038,\n", " 'really': 0.060455333441495895,\n", " 'awful': 0.2746948003768921},\n", " {',': 0.060552988201379776,\n", " 'even': 0.025942042469978333,\n", " 'after': 0.02182968147099018,\n", " 'the': 0.03327077627182007,\n", " 'most': 0.01680584065616131,\n", " 'awful': 0.09038186073303223,\n", " 'acts': 0.01736575737595558,\n", " 'are': 0.018519552424550056,\n", " 'committed': 0.0402350015938282,\n", " 'is': 0.01819721981883049,\n", " 'an': 0.020951317623257637,\n", " 'overwhelming': 0.024073688313364983,\n", " 'sadness': 0.03392340987920761,\n", " 'that': 0.02986108511686325,\n", " 'feels': 0.08331798017024994,\n", " 'as': 0.0580236054956913,\n", " 'if': 0.06173418089747429,\n", " 'it': 0.0377638079226017,\n", " 'has': 0.02731146104633808,\n", " 'made': 0.018624503165483475,\n", " 'its': 0.01887826807796955,\n", " 'way': 0.02165575884282589,\n", " 'into': 0.024920940399169922,\n", " 'your': 0.016920853406190872,\n", " 'very': 0.020042579621076584,\n", " 'bloodstream': 0.0689769759774208,\n", " '.': 0.02936602756381035},\n", " {'a': 0.01755085587501526,\n", " 'thoroughly': 0.01746443659067154,\n", " 'awful': 0.07182569056749344,\n", " 'movie': 0.01697174273431301,\n", " '--': 0.015761328861117363,\n", " 'dumb': 0.07334508001804352,\n", " ',': 0.04812094196677208,\n", " 'narratively': 0.01851796917617321,\n", " 'chaotic': 0.06838131695985794,\n", " 'visually': 0.018793616443872452,\n", " 'sloppy': 0.07069775462150574,\n", " '...': 0.01615985296666622,\n", " 'weird': 0.05313340201973915,\n", " 'amalgam': 0.06612985581159592,\n", " 'of': 0.03814294934272766,\n", " '`': 0.04062246158719063,\n", " 'the': 0.026439998298883438,\n", " 'thing': 0.060757800936698914,\n", " \"'\": 0.018739163875579834,\n", " 'and': 0.016605209559202194,\n", " 'geriatric': 0.022784307599067688,\n", " 'scream': 0.03713303059339523,\n", " '.': 0.023336926475167274},\n", " {'comes': 0.03924285247921944,\n", " 'along': 0.024345073848962784,\n", " 'that': 0.040589697659015656,\n", " 'is': 0.024735191836953163,\n", " 'so': 0.036585573107004166,\n", " 'insanely': 0.032903287559747696,\n", " 'stupid': 0.11937351524829865,\n", " ',': 0.08230870962142944,\n", " 'awful': 0.12285462021827698,\n", " 'in': 0.029007064178586006,\n", " 'many': 0.031648799777030945,\n", " 'ways': 0.032859742641448975,\n", " 'watching': 0.03148752078413963,\n", " 'it': 0.051331743597984314,\n", " 'leaves': 0.022431518882513046,\n", " 'you': 0.04353988915681839,\n", " 'giddy': 0.08107752352952957,\n", " '.': 0.03991677239537239},\n", " {'that': 0.0452759750187397,\n", " 'is': 0.02759099006652832,\n", " 'so': 0.04080955684185028,\n", " 'insanely': 0.03670213371515274,\n", " 'stupid': 0.13315577805042267,\n", " ',': 0.0918116569519043,\n", " 'awful': 0.13703878223896027,\n", " 'in': 0.03235607221722603,\n", " 'many': 0.03530280664563179,\n", " 'ways': 0.036653559654951096,\n", " 'watching': 0.035122908651828766,\n", " 'it': 0.057258240878582,\n", " 'leaves': 0.025021348148584366,\n", " 'you': 0.0485667809844017,\n", " 'giddy': 0.09043832123279572},\n", " {'the': 0.21080905199050903,\n", " 'most': 0.1064845472574234,\n", " 'awful': 0.5726741552352905,\n", " 'acts': 0.11003226786851883},\n", " {'irredeemably': 0.34107184410095215,\n", " 'awful': 0.4973377585411072,\n", " '.': 0.1615903377532959},\n", " {'to': 0.1100907251238823,\n", " 'merely': 0.09829316288232803,\n", " 'bad': 0.20928026735782623,\n", " 'rather': 0.13647329807281494,\n", " 'than': 0.051234323531389236,\n", " 'painfully': 0.19180823862552643,\n", " 'awful': 0.2028200477361679},\n", " {'every': 0.024657193571329117,\n", " 'so': 0.03111940436065197,\n", " 'often': 0.035799600183963776,\n", " 'a': 0.02553473971784115,\n", " 'film': 0.032296888530254364,\n", " 'comes': 0.03337966278195381,\n", " 'along': 0.020707732066512108,\n", " 'that': 0.03452528268098831,\n", " 'is': 0.021039562299847603,\n", " 'insanely': 0.02798728086054325,\n", " 'stupid': 0.10153818875551224,\n", " ',': 0.07001115381717682,\n", " 'awful': 0.10449919104576111,\n", " 'in': 0.024673184379935265,\n", " 'many': 0.026920221745967865,\n", " 'ways': 0.027950242161750793,\n", " 'watching': 0.026783039793372154,\n", " 'it': 0.043662380427122116,\n", " 'leaves': 0.01908007636666298,\n", " 'you': 0.037034690380096436,\n", " 'giddy': 0.0689639076590538,\n", " '.': 0.033952899277210236},\n", " {'of': 0.054488372057676315,\n", " 'advocacy': 0.05052750185132027,\n", " 'cinema': 0.03530295938253403,\n", " 'that': 0.03389953449368477,\n", " 'carries': 0.05737563967704773,\n", " 'you': 0.03636346012353897,\n", " 'along': 0.020332418382167816,\n", " 'in': 0.024225998669862747,\n", " 'a': 0.025071939453482628,\n", " 'torrent': 0.05437120422720909,\n", " 'emotion': 0.03222670778632164,\n", " 'as': 0.06587078422307968,\n", " 'it': 0.04287102818489075,\n", " 'explores': 0.08471781015396118,\n", " 'the': 0.037770356982946396,\n", " 'awful': 0.10260520875453949,\n", " 'complications': 0.050716228783130646,\n", " 'one': 0.02231406979262829,\n", " 'terrifying': 0.021441424265503883,\n", " 'day': 0.03853054717183113},\n", " {'irredeemably': 0.40680813789367676, 'awful': 0.5931918621063232},\n", " {'that': 0.03943268209695816,\n", " 'carries': 0.06674060225486755,\n", " 'you': 0.04229877516627312,\n", " 'along': 0.023651113733649254,\n", " 'in': 0.028180213645100594,\n", " 'a': 0.029164230450987816,\n", " 'torrent': 0.06324578076601028,\n", " 'of': 0.06338206678628922,\n", " 'emotion': 0.037486810237169266,\n", " 'as': 0.07662234455347061,\n", " 'it': 0.049868520349264145,\n", " 'explores': 0.0985456183552742,\n", " 'the': 0.04393530637025833,\n", " 'awful': 0.11935263127088547,\n", " 'complications': 0.05899422988295555,\n", " 'one': 0.02595621533691883,\n", " 'terrifying': 0.024941135197877884,\n", " 'day': 0.04481957480311394},\n", " {'be': 0.16821488738059998,\n", " 'really': 0.15003976225852966,\n", " 'awful': 0.6817453503608704},\n", " {'this': 0.01767290197312832,\n", " 'wretchedly': 0.08387758582830429,\n", " 'unfunny': 0.0844588503241539,\n", " 'wannabe': 0.08431070297956467,\n", " 'comedy': 0.02737499587237835,\n", " 'is': 0.017327329143881798,\n", " 'inane': 0.0797555148601532,\n", " 'and': 0.019896306097507477,\n", " 'awful': 0.08606129139661789,\n", " '-': 0.018348893150687218,\n", " 'no': 0.08899621665477753,\n", " 'doubt': 0.01768343150615692,\n", " ',': 0.05765834450721741,\n", " 'it': 0.03595856577157974,\n", " \"'s\": 0.02869085967540741,\n", " 'the': 0.03168031573295593,\n", " 'worst': 0.08597561717033386,\n", " 'movie': 0.0203354824334383,\n", " 'i': 0.01874994859099388,\n", " \"'ve\": 0.030085841193795204,\n", " 'seen': 0.0184037946164608,\n", " 'summer': 0.029024161398410797},\n", " {'an': 0.1288910061120987,\n", " 'awful': 0.5560227036476135,\n", " 'movie': 0.1313829869031906,\n", " 'that': 0.1837032586336136},\n", " {'awful': 0.20940649509429932,\n", " 'as': 0.13443537056446075,\n", " 'some': 0.04722742736339569,\n", " 'of': 0.11120506376028061,\n", " 'the': 0.07708533853292465,\n", " 'recent': 0.123750701546669,\n", " 'hollywood': 0.05185368284583092,\n", " 'trip': 0.04176420345902443,\n", " 'tripe': 0.20327170193195343},\n", " {'going': 0.14058153331279755,\n", " 'to': 0.23212923109531403,\n", " 'be': 0.1055193841457367,\n", " 'really': 0.09411832690238953,\n", " 'awful': 0.4276514947414398},\n", " {'it': 0.057057738304138184,\n", " 'eventually': 0.031132152304053307,\n", " 'works': 0.10354022681713104,\n", " 'its': 0.02852337621152401,\n", " 'way': 0.03271991387009621,\n", " 'up': 0.029356274753808975,\n", " 'to': 0.07412417232990265,\n", " 'merely': 0.06618086248636246,\n", " 'bad': 0.14090856909751892,\n", " 'rather': 0.09188757836818695,\n", " 'than': 0.034496109932661057,\n", " 'painfully': 0.12914463877677917,\n", " 'awful': 0.1365589052438736,\n", " '.': 0.04436943680047989},\n", " {'called': 0.10405448824167252,\n", " 'best': 0.10645852982997894,\n", " 'bad': 0.16353774070739746,\n", " 'film': 0.04898333176970482,\n", " 'you': 0.05616896599531174,\n", " 'thought': 0.0571940615773201,\n", " 'was': 0.09299853444099426,\n", " 'going': 0.05210014432668686,\n", " 'to': 0.08602811396121979,\n", " 'be': 0.03910594806075096,\n", " 'really': 0.03488066792488098,\n", " 'awful': 0.15848952531814575},\n", " {'a': 0.019911793991923332,\n", " 'compelling': 0.05103621631860733,\n", " ',': 0.05459415540099144,\n", " 'gut-clutching': 0.058459702879190445,\n", " 'piece': 0.021811790764331818,\n", " 'of': 0.0432739220559597,\n", " 'advocacy': 0.040128253400325775,\n", " 'cinema': 0.02803712897002697,\n", " 'that': 0.026922550052404404,\n", " 'carries': 0.04556695371866226,\n", " 'you': 0.02887936681509018,\n", " 'along': 0.016147729009389877,\n", " 'in': 0.019239958375692368,\n", " 'torrent': 0.04318087175488472,\n", " 'emotion': 0.025594012811779976,\n", " 'as': 0.052313681691884995,\n", " 'it': 0.03404758870601654,\n", " 'explores': 0.06728173792362213,\n", " 'the': 0.029996702447533607,\n", " 'awful': 0.08148766309022903,\n", " 'complications': 0.04027814045548439,\n", " 'one': 0.01772153005003929,\n", " 'terrifying': 0.017028488218784332,\n", " 'day': 0.03060043603181839},\n", " {'pauly': 0.30335694551467896,\n", " 'shore': 0.31567811965942383,\n", " 'awful': 0.3809649348258972},\n", " {'is': 0.16759416460990906, 'awful': 0.8324058055877686},\n", " {'called': 0.09485683590173721,\n", " 'best': 0.09704837203025818,\n", " 'bad': 0.14908219873905182,\n", " 'film': 0.04465356469154358,\n", " 'you': 0.05120404437184334,\n", " 'thought': 0.05213852599263191,\n", " 'was': 0.08477814495563507,\n", " 'going': 0.04749487340450287,\n", " 'to': 0.0784238651394844,\n", " 'be': 0.035649266093969345,\n", " 'really': 0.03179747238755226,\n", " 'awful': 0.14448021352291107,\n", " 'but': 0.08839268237352371},\n", " {',': 0.24992533028125763,\n", " 'irredeemably': 0.255829393863678,\n", " 'awful': 0.37304049730300903,\n", " '.': 0.12120483070611954},\n", " {'is': 0.08533930033445358,\n", " 'inane': 0.3928060829639435,\n", " 'and': 0.09799183160066605,\n", " 'awful': 0.4238628149032593},\n", " {'the': 0.08053579181432724,\n", " 'sweetest': 0.05428140237927437,\n", " 'thing': 0.18506722152233124,\n", " 'leaves': 0.03994610533118248,\n", " 'an': 0.05071510374546051,\n", " 'awful': 0.2187798172235489,\n", " 'sour': 0.21414606273174286,\n", " 'taste': 0.08544454723596573,\n", " '.': 0.07108388841152191},\n", " {'this': 0.035293884575366974,\n", " 'wretchedly': 0.16750875115394592,\n", " 'unfunny': 0.16866959631443024,\n", " 'wannabe': 0.1683737188577652,\n", " 'comedy': 0.0546695739030838,\n", " 'is': 0.03460375592112541,\n", " 'inane': 0.15927672386169434,\n", " 'and': 0.03973415866494179,\n", " 'awful': 0.17186975479125977},\n", " {'eventually': 0.03464622050523758,\n", " 'works': 0.11522741615772247,\n", " 'its': 0.03174297511577606,\n", " 'way': 0.036413200199604034,\n", " 'up': 0.03266988694667816,\n", " 'to': 0.08249099552631378,\n", " 'merely': 0.07365108281373978,\n", " 'bad': 0.15681374073028564,\n", " 'rather': 0.10225945711135864,\n", " 'than': 0.03838988393545151,\n", " 'painfully': 0.14372193813323975,\n", " 'awful': 0.15197309851646423},\n", " {'an': 0.1578972339630127,\n", " 'awful': 0.6811527013778687,\n", " 'movie': 0.16095004975795746},\n", " {'mind-numbingly': 0.07395108044147491,\n", " 'awful': 0.08988437056541443,\n", " 'that': 0.029696719720959663,\n", " 'you': 0.031855177134275436,\n", " 'hope': 0.045953575521707535,\n", " 'britney': 0.08843664079904556,\n", " 'wo': 0.0890379548072815,\n", " \"n't\": 0.09821723401546478,\n", " 'do': 0.06490723043680191,\n", " 'it': 0.03755594417452812,\n", " 'one': 0.0195476021617651,\n", " 'more': 0.019199181348085403,\n", " 'time': 0.02296675182878971,\n", " ',': 0.06021968647837639,\n", " 'as': 0.057704225182533264,\n", " 'far': 0.02442694641649723,\n", " 'movies': 0.023693474009633064,\n", " 'are': 0.018417613580822945,\n", " 'concerned': 0.01741994358599186,\n", " '.': 0.029204385355114937},\n", " {'was': 0.2005995213985443,\n", " 'going': 0.11238095164299011,\n", " 'to': 0.18556423485279083,\n", " 'be': 0.08435225486755371,\n", " 'really': 0.07523823529481888,\n", " 'awful': 0.34186482429504395},\n", " {'this': 0.017192170023918152,\n", " 'wretchedly': 0.08159597963094711,\n", " 'unfunny': 0.08216143399477005,\n", " 'wannabe': 0.08201731741428375,\n", " 'comedy': 0.026630351319909096,\n", " 'is': 0.0168559979647398,\n", " 'inane': 0.07758603990077972,\n", " 'and': 0.01935509406030178,\n", " 'awful': 0.08372028917074203,\n", " '-': 0.017849775031208992,\n", " 'no': 0.08657537400722504,\n", " 'doubt': 0.017202414572238922,\n", " ',': 0.05608994513750076,\n", " 'it': 0.03498043492436409,\n", " \"'s\": 0.027910422533750534,\n", " 'the': 0.03081856109201908,\n", " 'worst': 0.08363693952560425,\n", " 'movie': 0.019782325252890587,\n", " 'i': 0.01823991909623146,\n", " \"'ve\": 0.029267458245158195,\n", " 'seen': 0.01790318265557289,\n", " 'summer': 0.028234656900167465,\n", " '.': 0.027201607823371887},\n", " {'an': 0.03571278601884842,\n", " 'awful': 0.15406134724617004,\n", " 'movie': 0.036403264850378036,\n", " 'that': 0.05090002715587616,\n", " 'will': 0.07559400051832199,\n", " 'only': 0.15750566124916077,\n", " 'satisfy': 0.04559914395213127,\n", " 'the': 0.056712038815021515,\n", " 'most': 0.028646567836403847,\n", " 'emotionally': 0.02979300171136856,\n", " 'malleable': 0.1515154391527176,\n", " 'of': 0.08181409537792206,\n", " 'filmgoers': 0.04568655416369438,\n", " '.': 0.050056155771017075},\n", " {'is': 0.042250048369169235,\n", " 'so': 0.06249161809682846,\n", " 'insanely': 0.05620192736387253,\n", " 'stupid': 0.2039012610912323,\n", " ',': 0.1405910700559616,\n", " 'awful': 0.2098473161458969,\n", " 'in': 0.04954681172966957,\n", " 'many': 0.054059140384197235,\n", " 'ways': 0.056127551943063736},\n", " {\"'s\": 0.04838254675269127,\n", " 'not': 0.16540004312992096,\n", " 'as': 0.09317008405923843,\n", " 'awful': 0.14512860774993896,\n", " 'some': 0.032730840146541595,\n", " 'of': 0.07707036286592484,\n", " 'the': 0.05342378839850426,\n", " 'recent': 0.08576508611440659,\n", " 'hollywood': 0.03593705594539642,\n", " 'trip': 0.02894457057118416,\n", " 'tripe': 0.1408768892288208},\n", " {'as': 0.1263524293899536,\n", " 'it': 0.08223462104797363,\n", " 'explores': 0.16250453889369965,\n", " 'the': 0.07245057821273804,\n", " 'awful': 0.19681590795516968,\n", " 'complications': 0.09728317707777023,\n", " 'of': 0.1045188456773758,\n", " 'one': 0.04280254244804382,\n", " 'terrifying': 0.041128646582365036,\n", " 'day': 0.07390876114368439},\n", " {'a': 0.12574584782123566,\n", " 'thoroughly': 0.1251266896724701,\n", " 'awful': 0.5146062970161438,\n", " 'movie': 0.12159668654203415,\n", " '--': 0.1129244789481163},\n", " {'an': 0.09042688459157944,\n", " 'awful': 0.3900924324989319,\n", " 'snooze': 0.3927355408668518,\n", " '.': 0.12674517929553986},\n", " {'so': 0.229462668299675, 'awful': 0.7705373167991638},\n", " {'completely': 0.27827730774879456, 'awful': 0.7217226624488831},\n", " {'completely': 0.1794768124818802,\n", " 'awful': 0.46547985076904297,\n", " 'iranian': 0.13988640904426575,\n", " 'drama': 0.11043000221252441,\n", " '...': 0.10472694784402847},\n", " {'thoroughly': 0.16435283422470093,\n", " 'awful': 0.6759309768676758,\n", " 'movie': 0.1597161889076233},\n", " {'even': 0.027614161372184753,\n", " 'after': 0.023236732929944992,\n", " 'the': 0.035415273159742355,\n", " 'most': 0.017889076843857765,\n", " 'awful': 0.09620750695466995,\n", " 'acts': 0.018485084176063538,\n", " 'are': 0.019713247194886208,\n", " 'committed': 0.04282838851213455,\n", " ',': 0.06445598602294922,\n", " 'is': 0.01937013864517212,\n", " 'an': 0.022301753982901573,\n", " 'overwhelming': 0.025625379756093025,\n", " 'sadness': 0.03610997274518013,\n", " 'that': 0.03178580850362778,\n", " 'feels': 0.08868832141160965,\n", " 'as': 0.061763569712638855,\n", " 'if': 0.0657133162021637,\n", " 'it': 0.040197908878326416,\n", " 'has': 0.02907184511423111,\n", " 'made': 0.019824963063001633,\n", " 'its': 0.020095085725188255,\n", " 'way': 0.02305159904062748,\n", " 'into': 0.026527242735028267,\n", " 'your': 0.01801150292158127,\n", " 'very': 0.021334441378712654,\n", " 'bloodstream': 0.07342294603586197,\n", " '.': 0.03125884383916855},\n", " {'to': 0.27010035514831543,\n", " 'be': 0.122779980301857,\n", " 'really': 0.10951396077871323,\n", " 'awful': 0.49760565161705017},\n", " {'completely': 0.04724128916859627,\n", " 'awful': 0.12252205610275269,\n", " 'iranian': 0.0368204340338707,\n", " 'drama': 0.029067019000649452,\n", " '...': 0.027565879747271538,\n", " 'as': 0.07865706086158752,\n", " 'much': 0.024123065173625946,\n", " 'fun': 0.09681994467973709,\n", " 'a': 0.02993869036436081,\n", " 'grouchy': 0.09331109374761581,\n", " 'ayatollah': 0.022897804155945778,\n", " 'in': 0.028928542509675026,\n", " 'cold': 0.1192726194858551,\n", " 'mosque': 0.09443005919456482,\n", " '.': 0.0398087203502655},\n", " {'advocacy': 0.05343932285904884,\n", " 'cinema': 0.03733741119503975,\n", " 'that': 0.03585311025381088,\n", " 'carries': 0.060682110488414764,\n", " 'you': 0.03845903277397156,\n", " 'along': 0.021504143252968788,\n", " 'in': 0.025622105225920677,\n", " 'a': 0.02651679702103138,\n", " 'torrent': 0.05750453472137451,\n", " 'of': 0.05762845277786255,\n", " 'emotion': 0.034083880484104156,\n", " 'as': 0.06966681778430939,\n", " 'it': 0.045341622084379196,\n", " 'explores': 0.08959996700286865,\n", " 'the': 0.03994700312614441,\n", " 'awful': 0.10851819068193436,\n", " 'complications': 0.05363892763853073,\n", " 'one': 0.02359999530017376,\n", " 'terrifying': 0.022677060216665268,\n", " 'day': 0.040751002728939056},\n", " {'it': 0.11289438605308533,\n", " \"'s\": 0.09007691591978073,\n", " 'pauly': 0.21515269577503204,\n", " 'shore': 0.22389134764671326,\n", " 'awful': 0.270195335149765,\n", " '.': 0.08778934180736542},\n", " {'eventually': 0.03301596641540527,\n", " 'works': 0.10980547964572906,\n", " 'its': 0.03024933487176895,\n", " 'way': 0.034699805080890656,\n", " 'up': 0.031132632866501808,\n", " 'to': 0.07860944420099258,\n", " 'merely': 0.07018548995256424,\n", " 'bad': 0.14943499863147736,\n", " 'rather': 0.0974477231502533,\n", " 'than': 0.03658347949385643,\n", " 'painfully': 0.13695921003818512,\n", " 'awful': 0.1448221206665039,\n", " '.': 0.047054242342710495},\n", " {'really': 0.1803828477859497, 'awful': 0.8196171522140503},\n", " {'so': 0.02606937475502491,\n", " 'mind-numbingly': 0.07202322781085968,\n", " 'awful': 0.08754114806652069,\n", " 'that': 0.02892254665493965,\n", " 'you': 0.031024733558297157,\n", " 'hope': 0.04475559666752815,\n", " 'britney': 0.08613115549087524,\n", " 'wo': 0.08671680092811584,\n", " \"n't\": 0.09565677493810654,\n", " 'do': 0.06321514397859573,\n", " 'it': 0.03657688573002815,\n", " 'one': 0.019038010388612747,\n", " 'more': 0.018698671832680702,\n", " 'time': 0.02236802503466606,\n", " ',': 0.058649804443120956,\n", " 'as': 0.05619991570711136,\n", " 'far': 0.023790152743458748,\n", " 'movies': 0.023075800389051437,\n", " 'are': 0.01793747954070568,\n", " 'concerned': 0.016965817660093307,\n", " '.': 0.028443047776818275},\n", " {'an': 0.012256614863872528,\n", " 'awful': 0.05287380516529083,\n", " 'lot': 0.014167326502501965,\n", " 'like': 0.016992343589663506,\n", " 'one': 0.01149873249232769,\n", " 'of': 0.02807857096195221,\n", " '-lrb-': 0.010325021110475063,\n", " 'spears': 0.0493493527173996,\n", " \"'\": 0.01379465777426958,\n", " '-rrb-': 0.010896394960582256,\n", " 'music': 0.01663294993340969,\n", " 'videos': 0.01268409937620163,\n", " 'in': 0.012483972124755383,\n", " 'content': 0.01668781228363514,\n", " '--': 0.011602552607655525,\n", " 'except': 0.05367470160126686,\n", " 'that': 0.017468871548771858,\n", " 'it': 0.022092001512646675,\n", " 'goes': 0.010555661283433437,\n", " 'on': 0.01727188564836979,\n", " 'for': 0.014979766681790352,\n", " 'at': 0.01128324680030346,\n", " 'least': 0.01294358167797327,\n", " '90': 0.044871747493743896,\n", " 'more': 0.011293776333332062,\n", " 'minutes': 0.06276290863752365,\n", " 'and': 0.012223768047988415,\n", " ',': 0.035423774272203445,\n", " 'worse': 0.049986835569143295,\n", " 'you': 0.01873856596648693,\n", " 'have': 0.011632970534265041,\n", " 'to': 0.028699900954961777,\n", " 'pay': 0.052366018295288086,\n", " 'if': 0.036114782094955444,\n", " 'want': 0.010469161905348301,\n", " 'see': 0.035219598561525345,\n", " '.': 0.017179260030388832},\n", " {'works': 0.11936289072036743,\n", " 'its': 0.032882221043109894,\n", " 'way': 0.03772005811333656,\n", " 'up': 0.03384239971637726,\n", " 'to': 0.08545156568288803,\n", " 'merely': 0.07629439234733582,\n", " 'bad': 0.16244173049926758,\n", " 'rather': 0.10592951625585556,\n", " 'than': 0.039767686277627945,\n", " 'painfully': 0.14888006448745728,\n", " 'awful': 0.1574273556470871},\n", " {'so': 0.08496195077896118,\n", " 'insanely': 0.07641065120697021,\n", " 'stupid': 0.277218759059906,\n", " ',': 0.19114388525485992,\n", " 'awful': 0.2853028476238251},\n", " {'painfully': 0.4860478639602661, 'awful': 0.5139521360397339},\n", " {'thoroughly': 0.19559204578399658, 'awful': 0.8044079542160034},\n", " {'the': 0.1976555585861206,\n", " 'awful': 0.5369420051574707,\n", " 'complications': 0.2654024660587311},\n", " {'it': 0.04119160398840904,\n", " \"'s\": 0.032866232097148895,\n", " 'not': 0.11235613375902176,\n", " 'as': 0.06329037249088287,\n", " 'awful': 0.09858576208353043,\n", " 'some': 0.022234037518501282,\n", " 'of': 0.05235384777188301,\n", " 'the': 0.036290742456912994,\n", " 'recent': 0.05826016142964363,\n", " 'hollywood': 0.024412015452980995,\n", " 'trip': 0.019662026315927505,\n", " 'tripe': 0.09569757431745529,\n", " '...': 0.022180521860718727,\n", " 'but': 0.06031455099582672,\n", " 'far': 0.026791632175445557,\n", " 'from': 0.023752855136990547,\n", " 'a': 0.024089770391583443,\n", " 'groundbreaking': 0.022507349029183388,\n", " 'endeavor': 0.025814786553382874},\n", " {'a': 0.026738017797470093,\n", " 'category': 0.032126620411872864,\n", " 'called': 0.07184075564146042,\n", " 'best': 0.07350054383277893,\n", " 'bad': 0.11290886998176575,\n", " 'film': 0.033818818628787994,\n", " 'you': 0.038779884576797485,\n", " 'thought': 0.039487626403570175,\n", " 'was': 0.06420756131410599,\n", " 'going': 0.03597070649266243,\n", " 'to': 0.05939508229494095,\n", " 'be': 0.026999324560165405,\n", " 'really': 0.024082129821181297,\n", " 'awful': 0.10942351818084717,\n", " 'but': 0.06694506853818893,\n", " \"n't\": 0.11956778913736343},\n", " {'truly': 0.1607581228017807,\n", " 'awful': 0.6816523671150208,\n", " 'and': 0.15758958458900452},\n", " {'mind-numbingly': 0.4513740837574005, 'awful': 0.5486258864402771},\n", " {'it': 0.0399131253361702,\n", " \"'s\": 0.03184615075588226,\n", " 'not': 0.10886889696121216,\n", " 'as': 0.061326008290052414,\n", " 'awful': 0.09552591294050217,\n", " 'some': 0.021543949842453003,\n", " 'of': 0.050728920847177505,\n", " 'the': 0.03516437113285065,\n", " 'recent': 0.05645192041993141,\n", " 'hollywood': 0.023654330521821976,\n", " 'trip': 0.019051769748330116,\n", " 'tripe': 0.09272737056016922,\n", " '...': 0.021492095664143562,\n", " 'but': 0.05844254419207573,\n", " 'far': 0.02596009150147438,\n", " 'from': 0.02301562950015068,\n", " 'a': 0.023342087864875793,\n", " 'groundbreaking': 0.02180878072977066,\n", " 'endeavor': 0.02501356229186058,\n", " '.': 0.031037384644150734},\n", " {\"'s\": 0.10154023766517639,\n", " 'pauly': 0.242533341050148,\n", " 'shore': 0.25238409638404846,\n", " 'awful': 0.30458077788352966,\n", " '.': 0.09896153956651688},\n", " {'thought': 0.10982026159763336,\n", " 'was': 0.17856962978839874,\n", " 'going': 0.10003925114870071,\n", " 'to': 0.16518551111221313,\n", " 'be': 0.07508866488933563,\n", " 'really': 0.06697555631399155,\n", " 'awful': 0.30432114005088806},\n", " {'comes': 0.0408744290471077,\n", " 'along': 0.025357255712151527,\n", " 'that': 0.042277272790670395,\n", " 'is': 0.02576359175145626,\n", " 'so': 0.03810666874051094,\n", " 'insanely': 0.03427128866314888,\n", " 'stupid': 0.12433664500713348,\n", " ',': 0.08573081344366074,\n", " 'awful': 0.12796248495578766,\n", " 'in': 0.030213074758648872,\n", " 'many': 0.032964643090963364,\n", " 'ways': 0.034225933253765106,\n", " 'watching': 0.03279665857553482,\n", " 'it': 0.05346593260765076,\n", " 'leaves': 0.023364141583442688,\n", " 'you': 0.045350123196840286,\n", " 'giddy': 0.0844484344124794},\n", " {'although': 0.019331051036715508,\n", " 'it': 0.029590152204036713,\n", " 'starts': 0.032078590244054794,\n", " 'off': 0.04576343297958374,\n", " 'so': 0.02108973264694214,\n", " 'bad': 0.07307521253824234,\n", " 'that': 0.023397907614707947,\n", " 'you': 0.025098543614149094,\n", " 'feel': 0.014395937323570251,\n", " 'like': 0.022759640589356422,\n", " 'running': 0.040691301226615906,\n", " 'out': 0.018779227510094643,\n", " 'screaming': 0.06790227442979813,\n", " ',': 0.047446805983781815,\n", " 'eventually': 0.016145139932632446,\n", " 'works': 0.053695980459451675,\n", " 'its': 0.014792228117585182,\n", " 'way': 0.016968553885817528,\n", " 'up': 0.015224169939756393,\n", " 'to': 0.03844080865383148,\n", " 'merely': 0.03432140871882439,\n", " 'rather': 0.04765291139483452,\n", " 'than': 0.017889687791466713,\n", " 'painfully': 0.06697443127632141,\n", " 'awful': 0.07081946730613708,\n", " '.': 0.023009996861219406},\n", " {'it': 0.03890398517251015,\n", " \"'s\": 0.031040968373417854,\n", " 'truly': 0.02195884846150875,\n", " 'awful': 0.09311069548130035,\n", " 'and': 0.021526040509343147,\n", " 'heartbreaking': 0.07325100153684616,\n", " 'subject': 0.060192208737134933,\n", " 'matter': 0.023226654157042503,\n", " ',': 0.06238122284412384,\n", " 'but': 0.056964922696352005,\n", " 'one': 0.020249249413609505,\n", " 'whose': 0.023663057014346123,\n", " 'lessons': 0.06454918533563614,\n", " 'are': 0.019078701734542847,\n", " 'well': 0.044902071356773376,\n", " 'worth': 0.055071037262678146,\n", " 'revisiting': 0.07502652704715729,\n", " 'as': 0.059775471687316895,\n", " 'many': 0.023986412212252617,\n", " 'times': 0.018636098131537437,\n", " 'possible': 0.022477341815829277,\n", " '.': 0.03025265596807003},\n", " {'completely': 0.20047158002853394,\n", " 'awful': 0.5199306011199951,\n", " 'iranian': 0.1562499850988388,\n", " 'drama': 0.12334784865379333},\n", " {'if': 0.03654563054442406,\n", " 'oscar': 0.044619448482990265,\n", " 'had': 0.015541545115411282,\n", " 'a': 0.013074034824967384,\n", " 'category': 0.015708889812231064,\n", " 'called': 0.035127829760313034,\n", " 'best': 0.03593941405415535,\n", " 'bad': 0.05520882457494736,\n", " 'film': 0.016536319628357887,\n", " 'you': 0.01896212063729763,\n", " 'thought': 0.01930818520486355,\n", " 'was': 0.03139543905854225,\n", " 'going': 0.017588524147868156,\n", " 'to': 0.02904229424893856,\n", " 'be': 0.013201804831624031,\n", " 'really': 0.01177539024502039,\n", " 'awful': 0.05350459739565849,\n", " 'but': 0.03273399546742439,\n", " \"n't\": 0.05846481770277023,\n", " ',': 0.03584638983011246,\n", " 'guys': 0.016738202422857285,\n", " 'would': 0.03610474243760109,\n", " 'probably': 0.028177771717309952,\n", " 'duking': 0.014753163792192936,\n", " 'it': 0.022355562075972557,\n", " 'out': 0.014187832362949848,\n", " 'with': 0.015833303332328796,\n", " 'the': 0.019695760682225227,\n", " 'queen': 0.04930589348077774,\n", " 'of': 0.028413550928235054,\n", " 'damned': 0.010090086609125137,\n", " 'for': 0.015158477239310741,\n", " 'honor': 0.03768705949187279,\n", " '.': 0.017384212464094162},\n", " {'truly': 0.19083110988140106, 'awful': 0.8091689348220825},\n", " {'awful': 0.8388293385505676, 'acts': 0.16117069125175476},\n", " {'a': 0.019398203119635582,\n", " 'compelling': 0.04971982538700104,\n", " ',': 0.053185995668172836,\n", " 'gut-clutching': 0.05695183575153351,\n", " 'piece': 0.0212491936981678,\n", " 'of': 0.042157746851444244,\n", " 'advocacy': 0.03909321501851082,\n", " 'cinema': 0.02731396071612835,\n", " 'that': 0.026228129863739014,\n", " 'carries': 0.044391632080078125,\n", " 'you': 0.028134474530816078,\n", " 'along': 0.01573122665286064,\n", " 'in': 0.018743697553873062,\n", " 'torrent': 0.04206709563732147,\n", " 'emotion': 0.024933859705924988,\n", " 'as': 0.050964340567588806,\n", " 'it': 0.03316938877105713,\n", " 'explores': 0.06554631888866425,\n", " 'the': 0.029222989454865456,\n", " 'awful': 0.07938583195209503,\n", " 'complications': 0.03923923522233963,\n", " 'one': 0.017264435067772865,\n", " 'terrifying': 0.016589267179369926,\n", " 'day': 0.029811151325702667,\n", " '.': 0.025793300941586494},\n", " {'awful': 1.0}]" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "word_sentens_attn_dic['awful']" ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "2 | 0.7551351189613342 | ['a', 'beautifully'] [0.24486486613750458, 0.7551351189613342]\n", "24 | 0.07511750608682632 | ['beautifully', 'acted', 'and', 'directed', ',', 'it', \"'s\", 'clear', 'that', 'washington', 'most', 'certainly', 'has', 'a', 'new', 'career', 'ahead', 'of', 'him', 'if', 'he', 'so', 'chooses', '.'] [0.07511750608682632, 0.030896199867129326, 0.023045657202601433, 0.019230667501688004, 0.06678497791290283, 0.04165038466453552, 0.03323228657245636, 0.020300572738051414, 0.03293433040380478, 0.07515758275985718, 0.018535463139414787, 0.07497537136077881, 0.0301223024725914, 0.024358076974749565, 0.024615293368697166, 0.019183138385415077, 0.07763700187206268, 0.05293694883584976, 0.019979232922196388, 0.06808774173259735, 0.038470346480607986, 0.029685400426387787, 0.07067517191171646, 0.032388318330049515]\n", "10 | 0.21474631130695343 | ['should', 'have', 'a', 'stirring', 'time', 'at', 'this', 'beautifully', 'drawn', 'movie'] [0.11354087293148041, 0.06269878894090652, 0.06963498890399933, 0.2227986752986908, 0.07281559705734253, 0.06081385910511017, 0.05852064490318298, 0.21474631130695343, 0.0570930540561676, 0.0673372894525528]\n", "11 | 0.13601675629615784 | ['predictable', 'in', 'the', 'reassuring', 'manner', 'of', 'a', 'beautifully', 'sung', 'holiday', 'carol'] [0.17895862460136414, 0.04261750355362892, 0.06644424796104431, 0.12401089072227478, 0.09619412571191788, 0.09585398435592651, 0.0441056527197361, 0.13601675629615784, 0.12152737379074097, 0.04045074060559273, 0.053820036351680756]\n", "14 | 0.10898467898368835 | ['vibrantly', 'colored', 'and', 'beautifully', 'designed', ',', 'metropolis', 'is', 'a', 'feast', 'for', 'the', 'eyes', '.'] [0.11117106676101685, 0.03151916339993477, 0.03343592584133148, 0.10898467898368835, 0.06449607759714127, 0.09689537435770035, 0.12197745591402054, 0.029118737205863, 0.03534005954861641, 0.10853494703769684, 0.040974460542201996, 0.053239062428474426, 0.1173221692442894, 0.0469907782971859]\n", "2 | 0.7674763798713684 | ['beautifully', 'filmed'] [0.7674763798713684, 0.2325236052274704]\n", "3 | 0.4354516267776489 | ['reflective', 'and', 'beautifully'] [0.43095412850379944, 0.13359425961971283, 0.4354516267776489]\n", "4 | 0.4356611669063568 | ['daring', 'and', 'beautifully', 'made'] [0.31154629588127136, 0.13365855813026428, 0.4356611669063568, 0.11913397163152695]\n", "2 | 0.49846163392066956 | ['works', 'beautifully'] [0.5015383958816528, 0.49846163392066956]\n", "3 | 0.46065783500671387 | [',', 'beautifully', 'realized'] [0.4095586836338043, 0.46065783500671387, 0.1297835111618042]\n", "11 | 0.1552007496356964 | ['...', 'begins', 'on', 'a', 'high', 'note', 'and', 'sustains', 'it', 'beautifully', '.'] [0.04633772745728493, 0.12143895775079727, 0.06727851182222366, 0.05032637342810631, 0.0468563474714756, 0.1565658301115036, 0.047614771872758865, 0.15540897846221924, 0.08605411648750305, 0.1552007496356964, 0.06691770255565643]\n" ] } ], "source": [ "word = \"beautifully\"\n", "i = 0\n", "for dic in word_sentens_attn_dic[word]:\n", " word_score = dic[word]\n", " sentence = []\n", " sentence_scores = []\n", " for k, v in dic.items():\n", " sentence.append(k)\n", " sentence_scores.append(v)\n", " print(len(sentence), \"|\", word_score, \"|\", sentence, sentence_scores)\n", " i+=1\n", " if i > 10:\n", " break" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P005-Pytorch-Text-Classifer/_2_self_attention_wordavg.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## self attention" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import math\n", "import time\n", "import random\n", "import numpy as np\n", "from collections import Counter\n", "\n", "import torch\n", "import torch.nn as nn\n", "import torch.optim as optim\n", "import torch.nn.functional as F" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "VOCAB_SIZE = 14_828\n", "\n", "EPOCHS = 5\n", "BATCH_SIZE = 32\n", "LEARNING_RATE = 0.01\n", "BEST_VALID_LOSS = float('inf')\n", "\n", "EMBEDDING_DIM = 100\n", "OUTPUT_DIM = 1\n", "\n", "train_file = \"data/senti.train.tsv\"\n", "eval_file = \"data/senti.dev.tsv\"\n", "test_file = \"data/senti.test.tsv\"\n", "\n", "USE_CUDA = torch.cuda.is_available()\n", "DEVICE = torch.device('cuda:1' if USE_CUDA else 'cpu')\n", "NUM_CUDA = torch.cuda.device_count()\n", "\n", "random.seed(2019)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def load_text_file(filename):\n", " \"\"\"将样本的特征与标签分开,并将样本特征分词\"\"\"\n", " sentences = []\n", " label = []\n", " with open(filename, \"r\") as f:\n", " sent_list = [line.strip().split('\\t') for line in f]\n", " for sample in sent_list:\n", " sentences.append(sample[0].lower().split(\" \"))\n", " label.append(int(sample[-1]))\n", " return sentences, label\n", "\n", "\n", "def build_word_dic(sentences_list, vocab_size=20_000):\n", " \"\"\"构建words_set, word2idx, idx2word\"\"\"\n", " words_list = [w for line in sentences_list for w in line]\n", " counter = Counter(words_list)\n", " words_topn = counter.most_common(vocab_size)\n", " words_set = [item[0] for item in words_topn]\n", " words_set = ['', \"\"] + words_set\n", " word2idx = {w:i for i, w in enumerate(words_set)}\n", " idx2word = {i:w for i, w in enumerate(words_set)}\n", " return words_topn, word2idx, idx2word\n", "\n", "\n", "def build_x_y(word2idx, sentences_list, label_list, seq_len=60):\n", " \"\"\"构建输入模型的数据,对每个单词编码,每个句子通过添加pading保持一样长\"\"\"\n", " x = []\n", " y = []\n", " for sent, label in zip(sentences_list, label_list):\n", " word_x = [0]* seq_len\n", " for i, w in enumerate(sent):\n", " if w in word2idx:\n", " word_x[i] = word2idx[w]\n", " else:\n", " word_x[i] = word2idx['']\n", " x.append(word_x)\n", " y.append(label)\n", " return x, y\n", "\n", "\n", "def build_batch_data(data, label, batch_size=32):\n", " \"\"\"构建tensor格式的批次数据,返回batch列表,每个batch为二元组包含feature和label\"\"\"\n", " batch_data = []\n", " # 打乱顺序\n", " data_labels = [[x, y] for x, y in zip(data, label)]\n", " random.shuffle(data_labels)\n", " xlist = [item[0] for item in data_labels]\n", " ylist = [item[1] for item in data_labels]\n", " \n", " x_tensor = torch.tensor(xlist, dtype=torch.long)\n", " y_tensor = torch.tensor(ylist, dtype=torch.float)\n", " n, dim = x_tensor.size()\n", " for start in range(0, n, batch_size):\n", " end = start + batch_size\n", " if end > n:\n", " xbatch = x_tensor[start: ]\n", " ybatch = y_tensor[start: ]\n", " print(\"最后一个batch size:\", ybatch.size())\n", " else:\n", " xbatch = x_tensor[start: end]\n", " ybatch = y_tensor[start: end]\n", " batch_data.append((xbatch, ybatch))\n", " return batch_data" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "class SelfAttModel(nn.Module):\n", " def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\n", " super(SelfAttModel, self).__init__()\n", " self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\n", " initrange = 0.1\n", " self.embedding.weight.data.uniform_(-initrange, initrange)\n", " # 计算 Attention 向量\n", " self.qkv = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.fc = nn.Linear(embed_dim, output_size, bias=False)\n", " \n", " def forward(self, text):\n", " # [batch, seq_len] -> [batch, seq_len, emb_dim]\n", " embed = self.embedding(text)\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\n", " x = self.qkv(embed) # 用emeding层产生?\n", " # 算句子Attention平均值\n", " h_attn = self.attention(x) # [batch, seq_len, emb_dim]\n", " # 平均值\n", " # [batch, seq_len, emb_dim] -> [batch, emb_dim] # 每个句子求平均值得到一个词向量\n", " h_attn = torch.sum(h_attn, dim=1).squeeze()\n", " # [batch, emb_dim] --> [batch, output_size]\n", " out = self.fc(h_attn)\n", " return out\n", " \n", " def attention(self, x):\n", " \"\"\"计算attention权重\"\"\"\n", " d_k = x.size(-1) # embed_dim\n", " # x.transpose(-2, -1) 后两维度的转置 [batch, seq_len, emb_dim] --> [batch, emb_dim, seq_len]\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\n", " scores = torch.matmul(x, x.transpose(-2, -1)) / math.sqrt(d_k)\n", " # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\n", " attn = F.softmax(scores, dim=-1)\n", " # 计算context值 \n", " # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\n", " attn_x = torch.matmul(attn, x)\n", " return attn_x\n", " \n", " def get_embed_weight(self):\n", " \"\"\"获取embedding层参数\"\"\"\n", " return self.embedding.weight.data\n", "\n", "\n", "def binary_accuracy(preds, y):\n", " \"\"\"计算准确率\"\"\"\n", " rounded_preds = torch.round(torch.sigmoid(preds))\n", " correct = (rounded_preds == y).float() \n", " acc = correct.sum()/len(correct)\n", " return acc\n", "\n", "\n", "def train(model, device, iterator, optimizer, criterion):\n", " \"\"\"训练函数\"\"\"\n", " \n", " epoch_loss = 0\n", " epoch_acc = 0\n", " model.train()\n", " \n", " for x, y in iterator:\n", " x, y = x.to(device), y.to(device) # torch.int64\n", " optimizer.zero_grad()\n", " predictions = model(x).squeeze(1) # torch.float32 \n", " \n", " loss = criterion(predictions, y)\n", " acc = binary_accuracy(predictions, y)\n", " loss.backward()\n", " optimizer.step()\n", " \n", " epoch_loss += loss.item()\n", " epoch_acc += acc.item()\n", " \n", " return epoch_loss / len(iterator), epoch_acc / len(iterator)\n", "\n", "\n", "def evaluate(model, device, iterator, criterion):\n", " \"\"\"验证函数\"\"\"\n", " epoch_loss = 0\n", " epoch_acc = 0\n", " model.eval()\n", " \n", " with torch.no_grad():\n", " for x, y in iterator:\n", " x, y = x.to(device), y.to(device)\n", " predictions = model(x).squeeze(1)\n", " loss = criterion(predictions, y)\n", " acc = binary_accuracy(predictions, y)\n", " epoch_loss += loss.item()\n", " epoch_acc += acc.item()\n", " \n", " return epoch_loss / len(iterator), epoch_acc / len(iterator)\n", "\n", "\n", "def count_parameters(model):\n", " \"\"\"统计模型的参数量\"\"\"\n", " return sum(p.numel() for p in model.parameters() if p.requires_grad)\n", "\n", "\n", "def epoch_time(start_time, end_time):\n", " \"\"\"计算时间差,返回分钟, 秒钟\"\"\"\n", " elapsed_time = end_time - start_time\n", " elapsed_mins = int(elapsed_time / 60)\n", " elapsed_secs = int(elapsed_time - (elapsed_mins * 60))\n", " return elapsed_mins, elapsed_secs\n", "\n", "def max_seq_len(data_list):\n", " \"\"\"获取句子最大长度\"\"\"\n", " li = [len(s) for data in data_list for s in data]\n", " return max(li)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "max_len: 56\n", "词典长度: 14828 14830 14830\n", "训练集样本数量: 67349 67349\n", "最后一个batch size: torch.Size([21])\n", "最后一个batch size: torch.Size([8])\n", "最后一个batch size: torch.Size([29])\n" ] } ], "source": [ "train_sentences, train_label = load_text_file(train_file)\n", "eval_sentences, eval_label = load_text_file(eval_file)\n", "test_sentences, test_label = load_text_file(test_file)\n", "\n", "max_len = max_seq_len([train_sentences, eval_sentences, test_sentences])\n", "print(\"max_len:\", max_len)\n", "words_set, word2idx, idx2word = build_word_dic(train_sentences, vocab_size=VOCAB_SIZE)\n", "train_x, train_y = build_x_y(word2idx, train_sentences, train_label, seq_len=max_len)\n", "eval_x, eval_y = build_x_y(word2idx, eval_sentences, eval_label, seq_len=max_len)\n", "test_x, test_y = build_x_y(word2idx, test_sentences, test_label, seq_len=max_len)\n", "\n", "print(\"词典长度:\", len(words_set), len(word2idx), len(idx2word))\n", "print(\"训练集样本数量:\", len(train_x), len(train_y))\n", "\n", "train_data = build_batch_data(train_x, train_y, batch_size=BATCH_SIZE)\n", "eval_data = build_batch_data(eval_x, eval_y, batch_size=BATCH_SIZE)\n", "test_data = build_batch_data(test_x, test_y, batch_size=BATCH_SIZE)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "模型有1,493,100个可调节参数, 大约5.6957244873046875 M.\n" ] } ], "source": [ "INPUT_DIM = len(words_set) + 2\n", "PAD_IDX = word2idx['']\n", "\n", "model = SelfAttModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\n", "print(f'模型有{count_parameters(model):,}个可调节参数, 大约{count_parameters(model)*4/1024/1024} M.')\n", "\n", "model = model.to(DEVICE)\n", " \n", "optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE)\n", "criterion = nn.BCEWithLogitsLoss()" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type SelfAttModel. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "***Save Best Model self-attention-wordavg.pth***\n", "Epoch: 01 | Epoch Time: 0m 8s\n", "\tTrain Loss: 0.391 | Train Acc: 83.59%\n", "\t Val. Loss: 0.630 | Val. Acc: 80.36%\n", "Epoch: 02 | Epoch Time: 0m 8s\n", "\tTrain Loss: 0.380 | Train Acc: 89.68%\n", "\t Val. Loss: 1.530 | Val. Acc: 76.34%\n", "Epoch: 03 | Epoch Time: 0m 8s\n", "\tTrain Loss: 0.466 | Train Acc: 91.57%\n", "\t Val. Loss: 2.797 | Val. Acc: 78.24%\n", "Epoch: 04 | Epoch Time: 0m 8s\n", "\tTrain Loss: 0.446 | Train Acc: 93.12%\n", "\t Val. Loss: 5.711 | Val. Acc: 77.01%\n", "Epoch: 05 | Epoch Time: 0m 8s\n", "\tTrain Loss: 0.379 | Train Acc: 94.06%\n", "\t Val. Loss: 5.046 | Val. Acc: 79.13%\n" ] } ], "source": [ "model_name = 'self-attention-wordavg.pth'\n", "for epoch in range(1, EPOCHS+1):\n", " start_time = time.time()\n", " train_loss, train_acc = train(model, DEVICE, train_data, optimizer, criterion)\n", " valid_loss, valid_acc = evaluate(model, DEVICE, eval_data, criterion)\n", " end_time = time.time()\n", "\n", " epoch_mins, epoch_secs = epoch_time(start_time, end_time)\n", " if valid_loss < BEST_VALID_LOSS:\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(model, model_name)\n", " print(f'***Save Best Model {model_name}***')\n", " \n", " print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\n", " print(f'\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\n", " print(f'\\t Val. Loss: {valid_loss:.3f} | Val. Acc: {valid_acc*100:.2f}%')" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.5601791255829627 | Test Acc: 0.8189088022499754\n" ] } ], "source": [ "model = torch.load(model_name)\n", "test_loss, test_acc = evaluate(model, DEVICE, test_data, criterion)\n", "print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Add residual残差" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "class AttentionResidualModel(nn.Module):\n", " def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\n", " super(AttentionResidualModel, self).__init__()\n", " self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\n", " initrange = 0.1\n", " self.embedding.weight.data.uniform_(-initrange, initrange)\n", " self.qkv = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.fc = nn.Linear(embed_dim, output_size, bias=False)\n", " self.dropout = nn.Dropout(0.2)\n", " \n", " def forward(self, text):\n", " # [batch, seq_len] -> [batch, seq_len, emb_dim]\n", " embed = self.embedding(text)\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\n", " x = self.qkv(embed) # 用emeding层产生?\n", " # 算句子Attention平均值\n", " h_attn = self.attention(x) # [batch, seq_len, emb_dim]\n", " h_attn += embed\n", " # 平均值\n", " # [batch, seq_len, emb_dim] -> [batch, emb_dim] # 每个句子求平均值得到一个词向量\n", " h_attn = torch.sum(h_attn, dim=1).squeeze()\n", " # [batch, emb_dim] --> [batch, output_size]\n", " out = self.fc(self.dropout(h_attn))\n", " return out\n", " \n", " def attention(self, x):\n", " \"\"\"计算attention权重\"\"\"\n", " d_k = x.size(-1) # embed_dim\n", " # x.transpose(-2, -1) 后两维度的转置 [batch, seq_len, emb_dim] --> [batch, emb_dim, seq_len]\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\n", " scores = torch.matmul(x, x.transpose(-2, -1)) / math.sqrt(d_k)\n", " # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\n", " attn = F.softmax(scores, dim=-1)\n", " # 计算context值 \n", " # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\n", " attn_x = torch.matmul(attn, x)\n", " return attn_x\n", " \n", " def get_embed_weight(self):\n", " \"\"\"获取embedding层参数\"\"\"\n", " return self.embedding.weight.data" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "模型有1,493,100个可调节参数, 大约5.6957244873046875 M.\n" ] } ], "source": [ "res_model = AttentionResidualModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\n", "print(f'模型有{count_parameters(res_model):,}个可调节参数, 大约{count_parameters(res_model)*4/1024/1024} M.')\n", "\n", "res_model = res_model.to(DEVICE)\n", "\n", "optimizer = optim.Adam(res_model.parameters(), lr=LEARNING_RATE)\n", "criterion = nn.BCEWithLogitsLoss()" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type AttentionResidualModel. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "***Save Best Model attention-residual-wordavg.pth***\n", "Epoch: 01 | Epoch Time: 0m 8s\n", "\tTrain Loss: 0.411 | Train Acc: 82.54%\n", "\t Val. Loss: 0.680 | Val. Acc: 80.25%\n", "Epoch: 02 | Epoch Time: 0m 9s\n", "\tTrain Loss: 0.423 | Train Acc: 89.12%\n", "\t Val. Loss: 1.333 | Val. Acc: 78.68%\n", "Epoch: 03 | Epoch Time: 0m 9s\n", "\tTrain Loss: 0.450 | Train Acc: 91.44%\n", "\t Val. Loss: 4.090 | Val. Acc: 79.13%\n", "Epoch: 04 | Epoch Time: 0m 8s\n", "\tTrain Loss: 1.355 | Train Acc: 92.43%\n", "\t Val. Loss: 2.013 | Val. Acc: 78.91%\n", "Epoch: 05 | Epoch Time: 0m 9s\n", "\tTrain Loss: 0.232 | Train Acc: 94.51%\n", "\t Val. Loss: 3.674 | Val. Acc: 77.68%\n" ] } ], "source": [ "res_model_name = 'attention-residual-wordavg.pth'\n", "BEST_VALID_LOSS = float('inf')\n", "\n", "for epoch in range(1, EPOCHS+1):\n", " start_time = time.time()\n", " train_loss, train_acc = train(res_model, DEVICE, train_data, optimizer, criterion)\n", " valid_loss, valid_acc = evaluate(res_model, DEVICE, eval_data, criterion)\n", " end_time = time.time()\n", "\n", " epoch_mins, epoch_secs = epoch_time(start_time, end_time)\n", " if valid_loss < BEST_VALID_LOSS:\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(res_model, res_model_name)\n", " print(f'***Save Best Model {res_model_name}***')\n", " \n", " print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\n", " print(f'\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\n", " print(f'\\t Val. Loss: {valid_loss:.3f} | Val. Acc: {valid_acc*100:.2f}%')" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.6042031730737603 | Test Acc: 0.8194570478640104\n" ] } ], "source": [ "res_model = torch.load(res_model_name)\n", "test_loss, test_acc = evaluate(res_model, DEVICE, test_data, criterion)\n", "print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 自己设置attention函数" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "class MyAttentionModel(nn.Module):\n", " def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\n", " super(MyAttentionModel, self).__init__()\n", " self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\n", " initrange = 0.1\n", " self.embedding.weight.data.uniform_(-initrange, initrange)\n", " # 权重计算 q, v, k\n", " self.q = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.k = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.v = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.fc = nn.Linear(embed_dim, output_size, bias=False)\n", " self.dropout = nn.Dropout(0.2)\n", " \n", " def forward(self, text):\n", " # [batch, seq_len] -> [batch, seq_len, emb_dim]\n", " embed = self.embedding(text)\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\n", " q_vec = self.q(embed) \n", " k_vec = self.k(embed)\n", " v_vec = self.v(embed)\n", " # 算句子Attention平均值\n", " h_attn = self.attention(q_vec, k_vec, v_vec) # [batch, seq_len, emb_dim]\n", " h_attn += embed\n", " # 平均值\n", " # [batch, seq_len, emb_dim] -> [batch, emb_dim] # 每个句子求平均值得到一个词向量\n", " h_attn = torch.sum(h_attn, dim=1).squeeze()\n", " # [batch, emb_dim] --> [batch, output_size]\n", " out = self.fc(self.dropout(h_attn))\n", " return out\n", " \n", " def attention(self, q, k, v):\n", " \"\"\"计算attention权重\"\"\"\n", " d_k = k.size(-1) # embed_dim\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\n", " scores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k)\n", " # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\n", " attn = F.softmax(scores, dim=-1)\n", " # 计算context值 \n", " # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\n", " attn_x = torch.matmul(attn, v)\n", " return attn_x\n", " \n", " def get_embed_weight(self):\n", " \"\"\"获取embedding层参数\"\"\"\n", " return self.embedding.weight.data" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "模型有1,513,100个可调节参数, 大约5.7720184326171875 M.\n" ] } ], "source": [ "att_model = MyAttentionModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\n", "print(f'模型有{count_parameters(att_model):,}个可调节参数, 大约{count_parameters(att_model)*4/1024/1024} M.')\n", "\n", "att_model = att_model.to(DEVICE)\n", "\n", "optimizer = optim.Adam(att_model.parameters(), lr=LEARNING_RATE)\n", "criterion = nn.BCEWithLogitsLoss()" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type MyAttentionModel. It won't be checked for correctness upon loading.\n", " \"type \" + obj.__name__ + \". It won't be checked \"\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "***Save Best Model my-attention-wordavg.pth***\n", "Epoch: 01 | Epoch Time: 0m 10s\n", "\tTrain Loss: 0.461 | Train Acc: 82.26%\n", "\t Val. Loss: 0.669 | Val. Acc: 78.12%\n", "Epoch: 02 | Epoch Time: 0m 10s\n", "\tTrain Loss: 0.453 | Train Acc: 88.23%\n", "\t Val. Loss: 1.575 | Val. Acc: 76.79%\n", "Epoch: 03 | Epoch Time: 0m 11s\n", "\tTrain Loss: 0.599 | Train Acc: 88.79%\n", "\t Val. Loss: 2.247 | Val. Acc: 76.45%\n", "Epoch: 04 | Epoch Time: 0m 11s\n", "\tTrain Loss: 0.655 | Train Acc: 90.28%\n", "\t Val. Loss: 3.758 | Val. Acc: 79.24%\n", "Epoch: 05 | Epoch Time: 0m 10s\n", "\tTrain Loss: 3.910 | Train Acc: 87.12%\n", "\t Val. Loss: 9.320 | Val. Acc: 74.11%\n" ] } ], "source": [ "att_model_name = 'my-attention-wordavg.pth'\n", "BEST_VALID_LOSS = float('inf')\n", "\n", "for epoch in range(1, EPOCHS+1):\n", " start_time = time.time()\n", " train_loss, train_acc = train(att_model, DEVICE, train_data, optimizer, criterion)\n", " valid_loss, valid_acc = evaluate(att_model, DEVICE, eval_data, criterion)\n", " end_time = time.time()\n", "\n", " epoch_mins, epoch_secs = epoch_time(start_time, end_time)\n", " if valid_loss < BEST_VALID_LOSS:\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(att_model, att_model_name)\n", " print(f'***Save Best Model {att_model_name}***')\n", " \n", " print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\n", " print(f'\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\n", " print(f'\\t Val. Loss: {valid_loss:.3f} | Val. Acc: {valid_acc*100:.2f}%')" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 0.5882109670262587 | Test Acc: 0.8019131882148877\n" ] } ], "source": [ "att_model = torch.load(att_model_name)\n", "test_loss, test_acc = evaluate(att_model, DEVICE, test_data, criterion)\n", "print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Deploy" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "MyAttentionModel(\n", " (embedding): Embedding(16000, 100, padding_idx=0)\n", " (q): Linear(in_features=100, out_features=100, bias=False)\n", " (k): Linear(in_features=100, out_features=100, bias=False)\n", " (v): Linear(in_features=100, out_features=100, bias=False)\n", " (fc): Linear(in_features=100, out_features=1, bias=False)\n", " (dropout): Dropout(p=0.2)\n", ")" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "att_model.eval()" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "def predict(model, device, x):\n", " model.eval()\n", " with torch.no_grad():\n", " x = x.to(device)\n", " y = model(x)\n", " print(y)\n", " return y" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([1, 56])" ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x = test_data[0][0][0].unsqueeze(0)\n", "x.size()" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor(0.)" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gt = test_data[0][-1][0]\n", "gt" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensor([-10.3408], device='cuda:1')\n" ] } ], "source": [ "y = predict(att_model, DEVICE, x)" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [], "source": [ "p_y = torch.sigmoid(y)" ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([1], device='cuda:1', dtype=torch.uint8)" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "p_y < 0.5" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## add positional encodings" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "from torch.autograd import Variable" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "class PosAttentionModel(nn.Module):\n", " def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\n", " super(PosAttentionModel, self).__init__()\n", " self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\n", " initrange = 0.1\n", " self.embedding.weight.data.uniform_(-initrange, initrange)\n", " # 权重计算 q, v, k\n", " self.q = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.k = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.v = nn.Linear(embed_dim, embed_dim, bias=False)\n", " self.fc = nn.Linear(embed_dim, output_size, bias=False)\n", " self.dropout = nn.Dropout(0.2)\n", " \n", " \n", " def forward(self, text):\n", " # [batch, seq_len] -> [batch, seq_len, emb_dim]\n", " embed = self.embedding(text)\n", " max_len, embed_dim = embed.size()[1], embed.size(2)\n", " pe = self.get_pe(max_len, embed_dim)\n", " # embed += Variable(self.pe[:, :x.size(1)],requires_grad=False)\n", " embed += pe\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\n", " q_vec = self.q(embed) \n", " k_vec = self.k(embed)\n", " v_vec = self.v(embed)\n", " # 算句子Attention平均值\n", " h_attn = self.attention(q_vec, k_vec, v_vec) # [batch, seq_len, emb_dim]\n", " h_attn += embed\n", " # 平均值\n", " # [batch, seq_len, emb_dim] -> [batch, emb_dim] # 每个句子求平均值得到一个词向量\n", " h_attn = torch.sum(h_attn, dim=1).squeeze()\n", " # [batch, emb_dim] --> [batch, output_size]\n", " out = self.fc(self.dropout(h_attn))\n", " return out\n", " \n", " def attention(self, q, k, v):\n", " \"\"\"计算attention权重\"\"\"\n", " d_k = k.size(-1) # embed_dim\n", " # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\n", " scores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k)\n", " # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\n", " attn = F.softmax(scores, dim=-1)\n", " # 计算context值 \n", " # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\n", " attn_x = torch.matmul(attn, v)\n", " return attn_x \n", " \n", " @property\n", " def get_pe(self, max_len, embed_dim):\n", " pe = torch.zeros(max_len, embed_dim)\n", " position = torch.arange(0, max_len).unsqueeze(1)\n", " div_term = torch.exp(torch.arange(0, embed_dim, 2) *\n", " -(math.log(10000.0) / embed_dim))\n", " pe[:, 0::2] = torch.sin(position * div_term)\n", " pe[:, 1::2] = torch.cos(position * div_term)\n", " pe = pe.unsqueeze(0)\n", " return pe\n", " \n", " def get_embed_weight(self):\n", " \"\"\"获取embedding层参数\"\"\"\n", " return self.embedding.weight.data" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "模型有1,513,100个可调节参数, 大约5.7720184326171875 M.\n" ] } ], "source": [ "pos_model = MyAttentionModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\n", "print(f'模型有{count_parameters(pos_model):,}个可调节参数, 大约{count_parameters(pos_model)*4/1024/1024} M.')\n", "\n", "pos_model = pos_model.to(DEVICE)\n", "\n", "optimizer = optim.Adam(pos_model.parameters(), lr=LEARNING_RATE)\n", "criterion = nn.BCEWithLogitsLoss()" ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "***Save Best Model pos-attention-wordavg.pth***\n", "Epoch: 01 | Epoch Time: 0m 11s\n", "\tTrain Loss: 0.424 | Train Acc: 82.91%\n", "\t Val. Loss: 0.982 | Val. Acc: 78.24%\n", "Epoch: 02 | Epoch Time: 0m 11s\n", "\tTrain Loss: 0.520 | Train Acc: 86.70%\n", "\t Val. Loss: 1.653 | Val. Acc: 80.36%\n", "Epoch: 03 | Epoch Time: 0m 11s\n", "\tTrain Loss: 2.995 | Train Acc: 83.55%\n", "\t Val. Loss: 3.424 | Val. Acc: 72.43%\n", "Epoch: 04 | Epoch Time: 0m 10s\n", "\tTrain Loss: 0.534 | Train Acc: 89.54%\n", "\t Val. Loss: 1.370 | Val. Acc: 78.57%\n", "Epoch: 05 | Epoch Time: 0m 12s\n", "\tTrain Loss: 0.427 | Train Acc: 91.87%\n", "\t Val. Loss: 2.589 | Val. Acc: 72.21%\n" ] } ], "source": [ "pos_model_name = 'pos-attention-wordavg.pth'\n", "BEST_VALID_LOSS = float('inf')\n", "EPOCHS = 5\n", "\n", "for epoch in range(1, EPOCHS+1):\n", " start_time = time.time()\n", " train_loss, train_acc = train(pos_model, DEVICE, train_data, optimizer, criterion)\n", " valid_loss, valid_acc = evaluate(pos_model, DEVICE, eval_data, criterion)\n", " end_time = time.time()\n", "\n", " epoch_mins, epoch_secs = epoch_time(start_time, end_time)\n", " if valid_loss < BEST_VALID_LOSS:\n", " BEST_VALID_LOSS = valid_loss\n", " torch.save(pos_model, pos_model_name)\n", " print(f'***Save Best Model {pos_model_name}***')\n", " \n", " print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\n", " print(f'\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\n", " print(f'\\t Val. Loss: {valid_loss:.3f} | Val. Acc: {valid_acc*100:.2f}%')" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Loss: 1.033877345030768 | Test Acc: 0.7567869027455648\n" ] } ], "source": [ "pos_model = torch.load(pos_model_name)\n", "test_loss, test_acc = evaluate(pos_model, DEVICE, test_data, criterion)\n", "print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P006TheAnnotatedTransformer/model_transformer.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import copy\n", "import math\n", "import time\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import pdb\n", "import pickle\n", "\n", "import torch\n", "import torch.nn as nn\n", "import torch.nn.functional as F\n", "from torch.autograd import Variable" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "class EncoderDecoder(nn.Module):\n", " \"\"\"标准的Encoder-Decoder架构\"\"\"\n", " def __init__(self, encoder, decoder, src_embed, tgt_embed, generator):\n", " super(EncoderDecoder, self).__init__()\n", " self.encoder = encoder\n", " self.decoder = decoder\n", " self.src_embed = src_embed # 源序列embedding\n", " self.tgt_embed = tgt_embed # 目标序列embedding\n", " self.generator = generator # 生成目标单词的概率\n", " \n", " def forward(self, src, tgt, src_mask, tgt_mask):\n", " \"接收和处理原序列,目标序列,以及他们的mask\"\n", " return self.decode(self.encode(src, src_mask), src_mask,\n", " tgt, tgt_mask)\n", " \n", " def encode(self, src, src_mask):\n", " return self.encoder(self.src_embed(src), src_mask)\n", " \n", " def decode(self, memory, src_mask, tgt, tgt_mask):\n", " return self.decoder(self.tgt_embed(tgt), memory, src_mask, tgt_mask)\n", "\n", "\n", "class Generator(nn.Module):\n", " \"\"\"定义标准的linear+softmax生成步骤\"\"\"\n", " def __init__(self, d_model, vocab):\n", " super(Generator, self).__init__()\n", " self.proj = nn.Linear(d_model, vocab)\n", "\n", " def forward(self, x):\n", " return F.log_softmax(self.proj(x), dim=-1)\n", "\n", "\n", "# Encoder部分\n", "def clones(module, N):\n", " \"产生N个相同的层\"\n", " return nn.ModuleList([copy.deepcopy(module) for _ in range(N)])\n", "\n", "\n", "class Encoder(nn.Module):\n", " \"\"\"N层堆叠的Encoder\"\"\"\n", " def __init__(self, layer, N):\n", " super(Encoder, self).__init__()\n", " self.layers = clones(layer, N)\n", " self.norm = LayerNorm(layer.size)\n", " \n", " def forward(self, x, mask):\n", " \"每层layer依次通过输入序列与mask\"\n", " for layer in self.layers:\n", " x = layer(x, mask)\n", " return self.norm(x)\n", "\n", "class LayerNorm(nn.Module):\n", " \"\"\"构造一个layernorm模块\"\"\"\n", " def __init__(self, features, eps=1e-6):\n", " super(LayerNorm, self).__init__()\n", " self.a_2 = nn.Parameter(torch.ones(features))\n", " self.b_2 = nn.Parameter(torch.zeros(features))\n", " self.eps = eps\n", "\n", " def forward(self, x):\n", " \"Norm\"\n", " mean = x.mean(-1, keepdim=True)\n", " std = x.std(-1, keepdim=True)\n", " return self.a_2 * (x - mean) / (std + self.eps) + self.b_2\n", "\n", "\n", "class SublayerConnection(nn.Module):\n", " \"\"\"Add+Norm\"\"\"\n", " def __init__(self, size, dropout):\n", " super(SublayerConnection, self).__init__()\n", " self.norm = LayerNorm(size)\n", " self.dropout = nn.Dropout(dropout)\n", "\n", " def forward(self, x, sublayer):\n", " \"add norm\"\n", " return x + self.dropout(sublayer(self.norm(x)))\n", "\n", "class EncoderLayer(nn.Module):\n", " \"\"\"Encoder分为两层Self-Attn和Feed Forward\"\"\"\n", " def __init__(self, size, self_attn, feed_forward, dropout):\n", " super(EncoderLayer, self).__init__()\n", " self.self_attn = self_attn\n", " self.feed_forward = feed_forward\n", " self.sublayer = clones(SublayerConnection(size, dropout), 2)\n", " self.size = size\n", "\n", " def forward(self, x, mask):\n", " \"Self-Attn和Feed Forward\"\n", " x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, mask))\n", " return self.sublayer[1](x, self.feed_forward)\n", "\n", "\n", "# Decoder部分\n", "class Decoder(nn.Module):\n", " \"\"\"带mask功能的通用Decoder结构\"\"\"\n", " def __init__(self, layer, N):\n", " super(Decoder, self).__init__()\n", " self.layers = clones(layer, N)\n", " self.norm = LayerNorm(layer.size)\n", " \n", " def forward(self, x, memory, src_mask, tgt_mask):\n", " for layer in self.layers:\n", " x = layer(x, memory, src_mask, tgt_mask)\n", " return self.norm(x)\n", "\n", "\n", "class DecoderLayer(nn.Module):\n", " \"\"\"Decoder is made of self-attn, src-attn, and feed forward\"\"\"\n", " def __init__(self, size, self_attn, src_attn, feed_forward, dropout):\n", " super(DecoderLayer, self).__init__()\n", " self.size = size\n", " self.self_attn = self_attn\n", " self.src_attn = src_attn\n", " self.feed_forward = feed_forward\n", " self.sublayer = clones(SublayerConnection(size, dropout), 3)\n", " \n", " def forward(self, x, memory, src_mask, tgt_mask):\n", " \"将decoder的三个Sublayer串联起来\"\n", " m = memory\n", " x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, tgt_mask))\n", " x = self.sublayer[1](x, lambda x: self.src_attn(x, m, m, src_mask))\n", " return self.sublayer[2](x, self.feed_forward)\n", "\n", "def subsequent_mask(size):\n", " \"\"\"\n", " mask后续的位置,返回[size, size]尺寸下三角Tensor\n", " 对角线及其左下角全是1,右上角全是0\n", " \"\"\"\n", " attn_shape = (1, size, size)\n", " subsequent_mask = np.triu(np.ones(attn_shape), k=1).astype('uint8')\n", " return torch.from_numpy(subsequent_mask) == 0\n", "\n", "\n", "# Attention\n", "def attention(query, key, value, mask=None, dropout=None):\n", " \"计算Attention即点乘V\"\n", " d_k = query.size(-1)\n", " # [B, h, L, L]\n", " scores = torch.matmul(query, key.transpose(-2, -1)) \\\n", " / math.sqrt(d_k)\n", " if mask is not None:\n", " scores = scores.masked_fill(mask == 0, -1e9)\n", " p_attn = F.softmax(scores, dim = -1)\n", " if dropout is not None:\n", " p_attn = dropout(p_attn)\n", " return torch.matmul(p_attn, value), p_attn\n", "\n", "\n", "class MultiHeadedAttention(nn.Module):\n", " def __init__(self, h, d_model, dropout=0.1):\n", " \"Take in model size and number of heads.\"\n", " super(MultiHeadedAttention, self).__init__()\n", " assert d_model % h == 0\n", " self.d_k = d_model // h\n", " self.h = h\n", " self.linears = clones(nn.Linear(d_model, d_model), 4)\n", " self.attn = None\n", " self.dropout = nn.Dropout(p=dropout)\n", " \n", " def forward(self, query, key, value, mask=None):\n", " \"\"\"\n", " 实现MultiHeadedAttention。\n", " 输入的q,k,v是形状 [batch, L, d_model]。\n", " 输出的x 的形状同上。\n", " \"\"\"\n", " if mask is not None:\n", " # Same mask applied to all h heads.\n", " mask = mask.unsqueeze(1)\n", " nbatches = query.size(0)\n", " \n", " # 1) 这一步qkv变化:[batch, L, d_model] ->[batch, h, L, d_model/h] \n", " query, key, value = \\\n", " [l(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2)\n", " for l, x in zip(self.linears, (query, key, value))]\n", " \n", " # 2) 计算注意力attn 得到attn*v 与attn\n", " # qkv :[batch, h, L, d_model/h] -->x:[b, h, L, d_model/h], attn[b, h, L, L]\n", " x, self.attn = attention(query, key, value, mask=mask, dropout=self.dropout)\n", " # 3) 上一步的结果合并在一起还原成原始输入序列的形状\n", " x = x.transpose(1, 2).contiguous().view(nbatches, -1, self.h * self.d_k)\n", " # 最后再过一个线性层\n", " return self.linears[-1](x)\n", "\n", " \n", "# Position-wise Feed-Forward Networks\n", "class PositionwiseFeedForward(nn.Module):\n", " \"实现FFN函数\"\n", " def __init__(self, d_model, d_ff, dropout=0.1):\n", " super(PositionwiseFeedForward, self).__init__()\n", " self.w_1 = nn.Linear(d_model, d_ff)\n", " self.w_2 = nn.Linear(d_ff, d_model)\n", " self.dropout = nn.Dropout(dropout)\n", "\n", " def forward(self, x):\n", " return self.w_2(self.dropout(F.relu(self.w_1(x))))\n", "\n", "# Embeddings\n", "class Embeddings(nn.Module):\n", " def __init__(self, d_model, vocab):\n", " super(Embeddings, self).__init__()\n", " self.lut = nn.Embedding(vocab, d_model)\n", " self.d_model = d_model #表示embedding的维度\n", "\n", " def forward(self, x):\n", " return self.lut(x) * math.sqrt(self.d_model)\n", "\n", "\n", "# Positional Encoding\n", "class PositionalEncoding(nn.Module):\n", " \"实现PE功能\"\n", " def __init__(self, d_model, dropout, max_len=5000):\n", " super(PositionalEncoding, self).__init__()\n", " self.dropout = nn.Dropout(p=dropout)\n", " \n", " pe = torch.zeros(max_len, d_model)\n", " position = torch.arange(0., max_len).unsqueeze(1)\n", " div_term = torch.exp(torch.arange(0., d_model, 2) *\n", " -(math.log(10000.0) / d_model))\n", " \n", " pe[:, 0::2] = torch.sin(position * div_term) # 偶数列\n", " pe[:, 1::2] = torch.cos(position * div_term) # 奇数列\n", " pe = pe.unsqueeze(0) # [1, max_len, d_model]\n", " self.register_buffer('pe', pe)\n", " \n", " def forward(self, x):\n", " x = x + Variable(self.pe[:, :x.size(1)], requires_grad=False)\n", " return self.dropout(x)\n", "\n", "\n", "# 定义一个接受超参数并生成完整模型的函数\n", "def make_model(src_vocab, tgt_vocab, N=6, d_model=512, d_ff=2048, h=8, dropout=0.1):\n", " \"根据输入的超参数构建一个模型\"\n", " c = copy.deepcopy\n", " attn = MultiHeadedAttention(h, d_model)\n", " ff = PositionwiseFeedForward(d_model, d_ff, dropout)\n", " \n", " position = PositionalEncoding(d_model, dropout)\n", " model = EncoderDecoder(\n", " Encoder(EncoderLayer(d_model, c(attn), c(ff), dropout), N),\n", " Decoder(DecoderLayer(d_model, c(attn), c(attn), \n", " c(ff), dropout), N),\n", " nn.Sequential(Embeddings(d_model, src_vocab), c(position)),\n", " nn.Sequential(Embeddings(d_model, tgt_vocab), c(position)),\n", " Generator(d_model, tgt_vocab))\n", " \n", " # 使用xavier初始化参数,这个很重要\n", " for p in model.parameters():\n", " if p.dim() > 1:\n", " nn.init.xavier_uniform_(p)\n", " return model" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([16, 50, 512])" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 测试MultiHeadedAttention的过程\n", "batch_size=16\n", "L = 50 # 序列长度\n", "d_model = 512 # 词向量维度\n", "h = 8\n", "x = torch.randn(batch_size, L, d_model) # 生层一个测试序列x\n", "x.size()" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# 测试MultiHeadedAttention的过程\n", "obj = MultiHeadedAttention(8, 512)\n", "q = torch.randn(2,10, 512) # 序列输入x\n", "line_net = clones(nn.Linear(512, 512), 4)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "linear: Linear(in_features=512, out_features=512, bias=True)\n", "x torch.Size([2, 10, 512])\n", "torch.Size([2, 10, 512])\n", "torch.Size([2, 10, 8, 64])\n", "torch.Size([2, 8, 10, 64])\n", "----------\n", "linear: Linear(in_features=512, out_features=512, bias=True)\n", "x torch.Size([2, 10, 512])\n", "torch.Size([2, 10, 512])\n", "torch.Size([2, 10, 8, 64])\n", "torch.Size([2, 8, 10, 64])\n", "----------\n", "linear: Linear(in_features=512, out_features=512, bias=True)\n", "x torch.Size([2, 10, 512])\n", "torch.Size([2, 10, 512])\n", "torch.Size([2, 10, 8, 64])\n", "torch.Size([2, 8, 10, 64])\n", "----------\n" ] } ], "source": [ "for l,x in zip(line_net, (q, q, q)):\n", " print(\"linear:\", l)\n", " print(\"x\", x.size())\n", " out = l(x)\n", " print(out.size())\n", " print(out.view(2, -1, 8, 64).size())\n", " print(out.view(2, -1, 8, 64).transpose(1,2).size())\n", " print(\"--\" * 5)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "torch.Size([2, 8, 10, 64]) torch.Size([2, 8, 64, 10])\n", "d_k: 64\n", "soc: torch.Size([2, 8, 10, 10])\n", "attn size: torch.Size([2, 8, 10, 10])\n", "torch.Size([2, 8, 10, 64])\n", "torch.Size([2, 10, 512])\n" ] } ], "source": [ "q, k, v = [l(x).view(2, -1, 8, 64).transpose(1,2) for l,x in zip(line_net, (q, q, q))]\n", "print(k.size(), k.transpose(-2, -1).size())\n", "d_k = d_model//h\n", "print(\"d_k:\", d_k)\n", "scores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k)\n", "print(\"soc:\", scores.size())\n", "attn = F.softmax(scores, dim = -1)\n", "print(\"attn size: \", attn.size())\n", "r_x = torch.matmul(attn, v)\n", "print(r_x.size())\n", "\n", "out = r_x.transpose(1, 2).contiguous().view(2, -1, 8 * 64)\n", "print(out.size()) # [2, 10, 512]" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "# obj.forward(x,x,x,mask=None)\n", "# X是一个序列,X的Embedding + posEmbedding 输入Encoder,这个输入我们称为 X_emb_pos\n", "# Encoder有6个子结构串行,第一个的输出结果,作为第二个的输入,以此类推得到最后一个子结构的输出。\n", "# 第一个子结构接受输入X_emb_pos 后,按照维度平均拆分成8个,比如如果X_emb_pos的维度是512 ,拆分后的维度就是512/8=64维。\n", "# 这8个tensor 分别做self-attention,这个部分是8个一起并行的 ,然后得到8个结果再合并在一起,进行Norm ,norm之后再输入FFN,之后再经过norm之后输入下一个子结构。\n" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAA3wAAAEyCAYAAACh2dIXAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3XV0FefWwOHfnLh7QoiQBHd3t+LuDqWFFiq3XqqUW6hQ2lKseCktbsUpVtwtSIC4AnG3I/P9MZSP3iIBjiW8z1pZCTlzZnZCcjL7lb0lWZYRBEEQBEEQBEEQyh6VqQMQBEEQBEEQBEEQDEMkfIIgCIIgCIIgCGWUSPgEQRAEQRAEQRDKKJHwCYIgCIIgCIIglFEi4RMEQRAEQRAEQSijRMInCIIgCIIgCIJQRomETxAEQRAEQRAEoYwSCZ8gCIIgCIIgCEIZJRI+QRAEQRAEQRCEMsrS1AE8DU9PTzkoKMjUYQiCIAiCIAiCIJjEuXPnUmVZ9nrccaUy4QsKCuLs2bOmDkMQBEEQBEEQBMEkJEmKLclxYkmnIAiCIAiCIAhCGSUSPkEQBEEQBEEQhDJKJHyCIAiCIAiCIAhllEj4BEEQBEEQBEEQyiiR8AmCIAiCIAiCIJRRIuETBEEQBEEQBEEoo0TCJwiCIAiCIAiCUEbpJeGTJGmZJEnJkiRdecjjkiRJP0mSFCFJUqgkSQ3ue2yMJEnhd9/G6CMeQRAEQRAEQRAEQX8zfL8AXR/xeDeg8t23CcACAEmS3IHPgaZAE+BzSZLc9BSTIAiCIAiCIAjCc81SHyeRZfmwJElBjzikD/CrLMsycFKSJFdJknyBdsBeWZbTASRJ2ouSOK7WR1zGlDXvY2SVLZJ3ZVQunkg2NkjWNqhsrJWPbW2xdHdH5eyMJEmmDtekCoq1RKbkEpWah5+rLbX9XLG2FKuLzVW+Op+0wjSyi7Ip0hah1qlR69QUa4vvvdfoNADYWdpha2mrvFnY/v+/LWxxs3XD2sLaxF+N8ECyDOp8KMyGomxQWYJ7CDznr1WPotXJqLW6u28y9tYW2FpZmDosQXi+ZMRCzi2w9wQHT7B1Ea9bj6DW6rgQl0mhWoufmx1+rnbidesB5OJitNnZaLOy7r1Z+flhW6WKqUN7anpJ+ErAD4i/798Jdz/3sM//iyRJE1BmBwkMDDRMlE9LlklethFN3uNfZCRrayw9PbH08sLS2wuLux9b+ZTDOiQYm5AQLFxcjBC04RVrdNy4ncPNOzmEJ+cSfvd9fEY+svz/x9lYqqgX4EqTYHcaB7nToIIbjjbG+tF8vuWr84nOjiYmK4a47DiSC5JJL0gnrTCNtII00grTKNAU6O16bjZueNl74W3vjbe9N152ysflHMoR7ByMn5MfKkkk/waj08KNnXD+V+Um6e8ErygH7ibt93hWhVoDlDfPSqaJ1wxEpuSy8kQsOy/fIr9Yey/J08n/PM7WSkW3Wr4MauhPsxAPVCpx0ykIeifLkHwNwrZB2Ha4c/mfj6uslMTPwRMcvJS3qt2hem9QPZ9/WxIy8jl0M4VDN1I4HplGbtE/X+s9Ha3xc7W7lwAGutvTvbYvHo42JorYsLS5eagTE1DHx1Mcf/d9Qjya5JR7yZ2cn/+v53m8NB7bd981QcT6Icmy/PijSnIiZYZvuyzLtR7w2A7gK1mWj979937gfaADYCPL8pd3P/8pkC/L8qxHXatRo0by2bNn9RK3vmgSo9HFX0JOvIycdBX51nV0GYnIOglZK6Gz9kJTrjUa22C0aWloUlLuvqWizcz8x7ksPD2xCQnBumIINsHKe9tq1bD08DDRV/dkdDqZbaFJfLPrOklZhQBYWUgEezpQ2ceJyt6OVPZ2ItjTgbj0PE5HZ3AmJp2rSVnoZFBJUKO8My0qejKhTQieZfRFx5hyi3O5knaFiIwIYrJjiM5SkrzkguR7x0hIuNm64W7rjoedBx62HnjYeSj/tvW4N0NnpbLCSmV17+O/3+tkHUXaIgo1hRRoCijUFlKkKaJAW0C+Op/0wnRS8lNIzk8muSCZlPwU0grT0Mm6ezHYWtgS7BJMiGsIlVwrEeKivPdz9MNCJUYhn5q6EC6thhNzIS0CXALBpwbYOIOt8/+8d4H8dLi2BWKPAzL41lUSv5r9wTXA1F+NwWl1MgevJ7PiRAxHwlOxspB4oUY5fJxtsbKUsLZQYalS3fexRHhyLlsvJZFTqMHfzY4BDfwZ2NCfAHd7U385glC66XSQcAau303yMqIBCQKaQvVe4F1Nec3KS7nvLVV5nxkPecnKAFbrd5TXMYuyPaCs1uo4EZnGoZsp/HUjmciUPAD8XO1oW9WLNpW9cLO3IjGzgMSMAuX9fR8XaXTYW1swvlUwL7UOwcXOysRf0dPRFRVRdPMmhVevUXjtGkU3blAcH482Pf0fx6mcnLAOCMDSxwcLV1csXFywcHFG5eJy92NXLFycsfL1xdLT00RfzcNJknROluVGjz3OSAnfQuAvWZZX3/33DZTlnO2AdrIsT3zQcQ9jjgnfAxVmwa1LkHRRGVWPO6HcOPX4Hvz///9GV1yM5tYtiqKiKI6KUt5HKu912dn3jrMKDMSubl3s6tXFrl49bKtWRbI0rxeuszHp/HdHGJfiM6nl58yENhWp4etEBQ8HrCwePbqWW6ThQlwGZ6LTOROTwdnYdBxsLPm4e3UGNvR/7pfClpRGpyEyM5LQ1FAup1wmNCWUqKwoZJTfdSdrJ4KdgwlyCSLIOYhgl2CCnIMIcA7AxsK4ybVGpyGtII1bebeIyooiMjNSecuK5Hbe7XvH2VvaU8erDvW961PPqx51vOrgaO1o1FhLpfx0OLsUTi1Sbnp860HLN5XR7pLc9GQlKonflY2QeE75XEBTaDpRuXEqYzLzi1l3Np6VJ2OJTy/Ax9mGkU0rMLRJIF5Oj//dKFRr2XP1NuvPJnAsMhVZhhYVPRjUyJ9utXzF0ilBeBKyDBdXwf5pkHtbmb0LaQvVeiqzdk4+jz+HTqu8hh3+TpkZdAuG1m9DnaFgWfa2GITdyuaddZe4disba0sVzUI8aFvFi7ZVvKjo5fDY+yhZlglPzmX2/nB2hN7Cxc6KiW1DGNsiCHtr87rfvJ+sVlN49SoFV65SeO0ahVevUhQZCRplNlPl4oJttWpYV6iAVYA/1gEBWPkHYB3gX+pX1ZlbwtcDeA3ojlKg5SdZlpvcLdpyDvi7aud5oOHfe/oeptQkfPeTZeWm6c9PlKVU9UdBp6nKsoOHPkVGm5ZGUUSk8oN88SIFFy+iSUkBQLKzw65WLezq18eheTPsGjZEZW2aF7D49Hy+3n2dHaG38HG24b0u1ehf3++ZljVFJOcwZdNlzsRk0DzEgxn9axPs6aDHqMsGrU7L5dTLHE86zpnbZ7iadvXeMkxXG1dqe9amtldt6njWoap7VTxsPUpF8pxbnHsvCbyadpWLyRcJzwxHJ+uQkKjsVllJAL3r0bRcU7zsvUwdsvnISoDjc5Wlm+o8qNRJSfSCWj/9/pb0aLi6CULXQcp1qDscus8Em9KfeBeqtXy96zprzsRRqNbRJNidMc2DeKGmz2MHqh4mMbOAjecS2HAugbj0fKr4OLJgZEMqepX+75cgGFx+Omx/S0nWAptDo/FQ5QVlBcLT0Ong5i449C3cugjO/tDqP8q9mJWtfmM3AY1Wx8LDUfy47yYudtZ81qsGnav7YGf99INMV5OymPXnTQ5cT8bT0YbJ7SsyvGkgNpamH7iSdTqKrl8n7+Qp8k6dpODMWXR3l2FauLtjW7MmtjVrYFujBrY1amLlV75U3Pc8DaMmfJIkrUaZrfME7qBU3rQCkGX5Z0n5Ls9FKciSD4yTZfns3ee+CHx091TTZVle/rjrlcqE729FOXDoGzi5AKwdoeOn0HAclHC5mizLaJKSyL94kYKLlyi4eJHCsDDQaJDs7XFo1gzH1q1waN0Ga/8HbofUq5xCNfMORrLsWDQqCSa2qcjEtiF6GwnS6WTWnInnq11hFGl0vNmxMhPahDz1TVhZcTvvNscSj3Es6Rgnb50kpzgHCYkaHjWo61X3XoIX4BRQpl7kcotzCU0N5VLyJS4kXyA0NZQ8tbJcpbp7dVr7t6a1X2tqe9Z+fpeARh6EdWOURK/WQGjxOpT71zjc09Nq4PC3yo2TRyUYtBzK1dbf+Y3sVlYBE1eeIzQhi8GN/BnbIpga5Z31dn6dTubA9WTe3xhKkVrLzEF16V7bV2/nF4QyJ/owbH4Fcu9Ah0+V1zB9vZ7LMkTsV17D4k+Bky8MWgGBTfVzfhOISM7lnfWXuBSfSc86vkzrUwt3B/0N/p+LTWfmnhucjErHz9WOtzpXYUADP6PfWxTHxZF79Cj5J0+Rf+oU2qwsAKyDg3Fo3gz7Jk2xq18PS2/vMnXf8zhGn+EzplKd8P0t+Trsek95YXvAMs8nocvLI+/UaXKPHCbv8BHUiYmA8kvg2KY1jm3bYt+kid6Xfx4JT+E/ay6SlldM/wZ+vNelKr4udnq9xt+SswuZuu0qOy/fpqqPE18NqE2DwOeng4dO1hGaEsre2L0cTTxKVFYUAN523rTwa0HL8i1p5tsMV1tXE0dqXFqdlvDMcI4mHuVIwhEupVxCK2txtXGlpV9LWvu1pmX5ls/P9+XcL7D9bfCqCkN/VyptGkr0Ydj4MhRkQJfp0PilUlcd71xsOhNXnqegWMOPQ+vTuUYJlog9paTMAiavOs+FuExebBnMlO7VnvuBK0H4B00xHJwOx2aDR0UYsATK1zfMtWQZYo7AtjeVpesDFkONPoa5loFodTLLj0Uzc88N7K0t+G/fWvSsU94g15JlmWMRacz88waX4jMZ2yKIz3rWMGhxKlmWKbp5k5y9+8jZu5eiGzcAsCzvi0Oz5jg0a4p906ZY+Rjudbs0EAlfaSDLyhKpPR8rm4sHLIWafZ/xlDLF0THkHTlM7uEj5J85g1xcjIWbG05du+DSvTt2DRsiPWO1qt1XbvPG6guEeDnw7cA61PE3zg313mt3+OyPK9zOLmRC6xA+6FqtzFbDk2WZq2lX2R29mz2xe7iddxsrlRWNfBrR0q8lLcq3oJJrpedqJOtxsoqyOJF0giOJRziaeJT0wnQsJAua+Taje0h3OgR0KJt7/3Ra2PuZUpSlUicYuFwpwmJouSmw5RWI2KcUT+g9B+xKx0DMujPxfLLlCr6utiwe3YgqPk4Gv2axRseMnWH8cjyGRhXcmDu8AeVcSv9yMkF4ZqnhsHG8Uveg4VjoMgOsjbCFIy8N1gyD+NPKwFWzSaVi4Co2LY9311/iTEwGnar7MKN/LbydDP9aotPJfLkjjGXHoulVtzyzBtXVa1stWaejMDSU7L17ydm7D3VcHEgSdg0b4Ny5M47t22MVULZWLj0rkfCVJoVZ8PtgpQrVgMV6LYagKygg9+hRsnfuJPfgX8iFhVj6+ODcrRvOPbpjW6vWE//ibL6QwLvrQ6nt58KKcU1wsTduBaecQjUzdl5n9ek4RjWrwLQ+NcvML78sy1xPv87umN3sidlDYm4ilipLWpZvSZegLrQPaF82ExYD0Mk6rqZe5UD8AXZF7yIxNxEbCxva+LehR3APWvm3MnqRGoMoyoVNLyuFoZpMgC5fGbcKnU6nJJr7vwCn8jBwKQQ0Md71n5Baq2P6DiXpal3ZkznD6uNqb9y9z1svJfHhxlDsrS34aVh9WlQ0v8pvgmA051bA7g/B0lYZNKre07jXVxfApgkQthWaTISuX+lvCakBHI9M5aUVZ7FQSUztVZP+Rl5eKcsyPx+K4pvd12lVyZOfRzV85lZaReHhZG7aTPaOHWiSk8HKCodmzXDq3AmnDh3MsjqmuRAJX2lTlAurBiuVPPsthDqD9X4JXV4eOQf/UpK/I0dArcYqIACX3r1xHTgAK9/H7yv5/VQsn2y5QrNgDxaPaWSyfnmyLPP1russPBzF2BZBfN6rRqlO+jIKM9gauZWN4RuJzorGUrKkafmmdA3qSvuA9rjYlO4qUqYmyzKXUi6xM3one2L2kF6YjpOVE50qdKJXxV408mlUOn9+shJh9RC4cxW6fq1UzzSVhLOwYZwSU7+fDfIa9qwy8oqZvOo8xyPTGN8qmCndqmFpomWV4XdyeOW3c0Sn5vFul6q82rZi6fwZFIRncfJn2P0BhLSDvj+Ds4n2t+p0sPdTZfCqag9lOam1+bVUOR+Xwcglp/B3s2PFi00Mto2mJNadjWfKpsvULO/MsrGNn7iFljY7m+ydO8ncuInCy5fB0hLHtm1x7toFx7ZtsXA2wiqVMkAkfKVRcR6sGgIxR6HvfKg33GCX0mZlkbNvH9k7dpB34iRIEo7t2uE2ZDAOrVohWfx7dGvx4Sim7wyjQzVv5o9oYPIS47KsLC1YejSa8a2C+aRH9VJ1wyTLMmfvnGX9zfXsi92HWqemnlc9+lTqQ6fATs/PvjMj0+g0nLp1ip3RO9kXu498TT7BLsEMrjKY3pV642xdSv7IJF2A1cOUwaKBy5QKdqZWkAlrRyoDV8PXKstLzcTNOzmMX3GGO9lFzOhXm4EN/U0dErlFGj7YGMqO0Fu82q4iH3StZuqQBMF4QtcpqxOq91IKp5jDrNqphbDrA/BrAMPWgqP5VH8Ou5XNkIUncHOwZv3E5ng7m345+P6wO0xedR5fFzt+fbHJY/uOyjodeSdOkLVpMzn79iEXFWFTpQou/fvh0qtXqek3bU5EwldaFecr68mjDkHvn6DBaMNfMiGBzHXrydy4EW1aGlbly+M6eDCuA/pj6eWFLMv8uC+c2fvD6VHblx+G1NPrmu1nIcsyX2y7xi/HY5jYJoQPu1Uz+6QvvTCdrRFb2RC+gdjsWJysnehdsTcDKg+gsltlU4f3XCnUFPJn7J+svb6W0NRQbC1s6RbcjSFVh1DTs6apw3u4yAOwZgTYeyiJlY8ZxVqYDcu7Q3oUjN2u3DiZ2K2sAvrMPYYMLBrVkPpmVPBJlmU+2nyF1afjmNGvNsObBpo6JEEwvJt/Kvc6gc1hxAbzao1wfQdsGA+O3jByI3ia/u9yZEouQxaewMpCxfpXmuPvZj6zj+di03nxl7NYW6pYMa7JA6sca7OyyNywgYzfV6FOSkLl7IxLzx649B+Abc3SvULL1ETCV5qpC5RR8oh90PMHaPSiUS4rFxeTc+AAGWvXkn/iJFha4tSxA9sqteGbRFsGNfTn6wF1sDCzIimyLPPZH1dZeTKWSe0q8l6Xqmb54nEj/QYrrq5gV8wuNDoNDbwbMLDKQDpX6IytpRn9sXtOhaWFsfbGWnZG76RAU0BNj5oMqTqEbsHdzOv/J+UmLOkIroEwclPJmg8bW85tWNpZGcAa/6dScc9E8oo0DPr5BHHp+Wx8tQVVyxm+OMuT0mh1vPzrWQ6Hp7JkdCPaV/M2dUiCYDhxJ+HXvuBVBcZsN06BqSeVcFZZcSWpYMJf4GL4NlcPDSUjn0E/n0Ct1bFuYnNCzLCXZ/idHEYvO01uoYYlYxrRNESZqSuKiibjt5Vkbt6CXFCAfePGuA0bimPHjqhsysAeejMgEr7STl0I60ZD+B7o/h00edmoly+OiSFj3TpurV6PTUEuqRWqUufd13Du2OGZK3wagk4n88kfV1h1Ko43OlTi7ReqmjokQElGT9w6wYqrKziedBw7Szv6V+7PoCqDqOhquptg4eFyinPYFrmNdTfWEZkVibutOyOqj2BI1SGm30tZkAGLO0JRNrx8EFwDTBvPo6RGwLIXlH6j4/eaJDHV6WQm/naO/WF3WDqmsVknUnlFGgYvPEF0ah7rJjanlp/YtyuUQXeuwvJu4OAF43ab1ZLJf0kOgyWdwLMKjNtlklnI5OxCBi08QUZeMWsmNNdrj1B9S8osYNTSU6RkF7KluTVWm9eRe+gQkpUVzj174j56FLbVq5s6zDJHJHxlgaYI1o+DGzugxyylz5URLT4cxXdbLzHNJpqGJ3eiTkzEOjgYj/Ev4ty7Nypr41a2exydTmbKpsusPRvPW52q8GYn0y3DUOvU7InZw4qrK7iefh1PO09GVB/BoCqDTJ80CCXy9x7L5VeWcyTxCPaW9gyqMohRNUbh42CCWTWtBn4fADHHlKWSgc2MH8OTSjgLK3opDdrH7QQb486ufbUrjIWHovi8Vw3GtQw26rWfxp3sQvrPP06xVsfmSS3MatmWIDyzjBhY2kWZNRu/R1mlYO7CtsPaEVB3uFJbwYirhzLyihmy6AQJGQX89lJTs+89LKvVRK/eSMS8hQRk3Ubl7o778OG4DR0iqmwakEj4ygpNMawbpSzvHLcbAhob5bJnYtIZuugknav7sGBkA9Bqyd6zh7SlSym6FoallxfuY0bjOmQIFk7ms0RKp5N5f2MoG84lmOQmL1+dz4abG1gZtpLbebcJcQlhbM2x9AjpgbWFeSXIQsndSL/BsivL2B2zG5WkonfF3oytOZZgFyP+fO36EE4tgN5zocEo4133Wd38E1YPheDWMHw9WBrn92DdmXje3xjKyGaB/LfPk7efMZWbd3IYsOA45Zxt2fBqC1zsjNv2RhAMIjcZlr6grFJ4cTd4l6KZnoNfwaGvodu3RquEnFOoZsSSU1y/ncMv4xqbdesWubiYzD/+IG3hItQJCaiDKjLHvRFO3bsza0TjUvPaW1qJhK8sKciEha1BBl45bPDGxqm5RfT46Qi2VhZse70Vzrb/f8MhyzJ5x4+TvnQpecdPoHJ0xH3cWNzHjMHC0TzWlWt1Mq/8do6/biSz8dUWRmkKX6QtYt2NdSy5vIT0wnQa+jRkXM1xtPZvjUoyvyWwwtOJz4lnxdUVbInYQrG2mE4VOvFK3Veo4lbFsBc+/ytsfR2avgrdvjbstQzhwu/wxySoPQj6LQIDLws/EZnGqKWnaF7Rg2VjG2NlotYLT+t4RCpjlp+mUQV3VrzYxGyKZAnCUynMgl96QFokjN5qtIFrvdHplLoKN3fD6C0Q3Magl9NodYxaepozMeksGt2QDtXMcJ82dxO9TZtJW7QIdVIStrVq4Tl5Eo7t2jH3QASz9t5kaq8ajC0FqytKM5HwlTUJ55T9MJW7wNDfDbasQKuTGbPsNKdj0tk8qQU1yz98+WHB1aukLlhA7r79WLi64vHyS7gNH47KznR9Yf6WmV9M99lHsLZUsf2N1gbrF6jWqtkUvolFlxeRnJ9Mk3JNmFxvMg18TF+ZUDCctII0fg/7nTXX15CrzqVbcDcm15tMoLMBlijFnlCWRQa1UqrZGbOpuj4dmQX7p0Hz16DLdINdJjo1j37zj+HhYM2mSS1L7QzZpvMJvL3uEv3r+zFrcF0xSi6UTjqdshQ9+rDS5qCy+bRqeSKF2cp+vrwUpYiLWwWDXWrO/nBm7b3JzIF1GNTI/PZp64qLydq4kdRFi9HcuoVt3Tp4TZ6MQ+vW916ndDqZCSvP8teNFFZPaEbjIHcTR112iYSvLDo+F/78WGmw3OxVg1zi+703+Wl/ON8MqM2QxiW7eS24fIWU2bPJO3oUCy9PPCe+guvgQSbf43c6Op2hi07Qp54fPwypp9dzq3VqtkVuY+GlhSTlJVHfuz6v1XuNJr5N9HodwbxlFWWx/Mpyfg/7HbVOTb/K/ZhYZyLlHMrp5wKZcbCoPdi6wMv7DT67b1CyDLveh9OLlJ5bNfvq/RJZ+Wr6zT9GRn4xWya3pIKHg96vYUx/3/iZUyEqQXgifzdW7/E9NB5v6mieTWoELO4AboHw4p8Gacx+IS6DgT+foGcdX2YPra/38z8LWaMhc9MmUucvQHP7Nnb16uE5eTIOrVo+cEAqu1BNn7nHyC3SsP31VviYQd/AskgkfGWRLCuNliP2KaXO9dzf6vDNFMYsP03/+v58N6jOE48o5589S8qPs8k/exbL8r54TZ6MS58+SJamm5H4cd9NftwXzqxBdRmgh0bLOlnHzuidzL84n/iceGp51OK1+q/RonwLMQL/HEvJT2Hx5cWsv7keFSqGVhvK+Nrjcbd9hlHN4jylwEFmLLy0XylhXtpp1co+nowYmHRSr5U71VodY5ef5nR0Or+/1IwmwaV/RFmWZd7fEMr6cwmseqkpLSqZ7z4eQfiX5OuwqC0Et1X6hZaFv5Hhe+H3QVCrPwxYqtevKbdIQ4+fjqDRyux8s7XZrE6QZZncv/4iedYsiiMisatbF883XsehxePve27czqHvvGPUKO/M6pebieXpBiASvrIqPx1+bq0s65p4WBn514OkzAJ6/HQEH2dbNk9qiZ21xVOdR5Zl8o4dJ2X2bAovX8Y6OBifDz/AsW1bvcT5pLQ6mWGLT3IlMYvtr7d6pv41F5Iv8O3pb7mSdoWqblWZXG8y7QLaiURPuCcxN5EFFxewLWobtha2jKk5hrE1x2Jv9YQjwbKstGW5vh2Gr4PKnQ0TsCmk3FT2JIe0g2Fr9HbD9PfqBH0N7piLgmIt3X86QrFGx5632hhsebog6JWmGJZ2gqwEePWEefYLfVpHvof9X0DnadDyTb2d9v0Nl9hwLoE1E5qbzYBVweUrJM+cSf7p01hXqIDXO2/j1LnzE933bLuUxOurLzCmeQW+6FPLgNE+n0qa8IlUu7Sxd4eByyAzXinioIeEXa3V8dqq8xRrdMwb0eCpkz0ASZJwbNWSoHVr8Z87B3Q64ie+QtzLEyiKjHzmWJ+UhUpi9tB6WFuqeGPNBYo02ic+R2JuIu8eepfRu0aTnJ/M9FbTWddrHe0D24tkT/gHP0c/vmz1JZt7b6alX0sWXFpA7y292RG1gycaXDv3C4RthU5flK1kD5SZyo6fKwUQLvyml1NeS8pm/sEI+tf3K1PJHoCdtQXfDapDUlYBM3aGmTocQSiZQ9/ArUvQa3bZSvYAWr0FNfvBvqkQeUAvp9x5+RbrziYwqV0ls0j2ihMSSXznXWIGDaIoPByfTz8hZPs2nF944Ynve3rVLc9LrYJZcSKWTecTDBSx8Dhihq+0Ovoj7PtcL03Z/7v9GkuPRjN3eH161imvpwAVcnEx6atWkTpvPrr8fNyGDcPrtclYuBq+cub9/rw8Fjg/AAAgAElEQVR6mwkrzzG+VTCf9qxRoufkFuey5PISVl5biUpSMa7WuKebrRGeW+fvnOfr018Tlh5GPa96fNjkQ2p61nz0k7KTYF5T8K0LY7aVjWVQ/0ung197Q9JFePXYMxVAUGt19J13jDvZhex9qy1uDmWz/cmMnWEsOhzFry82oU0VM25WLQhxp2B517u96+aZOhrDKM5T9vMV5cDkU8/UY/RWVgFdfzxCkIc9G15tYdKqwtqcHFIX/EzGypWgUuE+diweL7/0zFXYNVodI5ac4mJ8Jlsmt6S6r/k2kC9txAxfWdfiDajUGfZ8pIyiPaXdV26x9Gg0Y1sE6T3ZA5CsrfEYO5aKe3bjOngQGatWEdGlK+krf0NWq/V+vYd5oWY5xjSvwNKj0Ry8nvzIY7U6LRtubqDH5h4svbKULkFd2NZvG5PqTRLJnvBEGvg0YHWP1UxrMY24nDiG7RjGp8c+JbUg9cFPkGXY8S5oi5WR8bKY7IHSlqHP3RvBLZOUBPApLTocxdWkbP7bp1aZTfYA3u5chYpeDny4MZTsQuO9dgrCEynKhc0TwMUfun5l6mgMx9pB6YmanQQHvnzq0+h0Mm+vvYRaq+PHofVNluzJskzWtm1Edu9O+vLlOPfsScU9u/F+6z96abllaaFi7vAGONla8sHGULS60jfZVNqJhK+0Uqmg30Kw94T1Y5WSwU8oI6+YKZsuU9ffhY+6G7YJqqW7O76ff07wls3Y1azBnenTierbj7wTJwx63ftN6V6dauWceHf9JZKzCx94zJXUKwzbMYwvTnxBBecKrO6xmhmtZ+iv6qLw3LFQWdCvcj929NvB2Jpj2R61nZ6be7LsyjKKtcX/PPjaH3BjB7SbAh4VTROwsbhVUG4IY4/CqZ+f6hQRyTnM3hdO99rl6FbbV88BmhdbKwu+G1SX29mFzNghlnYKZmrPR5ARq9yf2JbxWZyAxsoKq1MLIeHpVp0tPhLFiag0Pu9Vg2BP01QVLrx5k7hRo0l6732sfMoRtG4t5b+agVU5/d73eDnZ8GnPGoQmZPHbyVi9nlt4PJHwlWYOHjBwqVLx7ilGmL7dc53sQg3fDKxjtMpJtlWqELB0Kf7z5yNr1MSNe5HE999Hk5Zm+GtbWTB3eH3yi7W8te4iuvtGmHKKc5h+cjrDdwwntSCVmW1msqLrCmp5ig3Ggn44WjvydqO32dJnC419GvPDuR8YsHUAZ26fUQ7IT4ed7ylLOZu/ZtpgjaX+SKjSVSmAkHLziZ6q1SkVLO1tLPii9/Pxe1o/0I2JbSuy5kw8f9149EoFQTC6G7vg/AqlkEmFFqaOxjg6fApOvrD1DaUK8RO4kpjFd3/eoGvNcgw2Qb89bW4ed775luh+/SkKD6fcF18QtHYNdrVrG+yaveuWp3VlT2buucHtrAcPvAuGIRK+0q5CC2g0Hs4shluhJX7a+bgMVp+O58WWQVQrZ9xROEmScOrQnpCtW/GcNInsXbuJ7N6DjPXrkZ9haVdJVPJ2YmrvGhyLSGP1mThkWWZ39G56b+nNupvrGFZtGFv7bqVrcFdRkEUwiArOFZjTcQ4LOi1ArVPz4p4X+ezYZ2Tt/hDy05RlQqW1ufqTkiTo9RNY2SvLwJ7ghumX4zGcj8tkaq+aeDnZGDBI8/KfTpWp4uPIhxsvk1UglnYKZiI3RSkk51Mb2n9k6miMx9YZesyC5KtwfE6Jn1ZQrOXNNRdwd7Dmq/61jXq/IcsyWTt2ENW9O+m//IJr//6E7N6F25DBSBZPX7SvJCRJ4su+tVBrdUzbftWg1xL+SSR8ZUGHj8HOHXa+W6K9MBqtjo83X6Gcsy3/6WS63l4qGxu83nidkC2bsa1cmduffkbsqNEURUQY9LqDGwXQNNidmfuPMX7PBN47/B7e9t6s6r6KKU2n4Gj97OvVBeFxWvm1YnOfzbxY60W2RvxB78yjbK/fF7mc4UZXzZKTD/T8HpIuKOXOSyA2LY+Ze67ToZo3ferpf++xObOxVJZ2puQW8d/t10wdjiAoe4+3vQmFWdB/EVg+PwMwAFTrDtV7K5VJ00pWjfy7P28QmZLHrEH1jLr3uDg+nrgXXyTpnXex9PIiaM1qfP87DUs3N6PFUMHDgTc6Vmbn5dvsD7tjtOs+70TCVxbYuUHnLyD+FISueezhv56IJexWNp/3qoGDGfR0sqlYkcCVv+I7fTrFERFE9etP8g8/ois0zHS/RqehTq0zaHxncuHOJaY0mcKq7qseXz1REPTMztKOt2pPYG22Dj/ZkikZZ3hl3yvEZ8ebOjTjqtkPag+Cw98qid8j6HQyH2wMxUqlYnq/Ws/lTHwdf1cmtavIhnMJ4oZJML3Qtcre446fg0/JqmCXOd1ngoUNbP/PY9tlhd/J4ZfjMQxrEkiryp5GCU/WaklfsYKo3n0oDL2Mz2efErRuLXZ16xrl+v/r5dYhVPZ25LM/rpJfrDFJDM8bvSR8kiR1lSTphiRJEZIkffiAx3+QJOni3bebkiRl3veY9r7HtuojnudS3eHg3wT+/BQKMh962J3sQr7fe5O2VbzoWst8CpFIkoTrgP6E7NqJS48epC1cSFTvPuSdPq3X61xLu8aQHUNYE7GYAJtGZEe8RV2XHlioDLuMQRAe6uAMqqbFsbLDXKY0mcKllEv029qPJZeXoNY9R0v2us8EBy/44zXQPbxf5qrTcZyMSufjHtXxdbEzYoDm5fUOlalWzokpmy6TmV/8+CcIgiEU5cLez8CvITSbZOpoTMepHHSeCtGH4eKqhx4myzLTtl/D3tqCd18wzgqroshIYkeM5M5XX2PfpDEh27fhPny4wZdvPoq1pYrp/WqTmFnA7H3hJovjefLMCZ8kSRbAPKAbUAMYJknSP4Z4ZFl+S5blerIs1wPmAJvue7jg78dkWe79rPE8t1Qq6PEdFKTDwekPPey/269RrNUxrU9NsxwZt3R3p/zXXxH4yy8AxI0ew+3pM9AVFDzTedVaNfMuzmPEjhFkFGYwp8Mc1vSdj4u1J1O3Xn2yptiCoC+J5+DkfGg4FovgNgyvPpw/+vxBK79WzD4/m5E7RxKRYdglzmbDzk2p2nnnClxY+cBDEjML+GpnGC0reTCksfGLHJgTa0sV3w2qS3peMdNF1U7BVI7+ALl3oOs3yn3I86zBWAhsDn9+rOxpfIB9YckcCU/lrU5V8HA07NJXWa0m9eeFRPftR3F0NOW//YaAn3/Gytc8Kho3CXZnaOMAlhyN5lrSk1eaF56MPn47mwARsixHybJcDKwB+jzi+GHAaj1cV/hfvnWh8UtwZskDC7gcCU9he+gtJrerRAUP05T/LSmHZk0J2bIZt5EjyVi5kqi+fck/f/6pznU9/TrDdgzj50s/0y24G1v6bKFdQDtc7K14v0tVzsRk8MfFJD1/BYLwGFq1UtnN0Qc6T7v3aR8HH35s/yPft/ueW7m3GLx9MMuvLEf7iFmvMqNGXwhoplQd/p9WM7Is89Gmy+hk+Lp/HbMcsDK2Wn4ujG8VzIbzCVxNyjJ1OMLzJjNOKVRSe5DSouB5p1Ip/VOL82DPlH89XKTR8uWOa1T0cmBU8woGDaXw2jWiBw8h5ccfcezYkZAd23Hp3dvsXjc/7FYNVzsrPtp8WfTmMzB9JHx+wP0bThLufu5fJEmqAAQDB+77tK0kSWclSTopSVLfh11EkqQJd487m5Ly4JETAWj/4AIuRRotn/1xlSAPeya2DTFhgCWnsren3CcfE7hiBWi0ypKEb74t8d4+tVbN/IvzGbZ9GGmFafzU/idmtJ6Bi43LvWMGNwqgrr8LM3aGkVsk1pELRnTsR2U2q8cssHX518OdK3Rmc5/NtPFvw/fnvmfs7rHEZpfx3kWSBF1nQF6KMnNwnwPXkzl0M4V3u1QlwN3eRAGan0ntK+FqZ8X0HWFipYJgXHs/B0kFnaaaOhLz4VUVWr8Dl9dD+L5/PLT8WAyxafl81qumwRqsy2o1KT/NIXrQYDSpKfjN+Qn/H3/A0tM4ewWflKu9NZ/0rM7F+ExWnY4zdThlmj5+4h40XPCwvzpDgQ2yLN8/VB0oy3IjYDjwoyRJD+w2LMvyIlmWG8my3MjLy+vZIi7L7FyV2YL4U3Dp/ydSFx6KIjo1j2l9amFrVbr2qzk0bULwH3/gOmQw6cuXE92vPwWXLj3yOTfSbzBsxzAWXFpAl+AubOmzhfaB7f91nEolMbV3TZJzipizX6wjF4wkOwkOz1Iqu1Xr8dDDPOw8+KHdD3zV+isisyIZuHUgv4f9jk42bPsSk/JrCHWGwIl5SgNnlMrCX++6TrCnA6MNPDJe2rjYWfFmx8ocj0zjoOjNJxhL3Em4uglavgEu/qaOxry0egs8q8COt5TZPiA5u5A5+8PpVN2btlUMcw9bFB1NzPARpM6fj0vPHlTcvh3nzp0Nci196lvPj5aVPPh213WSs0VvPkPRR8KXANy/mcIfeNj6uKH8z3JOWZaT7r6PAv4C6ushpudb3WEQ0FTZSF2QQWxaHnMPRtCjji9tDPRCY2gWjg74Tp1KwNIl6AoLiRk2nORZ3yMX/7NYgU7W8cuVXxi6YyipBanMbj+br1t//Y9Zvf9VP9CNQQ39WXYsmsiUXEN/KYIAf30FOg288N/HHipJEj1DerK592YalWvE16e/5uU/XyYxN9EIgZpIx8+UmYP9XwCw4VwC4cm5vN+lqsFGxkuzEc0qEOzpwIyd19Foy/BggGAedDrY9QE4lVearAv/ZGmjLO3MjIMT8wH4ds8NirU6Pu6h/yqmsiyTsWYt0f0HUBwXh9+PP1L+m2+wcHn4fY85UXrz1aZIq2OaaDVjMPr4y3kGqCxJUrAkSdYoSd2/qm1KklQVcANO3Pc5N0mSbO5+7Am0BMT/9rNSqaC7UsBFPjCdqVuvYqWS+NQALzTG5tiyJSFb/8ClX1/SFi8mZvgIimNiALiTd4cJeycw69ws2vq3ZUufLXQI7FCi877ftRq2lhaigItgeCk34MJvyn5bt6ASP83HwYf5HecztflUrqReYcDWAWyP2m64OE3JxR9avA5XNlIYdYLv996kQaCrWVUWNidWFio+7FaNiORc1px5zlp6CMYXugZuXVSWclqbdz0Ak6nQAqr1hGOzuRwexYZzCbzYKphgT/1+vzSpqSS8OonbU6diX78+IVv/wLlrF71ewxiCPR2Y3K4S20NvcTo63dThlEnPnPDJsqwBXgP2AGHAOlmWr0qSNE2SpPurbg4D1sj/vJuuDpyVJOkScBD4WpZlkfDpg2+duwVclpJ88wxvv1CVci62po5KLyycnCg/fTp+s2dTHB9PVP8BHF8ynQFb+xOaEsrU5lP5od0PuNq6lvicXk42vNW5CkfCU/nzmuhrJRjQ/mlg5QBt3n3ip0qSxIAqA9jUZxNV3Kow5cgUPj76MXnqPAMEamIt3wTHcmRufpeUnAI+6l7d7AoOmJMXavjQJNidH/fdJKfwOWrnIRhXUS7s+0JZel17kKmjMW8dP0NW5xG1aRqejja81r6SXk+fc+CA0r7q+HF8PvqIgCWLsfLx0es1jGlCmxC8nWz4dvd1MfBuAHpZGyPL8k5ZlqvIslxRluXpdz/3mSzLW+87Zqosyx/+z/OOy7JcW5blunffL9VHPIJC2+4jMiUnvrVbwZhmgaYOR++cu7yA74ZV3AlwwO2733jjDy1r2i5lQJUBT3VjOKp5Bar4OPLf7dcoVD8HFREF44s7Bde3K8mMw9Nvovdz9GNZl2W8UvcVtkdtZ/C2wVxNvarHQM2AjSM5LadQLucKHweG0SjI3dQRmTVJkvikR3VSc4v5+VCkqcMRyqpjP0Lubej6tWjD8DheVYkN6EvX/G1MbeuMk62VXk6ry8/n1qefkTBpMpY+PgRv3ID76FFIpfz/w87agjc6VuZsbIbYj2wApfunQ3ikP67nMaN4CDV1N7AM32nqcPQuLC2MEWff5I2+Gdwc1Ijal3PRjf4P+ecvPNX5rCxUTO1dk4SMAhYeitJztMJzT5Zh3+dKG4bmz96g2FJlyeR6k1nWZRnFumJG7hzJ8ivLy1RBl+/uNOCKLogx+ctB/Wy9OJ8Hdfxd6VuvPEuORJOUKb5fgp793Yah1kAIaGLqaMxeXpGG1291QZIkeqQu18s5i8LDiR48mMwNG/B4+SWC167BpnJlvZzbHAxpHEAFD3tm7rmJTrRp0CuR8JVRaq2OH/eFc927B7JHZTg44x9tGkozWZb59eqvDN85nHx1Pou6LqHPf1cS9PtvoFIRO3IkKfPmIWuevM1Ci4qe9Kjty4JDEaTkFBkgeuG5dWMXxJ2Adh/qdd9LQ5+GbOi1gfaB7fn+3Pe8svcVUgtS9XZ+U4lKyeX30wmcqvw2VrlJStVO4bHe7VIVGfhuzw1ThyKUNfumAhJ0/sLUkZQK8/+K4HKOE+k1xyKFroHksKc+lyzLZG7YQPSgwWgzswhcugTvd95BsrbWY8SmZ2Wh4u3OVQi7lc22UNEfWZ9EwldGrTsbT1x6Pm93qYHU7kNIvqaUUC7lsouz+c/B/zDz7Exa+7VmY++NNPVtCoBdvXoEb9mMc48epM6ZS9y4F1EnP/mygHdeqEKxRsdCsSxK0BetRqk46VEJ6o/S++ldbFyY1XYWnzX/jAvJFxiwdQBHE4/q/TrGNHPPDawtVfTuO1QpfnD0B8gR+2sfx9/NnvGtgtl0IZEriaIZu6AncafgykbRhqGE4tPzWXwkmn71/SjX4yOwdlT2bz8FbW4eSe9/wK1PPsWufj1CNm/CoUULPUdsPnrVKU+1ck58v/cmalF1WG9EwlcGFaq1zNkfQcMKbrSr6gU1+4N3Dfjra+XGs5S6mnaVwdsGczjhMO83fp/Z7Wf/qzCLhaMjfjO/xferryi4fJno/gPIO3X6ia4T4uVIv/r+rDwZK3rCCPpxaTWkXFfaDVjoZx/H/5IkiUFVBrGm5xo87Tx5dd+rzLkwB62u9O1HPRebwa4rt5nYpiJeTjZKb1FNERz80tShlQqvtquIu4M1X+64JoofCM9Op4PdH4KTr2jDUEJzD0QA8H7XqmDvrnzfbuxU+hc+gcLr14kZOJDsHTvwfON1ApcswbKM96JWqSTe61KV2LR81p0VVYf1RSR8ZdBvJ2O5nV3Iuy9UVYqXqFTQ/iNIC4fL60wd3hOTZZm119cyaucoNDoNy7suZ1SNUY8szOLary9B69Zi4eRE3LhxpC5chPwES1rf6FgJjU5m/l9ilk94RuoCZUm1X0Ol0bqBVXStyO/df6dfpX4sCl3ExH0TSStIM/h19UWWZb7aGYaXkw0vtQ5WPulREZpMgPMr4fZl0wZYCjjbWvFWp8qcjEpnf5gofiA8o+vbIOm8MmAl2jA8VlxaPhvPJzC8SSC+LnbKJ5u9quzf3jdV2c/9GEpvvTXEDB6CLj+fwF+W4zVpEpKFhWGDNxMdqnnTsIIbs/eFU1Bc+gYtzZFI+MqYvCINC/6KpFUlT5pX9Pj/B6r1BN+6d2f5Sk/J7jx1Hh8c+YAvT31JU9+mrO+1nnre9Ur0XNsqVQhavx7nrl1I+eEH4l99FW1mZomeW8HDgYEN/Fl1Oo5bWaL4gfAMTi2EnCRllspIbQVsLW2Z1nIa01pM42LyRQZvH8zF5ItGufaz+vPaHc7GZvBWpyo42Fj+/wNt3wNbFyV5Fh5raJNAQrwcmLErTCyLEp6eTgeHvlWWo9cZYupoSoV5ByNQqSReaVvx/z9p7QBtP1D2cd/c88jn6/LySHrnHW5P/QL7Jk0I3rIZhybPV5EcSZJ4v0tVknOKWHEixtThlAki4Stjlh+LJi2vmHe7VP3nA5IE7T+BzFil6XMpcDPjJkO3D2VPzB7ebPAm8zrOw83W7YnOYeHoQPlZs/D59BPyjp8guv8ACkJDS/Tc1zpUQqeTmX9QzPIJTyk/HY5+D5VfgKBWRr98v8r9+K37b9hY2DBu9zh+vfqrWS/xU2t1fLPrOhW9HBjc6H/2Cdm5QfPJyrKoW5dME2ApYmWh4qNu1YlKyWPDuQRThyOUVjd2wp0r0OY9UD0fs0vP4v7ZvX/1Pm4wGtxDlP3cD1lqXxQdTfSQIWTv3oPXW28RsGghlu7PZ0uapiEetK3ixYK/IskqKD0TFeZKJHxlSFa+moWHo+hU3Yd6AQ9oOl65M/g3hsPfKfthzNj2qO2M2DGCXHUuS15Ywku1X0IlPd2PqyRJuI8YQdCq3wGIGTGS9N9+f+yNb4C7PYMbB7DmTByJosS58DSO/gCF2dDxc5OFUM29Gmt7rqVtQFtmnp3JO4feIbc412TxPMraM/FEpebxYbfqWFo84Pe9yQSwcYbDM40fXCnUsbo3dQNcmf9XhJjlE56cLMOhb5QkpdZAU0dTKsw9GI5KJfFqu4r/ftDCCjp8ohTRu7z+Xw/n7N9PzKDBaNPSCVy6BM+JE0p9b71n9V6XqmQVqFl8WLTKelbP909SGbPoSCS5RRreeaHKgw+QJGj/MWQnwLkVxg2uhDQ6Dd+c/oYpR6ZQ07Mm63utp3G5xno5t13t2gRv2ohjixbc+fJLbn34IbrCRxdlmdy+EhLSvQ3YglBimfHKcs66w6BcLZOG4mTtxA/tfuDdRu9yIO4AQ3cMJTwj3KQx/a8ijZa5ByJoHORGp+reDz7IzhWavgJh2+DONeMGWApJksTr7SsRn17A1ouixLnwhG7uhtuh0PpdsLB8/PHPOWV2L5HhTQLxcbZ98EE1+inbaw5MvzfwLmu1JM+eTcLk17AOCiJ44wYcmjc3YuTmq5afCz3r+LLsWLRolfWMRMJXRqTmFrH8WAw965Snuq/zww8MaQcVWsGR76A431jhlUh6YToT9k7gt7DfGFF9BItfWIynnader2Hh6or/gvl4vvE6WX9sJXbESNRJD78R8nO1Y2iTANafjSc+3by+X4KZOzwTkKH9FFNHAig3/2NqjmFpl6XkqfMYsXME+2P3mzqsezadT+R2diGvd6j8yIJMNHtVKXEuZvlKpGN1b6r7OjPvrwi0opGxUFKyrOz5dwuCOoNNHU2pMPdgOBYPm937m0oFnaZCVhycXYY2M5P4ia+QtuBnXAYOoMLvv2FVvryxQi4V3nmhKkUaHfMOioH3ZyESvjJi/sFIijQ63upU+dEHShJ0+Bhy78DZpcYJrgSupV1j6PahXEq+xPRW0/mwyYdYqQxUvl6lwmvSJPznz6c4NpbogYPIO/3w1g2T2lVCpZKYc8C8ZkQEM5adBBdXKT33XANNHc0/NPRpyNqea6nsWpn//PUf5l2ch0427XI/jVbHgr8iqePvQuvKjxnksXdXlnZe3Qwporn440iSxOsdKhGVksfOy7dMHY5QWoT/CbcuQut3DNZKpiwp0eze3yp2gOC2FG6eRfSAgeSfOkW5aV9Q/ssvUdnYGCfgUiTYU9nT/fupWDHw/gxEwlcGJGUW8NupWAY08CPEy/HxT6jQQnnBOfoDFOUYPsDH2Ba5jdG7RiMj82v3X+ld0fCl6wGcOrRXWje4uBD34viH7usr52LL8CaBbDyfSExqnlFiE0q543NB1ilNis2Qt703y7ouo2+lvvx86WfePPimSff1bQ+9RVx6vrKEuiSVTJtPBis7ODLL8MGVAV1rlqOStyNzD0SgE7N8wuP8vXfPNVBZki48Volm9+6TpWtHzHZL5PwsKvy2ErfBYhb1Ud7oqKz8mL1fDLw/LZHwlQFzDoQjyzJvdHzM7N792n8C+WnKHiMT+Xu/3kdHP6K2Z23W9FhDTY+aRo3BJiSEoHVrcWzVStnX9/En6Ir+vU58UruKWKokfhKzfMLj5KfDueVQe6CyHMpM2VjYMK3FNKY0mcKRhCOM2DmCmKwYo8eh08nM/yuCKj6OdK7uU7InOXhC4/FK4YM0UUX3cVQqicntK3LjTg77wu6YOhzB3EXsh8RzYnavhJ5kdk/WakmeNYukbxZjV96W4F752NWqYaRISy9fFztGNA1k84VEEjLELN/TEAlfKRefns+6s0oJYH83+5I/0b8hVOkGx3+CgpL1ptOnzMJMJu6dyG9hvzGy+kgWvbAIDzuPxz/RACycnPCfPw/PSZPI2rSJ2FGjUd/5502Rt7Mto5pVYMuFRCJTzLPCoWAmTv0M6nxo9ZapI3ksSZIYXn04i19YTEZhBsN3DOdIwhGjxrA37A437+Qyub2ydLrEWrwBFtZilq+EetUpTwUPe+YciDDr1hyCickyHPoaXAKg7nBTR1MqlHR2T5ubS8Lk10hbvATXoUMInD0Dy+IEuLzBSJGWbi+3DkEClhyJNnUopZJI+Eq5JUeiUEnwartKT/7k9h9BYRacnK//wB4hKiuK4TuHczH5ItNbTeeDJh8YbL9eSUkqFV5vvI7/3DkUR0QQPXDgv/r1TWxbERtLC34SSwqEhynKURK+aj3Bu7qpoymxxuUas6bnGvyc/Ji8fzJLLi8xSlIgyzLzDkYQ6G5Pj9q+T/ZkR29oOA4urYGMGIPEV5ZYWqiY1K4ilxOzOHQzxdThCOYq6iAknFEGrCytTR2N2Svp7F5xfDyxw4aRe+QIPp99iu/UqUjVu4FPLWV7jU60TXmc8q529K3vx5ozcaTnFZs6nFJHJHylWHpeMWvPxtO3nt+/G3yWhG8d5cb01M9QZJxZq+OJxxm5YyR56jyWdllqtP16JeXUqRNBa9egsrEldtRosnfuvPeYl5MNo1tUYOulJMLvmH7vo2CGzi5XBlFavW3qSJ5Yecfy/NrtV7oGdWX2+dl8fPRjirWG/aN6JDyV0IQsXm1X8cF99x6n5ZugsoQj3+s/uDKoX31//FztxCyf8GCyDH99A85+UH+kqaMpFeYeDMdSJTHpEbN7eadOEzNoMOrkFAKXLMZ9+N2ZU0lSEuvUG0qDey50y60AACAASURBVOGxXmkbQqFaxy/HY0wdSqkjEr5SbMXxGArVOia2DXn6k7R6S7lBPf+r/gJ7iFVhq5i0fxK+jr6s7rGaet71DH7Np2FTuTJB69ZiW7MmiW+/Q8q8efdujia2qYidlQVzRXlg4X+pC+HEXAhuqyyZLoXsLO34ps03TK43mW1R23j5z5fJKMww2PXmHoygnLMt/Rv4Pd0JnH2hwWilImpmvH6DK4OsLVW80jaEc7EZnIhKM3U4grmJPgTxJ+/O7olqkY9zb3avaSDeD5ndy1i7jrjx47Fwdyd43dp/99er0VfZ6330eyXhFh6pkrcTnWv48OuJGPKKNKYOp1QRCV8plV+s4dcTMXSq7kMlb6enP5F/IwhsoSzr1Kr1Ft/9NDoNX578kq9Of0Vrv9b82u1Xyjuad58ZS3d3An9ZjkufPqTOmUvSu++hKyzE3cGaYU0C2R56i8TMAlOHKZiTS//H3nmHR1Xlb/xzZ9I76SGZNJp0SKN3EbGtDaSHqmJby+pPd1fddXVXXXUVRUSkgxTbqosCYkGkJST0HkIy6b23yczc3x83QQQkA5mZOzO5n+fhEWfuPfd9EE/u95zved+PpbiTEfa3u3cxgiDwYP8H+ffIf3O87DjTtkwjszLT7M9JzSon5Xw594+MxdVJff0DDX9c+ufut80jzMGZlKAhyNuV935QFq0ULmHn6+AdJsXJKLRJ6+7ewlGX7+6Jej2F/3iZwhdfxHPoEKI3bcQlKuryQdRO0nnkvDTIsu75aXtl4eguVNY3szFVWeS7FpSCz0755EAuFfXNPNie3b1Whv0RqnLg+H/bP9YlVOuqWbhjIZtOb2JO7zm8PeZtPJ09zf4cS6BycSHs1X8R9OSTVG/ZQnZyMvqSEuYOjwFgxS/KwWGFFgx6+OVtCI+XdvgcgJtjbmbFhBU06BuY8c0M9uTvMev4i3/MuLCA0i58I2DgdKlLoTrfPOIcGDdnNQ+MjGXPuTLSssvllqNgK5zfBdm7pd095+s4ItLByK9s4PP0PKYmXb67Z6itJWfhQ1SsX4//3LlolixB7X2VhfkB08ErRGlNN5G4yE4kxfjz0a5MdHrl7KOpKAWfHaI3GFm2K5P4qE4kRPu3f8BuN0FgD9j9jllbCrTVWqZvmc6BogO8NPQlnkx4ErWqHSv5MiAIAoH3LyB80Ts0nT7D+cn3EVCk5bZ+YWxM0VLVYJldUQU74/jnUJkt2ZibkiNnJ/QL6sfHt35MqFcoD+14iE2nNpll3GN5Vfx0uoR5w2NwdzHDnDD8SSn3cPc77R+rAzBtUCT+ni68q+zyKbTy8+tS0RE3S24ldsGqPVmIwPwRMb/5vLmggOxp06nbs4fQf7xEyDNPI6jbmOOc3WDwQ5JhTv5By4l2IBaO7kJBVSNfHVYW+UxFKfjskC1HC8itaODBK7QRXBcqFQx9FIqOShOOGThYfJDp30ynsqmSZeOXcVe3u8wyrlz43HQTUevWgcFA1tRpLHDKp05nYEOKVm5pCnJjNEoua0E3SFEnDkZnr86snbiWYeHDeHn/y7yW8hoGo6FdYy7+MQNvNydmDrlCi9P10CkK+k+BtFVQW2yeMR0YDxcn5g2P4afTJRzNrZJbjoLcFByG8z/DkIfB2V1uNTZPTWMzG/Zrmdgn9DdxWA3Hj5M1+T6a8/PRfLiUTpMmmT5owlxw9VV2+UxkdPcgbgj15oOd5zAalbOPpqAUfHaGKIos3ZlJlyBPxt0QbL6B+00Gr1DYvajdQ23L2sb8bfPxdfVl/S3rSQhNMINA+XHv05voTzbjGh2N+oVneLT2MCt3n1daCjo6Z7ZC8Qlpl0nlmFOqp7Mni8YsYmavmaw7uY7HfnyM+ubrC7/NKK5h6/FCkodE4+NmxjiW4U+CvglSPzLfmA7MrCFR+Lg58e4PSsxMh2fvYnDxgrhkuZXYBZtSc6hp0rNgxK9Hamp++JHsmbPA2YnoDR/jNWzYtQ3q5gNJ8+Hk11Cq/D/ZFoIg5R5mFNey42RR2zcomKfgEwThZkEQTguCkCEIwrNX+H62IAglgiAcavk1/6LvkgVBONvyS5lt2mDX2VJOFFTzwMgu1xZS3BZOrjD4QWmHr+DwdQ0hiiKrjq3iTzv/RO/A3qyduJZIn3aez7ExnENCiFq7Bq8RI7hlx1pu3fsZXx3MlVuWglyIohT87RcJfe6RW41FUavUPJP4DM8Pfp5f8n5hzrY5lDaUXvM47/90Djcn9YWzsGYjoAv0mCgVfM2KoVJbeLs5M3tYDNtPFJFRrMTMdFiq8+HYZ5JRi7uf3GpsHr3ByMrdWSTF+NNfI/15la9dR+4jj+AaG0vMpk24dut2fYMPWii9iykGVCZxa98wNP7uLNl5TomZMYF2F3yCIKiBxcBEoBcwVRCEXle4dJMoigNafn3Ucq8/8CIwCEgCXhQEoVN7NTkyS38+R4iPK38YaAGXy/g50irfnnev+Va9Uc8r+1/hzbQ3uSnqJpbdtIxObo75n1Ll6UnE4vfwu28yk87+RNPf/oqhqUluWQpykLUL8g5IxkdqJ7nVWIXJPSbz7th3OV91nhnfzCCzynQHz5zyer48lH/hDJnZGfwQ1JfBEfOcNXR0Zg2JwsVJxcrdWXJLUZCL/Uul86+DH5RbiV3wzbFC8iobWDAiFtFgoPCVf1L0yit4jRlD1JrVOAUFXf/gXkHSGcrDm6Aqz3yiHRQntYr7R8RyUFtJynnFgKotzLHDlwRkiKKYKYqiDtgI/MHEeycA34miWC6KYgXwHXCzGTQ5JEdzq9idUcbcYTHtszH/Pdz9IH42HPscKk0/m1bfXM/jPz5+wYnz36P+javasTN8BCcnQv/2N4qmzCPuXCrHpiVjqKyUW5aCtdn1JngGw4COFVI8MmIkKyespEHfwMxvZpJelG7SfSt2n0cl8JtWKLMSPRxC+8He95VMKxMI9HLlzgGd+Sw9l4o6ndxyFKxNUy2krYSet0tZcApXRRRFPtqVSWygJ2OivMl99DEq1q7FPzmZiEXvoPLwaHuQthjyiFSA732v/WN1ACYlaAjwdGHJznNyS7F5zFHwhQMXh2Hktnx2KfcIgnBEEIRPBUHQXOO9CIJwvyAIBwRBOFBSUmIG2fbHBz+fw9vViamDLNgmOXih5DK4932TLi9tKGXOtjnsytvFXwb9hScTnkQlOOY5pksRBIGhf32SJSOSUZ06Tta06ehylfbODkP+Qcj8qcXooOPZmPcO7M26W9bh7+bPgu0L2Jq19arX1zQ288mBXG7r15lQXwv9eQmC9N+j9DRkfG+ZZzgYc4fH0Nhs5GPFgKrjcehjaKySigyFNkk5X86R3CoW9Pcnd+5can/8kZC//pWQ555t24nTVDpFQd9JkgFVvbJr1RZuzmrmDIvmp9MlnCyolluOTWOON/MrHSS7dGn1ayBaFMV+wA5g9TXcK30oih+KopggimJCUHu2zO2U7LI6vj1awPTBUeY1OrgU3wjoc6+UadXGZJNZmcn0LdM5X3WeRWMWMeWGKZbTZaO4OKnoOX0Sfx6ygKbiErKmTKXh6DG5ZSlYg31LpBbohDlyK5ENjbeGtRPX0juwN0/vfJrVx1f/7lmKzQdyqW3SM3eYmc/uXUrvuyUDKmWF3CRuCPVheNdA1uzNUgyoOhJGA+xbDBGJoEmSW41dsGzXebobq0l44/9oPHWK8EXv4D9juvkfNPxxaK6X2m0V2mTm4Gg8XdR8oOzyXRVzFHy5gOaif48AfhOMIYpimSiKrYeclgHxpt6rIPHRrvM4qVTMHRZt+YcNfRSa6+DA8t+95FDxIWZtnUWToYmVE1YySuMYYdPXw7RBkWR27s7m5BdQubiQPWsWtTt3yi1LwZLUFEqtzwOmg5uv3Gpkxc/Nj2U3LWN81HjeOPAGr6a8ellsg8EosmrPeRKjO9E3wsJ/Xk4uMOh+yYCq6IRln+UgzBseQ1F1E98cLZBbioK1OP0NVGQpu3smkllSy/l96bz207sYKyuIXLkCn/HjLfOw4J7QbYL0DqZX/AHawtfDmemDo/j6cD7asutzj+4ImKPgSwW6CYIQIwiCCzAF+OriCwRBCLvoX+8ATrb8fhtwkyAInVrMWm5q+UzhIkprm9h8IIe748IJ9rFC61hoH+gyDvZ/CM2Nl329M2cnC7YvwNfFl7W3SKv7HRlfd2emJEWytkCF67JVuMREk/PQw1T+979yS1OwFAdWgFEPgx6QW4lN4Kp25Y1RbzCz10w+PvUxf9r5J5oMv76o7DhZRE55g+V391qJnwNO7tIOhkKbjOoeRGyQJ8t/Oa+43XUU9i6W3IVvuE1uJXbBllVf8vqu9/FwdyV6/To84uIs+8DBD0JdibSwqNAm84bHoFYJrNh9Xm4pNku7Cz5RFPXAI0iF2klgsyiKxwVBeEkQhDtaLntMEITjgiAcBh4DZrfcWw78A6loTAVeavlM4SLW7MlCZzCyYKSFjA6uxLA/Ql0xHNn4m4+/OPsFf/zxj8T6xbJm4ho03prfGaBj0Woxv/pkDVFr1uCRlEjBs89RtnyFzMoUzE5zo1TwdZ8gRQEoAKASVDyT+AxPJzzNDu0OFu5YSI1Osvtf8ct5wv3cGd8rxDpiPPxhwDQ4slkJYjcBlUpg7rAYjuZVcSC7Qm45CpYmNw20e6UYgA7iLtwe8j75nNEr/kljYAixmzfi2rWr5R8aOwYCe8D+JYoBlQmE+LhxW7/OfJqWS01js9xybBKzuGuIoviNKIrdRVHsIoriKy2fvSCK4lctv39OFMXeoij2F0VxjCiKpy66d4Uoil1bfq00hx5HorHZwNp92dzYM4QuQV7We3DMSAjrL0U0GI2IosiyI8t4Yc8LJIUmsWLCCgLcA6ynx8YJ93Pntn5hbEjRUqt2RbN0Kd4Tb6b43/+m6LXXEY3K2RiH4dhn0srrIMXG/ErM6j2Lfw7/JweLDjJ321x+ycxk//lykodG4aS2oqHT4IfAoIPU329NV/iVe+Ii8PNwZvkuZYXc4dn7Hrj6QNxMuZXYNKIoUrZ8OdXP/4XjATEEr1iFc4iVFq0EQeogKTgMOfut80w7J3loNLVNej5LU8zzrkTHsFO0Y746nE9FfTNzrHF272IEAYY+BmUZGE79j3+l/ItFBxdxS8wtLB63GE9nT+vqsQMWjIilTmdgQ4oWlYsL4W++Safp0ylfuZL8Z59FbFZWneweUZRWXIN6QuxoudXYLLd3uZ13x71LdnU2T/6yAA+PCu5LsKC78JUI7Ardb1aC2E3E3UXNtKRItp8oJKdcOQfjsFRq4cSXEJ8Mrt5yq7FZRKOR4ldfpfjfb7AvKo4dyc/RLTas7RvNSf8p0hnxfUus+1w7ZYDGjwEaP9bszcZoVHZFL0Up+GwYURRZvSeLHiHeDImVYTet153ofCJ4JvUVNpzawKxes/jXiH/hrLagS6gd0yfcl2FdA1i5+zw6vRFBpSLkr38h6PHHqf7qa3IWPoSxrk5umQrtIXsPFB6VVl6FK5kMK7QyPHw4bwxfQr2+Fo/oJeQ1nLW+iCEPQ32p1Nqp0CazhkSjEgQliN2RaXV+TFLOH/8eYnMz+c8+S/nqNZTcdCcvDZjC3DE9rC/ExVMKYj/5NVQpu1amMGdYNJmldfx8tmPGt10NpeCzYdKyKzieX03y0GgEGV4uaw2NLAzvzHbqearHTJ5OfLrDZOxdLwtGxFJU3cSWo5LZrCAIBD74AGEv/4O6PXvInj0HfblyTNVu2b8E3DtBv/vkVmIXpJ/1pj7rQXxcPZi7bS77C6zcmhQ9AkL7wj4liN0UQn3duLVfGJsP5CjnYByRxmopcqn3XeCnnL+/EsbGRnIffYzqr74m8LHHeClqAr3C/RjSRaYjLIkLAFHqVFBok4l9wgjydmXVniy5pdgcytu7DbNyTxY+bk7cObCz1Z9d0VjB/O3zSWsq5p+lVcwuLbS6BntkZLcgYgM9WbM3+zef+917LxHvvUvTmTNkT5tOc76SPmJ3VGTDqS0QlwwuHnKrsXma9AbW7ctmdGwfNty2jjDPMBbuWMi2LCsaMQsCDH4YSk7BOSWI3RTmDY+htknPptQcuaUomJuDa6GpWtr5VrgMQ3U12vnzqd25k9C/vcixsfeQUVLHghGxsiy6A1IQe49bpCB2pTW9TVycVMwYFMVPp0vILKmVW45NoRR8NkphVSNbjxVyX6IGDxfrumgV1hWSvDWZjMoM3h7zDrfH3gqHN0JjlVV12CMqlcDMIVEc1FZyJLfyN995jx1L5Irl6MvKyJo+g6ZMxRzBrkhdBgiQtEBuJXbB14cLKK3VMXdYDCGeIay6eRV9Avvw9M6n2Xzaii2Wfe5pCWJXIhpMoV+EH4nRnVi1JwuDcg7GcTDoYd8HEDkUwi0cKWCH6EtKyJ6VTMPhI4S/9Sadpkxh+S/nCfWRdr1lZfBCaKhQWtNNZNqgSJzVwmUL7x0dpeCzUdbvz8YoiswcHG3V52ZVZTHr21kU1xez5MYljNaMlkKMm+vg0MdW1WKv3BMfgYeL+oqTjUd8PFFrViPqdGTPmEHD8eMyKFS4ZnR1UitUrzvAN0JuNTaPKIqs+OU83UO8GNZVaoXydfVl6filDA8fzj/2/YMVx6wUWeLkAknz4dwPShC7icwbHkNuRQPfnVA6OxyGU19DlVbZ3bsCutxcsqbPQJedjWbJEnwmTuRcSS2/ZJQyY3AkztZ0F74SUcMgpK90/lJpTW+TIG9XbuvXmU+U1vTfoBR8NkiTXnJ6HHdDMJEB1msdO1V+iuStyTTqG1kxYQWJoYnSF50HQkQipCwDJV6gTXzcnLk7LpyvDudTXqe77Hu3nj2JWrcWwc0VbfJs6g8ckEGlwjVxeIO0wz1oodxK7IL958s5UVDNnGExv2mFcndy550x7zAxeiL/SfsPb6e9bZ2g7/i5LUHs71v+WQ7A+F6haPzdWf6L0oXgMOz/EDpFQ4+JciuxKRpPnyF76jQMVVVErVyB1/BhAKzdm42zWuC+RCu7C1+J1oiG4uOQtUtuNXbB7KHR1OkMfKpENFxAKfhskC1HpFao5KHRVntmelE6c7bOwUXtwqqJq+gV0Ou3FyQ9AOXnIPMHq2myZ2YNiUanN7L5wJXPwbjGxBC9fj1OwcFo50lnBhRsFKNRWlntPBA0SXKrsQtW/HKeTh7O3DUw/LLvnNXO/GvEv5jUfRLLjy3n5X0vYxQtvJDkGSBZnB/9BOoV06S2UKsEZg+NITWr4rLWdAU7pOg4aPdAwjxQqeVWYzPUHzxI9syZIAhEr1uL+4ABANS1ZLnd0lcyALEJ+k4Cj4BfXVYVrkp/jR8DI/1YvSdLiWhoQSn4bJDVe7LoEuTJ8K6BVnnez7k/88B3DxDoHsiam9cQ6xt7+UW9/gCewdIqoUKbdA/xZnCsP2v3Zv/uORjnsDCi1q3FtUsXch5+hKr/bbGySgWTOPcDlJ6RdveUKIY20ZbV893JIqYNisTN+covl2qVmucHP8/cPnPZfGYzz+16jmajhVtvEueDvhEOrbfscxyEyQkReLk6Kbt8jkDqR+DkBgNnyK3EZqjbuxftvPmoO/kR9fHHuHbrduG7/x7Ko6ZJz6whUTIqvARnN4ifLRmHVWTJrcYumD00mqyyenYqEQ2AUvDZHAe1FRzOrbJaFMPW81v54w9/JMY3hlU3ryLM63cOJzu5SJPN2e1QnmlxXY5A8pBo8iob+OFU8e9e4+TvT+TqVXgMGED+009TsXGjFRUqmMT+JeAVIlmZK7TJ6r1ZqAWhzfPHgiDwRPwT/DHuj3xz/hue+PEJGvWNlhMW2gcih0DqcqU13QS83Zy5Nz6Cb44WUFrbJLccheulsQoOb5LMizz85VZjE9T88CM5DzyIS3g40evW4RLxayeCKIqs3ZtNrzAf4iI7yajyCiTOB0ElHa9RaJOJfcII9nZllZIrCigFn82xek8WXq5O3B1neWOIz89+zjM/P0P/4P4sn7CcAPc2cmYS5krtIKnLLa7NERjfK4QwXzfW7M266nVqb280Hy3Da+RICv/2d0o/VCZzm6HkDGTskFqhnFzkVmPz1Dbp2Zyaw639wgj1dTPpnvl95/P84Of5OfdnFu5YSK3OglbaifOh4ry0a6vQJjMGR9FsEH+3NV3BDji8STJdS5wvtxKboOp/W8h99FFce/Qgau0anIKCfvN9alYFpwprmDUkSr4oht/Dp7PUbZW+FpqUyIG2cHFSMWNwFDvPlHBOiWhQCj5borimkS1HC7g3XmqlsSTrT67nxT0vMjR8KEtuXIK3i3fbN/mEQc/bpSwfXZ1F9TkCTmoV0wdFsutsaZuTjcrNjYj33sXn1lspeestit+2kpmFwtVJWQpqF0iYI7cSu+C/B1tboaKv6b7JPSbz6ohXOVR8iPnb51PZaKFzYz3vAM8gJcTYRLoGezEkNoD1+7RKRIM9IrYEdneOU6IYgIrNm8l/+mk8Bg4kcuUK1H5+l12zZq+Uf/yHAZefP7YJBi+Epio4onQDmcLUpEhc1CrWKEHsSsFnS2zYn0OzQbR43/hHRz/i1ZRXGRc5jkVjFuHu5G76zUkPSC0iSh6MSUxpmWzWmpAHIzg70/n11/C99x7KPlhK8auvKkWfnDRWw6EN0Ode8AqWW43NI4oi6/a1tkJd/iLVFrfE3sLbY97mbMVZ5m6fS2lDqflFOrlAXDKc2QoVSkaTKcwcEkVeZQM/nf791nQFGyVrF5SeVrJDgbKVqyh84UU8RwxHs+xD1F5el11TXC3lH09K0ODuYqPmNhGJkoHY/qVKa7oJSBENYXyalkt1B49oUAo+G0GnN7J+fzajugcRG3T5RGQORFFkUfoi3kl/h1tjb+WNUW/gor7GNrXIwVIeTMoyJQ/GBAK9XLmlbyifpeVS26Rv83pBrSbspZfoNHMm5avXUPji3xCVSV0ejrS0QiUprVCmkK6VWqFmDL7+VqhRmlG8N+49cmtymbN1DoV1FsiBi58tme+krTL/2A7I+F4hBHu7sm6fUiDbHSnLwL1Thz5/LIoiJe++R/Frr+E9YQKa995D5X7lRe4NKTnojSIzB9uQWculCIJkIFZ6BjJ/lFuNXZDcGtFwoGNHNCgFn42w9XghxTVNzLZQFIMoiryW+hrLji7j3u738s/h/8RJdR1to4IgBbEXH4fsPeYX6oDMGhpNTZOeLw7mmXS9oFIR8ufnCLj/fio3byb/2WcR9W0XiwpmRBThwAoI6y+1Qym0ybp9WrxcnfjDgM7tGmdI5yF8cOMHlDSUMHvrbHJrzPxD2k8D3SdC+hrQK2YkbeGsVjElKZKfzpSgLauXW46CqVTnS46OA2eC8zV08TgQoihS/NrrlC5ejO9ddxH+5hsILlde5G42/LroHh3oaWWl10jvO8EjUPoZpdAm/TV+xEX6sWZvx45oUAo+G2H1niyiAzwY1T2o7YuvEYPRwN/2/o31J9czs9dMXhj8AiqhHf/p+9wLbn7S+SaFNhmo8aNvuC9r9mSZ3KIpCALBTz5B0OOPU/3V1+Q9+RSi7vIQdwULod0HxScksxZbO7hvg5TX6dhypIC748LxNMP547iQOD666SNqdDUkb03mfJWZowES50F9KZz4yrzjOihTkzSoBIH1Kcoun92QtgpEo2S21gERjUYKX3qJ8lWr6DR9OmGvvIzg9Ptz0/bjRRTXNNlWFMPv4eQqRWyc/lYq7BXaJFmJaFAKPlvgWF4VadkVzBwSjUpl3pfLZmMzz/3yHJ+f/ZwH+z/I0wlPt995ysUD4mbCyf9BlWm7Vh0ZQRCYNSSKs8W17M0su6Z7Ax98gJDnnqVm+3ZyHn0UY6MFbesVfuXAcnD1gb73yq3ELvjkQA46g5EZZmyF6hPYhxUTVqA36pm9dTZnKs6YbWxix4B/F0hVHHFNIczXnfE9Q/jkQC6NzQa55Si0haFZKvi6jQf/GLnVWB3RYKDgr89TuWEjAfPnEfLXvyCorv66u2ZvFhGd3Bndw07Oa8fPBtEgdSootMnEPmEEeLrw8X6t3FJkQyn4bIA1e7Nwd1YzKcG8UQzNhmae3vk0357/lifin+DhAQ+bz2Y4cb60eqi0FJjE7f0708nD2STzlkvxT04m9KW/U/fzLnIeeBBjneKQalHqSuHEl9B/CrjYeGuPDWA0inycoiUp2p/uISa4/V4DPfx7sPLmlTgJTszdNpfjpcfNM7BKJe3y5eyHgiPmGdPBmTE4ivI6Hd8eK5BbikJbnPwaaosgseOZtYh6Pfn/9yxVn39O4EMPEfTUU22+95wurGH/+XJmDI5CbeZFd4vhHwNdxkHaajAoRz7awsVJxeREDd+fLKKgqkFuObKgFHwyU9XQzNeHC7hzYGd83JzNNm6ToYnHf3qc77Xf81zSc8ztY+a2jk7R0P1maRVROQfTJm7OaiYnath+ooj8ymufbDpNnkzn11+n/sABtAvux1CrZMpYjIPrwKDrsK1Q18qujFKyy+qZPjjSIuPH+sayauIqvJy9mL99PoeKD5ln4AHTwMld2s1VaJOhXQKIDfS8rkUrBSuT+hH4RUHXcXIrsSqiTkfek09R/b//EfTEEwQ99qhJi9xr92VJBUGCxgoqzUjiPKjJl1yHFdpkamIkIrAxpWPmiioFn8z892AeDc0GpiWZrxWqQd/AYz88xs+5P/PCkBeY1nOa2cb+DUkLpHMwJ7+2zPgOxoxBURhF8bpbCnxvv43wt96i4cgRtPPmYaiuNrNCBYxGSFsJUcMguKfcauyCdfuyCfB04eY+oRZ7hsZbw6qbVxHgHsD9393PgcID7R/UvRP0vUeKmGmsav94Do5KJTB9cBTp2kqO5yt/XjZL0QnI3i0VAyobjRawAMamJnIf+yM127cT8tyzBD5wv0n31TQ280V6Hrf364y/OcCpRgAAIABJREFU5zW6lstNtwng3VnptDKRyAAPRnYLYmOqFr2h47mfKwWfjIgtL//9InzpG+FrljHrm+t55PtH2Ju/l5eGvsSk7pPMMu4ViR0j7fQdWGm5ZzgQGn8Pxt0QwoYULU366zsH4zPhJiIWvUPjiZNoZ8/BUGmhgOqOSuYPUJGl7O6ZSF5lA9+fLGJyogZXJ8u+XIZ6hrJywkrCPMNYuGMh+wr2tX/QxPnQXA+HlRBjU7g3LgI3ZxXr9nXcczA2T+pHoHaV3Dk7CMaGBnIfepjan34i9MUX8E9ONvnez9PzqNMZ7MOs5VLUThCfDOe+h3IzG1s5KNMHRVJU3cQPpzperqhS8MlIWnYFp4tqmJZknlaoWl0tC3cs5EDRAf454p/c1c3C2TsqlRRinP0LlJjRUMGBmTE4krI6HduPF133GN5jx6J5712aMjLITp6NvrzcjAo7OKkrJLvrnrfLrcQu2JiiRQSzzWFtEeQRxIoJK9D4aHjk+0fYnbe7fQN2Hgjh8dJLspIr2ia+Hs7c0b8z/z2Y1+FDjG2SxmopP7TPPeDhL7caq2CsqyPngQep27OHsFdeptPUqSbfK4oia/dl0z/Cl/4aPwuqtCBxs0BQS50pCm0y9oZgQn3cWN8BzVvMUvAJgnCzIAinBUHIEATh2St8/6QgCCcEQTgiCML3giBEXfSdQRCEQy2/OpRH9sf7tXi7OnF7//blVgFU66p54LsHOFJyhNdHvs5tsbeZQaEJDJwBKiclxNhERnYLIqKTe7udorxGjSJiyfvosrPJnjULfUnHtRo2G1W5cOZbyYHWyVVuNTZPs8HIxtQcxvQIRuPvYbXnBrgHsPym5cT4xvDoD4+yM2dn+wZMXCCFGJ//2TwCHZyZg6NpaDbwRbri0GxzHNkEulpImi+3EqtgqK1Fu+B+6tPS6Pz66/jdc8813b83s4yM4lpmDom2jEBr4NMZekyUzp4rfgpt4qRWMSVJw89nO16uaLsLPkEQ1MBiYCLQC5gqCEKvSy47CCSIotgP+BR4/aLvGkRRHNDy64726rEXKup0/O9oAXcObH9uVVVTFQu2L+BE+QneHP0mE6InmEmlCXgFww23weGPobljOh9dCyqVwNSkSPZmlpFZ0j7jFa9hw9AsXUpzfgHZs5JpLrr+XUMFJHtrUZTsrhXaZPvxIkpqmphhIbOWq9HJrRMf3fQR3Tt1v2BOdd30vks6z5f6kfkEOjB9I3zpH+HL2n3ZJueKKlgBUZT+DrfuWjs4hpoacubNp+HIEcLffBPf2699kXv9fi2+7s7c1i/MAgqtSOI8qC9T/BRM5L5EDQKwIbVj7fKZY4cvCcgQRTFTFEUdsBH4w8UXiKL4oyiKraX0PsC8+QN2yGfpuej0RqYNat/LUnljOfO2zSOjIoN3xrzD2MixZlJ4DSTMgYYKycpeoU0mJUTgpBLYmNp+pyjPQUlELvsQfXEx2TNn0ZyvhLBeF4Zmyd66643SuVSFNlm3L5twP3dGdZcnt8rX1ZdlNy2jV0Av/vTTn9iWte36BnJ2k847ndqihBibyIzBUWQU17IvU2kntxmy90DJKelcqoNjqK5GO28+DSdOEPH2f/C5+doXuUtrm9h+vJB74iJwc7Zzc5uY0dApBlIVx2FTCPN1Z1zPEDan5qDTdxzzFnMUfOHAxW+uuS2f/R7zgG8v+nc3QRAOCIKwTxCEO3/vJkEQ7m+57kCJnbeviaKUWxUX6UfPMJ/rHqesoYx52+aRVZ3Fu2PfZWTESDOqvAaiR0ohxop5i0kEe7txY88QPk3LvW7zlovxiI8ncvlHGCoqyJ45C12u0mp1zZz+BmoLFbMWE8kormVvZhnTBkXKmlvl7eLN0huX0i+oH8/8/AxbMrdc30AJc6Rc0bTV5hXooNzevzO+7s6s269ENNgMaSvB1Rd63y23EotiqKxEO2cujSdPEvHOO3jfeON1jfNZWi7NBpFpg+wsiuFKqFTSHKbdA8Un5VZjF0wfJPkpbDteKLcUq2GOgu9KP+2v2OchCMIMIAH490UfR4qimABMA94WBKHLle4VRfFDURQTRFFMCAoKaq9mWdmXWU5mSR3TB12/K1RpQynzts0jtyaX98a9x9DwoWZUeI2oVFIbXM4+ZbIxkWmDIimv07H1mHkmG/cBA4hcsUI60zBrFrrcXLOM22E4sAJ8IqC7Fduh7Zj1+7NxVgvclyj/y5KXixdLblxCfEg8z+16jq/PXUdbk38sdBkLB9cqIcYm4OasZlJ8BNuOFVJc3Si3HIX6cqnDpv8UcLHeeVpro6+oIHvuXJrOnCHi3UV4jx1zXeMYjSIbUrQkRfvTNdjbzCplYsAMULsoEQ0m0uqnsL4DLVqZo+DLBS7+qR8BXNYXIwjCjcBfgDtEUbxwslQUxfyWf2YCPwEDzaDJplm/Pxtfd2duvc6+8dZiL78un8XjFjM4bLCZFV4HA6a3TDbKLp8pDO8aSKS/R7vNWy7GvW8fIlcsx1BXR/asWehyOma46DVTdg4yf5IWLTpQbtX10qAz8FlaLjf3CSPQyzbMbTycPVg8bjGDwgbxl1/+wpcZ19FenjAHqvMgY4f5BTog0wdHoTeKbDJDa7pCOzm8AQw6yaLfQdGXl6OdPQddxjki3l+M9+jR1z3WvswyssrqmeoIu3uteAZArzuliBldndxqbB6VSmDaoEj2ZZaTUdw+PwV7wRwFXyrQTRCEGEEQXIApwG/cNgVBGAgsRSr2ii/6vJMgCK4tvw8EhgEnzKDJZimtbWLb8ULujgu/rr7xkvoS5mydQ0FdAYvHLSYpLMkCKq8DzwDoeUfLZNOxnI+uB5VKYEqShv3nzTvZuPfuTdTKFYh19VJ7p7ZjHUq+Lg6skJxm4zpOblV7+PpwPtWNema08/yxuXF3cufdse8yOGwwz+9+ni/OfnFtA3S/GbxCFMdhE4kJ9GRY1wA2puZgNCrmLbIhitLf2YgkCOkttxqLoC8rQ5s8G11WFhFL3sdrxIh2jbc+RTJrmdjHzs1aLiVhLjRVw7HP5FZiF0yK1+CsFsy68G7LtLvgE0VRDzwCbANOAptFUTwuCMJLgiC0um7+G/ACPrkkfqEncEAQhMPAj8Croig6dMH3yQGpb3z6dbwsFdUVMXfbXIrri1ly4xISQxMtoLAdJMyBpio4fo0vWh2USfEanFQCG1LMO9m49epF5OpViI2NUtGXlWXW8R2K5gY4tB5uuBW8Q+VWYxes359Nt2AvkmJsL+fLzcmNRWMXMaTzEF7c8yKfn/3c9JvVzlLMzNltUKWcgzWFKYmR5FU2sCujVG4pHRftXilWxEHdhfWlpWQnJ6PLyUGz9AO8hg1r13gOZdZyKZGDIbiXYt5iIkHerkzoHcqnaTk0NrffT8HWMUsOnyiK34ii2F0UxS6iKL7S8tkLoih+1fL7G0VRDLk0fkEUxT2iKPYVRbF/yz8d+m/phb7xmGvvGy+sK7xQ7H0w/gPiQ2zQdjlqGAR2VwJATaR1svksPdfsk43bDTdIRZ9OR/asZJrOnzfr+A7D8f9KDrMJ8+RWYhccz6/icG4V0wZFIgjymbVcjdaib2j4UF7c8yKfnvnU9JvjZknmLQfXWU6gA3FT7xD8PV3Y0EFWyG2StFUtZi13ya3E7OhLSshOnk1zXj6aD5fiObj9x1c+dSSzlksRBGmXr+AQ5KXLrcYumD4oiupGPf87UiC3FItjloJPwTR+yShFW15/zbt7rcVeWWMZS8cvZWCwjR5zFASInwO5qVB4VG41dsG0QZFU1jebzbzlYtx69JCKPr0e7axkmjKVou8y0lZKDrMxMjnc2hkbU3JwdVJx18CrGTHLj6valXfGvMPw8OH8fe/f+eTMJ6bd2ClaMm9JXwNGx1/xbS+uTmrujY9gx8kiimsU8xarU18uLVr1m+xwZi0Xir2CAiI/XIpnUvuPrxiNIhsdzazlUvpNBmcPOODQ+ydmY3CsP7FBnh3CvEUp+KzIx/u1+Hu6cHMf01vHCmoLmLN1DhWNFSwdv5QBwQMsqNAM9J8CalfFvMVEhsQGEBVgXvOWi3Hr3p2o1asQjUayk2fRdO6cRZ5jlxSfhJz9UiuUje5W2RL1Oj3/PZjHLX3D8PNwkVtOm7QWfSMjRvLS3pfYfHqzaTfGz4bqXMhoR5h7B2JKoga9UeTTNMUZ2Ooc3giGJuk4hQPRXFwsFXuFhUR+uBSPRPMcX9nbYtbS3vxjm8bNF/pOgqOfQUOl3GpsHkEQmD4oioPaSk7kV8stx6IoBZ+VKKpu5LuTRUyKj8DVybS+8YLaAuZum0tlUyUfjv+Q/kH9LazSDHj4S60lRzZDU8dwPmoPKpXA1KRIUrLKOVtUY5FnuHbrRtTqVSBCdvJsmjIzLfIcuyNtNaicYcA0uZXYBVuOFFDTpGdqkv28LLmoXfjP6P8wKmIU/9j3Dzae2tj2TT1uAc9gxbzFRGKDvBgc68/GFMW8xapcMGtJdCizlubiYrSz5/xa7CUkmG3sj1O0+Hk4X9Oiu10SPxv0DXDUxM6GDs49ceG4OqkcfpdPKfisxObUHAxG0eSXpdY2ztZir29QXwsrNCMJc0BXozhFmci98RGSU5SZzVsuxrVrV6noA+lMX0cv+pob4chGyazFM1BuNXbBhhQtXYI8SYzuJLeUa8JF7cJbo99itGY0r+x/hU2nNl39BrUzDJwOZ7ZC9WUJQwpXYGpSJNryevacK5NbSsdBuw9KTzuUWUtzcTHai3f2zFjsObRZy6V0HgihfSF9tbQwoHBV/DxcuK1fZ748lE9dk+PmsCoFnxUwtJi1DO8aSHSgZ5vXF9YVMmfrHPss9gA0gyCop2LeYiKBXi3mLWnmN2+5GNcuXX4t+pI7eNF38mvJrMWBXpYsyenCGtK1lUxNsl2zlqvhonbhrVFvMTpiNC/vf7nt9s64WSAa4OB66wi0cyb0DsXPw5kNqYp5i9VIWwWuPg5j1nKh2CsqInLZh2Yt9uBXs5apSQ5o1nIpggBxyZKXQv5BudXYBVOTNNQ26dniwOYtSsFnBX4+U0J+VaNJfeN2vbPXiiBIu3z5B5XJxkSmDYqkutHyk41rly5ErVrZ0t7ZgYu+tFXgFwUxo+RWYhdsSNHiolZxd1yE3FKuG2e1M2+OfvNCe+dViz7/WIgdrZi3mIibs5p74iLYfryQ0tomueU4PvXlUvxRv8ng0vYisq3TXFyMdlYy+tZiL968LuQdwqzlUvpNBid3aZdPoU3iozrRNdjLoRetlILPCmxI0RLg6cKNPUOuel1rsVfRWGG/xV4r/e6TJhvFvMUkhsQGEBvoadG2zlZcu3aVij6j2FL0dTD3ztIMyP5F2sVRKVNgWzQ2G/jiYB4T+oTi72n7Zi1Xo7W906SiL342VGnh3I9W02fPTE3S0GwQ+Uwxb7E8RzZJZi0O0KFwodgrLkZjgWIPOohZy6W4+UKfu+Hop4qfggkIgsCURA0HtZWcKnRM8xblbcfCFFc38v2pYu6Nj8DF6ff/uC8u9paOX2rfxR6Au5802Rz7TJlsTEAQJPOWtOwKThdaxrzlYi6c6TOKaDta0Ze+GgS1FLKt0CbfHiugqqGZqYmO0QrVWvSNjBjJP/b94/cjG3rcCh6BSmu6iXQN9iYxuhMbUrSIyrkhy9Fq1hKeIJ3TsmP0JSVSG6cFiz3oQGYtlxKXDLpaxU/BRO6Oi8BFrWJjSo7cUiyCUvBZmE/ScjEYRe67ysvSpcVev6B+VlRoQZTJ5pq4J16abDZYYZcPfi36RKOx4xR9eh0c+hh6TATvDvbD/zrZsD+H6AAPBscGyC3FbLS6d7ZGNlyx6HNykcxbTn8LNebPyXREpiZFklVWz95MxbzFYuTsh5JTdr+7py8tlaIXLNTG2UqHMmu5FE0SBN2gtHWaiL+nCxP6hPJ5umX9FORCKfgsiNEosik1h0Ex/sQGeV3xmqK6IuZtm+d4xR4ok801Isdk09reeaHoO+/gRd/pLVBfKi1GKLRJRnEtKVnl3JcYiUplf2YtV6O16BsRPoKX9r7Ep2c+vfyiuOQW85Z11hdoh9zSNwwfNyeHXSG3CdJWgYu31EFjp1wo9lrdOC1U7EEHM2u5lFbzlrw0KDwmtxq7YGqihupGPd8eczzzFqXgsyB7M8vQltf/bhRDcX0x87bPo6yxjA/Gf+BYxR4ok811IMdk49qt20VF32x0WVlWe7bVSVsNPhHQdZzcSuyCjSlanFQC98bbr1nL1XBRu/CfMf9hePhw/r7373x25pJuhIAuEDNSWrQyGuURaUe4Oau5Oy6CrccKKa/TyS3H8WiosHuzFn1ZGdmzZ9Ocn4/mgyVmd+O8mAtmLTEdyKzlUvpPAbWrsvBuIoNjA4gK8GCDAy5aKQWfBdmQosXX/cp94yX1JczbNo+S+hI+uPED+whVvx76TwG1i+R2p9Amck02rt26EblyBWJzM9nJs9FpHdCpqvw8ZP4IcTNB1cFae66DJr2Bz9JzGd8rhCBvV7nlWAxXtStvj3mbYeHD+Pvev/PF2S9+e0H8bKjUSn93FNpkalIkOoORz9MV8xazc3gT6Bvttp1TX16OdvZsmnPz0HzwAZ5JSRZ93r4Ws5YOubvXioc/9LpD+rujq5dbjc2jUgncl6gh5Xw550ocy39CKfgsRHmdju3Hi7hrYPhlfeOlDaXM2z6PovoiPhj/AQOCB8ik0gp4+EPPO6SQ6+YGudXYPBdPNplWnmzcuncnctUqxKYmqejLcbAVroNrQVApZi0msu14ERX1zb/boeBIuKpdeWfMOwzpPIQX97zIlxlf/vrlDbeBR4DUSqfQJj1CvYmL9ONjxbzFvFwwa4mHMPvrBpKKvTnocnLRfLAEz0GWLfYANqbm4OPmxMQ+YRZ/lk0TlwxNVXDiy7avVeDe+AicVAKbUh3rHUgp+CzE5+m56AzGy16WShtKmbdtHoV1hSy5cQkDgwfKpNCKxM2Cxio48ZXcSuyCe+MiUMs02bj16E7kqpWI9fVkJyejy82zugaLYGiWQrS7jgdfx2xPNDcbU7REdHJneNdAuaVYhdaib1DYIJ7f/Txfn/ta+sLJFQZMg9PfQE2RvCLthKlJkWSW1JGaVSG3FMchNxVKTko/T+0MfUUF2jlz0WVno1nyPp6DB1v8mRV1OrYeK+TujmjWcinRw8G/i9LWaSLB3m6M6xnMZ2m56PSO08qvFHwWQBRFNqbmMDDSjx6hv/aNlzWUsWD7AgrqClg8bjHxIZY7qGxTRI+ATjHKZGMiwT5ujLshmE9lmmzcbriByFUrMdbVo501i+Y8Byj6zmyD2kKIV8xaTOF8aR17zpUxJVHjcGYtV8PNyY1FYxeRFJrEX3f/lS2ZW6Qv4maDUQ+HP5ZVn71wW7/OeLs5Wc1xuEOQvhqcPaHPPXIruSYuFHtZWVKxN2SIVZ77+cE8dAbjVR3SOwyCIP3s0+6FktNyq7ELpiRFUlan47sTjrPIpxR8FiAtu4KM4lqmJv66u1feWM787fPJrcll8bjFJIYmyqjQyqhU0qpk9m4p9FqhTaa2TDbfn5RnsnHr2ZPIFcsx1NaSPSuZ5vx8WXSYjfTV4BUK3SbIrcQu2JiqRa0SmJTQ8V6W3J3ceXfcu8SHxPPnX/7Mt+e/hcCuEDVMOoustCm2ibuLmrsGhrPlaAGV9Yp5S7tprIZjn0Pfe8DVfsxHDJWVaOfNQ5eZScTixXgOHWqV54qiyKZULf01fvQM87HKM22e/tNA5az4KZjIyG5BhPu5szHVcRatlILPAmxIycHL1Ylb+0l94xWNFczfPp+cmhzeG/dexyr2WhkwXQq7Vnb5TGJk9yDCfN3YIGMPuXvv3kQuX46hulqy0C6wU5viyhzI2CGd3VM7ya3G5tHpjXyWlsvYG4IJ8XGTW44suDu5897Y9xgYPJDndj3H1qyt0qJVeSZk/SK3PLtgSmIkOr2RLw46QIeA3Bz7FJrrpZ1mO8FQXY123nx0ZzOIeO9dvIYPs9qz07WVnCmqZaqyu/crXkFwwy1SDq2+SW41No+04BnBrrOl5JQ7htmNUvCZmaqGZrYczef2/p3xdHWisrGSBdsXoK3W8u7YdxkUNkhuifLgHSKFXR/6WAq/Vrgqrbsru86WyDrZuPftQ+TyjzBUVFwIybU7Dq4D0Si5cyq0yY6TRZTW6jq2sx3g4ezB++Pep39Qf579+Vm2e3mBq6+yaGUivTr70C/Cl40pOYp5S3tJXwPBvSE8Tm4lJmGoqUE7bz6NZ84QvugdvEaOtOrzN6Zo8XRRc3v/zlZ9rs0TlwwN5XDya7mV2AWTEzSoBBzGvEUp+MzMV4fyaGw2MjVJQ1VTFfd/dz/nq86zaMwihnS2Tu+6zRKXLIVen/5GbiV2weQEyVzkkwPyTjbu/fpJRV9ZGdpZyTQXFcuq55owtoRmdxkLnaLlVmMXbEzNIczXjVHdg+WWIjsezh68f+P79Avqx//tfp7ve4ySzKfqy+WWZhdMSYzkdFENh3Iq5ZZivxQcgfyD0hkswfbP0xpqa8mZv4DGU6eIeOdtvMeMserzaxqb+d+RgguL7goXETsG/CKVRSsT6eznzqjuQWw+kIPeYP/mLUrBZ0ZEUWRDSg69wnyIChK4/7v7yajM4O0xbzM03Dq96zZN13FS6LXSQ24SEZ08GNEtiM0HcjEY5V0hd+/fH82yZehLSqQcpWI7KfoyvofqXGmxQaFNcsrr2XW2hEkJGtQdyKzlang6e/L+uPfpHdibP9Ue5QdXFRzZLLcsu+D2/mG4O6vZ6IAhxlYjfY0UnN13ktxK2sRQW0fOgvtpOH6c8LfexHvsWKtr+OpwPg3NBqZ0gDiZa6bVT+H8z1J7ukKbTEmKpLimiR9O2ck7z1VQCj4zcjSvihMF1dwd78/CHQs5U3GG/4z+DyMiRsgtzTZQqaVzVOd+gIpsudXYBVMTNRRWN7LzjPyTjUfcQDTLPqS5qAjtnLnoS0vlltQ26avBIxB63CK3ErugdTe5dXdZQcLLxYslNy6hZ0AvngoOYufh5Yp5iwl4uzlze/8wvj6ST22TXm459oeuXlpc6PUHKdPWhjHW1ZHzwAM0HDlC+Jtv4jN+vCw6NqbkcEOoN/0jfGV5vs0zYIbkp5Cm7PKZwtgbggnydmWjA7R1KgWfGdmQkoObi44dla9wsuwkb416i1GaUXLLsi1aQ68PrpNXh50wrmcIgV4ubLCRFXKP+Hgil35Ac34+2jlz0JeVyS3p96kphNPfwoCp4OQitxqbx2AU2XwglxHdgojo5CG3HJvD28WbD8Z/QA/3EJ5wbWDX4ZVyS7IL7kuMpF5n4OvDdu70KwcnvpQCs208TsZYX0/OAw/ScOgQ4W/8G58JN8mi41heFUfzqpiSqEGwg/ZXWfAJg+4TJD8FQ7PcamweZ7WKSfER/HS6mIKqBrnltAuzFHyCINwsCMJpQRAyBEF49grfuwqCsKnl+/2CIERf9N1zLZ+fFgTBbj3T65r0fHX4HEHd1nK6/CRvjHqDMZHW7V23C/w0UmvnwXVgUFZ828LFScU9cRH8cKqY4upGueUA4JGYiGbJEnQ5udJOX4WNhisf+hhEg9LOaSI7zxRTWN2oONtdBR8XH5bespquzQYeP/w2u/N2yy3J5omL9KN7iJdDrJBbnfQ1UmB2lPUcLq8VY0MDOQsfoj49nc6vvYbPxImyadmUmoOrk4q7BiodClclLhnqiuHMVrmV2AX3JWowirA5NVduKe2i3QWfIAhqYDEwEegFTBUEodcll80DKkRR7Ar8B3it5d5ewBSgN3Az8H7LeHbHF4cyMYYup9qYyWsjX2Nc1Di5JdkucclQky9Z5Su0yX2JGgxGkU/SbGey8Rw8CM2S99FlZ9tm0Wc0Si9LUcMgsJvcauyCjSk5BHq5MK5niNxSbBpf73A+DBxBjK6ZP/74GHvz98otyaYRBIEpiZEczqnkZEG13HLsh5IzoN0jnbmy0d0qY2MjOQ89RH1KCp1f/Re+t90qm5YGnYH/Hsrjlr5h+Ho4y6bDLuh6I3iHKW2dJhIV4MlT47szrGuA3FLahTl2+JKADFEUM0VR1AEbgT9ccs0fgNa/WZ8C4wRpv/0PwEZRFJtEUTwPZLSMZ1c06htZdPw5nNyzeXXEv7gpWp52Bruhx0TwDFbMW0wkNsiLQTH+bErNwSizecvFeA4ZQsTixegyM9HOm4ehqkpuSb+S/QtUnJdelhTapLi6ke9PFXNPXAQuTkqnf1v4JSxgWUEhkU4+PPbDY+wv2C+3JJvmroHhuKhVbExxnBBji5O+GlROMGCa3EquiLGpidyHH6F+337C/vVPfO+4Q1Y93xwtoKZRz31Kh0LbqJ2k4zUZO6DKdhaSbZlHx3UjIdq2z9G2hTl+socDF/dq5LZ8dsVrRFHUA1VAgIn3AiAIwv2CIBwQBOFASUmJGWSbDxVOhHlE84fwPzExVr52BrtB7Sz9EDuzVTpnpdAmU5Mi0ZbXszfTts7MeQ0fRsR776I7m4F27jwM1Taygp+2Gtx8JbMDhTb5JE1yglVelkwkIoFOAT34qNpIhHcEj3z/CKmFqXKrslk6ebpwc59QvjiYR2OzQW45to9eB4c3SIujXrYXj2LU6ch99FHqdu8m7OWX8bvzTrklsTFVS0ygJ4Ni7Pul3GoMbMmlVfwUOgzmKPiu1Gtw6TbE711jyr3Sh6L4oSiKCaIoJgQFBV2jRMvi4uTEl1Pe5OXxym6CycTNks5XKZONSdzcJxQfNyebPAfjNXIk4e8uovHMGbTzF2CoqZFXUH05nPwK+t0Hzu7yarEDjEaRzQdyGBTjT2yQl9xy7ANBgPhk/PMPsWzAU3T26szD3z9MWlGa3MpslimJGqob9Xx7rEBuKbbP6S1QXwZxs+VWchlGnY5MENYiAAAgAElEQVS8Rx+j7uddhP7jJfzuuVtuSWQU15CaVcF9ilmL6XSKgtjRkL5WyqtVcHjMUfDlAhcvC0cAl9pxXbhGEAQnwBcoN/FeBUckoAtEj5DaOo32H2hpadyc1dwdF8G2Y4WU1+nklnMZ3qNHE/HO2zSePEnO/AUYamvlE3NkExh0SjuniezLLCO7rJ4pScru3jXR7z5QuxB4/EuWT1hOiEcID+14iIPFB+VWZpMMjg0gKsBDyeQzhfQ14KuBLrZl/CbqdOQ9/gS1O3cS+re/0WmSbWQDbkrNwUklcE+cYtZyTcQnSzm1536UW4mCFTBHwZcKdBMEIUYQBBckE5avLrnmK6DVKu9e4AdRFMWWz6e0uHjGAN2AFDNoUrAH4pKhMhvO75RbiV0wJUmDzmDk83Tb7Ln3HjuW8LfepOH4cXIW3I+hts76IkRRaufsHAehfa3/fDtkY2oOPm5OTOwTJrcU+8LDH3reAUc2EejkyfIJywnyCGLhjoUcLjkstzqbQ6USmJygYf/5cjJLZFwQsnUqsqUX8IEzpOxaG0Fsbibvqaeo/eEHQp7/K52m3Ce3JACa9AY+S89jfK8Qgrxd5ZZjX/S4VcqpTV8ltxKb5wftD5Q3lssto120u+BrOZP3CLANOAlsFkXxuCAILwmC0HqKdzkQIAhCBvAk8GzLvceBzcAJYCvwsCiKyt5yR6Hn7eDeSTqcrtAmN4T6MEDjx8bUHEQbDX32GT+e8DffpOHIEXIeeABjnZWLvtxUKDlp87lVtkJFnY6txwq5Oy4CN2fbebm0G+KTobEKTnxFsEcwy29ajr+bPw9+9yBHS47Krc7mmBQfgVolsMkGW9NthoNrpX+2ZtbaAKJeT96fnqbmux2E/PnP+E+fLrekC3x3oojyOp1y/vh6cHKRcmpPfwu1xXKrsVm2ZG7hiZ+e4P1D78stpV2YxY5NFMVvRFHsLopiF1EUX2n57AVRFL9q+X2jKIqTRFHsKopikiiKmRfd+0rLfT1EUfzWHHoU7ARnN+g3BU7+D+pK5VZjF0xN0pBRXEtato3FIFyEz4SbCH/j3zQcOkTOgwsx1tdb7+Hpq8HZE/rcY71n2jGfH8xDZzAqL0vXS9Rw6BRzYdEqxDOEFRNW4OfqxwPfPcDx0uMyC7Qtgn3cGHdDMJ+l56LTK638l2HQw8H1km2+r220J4p6PXlPP03Ntm0E/9//4T9rptySfsOm1BzC/dwZ0c22vB3shoGzwKiHQ+vlVmKTfHv+W/78y5+JD4nnqYSn5JbTLhT/bQV5iU8GY7PkSKbQJrf164yni5qPbdze3GfiRDq/9hr1aWnkLHwIY0OD5R/aWA3HPoc+d4Ort+WfZ+eIosimVC39NX70DPORW459olJJZ0Wzd0NpBgChnqGsmLACH1cfFny3gBNlJ2QWaVtMSdJQWqvj+5NFckuxPTJ2SBm1NtKhIOr15P/fs9R8u5Xgp58mYM5suSX9Bm1ZPbvOljI5QYNapZi1XBdB3SFyqHRu1EY7h+RiW9Y2ntv1HAODB/Le2Pdwd7JvEzil4FOQl+CeoBkknbtSJps28XR14o4B4XxztICqhma55VwV39tupfOr/6I+JYXchx/G2Nho2Qce+wya6yF+tmWf4yCkays5U1TLFGV3r30MmAaC+jet6WFeYSyfsBwvZy/u/+5+TpefllGgbTGqezChPm5sUNo6Lyd9tZRR2/1muZUgGgzkP/dnqrdsIeipJwmYN1duSZex6YAWlQCTE21jN9RuiU+G8kzI+kVuJTbDd9nf8X8//x/9g/rz/rj38XD2kFtSu1EKPgX5iUuGsrOg3Su3ErtgapKGxmYjXx7Kk1tKm/jecQdh//ondXv3kfvwIxibmiz3sPTVENwLwuMt9wwHYlOqFg8XNbf37yy3FPvGO1TKSzv0sZSf1kK4VzjLJyzH3cmd+dvnK0VfC2qVwOSECHadLSG3wort3rZOdT6c2QYDp0tZtTIiGgwU/PkvVH/9NUGPP07gggWy6rkSzQYjmw/kMqZHMGG+9r3zIjs97wBXX8VPoYXvs7/nmZ3P0DewL+/f6BjFHigFn4It0PtOcPWBtFVyK7EL+ob70ivMhw0ptmvecjF+d95J2MsvU7dnD7mPPGqZoq/gCOQflBYPlBymNqlpbObrwwXc0b8zXq5Ocsuxf+KSob4UTn/zm4813hpW3LQCF7ULC7Yv4GzFWZkE2haTEqRd5c0HbNNxWBYOrpeyaWWOkxGNRgr++jxVX35J0B8fI/DBB2TV83v8cKqYkpompiRFyi3F/nHxgH6T4cRXUo5tB+ZH7Y/8aeef6BXYiyU3LsHT2VNuSWZDKfgU5MfFE/pOghNfQoPtmpHYCoIgMHVQJCcLqjmSWyW3HJPwu+duwv7xEnW7dpH72GMYdWbOEkxfA2pX6YeWQpt8dTifhmaDYtZiLrqOA5+IKy5aaXw0rJiwAmeVM/O3zyejIsP6+mwMjb8HI7oFsTk1B71BMW/BaJTmsJhR/8/efYdHUb1tHP/OpvfeIA1C75DQmyJVARtKh0AAqdJEsSGCWFGsoLTQQQT5KUqRLh1C7z2dJEBI79l5/5jgCwokIbuZ3c35XFeuQHZ25o6SzZ455zwPuFZVLYas1XJz2jRSN2zAfexY3EeNUi1LcdYcicbL0Yqna4piLToRPBgKc+H0WrWTqGZPzB4m7ZlEbbfa/NjxR+wt7dWOpFNiwCcYhuDBUJBToV9sSuP5RpWwsTBjzVHDLt5yP+devfCe8SGZe/4mbpwOB315Wcq/mzo9ld5oQrF+PhpDLW8HGvk5qx3FNGjMlJmZ67sg+cZ/Hg5wDGBRl0WYSWaE/RXGtZRrKoQ0LP2a+ZGQlsOey7fUjqK+6zshNVrV/ceyVkvC9A9JXbce99Gj8Bg7RrUsxYlLyWb35Vu8GuKHuZl4G6sT3vWhUmNlWacRrBzStb2xe5m4eyI1XWryY6cfcbA0vcJv4idFMAw+DcGnkSjeUkKO1hY818CH30/Gk5FboHacEnN59VW8p08nY88e4sZPQNbFoO/8b5CbqiyrE4p1Lj6V07Gp9G7qhySWv+pO4wEgaZSZmocIdApkUZdFaCQNYVvDuJ56/aHHVRTP1PbC3d6K1QZecbhcHFsCtm5Q6zlVLi/LMgkzZ5Kydi1ur72G+7hxquQoqbVFBX9eDRErFHSqyWBIOg+xEWonKVf74vYxYdcEqjlX46dOP+FoaZpVq8WATzAcwYMh6RzEHVM7iVHo28yPzLxCNp6KVztKqbj06Y33B9PI2LWL2ImTyj7oO75MWQYV2EY3AU3c6iPRWJlreKmxqGynU06VoXpnpZ9V4cMr6FZxqsKiLosACNsaxo3U/84GVhQWZhpeCfFl58UkbqaWQ9sWQ5WeqDS+btQPzK3K/fKyLJMwYwYpq9fgNnwYHhPGG/SNoEKtzNqIGNpW98DP1TSKaRiM+r2UPrYVqHjL/rj9jN85niDnIBZ0XoCTlZPakfRGDPgEw1GvF1jYiuItJdTE34XqnvasMcI75C59++L1/ntk7NhB3OTJyPlP2GLi1iWIPqAspzPgNymGIjO3gP+diOe5Bj442apbCdAkBYdCRiJc3vLIQ6o6VWVRl0VoZS1hW8OITI0st3iGpk9TP7QyrD1agYu3nFypNL5WYYWCLMskzpypDPaGheExaZJBD/YA9lxO4mZqDn3F/mPds3JQ+tie/RVy09VOo3cH4g7w+s7Xqepc1eQHeyAGfIIhsXasUC82ZSVJEn2a+XMqNpXz8Wlqxyk11/798Xr3XdK3bSdu8htPNug7thQ0FtBogO4DmqA/TitLgPuJynb6Ua0TOFQq9qZVkHMQizovolAuJGxrGFFpUeWTz8AEuNnRppo7Px+NplBbAZfy3yvWEtAG3KuX66WVwd5H3F21GtewoXhMnmzwgz2A1UdicLe3omMdL7WjmKYmgyE/E878onYSvToQf4DXdxUN9jqZ/mAPxIBPMDRNQotebNapncQovNS4MpbmGqMq3nI/14ED8Hp7Kul//UXcG1NKN+jLz4FTq6B2d7AXldpKYtWRGKp72hMc4KJ2FNNkZg5NBsLVHXD38YO4ai7VWNh5IfnafIZuHUp0mnH+DJdV32b+xKfm8PeVCli8JfJvuHuj3Iu1yLJM4kezuLtqFa5Dh+L5xhtGMdhLTMth58UkegX7YiGKteiHbwh41jXplVYH4w/y+s7XCXQMZEGnBThbV4ziZeInRjAsviFK8+wKtIa8LFzsLOlWz5sNJ+LIzitUO84TcR08GM+pb5G+dWvpBn332nioWNnOmJyLT+VUTAr9mvsbxZs7o9W4aLb5xIpiD63uUp2FXRaSX5jPkK1DKuSgr1MdL9zsLFl9uOJ97xxbAjYuULtHuV1SlmUSZ33M3ZUrcQ0NxXOKcQz2AH6JiKFQK9NHLOfUH0mCkCFw8xTEHVc7jc4dunmIcTvHEeAYwILOFWewB2LAJxgaSVKWFMSfUJppC8Xq09Sf9JwCNp25qXaUJ+YWGlr6Qd+xJUXFWtrpPZ8puFes5cXGldWOYtqc/aFaRzixHAqLr6Bbw6UGCzovqLCDPktzDb1CfNlxMYnEtBy145SfzNtw4Q9o2BcsrMvlkrIsk/jxJ9xdsUK50fbWm0Yz2NNqZdYcjaFVkBuB7qbTDNsgNXi1qJ5CuNpJdOrwzcOM2zEOf0d/FnZeiIt1xVrpIgZ8guFp8KrSRFvM8pVIi6quVHG3M/ry5qUa9CVdLCrWMhg04mWsOFl5RcVa6vvgbGupdhzTFxwK6Tfhyl8lOryma80KPejr09SfQq3MLxExakcpPydXgTa/3Iq1yLJM4iefcHf5clwHD8Jz6ltGM9gD2Hf1NrF3s+kj9h/rn7WTUk/hzHrIMb76AA9z5OYRxu4Yi6+Db4Uc7IEY8AmGyNYV6jyvNNPOy1I7jcGTJIneTf2IiLrLlUTjLnZT4kHf8XvFWvqXb0Aj9cepm2TkFtC3uXizVC5qdAF771LdtPr3oK8iFXKp4m5HqyA3Vh+JQVsRirfIsvJvw68FeNYqh8vJJH36KXeXLcdl0EA8p041qsEewJqj0bjYWtClrijWUi6Ch5hM8ZbDNw8zZseYfwZ7rtauakdShRjwCYYpOBRy0+Dcr2onMQovN/HFXCOx5qjx3yEvdtCXn63cHRfFWkps1ZFoqnvaEyKKtZQPMwto3F+Z4UstecuBmq41/9nTN3Tr0Ao16OvbzJ+4lGz2Xr2tdhT9i9oPd64qvWf17N7MXvLSZbgMGojX228b3WDvVnouf51L5OUmvliZm6kdp2KoHAxe9ZVlnbLx3oQ5dPPQP4O9RV0W4WbjpnYk1YgBn2CYAlqBe02IWKx2EqPg4WBF57pe/Ho8lpx84yzecr/HDvrO/w45KcodSKFY5+PTOBmTQt9molhLuWoyCGRtiYq33K+GS40KOejrXNcL14pSvOXYUrBygjov6PUy/xRoWbYc18GDjXKwB7D+eCwFWlks5yxPkgQhoZBwBuKNs3jLwfiDjN0xFn9HfxZ1WVRhZ/buEQM+wTDdqxQVd0ypFiUUq28zf+5m5bPlbILaUXTikYO+Y+FKsZYqolhLSaw+Eo2luYaXmohiLeXKJRCCOsDx5aAt3U2YijjoszI3o1ewL9svJJJkysVbspKVCsMNXgVLW71d5p/WCytWKNU4jWzP3j2yLLPmSDTNAl2p5mmvdpyKpX5R8ZYI4yveciDuwD/VOCvyMs77iQGfYLga9gFza6N8sVFD6yB3At1sWXnYdN4cPjDomzQZOe4MRB9Ulvwa4ZuX8qYUa4kTxVrUEhwKabFKX75SemDQt2UokamROo9naPo09aNAK/PLsZIvgzU6p3+Gwly9LudUmqrPVFovDB1qVNU4/+3g9TtE3smiTzPRiqHcWTtCvZfh7HrISVU7TYntj9vPuJ3jCHQMFIO9+4gBn2C4bFyUF5szv0CucRcjKQ8ajUS/5v4cjbzLpQTT+e/lFhqK1ztvk75tG7HjX0eWRbGWkvrj9E3ScwvoK5ZCqaPms2Dn+cRNjGu41GBRl0UUyAUM3TqU66nXdZvPwFT1sKdFVVfWHI02zeItsqz8W6gcDN719XMJrZaEGTO4u2o1bsPCjKrP3sOsPByNk40Fz9b3UTtKxRQyBPKzlCJ6RmBf3D5e3/k6VZyqVNhqnI8iBnyCYQsZCnkZRvNio7ZewX5YmmlYZUKzfACugwbh9fabZJxNIPZkdbQWjmpHMgqrDkdTzdOepoHil54qzCygUT+4vAXS4p/oFNVdqrOo8yIK5UKGbhnKtZRrOg5pWPo28ycmOZv910yweEvMYbh1UW+tGGStloQPZ5Cyeg1uw4fjMXmyUQ/2ktJz2Ho2gV7BvlhbiGItqqjUBLwbKDcqDLx4y764fYzfOZ6qzlVZ2HlhhWqqXhJlGvBJkuQqSdI2SZKuFH3+z7sKSZIaSZJ0UJKkc5IknZYkqfd9jy2RJOmGJEkniz4alSWPYILu3QmNMO5KUeXF1c6SZ+t78+vxODJzi2/6bExcG9ngHZxCxqUUYseNQ5ubq3YkgyaKtRiIJoNALix18Zb7VXOpRniXcCRJYujWoVy5e0WHAQ1Ll7reuNhaGH1f0Yc6ugisHKF+L52fWtZqSZj+ISk//4zbiBF4TJpo9D/3v0QoxVr6i3Yy6rlXTyHxrFJTwUD9Hfs3r+98nSDnIBZ0WiAGew9R1hm+qcAOWZarAzuK/v5vWcAgWZbrAl2BryVJuv//xBRZlhsVfZwsYx7B1EiSMsuXeAZiI9ROYxQGtAggPbeAjaeebEbBYEWE49LcB+8Pp5O5529ix4pB3+OsOVpUrKWxKNaiKrcgqPqUUpmxlMVb7lfVuSqLuyzGTDIjbGsYl5Iv6SyiIbG2MOPlJr78dS6RW+km9POdeRvO/w8a9gVLO52eWi4s5Ob775Oydi1uI1/DY+IEox/sFWplVh2OpnU1N6p6iGItqqrXCyzsDLaews7onYzfNZ7qLtVZ0FkM9h6lrAO+54F7nWWXAv+pMSzL8mVZlq8U/TkeSAJE8yyh5Oq/Apb2SnVGoVjBAS7U9HJgpSmVN0+6ADGHIDgUl9698floJpn79hE7ajTaHBOu6PeEsvMK2XA8jmfreeNiJ4q1qC4kTCnecnlrmU5TxakK4V3DsTCzIOyvMC4mX9RRQMPSp5l/UfEW4+8r+o8Ty6EwT7mBqUNyYSE333mH1PW/4j5mDB7jxxv9YA9g96Uk4lKyGdA8QO0ognXRrPTZ9ZCdonaaB2yL2sbk3ZOp7VqbBZ0X4GTlpHYkg1XWAZ+XLMs3AYo+ez7uYEmSmgGWwP2bEGYVLfWcI0mSVRnzCKbIykEpYX12PWTfVTuNwZMkif4t/DkTl8rpWMN6cX5ix5aAmeU/xVqce/XCZ9YsMg8eJGbUKLTZ2ermMzAbT8eTnltAP/FmyTDUfBYcfODowjKfKsAxgCVdlmBjbkPY1jDO3zmvg4CGpZqnUrxl1eFoCk2heItWq8yOBLQBz1o6O61cUED8m2+R+tvveIx/HY9xY01isAew4lAUng5WdKzjpXYUAZRlnQXZShE9A7Hlxham7JlCXfe6/NTpJxwtxd7+xyl2wCdJ0nZJks4+5OP50lxIkiQfYDkwRJZlbdGX3wZqAU0BV+Ctxzx/hCRJEZIkRdy6das0lxZMQfAQKMiBU2vUTmIUXmhcGRsLM1YcMoHiLfnZcGo11O4Bdm7/fNn5pRfx+eRjsg4dJua1kWgzM1UMaVhWHY4myMNOFGsxFGbmSouGazsgueyVNv0c/QjvEo69hT3D/hrG2dtny57RwAxsEUjs3Wx2X0pSO0rZXdsBKVHQVHeze3J+PnGT3yDtzz/xfGMy7qNG6ezcaotJzmL35Vv0aeqHhZmoLWgQKjUGn0YGU0/hj+t/8Nbet2jo0ZCfOv2Eg6WD2pEMXrE/SbIsd5Rlud5DPn4DEosGcvcGdA99ZZYkyRH4E3hPluVD9537pqzIBcKBZo/JMV+W5RBZlkM8PMSK0ArHpwFUDoGIxQbxYmPoHK0teKFxJX4/FU9qdr7accrm3P+UHkDBQ/7zkPMLL1Dp88/JOnaM6OEjKMzIUCGgYTkbl8rJmBT6Nw8wmbv9JqHJYJDMlNcwHfB18GVx18U4Wjoy/K/hnEwyrS3wnet64elgxXJTuGl1dKHSnqNWD52cTs7LI3biRNK3bsVz6lu4DRumk/MaitVHopFQlvYKBiQ4FJLOQexRVWP8dvU33tn7DiFeIczrOA87C93uiTVVZb118jtwr77wYOC3fx8gSZIlsAFYJsvyL/967N5gUULZ/2d6tykF3QkZCrcvQ9R+tZMYhX7NAsjJ17LhuJE3MY5YDG7VILDNQx926tGdyl9+Sfbp00QPDaMw1XgaxOrDsoOR2FiY8XKwr9pRhPs5+kDt7kq1znzdLEGubF+ZJV2X4GrtyohtIziaoO4bMV2yMNPQt5k/ey7fIuqOEc/ep0QrezebDALzsu+n1ebmEjvudTK278DrvfdwCw0te0YDklegZW1EDM/U9qKSs43acYT71e+l1FNQsXjL+svreX//+7TwacH3z3yPrYWtalmMTVkHfJ8CnSRJugJ0Kvo7kiSFSJJ0b7PCq0A7IPQh7RdWSpJ0BjgDuAMflTGPYMrqvgjWTjq7Q27q6vs60dDXiZWHo5GNdVY0/iTEHoGmw5SKrY/g2LULvt9+Q+6FC0QNGULB3Yq51zMlK4/fTsbzQuPKONlYqB1H+LeQMGUf8rn/6eyU3nbeLOm6BB87H0ZvH83B+IM6O7fa+jbzRyNJrDLmAlTHliivXcGhZT6VNieH2DFjydizB+/p03Ed0L/M5zQ0W84lcDsjT7RiMERWDkoRvXO/qlJP4eeLPzP94HRaVW7Fd898h425uCFQGmUa8MmyfEeW5WdkWa5e9Dm56OsRsiwPK/rzClmWLe5rvfBP+wVZljvIsly/aInoAFmWxXos4dEsbaFhPzj/O2SIfZwl0b9FAFeSMjgaaaQDoKMLwMJWKWVeDIcOHfCd+wN5164TPTiUgtsm2Li5GOuOxZJboGVgC1GsxSBVaQdu1SFikU5P62HrweIui/Fz9GPsjrH8Hfu3Ts+vFm8nazrX8eLniBhy8p+8pYVqCvLg+DKo3gWc/cp0Km1WFjGjRpG5fz8+sz7CpU/v4p9khFYcisLf1ZZ21cXWHYPUNEypp3BiZbledtm5ZXx0+CPa+7bn26e/xcpM1HgsLbEbVjAuIUNAmw8ny/fFxlj1aFAJB2tz4yzekpUMZ9YpFVptStZXx75tW/x+nEdedDRRgwaTn2gCBR9KSKuVWX4oipAAF+pUEtXKDJIkKW+YYo8qs9c65GbjxuLOiwlyDmL8rvHsiN6h0/OrZWCLAFKy8vnz9E21o5Tehd8h85ayQqEMCjMyiB4+gqzDR/D55GOcX35ZRwENy+XEdI7cSKZfc380GrH/2CB51wf/lsrNWK22+ON1YP7p+XwR8QWdAjox56k5WJqJVkNPQgz4BOPiUVMpbX0svNxebIyZjaXSxHjz2ZvczjCyJsYnVyp3EpsOL9XT7Fq2xH/BfAoSEogaNJD8m0b4RvEJ/H3lFlF3shjYUszuGbSGfcHcRuezfADO1s4s7LKQOq51mLx7MltubNH5NcpbyyA3qnrYGWfxlojF4BIIQR2e+BSFKSlEDxlK9qlTVP7qS5xf+E+7Y5Ox6nA0lmYaXhH7jw1bs+FwNxKubtfrZWRZ5tvj3/Ldie/oXrU7n7f7HAszsVXhSYkBn2B8QoYoLzbXd6mdxCj0b+5PfqHMumNGVLxFq1Uq2/m3BO96pX66bdOm+C1aSOGdZKIGDCQvxoQaOD/CikNRuNtb0q2ej9pRhMexcVaKH5xZp5cmxo6WjszvPJ+GHg15a+9bbLy2UefXKE+SJDGwRQAnY1I4E2tEBZmSLigFxoKHgObJ3moV3LlD1OBQci9exPfbb3Hs2lXHIQ1HVl4B64/F8mx9b9zsxXI9g1arB9h7KbN8eiLLMl9EfMGCMwt4ufrLzGozC3ONud6uVxGIAZ9gfGr3AFt3UbylhKp7OdC8itLEWGssTYyvblcG9c1KN7t3P9vGjfEPD0ebkUFU/wHkXrumu3wGJiY5ix0Xk+jT1B9Lc/GybvCaDoP8LL31FbWzsGNex3k09WrKu/veZd3ldXq5Tnl5qYmv8fUVPboIzCyh8YAnenp+YhJRAweRFxWF74/zcOjwtI4DGpbfT8aTnltAf7H/2PCZWyo3Mq5sgzu6/72qlbV8dOgjlp9fTv/a/fmg5QdoJPF7razEf0HB+JhbKb9EL22CFNOfudGF/i0CiE7OYu9VIylkcnSBcgexjH2rbOrXw3/ZMmStlqgBA8m5cEFHAQ3LysNK36p+orKdcajUCCoHK8s69VRB19bClu+f+Z42ldvw4cEPWXpuqV6uUx6cbJS+or+diiM1ywj6iuZmKIP5ui+CnXupn54fF0fUwIEUJCTgv2A+9q1b6yGk4ZBlmRWHo6jp5UBIgIvacYSSCA4Fje76it5TqC3k/f3vs/byWobWG8pbTd8S/WR1RAz4BON0bxP80YWPP04AoEtdL9zsLI3jDnnyDeXOYXCoTvpWWdesQcDyZUjW1kQNDiX7pGk1qM7JL2RtRAyd6oi+VUal6TClr2jkXr1dwtrcmm+e/oZOAZ2YHTGbeSfnGW2LlgEtlL6i64yhr+iZXyAvXWnDUUp5kZFEDhhIYUoK/uGLsW3aVA8BDcup2FTOxqUxoIW/eHNvLBx9lNVWJ5ZDXpZOTpmvzWfq3qn8fu13RjcazYQmE8S/Bx0SAz7BODn7Qa3ucHypzpoYmzIrczP6NvNn+4VEYpJ18+KsNxGLQNLopG/VPVZVqhC4YjlmLs5EDZp9GBsAACAASURBVA0j89BhnZ1bbZvO3CQ5M49BLQPVjiKURt0XwcZFWfqnRxZmFnze7nN6BvVk7qm5fBnxpVEO+upWcqKJvzMrDkUZ9tJ0WVZew7zqgV+zUj019+pVIgcORM7JIWDpEmwaNtRTSMOy8lAUtpZmvNC4stpRhNJoNgJyUpUbHGWUW5jLpF2T2BK5hUnBkxjVcJQY7OmYGPAJxqv5a0rzTx282FQEA1oEoJEklh2MVDvKo+VlwfHlyp1Dx0o6PbVF5coELF+OZeVKxLz2Ghl79uj0/GpZdjCKqh52tApyUzuKUBoWNtCoP1z8A9IT9Hopc405M1vPpE/NPiw9v5SZh2ailY2vyvHAlgHcuJ3JgWt31I7yaLFHIeEMhAxV2nCUUPaZs0QNGAhAwPJlWNeura+EBiUlK4+Np+N5vlFlHKxFBUaj4t9SubFxZEGZlqZn5mcyevtodsfu5t3m7zKk3hAdhhTuEQM+wXgFtFZebA7/pLd9MKbE28mabvW8WXM0hszcArXjPNzZ9ZCTUqZiLY9j4emJ/7JlWAUFETN2HGlbturlOuXlTGwqJ2NSGNgiQNwNNUYhQ0FboDTn1jONpOGd5u8QVi+MXy7/wjv73qFAa6CvA4/QrZ4PrnaWLD8UqXaURzu6CCztlf6hJZR55AjRoaFo7OwIXLkSq2rV9BjQsKw+EkNOvpZBop2M8ZEkZWl64hmIebJVM6m5qYz4awTHEo/xcZuP6VOrj45DCveIAZ9gvCRJmeVLPAtRB9ROYxSGtK5Cek4Bv56IUzvKf8myUqzFo7YymNcTcxcX/JcuwaZ+feImTSJlw//0di19W34oEltLM14WfauMk1uQ0qMtIhwK9T/4kiSJCcETeL3x6/x5/U8m755MXmGe3q+rK9YWZrwa4se284ncTDXApfwZt+DcBmjYB6wcSvSU9N27iRk+AnNvbwJWrcTSv+IUXioo1LL8YCStgtyo7eOodhzhSTR4Fayc4Mj8Uj/1dvZthmwdwoXkC3z11Ff0CCpbkTbh8cSATzBu9V9R9sEc/lHtJEahib8zDXydWLL/huHt44mNgJunoNmwUi2FehJmDg74L1yAXYvm3Hz7bZKX6X+GRddSsvL47WQ8LzSujKNYCmW8mg6D9Hi49Ge5XXJ4g+FMbTaVnTE7GbtjLFn5Br6v9z79m/sjA6sPR6sd5b8iFkNhLjR7rUSHp/7xJ7Fjx2FVrRoBK5Zj4eWl54CGZeu5ROJTcxjSuoraUYQnZWmnVE0//1uplqbHZcQxaPMgYtNjmdtxLh38O+gxpABiwCcYOwsbaDJY2QcjWjQUS5IkhrQO5NqtTPZeMbAWDUcXgKUDNOhdLpfT2Nri++OPOHTqROLHn3Dr228NbxD8GL9ExJJboGWg6Ftl3Gp0BWd/ODSvXC/bv3Z/ZrSaweGEwwzfNpzUXONoau7nasvTNT1ZdSSGvAID2odYkKtUja7WCTxqFHv43TU/Ez9litIvdOkSzF0qXjuCxftv4O9qS4danmpHEcqiaZiyNP1YyVq/XE+9zuDNg0nJTWF+p/m08Gmh54ACiAGfYApEi4ZSeba+D+72Viw5EKl2lP93bylUo34lXgqlCxpLSyrP+Qqnl1/i9tx5JM78CFlrQG8iH0GrVfpWNQ10EUuhjJ3GDJqPhOiDEHe8XC/9YvUX+bL9l1y4c4HQLaEkZSWV6/Wf1MCWAdzOyGXTmZtqR/l/Z3+FzCRoMarYQ+8sXEjC9OnYt2uH34L5mNnbl0NAw3I6NoVjUXcZ3CoQM43Yf2zU3IKgWseiGe7H98m8cOcCQ7YMIV+bT3iXcBp5NiqnkIIY8AnGz9kPaj0nWjSUkJW5Gf2b+7PzYhI3bmeqHUdxfCkU5v3/4L0cSebm+Hz0Ea5Dh3J31Sri33wLOd+wmzv/feUWUXeyGChaMZiGxgOV2e1ynuUD6BjQkbkd5xKfEc+gzYOITjPApZL/0r66B0Eedizcd90wZuVlGQ7NBfeayp7MRx4mkzTna5Jmf4njs8/i+/13aKytyzGo4QjfH4m9lTmvhoj9xyah6XDISFBWWz1CREIEYVvDsDSzZGnXpdR0rVmOAQUx4BNMQ/ORokVDKfRv4Y+FmcRSQ5jlKyxQilZUaV+ipVD6IEkSnlPewGPSJNL++IPYsePQZhvuzYPw/ZF4OFjRta632lEEXbB2VPbBnPsV0uLL/fItfFqwqMsiMvMzGbR5EJeSL5V7htLQaCSGtqnC2bg0jtxIVjuOUjQs4bQyu/eI/cdyYSEJH0znzk8/4dy7N5W++BzJomLuvU1Ky+GP0/H0CvYVrRhMRfVO4BygtGh4iJ3RO3lt22u42bixrOsyAp0CyzefIAZ8gokQLRpKxdPBmu4NKrHuWCzpOSrPZl3eDGmxemvFUFKSJOE+Yjje06eT8fffRA8bTmFamqqZHuZyYjp7Lt9icMsALM3FS7jJaP4aaAtVW5pez70eS7suxVxjzpAtQzieWL7LS0vrpca+ONtasGjfDbWjKLN7Ni6P3H+szc0lbsJEUtauxW3ECLynf4BkZlbOIQ3HikNRFGhlQlsFqh1F0BWNmbJCJ2o/JJ574KENVzYwcfdEarjUYFm3ZfjY+6gUsmIT7xYE0yBJ0GyEaNFQCqGtAsnILWDdsVh1gxz4XilaUaObujmKuPTpTeUvZ5N9+jRRgwZTcNuwitss2nsDawsN/ZuLYi0mxbWKsjQ9YjHkqVM1s6pzVZZ3W46bjRuvbXuNv2P/ViVHSdhYmjGgeQDbLiQSqebS9OQbcPFPCB4Clrb/ebgwI4OY4SNI37YNr3fexnPSxArdMzMnv5CVh6N5ppYnge52ascRdKnxADC3fqBFw+Kzi5l2YBrNvZuzqMsiXKwrXnEiQyEGfILpEC0aSqWhnzNN/J1ZeiASrValWdGYoxBzCFqMATNzdTI8hOOzz+I3dy55UVFE9utPXrRh7Gu6lZ7LhhNx9Ar2xcXOUu04gq61GK0sTT/9s2oRfOx9WNptKVWcqjB+53j+vF5+7SJKa1DLAMw1kroFqI4s+P/ZjX8puH2bqEGDyDp+nEpffIHroEEqBDQsG0/FcyczT7RiMEW2rkpfvlNr0GYk8WXEl8w5NoeugV354ZkfsLX47w0RofyIAZ9gOixtRYuGUgptXYXIO1nsvqxSdb6D34G1k3Jn0MDYt21DQPhitGlpRPbtR/bZc8U/Sc+WH4oiX6tlqHizZJoCWoFPQ6V4i4pL012tXVncZTGNvRozde9Ulp4rWbn18ubpaE2PhpVYGxFDarYKS9Nz0uD4MqjzAjhVfuChvJgY5WbRjUj85s3FqUf38s9nYGRZJnx/JDW9HGgV5KZ2HEEfWo4lvyCH97cMZ8m5JfSt1ZfP2n2GhZnYq6k2MeATTEvTMOVzxCJ1cxiJbvW88XK0Inx/ZPlfPPkGXNioLIWyMsyy5DaNGhGwahUaKyuiBw0iY/9+1bLk5Bey4lAUz9TyoqqHYf73EspIkpRZvtuX4OoOVaPYW9ozr+M8Ogd0ZnbEbL44+gVa2fBaloS1qUJWXiFrjqgwC39yFeSlK//P7pNz4QKRffuhTU0lYEk49m3bln82A3T4RjLnb6YR2jqwQi9rNWXZLv5MrFqH3zOvM6b+a7zd7G00khhqGALxf0EwLc7+yj6YY0tEi4YSsDDTMLBFAHuv3OZqUnr5XvzQPJDMlGIVBsyqahUCVq/Gws+PmNdGkrpxoyo5fj0eR3JmHsPbitk9k1b3JbD3VgqBqMzKzIov2n9Bv1r9WHZ+GVP3TiWvME/tWA+oW8mJllXdWHogkvzCchyQaguV7QO+zcA3+J8vZx45QtTAQUgWFgSsWolNw4bll8nAhe+/gYutBS82rlz8wYLRSclJYcRfI/hbzuS928mM1NqKgb0BEQM+wfTca9Fweq3aSYxC32b+WJpryncfTPZdOLEC6vcCx0rld90nZOHlScCK5dg2aUL8lDe5szi8XK+v1cos3Hed+pWdaFbFtVyvLZQzc0toNgyu7YCki2qnQSNpmNpsKhOaTGDzjc2M3j6ajLwMtWM9IKxNFeJTc9h8NqH8Lnp5K9y9AS3/f3YvbfNmYsKGYe7lReCqlVgFBZVfHgMXk5zFtvOJ9G3mj7VFxa1Qaqpi02MZuHkg5++cZ3b7L+jtUEMpyKYtVDuaUKRMAz5JklwlSdomSdKVos8PLb8jSVKhJEkniz5+v+/rVSRJOlz0/J8lSRJVCISyC2gN3vXh4PegNbwlSIbGzd6K5xtWYv2xuPLbBxMRDvmZ0HJs+VxPB8wcHPBbuACHrl1J+vxzEj/9DLmc/n3tupTE9VuZDGtbRdwxrQiChyrV7g6XfyP2h5EkibD6YcxqM4tjiccI3RLKraxbasf6R4danlRxt2PR3nJsxH5oLjj6Qq0eyLLMnfAlxE2chHWDBgSuXIGFjyg9f7+lByKRJImBLUV1YVNz7s45BmwaQHJOMvM7z6dzYBdoNQ6Sr8GlzWrHE4qUdYZvKrBDluXqwI6ivz9MtizLjYo+et739c+AOUXPvwuElTGPICj7YFpPgNuX4dImtdMYhdDWgWTnF7LqcDnsgynIU/olVn0avOvp/3o6pLG0pPKXs3Hp35/kJUuIf/Mt5Dz9L3FbuPcGPk7WPFtfvImsEOzclJ5up9ZA5h210/yjZ1BPvnvmO6LToxm4eSA3Ug2gBx5FjdhbB3IqNpVjUXf1f8GEMxC5F5qPQEYi8ZNPSPrsMxy6dMF/8SLMnJ31n8GIZOYW8HNEDN3qeePjZKN2HEGH9sXtY8iWIViaWbK823KCvYqWN9fuqWyxOfCdugGFf5R1wPc8cK9811LghZI+UVJuU3cA1j3J8wXhseq8AM4BsG+OaMReAnUrOdGmmjuL998gJ1/PSzDOroOMBGhlPLN795PMzPB67108Jk0i7Y8/iB4+gsLUVL1d72xcKgev32FI60AszMQq/AqjxSgoyIFji9VO8oA2ldsQ3iWc7IJsBm0exMmkk2pHAuDlYF+cbMqpEfuhH8HCFm2d3sRNnMTdZctxHTyYynO+QmNlpf/rG5n1x2NJzylgaBux/9iUbLiygbE7xhLgGMCKZ1dQ1bnq/z9oZq60W4o5BDFH1Asp/KOs7x68ZFm+CVD02fMRx1lLkhQhSdIhSZLuDercgBRZlguK/h4LiJ28gm6YmStLCuIiIEq9yorGZPRTQdxKz2X9cT02YpdlZV2/Zx0IekZ/19EzSZJwHzGcSp9/Rtbx40r59dg4vVxr0b4b2Fma0bupv17OLxgoz9oQ1AGOLFRmxQ1IXfe6LO+2HAdLB8K2hrE1cqvakbC1NKdfc3+2nksgJlmPjeszbsGZtRRU70X06ElKQ/W3p+L19lQkjbgh828FhVoW77tR1PdVNN02BbIsM+/UPKYdmEYz72aEdwnH0/Yhb/8bD1DaLolZPoNQ7KuTJEnbJUk6+5CP50txHX9ZlkOAfsDXkiQFAQ/biPLIqRhJkkYUDRojbt0ynL0DggFrPABs3WHf12onMQotg9xo6OvET3uuU6CvanfXdkLSOWXvngnsRXPq2RP/hQspuHWLyD59yD5zVqfnv5mazcZT8fRu6o+TjehjVOG0GKPMhp/boHaS//B39GfFsyuo41aHN/a8weKzi8tv/9wjDG4ZiEaS9NtmJmIReamFRC24QM65c1SeMwfXwYP1dz0jt+lsApF3shjVXhSwMQUF2gI+PPghc0/OpWdQT37o+AP2lo9oE2RlDyFhSvul5OvlG1T4j2IHfLIsd5Rlud5DPn4DEiVJ8gEo+vzQ7s2yLMcXfb4O7AYaA7cBZ0mSzIsO8wXiH5NjvizLIbIsh3h4eJTiWxQqLAsbaDESrm6DBN2+ETdFkiQx6qlqRCdn6a/a3YHvlJLz9Xvp5/wqsGvejMDVSq++qEGDSN+5U2fnXnogCq0sM6R1oM7OKRiRoA7gXgMO/WCQS9NdrV1Z2GUhXQK7MOfYHGYemkmBtqD4J+qJt5M13Rv4sDYihrQcPRSgys0g+8+fiNxVmYK0DPzDF+PYtYvur2MiZFlm7q6rVPO0p3MdL7XjCGWUkZfB2B1jWX9lPSMajOCj1h9hoSnmRmTz18DMAg6q32amoivr+oPfgXu3tgYDv/37AEmSXCRJsir6szvQGjgvK7cCdwG9Hvd8QSiTpsPA0h72i1m+kuhcx4sgDzvm7r6m+7v1CWfh+i5oPgLMTWufi1VQEIFrVmMVFETsmLEkL19R5nNm5haw6nAU3er54Odqq4OUgtHRaKDlGLh5SpkdN0BWZlZ83u5zhtYbyi+Xf2HszrFk5meqliesTVUycgtYezRG5+dOm/8eUZss0Tg4E7h6FbbBwcU/qQLbeTGJiwnpjH4qCI3G+Fd0VGTxGfEM3DyQwzcP80HLDxjXeFzJKkY7eEODV5U2TFnJ+g8qPFJZB3yfAp0kSboCdCr6O5IkhUiStLDomNpAhCRJp1AGeJ/Ksny+6LG3gEmSJF1F2dO3qIx5BOFBNi4QHApnf4W7UWqnMXgajcTI9kFcuJnGnss6Xjp98AewsIPgIbo9r4Ew9/AgYNlS7Dt0IHHWLBI/+RS58MkL4PwSEUNaTgFhotF6xdawLzhWhr9nq53kkTSShonBE/mg5Qccij/E4M2DScgsx55496nvq/SqXLzvBnkFulmaLssyt3+cR9wPW7H2siFw3QasqlYt/okVmCzLfL/rKr4uNvRoaPi9VoVHO33rNH3/7EtiZiLzOs2jV41SrtBpORYKsuHowuKPFfSmTAM+WZbvyLL8jCzL1Ys+Jxd9PUKW5WFFfz4gy3J9WZYbFn1edN/zr8uy3EyW5WqyLL8iy3Ju2b4dQXiIlmNA0ih9+YRiPd+oMj5O1szdfU13J027CWd+KdpXabqNwzW2tvh++w0uAweSvHQpsePHo80qfQGJQq3M4v2RBAe4iEIHFZ25FbQeD9EHINKwC1D1qtGLH575gdiMWPr/2Z+Lyeo0jh/9VBDxqTn8qoMCVHJeHjffe49bX3+Lo38W/nNnY+7uroOUpu3Q9WRORKfwWruqorqwEdsauZWhW4diY27DimdX0MKnRelP4lkbqndW2jHl5+g+pFAi4qdQMH2OlZSeVseXQ+ZttdMYPEtzDcPbVuXIjWSOReloCcaRn0AuVErNmzjJzAzvd9/B6523ydi5i8j+A8i/ebNU5/jzzE2ik7MYJsqYCwBNBoGdB/z9hdpJitW6cmuWdl2KJEkM3jyY3TG7yz1D+xoeNPB14ofdV8kvQwGqwpQUoocNJ3X9r7g3kaj0SnU0NY23unB5mrv7Ku72VrwS4qd2FOEJyLLMwjMLeWPPG9R2rc2q51Y92HahtFqNg6zbcHqN7kIKpSKpXVXrSYSEhMgREREPfC0/P5/Y2Fhycire3QNra2t8fX2xsBBV/B7p1iX4oTm0mwId3lU7jcHLyiug9ac7CQ5wYeHgpmU7WU4afF0Pqj4Fry7TRTyjkbFnD3GTJiPZ2OD3w/fYNGxY7HO0WpkuX/+NJMGW8e3E3hdBsf8b2DYNhu0A3xC10xQrMTOR13e9zoU7F5gQPIEhdYeUbM+Pjmw/n8iwZRHMfqUhvYJ9S/38vMhIYl4bSX58PD7Dn8UpeR70Wws1RJGW4pyOTaHn9/uZ2q0WI0V1TqOTX5jPhwc/5Ldrv9GtSjdmtp6JlVkZ993LMsxvD3lZMOaIsj9Z0AlJko4VdUJ4LPPiDjAWsbGxODg4EBgYWK6/VNQmyzJ37twhNjaWKlXEbMAjedSEWs/BkfnK8iirR5QRFgClp1VoqyrM2X6ZSwnp1PR2ePKTHfkJclKh9QTdBTQS9u3bE7hmNTGjRhM1cBA+s2bh1KP7Y5+z6exNriRl8F3fxmKwJ/y/kKGwb46yl6+f4d8l97LzYknXJby//33mHJvDtZRrTGs5rexvHEvomdqe1PFxZO6uq7zYuDJmpfhZyjx8hNjXX0fSaPBfvAjbQyPBu76yLE0o1txd13C0Nqd/c9E71Nik5KQwac8kjiYcZVTDUYxqOEo376klCVq9DuvD4PJm5f2YUK5MZoidk5ODm5tbhRrsgVJK383NrULObJZa6wmQkwLHl6qdxCgMbhWAraUZP+4pw16+nDSl0XqNrlC5ie7CGRGr6tUJ/GUtNg0aED9lCklff42sffgyM61W5tsdV6jmac+z9X3KOalg0KwcoMVo5c3SzdNqpykRG3Mbvmj3BWMajeH3a78TtjWM29nls6xekiTGdajG9duZ/HH6kR2f/uPu2rVEDxuGuZsbgWt/xtYmBu5chbaTTaJ3qL5dSUxny7kEQlsF4mAtVh0Zk8t3L9Pnzz6cTDrJx20+ZnSj0bp9T13nBXCpAns+M8g2M6bOZAZ8QIUb7N1TUb/vUvNrCgFtlGqRBXlqpzF4zraW9Gvmz++n4olJLn3hEUDZpJ2TAk9N1W04I2Pu4oL/4kU49XqZOz/+RNz4CQ8t5rLlXAKXEzMY16FaqWYkhAqi2QiwcoS9X6qdpMQkSWJkw5F82f5LLiVfou+ffblw50K5XLtLXW9qeNnz/c6raLWPf4Mp5+eTMGMGCdM+wK5ZMwLXrMbS1xf2fgVu1aF2z3LJbOzm7bmGjYUZoa3FiiNjsiN6BwM2DSCvMI8lXZfQI6iH7i9iZg7t31TazFzapPvzC49lUgM+QzJ9+nRmz1bKaE+bNo3t27eX6XyFhYU0btyY7t0fvxxMKEabCZAWp1SMFIoV1rYKGgkW7L1e+ifnpCqVUWt0g0qNdR/OyEiWlvjMnInX21NJ37GDyAEPFnO5N7sX5GFH9waijLnwEDbO0Gw4nP9N2ZdsRDoHdmZpt6XIsszgLYPZHlW234klodFIjO1QnStJGWw59+g2EQXJyUQPGcrdVatxHToUv59+xMzRES5vhcQz0HYSaMz0ntfYxSRn8dvJePo198fVzlLtOEIJaGUt807NY8KuCVRzrsaa7mto4NFAfxes/yq4BsGuT+ARK10E/RADvnIwY8YMOnbsWKZzfPPNN9SuXVtHiSqwah3Bq55SAEG82BTLx8mGlxr78vPRGG5nlLJripjd+w9JknAdPBi/H+eRHxXNjV6vkHX0KAB/nU/gYkI64zpUF7N7wqO1GA0WNsrMk5Gp41aH1c+tprpzdSbunsi8U/PQyvp9HX6uvg9VPez4budVHlakLufCBW706kX26dNU+vwzvN6cgmRuriw52zsbnP2h/it6zWgq5v99HY0Ew9uKHoXGICs/izf2vMHck3PpUbUH4V3D8bT11O9Fzcyh/VvKjZSLf+j3WsIDxIBPh2bNmkXNmjXp2LEjly79/93X0NBQ1q1bB0BgYCDvvPMOLVu2JCQkhOPHj9OlSxeCgoL48ccfH3re2NhY/vzzT4YNG1Yu34dJkyRlL9/tS3Dhd7XTGIUR7auSV6glfP+Nkj/p3uxezWehUiP9hTNS9u3aEbj2Z8wcHYkaMpQ7S5fxzfYrVHW3E02Khcezc1cKuJz5BZKfYOZdZR62HizuupjuVbsz9+RcJuyaQHpeut6uZ6aRGPNUNS7cTGP7haQHHkvbvJnIvv2gUEvAypU49bxv2eaNvyH2qFLky0zsRStOUnoOP0fE0CvYF28na7XjCMWIy4hj4OaB7IjewRshbzCrzaxyK6hE/V7KMundYpavPJlMlc77fbjxHOfj03R6zjqVHPmgR91HPn7s2DHWrFnDiRMnKCgooEmTJgQHBz/0WD8/Pw4ePMjEiRMJDQ1l//795OTkULduXUaOHPmf4ydMmMDnn39Oerr+filWKPVeUvpZ7ZoFtbord5yERwrysKdbPW+WHYxiRLsgnGxK8ObncFFlzvZv6T+gkbIKCiJw7c/EvzWVpE8+4Vm/YHxnfihm94TitRoHRxbAvq+h57dqpyk1KzMrPm7zMXXd6jI7Yjb9/uzH109/TZCzfkr4P9+oEt/suMK3O67QsbYnaLXc+uZb7syfj03jxvh++w3mHh4PPmnvbLD3hkYD9JLJ1Czad4OCQi2vtRNtGAzd0YSjTN49mQK5gLnPzKV15dblG0Bjpqz8WR8GF36Dui+W7/UrKDHDpyN79+7lxRdfxNbWFkdHR3r2fPQG73uP1a9fn+bNm+Pg4ICHhwfW1takpKQ8cOwff/yBp6fnIwePwhPQmEGH9+D2ZdEEtITGPF2N9JwC5v9dgoqd2SlFs3vPidm9Ypg5OFD5u2/Z0qwnHWKO0/CzKeTHxakdSzB0Dt5KM/aTqyAlRu00T0SSJAbUGcCCzgtIy0uj35/92Ba1TS/XMjfTMObpIM7EpbLn+HViR4/hzvz5OL/SC/+lS/472Is5oszwtRoHFmK2qjipWfmsPBTNcw0qEehup3Yc4RFkWWbpuaUM/2s4ztbOrHp2VfkP9u6p+yK414Tdn4K2UJ0MFYxJTm08biZOn0paLdPKSpk212g0//z53t8LCgoeOHb//v38/vvvbNq0iZycHNLS0hgwYAArVqzQXfCKqHYPqNREebGp/wqYl9NSBiNVt5ITPRtWYvG+SAa3DMTT8TFvgu7N7j0lZvdKYsel23xTqR2132hGlZ8+48bLvaj89RzsWrRQO5pgyFqPh2PhcOBbePYLtdM8sabeTfm5+89M3j2ZSbsnMbTeUF5v/DpmOi6S8mJjXzas3YXFqFAyslPwmvY+Ln37Pvz39t+zwcYVQoboNIOpWrT/Bhm5BYx+SszuGaqMvAymHZjGtqhtdPTvyMzWM7G3VLEf8b1ZvnVD4NwGZZmnoFdihk9H2rVrx4YNG8jOziY9PZ2NGzfq5LyffPIJsbGxREZGsmbNGjp06CAGe7ogSfDMNEiNgYjFaqcxCpM71yC/UMu3O688+qDsFKXtRa3u4NOw/MIZKVmW+WbHZQLcbOk45EWq/LIWM3c30SMAswAAIABJREFUooeGcWdx+EOLTAgCAM5+0LAvHFsK6YlqpykTbztvwruG06tGLxafXcyo7aNIyUkp/omlkPW/X3l/85do8/JJ/fg7XPv1e/hg7+YpuLJVKY5jKWaripOUnsPCvdd5roEPtX0c1Y4jPMTVu1fp+2dfdkbv5I2QN/jqqa/UHezdU+cF8Kyj9OUTs3x6JwZ8OtKkSRN69+5No0aNePnll2nbtq3akYTiVH0KAtsqd3NzM9ROY/AC3Ozo28yfNUdiiLyd+fCDDv8IuWLvXkntvJjE2bg0xjxdDXMzDZaBgQSu+RmHjh1J+vxz4sZPoFDs3RUepc1E0OYrs3xGztLMkg9afsD0ltOJSIyg9x+9OXfnXJnPq83JIf7dd7n53vvYhQQzo+dUvop/zIqObR+AjYvS/kIo1jfbr5BXoGVK55pqRxEeYtP1TfTb1I/0vHQWdF7A4LqDDad3s0ajzPLdvgxn16udxuRJxngHOSQkRI6IiHjgaxcuXKjQbQsq+vf/xGKOwqKO8PR70H6K2mkMXlJ6Du0/303HOl581/dfvfWyU+DrBlClLfRZqU5AIyLLMs//sJ+7WXnsnPwUFmaaBx5LXhxO0ldfYVGpEpW/noNNXXWWqgsG7n+jlYqdYyPAJUDtNDpx5tYZJu6eSHJOMlOaTqFPzT5P9CY1Lzqa2PETyL1wAbdRI/EYO5Ylh6L5cON51oxoQYuqbg8+4eoOWPESdPkEWo7W0Xdjuq7fyqDTnL/p39yfGc/XUzuOcJ/8wnxmR8xm1cVVNPFswhftv9B/y4UnodXCT20hPxvGHBFF9J6AJEnHZFkOKe44McMnVGx+TZXiIge+haxktdMYPE8Ha8LaVGHjqXjOxqU++OCheWJ2rxR2X7rF6dhUxj5d7YHBHij7gd3ChhKwfDlyfj5RffqSvGqVWOIp/NfT74KkgZ0z1U6iM/U96vNLj19o4dOCjw9/zOQ9k0vduiF9505uvNyL/Ph4fH+ch+f48UhmZvRt5o+ngxWfbbn44M+TthC2TQPnAGgapuPvyDR9sfUS1uYaXn+mutpRhPskZCYwZOsQVl1cxcA6A1nYZaFhDvagaJbvbUi+pty4EvRGDPgEocN7kJsO++aoncQojGhfFWdbC77Y+v+9JslOUQZ8tbqDTwP1whkJrVbm6+2X8XWx4aUmvo88zrZJY6ps+BXbli1InDGT+MmTKcwQy4+F+zhVhpZjlTdLccfUTqMzLtYufP/M90wMnsjO6J28uvHVEi3xlPPzSZo9m9jRY7D086PK+nU4PPXUP49bW5jxRueanIhO4Y/TN///iad/hsSz0PEDUcSrBI5H32Xz2QSGt6uKu73472Uo9sTs4ZWNr3D57mW+aP8FbzZ9EwuNgfeRrPUceDdQ9vIVFhR/vPBExIBPELzqQINX4ch8SLtZ/PEVnKO1BaOfCmLP5VscvHZH+eKhucrs3lNT1Q1nJH47Fcep2FQmdKzxn9m9fzN3ccHvxx/xmDSJtK1/EflyL3IuXCinpIJRaDMB7Dzgr/fBhGaBNZKGofWGEt41nHxtPgM3DWT1xdWPnOnOi4khsv8A7ixchHPv3gSsXoWl739vqLwc7EttH0c+3XyRnPxCZTnZzo+Uys11X9L3t2X0ZFnm000Xcbe3YnjbqmrHEYC8wjw+O/IZY3eOxdvOm7Xd19I1sKvasUpGkuDpd+DuDdEqS4/EgE8QQFlSoC2Avz9XO4lRGNQyEB8na2VZVGosHPgO6jwP3vXVjmbwsvIK+GzzJRr4OvFS48oleo6k0eA+YjgBS5egzc4msncf7q75WSzxFBRWDsprWNR+uLRJ7TQ619izcbFLPFP/+JMbL7xI3o0bVP56Dj4fTkdj9fCZJzONxHvP1SYuJZvw/ZHK6oS0OOj8kfLmU3isnReTOBKZzPiO1bGzEnuu1BaVFsWATQNYcWEF/Wv3Z+WzKwl0ClQ7VunU6AqVGiuzfAV5aqcxSWLAJwgArlUgOBSOL4Pk62qnMXjWFmZM6FidkzEp3Fz3lrL/pdMMtWMZhR/3XCchLYdp3eug0ZTuzaVtSIiyxLNpUxKmTyfu9dcpuHtXT0kFo9JkMLjXUPahFearnUbn7i3xnBQ86Z8lnqdunUKbmUn8O+8S/8YbWNWoQdX/bcCxa/EzG62rudOxtierdh1Hu/crqPksBKrUhNqIFGplPttykSrudvRp6qd2nApv47WNvLrxVeIz4/n26W+Z2mwqlmaWascqPUlSttekRMPheWqnMUliwCcI97SbAhoL2PWJ2kmMwstNfOnpEk2lmD/QthwHLoFqRzJ4cSnZ/LTnGj0aViIk0PWJzmHu5obfgvl4vvkm6bv3cOP5F8g8cEDHSQWjY2YOnWbCnatwbInaafRCI2kYUm8I4V3D0cpapi0ZyIkenUjdsAG3USMJWL4Mi8olmzUHePvZ2oRp1yHnZUHH6XrLbUrWH4/lcmIGU7rULHY5uqA/WflZvLvvXd7Z9w61XGuxrsc6nvZ/Wu1YZVOtozLTt+dzSE9QO43JET+tgnCPgzc0f00pfpBY9v5Pps5ckplptYx42ZUN9q+qHccofLr5IgBTu9Uq03kkjQa3oUOo8vMaNPb2RA8NI/Gzz9HmiaUwFVqNLkpv0d2fQE5q8ccbqUYejQhPf4VZSwvJSbvL8pHVyB3yEpJ56ZYXBmkSGWi2jZ8Ln+KytpKe0pqOnPxC5my7TEM/Z7rV81Y7ToV19vZZev/Rm43XNjKy4UgWdVmEt52J/P/o8jEU5in9MAWdEgM+PZk+fTqzZ88GYNq0aWzfvv2JzxUYGEj9+vVp1KgRISHFttoQyqL1eLByhB1ieWKxTqzAKeU8qxyH8eWuWKX4gfBIx6KS2XgqntfaVaWys41Ozmldpw5V1q/DpV9fksPDiXy1N7lXr+rk3IIRkiRlH1rWHZOtOpyfmEjM8BGkfvYlTm3bk7FwBrs9btNrYy82XNlQun2tO2agsbBigVlvZv0pCiEVJ3x/JDdTc3i7Wy3Dad5dgeRr85l7ci4DNg0gqyCLRV0WMabRGMw1JrSP0i0IWo1TirdEH1Y7jUkp04BPkiRXSZK2SZJ0peizy0OOeVqSpJP3feRIkvRC0WNLJEm6cd9jjcqSx1DNmDGDjh07lukcu3bt4uTJk/y74bygY7au0HYiXN4Cl7aoncZwZacog2L/lrR6fgTxqTksPxildiqDpdXKfLjxPN6O1ox8Kkin59bY2OA9bRq+8+ZSkJTEjZd7iZ59FVmlRtCgDxycCykxaqfRGVmWSf39d6736EnWsWN4TXsf37k/0KXRK6zvuZ667nWZdmAak3ZPIiUnpfgTxhyF8/9Daj2e/s80Zc/lW+y+lKT/b8RIpWTlMXf3VTrU8vxvw3pB766nXGfApgHMOzWPblW6seH5DTT1bqp2LP1oOxkcKsGmN5T6AIJOlPW2wFRghyzLn0qSNLXo7w90XZZleRfQCJQBInAV+Ou+Q6bIsryujDketHkqJJzR6Snxrg/dPn3sIbNmzWLZsmX4+fnh4eFBcHAwAKGhoXTv3p1evXoRGBhIv3792LVrF/n5+cyfP5+3336bq1evMmXKFEaOHKnb3ELptRgDp9bApilQpS1Y2qmdyPDs+VyZRej2K618PGhXw4Nvd1yhZ6NKeDlaq53O4Px6Io7TsanM6d0QW0v93I11ePppbH77H/HvvEvijJlk7NqNz8wZWHibyFIfoeQ6vAfn/6c0Y39pvtppyqwgOZmED6aTvm0bNo0bU+nTT7AMCPjncR97HxZ0WsDS80v57sR3nPr9FB+1/ohWlVs9/ISyDNveB3svaDmWQWa2rDgUxcebLtCmmjvmYm/af/yw6yoZuQW82bWm2lEqFK2sZdWFVXx9/GtszG34sv2XdA7srHYs/bK0g84zYX0YHF8KIUPVTmQSyvqq9jywtOjPS4EXijm+F7BZluWsMl7X4Bw7dow1a9Zw4sQJfv31V44ePfrIY/38/Dh48CBt27YlNDSUdevWcejQIaZNm/bQ4yVJonPnzgQHBzN/vvH/8jZ45pbQfQ6kRislgoUH3boER36CJoPApyEAH/asS26hlg83ir2P/5aZW8DnWy7S0M+Z5xuWvKDEkzD38MBv/k94vfceWRERXO/eg5R168RsX0Xj7ActRivNxONPqJ2mTNJ37OD/2rvv8Ciq9YHj37O76T0Q0gktEEJPkF5EehEIoDQLiop69QqKBf2JgpVrvxYsIApXmvSiUqWjQEIntIRAgBBCCqRnN3t+f0xAUEogm+xmcz7Psw+7k9nZd8hkdt4557wn8d7+5GzYQI3xLxD2v1nXJHuX6XV6Hm38KLP7zMbD0YMxa8fw5rY3/zF9AwCHV8Kp7dpUFk7uOBp0vNK7IUdTc5i3y35aRS0l6UIuP247yeCoECICPK0dTpWRkpPC46sfZ8rOKbQJbMPiAYvtP9m7rPFgCOsA696CvAxrR2MXynqr2V9KmQIgpUwRQtS4xfrDgI//tuwdIcREYB3wipSysIwx3bIlrjxs3ryZmJgYXF1dAejfv/8N1738syZNmpCTk4OHhwceHh44OzuTlZWFt7f3Netv3bqVoKAgzp8/T/fu3YmIiKBTp07ltzMKhLWDFg/A9i+h6VDwb2TtiGyDlPDbBHBwg65/3aCoXd2N57qG88GqI6w5lEr3SH8rBmlbpm5I4Hx2IV8/GH3b0zDcCSEEvg+MxL1TR1L+73VS/u91Lv36m9baF6QKU1QZHcZp08ysfh0eXl7p5pcrvnSJ1Hfe5eLSpTg1bEjQ99/j3KD+Ld/XsFpD5vWbx1d7v+LHgz+y+cxm3mj7Bp1CSr4zTYWw9g2o3gBaPHjlfT0b+dOqti8frz5K/2ZBeDg7lNeuVSpSSl5ZtA8ng47xPVTrXkWQUrI0YSlTdkzBLM1MajeJmHoxVWvcpBDQewp80xF+fxf6fmjtiCq9W7bwCSHWCiEOXOcx4HY+SAgRCDQBVl21eAIQAdwF+PK37qB/e/8TQohdQohdaWlpt/PRFaa0f4xOJZPB6nS6K88vvzaZTP9YP6jkIq1GjRrExMSwY8cOC0Sr3FL3t8DZC5aPBbPZ2tHYhqO/QcI6uPsVcKt+zY8e71iHBv4eTFx6gJzCfx7HVVFyRh7fbk5kYPMgomr+Y4hzuXKsWZOaP8zAf+Lr5O3eTeK9/cmcN1+19lUVzp7a32nSZohfZu1obkv2+t9J7D+AiytWUP3pp6g9b26pkr3LnA3OPB/9PD/1+QlPR0/+te5fvLr5VS4WXtS6o6cfh17valNZlBBC8HrfSNJzi/hqQ0J57FalNHdnMn8kZvBq34YEeKnu+uUtOTuZMWvG8PrW16nvU5+F/RcyKHxQ1Ur2LgtoDHc9BrumW36YVhV0y4RPStlNStn4Oo+lQGpJInc5obvZiOf7gcVSyiszwkopU6SmEJgBtLpJHN9KKVtKKVv6+fmVdv8qTKdOnVi8eDH5+flkZ2ezfPlyi2w3NzeX7OzsK89Xr15N48aNLbJt5RZcfbWKd6d3aP3IqzpToda6V70BtHr8Hz92NOh4d1ATzl0q4KPVR6wQoO15/9fD6AS81Kts0zDcKaHT4TtiBHWWLcW5SRPOvfEGyaNHU3T6jFXiUSpY9Cit2/XKFyA33drR3JLx/HlOjx3H6aefRu/hQa05s/H7978Rjnc2kXTj6o2Z128eY5qO4dcTvzJgUV/WxU2F5iO1Ob/+pkmIF4Oigpm+5QRJF3LLujuV3rmLBby7Mp42dXzVJOvlzGQ28cOBHxi0dBD7LuzjtdavMaPXDEI8QqwdmnXdPQGcveGXl7QeRsodK+sYvmXAwyXPHwaW3mTd4cCcqxdclSwKtPF/B8oYj9VERUUxdOhQmjdvzuDBg+nYsaNFtpuamkqHDh1o1qwZrVq1om/fvvTq1csi21ZKodlwbV6rtW9AThWv4PbHV5B5Anq9B/rrd3eKDvPhgdZh/LAtiT3JpaiUZ8f+TExn5f4UnuxclyALTcNwpxxDQqg543sCJk0if89eTvTvT8bMmcjr9ChQ7IjeAQZO1arq/vqitaO5IWk2kzlvPol9+5Gzfj1+Y8dSe+ECXJo2LfO2HfWOPNPiGeb0molfQTZja1RjvKeB9PzrJ8Av94rA2aBj/M97KTZX3QtMKSWvLz1AUbGZ9wc1rZotTBUkPj2eEStH8FHsR7QJbMOSAUsYFjEMnVDFg3D11YaPnNoGBxZaO5pKTZSle48QohowH6gJnALuk1JmCCFaAk9KKR8rWa8WsBUIlVKar3r/esAPEMCekvfk3OpzW7ZsKf8+PUF8fDwNGza8432p7Kr6/pertKMwtR00ioHB31k7GuvIPgefR0PtTjB8zk1XvVRgpPvHG/F1c2LZM+1xqIIV7/KKTPT97xaKTGbWPt8ZF0e9tUO6wnjmDCmTJpG7aTNODRsS+MZEXJrb5Yw4ymUbP4Df34b7Z0HkjceXW0NhYiIpEyeSvysW11atCJj0Jk61a1v+gzZMwbjhXWZ0fJypZ9fhYnDhuRbPMaT+EPS6a/8+F+8+zbh5e5nQO4IxnS07jUplsXJfCv+aHVel/w/KW74pn6l7pzLz4Ey8nbyZ0HoCPcJ6qOT678zF8F0XyEmDZ3aCk7u1I7IpQohYKeUtJ+ku05WYlDJdStlVShle8m9GyfJdl5O9ktdJUsrgq5O9kuX3SCmblHQRfaA0yZ6iVDi/+loBhP3zIeF3a0dT8aSE5c9BsVHr4noLns4OTOrfmPiUS0zfcqICArQ976yMJyk9lw/ua2pTyR6AQ3Awod98Q/Bnn1GckUHS8BGkTHyD4qyq3SJr1zqM1bp2rhgHuResHQ0A5qIi0r78khMDBlJ47DiB77xNzR9/KJ9kL/UgbPoAhyb38UTXD1nYfyGRvpG8/efbjPxlJAcvXFtdeGDzYHo28uej1Uc5mnqdKp92LjO3iDeWHaBJsBejO5TD70Nh29ltDF42mBkHZjCg3gCWDlxKz1o9VbJ3PTo99P4Ass/CZlW85U5VvVvvinInOr4AvnW0sTDGAmtHU7F2TtOKtXSfBNVKd6e3V+MAekT68+nao5xKt7tZWG5q/eFUfvrzFI91qE27utVv/QYrEELg2bMHdVauxPehh8hauJCEPn3JWrxEFXWxR5e7dhZc1CYztrKcTZs4MWAgFz7/Ao/u3am7cgXegweXz8VusQmWPA0u3tD7PwDU8arDdz2+Y0rHKaTmpTJ85XDe/uNtragL2t/HOzFN8HA28Pz8PRiLq1bRrrdXxpOVZ2TK4KZqTkILO519mrG/j2XMmjEIBNN7TGdSu0l4OXlZOzTbVrM1NH8Atn4Gp/6wdjSVkvpLVpTScHCGvh9DRgJs+fvMInbsfDys/j+twEHrJ2/rrZMGNMKg0/Hakv1VJolIzynkpQX7iQjwYHxP2y9hrnd3w3/CK9ReuADHmjVJmTCBUw8+ROGxY9YOTbE0/0Zw98twcDEcXGKVEIqSkkh+8imSnxgDZjOh335D8McfYahejjdGtv0XUvZAnw+18UAlhBD0qdOHZQOXMbLhSH4++jP9l/Rn6fGlSCmp7u7EOzFNOHDmEl+sP15+8dmYTUfTWBh3mic71yUySM25Zyn5pny+3PMlA5cOZNvZbTwX9RyLByymVeANaxUqf9frPfCuCQsfg/xMa0dT6aiET1FKq24XaHIfbPkELlSBC2JjgXZidXTXWgdu8+57oJcLL/ZswOZjF1i652w5BWk7tPmq9nMp38inw5rjZLCtrpw34xwRQdjsnwiYPImCY8dIjBnEubfexpSpvlTtSvtxENi8pGpnxXXtLM7J5fyHH5Jwb3/yduygxovjqbN8Ge7lPZ9s2hHY8B5EDoBGA6+7ioejBy+3epl5/eYR6hHK/239P0b9NoqD6Qfp1TiAQS2C+eL34+w7bf9dnnMLTUxYtJ86fm48c089a4djF6SUrE5azYAlA/h679fcU/Melg1cxmNNHsNRf2fVZ6ssZ08Y/D1kp2jDTKrIjWRLUQmfotyOnu+Cgwssetz+u3aumwSpB2DgV+Be44428UCbMJqHejN5xSEyc4ssHKBtmb8rmTWHUnmxZwMiAirfnXGh0+Fz//3U/fUXvIcMJnPOHBJ69CR9+veYi+z7d1dl6A3azZvCS1rSV86k2UzW4iUk9O5F+rTpePXtS53ffqXa6NF3PNVCqZmLYem/tBtWfW497ifCN4KZvWcyqd0kTlw8wbAVw5iweQJjuvri5+7E8/P3UmAsLt+YrezD1Uc4ezGf/wxuirND5blhZauOZx7n8dWP88LGF/Bw9GBGzxn8p9N/CHALsHZolVdINNzzf3BoKcTNtHY0lYpK+MrJm2++yYcfal8yEydOZO3atXe8raysLIYMGUJERAQNGzZk+/btlgpTuV3uNbQLprO74beXrR1N+Tm2VpuG4a7HoX7PO96MXid4f3ATLuUbGf/zXsx2Wub8ZHouk5Yfom2dapW+yIHB15fAN9+kztIluLRozvkPPiCxT18u/baqynTNtWv+kdD5ZTi0ROveWU7y4naTNHw4KRMm4BAYRK15cwl6/z0catzZzaPb9sdUOL1TG7dXyhtWOqFjUPggVg5ayejGo1mdtJqRvw2ifasdHL9wwa7nF409mckP25J4sE0YLWv53voNyg2dzzvPpO2TGLJ8CPEZ8bzW+jXm9ZtHy4BbFlJUSqPdc1Dnbvj1Za0VXykVlfBVgMmTJ9Ot2z8neS2t5557jl69enH48GH27t2rpl+wtoi+0OF5iP0B4mZZOxrLy70AS54Cv4bQ460yby4iwJOJ90ay7vB5Pl1nf11hTcVmxs3bg14n+Oj+Zuh09lFlzSk8nJrffkvotGnoXFw4M3YsJ0c+QP6+fdYOTSmr9mMhqIXWypeTZtFNFxw5QvKTT3FyxAiMZ88S+N571Jo7B5dmzSz6OTeVngDr34IGfaDJkNt+u4ejB2Ojx7IiZgXdw7qz+sxsqkV8zA8HZrMtwf7mY71YckMu0NOZl3pFWDucSutS0SU+jf2Uvov6suT4Eu5vcD8rYlYwLGIYBp3B2uHZD50OYr4BR1dY8Kj997ayEJXwWdA777xDgwYN6NatG0eO/HXXYdSoUSxYsACAWrVq8eqrr9K2bVtatmxJXFwcPXv2pG7dunz99df/2OalS5fYtGkTo0ePBsDR0RFvb++K2SHlxu75P+0O08oXtNY+eyGl1g2q4CIMnqZ1X7WAB9uEcV90CP9dd4xVB89ZZJu24uuNCcSdyuLtgY2tPsF6eXDv0J7aSxYTMHkSRadOkXT/UE6PG0dhQoK1Q1Pu1JWundmw8nmLjIUpSk7mzIsvcWJgDHmxsfiNG0e9VavwjhmI0FXgpUZRrnYRqHfSCm2VofJnoHsg73V8j7l959KoejjOAUt5asMIfk1YYzet3aZiM8/MjuN0Zh6fDmuBu5NKTG5XgamAGQdm0Hthb6YfmH5lnN6rrV/Fx9nH2uHZJ48A7RyWegDWTLR2NJWCXf5lT9kxhcMZhy26zQjfCF5udeMufLGxscydO5fdu3djMpmIiooiOjr6uuuGhoayfft2xo0bx6hRo9i6dSsFBQU0atSIJ5+8thJiYmIifn5+PPLII+zdu5fo6Gg+++wz3NzcLLp/ym3S6WHwdPimM8x7CMZsvKYCXKV1eQqGXu9DQGOLbVYIwVsDG3P0fA7Pz9vDkn+1J9zfw2Lbt5Z9p7P4dO0x7m0WxIDmwdYOp9wIvR6f++/Hs09f0qdPI+PHmWT/tgrPfv2o/vRT5TN3mlK+ajSELq/B2je0QlQdn7+jzZjS0rgwdSqZ839G6PVUe2w01UaPRm+NG5NmMyweAyl7Yfgc8Ay0yGYbVW/Ej71n8F3sCj6L+4SXtjzPjEMNebr503QO6Vyp505755d4Nh+7wJTBTWhV2w6+wyqQyWxiecJyvtzzJal5qbQPbs/YqLFE+KpW0gpRvye0fgr+nKoV1WvQ29oR2TTVwmchmzdvJiYmBldXVzw9Penfv/8N1738syZNmtC6dWs8PDzw8/PD2dmZrL9NfmwymYiLi+Opp55i9+7duLm58f7775frviil5FYdhs6EnHNaNUtzJR/Qf3kKhrpdodUYi2/e2UHP1w9E4eKo54lZsVzMN1r8MypSXpGJsfP24OfhxNsDLJcc2zK9uxs1nnuOemvXUG30o2SvXUti336cffkVik6etHZ4yu1q/5xWeXjdJNi/4LbeasrM5PzHn3C8R08y583He8hg6q5eTY0XXrBOsgfafsQv14prWfjiTwjBEy3vZWTIf8k/O4SzlzJ5dv2zDFs5jI3JGytli9+cHaeYsTWJ0R1qM/SumtYOp9Iwmo0sT1jOoGWDmLhtIjVca/B9z+/5utvXKtmraN0nQUATba7NSynWjsam2WUL381a4spTae/yOTk5AaDT6a48v/zaZDJds25ISAghISG0bt0agCFDhqiEz5YER0OfD7QSwRveh3tes3ZEd6Yo99opGMqpC1aglwtfjYxmxHd/MG7eHqY91LJSjnkrMpl58n9xJF3IZdbo1ni5Olg7pApl8PWlxvjx+I4aRfq06WTOmcPFFSvwGjiA6k89hWNIiLVDVEpDCBjwJVw8o43b9QyGsLY3fYsxJYX0GTPI+nkBMj8fzz598Pv3szjWqlUxMd9I3EzY+im0fBTaPFVuH/Nyr0acSi/kt/0tGNUjnT8z5/PM+meIrBbJ082eplNIp0rR4vdHYjqvLzlAp/p+TOitkpTSKCwuZOnxpXx/4HvO5Jyhvk99Prn7E7rW7Fopfud2yeCkTdXwbWetevpDS7UeWMo/qBY+C+nUqROLFy8mPz+f7Oxsli9fbpHtBgQEEBoaemVM4Lp164iMjLTIthULiXoYWjwAm/4DR35uFTCzAAAeaUlEQVS1djS3z1gAc4bD+UNasufhX64f16q2L2/cG8n6w+f5ZO3Rcv2s8lBsljw/fw+bjqbxbkwT2tcrx0mjbZyhenX8X3mZumtW4zNyBJeWryChV2/OvvwKBUdU9bRKweAEw34C7zCYOxwuXH+S8cLEE5x99TWtRe+n2Xj26EGdFcsJ/vgj6yd7JzbBinFQ9x6tKmc5XnzrdYJPhzXnrlrVmb0ugFebzmByu8lcLLzIM+ufYfjK4aw7uY5iG+7xkZyRx1P/i6VmNVc+H94Cg15dCt5MnjGPHw/+SO+FvXnrj7eo5lyNz+/5nAX3LqBbWDeV7FmbX33oPQWSNmtd1Ctha3tFsMsWPmuIiopi6NChNG/enLCwMDp27GixbX/++eeMHDmSoqIi6tSpw4wZMyy2bcUChNDmeTq3HxaNgSd+h2p1rR1V6ZiK4OeH4cRGLdmr36NCPvaBNmHsP3ORz9cfp1GQJ70aW2asTXmTUjJx6QFW7Evhld4RDGulukEBONSoQcCrr1Jt9GjSp00na+FCLi5dilu7dvg+8ghuHdqriyJb5uoLI3+Gad3gpyHw2FqtyzqQf/Ag6d9+R/bq1QhHR3zuv59qjz6CQ7CNjFm9cAzmPQjV6sF9P4C+/FvbnR30THvoLoZ8vY2n/7eXn5/qyvKYfqxIWME3+75h7IaxhLiH8EDkA8TUi8HVwbXcYyqt7AIjo3/ciVnC9IfvwsulavVOuB0XCy8y5/Acfor/iazCLFoFtOLdju/SOqC1Op/ZmhYPwtk9sO1zMLhU3t5W5UhUxn7nLVu2lLt27bpmWXx8fJWerqCq779NyDypdSvwCILRq8HJ3doR3Zy5WKtmd2gJ9P0I7nqsQj++wFjM0G//4FhqNkv+1Z76laCIy4erjvDF78cZ07kOE3qrv7cbKb54kcx588mcNQtTWhpO4eH4PvIInv36oivvCbeVO5e8E37sh6zRmJyaL5A5fwG527ajc3fHZ8QIfB9+CEO1ataO8i95GfDdPVq10cfXgU+tCv34M1n5DP5qGxLJoqfbE+ztgslsYv2p9cw6NIs9aXvwcPBgSP0hjGg4wuoTbhebJU/M3MWGo2n8+EgrOoRX3d4JN3Mk4whzDs9hZeJKCooL6BTSicebPE7zGs2tHZpyM2YzLP837J6lFaTq/JK1I6oQQohYKeUtJ3lUCZ+dqOr7bzOOr4Wf7tPmuBrxM7jZ0MXR1cxmWPYM7PkJur8F7f9tlTDOXSyg3+dbcHfSM29MW/w9na0SR2lM25zI2yvjGXZXKO8NaqLu8JaCLCri4spfyJgxg8KjR9H7Vcd35Ei8Bw/G4Odn7fCUvzFduEDWV2+RueRXTHl6DAEB+IwYgc/wYeg9bOyGjKkQZg6EM7EwagWEtrJKGIfPXeK+qdvx93JmwZNt8Xb964bG3rS9zDo0izUn1yAQ9AjrwUONHqJxdesUeXr/18N8vTGByQMa8VDbWlaJwVYZzUbWn1rP7PjZxJ2Pw0nvRN86fRkRMYIGvg2sHZ5SWmYzLH0a9s6Bbm9Ch3HWjqjcqYSviqnq+29TDq+Enx8BnzB4cDF42VgBCynhlxdh53fQ+RXoMsGq4cSezOCh6TvwcnHgh0db2WRL34LY04z/eS+9GwfwxYgo9JWw0Iw1SSnJ3bqNjBkzyN26FfR63Lvcjc999+HWoQNCrwbZW4uUkvzdu8mcPYdLq1aB0YhrwxB8qu3DY/BoRO93rR3iP0mpFZnZO0ebHucOJle3pG0JFxj1/U6ahXoxa3RrnB2uPZ7P5JxhdvxsFh1bRI4xh4a+DYkJj6FP7T54OXlVSIw/bkvijWUHGdm6Jm8PbKxuWJW4kH+BBUcX8PORnzmff55g92CGNRhGTHhMhf1uFAszF8OiJ+DAAq1ib9t/WTuicqUSviqmqu+/zUnaohVCcfLQkj4/G7lDKKU2qHnrZ9DuWa11zwa++A+cucgjP+yk0FjMtw+1pE0d22kZXX3wHE/9FEfbOtWYPqolTgaVnJRFYeIJshYu4OLiJRRnZGAICMB7UAxegwbjGGIj48KqAFN6Opd++ZWshQspPHwYnbs7XjEx+Awfps2rePmmUI+3oe0zNnGeALSWvZXPw+7/wd2vwt3Wqcr9d8v3nuXZObvp1SiAL0de/6ZQTlEOyxKWsfj4Yg5nHMZR50i3sG7EhMfQKqAVOmH54immYjNvr4znh21JdGtYg6kPRONQxYu0FBUXsen0JpYnLGfTmU2YzCbaBbVjRMQIOgR3QK+qPFZ+xSZY8AjEL9NqLLR63NoRlRuV8FUxVX3/bVLKPvjfYDCbYOQCCIm2dkSw8QP4/W2tdHnfj23nIg6tctyoGTtIzsjno/ubcW+zIGuHxPaEdB6esYOGgZ7Mfqw1bk6qzpWlyKIisn/fQNaCBeRu2QKAW7t2eMXE4NHlbnRublaO0P6Y8/LIXreei8uXkbt1GxQX4xQRgc+wYXjd2+/a//NiEywYpc1r13ykNs7XwcVqsQPaPFvzHoAzu6DTS9DlVZs6h03fcoK3Vhyib9NApgxuivtNzheH0g+x6Ngifkn8hWxjNsHuwQysN5ABdQcQ6G6ZIlaXCow8M3s3m46mMbpDbV7t07DK9k6QUrI3bS/LE5bzW9JvXCq6RDXnavSp04f76t9Hba/a1g5RsbRiI8x/GI6shH6fQstHrB1RuVAJXxVT1fffZmUkwqwYyEmDobOgXlfrxGE2w5aPYP3b0Gw4DPiq3ObaK4usvCKemBnLjqQMXuvTkMc61rZK1yMpJTO3n+TdX+Kp6evK/DFt8XFTxUbKi/HMGbIWLSZr0SJMKSkIJyfcO3XEo2cv3O++G727Sv7ulDSZyN2+nYvLl5O9dh0yLw9DYCBe/frheW8/nOvXv/GbzcWw8T+w8X1tcuP7Z4GvlS6Mk3doyV5hDsR8DZH9rRPHLXy9MYH//HaYsGpufDGiBY2Cbt4tsMBUwLpT61h8bDF/nvsTgKZ+TeleszvdwroR4nFnQwJOpecx+sednLiQy1sDGzO8ilYUPnXpFCsTV7I8cTnJ2ck46525p+Y93Fv3XtoEtsGgUzfx7JqpUKvie2wV9P8Coh60dkQWpxK+Kqaq779Nyz4H/xsCaYe1C5WKHm+SkQhLn4GTW6HxYIj5FvS2+yVXYCzmhfl7Wbk/hVHtavF6v8gKvSt9/lIBLy7Yx8ajaXRp4McH9zWjurtThX1+VSaLi8mPi+PSb6vIXr0aU1oawskJt44d8OzVWyV/pVSck0vutq3kbNhIzoYNFGdkoPP0xLNnT7z634tLdDTidm74HF2lTWqMgEHfVdj0LVfE/ggrXwCvYBg2B/xtey7aPxPT+ffc3WTmGXm9XyQPtK5ZqhtXydnJ/HbiN9acXEN8RjwADX0b0qNWD7rV7EYtr1ql+vydSRmMmRVLsVky9YEo2tWtOtU4i83F7L+wnw3JG9iQvIGEiwkIBK0CWtGvbj+6h3XHzUGdQ6oUY4E2x2jCeq0aedc3wNnT2lFZjEr4qpiqvv82Lz9LG9N3ajv0fAdaPwnlPU7AbNbG4Kx9E3QG6PWe1jXLhrpA3YjZLHn3l3imbTlBz0b+fDasxT8KIZSH3w6cY8KifeQbi3mtb+kv1BTLk2bzX8nfqlVa8ufoiGurVri1b49bu3Y41Q9Xv58SRcnJ5Py+gZwNG8jduROMRnSenrh36IBH7164d+5ctikxMk5od8pTD0Dnl7VHefcSMBXBqgmwc5o2qfrg6dqcgZVAek4hz8/fy8ajafRtGsh7g5rg6Vz6Oe+Ss5NZd3Ida06tYV/aPgDqedejS2gX2gS2oVmNZjjp/3kjamHsaSYs2k+IjwvTR91F7er2n9zkGfPYfnY7G05vYNPpTWQUZGAQBqL9o+kc2pnuYd2tPiWGYmXGfFg3Gf6YCp5B2pCWBr2sHZVFqITPyt58803c3d0ZP348EydOpFOnTnTr1u22t3PkyBGGDh165XViYiKTJ09m7Nix16xna/uvXIcxHxaM1vqT14iErhOhfq/yScAyTpS06m2Bet3g3v9qd8crmelbTvD2ykM08PdgXPf69Ij0L5cL/NxCE5OXH2LermQaB3vy6dAW1Kth4/MoViHSbCZ/924urVpF7patFCUmAmDw88OtXVstAWzbtkpN9WBKTycvLo78XbHkbNlCUUICAI516uB+9924390Z1xYtEA4WnFi7KE9rads7G+p1h0Hfll8ClpMG8x+CU9ug/XPaXflKVkzDbJZ8symRD1cfIcTHhS+GR9Ek5PYrP57LPce6U+tYc3INe87voVgW46R3IqpGFG2C2tAmsA21PML577oEvt6YQLu61Zg6MhovV/ucVL3AVMD+C/uJTY0lNjWWuNQ4isxFeDh40CGkA11Cu9A+uD2ejvbTiqNYyOldsOxZOH9I6/HUawq4V+7vDZXwWdnVCZ+lFBcXExwczJ9//klYWNg1P7O1/VduwGyGQ4th/TuQkQChrbULmVrtLbf9XdNhTcnFUc93oMWDlaJV70bWHkrlrZWHOJmeR8NAT/59Tz16NgpAZ6FunnGnMhk3bw+nMvJ4+u66PNe1Po4G2xvfqPzFmJJC7rbt5G7dSu727RRnZgLgFB6OS/PmODdpjEvTpjjVq4cw2G735dKSUmI8eZK82Djy4mLJj42jKCkJAOHoiEt0FB5duuDeuTOOf/tuKIdgIHYG/PISeAZq56+IfuBgoTk0s1Mh7kfY8Z02ofqAL6w+7UJZ7UrK4Nk5u0nPKWJCnwgebBOG4Q4rZeYac4lNjWX72e38kfIHx7OOaz8odsWYW4dmfs0Y27ELTfwa4e5oHzetcopy2JO250qCd+DCAYxmIwJBfZ/63BVwF11Cu9DCvwUOOvtMchULMhXB1k9h0wfg6KZN3dBseKW9TqqQhE8IcR/wJtAQaCWl3HWD9XoBnwF6YJqU8v2S5bWBuYAvEAc8KKUsutXn3irhO/fuuxTGH77Dvbo+p4YRBLz66k3Xeeedd5g5cyahoaH4+fkRHR3N+PHjGTVqFP369WPIkCHUqlWLESNG8Pvvv2M0Gvn222+ZMGECx48f58UXX+TJJ5+84fZXr17NpEmT2Lp16z9+phK+SqbYqJUV3zgFslO0u+VdJ0Jg0zvbnqkQTv2hncCSNmvdn/p/bntzAN4hU7GZZXvP8sX64yReyKWBvwfPdq1Hn8aBd5T45RcVs/lYGqsOprJkzxkCPJ35ZGhzWtWuHN3FlL9Is5mC+Hhyt20j788d5O/fj/niRQCEszPOkZG4NGmMc5OmOEc2xDEkBFGWro3lzFxYSFFCAoXHjlF47BgFx45RcPAQxRcuAKDz8sI1KgrX6ChcoqJxbtyobF0179TpXdq4voxEcPaGZsO0m0sBdzCpuJRwcpvWdTN+mVbZuO490G3SnZ8TbUxmbhHjf97LusPnqe7uSL+mQfRvHkSLUO876rWQkJbDtM0nWLT3EMVOxwgNOoN0PkZ6YeqVdWp51qJR9UY0qtaIyGqRRPhG2PT4NSklZ3PPcjTjKEcz/3qcyj6FWZoxCAOR1SKJ9o8m2j+a5jWaq7nylDuXdgSW/RuS/4A6XaD3FKhev9IlfqVN+Mp66/MAMAj45iaB6IEvge7AaWCnEGKZlPIQMAX4REo5VwjxNTAamFrGmKwiNjaWuXPnsnv3bkwmE1FRUURHX78Mf2hoKNu3b2fcuHGMGjWKrVu3UlBQQKNGjW6a8M2dO5fhw4eX1y4oFUnvoJUIbjYMdnwLmz+GbzpqXQyajwCf2uAVCoYbXMhJqRWBSVivPZK2gikfHD207ptRD1W6k9bNGPQ6BkWFMKB5MCv2neW/647xzOzdhNc4xrNdw+lc3w9PZ8NNL5wu5BSyPv48qw+lsuV4GgVGMx7OBobdFcrLvSNua3yNYjuETodLo0a4NGoEjz+utYYlJ5O/bz8F+/eTv38/mfPmI3+cqb1Bp8MhKAjHWrVwDAvTHrW15wZ/f3RO5VugR0qJOScH07lzGM+lYko9h/FsCoXHj1N47BhFJ09qLfUADg441amDW7u2uEZF4xodhWPdurdXcKW8hLSEZ2LhxEbYPQt2fQ9/fg1BUVolvMZDbl0YoTAb9s6FndMhLR6cvbTxzS0fhWp1K2Y/KoiPmyPTHm7JmkOpLN1zljk7TvHDtiRq+royoHkQA5oHUa+Gx023IaXkzxMZfLcpkXWHz+No0DE4qiGjO/S90gU9oyCDQ+mHOHjhIAfTD7Lz3E5WJq68so3qLtWp6VGTUI9QQj1CqelZU3vtGVohXSCNxUZS81JJyU3hXO45UnJTOJtzloSsBI5lHSPXmHtl3VCPUMK9w+lduzdR/lE0rd4UVwfXco9RqSL8GsAjv2q9ota+CV+2As8QrcdVWHuo1QF869jNtZRFunQKITYA46/XwieEaAu8KaXsWfJ6QsmP3gfSgAAppenv692MLXbp/PTTT8nIyGDy5MkAPP/88wQFBV23hW/r1q0EBwfz/fffs337dr777jsAatasyb59+/D29v7H9ouKiggKCuLgwYP4+/v/4+fW3n+ljPKzYNvn8MdXYMzTlgkdeASBTxj41ALvMHCrDmditSQvO0Vbr3p97W54nS7aCcrJPrrx3EyxWbJyfwqfrzvGsfM5ADgadPi5O+Hn8dejhocTeiHYeDSN2FOZSAnB3i50j/Sne6Q/rWr7VvlJiKsCaTJdaTErSkqiKOkkRSdPUpSUhDk395p1da6u6KtVQ+/rg8HHF72vLwZfH/Q+PggHRzDoEQYDwuCAcDAg9HowGECCOT8Pc14eMi8Pc14+5ry8K4/ijHQtwTt3DnNe3rUBCoFjzZo41Q/HKTwcp/r1cQoPx7FmTcuOwStPeRmwbz7EzYTzB8Hgok1DY3DWWuxksTbNg7lYe202aeeyohwIbAZ3Pa7d8HKsGhf02QVGVh1MZemeM2w9fgGzhMhAT9rVrUahyUxuoYncIhO5hcXkFJrILTRxMd/I+exCfN0cebBNGA+2DStVBeG0vDQOpR/iaOZRkrOTOZV9iuRLyZzPP3/Nei4GF7ydvK95eDl54ePsg5eTFw46B/RCj07o0OtK/hV69EKPRJJnzCPXmEuOMecfzzMKMkjJTeFC/gUk1153+jj5UMe7DuHe4dT3rU99n/rU865n062Rip25dBbiV2h1D05ug9w0bbl7AIS105LAuvdoCaCNqagWvtIIBpKven0aaA1UA7KklKarlt+wqoQQ4gngCdASI1tU2m4ZTiV3kHU63ZXnl1+bTKbrvufXX38lKirqusmeYgdcvKHr69DuGUg9BFknITMJMk9qz69O8Fx8oM7dfyV53qFWDNw69DpB/2ZB9GsSyMajaSSk5ZCWXag9cgpJzsgj7mQm6blaD/FGQZ481zWc7pH+RAZ6qsqOVYwwGHBu2BDnv90Uk1JSnJ6uJYEnT2JKS8OUkUFxRibFGRkYU1MpiI+nOCMDaTTe/ue6uqJzdUXn4oLB1xen8HDcO3bA4B+AQ4A/hoAADDX8cajhZ9PdTEvF1RfaPAmtx8DZOIibpbX+IbTxxDoDCH3Jc732PHKA1poXHG03d9FLy8PZgSHRIQyJDiEtu5AV+86yZM9ZZv1xEldHPW5OBtwcDbg56fFwNhDg6Yybk4HoMB8GRQXfVtViP1c/Ort2pnNo52uW55vyOZ19+koCmJafRlZh1pXHmZwzZBVmcano0m3vn5PeCTcHN1wNrrg7uuPt5E2H4A4EugUS4BZAgFsAgW6B+Lv542Jwue3tK4pFeQZB6ye0h5Rw4ZiW/CVt1aa0OrhIKx7VfbK1I71jt0z4hBBrgevVs31NSrm0FJ9xvbO4vMny65JSfgt8C1oLXyk+t0J16tSJUaNG8corr2AymVi+fDljxoyx2PbnzJmjunNWBS4+JQVcrlPExVgAuefBM7jSVasrLzqdoEtEDbpE1Ljuz43FZvKNxaq7pnJdQggM1atjqF4d15Y3vkEqpUTm5SGNRqTJVPIoBtNfrxHiSnKnc3VFODvbRtfLiiaElsAFX39Ig/JPfh5OPNK+No+0r9hJ7V0MLoT7hBPuE37T9UxmE9lF2RjNRszSTLEsxmwu+bfkNYCbg5uW5Dm4quIpSuUlBPjV1x4tH9USwIxE0Ffum3K3TPiklLc/l8C1TgNXN0GEAGeBC4C3EMJQ0sp3eXmlFBUVxdChQ2nevDlhYWF07NjRYtvOy8tjzZo1fPPNDYdKKlWBgzN422brtq1y0OtUl02lzIQQCDfVvUypmgw6Az7OPtYOQ1GsQwi7GFNcEWP4DMBRoCtwBtgJjJBSHhRC/AwsvKpoyz4p5Ve3+jxbHMNnbVV9/xVFURRFURSlKintGL4y3foWQsQIIU4DbYGVQohVJcuDhBC/AJS03j0DrALigflSyoMlm3gZeF4IcRxtTN/0ssSjKIqiKIqiKIqi/KVMRVuklIuBxddZfhboc9XrX4BfrrNeItCqLDEoiqIoiqIoiqIo12dXg1ss0T21Mqqq+60oiqIoiqIoys3ZTcLn7OxMenp6lUt+pJSkp6fj7Oxs7VAURVEURVEURbExFTEPX4UICQnh9OnTpKWlWTuUCufs7ExISIi1w1AURVEURVEUxcbYTcLn4OBA7doVO4eNoiiKoiiKoiiKLbObLp2KoiiKoiiKoijKtVTCpyiKoiiKoiiKYqdUwqcoiqIoiqIoimKnRGWsaimESANOWjuO66gOXLB2EIrdU8eZUt7UMaZUBHWcKRVBHWdKebPmMRYmpfS71UqVMuGzVUKIXVLKltaOQ7Fv6jhTyps6xpSKoI4zpSKo40wpb5XhGFNdOhVFURRFURRFUeyUSvgURVEURVEURVHslEr4LOtbawegVAnqOFPKmzrGlIqgjjOlIqjjTClvNn+MqTF8iqIoiqIoiqIodkq18CmKoiiKoiiKotgplfApiqIoiqIoiqLYKZXwWYAQopcQ4ogQ4rgQ4hVrx6PYByFEqBDidyFEvBDioBDiuZLlvkKINUKIYyX/+lg7VqVyE0LohRC7hRArSl7XFkL8WXKMzRNCOFo7RqVyE0J4CyEWCCEOl5zT2qpzmWJpQohxJd+XB4QQc4QQzup8ppSVEOJ7IcR5IcSBq5Zd9/wlNP8tyQn2CSGirBf5X1TCV0ZCCD3wJdAbiASGCyEirRuVYidMwAtSyoZAG+BfJcfWK8A6KWU4sK7ktaKUxXNA/FWvpwCflBxjmcBoq0Sl2JPPgN+klBFAM7TjTZ3LFIsRQgQD/wZaSikbA3pgGOp8ppTdD0Cvvy270fmrNxBe8ngCmFpBMd6USvjKrhVwXEqZKKUsAuYCA6wck2IHpJQpUsq4kufZaBdIwWjH148lq/0IDLROhIo9EEKEAH2BaSWvBXAPsKBkFXWMKWUihPAEOgHTAaSURVLKLNS5TLE8A+AihDAArkAK6nymlJGUchOQ8bfFNzp/DQBmSs0fgLcQIrBiIr0xlfCVXTCQfNXr0yXLFMVihBC1gBbAn4C/lDIFtKQQqGG9yBQ78CnwEmAueV0NyJJSmkpeq3OaUlZ1gDRgRknX4WlCCDfUuUyxICnlGeBD4BRaoncRiEWdz5TycaPzl03mBSrhKztxnWVqrgvFYoQQ7sBCYKyU8pK141HshxCiH3BeShl79eLrrKrOaUpZGIAoYKqUsgWQi+q+qVhYyRiqAUBtIAhwQ+te93fqfKaUJ5v8DlUJX9mdBkKveh0CnLVSLIqdEUI4oCV7P0kpF5UsTr3cPaDk3/PWik+p9NoD/YUQSWjd0e9Ba/HzLukSBeqcppTdaeC0lPLPktcL0BJAdS5TLKkbcEJKmSalNAKLgHao85lSPm50/rLJvEAlfGW3EwgvqQLliDZAeJmVY1LsQMlYqulAvJTy46t+tAx4uOT5w8DSio5NsQ9SyglSyhApZS20c9d6KeVI4HdgSMlq6hhTykRKeQ5IFkI0KFnUFTiEOpcplnUKaCOEcC35/rx8nKnzmVIebnT+WgY8VFKtsw1w8XLXT2sSUlq9lbHSE0L0Qbsrrge+l1K+Y+WQFDsghOgAbAb289f4qlfRxvHNB2qifcHdJ6X8+2BiRbktQoi7gfFSyn5CiDpoLX6+wG7gASlloTXjUyo3IURztMJAjkAi8AjaTWd1LlMsRggxCRiKVuV6N/AY2vgpdT5T7pgQYg5wN1AdSAXeAJZwnfNXyc2GL9CqeuYBj0gpd1kj7quphE9RFEVRFEVRFMVOqS6diqIoiqIoiqIodkolfIqiKIqiKIqiKHZKJXyKoiiKoiiKoih2SiV8iqIoiqIoiqIodkolfIqiKIqiKIqiKHZKJXyKoiiKoiiKoih2SiV8iqIoiqIoiqIodur/AV+pxnbDP75sAAAAAElFTkSuQmCC\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# 在位置编码下方,将基于位置添加正弦波。对于每个维度,波的频率和偏移都不同。\n", "plt.figure(figsize=(15, 5))\n", "pe = PositionalEncoding(20, 0)\n", "y = pe.forward(Variable(torch.zeros(1, 100, 20)))\n", "plt.plot(np.arange(100), y[0, :, 4:8].data.numpy())\n", "plt.legend([\"dim %d\"%p for p in [4,5,6,7]])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## posembbeding的理解\n", "- 同一维度(一个单词本来有多个维度,为了可视化,选取一个维度)对比不同位置的单词在同一维度是有相对关系的,符合某个正弦或者余弦波。\n", "- 一个序列各个单词的位置都具有相对性。" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Training 训练方案\n", "----\n", "- 定义个一个Batch对象\n", "- " ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "class Batch(object):\n", " \"定义一个训练时需要的批次数据对象,封装了用于训练的src和tgt句子,以及mask\"\n", " def __init__(self, src, trg=None, pad=0):\n", " self.src = src # B 个序列[1,5,3, 0]\n", " self.src_mask = (src != pad).unsqueeze(-2) # [[1,1,1,0]]\n", " if trg is not None:\n", " self.trg = trg[:, :-1] # \n", " self.trg_y = trg[:, 1:] # 后挪一个位置开始\n", " self.trg_mask = \\\n", " self.make_std_mask(self.trg, pad)\n", " self.ntokens = (self.trg_y != pad).data.sum()\n", " \n", " @staticmethod\n", " def make_std_mask(tgt, pad):\n", " \"Create a mask to hide padding and future words.\"\n", " tgt_mask = (tgt != pad).unsqueeze(-2)\n", " tgt_mask = tgt_mask & Variable(\n", " subsequent_mask(tgt.size(-1)).type_as(tgt_mask.data))\n", " return tgt_mask" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "# 定义一个训练函数用于训练和计算损失、更新梯度" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "def run_epoch(data_iter, model, loss_compute, device):\n", " \"\"\"提供训练和日志功能\"\"\"\n", " start = time.time()\n", " total_tokens = 0\n", " total_loss = 0\n", " tokens = 0\n", " for i, batch in enumerate(data_iter):\n", " src = batch.src.to(device)\n", " trg = batch.trg.to(device)\n", " src_mask = batch.src_mask.to(device)\n", " trg_mask = batch.trg_mask.to(device)\n", " trg_y = batch.trg_y.to(device)\n", " ntokens = batch.ntokens.to(device)\n", " \n", " out = model.forward(src, trg, src_mask, trg_mask)\n", " loss = loss_compute(out, trg_y, ntokens)\n", " # 必须加上.cpu().numpy() 否则报错floating point exception (core dumped)\n", " total_loss += loss.detach().cpu().numpy()\n", " total_tokens += ntokens.cpu().numpy()\n", " tokens += ntokens.cpu().numpy()\n", " if i % 50 == 1:\n", " elapsed = time.time() - start\n", " print(\"Epoch Step: %d Loss: %f Tokens per Sec: %f\" %\n", " (i, loss.detach().cpu().numpy() / ntokens.cpu().numpy(), tokens / elapsed))\n", " start = time.time()\n", " tokens = 0\n", " return total_loss / total_tokens" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 训练数据与批次\n", "- 使用XX数据集\n", "- 使用torchtext来处理数据?" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "global max_src_in_batch, max_tgt_in_batch\n", "def batch_size_fn(new, count, sofar):\n", " \"Keep augmenting batch and calculate total number of tokens + padding.\"\n", " global max_src_in_batch, max_tgt_in_batch\n", " if count == 1:\n", " max_src_in_batch = 0\n", " max_tgt_in_batch = 0\n", " max_src_in_batch = max(max_src_in_batch, len(new.src))\n", " max_tgt_in_batch = max(max_tgt_in_batch, len(new.trg) + 2)\n", " src_elements = count * max_src_in_batch\n", " tgt_elements = count * max_tgt_in_batch\n", " return max(src_elements, tgt_elements)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 硬件情况和时间表\n", "\n", "- 我们在一台配备8个NVIDIA P100 GPU的计算机上训练了模型。\n", "- 对于使用本文所述的超参数的基本模型,每个训练步骤大约需要0.4秒。\n", "- 我们对基本模型进行了总共100_000步或12个小时的训练。\n", "- 对于我们的大型模型,步长为1.0秒。大型模型接受了300,000步(3.5天)的训练。\n", "\n", "## Optimizer\n", "- 使用Adam优化器,其中β1= 0.9,β2= 0.98和ϵ = 10-9。\n", "- 根据以下公式在训练过程中改变学习率:$lrate =d_{model}^{-0.5} * min(step\\_num^{-0.5}, step\\_num * warmup\\_steps ^{-1.5})$\n", "- 也就是训练步数在$warmup\\_steps内,线性增加学习率;之后的训练,按步数的负1.5平方成比例地减小学习率。我们使用了 $warmup\\_steps= 4000$。" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "class NoamOpt(object):\n", " \"Optim wrapper that implements rate.\"\n", " def __init__(self, model_size, factor, warmup, optimizer):\n", " self.optimizer = optimizer\n", " self._step = 0\n", " self.warmup = warmup\n", " self.factor = factor\n", " self.model_size = model_size\n", " self._rate = 0\n", " \n", " def step(self):\n", " \"Update parameters and rate\"\n", " self._step += 1\n", " rate = self.rate()\n", " for p in self.optimizer.param_groups:\n", " p['lr'] = rate\n", " self._rate = rate\n", " self.optimizer.step()\n", " \n", " def rate(self, step = None):\n", " \"Implement `lrate` above\"\n", " if step is None:\n", " step = self._step\n", " return self.factor * \\\n", " (self.model_size ** (-0.5) *\n", " min(step ** (-0.5), step * self.warmup ** (-1.5)))\n", " \n", "def get_std_opt(model):\n", " return NoamOpt(model.src_embed[0].d_model, 2, 4000,\n", " torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9))" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYoAAAD8CAYAAABpcuN4AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3Xd4VFX6wPHvSa+k90IqJCEJAULvIF0plgV7AXV11bXu6u5a1l52lf2t2CnCqljRKIgoGVoINYTeAgmZFNIL6WXO748JkZJGSDKZ5HyeJw/DmXPPvEOZd+49575HSClRFEVRlOaYGDoARVEUpXtTiUJRFEVpkUoUiqIoSotUolAURVFapBKFoiiK0iKVKBRFUZQWqUShKIqitEglCkVRFKVFKlEoiqIoLTIzdAAdwdXVVQYEBBg6DEVRFKOyd+/efCmlW2v9ekSiCAgIYM+ePYYOQ1EUxagIIc60pZ+69KQoiqK0SCUKRVEUpUVtShRCiOlCiONCiBQhxNNNPG8phPiy4fmdQoiAC557pqH9uBBi2gXty4QQuUKIQ5eM5SyE+FUIcbLhV6f2vz1FURTlarU6RyGEMAWWAFOADGC3ECJOSnnkgm4LgSIpZYgQYgHwBjBfCBEBLAAGAN7Ab0KIflLKemAF8C6w8pKXfBrYKKV8vSEpPQ389WrepKIoxqe2tpaMjAyqqqoMHYrRs7KywtfXF3Nz83Yd35bJ7GFAipTyNIAQYjUwB7gwUcwBXmh4/A3wrhBCNLSvllJWA6lCiJSG8RKllFsuPPO4ZKwJDY8/BTahEoWi9DoZGRnY29sTEBCA/uNEaQ8pJQUFBWRkZBAYGNiuMdpy6ckH0F7w+4yGtib7SCnrgBLApY3HXspDSpndMFY24N6GGBVF6WGqqqpwcXFRSeIqCSFwcXG5qjOztiSKpv6WLt0Wr7k+bTm2XYQQ9wkh9ggh9uTl5XXEkIqidDMqSXSMq/1zbEuiyAD8Lvi9L5DVXB8hhBngABS28dhL5QghvBrG8gJym+okpfxIShkrpYx1c2v1fhGlwfbM7RwpONJ6R0VRlAZtSRS7gVAhRKAQwgL95HTcJX3igDsbHt8IxEv9ZtxxwIKGVVGBQCiwq5XXu3CsO4Ef2hCj0ga1ulru/+1+5v80n9KaUkOHoyhGISAggKioKGJiYoiNjQXg66+/ZsCAAZiYmFx0s++vv/7KkCFDiIqKYsiQIcTHx7c49r/+9S+EEOTn5wP6+YRHHnmEkJAQoqOjSUpKauz76aefEhoaSmhoKJ9++mlj+969e4mKiiIkJIRHHnkE/UdvB5NStvoDzAROAKeAvze0vQjMbnhsBXwNpKBPBEEXHPv3huOOAzMuaP8CyAZq0Z95LGxodwE2AicbfnVuLb4hQ4ZIpXXbM7fLyBWRMnJFpHw+4XlDh6MoLTpy5IihQ5BSStm3b1+Zl5d3UduRI0fksWPH5Pjx4+Xu3bsb25OSkmRmZqaUUsqDBw9Kb2/vZsdNT0+XU6dOlf7+/o3jr127Vk6fPl3qdDqZmJgohw0bJqWUsqCgQAYGBsqCggJZWFgoAwMDZWFhoZRSyqFDh8rt27dLnU4np0+fLtetW9fk6zX15wnskW3IAW0q4SGlXAesu6TtuQseVwE3NXPsK8ArTbTf3Ez/AmByW+JSroxGq8HK1Iq5IXNZfXw1s4JmMdRzqKHDUhSjEx4e3mT7oEGDGh8PGDCAqqoqqqursbS0vKzvY489xptvvsmcOXMa23744QfuuOMOhBCMGDGC4uJisrOz2bRpE1OmTMHZ2RmAKVOmsH79eiZMmEBpaSkjR44E4I477uD7779nxowZHfl2e0atJ6V1Uko0Wg0jvEfweOzjbMvcxgvbX+Db2d9iZWZl6PAUpUX//PEwR7I69nJphHcfnr9uQKv9hBBMnToVIQT3338/9913X5vG//bbbxk0aFBjkli0aBF//OMfiY2NJS4uDh8fHwYOHHjRMZmZmfj5/T6t6+vrS2ZmZovtvr6+l7V3NJUoeoljhcc4W36WBwc+iLWZNc+Pep57N9zLB/s/4NEhjxo6PEXpthISEvD29iY3N5cpU6YQFhbGuHHjWjzm8OHD/PWvf2XDhg2NbZ988gkAFRUVvPLKKxc9d55sYn5BCHHF7R1NJYpeQqPVIBCM89X/Ax/hNYJ5IfNYcXgFk/0nE+UWZeAIFaV5bfnm31m8vb0BcHd3Z968eezatavFRJGRkcG8efNYuXIlwcHBlz1/6tQpUlNTG88mMjIyGDx4MLt27cLX1xetVnvRWN7e3vj6+rJp06aL2idMmICvry8ZGRmX9e9oqihgL6HRaohxj8HF2qWx7cmhT+Jq7crftv2NyrpKA0anKN1TeXk5586da3y8YcMGIiMjm+1fXFzMrFmzeO211xg9enSTfaKiosjNzSUtLY20tDR8fX1JSkrC09OT2bNns3LlSqSU7NixAwcHB7y8vJg2bRobNmygqKiIoqIiNmzYwLRp0/Dy8sLe3p4dO3YgpWTlypUXzXl0FJUoeoHssmyOFR5jot/Ei9r7WPThlTGvkFaaxtt73jZQdIrSfeXk5DBmzBgGDhzIsGHDmDVrFtOnT2fNmjX4+vqSmJjIrFmzmDZNX+/03XffJSUlhZdeeomYmBhiYmLIzdXfCrZo0aJW982ZOXMmQUFBhISEcO+99/Lee+8B4OzszLPPPsvQoUMZOnQozz33XOPE9vvvv8+iRYsICQkhODi4wyeyAURT17iMTWxsrFQbFzXv86Of89qu1/hx7o8EOARc9vxbu99i5ZGVvH/N+4zxGdP1ASpKE44ePdrs6iLlyjX15ymE2CuljG3tWHVG0QtotBoC+gQ0mSQAHhn8CCGOITyX8BzFVcVdG5yiKN2eShQ9XGlNKXvO7mGi/8Rm+1iaWvLa2Ncoqi7iue3Pdc6dnYqiGC2VKHq4bRnbqJN1TPKb1GK/MOcwHh/yOBqthlVHVnVRdIqiGAOVKHo4jVaDs5UzUa6tL3+9Lfw2JvlN4p2973Ag70AXRKcoijFQiaIHq62vZVvmNib4TcDUxLTV/kIIXhz9Ih62Hjy1+SlKqku6IEpFUbo7lSh6sN05uymrLbtsWWxLHCwd+Nf4f5Fbmcs/Ev6h5isURVGJoifTpOuLAA73Gn5Fx0W6RvJk7JNs0m7iowMfdVJ0imIcOqPMeHJyMiNGjGgcc9cu/e4L0pjLjHf3H1Vm/HI6nU5e8/U18uGND7f7+Ge2PCMjV0TKjWc2dnB0itK6nlxmfMqUKY3lwNeuXSvHjx/f+Lg7lhlXZxQ91NHCo5wtP3tFl50uJITguZHPEekSyTNbnyGlKKWDI1QU4xUeHk7//v0vax80aFBjraULy4xfSghBaam+Gm5JSUnjMc2VGf/ll18ay4w7OTk1lhnPzs5uLDMuhGgsM97RVFHAHkqj1WAiTBjvN77dY1iZWfHOxHdY8NMC/qz5M5/P+hwHS4cOjFJR2ujnp+HswY4d0zMKZrzearfOKDO+ePFipk2bxpNPPolOp2P79u1A9y0zrs4oeqhN2k3EuMXgbOV8VeN42nqyeOJissqzeGrzU9TqajsoQkUxDgkJCSQlJfHzzz+zZMkStmzZ0uox58uMf/jhh41tn3zySeMcx/vvv88777yDVqvlnXfeYeHChYAqM650oayyLI4VHuOJIU90yHgx7jE8N+I5ntv+HC8lvsQ/R/2zU/4xKkqz2vDNv7N0dJlx0E9M/+c//wHgpptuYtGiRQCqzLjSdTRaDQAT/CZ02JjzQufxx4F/ZE3KGj488GHrByhKD9AZZcZBn3w2b94MQHx8PKGhoQDdtsy4wVcsdcSPWvV0sYW/LJTXrbmuw8fV6XTyb1v/JiNXRMrvT37f4eMryoW6w6qnU6dOyejoaBkdHS0jIiLkyy+/LKWU8rvvvpM+Pj7SwsJCuru7y6lTp0oppXzppZekjY2NHDhwYONPTk6OlFLKhQsXNq6Q2rp1qxw8eLCMjo6Ww4YNk3v27JFS6v+PPfjggzIoKEhGRkZetKJq6dKlMjg4WAYHB8tly5Y1tu/evVsOGDBABgUFyT/96U9Sp9M1+V6uZtWTKjPew5TWlDJ+9XjuGHAHjw15rMPHr62v5cGND7Ln7B6WXLOEUd6jOvw1FAVUmfGOpsqMK422ZmylTta1e1lsa8xNzXl7wtsEOgbyqOZR9uft75TXURSl+1CJoofZpN2Ei5UL0W7RnfYa9hb2fHjNh7hau/LAbw9wvPB4p72WoiiGpxJFD3JhEUAT0bl/tW42bnw89WNszGy4/9f7SStJ69TXUxTFcFSi6EF2n73yIoBXw8fOh4+mfoREcu+v95Jdlt0lr6soStdSiaIHidfGY21mfcVFAK9GkEMQH075kPKachZuWMjZ8rNd9tqKonQNlSh6CCklm7SbGOk1Eiszqy597TDnMD6Y8gFFVUXctf4uMss6voSAoiiGoxJFD3Gk8Ag5FTkt7o3dmaLdovlk6ieU1pRy9/q70Z7Ttn6QonRzWq2WiRMnEh4ezoABAxrvpn7hhRfw8fEhJiaGmJgY1q1b13jMgQMHGDlyJAMGDCAqKoqqqqpmx//Xv/6FEIL8/HxAlRlXN9x1sv8m/VdGfxotCysLDRrH4fzDcvQXo+XkrybLMyVnDBqLYty6ww13WVlZcu/evVJKKUtLS2VoaKg8fPiwfP755+Vbb711Wf/a2loZFRUlk5OTpZRS5ufny7q6uibHTk9Pl1OnTpX+/v6NZcxVmXGlU50vAuhk5WTQOCJcIlg6dSk19TXcvf5uVZ5cMWpeXl4MHjwYAHt7e8LDw1uszrphwwaio6MZOHAgAC4uLpiaNr0N8WOPPcabb755Ud00VWZc6TSZZZkcLzrOk7FPGjoUAPo792fptKXc/+v93LH+DpZMXsIg90GGDksxYm/seoNjhcc6dMww5zD+Ouyvbe6flpbGvn37GD58OAkJCbz77rusXLmS2NhY/v3vf+Pk5MSJEycQQjBt2jTy8vJYsGABf/nLX4CLy4zHxcXh4+PTmFDOM+oy40KI6UKI40KIFCHE0008bymE+LLh+Z1CiIALnnumof24EGJaa2MKISYLIZKEEMlCiG1CiJCre4s93ybtJqBjiwBerVCnUFbNXIWzlTP3briXzdrNhg5JUdqtrKyMG264gcWLF9OnTx8eeOABTp06RXJyMl5eXjzxhL5Sc11dHdu2beOzzz5j27ZtrFmzho0bNwK/lxmvqKjglVde4cUXX7zsdaSxlhkXQpgCS4ApQAawWwgRJ6U8ckG3hUCRlDJECLEAeAOYL4SIABYAAwBv4DchRL+GY5ob831gjpTyqBDiQeAfwF0d8F57LE26hiCHIPr26WvoUC7iY+fDp9M/5cGND/JnzZ95YdQLzA2Za+iwFCN0Jd/8O1ptbS033HADt956K9dffz0AHh4ejc/fe++9XHvttYD+G/348eNxdXUFYObMmSQlJTF58uTG/qdOnSI1NbXxbCIjI4PBgweza9cuoy4zPgxIkVKellLWAKuBS+vYzgHOT8N/A0wW+rQ2B1gtpayWUqYCKQ3jtTSmBPo0PHYAstr31nqHkuoS9uTs6bKb7K6Ui7ULy6YtY6jnUJ5NeJaPD3zcOasyFKUTSClZuHAh4eHhPP74443t2dm/31y6Zs2axtLj06ZN48CBA1RUVFBXV8fmzZuJiIi4aMyoqChyc3NJS0sjLS0NX19fkpKS8PT07LZlxtsyR+EDXLjWMQO49I6uxj5SyjohRAng0tC+45JjfRoeNzfmImCdEKISKAVGtCHGXmtr5lbqZb3BlsW2ha25LUsmL+HZhGf5v33/R1ppGs+PfB4LUwtDh6YoLUpISGDVqlVERUURExMDwKuvvsoXX3xBcnIyQggCAgIad7JzcnLi8ccfZ+jQoQghmDlzJrNmzQIunqNozsyZM1m3bh0hISHY2NiwfPlyAJydnXn22WcZOnQoAM899xzOzvrdK99//33uuusuKisrmTFjBjNmzOjwP4e2JIqmLnhd+pWwuT7NtTd1JnN+zMeAmVLKnUKIp4C30SePi19QiPuA+wD8/f2bjrwX2KTdhKu1K1GuUYYOpUUWpha8PvZ1AhwCeC/5PTLOZbB44mKDr9JSlJaMGTOmyTPgmTNnNnvMbbfdxm233XZZ+yeffNJk/7S0tMbHQgiWLFnSZL977rmHe+6557L22NhYDh061Gw8HaEtl54yAL8Lfu/L5ZeDGvsIIczQXzIqbOHYJtuFEG7AQCnlzob2L4EmNzyQUn4kpYyVUsa6ubm14W30PDX1NWzL3MZ43/GdXgSwIwgheGDgA7w57k0O5R/i1nW3crrktKHDUhSlFW35dNkNhAohAoUQFugnp+Mu6RMH3Nnw+EYgvuFmjjhgQcOqqEAgFNjVwphFgMMFE95TgKPtf3s92+6zuymvLe+28xPNmRE4g2XTl1FeW85ta29jS0brm9UrimI4rSYKKWUd8BDwC/oP7a+klIeFEC8KIWY3dFsKuAghUoDHgacbjj0MfAUcAdYDf5JS1jc3ZkP7vcC3Qoj9wO3AUx33dnsWjVbT5UUAO8pAt4F8PutzfOx9eGjjQ7yf/D46qTN0WEo3oxY+dIyr/XNUW6EaKSkl13xzDVGuUSyeuNjQ4bRbVV0VL+14ibhTcYzzHcerY17FwdLB0GEp3UBqair29va4uLh0yr0BvYWUkoKCAs6dO0dgYOBFz7V1K1R1Z7aROlJwhNyKXKO77HQpKzMrXh79MtGu0by++3UW/LSAxRMX09+5v6FDUwzs/D0CeXl5hg7F6FlZWV10B/eVUonCSGm0GkyECeN8xxk6lKsmhGB+2Hz6O/fniU1PcOu6W/nL0L9wU7+b1DfJXszc3Pyyb8CKYXT/pTJKkzRaDYPcB/Wo5aUx7jF8ed2XDHYfzEs7XuKJzU9QWlNq6LAUpddTicIIZZzL4ETRCaO/7NQUV2tXPpjyAY8NeQxNuoab4m4iOTfZ0GEpSq+mEoUROl8EsCcmCgATYcI9kffw6YxPEUJw1/q7+OjAR9Tr6g0dmqL0SipRGCGNVkOwQzD+fXr2HenRbtF8fd3XTO07lf/u+y93rr+TtJI0Q4elKL2OShRGpqS6hL05e7t1baeOZG9hzxvj3uCNsW+QWpLKTT/exGdHP1P3XChKF1KJwsg0FgHsoZedmiKEYGbQTNbMWcNQz6G8vut1Fm1YRGZZx2/QoijK5VSiMDKadA1u1m5EukYaOpQu527jzpLJS3hx1IscKTjC9T9czxfHvlBzF4rSyVSiMCKNRQD9jKMIYGcQQjAvdB7fzf6OgW4DeXXnq9yx/g5OFJ0wdGiK0mP1zk8bI7Xr7C4q6ip61WWn5njbefPhlA95dcyraEu1zP9xPov3LqaqrsrQoSlKj6MShRHRpBtvEcDOIITguuDriJsbx6ygWSw9tJR5P8xje+Z2Q4emKD2KShRGQid1bNJuYrT3aCxNLQ0dTrfiaOXIy2Ne5pOpn2BqYsr9v93PY5rH1GS3onQQlSiMxJGCI+RW5vaaZbHtMdxrON/O/paHBz1MQlYCc76fw3vJ71FZV2no0BTFqKlEYSQ0Wg2mwpRxPldXBPDH/VkkpOR3UFTdj6WpJfdF30fc3Dgm+U3i/f3vM+f7OWxI26D2NlCUdlKJwkicLwLoaOXY7jFyS6t4+It93PrJTrad7LnJAsDT1pM3x7/J8mnLsbew54nNT7Bww0IO5x82dGiKYnRUojACGecyOFl0kgl+E65qnP/tTAfAytyE+1bt4UBGcQdE173Fesby5bVf8o/h/+BU8SkWrF3AU5ufQluqNXRoimI0VKIwAhqtBoBJfpPaPUZVbT2f7TjD5DB3Nj81EWdbC+5avpvTeWUdFWa3ZWZixvyw+aydt5b7o+9nc8ZmZv8wm9d2vkZhVaGhw1OUbk8lCiOg0WoIcQzBr49fu8f4cX8WBeU13DMmEI8+Vqy8ZxgAty/dRXZJ75jstbOw46FBD7F23lrmhszly+NfMvO7mXy4/0PKa8sNHZ6idFsqUXRzJdUlJOUkXdVNdlJKliWk0d/DnlHBLgAEudmx4u6hlFTWcvNHOzhb0ntuVHOzceP5kc/z3ZzvGO45nHeT32X6t9NZenApFbUVhg5PUbodlSi6uS0ZW666CODO1EKOZpdy9+iAi7YWjfZ15NN7hpF3rppbPt5BTmnvSRYAQQ5B/GfSf/hs5mcMcB3A4qTFzPhuBisOrVBLahXlAipRdHMarb4I4ADXAe0eY9m2VJxszJk7yOey54b0deLTe4aRU1rFzR/vILeXJQvQ73vxwTUfsGrGKvo79effe//NjG9nsPLwSlUSRFFQiaJbq6mvISEz4aqKAKYXVPDr0RxuGe6Plblpk31iA5xZcc8wzpbok0VvmbO4VIx7DB9N/YiVM1YS4hTCW3veYtq30/jk4Cdq726lV1OJohvbmb3zqosAfpqYhqkQ3D4ioMV+QwOcWXH3MHJKq7nx/URS83vv5O4g90F8MvUTlk9bTrhLOP9J+g9Tv5nK23vfJq8iz9DhKUqXU4miG9Nor64IYFl1HV/t1jIzygtPB6tW+w8LdGb1fSOoqq3npg+2czirpF2v21PEesbywTUf8PV1XzPOZxyfHv6Uad9O45+J/yS9NN3Q4SlKl1GJops6XwRwjM+YdhcB/GaPlnPVddw9OqDNx0T6OPDVH0diYWrCgg93sCtV3WcQ5hzGm+Pf5Ke5PzEvZB5xKXFc9/11PL7pcZJyklRpEKXHU4mimzpScIS8yrx2X3bS6SQrtqcxyN+RQf5OV3RssJsd3zwwCrc+lty2dCc/7s9qVww9jV8fP54d+Sy/3PgLdw+4m53ZO7lz/Z3M/2k+cafiqKmvMXSIitIpVKLopuLT4/VFAH3bVwRQczyXtIIK7h4d2K7jvR2t+eaPoxjo68DDX+zj3fiT6ptzA1drVx4d8ii/3vgrz454lur6av6+7e9M/WYq7ye/T35lz66jpfQ+KlF0U+eLADpYOrTr+OUJaXj2sWJGpGe7Y3C2teB/i4Yzb5AP/9pwgie/PkBNna7d4/U0NuY2/KH/H/h+zvd8OOVDIlwieG//e0z9Zip/2/o3knOTVXJVegQzQwegXE57TktKcQpPxT7VruOPnz3HtpR8nprWH3PTq/suYGlmytt/GEhfFxsW/3aSjKIKltw6GFc7tXnSeUIIRnmPYpT3KNJK0vj82OfEnYrjx9M/EuoUyk39buLaoGuxt7A3dKiK0i7qjKIb0qTriwC2d5OiFdtTsTQz4ZZh/h0SjxCCR6/px38WxJCsLea6/24jWdvzK8+2R4BDAH8b/jfib4rn+ZHPYybMeHXnq0z+ejLPJTzHofxD6ixDMTptShRCiOlCiONCiBQhxNNNPG8phPiy4fmdQoiAC557pqH9uBBiWmtjCr1XhBAnhBBHhRCPXN1bND6NRQDtr7wIYGF5Dd8lZXL9YB+cbC06NK45MT58+8AoTE0Ef/ggkc93pqsPvWbYmNtwY78b+eq6r1g9azUzA2eyPm09N6+9mfk/zefLY19SUt27lx8rxqPVRCGEMAWWADOACOBmIUTEJd0WAkVSyhDgHeCNhmMjgAXAAGA68J4QwrSVMe8C/IAwKWU4sPqq3qGRKa4qZl/uvnavdvpiVzrVdbp2T2K3JtLHgR8fGsOIYBf+tuYgf/32AFW19Z3yWj3FANcBvDDqBTbetJG/D/879bKel3e+zKSvJvHk5ifZmrGVOl2docNUlGa1ZY5iGJAipTwNIIRYDcwBjlzQZw7wQsPjb4B3hb763BxgtZSyGkgVQqQ0jEcLYz4A3CKl1AFIKXPb//aMz9bMrdTLeib5X/neE7X1OlYlnmFMiCv9PDrveriTrQXL7xrKO7+e4F1NCvu1Jfz3lkGd+po9gb2FPQvCFjC//3yOFh4l7lQca0+v5Ze0X3CzduPaoGuZHTybEKcQQ4eqKBdpy6UnH+DC7cAyGtqa7COlrANKAJcWjm1pzGBgvhBijxDiZyFEaNveSs+g0Wpwt3YnwuXSk7bW/XzoLGdLq7hnTEDHB3YJUxPBk9P6s+LuoRSUV3Pdf7fxvx1n1KWoNhBCEOESwdPDnib+pngWT1hMpGskq46sYl7cPG7+6WY+P/q5WmardBttSRSiibZLPw2a63Ol7QCWQJWUMhb4GFjWZFBC3NeQTPbk5fWM+jvV9dVsy9zW7iKAy7alEuhqy4R+7p0QXdMm9Hdn3Z/HMizQmX98f4j7V+2lqFzdeNZW5qbmTO47mf+b9H/8dtNv/GXoX6jV1fLarteY/PVk7ttwH2tOrlFFCRWDasunUQb6OYPzfIFLb9Vt7COEMAMcgMIWjm1pzAzg24bHa4DopoKSUn4kpYyVUsa6ubm14W10fzuzd1JZV9mu+Ymk9CKStcXcNSoAE5Om8nDncbe34tO7h/H3meFojucy/T9biD+W06Ux9AQu1i7cHnE738z+hu9mf8fCyIVoz2l5bvtzTPhyAo/EP8L61PVqrwyly7VljmI3ECqECAQy0U9O33JJnzjgTiARuBGIl1JKIUQc8LkQ4m3AGwgFdqE/o2huzO+BSejPJMYDJ9r/9oyLRqvBxsymXUUAlyekYW9pxg1DfDshstaZmAjuHRfEyGAXnvhqP/es2MONQ3x59toIHKzNDRKTMQt1CiXUKZSHBz3MofxD/Jz2M7+k/tJYKHKi30SmBUxjlPcorMxaL/ioKFej1UQhpawTQjwE/AKYAsuklIeFEC8Ce6SUccBSYFXDZHUh+g9+Gvp9hX6Sug74k5SyHqCpMRte8nXgMyHEY0AZsKjj3m73db4I4Gif0ViYXtmy1uySSn4+mM1dowKwszTsPZSRPg7EPTya/25M4f3Np9h6Mo/Xr49mYljXXQ7rSYQQRLlFEeUWxRNDniApN4mfU39mw5kNrEtdh7WZNWN8xjCl7xTG+ozFzsLO0CErPZDoCZOPsbGxcs+ePYYO46oczDvILetu4dUxr3Jd8HVXdOyb64/xweZTbH5qIn7ONp0U4ZU7kFHMU18f4HjOOeaohsGlAAAgAElEQVQN8uHvs8LVHd0dpFZXy56ze9iYvpGN6RvJr8zH3MSckd4jucb/Gib4TcDJ6sqKQSq9jxBib8N8cMv9VKLoHv4v6f9YdmgZm+dvvqL6TpU19Yx6fSPDAp358PZW/767XHVdPUvi9WcX1uam/HVGGDcP9e/yeZSeTCd17M/bz29nfmNj+kYyyzIxESbEesQyyX8S433H42tvmEuSSvemEoWRmffDPJysnFg2rclFXs36Ylc6z3x3kNX3jWBEkEsnRXf1UnLL+Mf3B9lxupAYP0denhtJpE/7Ch4qzZNScqzwGL+e+ZXf0n8jtSQVgBDHEMb5jmO873ii3aIxM1Fl3hSVKIyKtlTLzDUz+cvQv3B7xO1tPk5KybTFWzAzMWHtI2PQ3+PYfUkp+T45k1fWHqWwvIY7Rgbw58mhHV5qRPndmdIzbMnYwuaMzew9u5c6WYeDpQNjfMYw3nc8o7xHtbtCsWL82poo1NeKbiBeGw9wxctiE1IKOJFTxls3Rnf7JAH6idl5g3yZ1N+DtzYcY2ViGmv2ZfLI5FBuH9EXCzNVo7Kj9e3Tl9sjbuf2iNs5V3OOxKxENmdsZmvGVtaeXoupMCXGPYaxPmMZ7TOafk792nUPj9KzqTOKbuCu9XdRWlPKd7O/u6LjFq7Yzf6MYrb9dRJW5qadFF3nOXa2lFfWHmXryXwCXW15ZkYYUyI8jCLpGbt6XT2HCg6xWbuZLRlbOF50HABnK2dGeo9ktPdoRnqPxNXa1cCRKp1JXXoyEsVVxYz/ajyLohbx8KCH23xcan45E/+1iUcmh/L4lH6dGGHnklKy6XgeL689wqm8ckYGufDXGWHE+DkaOrReJa8ij8TsRLZnbScxK5HCKv1e6f2c+jXutTHYY3C7929Xuid16clIbMncgk7qmOR3ZUUAP92ehrmp4LYRHbPnhKEIIZgY5s6YUFe+2JXO4t9OMndJAteEe/DE1H6Ee/UxdIi9gpuNG7ODZzM7eDY6qeN44fHGpPHZ0c9YcXgFlqaWDPEYwjDPYQzzHEa4S7iaFO8l1BmFgT2meYwDeQf49aZf23xtuLSqlpGvbmTaAE/enh/TyRF2rbLqOpZvS+Wjracpq67j2mhvHrsmlCA3dSOZoVTUVrAnZw+JWYkkZiVyquQUAHbmdgz2GMwwz2EM9RxKf6f+mJoY3yXQ3kydURiB6vpqErISuC7ouiuaQPxqt5bymvpO23PCkOwszXh4cii3j+zLR1tOszwhjXUHs7l+kA8PTgwh0NXW0CH2OjbmNozzHcc433EA5Ffms+fsHnad3cXus7vZkrEF0JdRj/WIbUwcoU6hamK8h1CJwoAaiwBewZan9TrJiu1pDA1wIsq35y5rdLSx4C/Tw7h7dCDvbUrh853pfJuUwcwoL/40MURdkjIgV2tXpgdOZ3rgdAByynPYnbOb3Wd3syt7FxqtfitfR0tHBrkPYrD7YAZ5DCLCOQJzU1X3yxipRGFA8enx2JrbMsxzWOudG/x2NIeMokr+PjO8EyPrPtzsLXn+ugE8MCGYpdtS+V/iGX46kM3kMHf+NCmEwf6qTIWhedh6cG3QtVwbdC0A2WXZjWcb+3L3NSYOS1NLolyj9MnDYzAD3QZib6E2uzIGao7CQHRSx+SvJzPYfTD/nvDvNh83/8NEMooq2fzUBMxMe99pfUlFLZ8mprEsIZXiilpGBDmzaEwQk8LcVVmQbiq/Mp99uftIykkiOTeZo4VHqZf1CAT9nPo1Jo5B7oPwtPU0dLi9ipqj6OYO5R8ivzL/ii47Hc4qYWdqIX+bGdYrkwSAg405j0wOZeGYQD7fmc6yhFQWrdxDgIsNd48O5MYhvtgauIKucjFXa1em9J3ClL5TAP3k+MH8gyTlJrEvZx9xp+JYfXw1AO7W7kS5RRHtFk2UaxQDXAZgY959Cl32Vup/lIFotBpMhSljfca2+ZjlCWlYm5syP9a4l8R2BFtLM+4dF8RdowNYf+gsS7el8nzcYf694Tg3D/PnzlEBeDtaGzpMpQk25vo9V87vu1Knq+NE0Qn25e7jYP5BDuYdZGP6RgBMhAkhjiFEu0UT7apPHkGOQWqSvIupS08GMvf7ubhYu7B02tI29c8vq2bUa/HMH+rHS3MjOzk645SUXsTSbamsP3QWgCnhHtwy3J8xIa7qspSRKaoq0ieN/IMcyDvAwfyDnKs5B+iX5Q5wHUC0azSRrpFEuETgYaPu6G8PdempG0svTedUySlu7Hdjm4/5bEc6NfU67hod0HmBGbnB/k4MvsWJzOJKViWe4es9WjYczuIh+y0M69uH8KkLcXH3NnSYShs4WTldtCRXJ3WcKT3TmDQO5B1g2aFl1Ov3QcPZypkIl4jGnwEuA1Ty6EAqURjA+VUgbZ2fqK6r5387zzChvxvB6sazVvk4WvP0jDAeG+tB8ao78MjZAilQc/IdkuzHYDn8biJGz0aom8OMhokwIdAhkECHQOaEzAGgsq6S44XHOVJwRP9TeITErMSLkke4c/hFCcTL1kslj3ZQicIANFoN/Zz64WPn06b+aw9kk3euukfeYNdp8k9i+cXNeBSlwqx/k24fQ1b8x/TPXYvTxs2cjXcj1Xce/pPvxSfAeGtl9WbWZtbEuMcQ4/57dYLKukpOFJ34PXkUHLnozMPJ0olwl3D6O/env5P+J8AhQJUiaYX60+liRVVF7Mvdx71R97apv5SSZQmphLjbMS5UVfJskxMb4NuFYGoBd8RBwGj8Af+wWKoqK9i58QusD37G8PSPYfnHHLCMoTL8BiIm3Yq9g7Oho1eugrWZNQPdBjLQbWBjW1VdFSeLTjaedRwpOML/jvyPWl0tABYmFgQ7BtPPqd/vCcS5v9qn4wIqUXSxLRn6IoBtvey050wRhzJLeXlupDplbo2UsO1t2PgSeEbBgs/B0e+iLlbWNgy/diFcu5Cz6SdI3/gxvulxeO//B1XJ/ySpzxjMY+YTNnYe5hZWBnojSkeyMrMiyi2KKLeoxrZaXS2pJakcLzzOiaITHC88ztbMrfxw6ofGPh42Ho2Jo59zP/o59aOvfd9eWc9KrXrqYo9qHuVg/kF+u/G3Nn3wP/jZXhJSCkh8ZhI2FiqvN6umHH54CA5/B5E3wOx3waJt6++lTsfxJA3Fif+jX8GvOHOOYuw45nwNtrE3EzF8Cqamve/DoTfKr8znROEJjhcd1/8UHietJI06WQfo7y4Pcggi2DGYYMdgQhxDCHYMxsfOxyiX7KpVT91QVV0V27O2Mzt4dpuSREZRBesPneXecUEqSbSkOB1W3wJnD8E1L8DoR+EKzr6EiQlhsZMhdjJVVVUkbfsB3f4vGViwDusN35OzwZlUt8k4DLmB/rFTMDFTfxc9lau1K64+rozyGdXYVlNfw6niUxwvOs7JopOcKj7F7rO7+en0T419rM2sCXQIbEwc53/1svUyygRyKfUvvgs1FgFs45anqxLPIITgjpEBnRuYMUvbBl/dAfV1cMtX0G/qVQ1nZWXF4GvmwzXzqSwrIXnzl8gjPxCT+z1W67+mYL0jp10nYh1zPWHDp2Nmrvb77uksTC0Idwkn3OXi+mrnas5xqvgUp4pPkVKcwqniUyRmJRJ3Kq6xj42ZzUVnH4EOgQT2CcTbztuoLmGpS09d6IXtL7A+bT1b5m/BwrTlD5iKmjpGvLqRsaFuLLl1cBdFaESkhN2fwPqnwTkIFnwBriGd9nJl54o5uuUbOBLHgLId2IhqCrHnhOM4zCOuI3z0tdjYqgJ3CpRUl1yUPM4/LqgqaOxjbmJO3z59CXQIJKBPQOPS34A+AdhZdN0SeHXpqZvRSR2btJsY4zOm1SQB8G1SJqVVddwzJqDzgzM2ddWw7klIWgmh0+CGj8Gqc1eo2Nk7MnTWIpi1iIryUpK2fY88/AORxfHYbV9LZYIFybZDqAueRtDoG3D2VGVWeisHSwcGewxmsMfFX/CKq4pJK00jtSRV/1Oaysmik8Snxzcu3wVws3a7PIE4BBj0MpZKFF3kYP5BCqoK2nTZSaeTLE9IJdrXQZXRvtS5HPjqdtDuhLFPwMS/QxefwtvY9mHwtDtg2h3UVldyeOd6yg7+hH/eZrwOJsLBFzhpFkq+90ScB80mNHo0Jr20iKPyO0crR2KsLr7vA6C2vhZtmbYxgaSVpJFamsrPaT83li0BsDK1wr+PP3379G38CegTQJhzGFZmnbtCTyWKLqJJ1xcBHOMzptW+W07mcTqvnMXzY9SS2Atl7oXVt0FVMdy0AgbMM3REmFtaM2DcPBg3D6nTceLQHvL2fo9LZjzDz3yMSfpH5P7gTKrDcExDJxMy/Foc3bwMHbbSjZibmhPkEESQQ9BF7VJKCqsK9cmj4UwkrTSNk0Un0aRrGldirZm9hhCnzrvsCipRdBmNVkOsR2ybbuJZlpCGu70lM6PUB0qj5C/gxz+DnQcs3KC/T6KbESYm9IseRr9o/UZURbmZpCauQaT8SljJVhz2/Ixu91OcNA+hyHMMfSKnETx4orpfQ2mSEAIXaxdcrF2I9bx4GqFWV0tWWRZnSs/g36fzL3OqRNEFzpSe4XTJaf7Q/w+t9k3JPceWE3k8MaUfFmbqcgX1dfDrc7BjCQSMhZs+BVsXQ0fVJk7uPjjNeQh4iPq6Oo4nb6HgwHocs7YyWPspZhnLKf/ZikM2MVT4TcBj4FSCwgapy1RKq85Phvft07dLXk8lii6gSW8oAtiG+YnlCWlYmJlwy3A1GUpFIXxzN5zeBMPuh2mvgJHuuWxqZkb/2EkQOwmA4qJ8Tu9aR+2JjfgVJuJ9YgeceJ18HDljPwid/xh8Bk3FOzjqiu4JUZTOoBJFF9BoNfR36o+3XcslrosravguKZO5Md642Fl2UXTdVM4RWH0zlGbp77IefLuhI+pQjk6ujRPiALlnjpK+9xdE2jb8SvfiflgDh18iH0fS7QdT6z8Gz4HX4B8ShTBRZxxK12pTohBCTAf+A5gCn0gpX7/keUtgJTAEKADmSynTGp57BlgI1AOPSCl/aeOY/wXullIadV3toqoikvOSuS/6vlb7rt6tpbK2XlWJPfojfHc/WNrBXWvBb5ihI+p07n3Dce8bDjyK1Ok4k3KIrORfMdMmEHAuCbfD8XD4RXJxJt02mlrvobhFjCMgcoS66U/pdK0mCiGEKbAEmAJkALuFEHFSyiMXdFsIFEkpQ4QQC4A3gPlCiAhgATAA8AZ+E0Kcr+nc7JhCiFjAsUPeoYFtztiMTuqY4DehxX519TpWbk9jZJAL4V59uia47kang81vwObXwWcIzP8f9Ol9Gw0JExP69oumb79o4AmkTkfGqUOcPfAbJukJ+Jbux/PkJjj5FhXfW3LCKowy91hsg0fhHzMBe0dVZVjpWG05oxgGpEgpTwMIIVYDc4ALE8Uc4IWGx98A7wr9us45wGopZTWQKoRIaRiP5sZsSExvAbcAhl//eJU06Ro8bDyIcI5osd8vh3PIKqnihdkDuiiybqb6HKz5Ixz7CQbeAte+A+ZqNRDoE4dvaDS+odHA4wDkZpwmfX88tamJuBbuY3D6csy0S9FpBKmm/uQ4xCD8h+EePoa+oVGYqKKGylVoS6LwAbQX/D4DGN5cHyllnRCiBHBpaN9xybHnd+tpbsyHgDgpZbax30NQVVdFYnZim4oALk9Ixd/ZhsnhHl0UXTdSeBq+uAXyT8C012DEA2oCtxXuvkG4+wYBiwAoKSki/cAWyk8mYJu7h8iiDdgV/QD7oVTakG7Vn3LXgVgHDsUvahxOHmqxhNJ2bUkUTf2PvbRAVHN9mmtvajZOCiG8gZuACa0GJcR9wH0A/v7d8x/9juwdVNZVMslvUov9DmQUs+dMEc9eG4GpSS/7gDwVD1/frU8Mt38HQRMMHZFRcnBwImrsHBir3yZU1tehPbmPnKOJ6DL24Fx8iP4ZqzDPXAHbIBcXsmzDqHSPwSZwOP6Ro3FyVpeslKa1JVFkABfu/uILZDXTJ0MIYQY4AIWtHNtU+yAgBEhp+AZuI4RIkVJedtuhlPIj4CPQFwVsw/vocpu0m7Azt2Oo59AW+y1PSMPO0ow/xPp2UWTdgJSQuAR+fRbcwvSbDDn38kn8DiRMzfALG4pf2O//9irKz3Hi0A6KT+7APCcZr7Ij+KUmQOoSiId04UWuTX9q3SOx7TsYv4gROLm3bbtepWdrS6LYDYQKIQKBTPST07dc0icOuBNIBG4E4qWUUggRB3wuhHgb/WR2KLAL/ZnGZWNKKQ8DnucHFUKUNZUkjMGFRQDNW1j7n1taxU8Hsrh1eF/srYzzHoErVlsJPz4KB1ZD+HUw9wP9CielU9nY2jNg+BQYPqWxraQoj4xDCZSf3olF3kG8y4/inboJUoFNkIcz2TahVLoMwNI3Bvd+w/Dq218t0e1lWk0UDXMODwG/oF/KukxKeVgI8SKwR0oZBywFVjVMVhei/+Cnod9X6Ce+64A/Sakvk9jUmB3/9gznQN4BCqoKWl3t9L8dZ6jTSe4aFdAlcRlcSSZ8eStk7dMX9Bv7JKgPHYNxcHLDYexcGDu3sa2kKA/tkR2Unk7CLPcgbuXHiUjfjZlWB4n6OQ+tRTDFjuGYeAzAKXAgfv0GY2uv9pjuqdR+FJ3knb3vsPLwSjYv2Ewfi6aXu1bV1jP69XgG+TvyyZ0tX57qEdJ3wpe3QW0FXP8RhM0ydERKG1WUn0N7bA8lqXsR2QdwLD2Gb00q1qIGAJ0UZJt4kGcTTLVzGJY+kbgGDcYraACmZr3kTNkIqf0oDEyj1TDEc0izSQIgbn8WBeU1veMGu70rYO2T4OgHd8aBe3irhyjdh42tPf2HTIQhv5ehkfV1ZJ85Rk7KPqoyDmJeeAzX8lP4lm3HVCthB9RIM9LM/CiyDabGJQwL72jcg6Lx7huKmdpS1miov6lOkFaiLwk8v//8ZvtIKVm2LZX+HvaMCjaOInftUl8L65+B3R9D8CS4cRlYqz02egJhaoZXUCReQZEXtZeXl5Fxcj/Facnoco5gU3Qc39JkPEt/0899JECltCDNzJdim0DqnEKw9A7HNSASr8BIzCytDfOGlGapRNEJNmk3AS0XAdxxupBjZ8/x+vVRPXfPifJ8+OpOOLMNRj0Mk18AU/VPrqeztbWjf8xoiBl9UXtZSQFnTyRRrD1Mfe4xrEtO4V12CM/SeEzS9Wcg9VKQYeJJgXVfKvsEY+LeHzufAXgER+Hs4t5z/690c+p/bSfQaDWEOYe1WARwWUIqTjbmzB3UQ5cfZh+A1bdAeR5c/zFEt15iXenZ7BxcCBk6BYZOuai9oryUjJRDFJ05RG3OMayKT+FcmUpY+V4sz9bCAX2/AhzIMfPhnK0/OscgLDz64egbhndQBNZ2aiK9M6lE0cEKqwpJzkvm/uj7m+2TXlDBb0dzeHBCMFbmPbC0wqFv4fs/gY0z3LMevAcZOiKlG7Ox7UO/gaNg4KiL2uvr6shKP0F+2kGqso9iUpCCTdkZgkp24VayHs6gX2wP5ONIvoUv52z7Uu8UhIV7CH18wvAMCMdOrca6aipRdLDN2taLAK7YnoapENw+IqDL4uoSunqIfwm2vQN+I2D+KrBzN3RUipEyNTPDOygC76DL66RVlJWQlXqEYu0xanJPYlp0GrvydAKKEnArWgunf++bizO55j6U2fhT7+CPuWsAfbxCcfXrh4u7j7onpA1UouhgGq0GT1tPwp2bXtVzrqqWr/ZomRnlhadDDyp6V1UC3y6CkxtgyF0w4y0wU+Wvlc5hY+dASNRIiBp52XMlxYXkph2lNOsYtbkpmBWfxr48nZCSBFxL1kL6730rpCW5ph6UWPlQY+8Hjn2xdA/GwSsYN/9+2Nj1iCLWV00lig5UWVdJYlYic0PmNjvp9s3eDMqq67hnTA9aEpt3Qr/JUFEazHobhi40dERKL+bg6IxDE5PpAFUV58hJP0lx1gkqc04ji9KwPKfFoSoLj/J92OVUwfHf+xfShzwzL0qtvKmx90M4BWDt2hdHryDcfIN7zWUtlSg60I6sHVTVVzHRv+nVTjqdZMX2NAb5OxLj10O+qZz4RX8mYWoBd8RBwOX/ORWlu7Cysadv2GD6hg2+7DldvY68/GzytScpO5tCXUEqpiVnsKnIxKf8KG7ntmCeXX/RMUXYU2DqTpmlJzV23uDgh6VrX+zcA3DyCsLJ3QdhYvzzkCpRdKBNGQ1FAD2avss6/lguZwoqeHJq/y6OrBNICVv/DfEvg2eUvqifo1/rxylKN2ViaoKbhw9uHj40VcBa1tdScFZLQWYKZblp1BSkI0q1WFVk4VCVgVt5Ena5lXDy92NqpBl5Jq4UmXtQYe1Fnb0PwtEPK5e+2Lv3xdU7AAdH526/7Fclig5Sr6tnk3YTY33GNlsEcPn2VDz7WDE90rPJ541GTTn88Cc4vAYib9DvaW1hY+ioFKVTCVNzXHyCcPEJavJ5qdNRWJhPXuYpynLSqClMg5IMzMuysKvKJqBkN67Fv2CScXHZpDJpTYGJC6UWblRZe1Bv54WJgy9WLj70cQ/A2aMv9i4eBj0zUYmigxzMP0hhVWGzq52Onz1HQkoBf5neH3NTI15lUXQGVt8KOYfgmn/C6D+rTYYUBf1OhM6u7ji7ugOXT7ID1NfWkJedRlH2KSrytVQXZUJpFuYVZ7GtysG9eDcuRUWYZeguOq5GmlFg4kyxmRsVVu7U2nqBvRfmTn6EjppNH8fOre6gEkUHidfGYybMGOM7psnnlyekYmVuws1Du+cmS22SuhW+vhPq6+DWryF0SuvHKIrSyNTcAjf/frj592u2T21tLdk5GRSfTaUsT0ttUQayNBvz8mxsqnPxKDuGS2kC1mf1BRnTQwapRGEsNOkaYj1jmywCWFhew5p9mVw/2BcnWyNcMiol7PoY1j8NLsGw4AtwNcptQhSl2zM3N8fLNxAv3+ZXRkqdjuLCPArPpuHbN6zTY1KJogOklqSSVprGzWE3N/n8F7vSqa7TcffogK4NrCPUVcPaJ2DfKug3XV8e3Kp3LAlUlO5KmJjg6OqBo6tHl7yeShQdoKUigLX1OlYmpjE21JV+HvZdG9jVOncWvrwdMnbpNxia+He1yZCi9EIqUXQAjVZDuHM4XnZelz237mA2OaXVvHZ9lAEiuwoZe/U70VWVwE0rYMA8Q0ekKIqBqK+HV6mgsoDk3ORmVzstT0gj0NWWCf2MqOZR8hewfAaYmsPCDSpJKEovpxLFVdqSsQWJbPKyU1J6EcnaYu4aFYCJiREsIa2vg/V/g+//CH7D4N5N+pvpFEXp1dSlp6sUr43Hy9aLMOfLVx4sT0jD3sqMG4f4GiCyK1RRCN/cDac3wbD7Ydor+jMKRVF6PZUorkJlXSU7snYwL3TeZbfgZ5dUsu5gNnePCsDWspv/Mecc0Rf1K82COUtg0G2GjkhRlG6km3+CdW+NRQCbuOy0KvEMUkruHBXQ9YFdiSNxsOaPYGkHd60Dv6brVCmK0nupRHEVNFoN9ub2xHrGXtReWVPP57vSmRLhgZ9zN62BpNPB5jdg8+vgMwTm/w/6NL91q6IovZdKFO1Ur6tnc8ZmxviMwdzk4mv53ydnUlxRyz2ju+meE9Xn9GcRx36CgbfAte+AeQ/aRElRlA6lEkU7Hcg/QGFV4WV7T0gpWZ6QSoRXH4YFOhsouhYUnNIX9cs/AdNfh+F/VEX9FEVpkUoU7aRJ12BmYsYYn4uLACakFHAip4x/3TSw+9WYT9moX9kkTOD27yBogqEjUhTFCKj7KNpJo9Uw1GMo9hYXl+VYlpCKq50F1w28/C5tg5EStv8XPrsR+vjAvRqVJBRFaTOVKNrhfBHASy87peaXE38sl1uH98XSrJtsf1hbCWvuhw3/gLBrYeGv4NxN504URemW1KWndtBoNcDlRQBXJKRibiq4dUQ32XOiJFNfrylrn76g39gnVVE/RVGumEoU7aBJ1xcB9LT9fUvTkspavt6bwXUDvXG37wYriNJ36Cu/1lbo97MOm2XoiBRFMVLq6+UVyq/MZ3/e/svOJr7eo6Wipr57LInduwJWXKu/iW7RbypJKIpyVdqUKIQQ04UQx4UQKUKIp5t43lII8WXD8zuFEAEXPPdMQ/txIcS01sYUQnzW0H5ICLFMCNGtCg41FgG8YH6iXidZsT2NYQHORPoYcFOf+lr9JkM//hkCx8K98eAebrh4FEXpEVpNFEIIU2AJMAOIAG4WQkRc0m0hUCSlDAHeAd5oODYCWAAMAKYD7wkhTFsZ8zMgDIgCrIFFV/UOO5gmXYO3rTf9nfo3tv16JIeMokrD7mBXlgcr58DuT2DUI3DrN2DtZLh4FEXpMdpyRjEMSJFSnpZS1gCrgTmX9JkDfNrw+BtgstDfRDAHWC2lrJZSpgIpDeM1O6aUcp1sAOwCuk3p1YraChKzE5ngN+GieySWJ6Ti42jNlIiu2ZbwMtn74eOJkLkXrv8Ypr4EJt1k1ZWiKEavLYnCB9Be8PuMhrYm+0gp64ASwKWFY1sds+GS0+3A+jbE2CV2ZO+gur76ostOh7NK2JlayJ2j+mJmaoApn4PfwNJpIHVwz3qI/kPXx6AoSo/WllVPTd1eLNvYp7n2pj5RLx3zPWCLlHJrk0EJcR9wH4C/f9csRz1fBHCIx5DGtuUJadhYmDI/touXxOrqIf4l2PYO+I2A+avAzoh20VMUxWi05StwBuB3we99gazm+gghzAAHoLCFY1scUwjxPOAGPN5cUFLKj6SUsVLKWDc3tza8jatTr6tnS8YWxvj+XgQw71w1cclZ3DDYFwebLpxzryyGz+frk8SQu+HOH1WSUBSl07QlUewGQoUQgUIIC/ST03GX9IkD7mx4fCMQ3zDHEAcsaFgVFQiEop93aHZMIcQiYBpwsxpssOwAAA6kSURBVJRSd3Vvr+Psz9tPYVUhk/wmNbZ9vjOdmnodd3XlJHbeCfhkMpzWwKy34brFYGbRda+vKEqv0+qlJyllnRDiIeAXwBRYJqU8LIR4EdgjpYwDlgKrhPj/9u49uqryzOP49+ESRAhyFRESLhaKUatiBooIA1IVsBXrgMVqBbTaduwabceu0bHL5bB0rcG20652nDp2xFutIIgVx7sS0EEugkZulhIJIRHEoNzkHvLMH/uNHtJzTm7nEsjvs9ZZ2dnZ+32f856d85x3v2fv10qIehJTwr7rzOxpYD1QBdzi7kcB4pUZqnwQKAOWhgHj+e4+I2XPuJGKyo+9CeChqqM8sayM0V/twRk9OmYmiA0vw/yboHUOXL8A+o3ITL0i0qLV68psd38ReLHWurtjlg8CkxPsex9wX33KDOub3dXi7k5ReRFDTxtKx5woKbywehs7Pj+UmQvs3OGtX8HCe6HX1+A7T0LnvLr3ExFJgWb3ptwcle4ppWxPGdedGc0l7e7MWlLKV07tyMiB3dNb+eF98NwtsO5ZOHsSXPE7yGmms+aJyAlJiaIeirZENwEcnTcagJVlO1n70R7u+/bZ6Z1zYmdZNMnQ9rVwyYzoQrrmNseFiJzwlCjqoaj82JsAzvq/Uk5p35arzk/jtYClb8HT10dfg712Lgy8JH11iYgkoZsC1mHHgR2srlz9xUV2FTv388q6j7lmaD7tc9Jw9bM7LP/v6HYcHbpH92tSkhCRLFKPog6Lyxfj+Bdfi318aRlmxvXD+6a+sqpD8MJP4b0/wqDxcNVDcFKn1NcjItIAShR1KCqPbgI4qMsg9h2qYvaKLYw7+zRO79w+tRXt/TiaP6JiBYz6GYz+V00yJCLNghJFEvuP7GfZtmVMGjQJM2P+uxXsOVjFDam+wK5iVTQT3cHdMPlROOvbqS1fRKQJlCiSWLptaXQTwLwxVFc7j7y9mXP7nMKQ/BTevrv4T/D8bZDbE258FU47J3Vli4ikgM5tJFG0pYjcnFyG9BzC4o2VbKrcx/QR/VPzldijVfDynfDnH0HeULhpkZKEiDRL6lEkUHMTwJG9R9K2VVseWbKZU3PbMeGcXk0vfP9nMHcalC6GYT+ES++F1s1qIj8RkS8oUSRQXFnMzkM7GZM/hpJP9vLmXyv550sGkdOmiZ2w7evgqWtg7zaY+ACcf11qAhYRSROdekqgaEu4CeDpF/HIks3ktGnFd4c1cc6J9Qvgfy6JvgY77UUlCRE5LqhHEUfNTQCHnTaMqqocnnm3givPO51uHds1rsDqalj877B4JvQuhO/8ETql4BSWiEgGqEcRR+nuUrbs3cKYvDHMfqecg0eqmd7Yu8Qe2gtzrouSxHnXwrQXlCRE5LiiHkUcC8sXAnDR6aOY/Ox6hg/oxpm9GnGF9Kcfwuzvwo6NMG4mDPuBbuonIscdJYo4isqLKOhWQPFm2Lr7IP828eyGF1LyOsy7AawVfG8+DBid4ihFRDJDp55q2XFgB2sq1zAmbwyzlpSS3/VkLh7cgPmo3eHt38GTk6FTH7ipSElCRI5r6lHUsqh8EY7TO6eQVWXbufubBbRuVc/TRUcOwPO3wuo5cOYVcOXvoV2GpkkVEUkTJYpaFpUvonfH3rxe3IqO7dowubCec07srogmGdpWDGN+DqNu13iEiJwQdOopRs1NAIf1HMmLaz9mcmEfck+qxxXTZUvhodHR4PWUp+Dvf6YkISInDPUoYizdGt0EcN/OwVRVO9Mu7Ff3TqsehRduh855MPV/4dTB6Q5TRCSjlChiLCxfSG7bXN4o7sDYwd3p261D4o2rDsPLd8DKh+GMsTDpYWifwrvKiog0E0oUQVV1FW9WvEnfkwtZuu9o8jknPq+EuVOhbAlc+E/wjXugVRqmRRURaQaUKILiT4rZdWgXrT4dwODTchl+Rrf4G24tjgat9++Aq/4AX7s6s4GKiGSYBrODovIi2lhbyj7KZ/qIfvHnnFgzD2aNAxxueFlJQkRaBPUo+PImgB18MNY+l4nn9T52g+qj8MYMWPIbyB8OVz8OHRtwEZ6IyHFMiQLYtHsT5XvLOfjxBfxgaD4ntY0ZbziwC575PpS8BhdMh/H3Q5uc7AUrIpJhShREp50AfF8B3xve98s/VG6IJhnaVQaX/wf83Y1ZilBEJHuUKIDXN7+BH+zD5QWD6dnppGjlhpfgmZugTTuY+jz0vTC7QYqIZEmLH8yu3F/Jus/WcnjPmdGcE+7w5i+jnkS3AXDzIiUJEWnRWnyPYuGWRQAM7Ph1zuvZFuZOg/V/hnMmw7d+CzknZzU+EZFsq1ePwszGmdkGMysxszvi/L2dmc0Jf19uZv1i/nZnWL/BzC6rq0wz6x/K2BjKTOvI8fy/vEL14a785Ny+8PClsP45uGRGdI2EkoSISN2JwsxaAw8A44EC4BozK6i12Y3ATnf/CvBrYGbYtwCYApwFjAP+y8xa11HmTODX7j4Q2BnKTov9R/bzwa5V5B3qxdi3psCucrh2Hoy4VTf1ExEJ6tOjGAqUuPsmdz8MzAYm1tpmIvBYWJ4HjLXoirWJwGx3P+TupUBJKC9umWGfi0MZhDKvbPzTS27uutdxq+KezxdhHXrAzUUw8Bvpqk5E5LhUn0TRGyiP+b0irIu7jbtXAbuBbkn2TbS+G7ArlJGortRwZ8k7v6TT0aOce/pI+P7r0O2MtFQlInI8q89gdrxzMF7PbRKtj5egkm3/t0GZ3QzcDJCfnx9vk+TMyG+XR/eqzrS/bg60avFfABMRias+iaICyIv5vQ+wNcE2FWbWBjgF+KyOfeOt3wF0NrM2oVcRry4A3P0h4CGAwsLCuMmkLj+//snG7CYi0qLU52P0O8DA8G2kHKLB6QW1tlkATA3Lk4CF7u5h/ZTwraj+wEBgRaIywz5FoQxCmc81/umJiEhT1dmjcPcqM/sx8ArQGpjl7uvMbAaw0t0XAA8DT5hZCVFPYkrYd52ZPQ2sB6qAW9z9KEC8MkOV/wLMNrN7gfdC2SIikiUWfYg/vhUWFvrKlSuzHYaIyHHFzFa5e2Fd22kEV0REklKiEBGRpJQoREQkKSUKERFJSolCRESSOiG+9WRmlUBZI3fvTnShX3OjuBpGcTWM4mqYEzWuvu7eo66NTohE0RRmtrI+Xw/LNMXVMIqrYRRXw7T0uHTqSUREklKiEBGRpJQowo0FmyHF1TCKq2EUV8O06Lha/BiFiIgkpx6FiIgk1aIThZmNM7MNZlZiZnekua48Mysysw/MbJ2Z3RrW32NmH5lZcXhMiNnnzhDbBjO7LF1xm9lmM1sT6l8Z1nU1s9fMbGP42SWsNzP7bah7tZkNiSlnath+o5lNTVRfPWP6akybFJvZHjO7LVvtZWazzOwTM1sbsy5lbWRmF4TXoCTsW69J2xPE9Qsz+0uo+1kz6xzW9zOzAzFt92Bd9Sd6jo2MK2WvnUVTFCwPcc2xaLqCxsY1JyamzWZWnMn2ssTvDVk/vr7g7i3yQXR78w+BAUAO8D5QkMb6egFDwnIu8FegALgHuD3O9gUhpnZA/xBr63TEDWwGutdadz9wR1i+A5gZlicALxHNRvh1YHlY3xXYFH52CctdUvhafQz0zVZ7AaOAIcDadLQR0Twtw8M+LwHjmxDXpUCbsDwzJq5+sdvVKidu/YmeYyPjStlrBzwNTAnLDwI/amxctf7+K+DuTLYXid8bsn581Txaco9iKFDi7pvc/TAwG5iYrsrcfZu7vxuW9wIfkHw+8InAbHc/5O6lQEmIOVNxTwQeC8uPAVfGrH/cI8uIZiTsBVwGvObun7n7TuA1YFyKYhkLfOjuyS6qTGt7ufubRHOt1K6zyW0U/tbJ3Zd69F/9eExZDY7L3V/1L+edX0Y0U2RCddSf6Dk2OK4kGvTahU/DFwPzUhlXKPdq4KlkZaS6vZK8N2T9+KrRkhNFb6A85vcKkr9xp4yZ9QPOB5aHVT8OXchZMV3VRPGlI24HXjWzVRbNRQ7Q0923QXQgA6dmIa4aUzj2nzfb7VUjVW3UOyynI8YbiD5B1uhvZu+Z2WIzGxkTb6L6Ez3HxkrFa9cN2BWTDFPVXiOB7e6+MWZdRtur1ntDszm+WnKiiHeOLu1fATOzjsAzwG3uvgf4PXAGcB6wjajrmyy+dMQ9wt2HAOOBW8xsVJJtMxkX4dzzFcDcsKo5tFddGhpLutruLqKZJWsmh98G5Lv7+cBPgT+ZWad01R9Hql67dMV7Dcd+IMloe8V5b0i4aYL609ZeLTlRVAB5Mb/3Abams0Iza0t0IDzp7vMB3H27ux9192rgD0Td7WTxpTxud98afn4CPBti2B66rDVd7U8yHVcwHnjX3beHGLPeXjFS1UYVHHt6qMkxhoHMbwLXhtMNhFM7n4blVUTn/wfVUX+i59hgKXztdhCdbmlTa32jhbKuAubExJux9or33pCkrMwfXw0Z0DiRHkTzhW8iGjyrGSg7K431GdG5wd/UWt8rZvknROdqAc7i2AG+TUSDeymNG+gA5MYsv000tvALjh1Iuz8sX86xA2kr/MuBtFKiQbQuYblrCtptNjC9ObQXtQY3U9lGwDth25rBxglNiGsc0Tz1PWpt1wNoHZYHAB/VVX+i59jIuFL22hH1MGMHs/+xsXHFtNnibLQXid8bmsXx5e4tN1GExptA9A2DD4G70lzXRUTdvdVAcXhMAJ4A1oT1C2r9M90VYttAzLcUUhl3+Ad4PzzW1ZRHdB74DWBj+FlzwBnwQKh7DVAYU9YNRAORJcS8uTchtpOBT4FTYtZlpb2ITklsA44QfUK7MZVtBBQCa8M+/0m4GLaRcZUQnauuOc4eDNv+Q3iN3wfeBb5VV/2JnmMj40rZaxeO2xXhuc4F2jU2rrD+UeCHtbbNSHuR+L0h68dXzUNXZouISFIteYxCRETqQYlCRESSUqIQEZGklChERCQpJQoREUlKiUJERJJSohARkaSUKEREJKn/B7iPc2wQRLNOAAAAAElFTkSuQmCC\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# 不同大小与不同超参模型的学习率曲线\n", "opts = [NoamOpt(512, 1, 4000, None), \n", " NoamOpt(512, 1, 8000, None),\n", " NoamOpt(256, 1, 4000, None)]\n", "plt.plot(np.arange(1, 20000), [[opt.rate(i) for opt in opts] for i in range(1, 20000)])\n", "plt.legend([\"512:4000\", \"512:8000\", \"256:4000\"])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 正如我们所分析,先线性增加,然后再逐渐减小。\n", "---\n", "\n", "## 正则化\n", "### 标签平滑\n", "- 在训练期间,我们采用ϵls = 0.1的标签平滑。随着模型训练变得更加不确定,这会增加困惑度perplexity,但会提高准确率(accuracy)和BLEU分数。\n", "- 使用KL div损失实现标签平滑,而不是使用one-hot目标分布,我们创建的分布具有对正确单词的置信度以及其余平滑质量分布在整个词汇表中的置信度。" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "class LabelSmoothing(nn.Module):\n", " \"实现labelsmoothing.\"\n", " def __init__(self, size, padding_idx, smoothing=0.0):\n", " super(LabelSmoothing, self).__init__()\n", " self.criterion = nn.KLDivLoss(reduction='sum')\n", " self.padding_idx = padding_idx\n", " self.confidence = 1.0 - smoothing\n", " self.smoothing = smoothing\n", " self.size = size\n", " self.true_dist = None\n", " \n", " def forward(self, x, target):\n", " assert x.size(1) == self.size\n", " true_dist = x.data.clone()\n", " true_dist.fill_(self.smoothing / (self.size - 2))\n", " true_dist.scatter_(1, target.data.unsqueeze(1), self.confidence)\n", " true_dist[:, self.padding_idx] = 0\n", " mask = torch.nonzero(target.data == self.padding_idx)\n", " if mask.dim() > 0:\n", " true_dist.index_fill_(0, mask.squeeze(), 0.0)\n", " self.true_dist = true_dist\n", " return self.criterion(x, Variable(true_dist, requires_grad=False))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 例子\n", "- " ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX8AAADsCAYAAACcwaY+AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAADQdJREFUeJzt3X+oX/V9x/Hna0mME+u0i5suidWyILUbs+1davEfayeLTkxhDiKstT8vK8osFFbtwLLCwO2PbitKJdZg3Yq2aNnuJCIO09my6by6+CNmoZkUvEvAaTZtaBdN+94f+Zbc3nzjTe453nP183zAl/s93/PJ+Xw46DOHc7/fb1JVSJLa8gtDL0CStPiMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1qFP8k7w9yYNJvj/6edpRxv0kyfbRY6rLnJKk7tLlff5J/hLYV1U3JbkeOK2qPj9m3P6qOrnDOiVJPeoa/13ARVW1N8mZwHeq6twx44y/JC0hXe/5/2pV7QUY/fyVo4w7Mcl0kkeSfLjjnJKkjpbPNyDJPwFnjNn1p8cxz1lVtSfJO4GHkjxdVf85Zq5JYBJgGcvedxKnHMcUb111yklDL2HJOPfsF4dewpKx6werhl6ClqD9r/zXi1V1+nzjFuW2z5w/cwdwX1Xd83rjTsnb6/350ILX9lby6obfHnoJS8a2LbcNvYQl44Of+PTQS9AS9PD9n3+8qibmG9f1ts8UcPXo+dXAP8wdkOS0JCtHz1cBFwLPdpxXktRB1/jfBFyS5PvAJaNtkkwk+dpozLuA6SRPAtuAm6rK+EvSgOa95/96quol4Ih7M1U1DXxq9PxfgN/sMo8kqV9+wleSGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGtRL/JNsSLIrye4k14/ZvzLJN0f7H01ydh/zSpIWpnP8kywDbgEuBc4Drkpy3pxhnwT+p6p+Hfgr4C+6zitJWrg+rvzXA7ur6rmqehW4G9g4Z8xG4Ouj5/cAH0qSHuaWJC1AH/FfDTw/a3tm9NrYMVV1EHgZ+OW5B0oymWQ6yfRrHOhhaZKkcfqI/7gr+FrAGKpqc1VNVNXEClb2sDRJ0jh9xH8GWDtrew2w52hjkiwHfgnY18PckqQF6CP+jwHrkpyT5ARgEzA1Z8wUcPXo+ZXAQ1V1xJW/JGlxLO96gKo6mORa4AFgGbClqnYk+RIwXVVTwO3A3ybZzaEr/k1d55UkLVzn+ANU1VZg65zXbpz1/P+AP+hjLklSd37CV5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUG9xD/JhiS7kuxOcv2Y/R9L8t9Jto8en+pjXknSwizveoAky4BbgEuAGeCxJFNV9eycod+sqmu7zidJ6q6PK//1wO6qeq6qXgXuBjb2cFxJ0hukj/ivBp6ftT0zem2u30/yVJJ7kqztYV5J0gJ1vu0DZMxrNWf7H4G7qupAkj8Cvg5cfMSBkklgEuBETuphaW8N27bcNvQSlowPfuLTQy9Bekvo48p/Bph9Jb8G2DN7QFW9VFUHRpu3Ae8bd6Cq2lxVE1U1sYKVPSxNkjROH/F/DFiX5JwkJwCbgKnZA5KcOWvzCmBnD/NKkhao822fqjqY5FrgAWAZsKWqdiT5EjBdVVPAHye5AjgI7AM+1nVeSdLC9XHPn6raCmyd89qNs57fANzQx1ySpO78hK8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNaiX+CfZkuSFJM8cZX+SfCXJ7iRPJXlvH/NKkhamryv/O4ANr7P/UmDd6DEJfLWneSVJC9BL/KvqYWDf6wzZCNxZhzwCnJrkzD7mliQdv8W6578aeH7W9szotZ+TZDLJdJLp1ziwSEuTpPYsVvwz5rU64oWqzVU1UVUTK1i5CMuSpDYtVvxngLWzttcAexZpbknSHIsV/yngo6N3/VwAvFxVexdpbknSHMv7OEiSu4CLgFVJZoAvAisAqupWYCtwGbAb+BHw8T7mlSQtTC/xr6qr5tlfwDV9zCVJ6s5P+EpSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDWol/gn2ZLkhSTPHGX/RUleTrJ99Lixj3klSQuzvKfj3AHcDNz5OmO+W1WX9zSfJKmDXq78q+phYF8fx5IkvfEW857/B5I8meT+JO9exHklSXP0ddtnPk8A76iq/UkuA/4eWDd3UJJJYBLgRE5apKUtfb/7a+cPvYQl4wQeG3oJ0lvColz5V9UrVbV/9HwrsCLJqjHjNlfVRFVNrGDlYixNkpq0KPFPckaSjJ6vH8370mLMLUk6Ui+3fZLcBVwErEoyA3wRWAFQVbcCVwKfSXIQ+DGwqaqqj7klScevl/hX1VXz7L+ZQ28FlSQtAX7CV5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5Ia1Dn+SdYm2ZZkZ5IdSa4bMyZJvpJkd5Knkry367ySpIVb3sMxDgKfq6onkrwNeDzJg1X17KwxlwLrRo/3A18d/ZQkDaDzlX9V7a2qJ0bPfwjsBFbPGbYRuLMOeQQ4NcmZXeeWJC1Mr/f8k5wNvAd4dM6u1cDzs7ZnOPIvCJJMJplOMv0aB/pcmiRplt7in+Rk4F7gs1X1ytzdY/5IHfFC1eaqmqiqiRWs7GtpkqQ5eol/khUcCv83qurbY4bMAGtnba8B9vQxtyTp+PXxbp8AtwM7q+rLRxk2BXx09K6fC4CXq2pv17klSQvTx7t9LgQ+AjydZPvotS8AZwFU1a3AVuAyYDfwI+DjPcwrSVqgzvGvqu8x/p7+7DEFXNN1LklSP/yEryQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoM6xz/J2iTbkuxMsiPJdWPGXJTk5STbR48bu84rSVq45T0c4yDwuap6IsnbgMeTPFhVz84Z992quryH+SRJHXW+8q+qvVX1xOj5D4GdwOqux5UkvXF6veef5GzgPcCjY3Z/IMmTSe5P8u4+55UkHZ9UVT8HSk4G/hn486r69px9pwA/rar9SS4D/qaq1o05xiQwOdo8F9jVy+K6WQW8OPQilgjPxWGei8M8F4cthXPxjqo6fb5BvcQ/yQrgPuCBqvryMYz/ATBRVUOfpHklma6qiaHXsRR4Lg7zXBzmuTjszXQu+ni3T4DbgZ1HC3+SM0bjSLJ+NO9LXeeWJC1MH+/2uRD4CPB0ku2j174AnAVQVbcCVwKfSXIQ+DGwqfq63yRJOm6d419V3wMyz5ibgZu7zjWQzUMvYAnxXBzmuTjMc3HYm+Zc9PYLX0nSm4df7yBJDTL+R5FkQ5JdSXYnuX7o9QwpyZYkLyR5Zui1DOlYvsqkFUlOTPJvo8/u7EjyZ0OvaWhJliX59yT3Db2WY2H8x0iyDLgFuBQ4D7gqyXnDrmpQdwAbhl7EEvCzrzJ5F3ABcE3D/10cAC6uqt8Czgc2JLlg4DUN7ToOfcPBm4LxH289sLuqnquqV4G7gY0Dr2kwVfUwsG/odQzNrzI5rA7ZP9pcMXo0+wvEJGuA3wO+NvRajpXxH2818Pys7Rka/Z9c483zVSZNGN3m2A68ADxYVc2eC+CvgT8Bfjr0Qo6V8R9v3FtXm72q0c8bfZXJvcBnq+qVodczlKr6SVWdD6wB1if5jaHXNIQklwMvVNXjQ6/leBj/8WaAtbO21wB7BlqLlpDRV5ncC3xj7ndYtaqq/hf4Du3+XuhC4IrR19bcDVyc5O+GXdL8jP94jwHrkpyT5ARgEzA18Jo0sGP5KpNWJDk9yamj578I/A7wH8OuahhVdUNVramqsznUioeq6g8HXta8jP8YVXUQuBZ4gEO/1PtWVe0YdlXDSXIX8K/AuUlmknxy6DUN5GdfZXLxrH+V7rKhFzWQM4FtSZ7i0MXSg1X1pniLow7xE76S1CCv/CWpQcZfkhpk/CWpQcZfkhpk/CWpQcZfkhpk/CWpQcZfkhr0//mgRC4rTnTbAAAAAElFTkSuQmCC\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# Example of label smoothing.\n", "crit = LabelSmoothing(5, 0, 0.4)\n", "predict = torch.FloatTensor([[0, 0.2, 0.7, 0.1, 0],\n", " [0, 0.2, 0.7, 0.1, 0], \n", " [0, 0.2, 0.7, 0.1, 0]])\n", "v = crit(Variable(predict.log()), \n", " Variable(torch.LongTensor([2, 1, 0])))\n", "\n", "# Show the target distributions expected by the system.\n", "plt.imshow(crit.true_dist)" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[]" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAAD9CAYAAABHnDf0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAGmBJREFUeJzt3X2QXNV55/Hv0+8zPTNImpGQrHdsYSGwE2AKsL0kBOM1kF1Y1yaOVE7spBy03jVxdu3aLVzZwl62diuJU5s1FeKYxY5tKoHFjivWOrLlFMFlOzEY8RKQBIKxAGmQhN7fZjTT093P/nFvz/S0umdaUo9a9/bvU0x139uHnqd1pd+cOffcc83dERGReEm0uwAREWk9hbuISAwp3EVEYkjhLiISQwp3EZEYUriLiMTQrOFuZl81swNmtq3B62Zm95vZkJm9YGbXtL5MERE5G8303L8G3DrD67cBa8KvjcCXzr8sERE5H7OGu7v/CDgyQ5M7gW944ElgnpktaVWBIiJy9lox5r4U2FO1PRzuExGRNkm14D2szr66axqY2UaCoRvy+fy1a9eubcG3FxHpHM8888whd184W7tWhPswsLxqexmwt15Dd38QeBBgcHDQt27d2oJvLyLSOczsjWbatWJYZhPw0XDWzA3AcXff14L3FRGRczRrz93MHgFuAgbMbBj4HJAGcPe/ADYDtwNDwCjwO3NVrIiINGfWcHf3DbO87sAnW1aRiIicN12hKiISQwp3EZEYUriLiMSQwl1EJIYiF+5Pv36EP9myk2Kp3O5SREQuWpEL9+d3H+PPnhji9ESp3aWIiFy0IhfuuXRQ8tiEeu4iIo1EMNyTAIyp5y4i0pDCXUQkhiIX7l1huGvMXUSksciF+1TPXWPuIiKNRC7cuzJByeq5i4g0Frlwz6Y05i4iMpvIhXtXRuEuIjKb6IV75YRqQeEuItJI5MJdUyFFRGYXuXCfmgqp2TIiIo1ELtyzqcryA+q5i4g0ErlwTySMbCqhcBcRmUHkwh2CcXeFu4hIY5EM9650UhcxiYjMIJLhnksntPyAiMgMIhru6rmLiMwksuGuMXcRkcYiGe5dCncRkRlFM9wzGpYREZlJJMNdJ1RFRGYW0XBPauEwEZEZRDbcx4sKdxGRRiIZ7l3quYuIzCiS4Z5LJxgrlnH3dpciInJRimS4d6WTlMrOREnhLiJSTyTDffKGHRp3FxGpq6lwN7NbzWynmQ2Z2T11Xl9hZk+Y2XNm9oKZ3d76UqdMhrvG3UVE6po13M0sCTwA3AasAzaY2bqaZv8VeMzdrwbWA3/e6kKr5SbvxqRwFxGpp5me+3XAkLvvcvcC8ChwZ00bB/rC55cAe1tX4pm6Ju+jqguZRETqSTXRZimwp2p7GLi+ps3ngR+Y2e8BeeCWllTXQFcm+JmknruISH3N9Nytzr7aaSobgK+5+zLgduBhMzvjvc1so5ltNbOtBw8ePPtqQ7lUpeeucBcRqaeZcB8GlldtL+PMYZePA48BuPtPgRwwUPtG7v6guw+6++DChQvPrWIgl9GYu4jITJoJ96eBNWa22swyBCdMN9W02Q28H8DMriAI93Pvms+i0nMfV7iLiNQ1a7i7exG4G9gCvEQwK2a7md1nZneEzT4D3GVm/ww8Avy2z+Hlo13quYuIzKiZE6q4+2Zgc82+e6ue7wDe19rSGsulg59Jmi0jIlJfJK9QrUyF1OJhIiL1RTLctfyAiMjMIhnu2VQ4LKOeu4hIXZEMdzMjl07ohKqISAORDHcIxt11QlVEpL5Ih7t67iIi9UU23HPppJYfEBFpQOEuIhJDEQ73hMbcRUQaiGy4d2U05i4i0khkwz2X0rCMiEgj0Q139dxFRBqKbrinkrpCVUSkgciGe1cmwVhRJ1RFROqJbLjnUkmtCiki0kBkw70rk2SsWGIO7wkiIhJZkQ33XDqJO4xraEZE5AyRDneAcV3IJCJyhsiG++TdmDQdUkTkDJEN96n7qCrcRURqRTbc1XMXEWkssuE+eR9VhbuIyBkiH+7quYuInCnC4a4xdxGRRiIb7l2ZyrCMpkKKiNSKbLjnUuGwjJYgEBE5Q2TDfbLnXlS4i4jUimy4q+cuItJYdMM9E5SutWVERM4U2XDPJBMkTD13EZF6IhvuZkYurfuoiojUE9lwh2AJAl3EJCJypqbC3cxuNbOdZjZkZvc0aPNhM9thZtvN7K9bW2Z9Qc9dY+4iIrVSszUwsyTwAPABYBh42sw2ufuOqjZrgM8C73P3o2a2aK4KrpZLJzQsIyJSRzM99+uAIXff5e4F4FHgzpo2dwEPuPtRAHc/0Noy68tpWEZEpK5mwn0psKdqezjcV+1y4HIz+0cze9LMbm1VgTPp0glVEZG6Zh2WAazOvtq7UqeANcBNwDLgx2Z2lbsfm/ZGZhuBjQArVqw462Jr5dJJRgrF834fEZG4aabnPgwsr9peBuyt0+Y77j7h7q8BOwnCfhp3f9DdB919cOHCheda8ySdUBURqa+ZcH8aWGNmq80sA6wHNtW0+VvgVwDMbIBgmGZXKwutRydURUTqmzXc3b0I3A1sAV4CHnP37WZ2n5ndETbbAhw2sx3AE8B/dvfDc1V0hcbcRUTqa2bMHXffDGyu2Xdv1XMHPh1+XTBdGc2WERGpJ9JXqGr5ARGR+mIQ7mXK5drJOyIinS3i4a5lf0VE6ol0uHelK/dR1dCMiEi1SId7Lgx3nVQVEZku0uHeHd5HdVQ37BARmSbS4T6vOwPA0dFCmysREbm4RDrc+/NBuB8+pXAXEakW6XBfEIb7kRGFu4hItZiE+3ibKxERubhEOtxz6ST5TJLD6rmLiEwT6XAHWNCT0bCMiEiN6Id7PqtwFxGpEflw789nNFtGRKRG5MN9QT6jee4iIjUiH+79+QyHRwoES8qLiAjEINwX5DMUimVGtASBiMikWIQ7wBGNu4uITIp8uPf3hEsQ6EImEZFJkQ/3BfksoCUIRESqRT/cuys9d4W7iEhF9MO9R4uHiYjUiny45zNJMqmEwl1EpErkw93MdJWqiEiNyIc7BNMhteyviMiUGIW7eu4iIhWxCPfKEgQiIhKIRbhr2V8RkeliEe79PRlGCyXGJrS+jIgIxCTcK+vLaGhGRCQQq3DX4mEiIoFYhHt/XouHiYhUi0W4T/bcNSwjIgI0Ge5mdquZ7TSzITO7Z4Z2v2ZmbmaDrStxdv1aGVJEZJpZw93MksADwG3AOmCDma2r064X+BTwVKuLnE1fV4pUwhTuIiKhZnru1wFD7r7L3QvAo8Cdddr9d+CPgbEW1tcUM2O+rlIVEZnUTLgvBfZUbQ+H+yaZ2dXAcnf/bgtrOyu6SlVEZEoz4W519vnki2YJ4E+Bz8z6RmYbzWyrmW09ePBg81U2QevLiIhMaSbch4HlVdvLgL1V273AVcAPzex14AZgU72Tqu7+oLsPuvvgwoULz73qOhTuIiJTmgn3p4E1ZrbazDLAemBT5UV3P+7uA+6+yt1XAU8Cd7j71jmpuIFgTXfNcxcRgSbC3d2LwN3AFuAl4DF3325m95nZHXNdYLMW5LOcGCsyUSq3uxQRkbZLNdPI3TcDm2v23dug7U3nX9bZq9xL9ehIgUV9uXaUICJy0YjFFapQvQSBxt1FRGIT7gM9wVWqB09q3F1EJDbhvmJBNwBvHB5pcyUiIu0Xm3Bf1Jsll07w+uHRdpciItJ2sQn3RMJY1Z/n9UPquYuIxCbcAVb2d/O6hmVEROIV7qsG8uw5cppS2WdvLCISY7EK99X9eQqlMnuPnW53KSIibRWrcF/ZnwfQ0IyIdLxYhfvqgUq4a8aMiHS2WIX75HRIzZgRkQ4Xq3CvTIfUhUwi0uliFe4QTId8TT13EelwsQt3TYcUEYljuGs6pIhIPMMd4A3NmBGRDha/cB8IVod8TSdVRaSDxS7cL+3NkUsneEMnVUWkg8Uu3BMJY+WCvK5SFZGOFrtwh2BoRlepikgni2e49+fZfXhU0yFFpGPFM9wHgumQ+45rOqSIdKZYhvvK/mDGzOuHNDQjIp0pluH+jkU9ALy8/0SbKxERaY9Yhvui3hxL53Xx3O5j7S5FRKQtYhnuANesnM+zu4+2uwwRkbaIb7ivmMe+42M6qSoiHSnG4T4fgGff0NCMiHSe2Ib7FUv6yKYSGpoRkY4U23DPpBK8a+klCncR6UixDXcITqpuf/ME48VSu0sREbmg4h3uK+ZRKJXZvlfz3UWkszQV7mZ2q5ntNLMhM7unzuufNrMdZvaCmT1uZitbX+rZmzqpqqEZEekss4a7mSWBB4DbgHXABjNbV9PsOWDQ3d8NfAv441YXei4W9eliJhHpTM303K8Dhtx9l7sXgEeBO6sbuPsT7l5ZyOVJYFlryzx3uphJRDpRM+G+FNhTtT0c7mvk48D3zqeoVtLFTCLSiZoJd6uzr+5C6Wb2m8Ag8IUGr280s61mtvXgwYPNV3kedDGTiHSiZsJ9GFhetb0M2FvbyMxuAf4AuMPdx+u9kbs/6O6D7j64cOHCc6n3rF2xpI+ebIofv3phfpiIiFwMmgn3p4E1ZrbazDLAemBTdQMzuxr4MkGwH2h9mecuk0rwK2sX8YMdb+nOTCLSMWYNd3cvAncDW4CXgMfcfbuZ3Wdmd4TNvgD0AN80s+fNbFODt2uL265azJGRAj977Ui7SxERuSBSzTRy983A5pp991Y9v6XFdbXUTe9cSDaV4Pvb9vGet/e3uxwRkTkX6ytUK7ozKX758oVs2f4WZQ3NiEgH6IhwB7jtXYvZf2KM54c1a0ZE4q9jwv3mtZeSThpbtu1vdykiInOuY8L9kq407337AN/bth93Dc2ISLx1TLhDMGtm95FRduzTKpEiEm8dFe4fWHcpCYO/e2Ffu0sREZlTHRXu/T1Zbl67iEef3sPYhG7gISLx1VHhDvC7N17GkZEC3372zXaXIiIyZzou3K9fvYCrlvbx0E92ac67iMRWx4W7mXHXjZex6+AIT+y8qJbBERFpmY4Ld4Db37WEJZfkeOjHr7W7FBGROdGR4Z5OJvjt967ip7sOs+3N4+0uR0Sk5Toy3AHWX7eCfCbJn/9wqN2liIi0XMeG+yVdae76pcvY/OJ+/mnoULvLERFpqY4Nd4BP/PLbWbGgm3s3badQLLe7HBGRlunocM+lk3z+jnUMHTjFX/6jTq6KSHx0dLhDsFrkLVcs4ouPv8q+46fbXY6ISEt0fLgDfO5fX0mp7HzuO9u1YqSIxILCHVi+oJvP/MvL+cGOtzT3XURiQeEeuuvGy7jtqsX84fdf5p9+rtkzIhJtCveQmfGFX/8FVvV383t//Rx7j2n8XUSiS+FepSeb4su/Nch4scy/e/gZjp+eaHdJIiLnROFe4x2Lerh/wy/y8v4TfPQrTyngRSSSFO513Lz2Ur70kWt5ad9JfvOhpzg2Wmh3SSIiZ0Xh3sAt6y7ly791LTv3n2TD/3mK4aOj7S5JRCLK3RktFDl4cpw3Do9wfHTuRwSsXfO6BwcHfevWrW353mfjR68c5JN/9SyppHH/hqu5cc3CdpckInOsWCozMl7iVKHI6HiRU+NFRgul8LHIqfESo+NFRsbD54Uz24yMlxgJ940UilRH7f/40FV85PqV51SbmT3j7oOztlO4z+61QyN84uFneOXAST59y+X8+5veTiqpX3pELhblsjM6UQrDtsipseLk85EwjEfGq/aNB+F7anx6u9Fw33iTa02ZQT6TIp9Nks+k6A4f89kU3ZkkPdkU3ZXXsynymeDx6hXzWT2QP6fPqnBvsdFCkc9++0W+8/xerlrax//80Lt497J57S5LJLKCoYogTE+OTYXuyapgPlUVxqfGipwcn/5aJaRre8aNTAvjbIrebBDE+WwqDOIgkPM1zyuvTT7PBq91pZOY2dz/YU37DAr3lnN3Nr+4n8//v+0cPjXOR9+zik+9fw0L8pl2lyZywRRL5WmBfKoqeE+NFTk1PjFte6RQ1bb6sclATict7PUGwdqTCx+zQUj3ZNP0ZJP05KaCuNJ7nmozFdgXOoxbrdlwT12IYuLCzPjVdy/hxssH+ML3d/L1n77ON7fu4WPvXcVdN17GfIW8XMTKZedUIQziMIRPjE3fPjk2FcQnxyamBffJsO3pidKs38sMejKpycDtDQN5cV+O3qoQrn3ek02TzybpDR/z2RS5dPIC/OnEj3ru5+GVt05y/+Ov8ncv7qM7neTfXruMj1y/kncu7m13aRIzhWKZk2MTk8F7YmwqiE+OTVQFcBDYQRBPVAV18Dgbs+Bivt5sit5cerKX3JsLgzgztb83Vx3KlefBa93pJIlEtHvIFysNy1xAr7x1kr/44c/57ov7KBTLDK6cz4euWcoHr1zMQE+23eVJm41NlCZDuLpXfGKsyInT0/dVB/aJqufNnODLpRP0ZNP0VYI3l6I3m556ngte66kJ7r7c1HY+BsMWcadwb4OjIwX+5tlhHvnZbn5+cISEwXWrF/D+tZdy4+UDvPPSXv3DiRB3Z7xYnhbM1c9PVD1WhjZOjp8Z0M3c5SufSdKbS0/2kCth25dL0Te5P13Viw729VX1otOawdURWhruZnYr8EUgCTzk7n9Y83oW+AZwLXAY+A13f32m94xjuFe4OzvfOsnmF/fzvRf38eqBUwAM9GS5/rIFXL18HlevmM+Vb+vTeOIcKZc9nAI3PWjrjS9XQvpUnXCeKM3+7yOfSdLXlZ4WutVB3Vcd2tl03XBOaghDmtSycDezJPAK8AFgGHga2ODuO6ra/Afg3e7+CTNbD3zI3X9jpveNc7jX2nvsND8ZOsRPXj3EM28c5c1wxcmEwaqBPGsX97JmUS+rB/KsGsizckE387rTHdfLd3dOT1TmHpemzUmunpUxMj59Slz1TIzqGRyzSVTGl6f1iM8M6L4GoV35/xTMciG1crbMdcCQu+8K3/hR4E5gR1WbO4HPh8+/BfyZmZnrtkYAvG1eFx8eXM6HB5cDcODEGM/tOcb2vSfYuf8E2948wfe27Z82LawrnWTJJTmWzMsx0JNlYU+W/p4s87vTzOtOBz3FbDhOmk3SlU6SSyfn7FfzctkplMqMT5QZL5WCx2KZsYkS48USYxPB87GJMqcnSsFXocjpQpnRiSKnCyVGCyVOh1frjYZzk0cLja/ia6QyEyNfMy1ucV9ucqpcby4dnhSc2q4NcI0vS5w1E+5LgT1V28PA9Y3auHvRzI4D/YDuelHHor4cH7xyMR+8cvHkvrGJEsNHR3nt0Ci7j4yy79hp9h0fY9/x0zy3+xiHTo0zWph9CloqYWRSCTKpBOlkgnTCSCSMVMJImEHwH2ZG2R0cyu6UHUplp+xOsewUS2WKJWeiXGai5JTK5/5zOpNK0JVOks8k6cokJ6/YW9yXo6veVXzZFD3hlX6V+cn5qmlzmokhMrtmwr3ev6Laf+nNtMHMNgIbAVasWNHEt+4cuXSSdyzq5R2LGk+jHC0UOX56gmOjwdfkFX3jRcYngl7x6YkShWKZiVKZQhjQpXIQ2GX34KA4OI6ZYUDCjGTCMIOkGalkglTCSCWNTDL8IZFMTP7QyKQS5FIJsukkmWSCXDpBLvzNoStd+S0iQVcmeK6lGkQuvGbCfRhYXrW9DNjboM2wmaWAS4AjtW/k7g8CD0Iw5n4uBXey7kzQw11ySVe7SxGRi1wzXaqngTVmttrMMsB6YFNNm03Ax8Lnvwb8g8bbRUTaZ9aeeziGfjewhWAq5FfdfbuZ3QdsdfdNwFeAh81siKDHvn4uixYRkZk1tbaMu28GNtfsu7fq+Rjw660tTUREzpXOdImIxJDCXUQkhhTuIiIxpHAXEYkhhbuISAy1bclfMzsIvHEW/8sAnbmcgT535+nUz67P3ZyV7r5wtkZtC/ezZWZbm1kJLW70uTtPp352fe7W0rCMiEgMKdxFRGIoSuH+YLsLaBN97s7TqZ9dn7uFIjPmLiIizYtSz11ERJoUiXA3s1vNbKeZDZnZPe2uZ66Y2XIze8LMXjKz7Wb2++H+BWb292b2avg4v921zgUzS5rZc2b23XB7tZk9FX7u/xsuOR0rZjbPzL5lZi+Hx/09nXC8zew/hX/Ht5nZI2aWi+PxNrOvmtkBM9tWta/u8bXA/WHOvWBm15zP977owz28QfcDwG3AOmCDma1rb1Vzpgh8xt2vAG4APhl+1nuAx919DfB4uB1Hvw+8VLX9R8Cfhp/7KPDxtlQ1t74IfN/d1wK/QPD5Y328zWwp8Clg0N2vIlhKfD3xPN5fA26t2dfo+N4GrAm/NgJfOp9vfNGHO1U36Hb3AlC5QXfsuPs+d382fH6S4B/6UoLP+/Ww2deBf9OeCueOmS0DfhV4KNw24GaCG65DDD+3mfUBv0RwPwTcveDux+iA402w3HhXeOe2bmAfMTze7v4jzrwrXaPjeyfwDQ88CcwzsyXn+r2jEO71btC9tE21XDBmtgq4GngKuNTd90HwAwBY1L7K5sz/Bv4LUA63+4Fj7l4Mt+N43C8DDgJ/GQ5HPWRmeWJ+vN39TeBPgN0EoX4ceIb4H++KRse3pVkXhXBv6ubbcWJmPcDfAP/R3U+0u565Zmb/Cjjg7s9U767TNG7HPQVcA3zJ3a8GRojZEEw94RjzncBq4G1AnmBIolbcjvdsWvp3Pgrh3swNumPDzNIEwf5X7v7tcPdblV/PwscD7apvjrwPuMPMXicYdruZoCc/L/y1HeJ53IeBYXd/Ktz+FkHYx/143wK85u4H3X0C+DbwXuJ/vCsaHd+WZl0Uwr2ZG3THQjjO/BXgJXf/X1UvVd+A/GPAdy50bXPJ3T/r7svcfRXB8f0Hd/8I8ATBDdchnp97P7DHzN4Z7no/sIOYH2+C4ZgbzKw7/Dtf+dyxPt5VGh3fTcBHw1kzNwDHK8M358TdL/ov4HbgFeDnwB+0u545/Jz/guDXsBeA58Ov2wnGnx8HXg0fF7S71jn8M7gJ+G74/DLgZ8AQ8E0g2+765uDz/iKwNTzmfwvM74TjDfw34GVgG/AwkI3j8QYeITivMEHQM/94o+NLMCzzQJhzLxLMJjrn760rVEVEYigKwzIiInKWFO4iIjGkcBcRiSGFu4hIDCncRURiSOEuIhJDCncRkRhSuIuIxND/B40THZ/9zeSbAAAAAElFTkSuQmCC\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "crit = LabelSmoothing(5, 0, 0.1)\n", "def loss(x):\n", " d = x + 3 * 1\n", " predict = torch.FloatTensor([[0, x / d, 1 / d, 1 / d, 1 / d],])\n", " #print(predict)\n", " return crit(Variable(predict.log()), Variable(torch.LongTensor([1]))).item()\n", "plt.plot(np.arange(1, 100), [loss(x) for x in range(1, 100)])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 用一个小例子测试一下\n", "- 构造数据" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "## 数据生成\n", "def data_gen(V, batch, nbatches):\n", " \"Generate random data for a src-tgt copy task.\"\n", " for i in range(nbatches):\n", " data = torch.from_numpy(np.random.randint(1, V, size=(batch, 10)))\n", " data[:, 0] = 1\n", " src = Variable(data, requires_grad=False)\n", " tgt = Variable(data, requires_grad=False)\n", " yield Batch(src, tgt, 0)" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "data_gen(11, 30,20)" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "class SimpleLossCompute(object):\n", " \"A simple loss compute and train function.\"\n", " def __init__(self, generator, criterion, opt=None):\n", " self.generator = generator\n", " self.criterion = criterion\n", " self.opt = opt\n", "\n", " def __call__(self, x, y, norm):\n", " x = self.generator(x)\n", " loss = self.criterion(x.contiguous().view(-1, x.size(-1)),\n", " y.contiguous().view(-1)) / norm\n", " loss.backward()\n", " if self.opt is not None:\n", " self.opt.step()\n", " self.opt.optimizer.zero_grad()\n", " return loss * norm.float()" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "# 贪婪解码\n", "# Train the simple copy task.\n", "V = 11\n", "device = torch.device(\"cuda:0\" if torch.cuda.is_available() else \"cpu\")\n", "criterion = LabelSmoothing(size=V, padding_idx=0, smoothing=0.1)\n", "\n", "model = make_model(V, V, N=2)\n", "model = model.to(device)\n", "model_opt = NoamOpt(model.src_embed[0].d_model, 1, 400,\n", " torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9))" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "# data = torch.rand(30,20,)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [], "source": [ "# s1 = data[9]\n", "# print(s1.src[5], \n", "# s1.trg[5], # \n", "# s1.trg_y[5], \n", "# s1.src_mask.size(),\n", "# sep=\"\\n\")\n", "# print(s1.trg_mask[5])\n", "# print(\"ntokens\", s1.ntokens)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[1, 0, 0, 0, 0, 0, 0, 0],\n", " [1, 1, 0, 0, 0, 0, 0, 0],\n", " [1, 1, 1, 0, 0, 0, 0, 0],\n", " [1, 1, 1, 1, 0, 0, 0, 0],\n", " [1, 1, 1, 1, 1, 0, 0, 0],\n", " [1, 1, 1, 1, 1, 1, 0, 0],\n", " [1, 1, 1, 1, 1, 1, 1, 0],\n", " [1, 1, 1, 1, 1, 1, 1, 1]]], dtype=torch.uint8)" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "mask = subsequent_mask(8)\n", "# mask = mask.unsqueeze(1)\n", "mask" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([1, 8, 8])" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "score = torch.randn(1,8, 8)\n", "score.size()" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[-1.9573e-01, -1.0000e+09, -1.0000e+09, -1.0000e+09, -1.0000e+09,\n", " -1.0000e+09, -1.0000e+09, -1.0000e+09],\n", " [ 6.8826e-01, 2.0662e+00, -1.0000e+09, -1.0000e+09, -1.0000e+09,\n", " -1.0000e+09, -1.0000e+09, -1.0000e+09],\n", " [ 6.6923e-02, 8.2864e-01, 1.0869e+00, -1.0000e+09, -1.0000e+09,\n", " -1.0000e+09, -1.0000e+09, -1.0000e+09],\n", " [ 7.9477e-01, 2.0423e-01, 5.2164e-01, 7.2249e-01, -1.0000e+09,\n", " -1.0000e+09, -1.0000e+09, -1.0000e+09],\n", " [ 4.8070e-01, -1.5997e+00, -2.7634e-01, -1.1522e+00, -2.1877e+00,\n", " -1.0000e+09, -1.0000e+09, -1.0000e+09],\n", " [ 1.6565e+00, -1.3158e+00, -4.1631e-01, 3.1523e-01, -6.0585e-01,\n", " -1.4173e+00, -1.0000e+09, -1.0000e+09],\n", " [ 9.1306e-02, -1.9335e+00, -4.0153e-01, 5.5175e-01, -2.2587e+00,\n", " 6.8304e-01, -6.6239e-01, -1.0000e+09],\n", " [-5.8243e-01, 1.4409e+00, 4.3986e-01, 3.7233e-01, -6.1916e-01,\n", " 3.8241e-01, -9.2507e-01, -5.4309e-01]]])" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "score.masked_fill(mask == 0, -1e9)" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [], "source": [ "# a = (s1.trg != 0).unsqueeze(-2) & Variable(subsequent_mask(9).type_as(s1.trg_mask.data))" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [], "source": [ "# a.size()" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Epoch Step: 1 Loss: 2.490279 Tokens per Sec: 1354.205838\n", "Epoch Step: 1 Loss: 1.495896 Tokens per Sec: 6887.282458\n", "1.424284080222801\n", "Epoch Step: 1 Loss: 1.495560 Tokens per Sec: 5311.150413\n", "Epoch Step: 1 Loss: 1.278627 Tokens per Sec: 6867.527062\n", "1.2427716064453125\n", "Epoch Step: 1 Loss: 1.482808 Tokens per Sec: 5263.556517\n", "Epoch Step: 1 Loss: 1.123872 Tokens per Sec: 6872.569972\n", "1.104600558810764\n", "Epoch Step: 1 Loss: 1.792834 Tokens per Sec: 5215.222420\n", "Epoch Step: 1 Loss: 1.022330 Tokens per Sec: 6850.080026\n", "1.0013944272641782\n", "Epoch Step: 1 Loss: 1.010889 Tokens per Sec: 5243.292667\n", "Epoch Step: 1 Loss: 0.776213 Tokens per Sec: 6860.392131\n", "0.8232519870334202\n" ] } ], "source": [ "for epoch in range(5):\n", " model.train()\n", " loss_func = SimpleLossCompute(model.generator, criterion, model_opt)\n", " run_epoch(data_gen(V, 30, 20), model, loss_func, device)\n", " model.eval()\n", " print(run_epoch(data_gen(V, 30, 5), model, \n", " SimpleLossCompute(model.generator, criterion, None), device))" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "# https://www.cnblogs.com/shiyublog/p/10909009.html#_label5\n", "# src = [\"美中两国可能很快达成一个贸易协议。\"]\n", "# trg = [\"The United States and China may soon reach a trade agreement.\"]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 预测\n", "\n", "- 最后的 linear layer 将 decoder 的输出扩展到与 vocabulary size 一样的维度上。经过 softmax 后,选择概率最高的一个 word 作为预测结果。\n", "\n", "- 假设我们有一个已经训练好的网络,在做预测时,步骤如下:\n", "\n", " - 给 decoder 输入 encoder 对整个句子 embedding 的结果 和一个特殊的开始符号 。decoder 将产生预测,在我们的例子中应该是 ”I”。\n", " - 给 decoder 输入 encoder 的 embedding 结果和 “I”,在这一步 decoder 应该产生预测 “Love”。\n", " - 给 decoder 输入 encoder 的 embedding 结果和 “I Love”,在这一步 decoder 应该产生预测 “China”。\n", " - 给 decoder 输入 encoder 的 embedding 结果和 “I Love China”, decoder应该生成句子结尾的标记,decoder 应该输出 ””。\n", "然后 decoder 生成了 ,翻译完成。" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P006TheAnnotatedTransformer/test.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "## transformer" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn.functional as F" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def attention(query, key, value, mask=None, dropout=None):\n", " \"计算Attention即点乘V\"\n", " d_k = query.size(-1)\n", " # [B, h, L, L]\n", " scores = torch.matmul(query, key.transpose(-2, -1)) \\\n", " / math.sqrt(d_k)\n", " if mask is not None:\n", " scores = scores.masked_fill(mask == 0, -1e9)\n", " p_attn = F.softmax(scores, dim = -1)\n", " if dropout is not None:\n", " p_attn = dropout(p_attn)\n", " return torch.matmul(p_attn, value), p_attn" ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [], "source": [ "key = torch.tensor(\n", "[[1,2,3],\n", "[1,1,1]])" ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1, 2, 3],\n", " [1, 1, 1]])" ] }, "execution_count": 43, "metadata": {}, "output_type": "execute_result" } ], "source": [ "key" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1, 1],\n", " [2, 1],\n", " [3, 1]])" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "key.transpose(-2, -1)" ] }, { "cell_type": "code", "execution_count": 45, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[14, 6],\n", " [ 6, 3]])" ] }, "execution_count": 45, "metadata": {}, "output_type": "execute_result" } ], "source": [ "scores = torch.matmul(key,key.transpose(-2, -1))\n", "scores" ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[9.9966e-01, 3.3535e-04],\n", " [9.5257e-01, 4.7426e-02]])" ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "att = F.softmax(scores.float(), dim = -1)\n", "att" ] }, { "cell_type": "code", "execution_count": 47, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1, 2, 3],\n", " [1, 1, 1]])" ] }, "execution_count": 47, "metadata": {}, "output_type": "execute_result" } ], "source": [ "key" ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1.0000, 1.9997, 2.9993],\n", " [1.0000, 1.9526, 2.9051]])" ] }, "execution_count": 48, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.matmul(att, key.float())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 下三角" ] }, { "cell_type": "code", "execution_count": 49, "metadata": {}, "outputs": [], "source": [ "import numpy as np" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def mask_seq(size):\n", " mask_shape = (1, size, size)\n", " " ] }, { "cell_type": "code", "execution_count": 50, "metadata": {}, "outputs": [], "source": [ "x = np.ones((1, 5, 5))" ] }, { "cell_type": "code", "execution_count": 51, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([[[1., 1., 1., 1., 1.],\n", " [1., 1., 1., 1., 1.],\n", " [1., 1., 1., 1., 1.],\n", " [1., 1., 1., 1., 1.],\n", " [1., 1., 1., 1., 1.]]])" ] }, "execution_count": 51, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x" ] }, { "cell_type": "code", "execution_count": 57, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([[[0, 1, 1, 1, 1],\n", " [0, 0, 1, 1, 1],\n", " [0, 0, 0, 1, 1],\n", " [0, 0, 0, 0, 1],\n", " [0, 0, 0, 0, 0]]], dtype=uint8)" ] }, "execution_count": 57, "metadata": {}, "output_type": "execute_result" } ], "source": [ "shang = np.triu(x, k=1).astype('uint8')\n", "shang" ] }, { "cell_type": "code", "execution_count": 61, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[1.2000, 0.0000, 0.0000, 0.0000, 0.0000],\n", " [1.2000, 1.2000, 0.0000, 0.0000, 0.0000],\n", " [1.2000, 1.2000, 1.2000, 0.0000, 0.0000],\n", " [1.2000, 1.2000, 1.2000, 1.2000, 0.0000],\n", " [1.2000, 1.2000, 1.2000, 1.2000, 1.2000]]])" ] }, "execution_count": 61, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.from_numpy(shang==0) *1.2" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P007PytorchPointerGeneratorNetwork/make_finished_files.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "## 把数据处理成模型需要的文件格式" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import os\n", "import struct\n", "import collections\n", "from tensorflow.core.example import example_pb2" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# 经过分词处理后的训练数据与测试数据文件\n", "TRAIN_FILE = \"./data/weibo_news/train_art_summ_prep.txt\"\n", "VAL_FILE = \"./data/weibo_news/val_art_summ_prep.txt\"\n", "\n", "# 文本起始与结束标志\n", "SENTENCE_START = ''\n", "SENTENCE_END = ''\n", "\n", "VOCAB_SIZE = 50_000 # 词汇表大小\n", "CHUNK_SIZE = 1000 # 每个分块example的数量,用于分块的数据\n", "\n", "# tf模型数据文件存放目录\n", "FINISHED_FILE_DIR = './data/weibo_news/finished_files'\n", "CHUNKS_DIR = os.path.join(FINISHED_FILE_DIR, 'chunked')" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "def chunk_file(finished_files_dir, chunks_dir, name, chunk_size):\n", " \"\"\"构建二进制文件\"\"\"\n", " in_file = os.path.join(finished_files_dir, '%s.bin' % name)\n", " print(in_file)\n", " reader = open(in_file, \"rb\")\n", " chunk = 0\n", " finished = False\n", " while not finished:\n", " chunk_fname = os.path.join(chunks_dir, '%s_%03d.bin' % (name, chunk)) # 新的分块\n", " with open(chunk_fname, 'wb') as writer:\n", " for _ in range(chunk_size):\n", " len_bytes = reader.read(8)\n", " if not len_bytes:\n", " finished = True\n", " break\n", " str_len = struct.unpack('q', len_bytes)[0]\n", " example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0]\n", " writer.write(struct.pack('q', str_len))\n", " writer.write(struct.pack('%ds' % str_len, example_str))\n", " chunk += 1\n", "\n", "\n", "def chunk_all():\n", " # 创建一个文件夹来保存分块\n", " if not os.path.isdir(CHUNKS_DIR):\n", " os.mkdir(CHUNKS_DIR)\n", " # 将数据分块\n", " for name in ['train', 'val']:\n", " print(\"Splitting %s data into chunks...\" % name)\n", " chunk_file(FINISHED_FILE_DIR, CHUNKS_DIR, name, CHUNK_SIZE)\n", " print(\"Saved chunked data in %s\" % CHUNKS_DIR)\n", "\n", "\n", "def read_text_file(text_file):\n", " \"\"\"从预处理好的文件中加载数据\"\"\"\n", " lines = []\n", " with open(text_file, \"r\", encoding='utf-8') as f:\n", " for line in f:\n", " lines.append(line.strip())\n", " return lines\n", "\n", "\n", "def write_to_bin(input_file, out_file, makevocab=False):\n", " \"\"\"生成模型需要的文件\"\"\"\n", " if makevocab:\n", " vocab_counter = collections.Counter()\n", "\n", " with open(out_file, 'wb') as writer:\n", " # 读取输入的文本文件,使偶数行成为article,奇数行成为abstract(行号从0开始)\n", " lines = read_text_file(input_file)\n", " for i, new_line in enumerate(lines):\n", " if i % 2 == 0:\n", " article = lines[i]\n", " if i % 2 != 0:\n", " abstract = \"%s %s %s\" % (SENTENCE_START, lines[i], SENTENCE_END)\n", "\n", " # 写入tf.Example\n", " tf_example = example_pb2.Example()\n", " tf_example.features.feature['article'].bytes_list.value.extend([bytes(article, encoding='utf-8')])\n", " tf_example.features.feature['abstract'].bytes_list.value.extend([bytes(abstract, encoding='utf-8')])\n", " tf_example_str = tf_example.SerializeToString()\n", " str_len = len(tf_example_str)\n", " writer.write(struct.pack('q', str_len))\n", " writer.write(struct.pack('%ds' % str_len, tf_example_str))\n", "\n", " # 如果可以,将词典写入文件\n", " if makevocab:\n", " art_tokens = article.split(' ')\n", " abs_tokens = abstract.split(' ')\n", " abs_tokens = [t for t in abs_tokens if\n", " t not in [SENTENCE_START, SENTENCE_END]] # 从词典中删除这些符号\n", " tokens = art_tokens + abs_tokens\n", " tokens = [t.strip() for t in tokens] # 去掉句子开头结尾的空字符\n", " tokens = [t for t in tokens if t != \"\"] # 删除空行\n", " vocab_counter.update(tokens)\n", "\n", " print(\"Finished writing file %s\\n\" % out_file)\n", "\n", " # 将词典写入文件\n", " if makevocab:\n", " print(\"Writing vocab file...\")\n", " with open(os.path.join(FINISHED_FILE_DIR, \"vocab\"), 'w', encoding='utf-8') as writer:\n", " for word, count in vocab_counter.most_common(VOCAB_SIZE):\n", " writer.write(word + ' ' + str(count) + '\\n')\n", " print(\"Finished writing vocab file\")" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Finished writing file ./data/weibo_news/finished_files/val.bin\n", "\n", "Finished writing file ./data/weibo_news/finished_files/train.bin\n", "\n", "Writing vocab file...\n", "Finished writing vocab file\n" ] }, { "ename": "TypeError", "evalue": "chunk_all() missing 1 required positional argument: 'direction'", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0mwrite_to_bin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mTRAIN_FILE\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpath\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjoin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mFINISHED_FILE_DIR\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"train.bin\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmakevocab\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 6\u001b[0;31m \u001b[0mchunk_all\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;31mTypeError\u001b[0m: chunk_all() missing 1 required positional argument: 'direction'" ] } ], "source": [ "if not os.path.exists(FINISHED_FILE_DIR):\n", " os.makedirs(FINISHED_FILE_DIR)\n", "write_to_bin(VAL_FILE, os.path.join(FINISHED_FILE_DIR, \"val.bin\"))\n", "write_to_bin(TRAIN_FILE, os.path.join(FINISHED_FILE_DIR, \"train.bin\"), makevocab=True)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Splitting train data into chunks...\n", "./data/weibo_news/finished_files/train.bin\n", "Splitting val data into chunks...\n", "./data/weibo_news/finished_files/val.bin\n", "Saved chunked data in ./data/weibo_news/finished_files/chunked\n" ] } ], "source": [ "chunk_all()" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "## struct tf.exam" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/__init__.py ================================================ ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/attention_decoder.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This file defines the decoder""" import tensorflow as tf from tensorflow.python.ops import variable_scope from tensorflow.python.ops import array_ops from tensorflow.python.ops import nn_ops from tensorflow.python.ops import math_ops # Note: this function is based on tf.contrib.legacy_seq2seq_attention_decoder, which is now outdated. # In the future, it would make more sense to write variants on the attention mechanism using the new seq2seq library for tensorflow 1.0: https://www.tensorflow.org/api_guides/python/contrib.seq2seq#Attention def attention_decoder(decoder_inputs, initial_state, encoder_states, enc_padding_mask, cell, initial_state_attention=False, pointer_gen=True, use_coverage=False, prev_coverage=None): """ Args: decoder_inputs: A list of 2D Tensors [batch_size x input_size]. initial_state: 2D Tensor [batch_size x cell.state_size]. encoder_states: 3D Tensor [batch_size x attn_length x attn_size]. enc_padding_mask: 2D Tensor [batch_size x attn_length] containing 1s and 0s; indicates which of the encoder locations are padding (0) or a real token (1). cell: rnn_cell.RNNCell defining the cell function and size. initial_state_attention: Note that this attention decoder passes each decoder input through a linear layer with the previous step's context vector to get a modified version of the input. If initial_state_attention is False, on the first decoder step the "previous context vector" is just a zero vector. If initial_state_attention is True, we use initial_state to (re)calculate the previous step's context vector. We set this to False for train/eval mode (because we call attention_decoder once for all decoder steps) and True for decode mode (because we call attention_decoder once for each decoder step). pointer_gen: boolean. If True, calculate the generation probability p_gen for each decoder step. use_coverage: boolean. If True, use coverage mechanism. prev_coverage: If not None, a tensor with shape (batch_size, attn_length). The previous step's coverage vector. This is only not None in decode mode when using coverage. Returns: outputs: A list of the same length as decoder_inputs of 2D Tensors of shape [batch_size x cell.output_size]. The output vectors. state: The final state of the decoder. A tensor shape [batch_size x cell.state_size]. attn_dists: A list containing tensors of shape (batch_size,attn_length). The attention distributions for each decoder step. p_gens: List of scalars. The values of p_gen for each decoder step. Empty list if pointer_gen=False. coverage: Coverage vector on the last step computed. None if use_coverage=False. """ with variable_scope.variable_scope("attention_decoder") as scope: batch_size = encoder_states.get_shape()[0].value # if this line fails, it's because the batch size isn't defined attn_size = encoder_states.get_shape()[2].value # if this line fails, it's because the attention length isn't defined # Reshape encoder_states (need to insert a dim) encoder_states = tf.expand_dims(encoder_states, axis=2) # now is shape (batch_size, attn_len, 1, attn_size) # To calculate attention, we calculate # v^T tanh(W_h h_i + W_s s_t + b_attn) # where h_i is an encoder state, and s_t a decoder state. # attn_vec_size is the length of the vectors v, b_attn, (W_h h_i) and (W_s s_t). # We set it to be equal to the size of the encoder states. attention_vec_size = attn_size # Get the weight matrix W_h and apply it to each encoder state to get (W_h h_i), the encoder features W_h = variable_scope.get_variable("W_h", [1, 1, attn_size, attention_vec_size]) encoder_features = nn_ops.conv2d(encoder_states, W_h, [1, 1, 1, 1], "SAME") # shape (batch_size,attn_length,1,attention_vec_size) # Get the weight vectors v and w_c (w_c is for coverage) v = variable_scope.get_variable("v", [attention_vec_size]) if use_coverage: with variable_scope.variable_scope("coverage"): w_c = variable_scope.get_variable("w_c", [1, 1, 1, attention_vec_size]) if prev_coverage is not None: # for beam search mode with coverage # reshape from (batch_size, attn_length) to (batch_size, attn_len, 1, 1) prev_coverage = tf.expand_dims(tf.expand_dims(prev_coverage,2),3) def attention(decoder_state, coverage=None): """Calculate the context vector and attention distribution from the decoder state. Args: decoder_state: state of the decoder coverage: Optional. Previous timestep's coverage vector, shape (batch_size, attn_len, 1, 1). Returns: context_vector: weighted sum of encoder_states attn_dist: attention distribution coverage: new coverage vector. shape (batch_size, attn_len, 1, 1) """ with variable_scope.variable_scope("Attention"): # Pass the decoder state through a linear layer (this is W_s s_t + b_attn in the paper) decoder_features = linear(decoder_state, attention_vec_size, True) # shape (batch_size, attention_vec_size) decoder_features = tf.expand_dims(tf.expand_dims(decoder_features, 1), 1) # reshape to (batch_size, 1, 1, attention_vec_size) def masked_attention(e): """Take softmax of e then apply enc_padding_mask and re-normalize""" attn_dist = nn_ops.softmax(e) # take softmax. shape (batch_size, attn_length) attn_dist *= enc_padding_mask # apply mask masked_sums = tf.reduce_sum(attn_dist, axis=1) # shape (batch_size) return attn_dist / tf.reshape(masked_sums, [-1, 1]) # re-normalize if use_coverage and coverage is not None: # non-first step of coverage # Multiply coverage vector by w_c to get coverage_features. coverage_features = nn_ops.conv2d(coverage, w_c, [1, 1, 1, 1], "SAME") # c has shape (batch_size, attn_length, 1, attention_vec_size) # Calculate v^T tanh(W_h h_i + W_s s_t + w_c c_i^t + b_attn) e = math_ops.reduce_sum(v * math_ops.tanh(encoder_features + decoder_features + coverage_features), [2, 3]) # shape (batch_size,attn_length) # Calculate attention distribution attn_dist = masked_attention(e) # Update coverage vector coverage += array_ops.reshape(attn_dist, [batch_size, -1, 1, 1]) else: # Calculate v^T tanh(W_h h_i + W_s s_t + b_attn) e = math_ops.reduce_sum(v * math_ops.tanh(encoder_features + decoder_features), [2, 3]) # calculate e # Calculate attention distribution attn_dist = masked_attention(e) if use_coverage: # first step of training coverage = tf.expand_dims(tf.expand_dims(attn_dist,2),2) # initialize coverage # Calculate the context vector from attn_dist and encoder_states context_vector = math_ops.reduce_sum(array_ops.reshape(attn_dist, [batch_size, -1, 1, 1]) * encoder_states, [1, 2]) # shape (batch_size, attn_size). context_vector = array_ops.reshape(context_vector, [-1, attn_size]) return context_vector, attn_dist, coverage outputs = [] attn_dists = [] p_gens = [] state = initial_state coverage = prev_coverage # initialize coverage to None or whatever was passed in context_vector = array_ops.zeros([batch_size, attn_size]) context_vector.set_shape([None, attn_size]) # Ensure the second shape of attention vectors is set. if initial_state_attention: # true in decode mode # Re-calculate the context vector from the previous step so that we can pass it through a linear layer with this step's input to get a modified version of the input context_vector, _, coverage = attention(initial_state, coverage) # in decode mode, this is what updates the coverage vector for i, inp in enumerate(decoder_inputs): tf.logging.info("Adding attention_decoder timestep %i of %i", i, len(decoder_inputs)) if i > 0: variable_scope.get_variable_scope().reuse_variables() # Merge input and previous attentions into one vector x of the same size as inp input_size = inp.get_shape().with_rank(2)[1] if input_size.value is None: raise ValueError("Could not infer input size from input: %s" % inp.name) x = linear([inp] + [context_vector], input_size, True) # Run the decoder RNN cell. cell_output = decoder state cell_output, state = cell(x, state) # Run the attention mechanism. if i == 0 and initial_state_attention: # always true in decode mode with variable_scope.variable_scope(variable_scope.get_variable_scope(), reuse=True): # you need this because you've already run the initial attention(...) call context_vector, attn_dist, _ = attention(state, coverage) # don't allow coverage to update else: context_vector, attn_dist, coverage = attention(state, coverage) attn_dists.append(attn_dist) # Calculate p_gen if pointer_gen: with tf.variable_scope('calculate_pgen'): p_gen = linear([context_vector, state.c, state.h, x], 1, True) # a scalar p_gen = tf.sigmoid(p_gen) p_gens.append(p_gen) # Concatenate the cell_output (= decoder state) and the context vector, and pass them through a linear layer # This is V[s_t, h*_t] + b in the paper with variable_scope.variable_scope("AttnOutputProjection"): output = linear([cell_output] + [context_vector], cell.output_size, True) outputs.append(output) # If using coverage, reshape it if coverage is not None: coverage = array_ops.reshape(coverage, [batch_size, -1]) return outputs, state, attn_dists, p_gens, coverage def linear(args, output_size, bias, bias_start=0.0, scope=None): """Linear map: sum_i(args[i] * W[i]), where W[i] is a variable. Args: args: a 2D Tensor or a list of 2D, batch x n, Tensors. output_size: int, second dimension of W[i]. bias: boolean, whether to add a bias term or not. bias_start: starting value to initialize the bias; 0 by default. scope: VariableScope for the created subgraph; defaults to "Linear". Returns: A 2D Tensor with shape [batch x output_size] equal to sum_i(args[i] * W[i]), where W[i]s are newly created matrices. Raises: ValueError: if some of the arguments has unspecified or wrong shape. """ if args is None or (isinstance(args, (list, tuple)) and not args): raise ValueError("`args` must be specified") if not isinstance(args, (list, tuple)): args = [args] # Calculate the total size of arguments on dimension 1. total_arg_size = 0 shapes = [a.get_shape().as_list() for a in args] for shape in shapes: if len(shape) != 2: raise ValueError("Linear is expecting 2D arguments: %s" % str(shapes)) if not shape[1]: raise ValueError("Linear expects shape[1] of arguments: %s" % str(shapes)) else: total_arg_size += shape[1] # Now the computation. with tf.variable_scope(scope or "Linear"): matrix = tf.get_variable("Matrix", [total_arg_size, output_size]) if len(args) == 1: res = tf.matmul(args[0], matrix) else: res = tf.matmul(tf.concat(axis=1, values=args), matrix) if not bias: return res bias_term = tf.get_variable( "Bias", [output_size], initializer=tf.constant_initializer(bias_start)) return res + bias_term ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/batcher.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This file contains code to process data into batches""" import queue as Queue from random import shuffle from threading import Thread import time import numpy as np import tensorflow as tf import data class Example(object): """Class representing a train/val/test example for text summarization.""" def __init__(self, article, abstract_sentences, vocab, hps): """Initializes the Example, performing tokenization and truncation to produce the encoder, decoder and target sequences, which are stored in self. Args: article: source text; a string. each token is separated by a single space. abstract_sentences: list of strings, one per abstract sentence. In each sentence, each token is separated by a single space. vocab: Vocabulary object hps: hyperparameters """ self.hps = hps # Get ids of special tokens start_decoding = vocab.word2id(data.START_DECODING) stop_decoding = vocab.word2id(data.STOP_DECODING) # Process the article article_words = article.split() if len(article_words) > hps.max_enc_steps: article_words = article_words[:hps.max_enc_steps] self.enc_len = len(article_words) # store the length after truncation but before padding self.enc_input = [vocab.word2id(w) for w in article_words] # list of word ids; OOVs are represented by the id for UNK token # Process the abstract abstract = ' '.join(abstract_sentences) # string abstract_words = abstract.split() # list of strings abs_ids = [vocab.word2id(w) for w in abstract_words] # list of word ids; OOVs are represented by the id for UNK token # Get the decoder input sequence and target sequence self.dec_input, self.target = self.get_dec_inp_targ_seqs(abs_ids, hps.max_dec_steps, start_decoding, stop_decoding) self.dec_len = len(self.dec_input) # If using pointer-generator mode, we need to store some extra info if hps.pointer_gen: # Store a version of the enc_input where in-article OOVs are represented by their temporary OOV id; also store the in-article OOVs words themselves self.enc_input_extend_vocab, self.article_oovs = data.article2ids(article_words, vocab) # Get a verison of the reference summary where in-article OOVs are represented by their temporary article OOV id abs_ids_extend_vocab = data.abstract2ids(abstract_words, vocab, self.article_oovs) # Overwrite decoder target sequence so it uses the temp article OOV ids _, self.target = self.get_dec_inp_targ_seqs(abs_ids_extend_vocab, hps.max_dec_steps, start_decoding, stop_decoding) # Store the original strings self.original_article = article self.original_abstract = abstract self.original_abstract_sents = abstract_sentences def get_dec_inp_targ_seqs(self, sequence, max_len, start_id, stop_id): """Given the reference summary as a sequence of tokens, return the input sequence for the decoder, and the target sequence which we will use to calculate loss. The sequence will be truncated if it is longer than max_len. The input sequence must start with the start_id and the target sequence must end with the stop_id (but not if it's been truncated). Args: sequence: List of ids (integers) max_len: integer start_id: integer stop_id: integer Returns: inp: sequence length <=max_len starting with start_id target: sequence same length as input, ending with stop_id only if there was no truncation """ inp = [start_id] + sequence[:] target = sequence[:] if len(inp) > max_len: # truncate inp = inp[:max_len] target = target[:max_len] # no end_token else: # no truncation target.append(stop_id) # end token assert len(inp) == len(target) return inp, target def pad_decoder_inp_targ(self, max_len, pad_id): """Pad decoder input and target sequences with pad_id up to max_len.""" while len(self.dec_input) < max_len: self.dec_input.append(pad_id) while len(self.target) < max_len: self.target.append(pad_id) def pad_encoder_input(self, max_len, pad_id): """Pad the encoder input sequence with pad_id up to max_len.""" while len(self.enc_input) < max_len: self.enc_input.append(pad_id) if self.hps.pointer_gen: while len(self.enc_input_extend_vocab) < max_len: self.enc_input_extend_vocab.append(pad_id) class Batch(object): """Class representing a minibatch of train/val/test examples for text summarization.""" def __init__(self, example_list, hps, vocab): """Turns the example_list into a Batch object. Args: example_list: List of Example objects hps: hyperparameters vocab: Vocabulary object """ self.pad_id = vocab.word2id(data.PAD_TOKEN) # id of the PAD token used to pad sequences self.init_encoder_seq(example_list, hps) # initialize the input to the encoder self.init_decoder_seq(example_list, hps) # initialize the input and targets for the decoder self.store_orig_strings(example_list) # store the original strings def init_encoder_seq(self, example_list, hps): """Initializes the following: self.enc_batch: numpy array of shape (batch_size, <=max_enc_steps) containing integer ids (all OOVs represented by UNK id), padded to length of longest sequence in the batch self.enc_lens: numpy array of shape (batch_size) containing integers. The (truncated) length of each encoder input sequence (pre-padding). self.enc_padding_mask: numpy array of shape (batch_size, <=max_enc_steps), containing 1s and 0s. 1s correspond to real tokens in enc_batch and target_batch; 0s correspond to padding. If hps.pointer_gen, additionally initializes the following: self.max_art_oovs: maximum number of in-article OOVs in the batch self.art_oovs: list of list of in-article OOVs (strings), for each example in the batch self.enc_batch_extend_vocab: Same as self.enc_batch, but in-article OOVs are represented by their temporary article OOV number. """ # Determine the maximum length of the encoder input sequence in this batch max_enc_seq_len = max([ex.enc_len for ex in example_list]) # Pad the encoder input sequences up to the length of the longest sequence for ex in example_list: ex.pad_encoder_input(max_enc_seq_len, self.pad_id) # Initialize the numpy arrays # Note: our enc_batch can have different length (second dimension) for each batch because we use dynamic_rnn for the encoder. self.enc_batch = np.zeros((hps.batch_size, max_enc_seq_len), dtype=np.int32) self.enc_lens = np.zeros((hps.batch_size), dtype=np.int32) self.enc_padding_mask = np.zeros((hps.batch_size, max_enc_seq_len), dtype=np.float32) # Fill in the numpy arrays for i, ex in enumerate(example_list): self.enc_batch[i, :] = ex.enc_input[:] self.enc_lens[i] = ex.enc_len for j in range(ex.enc_len): self.enc_padding_mask[i][j] = 1 # For pointer-generator mode, need to store some extra info if hps.pointer_gen: # Determine the max number of in-article OOVs in this batch self.max_art_oovs = max([len(ex.article_oovs) for ex in example_list]) # Store the in-article OOVs themselves self.art_oovs = [ex.article_oovs for ex in example_list] # Store the version of the enc_batch that uses the article OOV ids self.enc_batch_extend_vocab = np.zeros((hps.batch_size, max_enc_seq_len), dtype=np.int32) for i, ex in enumerate(example_list): self.enc_batch_extend_vocab[i, :] = ex.enc_input_extend_vocab[:] def init_decoder_seq(self, example_list, hps): """Initializes the following: self.dec_batch: numpy array of shape (batch_size, max_dec_steps), containing integer ids as input for the decoder, padded to max_dec_steps length. self.target_batch: numpy array of shape (batch_size, max_dec_steps), containing integer ids for the target sequence, padded to max_dec_steps length. self.dec_padding_mask: numpy array of shape (batch_size, max_dec_steps), containing 1s and 0s. 1s correspond to real tokens in dec_batch and target_batch; 0s correspond to padding. """ # Pad the inputs and targets for ex in example_list: ex.pad_decoder_inp_targ(hps.max_dec_steps, self.pad_id) # Initialize the numpy arrays. # Note: our decoder inputs and targets must be the same length for each batch (second dimension = max_dec_steps) because we do not use a dynamic_rnn for decoding. However I believe this is possible, or will soon be possible, with Tensorflow 1.0, in which case it may be best to upgrade to that. self.dec_batch = np.zeros((hps.batch_size, hps.max_dec_steps), dtype=np.int32) self.target_batch = np.zeros((hps.batch_size, hps.max_dec_steps), dtype=np.int32) self.dec_padding_mask = np.zeros((hps.batch_size, hps.max_dec_steps), dtype=np.float32) # Fill in the numpy arrays for i, ex in enumerate(example_list): self.dec_batch[i, :] = ex.dec_input[:] self.target_batch[i, :] = ex.target[:] for j in range(ex.dec_len): self.dec_padding_mask[i][j] = 1 def store_orig_strings(self, example_list): """Store the original article and abstract strings in the Batch object""" self.original_articles = [ex.original_article for ex in example_list] # list of lists self.original_abstracts = [ex.original_abstract for ex in example_list] # list of lists self.original_abstracts_sents = [ex.original_abstract_sents for ex in example_list] # list of list of lists class Batcher(object): """A class to generate minibatches of data. Buckets examples together based on length of the encoder sequence.""" BATCH_QUEUE_MAX = 100 # max number of batches the batch_queue can hold def __init__(self, data_path, vocab, hps, single_pass): """Initialize the batcher. Start threads that process the data into batches. Args: data_path: tf.Example filepattern. vocab: Vocabulary object hps: hyperparameters single_pass: If True, run through the dataset exactly once (useful for when you want to run evaluation on the dev or test set). Otherwise generate random batches indefinitely (useful for training). """ self._data_path = data_path self._vocab = vocab self._hps = hps self._single_pass = single_pass # Initialize a queue of Batches waiting to be used, and a queue of Examples waiting to be batched self._batch_queue = Queue.Queue(self.BATCH_QUEUE_MAX) print(self.BATCH_QUEUE_MAX, self._hps.batch_size) self._example_queue = Queue.Queue(self.BATCH_QUEUE_MAX * self._hps.batch_size) # Different settings depending on whether we're in single_pass mode or not if single_pass: self._num_example_q_threads = 1 # just one thread, so we read through the dataset just once self._num_batch_q_threads = 1 # just one thread to batch examples self._bucketing_cache_size = 1 # only load one batch's worth of examples before bucketing; this essentially means no bucketing self._finished_reading = False # this will tell us when we're finished reading the dataset else: self._num_example_q_threads = 16 # num threads to fill example queue self._num_batch_q_threads = 4 # num threads to fill batch queue self._bucketing_cache_size = 100 # how many batches-worth of examples to load into cache before bucketing # Start the threads that load the queues self._example_q_threads = [] for _ in range(self._num_example_q_threads): self._example_q_threads.append(Thread(target=self.fill_example_queue)) self._example_q_threads[-1].daemon = True self._example_q_threads[-1].start() self._batch_q_threads = [] for _ in range(self._num_batch_q_threads): self._batch_q_threads.append(Thread(target=self.fill_batch_queue)) self._batch_q_threads[-1].daemon = True self._batch_q_threads[-1].start() # Start a thread that watches the other threads and restarts them if they're dead if not single_pass: # We don't want a watcher in single_pass mode because the threads shouldn't run forever self._watch_thread = Thread(target=self.watch_threads) self._watch_thread.daemon = True self._watch_thread.start() def next_batch(self): """Return a Batch from the batch queue. If mode='decode' then each batch contains a single example repeated beam_size-many times; this is necessary for beam search. Returns: batch: a Batch object, or None if we're in single_pass mode and we've exhausted the dataset. """ # If the batch queue is empty, print a warning if self._batch_queue.qsize() == 0: tf.logging.warning('Bucket input queue is empty when calling next_batch. Bucket queue size: %i, Input queue size: %i', self._batch_queue.qsize(), self._example_queue.qsize()) if self._single_pass and self._finished_reading: tf.logging.info("Finished reading dataset in single_pass mode.") return None batch = self._batch_queue.get() # get the next Batch return batch def fill_example_queue(self): """Reads data from file and processes into Examples which are then placed into the example queue.""" input_gen = self.text_generator(data.example_generator(self._data_path, self._single_pass)) while True: try: (article, abstract) = next(input_gen) # read the next example from file. article and abstract are both strings. except StopIteration: # if there are no more examples: tf.logging.info("The example generator for this example queue filling thread has exhausted data.") if self._single_pass: tf.logging.info("single_pass mode is on, so we've finished reading dataset. This thread is stopping.") self._finished_reading = True break else: raise Exception("single_pass mode is off but the example generator is out of data; error.") abstract_sentences = [sent.strip() for sent in data.abstract2sents(abstract)] # Use the and tags in abstract to get a list of sentences. example = Example(article, abstract_sentences, self._vocab, self._hps) # Process into an Example. self._example_queue.put(example) # place the Example in the example queue. def fill_batch_queue(self): """Takes Examples out of example queue, sorts them by encoder sequence length, processes into Batches and places them in the batch queue. In decode mode, makes batches that each contain a single example repeated. """ while True: if self._hps.mode != 'decode': # Get bucketing_cache_size-many batches of Examples into a list, then sort inputs = [] for _ in range(self._hps.batch_size * self._bucketing_cache_size): inputs.append(self._example_queue.get()) inputs = sorted(inputs, key=lambda inp: inp.enc_len) # sort by length of encoder sequence # Group the sorted Examples into batches, optionally shuffle the batches, and place in the batch queue. batches = [] for i in range(0, len(inputs), self._hps.batch_size): batches.append(inputs[i:i + self._hps.batch_size]) if not self._single_pass: shuffle(batches) for b in batches: # each b is a list of Example objects self._batch_queue.put(Batch(b, self._hps, self._vocab)) else: # beam search decode mode ex = self._example_queue.get() b = [ex for _ in range(self._hps.batch_size)] self._batch_queue.put(Batch(b, self._hps, self._vocab)) def watch_threads(self): """Watch example queue and batch queue threads and restart if dead.""" while True: time.sleep(60) for idx,t in enumerate(self._example_q_threads): if not t.is_alive(): # if the thread is dead tf.logging.error('Found example queue thread dead. Restarting.') new_t = Thread(target=self.fill_example_queue) self._example_q_threads[idx] = new_t new_t.daemon = True new_t.start() for idx,t in enumerate(self._batch_q_threads): if not t.is_alive(): # if the thread is dead tf.logging.error('Found batch queue thread dead. Restarting.') new_t = Thread(target=self.fill_batch_queue) self._batch_q_threads[idx] = new_t new_t.daemon = True new_t.start() def text_generator(self, example_generator): """Generates article and abstract text from tf.Example. Args: example_generator: a generator of tf.Examples from file. See data.example_generator""" while True: e = next(example_generator) # e is a tf.Example try: article_text = e.features.feature['article'].bytes_list.value[0].decode() # the article text was saved under the key 'article' in the data files abstract_text = e.features.feature['abstract'].bytes_list.value[0].decode() # the abstract text was saved under the key 'abstract' in the data files except ValueError: tf.logging.error('Failed to get article or abstract from example') continue if len(article_text)==0: # See https://github.com/abisee/pointer-generator/issues/1 tf.logging.warning('Found an example with empty article text. Skipping it.') else: yield (article_text, abstract_text) ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/beam_search.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This file contains code to run beam search decoding""" import tensorflow as tf import numpy as np import data FLAGS = tf.app.flags.FLAGS class Hypothesis(object): """Class to represent a hypothesis during beam search. Holds all the information needed for the hypothesis.""" def __init__(self, tokens, log_probs, state, attn_dists, p_gens, coverage): """Hypothesis constructor. Args: tokens: List of integers. The ids of the tokens that form the summary so far. log_probs: List, same length as tokens, of floats, giving the log probabilities of the tokens so far. state: Current state of the decoder, a LSTMStateTuple. attn_dists: List, same length as tokens, of numpy arrays with shape (attn_length). These are the attention distributions so far. p_gens: List, same length as tokens, of floats, or None if not using pointer-generator model. The values of the generation probability so far. coverage: Numpy array of shape (attn_length), or None if not using coverage. The current coverage vector. """ self.tokens = tokens self.log_probs = log_probs self.state = state self.attn_dists = attn_dists self.p_gens = p_gens self.coverage = coverage def extend(self, token, log_prob, state, attn_dist, p_gen, coverage): """Return a NEW hypothesis, extended with the information from the latest step of beam search. Args: token: Integer. Latest token produced by beam search. log_prob: Float. Log prob of the latest token. state: Current decoder state, a LSTMStateTuple. attn_dist: Attention distribution from latest step. Numpy array shape (attn_length). p_gen: Generation probability on latest step. Float. coverage: Latest coverage vector. Numpy array shape (attn_length), or None if not using coverage. Returns: New Hypothesis for next step. """ return Hypothesis(tokens = self.tokens + [token], log_probs = self.log_probs + [log_prob], state = state, attn_dists = self.attn_dists + [attn_dist], p_gens = self.p_gens + [p_gen], coverage = coverage) @property def latest_token(self): return self.tokens[-1] @property def log_prob(self): # the log probability of the hypothesis so far is the sum of the log probabilities of the tokens so far return sum(self.log_probs) @property def avg_log_prob(self): # normalize log probability by number of tokens (otherwise longer sequences always have lower probability) return self.log_prob / len(self.tokens) def run_beam_search(sess, model, vocab, batch): """Performs beam search decoding on the given example. Args: sess: a tf.Session model: a seq2seq model vocab: Vocabulary object batch: Batch object that is the same example repeated across the batch Returns: best_hyp: Hypothesis object; the best hypothesis found by beam search. """ # Run the encoder to get the encoder hidden states and decoder initial state enc_states, dec_in_state = model.run_encoder(sess, batch) # dec_in_state is a LSTMStateTuple # enc_states has shape [batch_size, <=max_enc_steps, 2*hidden_dim]. # Initialize beam_size-many hyptheses hyps = [Hypothesis(tokens=[vocab.word2id(data.START_DECODING)], log_probs=[0.0], state=dec_in_state, attn_dists=[], p_gens=[], coverage=np.zeros([batch.enc_batch.shape[1]]) # zero vector of length attention_length ) for _ in range(FLAGS.beam_size)] results = [] # this will contain finished hypotheses (those that have emitted the [STOP] token) steps = 0 while steps < FLAGS.max_dec_steps and len(results) < FLAGS.beam_size: latest_tokens = [h.latest_token for h in hyps] # latest token produced by each hypothesis latest_tokens = [t if t in range(vocab.size()) else vocab.word2id(data.UNKNOWN_TOKEN) for t in latest_tokens] # change any in-article temporary OOV ids to [UNK] id, so that we can lookup word embeddings states = [h.state for h in hyps] # list of current decoder states of the hypotheses prev_coverage = [h.coverage for h in hyps] # list of coverage vectors (or None) # Run one step of the decoder to get the new info (topk_ids, topk_log_probs, new_states, attn_dists, p_gens, new_coverage) = model.decode_onestep(sess=sess, batch=batch, latest_tokens=latest_tokens, enc_states=enc_states, dec_init_states=states, prev_coverage=prev_coverage) # Extend each hypothesis and collect them all in all_hyps all_hyps = [] num_orig_hyps = 1 if steps == 0 else len(hyps) # On the first step, we only had one original hypothesis (the initial hypothesis). On subsequent steps, all original hypotheses are distinct. for i in range(num_orig_hyps): h, new_state, attn_dist, p_gen, new_coverage_i = hyps[i], new_states[i], attn_dists[i], p_gens[i], new_coverage[i] # take the ith hypothesis and new decoder state info for j in range(FLAGS.beam_size * 2): # for each of the top 2*beam_size hyps: # Extend the ith hypothesis with the jth option new_hyp = h.extend(token=topk_ids[i, j], log_prob=topk_log_probs[i, j], state=new_state, attn_dist=attn_dist, p_gen=p_gen, coverage=new_coverage_i) all_hyps.append(new_hyp) # Filter and collect any hypotheses that have produced the end token. hyps = [] # will contain hypotheses for the next step for h in sort_hyps(all_hyps): # in order of most likely h if h.latest_token == vocab.word2id(data.STOP_DECODING): # if stop token is reached... # If this hypothesis is sufficiently long, put in results. Otherwise discard. if steps >= FLAGS.min_dec_steps: results.append(h) else: # hasn't reached stop token, so continue to extend this hypothesis hyps.append(h) if len(hyps) == FLAGS.beam_size or len(results) == FLAGS.beam_size: # Once we've collected beam_size-many hypotheses for the next step, or beam_size-many complete hypotheses, stop. break steps += 1 # At this point, either we've got beam_size results, or we've reached maximum decoder steps if len(results)==0: # if we don't have any complete results, add all current hypotheses (incomplete summaries) to results results = hyps # Sort hypotheses by average log probability hyps_sorted = sort_hyps(results) # Return the hypothesis with highest average log prob return hyps_sorted[0] def sort_hyps(hyps): """Return a list of Hypothesis objects, sorted by descending average log probability""" return sorted(hyps, key=lambda h: h.avg_log_prob, reverse=True) ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/data.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This file contains code to read the train/eval/test data from file and process it, and read the vocab data from file and process it""" import glob import random import struct import csv from tensorflow.core.example import example_pb2 # and are used in the data files to segment the abstracts into sentences. They don't receive vocab ids. SENTENCE_START = '' SENTENCE_END = '' PAD_TOKEN = '[PAD]' # This has a vocab id, which is used to pad the encoder input, decoder input and target sequence UNKNOWN_TOKEN = '[UNK]' # This has a vocab id, which is used to represent out-of-vocabulary words START_DECODING = '[START]' # This has a vocab id, which is used at the start of every decoder input sequence STOP_DECODING = '[STOP]' # This has a vocab id, which is used at the end of untruncated target sequences # Note: none of , , [PAD], [UNK], [START], [STOP] should appear in the vocab file. class Vocab(object): """Vocabulary class for mapping between words and ids (integers)""" def __init__(self, vocab_file, max_size): """Creates a vocab of up to max_size words, reading from the vocab_file. If max_size is 0, reads the entire vocab file. Args: vocab_file: path to the vocab file, which is assumed to contain " " on each line, sorted with most frequent word first. This code doesn't actually use the frequencies, though. max_size: integer. The maximum size of the resulting Vocabulary.""" self._word_to_id = {} self._id_to_word = {} self._count = 0 # keeps track of total number of words in the Vocab # [UNK], [PAD], [START] and [STOP] get the ids 0,1,2,3. for w in [UNKNOWN_TOKEN, PAD_TOKEN, START_DECODING, STOP_DECODING]: self._word_to_id[w] = self._count self._id_to_word[self._count] = w self._count += 1 # Read the vocab file and add words up to max_size with open(vocab_file, 'r') as vocab_f: for line in vocab_f: pieces = line.split() if len(pieces) != 2: print('Warning: incorrectly formatted line in vocabulary file: %s\n' % line) continue w = pieces[0] if w in [SENTENCE_START, SENTENCE_END, UNKNOWN_TOKEN, PAD_TOKEN, START_DECODING, STOP_DECODING]: raise Exception(', , [UNK], [PAD], [START] and [STOP] shouldn\'t be in the vocab file, but %s is' % w) if w in self._word_to_id: raise Exception('Duplicated word in vocabulary file: %s' % w) self._word_to_id[w] = self._count self._id_to_word[self._count] = w self._count += 1 if max_size != 0 and self._count >= max_size: print("max_size of vocab was specified as %i; we now have %i words. Stopping reading." % (max_size, self._count)) break print("Finished constructing vocabulary of %i total words. Last word added: %s" % (self._count, self._id_to_word[self._count-1])) def word2id(self, word): """Returns the id (integer) of a word (string). Returns [UNK] id if word is OOV.""" if word not in self._word_to_id: return self._word_to_id[UNKNOWN_TOKEN] return self._word_to_id[word] def id2word(self, word_id): """Returns the word (string) corresponding to an id (integer).""" if word_id not in self._id_to_word: raise ValueError('Id not found in vocab: %d' % word_id) return self._id_to_word[word_id] def size(self): """Returns the total size of the vocabulary""" return self._count def write_metadata(self, fpath): """Writes metadata file for Tensorboard word embedding visualizer as described here: https://www.tensorflow.org/get_started/embedding_viz Args: fpath: place to write the metadata file """ print("Writing word embedding metadata file to %s..." % (fpath)) with open(fpath, "w") as f: fieldnames = ['word'] writer = csv.DictWriter(f, delimiter="\t", fieldnames=fieldnames) for i in range(self.size()): writer.writerow({"word": self._id_to_word[i]}) def example_generator(data_path, single_pass): """Generates tf.Examples from data files. Binary data format: . represents the byte size of . is serialized tf.Example proto. The tf.Example contains the tokenized article text and summary. Args: data_path: Path to tf.Example data files. Can include wildcards, e.g. if you have several training data chunk files train_001.bin, train_002.bin, etc, then pass data_path=train_* to access them all. single_pass: Boolean. If True, go through the dataset exactly once, generating examples in the order they appear, then return. Otherwise, generate random examples indefinitely. Yields: Deserialized tf.Example. """ while True: filelist = glob.glob(data_path) # get the list of datafiles assert filelist, ('Error: Empty filelist at %s' % data_path) # check filelist isn't empty if single_pass: filelist = sorted(filelist) else: random.shuffle(filelist) for f in filelist: reader = open(f, 'rb') while True: len_bytes = reader.read(8) if not len_bytes: break # finished reading this file str_len = struct.unpack('q', len_bytes)[0] example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0] yield example_pb2.Example.FromString(example_str) if single_pass: print("example_generator completed reading all datafiles. No more data.") break def article2ids(article_words, vocab): """Map the article words to their ids. Also return a list of OOVs in the article. Args: article_words: list of words (strings) vocab: Vocabulary object Returns: ids: A list of word ids (integers); OOVs are represented by their temporary article OOV number. If the vocabulary size is 50k and the article has 3 OOVs, then these temporary OOV numbers will be 50000, 50001, 50002. oovs: A list of the OOV words in the article (strings), in the order corresponding to their temporary article OOV numbers.""" ids = [] oovs = [] unk_id = vocab.word2id(UNKNOWN_TOKEN) for w in article_words: i = vocab.word2id(w) if i == unk_id: # If w is OOV if w not in oovs: # Add to list of OOVs oovs.append(w) oov_num = oovs.index(w) # This is 0 for the first article OOV, 1 for the second article OOV... ids.append(vocab.size() + oov_num) # This is e.g. 50000 for the first article OOV, 50001 for the second... else: ids.append(i) return ids, oovs def abstract2ids(abstract_words, vocab, article_oovs): """Map the abstract words to their ids. In-article OOVs are mapped to their temporary OOV numbers. Args: abstract_words: list of words (strings) vocab: Vocabulary object article_oovs: list of in-article OOV words (strings), in the order corresponding to their temporary article OOV numbers Returns: ids: List of ids (integers). In-article OOV words are mapped to their temporary OOV numbers. Out-of-article OOV words are mapped to the UNK token id.""" ids = [] unk_id = vocab.word2id(UNKNOWN_TOKEN) for w in abstract_words: i = vocab.word2id(w) if i == unk_id: # If w is an OOV word if w in article_oovs: # If w is an in-article OOV vocab_idx = vocab.size() + article_oovs.index(w) # Map to its temporary article OOV number ids.append(vocab_idx) else: # If w is an out-of-article OOV ids.append(unk_id) # Map to the UNK token id else: ids.append(i) return ids def outputids2words(id_list, vocab, article_oovs): """Maps output ids to words, including mapping in-article OOVs from their temporary ids to the original OOV string (applicable in pointer-generator mode). Args: id_list: list of ids (integers) vocab: Vocabulary object article_oovs: list of OOV words (strings) in the order corresponding to their temporary article OOV ids (that have been assigned in pointer-generator mode), or None (in baseline mode) Returns: words: list of words (strings) """ words = [] for i in id_list: try: w = vocab.id2word(i) # might be [UNK] except ValueError as e: # w is OOV assert article_oovs is not None, "Error: model produced a word ID that isn't in the vocabulary. This should not happen in baseline (no pointer-generator) mode" article_oov_idx = i - vocab.size() try: w = article_oovs[article_oov_idx] except ValueError as e: # i doesn't correspond to an article oov raise ValueError('Error: model produced word ID %i which corresponds to article OOV %i but this example only has %i article OOVs' % (i, article_oov_idx, len(article_oovs))) words.append(w) return words def abstract2sents(abstract): """Splits abstract text from datafile into list of sentences. Args: abstract: string containing and tags for starts and ends of sentences Returns: sents: List of sentence strings (no tags)""" cur = 0 sents = [] while True: try: start_p = abstract.index(SENTENCE_START, cur) end_p = abstract.index(SENTENCE_END, start_p + 1) cur = end_p + len(SENTENCE_END) sents.append(abstract[start_p+len(SENTENCE_START):end_p]) except ValueError as e: # no more sentences return sents def show_art_oovs(article, vocab): """Returns the article string, highlighting the OOVs by placing __underscores__ around them""" unk_token = vocab.word2id(UNKNOWN_TOKEN) words = article.split(' ') words = [("__%s__" % w) if vocab.word2id(w)==unk_token else w for w in words] out_str = ' '.join(words) return out_str def show_abs_oovs(abstract, vocab, article_oovs): """Returns the abstract string, highlighting the article OOVs with __underscores__. If a list of article_oovs is provided, non-article OOVs are differentiated like !!__this__!!. Args: abstract: string vocab: Vocabulary object article_oovs: list of words (strings), or None (in baseline mode) """ unk_token = vocab.word2id(UNKNOWN_TOKEN) words = abstract.split(' ') new_words = [] for w in words: if vocab.word2id(w) == unk_token: # w is oov if article_oovs is None: # baseline mode new_words.append("__%s__" % w) else: # pointer-generator mode if w in article_oovs: new_words.append("__%s__" % w) else: new_words.append("!!__%s__!!" % w) else: # w is in-vocab word new_words.append(w) out_str = ' '.join(new_words) return out_str ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/decode.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This file contains code to run beam search decoding, including running ROUGE evaluation and producing JSON datafiles for the in-browser attention visualizer, which can be found here https://github.com/abisee/attn_vis""" import os import time import tensorflow as tf import beam_search import data import json import pyrouge import util import logging import numpy as np FLAGS = tf.app.flags.FLAGS SECS_UNTIL_NEW_CKPT = 60 # max number of seconds before loading new checkpoint class BeamSearchDecoder(object): """Beam search decoder.""" def __init__(self, model, batcher, vocab): """Initialize decoder. Args: model: a Seq2SeqAttentionModel object. batcher: a Batcher object. vocab: Vocabulary object """ self._model = model self._model.build_graph() self._batcher = batcher self._vocab = vocab self._saver = tf.train.Saver() # we use this to load checkpoints for decoding self._sess = tf.Session(config=util.get_config()) # Load an initial checkpoint to use for decoding ckpt_path = util.load_ckpt(self._saver, self._sess) if FLAGS.single_pass: # Make a descriptive decode directory name ckpt_name = "ckpt-" + ckpt_path.split('-')[-1] # this is something of the form "ckpt-123456" self._decode_dir = os.path.join(FLAGS.log_root, get_decode_dir_name(ckpt_name)) if os.path.exists(self._decode_dir): raise Exception("single_pass decode directory %s should not already exist" % self._decode_dir) else: # Generic decode dir name self._decode_dir = os.path.join(FLAGS.log_root, "decode") # Make the decode dir if necessary if not os.path.exists(self._decode_dir): os.mkdir(self._decode_dir) if FLAGS.single_pass: # Make the dirs to contain output written in the correct format for pyrouge self._rouge_ref_dir = os.path.join(self._decode_dir, "reference") if not os.path.exists(self._rouge_ref_dir): os.mkdir(self._rouge_ref_dir) self._rouge_dec_dir = os.path.join(self._decode_dir, "decoded") if not os.path.exists(self._rouge_dec_dir): os.mkdir(self._rouge_dec_dir) def decode(self): """Decode examples until data is exhausted (if FLAGS.single_pass) and return, or decode indefinitely, loading latest checkpoint at regular intervals""" t0 = time.time() counter = 0 while True: batch = self._batcher.next_batch() # 1 example repeated across batch if batch is None: # finished decoding dataset in single_pass mode assert FLAGS.single_pass, "Dataset exhausted, but we are not in single_pass mode" tf.logging.info("Decoder has finished reading dataset for single_pass.") tf.logging.info("Output has been saved in %s and %s. Now starting ROUGE eval...", self._rouge_ref_dir, self._rouge_dec_dir) results_dict = rouge_eval(self._rouge_ref_dir, self._rouge_dec_dir) rouge_log(results_dict, self._decode_dir) return original_article = batch.original_articles[0] # string original_abstract = batch.original_abstracts[0] # string original_abstract_sents = batch.original_abstracts_sents[0] # list of strings article_withunks = data.show_art_oovs(original_article, self._vocab) # string abstract_withunks = data.show_abs_oovs(original_abstract, self._vocab, (batch.art_oovs[0] if FLAGS.pointer_gen else None)) # string # Run beam search to get best Hypothesis best_hyp = beam_search.run_beam_search(self._sess, self._model, self._vocab, batch) # Extract the output ids from the hypothesis and convert back to words output_ids = [int(t) for t in best_hyp.tokens[1:]] decoded_words = data.outputids2words(output_ids, self._vocab, (batch.art_oovs[0] if FLAGS.pointer_gen else None)) # Remove the [STOP] token from decoded_words, if necessary try: fst_stop_idx = decoded_words.index(data.STOP_DECODING) # index of the (first) [STOP] symbol decoded_words = decoded_words[:fst_stop_idx] except ValueError: decoded_words = decoded_words decoded_output = ' '.join(decoded_words) # single string if FLAGS.single_pass: self.write_for_rouge(original_abstract_sents, decoded_words, counter) # write ref summary and decoded summary to file, to eval with pyrouge later counter += 1 # this is how many examples we've decoded else: print_results(article_withunks, abstract_withunks, decoded_output) # log output to screen self.write_for_attnvis(article_withunks, abstract_withunks, decoded_words, best_hyp.attn_dists, best_hyp.p_gens) # write info to .json file for visualization tool # Check if SECS_UNTIL_NEW_CKPT has elapsed; if so return so we can load a new checkpoint t1 = time.time() if t1-t0 > SECS_UNTIL_NEW_CKPT: tf.logging.info('We\'ve been decoding with same checkpoint for %i seconds. Time to load new checkpoint', t1-t0) _ = util.load_ckpt(self._saver, self._sess) t0 = time.time() def write_for_rouge(self, reference_sents, decoded_words, ex_index): """Write output to file in correct format for eval with pyrouge. This is called in single_pass mode. Args: reference_sents: list of strings decoded_words: list of strings ex_index: int, the index with which to label the files """ # First, divide decoded output into sentences decoded_sents = [] while len(decoded_words) > 0: try: fst_period_idx = decoded_words.index(".") except ValueError: # there is text remaining that doesn't end in "." fst_period_idx = len(decoded_words) sent = decoded_words[:fst_period_idx+1] # sentence up to and including the period decoded_words = decoded_words[fst_period_idx+1:] # everything else decoded_sents.append(' '.join(sent)) # pyrouge calls a perl script that puts the data into HTML files. # Therefore we need to make our output HTML safe. decoded_sents = [make_html_safe(w) for w in decoded_sents] reference_sents = [make_html_safe(w) for w in reference_sents] # Write to file ref_file = os.path.join(self._rouge_ref_dir, "%06d_reference.txt" % ex_index) decoded_file = os.path.join(self._rouge_dec_dir, "%06d_decoded.txt" % ex_index) with open(ref_file, "w") as f: for idx,sent in enumerate(reference_sents): f.write(sent) if idx==len(reference_sents)-1 else f.write(sent+"\n") with open(decoded_file, "w") as f: for idx,sent in enumerate(decoded_sents): f.write(sent) if idx==len(decoded_sents)-1 else f.write(sent+"\n") tf.logging.info("Wrote example %i to file" % ex_index) def write_for_attnvis(self, article, abstract, decoded_words, attn_dists, p_gens): """Write some data to json file, which can be read into the in-browser attention visualizer tool: https://github.com/abisee/attn_vis Args: article: The original article string. abstract: The human (correct) abstract string. attn_dists: List of arrays; the attention distributions. decoded_words: List of strings; the words of the generated summary. p_gens: List of scalars; the p_gen values. If not running in pointer-generator mode, list of None. """ article_lst = article.split() # list of words decoded_lst = decoded_words # list of decoded words to_write = { 'article_lst': [make_html_safe(t) for t in article_lst], 'decoded_lst': [make_html_safe(t) for t in decoded_lst], 'abstract_str': make_html_safe(abstract), 'attn_dists': attn_dists } if FLAGS.pointer_gen: to_write['p_gens'] = p_gens output_fname = os.path.join(self._decode_dir, 'attn_vis_data.json') with open(output_fname, 'w') as output_file: json.dump(to_write, output_file) tf.logging.info('Wrote visualization data to %s', output_fname) def print_results(article, abstract, decoded_output): """Prints the article, the reference summmary and the decoded summary to screen""" print("---------------------------------------------------------------------------") tf.logging.info('ARTICLE: %s', article) tf.logging.info('REFERENCE SUMMARY: %s', abstract) tf.logging.info('GENERATED SUMMARY: %s', decoded_output) print("---------------------------------------------------------------------------") def make_html_safe(s): """Replace any angled brackets in string s to avoid interfering with HTML attention visualizer.""" s.replace("<", "<") s.replace(">", ">") return s def rouge_eval(ref_dir, dec_dir): """Evaluate the files in ref_dir and dec_dir with pyrouge, returning results_dict""" r = pyrouge.Rouge155() r.model_filename_pattern = '#ID#_reference.txt' r.system_filename_pattern = '(\d+)_decoded.txt' r.model_dir = ref_dir r.system_dir = dec_dir logging.getLogger('global').setLevel(logging.WARNING) # silence pyrouge logging rouge_results = r.convert_and_evaluate() return r.output_to_dict(rouge_results) def rouge_log(results_dict, dir_to_write): """Log ROUGE results to screen and write to file. Args: results_dict: the dictionary returned by pyrouge dir_to_write: the directory where we will write the results to""" log_str = "" for x in ["1","2","l"]: log_str += "\nROUGE-%s:\n" % x for y in ["f_score", "recall", "precision"]: key = "rouge_%s_%s" % (x,y) key_cb = key + "_cb" key_ce = key + "_ce" val = results_dict[key] val_cb = results_dict[key_cb] val_ce = results_dict[key_ce] log_str += "%s: %.4f with confidence interval (%.4f, %.4f)\n" % (key, val, val_cb, val_ce) tf.logging.info(log_str) # log to screen results_file = os.path.join(dir_to_write, "ROUGE_results.txt") tf.logging.info("Writing final ROUGE results to %s...", results_file) with open(results_file, "w") as f: f.write(log_str) def get_decode_dir_name(ckpt_name): """Make a descriptive name for the decode dir, including the name of the checkpoint we use to decode. This is called in single_pass mode.""" if "train" in FLAGS.data_path: dataset = "train" elif "val" in FLAGS.data_path: dataset = "val" elif "test" in FLAGS.data_path: dataset = "test" else: raise ValueError("FLAGS.data_path %s should contain one of train, val or test" % (FLAGS.data_path)) dirname = "decode_%s_%imaxenc_%ibeam_%imindec_%imaxdec" % (dataset, FLAGS.max_enc_steps, FLAGS.beam_size, FLAGS.min_dec_steps, FLAGS.max_dec_steps) if ckpt_name is not None: dirname += "_%s" % ckpt_name return dirname ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/inspect_checkpoint.py ================================================ """ Simple script that checks if a checkpoint is corrupted with any inf/NaN values. Run like this: python inspect_checkpoint.py model.12345 """ import tensorflow as tf import sys import numpy as np if __name__ == '__main__': if len(sys.argv) != 2: raise Exception("Usage: python inspect_checkpoint.py \nNote: Do not include the .data .index or .meta part of the model checkpoint in file_name.") file_name = sys.argv[1] reader = tf.train.NewCheckpointReader(file_name) var_to_shape_map = reader.get_variable_to_shape_map() finite = [] all_infnan = [] some_infnan = [] for key in sorted(var_to_shape_map.keys()): tensor = reader.get_tensor(key) if np.all(np.isfinite(tensor)): finite.append(key) else: if not np.any(np.isfinite(tensor)): all_infnan.append(key) else: some_infnan.append(key) print("\nFINITE VARIABLES:") for key in finite: print(key) print("\nVARIABLES THAT ARE ALL INF/NAN:") for key in all_infnan: print(key) print("\nVARIABLES THAT CONTAIN SOME FINITE, SOME INF/NAN VALUES:") for key in some_infnan: print(key) if not all_infnan and not some_infnan: print("CHECK PASSED: checkpoint contains no inf/NaN values") else: print("CHECK FAILED: checkpoint contains some inf/NaN values") ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/model.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This file contains code to build and run the tensorflow graph for the sequence-to-sequence model""" import os import time import numpy as np import tensorflow as tf from attention_decoder import attention_decoder from tensorflow.contrib.tensorboard.plugins import projector FLAGS = tf.app.flags.FLAGS class SummarizationModel(object): """A class to represent a sequence-to-sequence model for text summarization. Supports both baseline mode, pointer-generator mode, and coverage""" def __init__(self, hps, vocab): self._hps = hps self._vocab = vocab def _add_placeholders(self): """Add placeholders to the graph. These are entry points for any input data.""" hps = self._hps # encoder part self._enc_batch = tf.placeholder(tf.int32, [hps.batch_size, None], name='enc_batch') self._enc_lens = tf.placeholder(tf.int32, [hps.batch_size], name='enc_lens') self._enc_padding_mask = tf.placeholder(tf.float32, [hps.batch_size, None], name='enc_padding_mask') if FLAGS.pointer_gen: self._enc_batch_extend_vocab = tf.placeholder(tf.int32, [hps.batch_size, None], name='enc_batch_extend_vocab') self._max_art_oovs = tf.placeholder(tf.int32, [], name='max_art_oovs') # decoder part self._dec_batch = tf.placeholder(tf.int32, [hps.batch_size, hps.max_dec_steps], name='dec_batch') self._target_batch = tf.placeholder(tf.int32, [hps.batch_size, hps.max_dec_steps], name='target_batch') self._dec_padding_mask = tf.placeholder(tf.float32, [hps.batch_size, hps.max_dec_steps], name='dec_padding_mask') if hps.mode=="decode" and hps.coverage: self.prev_coverage = tf.placeholder(tf.float32, [hps.batch_size, None], name='prev_coverage') def _make_feed_dict(self, batch, just_enc=False): """Make a feed dictionary mapping parts of the batch to the appropriate placeholders. Args: batch: Batch object just_enc: Boolean. If True, only feed the parts needed for the encoder. """ feed_dict = {} feed_dict[self._enc_batch] = batch.enc_batch feed_dict[self._enc_lens] = batch.enc_lens feed_dict[self._enc_padding_mask] = batch.enc_padding_mask if FLAGS.pointer_gen: feed_dict[self._enc_batch_extend_vocab] = batch.enc_batch_extend_vocab feed_dict[self._max_art_oovs] = batch.max_art_oovs if not just_enc: feed_dict[self._dec_batch] = batch.dec_batch feed_dict[self._target_batch] = batch.target_batch feed_dict[self._dec_padding_mask] = batch.dec_padding_mask return feed_dict def _add_encoder(self, encoder_inputs, seq_len): """Add a single-layer bidirectional LSTM encoder to the graph. Args: encoder_inputs: A tensor of shape [batch_size, <=max_enc_steps, emb_size]. seq_len: Lengths of encoder_inputs (before padding). A tensor of shape [batch_size]. Returns: encoder_outputs: A tensor of shape [batch_size, <=max_enc_steps, 2*hidden_dim]. It's 2*hidden_dim because it's the concatenation of the forwards and backwards states. fw_state, bw_state: Each are LSTMStateTuples of shape ([batch_size,hidden_dim],[batch_size,hidden_dim]) """ with tf.variable_scope('encoder'): cell_fw = tf.contrib.rnn.LSTMCell(self._hps.hidden_dim, initializer=self.rand_unif_init, state_is_tuple=True) cell_bw = tf.contrib.rnn.LSTMCell(self._hps.hidden_dim, initializer=self.rand_unif_init, state_is_tuple=True) (encoder_outputs, (fw_st, bw_st)) = tf.nn.bidirectional_dynamic_rnn(cell_fw, cell_bw, encoder_inputs, dtype=tf.float32, sequence_length=seq_len, swap_memory=True) encoder_outputs = tf.concat(axis=2, values=encoder_outputs) # concatenate the forwards and backwards states return encoder_outputs, fw_st, bw_st def _reduce_states(self, fw_st, bw_st): """Add to the graph a linear layer to reduce the encoder's final FW and BW state into a single initial state for the decoder. This is needed because the encoder is bidirectional but the decoder is not. Args: fw_st: LSTMStateTuple with hidden_dim units. bw_st: LSTMStateTuple with hidden_dim units. Returns: state: LSTMStateTuple with hidden_dim units. """ hidden_dim = self._hps.hidden_dim with tf.variable_scope('reduce_final_st'): # Define weights and biases to reduce the cell and reduce the state w_reduce_c = tf.get_variable('w_reduce_c', [hidden_dim * 2, hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init) w_reduce_h = tf.get_variable('w_reduce_h', [hidden_dim * 2, hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init) bias_reduce_c = tf.get_variable('bias_reduce_c', [hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init) bias_reduce_h = tf.get_variable('bias_reduce_h', [hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init) # Apply linear layer old_c = tf.concat(axis=1, values=[fw_st.c, bw_st.c]) # Concatenation of fw and bw cell old_h = tf.concat(axis=1, values=[fw_st.h, bw_st.h]) # Concatenation of fw and bw state new_c = tf.nn.relu(tf.matmul(old_c, w_reduce_c) + bias_reduce_c) # Get new cell from old cell new_h = tf.nn.relu(tf.matmul(old_h, w_reduce_h) + bias_reduce_h) # Get new state from old state return tf.contrib.rnn.LSTMStateTuple(new_c, new_h) # Return new cell and state def _add_decoder(self, inputs): """Add attention decoder to the graph. In train or eval mode, you call this once to get output on ALL steps. In decode (beam search) mode, you call this once for EACH decoder step. Args: inputs: inputs to the decoder (word embeddings). A list of tensors shape (batch_size, emb_dim) Returns: outputs: List of tensors; the outputs of the decoder out_state: The final state of the decoder attn_dists: A list of tensors; the attention distributions p_gens: A list of scalar tensors; the generation probabilities coverage: A tensor, the current coverage vector """ hps = self._hps cell = tf.contrib.rnn.LSTMCell(hps.hidden_dim, state_is_tuple=True, initializer=self.rand_unif_init) prev_coverage = self.prev_coverage if hps.mode=="decode" and hps.coverage else None # In decode mode, we run attention_decoder one step at a time and so need to pass in the previous step's coverage vector each time outputs, out_state, attn_dists, p_gens, coverage = attention_decoder(inputs, self._dec_in_state, self._enc_states, self._enc_padding_mask, cell, initial_state_attention=(hps.mode=="decode"), pointer_gen=hps.pointer_gen, use_coverage=hps.coverage, prev_coverage=prev_coverage) return outputs, out_state, attn_dists, p_gens, coverage def _calc_final_dist(self, vocab_dists, attn_dists): """Calculate the final distribution, for the pointer-generator model Args: vocab_dists: The vocabulary distributions. List length max_dec_steps of (batch_size, vsize) arrays. The words are in the order they appear in the vocabulary file. attn_dists: The attention distributions. List length max_dec_steps of (batch_size, attn_len) arrays Returns: final_dists: The final distributions. List length max_dec_steps of (batch_size, extended_vsize) arrays. """ with tf.variable_scope('final_distribution'): # Multiply vocab dists by p_gen and attention dists by (1-p_gen) vocab_dists = [p_gen * dist for (p_gen,dist) in zip(self.p_gens, vocab_dists)] attn_dists = [(1-p_gen) * dist for (p_gen,dist) in zip(self.p_gens, attn_dists)] # Concatenate some zeros to each vocabulary dist, to hold the probabilities for in-article OOV words extended_vsize = self._vocab.size() + self._max_art_oovs # the maximum (over the batch) size of the extended vocabulary extra_zeros = tf.zeros((self._hps.batch_size, self._max_art_oovs)) vocab_dists_extended = [tf.concat(axis=1, values=[dist, extra_zeros]) for dist in vocab_dists] # list length max_dec_steps of shape (batch_size, extended_vsize) # Project the values in the attention distributions onto the appropriate entries in the final distributions # This means that if a_i = 0.1 and the ith encoder word is w, and w has index 500 in the vocabulary, then we add 0.1 onto the 500th entry of the final distribution # This is done for each decoder timestep. # This is fiddly; we use tf.scatter_nd to do the projection batch_nums = tf.range(0, limit=self._hps.batch_size) # shape (batch_size) batch_nums = tf.expand_dims(batch_nums, 1) # shape (batch_size, 1) attn_len = tf.shape(self._enc_batch_extend_vocab)[1] # number of states we attend over batch_nums = tf.tile(batch_nums, [1, attn_len]) # shape (batch_size, attn_len) indices = tf.stack( (batch_nums, self._enc_batch_extend_vocab), axis=2) # shape (batch_size, enc_t, 2) shape = [self._hps.batch_size, extended_vsize] attn_dists_projected = [tf.scatter_nd(indices, copy_dist, shape) for copy_dist in attn_dists] # list length max_dec_steps (batch_size, extended_vsize) # Add the vocab distributions and the copy distributions together to get the final distributions # final_dists is a list length max_dec_steps; each entry is a tensor shape (batch_size, extended_vsize) giving the final distribution for that decoder timestep # Note that for decoder timesteps and examples corresponding to a [PAD] token, this is junk - ignore. final_dists = [vocab_dist + copy_dist for (vocab_dist,copy_dist) in zip(vocab_dists_extended, attn_dists_projected)] return final_dists def _add_emb_vis(self, embedding_var): """Do setup so that we can view word embedding visualization in Tensorboard, as described here: https://www.tensorflow.org/get_started/embedding_viz Make the vocab metadata file, then make the projector config file pointing to it.""" train_dir = os.path.join(FLAGS.log_root, "train") vocab_metadata_path = os.path.join(train_dir, "vocab_metadata.tsv") self._vocab.write_metadata(vocab_metadata_path) # write metadata file summary_writer = tf.summary.FileWriter(train_dir) config = projector.ProjectorConfig() embedding = config.embeddings.add() embedding.tensor_name = embedding_var.name embedding.metadata_path = vocab_metadata_path projector.visualize_embeddings(summary_writer, config) def _add_seq2seq(self): """Add the whole sequence-to-sequence model to the graph.""" hps = self._hps vsize = self._vocab.size() # size of the vocabulary with tf.variable_scope('seq2seq'): # Some initializers self.rand_unif_init = tf.random_uniform_initializer(-hps.rand_unif_init_mag, hps.rand_unif_init_mag, seed=123) self.trunc_norm_init = tf.truncated_normal_initializer(stddev=hps.trunc_norm_init_std) # Add embedding matrix (shared by the encoder and decoder inputs) with tf.variable_scope('embedding'): embedding = tf.get_variable('embedding', [vsize, hps.emb_dim], dtype=tf.float32, initializer=self.trunc_norm_init) if hps.mode=="train": self._add_emb_vis(embedding) # add to tensorboard emb_enc_inputs = tf.nn.embedding_lookup(embedding, self._enc_batch) # tensor with shape (batch_size, max_enc_steps, emb_size) emb_dec_inputs = [tf.nn.embedding_lookup(embedding, x) for x in tf.unstack(self._dec_batch, axis=1)] # list length max_dec_steps containing shape (batch_size, emb_size) # Add the encoder. enc_outputs, fw_st, bw_st = self._add_encoder(emb_enc_inputs, self._enc_lens) self._enc_states = enc_outputs # Our encoder is bidirectional and our decoder is unidirectional so we need to reduce the final encoder hidden state to the right size to be the initial decoder hidden state self._dec_in_state = self._reduce_states(fw_st, bw_st) # Add the decoder. with tf.variable_scope('decoder'): decoder_outputs, self._dec_out_state, self.attn_dists, self.p_gens, self.coverage = self._add_decoder(emb_dec_inputs) # Add the output projection to obtain the vocabulary distribution with tf.variable_scope('output_projection'): w = tf.get_variable('w', [hps.hidden_dim, vsize], dtype=tf.float32, initializer=self.trunc_norm_init) w_t = tf.transpose(w) v = tf.get_variable('v', [vsize], dtype=tf.float32, initializer=self.trunc_norm_init) vocab_scores = [] # vocab_scores is the vocabulary distribution before applying softmax. Each entry on the list corresponds to one decoder step for i,output in enumerate(decoder_outputs): if i > 0: tf.get_variable_scope().reuse_variables() vocab_scores.append(tf.nn.xw_plus_b(output, w, v)) # apply the linear layer vocab_dists = [tf.nn.softmax(s) for s in vocab_scores] # The vocabulary distributions. List length max_dec_steps of (batch_size, vsize) arrays. The words are in the order they appear in the vocabulary file. # For pointer-generator model, calc final distribution from copy distribution and vocabulary distribution if FLAGS.pointer_gen: final_dists = self._calc_final_dist(vocab_dists, self.attn_dists) else: # final distribution is just vocabulary distribution final_dists = vocab_dists if hps.mode in ['train', 'eval']: # Calculate the loss with tf.variable_scope('loss'): if FLAGS.pointer_gen: # Calculate the loss per step # This is fiddly; we use tf.gather_nd to pick out the probabilities of the gold target words loss_per_step = [] # will be list length max_dec_steps containing shape (batch_size) batch_nums = tf.range(0, limit=hps.batch_size) # shape (batch_size) for dec_step, dist in enumerate(final_dists): targets = self._target_batch[:,dec_step] # The indices of the target words. shape (batch_size) indices = tf.stack( (batch_nums, targets), axis=1) # shape (batch_size, 2) gold_probs = tf.gather_nd(dist, indices) # shape (batch_size). prob of correct words on this step losses = -tf.log(gold_probs) loss_per_step.append(losses) # Apply dec_padding_mask and get loss self._loss = _mask_and_avg(loss_per_step, self._dec_padding_mask) else: # baseline model self._loss = tf.contrib.seq2seq.sequence_loss(tf.stack(vocab_scores, axis=1), self._target_batch, self._dec_padding_mask) # this applies softmax internally tf.summary.scalar('loss', self._loss) # Calculate coverage loss from the attention distributions if hps.coverage: with tf.variable_scope('coverage_loss'): self._coverage_loss = _coverage_loss(self.attn_dists, self._dec_padding_mask) tf.summary.scalar('coverage_loss', self._coverage_loss) self._total_loss = self._loss + hps.cov_loss_wt * self._coverage_loss tf.summary.scalar('total_loss', self._total_loss) if hps.mode == "decode": # We run decode beam search mode one decoder step at a time assert len(final_dists)==1 # final_dists is a singleton list containing shape (batch_size, extended_vsize) final_dists = final_dists[0] topk_probs, self._topk_ids = tf.nn.top_k(final_dists, hps.batch_size*2) # take the k largest probs. note batch_size=beam_size in decode mode self._topk_log_probs = tf.log(topk_probs) def _add_train_op(self): """Sets self._train_op, the op to run for training.""" # Take gradients of the trainable variables w.r.t. the loss function to minimize loss_to_minimize = self._total_loss if self._hps.coverage else self._loss tvars = tf.trainable_variables() gradients = tf.gradients(loss_to_minimize, tvars, aggregation_method=tf.AggregationMethod.EXPERIMENTAL_TREE) # Clip the gradients with tf.device("/gpu:0"): grads, global_norm = tf.clip_by_global_norm(gradients, self._hps.max_grad_norm) # Add a summary tf.summary.scalar('global_norm', global_norm) # Apply adagrad optimizer optimizer = tf.train.AdagradOptimizer(self._hps.lr, initial_accumulator_value=self._hps.adagrad_init_acc) #optimizer = tf.train.AdamOptimizer(self._hps.lr) with tf.device("/gpu:0"): self._train_op = optimizer.apply_gradients(zip(grads, tvars), global_step=self.global_step, name='train_step') def build_graph(self): """Add the placeholders, model, global step, train_op and summaries to the graph""" tf.logging.info('Building graph...') t0 = time.time() self._add_placeholders() with tf.device("/gpu:0"): self._add_seq2seq() self.global_step = tf.Variable(0, name='global_step', trainable=False) if self._hps.mode == 'train': self._add_train_op() self._summaries = tf.summary.merge_all() t1 = time.time() tf.logging.info('Time to build graph: %i seconds', t1 - t0) def run_train_step(self, sess, batch): """Runs one training iteration. Returns a dictionary containing train op, summaries, loss, global_step and (optionally) coverage loss.""" feed_dict = self._make_feed_dict(batch) to_return = { 'train_op': self._train_op, 'summaries': self._summaries, 'loss': self._loss, 'global_step': self.global_step, } if self._hps.coverage: to_return['coverage_loss'] = self._coverage_loss return sess.run(to_return, feed_dict) def run_eval_step(self, sess, batch): """Runs one evaluation iteration. Returns a dictionary containing summaries, loss, global_step and (optionally) coverage loss.""" feed_dict = self._make_feed_dict(batch) to_return = { 'summaries': self._summaries, 'loss': self._loss, 'global_step': self.global_step, } if self._hps.coverage: to_return['coverage_loss'] = self._coverage_loss return sess.run(to_return, feed_dict) def run_encoder(self, sess, batch): """For beam search decoding. Run the encoder on the batch and return the encoder states and decoder initial state. Args: sess: Tensorflow session. batch: Batch object that is the same example repeated across the batch (for beam search) Returns: enc_states: The encoder states. A tensor of shape [batch_size, <=max_enc_steps, 2*hidden_dim]. dec_in_state: A LSTMStateTuple of shape ([1,hidden_dim],[1,hidden_dim]) """ feed_dict = self._make_feed_dict(batch, just_enc=True) # feed the batch into the placeholders (enc_states, dec_in_state, global_step) = sess.run([self._enc_states, self._dec_in_state, self.global_step], feed_dict) # run the encoder # dec_in_state is LSTMStateTuple shape ([batch_size,hidden_dim],[batch_size,hidden_dim]) # Given that the batch is a single example repeated, dec_in_state is identical across the batch so we just take the top row. dec_in_state = tf.contrib.rnn.LSTMStateTuple(dec_in_state.c[0], dec_in_state.h[0]) return enc_states, dec_in_state def decode_onestep(self, sess, batch, latest_tokens, enc_states, dec_init_states, prev_coverage): """For beam search decoding. Run the decoder for one step. Args: sess: Tensorflow session. batch: Batch object containing single example repeated across the batch latest_tokens: Tokens to be fed as input into the decoder for this timestep enc_states: The encoder states. dec_init_states: List of beam_size LSTMStateTuples; the decoder states from the previous timestep prev_coverage: List of np arrays. The coverage vectors from the previous timestep. List of None if not using coverage. Returns: ids: top 2k ids. shape [beam_size, 2*beam_size] probs: top 2k log probabilities. shape [beam_size, 2*beam_size] new_states: new states of the decoder. a list length beam_size containing LSTMStateTuples each of shape ([hidden_dim,],[hidden_dim,]) attn_dists: List length beam_size containing lists length attn_length. p_gens: Generation probabilities for this step. A list length beam_size. List of None if in baseline mode. new_coverage: Coverage vectors for this step. A list of arrays. List of None if coverage is not turned on. """ beam_size = len(dec_init_states) # Turn dec_init_states (a list of LSTMStateTuples) into a single LSTMStateTuple for the batch cells = [np.expand_dims(state.c, axis=0) for state in dec_init_states] hiddens = [np.expand_dims(state.h, axis=0) for state in dec_init_states] new_c = np.concatenate(cells, axis=0) # shape [batch_size,hidden_dim] new_h = np.concatenate(hiddens, axis=0) # shape [batch_size,hidden_dim] new_dec_in_state = tf.contrib.rnn.LSTMStateTuple(new_c, new_h) feed = { self._enc_states: enc_states, self._enc_padding_mask: batch.enc_padding_mask, self._dec_in_state: new_dec_in_state, self._dec_batch: np.transpose(np.array([latest_tokens])), } to_return = { "ids": self._topk_ids, "probs": self._topk_log_probs, "states": self._dec_out_state, "attn_dists": self.attn_dists } if FLAGS.pointer_gen: feed[self._enc_batch_extend_vocab] = batch.enc_batch_extend_vocab feed[self._max_art_oovs] = batch.max_art_oovs to_return['p_gens'] = self.p_gens if self._hps.coverage: feed[self.prev_coverage] = np.stack(prev_coverage, axis=0) to_return['coverage'] = self.coverage results = sess.run(to_return, feed_dict=feed) # run the decoder step # Convert results['states'] (a single LSTMStateTuple) into a list of LSTMStateTuple -- one for each hypothesis new_states = [tf.contrib.rnn.LSTMStateTuple(results['states'].c[i, :], results['states'].h[i, :]) for i in range(beam_size)] # Convert singleton list containing a tensor to a list of k arrays assert len(results['attn_dists'])==1 attn_dists = results['attn_dists'][0].tolist() if FLAGS.pointer_gen: # Convert singleton list containing a tensor to a list of k arrays assert len(results['p_gens'])==1 p_gens = results['p_gens'][0].tolist() else: p_gens = [None for _ in range(beam_size)] # Convert the coverage tensor to a list length k containing the coverage vector for each hypothesis if FLAGS.coverage: new_coverage = results['coverage'].tolist() assert len(new_coverage) == beam_size else: new_coverage = [None for _ in range(beam_size)] return results['ids'], results['probs'], new_states, attn_dists, p_gens, new_coverage def _mask_and_avg(values, padding_mask): """Applies mask to values then returns overall average (a scalar) Args: values: a list length max_dec_steps containing arrays shape (batch_size). padding_mask: tensor shape (batch_size, max_dec_steps) containing 1s and 0s. Returns: a scalar """ dec_lens = tf.reduce_sum(padding_mask, axis=1) # shape batch_size. float32 values_per_step = [v * padding_mask[:,dec_step] for dec_step,v in enumerate(values)] values_per_ex = sum(values_per_step)/dec_lens # shape (batch_size); normalized value for each batch member return tf.reduce_mean(values_per_ex) # overall average def _coverage_loss(attn_dists, padding_mask): """Calculates the coverage loss from the attention distributions. Args: attn_dists: The attention distributions for each decoder timestep. A list length max_dec_steps containing shape (batch_size, attn_length) padding_mask: shape (batch_size, max_dec_steps). Returns: coverage_loss: scalar """ coverage = tf.zeros_like(attn_dists[0]) # shape (batch_size, attn_length). Initial coverage is zero. covlosses = [] # Coverage loss per decoder timestep. Will be list length max_dec_steps containing shape (batch_size). for a in attn_dists: covloss = tf.reduce_sum(tf.minimum(a, coverage), [1]) # calculate the coverage loss for this step covlosses.append(covloss) coverage += a # update the coverage vector coverage_loss = _mask_and_avg(covlosses, padding_mask) return coverage_loss ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/run_summarization.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This is the top-level file to train, evaluate or test your summarization model""" import sys import time import os import tensorflow as tf import numpy as np from collections import namedtuple from data import Vocab from batcher import Batcher from model import SummarizationModel from decode import BeamSearchDecoder import util from tensorflow.python import debug as tf_debug print("tf.__version__:", tf.__version__) FLAGS = tf.app.flags.FLAGS # Where to find data tf.app.flags.DEFINE_string('data_path', '', 'Path expression to tf.Example datafiles. Can include wildcards to access multiple datafiles.') tf.app.flags.DEFINE_string('vocab_path', '', 'Path expression to text vocabulary file.') # Important settings tf.app.flags.DEFINE_string('mode', 'train', 'must be one of train/eval/decode') tf.app.flags.DEFINE_boolean('single_pass', False, 'For decode mode only. If True, run eval on the full dataset using a fixed checkpoint, i.e. take the current checkpoint, and use it to produce one summary for each example in the dataset, write the summaries to file and then get ROUGE scores for the whole dataset. If False (default), run concurrent decoding, i.e. repeatedly load latest checkpoint, use it to produce summaries for randomly-chosen examples and log the results to screen, indefinitely.') #tf.app.flags.DEFINE_boolean('single_pass', True, 'For decode mode only. If True, run eval on the full dataset using a fixed checkpoint, i.e. take the current checkpoint, and use it to produce one summary for each example in the dataset, write the summaries to file and then get ROUGE scores for the whole dataset. If False (default), run concurrent decoding, i.e. repeatedly load latest checkpoint, use it to produce summaries for randomly-chosen examples and log the results to screen, indefinitely.') # Where to save output tf.app.flags.DEFINE_string('log_root', '', 'Root directory for all logging.') tf.app.flags.DEFINE_string('exp_name', '', 'Name for experiment. Logs will be saved in a directory with this name, under log_root.') # Hyperparameters tf.app.flags.DEFINE_integer('hidden_dim', 256, 'dimension of RNN hidden states') tf.app.flags.DEFINE_integer('emb_dim', 128, 'dimension of word embeddings') tf.app.flags.DEFINE_integer('batch_size', 32, 'minibatch size') tf.app.flags.DEFINE_integer('max_enc_steps', 400, 'max timesteps of encoder (max source text tokens)') tf.app.flags.DEFINE_integer('max_dec_steps', 100, 'max timesteps of decoder (max summary tokens)') tf.app.flags.DEFINE_integer('beam_size', 4, 'beam size for beam search decoding.') tf.app.flags.DEFINE_integer('min_dec_steps', 35, 'Minimum sequence length of generated summary. Applies only for beam search decoding mode') tf.app.flags.DEFINE_integer('vocab_size', 50000, 'Size of vocabulary. These will be read from the vocabulary file in order. If the vocabulary file contains fewer words than this number, or if this number is set to 0, will take all words in the vocabulary file.') tf.app.flags.DEFINE_float('lr', 0.15, 'learning rate') tf.app.flags.DEFINE_float('adagrad_init_acc', 0.1, 'initial accumulator value for Adagrad') tf.app.flags.DEFINE_float('rand_unif_init_mag', 0.02, 'magnitude for lstm cells random uniform inititalization') tf.app.flags.DEFINE_float('trunc_norm_init_std', 1e-4, 'std of trunc norm init, used for initializing everything else') tf.app.flags.DEFINE_float('max_grad_norm', 2.0, 'for gradient clipping') # Pointer-generator or baseline model tf.app.flags.DEFINE_boolean('pointer_gen', True, 'If True, use pointer-generator model. If False, use baseline model.') # Coverage hyperparameters tf.app.flags.DEFINE_boolean('coverage', False, 'Use coverage mechanism. Note, the experiments reported in the ACL paper train WITHOUT coverage until converged, and then train for a short phase WITH coverage afterwards. i.e. to reproduce the results in the ACL paper, turn this off for most of training then turn on for a short phase at the end.') #tf.app.flags.DEFINE_boolean('coverage', True, 'Use coverage mechanism. Note, the experiments reported in the ACL paper train WITHOUT coverage until converged, and then train for a short phase WITH coverage afterwards. i.e. to reproduce the results in the ACL paper, turn this off for most of training then turn on for a short phase at the end.') tf.app.flags.DEFINE_float('cov_loss_wt', 1.0, 'Weight of coverage loss (lambda in the paper). If zero, then no incentive to minimize coverage loss.') # Utility flags, for restoring and changing checkpoints tf.app.flags.DEFINE_boolean('convert_to_coverage_model', False, 'Convert a non-coverage model to a coverage model. Turn this on and run in train mode. Your current training model will be copied to a new version (same name with _cov_init appended) that will be ready to run with coverage flag turned on, for the coverage training stage.') #tf.app.flags.DEFINE_boolean('convert_to_coverage_model', True, 'Convert a non-coverage model to a coverage model. Turn this on and run in train mode. Your current training model will be copied to a new version (same name with _cov_init appended) that will be ready to run with coverage flag turned on, for the coverage training stage.') tf.app.flags.DEFINE_boolean('restore_best_model', False, 'Restore the best model in the eval/ dir and save it in the train/ dir, ready to be used for further training. Useful for early stopping, or if your training checkpoint has become corrupted with e.g. NaN values.') #tf.app.flags.DEFINE_boolean('restore_best_model', True, 'Restore the best model in the eval/ dir and save it in the train/ dir, ready to be used for further training. Useful for early stopping, or if your training checkpoint has become corrupted with e.g. NaN values.') # Debugging. See https://www.tensorflow.org/programmers_guide/debugger tf.app.flags.DEFINE_boolean('debug', False, "Run in tensorflow's debug mode (watches for NaN/inf values)") def calc_running_avg_loss(loss, running_avg_loss, summary_writer, step, decay=0.99): """Calculate the running average loss via exponential decay. This is used to implement early stopping w.r.t. a more smooth loss curve than the raw loss curve. Args: loss: loss on the most recent eval step running_avg_loss: running_avg_loss so far summary_writer: FileWriter object to write for tensorboard step: training iteration step decay: rate of exponential decay, a float between 0 and 1. Larger is smoother. Returns: running_avg_loss: new running average loss """ if running_avg_loss == 0: # on the first iteration just take the loss running_avg_loss = loss else: running_avg_loss = running_avg_loss * decay + (1 - decay) * loss running_avg_loss = min(running_avg_loss, 12) # clip loss_sum = tf.Summary() tag_name = 'running_avg_loss/decay=%f' % (decay) loss_sum.value.add(tag=tag_name, simple_value=running_avg_loss) summary_writer.add_summary(loss_sum, step) tf.logging.info('running_avg_loss: %f', running_avg_loss) return running_avg_loss def restore_best_model(): """Load bestmodel file from eval directory, add variables for adagrad, and save to train directory""" tf.logging.info("Restoring bestmodel for training...") # Initialize all vars in the model sess = tf.Session(config=util.get_config()) print("Initializing all variables...") sess.run(tf.initialize_all_variables()) # Restore the best model from eval dir saver = tf.train.Saver([v for v in tf.all_variables() if "Adagrad" not in v.name]) print("Restoring all non-adagrad variables from best model in eval dir...") curr_ckpt = util.load_ckpt(saver, sess, "eval") print ("Restored %s." % curr_ckpt) # Save this model to train dir and quit new_model_name = curr_ckpt.split("/")[-1].replace("bestmodel", "model") new_fname = os.path.join(FLAGS.log_root, "train", new_model_name) print ("Saving model to %s..." % (new_fname)) new_saver = tf.train.Saver() # this saver saves all variables that now exist, including Adagrad variables new_saver.save(sess, new_fname) print ("Saved.") exit() def convert_to_coverage_model(): """Load non-coverage checkpoint, add initialized extra variables for coverage, and save as new checkpoint""" tf.logging.info("converting non-coverage model to coverage model..") # initialize an entire coverage model from scratch sess = tf.Session(config=util.get_config()) print("initializing everything...") sess.run(tf.global_variables_initializer()) # load all non-coverage weights from checkpoint saver = tf.train.Saver([v for v in tf.global_variables() if "coverage" not in v.name and "Adagrad" not in v.name]) print("restoring non-coverage variables...") curr_ckpt = util.load_ckpt(saver, sess) print("restored.") # save this model and quit new_fname = curr_ckpt + '_cov_init' print("saving model to %s..." % (new_fname)) new_saver = tf.train.Saver() # this one will save all variables that now exist new_saver.save(sess, new_fname) print("saved.") exit() def setup_training(model, batcher): """Does setup before starting training (run_training)""" train_dir = os.path.join(FLAGS.log_root, "train") if not os.path.exists(train_dir): os.makedirs(train_dir) model.build_graph() # build the graph if FLAGS.convert_to_coverage_model: assert FLAGS.coverage, "To convert your non-coverage model to a coverage model, run with convert_to_coverage_model=True and coverage=True" convert_to_coverage_model() if FLAGS.restore_best_model: restore_best_model() saver = tf.train.Saver(max_to_keep=3) # keep 3 checkpoints at a time sv = tf.train.Supervisor(logdir=train_dir, is_chief=True, saver=saver, summary_op=None, save_summaries_secs=60, # save summaries for tensorboard every 60 secs save_model_secs=60, # checkpoint every 60 secs global_step=model.global_step) summary_writer = sv.summary_writer tf.logging.info("Preparing or waiting for session...") sess_context_manager = sv.prepare_or_wait_for_session(config=util.get_config()) tf.logging.info("Created session.") try: run_training(model, batcher, sess_context_manager, sv, summary_writer) # this is an infinite loop until interrupted except KeyboardInterrupt: tf.logging.info("Caught keyboard interrupt on worker. Stopping supervisor...") sv.stop() def run_training(model, batcher, sess_context_manager, sv, summary_writer): """Repeatedly runs training iterations, logging loss to screen and writing summaries""" tf.logging.info("starting run_training ... ") with sess_context_manager as sess: if FLAGS.debug: # start the tensorflow debugger sess = tf_debug.LocalCLIDebugWrapperSession(sess) sess.add_tensor_filter("has_inf_or_nan", tf_debug.has_inf_or_nan) while True: # 循环直到键盘中断(control+c) batch = batcher.next_batch() #tf.logging.info('running training step {}'.format(step)) t0=time.time() results = model.run_train_step(sess, batch) t1=time.time() # tf.logging.info('train step %d , cost %.3f second' % (step, t1-t0)) loss = results['loss'] summaries = results['summaries'] train_step = results['global_step'] #tf.logging.info('Train step %d , cost %.3f second, loss: %f' %(step, t1-t0, loss)) # print the loss to screen print('Train steps %d , cost %.3f second, loss: %f' % (train_step, t1-t0, loss)) # 打印训练step信息 # 如果loss是nan/inf/NINF等,触发异常 if not np.isfinite(loss): raise Exception("Loss is not finite. Stopping.") if FLAGS.coverage: coverage_loss = results['coverage_loss'] tf.logging.info("coverage_loss: %f", coverage_loss) # print the coverage loss to screen # get the summaries and iteration number so we can write summaries to tensorboard # we will write these summaries to tensorboard using summary_writer # we need this to update our running average loss summary_writer.add_summary(summaries, train_step) # write the summaries if train_step % 100 == 0: # flush the summary writer every so often summary_writer.flush() def run_eval(model, batcher, vocab): """Repeatedly runs eval iterations, logging to screen and writing summaries. Saves the model with the best loss seen so far.""" model.build_graph() # build the graph saver = tf.train.Saver(max_to_keep=3) # we will keep 3 best checkpoints at a time sess = tf.Session(config=util.get_config()) eval_dir = os.path.join(FLAGS.log_root, "eval") # make a subdir of the root dir for eval data bestmodel_save_path = os.path.join(eval_dir, 'bestmodel') # this is where checkpoints of best models are saved summary_writer = tf.summary.FileWriter(eval_dir) running_avg_loss = 0 # the eval job keeps a smoother, running average loss to tell it when to implement early stopping best_loss = None # will hold the best loss achieved so far while True: _ = util.load_ckpt(saver, sess) # load a new checkpoint batch = batcher.next_batch() # get the next batch # run eval on the batch t0=time.time() results = model.run_eval_step(sess, batch) t1=time.time() # tf.logging.info('seconds for batch: %.2f', t1-t0) # print the loss and coverage loss to screen loss = results['loss'] train_step = results['global_step'] print('steps %d, seconds for batch: %.2f, loss: %f'%(results['global_step'], t1-t0, loss)) if FLAGS.coverage: coverage_loss = results['coverage_loss'] tf.logging.info("coverage_loss: %f", coverage_loss) # add summaries summaries = results['summaries'] summary_writer.add_summary(summaries, train_step) # calculate running avg loss running_avg_loss = calc_running_avg_loss(np.asscalar(loss), running_avg_loss, summary_writer, train_step) # If running_avg_loss is best so far, save this checkpoint (early stopping). # These checkpoints will appear as bestmodel- in the eval dir if best_loss is None or running_avg_loss < best_loss: print('Found new best model with %.3f running_avg_loss. Saving to %s' % (running_avg_loss, bestmodel_save_path)) saver.save(sess, bestmodel_save_path, global_step=train_step, latest_filename='checkpoint_best') best_loss = running_avg_loss # flush the summary writer every so often if train_step % 100 == 0: summary_writer.flush() def main(unused_argv): if len(unused_argv) != 1: # prints a message if you've entered flags incorrectly raise Exception("Problem with flags: %s" % unused_argv) tf.logging.set_verbosity(tf.logging.INFO) # choose what level of logging you want tf.logging.info('Starting seq2seq_attention in %s mode...', (FLAGS.mode)) # Change log_root to FLAGS.log_root/FLAGS.exp_name and create the dir if necessary FLAGS.log_root = os.path.join(FLAGS.log_root, FLAGS.exp_name) if not os.path.exists(FLAGS.log_root): if FLAGS.mode=="train": os.makedirs(FLAGS.log_root) else: raise Exception("Logdir %s doesn't exist. Run in train mode to create it." % (FLAGS.log_root)) vocab = Vocab(FLAGS.vocab_path, FLAGS.vocab_size) # create a vocabulary # If in decode mode, set batch_size = beam_size # Reason: in decode mode, we decode one example at a time. # On each step, we have beam_size-many hypotheses in the beam, so we need to make a batch of these hypotheses. if FLAGS.mode == 'decode': FLAGS.batch_size = FLAGS.beam_size # If single_pass=True, check we're in decode mode if FLAGS.single_pass and FLAGS.mode!='decode': raise Exception("The single_pass flag should only be True in decode mode") # Make a namedtuple hps, containing the values of the hyperparameters that the model needs hparam_list = ['mode', 'lr', 'adagrad_init_acc', 'rand_unif_init_mag', 'trunc_norm_init_std', 'max_grad_norm', 'hidden_dim', 'emb_dim', 'batch_size', 'max_dec_steps', 'max_enc_steps', 'coverage', 'cov_loss_wt', 'pointer_gen'] hps_dict = {} for key,val in FLAGS.__flags.items(): # for each flag if key in hparam_list: # if it's in the list hps_dict[key] = val.value # add it to the dict hps = namedtuple("HParams", hps_dict.keys())(**hps_dict) # Create a batcher object that will create minibatches of data batcher = Batcher(FLAGS.data_path, vocab, hps, single_pass=FLAGS.single_pass) tf.set_random_seed(111) # a seed value for randomness if hps.mode == 'train': print("creating model...") model = SummarizationModel(hps, vocab) setup_training(model, batcher) elif hps.mode == 'eval': model = SummarizationModel(hps, vocab) run_eval(model, batcher, vocab) elif hps.mode == 'decode': decode_model_hps = hps # This will be the hyperparameters for the decoder model decode_model_hps = hps._replace(max_dec_steps=1) # The model is configured with max_dec_steps=1 because we only ever run one step of the decoder at a time (to do beam search). Note that the batcher is initialized with max_dec_steps equal to e.g. 100 because the batches need to contain the full summaries model = SummarizationModel(decode_model_hps, vocab) decoder = BeamSearchDecoder(model, batcher, vocab) decoder.decode() # decode indefinitely (unless single_pass=True, in which case deocde the dataset exactly once) else: raise ValueError("The 'mode' flag must be one of train/eval/decode") if __name__ == '__main__': tf.app.run() ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator/util.py ================================================ # Copyright 2016 The TensorFlow Authors. All Rights Reserved. # Modifications Copyright 2017 Abigail See # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """This file contains some utility functions""" import tensorflow as tf import time import os FLAGS = tf.app.flags.FLAGS def get_config(): """Returns config for tf.session""" config = tf.ConfigProto(allow_soft_placement=True) config.gpu_options.allow_growth=True return config def load_ckpt(saver, sess, ckpt_dir="train"): """Load checkpoint from the ckpt_dir (if unspecified, this is train dir) and restore it to saver and sess, waiting 10 secs in the case of failure. Also returns checkpoint name.""" while True: try: latest_filename = "checkpoint_best" if ckpt_dir=="eval" else None ckpt_dir = os.path.join(FLAGS.log_root, ckpt_dir) ckpt_state = tf.train.get_checkpoint_state(ckpt_dir, latest_filename=latest_filename) tf.logging.info('Loading checkpoint %s', ckpt_state.model_checkpoint_path) saver.restore(sess, ckpt_state.model_checkpoint_path) return ckpt_state.model_checkpoint_path except: tf.logging.info("Failed to load checkpoint from %s. Sleeping for %i secs...", ckpt_dir, 10) time.sleep(10) ================================================ FILE: P007PytorchPointerGeneratorNetwork/pointer-generator-network-test.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## pointer generator network" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "import tensorflow as tf" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'1.12.0'" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tf.__version__" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "FLAGS = tf.app.flags.FLAGS\n", "tf.app.flags.DEFINE_integer('hidden_dim', 256, 'dimension of RNN hidden states')\n", "tf.app.flags.DEFINE_integer('emb_dim', 128, 'dimension of word embeddings')\n", "tf.app.flags.DEFINE_integer('batch_size', 16, 'minibatch size')" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "from collections import namedtuple" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "256\n", "128\n", "16\n" ] } ], "source": [ "hparam_list = ['hidden_dim', 'emb_dim', 'batch_size']\n", "hps_dict = {}\n", "for key,val in FLAGS.__flags.items(): # for each flag\n", " if key in hparam_list: # if it's in the list\n", " print(val.value)\n", " hps_dict[key] = val.value # add it to the dict\n", "hps = namedtuple(\"HParams\", hps_dict.keys())(**hps_dict)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "16" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hps.batch_size" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P007PytorchPointerGeneratorNetwork/rouge_test.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "import jieba\n", "from collections import Counter" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "word2idx = Counter()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Counter()" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "word2idx" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "s = \"超参数的选择如果使用网格搜索也比较费时.\"" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Building prefix dict from the default dictionary ...\n", "Dumping model to file cache /tmp/jieba.cache\n", "Loading model cost 0.464 seconds.\n", "Prefix dict has been built successfully.\n" ] }, { "data": { "text/plain": [ "['超', '参数', '的', '选择', '如果', '使用', '网格', '搜索', '也', '比较', '费时', '.']" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "li = list(jieba.cut(s))\n", "li" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "word2idx.update(li)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Counter({'超': 1,\n", " '参数': 1,\n", " '的': 1,\n", " '选择': 1,\n", " '如果': 1,\n", " '使用': 1,\n", " '网格': 1,\n", " '搜索': 1,\n", " '也': 1,\n", " '比较': 1,\n", " '费时': 1,\n", " '.': 1})" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "word2idx" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['所以', '超', '参数', '的', '选择', '有', '一些', '技巧']" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "li2 = list(jieba.cut(\"所以超参数的选择有一些技巧\"))\n", "li2" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Counter({'超': 2,\n", " '参数': 2,\n", " '的': 2,\n", " '选择': 2,\n", " '如果': 1,\n", " '使用': 1,\n", " '网格': 1,\n", " '搜索': 1,\n", " '也': 1,\n", " '比较': 1,\n", " '费时': 1,\n", " '.': 1,\n", " '所以': 1,\n", " '有': 1,\n", " '一些': 1,\n", " '技巧': 1})" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "word2idx.update(li2)\n", "word2idx" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# Rouge测试" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import jieba\n", "from rouge import Rouge" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "r = Rouge()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "hy = \"一只猫被发现在床底下。\"\n", "ref = \"一只猫在床底下。\"" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Building prefix dict from the default dictionary ...\n", "Loading model from cache /tmp/jieba.cache\n", "Loading model cost 0.382 seconds.\n", "Prefix dict has been built successfully.\n" ] } ], "source": [ "ref = \" \".join(list(jieba.cut(ref.replace('。', '.'), HMM=False)))" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'一只 猫 在 床 底下 .'" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ref" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "hy = \" \".join(list(jieba.cut(hy.replace('。', '.'))))" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'一只 猫 被 发现 在 床 底下 .'" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hy" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'rouge-1': {'f': 0.8333333284722222, 'p': 0.7142857142857143, 'r': 1.0},\n", " 'rouge-2': {'f': 0.5999999952, 'p': 0.5, 'r': 0.75},\n", " 'rouge-l': {'f': 0.8333333284722222, 'p': 0.7142857142857143, 'r': 1.0}}" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "r.get_scores(hy, ref, avg=True)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "?jieba.cut" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P007PytorchPointerGeneratorNetwork/test.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "import torch\n", "import torch.nn as nn\n", "import numpy as np" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "device = torch.device(\"cuda\")" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "device(type='cuda')" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "device" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([ 8, 14, 10, 4, 11, 20, 13, 19])" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x = np.random.randint(0,25,size=[8]) \n", "x" ] }, { "cell_type": "code", "execution_count": 59, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([ 8., 14., 10., 4., 11., 20., 13., 19., 0., 0.])" ] }, "execution_count": 59, "metadata": {}, "output_type": "execute_result" } ], "source": [ "in_tensor = np.append(x, + np.zeros([2]))\n", "in_tensor" ] }, { "cell_type": "code", "execution_count": 60, "metadata": {}, "outputs": [], "source": [ "in_tensor = torch.tensor(in_tensor).long()" ] }, { "cell_type": "code", "execution_count": 73, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([10])" ] }, "execution_count": 73, "metadata": {}, "output_type": "execute_result" } ], "source": [ "in_tensor.shape" ] }, { "cell_type": "code", "execution_count": 78, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 8, 14, 10, 4, 11, 20, 13, 19, 0, 0]]])" ] }, "execution_count": 78, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x = in_tensor.unsqueeze(0).unsqueeze(0)\n", "x " ] }, { "cell_type": "code", "execution_count": 79, "metadata": {}, "outputs": [], "source": [ "oov_token = torch.full((1,1,10), 3).long()" ] }, { "cell_type": "code", "execution_count": 80, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]])" ] }, "execution_count": 80, "metadata": {}, "output_type": "execute_result" } ], "source": [ "oov_token" ] }, { "cell_type": "code", "execution_count": 82, "metadata": {}, "outputs": [], "source": [ "out_tensor = torch.where(x > 15, oov_token, in_tensor)" ] }, { "cell_type": "code", "execution_count": 83, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[ 8, 14, 10, 4, 11, 3, 13, 3, 0, 0]]])" ] }, "execution_count": 83, "metadata": {}, "output_type": "execute_result" } ], "source": [ "out_tensor" ] }, { "cell_type": "code", "execution_count": 89, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[[1., 1., 1., 1., 1., 1., 1., 1., 0., 0.]]])" ] }, "execution_count": 89, "metadata": {}, "output_type": "execute_result" } ], "source": [ "z = torch.ne(x, 0).byte().float()\n", "z" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.10" } }, "nbformat": 4, "nbformat_minor": 4 } ================================================ FILE: P007PytorchPointerGeneratorNetwork/weibo_news_preprocession.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## 数据预处理\n", "- 分词,划分训练集测试集,并保存文件\n", "- 共有679898个样本" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import os\n", "import sys\n", "import time\n", "import jieba" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "ARTICLE_FILE = \"./data/weibo_news/train_text.txt\"\n", "SUMMARRY_FILE = \"./data/weibo_news/train_label.txt\"\n", "\n", "TRAIN_FILE = \"./data/weibo_news/train_art_summ_prep.txt\"\n", "VAL_FILE = \"./data/weibo_news/val_art_summ_prep.txt\"" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def timer(func):\n", " \"\"\"时间装饰器\"\"\"\n", " def wrapper(*args, **kwargs):\n", " start = time.time()\n", " r = func(*args, **kwargs)\n", " end = time.time()\n", " cost = end - start\n", " print(f\"Cost time: {cost} s\")\n", " return r\n", " return wrapper\n", "\n", "@timer\n", "def load_data(filename):\n", " \"\"\"加载数据文件,对文本进行分词\"\"\"\n", " data_list = []\n", " with open(filename, 'r', encoding= 'utf-8') as f:\n", " for line in f:\n", " # jieba.enable_parallel()\n", " words = jieba.cut(line.strip())\n", " word_list = list(words)\n", " # jieba.disable_parallel()\n", " data_list.append(' '.join(word_list).strip())\n", " return data_list\n", "\n", "def build_train_val(article_data, summary_data, train_num=600_000):\n", " \"\"\"划分训练和验证数据\"\"\"\n", " train_list = []\n", " val_list = []\n", " n = 0\n", " for text, summ in zip(article_data, summary_data):\n", " n += 1\n", " if n <= train_num:\n", " train_list.append(text)\n", " train_list.append(summ)\n", " else:\n", " val_list.append(text)\n", " val_list.append(summ)\n", " return train_list, val_list\n", "\n", "def save_file(filename, li):\n", " \"\"\"预处理后的数据保存到文件\"\"\"\n", " with open(filename, 'w+', encoding='utf-8') as f:\n", " for item in li:\n", " f.write(item + '\\n')\n", " print(f\"Save {filename} ok.\")" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Building prefix dict from the default dictionary ...\n", "Loading model from cache /tmp/jieba.cache\n", "Loading model cost 1.055 seconds.\n", "Prefix dict has been built succesfully.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Cost time: 582.3778989315033 s\n" ] } ], "source": [ "article_data = load_data(ARTICLE_FILE)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Cost time: 105.96853184700012 s\n" ] } ], "source": [ "summary_data = load_data(SUMMARRY_FILE)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['徐州 18 岁 农家 女孩 宋爽 , 今年 考入 清华大学 。 除了 自己 一路 闯关 , 年 年 拿 奖 , 还 帮 妹妹 、 弟弟 制定 学习 计划 , 姐弟 仨 齐头并进 , 妹妹 也 考上 区里 最好 的 中学 。 这个 家里 的 收入 , 全靠 父亲 务农 和 打零工 , 但 宋爽 懂事 得 让 人 心疼 , 曾 需要 200 元 奥数 竞赛 的 教材费 , 她 羞于 开口 , 愣 是 急 哭 了 ... 戳 腾讯 公益 帮帮 她们 ! # 助学 圆梦 # 江苏 新闻 的 秒 拍 视频',\n", " '盖 被子 , 摇 摇篮 , 汪星 人 简直 要 把 萌娃 宠 上天 ~ 细致 周到 有 耐心 , 脾气 还好 , 汪星 人 不愧 是 一届 带娃 好手 [ 笑 而 不语 ] 偶买 噶 视频 的 秒 拍 视频 \\u200b \\u200b \\u200b',\n", " '人们 通常 被 社会 赋予 的 \" 成功 \" 所 定义 , “ 做 什么 工作 ” “ 赚 多少 钱 ” 都 用来 评判 一个 人 的 全部 价值 , 很多 人 出现 身份 焦虑 。 身份 焦虑 不仅 影响 幸福感 , 还会 导致 精神压力 , 甚至 自杀 。 如果 你 也 有 身份 焦虑 , 这个 短片 或许 会 有 帮助 。 秒 拍 视频 \\u200b \\u200b \\u200b',\n", " '网友 @ 星蓝 seiran 教 大家 自制 的 捕捉 器 教程 , 简单 方便 , 里面 的 洗洁精 换成 肥皂水 或 洗衣粉 水 都 可以 ( 用于 溶解 蟑螂 腹部 油脂 防止 爬 出 ) , 白糖 稍微 多放点 。 怕 蟑螂 的 童鞋 , 可以 换成 不 透明 的 瓶子 。 转需 ~ \\u200b \\u200b \\u200b',\n", " '车辆 众多 的 路口 , 哪些地方 能 掉头 ? 没有 调头 指示灯 和 调头 标志 的 路段 , 你 还 知道 怎么 调头 吗 ? @ 汽车 洋葱 圈 戳 视频 了解 ↓ ↓ 转给 新 司机 ! 汽车 洋葱 圈 的 秒 拍 视频 \\u200b \\u200b \\u200b',\n", " '平板 支撑 ( plank ) , 时下 最热 “ 甩肉 ” 秘笈 。 可以 有效 的 锻炼 腹横肌 , 被 公认 为 训练 腹肌 最 有效 的 方法 之一 , 每天 坚持 做 可以 让 平坦 的 小腹 重见天日 。 每个 坚持 30 秒 , 休息 30 秒 。 你 若 不 坚持 , 不如 别 开始 , 你 想要 的 只能 自己 给 自己 ! \\u200b \\u200b \\u200b \\u200b',\n", " '炎热 的 夏季 , 每天 都 要 将 换下 的 衣物 清洗 干净 , 为啥 有些 人 的 衣服 穿着 穿着 就 掉色 ? 衣服 也 不 柔软 了 呢 ? 不要 怪 衣服 的 质量 , 晒衣 也 是 有 学问 的 哦 。 戳 图 ↓ ↓ 告诉 你 晒衣服 的 正确 方式 , 转发 收藏 ! \\u200b \\u200b \\u200b \\u200b',\n", " '最近 是不是 热热 热热 热热 热热 热热 热热 热炸 了 ? ! 如何 在 三伏天 防暑降温 , 安然 度夏 ? 夏日 消暑 美食 指南 , 动手 自制 消暑 美食 , 清 清凉凉 地 度过 这个 炎夏 ! [ 馋嘴 ] \\u200b \\u200b \\u200b \\u200b',\n", " '小张 在 南京 一 整形 诊所 接受 鼻部 整形 , 主刀 的 韩国 医生 朴光哲 , 号称 “ 世界 鼻部 整形 泰斗 ” 、 “ 韩国 美鼻 教父 ” 。 没多久 , 小张 的 鼻子 歪 了 , 假体 快滑出 鼻尖 。 记者 得知 , 朴光哲 未注册 就 在 中国 进行 整容手术 , 属 非法 行医 。 整容 有 风险 , 提醒 爱美 的 TA ! 江苏 新闻 的 秒 拍 视频',\n", " '近日 , 因 天气 太热 , 安徽 一 老太 在 买 肉 路上 突然 眼前 一黑 , 摔倒 在 地 。 她 怕 别人 不 扶 她 , 连忙 说 \" 快 扶 我 起来 , 我 不 讹 你 , 地上 太热 我 要 熟 了 ! \" 这一喊 周围 人 都 笑 了 , 老人 随后 被 扶 到 路边 休息 。 ( 颍州 晚报 ) [ 话筒 ] 最近 老人 尽量避免 出门 ! \\u200b \\u200b \\u200b \\u200b']" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "article_data[:10]" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "TRAIN_SPLIT = 600_000\n", "train_list, val_list = build_train_val(article_data, summary_data, train_num=TRAIN_SPLIT)" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Save ./data/weibo_news/train_art_summ_prep.txt ok.\n", "Save ./data/weibo_news/val_art_summ_prep.txt ok.\n" ] } ], "source": [ "save_file(TRAIN_FILE, train_list)\n", "save_file(VAL_FILE, val_list)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P008GPT2TextSummary/Untitled.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P008GPT2TextSummary/gpt2_text_summary.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "I0929 22:26:32.452105 139811974653760 file_utils.py:39] PyTorch version 1.0.1 available.\n", "I0929 22:26:32.947797 139811974653760 modeling_xlnet.py:194] Better speed can be achieved with apex installed from https://www.github.com/nvidia/apex .\n" ] } ], "source": [ "import logging\n", "import torch\n", "import transformers\n", "from transformers import GPT2Tokenizer, GPT2Config, GPT2Model" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "1.0.1 2.0.0\n" ] } ], "source": [ "print(torch.__version__, transformers.__version__)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "device = torch.device(\"cuda:3\" if torch.cuda.is_available() else \"cpu\")\n", "vocab_file = \"./pre-models/gpt2-vocab.json\"\n", "merges_file = \"./pre-models/gpt2-merges.txt\"\n", "\n", "config_file = \"./pre-models/gpt2-config.json\"\n", "# model_file = \"./pre-models/gpt2-pytorch_model.bin\"\n", "\n", "model_dir = \"./pre-models\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Encoder" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "tensor([ 8241, 373, 5395, 367, 19069, 5633, 5395, 367, 19069, 373,\n", " 257])\n" ] } ], "source": [ "# 激活logger 看更多信息\n", "logging.basicConfig(level=logging.INFO)\n", "\n", "# 加载预训练模型gpt2tokenizer (vocabulary)\n", "tokenizer = GPT2Tokenizer(vocab_file=vocab_file, merges_file=merges_file) # 还可以输入unk_token、bos_token、eos_token\n", "# 编码文本\n", "text = \"Who was Jim Henson ? Jim Henson was a \"\n", "indexed_tokens = tokenizer.encode(text)\n", "\n", "# 装换为 a PyTorch tensor\n", "tokens_tensor = torch.tensor([indexed_tokens])\n", "print(tokens_tensor[0])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Decoder" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "I0928 01:17:28.144083 140176204212032 modeling_utils.py:334] loading weights file ./pre-models/pytorch_model.bin\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "预测文本: Who was Jim Henson? Jim Henson was a man\n", "predicted word: man\n" ] } ], "source": [ "# 使用 预测文本的下一个单词\n", "# 加载本地预训练模型(weights)\n", "config = GPT2Config.from_json_file(json_file=config_file)\n", "model = transformers.GPT2LMHeadModel.from_pretrained(model_dir, from_tf=False, config=config)\n", "\n", "# 设置模型的eval模式以停用dropout模块\n", "# This is IMPORTANT to have reproductible【可繁殖?】 results during evaluation!\n", "model.eval()\n", "\n", "# 使用GPU\n", "tokens_tensor = tokens_tensor.to(device)\n", "model.to(device)\n", "\n", "# 预测\n", "with torch.no_grad():\n", " outputs = model(tokens_tensor)\n", " predictions = outputs[0]\n", "\n", "# 预测文本的下一个单词\n", "predicted_index = torch.argmax(predictions[0, -1, :]).item()\n", "predicted_text = tokenizer.decode(indexed_tokens + [predicted_index])\n", "print(\"预测文本:\", predicted_text)\n", "print(\"predicted word:\", tokenizer.decode([predicted_index]))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 方法二" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "?GPT2Tokenizer" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P009StructureLearning/POS-RNN-hw.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 用RNN做POS tagging\n", "\n", "姓名: \\[write-your-name-here\\]\n", "\n", "在这份作业中,你会用一个bidirectional recurrent neural network来做POS tagging。" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# import necessary libraries and set the random seeds\n", "\n", "import os\n", "import torch\n", "import torch.nn as nn\n", "import torch.optim as optim\n", "import torch.nn.functional as F\n", "from torch.optim import lr_scheduler\n", "from torchtext import data\n", "import numpy as np\n", "import random\n", "from torch.utils.data import Dataset\n", "import time\n", "import shutil\n", "\n", "EMBEDDING_DIM = 300\n", "HIDDEN_DIM = 200\n", "\n", "\n", "USE_CUDA = torch.cuda.is_available()\n", "random.seed(53113)\n", "np.random.seed(53113)\n", "torch.manual_seed(53113)\n", "if USE_CUDA:\n", " torch.cuda.manual_seed(53113)\n", " \n", "BATCH_SIZE = 128\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "载入POS tagging训练和dev数据集。这些文件都是tab分隔的text和POS tag数据," ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def load_datasets():\n", " text = data.Field(include_lengths=True)\n", " tags = data.Field()\n", "# train_data, val_data, test_data = data.TabularDataset.splits(path='Pytorch-POS-Tagger/RNN_Data_files/', train='train_data.tsv', validation='val_data.tsv', test='val_data.tsv', fields=[('text', text), ('tags', tags)], format='tsv')\n", " train_data, val_data, test_data = data.TabularDataset.splits(path='./', train='train.txt', validation='dev.txt', test='dev.txt', fields=[('text', text), ('tags', tags)], format='tsv')\n", "\n", " \n", " batch_sizes = (BATCH_SIZE, BATCH_SIZE, BATCH_SIZE)\n", " train_loader, dev_loader, test_loader = data.BucketIterator.splits((train_data, val_data, test_data), batch_sizes=batch_sizes, sort_key=lambda x: len(x.text))\n", "\n", " text.build_vocab(train_data)\n", " tags.build_vocab(train_data)\n", " dataloaders = {'train': train_loader,\n", " 'validation': dev_loader,\n", " 'test': dev_loader}\n", " return text, tags, dataloaders\n", "\n", "text, tags, dataloaders = load_datasets()\n", "text_vocab_size = len(text.vocab.stoi) + 1\n", "tag_vocab_size = len(tags.vocab.stoi) - 1 # = 42 (not including the token\n", "print(text_vocab_size)\n", "print(tag_vocab_size)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "class POSDataset(Dataset):\n", " def __init__(self, path, sen_vocab, tag_vocab):\n", " super(POSDataset, self).__init__()\n", " self.sen_vocab = sen_vocab\n", " self.tag_vocab = tag_vocab\n", " self.num_classes = tag_vocab.size()\n", " sen_file = os.path.join(path, 'sentences.txt')\n", " tag_file = os.path.join(path, 'tags.txt')\n", " self.sentences = []\n", " with open(sen_file, 'r') as f:\n", " for line in f:\n", " idxs = self.sen_vocab.toIdx(line.rstrip('\\n').split(' '))\n", " tensor = torch.LongTensor(idxs)\n", " self.sentences.append(tensor)\n", "\n", " self.tags = []\n", " with open(tag_file, 'r') as f:\n", " for line in f:\n", " idxs = self.tag_vocab.toIdx(line.rstrip('\\n').split(' '))\n", " tensor = torch.LongTensor(idxs)\n", " self.tags.append(tensor)\n", "\n", " # making sure there are same number of sentences as tags.\n", " assert(len(self.sentences) == len(self.tags))\n", "\n", " def __getitem__(self, index):\n", " sentence = self.sentences[index]\n", " tags = self.tags[index]\n", " return sentence, tags\n", "\n", " def __len__(self):\n", " return len(self.sentences)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def sequence_mask(sequence_length, max_len=None):\n", " ''' Given a tensor of a sequence of lengths, create a mask of each length. \n", " '''\n", " if max_len is None:\n", " max_len = sequence_length.data.max()\n", " batch_size = sequence_length.size(0)\n", " seq_range = torch.range(0, max_len - 1).long()\n", " seq_range_expand = seq_range.unsqueeze(0).expand(batch_size, max_len)\n", " if sequence_length.is_cuda:\n", " seq_range_expand = seq_range_expand.cuda()\n", " seq_length_expand = (sequence_length.unsqueeze(1)\n", " .expand_as(seq_range_expand))\n", " return seq_range_expand < seq_length_expand\n", "\n", "\n", "# run one epoch of training\n", "def train(model, train_loader, loss_fn, optimizer, use_gpu=False):\n", " model.train() # Set model to training mode\n", " running_loss = 0.0\n", " running_corrects = 0\n", " example_count = 0\n", " step = 0\n", " # Iterate over data.\n", " for batch in train_loader:\n", " sentences = batch.text[0].transpose(1, 0)\n", " tags = batch.tags.transpose(1, 0)\n", " ''' Implement the code to train the model. \n", " - Prepare the input data (text, tags, mask) to the correct format and shape\n", " - Run the forward method of the model\n", " - Compute the loss\n", " - Run backward on loss for back propagation\n", " - Run the optimizer to update the model parameters. \n", " - Compute the number of correct predictions\n", " '''\n", " # TODO\n", " \n", " \n", " \n", " step += 1\n", " if step % 100 == 0:\n", " print('loss: {}, running_corrects: {}, example_count: {}, acc: {}'.format(loss.item(), \n", " running_corrects, example_count, (running_corrects / example_count) * 100))\n", " if step * batch_size >= 40000:\n", " break\n", " loss = running_loss / example_count\n", " acc = (running_corrects / example_count) * 100\n", " print(loss)\n", " print(acc)\n", " print('Train Loss: {:.4f} Acc: {:2.3f} ({}/{})'.format(loss, acc, running_corrects, example_count))\n", " return loss, acc\n", "\n", "\n", "def validate(model, val_loader, loss_fn, use_gpu=False):\n", " model.eval() # Set model to evaluate mode\n", " running_loss = 0.0\n", " running_corrects = 0\n", " example_count = 0\n", " # Iterate over data.\n", " with torch.no_grad():\n", " for batch in val_loader:\n", " sentences = batch.text[0].transpose(1, 0)\n", " tags = batch.tags.transpose(1, 0) \n", " ''' Similar to training, do the following to evaluate the model. \n", " - Prepare the input data (text, tags, mask) to the correct format and shape\n", " - Run the forward method of the model\n", " - Compute the loss\n", " - Compute the number of correct predictions\n", " '''\n", " # TODO\n", " \n", "\n", " loss = running_loss / example_count\n", " acc = (running_corrects / example_count) * 100\n", " print(loss)\n", " print(acc)\n", " print('Validation Loss: {:.4f} Acc: {:2.3f} ({}/{})'.format(loss, acc, running_corrects, example_count))\n", " return loss, acc\n", "\n", "\n", "def train_model(model, data_loaders, criterion, optimizer, scheduler, save_dir, num_epochs=25, use_gpu=False):\n", " print('Training Model with use_gpu={}...'.format(use_gpu))\n", " since = time.time()\n", "\n", " best_model_wts = model.state_dict()\n", " best_acc = 0.0\n", " for epoch in range(num_epochs):\n", " print('Epoch {}/{}'.format(epoch, num_epochs - 1))\n", " print('-' * 10)\n", " train_begin = time.time()\n", " train_loss, train_acc = train(model, data_loaders['train'], criterion, optimizer, use_gpu)\n", " train_time = time.time() - train_begin\n", " print('Epoch Train Time: {:.0f}m {:.0f}s'.format(train_time // 60, train_time % 60))\n", " \n", " validation_begin = time.time()\n", " val_loss, val_acc = validate(model, data_loaders['validation'], criterion, use_gpu)\n", " validation_time = time.time() - validation_begin\n", " print('Epoch Validation Time: {:.0f}m {:.0f}s'.format(validation_time // 60, validation_time % 60))\n", " \n", " # deep copy the model\n", " is_best = val_acc > best_acc\n", " if is_best:\n", " best_acc = val_acc\n", " best_model_wts = model.state_dict()\n", "\n", " save_checkpoint(save_dir, {\n", " 'epoch': epoch,\n", " 'best_acc': best_acc,\n", " 'state_dict': model.state_dict(),\n", " # 'optimizer': optimizer.state_dict(),\n", " }, is_best)\n", "\n", " scheduler.step()\n", "\n", " time_elapsed = time.time() - since\n", " print('Training complete in {:.0f}m {:.0f}s'.format(\n", " time_elapsed // 60, time_elapsed % 60))\n", " print('Best val Acc: {:4f}'.format(best_acc))\n", " # load best model weights\n", " model.load_state_dict(best_model_wts)\n", "\n", " return model\n", "\n", "\n", "def save_checkpoint(save_dir, state, is_best):\n", " savepath = save_dir + '/' + 'checkpoint.pth.tar'\n", " torch.save(state, savepath)\n", " if is_best:\n", " shutil.copyfile(savepath, save_dir + '/' + 'model_best.pth.tar')\n", "\n", "\n", "def test_model(model, test_loader, use_gpu=False):\n", " model.eval() # Set model to evaluate mode\n", " running_corrects = 0\n", " example_count = 0\n", " test_begin = time.time()\n", " # Iterate over data.\n", " with torch.no_grad():\n", " for batch in test_loader:\n", " sentences = batch.text[0].transpose(1, 0)\n", " tags = batch.tags.transpose(1, 0)\n", " ''' Similar to dev, except do we not need to compute the loss here\n", " '''\n", " # TODO\n", " \n", "\n", " acc = (running_corrects / example_count) * 100\n", " print('Test Acc: {:2.3f} ({}/{})'.format(acc, running_corrects, example_count))\n", " test_time = time.time() - test_begin\n", " print('Test Time: {:.0f}m {:.0f}s'.format(test_time // 60, test_time % 60))\n", " return acc" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Define the model" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "class POSTagger(nn.Module):\n", " def __init__(self, rnn_class, embedding_dim, hidden_dim, vocab_size, target_size, num_layers):\n", " super(POSTagger, self).__init__()\n", " ''' Define your model here\n", " Basically, your model only need three components:\n", " - an embedding layer\n", " - a bidirectional RNN (LSTM, GRU) that takes the embeddings and outputs hidden states\n", " - a final linear prediction layer to convert hidden states to tag scores\n", " Optionally, define extra layers such as dropout to prevent overfitting. \n", " ''' \n", " # TODO\n", " \n", " \n", " def forward(self, sentences):\n", " ''' Define your forward method\n", " ''' \n", " # TODO\n", " \n", " \n", " return tag_scores\n", " \n", "model = POSTagger(\"lstm\", EMBEDDING_DIM, HIDDEN_DIM, text_vocab_size, tag_vocab_size, 3)\n", "if USE_CUDA:\n", " model = model.cuda()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "LR = 0.001\n", "GAMMA = 1.\n", "STEP_SIZE = 10\n", "NUM_EPOCHS = 10\n", "SAVE_DIR = \"./save/\"\n", "loss_fn = nn.CrossEntropyLoss(size_average=False)\n", "optimizer = optim.Adam(model.parameters(), lr=LR)\n", "exp_lr_scheduler = lr_scheduler.StepLR(optimizer, step_size=STEP_SIZE, gamma=GAMMA)\n", "model = train_model(model, dataloaders, loss_fn, optimizer, exp_lr_scheduler, SAVE_DIR, NUM_EPOCHS, use_gpu=USE_CUDA)\n" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P009StructureLearning/dev.txt ================================================ He suspects sugar dust , which can be volatile , may have caused the explosion . PRP VBZ NN NN , WDT MD VB JJ , MD VB VBN DT NN . About 100 workers were inside the refinery at the time of the blast . IN CD NNS VBD IN DT NN IN DT NN IN DT NN . United Nations agencies are appealing for immediate assistance to communities on the Somali coast affected by South Asia 's earthquake-generated tsunami . NNP NNPS NNS VBP VBG IN JJ NN TO NNS IN DT JJ NN VBN IN NNP NNP POS JJ NN . The appeal was issued Friday by the U.N. Office for the Coordination of Humanitarian Affairs , which took part in an aerial assessment of the affected areas in northern Somalia . DT NN VBD VBN NNP IN DT NNP NNP IN DT NN IN NNP NNP , WDT VBD NN IN DT JJ NN IN DT JJ NNS IN JJ NNP . Meanwhile , the number of dead in Somalia has climbed to at least 132 people , although the Associated Press quotes a senior Somali official as putting the number at 200 . RB , DT NN IN JJ IN NNP VBZ VBN TO IN JJS CD NNS , IN DT NNP NNP VBZ DT JJ JJ NN IN VBG DT NN IN CD . Many others remain missing . JJ NNS VBP JJ . The United Nations says it is difficult to get a clear picture of both the number of those killed and the extent of the damage because the region is remote and the conditions are harsh . DT NNP NNP VBZ PRP VBZ JJ TO VB DT JJ NN IN DT DT NN IN DT VBN CC DT NN IN DT NN IN DT NN VBZ JJ CC DT NNS VBP JJ . The U.N. World Food Program began distributing relief supplies Wednesday in the town of Hafun on the northern coast of Somalia . DT NNP NNP NNP NNP VBD VBG NN NNS NNP IN DT NN IN NNP IN DT JJ NN IN NNP . The tsunami also took lives in Tanzania , Seychelles and Kenya . DT NN RB VBD NNS IN NNP , NNP CC NNP . Olympic champion Philipp Schoch of Switzerland and compatriot Ursula Bruhin have won World Cup parallel giant slalom snowboard events in Le Relais , Canada . JJ NN NNP NNP IN NNP CC NN NNP NNP VBP VBN NNP NNP NN NN NN VBD NNS IN NNP NNP , NNP . Schoch beat Austrian Andreas Prommegger in the final , winning both runs . NNP VBD JJ NNP NNP IN DT JJ , VBG DT NNS . Schoch leads the World Cup standings with 1,700 points . NNP VBZ DT NNP NNP NNS IN CD NNS . Countryman Heinz Inniger is second ( 1,630 points ) with Switzerland 's Gilles Jaquet third ( 1,460 points ) . NNP NNP NNP VBZ JJ LRB CD NNS RRB IN NNP POS NNP NNP JJ LRB CD NNS RRB . In the women 's final , Ursula Bruhin beat compatriot Fraenzi Kohli in both runs to take the title . IN DT NNS POS JJ , NNP NNP VBD NN NNP NNP IN DT NNS TO VB DT NN . Another Swiss athlete , Daniela Meuli , finished third . DT JJ NN , NNP NNP , VBD JJ . Bruhin is tied with French skier Julie Pomagalski atop the World Cup standings with 1,950 points . NNP VBZ VBN IN JJ NN NNP NNP IN DT NNP NNP NNS IN CD NNS . Salt Lake City gold medalist Isabelle Blanc of France is third with 1,900 points . NNP NNP NNP NN NN NNP NNP IN NNP VBZ JJ IN CD NNS . Yemen has executed an Islamic militant convicted of killing three American medical workers in 2002 . NNP VBZ VBN DT JJ NN VBN IN VBG CD JJ JJ NNS IN CD . Authorities say a firing squad killed Abed Abdul Razak Kamel in the central prison of Yemen 's Ibb province Monday , one day after President Ali Abdullah Saleh endorsed his death sentence . NNS VBP DT NN NN VBD NNP NNP NNP NNP IN DT JJ NN IN NNP POS NNP NN NNP , CD NN IN NNP NNP NNP NNP VBD PRP$ NN NN . Kamel opened fire on American medical staff at a Baptist hospital in the southern Yemen town of Jibla . NNP VBD NN IN JJ JJ NN IN DT JJ NN IN DT JJ NNP NN IN NNP . Authorities believe he may have been part of or linked to a terror network . NNS VBP PRP MD VB VBN NN IN CC VBN TO DT NN NN . A prominent leader of France 's far-right has gone on trial for questioning whether the Nazis used gas chambers in the Holocaust . DT JJ NN IN NNP POS NN VBZ VBN IN NN IN VBG IN DT NNPS VBD NN NNS IN DT NNP . Bruno Gollnisch , the deputy leader of France 's National Front Party , appeared in court in Lyon to answer charges of ' disputing crimes against humanity . ' NNP NNP , DT JJ NN IN NNP POS NNP NNP NNP , VBD IN NN IN NNP TO VB NNS IN `` VBG NNS IN NN . `` Gollnisch , a member of the European parliament , received a five-year suspension from his post as a professor of Japanese at Lyon University after he made the comments at a press conference in 2004 . NNP , DT NN IN DT JJ NN , VBD DT JJ NN IN PRP$ NN IN DT NN IN NNP IN NNP NNP IN PRP VBD DT NNS IN DT NN NN IN CD . He faces a possible one-year prison sentence if he is convicted . PRP VBZ DT JJ JJ NN NN IN PRP VBZ VBN . A government spokesman says Pakistani President Pervez Musharraf will seek another five-year term after his current tenure ends in 2007 . DT NN NN VBZ JJ NNP NNP NNP MD VB DT JJ NN IN PRP$ JJ NN VBZ IN CD . Pakistan 's Information Minister Sheikh Rashid Ahmed made the announcement Tuesday , saying Pakistan needs his leadership . NNP POS NNP NNP NNP NNP NNP VBD DT NN NNP , VBG NNP VBZ PRP$ NN . He did not say if he would also continue as the army chief . PRP VBD RB VB IN PRP MD RB VB IN DT NN NN . Pakistan 's parliament currently has a majority of pro-Musharraf lawmakers , and it was generally considered likely that General Musharraf would remain at the helm after the general elections in 2007 . NNP POS NN RB VBZ DT NN IN JJ NNS , CC PRP VBD RB VBN JJ IN NNP NNP MD VB IN DT NN IN DT JJ NNS IN CD . But up until now he had not publicly declared his intentions . CC IN IN RB PRP VBD RB RB VBD PRP$ NNS . General Musharraf seized power in a bloodless coup in October , 1999 , appointed himself president in June , 2001 , and won a heavily criticized referendum in April , 2002 . NNP NNP VBD NN IN DT JJ NN IN NNP , CD , VBD PRP NN IN NNP , CD , CC VBD DT RB VBN NN IN NNP , CD . He then won a parliamentary vote of confidence a year later . PRP RB VBD DT JJ NN IN NN DT NN RB . Uganda 's main opposition leader Kizza Besigye has pleaded not guilty to charges of treason . NNP POS JJ NN NN NNP NNP VBZ VBN RB JJ TO NNS IN NN . Twenty two co-defendants also entered pleas of innocence during a hearing in Uganda 's High Court Tuesday . CD CD NNS RB VBD NNS IN NN IN DT NN IN NNP POS NNP NNP NNP . Besigye 's supporters say the treason charge is one of several the government made up to keep him from making an effective challenge to President Yoweri Museveni in recent elections . NNP POS NNS VBP DT NN NN VBZ CD IN JJ DT NN VBN RP TO VB PRP IN VBG DT JJ NN TO NNP NNP NNP IN JJ NNS . Museveni won the February election but Besigye 's party has asked the Ugandan Supreme Court to nullify the results . NNP VBD DT NNP NN CC NNP POS NN VBZ VBN DT JJ NNP NNP TO VB DT NNS . The High Court dropped rape charges against Besigye last month , and President Museveni said Besigye would not be tried by a military court that had charged him with terrorism and illegal arms possession . DT NNP NNP VBD NN NNS IN NNP JJ NN , CC NNP NNP VBD NNP MD RB VB VBN IN DT JJ NN WDT VBD VBN PRP IN NN CC JJ NNS NN . The treason trial proceedings have been adjourned until Wednesday because the court did not have a translator for the first prosecution witness , a woman who speaks the Acholi language . DT NN NN NNS VBP VBN VBN IN NNP IN DT NN VBD RB VB DT NN IN DT JJ NN NN , DT NN WP VBZ DT NNP NN . The World Health Organization says an outbreak of Marburg virus in Angola is not yet over , as the death toll continues to rise . DT NNP NNP NNP VBZ DT NN IN NNP NN IN NNP VBZ RB RB RB , IN DT NN NN VBZ TO VB . A WHO spokeswoman , Aphaluck Bhatiasevi , says there have been some recent cases that do not have a clear link to previous cases , a finding the U.N. agency is concerned about . DT NNP NN , NNP NNP , VBZ EX VBP VBN DT JJ NNS WDT VBP RB VB DT JJ NN TO JJ NNS , DT VBG DT NNP NN VBZ JJ IN . Angolan officials say 292 people have died from Marburg out of a total of 336 people identified as having been infected by the virus . JJ NNS VBP CD NNS VBP VBN IN NNP IN IN DT NN IN CD NNS VBN IN VBG VBN VBN IN DT NN . So far , all those infected are believed to have contracted the disease in northern Uige province . RB RB , DT DT VBN VBP VBN TO VB VBN DT NN IN JJ NNP NN . The virus kills quickly , spreading through contact with bodily fluids such as blood , excrement , vomit and saliva . DT NN VBZ RB , VBG IN NN IN RB NNS JJ IN NN , NN , NN CC NN . Three Jordanians and an Algerian man have been convicted Wednesday of plotting attacks on Jewish targets in Germany . CD NNS CC DT JJ NN VBP VBN VBN NNP IN VBG NNS IN JJ NNS IN NNP . The three Jordanian men , Mohammed Abu Dhess , Ismail Shalabi , and Ashraf al-Dagma were also convicted of belonging to al-Tawhid , an organization believed to be linked to al-Qaida and headed by Abu Musab al-Zarqawi , who now claims to be head of al-Qaeda in Iraq . DT CD JJ NNS , NNP NNP NNP , NNP NNP , CC NNP NNP VBD RB VBN IN VBG IN NNP , DT NN VBN TO VB VBN TO NNP CC VBN IN NNP NNP NNP , WP RB VBZ TO VB NN IN NNP IN NNP . They were sentenced to six to eight years in prison . PRP VBD VBN TO CD TO CD NNS IN NN . The Algerian , Djamel Mustafa was sentenced to five years in prison for his role in planning attacks and supporting a terrorist group . DT NN , NNP NNP VBD VBN TO CD NNS IN NN IN PRP$ NN IN VBG NNS CC VBG DT JJ NN . All four were accused of planning to use explosives against Jewish-owned discotheques in Dusseldorf and a Jewish community center in Berlin . DT CD VBD VBN IN VBG TO VB NNS IN JJ NNS IN NNP CC DT JJ NN NN IN NNP . Another Jordanian man , Shadi Abdalla was convicted separately in 2003 . DT JJ NN , NNP NNP VBD VBN RB IN CD . He testified against the other four suspects . PRP VBD IN DT JJ CD NNS . Google won a key European Union court ruling on trademark issues Tuesday . NNP VBD DT JJ NNP NNP NN NN IN NN NNS NNP . The European Court of Justice , Europe 's highest court , said Google did not violate luxury goods trademarks by allowing companies to buy other companies ' brand names as advertising key words . DT NNP NNP IN NNP , NNP POS JJS NN , VBD NNP VBD RB VB NN NNS NNS IN VBG NNS TO VB JJ NNS POS NN NNS IN NN JJ NNS . Google is the world 's most-widely used Internet search company , and it makes tens of billions of dollars a year by selling the right to display advertisements next to search results . NNP VBZ DT NN POS RB VBN NNP NN NN , CC PRP VBZ NNS IN NNS IN NNS DT NN IN VBG DT NN TO VB NNS JJ TO NN NNS . Luxury goods makers like Luis Vuitton complained that competitors were buying the right to use Luis Vuitton brand names as key words . NN NNS NNS IN NNP NNP VBD IN NNS VBD VBG DT NN TO VB NNP NNP NN NNS IN JJ NNS . That could guide customers to buy goods at web sites run by Vuitton 's competitors , including counterfeiters . DT MD VB NNS TO VB NNS IN NN NNS VBN IN NNP POS NNS , VBG NNS . The European Court of Justice said Google must remove the advertisements quickly if trademark holders show the ads are used for illegal activity like selling counterfeit goods . DT NNP NNP IN NNP VBD NNP MD VB DT NNS RB IN NN NNS VBP DT NNS VBP VBN IN JJ NN IN VBG NN NNS . Opera fans in New York were recently treated to a rare performance of one the most ambitious musical theater pieces ever produced . NNP NNS IN NNP NNP VBD RB VBN TO DT JJ NN IN CD DT RBS JJ JJ NN NNS RB VBD . Bernd Alois Zimmermann 's Die Soldaten was mounted in the cavernous drill hall of the Park Avenue Armory . NNP NNP NNP POS NNP NNP VBD VBN IN DT JJ NN NN IN DT NNP NNP NNP . VOA 's Behnam Nateghi takes us behind the scenes for a closer look at the staging of this German opera . NNP POS NNP NNP VBZ PRP IN DT NNS IN DT JJR NN IN DT NN IN DT JJ NN . A 300-member delegation from South Korea has arrived in North Korea to take part in celebrations marking the fifth anniversary of the historic 2000 inter-Korean summit . DT JJ NN IN NNP NNP VBZ VBN IN NNP NNP TO VB NN IN NNS VBG DT JJ NN IN DT JJ CD JJ NN . The delegation includes politicians and representatives from labor unions , religious and agricultural groups . DT NN VBZ NNS CC NNS IN NN NNS , JJ CC JJ NNS . The June 15 , 2000 summit in Pyongyang marked the first and only time the leaders of North and South Korea have met . DT NNP CD , CD NN IN NNP VBD DT JJ CC JJ NN DT NNS IN NNP CC NNP NNP VBP VBN . South Korean Unification Minister Chung Dong-young leads a separate 40 member government delegation to Wednesday 's anniversary celebrations . NNP JJ NNP NNP NNP NNP VBZ DT JJ CD NN NN NN TO NNP POS NN NNS . Mr. Chung is carrying messages from last week 's summit between South Korean President Roh Moo-hyun and President Bush , urging North Korea to return to the six-nation talks aimed at ending its nuclear weapons program . NNP NNP VBZ VBG NNS IN JJ NN POS NN IN JJ JJ NNP NNP NNP CC NNP NNP , VBG NNP NNP TO VB TO DT JJ NNS VBN IN VBG PRP$ JJ NNS NN . China has signed a deal with Nigeria to build an $ 8-billion oil refinery near the city of Lagos , in another example of China 's investment in Africa . NNP VBZ VBN DT NN IN NNP TO VB DT $ JJ NN NN IN DT NN IN NNP , IN DT NN IN NNP POS NN IN NNP . The Lagos state government made the announcement Tuesday , saying that 80 percent of the money is coming from China and the other 20 percent from the Nigerian National Petroleum Corporation . DT NNP NN NN VBD DT NN NNP , VBG IN CD NN IN DT NN VBZ VBG IN NNP CC DT JJ CD NN IN DT JJ NNP NNP NNP . This new refinery is expected to produce some 3,00,000 barrels of oil a day in the Lekki Free Trade Zone in Lagos state . DT JJ NN VBZ VBN TO VB DT CD NNS IN NN DT NN IN DT NNP NNP NNP NNP IN NNP NN . The Lagos refinery is part of a larger deal to build three new refineries and a petrochemical complex in Nigeria . DT NNP NN VBZ NN IN DT JJR NN TO VB CD JJ NNS CC DT NN NN IN NNP . The new projects are expected to increase the country 's production of refined oil from 4,50,000 barrels to 7,50,000 barrels per day . DT JJ NNS VBP VBN TO VB DT NN POS NN IN JJ NN IN CD NNS TO CD NNS IN NN . Nigeria is one of the world 's biggest oil producers , but its current refineries operate far below capacity because of aging equipment and poor maintenance . NNP VBZ CD IN DT NN POS JJS NN NNS , CC PRP$ JJ NNS VBP RB IN NN IN IN VBG NN CC JJ NN . Former rebels in Indonesia 's Aceh province are beginning a second round of weapons surrender Friday as part of a peace accord designed to end 29 years of separatist violence . JJ NNS IN NNP POS NNP NN VBP VBG DT JJ NN IN NNS NN NNP IN NN IN DT NN NN VBN TO VB CD NNS IN JJ NN . Members of the Free Aceh Movement are expected to hand over 210 more weapons in the next few days to international monitors in northern Aceh . NNS IN DT NNP NNP NNP VBP VBN TO VB IN CD JJR NNS IN DT JJ JJ NNS TO JJ NNS IN JJ NNP . In return , the Indonesian government is scheduled to withdraw 6,500 more soldiers from the province . IN NN , DT JJ NN VBZ VBN TO VB CD JJR NNS IN DT NN . Under the peace accord , the Free Aceh Movement must decommission all its weapons in exchange for the withdrawal of 32,000 police and troops by the end of the year . IN DT NN NN , DT NNP NNP NNP MD VB DT PRP$ NNS IN NN IN DT NN IN CD NNS CC NNS IN DT NN IN DT NN . Implementation began in September . NN VBD IN NNP . Many Acehnese want a separate Islamic state and resent that profits from their rich natural resources have been directed elsewhere by the central government in Jakarta . JJ NNP VBP DT JJ JJ NN CC NN IN NNS IN PRP$ JJ JJ NNS VBP VBN VBN RB IN DT JJ NN IN NNP . World oil prices declined below $ 54 a barrel Friday after hitting records above $ 58 early this week . NNP NN NNS VBD IN $ CD DT NN NNP IN VBG NNS IN $ CD RB DT NN . The easing of prices follows a U.S. government report on Wednesday showing an increasing supply of crude oil in the U.S. market , and growing refinery operations to turn out gasoline . DT NN IN NNS VBZ DT NNP NN NN IN NNP VBG DT VBG NN IN JJ NN IN DT NNP NN , CC VBG NN NNS TO VB RP NN . While prices have dropped , they are still about 44 percent higher than they were a year ago . IN NNS VBP VBN , PRP VBP RB IN CD NN JJR IN PRP VBD DT NN RB . Most economists surveyed by the Bloomberg financial news service say high oil prices and rising interest rates will slow U.S. economic growth later this year . JJS NNS VBN IN DT NNP JJ NN NN VBP JJ NN NNS CC VBG NN NNS MD VB NNP JJ NN RB DT NN . Georgian President Mikhail Saakashvili has presented his nominee for prime minister to parliament , one week after the death of the previous minister . JJ NNP NNP NNP VBZ VBN PRP$ NN IN JJ NN TO NN , CD NN IN DT NN IN DT JJ NN . Mr. Saakashvili praised the work of the nominee , Finance Minister Zurab Nogaideli , and said he deserves the promotion . NNP NNP VBD DT NN IN DT NN , NNP NNP NNP NNP , CC VBD PRP VBZ DT NN . Lawmakers are to vote on the nomination Friday . NNS VBP TO VB IN DT NN NNP . Parliament speaker Nino Burdzhanadze had said the choice was quite unexpected , and other candidates had been under consideration . NNP NN NNP NNP VBD VBN DT NN VBD RB JJ , CC JJ NNS VBD VBN IN NN . Mr. Nogaideli would succeed Zurab Zhvania , who was found dead last week in a Tbilisi apartment from what officials say was accidental gas poisoning . NNP NNP MD VB NNP NNP , WP VBD VBN JJ JJ NN IN DT NNP NN IN WP NNS VBP VBD JJ NN NN . In his address to parliament Thursday , President Saakashvili also hailed the achievements Georgia has made in battling corruption and boosting the economy since his election just over one year ago . IN PRP$ NN TO NN NNP , NNP NNP RB VBD DT NNS NNP VBZ VBN IN VBG NN CC VBG DT NN IN PRP$ NN RB IN CD NN RB . He also said he is ready to travel again to Russia to strengthen relations with Moscow . PRP RB VBD PRP VBZ JJ TO VB RB TO NNP TO VB NNS IN NNP . President Bush has thanked U.S. and Iraqi troops for working to ensure a safe voting environment as Iraqis vote on a new constitution Saturday . NNP NNP VBZ VBN NNP CC JJ NNS IN VBG TO VB DT JJ NN NN IN NNS NN IN DT JJ NN NNP . Mr. Bush conducted a video conference Thursday with members of the U.S. Army 's 42nd Infantry Division in Tikrit , Iraq , to discuss preparations for Saturday 's constitutional referendum . NNP NNP VBD DT NN NN NNP IN NNS IN DT NNP NNP POS JJ NNP NNP IN NNP , NNP , TO VB NNS IN NNP POS JJ NN . First Lieutenant Greg Murphy told the president that Iraqi troops have taken the lead in security preparations for the vote . NNP NNP NNP NNP VBD DT NN IN JJ NNS VBP VBN DT NN IN NN NNS IN DT NN . He said conditions were different in the January elections for a transitional government , when coalition troops controlled security . PRP VBD NNS VBD JJ IN DT NNP NNS IN DT JJ NN , WRB NN NNS VBN NN . Captain David Williams says Iraqis are ready and eager to vote on the constitution . NNP NNP NNP VBZ NNS VBP JJ CC JJ TO VB IN DT NN . He says voter registration in north-central Iraq is up 17 percent , which translates to about 4,00,000 new voters . PRP VBZ NN NN IN JJ NNP VBZ IN CD NN , WDT VBZ TO IN CD JJ NNS . Approval of the constitution on Saturday would clear the way for national elections in December . NNP IN DT NN IN NNP MD VB DT NN IN JJ NNS IN NNP . Witnesses say at least 10 people have been injured in a grenade attack on a Somali parliament member 's house . NNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN NN IN DT JJ NN NN POS NN . The home of Abdullahi Shaleyste in the southwestern town of Baidoa was attacked late Thursday . DT NN IN NNP NNP IN DT JJ NN IN NNP VBD VBN JJ NNP . The lawmaker was apparently unharmed but members of his family were injured in the blast . DT NN VBD RB JJ CC NNS IN PRP$ NN VBD VBN IN DT NN . At least four of the wounded are said to be in serious condition . IN JJS CD IN DT VBN VBP VBN TO VB IN JJ NN . No one has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . Islamist insurgents have waged a bloody 17-month battle against Somalia 's Ethiopian-backed interim government . NNP NNS VBP VBN DT JJ JJ NN IN NNP POS JJ JJ NN . The government and exiled opposition leaders who back the insurgents are set to resume reconcilation talks in Djibouti on Saturday . DT NN CC VBN NN NNS WP VBP DT NNS VBP VBN TO VB NN NNS IN NNP IN NNP . However , leaders of the Eritrean-based Alliance for the Re-Liberation of Somalia appear split on whether the group should be holding the talks . RB , NNS IN DT JJ NNP IN DT NN IN NNP VBP NN IN IN DT NN MD VB VBG DT NNS . Hard-liners in the group say no talks should take place until Ethiopia withdraws its troops from Somalia . NNS IN DT NN VBP DT NNS MD VB NN IN NNP VBZ PRP$ NNS IN NNP . Russian news media reports say prosecutors have released two of 10 suspects detained in the killing of investigative journalist Anna Politkovskaya . JJ NN NNS NNS VBP NNS VBP VBN CD IN CD NNS VBN IN DT NN IN JJ NN NNP NNP . The reports Thursday say authorities freed Oleg Alimov and Alexei Berkin . DT NNS NNP VBP NNS VBD NNP NNP CC NNP NNP . Russian Prosecutor General Yuri Chaika Monday announced the arrest of 10 people in the case . JJ NNP NNP NNP NNP NNP VBD DT NN IN CD NNS IN DT NN . He said the murder was organized by a Chechen emigre who had led a group of contract killers in Moscow . PRP VBD DT NN VBD VBN IN DT JJ NN WP VBD VBN DT NN IN NN NNS IN NNP . He said evidence as to a motive pointed to what he called attempts from abroad to destabilize Russia and discredit its leaders . PRP VBD NN IN TO DT NN VBD TO WP PRP VBD NNS IN RB TO VB NNP CC VB PRP$ NNS . Russian news media reports earlier had named an agent of the Federal Security Service , Pavel Ryaguzov , as one of the suspects in the case . JJ NN NNS NNS RBR VBD VBN DT NN IN DT NNP NNP NNP , NNP NNP , IN CD IN DT NNS IN DT NN . But a military court in Moscow Thursday said his arrest is not linked to Politkovskaya 's murder . CC DT JJ NN IN NNP NNP VBD PRP$ NN VBZ RB VBN TO NNP POS NN . The journalist was gunned down in her Moscow apartment building last year on October 7 . DT NN VBD VBN RB IN PRP$ NNP NN NN JJ NN IN NNP CD . The spiritual leader of the Anglican church has written an article criticizing the U.S. and British governments for their roles in the Iraq war . DT JJ NN IN DT JJ NN VBZ VBN DT NN VBG DT NNP CC JJ NNS IN PRP$ NNS IN DT NNP NN . The Archbishop of Canterbury , Rowan Williams , says in an article published in the London Times Saturday that military actions in the Middle East put Christians in the region at risk . DT NN IN NNP , NNP NNP , VBZ IN DT NN VBN IN DT NNP NNP NNP IN JJ NNS IN DT NNP NNP VBD NNS IN DT NN IN NN . The Archbishop said that Middle Eastern Christians are frequently seen as supporters of the West . DT NN VBD IN NNP NNP NNPS VBP RB VBN IN NNS IN DT NNP . He says the war has troubled relations between Muslims and Christians in countries such as Iraq , Egypt and Turkey . PRP VBZ DT NN VBZ VBN NNS IN NNPS CC NNPS IN NNS JJ IN NNP , NNP CC NNP . The Archbishop wrote specifically about the isolation of Christians in the city of Bethlehem in the West Bank . DT NNP VBD RB IN DT NN IN NNS IN DT NN IN NNP IN DT NNP NNP . Christians revere Bethlehem as the birthplace of Jesus . NNS VBP NNP IN DT NN IN NNP . Archbishop Williams has been visiting the Holy Land before Christmas with other church leaders from Britain . NNP NNP VBZ VBN VBG DT NNP NNP IN NNP IN JJ NN NNS IN NNP . A U.S.-based human rights organization alleges that detainees in U.S. custody in Iraq were routinely subjected to beatings , sleep deprivation , stress positions and other forms of abuse by American interrogators . DT JJ JJ NNS NN VBZ IN NNS IN NNP NN IN NNP VBD RB VBN TO NNS , NN NN , NN NNS CC JJ NNS IN NN IN JJ NNS . In a report released Sunday , New York based Human Rights Watch said the findings come from first-hand accounts from U.S. military personnel . IN DT NN VBN NNP , NNP NNP VBN NNP NNP NNP VBD DT NNS VBP IN JJ NNS IN NNP JJ NNS . The report alleges that detainee abuse was an established and apparently authorized part of the detention and interrogation process . DT NN VBZ IN NN NN VBD DT JJ CC RB JJ NN IN DT NN CC NN NN . Human Rights Watch used the report to call for a Congressional investigation into the scope of detainee abuse and allegations of involvement by higher level officials . NNP NNPS NNP VBD DT NN TO VB IN DT JJ NN IN DT NN IN NN NN CC NNS IN NN IN JJR NN NNS . But the U.S. Defense Department has said that multiple reviews of prisoner interrogation methods have concluded that no uniformed or civilian leaders directed or encouraged the prisoner abuses committed in Iraq . CC DT NNP NNP NNP VBZ VBN IN JJ NNS IN NN NN NNS VBP VBN IN DT JJ CC JJ NNS VBD CC VBD DT NN NNS VBN IN NNP . One man was seriously wounded and several others injured in clashes between Bosnian Croats and Muslims in Mostar after Croatia 's loss in a World Cup football match Tuesday night . CD NN VBD RB VBN CC JJ NNS VBN IN NNS IN JJ NNS CC NNPS IN NNP IN NNP POS NN IN DT NNP NNP NN NN NNP NN . Police said the fighting broke out between Croats disappointed by their team 's loss to Brazil and Muslims who had been cheering for Croatia 's opponents . NNS VBD DT NN VBD RP IN NNS VBN IN PRP$ NN POS NN TO NNP CC NNPS WP VBD VBN VBG IN NNP POS NNS . Police were sent in to try to stop the clashes , and 26 people were detained . NNS VBD VBN IN TO VB TO VB DT NNS , CC CD NNS VBD VBN . Six police officers were injured and one man suffered serious gunshot wounds . CD NN NNS VBD VBN CC CD NN VBD JJ NN NNS . Although the Bosnian war of the early 1990s is over , Mostar has remained divided between its Muslim and Croat communities who fought each other during the conflict . IN DT JJ NN IN DT JJ NNS VBZ IN , NNP VBZ VBN VBN IN PRP$ NNP CC JJ NNS WP VBD DT NN IN DT NN . British officials are denying a newspaper report that London is urging the United States to set a timetable for withdrawing troops from Iraq . JJ NNS VBP VBG DT NN NN IN NNP VBZ VBG DT NNP NNPS TO VB DT NN IN VBG NNS IN NNP . A spokesman for the office of Prime Minister Tony Blair said Thursday that what is important is not a timetable but to help Iraq while it determines its own future . DT NN IN DT NN IN NNP NNP NNP NNP VBD NNP IN WP VBZ JJ VBZ RB DT NN CC TO VB NNP IN PRP VBZ PRP$ JJ NN . He said Britain 's troops will remain in Iraq as long as authorities there want them . PRP VBD NNP POS NNS MD VB IN NNP RB RB IN NNS RB VBP PRP . He was responding to a report in London 's Daily Telegraph newspaper , which quoted an unnamed government source as reporting that the Blair administration hopes to have the United States agree to announce a timetable . PRP VBD VBG TO DT NN IN NNP POS NNP NNP NN , WDT VBD DT JJ NN NN IN NN IN DT NNP NN VBZ TO VB DT NNP NNPS VBP TO VB DT NN . The newspaper report said that setting the timetable would be an indication that U.S.-led coalition troops do not intend to stay in Iraq indefinitely . DT NN NN VBD IN VBG DT NN MD VB DT NN IN JJ NN NNS VBP RB VB TO VB IN NNP RB . The report said the announcement would bolster Iraq 's interim government and undermine insurgents in that country . DT NN VBD DT NN MD VB NNP POS JJ NN CC VB NNS IN DT NN . President Bush has met with Jordan 's King Abdullah at the White House Wednesday . NNP NNP VBZ VBN IN NNP POS NNP NNP IN DT NNP NNP NNP . The president said he and the Jordanian monarch had two good meetings over the past two days , discussing Iraq , Iran and the Palestinian territories . DT NN VBD PRP CC DT JJ NN VBD CD JJ NNS IN DT JJ CD NNS , VBG NNP , NNP CC DT JJ NNS . King Abdullah called the discussions ' fruitful , ' and said he appreciates Mr. Bush 's desire to promote peace and stability in the Middle East . NNP NNP VBD DT NNS `` JJ , `` CC VBD PRP VBZ NNP NNP POS NN TO VB NN CC NN IN DT NNP NNP . The two leaders both rejected the violence triggered by cartoons depicting the Prophet Muhammad , and at the same time called for all religions to be respected . DT CD NNS DT VBD DT NN VBN IN NNS VBG DT NNP NNP , CC IN DT JJ NN VBD IN DT NNS TO VB VBN . U.S. economic troubles are being blamed for rising energy prices , but it is not just the price of oil that is going up . NNP JJ NNS VBP VBG VBN IN VBG NN NNS , CC PRP VBZ RB RB DT NN IN NN WDT VBZ VBG RP . The average grocery bill is also rising . DT JJ NN NN VBZ RB VBG . Twelve eggs now costs about 30 percent more than they did just a year ago . CD NNS RB VBZ IN CD NN JJR IN PRP VBD RB DT NN RB . And consumer advocates say Americans are not just paying more for some products . CC NN NNS VBP NNS VBP RB RB VBG JJR IN DT NNS . In some cases , they are actually getting less . IN DT NNS , PRP VBP RB VBG JJR . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . The head of the U.S. Central Intelligence Agency says CIA interrogators do not torture prisoners to get information . DT NN IN DT NNP NNP NNP NNP VBZ NNP NNS VBP RB VB NNS TO VB NN . CIA Director Porter Goss says in an interview with the USA Today newspaper published Monday that torture does not work . NNP NNP NNP NNP VBZ IN DT NN IN DT NNP NNP NN VBN NNP IN NN VBZ RB VB . But Mr. Goss says interrogators use a variety of what he calls ' unique and innovative ' ways to collect information . CC NNP NNP VBZ NNS VBP DT NN IN WP PRP VBZ `` JJ CC JJ `` NNS TO VB NN . He declined to describe interrogation methods . PRP VBD TO VB NN NNS . Republican Senator John McCain is pushing a proposal that bars the use of cruel , inhuman or degrading treatment of detainees by military or CIA interrogators . NNP NNP NNP NNP VBZ VBG DT NN WDT VBZ DT NN IN JJ , JJ CC JJ NN IN NNS IN JJ CC NNP NNS . President Bush has threatened to veto any defense spending bill that includes the proposal . NNP NNP VBZ VBN TO VB DT NN NN NN WDT VBZ DT NN . Mr. Goss says the CIA takes a neutral position on Senator McCain 's proposal , adding that some techniques restricted by the measure have yielded valuable intelligence . NNP NNP VBZ DT NNP VBZ DT JJ NN IN NNP NNP POS NN , VBG IN DT NNS VBN IN DT NN VBP VBN JJ NN . Despite a slowdown in the U.S. economy , the amount of goods the United States ships overseas recently increased . IN DT NN IN DT NNP NN , DT NN IN NNS DT NNP NNPS NNS RB RB VBN . According to the U.S. Department of Commerce , U.S. exports in the second quarter of 2008 expanded at an annualized rate of nine-point-two percent , thanks in large part to a decline in the value of the dollar against other currencies Many U.S. exporters are benefiting from the weak dollar , which makes American goods cheaper abroad , and boosts U.S. firms ' profits when they convert overseas earnings back into dollars . VBG TO DT NNP NNP IN NNP , NNP NNS IN DT JJ NN IN CD VBN IN DT JJ NN IN JJ NN , NNS IN JJ NN TO DT NN IN DT NN IN DT NN IN JJ NNS JJ NNP NNS VBP VBG IN DT JJ NN , WDT VBZ JJ NNS JJR RB , CC VBZ NNP NNS POS NNS WRB PRP VBP JJ NNS RB IN NNS . But as Nathan King reports for VOA , it is not just large global corporations that are benefiting . CC IN NNP NNP NNS IN NNP , PRP VBZ RB RB JJ JJ NNS WDT VBP VBG . Iraqi political parties have been registering their candidates for the December 15 general elections after each of the three main Sunni , Shi'ite and Kurdish communities agreed on separate broad coalitions . JJ JJ NNS VBP VBN VBG PRP$ NNS IN DT NNP CD JJ NNS IN DT IN DT CD JJ NNP , NNP CC NNP NNS VBD IN JJ JJ NNS . Leaders of the dominant Shi'ite United Iraqi Alliance were the latest to announce that they will stay unified . NNS IN DT JJ NNP NNP JJ NNP VBD DT JJS TO VB IN PRP MD VB JJ . The two main Kurdish factions and three groups representing the minority Sunni community had each earlier said they will submit single candidate lists for the polls ahead of Friday 's registration deadline . DT CD JJ NNP NNS CC CD NNS VBG DT NN NNP NN VBD DT JJR VBD PRP MD VB JJ NN NNS IN DT NNS RB IN NNP POS NN NN . The December elections will mark the third major phase in this year 's political process , following the January poll forming the interim government and the October 15 constitutional referendum . DT NNP NNS MD VB DT JJ JJ NN IN DT NN POS JJ NN , VBG DT NNP NN VBG DT JJ NN CC DT NNP CD JJ NN . Meanwhile , the U.S. military in Iraq says roadside bombs killed two American soldiers in Baghdad and Ramadi , west of the capital , on Thursday . RB , DT NNP NN IN NNP VBZ NN NNS VBD CD JJ NNS IN NNP CC NNP , NN IN DT NN , IN NNP . Nepalese authorities say they have detained 30 Tibetan exiles who were marching towards the Chinese border to protest the Beijing government . JJ NNS VBP PRP VBP VBN CD JJ NNS WP VBD VBG IN DT JJ NN TO VB DT NNP NN . Authorities said the Tibetans were picked up Sunday in the northeastern village of Jalbire , near the border with China . NNS VBD DT NNS VBD VBN RP NNP IN DT JJ NN IN NNP , IN DT NN IN NNP . The group was transported back to the Nepalese capital Kathmandu . DT NN VBD VBN RB TO DT JJ NN NNP . Tibetans in Nepal have been holding regular demonstrations against the Chinese government since March , when deadly clashes broke out between protesters and Chinese authorities in the Tibetan capital , Lhasa . NNS IN NNP VBP VBN VBG JJ NNS IN DT JJ NN IN NNP , WRB JJ NNS VBD RP IN NNS CC JJ NNS IN DT JJ NN , NNP . About 20,000 Tibetans live in Nepal . IN CD NNS VBP IN NNP . More than 100 of them were detained last week for demonstrating for Tibetan freedom outside the Chinese embassy in Kathmandu . JJR IN CD IN PRP VBD VBN JJ NN IN VBG IN JJ NN IN DT JJ NN IN NNP . The U.S.-based group Human Rights Watch has accused China of pressuring Nepal to crack down on the Tibetan protests . DT JJ NN NNP NNP NNP VBZ VBN NNP IN VBG NNP TO VB RP IN DT JJ NNS . Beijing denies the charge . NNP VBZ DT NN . Tibetans have complained of discrimination by the Chinese since Beijing took over Tibet nearly 60 years ago . NNS VBP VBN IN NN IN DT NNS IN NNP VBD RP NNP RB CD NNS RB . The Israeli army says Israeli troops have shot dead a Palestinian gunman during a clash in the northern West Bank . DT JJ NN VBZ JJ NNS VBP VBN RB DT JJ NN IN DT NN IN DT JJ NNP NNP . Army officials say Israeli soldiers were conducting a routine patrol early Sunday north of the city of Jenin when they spotted three armed men . NNP NNS VBP JJ NNS VBD VBG DT JJ NN JJ NNP NN IN DT NN IN NNP WRB PRP VBD CD JJ NNS . The soldiers opened fire on the group , killing one of them . DT NNS VBD NN IN DT NN , VBG CD IN PRP . There were no Israeli casualties . EX VBD DT JJ NNS . Shooting incidents in the northern West Bank have increased in the past two weeks after Israeli troops began raids in the area . VBG NNS IN DT JJ NNP NNP VBP VBN IN DT JJ CD NNS IN JJ NNS VBD NNS IN DT NN . Israel completed a withdrawal from the Gaza Strips and four Jewish settlements in the northern West Bank last month . NNP VBD DT NN IN DT NNP NNP CC CD JJ NNS IN DT JJ NNP NNP JJ NN . Zimbabwe 's ruling party has suspended six senior officials from their posts for five years , exposing an unprecedented power struggle within ZANU-PF . NNP POS NN NN VBZ VBN CD JJ NNS IN PRP$ NNS IN CD NNS , VBG DT JJ NN NN IN NNP . The state-run Herald newspaper reports the six are also banned from running in key parliamentary elections in March . DT JJ NNP NN VBZ DT CD VBP RB VBN IN VBG IN JJ JJ NNS IN NNP . The officials , including Energy Minister July Moyo , were initially suspended for six months . DT NNS , VBG NNP NNP NNP NNP , VBD RB VBN IN CD NNS . They were accused last month of holding a secret meeting to oppose President Robert Mugabe 's choice of second vice president . PRP VBD VBN JJ NN IN VBG DT JJ NN TO VB NNP NNP NNP POS NN IN JJ NN NN . The post , granted to a woman for the first time in Zimbabwe 's history , is seen as a stepping stone for the presidency once Mr. Mugabe retires . DT NN , VBN TO DT NN IN DT JJ NN IN NNP POS NN , VBZ VBN IN DT JJ NN IN DT NN IN NNP NNP VBZ . Two other top officials , Information Minister Jonathan Moyo and Justice Minister Patrick Chinamasa , have also been implicated in the power struggle . CD JJ JJ NNS , NNP NNP NNP NNP CC NNP NNP NNP NNP , VBP RB VBN VBN IN DT NN NN . Both men have been dropped from the ruling party 's list of candidates in the parliamentary elections . DT NNS VBP VBN VBN IN DT VBG NN POS NN IN NNS IN DT JJ NNS . Iraqi officials say 11 of their soldiers have been killed in a roadside bomb attack north of Baghdad . JJ NNS VBP CD IN PRP$ NNS VBP VBN VBN IN DT NN NN NN NN IN NNP . The soldiers were killed as they patrolled Saturday , in a town north of the restive city of Baquba . DT NNS VBD VBN IN PRP VBD NNP , IN DT NN NN IN DT JJ NN IN NNP . In a similar attack on Thursday , 10 American Marines were killed and 11 wounded near the western city of Fallujah . IN DT JJ NN IN NNP , CD JJ NNS VBD VBN CC CD VBN IN DT JJ NN IN NNP . In another development , the U.S. military says Iraqi and U.S. forces captured 18 suspected terrorists during operations Thursday in various parts of north-central Iraq . IN DT NN , DT NNP NN VBZ JJ CC NNP NNS VBD CD JJ NNS IN NNS NNP IN JJ NNS IN JJ NNP . Meanwhile , insurgents holding four western peace activists hostage have threatened to kill them unless all detainees in Iraqi and U.S. detention centers are freed by Thursday . RB , NNS VBG CD JJ NN NNS NN VBP VBN TO VB PRP IN DT NNS IN JJ CC NNP NN NNS VBP VBN IN NNP . A British Muslim organization has sent a negotiator to Iraq to try to win the hostages ' release . DT JJ NN NN VBZ VBN DT NN TO NNP TO VB TO VB DT NNS POS NN . The United Nations has appealed for $ 265 million in humanitarian aid for Iraqis this year . DT NNP NNP VBZ VBN IN $ CD CD IN JJ NN IN NNS DT NN . The appeal Tuesday is aimed at providing emergency relief in such areas as food , water , education , sanitation , protection , housing and shelter , and health and nutrition . DT NN NNP VBZ VBN IN VBG NN NN IN JJ NNS IN NN , NN , NN , NN , NN , NN CC NN , CC NN CC NN . The U.N. hopes some of the aid will focus on immediate relief for newly displaced people who can not access their food rations . DT NNP VBZ DT IN DT NN MD VB IN JJ NN IN RB VBN NNS WP MD RB VB PRP$ NN NNS . An estimated 4 million Iraqis are in need of food assistance . DT VBN CD CD NNS VBP IN NN IN NN NN . The United Nations humanitarian coordinator for Iraq , David Shearer , says U.N. officials must respond rapidly to people who need support . DT NNP NNP JJ NN IN NNP , NNP NNP , VBZ NNP NNS MD VB RB TO NNS WP VBP NN . The U.N. believes more than 2 million Iraqis have become internally displaced since the start of the Iraq war in 2003 , and another 2 million have fled to Jordan and Syria . DT NNP VBZ JJR IN CD CD NNS VBP VBN RB VBN IN DT NN IN DT NNP NN IN CD , CC DT CD CD VBP VBN TO NNP CC NNP . U.S. seismologists say an earthquake with a magnitude of 6.8 has struck Guatemala . NNP NNS VBP DT NN IN DT NN IN CD VBZ VBN NNP . There were no immediate reports of injuries or major damage following the tremor Wednesday . EX VBD DT JJ NNS IN NNS CC JJ NN VBG DT NN NNP . The U.S. Geological Survey says the epicenter of the quake was near the Pacific coast about 115 kilometers from Guatemala City . DT NNP NNP NNP VBZ DT NN IN DT NN VBD IN DT NNP NN IN CD NNS IN NNP NNP . The Vatican has opened its secret archives of the pre-World War Two papacy of Pius XI . DT NNP VBZ VBN PRP$ JJ NNS IN DT NNP NNP CD NN IN NNP NNP . The documents detail the 1922 to 1939 papacy of Pius XI , when his successor - the wartime Pope Pius XII - served as the Vatican 's secretary of state . DT NNS NN DT CD TO CD NN IN NNP NNP , WRB PRP$ NN IN DT NN NNP NNP NNP : VBD IN DT NNP POS NN IN NN . For years , the Vatican has defended Pope Pius the XI against claims he did too little to save European Jews from the Holocaust . IN NNS , DT NNP VBZ VBN NNP NNP DT NNP IN NNS PRP VBD RB JJ TO VB JJ NNS IN DT NNP . There is hope the released records could offer insight into the controversy . EX VBZ NN DT VBN NNS MD VB NN IN DT NN . However , the Vatican still has not released the records from Pope Pius the XII 's papacy . RB , DT NNP RB VBZ RB VBN DT NNS IN NNP NNP DT NNP POS NN . Archive officials say some 50 researchers have come to consult the nearly 30,000 files totaling millions of pages . NNP NNS VBP DT CD NNS VBP VBN TO VB DT RB CD NNS VBG NNS IN NNS . Israeli police on Monday said they are recommending that former Prime Minister Ehud Olmert be indicted in connection with a real estate scandal . JJ NN IN NNP VBD PRP VBP VBG IN JJ NNP NNP NNP NNP VB VBN IN NN IN DT JJ NN NN . Olmert is already on trial for fraud and bribery . NNP VBZ RB IN NN IN NN CC NN . Police suspect Olmert received tens of thousands of dollars in exchange for his support for a large residential development in Jerusalem . NNS VBP NNP VBD NNS IN NNS IN NNS IN NN IN PRP$ NN IN DT JJ JJ NN IN NNP . He was then mayor of Jerusalem . PRP VBD RB NN IN NNP . Olmert denies the charges . NNP VBZ DT NNS . The case has shocked Israelis and is one of the biggest corruption scandals in the country 's history . DT NN VBZ VBN NNS CC VBZ CD IN DT JJS NN NNS IN DT NN POS NN . Police suspect the total amount of money transferred from the project 's initiators to a middleman who mediated between the parties involved , is $ 15 million . NNS VBP DT JJ NN IN NN VBN IN DT NN POS NNS TO DT NN WP VBD IN DT NNS VBN , VBZ $ CD CD . Police have recommended that a former Olmert aide and former Jerusalem Mayor Uri Lupolianski also be indicted . NNS VBP VBN IN DT JJ NNP NN CC JJ NNP NN NNP NNP RB VB VBN . The lands that today comprise Croatia were part of the Austro-Hungarian Empire until the close of World War I . DT NNS WDT NN NN NNP VBD NN IN DT JJ NN IN DT NN IN NNP NNP NNP . In 1918 , the Croats , Serbs , and Slovenes formed a kingdom known after 1929 as Yugoslavia . IN CD , DT NNS , NNS , CC NNS VBD DT NN VBN IN CD IN NNP . Following World War II , Yugoslavia became a federal independent Communist state under the strong hand of Marshal TITO . VBG NNP NNP NNP , NNP VBD DT JJ JJ JJ NN IN DT JJ NN IN NNP NNP . Although Croatia declared its independence from Yugoslavia in 1991 , it took four years of sporadic , but often bitter , fighting before occupying Serb armies were mostly cleared from Croatian lands . IN NNP VBD PRP$ NN IN NNP IN CD , PRP VBD CD NNS IN JJ , CC RB JJ , VBG IN VBG JJ NNS VBD RB VBN IN JJ NNS . Under UN supervision , the last Serb-held enclave in eastern Slavonia was returned to Croatia in 1998 . IN NNP NN , DT JJ JJ NN IN JJ NNP VBD VBN TO NNP IN CD . In April 2009 , Croatia joined NATO ; it is a candidate for eventual EU accession . IN NNP CD , NNP VBD NNP ; PRP VBZ DT NN IN JJ NNP NN . A military power during the 17th century , Sweden has not participated in any war for almost two centuries . DT JJ NN IN DT JJ NN , NNP VBZ RB VBN IN DT NN IN RB CD NNS . An armed neutrality was preserved in both world wars . DT JJ NN VBD VBN IN DT NN NNS . Sweden 's long-successful economic formula of a capitalist system interlarded with substantial welfare elements was challenged in the 1990s by high unemployment and in 2000 - 2 and 2009 by the global economic downturns , but fiscal discipline over the past several years has allowed the country to weather economic vagaries . NNP POS JJ JJ NN IN DT JJ NN VBD IN JJ NN NNS VBD VBN IN DT NNS IN JJ NN CC IN CD : CD CC CD IN DT JJ JJ NNS , CC JJ NN IN DT JJ JJ NNS VBZ VBN DT NN TO VB JJ NNS . Sweden joined the EU in 1995 , but the public rejected the introduction of the euro in a 2003 referendum . NNP VBD DT NNP IN CD , CC DT NN VBD DT NN IN DT NN IN DT CD NN . The economy , one of the most stable and prosperous in the Caribbean , is highly dependent on tourism generating an estimated 45 % of the national income . DT NN , CD IN DT RBS JJ CC JJ IN DT NNP , VBZ RB JJ IN NN VBG DT VBN CD NN IN DT JJ NN . More than 9,34,000 tourists , mainly from the US , visited the islands in 2008 . JJR IN CD NNS , RB IN DT NNP , VBD DT NNS IN CD . In the mid-1980s , the government began offering offshore registration to companies wishing to incorporate in the islands , and incorporation fees now generate substantial revenues . IN DT NNS , DT NN VBD VBG JJ NN TO NNS VBG TO VB IN DT NNS , CC NN NNS RB VBP JJ NNS . Roughly 4,00,000 companies were on the offshore registry by yearend 2000 . RB CD NNS VBD IN DT JJ NN IN NN CD . The adoption of a comprehensive insurance law in late 1994 , which provides a blanket of confidentiality with regulated statutory gateways for investigation of criminal offenses , made the British Virgin Islands even more attractive to international business . DT NN IN DT JJ NN NN IN JJ CD , WDT VBZ DT NN IN NN IN JJ JJ NNS IN NN IN JJ NNS , VBD DT JJ NNP NNP RB RBR JJ TO JJ NN . Livestock raising is the most important agricultural activity ; poor soils limit the islands ' ability to meet domestic food requirements . NN NN VBZ DT RBS JJ JJ NN ; JJ NNS VBP DT NNS POS NN TO VB JJ NN NNS . Because of traditionally close links with the US Virgin Islands , the British Virgin Islands has used the US dollar as its currency since 1959 . IN IN RB JJ NNS IN DT NNP NNP NNP , DT JJ NNP NNP VBZ VBN DT NNP NN IN PRP$ NN IN CD . Sri Lanka is engaging in large-scale reconstruction and development projects following the end of the 26-year conflict with the LTTE , including increasing electricity access and rebuilding its road and rail network . NNP NNP VBZ VBG IN JJ NN CC NN NNS VBG DT NN IN DT JJ NN IN DT NNP , VBG VBG NN NN CC VBG PRP$ NN CC NN NN . Additionally , Sri Lanka seeks to reduce poverty by using a combination of state directed policies and private investment promotion to spur growth in disadvantaged areas , develop small and medium enterprises , and promote increased agriculture . RB , NNP NNP VBZ TO VB NN IN VBG DT NN IN NN VBD NNS CC JJ NN NN TO VB NN IN JJ NNS , VB JJ CC JJ NNS , CC VB VBN NN . High levels of government funding may be difficult , as the government already is faced with high debt interest payments , a bloated civil service , and historically high budget deficits . JJ NNS IN NN NN MD VB JJ , IN DT NN RB VBZ VBN IN JJ NN NN NNS , DT JJ JJ NN , CC RB JJ NN NNS . The 2008 - 9 global financial crisis and recession exposed Sri Lanka 's economic vulnerabilities and nearly caused a balance of payments crisis , which was alleviated by a $ 2.6 billion IMF standby agreement in July 2009 . DT CD : CD JJ JJ NN CC NN VBN NNP NNP POS JJ NNS CC RB VBD DT NN IN NNS NN , WDT VBD VBN IN DT $ CD CD NNP JJ NN IN NNP CD . The end of the civil war and the IMF loan , however , have largely restored investors ' confidence , reflected in part by the Sri Lankan stock market 's recognition as one of the best performing markets in the world . DT NN IN DT JJ NN CC DT NNP NN , RB , VBP RB VBN NNS POS NN , VBN IN NN IN DT NNP NNP NN NN POS NN IN CD IN DT JJS VBG NNS IN DT NN . Sri Lankan growth rates averaged nearly 5 % in during the war , but increased government spending on development and fighting the LTTE in the final years spurred GDP growth to around 06-Jul % per year in 2006 - 8 . NNP JJ NN NNS VBD RB CD NN IN IN DT NN , CC VBD NN NN IN NN CC VBG DT NN IN DT JJ NNS VBN NN NN TO IN CD NN IN NN IN CD : CD . After experiencing 3.5 % growth in 2009 , Sri Lanka 's economy is poised to achieve high growth rates in the postwar period . IN VBG CD NN NN IN CD , NNP NNP POS NN VBZ VBN TO VB JJ NN NNS IN DT JJ NN . A MAN wished to purchase an Ass , and agreed with its owner that he should try out the animal before he bought him . DT NNP VBD TO VB DT NNP , CC VBD IN PRP$ NN IN PRP MD VB RP DT NN IN PRP VBD PRP . He took the Ass home and put him in the straw-yard with his other Asses , upon which the new animal left all the others and at once joined the one that was most idle and the greatest eater of them all . PRP VBD DT NNP NN CC VBD PRP IN DT NN IN PRP$ JJ NNS , IN WDT DT JJ NN VBD PDT DT NNS CC IN RB VBD DT CD WDT VBD RBS JJ CC DT JJS NN IN PRP DT . Seeing this , the man put a halter on him and led him back to his owner . VBG DT , DT NN VBD DT NN IN PRP CC VBD PRP RB TO PRP$ NN . On being asked how , in so short a time , he could have made a trial of him , he answered , ' I do not need a trial ; I know that he will be just the same as the one he chose for his companion . ' IN VBG VBN WRB , IN RB JJ DT NN , PRP MD VB VBN DT NN IN PRP , PRP VBD , `` PRP VBP RB VB DT NN ; PRP VBP IN PRP MD VB RB DT JJ IN DT CD PRP VBD IN PRP$ NN . `` A man is known by the company he keeps . DT NN VBZ VBN IN DT NN PRP VBZ . A MIDDLE-AGED MAN , whose hair had begun to turn gray , courted two women at the same time . DT JJ NNP , WP$ NN VBD VBN TO VB JJ , VBD CD NNS IN DT JJ NN . One of them was young , and the other well advanced in years . CD IN PRP VBD JJ , CC DT JJ RB VBN IN NNS . The elder woman , ashamed to be courted by a man younger than herself , made a point , whenever her admirer visited her , to pull out some portion of his black hairs . DT NN NN , VBD TO VB VBN IN DT NN JJR IN PRP , VBD DT NN , WRB PRP$ NN VBD PRP , TO VB RP DT NN IN PRP$ JJ NNS . The younger , on the contrary , not wishing to become the wife of an old man , was equally zealous in removing every gray hair she could find . DT JJR , IN DT NN , RB VBG TO VB DT NN IN DT JJ NN , VBD RB JJ IN VBG DT JJ NN PRP MD VB . Thus it came to pass that between them both he very soon found that he had not a hair left on his head . RB PRP VBD TO VB DT IN PRP DT PRP RB RB VBD IN PRP VBD RB DT NN VBN IN PRP$ NN . Those who seek to please everybody please nobody . DT WP VBP TO VB DT VB DT . Lena once had two chickens . NNP RB VBD CD NNS . One of them got terribly sick . CD IN PRP VBD RB JJ . So she killed the other one to make soup to get the first one well again . RB PRP VBD DT JJ CD TO VB NN TO VB DT JJ CD RB RB . John Garang NNP NNP The Sudan People 's Liberation Movement says funeral services for its late political leader , Sudanese Vice President John Garang , will be held in Juba , the planned capital of an autonomous southern Sudan . DT NNP NNP POS NNP NNP VBZ JJ NNS IN PRP$ JJ JJ NN , JJ NNP NNP NNP NNP , MD VB VBN IN NNP , DT JJ NN IN DT JJ JJ NNP . It is unclear when the funeral will be held . PRP VBZ JJ WRB DT NN MD VB VBN . Mr. Garang 's political party says the body of the former rebel leader , who died Saturday evening in a helicopter crash , is lying at New Site in Southern Sudan . NNP NNP POS JJ NN VBZ DT NN IN DT JJ NN NN , WP VBD NNP NN IN DT NN NN , VBZ VBG IN NNP NNP IN NNP NNP . Sudan 's government on Monday declared a night curfew in the capital , Khartoum , to prevent riots that erupted following news of his death . NNP POS NN IN NNP VBD DT NN NN IN DT NN , NNP , TO VB NNS WDT VBD VBG NN IN PRP$ NN . At least 36 people were killed in the violence . IN JJS CD NNS VBD VBN IN DT NN . Mr. Garang was a key figure in the peace accord reached this year between the Sudanese government and southern rebels to end a 21-year civil war . NNP NNP VBD DT JJ NN IN DT NN NN VBN DT NN IN DT JJ NN CC JJ NNS TO VB DT JJ JJ NN . Sudanese President Omar el-Bashir and General Salva Kiir Mayardit , who was named by the SPLM to succeed Mr. Garang , have stressed that his death will not stop the peace movement . JJ NNP NNP NNP CC NNP NNP NNP NNP , WP VBD VBN IN DT NNP TO VB NNP NNP , VBP VBN IN PRP$ NN MD RB VB DT NN NN . From the dazzling Opening Ceremonies to the number of gold medals won , China 's Olympic performance has been a source of great national pride . IN DT JJ NN NNS TO DT NN IN NN NNS VBN , NNP POS NNP NN VBZ VBN DT NN IN JJ JJ NN . And any dissent has been quickly silenced . CC DT NN VBZ VBN RB VBN . So it comes as no surprise that Chinese fans at the Beijing Olympics have been boisterous supporters of their national team . IN PRP VBZ IN DT NN IN JJ NNS IN DT NNP NNPS VBP VBN JJ NNS IN PRP$ JJ NN . But VOA 's Brian Padden was surprised to learn that many Chinese are also rooting for the Americans . CC NNP POS NNP NNP VBD VBN TO VB IN JJ NNS VBP RB VBG IN DT NNS . The U.S. Senate committee considering the nomination of federal Judge Samuel Alito to the U.S. Supreme Court will vote on the matter next week . DT NNP NNP NN VBG DT NN IN JJ NNP NNP NNP TO DT NNP NNP NNP MD VB IN DT NN JJ NN . The Senate Judiciary Committee was scheduled to hold a final vote on Mr. Alito 's nomination Tuesday , but opposition Democrats demanded a one-week delay - a move that angered Republicans . DT NNP NNP NNP VBD VBN TO VB DT JJ NN IN NNP NNP POS NN NNP , CC NN NNS VBD DT JJ NN IN DT NN WDT VBD NNPS . Democrats are under pressure to delay the vote as long as possible to build public opposition to Mr. Alito 's nomination . NNS VBP IN NN TO VB DT NN RB RB IN JJ TO VB JJ NN TO NNP NNP POS NN . Liberal interest groups are concerned his presence could tilt the court in a more conservative direction . JJ NN NNS VBP VBN PRP$ NN MD VB DT NN IN DT RBR JJ NN . Mr. Alito managed to withstand two days of tough questioning from Democrats , and observers say he will easily be confirmed in the Republican-controlled Senate . NNP NNP VBD TO VB CD NNS IN JJ VBG IN NNPS , CC NNS VBP PRP MD RB VB VBN IN DT JJ NNP . NATO said Saturday one of its operations in Afghanistan has resulted in the deaths of two civilians and the wounding of another . NNP VBD NNP CD IN PRP$ NNS IN NNP VBZ VBN IN DT NNS IN CD NNS CC DT NN IN DT . NATO service members discovered a dead woman and two wounded men who had been caught in the crossfire of a gunbattle to secure a compound in the village of Kalachen in Kandahar district , where the alliance force was looking for a Taliban commander . NNP NN NNS VBD DT JJ NN CC CD JJ NNS WP VBD VBN VBN IN DT NN IN DT NN TO VB DT NN IN DT NN IN NNP IN NNP NN , WRB DT NN NN VBD VBG IN DT NNP NN . One of the men later died from his injuries . CD IN DT NNS RB VBD IN PRP$ NNS . The alliance force arrested the Taliban commander and killed one insurgent , while another was wounded . DT NN NN VBN DT NNP NN CC VBD CD NN , IN DT VBD VBN . NATO says the joint security force , along with local elders and government officials , are reviewing the circumstances surrounding the death of the civilians . NNP VBZ DT JJ NN NN , IN IN JJ NNS CC NN NNS , VBP VBG DT NNS VBG DT NN IN DT NNS . Brazil 's health ministry says the country has the world 's highest swine flu death toll . NNP POS NN NN VBZ DT NN VBZ DT NN POS JJS JJ NN NN NN . The health ministry says swine flu has killed 557 people between April and August of this year . DT NN NN VBZ NN NN VBZ VBN CD NNS IN NNP CC NNP IN DT NN . The ministry released its latest report Wednesday based on figures from the European Center for Disease Prevention and Control . DT NN VBD PRP$ JJS NN NNP VBN IN NNS IN DT JJ NNP IN NNP NNP CC NNP . It says the United States ranks next , with 522 fatalities , and Argentina places third with 439 . PRP VBZ DT NNP NNPS VBZ JJ , IN CD NNS , CC NNP NNS JJ IN CD . Brazil 's government says it wants to free up $ 2 billion to purchase 73 million doses of vaccine to fight the A-H1N1 virus . NNP POS NN VBZ PRP VBZ TO VB RP $ CD CD TO VB CD CD NNS IN NN TO VB DT JJ NN . Latin America has seen a greater impact from swine flu because it is the winter season in the Southern Hemisphere , when viruses are easily transmitted . NNP NNP VBZ VBN DT JJR NN IN JJ NN IN PRP VBZ DT NN NN IN DT NNP NNP , WRB NNS VBP RB VBN . The World Health Organization has declared the swine flu outbreak a pandemic , and says up to two billion people may eventually be infected . DT NNP NNP NNP VBZ VBN DT NN NN VBD DT JJ , CC VBZ RP TO CD CD NNS MD RB VB VBN . Japan 's Supreme Court has rejected a demand that Japan apologize to and compensate former Korean forced laborers who survived an explosion aboard a Japanese ship at the end of World War II . NNP POS NNP NNP VBZ VBN DT NN IN NNP VB TO CC VB JJ JJ JJ NNS WP VBD DT NN IN DT JJ NN IN DT NN IN NNP NNP NNP . The ship , carrying 4,000 Korean laborers and their families , was enroute to what is now South Korea when it exploded and sank off the coast of western Japan in August 1945 . DT NN , VBG CD JJ NNS CC PRP$ NNS , VBD JJ TO WP VBZ RB JJ NNP WRB PRP VBD CC VBD RP DT NN IN JJ NNP IN NNP CD . More than 500 people died . JJR IN CD NNS VBD . The Supreme Court Tuesday upheld a lower court ruling that said the Japanese government did not neglect its responsibility when the incident occurred and does not need to apologize . DT NNP NNP NNP VBD DT JJR NN NN WDT VBD DT JJ NN VBD RB NN PRP$ NN WRB DT NN VBD CC VBZ RB VB TO VB . The United States has denied any rift between Washington and Seoul , after a South Korean official made a statement about North Korea that conflicts with the official U.S. position . DT NNP NNP VBZ VBN DT NN IN NNP CC NNP , IN DT JJ JJ NN VBD DT NN IN NNP NNP IN NNS IN DT JJ NNP NN . In Washington , a U.S. State Department spokesman emphasized Thursday that the ongoing six-party negotiations on North Korea 's nuclear program are complex . IN NNP , DT NNP NNP NNP NN VBD NNP IN DT JJ JJ NNS IN NNP NNP POS JJ NN VBP JJ . He indicated that differences in opinion would naturally emerge from talks involving several parties . PRP VBD IN NNS IN NN MD RB VB IN NNS VBG JJ NNS . In an interview earlier Thursday , South Korean Unification Minister Chung Dong-young said Pyongyang has a general right to pursue a civilian nuclear program . IN DT NN RBR NNP , JJ JJ NNP NNP NNP NNP VBD NNP VBZ DT JJ NN TO VB DT JJ JJ NN . Washington is firmly opposed to Pyongyang having any nuclear facilities whatsoever . NNP VBZ RB VBN TO NNP VBG DT JJ NNS RB . The six-party talks - involving China , Japan , Russia , the United States and the two Koreas - recessed Sunday after 13 days . DT JJ NNS : VBG NNP , NNP , NNP , DT NNP NNPS CC DT CD NNP : VBD NNP IN CD NNS . Negotiations are expected to resume the week of August 29 . NNS VBP VBN TO VB DT NN IN NNP CD . Direct charter flights from Taiwan to mainland China have begun for the Lunar New Year holiday season , under an agreement between the diplomatic rivals to temporarily allow non-stop air travel . JJ NN NNS IN NNP TO VB NNP VBP VBN IN DT NNP NNP NNP NN NN , IN DT NN IN DT JJ NNS TO RB VB JJ NN NN . A plane with Taiwan 's biggest carrier , China Airlines , arrived in Shanghai Friday from Taipei . DT NN IN NNP POS JJS NN , NNP NNPS , VBD IN NNP NNP IN NNP . Six airlines from each side will operate 72 flights across the Taiwan Strait . CD NNS IN DT NN MD VB CD NNS IN DT NNP NNP . The service will connect the mainland Chinese cities of Beijing , Shanghai , Guangzhou and Xiamen with Taipei and Kaohsiung on Taiwan until February 7 . DT NN MD VB DT JJ JJ NNS IN NNP , NNP , NNP CC NNP IN NNP CC NNP IN NNP IN NNP CD . This is the second year that Beijing and Taipei have allowed the holiday flights . DT VBZ DT JJ NN IN NNP CC NNP VBP VBN DT NN NNS . Last year , flights were limited to Taiwan business people living on the mainland . JJ NN , NNS VBD VBN TO NNP NN NNS VBG IN DT NN . This year , the flights include Taiwan tourists . DT NN , DT NNS VBP NNP NNS . At other times of year , travelers must connect through other airports , usually Hong Kong . IN JJ NNS IN NN , NNS MD VB IN JJ NNS , RB NNP NNP . Senator John Kerry and former Senator John Edwards , Democratic running mates in the 2004 Presidential election , have lambasted President Bush for his response to Hurricane Katrina . NNP NNP NNP CC JJ NNP NNP NNP , JJ VBG NNS IN DT CD JJ NN , VBP VBN NNP NNP IN PRP$ NN TO NNP NNP . Senator Kerry of Massachusetts , the Democratic nominee for President in 2004 , told a university audience Monday that Katrina has exposed a broader pattern of ' incompetence and negligence ' in the Bush administration . NNP NNP IN NNP , DT JJ NN IN NNP IN CD , VBD DT NN NN NNP IN NNP VBZ VBN DT JJR NN IN `` NN CC NN `` IN DT NNP NN . The Republican National Committee responded to Senator Kerry 's speech by saying the efforts to politicize the tragedy are ' unsavory ' . DT NNP NNP NNP VBD TO NNP NNP POS NN IN VBG DT NNS TO VB DT NN VBP `` JJ `` . Mr. Edwards criticized a move by President Bush to suspend regulations that set a minimum wage for workers on federal contracts . NNP NNP VBD DT NN IN NNP NNP TO VB NNS WDT VBP DT NN NN IN NNS IN JJ NNS . Former President Bill Clinton was also critical Sunday , telling television audiences that a disaster plan affecting only middle class and rich people is not workable . JJ NNP NNP NNP VBD RB JJ NNP , VBG NN NNS IN DT NN NN VBG RB JJ NN CC JJ NNS VBZ RB JJ . A separatist group fighting Indonesian troops in Aceh has rejected the government 's offer to let rebel leaders run for political office , but only as part of existing political parties . DT JJ NN VBG JJ NNS IN NNP VBZ VBN DT NN POS NN TO VB JJ NNS VBP IN JJ NN , CC RB IN NN IN VBG JJ NNS . A Free Aceh Movement spokesman said Friday at peace talks in Helsinki , Finland that if the rebel group agreed to the offer , it would mean the organization was given privileges not available to others in Aceh . DT JJ NNP NNP NN VBD NNP IN NN NNS IN NNP , NNP IN IN DT NN NN VBD TO DT NN , PRP MD VB DT NN VBD VBN NNS RB JJ TO NNS IN NNP . The spokesman says that is not acceptable . DT NN VBZ DT VBZ RB JJ . On Thursday , Indonesia 's government proposed that Aceh rebels be allowed to field candidates in existing political parties , but not as a new party . IN NNP , NNP POS NN VBD IN NNP NNS VB VBN TO VB NNS IN VBG JJ NNS , CC RB IN DT JJ NN . The proposal would require a change in Indonesian law , which says parties must have representation in at least half of the country 's 32 provinces . DT NN MD VB DT NN IN JJ NN , WDT VBZ NNS MD VB NN IN IN JJS NN IN DT NN POS CD NNS . The current round of peace talks is scheduled to end Sunday . DT JJ NN IN NN NNS VBZ VBN TO VB NNP . Officials in Belgrade say a local employee of the U.S. Embassy has accidentally crashed into a motorcade in which the president of Serbia , Boris Tadic , was traveling . NNS IN NNP VBP DT JJ NN IN DT NNP NNP VBZ RB VBN IN DT NN IN WDT DT NN IN NNP , NNP NNP , VBD VBG . Serbian Interior Minister Dragan Jocic said Wednesday that what had been feared to be an assassination attempt turned out to be a traffic offense . JJ NNP NNP NNP NNP VBD NNP IN WP VBD VBN VBN TO VB DT NN NN VBD RP TO VB DT NN NN . The minister also said the driver , identified as Miroslav Cimpl , became very aggravated while trying to pass the motorcade . DT NN RB VBD DT NN , VBN IN NNP NNP , VBD RB JJ IN VBG TO VB DT NN . The minister also said that when Mr. Cimpl spotted flashing lights , he panicked and hit the president 's car . DT NN RB VBD IN WRB NNP NNP VBD VBG NNS , PRP VBD CC VBD DT NN POS NN . The pro-Western Mr. Tadic was not hurt . DT JJ NNP NNP VBD RB VBN . Pro-Western Serbian Prime Minister Zoran Djindjic was assassinated last year in front of his office building in Belgrade . JJ JJ NNP NNP NNP NNP VBD VBN JJ NN IN NN IN PRP$ NN NN IN NNP . The head of the U.S. government 's hurricane relief effort says it is too soon for residents of New Orleans to return to their storm-ravaged city . DT NN IN DT NNP NN POS NN NN NN VBZ PRP VBZ RB RB IN NNS IN NNP NNP TO VB TO PRP$ JJ NN . On the Fox News Sunday program , Coast Guard Vice Admiral Thad Allen urged New Orleans ' mayor to ' slow down ' a plan for city residents to start coming back this week . IN DT NNP NNP NNP NN , NNP NNP NNP NNP NNP NNP VBD NNP NNP POS NN TO `` VB RP `` DT NN IN NN NNS TO VB VBG RB DT NN . In that interview and others with U.S. television networks Sunday , the admiral said officials are still concerned about polluted floodwater , lack of clean drinking water and weakened levees . IN DT NN CC NNS IN NNP NN NNS NNP , DT NN VBD NNS VBP RB JJ IN JJ NN , NN IN JJ NN NN CC JJ NNS . Business owners were allowed to return to some parts of New Orleans on Saturday to begin assessing damage and cleaning up . NN NNS VBD VBN TO VB TO DT NNS IN NNP NNP IN NNP TO VB VBG NN CC VBG RP . The number of confirmed deaths from Hurricane Katrina has climbed to nearly 900 , with the majority , 646 , in the state of Louisiana . DT NN IN VBN NNS IN NNP NNP VBZ VBN TO RB CD , IN DT NN , CD , IN DT NN IN NNP . Negotiators from the Indonesian government and Aceh-based separatists have begun meeting in Finland for the latest round of peace talks aimed at ending decades of conflict that has taken tens of thousands of lives in the northwestern province . NNS IN DT JJ NN CC JJ NNS VBP VBN NN IN NNP IN DT JJS NN IN NN NNS VBN IN VBG NNS IN NN WDT VBZ VBN NNS IN NNS IN NNS IN DT JJ NN . Finnish mediators are helping the two sides discuss a draft peace proposal in hopes of reaching a deal in the next few weeks . JJ NNS VBP VBG DT CD NNS VB DT NN NN NN IN NNS IN VBG DT NN IN DT JJ JJ NNS . Officials say the separatists have given up their demand for independence from Indonesia . NNS VBP DT NNS VBP VBN RP PRP$ NN IN NN IN NNP . There is still disagreement , however , over whether Indonesian troops will withdraw from Aceh , and whether the rebels will be allowed to form their own political party . EX VBZ RB NN , RB , IN IN JJ NNS MD VB IN NNP , CC IN DT NNS MD VB VBN TO VB PRP$ JJ JJ NN . Peace talks that stalled in 2003 were re-started after last year 's December 26 tsunami that devastated Aceh and highlighted the need to cooperate on reconstruction efforts . NN NNS WDT VBD IN CD VBD VBN IN JJ NN POS NNP CD NN WDT VBD NNP CC VBD DT NN TO VB IN NN NNS . The director of the Getty Museum in Los Angeles says he is recommending that the museum return to Greece several antiquities that country says were illegally taken abroad . DT NN IN DT NNP NNP IN NNP NNP VBZ PRP VBZ VBG IN DT NN VB IN NNP JJ NNS WDT NN VBZ VBD RB VBN RB . Greece has demanded the return of four items in particular - a gold wreath , a marble statue of a woman dating to the sixth century BC , a tombstone and a sculpted relief . NNP VBZ VBN DT NN IN CD NNS IN JJ IN DT NN NN , DT NN NN IN DT NN VBG TO DT JJ NN NNP , DT NN CC DT JJ NN . A joint statement by museum director Michael Brand and Greek Culture Minister George Voulgarakis did not say which items will be returned . DT JJ NN IN NN NN NNP NNP CC JJ NNP NNP NNP NNP VBD RB VB WDT NNS MD VB VBN . The Getty Museum has been embroiled in several antiquities smuggling scandals . DT NNP NNP VBZ VBN VBN IN JJ NNS VBG NNS . Italian authorities have charged former curator Marion TRUE with receiving stolen goods . JJ NNS VBP VBN JJ NN NNP NNP IN VBG VBN NNS . Greek authorities also are investigating TRUE . JJ NNS RB VBP VBG NNP . They raided her vacation home in Greece , where they found dozens of antiquities that had not been registered with the Greek government . PRP VBD PRP$ NN NN IN NNP , WRB PRP VBD NNS IN NNS WDT VBD RB VBN VBN IN DT JJ NN . South Africa 's President Thabo Mbeki says former Haitian President Jean-Bertrand Aristide may be able to return home . NNP NNP POS NNP NNP NNP VBZ JJ JJ NNP NNP NNP MD VB JJ TO VB NN . Mr. Aristide has lived in exile in South Africa since fleeing a 2004 uprising in Haiti . NNP NNP VBZ VBN IN NN IN NNP NNP IN VBG DT CD NN IN NNP . But Mr. Mbeki told South African radio Sunday he sees no reason why Haiti 's newly-elected president Rene Preval would oppose Mr. Aristide returning home . CC NNP NNP VBD NNP NNP NN NNP PRP VBZ DT NN WRB NNP POS JJ NN NNP NNP MD VB NNP NNP VBG NN . He said he thinks a determination will come after the two men consult about the timing of such a move , so that , in his words , it does not create unnecessary problems . PRP VBD PRP VBZ DT NN MD VB IN DT CD NNS VBP IN DT NN IN JJ DT NN , RB IN , IN PRP$ NNS , PRP VBZ RB VB JJ NNS . President-elect Preval and Mr. Aristide were once political allies but broke over the corruption scandal that helped to bring down Mr. Aristide 's presidency . NNP NNP CC NNP NNP VBD RB JJ NNS CC VBD IN DT NN NN WDT VBD TO VB RP NNP NNP POS NN . The head of the U.S. central bank says the bank will strictly enforce new rules to prevent another financial crisis like the one that has disrupted the global economy for the past two years . DT NN IN DT NNP JJ NN VBZ DT NN MD RB VB JJ NNS TO VB DT JJ NN IN DT NN WDT VBZ VBN DT JJ NN IN DT JJ CD NNS . Federal Reserve Chairman Ben Bernanke spoke to the Financial Crisis Inquiry Commission in Washington on Thursday . NNP NNP NNP NNP NNP VBD TO DT NNP NNP NNP NNP IN NNP IN NNP . He said the most important lesson of the financial crisis is the need for an orderly way to shut down failing firms that are so big that they could damage the overall financial system if they collapse . PRP VBD DT RBS JJ NN IN DT JJ NN VBZ DT NN IN DT JJ NN TO VB RP VBG NNS WDT VBP RB JJ IN PRP MD VB DT JJ JJ NN IN PRP VBP . Bernanke also said there is too little evidence to blame low interest rates for the inflated housing prices that played a major role in the crisis . NNP RB VBD EX VBZ RB JJ NN TO VB JJ NN NNS IN DT JJ NN NNS WDT VBD DT JJ NN IN DT NN . The commission is nearing the end of a year-long investigation into what caused the financial crisis , and how to prevent a future one . DT NN VBZ VBG DT NN IN DT JJ NN IN WP VBD DT JJ NN , CC WRB TO VB DT JJ CD . The White House says U.S. President George Bush will travel to Europe next month to strengthen the trans-Atlantic partnership between the U.S. and European nations . DT NNP NNP VBZ NNP NNP NNP NNP MD VB TO NNP JJ NN TO VB DT JJ NN IN DT NNP CC JJ NNS . White House spokeswoman Dana Perino Tuesday said the eight-day trip , beginning June 9 will include stops in Britain , France , Italy , Germany , Slovenia , and the Vatican . NNP NNP NN NNP NNP NNP VBD DT JJ NN , VBG NNP CD MD VB NNS IN NNP , NNP , NNP , NNP , NNP , CC DT NNP . Mr. Bush is scheduled to attend an annual summit between the European Union and the United States , being held this year on June 10 in Slovenia . NNP NNP VBZ VBN TO VB DT JJ NN IN DT NNP NNP CC DT NNP NNPS , VBG VBN DT NN IN NNP CD IN NNP . Mr. Bush , along with his wife Laura Bush , will also celebrate the 60th anniversary of the Marshall Plan , which provided U.S. reconstruction aid to Europe after World War II . NNP NNP , IN IN PRP$ NN NNP NNP , MD RB VB DT JJ NN IN DT NNP NNP , WDT VBD NNP NN NN TO NNP IN NNP NNP NNP . They also will commemorate the 60th anniversary of the Berlin Airlift , a U.S. operation to bring much-needed supplies into the western half of the divided German city , which was cut off by a Soviet blockade . PRP RB MD VB DT JJ NN IN DT NNP NNP , DT NNP NN TO VB JJ NNS IN DT JJ NN IN DT VBN JJ NN , WDT VBD VBN RP IN DT JJ NN . Key developing countries say an offer by the United States to cut agricultural subsidies and re-start stalled negotiations on a global free-trade pact is insufficient . NNP VBG NNS VBP DT NN IN DT NNP NNPS TO VB JJ NNS CC JJ VBN NNS IN DT JJ JJ NN VBZ JJ . Brazilian Foreign Minister Celso Amorim made the statement to reporters Tuesday in Geneva , following a meeting of ministers of leading developing and industrialized countries . JJ NNP NNP NNP NNP VBD DT NN TO NNS NNP IN NNP , VBG DT NN IN NNS IN VBG JJ CC JJ NNS . The discussions came one day after the United States said at talks in Switzerland it is ready to reduce certain agricultural subsidies by 60 percent . DT NNS VBD CD NN IN DT NNP NNPS VBD IN NNS IN NNP PRP VBZ JJ TO VB JJ JJ NNS IN CD NN . The European Union also proposed cuts in farm supports , while Japan rejected the U.S. offer . DT NNP NNP RB VBD NNS IN NN NNS , IN NNP VBD DT NNP NN . Developing countries say subsidies to farmers in rich nations give these farmers an unfair advantage on world markets . VBG NNS VBP NNS TO NNS IN JJ NNS VBP DT NNS DT JJ NN IN NN NNS . Diplomats say this week 's discussions may be the last chance to secure the broad outlines of a global trade treaty before a key Hong Kong summit on World Trade in December . NNS VBP DT NN POS NNS MD VB DT JJ NN TO VB DT JJ NNS IN DT JJ NN NN IN DT JJ NNP NNP NN IN NNP NNP IN NNP . A former detainee of the U.S. military prison at Guantanamo who later rejoined al-Qaida in Yemen has turned himself in to Saudi authorities . DT JJ NN IN DT NNP JJ NN IN NNP WP RB VBD NNP IN NNP VBZ VBN PRP IN TO JJ NNS . Saudi Arabia 's Interior Ministry says Jabir Jubran al-Fayfi contacted the Saudi government from Yemen to express his readiness to surrender . NNP NNP POS NNP NNP VBZ NNP NNP NNP VBD DT JJ NN IN NNP TO VB PRP$ NN TO VB . The Yemeni government arranged for his return . DT JJ NN VBD IN PRP$ NN . Al-Fayfi was released from Guantanamo in 2006 to undergo rehabilitation in Saudi Arabia . NNP VBD VBN IN NNP IN CD TO VB NN IN NNP NNP . He rejoined al-Qaida after completing the reform program . PRP VBD NNP IN VBG DT NN NN . Saudi officials say 11 of more than 100 former Guantanamo inmates who finished the rehabilitation program returned to militancy . JJ NNS VBP CD IN JJR IN CD JJ NNP NNS WP VBD DT NN NN VBD TO NN . The Yemen-based al-Qaida in the Arabian Peninsula is known for launching attacks on regional and Western targets . DT JJ NNP IN DT NNP NNP VBZ VBN IN VBG NNS IN JJ CC JJ NNS . Iraqi Kurdish leader Massoud Barzani says an immediate withdrawal of U.S. troops from Iraq would worsen the situation in the country . JJ NNP NN NNP NNP VBZ DT JJ NN IN NNP NNS IN NNP MD VB DT NN IN DT NN . Speaking at a news conference in Jordan Tuesday , Barzani said he supports a U.S. troop withdrawal , but only when Iraqi security forces and the government have the situation under control . VBG IN DT NN NN IN NNP NNP , NNP VBD PRP VBZ DT NNP NN NN , CC RB WRB JJ NN NNS CC DT NN VBP DT NN IN NN . He said the situation in Iraq is tragic , but would get worse if U.S. troops are pulled out suddenly . PRP VBD DT NN IN NNP VBZ JJ , CC MD VB JJR IN NNP NNS VBP VBN RP RB . On Monday , Barzani held talks with Jordan 's King Abdullah , who reaffirmed his country 's support for efforts to secure reconciliation between Iraq 's rival groups . IN NNP , NNP VBD NNS IN NNP POS NNP NNP , WP VBD PRP$ NN POS NN IN NNS TO VB NN IN NNP POS JJ NNS . Barzani is president of the semi-autonomous Kurdish region in northern Iraq . NNP VBZ NN IN DT JJ JJ NN IN JJ NNP . U.S. authorities have charged a man living in New York with relaying programs from Hezbollah television station al-Manar , deemed a global terrorist entity by the U.S. Treasury Department . NNP NNS VBP VBN DT NN NN IN NNP NNP IN VBG NNS IN NNP NN NN NNP , VBD DT JJ JJ NN IN DT NNP NNP NNP . Federal prosecutors say Javed Iqbal , also known as John Iqbal , was relaying the Hezbollah-operated station to customers in New York . JJ NNS VBP NNP NNP , RB VBN IN NNP NNP , VBD VBG DT JJ NN TO NNS IN NNP NNP . Al-Manar is seen as a mouthpiece for the Lebanese Shi'ite group . NNP VBZ VBN IN DT NN IN DT JJ NNP NN . U.S. law forbids conducting business with any terror group . NNP NN VBZ VBG NN IN DT NN NN . Iqbal faces five years in jail if he is convicted of the charges under the International Emergency Economic Powers Act . NNP VBZ CD NNS IN NN IN PRP VBZ VBN IN DT NNS IN DT NNP NNP NNP NNP NNP . Hezbollah went to war with Israel last month after attacking an Israeli outpost and capturing two of its soldiers . NNP VBD TO NN IN NNP JJ NN IN VBG DT JJ NN CC VBG CD IN PRP$ NNS . Al-Manar headquarters in southern Lebanon have been destroyed in the conflict , but the station remains on the air . NNP NN IN JJ NNP VBP VBN VBN IN DT NN , CC DT NN VBZ IN DT NN . Machinists for the U.S. airplane maker Boeing voted to strike Friday , after rejecting a new contract offer . NNS IN DT NNP NN NN NNP VBD TO VB NNP , IN VBG DT JJ NN NN . Union members voted late Thursday to authorize the strike by more than 18,000 workers who manufacture components and assemble planes . NNP NNS VBD JJ NNP TO VB DT NN IN JJR IN CD NNS WP VBP NNS CC JJ NNS . Boeing officials expressed disappointment at the vote . NNP NNS VBD NN IN DT NN . In a written statement , they said they will not assemble airplanes during the strike . IN DT JJ NN , PRP VBD PRP MD RB VB NNS IN DT NN . Earlier , Boeing officials warned a strike would be devastating to the company . RB , NNP NNS VBD DT NN MD VB JJ TO DT NN . Union leaders had urged members to reject the new contract , saying it failed to meet their demands on health care and pension benefits . NNP NNS VBD VBN NNS TO VB DT JJ NN , VBG PRP VBD TO VB PRP$ NNS IN NN NN CC NN NNS . Boeing managers were seeking to cut some benefit costs , which they say have risen sharply in recent years . NNP NNS VBD VBG TO VB DT NN NNS , WDT PRP VBP VBP VBN RB IN JJ NNS . Boeing is currently locked in a trade dispute with its European rival Airbus over government subsidies . NNP VBZ RB VBN IN DT NN NN IN PRP$ JJ JJ NNP IN NN NNS . Scientists say they have discovered a gene responsible for increasing a person 's likelihood of contracting type 1 diabetes . NNS VBP PRP VBP VBN DT NN JJ IN VBG DT NN POS NN IN VBG NN CD NNS . In an article published Sunday in the journal Nature , researchers said people with a variation of the gene are as much as 50 percent more likely to suffer from type 1 diabetes . IN DT NN VBN NNP IN DT NN NN , NNS VBD NNS IN DT NN IN DT NN VBP RB JJ IN CD NN RBR JJ TO VB IN NN CD NNS . That sort of diabetes is also called juvenile diabetes because it is often diagnosed in childhood or early adulthood . DT NN IN NN VBZ RB VBN NN VBZ IN PRP VBZ RB VBN IN NN CC JJ NN . Researchers say the ability to forecast a vulnerability to diabetes would allow doctors to intervene in time to lessen its impact on patients . NNS VBP DT NN TO VB DT NN TO NNS MD VB NNS TO VB IN NN TO VB PRP$ NN IN NNS . Type 1 diabetes is an incurable disease in which the body destroys its cells which produce insulin , a hormone that regulates blood glucose . NNP CD NN VBZ DT JJ NN IN WDT DT NN VBZ PRP$ NNS WDT VBP NN , DT NN WDT VBZ NN NN . Those with the disease have a higher risk of heart disease , kidney failure , blindness and other medical problems . DT IN DT NN VBP DT JJR NN IN NN NN , NN NN , NN CC JJ JJ NNS . Authorities in Pakistan say unidentified gunmen killed seven people near the Afghan border Thursday . NNS IN NNP VBP JJ NNS VBD CD NNS IN DT JJ NN NNP . They say the gunmen opened fire on a vehicle carrying the men near the town of Wana , in the remote tribal region of South Waziristan . PRP VBP DT NNS VBD NN IN DT NN VBG DT NNS IN DT NN IN NNP , IN DT JJ JJ NN IN NNP NNP . It was not clear who the victims were . PRP VBD RB JJ WP DT NNS VBD . Pakistan has thousands of troops deployed in the region to hunt for al-Qaida and Taleban fighters . NNP VBZ NNS IN NNS VBN IN DT NN TO VB IN NNP CC NNP NNS . A suicide car bomber has killed four U.S. soldiers outside Baghdad , as coalition forces continue their offensive against insurgents near Syria 's border . DT NN NN NN VBZ VBN CD NNP NNS IN NNP , IN NN NNS VBP PRP$ NN IN NNS IN NNP POS NN . Military officials said the four soldiers were killed in a suicide attack on a checkpoint south of the Iraqi capital Monday . NNP NNS VBD DT CD NNS VBD VBN IN DT NN NN IN DT NN NN IN DT JJ NN NNP . Meanwhile , coalition forces battled insurgents for a third day in the Iraqi border town of Husaybah , where officials say one Marine and 36 insurgents have died . RB , NN NNS VBD NNS IN DT JJ NN IN DT JJ NN NN IN NNP , WRB NNS VBP CD NN CC CD NNS VBP VBN . Officials say coalition forces have encountered frequent attacks by snipers and discovered homemade bombs in the area . NNS VBP NN NNS VBP VBN JJ NNS IN NNS CC VBD JJ NNS IN DT NN . There are no reports of civilian casualties in the operation aimed at stopping the flow of weapons and foreign fighters from Syria . EX VBP DT NNS IN JJ NNS IN DT NN VBN IN VBG DT NN IN NNS CC JJ NNS IN NNP . Near Baghdad , separate attacks killed 13 people , including six Iraqi police officers . NNP NNP , JJ NNS VBN CD NNS , VBG CD JJ NNS NNS . Venezuelan President Hugo Chavez has replaced his vice president and plans to make at least 12 more Cabinet changes . JJ NNP NNP NNP VBZ VBN PRP$ NN NN CC VBZ TO VB IN JJS CD JJR NNP NNS . He named Ramon Carrizales , a housing minister , to replace Vice President Jorge Rodriguez . PRP VBD NNP NNP , DT NN NN , TO VB NNP NNP NNP NNP . The Cabinet reshuffle comes after Venezuelans rejected constitutional reforms that would have greatly expanded the president 's power . DT NN NN VBZ IN NNS VBD JJ NNS WDT MD VB RB VBN DT NN POS NN . It was the first electoral defeat for Mr. Chavez in nine years . PRP VBD DT JJ JJ NN IN NNP NNP IN CD NNS . The reforms would have allowed Mr. Chavez , who has vowed to transform Venezuela into a socialist state , to seek re-election indefinitely . DT NNS MD VB VBN NNP NNP , WP VBZ VBN TO VB NNP IN DT JJ NN , TO VB NN RB . The proposals also would have abolished the Central Bank 's independence , limited individual rights under states of emergency and created new forms of community-owned property . DT NNS RB MD VB VBN DT NNP NNP POS NN , VBN JJ NNS IN NNS IN NN CC VBN JJ NNS IN JJ NN . Former Indian Prime Minister Atal Bihari Vajpayee has announced his retirement from politics . JJ JJ NNP NNP NNP NNP NNP VBZ VBN PRP$ NN IN NNS . The former prime minister made the surprise announcement in Mumbai Thursday at a rally celebrating his Hindu nationalist Bhartiya Janata Party 's 25-year existence . DT JJ JJ NN VBD DT NN NN IN NNP NNP IN DT NN VBG PRP$ NNP NN NNP NNP NNP POS JJ NN . Mr. Vajpayee stepped down as prime minister in May after the BJP was defeated in national elections in May , 2004 . NNP NNP VBD RP IN JJ NN IN NNP IN DT NNP VBD VBN IN JJ NNS IN NNP , CD . The May election prevented Mr. Vajpayee from serving a fourth term as India 's prime minister . DT NNP NN VBD NNP NNP IN VBG DT JJ NN IN NNP POS JJ NN . He served as prime minister from 1999 to 2004 and briefly in 1996 and 1998 . PRP VBD IN JJ NN IN CD TO CD CC RB IN CD CC CD . Mr. Vajpayee 's tenure saw India conduct nuclear tests , make strides toward peace with Pakistan and achieve major economic progress . NNP NNP POS NN VBD NNP VBP JJ NNS , VBP NNS IN NN IN NNP CC VBP JJ JJ NN . A grand jury in the U.S. state of Texas has indicted U.S. Congressman Tom DeLay on charges of money laundering and conspiracy . DT JJ NN IN DT NNP NN IN NNP VBZ VBN NNP NNP NNP NNP IN NNS IN NN NN CC NN . The indictment announced Monday is the second in less than a week against the former U.S. House Republican majority leader . DT NN VBN NNP VBZ DT JJ IN JJR IN DT NN IN DT JJ NNP NNP NNP NN NN . Last week , Mr. DeLay was forced to temporarily step down from his powerful leadership position when he was charged with violating a Texas campaign-finance law . JJ NN , NNP NNP VBD VBN TO RB VB RB IN PRP$ JJ NN NN WRB PRP VBD VBN IN VBG DT NNP NN NN . In both indictments , he is accused of conspiring to get around a state ban on corporate campaign contributions by funneling money through the Republican National Committee . IN DT NNS , PRP VBZ VBN IN VBG TO VB IN DT NN NN IN JJ NN NNS IN VBG NN IN DT NNP NNP NNP . Mr. DeLay has denied the charges . NNP NNP VBZ VBN DT NNS . In a statement released Monday , Mr. DeLay accused the Texas district attorney Ronnie Earle of ' prosecutorial abuse , ' and called the charges illegitimate and baseless . IN DT NN VBN NNP , NNP NNP VBD DT NNP NN NN NNP NNP IN `` JJ NN , `` CC VBD DT NNS JJ CC JJ . If convicted , he could face up to life in prison for money laundering . IN VBN , PRP MD VB RP TO NN IN NN IN NN NN . Spanish police in raids across the country have arrested 186 people in a crackdown on the distribution of child pornography . JJ NN IN NNS IN DT NN VBP VBN CD NNS IN DT NN IN DT NN IN NN NN . A total of 650 officers took part in the operation that broke up a system that used the Internet to distribute pornographic materials without the need to place them on web pages . DT NN IN CD NNS VBD NN IN DT NN WDT VBD RP DT NN WDT VBD DT NN TO VB JJ NNS IN DT NN TO VB PRP IN JJ NNS . The suspects used a series of pre-arranged passwords to share files directly between computers . DT NNS VBD DT NN IN JJ NNS TO VB NNS RB IN NNS . Last month , Spanish police broke up a group of pedophiles who abused and raped children then distributed the images over the Internet . JJ NN , JJ NN VBD RP DT NN IN NNS WP VBD CC VBD NNS RB VBD DT NNS IN DT NNP . The top U.S. envoy for arms control says North Korea , Iran and Syria are among the worst proliferators of weapons of mass destruction . DT JJ NNP NN IN NNS NN VBZ NNP NNP , NNP CC NNP VBP IN DT JJS NNS IN NNS IN NN NN . U.S. Undersecretary of State John Bolton told reporters in Tokyo that the three countries are states of proliferation concern . NNP NNP IN NNP NNP NNP VBD NNS IN NNP IN DT CD NNS VBP NNS IN NN NN . He called for closer monitoring of shipments to and from such countries . PRP VBD IN JJR NN IN NNS TO CC IN JJ NNS . Mr. Bolton is visiting Tokyo to observe multinational exercises , held under the U.S.-led Proliferation Security Initiative , aimed at training troops from several countries to intercept weapons of mass destruction at sea . NNP NNP VBZ VBG NNP TO VB JJ NNS , VBN IN DT JJ NNP NNP NNP , VBN IN VBG NNS IN JJ NNS TO JJ NNS IN NN NN IN NN . The United States says the drills send a message that the world does not tolerate anyone who tries to traffic weapons of mass destruction . DT NNP NNPS VBZ DT NNS VBP DT NN IN DT NN VBZ RB VB DT WP VBZ TO NN NNS IN NN NN . An Ethiopian official says the first portion of the ancient Axum obelisk will be returned home next week after being taken to Rome 70 years ago . DT JJ NN VBZ DT JJ NN IN DT JJ NNP NN MD VB VBN NN IN NN IN VBG VBN TO NNP CD NNS RB . Ethiopian Culture Minister Teshome Toga told reporters Friday the first section of the obelisk is scheduled to be flown to Ethiopia next Wednesday . JJ NNP NNP NNP NNP VBD NNS NNP DT JJ NN IN DT NN VBZ VBN TO VB VBN TO NNP IN NNP . The roughly 24-meter high , 160 - metric ton granite structur , believed to be nearly 2,000-years-old , is too large to be moved in one piece . DT RB JJ JJ , CD : JJ NN NN NN , VBN TO VB RB JJ , VBZ RB JJ TO VB VBN IN CD NN . The obelisk was taken from taken from the city of Axum in 1937 by order of Italian dictator Benito Mussolini during Italy 's brief occupation of Ethiopia . DT NN VBD VBN IN VBN IN DT NN IN NNP IN CD IN NN IN JJ NN NNP NNP IN NNP POS JJ NN IN NNP . The two nations signed an agreement for the return of the structure in 1947 , but ' technical difficulties ' have delayed its delivery . DT CD NNS VBD DT NN IN DT NN IN DT NN IN CD , CC `` JJ NNS `` VBP VBN PRP$ NN . California has become the first U.S. state to ban trans fats , a type of unsaturated fat that has been shown to clog arteries . NNP VBZ VBN DT JJ NNP NN TO VB NNS NNS , DT NN IN JJ NN WDT VBZ VBN VBN TO VB NNS . Doctors are applauding the decision , but some residents complain that the government is interfering with their freedom . NNS VBP VBG DT NN , CC DT NNS VBP IN DT NN VBZ VBG IN PRP$ NN . VOA 's Carolyn Presutti takes us to the controversy . NNP POS NNP NNP VBZ PRP TO DT NN . Cuban officials and allies of President Fidel Castro say the aging leader is doing well after undergoing intestinal surgery . JJ NNS CC NNS IN NNP NNP NNP VBP DT NN NN VBZ VBG RB IN VBG JJ NN . Cuban Vice President Carlos Lage said in Bolivia Sunday that Mr. Castro will recover within a few weeks and will return to his duties . JJ NNP NNP NNP NNP VBD IN NNP NNP IN NNP NNP MD VB IN DT JJ NNS CC MD VB TO PRP$ NNS . The 79-year-old Cuban leader underwent surgery last Monday to stop intestinal bleeding . DT JJ JJ NN VBD NN JJ NNP TO VB JJ NN . The government says the president handed power to his brother , Raul , who has not been seen in public since the political shift . DT NN VBZ DT NN VBD NN TO PRP$ NN , NNP , WP VBZ RB VBN VBN IN JJ IN DT JJ NN . Venezuelan President Hugo Chavez , a close political ally to Mr. Castro , said Sunday he had learned the Cuban leader was able to get out of bed and hold conversations . JJ NNP NNP NNP , DT JJ JJ NN TO NNP NNP , VBD NNP PRP VBD VBN DT JJ NN VBD JJ TO VB IN IN NN CC VB NNS . U.S. Secretary of State Condoleezza Rice said Sunday Washington encourages democratic change in Cuba , but would not stir up a political crisis while Mr. Castro remains ill . NNP NNP IN NNP NNP NNP VBD NNP NNP VBZ JJ NN IN NNP , CC MD RB VB RP DT JJ NN IN NNP NNP VBZ JJ . British authorities have increased security measures following intelligence that terrorists could be planning to attack major transportation hubs . JJ NNS VBP VBN NN NNS VBG NN IN NNS MD VB VBG TO VB JJ NN NNS . British transport police cancelled leave and called in extra officers . JJ NN NN VBD NN CC VBN IN JJ NNS . But officials say the overall threat level has not changed , and there is no suggestion of an imminent attack . CC NNS VBP DT JJ NN NN VBZ RB VBN , CC EX VBZ DT NN IN DT JJ NN . The heightened security steps come after two terrorist plots were linked to Britain in the past few weeks . DT JJ NN NNS VBP IN CD JJ NNS VBD VBN TO NNP IN DT JJ JJ NNS . A Swedish citizen , who had lived in Britain for the past 10 years , blew himself up in mid-December in Stockholm , wounding two other people . DT JJ NN , WP VBD VBN IN NNP IN DT JJ CD NNS , VBD PRP RP IN NNP IN NNP , VBG CD JJ NNS . At the end of December , British police arrested 12 men from around the country , suspected of plotting a terrorist attack in Britain . IN DT NN IN NNP , JJ NN VBN CD NNS IN IN DT NN , VBN IN VBG DT JJ NN IN NNP . An artist from Argentina is preparing to showcase her work at the Embassy of Argentina in Washington later this month . DT NN IN NNP VBZ VBG TO VB PRP$ NN IN DT NNP IN NNP IN NNP RB DT NN . The show is just the latest step in an artistic career that began as a teenager . DT NN VBZ RB DT JJS NN IN DT JJ NN WDT VBD IN DT NN . VOA 's Sahar Sepehri introduces us to Evangelina Elizondo , an artist making a name for herself in the international world of art . NNP POS NNP NNP VBZ PRP TO NNP NNP , DT NN VBG DT NN IN PRP IN DT JJ NN IN NN . Iran 's state news agency says an Iranian fighter jet has crashed into the Oman Sea off the country 's southeastern coast . NNP POS NN NN NN VBZ DT JJ NN NN VBZ VBN IN DT NNP NNP IN DT NN POS JJ NN . Iran says the F-4 Phantom jet crashed at 12.45 p.m. local time ( 915 UTC ) Monday in waters near the Iranian port city of Konarak . NNP VBZ DT NNP NNP NN VBD IN CD RB JJ NN LRB CD NNP RRB NNP IN NNS IN DT JJ JJ NN IN NNP . There was no word on the fate of the pilot or the cause of the crash . EX VBD DT NN IN DT NN IN DT NN CC DT NN IN DT NN . Many of the warplanes in Iran 's air force are aging U.S.-built jets such as the F-4 that Iran bought before its Islamic Revolution in 1979 . NN IN DT NNS IN NNP POS NN NN VBP VBG JJ NNS JJ IN DT NN IN NNP VBD IN PRP$ JJ NN IN CD . U.S. sanctions imposed on Iran after the revolution have made it hard for Tehran to buy spare parts for its military and civilian aircraft . NNP NNS VBN IN NNP IN DT NN VBP VBN PRP JJ IN NNP TO VB JJ NNS IN PRP$ JJ CC JJ NN . Iran 's air force also has Russian-made Sukhoi warplanes and recently conducted test flights on two domestically-produced fighter jets . NNP POS NN NN RB VBZ JJ NNP NNS CC RB VBN NN NNS IN CD JJ NN NNS . The U.S. Senate has begun debate on two proposals calling on President Bush to establish a strategy that will lead to the withdrawal of U.S. forces from Iraq . DT NNP NNP VBZ VBN NN IN CD NNS VBG IN NNP NNP TO VB DT NN WDT MD VB TO DT NN IN NNP NNS IN NNP . The proposals , introduced by both Democrats and Republicans , call for Mr. Bush to inform Congress and the American people every three months how he plans to achieve the successful completion of the U.S. mission in Iraq . DT NNS , VBN IN DT NNPS CC NNPS , NN IN NNP NNP TO VB NNP CC DT JJ NNS DT CD NNS WRB PRP VBZ TO VB DT JJ NN IN DT NNP NN IN NNP . But the two sides disagree on whether to set a timetable for the withdrawal of U.S. forces . CC DT CD NNS VBP IN IN TO VB DT NN IN DT NN IN NNP NNS . Democrats want the administration to give estimated dates on withdrawal , as long as certain conditions are met , while Republicans say setting any timetable would embolden the terrorists . NNPS VBP DT NN TO VB JJ NNS IN NN , RB RB IN JJ NNS VBP VBN , IN NNS VBP VBG DT NN MD VB DT NNS . Votes on the proposals are expected Tuesday . NNS IN DT NNS VBP VBN NNP . Iraq says it will prosecute Saddam Hussein on 12 well-documented criminal charges , drawn from a list of 500 criminal counts that authorities had considered filing against the jailed ex-dictator . NNP VBZ PRP MD VB NNP NNP IN CD JJ JJ NNS , VBN IN DT NN IN CD JJ NNS IN NNS VBD VBN NN IN DT JJ NN . Speaking in Baghdad on Sunday a government spokesman also repeated a government prediction that Saddam will go on trial within two months . VBG IN NNP IN NNP DT NN NN RB VBD DT NN NN IN NNP MD VB IN NN IN CD NNS . No trial date has been set . DT NN NN VBZ VBN VBN . Saddam is widely expected to face genocide charges for allegedly ordering the 1988 chemical attack on the Kurdish village of Halabja that killed five thousand people . NNP VBZ RB VBN TO VB NN NNS IN RB VBG DT CD NN NN IN DT JJ NN IN NNP WDT VBD CD CD NNS . Other charges are expected for the 1990 invasion of Kuwait and for the deadly suppression of Shi'ite muslims that began a year later in southern Iraq . JJ NNS VBP VBN IN DT CD NN IN NNP CC IN DT JJ NN IN NNP NNS WDT VBD DT NN RB IN JJ NNP . Meanwhile , the U.S. military says it has seized a vast underground insurgent hideout in western Iraq . RB , DT NNP NN VBZ PRP VBZ VBN DT JJ JJ JJ NN IN JJ NNP . Authorities say the complex includes fully furnished living spaces , fresh food and a massive munitions cache . NNS VBP DT NN VBZ RB VBN NN NNS , JJ NN CC DT JJ NNS NN . The United Nations weather agency says 2010 is set to be one of the three warmest years on record , and possibly the warmest ever . DT NNP NNP NN NN VBZ CD VBZ VBN TO VB CD IN DT CD JJS NNS IN NN , CC RB DT NN RB . The World Meteorological Organization says the past 10 years , 2001 - 2010 , have also set a new record for the warmest decade , with the highest worldwide temperatures since records began in 1850 . DT NNP NNP NNP VBZ DT JJ CD NNS , CD IN CD , VBP RB VBN DT JJ NN IN DT JJS NN , IN DT JJS JJ NNS IN NNS VBD IN CD . The WMO released the data Thursday at U.N. climate change talks in Cancun , Mexico . DT NNP VBD DT NNS NNP IN NNP NN NN NNS IN NNP , NNP . Figures for November and December will be factored in early next year . NNS IN NNP CC NNP MD VB VBN IN JJ JJ NN . Iraqi election officials say it is too early to suspect problems during Saturday 's constitutional referendum , as workers continue to review ballots . JJ NN NNS VBP PRP VBZ RB JJ TO VB NNS IN NNP POS JJ NN , IN NNS VBP TO VB NNS . Officials say workers are still auditing results for about 12 Shi'ite and Kurdish areas which reported unusually high totals of ' yes ' votes . NNS VBP NNS VBP RB VBG NNS IN IN CD NNP CC NNP NNS WDT VBD RB JJ NNS IN `` UH `` NNS . Those regions were expected to support the constitution . DT NNS VBD VBN TO VB DT NN . Election officials say a final vote count may be ready by Friday or Saturday . NN NNS VBP DT JJ NN NN MD VB JJ IN NNP CC NNP . At least one predominantly Sunni Arab province , Salaheddin , appeared to have voted against the constitution . IN JJS CD RB NNP NNP NN , NNP , VBD TO VB VBN IN DT NN . The draft will fail if three provinces vote against it . DT NN MD VB IN CD NNS NN IN PRP . Some Sunni Arab leaders have alleged fraud in Saturday 's vote . DT NNP NNP NNS VBP VBN NN IN NNP POS NN . Meanwhile , Iraqi police said gunmen in Ramadi killed the deputy governor of Anbar province , Talib al-Dulaimi , on Tuesday . RB , JJ NNS VBD NNS IN NNP VBD DT NN NN IN NNP NN , NNP NNP , IN NNP . And U.S. military officials said one soldier died in a gun battle in Mosul . CC NNP JJ NNS VBD CD NN VBD IN DT NN NN IN NNP . Iraqi police say car bomb attacks at churches in Baghdad and Kirkuk have killed at least three people and wounded several others . JJ NNS VBP NN NN NNS IN NNS IN NNP CC NNP VBP VBN IN JJS CD NNS CC VBD JJ NNS . They say the cars exploded at nearly the same time outside two churches in Kirkuk and four in Baghdad . PRP VBP DT NNS VBD IN RB DT JJ NN IN CD NNS IN NNP CC CD IN NNP . The blasts came shortly after Iraqi authorities adjourned the trial of ousted dictator Saddam Hussein until at least Wednesday . DT NNS VBD RB IN JJ NNS VBD DT NN IN JJ NN NNP NNP IN IN JJS NNP . Saddam and some co-defendants were thrown out of court Sunday , after Saddam 's co-defendant half-brother cursed the court and was then dragged away by guards . NNP CC DT NNS VBD VBN IN IN NN NNP , IN NNP POS JJ NN VBD DT NN CC VBD RB VBN RB IN NNS . Several defense lawyers walked out in protest . JJ NN NNS VBD RP IN NN . The former Iraqi leader and seven co-defendants are accused of killing more than 140 people in the town of Dujail in 1982 after a failed assassination attempt . DT JJ JJ NN CC CD NNS VBP VBN IN VBG JJR IN CD NNS IN DT NN IN NNP IN CD IN DT JJ NN NN . Elsewhere , a suicide car bomber killed four Iraqi soldiers near Saddam 's hometown of Tikrit . RB , DT NN NN NN VBD CD JJ NNS IN NNP POS NN IN NNP . Another insurgent attack killed 10 people south of Baghdad . DT JJ NN VBD CD NNS RB IN NNP . Uganda says it will send an additional 250 soldiers to Somalia to train forces loyal to the Somali interim government . NNP VBZ PRP MD VB DT JJ CD NNS TO NNP TO VB NNS JJ TO DT JJ JJ NN . Ugandan defense officials announced the move to parliament on Wednesday . JJ NN NNS VBD DT NN TO NN IN NNP . They said the training is part of the mandate of the African Union peacekeeping mission in Somalia . PRP VBD DT NN VBZ NN IN DT NN IN DT NNP NNP VBG NN IN NNP . The AU has promised 8,000 peacekeepers for the war-ravaged country . DT NNP VBZ VBN CD NNS IN DT JJ NN . But so far , only Uganda has sent troops . CC RB RB , RB NNP VBZ VBN NNS . Those 1500 troops have largely stayed out of the Somali capital 's chronic violence , focusing on protecting the airport , seaport , and presidential palace . DT CD NNS VBP RB VBN IN IN DT JJ NN POS NN NN , VBG IN VBG DT NN , NN , CC JJ NN . Witnesses in the Somali capital say a landmine explosion in northern Mogadishu Thursday , killed two policemen and wounded three other people . NNS IN DT JJ NN VBP DT NN NN IN JJ NNP NNP , VBD CD NNS CC VBD CD JJ NNS . The 250 soldiers will increase Uganda 's contingent in Somalia to 1750 troops . DT CD NNS MD VB NNP POS JJ IN NNP TO CD NNS . Ugandan officials said the new troops will deploy as soon as the Somali government works out the logistics for their stay . JJ NNS VBD DT JJ NNS MD VB RB RB IN DT JJ NN VBZ RP DT NNS IN PRP$ NN . Up to two million people evacuated the city of New Orleans and surrounding areas in advance of Hurricane Gustav , which was not nearly as severe as Hurricane Katrina three years earlier . IN TO CD CD NNS VBD DT NN IN NNP NNP CC VBG NNS IN NN IN NNP NNP , WDT VBD RB RB RB JJ IN NNP NNP CD NNS RBR . VOA 's Barry Wood in New Orleans tells us about a French Quarter hotel that for traveling journalists provided welcome shelter from the storm . NNP POS NNP NNP IN NNP NNP VBZ PRP IN DT JJ NN NN IN IN VBG NNS VBN JJ NN IN DT NN . The British government reports that more than 4,00,000 workers from Eastern Europe have come to work in Britain since 10 new members joined the European Union in 2004 . DT JJ NN NNS IN JJR IN CD NNS IN NNP NNP VBP VBN TO VB IN NNP IN CD JJ NNS VBD DT NNP NNP IN CD . Figures published by the British Home Office Tuesday show the government admitted 4,27,000 workers from the 80 formerly communist-ruled new EU member nations . NNS VBN IN DT NNP NNP NNP NNP VBP DT NN VBD CD NNS IN DT CD RB JJ JJ NNP NN NNS . If self-employed workers are included , that figure may be as high as 6,00,000 . IN JJ NNS VBP VBN , DT NN MD VB RB JJ IN CD . Poles make up the majority of the registered immigrant workers in Britain , followed by Lithuanians and Slovaks . NNS VBP RP DT NN IN DT JJ JJ NNS IN NNP , VBN IN NNS CC NNS . Poland has the bloc 's highest unemployment rate . NNP VBZ DT NN POS JJS NN NN . The immigration figures have triggered debate in Britain over foreign labor . DT NN NNS VBP VBN NN IN NNP IN JJ NN . Some politicians have called for additional restrictions on immigration ahead of the EU decision whether to admit Bulgaria and Romania in 2007 . DT NNS VBP VBN IN JJ NNS IN NN RB IN DT NNP NN IN TO VB NNP CC NNP IN CD . The countries that gained EU membership in 2004 are Cyprus , the Czech Republic , Estonia , Hungary , Latvia , Lithuania , Malta , Poland , Slovakia and Slovenia . DT NNS WDT VBD NNP NN IN CD VBP NNP , DT JJ NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP CC NNP . Witnesses say an Israeli drone aircraft fired a missile into a car near a Gaza refugee camp Tuesday , but they say the passengers escaped unharmed . NNS VBP DT JJ NN NN VBD DT NN IN DT NN IN DT NNP NN NN NNP , CC PRP VBP DT NNS VBD JJ . Israel says the strike near Khan Younis targeted two Palestinian militants wanted in connection with a series of mortar attacks on nearby Jewish settlements . NNP VBZ DT NN IN NNP NNP VBD CD JJ NNS VBN IN NN IN DT NN IN JJ NNS IN JJ JJ NNS . The Khan Younis camp in southern Gaza is a stronghold of militants who often target Jewish settlements with homemade rockets and mortars . DT NNP NNP NN IN JJ NNP VBZ DT NN IN NNS WP RB VBP JJ NNS IN JJ NNS CC NNS . Israel has raided the camp repeatedly to kill or capture militants , and frequently destroys Khan Younis homes linked to such suspects . NNP VBZ VBN DT NN RB TO VB CC VB NNS , CC RB VBZ NNP NNP NNS VBN TO JJ NNS . Israel has killed scores of Palestinian militants in targeted attacks since the Palestinian uprising ( intifada ) erupted more than four years ago NNP VBZ VBN NNS IN JJ NNS IN JJ NNS IN DT JJ NN LRB NN RRB VBD JJR IN CD NNS RB Jordan 's King Abdullah has postponed a peace mission to Israel and the Palestinian territories because of a flare-up in factional fighting in the Gaza Strip . NNP POS NNP NNP VBZ VBN DT NN NN TO NNP CC DT JJ NNS IN IN DT NN IN JJ NN IN DT NNP NNP . Speaking Monday in Amman , a spokesman for the king said the current security situation in Gaza is not conducive to the visit . VBG NNP IN NNP , DT NN IN DT NN VBD DT JJ NN NN IN NNP VBZ RB JJ TO DT NN . Hours earlier , Palestinian lawmakers voted to urge Palestinian Authority President Mahmoud Abbas to fire his cabinet for failing to stop fighting between Hamas militants and police . NNS RB , JJ NNS VBD TO VB JJ NNP NNP NNP NNP TO VB PRP$ NN IN VBG TO VB VBG IN NNP NNS CC NNS . The bill also demands that Mr. Abbas form a new government within two weeks or face a no-confidence vote . DT NN RB VBZ IN NNP NNP VB DT JJ NN IN CD NNS CC VB DT JJ NN . The vote came a short while after several dozen Palestinian police stormed the Palestinian parliament building in Gaza City to press demands for a security crackdown on Hamas . DT NN VBD DT JJ NN IN JJ NN JJ NN VBD DT JJ NN NN IN NNP NNP TO VB NNS IN DT NN NN IN NNP . Sunday , three Palestinians were killed and at least 50 others wounded in gunbattles between Hamas militants and police . NNP , CD NNS VBD VBN CC IN JJS CD NNS VBN IN NNS IN NNP NNS CC NNS . Turkey 's Foreign Minister Abdullah Gul says he remains a candidate for president - despite opposition from secularists . NNP POS NNP NNP NNP NNP VBZ PRP VBZ DT NN IN NN : IN NN IN NNS . Gul told reporters Friday his candidacy will has not been derailed by the political crisis his nomination by the ruling A.K. ( Justice and Development ) party sparked . NNP VBD NNS NNP PRP$ NN MD VBZ RB VBN VBN IN DT JJ NN PRP$ NN IN DT NN NNP LRB NNP CC NNP RRB NN VBD . Gul withdrew his candidacy from consideration from parliament after he failed to gain enough support . NNP VBD PRP$ NN IN NN IN NN IN PRP VBD TO VB JJ NN . Thursday , Turkey 's parliament approved a set of constitutional amendments that would allow the president to be elected by a popular vote , instead of by parliament . NNP , NNP POS NN VBD DT NN IN JJ NNS WDT MD VB DT NN TO VB VBN IN DT JJ NN , RB IN IN NN . President Ahmet Necdet Sezer must sign the amendments before they can become law . NNP NNP NNP NNP MD VB DT NNS IN PRP MD VB NN . The ruling party proposed the electoral reform package and Prime Minister Recep Tayyip Erdogan called early legislative elections ( July 22 ) after parliament failed to elect a president . DT VBG NN VBD DT JJ NN NN CC NNP NNP NNP NNP NNP VBD JJ JJ NNS LRB NNP CD RRB IN NN VBD TO VB DT NN . Secularists opposed Gul 's candidacy and accused the Islamist-rooted A.K. Party of attempting to undermine Turkey 's secular order . NNS VBD NNP POS NN CC VBD DT JJ NNP NNP IN VBG TO VB NNP POS JJ NN . Authorities in Colombia have killed two soldiers and wounded six others after they mistook them for leftist rebels . NNS IN NNP VBP VBN CD NNS CC VBD CD NNS IN PRP VBD PRP IN JJ NNS . Police say the incident occurred Thursday in the village of Chipaque south of the capital , Bogota . NNS VBP DT NN VBD NNP IN DT NN IN JJ NN IN DT NN , NNP . They say military police rushed to the town after receiving information that rebels of the Revolutionary Armed Forces of Colombia , or FARC , were planning to blow up electricity towers in the area . PRP VBP JJ NNS VBD TO DT NN IN VBG NN IN NNS IN DT NNP NNP NNS IN NNP , CC NNP , VBD VBG TO VB RP NN NNS IN DT NN . A firefight broke out when an army patrol arrived at the scene at the same time to investigate a separate report about the FARC . DT NN VBD RP WRB DT NN NN VBD IN DT NN IN DT JJ NN TO VB DT JJ NN IN DT NNP . Authorities say the incident is under investigation . NNS VBP DT NN VBZ IN NN . The FARC , along with a smaller leftist rebel group and rightist paramilitaries , is involved in a long-running war with the government in Colombia . DT NNP , IN IN DT JJR JJ NN NN CC NN NNS , VBZ VBN IN DT JJ NN IN DT NN IN NNP . The conflict leaves thousands of people dead each year . DT NN VBZ NNS IN NNS JJ DT NN . World leaders have praised Iraq 's national election as a triumph for the Iraqi people . NNP NNS VBP VBN NNP POS JJ NN IN DT NN IN DT JJ NNS . In Europe and Russia , several leaders who opposed the war joined the United States in declaring the vote a success . IN NNP CC NNP , JJ NNS WP VBD DT NN VBD DT NNP NNPS IN VBG DT NN DT NN . French President Jacques Chirac told President Bush by phone Monday the elections are an important stage in Iraq 's reconstruction . JJ NNP NNP NNP VBD NNP NNP IN NN NNP DT NNS VBP DT JJ NN IN NNP POS NN . German Foreign Minister Joschka Fischer said Iraqis deserve great recognition for heading to the polls despite the danger . JJ NNP NNP NNP NNP VBD NNS VBP JJ NN IN VBG TO DT NNS IN DT NN . But he reaffirmed Germany 's refusal to send troops to the country . CC PRP VBD NNP POS NN TO VB NNS TO DT NN . Russia 's President Putin called the vote a historic event . NNP POS NNP NNP VBD DT NN DT JJ NN . Praise also came from Asian countries , including China , which said it hopes the vote brings stability to Iraq . NNP RB VBD IN JJ NNS , VBG NNP , WDT VBD PRP VBZ DT NN VBZ NN TO NNP . President Bush and Britain 's Prime Minister Tony Blair hailed the election Sunday , calling it a blow to terrorism . NNP NNP CC NNP POS NNP NNP NNP NNP VBD DT NN NNP , VBG PRP DT NN TO NN . A public opinion poll indicates that nearly nine out of 10 Israelis believe their country 's offensive against Hezbollah guerrillas in Lebanon is justified . DT JJ NN NN VBZ IN RB CD IN IN CD NNS VBP PRP$ NN POS NN IN NNP NNS IN NNP VBZ JJ . The survey published Tuesday in the Israeli newspaper Yedioth Ahronoth ( ' Latest News ' ) found that 81 percent of those polled think the offensive should continue . DT NN VBN NNP IN DT JJ NN NNP NNP LRB `` NNP NNP `` RRB VBD IN CD NN IN DT VBN VBP DT NN MD VB . Nearly 60 percent said the offensive should continue until Hezbollah leader Hassan Nasrallah is killed . RB CD NN VBD DT NN MD VB IN NNP NN NNP NNP VBZ VBN . Only 17 percent said Israel should stop the attacks and start negotiations . RB CD NN VBD NNP MD VB DT NNS CC VB NNS . The poll also showed that Israelis are largely satisfied with Prime Minister Ehud Olmert 's response to the crisis . DT NN RB VBD IN NNS VBP RB JJ IN NNP NNP NNP NNP POS NN TO DT NN . Nearly 80 percent said that Mr. Olmert 's job performance was either very good or fairly good . RB CD NN VBD IN NNP NNP POS NN NN VBD RB RB JJ CC RB JJ . Top officials of the U.S. central bank are expected to hold interest rates steady when they gather at a key policymaking meeting Tuesday and Wednesday in Washington . JJ NNS IN DT NNP JJ NN VBP VBN TO VB NN NNS RB WRB PRP VBP IN DT JJ NN NN NNP CC NNP IN NNP . The U.S. Federal Reserve has cut interest rates several times recently to bolster economic growth that has been hurt by the faltering housing market , tight credit , and other problems . DT NNP NNP NNP VBZ VBN NN NNS JJ NNS RB TO VB JJ NN WDT VBZ VBN VBN IN DT VBG NN NN , JJ NN , CC JJ NNS . But economists say cutting rates too low can spark inflation , which is a growing threat as oil prices soar to ever higher record levels . CC NNS VBP VBG NNS RB JJ MD VB NN , WDT VBZ DT VBG NN IN NN NNS VBP TO RB JJR NN NNS . Experts interviewed by news organizations , like Bloomberg and Reuters , say the Fed will probably keep interest rates unchanged for a while , but raise them later this year . NNS VBN IN NN NNS , IN NNP CC NNP , VBP DT NNP MD RB VB NN NNS JJ IN DT NN , CC VB PRP RBR DT NN . U.S. officials in Iraq say two American civilians have been killed and a third wounded in a roadside bomb blast south of Baghdad . NNP NNS IN NNP VBP CD JJ NNS VBP VBN VBN CC DT JJ VBN IN DT NN NN NN NN IN NNP . The U.S. Embassy says the victims , who worked for a private security firm protecting U.S. diplomats , came under attack Saturday on the main road to Hilla . DT NNP NNP VBZ DT NNS , WP VBD IN DT JJ NN NN VBG NNP NNS , VBD IN NN NNP IN DT JJ NN TO NNP . Meanwhile , there are reports that talks among Iraq 's leading parties on forming a new government are stalled . RB , EX VBP NNS IN NNS IN NNP POS VBG NNS IN VBG DT JJ NN VBP VBN . Sources close to the talks say leaders of the Kurdish alliance 's two factions were still debating Sunday a draft deal reached last week with the Shi'ite-dominated United Iraqi Alliance . NNS RB TO DT NNS VBP NNS IN DT NNP NN POS CD NNS VBD RB VBG NNP DT NN NN VBN JJ NN IN DT JJ NNP JJ NNP . The two camps are supposed to announce an agreement on a new government Monday - two days before the Iraqi National Assembly convenes for the first time since January elections . DT CD NNS VBP VBN TO VB DT NN IN DT JJ NN NNP IN CD NNS IN DT JJ NNP NNP VBZ IN DT JJ NN IN NNP NNS . The United States is urging Uzbekistan to give fair and humane treatment to a journalist recently arrested for violating the Uzbek constitution . DT NNP NNPS VBZ VBG NNP TO VB JJ CC JJ NN TO DT NN RB VBN IN VBG DT JJ NN . State Department spokesman Adam Ereli says the United States is closely following the case of Sabirjon Yakubov , who was arrested April 11th . NNP NNP NN NNP NNP VBZ DT NNP NNPS VBZ RB VBG DT NN IN NNP NNP , WP VBD VBN NNP CD . Mr. Ereli says Uzbek authorities have harassed other journalists in the past to limit publications of critical stories . NNP NNP VBZ JJ NNS VBP VBN JJ NNS IN DT NN TO VB NNS IN JJ NNS . Mr. Yakubov , who works for the Hurriyat ( Freedom ) weekly , faces a 20 year prison sentence . NNP NNP , WP VBZ IN DT NNP LRB NNP RRB JJ , VBZ DT CD NN NN NN . He has recently written articles about Islam and political reforms , as well as the ' Orange Revolution ' in the Ukraine . PRP VBZ RB VBN NNS IN NNP CC JJ NNS , RB RB IN DT `` NNP NNP `` IN DT NNP . The New York-based Committee to Protect Journalists says that if Mr. Yakubov is being held for expressing his religious and political beliefs he should be freed immediately . DT NNP JJ NNP TO VB NNS VBZ IN IN NNP NNP VBZ VBG VBN IN VBG PRP$ JJ CC JJ NNS PRP MD VB VBN RB . MTV Networks has launched its first music video channel for Africa . NNP NNP VBZ VBN PRP$ JJ NN NN NN IN NNP . The new 24-hour channel , called MTV Base , is broadcast on satellite television , available to 1.3 million homes across Africa . DT JJ JJ NN , VBD NNP NNP , VBZ VBN IN NN NN , JJ TO CD CD NNS IN NNP . MTV says it also hopes to sell blocks of broadcast time to local stations so it can reach more people . NNP VBZ PRP RB VBZ TO VB NNS IN NN NN TO JJ NNS IN PRP MD VB JJR NNS . MTV says about 30 percent of the music played on the channel will be African - such as South Africa 's popular kwaito music , a derivative of hip-hop , or mbalax - music from West Africa made famous by Senegalese artist , Youssou N'Dour . NNP VBZ IN CD NN IN DT NN VBN IN DT NN MD VB JJ : JJ IN NNP NNP POS JJ NN NN , DT NN IN NNP , CC NNP : NN IN NNP NNP VBN JJ IN JJ NN , NNP NNP . MTV Base is the network 's 100th channel and its final global outpost . NNP NNP VBZ DT NN POS JJ NN CC PRP$ JJ JJ NN . MTV has already launched stations in North America , Europe , Latin America , and Asia . NNP VBZ RB VBN NNS IN NNP NNP , NNP , NNP NNP , CC NNP . French President Jacques Chirac says he is opposed to any international sanctions against a Palestinian government formed by the militant group Hamas . JJ NNP NNP NNP VBZ PRP VBZ VBN TO DT JJ NNS IN DT JJ NN VBN IN DT JJ NN NNP . Speaking to reporters Monday on the final day of a visit to Saudi Arabia , Mr. Chirac said he was aware of calls for cutting off aid to a Hamas-led government because of the group 's refusal to renounce violence against Israel . VBG TO NNS NNP IN DT JJ NN IN DT NN TO NNP NNP , NNP NNP VBD PRP VBD JJ IN NNS IN VBG RP NN TO DT JJ NN IN IN DT NN POS NN TO VB NN IN NNP . But he said imposing sanctions would mostly hurt the Palestinian people . CC PRP VBD VBG NNS MD RB VB DT JJ NNS . Hamas won a landslide election victory in January , prompting Israel , the United States and the European Union - which includes France - to threaten to stop funding unless the Islamic militant group recognize Israel and stop its militants from attacking the Jewish state . NNP VBD DT NN NN NN IN NNP , VBG NNP , DT NNP NNPS CC DT NNP NNP : WDT VBZ NNP : TO VB TO VB VBG IN DT NNP JJ NN VBP NNP CC VB PRP$ NNS IN VBG DT JJ NN . France often presents itself as supporting Arab causes , while many Arabs regard the United States as biased toward Israel . NNP RB VBZ PRP IN VBG JJ NNS , IN JJ NNS VBP DT NNP NNPS IN JJ IN NNP . Cuban President Fidel Castro has walked for the first time in public since suffering a damaging fall two months ago . JJ NNP NNP NNP VBZ VBD IN DT JJ NN IN JJ IN VBG DT JJ NN CD NNS RB . Mr. Castro , assisted by a young school girl , received a standing ovation Thursday as he walked into the year-end session of the National Assembly . NNP NNP , VBN IN DT JJ NN NN , VBD DT NN NN NNP IN PRP VBD IN DT JJ NN IN DT NNP NNP . The Associated Press reports he walked slowly and a bit stiffly as he took his seat on stage at Havana 's Convention Palace . DT NNP NNP NNS PRP VBD RB CC DT NN RB IN PRP VBD PRP$ NN IN NN IN NNP POS NNP NNP . The 78-year-old Cuban leader stumbled and fell in October after making a speech , shattering his knee and fracturing an arm . DT JJ JJ NN VBD CC VBD IN NNP IN VBG DT NN , VBG PRP$ NN CC VBG DT NN . In November , Mr. Castro surprised many when he stood up from his wheelchair to receive Chinese President Hu Jintao , who was on a state visit . IN NNP , NNP NNP VBD JJ WRB PRP VBD RP IN PRP$ NN TO VB JJ NNP NNP NNP , WP VBD IN DT NN NN . A study by the South African Medical Research Council has found that women in abusive relationships are more likely to become infected with HIV . DT NN IN DT NNP NNP NNP NNP NNP VBZ VBN IN NNS IN JJ NNS VBP RBR JJ TO VB JJ IN NNP . Researchers say that South African women in unequal relationships had a higher rate of HIV infection compared to women who had more equality in their relationships . NNS VBP IN JJ JJ NNS IN JJ NNS VBD DT JJR NN IN NNP NN VBN TO NNS WP VBD RBR NN IN PRP$ NNS . Researchers also say that addressing inequalities in relationships could prevent nearly 14 percent of new HIV infections . NNS RB VBP IN VBG NNS IN NNS MD VB RB CD NN IN JJ NNP NNS . Nearly 12 percent of new infections could be prevented if women were not physically or sexually abused by their partners . RB CD NN IN JJ NNS MD VB VBN IN NNS VBD RB RB CC RB VBN IN PRP$ NNS . The South African Medical Research Council is calling on the World Health Organization and other groups to develop and widely implement policies and programs that build gender equality and prevent domestic violence . DT NNP NNP NNP NNP NNP VBZ VBG IN DT NNP NNP NNP CC JJ NNS TO VB CC RB VB NNS CC NNS WDT VBP NN NN CC VB JJ NN . Algerian state television says a suicide bomb attack has killed about 15 people and wounded more than 70 others . JJ NN NN VBZ DT NN NN NN VBZ VBN IN CD NNS CC VBN JJR IN CD NNS . Security officials say the attack occurred Thursday in the eastern town of Batna - shortly before President Abdelaziz Bouteflika was scheduled to visit . NN NNS VBP DT NN VBD NNP IN DT JJ NN IN NNP : RB IN NNP NNP NNP VBD VBN TO VB . Witnesses say the bomber was among a crowd of people waiting to see Mr. Bouteflika . NNS VBP DT NN VBD IN DT NN IN NNS VBG TO VB NNP NNP . The Algerian president later visited some of the wounded at a local hospital . DT JJ NN RB VBD DT IN DT VBN IN DT JJ NN . He condemned those who carried out the attack as ' criminals ' and said Algeria was committed to achieving national reconciliation . PRP VBD DT WP VBD RP DT NN IN `` NNS `` CC VBD NNP VBD VBN TO VBG JJ NN . Al-Qaida 's North African branch has claimed responsibility for several recent attacks in Algeria . NNP POS JJ JJ NN VBZ VBN NN IN JJ JJ NNS IN NNP . Islamic militants have been fighting in Algeria since 1992 . JJ NNS VBP VBN VBG IN NNP IN CD . Violence has largely subsided in recent years , but the group al-Qaida Organization in the Islamic Maghreb continues to fight . NN VBZ RB VBN IN JJ NNS , CC DT NN NNP NNP IN DT NNP NNP VBZ TO VB . President Bush is seeking public support for his economic agenda , urging Congress to pass his proposed budget and reforms to the Social Security retirement program . NNP NNP VBZ VBG JJ NN IN PRP$ JJ NN , VBG NNP TO VB PRP$ JJ NN CC NNS TO DT NNP NNP NN NN . Speaking in the midwestern city of Detroit Tuesday , Mr. Bush said his $ 2.5-trillion budget maintains discipline on spending while enabling the military and Homeland Security Department to protect Americans . VBG IN DT JJ NN IN NNP NNP , NNP NNP VBD PRP$ $ JJ NN VBZ NN IN NN IN VBG DT JJ CC NNP NNP NNP TO VB NNS . About Social Security , he said younger workers should be allowed to divert part of their taxes into private accounts that they could invest for a possibly higher return . IN NNP NNP , PRP VBD JJR NNS MD VB VBN TO VB NN IN PRP$ NNS IN JJ NNS IN PRP MD VB IN DT RB JJR NN . The speech was part of the president 's effort to promote his plans , in the face of opposition from Democrats . DT NN VBD NN IN DT NN POS NN TO VB PRP$ NNS , IN DT NN IN NN IN NNPS . Opponents have called Mr. Bush 's budget ' irresponsible , ' noting that it does not take into account costs for the wars in Iraq and Afghanistan . NNS VBP VBN NNP NNP POS NN `` JJ , `` VBG IN PRP VBZ RB VB IN NN NNS IN DT NNS IN NNP CC NNP . The Democrats have likened Mr. Bush 's Social Security plan to a form of roulette ( gambling ) . DT NNPS VBP VBN NNP NNP POS NNP NNP NN TO DT NN IN NN LRB NN RRB . Somali pirates have released a Taiwanese ship that they seized off the coast of Somalia more than five months ago . JJ NNS VBP VBN DT JJ NN IN PRP VBD RP DT NN IN NNP JJR IN CD NNS RB . Taiwanese officials say the vessel , Chung Yi 218 , has safely set sail from Somali waters . JJ NNS VBP DT NN , NNP NNP CD , VBZ RB VBN NN IN JJ NNS . It is not clear how many crew members are on board , and if a deal was made to secure the ship 's release . PRP VBZ RB JJ WRB JJ NN NNS VBP IN NN , CC IN DT NN VBD VBN TO VB DT NN POS NN . The vessel was one of three Taiwanese ships held by Somali gunmen since August . DT NN VBD CD IN CD JJ NNS VBN IN JJ NNS IN NNP . The pirates had demanded a ransom of $ 5,00,000 for each boat and its crew . DT NNS VBD VBN DT NN IN $ CD IN DT NN CC PRP$ NN . The other two vessels are reported still being held . DT JJ CD NNS VBP VBN RB VBG VBN . Pirates have attacked many ships off the Somali coast , including a United Nations World Food Program vessel hijacked last year . NNS VBP VBN JJ NNS IN DT JJ NN , VBG DT NNP NNP NNP NNP NNP NN VBN JJ NN . Somalia has been without an effective central government since 1991 . NNP VBZ VBN IN DT JJ JJ NN IN CD . Condoleezza Rice ( l ) and Chinese Prime Minister Wen Jiabao The subjects of North Korea and Taiwan dominated meetings in Beijing Sunday between top Chinese leaders and U.S. Secretary of State Condoleezza Rice . NNP NNP LRB NN RRB CC JJ NNP NNP NNP NNP DT NNS IN NNP NNP CC NNP VBD NNS IN NNP NNP IN JJ JJ NNS CC NNP NNP IN NNP NNP NNP . The French news agency quotes Ms. Rice as telling President Hu Jintao she hopes Beijing will intensify efforts to get North Korea to resume talks on its nuclear program in a constructive manner . DT JJ NN NN VBZ NNP NNP IN VBG NNP NNP NNP PRP VBZ NNP MD VB NNS TO VB NNP NNP TO VB NNS IN PRP$ JJ NN IN DT JJ NN . Mr. Hu said China is committed to resolving the issue . NNP NNP VBD NNP VBZ VBN TO VBG DT NN . Prime Minister Wen Jiabao and Ms. Rice also met and expressed their mutual desire to enhance Chinese-U.S. relations . NNP NNP NNP NNP CC NNP NNP RB VBD CC VBD PRP$ JJ NN TO VB JJ NNS . The prime minister told Ms. Rice China 's new anti-secession law is meant to contain forces on Taiwan seeking independence . DT JJ NN VBD NNP NNP NNP POS JJ JJ NN VBZ VBN TO VB NNS IN NNP VBG NN . While on her Asia tour , Ms. Rice said the European government would be acting irresponsibly if they sell weapons to China that might be used against U.S. forces in the Pacific . IN IN PRP$ NN NN , NNP NNP VBD DT JJ NN MD VB VBG RB IN PRP VBP NNS TO NNP WDT MD VB VBN IN NNP NNS IN DT NNP . The United Nations World Food Program ( WFP ) says Burma 's military government has placed restrictions on food deliveries as it cracks down on mass protests throughout the country . DT NNP NNP NNP NNP NNP LRB NNP RRB VBZ NNP POS JJ NN VBZ VBN NNS IN NN NNS IN PRP VBZ RB IN NN NNS IN DT NN . The U.N. agency on Friday expressed concern that the government 's actions could block efforts to feed some 5,00,000 people in the impoverished Southeast Asian country . DT NNP NN IN NNP VBD NN IN DT NN POS NNS MD VB NNS TO VB DT CD NNS IN DT JJ JJ JJ NN . According to the agency , Burmese authorities have stopped all movement of food out of the country 's second-largest city , Mandalay , which will affect deliveries in northern Shan State . VBG TO DT NN , JJ NNS VBP VBN DT NN IN NN IN IN DT NN POS JJ NN , NNP , WDT MD VB NNS IN JJ NNP NNP . Unrest also has stopped food delivery in the port city of Sittwe , disrupting the World Food Program 's operations in north Rakhine State . NNP RB VBZ VBN NN NN IN DT JJ NN IN NNP , VBG DT NNP NNP NNP POS NNS IN JJ NNP NNP . The U.N. agency says it is appealing to authorities for access to all parts of the country , to protect children , as well as HIV and tuberculosis patients . DT NNP NN VBZ PRP VBZ VBG TO NNS IN NN TO DT NNS IN DT NN , TO VB NNS , RB RB IN NNP CC NN NNS . Former Ukrainian Prime Minister Yulija Tymoshenko says she is breaking with President Viktor Yushchenko following his decision to dismiss her government . JJ JJ NNP NNP NNP NNP VBZ PRP VBZ VBG IN NNP NNP NNP VBG PRP$ NN TO VB PRP$ NN . Ms. Tymoshenko said Friday she is no longer a member of Mr. Yushchenko 's political team , but stopped short of calling herself an opponent . NNP NNP VBD NNP PRP VBZ RB RB DT NN IN NNP NNP POS JJ NN , CC VBD RB IN VBG PRP DT NN . The former prime minister said she and her followers plan to run for office separately in next year 's parliamentary elections . DT JJ JJ NN VBD PRP CC PRP$ NNS VBP TO VB IN NN RB IN JJ NN POS JJ NNS . Mr. Yushchenko dismissed the government Thursday , amid allegations of corruption and reports of infighting between the prime minister and Petro Poroshenko , another senior official . NNP NNP VBD DT NN NNP , IN NNS IN NN CC NNS IN NN IN DT JJ NN CC NNP NNP , DT JJ NN . The president has named senior regional official Yuri Yekhanurov prime minister . DT NN VBZ VBN JJ JJ NN NNP NNP JJ NN . Ms. Tymoshenko was a key figure during Ukraine 's Orange Revolution that swept the president into power last year . NNP NNP VBD DT JJ NN IN NNP POS NNP NN WDT VBD DT NN IN NN JJ NN . She blamed presidential advisors , rather than Mr. Yushchenko himself , for her firing . PRP VBD JJ NNS , RB IN NNP NNP PRP , IN PRP$ NN . Ivory Coast has reported its first outbreaks of the deadly H5N1 strain of birdflu . NNP NNP VBZ VBN PRP$ JJ NNS IN DT JJ NNP NN IN NN . The Paris-based World Organization for Animal Health says tests have confirmed the presence of the virus in birds from two outbreaks in Abidjan . DT JJ NNP NNP IN NNP NNP VBZ NNS VBP VBN DT NN IN DT NN IN NNS IN CD NNS IN NNP . The H5N1 strain was detected in seven chickens , nine ducks and one sparrowhawk . DT NNP NN VBD VBN IN CD NNS , CD NNS CC CD NN . The virus has been confirmed in five other African nations - Burkina Faso , Cameroon , Egypt , Niger and Nigeria . DT NN VBZ VBN VBN IN CD JJ JJ NNS IN NNP NNP , NNP , NNP , NNP CC NNP . Earlier this week , a minister from the southern African country of Malawi told a 19-nation bird flu conference that Africa is not prepared to fight bird flu . RBR DT NN , DT NN IN DT JJ JJ NN IN NNP VBD DT JJ NN NN NN IN NNP VBZ RB JJ TO VB NN NN . A United Nations official at the same conference said poverty and inadequate medical and veterinary services make Africa vulnerable to the disease . DT NNP NNPS NN IN DT JJ NN VBD NN CC JJ JJ CC JJ NNS VBP NNP JJ TO DT NN . Bird flu has killed more than 113 people worldwide since 2003 , mostly in Asia . NN NN VBZ VBN JJR IN CD NNS JJ IN CD , RB IN NNP . Many members of Iraq 's national football ( soccer ) team were scheduled to leave Iraq Saturday - just one day after ceremonies honoring them for their win last week at the Asian Cup championship in Jakarta . JJ NNS IN NNP POS JJ NN LRB NN RRB NN VBD VBN TO VB NNP NNP : RB CD NN IN NNS VBG PRP IN PRP$ NN JJ NN IN DT NNP NNP NN IN NNP . Some players have contracts with teams outside Iraq and live abroad . DT NNS VBP NNS IN NNS IN NNP CC VBP RB . The Iraqi team has not played at home for 17 years due to fears of violence since the start of the 2003 U.S. invasion and to international sanctions against Saddam Hussein 's regime before that . DT JJ NN VBZ RB VBN IN NN IN CD NNS JJ TO NNS IN NN IN DT NN IN DT CD NNP NN CC TO JJ NNS IN NNP NNP POS NN IN DT . The team practices in Jordan . DT NN VBZ IN NNP . On Friday , Prime Minister Nouri al-Maliki welcomed Iraq 's national team to celebrations in Baghdad 's heavily fortified Green Zone . IN NNP , NNP NNP NNP NNP VBD NNP POS JJ NN TO NNS IN NNP POS RB VBN NNP NNP . Most Baghdad residents were barred from the celebration because of security concerns . JJS NNP NNS VBD VBN IN DT NN IN IN NN NNS . Iraq defeated Saudi Arabia 1-0 in the Asian Cup final , sparking a rare moment of national jubilation . NNP VBD NNP NNP CD IN DT NNP NNP JJ , VBG DT JJ NN IN JJ NN . The European Union is hopeful U.S. President Barack Obama 's message to Iran can help thaw relations between Tehran and much of the world . DT NNP NNP VBZ JJ NNP NNP NNP NNP POS NN TO NNP MD VB VB NNS IN NNP CC NN IN DT NN . EU foreign policy chief Javier Solana said in Brussels Friday that the broadcast appeal could help open ' a new chapter ' for relations with Iran . NNP JJ NN NN NNP NNP VBD IN NNP NNP IN DT NN NN MD VB VB `` DT JJ NN `` IN NNS IN NNP . Solana also called Mr. Obama 's attempt to reach out to Iran constructive . NNP RB VBD NNP NNP POS NN TO VB RP TO NNP NN . Like the United States , the EU accuses Iran of trying to develop nuclear weapons and has imposed a series of sanctions on Tehran . IN DT NNP NNPS , DT NNP VBZ NNP IN VBG TO VB JJ NNS CC VBZ VBN DT NN IN NNS IN NNP . Last month , German Chancellor Angela Merkel threatened to impose additional sanctions on Iran if talks do not work . JJ NN , JJ NNP NNP NNP VBD TO VB JJ NNS IN NNP IN NNS VBP RB VB . New White House budget figures show a program to help seniors pay for prescription drugs will cost the government some $ 320 billion more than projected . NNP NNP NNP NN NNS VBP DT NN TO VB NNS VB IN NN NNS MD VB DT NN DT $ CD CD JJR IN VBN . Figures released late Tuesday raised the estimate of the program 's cost to $ 720 billion over the next decade . NNS VBD RB NNP VBD DT NN IN DT NN POS NN TO $ CD CD IN DT JJ NN . That is nearly twice the $ 400 billion estimate President Bush offered in 2003 , before Congress added the prescription drug benefit to the government 's Medicare medical insurance program . DT VBZ RB RB DT $ CD CD NN NNP NNP VBD IN CD , IN NNP VBD DT NN NN NN TO DT NN POS NNP JJ NN NN . The increased cost is likely to draw criticism from lawmakers concerned about the soaring U.S. budget deficit . DT VBN NN VBZ JJ TO VB NN IN NNS VBN IN DT VBG NNP NN NN . Speaking with reporters at the White House Wednesday , Mr. Bush said Medicare has ' unfunded liabilities ' that he and Congress will have to deal with after fixing the Social Security retirement program . VBG IN NNS IN DT NNP NNP NNP , NNP NNP VBD NNP VBZ `` JJ NNS `` IN PRP CC NNP MD VB TO VB IN IN VBG DT NNP NNP NN NN . The United Nations says it has placed U.N. disaster teams around the world on alert and told them they are ready to be deployed to the U.S. Gulf Coast . DT NNP NNP VBZ PRP VBZ VBN NNP NN NNS IN DT NN IN NN CC VBD PRP PRP VBP JJ TO VB VBN TO DT NNP NNP NNP . A U.N. spokesman in Geneva Friday said members of its U.N. Disaster Assessment and Coordination Center specializing in natural disasters are ready to help the United States deal with the devastation caused by Hurricane Katrina , if requested by Washington . DT NNP NN IN NNP NNP VBD NNS IN PRP$ NNP NNP NNP CC NNP NNP VBG IN JJ NNS VBP JJ TO VB DT NNP NNPS NN IN DT NN VBN IN NNP NNP , IN VBN IN NNP . He said the world body 's various agencies - including the World Health Organization , UNICEF , the World Food Program and the U.N. refugee agency - are meeting Friday in New York to put together an offer of logistical support . PRP VBD DT NN NN POS JJ NNS : VBG DT NNP NNP NNP , NNP , DT NNP NNP NNP CC DT NNP NN NN : VBP VBG NNP IN NNP NNP TO VB RB DT NN IN JJ NN . The U.N. announcement comes several hours after Secretary-General Kofi Annan said America has always been generous in responding to disasters around the globe , and urged the international community to offer assistance to the devastated communities along the U.S. Gulf Coast . DT NNP NN VBZ JJ NNS IN JJ NNP NNP VBD NNP VBZ RB VBN JJ IN VBG TO NNS IN DT NN , CC VBD DT JJ NN TO VB NN TO DT JJ NNS IN DT NNP NNP NNP . Burmese officials have blamed local dissident student groups , working with western governments , for Friday 's bomb blast at a luxury hotel in Rangoon . JJ NNS VBP VBN JJ JJ NN NNS , VBG IN JJ NNS , IN NNP POS NN NN IN DT NN NN IN NNP . Officials held a rare news conference in the capital city Sunday to denounce the attack . NNS VBD DT JJ NN NN IN DT NN NN NNP TO VB DT NN . They released a statement that alleged several groups , including the All Burma Students Democratic Front , the Karen National Union , and the Vigorous Burmese Student Warriors were behind the small blast outside the Traders Hotel , that did little damage and caused no injuries . PRP VBD DT NN WDT VBD JJ NNS , VBG DT NNP NNP NNP NNP NNP , DT NNP NNP NNP , CC DT JJ JJ NN NNS VBD IN DT JJ NN IN DT NNP NNP , WDT VBD JJ NN CC VBD DT NNS . The Burmese Information Minister Brigadier General Kyaw Hsann also said authorities had thwarted a separate major bomb attack . DT JJ NNP NNP NNP NNP NNP NNP RB VBD NNS VBD VBN DT JJ JJ NN NN . Officials have not mentioned any arrests in the alleged bomb plots . NNS VBP RB VBN DT NNS IN DT JJ NN NNS . Burma 's tightly-guarded capital has seen a number of explosions in recent months . NNP POS JJ NN VBZ VBN DT NN IN NNS IN JJ NNS . The government regularly blames exile groups that oppose military rule . DT NN RB VBZ NN NNS WDT VBP JJ NN . Some dissidents say the blasts are carried out by government-linked groups to justify tighter security . DT NNS VBP DT NNS VBP VBN RP IN JJ NNS TO VB JJR NN . Activists from an alliance of five political parties in Nepal say they will hold a second round of protests Monday against King Gyanendra 's assumption of absolute power . NNS IN DT NN IN CD JJ NNS IN NNP VBP PRP MD VB DT JJ NN IN NNS NNP IN NNP NNP POS NN IN JJ NN . A spokesman for the alliance said Sunday the nationwide rallies will go ahead despite the king 's ban on demonstrations . DT NN IN DT NN VBD NNP DT JJ NNS MD VB RB IN DT NN POS NN IN NNS . Last Tuesday , political parties organized street protests to pressure the king to restore democracy in Nepal . JJ NNP , JJ NNS VBN NN NNS TO VB DT NN TO VB NN IN NNP . Police arrested dozens of people , including former government ministers and former lawmakers . NNS VBN NNS IN NNS , VBG JJ NN NNS CC JJ NNS . Sunday , police in Kathmandu arrested three students for shouting anti-monarchy slogans . NNP , NN IN NNP VBN CD NNS IN VBG JJ NNS . King Gyanendra dismissed the government , imposed a state of emergency and suspended civil liberties on February 1 . NNP NNP VBD DT NN , VBD DT NN IN NN CC VBN JJ NNS IN NNP CD . He said his move was prompted by the government 's failure to contain a Maoist rebellion , which has killed thousands of people since 1996 . PRP VBD PRP$ NN VBD VBN IN DT NN POS NN TO VB DT NNP NN , WDT VBZ VBN NNS IN NNS IN CD . NATO says two civilians have been killed and at least 10 others wounded in a fuel truck explosion in eastern Afghanistan . NNP VBZ CD NNS VBP VBN VBN CC IN JJS CD NNS VBN IN DT NN NN NN IN JJ NNP . A NATO statement says Thursday 's blast in Nangarhar province also damaged nearby shops and vehicles , and that the explosion was likely triggered by an improvised explosive device . DT NNP NN VBZ NNP POS NN IN NNP NN RB VBD JJ NNS CC NNS , CC IN DT NN VBD JJ VBN IN DT JJ JJ NN . In neighboring Logar province , NATO says coalition forces killed 12 Taliban insurgents , including a commander during an operation on Wednesday . IN VBG NNP NN , NNP VBZ NN NNS VBN CD NNP NNS , VBG DT NN IN DT NN IN NNP . Another three insurgents were killed while Afghan and coalition forces were pursuing commanders of the insurgent group Jama'at ul Dawa al-Qu'ran in northeastern Kunar province . DT CD NNS VBD VBN IN JJ CC NN NNS VBD VBG NNS IN DT JJ NN NNP NNP NNP NNP IN JJ NNP NN . The group is linked to attacks that killed two U.S. service members . DT NN VBZ VBN TO NNS WDT VBD CD NNP NN NNS . And the alliance says eight coalition members were injured Thursday after a NATO helicopter made a hard landing in southern Kandahar province . CC DT NN VBZ CD NN NNS VBD VBN NNP IN DT NNP NN VBD DT JJ NN IN JJ NNP NN . NATO says based on initial reports , the incident was not a result of enemy fire . NNP VBZ VBN IN JJ NNS , DT NN VBD RB DT NN IN NN NN . Colombian authorities say they have dismantled a FALSE passport ring with links to al-Qaida and the Islamic militant group Hamas , and arrested 19 people in connection with the case . JJ NNS VBP PRP VBP VBN DT JJ NN NN IN NNS TO NNP CC DT NNP JJ NN NNP , CC VBN CD NNS IN NN IN DT NN . Prosecutors said Thursday three members of the state intelligence agency known as DAS , were among those arrested , and that one of them is among eight people sought by the United States for extradition . NNS VBD NNP CD NNS IN DT NN NN NN VBN IN NNP , VBD IN DT VBN , CC IN CD IN PRP VBZ IN CD NNS VBN IN DT NNP NNPS IN NN . Officials also say a member of Colombia 's National Registry , which provides official identification documents , was arrested in the sweep . NNS RB VBP DT NN IN NNP POS NNP NNP , WDT VBZ JJ NN NNS , VBD VBN IN DT NN . Authorities say the arrests follow an investigation that began in 2002 . NNS VBP DT NNS VBP DT NN WDT VBD IN CD . Local media reports say the passport-forging ring enabled foreign nationals to travel as Colombians to Europe and the United States . JJ NNS NNS VBP DT JJ NN VBD JJ NNS TO VB IN NNPS TO NNP CC DT NNP NNPS . The reports say the suspects sent the forged passports to citizens of Pakistan , Jordan , Iraq and Egypt , who never actually set foot in Colombia . DT NNS VBP DT NNS VBD DT VBN NNS TO NNS IN NNP , NNP , NNP CC NNP , WP RB RB VBN NN IN NNP . Palestinian witnesses say Israeli troops shot and killed two Palestinian civilians in separate incidents in the West Bank and Gaza Strip Tuesday . JJ NNS VBP JJ NNS VBD CC VBD CD JJ NNS IN JJ NNS IN DT NNP NNP CC NNP NNP NNP . They say soldiers shot dead a Palestinian bystander during a clash with militants in Nablus . PRP VBP NNS VBD RB DT JJ NN IN DT NN IN NNS IN NNP . Several Palestinians and two soldiers were wounded in the clash that erupted when Israeli troops raided the Palestinian city . JJ NNS CC CD NNS VBD VBN IN DT NN WDT VBD WRB JJ NNS VBD DT JJ NN . Israeli forces regularly mount raids into West Bank towns to arrest wanted Palestinians . JJ NNS RB VBP NNS IN NNP NNP NNS TO VB JJ NNS . In the Gaza Strip , witnesses say a Palestinian farmer was killed when Israeli forces fired tank or artillery shells into the territory . IN DT NNP NNP , NNS VBP DT JJ NN VBD VBN WRB JJ NNS VBN NN CC NN NNS IN DT NN . Members of the U.S. Senate Judiciary Committee say confirmation hearings for Supreme Court nominee Harriet Miers will begin November 7 . NNS IN DT NNP NNP NNP NNP VBP NN NNS IN NNP NNP NN NNP NNP MD VB NNP CD . The announcement Wednesday comes a little more than two weeks after President Bush nominated Ms. Miers to take over the Supreme Court seat left vacant by the retirement of Justice Sandra Day O'Connor . DT NN NNP VBZ DT RB JJR IN CD NNS IN NNP NNP VBD NNP NNP TO VB RP DT NNP NNP NN VBN JJ IN DT NN IN NNP NNP NNP NNP . Mr. Bush has drawn fire from fellow Republicans for the nomination of Ms. Miers , the current White House Counsel . NNP NNP VBZ VBN NN IN NN NNS IN DT NN IN NNP NNP , DT JJ NNP NNP NNP . Some want the president to withdraw her nomination and pick a known conservative who would decisively shift the high court to the right . DT VBP DT NN TO VB PRP$ NN CC VB DT VBN NN WP MD RB VB DT JJ NN TO DT NN . Ms. Miers has not made her positions on contentious issues like abortion and gay marriage publicly known since her nomination . NNP NNP VBZ RB VBN PRP$ NNS IN JJ NNS IN NN CC JJ NN RB VBN IN PRP$ NN . Indian search teams have recovered at least 50 bodies in the eastern state of West Bengal where an overcrowded ferry capsized . JJ NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN IN NNP NNP WRB DT JJ NN VBN . Officials say more than 100 people were on the ferry when it overturned Saturday in a turbulent river near the Bay of Bengal . NNS VBP JJR IN CD NNS VBD IN DT NN WRB PRP VBD NNP IN DT JJ NN IN DT NNP IN NNP . Dozens of passengers have been rescued , but others are still missing . NNS IN NNS VBP VBN VBN , CC NNS VBP RB VBG . Officials say most of the passengers were Muslims returning to the town of Kakdwip after attending a religious festival . NNS VBP JJS IN DT NNS VBD NNPS VBG TO DT NN IN NNP IN VBG DT JJ NN . Authorities say the boat 's maximum capacity was 60 people . NNS VBP DT NN POS NN NN VBD CD NNS . Boating accidents are common in India , where vessels are often overloaded and safety standards are poor . VBG NNS VBP JJ IN NNP , WRB NNS VBP RB VBN CC NN NNS VBP JJ . Iraqi authorities say a suicide bomber killed four policemen in Baghdad and gunmen killed at least 11 other Iraqis in another town Thursday . JJ NNS VBP DT NN NN VBD CD NNS IN NNP CC NNS VBD IN JJS CD JJ NNS IN DT NN NNP . Police say the gunmen killed the 11 men and women in Latifiyah . NNS VBP DT NNS VBD DT CD NNS CC NNS IN NNP . They believe the victims were members of an extended Shi'ite family . PRP VBP DT NNS VBD NNS IN DT JJ NNP NN . To the north , in Baghdad , the suicide bomber blew himself up outside Iraq 's Interior Ministry . TO DT NN , IN NNP , DT NN NN VBD PRP RP IN NNP POS NNP NNP . In a separate attack in the capital , a roadside bomb killed a U.S. soldier . IN DT JJ NN IN DT NN , DT NN NN VBD DT NNP NN . U.S. Brigadier General Donald Alston said Thursday that U.S. forces expected insurgent attacks to increase after security measures imposed for Iraq 's elections were lifted . NNP NN NNP NNP NNP VBD NNP IN NNP NNS VBD JJ NNS TO VB IN NN NNS VBN IN NNP POS NNS VBD VBN . Meanwhile , al-Qaida in Iraq posted video footage on the Internet it says shows five Sudanese nationals , including a diplomat , abducted in Baghdad . RB , NNP IN NNP VBD NN NN IN DT NN PRP VBZ VBZ CD JJ NNS , VBG DT NN , VBN IN NNP . The group threatened to kill the five unless Sudan cuts ties with Iraq . DT NN VBD TO VB DT CD IN NNP VBZ NNS IN NNP . The chief of the Polisario rebels in Western Sahara has asked the African Union for help securing the release of prisoners held by Morocco . DT NN IN DT NNP NNS IN NNP NNP VBZ VBN DT NNP NNP IN NN VBG DT NN IN NNS VBN IN NNP . According to Algeria 's APS news agency , Mohamed Abdelaziz , secretary-general of the Polisario Front , wrote to the current chairman of the African Union , Nigerian President Olusegun Obasanjo , asking him to intercede with Morocco . VBG TO NNP POS NNP NN NN , NNP NNP , NN IN DT NNP NNP , VBD TO DT JJ NN IN DT NNP NNP , JJ NNP NNP NNP , VBG PRP TO VB IN NNP . Mr. Abdelaziz said it was unfair that Morocco was still holding the prisoners , even after the Polisario Front released hundreds of Moroccan soldiers this month . NNP NNP VBD PRP VBD JJ IN NNP VBD RB VBG DT NNS , RB IN DT NNP NNP VBD NNS IN JJ NNS DT NN . The letter said Morocco was holding 37 political prisoners and 151 prisoners of war . DT NN VBD NNP VBD VBG CD JJ NNS CC CD NNS IN NN . It said that some 500 people were missing . PRP VBD IN DT CD NNS VBD VBG . Rebels battled Moroccan troops over control of Western Sahara for 16 years , following the withdrawal of colonial power Spain . NNS VBD JJ NNS IN NN IN NNP NNP IN CD NNS , VBG DT NN IN JJ NN NNP . In 1991 , the United Nations brokered a cease-fire to end fighting . IN CD , DT NNP NNP VBD DT NN TO VB NN . Bolivia 's new president has cut top officials ' salaries by half and says the savings will be used for education and health programs . NNP POS JJ NN VBZ VBN JJ NNS POS NNS IN NN CC VBZ DT NNS MD VB VBN IN NN CC NN NNS . Evo Morales fulfilled his campaign promise to cut salaries after a cabinet meeting late Thursday . NNP NNP VBD PRP$ NN NN TO VB NNS IN DT NN NN JJ NNP . He announced a 57 percent pay cut for himself , to about $ 1,800 ( U.S. ) a month . PRP VBD DT CD NN NN NN IN PRP , TO RB $ CD LRB NNP RRB DT NN . He reduced his ministers ' salaries by half and decreed that no public official can make more than the president . PRP VBD PRP$ NNS POS NNS IN NN CC VBD IN DT JJ NN MD VB JJR IN DT NN . During his campaign , Mr. Morales promised a more austere budget for Bolivia , South America 's poorest country . IN PRP$ NN , NNP NNP VBD DT RBR JJ NN IN NNP , NNP NNP POS JJS NN . The coca farmer and workers ' rights activist was elected by a landslide in December . DT NN NN CC NNS POS NNS NN VBD VBN IN DT NN IN NNP . He is Bolivia 's first ethnically indigenous president . PRP VBZ NNP POS JJ RB JJ NN . Palestinian Authority President Mahmoud Abbas has urged international donors to keep aid flowing following last week 's election victory by the militant group Hamas . JJ NNP NNP NNP NNP VBZ VBN JJ NNS TO VB NN VBG VBG JJ NN POS NN NN IN DT JJ NN NNP . Mr. Abbas , who is not a member of Hamas , says the Palestinians will stick to their agreements with Israel . NNP NNP , WP VBZ RB DT NN IN NNP , VBZ DT NNS MD VB TO PRP$ NNS IN NNP . He spoke alongside German Chancellor Angela Merkel after talks Monday in Ramallah . PRP VBD JJ JJ NNP NNP NNP IN NNS NNP IN NNP . Ms. Merkel stressed her previous demand that Hamas renounce violence and accept Israel 's right to exist . NNP NNP VBD PRP$ JJ NN IN NNP NN NN CC VB NNP POS NN TO VB . EU foreign ministers say Hamas must take those two steps to ensure aid is not suspended . NNP JJ NNS VBP NNP MD VB DT CD NNS TO VB NN VBZ RB VBN . U.S. Secretary of State Condoleezza Rice made a similar demand Sunday . NNP NNP IN NNP NNP NNP VBD DT JJ NN NNP . In London , members of the so-called Middle East quartet - the U.S. , Russia , the EU and the United Nations - are meeting for talks on how to deal with a Hamas-led Palestinian government . IN NNP , NNS IN DT JJ NNP NNP NN IN DT NNP , NNP , DT NNP CC DT NNP NNPS : VBP VBG IN NNS IN WRB TO VB IN DT JJ JJ NN . Burma 's state media are hailing the capture of a rare , white elephant as a sign the country will enjoy peace , stability and prosperity under a new , elected government , as the media say it does under present military rule . NNP POS NN NNS VBP VBG DT NN IN DT JJ , JJ NN IN DT NN DT NN MD VB NN , NN CC NN IN DT JJ , JJ NN , IN DT NNS VBP PRP VBZ IN JJ JJ NN . The official New Light of Myanmar newspaper said Saturday that the elephant , captured Thursday in western Rakhine state , is a source of national pride . DT JJ NNP NNP IN NNP NN VBD NNP IN DT NN , VBN NNP IN JJ NNP NN , VBZ DT NN IN JJ NN . The paper said the pachyderm is estimated to be 18 years old and is the fifth white elephant captured since 2001 . DT NN VBD DT NN VBZ VBN TO VB CD NNS JJ CC VBZ DT JJ JJ NN VBN IN CD . Burma has been under harsh military rule since 1962 and elections scheduled for November have been widely criticized by the international community as a sham to keep the military in power . NNP VBZ VBN IN JJ JJ NN IN CD CC NNS VBN IN NNP VBP VBN RB VBN IN DT JJ NN IN DT NN TO VB DT JJ IN NN . Police in Mauritania say security forces have arrested the leaders of a terrorist cell with alleged links to al-Qaida . NNS IN NNP VBP NN NNS VBP VBN DT NNS IN DT JJ NN IN JJ NNS TO NNP . The detainees are said to be prominent leaders in the guerrilla group , Salafist Group for Preaching and Combat . DT NNS VBP VBN TO VB JJ NNS IN DT NN NN , NNP NNP IN NNP CC NNP . A statement from the national police says seven people were arrested earlier this week as they returned from the group 's training camp in Algeria . DT NN IN DT JJ NN VBZ CD NNS VBD VBN RBR DT NN IN PRP VBD IN DT NN POS NN NN IN NNP . The detainees are said to be among a total of 20 guerrillas who were sent to the camp for training . DT NNS VBP VBN TO VB IN DT NN IN CD NNS WP VBD VBN TO DT NN IN NN . A top U.S. general says the Israeli-Palestinian conflict is presenting challenges to the U.S. ability to advance its interests in the Middle East . DT JJ NNP NN VBZ DT JJ NN VBZ VBG NNS TO DT NNP NN TO VB PRP$ NNS IN DT NNP NNP . General David Petraeus , head of the U.S. Central Command , says the conflict foments anti-American sentiment in the region due to a perception of U.S. favoritism toward Israel . NNP NNP NNP , NN IN DT NNP NNP NNP , VBZ DT NN NNS JJ NN IN DT NN JJ TO DT NN IN NNP NN IN NNP . The U.S. Central Command oversees American forces in the Middle East and Central Asia . DT NNP NNP NNP VBZ JJ NNS IN DT NNP NNP CC NNP NNP . Petraeus 's comments to a Senate committee Tuesday came amid a U.S.-Israeli dispute about Israel 's plan to build 1,600 more housing units in disputed East Jerusalem . NNP POS NNS TO DT NNP NN NNP VBD IN DT JJ NN IN NNP POS NN TO VB CD JJR NN NNS IN JJ NNP NNP . Peace talks between Israelis and Palestinians have been stalled for more than a year primarily because of the construction of Jewish settlements . NN NNS IN NNS CC NNS VBP VBN VBN IN JJR IN DT NN RB IN IN DT NN IN JJ NNS . World oil prices hit record highs for the fifth day in a row Friday . NNP NN NNS VBD NN NNS IN DT JJ NN IN DT NN NNP . The price of crude oil for future delivery reached $ 66.15 a barrel in New York trading . DT NN IN JJ NN IN JJ NN VBD $ CD DT NN IN NNP NNP NN . Prices are up six percent this week and have more than doubled since the end of 2003 . NNS VBP RB CD NN DT NN CC VBP JJR IN VBD IN DT NN IN CD . Analysts blame the latest increases on strong demand for oil , a spate of refinery problems , and worries that Middle East tensions could crimp crude oil supplies . NNS VBP DT JJS NNS IN JJ NN IN NN , DT NN IN NN NNS , CC VBZ IN NNP NNP NNS MD VB JJ NN NNS . Soaring prices for imported oil also boosted the U.S. trade deficit six percent in June . VBG NNS IN VBN NN RB VBD DT NNP NN NN CD NN IN NNP . Friday 's report from the Commerce Department says the gap between what Americans sell abroad and what they buy reached $ 58.8 billion . NNP POS NN IN DT NNP NNP VBZ DT NN IN WP NNS VBP RB CC WP PRP VBP VBN $ CD CD . The politically sensitive U.S. trade deficit with China rose to a record $ 17.6 billion . DT RB JJ NNP NN NN IN NNP VBD TO DT NN $ CD CD . Colombia 's former president , Andres Pastrana , has been named the country 's next ambassador to the United States . NNP POS JJ NN , NNP NNP , VBZ VBN VBN DT NN POS JJ NN TO DT NNP NNPS . Mr. Pastrana , a lawyer and former television journalist , is replacing Luis Alberto Moreno . NNP NNP , DT NN CC JJ NN NN , VBZ VBG NNP NNP NNP . Mr. Pastrana led Colombia from 1998 to 2002 , but has spent the past several years living in Spain . NNP NNP VBD NNP IN CD TO CD , CC VBZ VBN DT JJ JJ NNS VBG IN NNP . His main objectives as ambassador to the United States will include promoting ' Plan Colombia ' - a U.S. sponsored anti-cocaine initiative . PRP$ JJ NNS IN NN TO DT NNP NNPS MD VB VBG `` NNP NNP `` : DT NNP VBD JJ NN . Over the past three years , the United States has spent more than $ 3 billion to help eradicate coca production in Colombia . IN DT JJ CD NNS , DT NNP NNPS VBZ VBN JJR IN $ CD CD TO VB VB NN NN IN NNP . Critics of the plan say it has done little to combat drug trafficking or stem Colombia 's drug-fueled civil war . NNS IN DT NN VBP PRP VBZ VBN RB TO VB NN NN CC VB NNP POS JJ JJ NN . The United Nations Human Rights Council has ordered a commission of inquiry to investigate alleged abuses by Israel in its campaign against Hezbollah in Lebanon . DT NNP NNP NNP NNP NNP VBZ VBN DT NN IN NN TO VB JJ NNS IN NNP IN PRP$ NN IN NNP IN NNP . Council members Friday voted 27-Nov in support of the inquiry at a special session in Geneva . NNP NNS NNP VBD CD IN NN IN DT NN IN DT JJ NN IN NNP . The 57-member Organization of the Islamic Conference requested the session and proposed the resolution that singled out Israel for condemnation and avoided any criticism of Hezbollah . DT JJ NNP IN DT NNP NNP VBD DT NN CC VBD DT NN WDT VBD RP NNP IN NN CC VBD DT NN IN NNP . Earlier Friday , the U.N. human rights chief urged the Council to take account of Hezbollah 's actions - in addition to Israel . RBR NNP , DT NNP NN NNS NN VBD DT NNP TO VB NN IN NNP POS NNS IN IN NN TO NNP . Louise Arbour said Israeli attacks affecting civilians continue unabated , but she also deplored Hezbollah 's ' indiscriminate shelling of densely populated centers in northern Israel . ' NNP NNP VBD JJ NNS VBG NNS VBP JJ , CC PRP RB VBD NNP POS `` JJ NN IN RB VBN NNS IN JJ NNP . `` And she noted repeated allegations of Hezbollah 's use of human shields . CC PRP VBD JJ NNS IN NNP POS NN IN JJ NNS . Western Sahara has a small market-based economy whose main industries are fishing , phosphate mining , and pastoral nomadism . NNP NNP VBZ DT JJ JJ NN WP$ JJ NNS VBP NN , JJ NN , CC JJ NN . The territory 's arid desert climate makes sedentary agriculture difficult , and Western Sahara imports much of its food . DT NN POS JJ NN NN VBZ JJ NN JJ , CC JJ NNP NNS NN IN PRP$ NN . The Moroccan Government administers Western Sahara 's economy and is a source of employment , infrastructure development , and social spending in the territory . DT JJ NNP VBZ NNP NNP POS NN CC VBZ DT NN IN NN , NN NN , CC JJ NN IN DT NN . Western Sahara 's unresolved legal status makes the exploitation of its natural resources a contentious issue between Morocco and the Polisario . NNP NNP POS JJ JJ NN VBZ DT NN IN PRP$ JJ NNS DT JJ NN IN NNP CC DT NNP . Morocco and the EU in July 2006 signed a four-year agreement allowing European vessels to fish off the coast of Morocco , including the disputed waters off the coast of Western Sahara . NNP CC DT NNP IN NNP CD VBD DT JJ NN VBG JJ NNS TO VB RP DT NN IN NNP , VBG DT JJ NNS IN DT NN IN JJ NNP . Oil has never been found in Western Sahara in commercially significant quantities , but Morocco and the Polisario have quarreled over who has the right to authorize and benefit from oil exploration in the territory . NN VBZ RB VBN VBN IN JJ NNP IN RB JJ NNS , CC NNP CC DT NNP VBP VBN IN WP VBZ DT NN TO VB CC VB IN NN NN IN DT NN . Western Sahara 's main long-term economic challenge is the development of a more diverse set of industries capable of providing greater employment and income to the territory . NNP NNP POS JJ JJ JJ NN VBZ DT NN IN DT RBR JJ NN IN NNS JJ IN VBG JJR NN CC NN TO DT NN . Since 1962 , when France stationed military personnel in the region , French Polynesia has changed from a subsistence agricultural economy to one in which a high proportion of the work force is either employed by the military or supports the tourist industry . IN CD , WRB NNP VBD JJ NNS IN DT NN , NNP NNP VBZ VBN IN DT NN JJ NN TO CD IN WDT DT JJ NN IN DT NN NN VBZ RB VBN IN DT JJ CC VBZ DT NN NN . With the halt of French nuclear testing in 1996 , the military contribution to the economy fell sharply . IN DT NN IN JJ JJ NN IN CD , DT JJ NN TO DT NN VBD RB . Tourism accounts for about one-fourth of GDP and is a primary source of hard currency earnings . NNP NNS IN IN NN IN NN CC VBZ DT JJ NN IN JJ NN NNS . Other sources of income are pearl farming and deep-sea commercial fishing . JJ NNS IN NN VBP JJ JJ CC JJ JJ NN . The small manufacturing sector primarily processes agricultural products . DT JJ NN NN RB VBZ JJ NNS . The territory benefits substantially from development agreements with France aimed principally at creating new businesses and strengthening social services . DT NN NNS RB IN NN NNS IN NNP VBN RB IN VBG JJ NNS CC VBG JJ NNS . Argentina benefits from rich natural resources , a highly literate population , an export-oriented agricultural sector , and a diversified industrial base . NNP NNS IN JJ JJ NNS , DT RB JJ NN , DT JJ JJ NN , CC DT JJ JJ NN . Although one of the world 's wealthiest countries 100 years ago , Argentina suffered during most of the 20th century from recurring economic crises , persistent fiscal and current account deficits , high inflation , mounting external debt , and capital flight . IN CD IN DT NN POS JJS NNS CD NNS RB , NNP VBD IN JJS IN DT JJ NN IN VBG JJ NNS , JJ JJ CC JJ NN NNS , JJ NN , VBG JJ NN , CC NN NN . A severe depression , growing public and external indebtedness , and a bank run culminated in 2001 in the most serious economic , social , and political crisis in the country 's turbulent history . DT JJ NN , VBG JJ CC JJ NN , CC DT NN NN VBN IN CD IN DT RBS JJ JJ , JJ , CC JJ NN IN DT NN POS JJ NN . Interim President Adolfo RODRIGUEZ SAA declared a default - the largest in history - on the government 's foreign debt in December of that year , and abruptly resigned only a few days after taking office . NNP NNP NNP NNP NNP VBD DT NN IN DT JJS IN NN : IN DT NN POS JJ NN IN NNP IN DT NN , CC RB VBD RB DT JJ NNS IN VBG NN . His successor , Eduardo DUHALDE , announced an end to the peso 's decade-long 1-to-1 peg to the US dollar in early 2002 . PRP$ NN , NNP NNP , VBD DT NN TO DT NN POS JJ JJ NN TO DT NNP NN IN JJ CD . The economy bottomed out that year , with real GDP 18 % smaller than in 1998 and almost 60 % of Argentines under the poverty line . DT NN VBD RP IN NN , IN JJ NN CD NN JJR IN IN CD CC RB CD NN IN NNS IN DT NN NN . Real GDP rebounded to grow by an average 8.5 % annually over the subsequent six years , taking advantage of previously idled industrial capacity and labor , an audacious debt restructuring and reduced debt burden , excellent international financial conditions , and expansionary monetary and fiscal policies . JJ NN VBD TO VB IN DT JJ CD NN RB IN DT JJ CD NNS , VBG NN IN RB VBN JJ NN CC NN , DT JJ NN NN CC JJ NN NN , JJ JJ JJ NNS , CC JJ JJ CC JJ NNS . Inflation also increased , however , during the administration of President Nestor KIRCHNER , which responded with price restraints on businesses , as well as export taxes and restraints , and beginning in early 2007 , with understating inflation data . NN RB VBD , RB , IN DT NN IN NNP NNP NNP , WDT VBD IN NN NNS IN NNS , RB RB IN NN NNS CC NNS , CC VBG IN JJ CD , IN VBG NN NNS . Cristina FERNANDEZ DE KIRCHNER succeeded her husband as President in late 2007 , and the rapid economic growth of previous years began to slow sharply the following year as government policies held back exports and the world economy fell into recession . NNP NNP NNP NNP VBD PRP$ NN IN NNP IN JJ CD , CC DT JJ JJ NN IN JJ NNS VBD TO VB RB DT JJ NN IN NN NNS VBD RB NNS CC DT NN NN VBD IN NN . The economy has rebounded strongly from the 2009 recession , but the government 's continued reliance on expansionary fiscal and monetary policies risks exacerbating already high inflation . DT NN VBZ VBN RB IN DT CD NN , CC DT NN POS JJ NN IN JJ JJ CC JJ NNS VBZ VBG RB JJ NN . The Dominican economy has been dependent on agriculture - primarily bananas - in years past , but increasingly has been driven by tourism as the government seeks to promote Dominica as an ' ecotourism ' destination . DT JJ NN VBZ VBN JJ IN NN : RB NNS : IN NNS JJ , CC RB VBZ VBN VBN IN NN IN DT NN VBZ TO VB NNP IN DT `` NN `` NN . In order to diversify the island 's production base , the government also is attempting to develop an offshore financial sector and has signed an agreement with the EU to develop geothermal energy resources . IN NN TO VB DT NN POS NN NN , DT NN RB VBZ VBG TO VB DT JJ JJ NN CC VBZ VBN DT NN IN DT NNP TO VB JJ NN NNS . In 2003 , the government began a comprehensive restructuring of the economy - including elimination of price controls , privatization of the state banana company , and tax increases - to address an economic and financial crisis and to meet IMF requirements . IN CD , DT NN VBD DT JJ NN IN DT NN : VBG NN IN NN NNS , NN IN DT NN NN NN , CC NN NNS : TO VB DT JJ CC JJ NN CC TO VB NNP NNS . This restructuring paved the way for an economic recovery - real growth for 2006 reached a two-decade high - and helped to reduce the debt burden , which remains at about 85 % of GDP . DT NN VBD DT NN IN DT JJ NN IN JJ NN IN CD VBD DT JJ JJ : CC VBD TO VB DT NN NN , WDT VBZ IN IN CD NN IN NN . Hurricane Dean struck the island in August 2007 causing damages equivalent to 20 % of GDP . NN NNP VBD DT NN IN NNP CD VBG NNS JJ TO CD NN IN NN . In 2009 , growth slowed as a result of the global recession ; it picked up only slightly in 2010 . IN CD , NN VBD IN DT NN IN DT JJ NN ; PRP VBD RP RB RB IN CD . Burundi is a landlocked , resource-poor country with an underdeveloped manufacturing sector . NNP VBZ DT JJ , JJ NN IN DT JJ NN NN . The economy is predominantly agricultural which accounts for just over 30 % of GDP and employs more than 90 % of the population . DT NN VBZ RB JJ WDT VBZ IN RB IN CD NN IN NN CC VBZ JJR IN CD NN IN DT NN . Burundi 's primary exports are coffee and tea , which account for 90 % of foreign exchange earnings , though exports are a relatively small share of GDP . NNP POS JJ NNS VBP NN CC NN , WDT VBP IN CD NN IN JJ NN NNS , IN NNS VBP DT RB JJ NN IN NN . Burundi 's export earnings - and its ability to pay for imports - rests primarily on weather conditions and international coffee and tea prices . NNP POS NN NNS : CC PRP$ NN TO VB IN NNS : VBZ RB IN NN NNS CC JJ NN CC NN NNS . The Tutsi minority , 14 % of the population , dominates the coffee trade . DT NNP NN , CD NN IN DT NN , VBZ DT NN NN . An ethnic-based war that lasted for over a decade resulted in more than 2,00,000 deaths , forced more than 48,000 refugees into Tanzania , and displaced 1,40,000 others internally . DT JJ NN WDT VBD IN IN DT NN VBD IN JJR IN CD NNS , VBD JJR IN CD NNS IN NNP , CC VBD CD NNS RB . Only one in two children go to school , and approximately one in 15 adults has HIV / AIDS . RB CD IN CD NNS VBP TO NN , CC RB CD IN CD NNS VBZ NNP NNP NNP . Food , medicine , and electricity remain in short supply . NNP , NN , CC NN VBP IN JJ NN . Less than 2 % of the population has electricity in its homes . RBR IN CD NN IN DT NN VBZ NN IN PRP$ NNS . Burundi 's GDP grew around 4 % annually in 2006 - 10 . NNP POS NN VBD RB CD NN RB IN CD IN CD . Political stability and the end of the civil war have improved aid flows and economic activity has increased , but underlying weaknesses - a high poverty rate , poor education rates , a weak legal system , a poor transportation network , overburdened utilities , and low administrative capacity - risk undermining planned economic reforms . JJ NN CC DT NN IN DT JJ NN VBP VBN NN NNS CC JJ NN VBZ VBN , CC VBG NNS IN DT JJ NN NN , JJ NN NNS , DT JJ JJ NN , DT JJ NN NN , VBD NNS , CC JJ JJ NN IN NN VBG JJ JJ NNS . The purchasing power of most Burundians has decreased as wage increases have not kept up with inflation . DT NN NN IN JJS NNS VBZ VBN IN NN NNS VBP RB VBN RP IN NN . Burundi will continue to remain heavily dependent on aid from bilateral and multilateral donors ; the delay of funds after a corruption scandal cut off bilateral aid in 2007 reduced government 's revenues and its ability to pay salaries . NNP MD VB TO VB RB JJ IN NN IN JJ CC JJ NNS ; DT NN IN NNS IN DT NN NN VBD RP JJ NN IN CD JJ NN POS NNS CC PRP$ NN TO VB NNS . Burundi joined the East African Community , which should boost Burundi 's regional trade ties , and received $ 700 million in debt relief in 2009 . NNP VBD DT NNP NNP NNP , WDT MD VB NNP POS JJ NN NNS , CC VBD $ CD CD IN NN NN IN CD . Government corruption is also hindering the development of a healthy private sector as companies seek to navigate an environment with ever-changing rules . NN NN VBZ RB VBG DT NN IN DT JJ JJ NN IN NNS VBP TO VB DT NN IN JJ NNS . A TRAVELER hired an Ass to convey him to a distant place . DT NN VBD DT NN TO VB PRP TO DT JJ NN . The day being intensely hot , and the sun shining in its strength , the Traveler stopped to rest , and sought shelter from the heat under the Shadow of the Ass . DT NN VBG RB JJ , CC DT NN VBG IN PRP$ NN , DT NNP VBD TO VB , CC VBD NN IN DT NN IN DT NNP IN DT NNP . As this afforded only protection for one , and as the Traveler and the owner of the Ass both claimed it , a violent dispute arose between them as to which of them had the right to the Shadow . IN DT VBD RB NN IN CD , CC IN DT NN CC DT NN IN DT NNP DT VBD PRP , DT JJ NN VBD IN PRP IN TO WDT IN PRP VBD DT NN TO DT NNP . The owner maintained that he had let the Ass only , and not his Shadow . DT NN VBD IN PRP VBD VBN DT NNP RB , CC RB PRP$ NN . The Traveler asserted that he had , with the hire of the Ass , hired his Shadow also . DT NNP VBD IN PRP VBD , IN DT NN IN DT NNP , VBD PRP$ NNP RB . The quarrel proceeded from words to blows , and while the men fought , the Ass galloped off . DT NN VBD IN NNS TO NNS , CC IN DT NNS VBD , DT NNP VBD RP . In quarreling about the shadow we often lose the substance . IN VBG IN DT NN PRP RB VBP DT NN . A FLEA settled upon the bare foot of a Wrestler and bit him , causing the man to call loudly upon Hercules for help . DT NN VBD IN DT JJ NN IN DT NN CC VBD PRP , VBG DT NN TO VB RB IN NNP IN NN . When the Flea a second time hopped upon his foot , he groaned and said , ' O Hercules ! if you will not help me against a Flea , how can I hope for your assistance against greater antagonists ? ' WRB DT NN DT JJ NN VBD IN PRP$ NN , PRP VBD CC VBD , `` UH NNP . IN PRP MD RB VB PRP IN DT NN , WRB MD PRP VB IN PRP$ NN IN JJR NNS . `` In the old days , when men were allowed to have many wives , a middle-aged Man had one wife that was old and one that was young ; each loved him very much , and desired to see him like herself . IN DT JJ NNS , WRB NNS VBD VBN TO VB JJ NNS , DT JJ NN VBD CD NN WDT VBD JJ CC CD WDT VBD JJ ; DT VBD PRP RB RB , CC VBN TO VB PRP IN PRP . Now the Man 's hair was turning grey , which the young Wife did not like , as it made him look too old for her husband . RB DT NN POS NN VBD VBG NN , WDT DT JJ NNP VBD RB VB , IN PRP VBD PRP VB RB JJ IN PRP$ NN . So every night she used to comb his hair and pick out the white ones . RB DT NN PRP VBD TO VB PRP$ NN CC VB RP DT JJ NNS . But the elder Wife saw her husband growing grey with great pleasure , for she did not like to be mistaken for his mother . CC DT NN NNP VBD PRP$ NN VBG NN IN JJ NN , IN PRP VBD RB VB TO VB VBN IN PRP$ NN . So every morning she used to arrange his hair and pick out as many of the black ones as she could . RB DT NN PRP VBD TO VB PRP$ NN CC VB RP IN NN IN DT JJ NNS IN PRP MD . The consequence was the Man soon found himself entirely bald . DT NN VBD DT NN RB VBD PRP RB JJ . Yield to all and you will soon have nothing to yield . NN TO DT CC PRP MD RB VB DT TO VB . Russian President Vladimir Putin says he is optimistic a deal with Iran on its controversial nuclear program can be reached . JJ NNP NNP NNP VBZ PRP VBZ JJ DT NN IN NNP IN PRP$ JJ JJ NN MD VB VBN . During a visit to Hungary Tuesday , Mr. Putin said it is quite possible to reach agreement on Moscow 's proposal to enrich uranium on Russian soil for Iran 's nuclear energy needs . IN DT NN TO NNP NNP , NNP NNP VBD PRP VBZ RB JJ TO VB NN IN NNP POS NN TO VB NN IN JJ NN IN NNP POS JJ NN NNS . Iran has said it agrees in principle to the deal . NNP VBZ VBN PRP VBZ IN NN TO DT NN . But it is unclear if it would also agree to stop domestic uranium enrichment - a demand of Russia and the West . CC PRP VBZ JJ IN PRP MD RB VB TO VB JJ NN NN IN DT NN IN NNP CC DT NNP . A Japanese official Tuesday quoted Iran 's visiting Foreign Minister Manouchehr Mottaki as saying that the Russian plan would be a bridge between Iran 's right to peaceful nuclear energy and global trust in Tehran . DT JJ NN NNP VBD NNP POS VBG NNP NNP NNP NNP IN VBG IN DT JJ NN MD VB DT NN IN NNP POS NN TO JJ JJ NN CC JJ NN IN NNP . The United States and European Union say Iran is pursuing nuclear weapons - a charge it denies . DT NNP NNPS CC NNP NNP VBP NNP VBZ VBG JJ NNS IN DT NN PRP VBZ . An international media group says it is disturbed by the recent arrests of two television broadcasters by Afghan authorities . DT JJ NNS NN VBZ PRP VBZ VBN IN DT JJ NNS IN CD NN NNS IN JJ NNS . Reporters Without Borders says Fahim Kohdamani of Emroz TV and Ajmal Alamzai of Ariana TV were arrested on Monday for airing programs deemed anti-Islamic and for speaking with Taliban representatives . NNS IN NNP VBZ NNP NNP IN NNP NNP CC NNP NNP IN NNP NNP VBD VBN IN NNP IN VBG NNS VBN JJ CC IN VBG IN NNP NNS . It says Kohdamani was arrested for broadcasting music and hosting an entertainment program . PRP VBZ NNP VBD VBN IN NN NN CC VBG DT NN NN . In a statement Tuesday , the group says his arrest appeared to be linked to a letter of complaint sent to President Hamid Karzai by Muslim clerics . IN DT NN NNP , DT NN VBZ PRP$ NN VBD TO VB VBN TO DT NN IN NN VBN TO NNP NNP NNP IN NNP NNS . Alamzai , the host of Ariana TV 's program ' Didadgah , ' was detained for speaking with a Taliban member during a program that discussed U.S. efforts to reach out to moderate Islamic insurgents . NNP , DT NN IN NNP NN POS NN `` NNP , `` VBD VBN IN NN IN DT NNP NN IN DT NN WDT VBD NNP NNS TO VB RP TO VB NNP NNS . The statement says he was released late Monday evening . DT NN VBZ PRP VBD VBN JJ NNP NN . North Korea says it will not dismantle its nuclear program before any new talks aimed at eliminating its access to nuclear weapons . NNP NNP VBZ PRP MD RB VB PRP$ JJ NN IN DT JJ NNS VBN IN VBG PRP$ NN TO JJ NNS . The commentary in the official Rodong Sinmun newspaper also says Pyongyang has neither opposed nor shunned the six-party talks on its nuclear ambitions . DT NN IN DT JJ NNP NNP NN RB VBZ NNP VBZ RB VBN CC VBN DT JJ NNS IN PRP$ JJ NNS . The newspaper comments come amid renewed speculation that a new round of negotiations could begin within the next few weeks . DT NN NNS VBP IN JJ NN IN DT JJ NN IN NNS MD VB IN DT JJ JJ NNS . Three rounds of talks have been held in Beijing , but a fourth session scheduled for June , 2004 failed to take place because North Korea boycotted the process over what it called a hostile U.S. attitude . CD NNS IN NNS VBP VBN VBN IN NNP , CC DT JJ NN VBN IN NNP , CD VBD TO VB NN IN NNP NNP VBD DT NN IN WP PRP VBD DT JJ NNP NN . But earlier this month , North Korean leader Kim Jong-il said the talks could resume as early as July . CC RBR DT NN , JJ JJ NN NNP NNP VBD DT NNS MD VB RB JJ IN NNP . Authorities in Haiti say gunmen shot and killed two police officers and a civilian Monday in an apparent ambush in Port-au-Prince . NNS IN NNP VBP NNS VBD CC VBD CD NNS NNS CC DT JJ NNP IN DT JJ NN IN NNP . Police say gunman attacked the car the officers and civilian were driving in . NNS VBP NN VBD DT NN DT NNS CC JJ VBD VBG IN . The shooting follows several weeks of attacks that officials say are aimed at destabilizing the country ahead of elections scheduled for later this year . DT NN VBZ JJ NNS IN NNS WDT NNS VBP VBP VBN IN VBG DT NN RB IN NNS VBN IN RB DT NN . The United Nations mission and Haitian police have struggled to restore order to Haiti for more than a year , after an armed uprising ousted President Jean-Bertrand Aristide . DT NNP NNPS NN CC JJ NNS VBP VBN TO VB NN TO VB IN JJR IN DT NN , IN DT JJ NN VBD NNP NNP NNP . A U.S. Congressional investigation into Hurricane Katrina blames failures at all levels of government for the suffering and loss of life that resulted from last August 's storm . DT NNP JJ NN IN NNP NNP VBZ NNS IN DT NNS IN NN IN DT NN CC NN IN NN WDT VBD IN JJ NNP POS NN . U.S. news organizations have published parts of a draft of the final document that is to be presented Wenesday to Congress . NNP NN NNS VBP VBN NNS IN DT NN IN DT JJ NN WDT VBZ TO VB VBN NNP IN NNP . The report says the federal government 's response to Katrina was marked by ineffectiveness and organizational paralysis . DT NN VBZ DT JJ NN POS NN TO NNP VBD VBN IN NN CC JJ NN . It also faulted local and state officials in Louisiana for delaying mandatory evacuations . PRP RB VBD JJ CC NN NNS IN NNP IN VBG JJ NNS . The report notes that problems first noted after the September 11 terrorist attacks - such as the inability of first responders to communicate with each - were again problems during the Katrina response . DT NN VBZ IN NNS RB VBD IN DT NNP CD JJ NNS : JJ IN DT NN IN JJ NNS TO VB IN DT : VBD RB NNS IN DT NNP NN . Democrats , who wanted an independent probe , boycotted the investigation carried out by Republican members of the House of Representatives . NNPS , WP VBD DT JJ NN , VBD DT NN VBN RP IN JJ NNS IN DT NNP IN NNPS . Egypt says it will not ratify a key treaty banning nuclear tests unless Israel first signs a separate agreement calling for a halt to the spread of atomic bombs . NNP VBZ PRP MD RB VB DT JJ NN VBG JJ NNS IN NNP JJ NNS DT JJ NN VBG IN DT NN TO DT NN IN JJ NNS . In Cairo Friday , Foreign Minister Ahmed Aboul Gheit linked Egyptian ratification of the Comprehensive Nuclear Test Ban Treaty to Israeli acceptance of the Nuclear Non-Proliferation treaty , or NPT . IN NNP NNP , NNP NNP NNP NNP NNP VBD JJ NN IN DT NNP NNP NNP NNP NNP TO JJ NN IN DT NNP NNP NN , CC NNP . Mr. Gheit said the refusal of Israel to sign the non-proliferation accord is a threat to the stability of the entire Middle East . NNP NNP VBD DT NN IN NNP TO VB DT JJ NN VBZ DT NN TO DT NN IN DT JJ NNP NNP . All Middle Eastern countries except Israel have signed the NPT , which aims to stop the spread of nuclear weapons . DT NNP NNP NNS IN NNP VBP VBN DT NNP , WDT VBZ TO VB DT NN IN JJ NNS . Israel and Egypt have both signed the other treaty banning nuclear tests , but neither nation has ratified it . NNP CC NNP VBP DT VBN DT JJ NN VBG JJ NNS , CC DT NN VBZ VBN PRP . Israel has not officially stated that it has nuclear weapons , but it is widely believed to have about 200 nuclear warheads . NNP VBZ RB RB VBN IN PRP VBZ JJ NNS , CC PRP VBZ RB VBN TO VB RB CD JJ NNS . Security in Nepal 's capital remained tight Sunday , as police searched an area south of Kathmandu for rebels who launched a deadly pre-dawn attack on government troops . NN IN NNP POS NN VBD JJ NNP , IN NN VBD DT NN NN IN NNP IN NNS WP VBD DT JJ JJ NN IN NN NNS . The military says 17 rebels and at least six security personnel were killed in the fighting , which came as opponents of King Gyanendra 's direct rule continued to defy a government crackdown . DT JJ VBZ CD NNS CC IN JJS CD NN NNS VBD VBN IN DT NN , WDT VBD IN NNS IN NNP NNP POS JJ NN VBD TO VB DT NN NN . Elsewhere , authorities say suspected rebels shot dead a candidate for local office in the southern town of Janakpur . RB , NNS VBP JJ NNS VBD RB DT NN IN JJ NN IN DT JJ NN IN NNP . The victim was identified as the local leader of a party that supports King Gyanendra . DT NN VBD VBN IN DT JJ NN IN DT NN WDT VBZ NNP NNP . Authorities say at least 30 protesters were arrested in the capital Sunday . NNS VBP IN JJS CD NNS VBD VBN IN DT NN NNP . However , the royal government released former Prime Minister Gijira Prasad Koirala and several other leaders placed under house arrest last week . RB , DT JJ NN VBD JJ NNP NNP NNP NNP NNP CC JJ JJ NNS VBN IN NN NN JJ NN . Nepal 's main political parties vowed to continue the protests and called for a nationwide strike on Thursday . NNP POS JJ JJ NNS VBD TO VB DT NNS CC VBN IN DT JJ NN IN NNP . The U.S. banking industry lost more than $ 26 billion in the last three months of 2008 , the first quarterly loss in 18 years . DT NNP NN NN VBD JJR IN $ CD CD IN DT JJ CD NNS IN CD , DT JJ JJ NN IN CD NNS . The number of banks that regulators classify as ' troubled ' rose nearly 50 percent during the same quarter . DT NN IN NNS IN NNS VBP IN `` VBN `` VBD RB CD NN IN DT JJ NN . Banks lost money as the recession made it harder for borrowers to repay loans . NNS VBD NN IN DT NN VBD PRP JJR IN NNS TO VB NNS . Banks were also hurt by losses on their investments in stocks and other areas . NNS VBD RB VBN IN NNS IN PRP$ NNS IN NNS CC JJ NNS . The U.S. government 's Federal Deposit Insurance Corporation says the number of banks that actually fail is growing , with 25 going under last year . DT NNP NN POS NNP NNP NNP NNP VBZ DT NN IN NNS WDT RB VBP VBZ VBG , IN CD VBG IN JJ NN . Although the weak economy has resulted in increased losses for banks , the American Bankers Association said Thursday 97 percent of all the country 's banks are still rated ' well capitalized ' - meaning they have a significant financial buffer against losses . IN DT JJ NN VBZ VBN IN JJ NNS IN NNS , DT NNP NNPS NNP VBD NNP CD NN IN PDT DT NN POS NNS VBP RB VBN `` RB VBN `` : VBG PRP VBP DT JJ JJ NN IN NNS . There are more than 8,000 banks in the United States insured by the FDIC . EX VBP JJR IN CD NNS IN DT NNP NNPS VBN IN DT NNP . The Afghan government has welcomed the extradition of 14 Taleban insurgents from Pakistan to Kabul , but also urged its neighbor to hunt down more suspected militants hiding in Pakistan . DT JJ NN VBZ VBN DT NN IN CD NNP NNS IN NNP TO NNP , CC RB VBD PRP$ NN TO VB RP RBR JJ NNS VBG IN NNP . A government spokesman says such moves will strengthen relations between the two countries and will open a new era of cooperation in the war against terrorism . DT NN NN VBZ JJ NNS MD VB NNS IN DT CD NNS CC MD VB DT JJ NN IN NN IN DT NN IN NN . Among those extradited were purported Taleban spokesmen Latif Hakimi and Mohammad Yasir . IN DT VBN VBD JJ NNP NNS NNP NNP CC NNP NNP . Afghan state television showed Afghan soldiers leading the 14 men , all blindfolded , off a military plane late Wednesday . JJ NN NN VBD JJ NNS VBG DT CD NNS , DT VBN , IN DT JJ NN JJ NNP . Afghan officials say they will be put on trial for their role in violence against government targets , as well as Afghan and coalition forces . JJ NNS VBP PRP MD VB VBN IN NN IN PRP$ NN IN NN IN NN NNS , RB RB IN JJ CC NN NNS . Meanwhile , a bomb attached to a bicycle blew up Thursday , in the southern city of Kandahar , killing a policeman and wounding two civilians . RB , DT NN VBN TO DT NN VBD RP NNP , IN DT JJ NN IN NNP , VBG DT NN CC VBG CD NNS . Lebanese officials say rescuers have recovered two bodies from the waters off Lebanon 's northern coast where a cargo ship carrying 83 crew members and livestock sank late Thursday . JJ NNS VBP NNS VBP VBN CD NNS IN DT NNS IN NNP POS JJ NN WRB DT NN NN VBG CD NN NNS CC NN VBD JJ NNP . The officials say Lebanese navy boats and United Nations vessels participating in the rescue mission also pulled at least 25 people from the rough Mediterranean waters . DT NNS VBP JJ NN NNS CC NNP NNP NNS VBG IN DT NN NN RB VBD IN JJS CD NNS IN DT JJ NNP NNS . Local authorities say the Panamanian-flagged vessel , carrying livestock from Uruguay to the Syrian port of Tartous , capsized some 17 kilometers off the Lebanese port of Tripoli in a heavy rainstorm . JJ NNS VBP DT JJ NN , VBG NN IN NNP TO DT JJ NN IN NNP , VBD DT CD NNS IN DT JJ NN IN NNP IN DT JJ NN . They say the crew sent a distress call but the vessel sank before the rescue ships could reach the area . PRP VBP DT NN VBD DT NN NN CC DT NN VBD IN DT NN NNS MD VB DT NN . Thursday 's accident came less than a week after a Togolese-flagged cargo ship with 12 crew on board sank off the Lebanese coast . NNP POS NN VBD JJR IN DT NN IN DT JJ NN NN IN CD NN IN NN VBD IN DT JJ NN . Six crew members were rescued but the rest remain missing . CD NN NNS VBD VBN CC DT NN VBP JJ . Courtney Love plans to sell most of the items which once belonged to her husband , former Nirvana leader Kurt Cobain . NNP NNP VBZ TO VB JJS IN DT NNS WDT RB VBD TO PRP$ NN , JJ NNP NN NNP NNP . Comparing her house to a ' mausoleum , ' the 42-year-old rock singer says she plans to hold a charity auction . VBG PRP$ NN TO DT `` NN , `` DT JJ NN NN VBZ PRP VBZ TO VB DT NN NN . Love and Cobain wed in 1992 and later that year had a daughter , Frances Bean . NNP CC NNP VBD IN CD CC RB DT NN VBD DT NN , NNP NNP . Kurt Cobain committed suicide in 1994 . NNP NNP VBD NN IN CD . Speaking to AOL Music , Love says ' My daughter does n't need to inherit a giant ... bag full of flannel ... shirts . ' VBG TO NNP NNP , NNP VBZ `` PRP$ NN VBZ RB VB TO VB DT NN : NN JJ IN NN : NNS . `` She says Frances will get one of Cobain 's sweaters , a guitar , and the lyrics to Nirvana 's biggest hit , ' Smells Like Teen Spirit . ' PRP VBZ NNS MD VB CD IN NNP POS NNS , DT NN , CC DT NNS IN NNP POS JJS NN , `` NNPS NNP NNP NNP . `` AOL publicist Kurt Patat gave no date for the auction . NNP NN NNP NNP VBD DT NN IN DT NN . U.S. troops have killed eight insurgents in western Iraq , as military officials dispute claims that militants have kidnapped two U.S. Marines . NNP NNS VBP VBN CD NNS IN JJ NNP , IN JJ NNS VBP NNS IN NNS VBP VBN CD NNP NNS . About one thousand U.S. troops launched the offensive near the Syrian border , in the latest attempt to drive insurgents from the area . IN CD CD NNP NNS VBD DT NN IN DT JJ NN , IN DT JJS NN TO VB NNS IN DT NN . Residents said the operation appeared to be widening Sunday to several nearby towns . NNS VBD DT NN VBD TO VB VBG NNP TO JJ JJ NNS . Meanwhile , U.S. officials said they had no reason to believe an alleged statement from al Qaida in Iraq claiming to have kidnapped two Marines involved in the military offensive . RB , NNP NNS VBD PRP VBD DT NN TO VB DT JJ NN IN NNP NNP IN NNP VBG TO VB VBN CD NNS VBN IN DT JJ NN . In a statement , U.S. officials said they were conducting checks to verify that all Marines were accounted for . IN DT NN , NNP NNS VBD PRP VBD VBG NNS TO VB IN DT NNS VBD VBN IN . An Islamist web site carried the kidnapping claim , which demanded the release of female Sunni Muslim prisoners . DT NNP NN NN VBD DT NN NN , WDT VBD DT NN IN JJ NNP NNP NNS . In Baghdad , militants freed the brother of Interior Minister Bayan Jabor , who was kidnapped one day earlier near the Sadr City district . IN NNP , NNS VBD DT NN IN NNP NNP NNP NNP , WP VBD VBN CD NN RBR IN DT NNP NNP NN . Al-Qaida has claimed responsibility for the July 7 London subway and bus bombings that killed 52 people . NNP VBZ VBN NN IN DT NNP CD NNP NN CC NN NNS WDT VBD CD NNS . The Arabic language television network al-Jazeera Thursday broadcast what it said is a videotape of one of the bombers , Mohammad Sidique Khan , made just before the attack . DT JJ NN NN NN NNP NNP VBD WP PRP VBD VBZ DT NN IN CD IN DT NNS , NNP NNP NNP , VBN RB IN DT NN . On the video , he blames the bombings on British support for the war in Iraq and what he calls atrocities against Muslims . IN DT NN , PRP VBZ DT NNS IN JJ NN IN DT NN IN NNP CC WP PRP VBZ NNS IN NNS . British officials say four suicide bombers were killed in the July 7 attacks . JJ NNS VBP CD NN NNS VBD VBN IN DT NNP CD NNS . An attempted bombing two weeks later failed . DT JJ NN CD NNS RB VBD . It is still not clear if there is a direct tie between the two attacks . PRP VBZ RB RB JJ IN EX VBZ DT JJ NN IN DT CD NNS . The videotape also included comments from al-Qaida 's second-in-command , Ayman al-Zawahiri . DT NN RB VBD NNS IN NNP POS NN , NNP NNP . He warned that British Prime Minster Tony Blair 's policies would bring more destruction to the British people . PRP VBD IN JJ NNP NNP NNP NNP POS NNS MD VB JJR NN TO DT JJ NNS . The British Foreign Office said it will not comment on any aspects of the tape . DT JJ NNP NNP VBD PRP MD RB VB IN DT NNS IN DT NN . Several people believed to be North Korean asylum seekers have entered a South Korean school in Dalian in northeast China . JJ NNS VBN TO VB JJ JJ NN NNS VBP VBN DT JJ JJ NN IN NNP IN NN NNP . South Korea 's Yonhap news agency says the group of nine includes three children . NNP NNP POS NNP NN NN VBZ DT NN IN CD VBZ CD NNS . Hundreds of North Koreans have broken into diplomatic embassies and foreign schools in China in recent years seeking asylum . NNS IN NNP NNS VBP VBN IN JJ NNS CC JJ NNS IN NNP IN JJ NNS VBG NN . Human rights groups say the defectors are seeking refuge from the hunger and repression in their homeland . JJ NNS NNS VBP DT NNS VBP VBG NN IN DT NN CC NN IN PRP$ NN . China has an agreement with Pyongyang to send asylum seekers back home , but it has allowed many to travel to South Korea via a third country . NNP VBZ DT NN IN NNP TO VB NN NNS RB NN , CC PRP VBZ VBN JJ TO VB TO NNP NNP IN DT JJ NN . Reports from China say protests broke out in the eastern province of Zhejiang at a factory suspected of pollution . NNS IN NNP VBP NNS VBD RP IN DT JJ NN IN NNP IN DT NN VBN IN NN . Witnesses are quoted Monday as saying several villagers were injured when they clashed with police Saturday outside the Tian Neng Battery Company in Meishan . NNS VBP VBN NNP IN VBG JJ NNS VBD VBN WRB PRP VBD IN NN NNP IN DT NNP NNP NNP NN IN NNP . The protesters are said to have burned several police cars and damaged factory and government buildings . DT NNS VBP VBN TO VB VBN JJ NNS NNS CC VBN NN CC NN NNS . There has been no official report of the violence . EX VBZ VBN DT JJ NN IN DT NN . Local residents say the battery factory is responsible for high levels of lead that have poisoned their children . JJ NNS VBP DT NN NN VBZ JJ IN JJ NNS IN NN WDT VBP VBN PRP$ NNS . The protest over industrial pollution is the third this year in Zhejiang province . DT NN IN JJ NN VBZ DT JJ DT NN IN NNP NN . China has been struck by violent protests in recent months as rural villagers vent anger over industrial pollution and allegations of corruption and unfair land distribution . NNP VBZ VBN VBN IN JJ NNS IN JJ NNS IN JJ NNS JJ NN IN JJ NN CC NNS IN NN CC JJ NN NN . Former Haitian president Rene Preval has been declared the winner of the Caribbean nation 's presidential election . JJ JJ NN NNP NNP VBZ VBN VBN DT NN IN DT NNP NN POS JJ NN . Haiti 's Provisional Electoral Council said Thursday , Mr. Preval received 51 percent of the votes cast last week . NNP POS NNP NNP NNP VBD NNP , NNP NNP VBD CD NN IN DT NNS VBN JJ NN . His total was raised after a last minute decision to discount 85,000 blank ballots . PRP$ NN VBD VBN IN DT JJ NN NN TO VB CD JJ NNS . Haitian Prime Minister Gerard Latortue told the Associated Press the government acknowledged the final decision of the electoral council and saluted Mr. Preval 's election . JJ NNP NNP NNP NNP VBD DT NNP NNP DT NN VBD DT JJ NN IN DT JJ NN CC VBD NNP NNP POS NN . The announcement follows five days of protests by Preval supporters who alleged massive voter fraud . DT NN VBZ CD NNS IN NNS IN NNP NNS WP VBD JJ NN NN . Mr. Preval urged his supporters to demonstrate peacefully . NNP NNP VBD PRP$ NNS TO VB RB . Haitian officials stopped the vote count Wednesday after thousands of ballots were found burning in a trash heap outside the capital , Port-au-Prince . JJ NNS VBD DT NN NN NNP IN NNS IN NNS VBD VBN VBG IN DT NN NN IN DT NN , NNP . Nepal 's government says it will push ahead with planned parliamentary elections even if Maoist rebels do not come the negotiating table by January 13 . NNP POS NN VBZ PRP MD VB RB IN JJ JJ NNS RB IN NNP NNS VBP RB VB DT NN NN IN NNP CD . Prime Minister Sher Bahadur Deuba told journalists in Kathmandu Thursday it is their last chance to present their demands for ending their decades-long violent campaign . NN NN NNP NNP NNP VBD NNS IN NNP NNP PRP VBZ PRP$ JJ NN TO VB PRP$ NNS IN VBG PRP$ JJ JJ NN . He said he is determined to set the process for holding parliamentary elections in motion with or without the rebels ' participation . PRP VBD PRP VBZ VBN TO VB DT NN IN VBG JJ NNS IN NN IN CC IN DT NNS POS NN . There was no immediate comment from the guerrillas , who have demanded United Nations or an international human rights group mediate the talks with Kathmandu . EX VBD DT JJ NN IN DT NNS , WP VBP VBN NNP NNPS CC DT JJ JJ NNS NN VBP DT NNS IN NNP . Violence has surged since peace talks failed last year after the Maoists demanded election of a special assembly to decide the future of the monarchy . NN VBZ VBN IN NN NNS VBD JJ NN IN DT NNPS VBD NN IN DT JJ NN TO VB DT NN IN DT NN . The rebels want to replace the constitutional monarchy with a communist state . DT NNS VBP TO VB DT JJ NN IN DT JJ NN . Ukrainian opposition leader Yulia Tymoshenko says the United States understands the problems Ukraine faces in its democratic development , and its need for energy security . JJ NN NN NNP NNP VBZ DT NNP NNPS VBZ DT NNS NNP VBZ IN PRP$ JJ NN , CC PRP$ NN IN NN NN . Tymoshenko met in Washington Thursday with Vice President Dick Cheney and National Security Advisor Stephen Hadley . NNP VBD IN NNP NNP IN NNP NNP NNP NNP CC NNP NNP NNP NNP NNP . The former Ukrainian prime minister is scheduled to meet with Secretary of State Condoleezza Rice Friday . DT JJ JJ JJ NN VBZ VBN TO VB IN NNP IN NNP NNP NNP NNP . After her meetings Thursday , Tymoshenko said Ukraine faces a real threat of losing its political sovereignty , independence and integration with the European community for the first time in 15 years . IN PRP$ NNS NNP , NNP VBD NNP VBZ DT JJ NN IN VBG PRP$ JJ NN , NN CC NN IN DT JJ NN IN DT JJ NN IN CD NNS . Ukraine is struggling with a political stalemate between supporters of West-leaning reformer President Viktor Yushchenko , and those of Prime Minister Viktor Yanukovych , who wants stronger ties with Russia . NNP VBZ VBG IN DT JJ NN IN NNS IN JJ NN NNP NNP NNP , CC DT IN NNP NNP NNP NNP , WP VBZ JJR NNS IN NNP . President Yushchenko and Tymoshenko were once allies , but their relationship deteriorated because of bitter political infighting a year after the 2004 Orange Revolution that swept Mr. Yushchenko to power . NNP NNP CC NNP VBD RB NNS , CC PRP$ NN VBN IN IN JJ JJ NN DT NN IN DT CD NNP NN WDT VBD NNP NNP TO NN . Pakistan says it would welcome India 's participation in a proposed gas pipeline with Iran worth $ 4 billion dollars , but says that the project will go ahead even if New Delhi does not join it . NNP VBZ PRP MD VB NNP POS NN IN DT VBN NN NN IN NNP JJ $ CD CD NNS , CC VBZ IN DT NN MD VB RB RB IN NNP NNP VBZ RB VB PRP . Pakistani Foreign Minister Khurshid Kasuri made the comment after Tuesday 's meeting with his Iranian counterpart , Kamal Kharrazi , in Islamabad . JJ NNP NNP NNP NNP VBD DT NN IN NNP POS NN IN PRP$ JJ NN , NNP NNP , IN NNP . Iran proposed the pipeline in 1996 . NNP VBD DT NN IN CD . But New Delhi 's response has been lukewarm given its troubled relations with Islamabad and concerns about the safety of the pipeline carrying its energy supplies through Pakistani territory . CC NNP NNP POS NN VBZ VBN JJ VBN PRP$ JJ NNS IN NNP CC NNS IN DT NN IN DT NN VBG PRP$ NN NNS IN JJ NN . Mr. Kharrazi 's visit came as India and Pakistan concluded another round of slow-moving peace talks . NNP NNP POS NN VBD IN NNP CC NNP VBD DT NN IN JJ NN NNS . The Iranian foreign minister met with Pakistani President Pervez Musharraf late Monday . DT JJ JJ NN VBD IN JJ NNP NNP NNP JJ NNP . Before leaving Pakistan , Mr. Kharrazi held talks with Prime Minister Shaukat Aziz . IN VBG NNP , NNP NNP VBD NNS IN NNP NNP NNP NNP . President Bush says federal officials have ' deep concern ' about Tropical Storm Rita causing more flooding in New Orleans . NNP NNP VBZ JJ NNS VBP `` JJ NN `` IN NNP NNP NNP VBG JJR NN IN NNP NNP . In remarks at the White House Monday , Mr. Bush said the U.S. Army Corps of Engineers fears that heavy rain could cause the city 's recently-repaired levees to break again . IN NNS IN DT NNP NNP NNP , NNP NNP VBD DT NNP NNP NNP IN NNP NNS IN JJ NN MD VB DT NN POS JJ NNS TO VB RB . Much of New Orleans sits below sea level , and the levees ' failure during Hurricane Katrina put 80 percent of the city underwater . NN IN NNP NNP VBZ IN NN NN , CC DT NNS POS NN IN NNP NNP VBD CD NN IN DT NN NN . Weather forecasters say Tropical Storm Rita could become a hurricane and move into the Gulf of Mexico south of New Orleans later this week . NNP NNS VBP JJ NN NNP MD VB DT NN CC NN IN DT NNP IN NNP NN IN NNP NNP RB DT NN . The president said New Orleans officials must be ' realistic ' about bringing people back to the city before it is safe . DT NN VBD NNP NNP NNS MD VB `` JJ `` IN VBG NNS RB TO DT NN IN PRP VBZ JJ . Iran says the only solution to its nuclear dispute with the West is negotiations , and not referral of its atomic energy program to the U.N. Security Council . NNP VBZ DT JJ NN TO PRP$ JJ NN IN DT NNP VBZ NNS , CC RB NN IN PRP$ JJ NN NN TO DT NNP NNP NNP . Iranian Foreign Ministry spokesman Hamid Reza Asefi made that assertion Sunday at his weekly news conference in Tehran . JJ NNP NNP NN NNP NNP NNP VBD DT NN NNP IN PRP$ JJ NN NN IN NNP . Asefi cautioned the West against acting in haste against Iran , saying a referral to the Security Council would solve nothing . NNP VBD DT NNP IN VBG IN NN IN NNP , VBG DT NN TO DT NNP NNP MD VB DT . The Iranian spokesman 's comments came as representatives of Britain , Germany , France , the United States and the European Union prepared for a meeting Monday in London to discuss whether to refer Iran to the U.N. Security Council for possible sanctions . DT JJ NN POS NNS VBD IN NNS IN NNP , NNP , NNP , DT NNP NNPS CC DT NNP NNP VBD IN DT NN NNP IN NNP TO VB IN TO VB NNP TO DT NNP NNP NNP IN JJ NNS . The Europeans say the impasse should be resolved through diplomacy , but Washington says a military option should be retained as a last resort . DT NNS VBP DT NN MD VB VBN IN NN , CC NNP VBZ DT JJ NN MD VB VBN IN DT JJ NN . U.S. troops opened fire on a civilian vehicle north of Baghdad Monday , killing at least three Iraqis , including a child , when troops say the vehicle failed to stop as ordered . NNP NNS VBD NN IN DT JJ NN NN IN NNP NNP , VBG IN JJS CD NNS , VBG DT NN , WRB NNS VBP DT NN VBD TO VB IN VBN . But surviving family members say five people , including three children , were killed . CC VBG NN NNS VBP CD NNS , VBG CD NNS , VBD VBN . U.S. Major Steve Warren called the deaths a tragedy . NNP NNP NNP NNP VBD DT NNS DT NN . Hours later , a car bomb exploded as a U.S. convoy passed in the same area , killing four Iraqis . NNS RB , DT NN NN VBD IN DT NNP NN VBN IN DT JJ NN , VBG CD NNS . Meanwhile , at a reconciliation conference in Cairo , Iraq 's President Jalal Talabani said he is willing to hold talks with insurgents and members of the ousted government . RB , IN DT NN NN IN NNP , NNP POS NNP NNP NNP VBD PRP VBZ JJ TO VB NNS IN NNS CC NNS IN DT JJ NN . Mr. Talabani then traveled to Tehran for the first visit to Iran by an Iraqi head of state in nearly four decades . NNP NNP RB VBD TO VB IN DT JJ NN TO NNP IN DT JJ NN IN NN IN RB CD NNS . He met with Iranian President Mahmoud Ahmadinejad for wide-ranging talks on relations and the fight against terrorism . PRP VBD IN JJ NNP NNP NNP IN JJ NNS IN NNS CC DT NN IN NN . Iran 's intelligence minister says two Americans who were detained for illegally crossing the country 's border should be tried on charges of spying . NNP POS NN NN VBZ CD NNS WP VBD VBN IN RB VBG DT NN POS NN MD VB VBN IN NNS IN VBG . Iranian state-run media quotes Heidar Moslehi as saying ' documents and evidence ' about Shane Bauer and Josh Fattal have been handed over to Iran 's judicial system for a decision . JJ JJ NNS NNS NNP NNP IN VBG `` NNS CC NN `` IN NNP NNP CC NNP NNP VBP VBN VBN IN TO NNP POS JJ NN IN DT NN . He also said Friday that a third American who was freed should ' return to Iran if necessary . ' PRP RB VBD NNP IN DT JJ NNP WP VBD VBN MD `` VB TO NNP IN JJ . `` Iranian authorities arrested Bauer , Fattal and Sarah Shourd last year on charges of unlawfully crossing into Iranian territory from Iraq . JJ NNS VBN NNP , NNP CC NNP NNP JJ NN IN NNS IN RB VBG IN JJ NN IN NNP . Iran freed Shourd on $ 5,00,000 bail last month . NNP VBD NNP IN $ CD NN JJ NN . Mosleshi says she was freed ' temporarily ' and should ' return to Iran if necessary . ' NNP VBZ PRP VBD VBN `` RB `` CC MD `` VB TO NNP IN JJ . `` The hikers and their family members have said if the trio crossed the border , it was by accident . DT NNS CC PRP$ NN NNS VBP VBN IN DT NN VBD DT NN , PRP VBD IN NN . Shourd says there were no signs , fences or other indications of a border . NNP VBZ EX VBD DT NNS , NNS CC JJ NNS IN DT NN . Spain is holding a national day of mourning and commemoration Friday , to mark the one year anniversary of the Madrid train bombings which killed 191 people . NNP VBZ VBG DT JJ NN IN NN CC NN NNP , TO VB DT CD NN NN IN DT NNP NN NNS WDT VBD CD NNS . Church bells rang out at 7.37 a.m. local time ( 637 UTC ) to mark the first of 10 explosions that occurred aboard four commuter trains one year ago . NNP VBZ VBG RP IN CD RB JJ NN LRB CD NNP RRB TO VB DT NN IN CD NNS WDT VBD IN CD NN NNS CD NN RB . The coordinated attacks produced the worst death toll ever from terrorism in Spain . DT JJ NNS VBD DT JJS NN NN RB IN NN IN NNP . U.N. Secretary-General Kofi Annan and Morocco 's King Mohamed , will join Spanish Prime Minister Jose Luis Rodriguez Zapatero - and the entire Spanish nation - for five minutes of silence at midday . NNP NNP NNP NNP CC NNP POS NNP NNP , MD VB JJ NNP NNP NNP NNP NNP NNP : CC DT JJ JJ NN : IN CD NNS IN NN IN NN . Islamic militants , predominantly from Morocco and sympathetic to al-Qaeda , claimed responsibility for the attacks . NNP NNS , RB IN NNP CC JJ TO NNP , VBD NN IN DT NNS . The European Union is offering to resume development aid to Sudan , now that an agreement has been reached to end the nation 's 21-year civil war . DT NNP NNP VBZ VBG TO VB NN NN TO NNP , RB IN DT NN VBZ VBN VBN TO VB DT NN POS JJ JJ NN . In a statement Sunday , the EU offered to give Sudan more than $ 540 million to aid development over the next three years . IN DT NN NNP , DT NNP VBD TO VB NNP JJR IN $ CD CD TO VB NN IN DT JJ CD NNS . But the offer requires that the agreement with southern rebels be implemented . CC DT NN VBZ IN DT NN IN JJ NNS VB VBN . It also requires Sudan to make progress at ending the separate fighting and humanitarian disaster in its Darfur region . PRP RB VBZ NNP TO VB NN IN VBG DT JJ NN CC JJ NN IN PRP$ NNP NN . The EU stopped sending development money to Sudan 14 years ago because of the southern civil war . DT NNP VBD VBG NN NN IN NNP CD NNS RB IN IN DT JJ JJ NN . A statement attributed to the militant group al-Qaida In Iraq says four Iraqis carried out the triple suicide bombings in Jordan that killed at least 57 people and wounded more than 100 others . DT NN VBN IN DT JJ NN NNP IN NNP VBZ CD NNS VBD IN DT JJ NN NNS IN NNP WDT VBD IN JJS CD NNS CC VBD JJR IN CD NNS . The statement , which appeared Friday , on an Islamist website associated with the group , says the team included three men and a woman married to one of the attackers . DT NN , WDT VBD NNP , IN DT JJ NN VBN IN DT NN , VBZ DT NN VBD CD NNS CC DT NN VBN TO CD IN DT NNS . The statement came as U.N. Secretary-General Kofi Annan met with officials in Amman to discuss Wednesday 's attacks . DT NN VBD IN NNP NNP NNP NNP VBD IN NNS IN NNP TO VB NNP POS NNS . Jordanian King Abdullah has vowed to track down and bring to justice the militants who helped plan the suicide bombings on three hotels . JJ NNP NNP VBZ VBN TO VB RB CC VB TO NN DT NNS WP VBD VB DT NN NNS IN CD NNS . Government officials said most of the dead are Jordanians , but at least 12 foreigners have been identified , including two Americans . NN NNS VBD JJS IN DT NN VBP NNS , CC IN JJS CD NNS VBP VBN VBN , VBG CD NNS . Turkish and European Union officials are meeting Monday in Ankara to discuss Turkey 's progress in making reforms ahead of EU membership talks scheduled for later this year . JJ CC JJ NNP NNS VBP VBG NNP IN NNP TO VB NNP POS NN IN VBG NNS RB IN NNP NN NNS VBN IN RB DT NN . EU Enlargement Commissioner Olli Rehn is expected to press Turkey to sign a protocol that will amount to a de-facto recognition of Cyprus ' internationally-recognized Greek government . NNP NNP NNP NNP NNP VBZ VBN TO VB NNP TO VB DT NN WDT MD VB TO DT JJ NN IN NNP POS JJ JJ NN . Turkey must sign the protocol before formal EU membership talks can begin on October third . NNP MD VB DT NN IN JJ NNP NN NNS MD VB IN NNP NN . Ankara previously refused to recognize the Greek government of Cyprus , which joined the EU last May . NNP RB VBD TO VB DT JJ NN IN NNP , WDT VBD DT NNP JJ NNP . Turkey is the only country in the world that recognizes the government of the Turkish-ruled part of Cyprus . NNP VBZ DT JJ NN IN DT NN WDT VBZ DT NN IN DT JJ NN IN NNP . Mr. Rehn is also expected to push Ankara to continue with efforts to stop torture , improve freedom of expression , and increase the rights of women and the Kurdish minority . NNP NNP VBZ RB VBN TO VB NNP TO VB IN NNS TO VB NN , VB NN IN NN , CC VB DT NNS IN NNS CC DT NNP NN . Scientists are hailing the results of a new study that shows a drug already used to treat advanced cancer has proven extremely effective against an aggressive form of early breast cancer . NNS VBP VBG DT NNS IN DT JJ NN WDT VBZ DT NN RB VBN TO VB JJ NN VBZ VBN RB JJ IN DT JJ NN IN JJ NN NN . In an article published Thursday in The New England Journal of Medicine , researchers found the drug Herceptin can prevent 50 percent of all breast tumors from recurring in patients with early stages of the disease . IN DT NN VBN NNP IN DT NNP NNP NNP IN NNP , NNS VBD DT NN NNP MD VB CD NN IN DT NN NNS IN VBG IN NNS IN JJ NNS IN DT NN . The drug , which targets only diseased cells , only works for the estimated 20-percent of breast cancer cases in which tumors produce too much of a protein known as HER-2 . DT NN , WDT VBZ RB JJ NNS , RB VBZ IN DT JJ JJ IN NN NN NNS IN WDT NNS VBP RB RB IN DT NN VBN IN NNP . Breast cancer is the most common cause of cancer among women in the United States . NN NN VBZ DT RBS JJ NN IN NN IN NNS IN DT NNP NNPS . More than 2,00,000 American women will be diagnosed with breast cancer , and about 40,000 women will die of the disease in the United States in 2005 . JJR IN CD JJ NNS MD VB VBN IN NN NN , CC IN CD NNS MD VB IN DT NN IN DT NNP NNPS IN CD . Officials say Herceptin will be marketed internationally by the Swiss drugmaker Roche . NNS VBP NNP MD VB VBN RB IN DT JJ NN NNP . Iraqi officials say Jan. 30 has been set as the new date for the war-torn country 's first national elections since a U.S.-led military coalition toppled Saddam Hussein 's regime . JJ NNS VBP NNP CD VBZ VBN VBN IN DT JJ NN IN DT JJ NN POS JJ JJ NNS IN DT JJ JJ NN VBD NNP NNP POS NN . An Iraqi election commission spokesman , Farid Ayar , who spoke to reporters Sunday did not give a reason for the election date change , which postpones by three days an earlier voting plan drawn up by the interim government in Baghdad . DT JJ NN NN NN , NNP NNP , WP VBD TO NNS NNP VBD RB VB DT NN IN DT NN NN NN , WDT VBZ IN CD NNS DT JJR NN NN VBN RP IN DT JJ NN IN NNP . Iraqis will choose a new national assembly , provincial councils across the country and a Kurdish regional parliament . NNS MD VB DT JJ JJ NN , JJ NNS IN DT NN CC DT JJ JJ NN . Continuing attacks on coalition forces by Iraqi insurgents have been a growing source of concern for Iraqi and U.S. officials as election day approaches . VBG NNS IN NN NNS IN JJ NNS VBP VBN DT VBG NN IN NN IN JJ CC NNP NNS IN NN NN NNS . U.S. military officials said today that nine men found dead Saturday in the northern city of Mosul were all Iraqi soldiers who had been shot in the back of the head . NNP JJ NNS VBD NN IN CD NNS VBN JJ NNP IN DT JJ NN IN NNP VBD DT JJ NNS WP VBD VBN VBN IN DT NN IN DT NN . Several members of four top Italian football teams have been ordered to stand trial in a sports court on charges stemming from the largest football scandal in the country 's history . JJ NNS IN CD JJ JJ NN NNS VBP VBN VBN TO VB NN IN DT NNS NN IN NNS VBG IN DT JJS NN NN IN DT NN POS NN . At least 26 people from Juventus , AC Milan , Lazio and Fiorentina will face allegations of match-fixing , illegal betting and manipulation of referee assignments . IN JJS CD NNS IN NNP , NNP NNP , NNP CC NNP MD VB NNS IN JJ , JJ VBG CC NN IN NN NNS . The trial begins next week at the Olympic Stadium in Rome . DT NN VBZ JJ NN IN DT NNP NNP IN NNP . No players are involved . DT NNS VBP VBN . Juventus has been investigated for sporting fraud on allegations that it tried to manipulate the Serie A by handpicking referees . NNP VBZ VBN VBN IN VBG NN IN NNS IN PRP VBD TO VB DT NNP NNP IN VBG NNS . Juventus won the first division title for the last two seasons . NNP VBD DT JJ NN NN IN DT JJ CD NNS . But those titles could be stripped along with possible relegation as far down as the third division . CC DT NNS MD VB VBN IN IN JJ NN IN RB RB IN DT JJ NN . The other teams face lesser demotions . DT JJ NNS VBP JJR NNS . Iran is reviewing proposals offered by the European Union aimed at ending a long-running standoff over its nuclear program . NNP VBZ VBG NNS VBN IN DT NNP NNP VBN IN VBG DT JJ NN IN PRP$ JJ NN . The proposals were delivered Friday by the ambassadors of Britain , France and Germany . DT NNS VBD VBN NNP IN DT NNS IN NNP , NNP CC NNP . An Iranian foreign ministry spokesman said his country would study the proposals for one or two days and issue a response ' soon . ' DT JJ JJ NN NN VBD PRP$ NN MD VB DT NNS IN CD CC CD NNS CC NN DT NN `` RB . `` The European plan calls on Iran to end uranium conversion and enrichment , which are suspected to be part of a nuclear weapons program . DT JJ NN VBZ IN NNP TO VB NN NN CC NN , WDT VBP VBN TO VB NN IN DT JJ NNS NN . In exchange , the EU pledges Iran fuel , trade and investment as well as political and technological cooperation . IN NN , DT NNP NNS NNP NN , NN CC NN RB RB IN JJ CC JJ NN . Iran insists its nuclear program is used for the peaceful purpose of energy generation and has said it will soon resume uranium processing . NNP VBZ PRP$ JJ NN VBZ VBN IN DT JJ NN IN NN NN CC VBZ VBN PRP MD RB VB NN NN . French Foreign Minister Philippe Douste-Blazy said Friday he hopes Iran will hear the voice of reason and not resume nuclear activities . NNP NNP NNP NNP NNP VBD NNP PRP VBZ NNP MD VB DT NN IN NN CC RB VB JJ NNS . The International Atomic Energy Agency will meet Tuesday to discuss Iran . DT NNP NNP NNP NNP MD VB NNP TO VB NNP . A Nigerian police spokesman says 164 people have been arrested for alleged involvement in violence near the town of Jos earlier this month that killed more than 200 people . DT JJ NN NN VBZ CD NNS VBP VBN VBN IN JJ NN IN NN IN DT NN IN NNP RBR DT NN WDT VBD JJR IN CD NNS . The spokesman said Sunday that 41 of those arrested will be charged with terrorism , which could result in life in prison . DT NN VBD NNP IN CD IN DT VBN MD VB VBN IN NN , WDT MD VB IN NN IN NN . The others , he said , will be charged with illegal possession of firearms , rioting and other offenses . DT NNS , PRP VBD , MD VB VBN IN JJ NN IN NNS , VBG CC JJ NNS . Witnesses to the March 7 violence said that ethnic Fulani herdsmen , who are mostly Muslim , attacked mainly Christian villages south of Jos , setting homes on fire and slashing people with knives and machetes . NNS TO DT NNP CD NN VBD IN JJ NNP NNS , WP VBP RB NNP , VBD RB JJ NNS RB IN NNP , VBG NNS IN NN CC VBG NNS IN NNS CC NNS . The U.N. special investigator on freedom of religion has said the massacre could have been prevented had authorities addressed deep-seated tensions between Muslims and Christians . DT NNP JJ NN IN NN IN NN VBZ VBN DT NN MD VB VBN VBN VBD NNS VBN JJ NNS IN NNPS CC NNPS . Jos has a history of sectarian violence . NNP VBZ DT NN IN JJ NN . The city sits on the dividing line between Nigeria 's mainly Muslim north and predominantly Christian south . DT NN VBZ IN DT NN NN IN NNP POS RB JJ NN CC RB JJ NN . Iraqi authorities have imposed tight security in and around Baghdad and the holy city of Karbala where Shi'ite Muslim pilgrims are converging for a major religious ceremony . JJ NNS VBP VBN JJ NN IN CC IN NNP CC DT JJ NN IN NNP WRB NNP NNP NNS VBP VBG IN DT JJ JJ NN . Officials expect two million pilgrims to join the main Ashura observances Thursday , marking the seventh century martyrdom of Imam Hussein , one of Shi'ite Islam 's most revered leaders . NNS VBP CD CD NNS TO VB DT JJ NNP NNS NNP , VBG DT JJ NN NN IN NNP NNP , CD IN NNP NNP POS JJS JJ NNS . Government troops have sealed off Karbala to vehicles and are body-searching the arriving pilgrims . NN NNS VBP VBN RP NNP TO NNS CC VBP VBG DT VBG NNS . Police in Baghdad also imposed tight security in Kadhimiya district - another site of Shi'ite pilgrimage - and set up checkpoints around the city . NNS IN NNP RB VBD JJ NN IN NNP NN : DT NN IN NNP NN : CC VBN RP NNS IN DT NN . Despite the security , Iraq 's higher education minister survived a bomb attack in Baghdad that wounded three people . IN DT NN , NNP POS JJR NN NN VBD DT NN NN IN NNP IN VBD CD NNS . In the past , insurgents have attacked pilgrims during Ashura observances . IN DT NN , NNS VBP VBN NNS IN NNP NNS . In 2004 , about 170 people were killed . IN CD , IN CD NNS VBD VBN . Pope Benedict XVI says science has narrowed humanity 's understanding of the origins of life and that the theory of evolution can neither be proven or dismissed . NNP NNP NNP VBZ NN VBZ VBN NN POS NN IN DT NNS IN NN CC IN DT NN IN NN MD RB VB VBN CC VBN . The pope 's extended views on evolution are appearing in print for the first time as part of a newly published German book called Creation and Evolution . DT NN POS JJ NNS IN NN VBP VBG IN NN IN DT JJ NN IN NN IN DT RB VBN JJ NN VBD NNP CC NNP . He writes that evolution can never be known for sure because it is impossible to conduct controlled laboratory experiments into the theory . PRP VBZ IN NN MD RB VB VBN IN JJ IN PRP VBZ JJ TO VB JJ NN NNS IN DT NN . But Benedict does not give a 100 percent endorsement of creationism or intelligent design , saying the debate must be philosophical and go beyond science . CC NNP VBZ RB VB DT CD NN NN IN NN CC JJ NN , VBG DT NN MD VB JJ CC VB IN NN . Advocates of intelligent design say life on Earth is too complex to have evolved randomly and must be the product of a higher power . NNS IN JJ NN VBP NN IN NNP VBZ RB JJ TO VB VBN RB CC MD VB DT NN IN DT JJR NN . A state-run Chinese newspaper reported Monday that more than 200 people are expected to go on trial this week for their involvement in sectarian riots last month in the western region of Xinjiang . DT JJ JJ NN VBD NNP IN JJR IN CD NNS VBP VBN TO VB IN NN DT NN IN PRP$ NN IN JJ NNS JJ NN IN DT JJ NN IN NNP . The official China Daily said the trials will take place in Urumqi , the capital of Xinjiang and the site of China 's worst ethnic violence in decades . DT JJ NNP NNP VBD DT NNS MD VB NN IN NNP , DT NN IN NNP CC DT NN IN NNP POS JJS JJ NN IN NNS . Nearly 200 people were killed and about 1,700 injured . RB CD NNS VBD VBN CC IN CD NN . The paper said the charges include vandalizing public property , organizing crowds to cause bodily harm , robbery , murder and arson , among other crimes . DT NN VBD DT NNS VBP VBG JJ NN , VBG NNS TO VB RB NN , NN , NN CC NN , IN JJ NNS . Beijing blamed the violence on outside forces stirring up separatist sentiments among the mostly Muslim Uighur minority , but Uighurs blame the police for provoking the violence . NNP VBD DT NN IN JJ NNS VBG RP JJ NNS IN DT RB JJ NNP NN , CC NNS VBP DT NN IN VBG DT NN . Delegates from many of south Asian nations affected by December 's deadly tsunami are in Tokyo to study Japan 's advanced tsunami warning system . NNS IN NN IN JJ JJ NNS VBN IN NNP POS JJ NNS VBP IN NNP TO VB NNP POS JJ NN NN NN . A three-day conference sponsored by the United Nations opened Tuesday as part of an effort to establish an early tsunami warning system for the Indian Ocean by mid-2006 . DT JJ NN VBN IN DT NNP NNPS VBD NNP IN NN IN DT NN TO VB DT JJ NN NN NN IN DT NNP NNP IN CD . The representatives from Indonesia , Sri Lanka , Thailand and other nations in the region also will visit Japanese coastal communities to see how they respond to earthquake and tsunami warnings . DT NNS IN NNP , NNP NNP , NNP CC JJ NNS IN DT NN RB MD VB JJ JJ NNS TO VB WRB PRP VB TO NN CC NN NNS . Japan , which is prone to earthquakes and tsunamis , has offered to share its tsunami-warning technology to build the new Indian Ocean system . NNP , WDT VBZ JJ TO NNS CC NNS , VBZ VBN TO VB PRP$ JJ NN TO VB DT JJ NNP NNP NN . NATO allies have raised concerns about a recent deal in Afghanistan to free five Taleban prisoners in exchange for a kidnapped Italian reporter . NNP NNS VBP VBN NNS IN DT JJ NN IN NNP TO VB CD NNP NNS IN NN IN DT VBN JJ NN . U.S. Undersecretary of State Nicholas Burns told reporters in Brussels Tuesday that a majority of member states oppose the exchange of hostages for terrorists . NNP NNP IN NNP NNP NNP VBD NNS IN NNP NNP IN DT NN IN NN NNS VBP DT NN IN NNS IN NNS . Members Tuesday discussed adopting a common NATO policy to deal with similar hostage situations . NNS NNP VBD VBG DT JJ NNP NN TO VB IN JJ NN NNS . Early last week , the Afghan government released five Taleban militants in exchange for kidnapped journalist Daniele Mastrogiacomo , who had been held for two weeks . RB JJ NN , DT JJ NN VBD CD NNP NNS IN NN IN VBN NN NNP NNP , WP VBD VBN VBN IN CD NNS . Britain and the United States raised objections to the deal , saying it increases the risk of similar kidnappings of NATO and Afghan troops . NNP CC DT NNP NNPS VBD NNS TO DT NN , VBG PRP VBZ DT NN IN JJ NNS IN NNP CC JJ NNS . Mastrogiacomo was abducted in southern Afghanistan 's Helmand province in early March . NNP VBD VBN IN JJ NNP POS NNP NN IN JJ NNP . Kidnappers beheaded his Afghan driver . NNS VBD PRP$ JJ NN . The U.S. Geological Survey says a strong earthquake has hit eastern Indonesia . DT NNP NNP NNP VBZ DT JJ NN VBZ VBN JJ NNP . The service said Tuesday the quake had a magnitude of 6.3 and was centered in the Molucca Sea about 135 kilometers northwest of Ternate . DT NN VBD NNP DT NN VBD DT NN IN CD CC VBD VBN IN DT NNP NNP IN CD NNS JJS IN NNP . An Indonesian website , vivanews.com , said the quake struck at 9.08 pm local time and there appeared to be little risk of a tsunami . DT JJ NN , NNP , VBD DT NN VBD IN CD NN JJ NN CC RB VBD TO VB JJ NN IN DT NN . There were no immediate reports of damage or injuries . EX VBD DT JJ NNS IN NN CC NNS . An earthquake of that magnitude can cause damage in populated areas within a radius of about 160 kilometers . DT NN IN DT NN MD VB NN IN JJ NNS IN DT NN IN IN CD NNS . Indonesia sits on fault lines that make the region prone to earthquakes . NNP VBZ IN NN NNS WDT VBP DT NN JJ TO NNS . A tsunami triggered by a massive undersea quake in December 2004 killed nearly 2,30,000 people , half of them in Indonesia 's Aceh province . DT NN VBN IN DT JJ NN NN IN NNP CD VBD RB CD NNS , NN IN PRP IN NNP POS NNP NN . China has imposed a massive news blackout on the deadly police suppression of a village protest in Dongzhou earlier this month . NNP VBZ VBN DT JJ NN NN IN DT JJ NN NN IN DT NN NN IN NNP RBR DT NN . China 's state controlled media have been nearly silent about the December 6 incident in which activists say some 20 people were shot dead by police while protesting against a local power plant . NNP POS NN JJ NNS VBP VBN RB JJ IN DT NNP CD NN IN WDT NNS VBP DT CD NNS VBD VBN JJ IN NN IN VBG IN DT JJ NN NN . The only official news coverage has alleged that three civilians were killed and several injured after protesters attacked police , forcing officers to respond . DT JJ JJ NN NN VBZ VBN IN CD NNS VBD VBN CC JJ NN IN NNS VBD NNS , VBG NNS TO VB . The news blackout extends to the Internet , where reporters say sophisticated filtering has blocked foreign news stories and prevented search engines , such as Google , from looking for keywords associated with the shootings . DT NN NN VBZ TO DT NNP , WRB NNS VBP JJ NN VBZ VBN JJ NN NNS CC VBD NN NNS , JJ IN NNP , IN VBG IN NNS VBN IN DT NNS . But media rights group Reporters without Borders says some Internet users have successfully published messages about the incident in chat rooms by alluding to the shootings without mentioning specifics . CC NNS NNS NN NNS IN NNS VBZ DT NNP NNS VBP RB VBN NNS IN DT NN IN NN NNS IN VBG TO DT NNS IN VBG NNS . Chinese officials are reporting a new outbreak of bird flu in poultry - this time in northern China . JJ NNS VBP VBG DT JJ NN IN NN NN IN NN IN DT NN IN JJ NNP . China 's agriculture ministry said Friday that a state lab has confirmed that more than 200 birds died of the H5N1 strain of bird flu in Inner Mongolia . NNP POS NN NN VBD NNP IN DT NN NN VBZ VBN IN JJR IN CD NNS VBD IN DT NNP NN IN NN NN IN NNP NNP . More than 16,000 birds have been culled in an effort to contain the outbreak . JJR IN CD NNS VBP VBN VBN IN DT NN TO VB DT NN . Earlier Friday , Indonesia said it has received permission from Swiss drug giant Roche to locally produce Tamiflu , the drug thought to be most effective in treating bird flu in humans . RBR NNP , NNP VBD PRP VBZ VBN NN IN JJ NN NN NNP TO RB VB NNP , DT NN VBN TO VB RBS JJ IN VBG NN NN IN NNS . Roche also announced that it would provide Taiwan with an additional 1.3 million treatments of Tamiflu . NNP RB VBD IN PRP MD VB NNP IN DT JJ CD CD NNS IN NNP . The company said it made the decision after determining that local companies could not produce the drug more rapidly or at a lower cost . DT NN VBD PRP VBD DT NN IN VBG IN JJ NNS MD RB VB DT NN RBR RB CC IN DT JJR NN . Nearly 70 people have died of bird flu in Asia since 2003 . RB CD NNS VBP VBN IN NN NN IN NNP IN CD . The Iraqi prime minister 's office says the journalist who threw his shoes at U.S. President George Bush has apologized . DT JJ JJ NN POS NN VBZ DT NN WP VBD PRP$ NNS IN NNP NNP NNP NNP VBZ VBN . A spokesman for Prime Minister Nouri al-Maliki said Thursday that reporter Muntazer al-Zaidi wrote a letter in which he asked for Mr. Maliki 's pardon , calling his display an ' ugly act . ' DT NN IN NNP NNP NNP NNP VBD NNP IN NN NNP NNP VBD DT NN IN WDT PRP VBD IN NNP NNP POS NN , VBG PRP$ NN DT `` JJ NN . `` Relatives of Zaidi immediately cast doubt that he would write such a letter of his own accord . NNS IN NNP RB VBD NN IN PRP MD VB JJ DT NN IN PRP$ JJ NN . The reporter has been in custody since the incident Sunday . DT NN VBZ VBN IN NN IN DT NN NNP . He faces up to 15 years in prison , depending on what charges will be made against him and if he is found guilty . PRP VBZ RP TO CD NNS IN NN , VBG IN WP NNS MD VB VBN IN PRP CC IN PRP VBZ VBN JJ . Thousands of Iraqis have protested in the streets , demanding his release . NNS IN NNS VBP VBN IN DT NNS , VBG PRP$ NN . Zaidi has become somewhat of a folk hero for his action against Mr. Bush , who spearheaded the invasion of Iraq . NNP VBZ VBN RB IN DT NN NN IN PRP$ NN IN NNP NNP , WP VBD DT NN IN NNP . The leader of Hezbollah in Lebanon has rejected President Bush 's call for the militant group to disarm . DT NN IN NNP IN NNP VBZ VBN NNP NNP POS NN IN DT JJ NN TO VB . Sheikh Hassan Nasrallah says his organization needs to be armed to protect Lebanon and deter Israeli aggression . NNP NNP NNP VBZ PRP$ NN VBZ TO VB VBN TO VB NNP CC VB JJ NN . He spoke Wednesday in response to Mr. Bush , who said Hezbollah could play a political role in Lebanon if it disarmed and supported the Israeli-Palestinian peace process . PRP VBD NNP IN NN TO NNP NNP , WP VBD NNP MD VB DT JJ NN IN NNP IN PRP VBD CC VBD DT JJ NN NN . Mr. Bush says Hezbollah will remain designated a terrorist organization . NNP NNP VBZ NNP MD VB VBN DT JJ NN . Mr. Bush met Wednesday at the White House with the Lebanese Patriarch of the Maronite Church , Nasrallah Sfeir . NNP NNP VBD NNP IN DT NNP NNP IN DT JJ NN IN DT NNP NNP , NNP NNP . The patriarch says he looks forward to an end to the ' suffocating political conditions ' in Syrian-dominated Lebanon . DT NN VBZ PRP VBZ RB TO DT NN TO DT `` VBG JJ NNS `` IN JJ NNP . Meanwhile , witnesses say Syrian intelligence agents left Beirut following U.S. , European and Lebanese opposition calls to do so . RB , NNS VBP JJ NN NNS VBD NNP VBG NNP , JJ CC JJ NN NNS TO VB RB . Suspected U.S. drones fired missiles at several suspected militant hideouts in Pakistan 's North Waziristan tribal region Tuesday , killing at least 16 people . VBN NNP NNS VBD NNS IN JJ JJ JJ NNS IN NNP POS NNP NNP JJ NN NNP , VBG IN JJS CD NNS . North Waziristan is known as a base for the Taliban-allied Haqqani group , which is blamed for cross-border attacks against U.S. , NATO and Afghan troops in Afghanistan . NNP NNP VBZ VBN IN DT NN IN DT JJ NNP NN , WDT VBZ VBN IN JJ NNS IN NNP , NNP CC JJ NNS IN NNP . U.S. officials do not publicly comment on the drone strikes , which have raised tensions between Pakistan and the United States in the past . NNP NNS VBP RB RB VB IN DT NN NNS , WDT VBP VBN NNS IN NNP CC DT NNP NNPS IN DT NN . Meanwhile , the death toll from four days of violence in Pakistan 's southern port city of Karachi has reached at least 26 , after at least six more people were killed Tuesday . RB , DT NN NN IN CD NNS IN NN IN NNP POS JJ JJ NN IN NNP VBZ VBN IN JJS CD , IN IN JJS CD JJR NNS VBD VBN NNP . The clashes appeared to be between activists from rival political parties - the Muttahida Qaumi Movement and the Awami National Party - which traditionally gather support from different ethnic groups . DT NNS VBD TO VB IN NNS IN JJ JJ NNS IN DT NNP NNP NNP CC DT NNP NNP NNP : WDT RB VBP NN IN JJ JJ NNS . The White House has yet to comment on a published report that the National Security Agency conducted broader surveillance of e-mails and telephone conversations without court orders than the administration has acknowledged . DT NNP NNP VBZ RB TO VB IN DT VBN NN IN DT NNP NNP NNP VBD JJR NN IN NNS CC NN NNS IN NN NNS IN DT NN VBZ VBN . Current and former government officials told The New York Times the NSA accessed domestic and international communications with help from telecommunication companies . JJ CC JJ NN NNS VBD DT NNP NNP NNP DT NNP VBD JJ CC JJ NNS IN NN IN NN NNS . The newspaper says the companies have been storing information on calling patterns since the September 11 , 2001 terrorist attacks in the United States . DT NN VBZ DT NNS VBP VBN VBG NN IN VBG NNS IN DT NNP CD , CD JJ NNS IN DT NNP NNPS . NSA officials were reported to have been studying the information in hope of finding terrorists . NNP NNS VBD VBN TO VB VBN VBG DT NN IN NN IN VBG NNS . The Bush administration has been under increased scrutiny from the public and many lawmakers for authorizing without court orders the surveillance of what the government says are only international calls and e-mails to and from the United States . DT NNP NN VBZ VBN IN VBN NN IN DT JJ CC JJ NNS IN VBG IN NN NNS DT NN IN WP DT NN VBZ VBP JJ JJ NNS CC NNS TO CC IN DT NNP NNPS . Vice President Dick Cheney says the Bush administration has all the legal authority it needs to wiretap phone calls and e-mails between U.S. citizens and persons abroad suspected of links to terrorism . JJ NNP NNP NNP VBZ DT NNP NN VBZ PDT DT JJ NN PRP VBZ TO VB NN NNS CC NNS IN NNP NNS CC NNS RB VBN IN NNS TO NN . Cheney was asked on a national U.S. television show PBSNewshour Tuesday if the president would be willing to work with Congress to settle some of the disputes about the legality of the secret surveillance program . NNP VBD VBN IN DT JJ NNP NN NN NNP NNP IN DT NN MD VB VBG TO VB IN NNP TO VB DT IN DT NNS IN DT NN IN DT JJ NN NN . He expressed concern that the legislative process could lead to the disclosure of sensitive operational matters . PRP VBD NN IN DT JJ NN MD VB TO DT NN IN JJ JJ NNS . Meanwhile , a Republican member of Congress has called for a full congressional investigation into the wiretapping program . RB , DT JJ NN IN NNP VBZ VBN IN DT JJ JJ NN IN DT NN NN . Congresswoman Heather Wilson - chairwoman of a House Intelligence Subcommittee - told The New York Times she has ' serious concerns ' about the program . NN NNP NNP : NN IN DT NNP NNP NNP : VBD DT NNP NNP NNP PRP VBZ `` JJ NNS `` IN DT NN . On Monday , Attorney General Alberto Gonzales faced tough questions on the program from several members of a Senate panel . IN NNP , NNP NNP NNP NNP VBD JJ NNS IN DT NN IN JJ NNS IN DT NNP NN . Chinese health officials have confirmed a new case of bird flu in a man hospitalized in critical condition in Guangdong province , near Hong Kong . JJ NN NNS VBP VBN DT JJ NN IN NN NN IN DT NN VBN IN JJ NN IN NNP NN , IN NNP NNP . The case has caused Hong Kong to declare a three-week ban on live poultry from the mainland . DT NN VBZ VBN NNP NNP TO VB DT JJ NN IN JJ NN IN DT NN . Chinese state media say the infection brings the country 's total of human cases of bird flu to 19 . JJ NN NNS VBP DT NN VBZ DT NN POS NN IN JJ NNS IN NN NN TO CD . Reports say the 31-year-old patient in the town of Shenzhen developed fever and pneumonia-like symptoms June 3 . NNS VBP DT JJ NN IN DT NN IN NNP VBD NN CC JJ NNS NNP CD . Earlier Thursday , the World Health Organization confirmed that a seven-year-old Indonesian girl who died last month was infected with bird flu . RBR NNP , DT NNP NNP NNP VBD IN DT JJ JJ NN WP VBD JJ NN VBD VBN IN NN NN . That means 38 people in Indonesia have now died of bird flu . DT VBZ CD NNS IN NNP VBP RB VBN IN NN NN . Avian flu has killed more than 125 people around the world since late 2003 . JJ NN VBZ VBN JJR IN CD NNS IN DT NN IN JJ CD . Most of the victims have been in Asia . JJS IN DT NNS VBP VBN IN NNP . Iran is promising a mighty response to any aggression from Israel , as political hostilities between the two governments continue to increase . NNP VBZ VBG DT JJ NN TO DT NN IN NNP , IN JJ NNS IN DT CD NNS VBP TO VB . The latest warning from Tehran came during an interview with Iranian Defense Minister Mostafa Mohammad Najjar Friday by the official Islamic Republic News Agency . DT JJS NN IN NNP VBD IN DT NN IN JJ NNP NNP NNP NNP NNP NNP IN DT JJ NNP NNP NNP NNP . He was responding to questions about escalating troubles with Israel , including speculation of an Israeli attack on Iranian nuclear facilities . PRP VBD VBG TO NNS IN VBG NNS IN NNP , VBG NN IN DT JJ NN IN JJ JJ NNS . The defense minister said Iran 's armed forces would provide a rapid , strong and destructive response to any such attack . DT NN NN VBD NNP POS JJ NNS MD VB DT JJ , JJ CC JJ NN TO DT JJ NN . Iran 's foreign relations have been further strained by controversial comments by Iranian President Mahmoud Ahmadinejad . NNP POS JJ NNS VBP VBN JJ VBN IN JJ NNS IN JJ NNP NNP NNP . The hard-line president has called for Israel to be ' wiped off the map . ' DT JJ NN VBZ VBN IN NNP TO VB `` VBN RP DT NN . `` He has also cast doubt on the Holocaust , and has suggested that Israel be moved to Europe . PRP VBZ RB VBN NN IN DT NNP , CC VBZ VBN IN NNP VB VBN TO NNP . Deposed Honduran President Manuel Zelaya says talks on ending the stand-off stemming from his ouster have broken down . JJ JJ NNP NNP NNP VBZ NNS IN VBG DT NN VBG IN PRP$ NN VBP VBN RP . Speaking from the Brazilian Embassy in the capital , Tegucigalpa , where he has taken refuge , Mr. Zelaya told reporters the talks are suspended until the other side presents what he called a ' reasonable ' stance . VBG IN DT JJ NNP IN DT NN , NNP , WRB PRP VBZ VBN NN , NNP NNP VBD NNS DT NNS VBP VBN IN DT JJ NN VBZ WP PRP VBD DT `` JJ `` NN . A member of Mr. Zelaya 's negotiating team , Victor Meza , said the proposal offered by interim President Roberto Micheletti is ' completely unacceptable . ' DT NN IN NNP NNP POS NN NN , NNP NNP , VBD DT NN VBN IN JJ NNP NNP NNP VBZ `` RB JJ . `` That proposal calls for the Honduran Supreme Court to decide whether Mr. Zelaya should be allowed to return to power . DT NN VBZ IN DT JJ NNP NNP TO VB IN NNP NNP MD VB VBN TO VB TO NN . Despite Mr. Zelaya 's statements , envoys from the two sides say negotiations will continue . IN NNP NNP POS NNS , NNS IN DT CD NNS VBP NNS MD VB . Mr. Micheletti has been under intense international pressure to restore Mr. Zelaya . NNP NNP VBZ VBN IN JJ JJ NN TO VB NNP NNP . The deposed president 's opponents say he was ousted because he was trying to illegally change the constitution to extend his term in office . DT VBN NN POS NNS VBP PRP VBD VBN IN PRP VBD VBG TO RB VB DT NN TO VB PRP$ NN IN NN . U.S. consumer prices posted their sharpest drop in half a century in November . NNP NN NNS VBD PRP$ JJS NN IN PDT DT NN IN NNP . Thursday 's report from the Labor Department says falling energy costs brought prices down a steep six-tenths of a percent for the month . NNP POS NN IN DT NNP NNP VBZ VBG NN NNS VBD NNS RP DT JJ NNS IN DT NN IN DT NN . Economists say energy and food costs can swing widely from month to month , so setting aside those volatile prices may give a clearer picture of inflation in the overall economy . NNS VBP NN CC NN NNS MD VB RB IN NN TO NN , RB VBG RB DT JJ NNS MD VB DT JJR NN IN NN IN DT JJ NN . By that measure , prices rose a modest two-tenths of a percent . IN DT NN , NNS VBD DT JJ NNS IN DT NN . Energy prices soared earlier this year because of hurricane damage . NN NNS VBD RBR DT NN IN IN NN NN . A separate report says the number of people who lost jobs because of Hurricanes Katrina , Rita , and Wilma now exceeds $ 6,00,000 . DT JJ NN VBZ DT NN IN NNS WP VBD NNS IN IN NNP NNP , NNP , CC NNP RB VBZ $ CD . The report also shows the number of people applying for unemployment insurance rose slightly last week . DT NN RB VBZ DT NN IN NNS VBG IN NN NN VBD RB JJ NN . Chinese authorities say 254 people were killed in a massive mudslide that buried a northern Chinese village . JJ NNS VBP CD NNS VBD VBN IN DT JJ NN WDT VBD DT JJ JJ NN . The death toll rose sharply Saturday after the discovery of more than 70 additional bodies in Shanxi province . DT NN NN VBD RB NNP IN DT NN IN JJR IN CD JJ NNS IN NNP NN . The official Xinhua news agency reported a wall of waste and mud from an illegal mine plowed into a village of about 1,000 people on Monday . DT JJ NNP NN NN VBD DT NN IN NN CC NN IN DT JJ NN VBD IN DT NN IN IN CD NNS IN NNP . The slide buried an outdoor market said to have been packed with people . DT NN VBD DT JJ NN VBN TO VB VBN VBN IN NNS . Officials stated hundreds could have been killed . NNS VBD NNS MD VB VBN VBN . More than 1,000 people are involved in rescue and recovery operations . JJR IN CD NNS VBP VBN IN NN CC NN NNS . Chinese work safety officials blamed the illegal mine for the disaster . JJ NN NN NNS VBD DT JJ NN IN DT NN . Police have detained 12 people associated with the mine , including its boss . NNS VBP VBN CD NNS VBN IN DT NN , VBG PRP$ NN . The United Nations says 2007 was one of the deadliest years on record for U.N. staffers . DT NNP NNP VBZ CD VBD CD IN DT JJS NNS IN NN IN NNP NNS . The United Nations said Wednesday that 42 civilian staffers and peacekeepers were killed in acts of violence worldwide last year , compared to 32 in 2006 and about half that in 2005 . DT NNP NNP VBD NNP IN CD JJ NNS CC NNS VBD VBN IN NNS IN NN NN JJ NN , VBN TO CD IN CD CC IN NN IN IN CD . The U.N. said the worst incident this year was in a bombing in Algiers on December 11 , when 17 U.N. staff members were among dozens who died in two car bomb attacks , an incident Secretary Ban Ki-Moon called ' despicable . ' DT NNP VBD DT JJS NN DT NN VBD IN DT NN IN NNP IN NNP CD , WRB CD NNP NN NNS VBD IN NNS WP VBD IN CD NN NN NNS , DT NN NNP NNP NNP VBD `` JJ . `` Six staffers lost their lives in a bomb attack in Lebanon June 24 , and another died the following month . CD NNS VBD PRP$ NNS IN DT NN NN IN NNP NNP CD , CC DT VBD DT VBG NN . Six other U.N. workers died in Sudanese violence in several different incidents . CD JJ NNP NNS VBD IN JJ NN IN JJ JJ NNS . Afghanistan was also the scene of six U.N. deaths over the course of the year . NNP VBD RB DT NN IN CD NNP NNS IN DT NN IN DT NN . Other U.N. staffers were detained in Darfur , Somalia , and Burma . JJ NNP NNS VBD VBN IN NNP , NNP , CC NNP . The U.S. government has proposed a new , high-tech passport card for Americans who travel internationally within the Western Hemisphere . DT NNP NN VBZ VBN DT JJ , JJ NN NN IN NNS WP VBP RB IN DT NNP NNP . The State Department and the Department of Homeland Security have submitted Tuesday a proposal for public comment . DT NNP NNP CC DT NNP IN NNP NNP VBP VBN NNP DT NN IN JJ NN . The plan calls for a card that is small enough to fit into a person 's wallet . DT NN VBZ IN DT NN WDT VBZ JJ RB TO VB IN DT NN POS NN . It would meet the same standards as a traditional passport book , but would only be used by U.S. citizens traveling from the U.S. to Canada , Mexico , the Caribbean and Bermuda . PRP MD VB DT JJ NNS IN DT JJ NN NN , CC MD RB VB VBN IN NNP NNS VBG IN DT NNP TO NNP , NNP , DT NNP CC NNP . The proposed card would use radio frequency identification ( RFID ) that links the card to a government database that contains biographical information and a photograph . DT VBN NN MD VB NN NN NN LRB NNP RRB WDT VBZ DT NN TO DT NN NN WDT VBZ JJ NN CC DT NN . The State Department says the passport card could make frequent travel easier for people who live in border communities . DT NNP NNP VBZ DT NN NN MD VB JJ NN JJR IN NNS WP VBP IN NN NNS . Former Ukrainian Prime Minister Yulia Tymoshenko says she will not seek a coalition with the pro-Russian Party of Regions after Sunday 's parliamentary elections . JJ JJ JJ NN NNP NNP VBZ PRP MD RB VB DT NN IN DT JJ NN IN NNS IN NNP POS JJ NNS . Tymoshenko Tuesday ruled out any partnership with the party led by former Prime Minister Viktor Yanukovych . NNP NNP VBD RP DT NN IN DT NN VBN IN JJ NNP NNP NNP NNP . Opinion polls show the Regions Party is favored to win the largest number of seats in the vote . NN NNS VBP DT NNP NNP VBZ VBN TO VB DT JJS NN IN NNS IN DT NN . But no single party is expected to have enough seats to form a government . CC DT JJ NN VBZ VBN TO VB JJ NNS TO VB DT NN . A top official for President Viktor Yushchenko 's Our Ukraine party also rejected forming a coalition with the Party of Regions . DT JJ NN IN NNP NNP NNP POS PRP$ NNP NN RB VBD VBG DT NN IN DT NN IN NNS . Mr. Yushchenko 's campaign manager , Roman Bezsmertniy , says the party hopes to form a coalition with the bloc led by Tymoshenko . NNP NNP POS NN NN , NNP NNP , VBZ DT NN VBZ TO VB DT NN IN DT NN VBN IN NNP . The two groups were the key forces behind the so-called ' Orange Revolution ' that helped bring Mr. Yushchenko to power last year . DT CD NNS VBD DT JJ NNS IN DT JJ `` NNP NNP `` WDT VBD VB NNP NNP TO NN JJ NN . The United States has expressed disappointment that an Egyptian court has rejected the appeal of a blogger , convicted for insulting Islam and the Egyptian president . DT NNP NNPS VBZ VBN NN IN DT JJ NN VBZ VBN DT NN IN DT NN , VBN IN VBG NNP CC DT JJ NN . State Department spokesman , Sean McCormack said Thursday the court 's decision is a setback for human rights in Egypt . NNP NNP NN , NNP NNP VBD NNP DT NN POS NN VBZ DT NN IN JJ NNS IN NNP . He said the U.S. is deeply concerned that a blogger was sentenced for expressing his opinions . PRP VBD DT NNP VBZ RB JJ IN DT NN VBD VBN IN VBG PRP$ NNS . He said freedom of expression is critical in a democratic society . PRP VBD NN IN NN VBZ JJ IN DT JJ NN . On Monday , an Egyptian appeals court upheld a lower court decision last month to sentence blogger Abdel Karim Suleiman to four years in prison - three for insulting Islam and one for insulting President Hosni Mubarak . IN NNP , DT JJ NNS NN VBD DT JJR NN NN JJ NN TO NN NN NNP NNP NNP TO CD NNS IN NN IN CD IN VBG NNP CC CD IN VBG NNP NNP NNP . Suleiman plans to bring the latest decision to the country 's highest appeals court . NNP VBZ TO VB DT JJS NN TO DT NN POS JJS NNS NN . In his blog published in 2004 , Suleiman called Mr. Mubarak a dictator . IN PRP$ NN VBN IN CD , NNP VBD NNP NNP DT NN . He wrote that Al-Azhar University , the seat of Sunni Muslim learning , trains extremists . PRP VBD IN NNP NNP , DT NN IN NNP NNP NN , VBZ NNS . An Australian prosecutor said Thursday a terrorism defendant admitted to police he was recruited by al-Qaida to monitor military bases in the country . DT JJ NN VBD NNP DT NN NN VBD TO VB PRP VBD VBN IN NNP TO VB JJ NNS IN DT NN . Joseph Terrence Thomas has pleaded not guilty to charges that he received funds from al-Qaida , supported the terrorist group 's activities and held a fake passport . NNP NNP NNP VBZ VBN RB JJ TO NNS IN PRP VBD NNS IN NNP , VBD DT JJ NN POS NNS CC VBD DT JJ NN . But prosecutor Nicholas Robinson told the Victoria state Supreme Court that Thomas admitted to Australian police he trained at an al-Qaida camp in Afghanistan in 2001 , and had been told to watch military activities in Australia . CC NN NNP NNP VBD DT NNP NN NNP NNP IN NNP VBD TO JJ NNS PRP VBN IN DT NNP NN IN NNP IN CD , CC VBD VBN VBN TO VB JJ NNS IN NNP . The prosecutor said Thomas also told police he saw al-Qaida leader Osama bin Laden in close quarters on several occasions . DT NN VBD NNP RB VBD NNS PRP VBD NNP NN NNP NNP NNP IN JJ NNS IN JJ NNS . He said Thomas told police he accepted $ 3,500 and a plane ticket from an al-Qaida agent in Pakistan . PRP VBD NNP VBD NNS PRP VBD $ CD CC DT NN NN IN DT NNP NN IN NNP . Wimbledon runner-up Lindsay Davenport has withdrawn from the U.S. Fed Cup tennis team for its semifinal against Russia because of a back injury . NNP NN NNP NNP VBZ VBN IN DT NNP NNP NNP NN NN IN PRP$ JJ IN NNP IN IN DT JJ NN . Jill Craybas , who beat Serena Williams at the All England Club last month , has replaced Davenport . NNP NNP , WP VBD NNP NNP IN DT NNP NNP NNP JJ NN , VBZ VBN NNP . Craybas lost to Venus Williams , who is the Fed Cup team 's top singles player . NNP VBD TO NNP NNP , WP VBZ DT NNP NNP NN POS JJ NN NN . The 32-year-old Craybas will play doubles with Corina Morariu , shifting Mashona Washington to the number-two singles slot . DT JJ NNP MD VB NNS IN NNP NNP , VBG NNP NNP TO DT JJ NN NN . It will be Craybas ' second appearance in the Fed Cup . PRP MD VB NNP POS JJ NN IN DT NNP NNP . The U.S.-Russia match will take place this Saturday and Sunday on an indoor clay court at the Olympic Stadium in Moscow . DT NNP NN MD VB NN DT NNP CC NNP IN DT JJ NN NN IN DT NNP NNP IN NNP . The winner faces the winner of this weekend 's other Fed Cup semifinal between France and Spain . DT NN VBZ DT NN IN DT NN POS JJ NNP NNP NN IN NNP CC NNP . The championship is set for mid-September . DT NN VBZ VBN IN NN . Ukrainian President Victor Yushchenko says his nation is obliged to prevent crimes against humanity . JJ NNP NNP NNP VBZ PRP$ NN VBZ VBN TO VB NNS IN NN . President Yushchenko told the United Nations General Assembly Thursday that Ukraine lost 10 million lives during the era of Soviet dictator Josef Stalin . NNP NNP VBD DT NNP NNP NNP NNP NNP IN NNP VBD CD CD NNS IN DT NN IN JJ NN NNP NNP . He said he wanted the world to be aware of such brutality . PRP VBD PRP VBD DT NN TO VB JJ IN JJ NN . Mr. Yushchenko said Ukraine is an active member in the fight against terrorism and is committed to controlling nuclear proliferation . NNP NNP VBD NNP VBZ DT JJ NN IN DT NN IN NN CC VBZ VBN TO VBG JJ NN . He said the country has developed what he called a road map to bring Ukraine closer to a united Europe and integration into the international economy . PRP VBD DT NN VBZ VBN WP PRP VBD DT NN NN TO VB NNP RBR TO DT JJ NNP CC NN IN DT JJ NN . The Sudanese government and the main southern rebel group say they are continuing peace talks through Christmas to try to fulfill a promise to reach a final deal before the end of the year . DT JJ NN CC DT JJ JJ NN NN VBP PRP VBP VBG NN NNS IN NNP TO VB TO VB DT NN TO VB DT JJ NN IN DT NN IN DT NN . The two sides have promised the United Nations Security Council they will sign an agreement by December 31st to formally end 21 years of civil war . DT CD NNS VBP VBN DT NNP NNP NNP NNP PRP MD VB DT NN IN NNP CD TO RB VB CD NNS IN JJ NN . However , a Sudanese presidential political adviser Qutbi al-Mahdi is quoted by the official Sudan Media Center Saturday as saying a final deal will not be signed until January 10 . RB , DT JJ JJ JJ NN NNP NNP VBZ VBN IN DT JJ NNP NNP NNP NNP IN VBG DT JJ NN MD RB VB VBN IN NNP CD . The Sudanese government and the rebel Sudan People 's Liberation Army have already signed several key accords at peace talks in Kenya , including power-sharing and security deals . DT JJ NN CC DT NN NNP NNP POS NNP NNP VBP RB VBN JJ JJ NNS IN NN NNS IN NNP , VBG NN CC NN NNS . The southern conflict is separate from the one in Sudan 's western Darfur region , where rebels took up arms last year . DT JJ NN VBZ JJ IN DT CD IN NNP POS JJ NNP NN , WRB NNS VBD RP NNS JJ NN . Separate attacks in Afghanistan have wounded five U.S. soldiers and left a local government official dead . JJ NNS IN NNP VBP VBN CD NNP NNS CC VBD DT JJ NN NN JJ . The soldiers were wounded Saturday when their armored vehicle was hit by a bomb in eastern Kunar province . DT NNS VBD VBN NNP WRB PRP$ JJ NN VBD VBN IN DT NN IN JJ NNP NN . Coalition forces responded with small arms fire . NN NNS VBD IN JJ NNS NN . In a separate attack , a suicide bomber targeted Afghan and coalition forces in Kandahar province . IN DT JJ NN , DT NN NN VBD JJ CC NN NNS IN NNP NN . None of the troops was reported killed or wounded . NN IN DT NNS VBD VBN VBN CC VBN . However , security forces shot and killed a suspected accomplice to the attack . RB , NN NNS VBN CC VBN DT JJ NN TO DT NN . A purported Taleban spokesman claimed responsibility for the two bombings . DT JJ NNP NN VBD NN IN DT CD NNS . In northern Tahhar province , Afghan officials say unidentified gunmen killed a local government official . IN JJ NNP NN , JJ NNS VBP JJ NNS VBD DT JJ NN NN . They say Sayed Sadeq was killed by men who broke into his house early Saturday . PRP VBP NNP NNP VBD VBN IN NNS WP VBD IN PRP$ NN RB NNP . Sadeq was the speaker of the Tahhar provincial assembly . NNP VBD DT NN IN DT NNP JJ NN . Mexican officials say a small plane has crashed in central Mexico state , killing two people and destroying at least one house . JJ NNS VBP DT JJ NN VBZ VBN IN JJ NNP NN , VBG CD NNS CC VBG IN JJS CD NN . Officials say the twin-engine Aero Commander aircraft was en route from Cancun to the city of Toluca when it went down late Friday in a residential area a few kilometers from of the runway . NNS VBP DT JJ NNP NNP NN VBD IN NN IN NNP TO DT NN IN NNP WRB PRP VBD RB RB NNP IN DT JJ NN DT JJ NNS IN IN DT NN . Emergency crews say two people from the plane were killed and a third was injured . NN NNS VBP CD NNS IN DT NN VBD VBN CC DT NN VBD VBN . No injuries on the ground have been reported . DT NNS IN DT NN VBP VBN VBN . Officials have yet to say what may have caused the accident . NNS VBP RB TO VB WP MD VB VBN DT NN . The United Nations war crimes tribunal has decided against separating the Kosovo section of the trial of former Yugoslav President Slobodan Milosevic from that involving Croatia and Bosnia-Herzegovina . DT NNP NNPS NN NNS NN VBZ VBN IN VBG DT NNP NN IN DT NN IN JJ JJ NNP NNP NNP IN DT VBG NNP CC NNP . The three-judge panel made the decision Tuesday , in an effort to speed up the Milosevic trial . DT JJ NN VBD DT NN NNP , IN DT NN TO VB RP DT NNP NN . It previously had suggested a division , amid growing concerns about the former Yugoslav president 's poor health , which has repeatedly delayed the proceedings . PRP RB VBD VBN DT NN , IN VBG NNS IN DT JJ JJ NN POS JJ NN , WDT VBZ RB VBN DT NNS . The court also adjourned the trial until January 23 , ahead of a planned Christmas break , giving Mr. Milosevic an additional three weeks to rest . DT NN RB VBD DT NN IN NNP CD , RB IN DT JJ NNP NN , VBG NNP NNP DT JJ CD NNS TO NN . It rejected Mr. Milosevic 's request for extra time to present his defense , and it criticized him for focusing most of his time on Kosovo in efforts to force the court to give him the extension . PRP VBD NNP NNP POS NN IN JJ NN TO VB PRP$ NN , CC PRP VBD PRP IN VBG JJS IN PRP$ NN IN NNP IN NNS TO VB DT NN TO VB PRP DT NN . Mr. Milosevic faces more than 60 counts of war crimes and crimes against humanity for his role in the Balkan conflicts of the 1990s . NNP NNP VBZ JJR IN CD NNS IN NN NNS CC NNS IN NN IN PRP$ NN IN DT JJ NNS IN DT NNS . England 's Alistair Cook has hit a century in his test debut while Kevin Pietersen added another 87 runs to lift their team on the fourth day of its opening test match against India in Nagpur . NNP POS NNP NNP VBZ VBN DT NN IN PRP$ NN NN IN NNP NNP VBD DT CD NNS TO VB PRP$ NN IN DT JJ NN IN PRP$ NN NN NN IN NNP IN NNP . Cook , a 21-year-old left-handed opener , scored 104 not out , while Pietersen was more aggressive at the crease and reached 87 before being dismissed by Rahul Dravid . NNP , DT JJ JJ NN , VBD CD RB RB , IN NNP VBD RBR JJ IN DT NN CC VBD CD IN VBG VBN IN NNP NNP . The English reached 297-for three at stumps for an overall lead of 367 runs . DT NNS VBD JJ CD IN NNS IN DT JJ NN IN CD NNS . India was all out for 323 in its first innings . NNP VBD DT RP IN CD IN PRP$ JJ NN . English bowler Matthew Hoggard took six wickets while allowing 57 runs in 30.5 overs . JJ NN NNP NNP VBD CD NNS IN VBG CD NNS IN CD NNS . England 's India tour includes three tests and seven one-day international matches , through mid-April . NNP POS NNP NN VBZ CD NNS CC CD JJ JJ NNS , IN NN . Floods in northern Venezuela have killed at least 13 people and forced more than 5,000 to leave their homes . NNS IN JJ NNP VBP VBN IN JJS CD NNS CC VBD JJR IN CD TO VB PRP$ NNS . Heavy rains have caused floods and landslides , forcing authorities to declare a state of emergency in the capital city of Caracas and the country 's northern provinces . JJ NNS VBP VBN NNS CC NNS , VBG NNS TO VB DT NN IN NN IN DT NN NN IN NNP CC DT NN POS JJ NNS . Flooding rivers and landslides have blocked traffic in northern Venezuela 's coastal areas . VBG NNS CC NNS VBP VBN NN IN JJ NNP POS JJ NNS . Minister of Education Aristolbulo Isturiz announced Wednesday that classes across the country have been canceled to allow flood victims to seek refuge in the schools . NNP IN NNP NNP NNP VBD NNP IN NNS IN DT NN VBP VBN VBN TO VB NN NNS TO VB NN IN DT NNS . Weather forecasts say more rain is likely to hit northern Venezuela over the next three days . NNP NNS VBP JJR NN VBZ JJ TO VB JJ NNP IN DT JJ CD NNS . A top opposition leader in Ivory Coast has returned to the west African nation after three years in exile . DT JJ NN NN IN NNP NNP VBZ VBN TO DT JJ JJ NN IN CD NNS IN NN . Alassane Ouattara arrived in Abidjan Wednesday , greeted by a small group of supporters and dozens of U.N. peacekeepers who will provide him protection . NNP NNP VBD IN NNP NNP , VBN IN DT JJ NN IN NNS CC NNS IN NNP NNS WP MD VB PRP NN . He issued a call for unity and said he is returning to his country with ' a lot of love . ' PRP VBD DT NN IN NN CC VBD PRP VBZ VBG TO PRP$ NN IN `` DT NN IN NN . `` Ouattara is a former prime minster and heads the Rally of Republicans party . NNP VBZ DT JJ JJ NN CC VBZ DT NN IN NNPS NN . He fled Ivory Coast for France three years ago after allies of President Laurent Gbagbo accused him of supporting northern-based rebels in the country 's civil war . PRP VBD NNP NNP IN NNP CD NNS RB IN NNS IN NNP NNP NNP VBD PRP IN VBG JJ NNS IN DT NN POS JJ NN . Ouattara has said he will run in presidential elections scheduled for October . NNP VBZ VBN PRP MD VB IN JJ NNS VBN IN NNP . Ivory Coast is divided between rebel-held and government-controlled areas . NNP NNP VBZ VBN IN JJ CC JJ NNS . A peace deal to reunite the country has repeatedly stalled . DT NN NN TO VB DT NN VBZ RB VBN . Pakistan police say a roadside bomb attack on a prison van has wounded at least 10 policemen in the restive northwest . NNP NNS VBP DT NN NN NN IN DT NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN . Officials say Saturday 's explosion was near a jail in the town of Timergarah in Lower Dir district . NNS VBP NNP POS NN VBD IN DT NN IN DT NN IN NNP IN NNP NNP NN . No group has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . Elsewhere in Pakistan , at least six people have been wounded by an explosion in southwestern Pakistan . RB IN NNP , IN JJS CD NNS VBP VBN VBN IN DT NN IN JJ NNP . Police say the blast went off in a bakery Saturday in Sibbi in the province of Baluchistan . NNS VBP DT NN VBD RB IN DT NN NNP IN NNP IN DT NN IN NNP . Russia and Ukraine say they have reached a final agreement on natural gas deliveries for the rest of the year . NNP CC NNP VBP PRP VBP VBN DT JJ NN IN JJ NN NNS IN DT NN IN DT NN . Russia 's state-run gas monopoly Gazprom says the deal , announced Thursday , also specifies prices for gas delivered in the first two months of this year . NNP POS JJ NN NN NNP VBZ DT NN , VBN NNP , RB VBZ NNS IN NN VBN IN DT JJ CD NNS IN DT NN . Additionally , the new agreement streamlines gas trade by eliminating intermediary companies that Ukraine said were complicating gas payment procedures . RB , DT JJ NN VBZ NN NN IN VBG JJ NNS WDT NNP VBD VBD VBG NN NN NNS . Gazprom cut gas deliveries to Ukraine by more than 50 percent earlier this month , because , it said , no payment provisions were in place for gas delivered to Ukraine in January and February . NNP VBD NN NNS TO VB IN JJR IN CD NN RBR DT NN , IN , PRP VBD , DT NN NNS VBD IN NN IN NN VBN TO VB IN NNP CC NNP . The Russian company had demanded $ 600 million in back payments , as well as for a payment plan for the rest of the year . DT JJ NN VBD VBN $ CD CD IN JJ NNS , RB RB IN IN DT NN NN IN DT NN IN DT NN . Ukraine threatened to siphon gas meant for Europe from pipelines that cross Ukraine . NNP VBD TO VB NN VBN IN NNP IN NNS WDT VBP NNP . The Israeli military says Israeli and Palestinian officials have agreed to meet for a second time Wednesday to resolve a standoff on handing over security of the West Bank town of Jericho . DT JJ NN VBZ JJ CC JJ NNS VBP VBN TO VB IN DT JJ NN NNP TO VB DT NN IN VBG IN NN IN DT NNP NNP NN IN NNP . Talks earlier Wednesday on transferring control of the towns of Jericho and Tulkarem broke down without an agreement . NNS JJR NNP IN VBG NN IN DT NNS IN NNP CC NNP VBD RP IN DT NN . Palestinian officials said the biggest obstacle is whether Israel will agree to remove the main checkpoint at the entrance of Jericho . JJ NNS VBD DT JJS NN VBZ IN NNP MD VB TO VB DT JJ NN IN DT NN IN NNP . The Israeli pullback was agreed to at a Palestinian-Israeli summit last month in Egypt , but has been delayed because of a Palestinian suicide bombing 12 days ago in Tel Aviv that killed four people . DT JJ NN VBD VBN TO IN DT JJ NN JJ NN IN NNP , CC VBZ VBN VBN IN IN DT JJ NN VBG CD NNS RB IN NNP NNP WDT VBD CD NNS . The transfer would be the first of several planned Israeli pullouts from five towns in the West Bank , including Qalqilya , Bethlehem and Ramallah . DT NN MD VB DT NN IN JJ JJ JJ NNS IN CD NNS IN DT NNP NNP , VBG NNP , NNP CC NNP . French authorities are holding five men on suspicion of links to the al-Qaida affiliated terrorist group behind the deadly bombings in Algeria last week . JJ NNS VBP VBG CD NNS IN NN IN NNS TO DT NNP JJ JJ NN IN DT JJ NNS IN NNP JJ NN . Officials say the five are part of a group of eight detained in Paris and the northwestern region of Rouen Tuesday . NNS VBP DT CD VBP NN IN DT NN IN CD VBN IN NNP CC DT JJ NN IN NNP NNP . Three of the group were released after questioning . CD IN DT NN VBD VBN IN VBG . Authorities say the five are suspected of providing computers and telecommunications help to al-Qaida 's North African wing , which claimed responsibility for the car bomb attacks . NNS VBP DT CD VBP VBN IN VBG NNS CC NNS VBP TO NNP POS JJ JJ NN , WDT VBD NN IN DT NN NN NNS . The officials said there was no indication of any direct links between those detained and the attacks and no sign that the five were planning any attacks in France . DT NNS VBD EX VBD DT NN IN DT JJ NNS IN DT VBN CC DT NNS CC DT NN IN DT CD VBD VBG DT NNS IN NNP . The bombings outside United Nations offices and a government building in Algiers killed at least 37 people , including 17 U.N. employees . DT NNS IN NNP NNP NNS CC DT NN NN IN NNP VBD IN JJS CD NNS , VBG CD NNP NNS . The United States has welcomed the release of 32 Ethiopian opposition members who had been detained in Ethiopia since post-election violence in 2005 . DT NNP NNP VBZ VBN DT NN IN CD JJ NN NNS WP VBD VBN VBN IN NNP IN JJ NN IN CD . The State Department said the release of the opposition figures Saturday will promote political dialogue in the country . DT NNP NNP VBD DT NN IN DT NN NNS NNP MD VB JJ NN IN DT NN . It urged the Ethiopian government to continue to encourage national reconciliation and political reform . PRP VBD DT JJ NN TO VB TO VB JJ NN CC JJ NN . The opposition members were the second group of opposition figures released since July . DT NN NNS VBD DT JJ NN IN NN NNS VBN IN NNP . Another 38 were released last month after receiving life sentences . DT CD VBD VBN JJ NN IN VBG NN NNS . None of the 32 freed on Saturday had been charged in court with any crimes . NN IN DT CD VBN IN NNP VBD VBN VBN IN NN IN DT NNS . All the opposition members had been rounded up after protests over the 2005 elections turned violent . PDT DT NN NNS VBD VBN VBN RP IN NNS IN DT CD NNS VBD JJ . Ethiopian security forces killed at least 193 people while stopping the protests . JJ NN NNS VBN IN JJS CD NNS IN VBG DT NNS . The opposition made its largest gains ever in the 2005 elections . DT NN VBD PRP$ JJS NNS RB IN DT CD NNS . Opposition groups claimed the elections were rigged to keep Prime Minister Meles Zenawi in power . NN NNS VBD DT NNS VBD VBN TO VB NNP NNP NNP NNP IN NN . Iran 's top nuclear negotiator is in India for talks with senior government officials . NNP POS JJ JJ NN VBZ IN NNP IN NNS IN JJ NN NNS . Ali Larijani 's trip comes as the United States , European Union countries and the U.N. nuclear agency are pressing Iran to stop work on nuclear fuel that could also be used to make weapons . NNP NNP POS NN VBZ IN DT NNP NNPS , NNP NNP NNS CC DT NNP JJ NN VBP VBG NNP TO VB NN IN JJ NN WDT MD RB VB VBN TO VB NNS . Iran insists it has the right to enrich uranium . NNP VBZ PRP VBZ DT NN TO VB NN . Asked about the dispute Wednesday , Mr. Larijani said it is important for Iran to continue cooperating with the International Atomic Energy Agency , but he said it is up to Iran to decide on the nuclear fuel question . VBN IN DT NN NNP , NNP NNP VBD PRP VBZ JJ IN NNP TO VB VBG IN DT NNP NNP NNP NNP , CC PRP VBD PRP VBZ RB TO NNP TO VB IN DT JJ NN NN . Mr. Larijani said the focus of his trip to India was on strategic relations , and energy in particular . NNP NNP VBD DT NN IN PRP$ NN TO NNP VBD IN JJ NNS , CC NN IN JJ . India 's foreign minister will travel to Tehran Friday for talks expected to include a proposed gas pipeline between Iran and India . NNP POS JJ NN MD VB TO VB NNP IN NNS VBN TO VB DT JJ NN NN IN NNP CC NNP . A report by the European Union says Muslims across Europe are confronting a rise in discrimination and so-called ' Islamophobia ' . DT NN IN DT NNP NNP VBZ NNPS IN NNP VBP VBG DT NN IN NN CC JJ `` NNP `` . The study , released by the European Monitoring Center on Racism and Xenophobia Monday , says manifestations of Islamophobia range from verbal threats to physical attacks on people and property . DT NN , VBN IN DT JJ NNP NNP IN NNP CC NNP NNP , VBZ NNS IN NNP NN IN JJ NNS TO JJ NNS IN NNS CC NN . The report finds that European Muslims are disproportionally represented in areas with poor housing conditions . DT NN VBZ IN JJ NNS VBP RB VBN IN NNS IN JJ NN NNS . It says their education levels are below average and their unemployment rates are higher than average . PRP VBZ PRP$ NN NNS VBP IN JJ CC PRP$ NN NNS VBP JJR IN NN . Muslims are also found to be overrepresented in low-paying jobs and those that require few qualifications . NNS VBP RB VBN TO VB VBN IN JJ NNS CC DT WDT VBP JJ NNS . The study says the extent of discrimination and Islamophobic incidents against European Muslims remains underdocumented and underreported . DT NN VBZ DT NN IN NN CC JJ NNS IN JJ NNPS VBZ JJ CC JJ . Muslims constitute about 3.5 percent of the population of the 25-nation bloc . NNPS VBP IN CD NN IN DT NN IN DT JJ NN . The International Atomic Energy Agency says Iran has produced a gas needed for uranium enrichment . DT NNP NNP NNP NNP VBZ NNP VBZ VBN DT NN VBN IN NN NN . A former U.N. weapons inspector says Iran has produced enough of this nuclear material to fuel an atomic weapon . DT JJ NNP NNS NN VBZ NNP VBZ VBN RB IN DT JJ NN TO VB DT JJ NN . The agency 's findings are part of a confidential report obtained by news agencies Friday . DT NN POS NNS VBP NN IN DT JJ NN VBN IN NN NNS NNP . The U.N. nuclear watchdog said Iran 's nuclear plant in Isfahan has processed about seven tons of uranium hexaflouride gas since resuming work in early August . DT NNP JJ NN VBD NNP POS JJ NN IN NNP VBZ VBN IN CD NNS IN NN NN NN IN VBG NN IN JJ NNP . That gas can be turned into the key ingredient for a nuclear bomb . DT NN MD VB VBN IN DT JJ NN IN DT JJ NN . The report said even after two years of U.N. investigation , Iran failed to answer important questions about its secret nuclear activity . DT NN VBD RB IN CD NNS IN NNP NN , NNP VBD TO VB JJ NNS IN PRP$ JJ JJ NN . Iran says its nuclear program is a peaceful effort to generate electricity , but critics fear Tehran is secretly working on nuclear weapons . NNP VBZ PRP$ JJ NN VBZ DT JJ NN TO VB NN , CC NNS VBP NNP VBZ RB VBG IN JJ NNS . The International Committee of the Red Cross says rebels from Western Sahara have freed their last Moroccan prisoners of war . DT NNP NNP IN DT NNP NNP VBZ NNS IN JJ NNP VBP VBN PRP$ JJ JJ NNS IN NN . Rebels from the Polisario Front handed over the 404 soldiers Thursday in the southern Algerian town of Tindouf . NNS IN DT NNP NNP VBD IN DT CD NNS NNP IN DT JJ JJ NN IN NNP . They had held many of the Moroccans for two decades . PRP VBD VBN NN IN DT NNS IN CD NNS . The rebels said they hoped the release would help clear the way for a peace settlement for Western Sahara . DT NNS VBD PRP VBD DT NN MD VB VB DT NN IN DT NN NN IN JJ NNP . They also urged Morocco to release any remaining rebel prisoners . PRP RB VBD NNP TO VB DT VBG NN NNS . The Red Cross says Thursday 's release follows U.S. mediation . DT NNP NNP VBZ NNP POS NN VBZ NNP NN . A senior U.S. senator , Richard Lugar , arrived in Algeria Thursday to monitor the release . DT JJ NNP NN , NNP NNP , VBD IN NNP NNP TO VB DT NN . The Polisario Front captured some 2,000 Moroccan troops in its 16-year war with Morocco over the desert territory . DT NNP NNP VBD DT CD JJ NNS IN PRP$ JJ NN IN NNP IN DT NN NN . The conflict began when Spain pulled out of the territory in 1975 . DT NN VBD WRB NNP VBD IN IN DT NN IN CD . A cease-fire was reached in 1991 . DT NN VBD VBN IN CD . A newspaper report says the United States has been flying drones over Iran for almost a year , looking for evidence of nuclear weapons programs and weaknesses in air defenses . DT NN NN VBZ DT NNP NNPS VBZ VBN VBG NNS IN NNP IN RB DT NN , VBG IN NN IN JJ NNS NNS CC NNS IN NN NNS . In Sunday 's editions , The Washington Post quotes three U.S. officials as saying the U.S. military has been launching the unmanned surveillance flights from Iraq . IN NNP POS NNS , DT NNP NNP VBZ CD NNP NNS IN VBG DT NNP NN VBZ VBN VBG DT JJ NN NNS IN NNP . There has been no U.S. comment on the report . EX VBZ VBN DT NNP NN IN DT NN . An Iranian spokesman Sunday again warned the United States not to attack its nuclear facilities . DT JJ NN NNP RB VBD DT NNP NNPS RB TO VB PRP$ JJ NNS . He also rejected a European proposal aimed at restricting Tehran 's development of nuclear fuel . PRP RB VBD DT JJ NN VBN IN VBG NNP POS NN IN JJ NN . Iran has said in the past it would stop plans to build a heavy water nuclear reactor , which can be used to make nuclear weapons-grade material as well as for nuclear energy . NNP VBZ VBN IN DT NN PRP MD VB NNS TO VB DT JJ NN JJ NN , WDT MD VB VBN TO VB JJ JJ NN RB RB IN IN JJ NN . But Sunday in Tehran , a foreign ministry spokesman said Iran will go forward with the heavy water reactor and will not replace it under any circumstances . CC NNP IN NNP , DT JJ NN NN VBD NNP MD VB RB IN DT JJ NN NN CC MD RB VB PRP IN DT NNS . Vietnamese officials say floods have killed at least 77 people in central Vietnam since late last month , and now a new typhoon is approaching . JJ NNS VBP NNS VBP VBN IN JJS CD NNS IN JJ NNP IN RB JJ NN , CC RB DT JJ NN VBZ VBG . Typhoon Peipah is working its way across the South China Sea and is expected to dump heavy rains on Vietnam 's central provinces as early as Friday . NNP NNP VBZ VBG PRP$ NN IN DT NNP NNP NNP CC VBZ VBN TO VB JJ NNS IN NNP POS JJ NNS RB RB IN NNP . Since late October , heavy rains have ravaged parts of central Vietnam , damaging rice crops and forcing schools to close . IN JJ NNP , JJ NNS VBP VBN NNS IN JJ NNP , JJ NN NNS CC VBG NNS TO VB . State media say at least one million people in the region are facing shortages of clean water and food . NNP NNS VBP IN JJS CD CD NNS IN DT NN VBP VBG NNS IN JJ NN CC NN . In early October , Typhoon Lekima killed nearly 100 people in the same region . IN JJ NNP , NNP NNP VBD RB CD NNS IN DT JJ NN . Peipah passed over the northern tip of the Philippines on Monday , flooding towns and killing at least five people . NNP VBD IN DT JJ NN IN DT NNPS IN NNP , NN NNS CC VBG IN JJS CD NNS . Floods and storms kill hundreds of people each year in Vietnam . NNS CC NNS VBP NNS IN NNS DT NN IN NNP . Cuban and Chinese military leaders have met in Havana to reaffirm ties between the two communist countries . JJ CC JJ NN NNS VBP VBN IN NNP TO VB NNS IN DT CD JJ NNS . In a meeting Saturday at Cuba 's Armed Forces Ministry , the country 's military chief , Raul Castro , stressed the long-standing friendship between the two nations . IN DT NN NNP IN NNP POS NNP NNP NNP , DT NN POS JJ NN , NNP NNP , VBD DT JJ NN IN DT CD NNS . He said China 's presence on the island will help strengthen relations between Beijing and Havana . PRP VBD NNP POS NN IN DT NN MD VB VB NNS IN NNP CC NNP . His Chinese counterpart , General Liang Guanglie , said his visit will help strengthen what he called the ' historic ' ties between the government , armed forces and people of both countries . PRP$ JJ NN , NNP NNP NNP , VBD PRP$ NN MD VB VB WP PRP VBD DT `` JJ `` NNS IN DT NN , JJ NNS CC NNS IN DT NNS . Following the meeting , the high-level Chinese delegation toured a tank base on the outskirts of Havana , where members were given details on the structure , mission and history of the military facility . VBG DT NN , DT JJ JJ NN VBD DT NN NN IN DT NNS IN NNP , WRB NNS VBD VBN NNS IN DT NN , NN CC NN IN DT JJ NN . The delegation leaves Cuba Sunday . DT NN VBZ NNP NNP . A pro-Kurdish news agency says Kurdish rebels have extended their unilateral ceasefire with Turkey for two more weeks . DT JJ NN NN VBZ NNP NNS VBP VBN PRP$ JJ NN IN NNP IN CD JJR NNS . Their original 30-day truce expired on Tuesday . PRP$ JJ JJ NN VBD IN NNP . The notice was published Wednesday by the Mesopotamia news agency , which frequently carries rebel statements . DT NN VBD VBN NNP IN DT NNP NN NN , WDT RB VBZ JJ NNS . This ceasefire extension by the outlawed Kurdistan Workers Party , known as the PKK , appears timed to coincide with the October 3 start of Turkey 's membership talks with the European Union . DT JJ NN IN DT JJ NNP NNP NNP , VBN IN DT NNP , VBZ VBN TO VB IN DT NNP CD NN IN NNP POS NN NNS IN DT NNP NNP . The Associated Press quotes rebels who urged the Turkish government to correctly assess the historic opportunity for peace . DT NNP NNP VBZ NNS WP VBD DT JJ NN TO RB VB DT JJ NN IN NN . Turkey has repeatedly said it will not enter into direct talks with the PKK . NNP VBZ RB VBN PRP MD RB VB IN JJ NNS IN DT NNP . In announcing the ceasefire last month , the PKK said it would not conduct any operations beyond self-defense . IN VBG DT NN JJ NN , DT NNP VBD PRP MD RB VB DT NNS IN NN . But Western news reports say rebels clashed twice last week with Turkish soldiers in southeastern Turkey . CC JJ NN NNS VBP NNS VBN RB JJ NN IN JJ NNS IN JJ NNP . Five soldiers were reported killed in the fighting . CD NNS VBD VBN VBN IN DT NN . Top Israeli and Palestinian security officials are meeting to work out a deal for Israel to hand over security control of several West Bank towns to the Palestinian Authority . NNP JJ CC JJ NN NNS VBP VBG TO VB RP DT NN IN NNP TO VB IN NN NN IN JJ NNP NNP NNS TO DT JJ NNP . Israeli Defense Minister Shaul Mofaz and Palestinian Mohammed Dahlan began their talks hours after Palestinians say Israeli military gunfire killed a schoolgirl in the Gaza Strip . JJ NNP NNP NNP NNP CC JJ NNP NNP VBD PRP$ NNS NNS IN NNS VBP JJ JJ NN VBD DT NN IN DT NNP NNP . Israel is probing the Monday incident , which triggered Palestinian mortar fire into an Israeli settlement near the school where the girl died . NNP VBZ VBG DT NNP NN , WDT VBD JJ NN NN IN DT JJ NN IN DT NN WRB DT NN VBD . No Israeli casualties were reported . DT JJ NNS VBD VBN . A short time later , Hamas and other militant groups said they would stick to their pledge to stop attacks on Israelis if the Israeli army does not launch offensive operations . DT JJ NN RB , NNP CC JJ JJ NNS VBD PRP MD VB TO PRP$ NN TO VB NNS IN NNS IN DT JJ NN VBZ RB VB JJ NNS . Meanwhile , U.S. Secretary of State Condoleezza Rice met with Israeli diplomats in Washington Monday ahead of her trip to the Middle East later this week . RB , NNP NNP IN NNP NNP NNP VBD IN JJ NNS IN NNP NNP RB IN PRP$ NN TO DT NNP NNP RB DT NN . Japanese officials say the deaths of hundreds of chickens in eastern Japan earlier this year may have been caused by a fresh outbreak of bird flu . JJ NNS VBP DT NNS IN NNS IN NNS IN JJ NNP RBR DT NN MD VB VBN VBN IN DT JJ NN IN NN NN . About 430 chickens died between March and May at a poultry farm in Ibaraki prefecture , north of Tokyo . IN CD NNS VBD IN NNP CC NNP IN DT NN NN IN NNP NN , NN IN NNP . The farm keeps 25,000 chickens . DT NN VBZ CD NNS . A government laboratory is conducting tests to confirm whether the deaths were caused by the virus . DT NN NN VBZ VBG NNS TO VB IN DT NNS VBD VBN IN DT NN . Officials inspected the farm on Saturday , but found no abnormalities . NNS VBD DT NN IN NNP , CC VBD DT NNS . Japan suffered several outbreaks of bird flu last year . NNP VBD JJ NNS IN NN NN JJ NN . No one in Japan has yet been infected by the H5N1 avian flu virus that has killed 38 Vietnamese , 12 Thais and four Cambodians since the latest epidemic began in 2003 . DT NN IN NNP VBZ RB VBN VBN IN DT NNP JJ NN NN WDT VBZ VBN CD NNS , CD NNS CC CD NNS IN DT JJS NN VBD IN CD . The U.S. special envoy to Sudan , Andrew Natsios , has warned of what he calls a ' poisonous ' political atmosphere between Sudan 's government in the north and rebels in the south . DT NNP JJ NN TO NNP , NNP NNP , VBZ VBN IN WP PRP VBZ DT `` JJ `` JJ NN IN NNP POS NN IN DT NN CC NNS IN DT NN . Natsios Saturday said the U.S. is deeply concerned about the health of the Comprehensive Peace Agreement signed in 2005 . NNP NNP VBD DT NNP VBZ RB JJ IN DT NN IN DT NNP NNP NNP VBD IN CD . He made the comments as he wrapped up a 10-day visit to Sudan . PRP VBD DT NNS IN PRP VBD RP DT JJ NN TO NNP . That agreement ended the two decade-long civil war between the government in Khartoum and southern rebels . DT NN VBD DT CD JJ JJ NN IN DT NN IN NNP CC JJ NNS . Both sides have been critical of each other over missed deadlines for implementing key parts of the accord . DT NNS VBP VBN JJ IN DT NN IN VBN NNS IN VBG JJ NNS IN DT NN . The agreement makes both sides partners in resolving the conflict in Darfur . DT NN VBZ DT NNS NNS IN VBG DT NN IN NNP . But Natsios said implementation has been made difficult , in part , because both parties are facing one another in elections slated for 2009 . CC NNP VBD NN VBZ VBN VBN JJ , IN NN , IN DT NNS VBP VBG CD DT IN NNS VBN IN CD . The U.S. Army Corps of Engineers says it has finished pumping water out of New Orleans , after the southern city flooded as a result of hurricanes Katrina and Rita . DT NNP NNP NNP IN NNP VBZ PRP VBZ VBN VBG NN IN IN NNP NNP , IN DT JJ NN VBD IN DT NN IN NNS NNP CC NNP . A spokeswoman for the Corps made the announcement Tuesday after working for weeks to pump the water out at a rate of about 15 centimeters per day . DT NN IN DT NNP VBD DT NN NNP IN VBG IN NNS TO VB DT NN RP IN DT NN IN IN CD NNS IN NN . The Corps of Engineers is responsible for New Orleans ' levees and flood walls . DT NNP IN NNPS VBZ JJ IN NNP NNP POS NNS CC NN NNS . Most of the city is below sea level , and some 80 percent of it flooded after Katrina when water overflowed some flood walls and broke through others . JJS IN DT NN VBZ IN NN NN , CC DT CD NN IN PRP VBD IN NNP WRB NN VBD DT NN NNS CC VBD IN NNS . Some neighborhoods were inundated a second time when Rita brought heavy rains last month . DT NNS VBD VBN DT JJ NN WRB NNP VBD JJ NNS JJ NN . The Corps spokeswoman said the levees will be repaired to a pre-Katrina level of readiness by next June . DT NNP NN VBD DT NNS MD VB VBN TO DT JJ NN IN NN IN JJ NNP . Cypriot President Tassos Papadopoulos has called on the United Nations to move from rhetoric to action when helping developing nations . JJ NNP NNP NNP VBZ VBN IN DT NNP NNPS TO VB IN NN TO NN WRB VBG VBG NNS . Mr. Papadopoulos told the U.N. General Assembly Thursday that the gap between what he calls the haves and the have-nots is widening dramatically . NNP NNP VBD DT NNP NNP NNP NNP IN DT NN IN WP PRP VBZ DT NNS CC DT NNS VBZ VBG RB . He said the world body must honor past commitments and work to achieve goals for debt relief , improving access to world markets , and fighting AIDS and other diseases . PRP VBD DT NN NN MD VB JJ NNS CC NN TO VB NNS IN NN NN , VBG NN TO NN NNS , CC VBG NNP CC JJ NNS . Mr. Papadopoulos said detecting the seeds of conflict early and preventing them from blowing up into war should be the cornerstone of U.N. collective security efforts . NNP NNP VBD VBG DT NNS IN NN JJ CC VBG PRP IN VBG RP IN NN MD VB DT NN IN NNP JJ NN NNS . Russian President Vladimir Putin says his government will only support proposals on the future of Serbia 's Kosovo province if they are acceptable to both Serbia and ethnic Albanians living in the province . JJ NNP NNP NNP VBZ PRP$ NN MD RB VB NNS IN DT NN IN NNP POS NNP NN IN PRP VBP JJ TO DT NNP CC JJ NNS VBG IN DT NN . Mr. Putin spoke Sunday , in the Black Sea resort of Sochi , after talks with German Chancellor Angela Merkel . NNP NNP VBD NNP , IN DT NNP NNP NN IN NNP , IN NNS IN JJ NNP NNP NNP . His comments came as U.N. envoys prepare to give the U.N. Security Council recommendations on the future of the province . PRP$ NNS VBD IN NNP NNS VBP TO VB DT NNP NNP NNP NNS IN DT NN IN DT NN . Ethnic Albanians , who comprise 90 percent of Kosovo 's population , are seeking independence - a push strongly opposed by Belgrade . NNP NNS , WP VBP CD NN IN NNP POS NN , VBP VBG NN IN DT NN RB VBN IN NNP . Negotiators are expected to present a compromise offering some form of provincial autonomy . NNS VBP VBN TO VB DT NN VBG DT NN IN JJ NN . As a member of the Security Council , Russia - a historically close ally of Serbia - is likely to play a key role in Kosovo 's future , because it can use its Council veto to block any deal that does not satisfy Belgrade . IN DT NN IN DT NNP NNP , NNP IN DT RB JJ NN IN NNP : VBZ JJ TO VB DT JJ NN IN NNP POS NN , IN PRP MD VB PRP$ NNP NN TO VB DT NN WDT VBZ RB VB NNP . Officials from the International Security Assistance Force say a NATO soldier was killed Saturday during fighting in southern Afghanistan . NNS IN DT NNP NNP NNP NNP VBP DT NNP NN VBD VBN NNP IN VBG IN JJ NNP . NATO officials say four others were wounded in the clash . NNP NNS VBP CD NNS VBD VBN IN DT NN . Earlier today , the U.S.-led coalition in Afghanistan said several al-Qaida and Taleban fighters were killed in a gunbattle also in the country 's south . RBR NN , DT JJ NN IN NNP VBD JJ NNP CC NNP NNS VBD VBN IN DT NN RB IN DT NN POS NN . Officials say coalition and Afghan troops came under attack as they approached two compounds in Zabul province where militants were thought to live . NNS VBP NN CC JJ NNS VBD IN NN IN PRP VBD CD NNS IN NNP NN WRB NNS VBD VBN TO VB . The military says several militant fighters were killed and five were detained in the battle . DT NN VBZ JJ JJ NNS VBD VBN CC CD VBD VBN IN DT NN . Officials said a cache of weapons was discovered and destroyed . NNS VBD DT NN IN NNS VBD VBN CC VBN . Elsewhere , a local official in Laghman province said a roadside bomb killed a policeman and wounded three others Friday evening . RB , DT JJ NN IN NNP NN VBD DT NN NN VBD DT NN CC VBD CD NNS NNP NN . Violence has increased in recent weeks in southern and eastern Afghanistan , where Taleban insurgents are particularly active . NN VBZ VBN IN JJ NNS IN JJ CC JJ NNP , WRB NNP NNS VBP RB JJ . Keith Richards says he once snorted his father 's ashes mixed with cocaine . NNP NNP VBZ PRP RB VBD PRP$ NN POS NNS JJ IN NN . Speaking to the British music magazine ' NME , ' the 63-year-old Rolling Stones guitarist acknowledges ingesting his father 's cremated remains . VBG TO DT JJ NN NN `` NNP , `` DT JJ NNP NNP NN VBZ VBG PRP$ NN POS JJ NNS . ' My dad would n't have cared , ' he said , ' it went down pretty well , and I 'm still alive . ' `` PRP$ NN MD RB VB VBN , `` PRP VBD , `` PRP VBD RB RB RB , CC PRP VBP RB JJ . `` Richards ' father , Bert , died at age 84 in 2002 . NNP POS NN , NNP , VBD IN NN CD IN CD . The famously hard-living Richards told NME that his survival was the result of luck , and he cautioned young musicians not to emulate him . DT RB JJ NNP VBD NNP IN PRP$ NN VBD DT NN IN NN , CC PRP VBD JJ NNS RB TO VB PRP . ' I was number one on the ' who 's likely to die ' list for 10 years , ' he said . `` PRP VBD NN CD IN DT `` WP VBZ JJ TO VB `` NN IN CD NNS , `` PRP VBD . ' I mean , I was really disappointed when I fell off the list . ' `` PRP VBP , PRP VBD RB JJ WRB PRP VBD RP DT NN . `` The Islamic militant group Hamas says it has formed its cabinet and will present the choices to Palestinian President Mahmoud Abbas on Sunday . DT NNP JJ NN NNP VBZ PRP VBZ VBN PRP$ NN CC MD VB DT NNS TO JJ NNP NNP NNP IN NNP . Hamas , which won parliamentary elections in January , failed to get any other Palestinian faction to join the new government . NNP , WDT VBD JJ NNS IN NNP , VBD TO VB DT JJ JJ NN TO VB DT JJ NN . Hamas had planned to meet with Mr. Abbas Saturday . NNP VBD VBN TO VB IN NNP NNP NNP . There is no word on why the plans were changed . EX VBZ DT NN IN WRB DT NNS VBD VBN . Mr. Abbas 's Fatah Party has refused to join a Hamas-led government , saying the militant group must first renounce violence and accept past peace accords with Israel . NNP NNP POS NNP NNP VBZ VBN TO VB DT JJ NN , VBG DT JJ NN MD RB VB NN CC VB JJ NN NNS IN NNP . Mr. Abbas has to approve the cabinet , and his aides say he would accept the choices . NNP NNP VBZ TO VB DT NN , CC PRP$ NNS VBP PRP MD VB DT NNS . Hamas has claimed dozens of suicide attacks against Israeli targets in recent years . NNP VBZ VBN NNS IN NN NNS IN JJ NNS IN JJ NNS . The United States , Israel and Europe classify the group as a terrorist organization . DT NNP NNPS , NNP CC NNP VBP DT NN IN DT JJ NN . Iraqi officials say the minister of industry escaped unharmed in a roadside bombing - but the blast killed three of his bodyguards . JJ NNS VBP DT NN IN NN VBD JJ IN DT NN VBG : CC DT NN VBD CD IN PRP$ NNS . The minister 's convoy was hit as it traveled near the town of Balad , north of Baghdad . DT NN POS NN VBD VBN IN PRP VBD IN DT NN IN NNP , NN IN NNP . Elsewhere , the U.S. military is releasing more than 400 Iraqi detainees including five women prisoners Thursday and Friday . RB , DT NNP NN VBZ VBG JJR IN CD JJ NNS VBG CD NNS NNS NNP CC NNP . A military statement says a review of their cases determined there was no reason to keep holding them . DT JJ NN VBZ DT NN IN PRP$ NNS VBN EX VBD DT NN TO VB VBG PRP . Iraqi and U.S. officials have stressed the move has nothing to do with American journalist Jill Carroll , who was kidnapped earlier this month . JJ CC NNP NNS VBP VBN DT NN VBZ DT TO VB IN JJ NN NNP NNP , WP VBD VBN RBR DT NN . Her kidnappers threatened to kill her by last Friday unless all Iraqi women detainees were released . PRP$ NNS VBD TO VB PRP IN JJ NNP IN DT JJ NNS NNS VBD VBN . The deadline passed with no word on her fate . DT NN VBD IN DT NN IN PRP$ NN . Concerns about swine flu have been hurting industries as diverse as airlines and pork production , and boosted demand for the dollar and the yen . NNS IN NN NN VBP VBN VBG NNS RB JJ IN NNS CC NN NN , CC VBD NN IN DT NN CC DT NN . Airlines that were already struggling with a recession that slashed demand must now cope with a sharp fall in travel to Mexico , a popular tourist destination . NNS WDT VBD RB VBG IN DT NN WDT VBD NN MD RB VB IN DT JJ NN IN NN TO NNP , DT JJ NN NN . Falling demand for jet fuel is putting downward pressure on oil prices . VBG NN IN NN NN VBZ VBG JJ NN IN NN NNS . And pork producers , and the farmers who grow grain to feed pigs , have also seen prices for their commodities drop sharply as some nations banned imports of pork from Mexico and some parts of the United States . CC NN NNS , CC DT NNS WP VBP NN TO VB NNS , VBP RB VBN NNS IN PRP$ NNS VBP RB IN DT NNS VBD NNS IN NN IN NNP CC DT NNS IN DT NNP NNPS . The ban , and the falling prices came even though health experts have said repeatedly that properly cooked pork does not transmit the flu . DT NN , CC DT VBG NNS VBD RB IN NN NNS VBP VBN RB IN RB VBN NN VBZ RB VB DT NN . Worried traders also sold the Mexican peso and some other currencies , and bought U.S. dollars and Japanese yen for their perceived safety in a crisis . JJ NNS RB VBD DT JJ NN CC DT JJ NNS , CC VBD NNP NNS CC JJ NNS IN PRP$ VBN NN IN DT NN . Israel 's highest court has upheld the government 's plan to withdraw from all of the Gaza Strip and four small West Bank settlements . NNP POS JJS NN VBZ VBN DT NN POS NN TO VB IN DT IN DT NNP NNP CC CD JJ NNP NNP NNS . An 11-judge High Court panel ruled Thursday the pullout plan is legal and does not violate the human rights of Jewish settlers who opposed the move . DT JJ NNP NNP NN VBD NNP DT NN NN VBZ JJ CC VBZ RB VB DT JJ NNS IN JJ NNS WP VBD DT NN . In a 10-Jan vote , the justices rejected 12 petitions challenging the withdrawal planned for August . IN DT JJ NN , DT NNS VBD CD NNS VBG DT NN VBN IN NNP . The sole dissenting justice , Edmund Levy , said the plan should be canceled . DT JJ NN NN , NNP NNP , VBD DT NN MD VB VBN . Hours before the ruling , Israeli Defense Minister Shaul Mofaz and Palestinian Authority Interior Minister Nasser Youssef agreed to closely coordinate the pullout to prevent militants from taking over vacated areas . NNS IN DT NN , JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBD TO RB VB DT NN TO VB NNS IN VBG RP VBN NNS . Meanwhile , Palestinian President Mahmoud Abbas is in the Gaza Strip for talks with militants to preserve a four-month Israeli-Palestinian ceasefire threatened by two days of violence that has killed five people . RB , JJ NNP NNP NNP VBZ IN DT NNP NNP IN NNS IN NNS TO VB DT JJ JJ NN VBN IN CD NNS IN NN WDT VBZ VBN CD NNS . The European Union has welcomed the election of Turkish Cypriot Prime Minister Mehmet Ali Talat as the new leader of the Turkish community on Cyprus . DT NNP NNP VBZ VBN DT NN IN JJ JJ JJ NN NNP NNP NNP IN DT JJ NN IN DT JJ NN IN NNP . A European Commission statement expressed hope the results will create favorable conditions for resumption of United Nations-sponsored talks on reuniting Cyprus . DT JJ NNP NN VBD NN DT NNS MD VB JJ NNS IN NN IN NNP NNP NNS IN VBG NNP . Earlier , Mr. Talat called for renewed talks with the island 's Greek Community on Cyprus . RB , NNP NNP VBD IN JJ NNS IN DT NN POS JJ NNP IN NNP . His comments followed his victory in Sunday 's presidential elections in Cyprus 's Turkish northern enclave . PRP$ NNS VBD PRP$ NN IN NNP POS JJ NNS IN NNP POS JJ JJ NN . The Mediterranean Island has been divided into two communities since 1974 . DT NNP NNP VBZ VBN VBN IN CD NNS IN CD . Turkish Cypriots voted last year in favor of a United Nations reunification plan , but Greek Cypriots rejected it . JJ NNS VBD JJ NN IN NN IN DT NNP NNP NN NN , CC JJ NNS VBD PRP . Mr. Talat will replace Rauf Denktash , who has led the Turkish Cypriot community for decades , but did not seek another term . NNP NNP MD VB NNP NNP , WP VBZ VBN DT JJ JJ NN IN NNS , CC VBD RB VB DT NN . Chinese worker sews clothing at a garment factory in Beijing China is criticizing the European Union 's decision to investigate surging imports of Chinese textile products . JJ NN VBZ NN IN DT NN NN IN NNP NNP VBZ VBG DT NNP NNP POS NN TO VB JJ NNS IN JJ NN NNS . In a statement on its web site , the Chinese Commerce Ministry says the EU move runs counter to the spirit of free trade , and could have a negative impact on bilateral relations . IN DT NN IN PRP$ NN NN , DT JJ NNP NNP VBZ DT NNP NN VBZ RB TO DT NN IN JJ NN , CC MD VB DT JJ NN IN JJ NNS . The EU is looking at Chinese textiles flooding into European markets since a worldwide quota system expired January 1 . DT NNP VBZ VBG IN JJ NNS VBG IN JJ NNS IN DT JJ NN NN VBD NNP CD . The EU says imports of some Chinese textile have risen as much as 500 percent since then . DT NNP VBZ NNS IN DT JJ NN VBP VBN RB RB IN CD NN IN RB . The probe could lead the EU to impose limits those products . DT NN MD VB DT NNP TO VB NNS DT NNS . The United States is also looking into the impact that increased Chinese textile imports is having on its textile producers . DT NNP NNPS VBZ RB VBG IN DT NN WDT VBD JJ NN NNS VBZ VBG IN PRP$ NN NNS . The annual Smithsonian Kite Festival celebrated the art and history of Chinese kites at this year 's event . DT JJ NNP NNP NNP VBD DT NN CC NN IN JJ NNS IN DT NN POS NN . Kites large and small ; kite fliers professional and amateur ; Washingtonians as well as visitors from around the world gathered around the Washington Monument to welcome the colorful designs . NNS JJ CC JJ ; NN NNS JJ CC JJ ; NNS RB RB IN NNS IN IN DT NN VBD IN DT NNP NN TO VB DT JJ NNS . For producer Joseph Mok , Elaine Lu has more . IN NN NNP NNP , NNP NNP VBZ RBR . Romania says three Romanian journalists and their Iraqi guide , kidnapped nearly two months in Baghdad , have been freed . NNP VBZ CD JJ NNS CC PRP$ JJ NN , VBN RB CD NNS IN NNP , VBP VBN VBN . Details were not immediately clear . NNS VBD RB RB JJ . But a statement Sunday from the Romanian presidency said the reporters are safe and will soon return home . CC DT NN NNP IN DT JJ NN VBD DT NNS VBP JJ CC MD RB VB NN . The reporters and driver were seized March 28 . DT NNS CC NN VBD VBN NNP CD . The kidnappers threatened to kill them unless Romania withdrew its small military contingent from Iraq by April 27 . DT NNS VBD TO VB PRP IN NNP VBD PRP$ JJ JJ JJ IN NNP IN NNP CD . Romanian President Traian Basescu rejected the demand . JJ NNP NNP NNP VBD DT NN . Meanwhile , gunmen today killed the director-general of Iraq 's Trade Ministry , Ali Mousa Salman , as he was driving to work in Baghdad . RB , NNS NN VBD DT NN IN NNP POS NNP NNP , NNP NNP NNP , IN PRP VBD VBG IN NN IN NNP . His driver also was killed PRP$ NN RB VBD VBN The Lower House of Russia 's Parliament ( the State Duma ) has voted to give President Vladimir Putin the right to use a special armed forces unit in fighting terrorism abroad . DT NNP NNP IN NNP POS NNP LRB DT NN NNP RRB VBZ VBN TO VB NNP NNP NNP DT NN TO VB DT JJ JJ NNS NN IN VBG NN RB . Tuesday , Mr. Putin sought authorization from the upper house ( the Federation Council ) for similar powers . NNP , NNP NNP VBD NN IN DT JJ NN LRB DT NNP NNP RRB IN JJ NNS . Russia 's Itar-Tass news agency quotes the State Duma Security Committee as saying Mr. Putin will have to notify the Federation Council in order to use the special forces unit . NNP POS JJ NN NN VBZ DT NNP NNP NNP NNP IN VBG NNP NNP MD VB TO VB DT NNP NNP IN NN TO VB DT JJ NNS NN . According to the bill , the special forces unit would be required to defend the human rights of Russian citizens . VBG TO DT NN , DT JJ NNS NN MD VB VBN TO VB DT JJ NNS IN JJ NNS . The bill also authorizes the confiscation of funds , valuables and other property accumulated through terrorism . DT NN RB VBZ DT NN IN NNS , NNS CC JJ NN VBN IN NN . Last week , Mr. Putin ordered the special forces to hunt down and destroy those responsible for killing four employees of Russia 's embassy in Baghdad . JJ NN , NNP NNP VBD DT JJ NNS TO VB RP CC VB DT JJ IN VBG CD NNS IN NNP POS NN IN NNP . They were killed several days after insurgents took them hostage . PRP VBD VBN JJ NNS IN NNS VBD PRP NN . Bangladesh 's government is again deploying troops to stop fighting between ethnic groups in the Chittagong Hill Tracts . NNP POS NN VBZ RB VBG NNS TO VB VBG IN JJ NNS IN DT NNP NNP NNP . Bangladeshi troops were sent to the town of Khagrachhari after 30 people were injured in Tuesday 's clashes involving Bengali Muslim settlers and Buddhist tribespeople . JJ NNS VBD VBN TO DT NN IN NNP IN CD NNS VBD VBN IN NNP POS NNS VBG NNP NNP NNS CC NN NN . Officials say about 100 houses were set ablaze in the fighting . NNS VBP IN CD NNS VBD VBN NN IN DT NN . Bangladeshi authorities have imposed a ban on public gatherings in Khagrachhari to restore order . JJ NNS VBP VBN DT NN IN JJ NNS IN NNP TO VB NN . The violence erupted after tribal activists from the United People 's Democratic Front blocked roads to protest the killing of two tribal people in clashes with Bengali settlers on Saturday . DT NN VBD IN JJ NNS IN DT NNP NNP POS JJ NN VBD NNS TO VB DT NN IN CD JJ NNS IN NNS IN NNP NNS IN NNP . Earlier clashes in the neighboring town of Baghaichhari also resulted in around 100 homes being torched and prompted the government to deploy troops . RBR NNS IN DT JJ NN IN NNP RB VBD IN IN CD NNS VBG VBN CC VBD DT NN TO VB NNS . Iraqi authorities say at least 17 people were killed and dozens wounded Monday in a string of car bombings in Baghdad . JJ NNS VBP IN JJS CD NNS VBD VBN CC NNS VBD NNP IN DT NN IN NN NNS IN NNP . Officials said three parked cars exploded within minutes of each other in the predominantly Shi'ite neighborhood of Karradah . NNS VBD CD JJ NNS VBD IN NNS IN DT NN IN DT RB NNP NN IN NNP . At least three policemen were killed . IN JJS CD NNS VBD VBN . A fourth bomb exploded later in central Baghdad . DT JJ NN VBD RB IN JJ NNP . The bombings came as Iraqi officials prepare to host a meeting Tuesday between U.S. and Iranian officials to discuss the security situation in Iraq . DT NNS VBD IN JJ NNS VBP TO VB DT NN NNP IN NNP CC JJ NNS TO VB DT NN NN IN NNP . Washington has accused Iran of stirring up violence in Iraq by supplying weapons to Shi'ite militias - a charge Iran denies . NNP VBZ VBN NNP IN VBG RP NN IN NNP IN VBG NNS IN NNP NNS IN DT NN NNP VBZ . The U.S. embassy in Baghdad said Ambassador Ryan Crocker will take part in the talks with his Iranian counterpart . DT NNP NN IN NNP VBD NNP NNP NNP MD VB NN IN DT NNS IN PRP$ JJ NN . The United States and Iran held their first high-level talks in nearly 30 years in May . DT NNP NNPS CC NNP VBD PRP$ JJ JJ NNS IN RB CD NNS IN NNP . The U.S. State Department said last week it is ready for more talks . DT NNP NNP NNP VBD JJ NN PRP VBZ JJ IN JJR NNS . Iraqi interim Prime Minister Iyad Allawi says that some top Baath Party officials of Iraq 's deposed regime will go on trial next week . JJ JJ NNP NNP NNP NNP VBZ IN DT JJ NNP NNP NNS IN NNP POS VBN NN MD VB IN NN JJ NN . Mr. Allawi made the announcement Tuesday . NNP NNP VBD DT NN NNP . He did not specify which officials will appear in court , nor whether former Iraqi leader Saddam Hussein will be among them . PRP VBD RB VB WDT NNS MD VB IN NN , CC IN JJ JJ NN NNP NNP MD VB IN PRP . Speaking to Iraq 's interim National Council , the Prime Minister said a top aide of wanted terrorist Abu Musab al-Zarqawi has been killed and that two others have been captured . VBG TO NNP POS JJ NNP NNP , DT NNP NNP VBD DT JJ NN IN JJ JJ NNP NNP NNP VBZ VBN VBN CC IN CD NNS VBP VBN VBN . Mr. Allawi also said investigators have discovered a new mass grave that may contain about 500 bodies . NNP NNP RB VBD NNS VBP VBN DT JJ NN NN WDT MD VB IN CD NNS . He said the grave was found in a city northeast of Baghdad . PRP VBD DT NN VBD VBN IN DT NN NN IN NNP . He gave no other details about the gravesite . PRP VBD DT JJ NNS IN DT NN . Russia has extradited a Bosnian Serb war crimes suspect who was hiding in Siberia until authorities detained him last year . NNP VBZ VBN DT JJ JJ NN NNS NN WP VBD VBG IN NNP IN NNS VBD PRP JJ NN . The Bosnian State Court said Dragan Zelenovic was handed over late Thursday . DT JJ NNP NNP VBD NNP NNP VBD VBN IN JJ NNP . He is expected to appear before a judge later Friday . PRP VBZ VBN TO VB IN DT NN RB NNP . The former policeman is wanted by the U.N. war crimes tribunal in The Hague for atrocities committed against Bosnian Muslims in the eastern Foca region during Bosnia-Herzegovina 's 1992 - 95 war . DT JJ NN VBZ VBN IN DT NNP NN NNS JJ IN DT NNP IN NNS VBN IN JJ NNS IN DT JJ NNP NN IN NNP POS CD IN CD NN . Zelenovic had lived in Khanty-Mansiisk , some 2,000 kilometers east of Moscow , for several years under an assumed name and had worked in the construction industry . NNP VBD VBN IN NNP , DT CD NNS RB IN NNP , IN JJ NNS IN DT JJ NN CC VBD VBN IN DT NN NN . The U.S. government says BP has agreed to pay a record fine of more than $ 50 million for failing to correct problems at a Texas oil refinery that exploded and killed 15 workers in 2005 . DT NNP NN VBZ NNP VBZ VBN TO VB DT NN NN IN JJR IN $ CD CD IN VBG TO VB NNS IN DT NNP NN NN WDT VBD CC VBD CD NNS IN CD . The company is still contesting about $ 30 million in other fines in connection with the fiery blast that injured 170 people . DT NN VBZ RB VBG IN $ CD CD IN JJ NNS IN NN IN DT JJ NN WDT VBD CD NNS . U.S. regulators say they found hundreds of safety violations at the BP refinery when they inspected it in 2009 . NNP NNS VBP PRP VBD NNS IN NN NNS IN DT NNP NN WRB PRP VBD PRP IN CD . They also say the company failed to make promised changes and repairs at the refinery near Houston , Texas . PRP RB VBP DT NN VBD TO VB JJ NNS CC NNS IN DT NN IN NNP , NNP . The 2005 refinery explosion is separate from this year 's environmental disaster that grew out of an explosion and fire on a BP oil drilling platform in the Gulf of Mexico . DT CD NN NN VBZ JJ IN DT NN POS JJ NN WDT VBD IN IN DT NN CC NN IN DT NNP NN NN NN IN DT NNP IN NNP . Poland has pursued a policy of economic liberalization since 1990 and today stands out as a success story among transition economies . NNP VBZ VBN DT NN IN JJ NN IN CD CC NN VBZ RP IN DT NN NN IN NN NNS . It is the only country in the European Union to maintain positive GDP growth through the 2008 - 2009 economic downturn . PRP VBZ DT JJ NN IN DT NNP NNP TO VB JJ NN NN IN DT CD IN CD JJ NN . GDP per capita is still much below the EU average , but is similar to that of the three Baltic states . NN IN NN VBZ RB RB IN DT NNP NN , CC VBZ JJ TO DT IN DT CD JJ NNS . Since 2004 , EU membership and access to EU structural funds have provided a major boost to the economy . IN CD , NNP NN CC NN TO NNP JJ NNS VBP VBN DT JJ NN TO DT NN . Unemployment fell rapidly to 6.4 % in October 2008 , but climbed back to 11.8 % for the year 2010 , exceeding the EU average by more than 2 % . NN VBD RB TO CD NN IN NNP CD , CC VBD RB TO CD NN IN DT NN CD , VBG DT NNP NN IN JJR IN CD NN . Inflation reached a low of about 2.6 % in 2010 due to the global economic slowdown but has since climbed and is expected to remain around 3 % , and close to the upper limit of the National Bank of Poland 's target rate . NN VBD DT NN IN RB CD NN IN CD JJ TO DT JJ JJ NN CC VBZ IN VBN CC VBZ VBN TO VB IN CD NN , CC RB TO DT JJ NN IN DT NNP NNP IN NNP POS NN NN . Poland 's economic performance could improve over the longer term if the country addresses some of the remaining deficiencies in its road and rail infrastructure and its business environment . NNP POS JJ NN MD VB IN DT JJR NN IN DT NN VBZ DT IN DT VBG NNS IN PRP$ NN CC NN NN CC PRP$ NN NN . An inefficient commercial court system , a rigid labor code , bureaucratic red tape , burdensome tax system , and persistent low-level corruption keep the private sector from performing up to its full potential . DT JJ JJ NN NN , DT JJ NN NN , JJ JJ NN , JJ NN NN , CC JJ JJ NN VBP DT JJ NN IN VBG RP TO PRP$ JJ NN . Rising demands to fund health care , education , and the state pension system caused the public sector budget deficit to rise to 7.9 % of GDP in 2010 . VBG NNS TO VB NN NN , NN , CC DT NN NN NN VBD DT JJ NN NN NN TO VB TO CD NN IN NN IN CD . The PO/PSL coalition government , which came to power in November 2007 , has planned to reduce the budget deficit in 2011 and has also announced its intention to enact business-friendly reforms , increase workforce participation , reduce public sector spending growth , lower taxes , and accelerate privatization . DT NNP NN NN , WDT VBD TO NN IN NNP CD , VBZ VBN TO VB DT NN NN IN CD CC VBZ RB VBN PRP$ NN TO VB JJ NNS , VB NN NN , VB JJ NN NN NN , JJR NNS , CC VB NN . The government has moved slowly on most major reforms , but has sped up privatization . DT NN VBZ VBN RB IN JJS JJ NNS , CC VBZ VBN RP NN . Half the population still depends on agriculture and livestock for a livelihood , even though many of the nomads and subsistence farmers were forced into the cities by recurrent droughts in the 1970s and 1980s . NNP DT NN RB VBZ IN NN CC NN IN DT NN , RB IN NN IN DT NNS CC NN NNS VBD VBN IN DT NNS IN JJ NNS IN DT NNS CC NNS . Mauritania has extensive deposits of iron ore , which account for nearly 40 % of total exports . NNP VBZ JJ NNS IN NN NN , WDT VBP IN RB CD NN IN JJ NNS . The nation 's coastal waters are among the richest fishing areas in the world but overexploitation by foreigners threatens this key source of revenue . DT NN POS JJ NNS VBP IN DT JJS NN NNS IN DT NN CC NN IN NNS VBZ DT JJ NN IN NN . The country 's first deepwater port opened near Nouakchott in 1986 . DT NN POS JJ NN NN VBD IN NNP IN CD . Before 2000 , drought and economic mismanagement resulted in a buildup of foreign debt . IN CD , NN CC JJ NN VBD IN DT NN IN JJ NN . In February 2000 , Mauritania qualified for debt relief under the Heavily Indebted Poor Countries ( HIPC ) initiative and nearly all of its foreign debt has since been forgiven . IN NNP CD , NNP VBD IN NN NN IN DT NNP NNP NNP NNPS LRB NNP RRB NN CC RB DT IN PRP$ JJ NN VBZ IN VBN VBN . A new investment code approved in December 2001 improved the opportunities for direct foreign investment . DT JJ NN NN VBN IN NNP CD VBD DT NNS IN JJ JJ NN . Mauritania and the IMF agreed to a three-year Poverty Reduction and Growth Facility ( PRGF ) arrangement in 2006 . NNP CC DT NNP VBD TO DT JJ NN NN CC NN NN LRB NNP RRB NN IN CD . Mauritania made satisfactory progress , but the IMF , World Bank , and other international actors suspended assistance and investment in Mauritania after the August 2008 coup . NNP VBD JJ NN , CC DT NNP , NNP NNP , CC JJ JJ NNS VBN NN CC NN IN NNP IN DT NNP CD NN . Since the presidential election in July 2009 , donors have resumed assistance . IN DT JJ NN IN NNP CD , NNS VBP VBN NN . Oil prospects , while initially promising , have largely failed to materialize , and the government has placed a priority on attracting private investment to spur economic growth . NNP NNS , IN RB JJ , VBP RB VBN TO VB , CC DT NN VBZ VBN DT NN IN VBG JJ NN TO VB JJ NN . The Government also emphasizes reduction of poverty , improvement of health and education , and privatization of the economy . DT NN RB VBZ NN IN NN , NN IN NN CC NN , CC NN IN DT NN . Over the past 20 years the government has transformed New Zealand from an agrarian economy dependent on concessionary British market access to a more industrialized , free market economy that can compete globally . IN DT JJ CD NNS DT NN VBZ VBN NNP NNP IN DT JJ NN JJ IN JJ JJ NN NN TO DT RBR JJ , JJ NN NN WDT MD VB RB . This dynamic growth has boosted real incomes - but left behind some at the bottom of the ladder - and broadened and deepened the technological capabilities of the industrial sector . DT JJ NN VBZ VBN JJ NNS : CC VBD IN DT IN DT NN IN DT NN : CC VBN CC VBN DT JJ NNS IN DT JJ NN . Per capita income rose for ten consecutive years until 2007 in purchasing power parity terms , but fell in 2008 - 9 . IN NN NN VBD IN JJ JJ NNS IN CD IN VBG NN NN NNS , CC VBD IN CD : CD . Debt-driven consumer spending drove robust growth in the first half of the decade , helping fuel a large balance of payments deficit that posed a challenge for economic managers . JJ NN NN VBD JJ NN IN DT JJ NN IN DT NN , VBG NN DT JJ NN IN NNS NN WDT VBD DT NN IN JJ NNS . Inflationary pressures caused the central bank to raise its key rate steadily from January 2004 until it was among the highest in the OECD in 2007 - 8 ; international capital inflows attracted to the high rates further strengthened the currency and housing market , however , aggravating the current account deficit . JJ NNS VBD DT JJ NN TO VB PRP$ JJ NN RB IN NNP CD IN PRP VBD IN DT JJS IN DT NNP IN CD : CD ; JJ NN NNS VBN TO DT JJ NNS RB VBD DT NN CC NN NN , RB , VBG DT JJ NN NN . The economy fell into recession before the start of the global financial crisis and contracted for five consecutive quarters in 2008 - 9 . DT NN VBD IN NN IN DT NN IN DT JJ JJ NN CC VBD IN CD JJ NNS IN CD : CD . In line with global peers , the central bank cut interest rates aggressively and the government developed fiscal stimulus measures . IN NN IN JJ NNS , DT JJ NN NN NN NNS RB CC DT NN VBD JJ NN NNS . The economy posted a 1.7 % decline in 2009 , but pulled out of recession late in the year , and achieved 2.1 % growth in 2010 . DT NN VBD DT CD NN NN IN CD , CC VBD IN IN NN RB IN DT NN , CC VBD CD NN NN IN CD . Nevertheless , key trade sectors remain vulnerable to weak external demand . RB , JJ NN NNS VBP JJ TO JJ JJ NN . The government plans to raise productivity growth and develop infrastructure , while reining in government spending . DT NN VBZ TO VB NN NN CC VB NN , IN VBG IN NN NN . Independent from France in 1960 , Mauritania annexed the southern third of the former Spanish Sahara ( now Western Sahara ) in 1976 but relinquished it after three years of raids by the Polisario guerrilla front seeking independence for the territory . NNP IN NNP IN CD , NNP VBD DT JJ NN IN DT JJ JJ NNP LRB RB JJ NNP RRB IN CD CC VBD PRP IN CD NNS IN NNS IN DT NNP NN NN VBG NN IN DT NN . Maaouya Ould Sid Ahmed TAYA seized power in a coup in 1984 and ruled Mauritania with a heavy hand for more than two decades . NNP NNP NNP NNP NNP VBD NN IN DT NN IN CD CC VBD NNP IN DT JJ NN IN JJR IN CD NNS . A series of presidential elections that he held were widely seen as flawed . DT NN IN JJ NNS IN PRP VBD VBD RB VBN IN JJ . A bloodless coup in August 2005 deposed President TAYA and ushered in a military council that oversaw a transition to democratic rule . DT JJ NN IN NNP CD VBD NNP NNP CC VBD IN DT JJ NN WDT VBD DT NN TO JJ NN . Independent candidate Sidi Ould Cheikh ABDALLAHI was inaugurated in April 2007 as Mauritania 's first freely and fairly elected president . JJ NN NNP NNP NNP NNP VBD VBN IN NNP CD IN NNP POS JJ RB CC RB VBN NN . His term ended prematurely in August 2008 when a military junta led by General Mohamed Ould Abdel AZIZ deposed him and ushered in a military council government . PRP$ NN VBD RB IN NNP CD WRB DT JJ NN VBN IN NNP NNP NNP NNP NNP VBD PRP CC VBD IN DT JJ NN NN . AZIZ was subsequently elected president in July 2009 and sworn in the following month . NNP VBD RB VBN NN IN NNP CD CC VBN IN DT VBG NN . The country continues to experience ethnic tensions among its black population ( Afro-Mauritanians ) and white and black Moor ( Arab-Berber ) communities , and is having to confront a growing terrorism threat by al-Qa'ida in the Islamic Maghreb ( AQIM ) . DT NN VBZ TO VB JJ NNS IN PRP$ JJ NN LRB NNPS RRB CC JJ CC JJ NNP LRB NNP RRB NNS , CC VBZ VBG TO VB DT VBG NN NN IN NNP IN DT NNP NNP LRB NNP RRB . A NUMBER of Flies were attracted to a jar of honey which had been overturned in a housekeeper 's room , and placing their feet in it , ate greedily . DT NN IN NNS VBD VBN TO DT NN IN NN WDT VBD VBN VBN IN DT NN POS NN , CC VBG PRP$ NNS IN PRP , VBD RB . Their feet , however , became so smeared with the honey that they could not use their wings , nor release themselves , and were suffocated . PRP$ NNS , RB , VBD RB VBN IN DT NN IN PRP MD RB VB PRP$ NNS , CC VB PRP , CC VBD VBN . Just as they were expiring , they exclaimed , ' O foolish creatures that we are , for the sake of a little pleasure we have destroyed ourselves . ' RB IN PRP VBD VBG , PRP VBD , `` UH JJ NNS IN PRP VBP , IN DT NN IN DT JJ NN PRP VBP VBN PRP . `` Pleasure bought with pains , hurts . NN VBN IN NNS , VBZ . THE MONKEY , it is said , has two young ones at each birth . DT NN , PRP VBZ VBN , VBZ CD JJ NNS IN DT NN . The Mother fondles one and nurtures it with the greatest affection and care , but hates and neglects the other . DT NN VBZ CD CC VBZ PRP IN DT JJS NN CC NN , CC NNS CC VBZ DT JJ . It happened once that the young one which was caressed and loved was smothered by the too great affection of the Mother , while the despised one was nurtured and reared in spite of the neglect to which it was exposed . PRP VBD RB IN DT JJ CD WDT VBD VBN CC VBN VBD VBN IN DT RB JJ NN IN DT NN , IN DT VBN CD VBD VBN CC VBN IN NN IN DT NN TO WDT PRP VBD VBN . The best intentions will not always ensure success . DT JJS NNS MD RB RB VB NN . There 's nothing I like better than the sound of a banjo , unless of course it 's the sound of a chicken caught in a vacuum cleaner . EX VBZ DT PRP VBP JJR IN DT NN IN DT NN , IN IN NN PRP VBZ DT NN IN DT NN VBN IN DT NN NN . President Bush is on his way to Canada for a two-day trip that will mark his first official visit to America 's northern neighbor . NNP NNP VBZ IN PRP$ NN TO NNP IN DT JJ NN WDT MD VB PRP$ JJ JJ NN TO NNP POS JJ NN . The visit is widely seen as an effort to repair relations damaged by trade issues and Canada 's refusal to send troops to Iraq . DT NN VBZ RB VBN IN DT NN TO VB NNS VBN IN NN NNS CC NNP POS NN TO VB NNS TO NNP . Tuesday , Mr. Bush will meet with Prime Minister Paul Martin in the Canadian capital , Ottawa . NNP , NNP NNP MD VB IN NNP NNP NNP NNP IN DT JJ NN , NNP . The White House says the two leaders will likely discuss at least one of the main trade disputes - U.S. restrictions on the import of Canadian beef . DT NNP NNP VBZ DT CD NNS MD RB VB IN JJS CD IN DT JJ NN NNS IN NNP NNS IN DT NN IN JJ NN . Anti-Bush protesters are expected to rally in both Ottawa and the coastal city of Halifax , which the president will visit on Wednesday . JJ NNS VBP VBN TO VB IN DT NNP CC DT JJ NN IN NNP , WDT DT NN MD VB IN NNP . Mr. Bush is going to Halifax to thank people who housed air travelers diverted during the September 11 , 2001 , terrorist attacks . NNP NNP VBZ VBG TO VB TO VB NNS WP VBD NN NNS VBN IN DT NNP CD , CD , JJ NNS . The Israeli military says its forces have killed two Palestinian militants in the northern Gaza Strip . DT JJ NN VBZ PRP$ NNS VBP VBN CD JJ NNS IN DT JJ NNP NNP . The military said Thursday that Israeli aircraft and tanks fired at the militants near a border fence . DT NN VBD NNP IN JJ NN CC NNS VBD IN DT NNS IN DT NN NN . It said Israeli soldiers later recovered the bodies of two armed men in the area . PRP VBD JJ NNS RB VBD DT NNS IN CD JJ NNS IN DT NN . The military identified the men as members of the Islamic Jihad organization . DT JJ VBN DT NNS IN NNS IN DT NNP NNP NN . No Palestinian militant groups have commented on the incident . DT JJ JJ NNS VBP VBN IN DT NN . Iraqi insurgents have released two French journalists taken hostage last August . JJ NNS VBP VBN CD JJ NNS VBN NN JJ NNP . In Paris , French Prime Minister Jean-Pierre Raffarin announced the release to parliament Tuesday , a short while after the al-Jazeera television network first reported it . IN NNP , JJ NNP NNP NNP NNP VBD DT NN TO NN NNP , DT JJ NN IN DT JJ NN NN RB VBD PRP . The journalists , Christian Chesnot and Georges Malbrunot , were kidnapped in August while heading south from Baghdad on the road to Najaf . DT NNS , NNP NNP CC NNP NNP , VBD VBN IN NNP IN VBG RB IN NNP IN DT NN TO NNP . An insurgent group calling itself the Islamic Army of Iraq originally threatened to kill the two unless France lifted a ban on Islamic headscarves in public schools . DT JJ NN VBG PRP DT NNP NNP IN NNP RB VBD TO VB DT CD IN NNP VBD DT NN IN JJ NNS IN JJ NNS . But earlier this week , French Foreign Minister Michel Barnier said he believed the two reporters were still alive and in good health . CC RBR DT NN , JJ NNP NNP NNP NNP VBD PRP VBD DT CD NNS VBD RB JJ CC IN JJ NN . The two reporters were kidnapped August 19 by an insurgent group calling itself the Islamic Army of Iraq . DT CD NNS VBD VBN NNP CD IN DT JJ NN VBG PRP DT NNP NNP IN NNP . Insurgents originally threatened to kill the hostages unless France lifted a ban on Islamic headscarves in public schools . NNS RB VBD TO VB DT NNS IN NNP VBD DT NN IN JJ NNS IN JJ NNS . The U.S. military says it has filed charges against two U.S. soldiers in the killing of an Iraqi civilian last February . DT NNP NN VBZ PRP VBZ VBN NNS IN CD NNP NNS IN DT NN IN DT JJ JJ JJ NNP . The military said Sunday Specialist Nathan B. Lynn was charged with voluntary manslaughter for allegedly shooting an unarmed man February 15 . DT NN VBD NNP NN NNP NNP NNP VBD VBN IN JJ NN IN RB VBG DT JJ NN NNP CD . The military says Lynn and Sergeant Milton Ortiz were charged with obstruction of justice for allegedly conspiring with another soldier who has been accused of placing an AK-47 near the body of the mortally wounded man . DT JJ VBZ NNP CC NNP NNP NNP VBD VBN IN NN IN NN IN RB VBG IN DT NN WP VBZ VBN VBN IN VBG DT NNP IN DT NN IN DT RB VBN NN . Ortiz has also been charged with assault in a separate incident in March . NNP VBZ RB VBN VBN IN NN IN DT JJ NN IN NNP . The U.S. military has come under scrutiny concerning a number of incidents of abuse of Iraqis since the U.S.-led invasion in March 2003 . DT NNP NN VBZ VBN IN NN VBG DT NN IN NNS IN NN IN NNS IN DT JJ NN IN NNP CD . A U.S. court has sentenced a former CIA contractor to more than eight years in prison for assaulting an Afghan prisoner who later died . DT NNP NN VBZ VBN DT JJ NNP NN TO JJR IN CD NNS IN NN IN VBG DT JJ NN WP RB VBD . The court in North Carolina sentenced David Passaro Tuesday to eight years and four months in jail for the assault of Afghan detainee Abdul Wali in 2003 . DT NN IN NNP NNP VBD NNP NNP NNP TO CD NNS CC CD NNS IN NN IN DT NN IN JJ NN NNP NNP IN CD . Prosecutors accused Passaro of beating the detainee during an interrogation at a U.S. military base in Afghanistan . NNS VBD NNP IN VBG DT NN IN DT NN IN DT NNP JJ NN IN NNP . Wali died of his injuries two days after the incident . NNP VBD IN PRP$ NNS CD NNS IN DT NN . U.S. officials said Wali was a suspect in frequent rocket attacks on the base . NNP NNS VBD NNP VBD DT NN IN JJ NN NNS IN DT NN . Passaro is the first U.S. civilian to be charged with abusing a detainee during the U.S. wars in Iraq and Afghanistan . NNP VBZ DT JJ NNP JJ TO VB VBN IN VBG DT NN IN DT NNP NNS IN NNP CC NNP . Britain has requested the extradition of a man arrested in Pakistan in the alleged plot to blow up U.S.-bound airliners over the Atlantic . NNP VBZ VBN DT NN IN DT NN VBN IN NNP IN DT JJ NN TO VB RP JJ NNS IN DT NNP . A Pakistani Foreign Ministry spokeswoman says Monday authorities are considering the request for extradition of Rashid Rauf . DT JJ NNP NNP NN VBZ NNP NNS VBP VBG DT NN IN NN IN NNP NNP . She said he was being investigated for possible links to the al-Qaida terrorist network . PRP VBD PRP VBD VBG VBN IN JJ NNS TO DT NNP JJ NN . British authorities have identified Rauf , a British citizen of Pakistani descent , as a key suspect in the bombing plot . JJ NNS VBP VBN NNP , DT JJ NN IN JJ NN , IN DT JJ NN IN DT VBG NN . British authorities arrested more than two dozen suspects earlier this month in connection with the plot , which prosecutors said was in an advanced stage of planning . JJ NNS VBN JJR IN CD NN NNS RBR DT NN IN NN IN DT NN , WDT NNS VBD VBD IN DT JJ NN IN NN . Authorities said plotters sought to bomb as many as 10 airliners . NNS VBD NNS VBD TO VB RB JJ IN CD NNS . Last week , British prosecutors said they had seized bomb-making materials , suicide notes and martyrdom videos in the probe . JJ NN , JJ NNS VBD PRP VBD VBN JJ NNS , NN NNS CC NN NNS IN DT NN . Authorities also referred to data from 400 computers and 20 cell phones . NNS RB VBD TO NNS IN CD NNS CC CD NN NNS . A U.S. military court has sentenced an Army sergeant to death for murdering two of his comrades and wounding 14 others in a grenade and rifle attack two years ago in Kuwait . DT NNP JJ NN VBZ VBN DT NNP NN TO NN IN VBG CD IN PRP$ NNS CC VBG CD NNS IN DT NN CC NN NN CD NNS RB IN NNP . The 15-member military jury in Fort Bragg , in the U.S. state of North Carolina ruled Thursday Sergeant Hasan Akbar , a member of the Army 's 101st Airborne Division , should be executed for ambushing the troops as they slept in tents at the start of the Iraq war . DT JJ JJ NN IN NNP NNP , IN DT NNP NN IN NNP NNP VBD NNP NNP NNP NNP , DT NN IN DT NNP POS CD NNP NNP , MD VB VBN IN VBG DT NNS IN PRP VBD IN NNS IN DT NN IN DT NNP NN . His death sentence will be automatically appealed . PRP$ NN NN MD VB RB VBN . If Akbar is put to death , it would be by lethal injection . IN NNP VBZ VBN TO NN , PRP MD VB IN JJ NN . His military lawyers claimed that constant ridicule over his being a black Muslim caused him to snap , triggering the attack . PRP$ JJ NNS VBD IN JJ NN IN PRP$ VBG DT JJ NN VBD PRP TO VB , VBG DT NN . The United Nations says Iran has refused to allow nuclear inspectors to revisit a suspect military site . DT NNP NNP VBZ NNP VBZ VBN TO VB JJ NNS TO VB DT JJ JJ NN . In a report to the International Atomic Energy Agency Friday in Vienna , inspectors say Iran recently refused to grant them access to its Parchin military base , where Washington says Tehran is simulating atomic weapons tests . IN DT NN TO DT NNP NNP NNP NNP NNP IN NNP , NNS VBP NNP RB VBD TO VB PRP NN TO PRP$ NNP JJ NN , WRB NNP VBZ NNP VBZ VBG JJ NNS NNS . Deputy Director General for Safeguards Pierre Goldschmidt said Iranian officials claimed the previous visit in January had fulfilled inspectors ' demands . NNP NNP NNP IN NNP NNP NNP VBD JJ NNS VBD DT JJ NN IN NNP VBD VBN NNS POS NNS . He said the country also had delayed reporting an extensive tunnel system under construction beneath a uranium conversion plant in the central city of Isfahan . PRP VBD DT NN RB VBD VBN VBG DT JJ NN NN IN NN IN DT NN NN NN IN DT JJ NN IN NNP . Mr. Goldschmidt also said Iran continues to build a heavy water reactor which can produce plutonium , despite requests to cease construction . NNP NNP RB VBD NNP VBZ TO VB DT JJ NN NN WDT MD VB NN , IN NNS TO VB NN . Iran 's representative at the IAEA meeting said Tehran intends to keep producing nuclear fuel for peaceful purposes . NNP POS NN IN DT NNP NN VBD NNP VBZ TO VB VBG JJ NN IN JJ NNS . Afghan officials say a NATO airstrike has killed 13 Taleban militants after the insurgents attacked a government building near the Pakistan border . JJ NNS VBP DT NNP NN VBZ VBN CD NNP NNS IN DT NNS VBD DT NN NN IN DT NNP NN . Authorities said Saturday the militants attacked the district government headquarters in Alishar in southeastern Khost province late Friday . NNS VBD NNP DT NNS VBD DT NN NN NN IN NNP IN JJ NNP NN JJ NNP . A gun battle broke out with Afghan police , who called for NATO air support . DT NN NN VBD RP IN JJ NNS , WP VBD IN NNP NN NN . Five policemen were wounded . CD NNS VBD VBN . Khost Governor Arsala Jamal says the Taleban militants were killed as they retreated . NNP NNP NNP NNP VBZ DT NNP NNS VBD VBN IN PRP VBD . On Friday , the governor of southern Ghazni province , Mirajuddin Patan told VOA that 100 Afghan troops drove the Taleban from Giro District a day after the militants had taken control of the area . IN NNP , DT NN IN JJ NNP NN , NNP NNP VBD NNP IN CD JJ NNS VBD DT NNP IN NNP NNP DT NN IN DT NNS VBD VBN NN IN DT NN . Over the past year , a resurgent Taleban movement carried out the highest number of suicide bombings and other attacks in Afghanistan since U.S.-led forces ousted the Taleban government in November 2001 . IN DT JJ NN , DT JJ NNP NN VBD IN DT JJS NN IN NN NNS CC JJ NNS IN NNP IN JJ NNS VBD DT NNP NN IN NNP CD . A group of climate researchers says there is evidence that global warming is causing the Antarctic ice cap to melt more quickly than it did 10 years ago . DT NN IN NN NNS VBZ EX VBZ NN IN JJ NN VBZ VBG DT JJ NN NN TO VB RBR RB IN PRP VBD CD NNS RB . The scientists said Monday they used satellite data to monitor the Antarctic coastline . DT NNS VBD NNP PRP VBD NN NNS TO VB DT JJ NN . They found the ice sheet on the Earth 's southern pole lost 59 percent more ice in 2006 than it did in 1996 . PRP VBD DT NN NN IN DT NNP POS JJ NN VBD CD NN JJR NN IN CD IN PRP VBD IN CD . The researchers say western antarctica lost 132 billion tons of ice in 2006 , enough to raise worldwide sea levels by 0.5 millimeter . DT NNS VBP JJ NNP VBD CD CD NNS IN NN IN CD , RB TO VB JJ NN NNS IN CD NN . The team 's leader , Eric Rignot of NASA 's Jet Propulsion Laboratory , said warmer temperatures appear to be accelerating the movement of coastal Antarctic glaciers into the sea . DT NN POS NN , NNP NNP IN NNP POS NNP NNP NNP , VBD NN NNS VBP TO VB VBG DT NN IN JJ NNP NNS IN DT NN . The researchers say their findings may cause scientists to revise their predictions about rising sea levels around the world . DT NNS VBP PRP$ NNS MD VB NNS TO VB PRP$ NNS IN VBG NN NNS IN DT NN . Police in Corpus Christi , Texas , have cleared Vice President Dick Cheney of any wrongdoing in the shooting of a fellow hunter last Saturday . NNS IN NNP NNP , NNP , VBP VBN NNP NNP NNP NNP IN DT NN IN DT NN IN DT NN NN JJ NNP . The sheriff of Kenedy County , Ramon Salinas said Thursday an investigation had determined that Cheney shot Texas lawyer Harry Whittington by accident . DT NN IN NNP NNP , NNP NNP VBD NNP DT NN VBD VBN IN NNP VBD NNP NN NNP NNP IN NN . The sheriff said no legal action was necessary , and the case was closed . DT NN VBD DT JJ NN VBD JJ , CC DT NN VBD VBN . Cheney said Wednesday he accepted full responsibility for accidentally shooting Whittington , but defended his decision not to disclose the incident for nearly 24 hours . NNP VBD NNP PRP VBD JJ NN IN RB VBG NNP , CC VBD PRP$ NN RB TO VB DT NN IN RB CD NNS . The vice president said he wanted to wait to be sure that the information released was accurate . DT NN NN VBD PRP VBD TO VB TO VB JJ IN DT NN VBN VBD JJ . President Bush said he is satisfied with the way Cheney handled the aftermath of a hunting accident . NNP NNP VBD PRP VBZ VBN IN DT NN NNP VBD DT NN IN DT NN NN . Mr. Bush said Thursday he thought his vice president gave a ' very strong ' and ' powerful explanation ' of events . NNP NNP VBD NNP PRP VBD PRP$ NN NN VBD DT `` RB JJ `` CC `` JJ NN `` IN NNS . The U.S. military says it has released more than 11,000 Iraqis from military detention centers this year . DT NNP NN VBZ PRP VBZ VBN JJR IN CD NNS IN JJ NN NNS DT NN . In a statement issued Saturday coalition forces said the prisoners who were once considered a security threat , have completed their detainment and can go on to lead productive lives . IN DT NN VBN NNP NN NNS VBD DT NNS WP VBD RB VBN DT NN NN , VBP VBN PRP$ NN CC MD VB IN TO VB JJ NNS . American military spokesman Major Neal Fisher says less than one percent of those released have been detained again . JJ JJ NN NNP NNP NNP VBZ JJR IN CD NN IN DT VBN VBP VBN VBN RB . He also said at the current rate , the U.S. military expects to reach its goal of having released more than 12,000 detainees by mid-September . PRP RB VBD IN DT JJ NN , DT NNP NN VBZ TO VB PRP$ NN IN VBG VBN JJR IN CD NNS IN NNP . India says it would consider granting autonomy to the disputed region of Kashmir to help make peace with Pakistan , but added it will not redraw its borders . NNP VBZ PRP MD VB VBG NN TO DT JJ NN IN NNP TO VB VB NN IN NNP , CC VBD PRP MD RB VB PRP$ NNS . India 's Foreign Minister Natwar Singh said at a news conference Thursday , that as far as regional autonomy is concerned , ' the sky is the limit . ' NNP POS NNP NNP NNP NNP VBD IN DT NN NN NNP , IN RB RB IN JJ NN VBZ VBN , `` DT NN VBZ DT NN . `` Mr. Singh also said a solution based on autonomy in Kashmir would require ' a great deal of hard work , goodwill and trust ' between the two sides and would not happen overnight . NNP NNP RB VBD DT NN VBN IN NN IN NNP MD VB `` DT JJ NN IN JJ NN , NN CC NN `` IN DT CD NNS CC MD RB VB RB . The Indian minister said he presented this option to Pakistani Prime Minister Shaukat Aziz , who ended a visit to New Delhi on Wednesday . DT JJ NN VBD PRP VBD DT NN TO JJ NNP NNP NNP NNP , WP VBD DT NN TO NNP NNP IN NNP . Indian Prime Minister Manmohan Singh has also said India would never agree to redraw its borders to resolve the dispute over Kashmir . JJ NNP NNP NNP NNP VBZ RB VBN NNP MD RB VB TO VB PRP$ NNS TO VB DT NN IN NNP . But Pakistan insists it can not accept the military Line of Control in the region as an international border . CC NNP VBZ PRP MD RB VB DT JJ NN IN NN IN DT NN IN DT JJ NN . The U.S. military in Iraq has charged a former commander of a U.S. prison in Baghdad with several counts of wrongdoing , including unauthorized possession of classified information . DT NNP NN IN NNP VBZ VBN DT JJ NN IN DT NNP NN IN NNP IN JJ NNS IN NN , VBG JJ NN IN JJ NN . The military announced the charges against Lieutenant-Colonel William Steele in a statement issued Thursday . DT JJ VBD DT NNS IN NNP NNP NNP IN DT NN VBN NNP . One charge is of aiding the enemy by providing a unmonitored cell phone to detainees . CD NN VBZ IN VBG DT NN IN VBG DT JJ NN NN TO NNS . Steele is also accused of wrongfully providing special privileges to and maintaining an inappropriate relationship with an interpreter . NNP VBZ RB VBN IN RB VBG JJ NNS TO CC VBG DT JJ NN IN DT NN . Earlier , a military spokeswoman Lt. Col. Josslyn Aberle said Steele was taken into custody a month ago , and is being held at a detention facility in Kuwait awaiting a hearing to determine whether he should face court-martial . RB , DT JJ NN NNP NNP NNP NNP VBD NNP VBD VBN IN NN DT NN RB , CC VBZ VBG VBN IN DT NN NN IN NNP VBG DT NN TO VB IN PRP MD VB JJ . Steele was commander of Camp Cropper prison , which holds about 5,300 detainees near Baghdad international airport . NNP VBD NN IN NNP NNP NN , WDT VBZ IN CD NNS IN NNP JJ NN . Former Iraqi dictator Saddam Hussein , who was executed in December , spent time in that facility during his three-year incarceration . JJ JJ NN NNP NNP , WP VBD VBN IN NNP , VBD NN IN DT NN IN PRP$ JJ NN . Israeli forces have killed three Palestinians in a pair of operations in the Gaza Strip . JJ NNS VBP VBN CD NNS IN DT NN IN NNS IN DT NNP NNP . Military officials said troops shot and killed a man walking near the Israeli border in central Gaza Saturday . NNP NNS VBD NNS VBD CC VBD DT NN NN IN DT JJ NN IN JJ NNP NNP . Earlier , Israeli tanks backed by helicopters raided the northern Gaza town of Beit Hanoun . RB , JJ NNS VBN IN NNS VBD DT JJ NNP NN IN NNP NNP . Israeli officials said two men were killed in a shoot-out between troops and Palestinian gunmen . JJ NNS VBD CD NNS VBD VBN IN DT NN IN NNS CC JJ NNS . Israeli forces have been operating in Gaza since militants abducted an Israeli soldier in June . JJ NNS VBP VBN VBG IN NNP IN NNS VBD DT JJ NN IN NNP . An Egyptian newspaper , Al-Ahram , quoted President Hosni Mubarak as saying negotiations were under way to free the soldier . DT JJ NN , NNP , VBN NNP NNP NNP IN VBG NNS VBD IN NN TO VB DT NN . Meanwhile , tens of thousands of Palestinian teachers and other government employees went on strike in the West Bank and Gaza Strip to demand unpaid salaries . RB , NNS IN NNS IN JJ NNS CC JJ NN NNS VBD IN NN IN DT NNP NNP CC NNP NNP TO VB JJ NNS . Fatah gunmen surrounded schools to enforce the strike , while Hamas militiamen tried to keep schools open . NNP NNS VBN NNS TO VB DT NN , IN NNP NNS VBD TO VB NNS JJ . Preparations for the inauguration of Barack Obama as the next president have been going on for weeks in Washington . NNS IN DT NN IN NNP NNP IN DT JJ NN VBP VBN VBG IN IN NNS IN NNP . The viewing stands at the Capitol have been constructed , the parade route is being readied , and people in the city are in a mood of anticipation . DT NN VBZ IN DT NNP VBP VBN VBN , DT NN NN VBZ VBG VBN , CC NNS IN DT NN VBP IN DT NN IN NN . Here 's a look at those preparations and what people are talking about now that Inauguration Day , January 20 , is near . RB VBZ DT NN IN DT NNS CC WP NNS VBP VBG IN RB DT NNP NNP , NNP CD , VBZ JJ . For more , click on video link . IN RBR , NN IN NN NN . The Afghan government has rejected any conditions for peace talks with the Taleban , after the Islamist militants demanded the withdrawal of all foreign troops from the country . DT JJ NN VBZ VBN DT NNS IN NN NNS IN DT NNP , IN DT NNP NNS VBD DT NN IN DT JJ NNS IN DT NN . Presidential spokesman Homayun Hamidzada said Tuesday the Afghan government is not open to any negotiations with preconditions . NNP NN NNP NNP VBD NNP DT JJ NN VBZ RB JJ TO DT NNS IN NNS . He added that the only promise the government will make is for the safety of rebel negotiators . PRP VBD IN DT JJ NN DT NN MD VB VBZ IN DT NN IN JJ NNS . A Taleban spokesman told Reuters News agency that the group is sticking to its demands . DT NNP NN VBD NNP NNP NN IN DT NN VBZ VBG TO PRP$ NNS . Last week , the Taleban expressed a willingness for negotiations only if all of the 50,000 foreign troops in Afghanistan leave the country . JJ NN , DT NNP VBD DT NN IN NNS RB IN DT IN DT CD JJ NNS IN NNP VBP DT NN . The Taleban was ousted from power in Afghanistan by a U.S.-led offensive in late 2001 . DT NNP VBD VBN IN NN IN NNP IN DT JJ NN IN JJ CD . Militant attacks in southern and eastern Afghanistan have escalated over the past 19 months , marking the bloodiest period since the beginning of the war . NN NNS IN JJ CC JJ NNP VBP VBN IN DT JJ CD NNS , VBG DT JJS NN IN DT NN IN DT NN . Hong Kong 's interim leader says he will ask China to interpret the section of the territory 's Basic Law that covers the term length for its chief executive . NNP NNP POS JJ NN VBZ PRP MD VB NNP TO VB DT NN IN DT NN POS JJ NN WDT VBZ DT NN NN IN PRP$ JJ NN . Donald Tsang says he is making the request to avoid legal challenges that could derail the July 10 election to pick a successor to Tung Chee-hwa , who resigned last month with two years remaining on his five-year term . NNP NNP VBZ PRP VBZ VBG DT NN TO VB JJ NNS WDT MD VB DT NNP CD NN TO VB DT NN TO NNP NNP , WP VBD JJ NN IN CD NNS VBG IN PRP$ JJ NN . The Hong Kong government says Mr. Tung 's successor will only serve out those two years , but pro-democracy activists say that violates the city 's Basic Law , which says each elected chief executive will serve a full five-year term . DT NNP NNP NN VBZ NNP NNP POS NN MD RB VB RP DT CD NNS , CC JJ NNS VBP IN VBZ DT NN POS NNP NNP , WDT VBZ DT VBN NN NN MD VB DT JJ JJ NN . The opposition fears that Beijing 's involvement could compromise the territory 's autonomy . DT NN VBZ IN NNP POS NN MD VB DT NN POS NN . Mr. Tsang is expected to win the July vote . NNP NNP VBZ VBN TO VB DT NNP NN . Iraq 's ambassador to the United Nations is calling for the lifting of all remaining sanctions imposed on the ousted regime of Saddam Hussein . NNP POS NN TO DT NNP NNPS VBZ VBG IN DT NN IN DT VBG NNS VBN IN DT JJ NN IN NNP NNP . Ambassador Samir Sumaidaie made the appeal Tuesday - two days after his country voted in landmark elections . NNP NNP NNP VBD DT NN NNP IN CD NNS IN PRP$ NN VBD IN JJ NNS . He said all sanctions placed on the previous regime are inappropriate now since Iraq has clearly shown the world that it is a new country and wants to be at peace with its neighbors . PRP VBD DT NNS VBN IN DT JJ NN VBP JJ RB IN NNP VBZ RB VBN DT NN IN PRP VBZ DT JJ NN CC VBZ TO VB IN NN IN PRP$ NNS . The Iraqi diplomat said it is also time to begin phasing out the use of oil proceeds to compensate victims of Iraq 's 1990 invasion of Kuwait , and lift the arms embargo imposed shortly after that invasion . DT JJ NN VBD PRP VBZ RB NN TO VB VBG IN DT NN IN NN NNS TO VB NNS IN NNP POS CD NN IN NNP , CC VB DT NNS NN VBN RB IN DT NN . Meanwhile , more than 200 workers at Iraq 's election headquarters in Baghdad are compiling results from Sunday 's historic vote . RB , JJR IN CD NNS IN NNP POS NN NN IN NNP VBP VBG NNS IN NNP POS JJ NN . A U.S.-funded radio station says its correspondent in Iraq has been killed . DT JJ NN NN VBZ PRP$ NN IN NNP VBZ VBN VBN . Radio Free Iraq said Friday Khamail Khalaf was found dead in Baghdad Thursday . NNP NNP NNP VBD NNP NNP NNP VBD VBN JJ IN NNP NNP . She had been missing for two days amid fears she had been kidnapped . PRP VBD VBN VBG IN CD NNS IN NNS PRP VBD VBN VBN . More than 150 members of the news media have been killed in Iraq since the war began in 2003 . JJR IN CD NNS IN DT NN NNS VBP VBN VBN IN NNP IN DT NN VBD IN CD . U.S. military officials in Iraq have reduced the death toll from a suicide bombing Friday from 27 to 12 . NNP JJ NNS IN NNP VBP VBN DT NN NN IN DT NN VBG NNP IN CD TO CD . Police said a suicide bomber driving a truck with chlorine gas detonated his vehicle in Ramadi , the capital of volatile al-Anbar province . NNP VBD DT NN NN VBG DT NN IN JJ NN VBD PRP$ NN IN NNP , DT NN IN JJ JJ NN . A military statement says 43 people were wounded . DT JJ NN VBZ CD NNS VBD VBN . The military also says the Iraqi army called in air strikes Saturday against armed militia men in Diwaniyah , south of Baghdad , one day after U.S. and Iraqi forces detained 27 suspects and killed three insurgents in the city . DT NN RB VBZ DT JJ NN VBD IN NN NNS NNP IN JJ NN NNS IN NNP , NN IN NNP , CD NN IN NNP CC JJ NNS VBD CD NNS CC VBD CD NNS IN DT NN . British Prime Minister Tony Blair says his country and the United States will send a team to Iraq to reassess the security situation there . JJ NNP NNP NNP NNP VBZ PRP$ NN CC DT NNP NNPS MD VB DT NN TO NNP TO VB DT NN NN RB . In a televised interview Sunday , Mr. Blair said the team will focus only on security . IN DT JJ NN NNP , NNP NNP VBD DT NN MD VB RB IN NN . He added that it was crucial to strengthen Iraqi security forces so that they can take over . PRP VBD IN PRP VBD JJ TO VB JJ NN NNS RB IN PRP MD VB RP . Meanwhile , Britain 's Telegraph newspaper reports London will announce this week that it is sending 650 additional troops to Iraq to boost security ahead of the January 30 elections . RB , NNP POS NNP NN VBZ NNP MD VB DT NN IN PRP VBZ VBG CD JJ NNS TO NNP TO VB NN RB IN DT NNP CD NNS . Speaking on the television network ABC , U.S. Secretary of State Colin Powell expressed concern about the future of Iraq following the elections , but said the vote is the necessary next step . VBG IN DT NN NN NNP , NNP NNP IN NNP NNP NNP VBD NN IN DT NN IN NNP VBG DT NNS , CC VBD DT NN VBZ DT JJ JJ NN . United Nations Secretary-General Kofi Annan calls Iraqi voters courageous , and says the world must support them . NNP NNP NNP NNP NNP VBZ JJ NNS JJ , CC VBZ DT NN MD VB PRP . Speaking in Nigeria , Mr. Annan described Sunday 's election as the first step in a democratic process in Iraq . VBG IN NNP , NNP NNP VBD NNP POS NN IN DT JJ NN IN DT JJ NN IN NNP . He said Iraqis know they are voting for their country 's future and for the day ' when they will take their destiny in their own hands . ' PRP VBD NNS VBP PRP VBP VBG IN PRP$ NN POS NN CC IN DT NN `` WRB PRP MD VB PRP$ NN IN PRP$ JJ NNS . `` The secretary-general also appealed for an end to election-day violence . DT NN RB VBD IN DT NN TO JJ NN . U.S. Secretary of State Condoleezza Rice has criticized Syria for creating instability in Lebanon , where a second politician was killed Tuesday . NNP NNP IN NNP NNP NNP VBZ VBN NNP IN VBG NN IN NNP , WRB DT JJ NN VBD VBN NNP . Ms. Rice said she does not know who is responsible for the attack that killed George Hawi in Beirut , but she called on Syria to end destabilizing activities there . NNP NNP VBD PRP VBZ RB VB WP VBZ JJ IN DT NN WDT VBD NNP NNP IN NNP , CC PRP VBD IN NNP TO VB JJ NNS RB . Ms. Rice spoke to reporters aboard a plane to Brussels , where she is to attend a conference aimed at gathering international support for Iraq 's new government . NNP NNP VBD TO NNS IN DT NN TO NNP , WRB PRP VBZ TO VB DT NN VBN IN VBG JJ NN IN NNP POS JJ NN . The conference will also include Iraqi leaders , officials from more than 80 nations and United Nations Secretary-General Kofi Annan . DT NN MD RB VB JJ NNS , NNS IN JJR IN CD NNS CC NNP NNP NNP NNP NNP . Monday , Ms. Rice visited Saudi Arabia for the last stop of a Middle East trip , where she renewed a call for democratic reform . NNP , NNP NNP VBD NNP NNP IN DT JJ NN IN DT NNP NNP NN , WRB PRP VBD DT NN IN JJ NN . Philippine officials say heavy rain in mountainous provinces in the north of the country have triggered landslides , killing more than 90 people . JJ NNS VBP JJ NN IN JJ NNS IN DT NN IN DT NN VBP VBN NNS , VBG JJR IN CD NNS . The northern Philippines has been pounded by heavy rain since Typhoon Parma hit the country on Saturday . DT JJ NNP VBZ VBN VBN IN JJ NN IN NNP NNP VBD DT NN IN NNP . Forecasters say Parma was still lingering off the northeastern coast of the Philippines , as it began moving across the South China Sea toward Vietnam . NNS VBP NNP VBD RB VBG RP DT JJ NN IN DT NNPS , IN PRP VBD VBG IN DT NNP NNP NNP IN NNP . Parma is the second major storm to hit the country in two weeks . NNP VBZ DT JJ JJ NN TO VB DT NN IN CD NNS . Officials say the landslides have pushed the overall death toll from two weeks of devastating storms on the islands past 450 . NNS VBP DT NNS VBP VBN DT JJ NN NN IN CD NNS IN JJ NNS IN DT NNS IN CD . Meanwhile in Japan , a separate powerful typhoon tore through the main island Thursday , peeling roofs off houses , and cutting off electricity to hundreds of thousands . RB IN NNP , DT JJ JJ NN NN IN DT JJ NN NNP , VBG NNS IN NNS , CC VBG RP NN TO NNS IN NNS . The storm has killed at least four people . DT NN VBZ VBN IN JJS CD NNS . Elephants in tsunami-devastated Thailand have joined the country 's massive recovery work , one week after another group of elephants staged a dramatic rescue operation . NNS IN JJ NNP VBP VBN DT NN POS JJ NN NN , CD NN IN DT NN IN NNS VBD DT JJ NN NN . Thai officials say six jumbo elephants are now helping to tow heavy objects and pull away debris that heavy machinery can not reach . JJ NNS VBP CD JJ NNS VBP RB VBG TO VB JJ NNS CC VB RB NN IN JJ NN MD RB VB . Elephants also played a crucial role before the tsunami hit . NNS RB VBD DT JJ NN IN DT NN NN . Reuters news agency says eight elephants used for tourist rides at the Khao Lak beach resort became agitated last Sunday , more than an hour before the tsunami came ashore . NNP NN NN VBZ CD NNS VBN IN NN NNS IN DT NNP NNP NN NN VBD VBN JJ NNP , JJR IN DT NN IN DT NN VBD RB . The beasts began crying , or ' trumpeting , ' and finally broke free of their chains , heading for a nearby hill . DT NNS VBD VBG , CC `` VBG , `` CC RB VBD JJ IN PRP$ NNS , VBG IN DT JJ NN . Their trainers followed . PRP$ NNS VBD . As the elephants fled , they lifted tourists onto their backs with their trunks , taking them to safety . IN DT NNS VBD , PRP VBD NNS IN PRP$ NNS IN PRP$ NNS , VBG PRP TO NN . Scientists note animals often appear to sense the coming of natural calamities . NNS VBP NNS RB VBP TO VB DT VBG IN JJ NNS . Supporters of Pakistan 's suspended chief justice have taken to the streets in a show of solidarity . NNS IN NNP POS JJ NN NN VBP VBN TO DT NNS IN DT NN IN NN . Supporters of Judge Iftikhar Mohammed Chaudhry chanted slogans Saturday demanding the resignation of Pakistani President Pervez Musharraf . NNS IN NNP NNP NNP NNP VBD NNS NNP VBG DT NN IN JJ NNP NNP NNP . They rallied as the chief justice traveled from Islamabad to the eastern city of Faisalabad . PRP VBD IN DT NN NN VBD IN NNP TO DT JJ NN IN NNP . General Musharraf fired Chaudhry in March , accusing him of abuse of power . NNP NNP VBD NNP IN NNP , VBG PRP IN NN IN NN . The judge denies the charges and has challenged the president 's decision in the Supreme Court . DT NN VBZ DT NNS CC VBZ VBN DT NN POS NN IN DT NNP NNP . His dismissal has fueled the biggest opposition to President Musharraf since the general seized power in a bloodless coup in 1999 . PRP$ NN VBZ VBN DT JJS NN TO NNP NNP IN DT NN VBD NN IN DT JJ NN IN CD . Tens of thousands of people have rallied in support of the judge as he traveled to various rallies across the country since he was fired . NNS IN NNS IN NNS VBP VBN IN NN IN DT NN IN PRP VBD TO JJ NNS IN DT NN IN PRP VBD VBN . Last minute holiday shoppers are taking advantage of massive discounts as retailers launch a last desperate attempt to generate revenue . JJ NN NN NNS VBP VBG NN IN JJ NNS IN NNS VB DT JJ JJ NN TO VB NN . With holiday sales shaping up to be the weakest in years , retailers are scrambling to stay ahead of the struggling U.S. economy . IN NN NNS VBG RP TO VB DT JJS IN NNS , NNS VBP VBG TO VB RB IN DT VBG NNP NN . Former Liberian Finance Minister Ellen Johnson-Sirleaf has moved closer to becoming Africa 's first democratically-elected female president , taking a strong lead in Liberia 's presidential run-off . JJ JJ NNP NNP NNP NNP VBZ VBN RB TO VBG NNP POS JJ JJ NN NN , VBG DT JJ NN IN NNP POS JJ NN . With nearly two-thirds of the ballots counted , Mrs. Johnson-Sirleaf leads with 56 percent of the votes . IN RB NNS IN DT NNS VBN , NNP NNP VBZ IN CD NN IN DT NNS . Her opponent , millionaire former soccer ( football ) star George Weah , has 44 percent . PRP$ NN , JJ JJ NN LRB NN RRB NN NNP NNP , VBZ CD NN . Mr. Weah raised allegations of election fraud Wednesday , saying there were major irregularities during Tuesday 's run-off election . NNP NNP VBD NNS IN NN NN NNP , VBG EX VBD JJ NNS IN NNP POS JJ NN . Election officials said Mr. Weah has not submitted any evidence to the electoral commission to support his claims . NNP NNS VBD NNP NNP VBZ RB VBN DT NN TO DT JJ NN TO VB PRP$ NNS . This was Liberia 's first election since 2003 , when Charles Taylor stepped down as president under international pressure , ending 14 years of almost non-stop civil war . DT VBD NNP POS JJ NN IN CD , WRB NNP NNP VBD RP IN NN IN JJ NN , VBG CD NNS IN RB JJ JJ NN . Former U.S. President Jimmy Carter is resting comfortably after being hospitalized in the midwestern U.S. city of Cleveland , Ohio . JJ NNP NNP NNP NNP VBZ VBG RB IN VBG VBN IN DT JJ NNP NN IN NNP , NNP . A statement from the Carter Center in the southeastern city of Atlanta , Georgia , says the former president developed an upset stomach during a flight to Cleveland Tuesday . DT NN IN DT NNP NNP IN DT JJ NN IN NNP , NNP , VBZ DT JJ NN VBD DT JJ NN IN DT NN TO NNP NNP . A spokeswoman at Cleveland Hopkins International Airport says rescue crews met Mr. Carter 's plane at the airport and took him to the hospital . DT NN IN NNP NNP NNP NNP VBZ NN NNS VBD NNP NNP POS NN IN DT NN CC VBD PRP TO DT NN . The former president was in Cleveland to sign his new book , White House Diary . DT JJ NN VBD IN NNP TO VB PRP$ JJ NN , NNP NNP NNP . The Carter Center says he is expected to resume his book tour later this week . DT NNP NNP VBZ PRP VBZ VBN TO VB PRP$ NN NN RB DT NN . Mr. Carter is 85-years-old and served as U.S. president from 1977 to 1981 . NNP NNP VBZ JJ CC VBD IN NNP NN IN CD TO CD . U.S. President Barack Obama said he plans to call Mr. Carter to check on his condition . NNP NNP NNP NNP VBD PRP VBZ TO VB NNP NNP TO VB IN PRP$ NN . A prominent human rights group has called on the United Nations and the Democratic Republic of Congo to disarm rebel Rwandan armed groups in eastern Congo . DT JJ JJ NNS NN VBZ VBN IN DT NNP NNPS CC DT JJ NNP IN NNP TO VB JJ JJ JJ NNS IN JJ NNP . In a report Wednesday , the New York-based Human Rights Watch ( HRW ) also said that the safety of civilians must be ensured during the operations . IN DT NN NNP , DT NNP JJ NNP NNP NNP LRB NNP RRB RB VBD IN DT NN IN NNS MD VB VBN IN DT NNS . The rights group said efforts to disarm the rebels , mostly ethnic Hutus , in early November failed after they refused to cooperate . DT NNS NN VBD NNS TO VB DT NNS , RB JJ NNP , IN JJ NNP VBD IN PRP VBD TO VB . The rebels , generally called Ex-FAR ( members of the former Rwandan army ) and Interahamwe , are mostly responsible for the 1994 Rwandan genocide that killed about 8,00,000 people during a three-month period . DT NNS , RB VBN NN LRB NNS IN DT JJ JJ NN RRB CC NNP , VBP RB JJ IN DT CD JJ NN WDT VBD IN CD NNS IN DT JJ NN . Human Rights Watch 's senior Africa advisor , Alison Des Forges , says disarming Rwandan rebel groups is crucial for regional stability . NNP NNP NNP POS JJ NNP NN , NNP NNP NNP , VBZ VBG JJ NN NNS VBZ JJ IN JJ NN . Rwanda has threatened to go after the rebels if they are not disarmed . NNP VBZ VBN TO VB IN DT NNS IN PRP VBP RB VBN . ' Undercover Brother ' may be good at karate , but his driving needs improvement . `` NNP NNP `` MD VB JJ IN NN , CC PRP$ NN VBZ NN . Comedian Eddie Griffin crashed a Ferrari Enzo sportscar worth an estimated $ 1.5 million . NN NNP NNP VBD DT NNP NNP NN IN DT VBN $ CD CD . The March 26 accident occurred at Irwindale Speedway in California , when the movie comic drove too fast around a curve . DT NNP CD NN VBD IN NNP NNP IN NNP , WRB DT NN NN VBD RB RB IN DT NN . He was practicing for a charity race to promote his upcoming movie Redline . PRP VBD VBG IN DT NN NN TO VB PRP$ JJ NN NNP . Eddie Griffin , whose film credits include Undercover Brother and two Deuce Bigalow movies , walked away unhurt from the crash . NNP NNP , WP$ NN NNS VBP NNP NNP CC CD NNP NNP NNS , VBD RB JJ IN DT NN . The car belonged to Redline executive producer Daniel Sadek , whose exotic car collection is featured in the movie . DT NN VBD IN NNP JJ NN NNP NNP , WP$ JJ NN NN VBZ VBN IN DT NN . Ferrari produced a total of 400 Enzos between 2002 and 2004 . NNP VBD DT NN IN CD NNPS IN CD CC CD . Russia 's natural gas monopoly Gazprom has warned Ukraine against siphoning off gas intended for Europe . NNP POS JJ NN NN NNP VBZ VBN NNP IN VBG RP NN VBD IN NNP . Gazprom Deputy Chairman Alexander Medvedev said Sunday that Ukrainian officials had made threats to tap natural gas from a pipeline running through Ukrainian territory , if supplies intended for Ukraine are cut off . NNP NNP NNP NNP NNP VBD NNP IN JJ NNS VBD VBN NNS TO VB JJ NN IN DT NN VBG IN JJ NN , IN NNS VBN IN NNP VBP VBN RP . The two sides have failed to resolve a dispute over Moscow 's demand that Ukraine pay more than quadruple the current price for gas imports from Russia . DT CD NNS VBP VBN TO VB DT NN IN NNP POS NN IN NNP VBP JJR IN VB DT JJ NN IN NN NNS IN NNP . Gazprom threatened to halt gas deliveries to Ukraine on January first unless Kiev agrees to its new pricing structure . NNP VBD TO VB NN NNS TO VB IN NNP JJ IN NNP VBZ TO PRP$ JJ NN NN . Gazprom held an exercise Friday simulating such a stoppage . NNP VBD DT NN NNP VBG PDT DT NN . Ukraine says such a sharp increase would harm its economy . NNP VBZ PDT DT JJ NN MD VB PRP$ NN . Both sides say they may turn to an international arbitration court for help . DT NNS VBP PRP MD VB TO DT JJ NN NN IN NN . The Anheuser-Busch brewing company - bottler of Budweiser beer - will continue to sponsor the FIFA World Cup tournament through 2014 . DT NNP NN NN : NN IN NNP NN : MD VB TO VB DT NNP NNP NNP NN IN CD . Anheuser-Busch and the International Football Federation signed a contract extension agreement Thursday , meaning Budweiser also will have global sponsorship rights for the Confederations Cup tournament in 2009 and 2013 . NNP CC DT NNP NNP NNP VBD DT NN NN NN NNP , VBG NNP RB MD VB JJ NN NNS IN DT NNPS NNP NN IN CD CC CD . FIFA President Sepp Blatter said the agreement is testimony to the immense appeal of football . NNP NNP NNP NNP VBD DT NN VBZ NN TO DT JJ NN IN NN . A spokesman for Anheuser-Busch said the deal will allow the company to connect its brand with millions of adult beer drinkers and football fans . DT NN IN NNP VBD DT NN MD VB DT NN TO VB PRP$ NN IN NNS IN JJ NN NNS CC NN NNS . Anheuser-Busch , based in St. Louis , Missouri the United States , has the exclusive beer contract for this year 's World Cup in Germany . NNP , VBN IN NNP NNP , NNP DT NNP NNPS , VBZ DT JJ NN NN IN DT NN POS NNP NNP IN NNP . By 2014 , the brewer will have sponsored eight World Cup tournaments . IN CD , DT NN MD VB VBN CD NNP NNP NNS . Former Venezuelan President Rafael Caldera died early Thursday at the age of 93 . JJ JJ NNP NNP NNP VBD JJ NNP IN DT NN IN CD . He had suffered from Parkinson 's disease for many years . PRP VBD VBN IN NNP POS NN IN JJ NNS . Mr. Caldera served two terms as president - the first between 1969 and 1974 , and again from 1994 to 1999 . NNP NNP VBD CD NNS IN NN IN DT NN IN CD CC CD , CC RB IN CD TO CD . He entered politics in the 1930s , and helped to found the Social-Christian Copei party in 1946 . PRP VBD NNS IN DT NNS , CC VBD TO VB DT JJ NNP NN IN CD . In 1994 , he pardoned current President Hugo Chavez , who was in prison at the time for leading a coup two years earlier . IN CD , PRP VBD JJ NNP NNP NNP , WP VBD IN NN IN DT NN IN VBG DT NN CD NNS RBR . Mr. Chavez succeeded Mr. Caldera as president in 1999 . NNP NNP VBD NNP NNP IN NN IN CD . Mr. Caldera 's son said the funeral will take place Saturday and that the family ' will not accept any homage from the government of Hugo Chavez . ' NNP NNP POS NN VBD DT NN MD VB NN NNP CC IN DT NN `` MD RB VB DT NN IN DT NN IN NNP NNP . `` China says the next round of six-party talks on North Korean 's nuclear program will last for three days . NNP VBZ DT JJ NN IN JJ NNS IN NNP JJ POS JJ NN MD VB IN CD NNS . The official news agency , Xinhua , says the talks will begin Wednesday at the Diaoyu State Guest House in Beijing and last through Friday . DT JJ NN NN , NNP , VBZ DT NNS MD VB NNP IN DT NNP NNP NNP NNP IN NNP CC JJ IN NNP . This is the fifth round of talks involving China , the two Koreas , the United States , Russia and Japan . DT VBZ DT JJ NN IN NNS VBG NNP , DT CD NNP , DT NNP NNPS , NNP CC NNP . All sides have agreed that North Korea would scrap its nuclear programs in exchange for energy assistance and other benefits . DT NNS VBP VBN IN NNP NNP MD VB PRP$ JJ NNS IN NN IN NN NN CC JJ NNS . However , sharp differences among the parties remain . RB , JJ NNS IN DT NNS VBP . After the previous round ended in September , Pyongyang said it will not disarm unless it is first given a civilian ( light-water ) nuclear reactor to generate electricity . IN DT JJ NN VBD IN NNP , NNP VBD PRP MD RB VB IN PRP VBZ RB VBN DT JJ LRB NN RRB JJ NN TO VB NN . U.S. officials said the demand is not acceptable . NNP NNS VBD DT NN VBZ RB JJ . A U.S. military investigation has concluded that a suicide bomber wearing an Iraqi uniform carried out the deadly attack in a dining tent at an American base in Mosul last December , killing 22 people . DT NNP JJ NN VBZ VBN IN DT NN NN VBG DT JJ NN VBD IN DT JJ NN IN DT NN NN IN DT JJ NN IN NNP JJ NNP , VBG CD NNS . Major General David Rodriguez Friday said the bomber apparently entered the base at an unguarded point on its perimeter . NNP NNP NNP NNP NNP VBD DT NN RB VBD DT NN IN DT JJ NN IN PRP$ NN . He said investigators did not know if the attacker was a member of the Iraqi security forces , or was wearing a stolen or counterfeit uniform . PRP VBD NNS VBD RB VB IN DT NN VBD DT NN IN DT JJ NN NNS , CC VBD VBG DT JJ CC JJ NN . General Rodriguez said the bomber was believed to be a member of the Ansar al-Sunna terrorist group , which claimed responsibility for the December 21 attack - the deadliest on U.S. forces since the U.S.-led invasion in March , 2003 . NNP NNP VBD DT NN VBD VBN TO VB DT NN IN DT NNP NNP JJ NN , WDT VBD NN IN DT NNP CD NN IN DT JJS IN NNP NNS IN DT JJ NN IN NNP , CD . The group has also claimed responsibility for several other large profile attacks , including this month 's roadside bombing south of Haditha that killed 14 U.S. Marines . DT NN VBZ RB VBN NN IN JJ JJ JJ NN NNS , VBG DT NN POS NN VBG NN IN NNP WDT VBD CD NNP NNPS . Former Cuban president Fidel Castro has appeared at a special session of parliament for the first time since 2006 , when he ceded power to his younger brother , Raul . JJ JJ NN NNP NNP VBZ VBN IN DT JJ NN IN NN IN DT JJ NN IN CD , WRB PRP VBD NN TO PRP$ JJR NN , NNP . Cheering legislators gave the elder Castro a standing ovation as he entered the legislative chamber in an event broadcast on Cuban television Saturday . VBG NNS VBD DT NN NNP DT NN NN IN PRP VBD DT JJ NN IN DT NN NN IN JJ NN NNP . The 83-year-old former president was wearing an olive-green military style shirt and waved to the crowd . DT JJ JJ NN VBD VBG DT JJ JJ NN NN CC VBD TO DT NN . Mr. Castro spoke about the international situation and how growing tensions between the United States and Iran could lead to nuclear war . NNP NNP VBD IN DT JJ NN CC WRB VBG NNS IN DT NNP NNPS CC NNP MD VB TO JJ NN . Mr. Castro turns 84 later this month , and has recently increased his public appearances following a long period of seclusion , resulting from an illness suffered in 2006 . NNP NNP VBZ CD RB DT NN , CC VBZ RB VBN PRP$ JJ NNS VBG DT JJ NN IN NN , VBG IN DT NN VBD IN CD . Fidel Castro underwent intestinal surgery that year and turned over power on a provisional basis to his brother , who formally assumed the presidency in February 2008 . NNP NNP VBD JJ NN IN NN CC VBD RP NN IN DT JJ NN TO PRP$ NN , WP RB VBD DT NN IN NNP CD . A top Israeli official says Prime Minister Ariel Sharon has approved the final placement of a barrier around Jerusalem that would encompass a controversial Jewish settlement on Palestinian-claimed land . DT JJ JJ NN VBZ NNP NNP NNP NNP VBZ VBN DT JJ NN IN DT NN IN NNP WDT MD VB DT JJ JJ NN IN JJ NN . Deputy Prime Minister Ehud Olmert told Israeli radio Mr. Sharon approved the plan late Sunday after meeting with top officials . NNP NNP NNP NNP NNP VBD JJ NN NNP NNP VBD DT NN JJ NNP IN VBG IN JJ NNS . The enclosed Israeli area would include the largest Israeli settlement in the West Bank - Maaleh Adumim . DT VBN JJ NN MD VB DT JJS JJ NN IN DT NNP NNP IN NNP NNP . Israel says the wall will help keep out militants . NNP VBZ DT NN MD VB VB RP NNS . Palestinians say Israel has used the barrier issue as an excuse to grab land . NNS VBP NNP VBZ VBN DT NN NN IN DT NN TO VB NN . The approval comes as U.N. Secretary General Kofi Annan meets with Israeli and Palestinian officials to encourage peace talks between the two sides . DT NN VBZ IN NNP NNP NNP NNP NNP VBZ IN JJ CC JJ NNS TO VB NN NNS IN DT CD NNS . Meanwhile , Israeli and Palestinian security chiefs are preparing for more talks on the Israeli handover of five West Bank towns to Palestinian security control . RB , JJ CC JJ NN NNS VBP VBG IN JJR NNS IN DT JJ NN IN CD NNP NNP NNS TO JJ NN NN . Israel 's Supreme Court has ruled that Palestinian residents of the West Bank and Gaza can sue Israel for damages caused by the Israeli military in non-combat operations . NNP POS NNP NNP VBZ VBN IN JJ NNS IN DT NNP NNP CC NNP MD VB NNP IN NNS VBN IN DT JJ NN IN JJ NNS . The court nullified a law passed by the Israeli parliament last year that granted the state immunity from all Palestinian damage lawsuits against the Israeli military . DT NN VBD DT NN VBN IN DT JJ NN JJ NN WDT VBD DT NN NN IN DT JJ NN NNS IN DT JJ NN . Israel 's government applied the law retroactively to the start of the current Palestinian uprising in 2000 . NNP POS NN VBD DT NN RB TO DT NN IN DT JJ JJ NN IN CD . Several human rights groups petitioned the Supreme Court about the law , arguing Israel is responsible for the well-being of Palestinians as an occupying power . JJ JJ NNS NNS VBD DT NNP NNP IN DT NN , VBG NNP VBZ JJ IN DT NN IN NNS IN DT JJ NN . The court partially agreed with the petition , but ruled that Palestinians can not sue for damages caused by Israeli forces during combat operations . DT NN RB VBD IN DT NN , CC VBD IN NNS MD RB VB IN NNS VBN IN JJ NNS IN NN NNS . The judges also ruled that citizens of an enemy state and members of terrorist groups are not eligible for any compensation from Israel . DT NNS RB VBD IN NNS IN DT NN NN CC NNS IN JJ NNS VBP RB JJ IN DT NN IN NNP . The Nigerian government says five cabinet ministers have left their posts so that they can run for elected positions next year . DT JJ NN VBZ CD NN NNS VBP VBN PRP$ NNS RB IN PRP MD VB IN JJ NNS JJ NN . Government officials say the ministers of the interior , culture and tourism , commerce , sports and intergovernmental affairs have left their offices . NN NNS VBP DT NNS IN DT NN , NN CC NN , NN , NNS CC JJ NNS VBP VBN PRP$ NNS . President Olusegun Obasanjo has submitted a list to parliament to replace the ministers . NNP NNP NNP VBZ VBN DT NN TO NN TO VB DT NNS . The resignations are the latest government shifts in the run-up to next year 's general elections . DT NNS VBP DT JJS NN NNS IN DT NN TO JJ NN POS JJ NNS . Two days ago , Mr. Obasanjo replaced three top military chiefs and his national security adviser . CD NNS RB , NNP NNP VBD CD JJ JJ NNS CC PRP$ JJ NN NN . The shuffle comes weeks after the defeat in parliament of a measure that would have allowed Mr. Obasanjo to run for a third term . DT NN VBZ NNS IN DT NN IN NN IN DT NN WDT MD VB VBN NNP NNP TO VB IN DT JJ NN . European Union lawmakers have rejected a controversial budget deal reached at an EU summit last month and have called for further talks on the issue . NNP NNP NNS VBP VBN DT JJ NN NN VBN IN DT NNP NN JJ NN CC VBP VBN IN JJ NNS IN DT NN . At a plenary session Wednesday in Strasbourg , France , the European Parliament voted overwhelmingly , 541 to 76 against the $ 1 trillion EU budget for 2007 - 2013 . IN DT JJ NN NNP IN NNP , NNP , DT NNP NNP VBD RB , CD TO CD IN DT $ CD CD NNP NN IN CD : CD . Lawmakers critical of the deal said it fell short of the budget proposed by the European Parliament last June . NNS JJ IN DT NN VBD PRP VBD RB IN DT NN VBN IN DT NNP NNP JJ NNP . Austria 's Chancellor Wolfgang Schuessel , whose country holds the rotating EU presidency , said there is room to maneuver so a compromise can be reached . NNP POS NN NNP NNP , WP$ NN VBZ DT VBG NNP NN , VBD EX VBZ NN TO NN IN DT NN MD VB VBN . British Prime Minister Tony Blair , who presided over last month 's EU summit , had called the proposed budget a fair deal . JJ NNP NNP NNP NNP , WP VBD IN JJ NN POS NNP NN , VBD VBN DT VBN NN DT JJ NN . Some of the lawmakers insisted the budget does not provide sufficient aid for EU members . DT IN DT NNS VBD DT NN VBZ RB VB JJ NN IN NNP NNS . The World Health Organization has confirmed that a one-year-old girl has become the 23rd person in Indonesia to die of the H5N1 bird flu virus . DT NNP NNP NNP VBZ VBN IN DT JJ NN VBZ VBN DT JJ NN IN NNP TO VB IN DT NNP NN NN NN . WHO officials say the girl died about a week ago at a Jakarta hospital . WP NNS VBP DT NN VBD IN DT NN RB IN DT NNP NN . Indonesia has seen more deaths from the virus than any other nation except Vietnam . NNP VBZ VBN JJR NNS IN DT NN IN DT JJ NN IN NNP . Meanwhile , health officials in Jordan Friday confirmed that nation 's first human case of bird flu . RB , NN NNS IN NNP NNP VBD DT NN POS JJ JJ NN IN NN NN . They say a 31-year-old Egyptian worker is being treated and is in good condition . PRP VBP DT JJ JJ NN VBZ VBG VBN CC VBZ IN JJ NN . On Thursday , health authorities in Afghanistan began investigating the deaths of three children from the same family on suspicion they might have died of bird flu . IN NNP , NN NNS IN NNP VBD VBG DT NNS IN CD NNS IN DT JJ NN IN NN PRP MD VB VBN IN NN NN . The deadly form of bird flu has killed more than 100 people since 2003 , mostly in East Asia . DT JJ NN IN NN NN VBZ VBN JJR IN CD NNS IN CD , RB IN NNP NNP . It has recently spread to Europe , Africa and the Middle East . PRP VBZ RB VBN TO NNP , NNP CC DT NNP NNP . U.S. President-elect Barack Obama is encouraging Americans to come together to help renew the U.S. economy and ' make a new beginning ' for the country . NNP NNP NNP NNP VBZ VBG NNS TO VB RB TO VB VB DT NNP NN CC `` VB DT JJ NN `` IN DT NN . During his weekly radio address released early Thursday for Thanksgiving , Mr. Obama reminded U.S. citizens that this year 's holiday comes at a difficult time . IN PRP$ JJ NN NN VBN RB NNP IN NNP , NNP NNP VBD NNP NNS IN DT NN POS NN VBZ IN DT JJ NN . He said that his newly announced economic team is working hard to confront an economic crisis of historic proportions . PRP VBD IN PRP$ RB VBN JJ NN VBZ VBG RB TO VB DT JJ NN IN JJ NNS . But the president-elect said policies alone will not revive the U.S. economy . CC DT NN VBD NNS RB MD RB VB DT NNP NN . He said it also will take ' the hard work , innovation , service and strength of the American people . ' PRP VBD PRP RB MD VB `` DT JJ NN , NN , NN CC NN IN DT JJ NNS . `` Mr. Obama thanked members of the armed forces and their families for their service and sacrifice . NNP NNP VBD NNS IN DT JJ NNS CC PRP$ NNS IN PRP$ NN CC NN . The president-elect is spending the holiday in Chicago , Illinois , with his wife , Michelle , and their daughters . DT NN VBZ VBG DT NN IN NNP , NNP , IN PRP$ NN , NNP , CC PRP$ NNS . Tens of thousands of people rallied across Taiwan Sunday as political parties stepped up campaigning ahead of next Saturday 's parliamentary election . NNS IN NNS IN NNS VBD IN NNP NNP IN JJ NNS VBD RP VBG RB IN JJ NNP POS JJ NN . In Taipei , supporters of the pro-independence Taiwan Solidarity Union , an ally of President Chen Shui-bian 's party , waved placards of their candidates and chanted independence slogans . IN NNP , NNS IN DT JJ NNP NNP NNP , DT NN IN NNP NNP NNP POS NN , VBD NNS IN PRP$ NNS CC VBD NN NNS . Nearby , thousands of backers of the opposition Nationalists marched for improved ties with mainland China . RB , NNS IN NNS IN DT NN NNS VBD IN JJ NNS IN JJ NNP . President Chen is hoping to achieve a majority in the 225-seat legislature so he can push though what he calls needed constitutional reforms . NNP NNP VBZ VBG TO VB DT NN IN DT JJ NN IN PRP MD VB RB WP PRP VBZ VBN JJ NNS . The Nationalist Party and its coalition partner , the People First Party , currently hold a slim majority . DT NNP NNP CC PRP$ NN NN , DT NNS NNP NNP , RB VBP DT JJ NN . Beijing has denounced the planned constitutional amendments , saying they are a pretext for declaring formal independence , an act China says will trigger a war . NNP VBZ VBN DT JJ JJ NNS , VBG PRP VBP DT NN IN VBG JJ NN , DT NN NNP VBZ MD VB DT NN . Serbia 's special war crimes prosecutor has announced the indictment of another suspect in the 1991 massacre of more than 200 Croat civilians outside the Croatian city of Vukovar . NNP POS JJ NN NNS NN VBZ VBN DT NN IN DT NN IN DT CD NN IN JJR IN CD JJ NNS IN DT JJ NN IN NNP . Authorities arrested Sasa Radak last month in Montenegro . NNS VBN NNP NNP JJ NN IN NNP . He joins 17 other suspects on trial before a special court in connection with the deaths at the Ovcara pig farm outside Vukovar . PRP VBZ CD JJ NNS IN NN IN DT JJ NN IN NN IN DT NNS IN DT NNP NN NN IN NNP . Prosecutors say Yugoslav troops took the 200 patients from Vukovar hospital after capturing the Croatian city in November 1991 . NNS VBP JJ NNS VBD DT CD NNS IN NNP NN IN VBG DT JJ NN IN NNP CD . They say the bodies were later discovered at the farm . PRP VBP DT NNS VBD RB VBN IN DT NN . The Hague war crimes tribunal has indicted three Yugoslav army officers for their role in the deaths . DT NNP NN NNS JJ VBZ VBN CD JJ NN NNS IN PRP$ NN IN DT NNS . Tribunal prosecutors have now suggested that their cases be transferred to local courts either in Croatia or Serbia . NNP NNS VBP RB VBN IN PRP$ NNS VB VBN TO JJ NNS CC IN NNP CC NNP . Rwandan police have arrested a journalist accused of comparing President Paul Kagame to Nazi Germany 's leader Adolf Hitler . JJ NNS VBP VBN DT NN VBN IN VBG NNP NNP NNP TO NNP NNP POS NN NNP NNP . Saidati Mukakibibi is the second journalist from the independent newspaper Umurabyo arrested in the past week . NNP NNP VBZ DT JJ NN IN DT JJ NN NNP VBN IN DT JJ NN . The Reuters news agency quotes a police spokesman as saying Mukakibibi wrote articles comparing the president with Hitler . DT NNP NN NN VBZ DT NN NN IN VBG NNP VBD NNS VBG DT NN IN NNP . He said the articles were accompanied by a photo of Mr. Kagame in front of a Nazi swastika that the publishers had inserted in the picture . PRP VBD DT NNS VBD VBN IN DT NN IN NNP NNP IN NN IN DT NN NN IN DT NNS VBD VBN IN DT NN . Last week , authorities arrested Umurabyo editor Agnes Uwimana on allegations of civil disobedience . JJ NN , NNS VBN NNP NN NNP NNP IN NNS IN JJ NN . Rights groups say the arrests are an attempt by the Rwandan government to clamp down on independent media ahead of next month 's elections . NNS NNS VBP DT NNS VBP DT NN IN DT JJ NN TO VB RP IN JJ NNS RB IN JJ NN POS NNS . The government denies the allegations . DT NN VBZ DT NNS . Chinese President Hu Jintao called for progress in six party talks on North Korea 's nuclear program during a meeting with his South Korean counterpart Saturday . JJ NNP NNP NNP VBD IN NN IN CD NN NNS IN NNP NNP POS JJ NN IN DT NN IN PRP$ JJ JJ NN NNP . South Korean President Lee Myung-bak met with the Chinese leader in Beijing while attending the Olympics . JJ JJ NNP NNP NNP VBD IN DT JJ NN IN NNP IN VBG DT NNS . Mr. Hu said he hoped for improved communication and coordination among the countries involved in the six party talks ( among China , South Korea , Japan , Russia , the United States and North Korea ) aimed at dismantling North Korea 's nuclear program ) . NNP NNP VBD PRP VBD IN JJ NN CC NN IN DT NNS VBN IN DT CD NN NNS LRB IN NNP , NNP NNP , NNP , NNP , DT NNP NNPS CC NNP NNP RRB VBN IN VBG NNP NNP POS JJ NN RRB . And he urged moving the talks to what he called ' a new stage . ' CC PRP VBD VBG DT NNS TO WP PRP VBD `` DT JJ NN . `` The two leaders also discussed developing a ' strategic partnership ' between China and South Korea . DT CD NNS RB VBD VBG DT `` JJ NN `` IN NNP CC NNP NNP . Mr. Hu is scheduled to make a state visit to South Korea in the coming weeks . NNP NNP VBZ VBN TO VB DT NN NN TO NNP NNP IN DT JJ NNS . U.S. stock market indexes dropped sharply as Friday 's trading got underway . NNP NN NN NNS VBD RB IN NNP POS NN VBD NN . The Dow Jones Industrial Average was off 1.3 percent , the S & P 500 lost 1.7 percent , while the NASDAQ fell 2.1 percent . DT NNP NNP NNP NNP VBD RB CD NN , DT NNP CC NNP CD VBD CD NN , IN DT NNP VBD CD NN . European stock markets were higher in afternoon trading . JJ NN NNS VBD JJR IN NN NN . London 's Financial Times 100 index gained 2.5 percent , the CAC-40 in Paris rose 1.7 percent , while the DAX in Frankfurt jumped 2.8 percent . NNP POS NNP NNP CD NN VBD CD NN , DT NNP IN NNP VBD CD NN , IN DT NNP IN NNP VBD CD NN . In Asia , Tokyo 's Nikkei index advanced 2.7 percent ( 224 points ) to end at 8,462 . IN NNP , NNP POS NNP NN VBD CD NN LRB CD NNS RRB TO VB IN CD . In Hong Kong , the Hang Seng moved up 2.4 percent ( 321 points ) to finish at 13,543 . IN NNP NNP , DT NNP NNP VBD RB CD NN LRB CD NNS RRB TO VB IN CD . The price of gold rose more than $ 9 to trade at $ 745.71 an ounce . DT NN IN NN VBD JJR IN $ CD TO VB IN $ CD DT NN . The dollar was down against the yen but gained compared to the euro . DT NN VBD RB IN DT NN CC VBD VBN TO DT NN . Cuba has decided to ban smoking in many public places beginning next month . NNP VBZ VBN TO VB NN IN JJ JJ NNS VBG JJ NN . Officials say the smoking ban , which will start the first week of February , will apply to buses , theaters , sports arenas and indoor restaurants , except designated areas . NNS VBP DT NN NN , WDT MD VB DT JJ NN IN NNP , MD VB TO NNS , NNS , NNS NNS CC JJ NNS , IN VBN NNS . Cigarette machines will also be removed . NN NNS MD RB VB VBN . The French news agency , AFP , reports that under the new rules tobacco products will be sold only to people over 16 years of age . DT JJ NN NN , NNP , VBZ IN IN DT JJ NNS NN NNS MD VB VBN RB TO NNS IN CD NNS IN NN . There is currently no age minimum . EX VBZ RB DT NN NN . The news agency reports the government has taken the measures for health reasons and to respect the rights of non-smokers . DT NN NN VBZ DT NN VBZ VBN DT NNS IN NN NNS CC TO VB DT NNS IN NNS . Pakistani officials say a U.S. missile strike in Pakistan 's tribal region Saturday killed two suspected militants . JJ NNS VBP DT NNP NN NN IN NNP POS JJ NN NNP VBD CD JJ NNS . Security officials said the strike targeted a house in the town of Mir Ali in North Waziristan . NN NNS VBD DT NN VBD DT NN IN DT NN IN NNP NNP IN NNP NNP . The region is considered a base for Taliban and al-Qaida insurgents accused of attacking NATO troops across the border in Afghanistan . DT NN VBZ VBN DT NN IN NNP CC NNP NNS VBN IN VBG NNP NNS IN DT NN IN NNP . U.S. President Barack Obama has increased the use of drone strikes to target hideouts in Pakistan , causing friction between Washington and Islamabad . NNP NNP NNP NNP VBZ VBN DT NN IN NN NNS TO VB NNS IN NNP , VBG NN IN NNP CC NNP . Pakistan 's government has objected to the attacks , saying they violate its sovereignty . NNP POS NN VBZ VBN TO DT NNS , VBG PRP VBP PRP$ NN . Malawi 's Agriculture Minister Uladi Mussa says Africa is not prepared to fight bird flu . NNP POS NNP NNP NNP NNP VBZ NNP VBZ RB JJ TO VB NN NN . Mussa told a 19-nation bird flu conference in Malawi Monday that the lack of knowledge among health officials is as dangerous as the lack of resources . NNP VBD DT JJ NN NN NN IN NNP NNP IN DT NN IN NN IN NN NNS VBZ RB JJ IN DT NN IN NNS . United Nations Food and Agriculture official Mazlan Jusoh said most African nations are free of bird flu for now , but says they must boost surveillance . NNP NNP NNP CC NNP JJ NNP NNP VBD RBS JJ NNS VBP JJ IN NN NN IN RB , CC VBZ PRP MD VB NN . He said poverty and inadequate medical and veterinary services make Africa vulnerable . PRP VBD NN CC JJ JJ CC JJ NNS VBP NNP NN . The deadly H5N1 bird flu strain has been found in birds in five African nations ( Burkina Faso , Cameroon , Egypt , Niger , and Nigeria ) . DT JJ NNP NN NN NN VBZ VBN VBN IN NNS IN CD JJ NNS LRB NNP NNP , NNP , NNP , NNP , CC NNP RRB . Meanwhile , Pakistan said Monday it killed more than 40,000 chickens after bird flu was found on several poultry farms near Islamabad . RB , NNP VBD NNP PRP VBD JJR IN CD NNS IN NN NN VBD VBN IN JJ JJ NNS IN NNP . Bird flu has killed 113 people worldwide since 2003 - mostly in Asia . NN NN VBZ VBN CD NNS JJ IN CD : RB IN NNP . In a city where most police do not carry guns , the shooting death of a suspect on a crowded London subway has resonated much further than the underground station where the incident occurred . IN DT NN WRB RBS NNS VBP RB VB NNS , DT NN NN IN DT NN IN DT JJ NNP NN VBZ VBN RB RBR IN DT JJ NN WRB DT NN VBD . Across the British capital Saturday , residents learned more about the suspect police officers chased onto a subway car Friday and shot to death five times at point-blank range . IN DT JJ NN NNP , NNS VBD RBR IN DT JJ NN NNS VBD IN DT NN NN NNP CC VBD TO NN CD NNS IN JJ NN . In a statement , London police said the man was not connected to Thursday 's attempted bombings on the British capital 's transit system , and called the killing ' regrettable ' and a ' tragedy . ' IN DT NN , NNP NNS VBD DT NN VBD RB VBN TO NNP POS JJ NNS IN DT JJ NN POS NN NN , CC VBD DT NN `` JJ `` CC DT `` NN . `` Experts say the shooting death raises questions about police firearm practices and deepens the anxiety of a city that increasingly feels under siege . NNS VBP DT NN NN VBZ NNS IN NN NN NNS CC VBZ DT NN IN DT NN WDT RB VBZ IN NN . Slovenia 's Katarina Srebotnik has overcome a leg injury to win both the singles and doubles titles at the ASB Classic women 's tennis tournament in Auckland , New Zealand . NNP POS NNP NNP VBZ VBN DT NN NN TO VB DT DT NN CC NN NNS IN DT NNP NNP NNS POS NN NN IN NNP , NNP NNP . Srebotnik received treatment for a thigh injury to beat fourth-seeded Japanese player Shinboue Asagoe in the final in three sets , 05-Jul , 07-May , 06-Apr . NNP VBD NN IN DT NN NN TO VB JJ JJ NN NNP NNP IN DT JJ IN CD NNS , CD , CD , CD . Earlier , the Slovene player took two and a half hours to beat fifth seed Marion Bartoli of France in the semifinals , 07-May , 02-Jun , 07-May . RB , DT JJ NN VBD CD CC DT NN NNS TO VB JJ NN NNP NNP IN NNP IN DT NNS , CD , CD , CD . Srebotnik later teamed with Asagoe to take the tournament doubles title over Leanne Baker of New Zealand and Francesca Lubiani of Italy , 06-Mar , 06-Mar . NNP RB VBD IN NNP TO VB DT NN VBZ NN IN NNP NNP IN NNP NNP CC NNP NNP IN NNP , CD , CD . The win was Srebotnik 's seventh doubles title on the WTA tour . DT NN VBD NNP POS JJ NN NN IN DT NNP NN . The singles title was Srebotnik 's third in five years . DT NN NN VBD NNP POS JJ IN CD NNS . The 23-year-old Slovene came into the tournament ranked 87th in the world . DT JJ NN VBD IN DT NN VBD CD IN DT NN . Israel 's Security Cabinet has decided to continue military strikes against Palestinian militants firing rockets from Gaza into Israel . NNP POS NNP NNP VBZ VBN TO VB JJ NNS IN JJ NNS VBG NNS IN NNP IN NNP . The cabinet said it based the decision on the relative decrease in rocket attacks since Israeli airstrikes started almost two weeks ago . DT NN VBD PRP VBD DT NN IN DT JJ NN IN NN NNS IN JJ NNS VBD RB CD NNS RB . Israel has also conducted a limited number of ground raids against the militants . NNP VBZ RB VBN DT JJ NN IN NN NNS IN DT NNS . A statement from the office of Israeli Prime Minister Ehud Olmert added that Israel is not involved in any cease-fire talks with the militants . DT NN IN DT NN IN JJ NNP NNP NNP NNP VBD IN NNP VBZ RB VBN IN DT NN NNS IN DT NNS . Earlier Wednesday , an Israeli airstrike killed two Hamas militants in a northern Gaza refugee camp . RBR NNP , DT JJ NN VBD CD NNP NNS IN DT JJ NNP NN NN . About 50 Palestinians , mostly militants , have been killed in the Israeli attacks . IN CD NNS , RB NNS , VBP VBN VBN IN DT JJ NNS . Palestinian rockets have killed two Israelis since mid-May . JJ NNS VBP VBN CD NNS IN NNP . A new museum opened Friday in Washington on crime and law enforcement , mostly in the United States . DT JJ NN VBD NNP IN NNP IN NN CC NN NN , RB IN DT NNP NNPS . The museum is owned and financed by an entrepreneur and it charges a fee for entry . DT NN VBZ VBN CC VBN IN DT NN CC PRP VBZ DT NN IN NN . Visitors are invited to pick up a rifle in a Wild West shootout , plan a prison break and test their knowledge of infamous murderers . NNS VBP VBN TO VB RP DT NN IN DT NNP NNP NN , VBP DT NN NN CC VB PRP$ NN IN JJ NNS . VOA 's Deborah Block was there . NNP POS NNP NNP VBD RB . Iraqi soldiers , prisoners and hospital patients have cast early ballots for parliamentary elections set to open to the general public on Thursday . JJ NNS , NNS CC NN NNS VBP VBN JJ NNS IN JJ NNS VBN TO VB TO DT JJ NN IN NNP . Officials have promised to implement tough security measures Thursday to guard against violence during the vote . NNS VBP VBN TO VB JJ NN NNS NNP TO VB IN NN IN DT NN . They include closing Iraq 's borders and restricting travel . PRP VBP VBG NNP POS NNS CC VBG NN . Authorities are also expected to extend curfews across the country Tuesday . NNS VBP RB VBN TO VB NNS IN DT NN NNP . Polling stations were due to open today in 15 countries , including the United States , for voters living outside Iraq . NN NNS VBD JJ TO VB NN IN CD NNS , VBG DT NNP NNPS , IN NNS VBG IN NNP . Meanwhile , officials in Iraq reported seven people were killed in attacks Monday . RB , NNS IN NNP VBD CD NNS VBD VBN IN NNS NNP . Separate roadside bomb attacks killed one American soldier and two other people in the Iraqi capital . JJ NN NN NNS VBD CD JJ NN CC CD JJ NNS IN DT JJ NN . And gunmen killed four Iraqis , including a police officer . CC NNS VBD CD NNS , VBG DT NN NN . Australia 's Qantas Airways resumed limited superjumbo flights Saturday , with the take-off of a fully-loaded Airbus A380 from Singapore . NNP POS NNP NNPS VBD JJ NN NNS NNP , IN DT NN IN DT JJ NNP NNP IN NNP . Qantas chief executive Alan Joyce joined the first leg of the flight to London via Singapore . NNP JJ NN NNP NNP VBD DT JJ NN IN DT NN TO NNP IN NNP . Joyce told reporters that he was 100 percent comfortable with the operation of the aircraft . NNP VBD NNS IN PRP VBD CD NN JJ IN DT NN IN DT NN . The airline grounded its six A380s after a superjumbo 's engine blew up midair on November 4 , forcing an emergency landing in Singapore . DT NN VBD PRP$ CD NNS IN DT NN POS NN VBD RP NN IN NNP CD , VBG DT NN NN IN NNP . Inspections showed problems with several of Qantas Airways ' Rolls Royce Trent 900 engines that required turbines to be replaced or modified . NNS VBD NNS IN JJ IN NNP NNP POS NNP NNP NNP NNP NNS WDT VBD NNS TO VB VBN CC VBN . Qantas is putting just two of its A380s back in service while modifications are made on engines on other aircraft . NNP VBZ VBG RB CD IN PRP$ NNS RB IN NN IN NNS VBP VBN IN NNS IN JJ NN . Islamic militants have fired volleys of Katyusha-type rockets in response to a Lebanese army bombardment of their positions inside a Palestinian refugee camp in northern Lebanon . NNP NNS VBP VBN NNS IN JJ NNS IN NN TO DT JJ NN NN IN PRP$ NNS IN DT JJ NN NN IN JJ NNP . The army says the rockets caused some damage but no casualties several kilometers away from the refugee camp . DT NN VBZ DT NNS VBD DT NN CC DT NNS JJ NNS RB IN DT NN NN . Lebanese artillery and tanks continued to pound Fatah al-Islam militants inside the Nahr el-Bared refugee camp near the city of Tripoli . JJ NN CC NNS VBD TO VB NNP NNP NNS IN DT NNP JJ NN NN IN DT NN IN NNP . At least 10 soldiers have died in fighting since Thursday when the army began an artillery barrage on the camp . IN JJS CD NNS VBP VBN IN VBG IN NNP WRB DT NN VBD DT NN NN IN DT NN . Last month , Lebanese officials claimed victory in the fighting , but daily firefights have continued since then . JJ NN , JJ NNS VBD NN IN DT NN , CC JJ NNS VBP VBN IN RB . More than 170 people , including more than 90 Lebanese soldiers , have been killed since the standoff began May 20 . JJR IN CD NNS , VBG JJR IN CD JJ NNS , VBP VBN VBN IN DT NN VBD NNP CD . Nearly all of the Palestinian refugees living in the camp have fled . RB DT IN DT JJ NNS VBG IN DT NN VBP VBN . A car bomb explosion in Iraq has killed five people , including four police officers who were on patrol . DT NN NN NN IN NNP VBZ VBN CD NNS , VBG CD NNS NNS WP VBD IN NN . Officials say a civilian was also among the dead in the town of Khan Bani Saad , near Baquba , just north of Baghdad . NNS VBP DT JJ VBD RB IN DT NN IN DT NN IN NNP NNP NNP , IN NNP , RB NN IN NNP . At least three other people were injured . IN JJS CD JJ NNS VBD VBN . Meanwhile , the U.S. military reported Saturday , that a Marine was killed in action Friday , in the western city of Ramadi . RB , DT NNP NN VBD NNP , IN DT NN VBD VBN IN NN NNP , IN DT JJ NN IN NNP . In political news , the Iraqi National Assembly is scheduled to meet Sunday to finally elect a speaker . IN JJ NN , DT JJ NNP NNP VBZ VBN TO VB NNP TO RB VB DT NN . But politicians say Shi'ite and Sunni leaders are still not able to agree on a Sunni candidate for the post . CC NNS VBP NNP CC NNP NNS VBP RB RB JJ TO VB IN DT NNP NN IN DT NN . The impasse has delayed formation of the new government . DT NN VBZ VBN NN IN DT JJ NN . Palestinian militants fired two rockets into southern Israel late Tuesday , following Israeli airstrikes near the Gaza Strip 's border with Egypt . JJ NNS VBD CD NNS IN JJ NNP JJ NNP , VBG JJ NNS IN DT NNP NNP POS NN IN NNP . Israeli military officials say no one was hurt in the rocket attack . JJ JJ NNS VBP DT NN VBD VBN IN DT NN NN . Earlier on Tuesday , Israeli aircraft bombed at least six smuggling tunnels near the southern Gaza town of Rafah . RB IN NNP , JJ NN VBD IN JJS CD VBG NNS IN DT JJ NNP NN IN NNP . Israeli military officials say one of the airstrikes triggered a secondary explosion , indicating that explosives were present in the tunnel . JJ JJ NNS VBP CD IN DT NNS VBD DT JJ NN , VBG IN NNS VBD JJ IN DT NN . At least four people were reported wounded in the strikes . IN JJS CD NNS VBD VBN VBN IN DT NNS . Israel launched a three-week offensive against the Palestinian militant group Hamas in Gaza in response to the rocket attacks . NNP VBD DT JJ NN IN DT JJ JJ NN NNP IN NNP IN NN TO DT NN NNS . Both Hamas and Israel declared separate cease-fires last month , but the violence continues almost daily . DT NNP CC NNP VBD JJ NNS JJ NN , CC DT NN VBZ RB RB . The U.S. military has announced charges against eight service members in connection with the death of an Iraqi civilian . DT NNP NN VBZ VBN NNS IN CD NN NNS IN NN IN DT NN IN DT JJ JJ . Marine Colonel Stewart Navarre said Wednesday the eight face charges including kidnapping , murder and conspiracy . NNP NNP NNP NNP VBD NNP DT CD NN NNS VBG NN , NN CC NN . The seven Marines and a Navy corpsman are suspected of killing an Iraqi man without provocation in the village of Hamdania in April . DT CD NNPS CC DT NNP NN VBP VBN IN VBG DT JJ NN IN NN IN DT NN IN NNP IN NNP . They have been held since May at Camp Pendleton , California . PRP VBP VBN VBN IN NNP IN NNP NNP , NNP . Four other Marines not being held remain under investigation . CD JJ NNS RB VBG VBN VBP IN NN . The investigation is separate from the probe of the events of Haditha in November 2005 , in which Marines are alleged to have killed 24 Iraqi civilians after a roadside bomb blast in the town killed a fellow Marine . DT NN VBZ JJ IN DT NN IN DT NNS IN NNP IN NNP CD , IN WDT NNS VBP VBN TO VB VBN CD JJ NNS IN DT NN NN NN IN DT NN VBD DT JJ NN . At least 60 people are confirmed dead and more than 400 remain missing after the Shadi Kor dam ruptured in southwestern Pakistan Thursday . IN JJS CD NNS VBP VBN JJ CC JJR IN CD VBP VBG IN DT NNP NNP NN VBD IN JJ NNP NNP . More than 1,500 people have been rescued from the floodwaters after the two-year-old dam failed . JJR IN CD NNS VBP VBN VBN IN DT NNS IN DT JJ NN VBD . Primarily used for irrigation , the 25-meter-high , 150-meter-long dam was destroyed by a wall of water after a week of heavy rain and snow that has caused over 120 storm-related deaths in the region . RB VBN IN NN , DT JJ , JJ NN VBD VBN IN DT NN IN NN IN DT NN IN JJ NN CC NN WDT VBZ VBN IN CD JJ NNS IN DT NN . Members of Pakistan 's army , navy and coast guard are leading relief efforts at the disaster site in Baluchistan Province . NNS IN NNP POS NN , NN CC NN NN VBP VBG NN NNS IN DT NN NN IN NNP NNP . An estimated 50,000 people in the province have been affected with the loss of roads , bridges , houses , crops and telecommunications , much of which remains under water . DT VBN CD NNS IN DT NN VBP VBN VBN IN DT NN IN NNS , NNS , NNS , NNS CC NNS , NN IN WDT VBZ IN NN . Several more days of severe , wet weather are expected . JJ JJR NNS IN JJ , JJ NN VBP VBN . German officials say the German woman who was taken hostage in Iraq last month has been freed and appears to be in good health . JJ NNS VBP DT JJ NN WP VBD VBN NN IN NNP JJ NN VBZ VBN VBN CC VBZ TO VB IN JJ NN . Germany 's foreign minister ( Frank-Walter Steinmeier ) says archaeologist Susanne Osthoff is now in the German embassy in Baghdad . NNP POS JJ NN LRB NNP NNP RRB VBZ JJ NNP NNP VBZ RB IN DT JJ NN IN NNP . He gave no information on her release , saying only that she is no longer in the hands of the kidnappers . PRP VBD DT NN IN PRP$ NN , VBG RB IN PRP VBZ RB RB IN DT NNS IN DT NNS . Ms. Osthoff and her driver disappeared on November 25 in the Nineveh region of northwest Iraq . NNP NNP CC PRP$ NN VBD IN NNP CD IN DT NNP NN IN JJ NNP . She had been working in Iraq more than ten years . PRP VBD VBN VBG IN NNP JJR IN CD NNS . Pope John Paul has called for better integration among peoples as the Roman Catholic Church marks the World Day of Migrants and Refugees . NNP NNP NNP VBZ VBN IN JJR NN IN NNS IN DT NNP NNP NNP VBZ DT NNP NNP IN NNPS CC NNPS . In remarks at the Vatican Sunday , the pontiff said better integration among peoples requires a fair balance between the affirmation of one 's own identity and recognition of that of others . IN NNS IN DT NNP NNP , DT NN VBD JJR NN IN NNS VBZ DT JJ NN IN DT NN IN CD POS JJ NN CC NN IN DT IN NNS . The 84-year-old pope greeted all migrants and said he wishes that sympathy and understanding among cultures can grow through dialogue . DT JJ NN VBD DT NNS CC VBD PRP VBZ IN NN CC NN IN NNS MD VB IN NN . The United States will host a two-day international conference on the avian ( bird ) flu virus in Washington beginning Thursday . DT NNP NNPS MD VB DT JJ JJ NN IN DT JJ LRB NN RRB NN NN IN NNP VBG NNP . U.S. State Department spokesman Sean McCormack Wednesday said more than 65 countries and international organizations concerned about preventing a global bird flu pandemic will be participating . NNP NNP NNP NN NNP NNP NNP VBD JJR IN CD NNS CC JJ NNS VBN IN VBG DT JJ NN NN NN MD VB VBG . He said U.S. officials leading the meeting will focus on a set of core principles regarding the H5N1 virus unveiled by Washington at last month 's U.N. World Summit . PRP VBD NNP NNS VBG DT NN MD VB IN DT NN IN NN NNS VBG DT NNP NN VBN IN NNP IN JJ NN POS NNP NNP NNP . He said the program principles include quick and accurate reporting of outbreaks of the virus , donor support for countries affected by the disease and a pledge to work with the World Health Organization . PRP VBD DT NN NNS VBP JJ CC JJ NN IN NNS IN DT NN , NN NN IN NNS VBN IN DT NN CC DT NN TO VB IN DT NNP NNP NNP . Many participants have already signed on to the U.S.-led program . JJ NNS VBP RB VBN IN TO DT JJ NN . About 60 people have died after being exposed to birds with the virus . IN CD NNS VBP VBN IN VBG VBN TO NNS IN DT NN . Experts warn the virus could mutate into a form passed easily among humans and cause a global pandemic . NNS VBP DT NN MD VB IN DT NN VBN RB IN NNS CC VB DT JJ NN . Burma has reported an outbreak of bird flu among chickens in the country 's eastern Shan state . NNP VBZ VBN DT NN IN NN NN IN NNS IN DT NN POS JJ NNP NN . The official ' New Light of Myanmar ' newspaper said Saturday that authorities confirmed the outbreak of the deadly H5N1 virus on Thursday , after an unspecified number of chickens had died in Yankham village . DT JJ `` NNP NNP IN NNP `` NN VBD NNP IN NNS VBD DT NN IN DT JJ NNP NN IN NNP , IN DT JJ NN IN NNS VBD VBN IN NNP NN . Officials said they determined that the virus was spread to the area from Kengtung Township , where bird flu broke out in December 18 . NNS VBD PRP VBD IN DT NN VBD VBN TO DT NN IN NNP NNP , WRB NN NN VBD RP IN NNP CD . Burma and the World Health Organization had earlier confirmed the country 's first human bird flu case , when a seven-year-old girl was hospitalized in late November . NNP CC DT NNP NNP NNP VBD RBR VBN DT NN POS JJ JJ NN NN NN , WRB DT JJ NN VBD VBN IN JJ NNP . The girl survived the disease and was discharged in early December . DT NN VBD DT NN CC VBD VBN IN JJ NNP . Seven countries in East Asia have reported human cases of the potentially deadly virus . CD NNS IN NNP NNP VBP VBN JJ NNS IN DT RB JJ NN . The two with the greatest number of cases are Indonesia and Vietnam . DT CD IN DT JJS NN IN NNS VBP NNP CC NNP . More than 200 people in 13 countries have died from the disease since 2003 . JJR IN CD NNS IN CD NNS VBP VBN IN DT NN IN CD . U.S. Navy helicopters will begin airlifting survivors from remote areas of Indonesia 's tsunami-devastated Aceh province , a move the United Nations calls vital to rescue operations in the region . NNP NNP NNS MD VB VBG NNS IN JJ NNS IN NNP POS JJ NNP NN , DT NN DT NNP NNP VBZ JJ TO VB NNS IN DT NN . U.S. , Australian and Indonesian military helicopters are also dropping food and supplies to hungry people left stranded in isolated western areas of the province . NNP , JJ CC JJ NN NNS VBP RB VBG NN CC NNS TO JJ NNS VBN VBN IN VBN JJ NNS IN DT NN . Large areas of Aceh province remain inaccessible to emergency crews on the ground one week after the area was battered by massive waves triggered by a 9 magnitude earthquake near its coast . JJ NNS IN NNP NN VBP JJ TO NN NNS IN DT NN CD NN IN DT NN VBD VBN IN JJ NNS VBN IN DT CD NN NN IN PRP$ NN . The tsunami pounded coastlines in a dozen Indian Ocean countries , leaving 1,27,000 people known dead . DT NN VBD NNS IN DT NN JJ NNP NNS , VBG CD NNS VBN JJ . Millions more people are now homeless and in need of emergency assistance . NNS JJR NNS VBP RB JJ CC IN NN IN NN NN . Aid is being rushed to the region , but logistical bottlenecks , destroyed infrastructure , and bad weather are hindering distribution . NN VBZ VBG VBN TO DT NN , CC JJ NNS , VBN NN , CC JJ NN VBP VBG NN . Relief agencies warn it may take weeks to get aid to some needy people . NN NNS VBP PRP MD VB NNS TO VB NN TO DT JJ NNS . The US military says one US soldier and an Afghan interpreter have been killed in a gunfight in southern Afghanistan , as the war-ravaged country continues its bloody countdown to parliamentary polls . DT NNP NN VBZ CD NNP NN CC DT JJ NN VBP VBN VBN IN DT NN IN JJ NNP , IN DT JJ NN VBZ PRP$ JJ NN TO JJ NNS . A military statement says they were moving into position for a daylight offensive operation south of Dai Chopan in Zabul province when the gun battle occurred . DT JJ NN VBZ PRP VBD VBG IN NN IN DT JJ NN NN NN IN NNP NNP IN NNP NN WRB DT NN NN VBD . U.S. and Afghan government forces have mounted a series of operations in the south and east in recent months , aimed at flushing out militants and ensuring security for September 18th parliamentary elections . NNP CC JJ NN NNS VBP VBN DT NN IN NNS IN DT NN CC NN IN JJ NNS , VBN IN VBG RP NNS CC VBG NN IN NNP JJ JJ NNS . The U.S. military said two Taleban were later killed in the attack including one identified as a sub-commander . DT NNP NN VBD CD NNP VBD RB VBN IN DT NN VBG CD VBN IN DT NN . A purported spokesman for the Taleban confirmed the local-level commander , known as Tor Mullah Abdul Manan , had been killed in a battle in the restive Zabul province . DT JJ NN IN DT NNP VBD DT JJ NN , VBN IN NNP NNP NNP NNP , VBD VBN VBN IN DT NN IN DT JJ NNP NN . Iranian President Mahmoud Ahmadinejad has again defended his country 's right to develop nuclear energy . JJ NNP NNP NNP VBZ RB VBN PRP$ NN POS NN TO VB JJ NN . At a news conference during a visit to Algeria , Ahmadinejad Tuesday denounced nations for trying to isolate his country over its nuclear program . IN DT NN NN IN DT NN TO NNP , NNP NNP VBD NNS IN VBG TO VB PRP$ NN IN PRP$ JJ NN . The United States and its allies accuse Iran of trying to develop nuclear weapons . DT NNP NNPS CC PRP$ NNS VBP NNP IN VBG TO VB JJ NNS . Iran denies the charge , saying its program is aimed at producing energy . NNP VBZ DT NN , VBG PRP$ NN VBZ VBN IN VBG NN . On Monday , U.S. President George W. Bush said the Ahmadinejad government is ' a big disappointment ' and is causing the Iranian people to be further isolated . IN NNP , NNP NNP NNP NNP NNP VBD DT NNP NN VBZ `` DT JJ NN `` CC VBZ VBG DT JJ NNS TO VB RB VBN . Iran has rejected U.N. Security Council resolutions requiring it to stop enriching uranium . NNP VBZ VBN NNP NNP NNP NNS VBG PRP TO VB VBG NN . However , Iran recently agreed to allow U.N. atomic energy agency inspectors to view a sensitive nuclear facility to help resolve questions about its nuclear plans . RB , NNP RB VBD TO VB NNP JJ NN NN VBZ TO VB DT JJ JJ NN TO VB VB NNS IN PRP$ JJ NNS . A U.N team arrived in Iran this week to develop a plan for future inspections . DT NNP NN VBD IN NNP DT NN TO VB DT NN IN JJ NNS . India and South America 's Mercosur trading bloc have signed an agreement slashing tariffs on more than 900 products in a trade boosting measure . NNP CC NNP NNP POS NN NN NN VBP VBN DT NN VBG NNS IN JJR IN CD NNS IN DT NN VBG NN . Under the agreement signed Saturday , India is cutting or eliminating tariffs on 450 products while the South American trading bloc is taking similar action on 452 products . IN DT NN VBD NNP , NNP VBZ VBG CC VBG NNS IN CD NNS IN DT JJ JJ NN NN VBZ VBG JJ NN IN CD NNS . Trade between India and Mercosur reached $ 1.5 billion last year . NNP IN NNP CC NNP VBD $ CD CD JJ NN . Mercosur comprises Argentina , Brazil , Paraguay and Uruguay . NNP VBZ NNP , NNP , NNP CC NNP . Chile and Bolivia are associate members of the bloc . NNP CC NNP VBP JJ NNS IN DT NN . India 's main exports to Mercosur nations included pharmaceutical and chemical products . NNP POS JJ NNS TO NNP NNS VBD JJ CC JJ NNS . Imports included edible oils and non-electrical machinery . NNS VBD JJ NNS CC JJ NN . A Chechen militant website says Shamil Basayev , who is wanted in Russia for leading numerous terrorist attacks , has been named second-in-command of the separatist Chechen government A statement on the kavkazcenter.com web site says Mr. Basayev was named first deputy prime minister and put in charge of the armed forces . DT JJ NN NN VBZ NNP NNP , WP VBZ VBN IN NNP IN VBG JJ JJ NNS , VBZ VBN VBN NN IN DT JJ JJ NN DT NN IN DT NN NN NN VBZ NNP NNP VBD VBN RB JJ JJ NN CC NN IN NN IN DT JJ NNS . The statement was attributed to Abdul-Khalim Sadulayev , who succeeded Aslan Maskhadov as president of Chechnya 's breakaway government when the Chechen leader was killed in March . DT NN VBD VBN TO NNP NNP , WP VBD NNP NNP IN NN IN NNP POS JJ NN WRB DT JJ NN VBD VBN IN NNP . Mr. Basayev left Chechnya 's administration in 2002 under pressure from Mr. Maskhadov for being too violent . NNP NNP VBD NNP POS NN IN CD IN NN IN NNP NNP IN VBG RB JJ . Mr. Basayev claims responsibility for last year 's school seizure in Beslan , a town in southern Russia , in which more than 330 people were killed . NNP NNP VBZ NN IN JJ NN POS NN NN IN NNP , DT NN IN JJ NNP , IN WDT JJR IN CD NNS VBD VBN . Chechnya has been rocked by about a decade of fighting between separatist forces and Russian federal government troops . NNP VBZ VBN VBN IN IN DT NN IN VBG IN JJ NNS CC JJ JJ NN NNS . Private donations to help victims of the Asian tsunami are soaring in Europe , rivaling and in some cases exceeding government contributions . JJ NNS TO VB NNS IN DT JJ NNS VBP VBG IN NNP , VBG CC IN DT NNS VBG NN NNS . In Sweden , a series of telethons Saturday pushed private donations above the $ 60-million mark . IN NNP , DT NN IN NNS NNP VBD JJ NNS IN DT $ CD NN . Relief agencies called it a record for the nation , which may have lost more citizens in the disaster than any other in Europe . NN NNS VBD PRP DT NN IN DT NN , WDT MD VB VBN JJR NNS IN DT NN IN DT JJ IN NNP . The British public had contributed about $ 115 million by Saturday - nearly $ 20 million more than its government . DT JJ NN VBD VBN IN $ CD CD IN NNP : RB $ CD CD JJR IN PRP$ NN . Private donations in Germany were running above $ 40 million - more than the German government has pledged so far . JJ NNS IN NNP VBD VBG IN $ CD CD IN JJR IN DT JJ NN VBZ VBN RB RB . An aid official told the French news agency , AFP , it was one of the largest donations of its type in Germany . DT NN NN VBD DT JJ NN NN , NNP , PRP VBD CD IN DT JJS NNS IN PRP$ NN IN NNP . The International Atomic Energy Agency was set up by the United Nations in 1957 as the so-called ' Atoms for Peace ' program , to promote the safe and peaceful use of nuclear energy . DT NNP NNP NNP NNP VBD VBN RP IN DT NNP NNPS IN CD IN DT JJ `` NNPS IN NNP `` NN , TO VB DT JJ CC JJ NN IN JJ NN . Since 1970 , its tasks have included verifying compliance with the nuclear Non-Proliferation Treaty . IN CD , PRP$ NNS VBP VBN VBG NN IN DT JJ NN NNP . With headquarters in Vienna , Austria , the agency employs a staff of more than 2,200 people from 90 countries . IN NN IN NNP , NNP , DT NN VBZ DT NN IN JJR IN CD NNS IN CD NNS . The IAEA 's main decisions are made by two policy-making bodies - the General Conference of all 138 member states ; and an elected board of governors , whose 35 members serve a one-year term . DT NNP POS JJ NNS VBP VBN IN CD JJ NNS IN DT NNP NNP IN DT CD NN NNS ; CC DT VBN NN IN NNS , WP$ CD NNS VBP DT JJ NN . The agency not only deals with current issues such as Iran 's and North Korea 's nuclear programs , but it also helps countries with their nuclear safety arrangements and offers assistance to countries wishing to upgrade civilian nuclear safety . DT NN RB RB VBZ IN JJ NNS JJ IN NNP POS CC NNP NNP POS JJ NNS , CC PRP RB VBZ NNS IN PRP$ JJ NN NNS CC VBZ NN TO NNS VBG TO VB JJ JJ NN . Weather forecasters are advising residents in the southeastern United States to monitor a tropical storm off Florida 's east coast . NNP NNS VBP VBG NNS IN DT JJ NNP NNPS TO VB DT JJ NN IN NNP POS JJ NN . The National Weather Center says Tropical Storm Ophelia could dump eight centimeters of rain in parts of Florida and southeastern Georgia , with isolated maximum amounts up to 13 centimeters . DT NNP NNP NNP VBZ NNP NNP NNP MD VB CD NNS IN NN IN NNS IN NNP CC JJ NNP , IN JJ NN VBZ RP TO CD NNS . The storm , packing winds of near 95 kilometers per hour , is about 100 kilometers from Cape Canaveral , Florida . DT NN , VBG NNS IN IN CD NNS IN NN , VBZ IN CD NNS IN NNP NNP , NNP . The weather center says the system is stationary and not expected to move much Thursday . DT NN NN VBZ DT NN VBZ JJ CC RB VBN TO VB RB NNP . Some strengthening is forecast . DT NN VBZ VBN . A tropical storm warning is in effect for parts of Florida 's east coast . DT JJ NN NN VBZ IN NN IN NNS IN NNP POS JJ NN . Authorities in Greece have sent riot police to a top tourist attraction after striking government workers shut down the Acropolis for a second day . NNS IN NNP VBP VBN NN NN TO DT JJ NN NN IN JJ NN NNS VBD RP DT NNP IN DT JJ NN . Police were stationed outside the entrance to the site Thursday , where workers have blockaded the gate . NNS VBD VBN IN DT NN TO DT NN NNP , WRB NNS VBP VBN DT NN . The culture ministry employees are protesting the dismissal of workers whose contracts expire at the end of the month . DT NN NN NNS VBP VBG DT NN IN NNS WP$ NNS VBP IN DT NN IN DT NN . They are also demanding the government provide months of unpaid salaries . PRP VBP RB VBG DT NN VB NNS IN JJ NNS . Dozens of tourists were also outside the site Thursday . NNS IN NNS VBD RB IN DT NN NNP . The Acropolis is a UNESCO World Heritage site that holds the ruins of several ancient Greek temples , including the famed Parthenon . DT NNP VBZ DT NNP NNP NNP NN WDT VBZ DT NNS IN JJ JJ JJ NNS , VBG DT JJ NN . Sudan has approved the deployment of 105 armored personnel carriers to aid African Union peacekeeping forces in the war-torn western region of Darfur . NNP VBZ VBN DT NN IN CD JJ NNS NNS TO VB NNP NNP VBG NNS IN DT JJ JJ NN IN NNP . The Sudanese decision follows recent rebel attacks on AU peacekeepers in Darfur . DT JJ NN VBZ JJ NN NNS IN NNP NNS IN NNP . In one of the attacks , five AU soldiers and civilian personnel were killed when rebels with the Sudan Liberation Movement ambushed a convoy . IN CD IN DT NNS , CD NNP NNS CC JJ NNS VBD VBN WRB NNS IN DT NNP NNP NNP VBD DT NN . Separately , a faction of the rebel Justice and Equality Movement abducted and held hostage 38 AU personnel . RB , DT NN IN DT NN NNP CC NNP NNP VBD CC VBD NN CD NNP NNS . They were later released . PRP VBD RB VBN . The Canadian-donated armored personnel vehicles are expected to begin arriving on Friday . DT JJ JJ NNS NNS VBP VBN TO VB VBG IN NNP . Ongoing violence in Darfur has forced aid agencies to evacuate relief workers . VBG NN IN NNP VBZ VBN NN NNS TO VB NN NNS . Some 7,000 AU peacekeepers are in Darfur , where fighting between rebels and government-backed Arab militia has killed tens of thousands of people over the past two years . DT CD NNP NNS VBP IN NNP , WRB VBG IN NNS CC JJ JJ NN VBZ VBN NNS IN NNS IN NNS IN DT JJ CD NNS . More than two million others have been driven from their homes . JJR IN CD CD NNS VBP VBN VBN IN PRP$ NNS . Burma 's largest opposition party is marking the 15th anniversary of its landslide election victory , which the military government never recognized . NNP POS JJS NN NN VBZ VBG DT JJ NN IN PRP$ NN NN NN , WDT DT JJ NN RB VBD . National League for Democracy party officials invited diplomats and journalists to Friday 's commemoration in Rangoon . NNP NNP IN NNP NN NNS VBD NNS CC NNS TO NNP POS NN IN NNP . However , NLD leader Aung San Suu Kyi is not able to attend the ceremony . RB , NNP NN NNP NNP NNP NNP VBZ RB JJ TO VB DT NN . The Nobel Laureate has been under house arrest for two years following a violent ambush by a pro-junta mob . DT NNP NNP VBZ VBN IN NN NN IN CD NNS VBG DT JJ NN IN DT JJ NN . Her party won 392 of 485 seats in the 1990 election . PRP$ NN VBD CD IN CD NNS IN DT CD NN . But the military junta refused to recognize the balloting , which was widely seen as free and fair . CC DT JJ NN VBD TO VB DT NN , WDT VBD RB VBN IN JJ CC JJ . The government instead clamped down on opposition parties and began jailing opposition leaders . DT NN RB VBD RP IN NN NNS CC VBD VBG NN NNS . On Wednesday , the human rights group Amnesty International slammed Burma 's human rights record , saying more than 1,300 political prisoners were wrongly detained last year . IN NNP , DT JJ NNS NN NNP NNP VBD NNP POS JJ NNS NN , VBG JJR IN CD JJ NNS VBD RB VBN JJ NN . A U.S. congressman in the Democratic Party says the recently unveiled shortfalls in care at a Washington , D.C. military hospital indicate a ' catastrophic failure of leadership ' by the Bush administration . DT NNP NN IN DT NNP NNP VBZ DT RB VBN NNS IN NN IN DT NNP , NNP JJ NN VBP DT `` JJ NN IN NN `` IN DT NNP NN . Congressman Harry Mitchell of the southwestern state of Arizona said in the Democrats ' weekly radio address Saturday , that problems similar to those found at Walter Reed military hospital are being uncovered elsewhere in the military medical care system . NNP NNP NNP IN DT JJ NN IN NNP VBD IN DT NNPS POS JJ NN NN NNP , IN NNS JJ TO DT VBN IN NNP NNP JJ NN VBP VBG VBN RB IN DT JJ JJ NN NN . He said it is a problem that can not be fixed simply with drywall and paint . PRP VBD PRP VBZ DT NN WDT MD RB VB VBN RB IN NN CC NN . Mitchell said voters should hold the Bush administration accountable for those shortfalls because it did not provide adequate funding . NNP VBD NNS MD VB DT NNP NN NN IN DT NNS IN PRP VBD RB VB JJ NN . He said Democrats have added $ 3.5 billion for veterans ' care to the president 's budget request for war funding . PRP VBD NNPS VBP VBN $ CD CD IN NNS POS NN TO DT NN POS NN NN IN NN NN . Congress has not voted yet to approve this year 's budget . NNP VBZ RB VBN RB TO VB DT NN POS NN . Former Israeli President Moshe Katsav has been indicted on charges of rape and other sexual offenses . JJ JJ NNP NNP NNP VBZ VBN VBN IN NNS IN NN CC JJ JJ NNS . The indictment filed Thursday in a Tel Aviv court accused Mr. Katsav of raping a woman who once worked for him , in addition to sexual harassment charges involving two other former female employees . DT NN VBN NNP IN DT NNP NNP NN VBD NNP NNP IN VBG DT NN WP RB VBD IN PRP , IN NN TO JJ NN NNS VBG CD JJ JJ JJ NNS . The indictment said the women worked for Mr. Katsav while he was Israel 's Tourism Minister in the 1990s , and president earlier this decade . DT NN VBD DT NNS VBD IN NNP NNP IN PRP VBD NNP POS NNP NNP IN DT NNS , CC NN RBR DT NN . Mr. Katsav resigned shortly before his term ended in 2007 at the end of his presidential term , under a plea bargain that would have required him to admit to lesser charges of sexual misconduct . NNP NNP VBD RB IN PRP$ NN VBD IN CD IN DT NN IN PRP$ JJ NN , IN DT NN NN WDT MD VB VBN PRP TO VB TO JJR NNS IN JJ NN . He withdrew from the agreement last April and so he could stand trial in hopes of clearing his name . PRP VBD IN DT NN JJ NNP CC IN PRP MD VB NN IN NNS IN VBG PRP$ NN . He has vigorously denied the charges facing him . PRP VBZ RB VBN DT NNS VBG PRP . The NATO-led international force in Afghanistan is preparing to build a helipad near the site of last week 's crash of an Afghan airliner that killed all 104 people onboard . DT JJ JJ NN IN NNP VBZ VBG TO VB DT NN IN DT NN IN JJ NN POS NN IN DT JJ NN WDT VBD DT CD NNS RB . A spokesman says the aim is to speed up the investigation and the recovery of bodies from the crash site , which is at an altitude of nearly 3,000 meters on a mountain near Kabul . DT NN VBZ DT NN VBZ TO VB RP DT NN CC DT NN IN NNS IN DT NN NN , WDT VBZ IN DT NN IN RB CD NNS IN DT NN IN NNP . Bad weather so far has hampered efforts to search for the black box and retrieve bodies from the wreckage . JJ NN RB RB VBZ VBN NNS TO VB IN DT JJ NN CC VB NNS IN DT NN . The Boeing 737 , operated by private Afghan airline Kam Air , vanished from the radar screen last Thursday as it was approaching Kabul airport during a blizzard . DT NNP CD , VBN IN JJ JJ NN NNP NNP , VBD IN DT NN NN JJ NNP IN PRP VBD VBG NNP NN IN DT NN . The French News Agency , AFP , says the United Nations has grounded another Boeing 737 hired from Kam Air . DT NNP NNP NNP , NNP , VBZ DT NNP NNP VBZ VBN DT NNP CD VBN IN NNP NNP . NATO says British Foreign Secretary David Miliband visited southern Afghanistan on Tuesday , where British forces are fighting Taliban militants . NNP VBZ NNP NNP NNP NNP NNP VBD JJ NNP IN NNP , WRB JJ NNS VBP VBG NNP NNS . A NATO statement issued Wednesday said Miliband met with commanders who oversee military operations in the southern province of Helmand , including the head of NATO forces in southern Afghanistan , Dutch commander Major General Mart de Kruif . DT NNP NN VBN NNP VBD NNP VBD IN NNS WP VB JJ NNS IN DT JJ NN IN NNP , VBG DT NN IN NNP NNS IN JJ NNP , JJ NN NNP NNP NNP NNP NNP . NATO says the men discussed British , U.S. and NATO roles in reconstruction , security and counter-narcotics operations , as well as the upcoming elections in Afghanistan . NNP VBZ DT NNS VBD JJ , NNP CC NNP NNS IN NN , NN CC NNS NNS , RB RB IN DT JJ NNS IN NNP . The statement says Miliband also met with senior Afghan government officials during his fourth visit to to the country , but no further details were provided . DT NN VBZ NNP RB VBD IN JJ JJ NN NNS IN PRP$ JJ NN TO TO DT NN , CC DT JJ NNS VBD VBN . In other news , Pakistan 's Foreign Ministry says Afghan President Hamid Karzai is set to visit Islamabad for talks on Thursday . IN JJ NN , NNP POS NNP NNP VBZ JJ NNP NNP NNP VBZ VBN TO VB NNP IN NNS IN NNP . Travel for this year 's Thanksgiving holiday in the United States is expected to reach levels not seen since the September 11 terrorist attacks three years ago . NN IN DT NN POS NNP NN IN DT NNP NNPS VBZ VBN TO VB NNS RB VBN IN DT NNP CD JJ NNS CD NNS RB . A leading U.S. travel association , the American Automobile Association , predicts that some 37 million Americans will venture at least 80 kilometers from home . DT VBG NNP NN NN , DT NNP NNP NNP , VBZ IN DT CD CD NNS MD VB IN JJS CD NNS IN NN . It says about 4.6 million travelers will go by plane and endure the long security procedures put in place after the terror attacks carried out by 19 al-Qaida skyjackers . PRP VBZ IN CD CD NNS MD VB IN NN CC VB DT JJ NN NNS VBN IN NN IN DT NN NNS VBN RP IN CD NNP NNS . Another 30 million Americans are expected to travel by car , leading to long traffic jams around major cities . DT CD CD NNS VBP VBN TO VB IN NN , VBG TO JJ NN NNS IN JJ NNS . In Lebanon , hundreds of thousands of Shi'ite Muslims marched through southern Beirut Thursday to commemorate the death of a revered leader and to protest cartoons of the Prophet Muhammad . IN NNP , NNS IN NNS IN NNP NNPS VBD IN JJ NNP NNP TO VB DT NN IN DT JJ NN CC TO VB NNS IN DT NNP NNP . The march is an annual event to mark Ashura , when Shi'ites mourn the death of the prophet 's grandson , Imam Hussain , more than 1,300 years ago . DT NN VBZ DT JJ NN TO VB NNP , WRB NNS VBP DT NN IN DT NN POS NN , NNP NNP , JJR IN CD NNS RB . Shi'ite mourners dressed in black chanted slogans of allegiance to the Prophet Muhammad , and carried placards denouncing cartoon depictions of him . NNP NNS VBN IN JJ JJ NNS IN NN TO DT NNP NNP , CC VBD NNS VBG NN NNS IN PRP . There were no reports of violence . EX VBD DT NNS IN NN . Less than a week ago , a Beirut protest against publication of the cartoons in Denmark and other European countries turned into a rampage that left the Danish embassy in flames and dozens injured . RBR IN DT NN RB , DT NNP NN IN NN IN DT NNS IN NNP CC JJ JJ NNS VBD IN DT NN WDT VBD DT JJ NN IN NNS CC NNS VBN . President Bush and Jordan 's King Abdullah have called on foreign governments to end the deadly rioting that has spread across the Muslim world after the cartoons . NNP NNP CC NNP POS NNP NNP VBP VBN IN JJ NNS TO VB DT JJ NN WDT VBZ VBN IN DT NNP NN IN DT NNS . India has released 24 Pakistani prisoners detained for border violations . NNP VBZ VBN CD JJ NNS VBN IN NN NNS . The men , who spent between six months and 15 years in Indian jails for straying into Indian territory , were handed over to Pakistani authorities at the Wagah border crossing Thursday . DT NNS , WP VBD IN CD NNS CC CD NNS IN JJ NNS IN VBG IN JJ NN , VBD VBN IN TO JJ NNS IN DT NNP NN VBG NNP . The handover comes ahead of Pakistani President Pervez Musharraf 's visit to New Delhi to watch the final cricket match between Indian and Pakistani cricket teams . DT NN VBZ RB IN JJ NNP NNP NNP POS NN TO NNP NNP TO VB DT JJ NN NN IN JJ CC JJ NN NNS . The visit is part of efforts to improve relations between the two nuclear neighbors and establish a lasting peace in the region . DT NN VBZ NN IN NNS TO VB NNS IN DT CD JJ NNS CC VB DT JJ NN IN DT NN . India and Pakistan often arrest villagers and fishermen for illegally entering each other 's territory and territorial waters . NNP CC NNP RB VB NNS CC NNS IN RB VBG DT NN POS NN CC JJ NNS . During peace talks , which started last year , the two countries agreed to expedite the release of such prisoners . IN NN NNS , WDT VBD JJ NN , DT CD NNS VBD TO VB DT NN IN JJ NNS . The U.S. trade deficit surged to an all-time record high of nearly $ 726 billion in 2005 . DT NNP NN NN VBD TO DT JJ NN NN IN RB $ CD CD IN CD . That is a nearly 18 percent increase over the previous year and the fourth consecutive year the gap has hit a record . DT VBZ DT RB CD NN NN IN DT JJ NN CC DT JJ JJ NN DT NN VBZ VBN DT NN . Friday 's report from the Commerce Department also says the trade deficit with China was the largest with any U.S. trading partner , rising sharply to a record yearly total of nearly $ 202 billion . NNP POS NN IN DT NNP NNP RB VBZ DT NN NN IN NNP VBD DT JJS IN DT NNP NN NN , VBG RB TO DT NN JJ NN IN RB $ CD CD . The politically sensitive China trade issue has prompted some members of the U.S. Congress to accuse Beijing of keeping the value of its currency artificially low , giving its exports a price advantage on world markets . DT RB JJ NNP NN NN VBZ VBN DT NNS IN DT NNP NNP TO VB NNP IN VBG DT NN IN PRP$ NN RB JJ , VBG PRP$ NNS DT NN NN IN NN NNS . Mexican authorities say huge mudslides , flooding and torrential rains from Hurricane Stan 's recent onslaught have killed at least 130 people in Central America and Mexico . JJ NNS VBP JJ NNS , NN CC JJ NNS IN NNP NNP POS JJ NN VBP VBN IN JJS CD NNS IN NNP NNP CC NNP . Stan came ashore along Mexico 's Gulf Coast on Tuesday , knocking down trees and ripping the roofs off houses with winds of 130 kilometers per hour . NNP VBD RB IN NNP POS NNP NNP IN NNP , VBG RP NNS CC VBG DT NNS RP NNS IN NNS IN CD NNS IN NN . Rivers also burst their banks in southern Mexico , washing away bridges and ripping apart houses and buildings . NNS RB VBP PRP$ NNS IN JJ NNP , VBG RB NNS CC VBG RB NNS CC NNS . Additionally , Stan has been blamed for at least 50 deaths in both El Salvador and Guatemala , where mudslides buried houses . RB , NNP VBZ VBN VBN IN IN JJS CD NNS IN DT NNP NNP CC NNP , WRB NNS VBN NNS . Forecasters say the storm is now a tropical depression and dissipating over the mountains of southeastern Mexico , but they warn it is still capable of producing additional heavy rains and flooding . NNS VBP DT NN VBZ RB DT JJ NN CC VBG IN DT NNS IN JJ NNP , CC PRP VBP PRP VBZ RB JJ IN VBG JJ JJ NNS CC NN . Police say Ms. Chang , who wrote about the Japanese occupation of China and the history of Chinese immigrants in the United States , was found dead in her car along a road south of San Francisco . NNS VBP NNP NNP , WP VBD IN DT JJ NN IN NNP CC DT NN IN JJ NNS IN DT NNP NNPS , VBD VBN JJ IN PRP$ NN IN DT NN NN IN NNP NNP . The official cause of death has not been officially determined , but investigators believe the 36-year-old writer died from a self-inflicted gunshot wound . DT JJ NN IN NN VBZ RB VBN RB VBN , CC NNS VBP DT JJ NN VBD IN DT JJ NN NN . Ms. Chang 's best-known work was the 1997 bestseller ' The Rape of Nanking , ' which described the rape , torture and killings of Chinese civilians at the hands of Japanese troops in the 1930s . NNP NNP POS JJ NN VBD DT CD NN `` DT NN IN VBG , `` WDT VBD DT NN , NN CC NNS IN JJ NNS IN DT NNS IN JJ NNS IN DT NNS . Ms. Chang also wrote ' The Chinese in America , ' which looked at the history of Chinese immigrants and their descendants in the United States . NNP NNP RB VBD `` DT NNS IN NNP , `` WDT VBD IN DT NN IN JJ NNS CC PRP$ NNS IN DT NNP NNPS . India 's Health Ministry has cast doubt on a study by an environmental group that showed that soft drinks produced locally by two U.S. giants PepsiCo and Coca-Cola contained high levels of pesticides . NNP POS NNP NNP VBZ VBN NN IN DT NN IN DT JJ NN WDT VBD IN JJ NNS VBN RB IN CD NNP NNS NNP CC NNP VBD JJ NNS IN NNS . A committee appointed by the ministry said the residue data reported by the New Delhi-based Center for Science and Environment , or CSE , failed to prove its claims . DT NN VBN IN DT NN VBD DT NN NNS VBN IN DT NNP JJ NNP IN NNP CC NNP , CC NNP , VBD TO VB PRP$ NNS . It also said the group 's sampling methods lacked a scientific and statistically valid basis . PRP RB VBD DT NN POS VBG NNS VBD DT JJ CC RB JJ NN . The CSE has slammed the committee 's findings , saying it should not rely on data provided by the two companies . DT NNP VBZ VBN DT NN POS NNS , VBG PRP MD RB VB IN NNS VBN IN DT CD NNS . The study by the CSE sparked an uproar and triggered a ban in six Indian states on the sale of beverages locally produced by the two companies . DT NN IN DT NNP VBD DT NN CC VBD DT NN IN CD JJ NNS IN DT NN IN NNS RB VBN IN DT CD NNS . PepsiCo and Coca-Cola say their soft drinks manufactured in India comply with stringent international and national standards . NNP CC NNP VBP PRP$ JJ NNS VBN IN NNP VB IN JJ JJ CC JJ NNS . U.S. Senator Edward Kennedy will be buried in Arlington National Cemetery , the final resting place of his slain brothers - President John F. Kennedy and Senator Robert Kennedy . NNP NNP NNP NNP MD VB VBN IN NNP NNP NNP , DT JJ VBG NN IN PRP$ NN NNS IN NNP NNP NNP NNP CC NNP NNP NNP . More than 3,00,000 people , including veterans from all the nation 's wars , two former presidents , prominent explorers and other historical figures , are buried at the cemetery , located just a short distance from Washington D.C. JJR IN CD NNS , VBG NNS IN PDT DT NN POS NNS , CD JJ NNS , JJ NNS CC JJ JJ NNS , VBP VBN IN DT NN , VBN RB DT JJ NN IN NNP NNP At the site of President Kennedy 's grave is the eternal flame where three other Kennedys are buried : the president 's wife Jacqueline Kennedy Onassis , their infant son and a stillborn daughter . IN DT NN IN NNP NNP POS NN VBZ DT JJ NN WRB CD JJ NNS VBP VBN IN DT NN POS NN NNP NNP NNP , PRP$ NN NN CC DT JJ NN . Robert Kennedy is buried nearby . NNP NNP VBZ VBN RB . Prior to be being laid to rest , Edward Kennedy will lie in repose at the John F. Kennedy Presidential Library and Museum in Boston . RB TO VB VBG VBN TO VB , NNP NNP MD VB IN NN IN DT NNP NNP NNP NNP NNP CC NNP IN NNP . A funeral will take place at Boston 's Our Lady of Perpetual Help Basilica . DT NN MD VB NN IN NNP POS PRP$ NN IN NNP NNP NNP . Australia says it will investigate a botched military operation in Afghanistan in 2002 that killed 11 civilians . NNP VBZ PRP MD VB DT JJ JJ NN IN NNP IN CD WDT VBD CD NNS . The Australian / New Zealand edition of Time magazine says the incident was sparked when Australian soldiers on a U.S.-led patrol shot and killed two villagers they mistakenly believed were Afghan militants . DT JJ NN NNP NNP NN IN NNP NN VBZ DT NN VBD VBN WRB JJ NNS IN DT JJ NN VBD CC VBD CD NNS PRP RB VBD VBD JJ NNS . Other tribesmen began shooting , and a rival tribe which thought it was being attacked also opened fire . JJ NNS VBD VBG , CC DT JJ NN WDT VBD PRP VBD VBG VBN RB VBD NN . The patrol called for support , and U.S. warplanes were sent to bomb the area . DT NN VBD IN NN , CC NNP NNS VBD VBN TO VB DT NN . Sixteen other civilians were also wounded in the fighting . CD JJ NNS VBD RB VBN IN DT NN . The magazine says one of the Australian soldiers removed a turban and a gun from one of the civilians killed in the firefight . DT NN VBZ CD IN DT JJ NNS VBD DT NN CC DT NN IN CD IN DT NNS VBN IN DT NN . Police in Lebanon and Germany have detained two more suspects in connection with last month 's failed terrorist plot to blow up two German passenger trains . NNS IN NNP CC NNP VBP VBN CD JJR NNS IN NN IN JJ NN POS JJ JJ NN TO VB RP CD JJ NN NNS . Lebanese officials Friday detained a man identified only by the initials HKD . JJ NNS NNP VBD DT NN VBN RB IN DT NNS NNP . They said they based their action on information provided by Jihad Hamad , a suspect who earlier turned himself in to Lebanese authorities . PRP VBD PRP VBD PRP$ NN IN NN VBN IN NNP NNP , DT NN WP RB VBD PRP IN TO VB NNS . Also Friday , German officials captured a suspect in the southern city of Konstanz . RB NNP , JJ NNS VBD DT NN IN DT JJ NN IN NNP . Authorities say the unidentified man has links to Youssef Mohamad el Hajdib , who was detained last Saturday in the northern German city of Kiel . NNS VBP DT JJ NN VBZ NNS TO NNP NNP NNP NNP , WP VBD VBN JJ NNP IN DT JJ JJ NN IN NNP . Authorities say video surveillance cameras caught two of the suspects arrested in Germany boarding trains in Cologne on July 31 and carrying suitcases packed with homemade bombs . NNS VBP NN NN NNS VBD CD IN DT NNS VBN IN NNP VBG NNS IN NNP IN NNP CD CC VBG NNS VBN IN JJ NNS . The bombs were placed on trains bound for the cities of Dortmund and Koblenz , but failed to explode . DT NNS VBD VBN IN NNS VBN IN DT NNS IN NNP CC NNP , CC VBD TO VB . Israeli troops have killed two Palestinian gunmen who attacked a border crossing between the Gaza Strip and Israel . JJ NNS VBP VBN CD JJ NNS WP VBD DT NN VBG IN DT NNP NNP CC NNP . Israeli army officials say the gunmen infiltrated into Israel early Thursday through the Erez border crossing and threw hand grenades at the checkpoint before being killed . JJ NN NNS VBP DT NNS VBD IN NNP RB NNP IN DT NNP NN VBG CC VBD NN NNS IN DT NN IN VBG VBN . The Popular Resistance Committees and Al-Aqsa Martyrs ' Brigades claimed joint responsibility for the attack . DT NNP NNP NNPS CC NNP NNP POS NNS VBD JJ NN IN DT NN . The Erez checkpoint is the main crossing for thousands of Palestinian workers with jobs in Israel . DT NNP NN VBZ DT JJ VBG IN NNS IN JJ NNS IN NNS IN NNP . Israel routinely closes the crossing after violent incidents . NNP RB VBZ DT VBG IN JJ NNS . Separately , the Palestinian militant group Hamas has warned Palestinian President Mahmoud Abbas not to make changes to the government without its approval . RB , DT JJ JJ NN NNP VBZ VBN JJ NNP NNP NNP RB TO VB NNS TO DT NN IN PRP$ NN . In Cairo , Hamas political leader Khaled Mashaal also vowed that the militant group , which swept parliamentary elections last month , will not renounce violence against Israel . IN NNP , NNP JJ NN NNP NNP RB VBD IN DT JJ NN , WDT VBD JJ NNS JJ NN , MD RB VB NN IN NNP . Police in Pakistan say gunmen opened fire on the car carrying the nation 's religious affairs minister , wounding him and killing his driver . NNS IN NNP VBP NNS VBD NN IN DT NN VBG DT NN POS JJ NNS NN , VBG PRP CC VBG PRP$ NN . Authorities say minister Hamid Saeed Kazmi 's vehicle was attacked near his office in the capital , Islamabad , Wednesday . NNS VBP NN NNP NNP NNP POS NN VBD VBN IN PRP$ NN IN DT NN , NNP , NNP . Further details were not immediately confirmed . JJ NNS VBD RB RB VBN . Vote counting in Iraq 's constitutional referendum continued Sunday , with spot checks of preliminary results suggesting the U.S.-backed charter may have passed . JJ NN IN NNP POS JJ NN VBN NNP , IN NN NNS IN JJ NNS VBG DT JJ NN MD VB VBN . The Associated Press says an early vote count in crucial Diyala province showed 70 percent of voters saying ' yes ' to the constitution . DT NNP NNP VBZ DT JJ NN NN IN JJ NNP NN VBD CD NN IN NNS VBG `` UH `` TO DT NN . And with most ballots counted in Ninevah province , AP reports ' yes ' votes were outnumbering ' no ' nearly four to one . CC IN JJS NNS VBN IN NNP NN , NNP VBZ `` UH `` NNS VBD VBG `` DT `` RB CD TO CD . Diyala and Ninevah are two of four key provinces where Sunni Arab opponents were relying on residents to defeat the constitution . NNP CC NNP VBP CD IN CD JJ NNS WRB NNP NNP NNS VBD VBG IN NNS TO VB DT NN . The charter will pass with a simple majority , but will fail if two-thirds of voters in any three provinces reject it . DT NN MD VB IN DT JJ NN , CC MD VB IN NNS IN NNS IN DT CD NNS VBP PRP . More results are expected later today and Monday . JJR NNS VBP VBN RB NN CC NNP . The U.S. military says that five American soldiers were killed by a roadside bomb in the mostly Sunni city of Ramadi during voting on Saturday , but otherwise said the day was relatively peaceful . DT NNP NN VBZ IN CD JJ NNS VBD VBN IN DT NN NN IN DT RB JJ NN IN NNP IN VBG IN NNP , CC RB VBD DT NN VBD RB JJ . The U.S. government reported a one percent increase in retail sales for January . DT NNP NN VBD DT CD NN NN IN JJ NNS IN NNP . Economists watch retail sales closely because consumer demand drives about two-thirds of U.S. economic activity . NNS VBP JJ NNS RB IN NN NN VBZ IN NNS IN NNP JJ NN . According to the Commerce Department , this is the first sales increase in seven months . VBG TO DT NNP NNP , DT VBZ DT JJ NNS NN IN CD NNS . But the economy remains troubled , as a separate Labor Department report showed the number of Americans continuing to collect unemployment rose for the fourth week in a row . CC DT NN VBZ JJ , IN DT JJ NNP NNP NN VBD DT NN IN NNS VBG TO VB NN VBD IN DT JJ NN IN DT NN . The total is now just over 4.8 million , which is a record-high . DT NN VBZ RB RB IN CD CD , WDT VBZ DT NN . The number of people signing up for unemployment benefits declined slightly - by 8000 to a total of 6,23,000 - last week . DT NN IN NNS VBG RP IN NN NNS VBD RB IN IN CD TO DT NN IN CD : JJ NN . That level is close to a 26-year high . DT NN VBZ RB TO DT JJ NN . Iraqi police say five people have been killed in a bomb blast near a funeral tent in the capital . JJ NNS VBP CD NNS VBP VBN VBN IN DT NN NN IN DT JJ NN IN DT NN . Authorities say another 28 people were wounded in Wednesday 's blast in Baghdad 's mostly Shi'ite slum of Sadr City . NNS VBP DT CD NNS VBD VBN IN NNP POS NN IN NNP POS RB JJ NN IN NNP NNP . Elsewhere in the country Wednesday , Iraqi officials say a car bomb blast killed six people , including two traffic police officers , in western Anbar province . RB IN DT NN NNP , JJ NNS VBP DT NN NN NN VBD CD NNS , VBG CD NN NN NNS , IN JJ NNP NN . Authorities say a police checkpoint in the provincial capital , Ramadi , was the target of the attack . NNS VBP DT NN NN IN DT JJ NN , NNP , VBD DT NN IN DT NN . Sixteen people were wounded in the explosion . CD NNS VBD VBN IN DT NN . Iraq has seen multiple deadly attacks in the two weeks since U.S. combat troops withdrew from Iraqi cities . NNP VBZ VBN JJ JJ NNS IN DT CD NNS IN NNP NN NNS VBD IN JJ NNS . The U.S. Food and Drug Administration has approved a new treatment for late-stage cervical cancer . DT NNP NNP CC NNP NNP VBZ VBN DT JJ NN IN NN JJ NN . The treatment is a combination of the drugs Hycamtin and Cisplatin , and is approved for women with incurable , recurrent or persistent cancer of the cervix that has spread to other organs . DT NN VBZ DT NN IN DT NNS NNP CC NNP , CC VBZ VBN IN NNS IN JJ , JJ CC JJ NN IN DT NN WDT VBZ VBN TO JJ NNS . The combination is the first time a treatment has been recommended for late-stage cervical cancer . DT NN VBZ DT JJ NN DT NN VBZ VBN VBN IN JJ JJ NN . The FDA originally approved Hycamtin in 1996 for treating ovarian cancer and in 1998 for small-cell lung cancer . DT NNP RB VBD NNP IN CD IN VBG JJ NN CC IN CD IN JJ NN NN . FDA officials say the drug therapy is not a cure , but a potentially life-prolonging option for thousands of women . NNP NNS VBP DT NN NN VBZ RB DT NN , CC DT RB JJ NN IN NNS IN NNS . Earlier this month , the FDA approved the first vaccine to protect women and girls from contracting the disease . RBR DT NN , DT NNP VBD DT JJ NN TO VB NNS CC NNS IN VBG DT NN . Each year , about 10,000 new cases of cervical cancer are diagnosed in American women and there are 3,700 related deaths . DT NN , IN CD JJ NNS IN JJ NN VBP VBN IN JJ NNS CC EX VBP CD JJ NNS . Some 3,00,000 women die of the disease each year worldwide . DT CD NNS VBP IN DT NN DT NN NN . A court in London has remanded into custody a man charged with attempting to bomb the London transport system in July . DT NN IN NNP VBZ VBN IN NN DT NN VBN IN VBG TO VB DT NNP NN NN IN NNP . Ethiopian-born Hamdi Issac , also known as Osman Hussain , made his first court appearance Friday , a day after being extradited to Britain from Italy . JJ NNP NNP , RB VBN IN NNP NNP , VBD PRP$ JJ NN NN NNP , DT NN IN VBG VBN TO NNP IN NNP . His next court date is December 8 . PRP$ JJ NN NN VBZ NNP CD . Hamdi Issac was arrested immediately after his arrival in Britain Thursday . NNP NNP VBD VBN RB IN PRP$ NN IN NNP NNP . He is facing charges including attempted murder and illegal possession of explosives . PRP VBZ VBG NNS VBG JJ NN CC JJ NN IN NNS . Italian police arrested the British citizen in Rome a week after the failed July 21 attacks in London . JJ NNS VBN DT JJ NN IN NNP DT NN IN DT VBN NNP CD NNS IN NNP . Those attacks caused no fatalities but brought chaos to London two weeks after suicide bombers killed 52 people in the British capital . DT NNS VBD DT NNS CC VBD NN TO NNP CD NNS IN NN NNS VBD CD NNS IN DT JJ NN . Hamdi Issac has admitted taking part in the second set of attacks but has said the action was meant to scare people , not kill them . NNP NNP VBZ VBN VBG NN IN DT JJ NN IN NNS CC VBZ VBN DT NN VBD VBN TO VB NNS , RB VB PRP . Croatian Prime Minister Ivo Sanader says his government will take every measure to bring to justice those responsible for the Monday night attack on a leading investigative journalist . JJ NNP NNP NNP NNP VBZ PRP$ NN MD VB DT NN TO VB TO NN DT JJ IN DT NNP NN NN IN DT VBG JJ NN . The Croatian news agency Hina says Mr. Sanader made his comments as he met in Zagreb with leaders of Croatia 's Journalists Association after the attack on Dusan Miljus , a reporter for the Jutarnji List daily . DT JJ NN NN NNP VBZ NNP NNP VBD PRP$ NNS IN PRP VBD IN NNP IN NNS IN NNP POS NNPS NNP IN DT NN IN NNP NNP , DT NN IN DT NNP NNP RB . Miljus is known for his reports on organized crime activities NNP VBZ VBN IN PRP$ NNS IN JJ NN NNS The journalist suffered a concussion and broken arm when masked attackers assaulted him with baseball bats in front of his Zagreb home . DT NN VBD DT NN CC JJ NN WRB VBN NNS VBD PRP IN NN NNS IN NN IN PRP$ NNP NN . The incident followed a series of death threats against Miljus . DT NN VBD DT NN IN NN NNS IN NNP . Organized crime groups in Croatia have repeatedly targeted journalists who had probed their activities . VBN NN NNS IN NNP VBP RB VBN NNS WP VBD VBN PRP$ NNS . Insurgents in Iraq carried out a series of attacks Sunday , killing two American soldiers and at least five Iraqis . NNS IN NNP VBD RP DT NN IN NNS NNP , VBG CD JJ NNS CC IN JJS CD NNS . U.S. officials said the two Americans were killed by bombs in the Iraqi capital . NNP NNS VBD DT CD NNS VBD VBN IN NNS IN DT JJ NN . South of Baghdad , a mortar attack killed two Iraqis , and gunmen killed a policeman in Mosul . NNP IN NNP , DT NN NN VBD CD NNS , CC NNS VBD DT NN IN NNP . Two civilians died in separate incidents in the northern city of Kirkuk . CD NNS VBD IN JJ NNS IN DT JJ NN IN NNP . Meanwhile , demonstrations were held in several Iraqi cities by Sunni Arabs , who have complained of fraud in the recent parliamentary vote . RB , NNS VBD VBN IN JJ JJ NNS IN NNP NNS , WP VBP VBN IN NN IN DT JJ JJ NN . Shi'ite Arabs in Baghdad also marched Sunday to show support for Shi'ite candidates . NNP NNS IN NNP RB VBD NNP TO VB NN IN NNP NNS . Initial results showed a key Shi'ite coalition was leading the vote . JJ NNS VBD DT JJ NNP NN VBD VBG DT NN . In northern Iraq , Iraq 's President Jalal Talabani said Iraq 's new government should include all of Iraq 's religious and ethnic groups . IN JJ NNP , NNP POS NNP NNP NNP VBD NNP POS JJ NN MD VB DT IN NNP POS JJ CC JJ NNS . A United Nations official has said Liberia is meeting benchmarks that would end Security Council sanctions on Liberian diamonds and timber . DT NNP NNP NN VBZ VBN NNP VBZ VBG NNS WDT MD VB NNP NNP NNS IN JJ NNS CC NN . U.N. Sanctions chief Ellen Loj told reporters Saturday in Monrovia that Liberia has more work to do , but is working diligently to meet the conditions set for the lifting of the trade sanctions . NNP NNPS NN NNP NNP VBD NNS NNP IN NNP IN NNP VBZ JJR NN TO VB , CC VBZ VBG RB TO VB DT NNS VBN IN DT NN IN DT NN NNS . A ban on Liberian diamonds was imposed in 2001 by the U.N. Security Council after a British investigation found former Liberian President Charles Taylor was trading the diamonds for weapons for rebels in neighboring Sierra Leone . DT NN IN JJ NNS VBD VBN IN CD IN DT NNP NNP NNP IN DT JJ NN VBD JJ JJ NNP NNP NNP VBD VBG DT NNS IN NNS IN NNS IN VBG NNP NNP . The timber sanctions were imposed in 2003 when the Security Council said Taylor was using timber proceeds to fund war at home and in Sierra Leone . DT NN NNS VBD VBN IN CD WRB DT NNP NNP VBD NNP VBD VBG NN NNS TO VB NN IN NN CC IN NNP NNP . Ellen Loj said the Security Council will meet in June to review the sanctions . NNP NNP VBD DT NNP NNP MD VB IN NNP TO VB DT NNS . A series of explosions shook the Iraqi capital Wednesday , while a high-ranking U.S. official visited the country . DT NN IN NNS VBD DT JJ NN NNP , IN DT JJ NNP NN VBD DT NN . Deputy Secretary of State Robert Zoellick visited the former insurgent stronghold of Fallujah . NNP NNP IN NNP NNP NNP VBD DT JJ JJ NN IN NNP . He was scheduled to also meet in Baghdad with Iraq 's new interim president and prime minister . PRP VBD VBN TO RB VB IN NNP IN NNP POS JJ JJ NN CC JJ NN . Meanwhile , near Kirkuk , nine policemen were killed while trying to defuse a bomb . RB , IN NNP , CD NNS VBD VBN IN VBG TO VB DT NN . In Baghdad , a string of explosions killed five Iraqis and injured eight other people , including four U.S. contractors . IN NNP , DT NN IN NNS VBN CD NNS CC JJ CD JJ NNS , VBG CD NNP NNS . Also , the U.S. military announced today that an American soldier was killed Tuesday in Ramadi during combat operations . RB , DT NNP NN VBD NN IN DT JJ NN VBD VBN NNP IN NNP IN NN NNS . And al-Jazeera television has aired a video it says shows an American contractor who was abducted Monday near Baghdad . CC JJ NN VBZ VBN DT NN PRP VBZ VBZ DT JJ NN WP VBD VBN NNP IN NNP . The video showed the man urging U.S. officials to open a dialogue with insurgents in order to save his life . DT NN VBD DT NN VBG NNP NNS TO VB DT NN IN NNS IN NN TO VB PRP$ NN . The White House says it is in contact with the hostage 's family . DT NNP NNP VBZ PRP VBZ IN NN IN DT NN POS NN . Venezuelan President Hugo Chavez says a U.S. Navy attache accused of spying has been ordered out of the country . JJ NNP NNP NNP VBZ DT NNP NNP NN VBN IN VBG VBZ VBN VBN IN IN DT NN . Mr. Chavez said Thursday that naval Captain John Correa must leave Venezuela immediately . NNP NNP VBD NNP IN JJ NNP NNP NNP MD VB NNP RB . Correa has been named in connection with accusations that several Venezuelan military officers had passed information to the U.S. military through the U.S. embassy in Caracas . NNP VBZ VBN VBN IN NN IN NNS IN JJ JJ JJ NNS VBD VBN NN TO DT NNP NN IN DT NNP NN IN NNP . Mr. Chavez on Monday accused U.S. officers at the embassy of spying . NNP NNP IN NNP VBD NNP NNS IN DT NN IN VBG . Vice President Jose Vicente Rangel said last week that several low-level Venezuelan officers had been caught passing information to the U.S. military . NNP NNP NNP NNP NNP VBD JJ NN IN JJ JJ JJ NNS VBD VBN VBN VBG NN TO DT NNP NN . U.S. State Department spokesman , Adam Ereli would not comment specifically on the charges of espionage . NNP NNP NNP NN , NNP NNP MD RB VB RB IN DT NNS IN NN . But in remarks earlier this week , the official said the United States has had good relations with the Venezuelan military in the past and hopes that can continue . CC IN NNS RBR DT NN , DT NN VBD DT NNP NNP VBZ VBN JJ NNS IN DT JJ NN IN DT NN CC NNS WDT MD VB . The cuts announced Thursday would reduce the bankrupt airline 's workforce by 17 percent and help Delta save $ 3 billion . DT NNS VBD NNP MD VB DT JJ NN POS NN IN CD NN CC VB NNP VB $ CD CD . Delta is also cutting wages , starting with a 25 percent reduction for company chief executive Gerald Grinstein . NNP VBZ RB VBG NNS , VBG IN DT CD NN NN IN NN JJ NN NNP NNP . Lower ranking employees face smaller cuts . NNP JJ NNS VBP JJR NNS . Delta is also cutting scores of aircraft from its fleet , and shifting some other flights from highly-competitive domestic routes to more-profitable overseas destinations . NNP VBZ RB VBG NNS IN NN IN PRP$ NN , CC VBG DT JJ NNS IN JJ JJ NNS TO JJ JJ NNS . The job cuts come atop 24,000 layoffs that have slashed Delta 's workforce since the 2001 terror attacks that hurt business for major airlines . DT NN NNS VBP IN CD NNS WDT VBP VBN NNP POS NN IN DT CD NN NNS WDT VBP NN IN JJ NNS . They have been battling strong competition from budget-price carriers and soaring fuel prices ever since . PRP VBP VBN VBG JJ NN IN JJ NNS CC VBG NN NNS RB IN . Elections officials in Afghanistan have disqualified dozens of candidates from the country 's upcoming parliamentary elections because of alleged links to militias . NNS NNS IN NNP VBP VBN NNS IN NNS IN DT NN POS JJ JJ NNS IN IN JJ NNS TO NNS . A commissioner of the U.N.-backed Electoral Complaints Commission , Ahmad Zia Rafat , said Wednesday that 36 names were removed from the list of final candidates . DT NN IN DT JJ NNP NNPS NNP , NNP NNP NNP , VBD NNP IN CD NNS VBD VBN IN DT NN IN JJ NNS . The ECC said the candidates were given a chance to fight their disqualification , but they failed to prove their eligibility to run in the September election . DT NNP VBD DT NNS VBD VBN DT NN TO VB PRP$ NN , CC PRP VBD TO VB PRP$ NN TO VB IN DT NNP NN . Afghanistan 's election laws prohibit any members of illegal armed groups from seeking office . NNP POS NN NNS VBP DT NNS IN JJ JJ NNS IN VBG NN . Afghan election officials have said they are determined to hold a fair parliamentary election , after fraud allegations marred last year 's presidential vote . JJ NN NNS VBP VBN PRP VBP VBN TO VB DT JJ JJ NN , IN NN NNS VBD JJ NN POS JJ NN . The ECC found there were massive irregularities in those ballots , and threw out a third of the votes cast for President Hamid Karzai . DT NNP VBD EX VBD JJ NNS IN DT NNS , CC VBD RP DT NN IN DT NNS VBD IN NNP NNP NNP . The economy of Saint Kitts and Nevis is heavily dependent upon tourism revenues , which has replaced sugar , the traditional mainstay of the economy until the 1970s . DT NN IN NNP NNP CC NNP VBZ RB JJ IN NN NNS , WDT VBZ VBN NN , DT JJ NN IN DT NN IN DT NNS . Following the 2005 harvest , the government closed the sugar industry after decades of losses of 03-Apr % of GDP annually . VBG DT CD NN , DT NN VBD DT NN NN IN NNS IN NNS IN CD NN IN NN RB . To compensate for employment losses , the government has embarked on a program to diversify the agricultural sector and to stimulate other sectors of the economy , such as tourism , export-oriented manufacturing , and offshore banking . TO VB IN NN NNS , DT NN VBZ VBN IN DT NN TO VB DT JJ NN CC TO VB JJ NNS IN DT NN , JJ IN NN , JJ NN , CC JJ NN . More than 2,00,000 tourists visited the islands in 2009 . JJR IN CD NNS VBD DT NNS IN CD . Like other tourist destinations in the Caribbean , St. Kitts and Nevis is vulnerable to damage from natural disasters and shifts in tourism demand . IN JJ NN NNS IN DT NNP , NNP NNP CC NNP VBZ JJ TO NN IN JJ NNS CC NNS IN NN NN . The current government is constrained by one of the world 's highest public debt burdens equivalent to roughly 185 % of GDP , largely attributable to public enterprise losses . DT JJ NN VBZ VBN IN CD IN DT NN POS JJS JJ NN NNS JJ TO RB CD NN IN NN , RB JJ TO JJ NN NNS . US Government assistance is the mainstay of this tiny island economy . NNP NNP NN VBZ DT NN IN DT JJ NN NN . The Marshall Islands received more than $ 1 billion in aid from the US from 1986 - 2002 . DT NNP NNP VBD JJR IN $ CD CD IN NN IN DT NNP IN CD IN CD . Agricultural production , primarily subsistence , is concentrated on small farms ; the most important commercial crops are coconuts and breadfruit . JJ NN , RB NN , VBZ VBN IN JJ NNS ; DT RBS JJ JJ NNS VBP NNS CC NN . Small-scale industry is limited to handicrafts , tuna processing , and copra . JJ NN VBZ VBN TO NNS , NN NN , CC NN . The tourist industry , now a small source of foreign exchange employing less than 10 % of the labor force , remains the best hope for future added income . DT NN NN , RB DT JJ NN IN JJ NN VBG JJR IN CD NN IN DT NN NN , VBZ DT JJS NN IN JJ JJ NN . The islands have few natural resources , and imports far exceed exports . DT NNS VBP JJ JJ NNS , CC NNS RB VBP NNS . Under the terms of the Amended Compact of Free Association , the US will provide millions of dollars per year to the Marshall Islands ( RMI ) through 2023 , at which time a Trust Fund made up of US and RMI contributions will begin perpetual annual payouts . IN DT NNS IN DT JJ NN IN NNP NNP , DT NNP MD VB NNS IN NNS IN NN TO DT NNP NNP LRB NNP RRB IN CD , IN WDT NN DT NNP NNP VBD IN IN NNP CC NNP NNS MD VB JJ JJ NNS . Government downsizing , drought , a drop in construction , the decline in tourism , and less income from the renewal of fishing vessel licenses have held GDP growth to an average of 1 % over the past decade . NNP NN , NN , DT NN IN NN , DT NN IN NN , CC JJR NN IN DT NN IN NN NN NNS VBP VBN NN NN TO DT NN IN CD NN IN DT JJ NN . Azerbaijan 's high economic growth during 2006 - 8 was attributable to large and growing oil exports , but some non-export sectors also featured double-digit growth , spurred by growth in the construction , banking , and real estate sectors . NNP POS JJ JJ NN IN CD : CD VBD JJ TO JJ CC JJ NN NNS , CC DT JJ NNS RB VBD JJ NN , VBN IN NN IN DT NN , NN , CC JJ NN NNS . In 2009 , economic growth remained above 9 % even as oil prices moderated and growth in the construction sector cooled . IN CD , JJ NN VBD IN CD NN RB IN NN NNS VBD CC NN IN DT NN NN VBD . In 2010 , economic growth slowed to 3.7 % , although the impact of the global financial crisis was less severe than in many other countries in the region . IN CD , JJ NN VBD TO CD NN , IN DT NN IN DT JJ JJ NN VBD RBR JJ IN IN JJ JJ NNS IN DT NN . The current global economic slowdown presents some challenges for the Azerbaijani economy as oil prices remain below their mid-2008 highs , highlighting Azerbaijan 's reliance on energy exports and lackluster attempts to diversify its economy . DT JJ JJ JJ NN VBZ DT NNS IN DT NNP NN IN NN NNS VBP IN PRP$ JJ NNS , VBG NNP POS NN IN NN NNS CC JJ NNS TO VB PRP$ NN . Azerbaijan 's oil production increased dramatically in 1997 , when Azerbaijan signed the first production-sharing arrangement ( PSA ) with the Azerbaijan International Operating Company . NNP POS NN NN VBD RB IN CD , WRB NNP VBD DT JJ JJ NN LRB NNP RRB IN DT NNP NNP NNP NNP . Oil exports through the Baku-Tbilisi-Ceyhan Pipeline remain the main economic driver while efforts to boost Azerbaijan 's gas production are underway . NN NNS IN DT JJ NNP VBP DT JJ JJ NN IN NNS TO VB NNP POS NN NN VBP NN . However , Azerbaijan has made only limited progress on instituting market-based economic reforms . RB , NNP VBZ VBN RB JJ NN IN VBG JJ JJ NNS . Pervasive public and private sector corruption and structural economic inefficiencies remain a drag on long-term growth , particularly in non-energy sectors . JJ JJ CC JJ NN NN CC JJ JJ NNS VBP DT NN IN JJ NN , RB IN JJ NNS . Several other obstacles impede Azerbaijan 's economic progress : the need for stepped up foreign investment in the non-energy sector and the continuing conflict with Armenia over the Nagorno-Karabakh region . JJ JJ NNS VBP NNP POS JJ NN IN DT NN IN VBN RP JJ NN IN DT JJ NN CC DT VBG NN IN NNP IN DT JJ NN . Trade with Russia and the other former Soviet republics is declining in importance , while trade is building with Turkey and the nations of Europe . NNP IN NNP CC DT JJ JJ JJ NNS VBZ VBG IN NN , IN NN VBZ VBG IN NNP CC DT NNS IN NNP . Long-term prospects will depend on world oil prices , the location of new oil and gas pipelines in the region , and Azerbaijan 's ability to manage its energy wealth to promote sustainable growth in non-energy sectors of the economy and spur employment . JJ NNS MD VB IN NN NN NNS , DT NN IN JJ NN CC NN NNS IN DT NN , CC NNP POS NN TO VB PRP$ NN NN TO VB JJ NN IN JJ NNS IN DT NN CC VB NN . The Taino - indigenous inhabitants of Hispaniola prior to the arrival of the Europeans - divided the island into five chiefdoms and territories . DT NNS : JJ NNS IN NNP RB TO DT NN IN DT NNS IN VBN DT NN IN CD NNS CC NNS . Christopher COLUMBUS explored and claimed the island on his first voyage in 1492 ; it became a springboard for Spanish conquest of the Caribbean and the American mainland . NNP NNP VBD CC VBD DT NN IN PRP$ JJ NN IN CD ; PRP VBD DT NN IN JJ NN IN DT NNP CC DT JJ NN . In 1697 , Spain recognized French dominion over the western third of the island , which in 1804 became Haiti . IN CD , NNP VBD JJ NN IN DT JJ NN IN DT NN , WDT IN CD VBD NNP . The remainder of the island , by then known as Santo Domingo , sought to gain its own independence in 1821 but was conquered and ruled by the Haitians for 22 years ; it finally attained independence as the Dominican Republic in 1844 . DT NN IN DT NN , IN RB VBN IN NNP NNP , VBD TO VB PRP$ JJ NN IN CD CC VBD VBN CC VBN IN DT NNS IN CD NNS ; PRP RB VBD NN IN DT NNP NNP IN CD . In 1861 , the Dominicans voluntarily returned to the Spanish Empire , but two years later they launched a war that restored independence in 1865 . IN CD , DT NNS RB VBD TO DT JJ NN , CC CD NNS RB PRP VBD DT NN WDT VBD NN IN CD . A legacy of unsettled , mostly non-representative rule followed , capped by the dictatorship of Rafael Leonidas TRUJILLO from 1930 - 61 . DT NN IN JJ , RB JJ NN VBD , VBN IN DT NN IN NNP NNP NNP IN CD IN CD . Juan BOSCH was elected president in 1962 but was deposed in a military coup in 1963 . NNP NNP VBD VBN NN IN CD CC VBD VBN IN DT JJ NN IN CD . In 1965 , the United States led an intervention in the midst of a civil war sparked by an uprising to restore BOSCH . IN CD , DT NNP NNPS VBD DT NN IN DT NN IN DT JJ NN VBN IN DT NN TO VB NNP . In 1966 , Joaquin BALAGUER defeated BOSCH in an election to become president . IN CD , NNP NNP VBD NNP IN DT NN TO VB NN . BALAGUER maintained a tight grip on power for most of the next 30 years when international reaction to flawed elections forced him to curtail his term in 1996 . NNP VBD DT JJ NN IN NN IN JJS IN DT JJ CD NNS WRB JJ NN TO JJ NNS VBD PRP TO VB PRP$ NN IN CD . Since then , regular competitive elections have been held in which opposition candidates have won the presidency . IN RB , JJ JJ NNS VBP VBN VBN IN WDT NN NNS VBP VBN DT NN . Former President ( 1996 - 2000 ) Leonel FERNANDEZ Reyna won election to a new term in 2004 following a constitutional amendment allowing presidents to serve more than one term , and was since reelected to a second consecutive term . JJ NNP LRB CD IN CD RRB NNP NNP NNP VBD NN TO DT JJ NN IN CD VBG DT JJ NN VBG NNS TO VB JJR IN CD NN , CC VBD IN VBN TO DT JJ JJ NN . Popes in their secular role ruled portions of the Italian peninsula for more than a thousand years until the mid 19th century , when many of the Papal States were seized by the newly united Kingdom of Italy . NNS IN PRP$ JJ NN VBD NNS IN DT JJ NN IN JJR IN DT CD NNS IN DT JJ JJ NN , WRB NN IN DT NNP NNPS VBD VBN IN DT RB VBN NNP IN NNP . In 1870 , the pope 's holdings were further circumscribed when Rome itself was annexed . IN CD , DT NN POS NNS VBD JJ VBN WRB NNP PRP VBD VBN . Disputes between a series of ' prisoner ' popes and Italy were resolved in 1929 by three Lateran Treaties , which established the independent state of Vatican City and granted Roman Catholicism special status in Italy . NNS IN DT NN IN `` NN `` NNS CC NNP VBD VBN IN CD IN CD NNP NNPS , WDT VBD DT JJ NN IN NNP NNP CC VBD NNP NNP JJ NN IN NNP . In 1984 , a concordat between the Holy See and Italy modified certain of the earlier treaty provisions , including the primacy of Roman Catholicism as the Italian state religion . IN CD , DT NN IN DT NNP NNP CC NNP VBN NN IN DT JJR NN NNS , VBG DT NN IN NNP NNP IN DT JJ NN NN . Present concerns of the Holy See include religious freedom , international development , the environment , the Middle East , China , the decline of religion in Europe , terrorism , interreligious dialogue and reconciliation , and the application of church doctrine in an era of rapid change and globalization . JJ NNS IN DT NNP NNP VBP JJ NN , JJ NN , DT NN , DT NNP NNP , NNP , DT NN IN NN IN NNP , NN , JJ NN CC NN , CC DT NN IN NN NN IN DT NN IN JJ NN CC NN . About 1 billion people worldwide profess the Catholic faith . IN CD CD NNS JJ NN DT NNP NN . AN ASS congratulated a Horse on being so ungrudgingly and carefully provided for , while he himself had scarcely enough to eat and not even that without hard work . DT NNP VBD DT NN IN VBG RB RB CC RB VBN IN , IN PRP PRP VBD RB JJ TO VB CC RB RB IN IN JJ NN . But when war broke out , a heavily armed soldier mounted the Horse , and riding him to the charge , rushed into the very midst of the enemy . CC WRB NN VBD RP , DT RB JJ NN VBD DT NN , CC VBG PRP TO DT NN , VBD IN DT RB NN IN DT NN . The Horse was wounded and fell dead on the battlefield . DT NN VBD VBN CC VBD RB IN DT NN . Then the Ass , seeing all these things , changed his mind , and commiserated the Horse . RB DT NNP , VBG PDT DT NNS , VBD PRP$ NN , CC VBD DT NN . ' SEE these valuable golden eggs , ' said a Man that owned a Goose . `` VB DT JJ JJ NNS , `` VBD DT NN WDT VBD DT NN . ' Surely a Goose which can lay such eggs as those must have a gold mine inside her . ' `` RB DT NN WDT MD VB JJ NNS IN DT MD VB DT NN NN IN PRP . `` So he killed the Goose and cut her open , but found that she was just like any other goose . RB PRP VBD DT NNP CC VBD PRP JJ , CC VBD IN PRP VBD RB IN DT JJ NN . Moreover , on examining the eggs that she had laid he found they were just like any other eggs . RB , IN VBG DT NNS IN PRP VBD VBN PRP VBD PRP VBD RB IN DT JJ NNS . Lawyers in Pakistan continued their protest marches this week amid an effort to press the government to reinstate the judges replaced last year by President Pervez Musharraf . NNS IN NNP VBD PRP$ NN NNS DT NN IN DT NN TO VB DT NN TO VB DT NNS VBN JJ NN IN NNP NNP NNP . After weeks of negotiations with his fellow coalition leader Nawaz Sharif , Asif Ali Zardari says despite differences , he remains confident the two parties will reach agreement . IN NNS IN NNS IN PRP$ JJ NN NN NNP NNP , NNP NNP NNP VBZ IN NNS , PRP VBZ JJ DT CD NNS MD VB NN . And some Pakistanis now living in the U.S. say the new government can not succeed without independent judges . CC DT NNS RB VBG IN DT NNP VBP DT JJ NN MD RB VB IN JJ NNS . VOA 's Ravi Khanna reports President Musharraf , so far , has made no public comment . NNP POS NNP NNP VBZ NNP NNP , RB RB , VBZ VBN DT JJ NN . A General Electric subsidiary in Brazil that provides maintenance to Brazil 's financially-troubled Vasp airline , is asking a local court to declare the carrier bankrupt . DT NNP NNP NN IN NNP WDT VBZ NN TO NNP POS JJ NNP NN , VBZ VBG DT JJ NN TO VB DT NN JJ . Celma , a subsidiary of the U.S. company , said Wednesday that Brazil 's fourth-largest airline owes it some $ 3.2 million . NNP , DT NN IN DT NNP NN , VBD NNP IN NNP POS JJ NN VBZ PRP DT $ CD CD . The announcement follows Vasp 's firing Tuesday of 380 of its more than 5,000 workers . DT NN VBZ NNP POS NN NNP IN CD IN PRP$ JJR IN CD NNS . The airline also took six planes out of service recently . DT NN RB VBD CD NNS IN IN NN RB . Vasp is one of several Brazilian airlines that have suffered financial troubles in recent years due to a drop in passenger demand . NNP VBZ CD IN JJ JJ NNS WDT VBP VBN JJ NNS IN JJ NNS JJ TO DT NN IN NN NN . Cameroon state radio reports as many as 30 people have died or are missing from a boat accident off the coast in the Gulf of Guinea . NNP NN NN VBZ RB JJ IN CD NNS VBP VBN CC VBP VBG IN DT NN NN IN DT NN IN DT NNP IN NNP . The radio report Tuesday said 30 other people survived the accident and were being treated at a local hospital . DT NN NN NNP VBD CD JJ NNS VBD DT NN CC VBD VBG VBN IN DT JJ NN . It said the boat was traveling from Nigeria to Gabon when it went down late Monday near the southwestern fishing village of Campo . PRP VBD DT NN VBD VBG IN NNP TO NNP WRB PRP VBD RB RB NNP IN DT JJ NN NN IN NNP . The report said the boat was carrying nationals from Nigeria , Mali and Benin when it capsized . DT NN VBD DT NN VBD VBG NNS IN NNP , NNP CC NNP WRB PRP VBD . It is not clear what caused the accident . PRP VBZ RB JJ WP VBD DT NN . The Gulf of Guinea is often used as a transit route by West Africans looking to find jobs in Gabon and Cameroon . DT NNP IN NNP VBZ RB VBN IN DT NN NN IN NNP NNS VBG TO VB NNS IN NNP CC NNP . The small Midwestern town of Slater , DT JJ JJ NN IN NNP , Missouri is planning a three-day festival to honor its most illustrious inhabitant , Steve McQueen . NNP VBZ VBG DT JJ NN TO VB PRP$ RBS JJ NN , NNP NNP . Although born in Indiana , the movie star spent most of his childhood in Slater on his great-uncle 's farm . IN VBN IN NNP , DT NN NN VBD JJS IN PRP$ NN IN NNP IN PRP$ NN POS NN . Dubbed ' The King Of Cool , ' Mc Queen starred in a series of famous films in the 1960s and '70s , among them The Great Escape , Bullitt , and Papillon . VBN `` DT NNP IN NNP , `` NNP NNP VBD IN DT NN IN JJ NNS IN DT NNS CC NNS , IN PRP DT NNP NNP , NNP , CC NNP . He died of cancer in 1980 at age 50 . PRP VBD IN NN IN CD IN NN CD . Running March 23-25 , ' Steve McQueen Days ' will include screenings of his movies , a show of memorabilia , and tours of his boyhood home and former school . VBG NNP CD , `` NNP NNP NNPS `` MD VB NNS IN PRP$ NNS , DT NN IN NNS , CC NNS IN PRP$ NN NN CC JJ NN . Nuclear envoys from North and South Korea have met in Beijing as part of attempts to resume six-party talks on Pyongyang 's nuclear weapons program . JJ NNS IN NNP CC NNP NNP VBP VBN IN NNP IN NN IN NNS TO VB JJ NNS IN NNP POS JJ NNS NN . Tuesday 's meeting between the South 's Chun Yung-woo and the North 's Kim Kye Kwan is the latest in a series of diplomatic consultations among the six nations involved in the nuclear talks . NNP POS NN IN DT NNP POS NNP NNP CC DT NNP POS NNP NNP NNP VBZ DT JJS IN DT NN IN JJ NNS IN DT CD NNS VBN IN DT JJ NNS . Over the past week , U.S. nuclear envoy Christopher Hill met his counterparts from South Korea , Japan and China to brief them on his talks with North Korea 's Kim in Berlin earlier this month . IN DT JJ NN , NNP JJ NN NNP NNP VBD PRP$ NNS IN NNP NNP , NNP CC NNP TO VB PRP IN PRP$ NNS IN NNP NNP POS NNP IN NNP RBR DT NN . Diplomats say Beijing , which hosts the talks , could announce a date for the next round in a few days . NNS VBP NNP , WDT VBZ DT NNS , MD VB DT NN IN DT JJ NN IN DT JJ NNS . Japanese Foreign Minister Taro Aso said Tuesday another round of negotiations would be meaningless unless it specifically addresses the issue of North Korean denuclearization . JJ NNP NNP NNP NNP VBD NNP DT NN IN NNS MD VB JJ IN PRP RB VBZ DT NN IN JJ JJ NN . The U.S. military has opened a preliminary investigation into additional allegations of detainee abuse in Iraq . DT NNP NN VBZ VBN DT JJ NN IN JJ NNS IN NN NN IN NNP . In California Saturday , a military spokesman said the U.S. Navy launched the probe after being given photographs of Iraqi detainees allegedly being abused by Navy special forces in May 2003 , months before the Abu Ghraib prison scandal . IN NNP NNP , DT JJ NN VBD DT NNP NNP VBD DT NN IN VBG VBN NNS IN JJ NNS RB VBG VBN IN NNP JJ NNS IN NNP CD , NNS IN DT NNP NNP NN NN . The Associated Press news agency says one of its reporters found the photographs posted on the Internet , and turned more than a dozen over to Navy officials on Friday . DT NNP NNP NN NN VBZ CD IN PRP$ NNS VBD DT NNS VBN IN DT NNP , CC VBD JJR IN DT NN IN TO NNP NNS IN NNP . Also Saturday , pre-trial hearings for two soldiers accused of abusing prisoners at Baghdad 's Abu Ghraib prison in late 2003 got under way on a military base in Texas . RB NNP , JJ NNS IN CD NNS VBN IN VBG NNS IN NNP POS NNP NNP NN IN JJ CD VBD IN NN IN DT JJ NN IN NNP . Health officials in Indonesia say local tests show an Indonesian man who died last week was infected with the bird flu virus . NNP NNS IN NNP VBP JJ NNS VBP DT JJ NN WP VBD JJ NN VBD VBN IN DT NN NN NN . Authorities say the man was in frequent contact with poultry . NNS VBP DT NN VBD IN JJ NN IN NN . The World Health Organization confirmed Sunday that two women who died in Indonesia last week had contracted the H5N1 virus that has killed almost 90 people worldwide since 2003 . DT NNP NNP NNP VBD NNP IN CD NNS WP VBD IN NNP JJ NN VBD VBN DT NNP NN WDT VBZ VBN RB CD NNS JJ IN CD . Elsewhere , Iranian officials say laboratory tests have confirmed bird flu has killed 135 swans on the Caspian Sea coast . RB , JJ NNS VBP NN NNS VBP VBN NN NN VBZ VBN CD NNS IN DT NNP NNP NN . If international tests confirm the birds died of the H5N1 strain of the virus , it will be its first appearance in Iran . IN JJ NNS VBP DT NNS VBD IN DT NNP NN IN DT NN , PRP MD VB PRP$ JJ NN IN NNP . In Vienna , Austrian officials say the deadly virus has been confirmed in two dead swans found near the southern city of Graz . IN NNP , JJ NNS VBP DT JJ NN VBZ VBN VBN IN CD JJ NNS VBN IN DT JJ NN IN NNP . Croatian officials also believe the virus killed at least eight swans found in recent days in the Zagreb area . JJ NNS RB VBP DT NN VBD IN JJS CD NNS VBD IN JJ NNS IN DT NNP NN . Iran says a rise in oil production by OPEC as requested by the United States will not affect record prices in a market already saturated with oil . NNP VBZ DT NN IN NN NN IN NNP IN VBN IN DT NNP NNPS MD RB VB NN NNS IN DT NN RB VBN IN NN . Iranian Oil Minister Gholam Hossein Nozari told reporters Saturday in Tehran that increasing production will only increase oil inventories . JJ NNP NNP NNP NNP NNP VBD NNS NNP IN NNP IN VBG NN MD RB VB NN NNS . On Friday , Saudi Arabia rejected a request by U.S. President George Bush for Riyadh to raise oil production in hopes of controlling soaring gas prices . IN NNP , NNP NNP VBD DT NN IN NNP NNP NNP NNP IN NNP TO VB NN NN IN NNS IN VBG VBG NN NNS . Iran is OPEC 's second largest oil producer after Saudi Arabia . NNP VBZ NNP POS JJ JJS NN NN IN NNP NNP . Oil prices reached a record high of nearly $ 128 per barrel Friday . NN NNS VBD DT NN NN IN RB $ CD IN NN NNP . General Amin al-Hindi , a former Palestinian intelligence chief who may have played a role in the deadly 1972 Munich attack on the Israeli Olympics team , has died . NNP NNP NNP , DT JJ JJ NN NN WP MD VB VBN DT NN IN DT JJ CD NNP NN IN DT JJ NNP NN , VBZ VBN . He was 70 . PRP VBD CD . Palestinian officials say al-Hindi died of cancer at a hospital in Jordan , Tuesday , after slipping into a coma . JJ NNS VBP NNP VBD IN NN IN DT NN IN NNP , NNP , IN VBG IN DT NN . They say his body was transported to the West Bank , Wednesday , for burial . PRP VBP PRP$ NN VBD VBN TO DT NNP NNP , NNP , IN NN . Al-Hindi was a senior security officer in the Fatah party . NNP VBD DT JJ NN NN IN DT NNP NN . He also served as head of intelligence services under former Palestinian leader Yasser Arafat . PRP RB VBD IN NN IN NN NNS IN JJ JJ NN NNP NNP . Commandos with ' Black September ' -- a group linked to Arafat 's Fatah faction -- infiltrated the Olympic village in Munich at the 1972 summer games . NNS IN `` NNP NNP `` : DT NN VBN TO NNP POS NNP NN : VBD DT NNP NN IN NNP IN DT CD NN NNS . The commandoes stormed a dormitory housing Israelis , an attack that led to the deaths of 11 athletes . DT NNS VBD DT JJ NN NNS , DT NN WDT VBD TO DT NNS IN CD NNS . Relatives of more than 100 Iranians killed in the crash of a military plane say officials ordered the transport to fly Tuesday despite repeated warnings from the pilot that the aircraft was unsafe . NNS IN JJR IN CD NNS VBN IN DT NN IN DT JJ NN VBP NNS VBD DT NN TO VB NNP IN JJ NNS IN DT NN IN DT NN VBD JJ . The Hamshahri newspaper quotes the wife of one of the victims as saying her husband told her by cell phone that the C-130 aircraft sat on a runway in Tehran for three hours Tuesday because the pilot refused to fly . DT NNP NN VBZ DT NN IN CD IN DT NNS IN VBG PRP$ NN VBD PRP IN NN NN IN DT NN NN VBD IN DT NN IN NNP IN CD NNS NNP IN DT NN VBD TO VB . An official of another newspaper , Shargh told VOA 's Persian service he was told by a staffer aboard the doomed plane that passengers were waiting on a runway for a replacement pilot . DT NN IN DT NN , NNP VBD NNP POS JJ NN PRP VBD VBN IN DT NN IN DT JJ NN IN NNS VBD VBG IN DT NN IN DT NN NN . The army is denying the accusations , and Iran 's top prosecutor appointed a special judge to probe the crash . DT NN VBZ VBG DT NNS , CC NNP POS JJ NN VBD DT JJ NN TO VB DT NN . The plane carrying Iranian journalists crashed into a 10-story apartment building minutes after take-off Tuesday afternoon , killing all 94 people on board and at least 22 others on the ground . DT NN VBG JJ NNS VBD IN DT JJ NN NN NNS IN JJ NNP NN , VBG DT CD NNS IN NN CC IN JJS CD NNS IN DT NN . Tens of thousands of people have protested outside the Indian factory set to produce the world 's cheapest car , to demand the auto company return the land to local farmers . NNS IN NNS IN NNS VBP VBN IN DT JJ NN VBN TO VB DT NN POS JJS NN , TO VB DT NN NN VB DT NN TO JJ NNS . Authorities in West Bengal state deployed nearly 3,000 police to protect the Tata Motors factory site Sunday as more than 40,000 protesters lined the highway leading to the factory . NNS IN NNP NNP NN VBD RB CD NNS TO VB DT NNP NNP NN NN NNP IN JJR IN CD NNS VBD DT NN VBG TO DT NN . Farmers say Tata Motors did not properly compensate them for the land used for the factory site . NNS VBP NNP NNPS VBD RB RB VB PRP IN DT NN VBN IN DT NN NN . They have vowed to continue protesting until the 160 hectares of disputed land are returned . PRP VBP VBN TO VB VBG IN DT CD NNS IN JJ NN VBP VBN . Tata Motors said Friday the protests may force it to relocate the factory . NNP NNP VBD NNP DT NNS MD VB PRP TO VB DT NN . The factory is set to roll out the first $ 2,500 ' Nano ' cars by October . DT NN VBZ VBN TO VB RP DT JJ $ CD `` NNP `` NNS IN NNP . Tata Motors plans to manufacture a quarter-million of the cars each year . NNP NNP VBZ TO VB DT NN IN DT NNS DT NN . Hundreds of Pakistanis are fleeing villages in North West Frontier Province , where fighting between government troops and militants loyal to a pro-Taliban religious leader raged for a third straight day . NNS IN NNS VBP VBG NNS IN NNP NNP NNP NNP , WRB VBG IN NN NNS CC NNS JJ TO DT JJ JJ NN VBD IN DT JJ JJ NN . Army spokesman Major General Waheed Arshad says 10 militants were killed Sunday in fighting with security forces backed by helicopter gunships . NN NN NNP NNP NNP NNP VBZ CD NNS VBD VBN NNP IN VBG IN NN NNS VBN IN NN NNS . On Saturday , Pakistani officials said militants had executed 13 people , including seven civilians . IN NNP , JJ NNS VBD NNS VBD VBN CD NNS , VBG CD NNS . The Swat valley has been the scene of battles since Friday after authorities sent more than 2,000 soldiers to counter growing militancy from cleric Maulana Fazlullah . DT NNP NN VBZ VBN DT NN IN NNS IN NNP IN NNS VBD JJR IN CD NNS TO VB VBG NN IN NN NNP NNP . He is trying to establish strict Islamic law in the area . PRP VBZ VBG TO VB JJ JJ NN IN DT NN . In other news , three rockets hit Peshawar , the capital of North West Frontier Province , early Sunday . IN JJ NN , CD NNS VBD NNP , DT NN IN NNP NNP NNP NNP , JJ NNP . Police say one of the rockets landed near the U.S. Consulate , however no deaths were reported . NNS VBP CD IN DT NNS VBD IN DT NNP NNP , RB DT NNS VBD VBN . A senior Cuban official has lashed out at the United Nations , saying it has done very little to achieve the goals outlined in the Millennium Declaration . DT JJ JJ NN VBZ VBN RP IN DT NNP NNPS , VBG PRP VBZ VBN RB JJ TO VB DT NNS VBN IN DT NNP NNP . Cuban National Assembly speaker Ricardo Alarcon made the comment Friday in a speech before the UN World Summit in New York . JJ NNP NNP NN NNP NNP VBD DT NN NNP IN DT NN IN DT NNP NNP NNP IN NNP NNP . Mr. Alarcon said the governments attending the summit have failed to do enough to meet the eight objectives in the declaration , which included reducing poverty and hunger , making education accessible to everyone and combating HIV / AIDS . NNP NNP VBD DT NNS VBG DT NN VBP VBN TO VB RB TO VB DT CD NNS IN DT NN , WDT VBD VBG NN CC NN , VBG NN JJ TO DT CC VBG NNP NNP NNP . He said there has been a setback in many of the objectives . PRP VBD EX VBZ VBN DT NN IN NN IN DT NNS . Mr. Alarcon also described proposed U.N. reforms as an ' unforgivable sham ' he said were designed by wealthy countries to turn the United Nations into an instrument of global dictatorship . NNP NNP RB VBD VBN NNP NNS IN DT `` JJ NN `` PRP VBD VBD VBN IN JJ NNS TO VB DT NNP NNPS IN DT NN IN JJ NN . A South African official was set to meet union leaders in an effort to avert a strike by 9,00,000 public service workers . DT JJ JJ NN VBD VBN TO VB NN NNS IN DT NN TO VB DT NN IN CD JJ NN NNS . The workers , represented by a coalition of unions , are seeking an increase to the government 's offer of a 6.5 percent pay hike . DT NNS , VBN IN DT NN IN NNS , VBP VBG DT NN TO DT NN POS NN IN DT CD NN NN NN . One union , the 2,10,000 member Public Servants Association , says its workers could go on strike Thursday . CD NN , DT CD NN NNP NNP NNP , VBZ PRP$ NNS MD VB IN NN NNP . The other workers have threatened to walk off their jobs next week . DT JJ NNS VBP VBN TO VB RP PRP$ NNS JJ NN . Public Service and Administration Minister Richard Baloyi has called for any strikes to be delayed until he is able to meet with union leaders Thursday . NNP NNP CC NNP NNP NNP NNP VBZ VBN IN DT NNS TO VB VBN IN PRP VBZ JJ TO VB IN NN NNS NNP . A group of rebel militias in the Democratic Republic of Congo ( DRC ) says it has suspended participation in a 2008 cease-fire agreement . DT NN IN JJ NNS IN DT JJ NNP IN NNP LRB NNP RRB VBZ PRP VBZ VBN NN IN DT CD NN NN . The rebel groups have released a statement citing a number of reasons for their decision , including the government 's arrest of some of their members . DT NN NNS VBP VBN DT NN VBG DT NN IN NNS IN PRP$ NN , VBG DT NN POS NN IN DT IN PRP$ NNS . In January 2008 , rebels in the eastern DRC signed a peace accord with the government aimed at ending years of fighting in the region . IN NNP CD , NNS IN DT JJ NNP VBD DT NN NN IN DT NN VBN IN VBG NNS IN VBG IN DT NN . The country 's five-year civil war formally ended in 2003 . DT NN POS JJ JJ NN RB VBD IN CD . However , militias and rebel groups have remained active in some eastern areas , especially North Kivu province . RB , NNS CC NN NNS VBP VBN JJ IN DT JJ NNS , RB JJ NNP NN . Bloomberg news reports that Congo 's communications minister has dismissed the militias ' statement . NNP NN NNS IN NNP POS NNS NN VBZ VBN DT NNS POS NN . The news agency quotes Lambert Mende as saying the militias think they ' are in charge of the peace process , but they are not . ' DT NN NN VBZ NNP NNP IN VBG DT NNS VBP PRP `` VBP IN NN IN DT NN NN , CC PRP VBP RB . `` China has confirmed an outbreak of the deadly H5N1 strain of bird flu among ducks in southern Guangdong province . NNP VBZ VBN DT NN IN DT JJ NNP NN IN NN NN IN NNS IN JJ NNP NN . Hong Kong 's health secretary York Chow said Monday Chinese agriculture ministry officials confirmed that tests indicate the presence of H5N1 in Panyu district . NNP NNP POS NN NN NNP NNP VBD NNP JJ NN NN NNS VBD IN NNS VBP DT NN IN NNP IN NNP NN . More than 9,000 ducks died on five farms in Panyu this month . JJR IN CD NNS VBD IN CD NNS IN NNP DT NN . More than 32,000 ducks were then culled to help contain the outbreak . JJR IN CD NNS VBD RB VBN TO VB VB DT NN . The area is near Hong Kong , where health officials Monday suspended imports of chilled and frozen duck and geese from Guangdong for one week . DT NN VBZ IN NNP NNP , WRB NN NNS NNP VBD NNS IN JJ CC JJ NN CC NNS IN NNP IN CD NN . The H5N1 strain of avian influenza is deadly to humans . DT NNP NN IN JJ NN VBZ JJ TO NNS . The World Health Organization reports there have been at least 25 human cases of avian flu confirmed in China in recent years , 16 of them fatal . DT NNP NNP NNP NNS EX VBP VBN IN JJS CD JJ NNS IN JJ NN VBD IN NNP IN JJ NNS , CD IN PRP JJ . U.S. Navy officials say a U.S. ship encountered three small Iranian speed boats Thursday in the Persian Gulf . NNP NNP NNS VBP DT NNP NN VBD CD JJ JJ NN NNS NNP IN DT NNP NNP . The officials said Friday the USS Typhoon was in the central Gulf when at least one of three high-speed boats approached the ship . DT NNS VBD NNP DT NNP NNP VBD IN DT JJ NNP WRB IN JJS CD IN CD JJ NNS VBD DT NN . The officials said the boats kept their distance after the Navy ship fired a warning flare . DT NNS VBD DT NNS VBD PRP$ NN IN DT NNP NN VBD DT NN NN . It is unclear whether the speed boats were armed . PRP VBZ JJ IN DT NN NNS VBD VBN . Iranian arabic television Al-Alam reports the Iranian navy denies the incident . JJ JJ NN NN VBZ DT JJ NN VBZ DT NN . The U.S. Defense Department has said there were three confrontations between the U.S. Navy and Iranian forces in the Persian Gulf from December to January . DT NNP NNP NNP VBZ VBN EX VBD CD NNS IN DT NNP NNP CC JJ NNS IN DT NNP NNP IN NNP TO NNP . One ended after a U.S. ship fired warning shots to deter the Iranian vessel . CD VBN IN DT NNP NN VBD VBG NNS TO VB DT JJ NN . Chinese officials have confirmed a new outbreak of bird flu among poultry in the Tibetan capital of Lhasa . JJ NNS VBP VBN DT JJ NN IN NN NN IN NN IN DT JJ NN IN NNP . The official Xinhua news agency quoted China 's ministry of agriculture as saying officials found the H5N1 strain of bird flu , which can be fatal to humans , in poultry sold at a market in Lhasa on April 12 . DT JJ NNP NN NN VBN NNP POS NN IN NN IN VBG NNS VBD DT NNP NN IN NN NN , WDT MD VB JJ TO NNS , IN NN VBN IN DT NN IN NNP IN NNP CD . The ministry said it had taken emergency measures , culling more than 1,600 birds , and that the epidemic is under control . DT NN VBD PRP VBD VBN NN NNS , VBG JJR IN CD NNS , CC IN DT NN VBZ IN NN . Officials also said no one who came into contact with the infected poultry has shown any signs of the disease . NNS RB VBD DT NN WP VBD IN NN IN DT JJ NN VBZ VBN DT NNS IN DT NN . The World Health Organization says bird flu has killed more than 250 people since it resurfaced in Asia in 2003 . DT NNP NNP NNP VBZ NN NN VBZ VBN JJR IN CD NNS IN PRP VBD IN NNP IN CD . At least five people have died from bird flu in China this year . IN JJS CD NNS VBP VBN IN NN NN IN NNP DT NN . International public health officials are calling for a stronger global response to drug-resistant tuberculosis . NNP JJ NN NNS VBP VBG IN DT JJR JJ NN TO JJ NN . The call was made after American lawyer Andrew Speaker , who is infected with a form of tuberculosis that is resistant to most antibiotics , traveled aboard commercial airliners from the United States to Europe and back . DT NN VBD VBN IN JJ NN NNP NNP , WP VBZ VBN IN DT NN IN NN WDT VBZ JJ TO RBS NNS , VBN IN JJ NNS IN DT NNP NNPS TO NNP CC RB . VOA 's Jessica Berman reports . NNP POS NNP NNP VBZ . Officials at the World Health Organization estimate there are at least 4,00,000 new cases of tuberculosis each year that do not respond to two or more standard antibiotics . NNS IN DT NNP NNP NNP VBP EX VBP IN JJS CD JJ NNS IN NN DT NN WDT VBP RB VB TO CD CC JJR JJ NNS . Of these , WHO experts say 25,000 to 30,000 individuals are infected with extremely drug-resistant TB , or XDR TB , which is resistant not only to two or more standard antibiotics , but three or more of a newer class of antibiotics . IN DT , NNP NNS VBP CD TO CD NNS VBP VBN IN RB JJ NNP , CC NNP NNP , WDT VBZ JJ RB RB TO CD CC JJR JJ NNS , CC CD CC JJR IN DT JJR NN IN NNS . Andrew Speaker , who lives in Atlanta , Georgia and flew to Europe and back with his fiance , is infected with XDR TB . NNP NNP , WP VBZ IN NNP , NNP CC VBD TO NNP CC RB IN PRP$ NN , VBZ VBN IN NNP NNP . Speaker has been in isolation since his return . NNP VBZ VBN IN NN IN PRP$ NN . European public health officials were not notified about the case until Speaker was back in the United States . JJ JJ NN NNS VBD RB VBN IN DT NN IN NNP VBD RB IN DT NNP NNPS . Mario Raviglione is Director of the Stop TB Department at the WHO . NNP NNP VBZ NNP IN DT NNP NNP NNP IN DT NNP . Although governments are considering ways to improve screening of people with infectious diseases at the border , Raviglione says that would be difficult to implement . IN NNS VBP VBG NNS TO VB NN IN NNS IN JJ NNS IN DT NN , NNP VBZ DT MD VB JJ TO VB . What is needed , accorded to Raviglione , are better measures to contain XTR TB , including rapid testing and new drugs . WP VBZ VBN , VBN IN NNP , VBP JJR NNS TO VB NNP NNP , VBG JJ NN CC JJ NNS . ' Here we are facing one of the highest burden diseases of the world , where the amount of money that is being spent , particularly internationally to help countries that are in need like African countries , is badly , badly insufficient , ' he said . `` RB PRP VBP VBG CD IN DT JJS NN NNS IN DT NN , WRB DT NN IN NN WDT VBZ VBG VBN , RB RB TO VB NNS WDT VBP IN NN IN JJ NNS , VBZ RB , RB JJ , `` PRP VBD . Meanwhile , U.S. lawmakers have introduced legislation to prevent the spread of tuberculosis in the United States , and at least one hearing is scheduled to investigate the Andrew Speaker incident . RB , NNP NNS VBP VBN NN TO VB DT NN IN NN IN DT NNP NNPS , CC IN JJS CD NN VBZ VBN TO VB DT NNP NNP NN . Leaders of the Palestinian militant group Hamas say five children and three women were among 13 injured after a blast at a Hamas base in the Gaza Strip . NNS IN DT JJ JJ NN NNS VBP CD NNS CC CD NNS VBD IN CD VBN IN DT NN IN DT NNP NN IN DT NNP NNP . The powerful explosion Wednesday ripped through the Hamas al-Qassam Brigades military training facility in the southern Gaza Strip . DT JJ NN NNP VBD IN DT NNP NNP NNP JJ NN NN IN DT JJ NNP NNP . In a statement , Hamas did not give a cause for the blast . IN DT NN , NNP VBD RB VB DT NN IN DT NN . The Israeli military says it was not involved . DT JJ NN VBZ PRP VBD RB VBN . The blast shook through the densely crowded Tel As-Sultan neighborhood in Rafah . DT NN VBD IN DT RB JJ NNP NNP NN IN NNP . Hamas said the injured were hit by flying glass shrapnel . NNP VBD DT NN VBD VBN IN VBG NN NN . The Gaza-based Palestinian Center for Human Rights has repeatedly called on the territory 's Hamas rulers not to store explosive materials in civilian areas . DT JJ JJ NNP IN NNP NNP VBZ RB VBN IN DT NN POS NNP NNS RB TO VB JJ NNS IN JJ NNS . A weapons explosion in August wounded 58 people and destroyed seven houses . DT NNS NN IN NNP VBD CD NNS CC VBD CD NNS . European Union lawmakers say they will press U.S. and European leaders to appear before an inquiry into alleged secret CIA prisons in Europe . NNP NNP NNS VBP PRP MD VB NNP CC JJ NNS TO VB IN DT NN IN JJ JJ NNP NNS IN NNP . The vice president of an investigative panel looking into the matter , Sarah Ludford , said Thursday U.S. Defense Secretary Donald Rumsfeld , British Foreign Secretary Jack Straw and other foreign and defense ministers could be invited to appear before the panel . DT NN NN IN DT JJ NN VBG IN DT NN , NNP NNP , VBD NNP NNP NNP NNP NNP NNP , NNP NNP NNP NNP NNP CC JJ JJ CC NN NNS MD VB VBN TO VB IN DT NN . But EU officials concede they have no legal authority to subpoena them . CC NNP NNS VBP PRP VBP DT JJ NN TO VB PRP . The 46-member temporary committee was created this month after reports by U.S. media and human rights groups of secret CIA prisons in new East European EU member states . DT JJ JJ NN VBD VBN DT NN IN NNS IN NNP NNS CC JJ NNS NNS IN JJ NNP NNS IN JJ JJ JJ NNP NN NNS . European officials say the committee will try to find out whether the U.S. or other nations abducted suspects , transported them to countries where they could be aggressively interrogated , and housed them at secret detention sites . JJ NNS VBP DT NN MD VB TO VB RP IN DT NNP CC JJ NNS VBD NNS , VBD PRP TO NNS WRB PRP MD VB RB VBN , CC VBD PRP IN JJ NN NNS . Police in India have arrested a Muslim man in connection with last week 's bombing of a historic mosque in the southern city of Hyderabad that killed 11 people . NNS IN NNP VBP VBN DT NN NN IN NN IN JJ NN POS NN IN DT JJ NN IN DT JJ NN IN NNP WDT VBD CD NNS . Five more people died in police shootings during riots that erupted after the bombing of the 17th century Mecca Mashjid mosque . CD JJR NNS VBD IN NN NNS IN NNS WDT VBD IN DT NN IN DT JJ NN NNP NNP NN . Officials say Friday the suspect was detained Tuesday in a small town , Jalna , in western Maharashtra state . NNS VBP NNP DT NN VBD VBN NNP IN DT JJ NN , NNP , IN JJ NNP NN . He is the first person to be detained for questioning about the attack . PRP VBZ DT JJ NN TO VB VBN IN VBG IN DT NN . Security remains tight around the Hyderabad mosque with thousands of police deployed to the area . NN VBZ JJ IN DT NNP NN IN NNS IN NNS VBN TO DT NN . Shortly after Friday prayers Friday , police used batons to beat back worshippers protesting the official inquiry into the bombing . RB IN NNP NNS NNP , NN VBD NNS TO VB RP NNS VBG DT JJ NN IN DT NN . There has been no claim of responsibility for the attack , the third against a mosque in India during the past year . EX VBZ VBN DT NN IN NN IN DT NN , DT NN IN DT NN IN NNP IN DT JJ NN . Officials in Saudi Arabia say authorities have arrested three men with alleged al-Qaida links , including one who officials say was preparing for attacks . NNS IN NNP NNP VBP NNS VBP VBN CD NNS IN JJ NNP NNS , VBG CD WP NNS VBP VBD VBG IN NNS . The Interior Ministry says the three used the Internet to spread the ideology of al-Qaida . DT NNP NNP VBZ DT CD VBD DT NN TO VB DT NN IN NNP . It says one of the suspects , identified as Saudi national Abu Osaid al-Falluji , was allegedly involved in recruiting , seeking funding and preparing for terrorist operations . PRP VBZ CD IN DT NNS , VBN IN JJ NN NNP NNP NNP , VBD RB VBN IN NN , VBG NN CC VBG IN JJ NNS . The ministry says the second suspect , a Saudi national identified as Abu Abdullah al-Najdi , attempted to publish an edition of the al-Qaida online newsletter Sawt al-Jihad . DT NN VBZ DT JJ NN , DT JJ NN VBN IN NNP NNP NNP , VBD TO VB DT NN IN DT NNP NN NN NNP NNP . The third suspect also allegedly planned to use the Internet to disseminate a jihadist publication . DT JJ NN RB RB VBN TO VB DT NN TO VB DT NN NN . The Saudi government launched an aggressive anti-terrorism campaign after al-Qaida militants launched dramatic terrorist attacks against Western targets in 2003 . DT JJ NN VBD DT JJ NN NN IN NNP NNS VBD JJ JJ NNS IN JJ NNS IN CD . Washington and Kabul have agreed in principle to gradually transfer most Afghans in U.S. custody to the Afghan government . NNP CC NNP VBP VBN IN NN TO RB VB RBS NNS IN NNP NN TO DT JJ NN . A joint statement issued in Kabul says the Afghan government has agreed to make sure that the returning Afghans pose no threat . DT JJ NN VBN IN NNP VBZ DT JJ NN VBZ VBN TO VB JJ IN DT VBG NNS VBP DT NN . Washington will help Afghanistan in building jails and providing appropriate training . NNP MD VB NNP IN VBG NNS CC VBG JJ NN . President Karzai 's spokesman , Khaleeq Ahmed , said Afghan prisoners from the Guantanamo Bay detention center and the US detention facilities in Afghanistan will be among those handed over . NNP NNP POS NN , NNP NNP , VBD JJ NNS IN DT NNP NNP NN NN CC DT NNP NN NNS IN NNP MD VB IN DT VBN RP . President Bush and Afghan President Hamid Karzai expressed a strong desire to return Afghan detainees to Afghanistan when they met in Washington in May . NNP NNP CC JJ NNP NNP NNP VBD DT JJ NN TO VB JJ NNS TO NNP WRB PRP VBD IN NNP IN NNP . US , Asian , and European stock prices declined Monday , extending a week of losses on the world 's markets . NNP , NNP , CC JJ NN NNS VBD NNP , VBG DT NN IN NNS IN DT NN POS NNS . Major U.S. stock indexes swung between gains and losses in Monday 's volatile trading but were down as much as one percent by the close . NNP NNP NN NNS VBG IN NNS CC NNS IN NNP POS JJ NN CC VBD RB RB RB IN CD NN IN DT NN . Some analysts said traders were worried about mortgage defaults , a strengthening yen , and tumbling stock markets abroad . DT NNS VBD NNS VBD VBN IN NN NNS , DT NN NN , CC VBG NN NNS RB . Major indexes in London , Paris , and Frankfurt also lost as much as one percent . JJ NNS IN NNP , NNP , CC NNP RB VBD RB JJ IN CD NN . Asian stock markets were hit even harder , with major indexes in Japan , Hong Kong , and India down between three and four percent at the close of trading . JJ NN NNS VBD VBN RB RBR , IN JJ NNS IN NNP , NNP NNP , CC NNP RB IN CD CC CD NN IN DT NN IN NN . The losses Monday follow major declines in stock prices last week in many markets . DT NNS NNP VBP JJ NNS IN NN NNS JJ NN IN JJ NNS . An almost nine percent slump in Shanghai last Tuesday triggered a wave of selling on global markets , many of which had been trading near record highs . DT RB CD NN NN IN NNP JJ NNP VBD DT NN IN VBG IN JJ NNS , NN IN WDT VBD VBN VBG IN NN NNS . China is reporting its ninth human bird flu death . NNP VBZ VBG PRP$ JJ JJ NN NN NN . Officials confirmed Sunday that a 32-year-old man in Guangdong province , which borders Hong Kong , died from the H5N1 virus last week . NNS VBD NNP IN DT JJ NN IN NNP NN , WDT VBZ NNP NNP , VBD IN DT NNP NN JJ NN . Authorities in Hong Kong have announced a ban on poultry and live bird imports from Guangdong . NNS IN NNP NNP VBP VBN DT NN IN NN CC JJ NN NNS IN NNP . Meanwhile , French officials report finding bird flu in a dead wild bird on the Mediterranean coast . RB , JJ NNS VBP VBG NN NN IN DT JJ JJ NN IN DT NNP NN . This is several hundred kilometers south of France 's other bird flu outbreak on a turkey farm . DT VBZ JJ CD NNS RB IN NNP POS JJ NN NN NN IN DT NN NN . More than 40 countries have banned French poultry imports . JJR IN CD NNS VBP VBN JJ NN NNS . Also , Poland is reporting its first H5N1 cases in two swans in the northern city of Torun . RB , NNP VBZ VBG PRP$ JJ NNP NNS IN CD NNS IN DT JJ NN IN NNP . Bird flu has killed at least 94 people worldwide since 2003 , mostly in Asia . NN NN VBZ VBN IN JJS CD NNS JJ IN CD , RB IN NNP . Allies of Iran 's president-elect are denying allegations by several Americans held hostage in Iran more than 25 years ago that he played a key role in their detention . NNS IN NNP POS NN VBP VBG NNS IN JJ NNS VBD NN IN NNP JJR IN CD NNS RB IN PRP VBD DT JJ NN IN PRP$ NN . Aides to Mahmoud Ahmadinejad , and several of the 1979 hostage takers , insist he did not participate in the international standoff . NNS TO NNP NNP , CC NN IN DT CD NN NNS , VBP PRP VBD RB VB IN DT JJ NN . In interviews with U.S. news media , several former hostages described Mr. Ahmadinejad as ' a cruel individual ' who interrogated the captives . IN NNS IN NNP NN NNS , JJ JJ NNS VBD NNP NNP IN `` DT JJ NN `` WP VBD DT NNS . But other hostages say they do n't remember him . CC JJ NNS VBP PRP VBP RB VB PRP . Mr. Ahmadinejad was in his early 20 's at the time of the hostage taking and has not publicly addressed the allegations . NNP NNP VBD IN PRP$ JJ NNP POS IN DT NN IN DT NN NN CC VBZ RB RB VBN DT NNS . The White House says it is looking into the allegations . DT NNP NNP VBZ PRP VBZ VBG IN DT NNS . A group of radical Iranian students stormed the U.S. embassy in Tehran in November 1979 and held 52 Americans hostage for 444 days . DT NN IN JJ JJ NNS VBD DT NNP NN IN NNP IN NNP CD CC VBD CD NNS NN IN CD NNS . Los Angeles is one of the world 's most diverse cities , and a summer music series there brings together the city 's many ethnic communities . NNP NNP VBZ CD IN DT NN POS RBS JJ NNS , CC DT NN NN NN EX VBZ RB DT NN POS JJ JJ NNS . A recent performance by Seun Kuti , son of Afro-beat legend Fela Kuti , kicked off this year 's concert series , bringing the sounds of Lagos , Nigeria to downtown Los Angeles . DT JJ NN IN NNP NNP , NN IN JJ NN NNP NNP , VBD RP DT NN POS NN NN , VBG DT NNS IN NNP , NNP TO NN NNP NNP . Six-thousand people came to celebrate the music and the city 's multi-cultural heritage . JJ NNS VBD TO VB DT NN CC DT NN POS JJ NN . Nnamdi Moweta reports . NNP NNP VBZ . Police in Zimbabwe have arrested a nephew of President Robert Mugabe on suspicion of smuggling 30 tons of scarce flour to neighboring Mozambique . NNS IN NNP VBP VBN DT NN IN NNP NNP NNP IN NN IN VBG CD NNS IN JJ NN TO VBG NNP . The state-run Herald newspaper reports Leo Mugabe , a ruling ZANU-PF party member of parliament , is expected to appear in court Thursday . DT JJ NNP NN VBZ NNP NNP , DT NN JJ NN NN IN NN , VBZ VBN TO VB IN NN NNP . The paper says he will face charges of illegally dealing in controlled products . DT NN VBZ PRP MD VB NNS IN RB VBG IN JJ NNS . The report says the smuggled flour was worth about $ 19 million . DT NN VBZ DT JJ NN VBD JJ IN $ CD CD . The Herald says smuggled sugar and flour are sold cheaply in Mozambique , undercutting production from that country 's own industries . DT NNP VBZ JJ NN CC NN VBP VBN RB IN NNP , VBG NN IN DT NN POS JJ NNS . Last year , President Mugabe began an anti-corruption drive that has led to the arrest of several prominent Zimbabwean politicians . JJ NN , NNP NNP VBD DT JJ NN WDT VBZ VBN TO DT NN IN JJ JJ JJ NNS . Over the last five years , Zimbabwe has struggled with hyper-inflation and chronic shortages of food , fuel and cash . IN DT JJ CD NNS , NNP VBZ VBN IN NN CC JJ NNS IN NN , NN CC NN . The U.S. Justice Department is reopening an investigation into the Bush administration 's domestic surveillance program , marking a major reversal in policy under new Attorney General Michael Mukasey . DT NNP NNP NNP VBZ VBG DT NN IN DT NNP NN POS JJ NN NN , VBG DT JJ NN IN NN IN JJ NNP NNP NNP NNP . The probe will focus on the conduct of Justice Department lawyers in approving the program , which allows the National Security Agency to eavesdrop on the e-mail and telephone conversations of Americans without getting prior approval from a special court . DT NN MD VB IN DT NN IN NNP NNP NNS IN VBG DT NN , WDT VBZ DT NNP NNP NNP TO VB IN DT NN CC NN NNS IN NNS IN VBG JJ NN IN DT JJ NN . The Bush administration implemented the program after the September 11 , 2001 terrorist attacks , and said it focused on intercepting international calls and e-mails of Americans and others in the U.S. with suspected terrorism links . DT NNP NN VBD DT NN IN DT NNP CD , CD JJ NNS , CC VBD PRP VBD IN VBG JJ NNS CC NNS IN NNS CC NNS IN DT NNP IN JJ NN NNS . Attorney General Mukasey was formally sworn in Wednesday at a ceremonial event attended by President Bush . NNP NNP NNP VBD RB VBN IN NNP IN DT JJ NN VBN IN NNP NNP . The Justice Department 's Office of Professional Responsibility began the probe in early 2006 , but abandoned it after President Bush denied security clearances to investigators . DT NNP NNP POS NNP IN NNP NNP VBD DT NN IN JJ CD , CC VBD PRP IN NNP NNP VBD NN NNS TO NNS . Iraqi officials say at least five people were killed and several others wounded Monday in two separate insurgent attacks in Baghdad . JJ NNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBD NNP IN CD JJ JJ NNS IN NNP . They say the attacks , involving one suicide car bombing , took place in a southern district of Baghdad and that they were aimed at senior police and government officials . PRP VBP DT NNS , VBG CD NN NN NN , VBD NN IN DT JJ NN IN NNP CC IN PRP VBD VBN IN JJ NNS CC NN NNS . An Iraqi militant group ( the Islamic Army of Iraq ) posted a video on the Internet today that showed a blindfolded man being shot in the back of the head . DT JJ NN NN LRB DT NNP NNP IN NNP RRB VBD DT NN IN DT NN NN WDT VBD DT JJ NN VBG VBN IN DT NN IN DT NN . ( The pictures did not show the victim 's face . ) LRB DT NNS VBD RB VB DT NN POS NN . RRB The group claimed the killing was of American hostage Ronald Allen Schultz , who was abducted earlier this month . DT NN VBD DT NN VBD IN JJ NN NNP NNP NNP , WP VBD VBN RBR DT NN . Meanwhile , the U.S. military says eight high-level detainees from the former Iraqi regime have been freed . RB , DT NNP NN VBZ CD JJ NNS IN DT JJ JJ NN VBP VBN VBN . A spokesman ( Lt. Col. Barry Johnson ) said the men were freed Saturday , after a board found that they were no longer security threats . DT NN LRB NNP NNP NNP NNP RRB VBD DT NNS VBD VBN NNP , IN DT NN VBD IN PRP VBD RB JJR NN NNS . The media watchdog , Reporters Without Borders , says there has been an upsurge in violence against the media in Latin America . DT NNS NN , NNS IN NNS , VBZ EX VBZ VBN DT NN IN NN IN DT NNS IN NNP NNP . In its annual press freedom report released Tuesday , the group said a total of 12 journalists and two media assistants were killed in the region last year . IN PRP$ JJ NN NN NN VBN NNP , DT NN VBD DT NN IN CD NNS CC CD NNS NNS VBD VBN IN DT NN JJ NN . The countries in which the 14 were killed include Brazil , Colombia , Haiti , Peru , Nicaragua and Ecuador . DT NNS IN WDT DT CD VBD VBN VBP NNP , NNP , NNP , NNP , NNP CC NNP . Reporters Without Borders says violence against the media has decreased in several countries , including Bolivia , Guatemala and Haiti . NNS IN NNP VBZ NN IN DT NNS VBZ VBN IN JJ NNS , VBG NNP , NNP CC NNP . The group describes press freedom in Cuba as disastrous and dubs it the region 's only prison for journalists , with 22 currently imprisoned . DT NN VBZ NN NN IN NNP IN JJ CC VBZ PRP DT NN POS JJ NN IN NNS , IN CD RB VBN . Reporters Without Borders released Tuesday 's report to coincide with World Press Freedom Day . NNS IN NNS VBN NNP POS NN TO VB IN NNP NNP NNP NNP . China says it will reopen Tibet to foreign tourists , after closing it during violent protests in March . NNP VBZ PRP MD VB NNP TO JJ NNS , IN VBG PRP IN JJ NNS IN NNP . Chinese state media Tuesday quote regional tourism officials as saying the Tibet Autonomous Region will be opened to outsiders on Wednesday . JJ NN NNS NNP VBP JJ NN NNS IN VBG DT NNP NNP NNP MD VB VBN TO NNS IN NNP . The Xinhua news agency reports that two Swedish tourists will arrive in the Tibetan capital , Lhasa , on Wednesday and four tourists from Singapore will arrive on Sunday . DT NNP NN NN NNS IN CD JJ NNS MD VB IN DT JJ NN , NNP , IN NNP CC CD NNS IN NNP MD VB IN NNP . Tourists have been prevented from traveling to the region since riots against the Chinese government erupted in Lhasa on March 14 , sparking a harsh crackdown by Chinese troops . NNS VBP VBN VBN IN VBG TO DT NN IN NNS IN DT JJ NN VBD IN NNP IN NNP CD , VBG DT JJ NN IN JJ NNS . Tibet 's government-in-exile says more than 200 people died in the crackdown on mostly monk-led protests . NNP POS JJ VBZ JJR IN CD NNS VBD IN DT NN IN RB JJ NNS . China blames Tibetan rioters for the deaths of at least 20 people . NNP VBZ JJ NNS IN DT NNS IN IN JJS CD NNS . A French aid group says it will suspend activities in Darfur because the situation in western Sudan has become too dangerous for its workers . DT JJ NN NN VBZ PRP MD VB NNS IN NNP IN DT NN IN JJ NNP VBZ VBN RB JJ IN PRP$ NNS . The group Medecins du Monde ( Doctors of the World ) said Monday , it has suspended its activities in Darfur for an undetermined period of time . DT NN VBZ NNP NNP LRB NNS IN DT NNP RRB VBD NNP , PRP VBZ VBN PRP$ NNS IN NNP IN DT JJ NN IN NN . Officials said there is an imbalance between the help it is able to provide and the risks to its staff members . NNS VBD EX VBZ DT NN IN DT NN PRP VBZ JJ TO VB CC DT NNS TO PRP$ NN NNS . Medecins du Monde has provided medical care in Darfur since the middle of 2004 , assisting thousands of refugees in the Kalma refugee camp . NNP NNP NNP VBZ VBN JJ NN IN NNP IN DT NN IN CD , VBG NNS IN NNS IN DT NNP NN NN . It also operated mobile clinics to treat refugees in remote villages . PRP RB VBD JJ NNS TO VB NNS IN JJ NNS . Aid groups and United Nations officials have reported a worsening of Darfur 's security situation in recent months . JJ NNS CC NNP NNP NNS VBP VBN DT VBG IN NNP POS NN NN IN JJ NNS . More than 2,00,000 people have died and more than two million others have been displaced since fighting between Darfur rebels and Sudan 's government began in early 2003 . JJR IN CD NNS VBP VBN CC JJR IN CD CD NNS VBP VBN VBN IN VBG IN NNP NNS CC NNP POS NN VBD IN JJ CD . A Human Rights Watch representative says his expulsion from Venezuela following a critical report shows that President Hugo Chavez will not tolerate any criticism . DT NNP NNP NNP NN VBZ PRP$ NN IN NNP VBG DT JJ NN VBZ IN NNP NNP NNP MD RB VB DT NN . HRW 's Director for the Americas Jose Miguel Vivanco spoke to reporters Friday in Sao Paulo , Brazil . NNP POS NNP IN DT NNP NNP NNP NNP VBD TO NNS NNP IN NNP NNP , NNP . Vivanco and his deputy were kicked out of the country NNP CC PRP$ NN VBD VBN IN IN DT NN Thursday after their group released a report saying Venezuela 's human rights policies have suffered under President Chavez . NNP IN PRP$ NN VBD DT NN VBG NNP POS JJ NNS NNS VBP VBN IN NNP NNP . Venezuela 's Foreign Ministry accused HRW of attacking the country 's democratic institutions and illegally interfering in Venezuela 's internal affairs . NNP POS NNP NNP VBD NNP IN VBG DT NN POS JJ NNS CC RB VBG IN NNP POS JJ NNS . The HRW report accused the Chavez government of discriminating against political opponents , undermining freedoms of expression and association and disregarding the need for an independent judiciary . DT NNP NN VBD DT NNP NN IN VBG IN JJ NNS , VBG NNS IN NN CC NN CC VBG DT NN IN DT JJ NN . It also said the government was trying to restrict the work of Venezuelan rights advocates . PRP RB VBD DT NN VBD VBG TO VB DT NN IN JJ NNS NNS . Venezuela is buying naval ships and transport aircraft worth more than $ 1.5 billion from Spain . NNP VBZ VBG JJ NNS CC NN NN NN JJR IN $ CD CD IN NNP . Venezuelan President Hugo Chavez signed the deal with Spanish Defense Minister Jose Bono in Caracas Monday . JJ NNP NNP NNP VBD DT NN IN JJ NNP NNP NNP NNP IN NNP NNP . Under the deal , Venezuela will receive ocean patrol boats , coastal patrol vessels , and maritime surveillance planes . IN DT NN , NNP MD VB NN NN NNS , JJ NN NNS , CC NN NN NNS . Reuters news agency quotes a Venezuelan naval commander , Armando Laguna , as saying the equipment will delivered by 2010 . NNP NN NN VBZ DT JJ JJ NN , NNP NNP , IN VBG DT NN MD VBN IN CD . Last week , the U.S. government threatened to block the transfer of U.S. parts and technology in the planes and boats included in the deal . JJ NN , DT NNP NN VBD TO VB DT NN IN NNP NNS CC NN IN DT NNS CC NNS VBN IN DT NN . Venezuela says it could get technology from other countries if need be . NNP VBZ PRP MD VB NN IN JJ NNS IN NN VB . Venezuela has also signed deals this year for a Brazilian aircraft and 1,00,000 Kalashnikov assault rifles from Russia to combat the drug trade along the border with Colombia . NNP VBZ RB VBN NNS DT NN IN DT JJ NN CC CD NNP NN NNS IN NNP TO VB DT NN NN IN DT NN IN NNP . Israeli aircraft have fired missiles into the Gaza Strip , killing six people , including a senior commander of the Popular Resistance Committee . JJ NN VBP VBN NNS IN DT NNP NNP , VBG CD NNS , VBG DT JJ NN IN DT NNP NNP NNP . The Israeli army said a vehicle carrying several militants was hit Friday as it was leaving a training camp in the southern Gaza town of Rafah . DT JJ NN VBD DT NN VBG JJ NNS VBD VBN NNP IN PRP VBD VBG DT NN NN IN DT JJ NNP NN IN NNP . Palestinian officials say Iyad Abu al-Aynin and his young daughter were among those killed in the attack . JJ NNS VBP NNP NNP NNP CC PRP$ JJ NN VBD IN DT VBN IN DT NN . The Popular Resistance Committee is an umbrella organization with ties to the militant Islamic group Hamas , which took control of the Palestinian government last week . DT NNP NNP NNP VBZ DT NN NN IN NNS TO DT JJ NNP NN NNP , WDT VBD NN IN DT JJ NN JJ NN . Palestinian officials , meanwhile , have been giving conflicting accounts about the Hamas-led government 's willingness to embrace a two-state solution with Israel . JJ NNS , RB , VBP VBN VBG JJ NNS IN DT JJ NN POS NN TO VB DT JJ NN IN NNP . On Friday , Hamas leaders did , however , confirm a report in the Israeli newspaper Haaretzthat the group was trying to broker a deal to extend a truce it has been observing with Israel for the past year . IN NNP , NNP NNS VBD , RB , VBP DT NN IN DT JJ NN NNP DT NN VBD VBG TO NN DT NN TO VB DT NN PRP VBZ VBN VBG IN NNP IN DT JJ NN . Turkish officials say an avalanche has killed at least six people and trapped around six others under snow . JJ NNS VBP DT NN VBZ VBN IN JJS CD NNS CC VBN IN CD NNS IN NN . Officials say the avalanche hit a group of some 15 hikers Sunday on Mount Zigana , in Turkey 's northeastern Gumushane province . NNS VBP DT NN VBD DT NN IN DT CD NNS NNP IN NNP NNP , IN NNP POS JJ NNP NN . A Turkish news agency ( NTV ) says the military has sent rescuers to the scene where several people have been pulled from the snow . DT JJ NN NN LRB NNP RRB VBZ DT NN VBZ VBN NNS TO DT NN WRB JJ NNS VBP VBN VBN IN DT NN . Turkey is wrinkled by rugged mountain ranges that surround and intersect the high , semiarid Anatolian plateau . NNP VBZ VBN IN JJ NN NNS WDT VBP CC VBP DT JJ , JJ JJ NN . Most of Turkey lies within an earthquake zone , and recurrent tremors have been known to cause avalanches in the area . JJS IN NNP VBZ IN DT NN NN , CC JJ NNS VBP VBN VBN TO VB NNS IN DT NN . The European Union has warned Saudi Arabia it will take action at the World Trade Organization , if the kingdom supports a widening Muslim boycott of Danish products . DT NNP NNP VBZ VBN NNP NNP PRP MD VB NN IN DT NNP NNP NNP , IN DT NN VBZ DT NN NN NN IN JJ NNS . EU Trade Commissioner Peter Mandelson issued the warning as protests over cartoons of the Prophet Muhammad spread across the Muslim world . NNP NNP NNP NNP NNP VBD DT NN IN NNS IN NNS IN DT NNP NNP VBD IN DT NNP NN . The cartoons were published in a Danish newspaper in September and include an image of the prophet wearing a turban shaped like a bomb . DT NNS VBD VBN IN DT JJ NN IN NNP CC VBP DT NN IN DT NN VBG DT NN VBN IN DT NN . In the Gaza Strip Monday , gunmen briefly occupied an EU office . IN DT NNP NNP NNP , NNS RB VBD DT NNP NN . And a Danish dairy company , Arla Foods , says its products have been boycotted throughout the Middle East . CC DT JJ NN NN , NNP NNP , VBZ PRP$ NNS VBP VBN VBN IN DT NNP NNP . Last week , Saudi Arabia recalled its ambassador to Denmark . JJ NN , NNP NNP VBD PRP$ NN TO NNP . Libya has already closed its embassy in Denmark . NNP VBZ RB VBN PRP$ NN IN NNP . The latest opinion polls show Canada 's opposition Conservative Party with at least a 10-point lead as the country prepares for Monday 's parliamentary election . DT JJS NN NNS VBP NNP POS NN NNP NNP IN IN JJS DT JJ NN IN DT NN VBZ IN NNP POS JJ NN . If Prime Minister Paul Martin loses on Monday , the Liberal Party will be out of power for the first time in 12 years . IN NNP NNP NNP NNP VBZ IN NNP , DT NNP NNP MD VB IN IN NN IN DT JJ NN IN CD NNS . Mr. Martin , a former finance minister , is hoping the electorate will credit him with Canada 's booming economy . NNP NNP , DT JJ NN NN , VBZ VBG DT NN MD VB PRP IN NNP POS JJ NN . However , his administration has been mired in a corruption scandal that originated under his predecessor , Jean Chretien . RB , PRP$ NN VBZ VBN VBN IN DT NN NN WDT VBD IN PRP$ NN , NNP NNP . Mr. Martin 's opponent is Stephen Harper , who convinced several conservative political alliances to merge and form the Conservative Party in 2003 . NNP NNP POS NN VBZ NNP NNP , WP VBD JJ JJ JJ NNS TO VB CC VB DT NNP NNP IN CD . The prime minister has tried to depict his challenger as an extremist on social issues . DT JJ NN VBZ VBN TO VB PRP$ NN IN DT NN IN JJ NNS . Mr. Harper -- an economist -- has been running on a platform of tax cuts and shifting more power away from the national government to the provinces . NNP NNP : DT NN : VBZ VBN VBG IN DT NN IN NN NNS CC VBG JJR NN RB IN DT JJ NN TO DT NNS . Ukrainian opposition presidential candidate Viktor Yushchenko has accused his rival of trying to steal last month 's flawed election . JJ NN JJ NN NNP NNP VBZ VBN PRP$ NN IN VBG TO VB JJ NN POS JJ NN . During a debate in Kiev Monday , Mr. Yushchenko said the motivating force for a new vote is that Ukrainians desire a democratically elected government . IN DT NN IN NNP NNP , NNP NNP VBD DT NN NN IN DT JJ NN VBZ IN NNS VBP DT RB VBN NN . Prime Minister Viktor Yanukovych tried to distance himself from former supporter and current President Leonid Kuchma . NNP NNP NNP NNP VBD TO VB PRP IN JJ NN CC JJ NNP NNP NNP . He said many Ukrainians lost hope after the breakup of the former Soviet Union , and that it was important for all political forces to work together . PRP VBD JJ NNS VBD NN IN DT NN IN DT JJ NNP NNP , CC IN PRP VBD JJ IN DT JJ NNS TO VB RB . Mr. Yushchenko made his opening remarks in Ukrainian . NNP NNP VBD PRP$ NN NNS IN JJ . Mr. Yanukovych gave his in Russian . NNP NNP VBD PRP$ IN JJ . Tensions remain high as both men have warned of potential clashes between supporters prior to the December 26th vote . NNS VBP JJ IN DT NNS VBP VBN IN JJ NNS IN NNS RB TO DT NNP CD NN . Mr. Yushchenko 's assertion that Ukrainian security officials poisoned him with a highly toxic form of dioxin has further inflamed the political divisions . NNP NNP POS NN IN JJ NN NNS VBD PRP IN DT RB JJ NN IN NN VBZ RB VBN DT JJ NNS . Cuban President Fidel Castro has ordered three days of official state mourning for Pope John Paul , an unusual move for the Communist nation . JJ NNP NNP NNP VBZ VBN CD NNS IN JJ NN NN IN NNP NNP NNP , DT JJ NN IN DT JJ NN . The Cuban leader also suspended planned Communist youth festivities as well as the finals of the national baseball league . DT JJ NN RB VBD VBN JJ NN NNS RB RB IN DT NNS IN DT JJ NN NN . Church bells tolled for over 30 minutes late Saturday , after the pope 's death was announced at the Vatican . NNP VBZ VBN IN IN CD NNS JJ NNP , IN DT NN POS NN VBD VBN IN DT NNP . John Paul was the only pope ever to visit Cuba , in 1998 , and he has been praised by Havana for what members of the Castro government saw as the church leader 's opposition to ' neo-liberal capitalism . ' NNP NNP VBD DT JJ NN RB TO VB NNP , IN CD , CC PRP VBZ VBN VBN IN NNP IN WP NNS IN DT NNP NN VBD IN DT NN NN POS NN TO `` JJ NN . `` The European Union 's anti-piracy naval force says Somali pirates have hijacked a North Korean-flagged cargo ship . DT NNP NNP POS JJ JJ NN VBZ JJ NNS VBP VBN DT JJ JJ NN NN . The EU force says hijackers seized the MV Rim Wednesday in the Gulf of Aden , just south of the Yemeni coast . DT NNP NN VBZ NNS VBD DT NNP NNP NNP IN DT NNP IN NNP , RB RB IN DT JJ NN . In a statement , the EU force says the vessel has altered course and is now heading towards the Somali basin . IN DT NN , DT NNP NN VBZ DT NN VBZ VBN NN CC VBZ RB VBG IN DT JJ NN . The statement says investigators are not certain how many crew members are on board the Libyan-owned ship , and do not know the nationalities of crew members . DT NN VBZ NNS VBP RB JJ WRB JJ NN NNS VBP IN NN DT JJ NN , CC VBP RB VB DT NNS IN NN NNS . The statement says the vessel was outside a recommended travel corridor and had not made contact with maritime authorities in the region . DT NN VBZ DT NN VBD IN DT JJ NN NN CC VBD RB VBN NN IN NN NNS IN DT NN . Somali pirates have hijacked dozens of ships over the last two years , taking in tens of millions of dollars in ransom . JJ NNS VBP VBN NNS IN NNS IN DT JJ CD NNS , VBG IN NNS IN NNS IN NNS IN NN . On Monday , pirates released a Greek-owned cargo ship they captured two months earlier , after receiving a payment of some $ 3 million . IN NNP , VBZ VBN DT JJ NN NN PRP VBD CD NNS RB , IN VBG DT NN IN DT $ CD CD . Catholic and Jewish mourners have gathered for the funeral of the former Roman Catholic archbishop of Paris , Cardinal Jean-Marie Lustiger . JJ CC JJ NNS VBP VBN IN DT NN IN DT JJ NNP NNP NN IN NNP , NNP NNP NNP . Friday 's service was held in Paris at the Notre Dame Cathedral and began with a Jewish prayer . NNP POS NN VBD VBN IN NNP IN DT NNP NNP NNP CC VBD IN DT JJ NN . His coffin was then carried inside the cathedral to be placed in a crypt . PRP$ NN VBD RB VBN IN DT NN TO VB VBN IN DT NN . Lustiger , who was born to Jewish parents before converting to Catholicism , had requested that his funeral include both faiths . NNP , WP VBD VBN TO JJ NNS IN VBG TO NNP , VBD VBN IN PRP$ NN VBP DT NNS . The cardinal was known for his work promoting greater understanding between Catholics and Jews . DT NN VBD VBN IN PRP$ NN VBG JJR NN IN NNPS CC NNPS . He died on Sunday at the age of 80 . PRP VBD IN NNP IN DT NN IN CD . French President Nicolas Sarkozy interrupted his vacation in the United States to attend the funeral . JJ NNP NNP NNP JJ PRP$ NN IN DT NNP NNPS TO VB DT NN . He heads back to the U.S. Friday for a meeting with U.S. President George Bush . PRP VBZ RB TO DT NNP NNP IN DT NN IN NNP NNP NNP NNP . Kazakhstan 's parliament has backed a call for a referendum to extend the rule of patriarchal President Nursultan Nazarbayev to 2020 . NNP POS NN VBZ VBN DT NN IN DT NN TO VB DT NN IN JJ NNP NNP NNP TO CD . Members of the lower house of parliament announced the initiative Wednesday , which could allow the popular president to skip elections scheduled for 2012 . NNS IN DT JJR NN IN NN VBD DT NN NNP , WDT MD VB DT JJ NN TO VB NNS VBN IN CD . The president 's office has not yet commented on the move . DT NN POS NN VBZ RB RB VBN IN DT NN . The 70-year old leader has ruled the former Soviet state for the past 20 years . DT JJ JJ NN VBZ VBN DT JJ JJ NN IN DT JJ CD NNS . His support in the lower house of parliament is practically guaranteed . PRP$ NN IN DT JJR NN IN NN VBZ RB VBN . The chamber is completely dominated by the ruling party , with not a single seat held by the opposition . DT NN VBZ RB VBN IN DT NN NN , IN RB DT JJ NN VBN IN DT NN . Critics complain about a lack of democracy under Mr. Nazarbayev 's rule . NNS VBP IN DT NN IN NN IN NNP NNP POS NN . His supporters praise him for bolstering Kazakhstan 's economy with investments in energy development . PRP$ NNS VBP PRP IN VBG NNP POS NN IN NNS IN NN NN . Nigerian health officials are awaiting the results of tests to see if two sick children may be infected with the lethal strain of the bird flu virus . JJ NN NNS VBP VBG DT NNS IN NNS TO VB IN CD JJ NNS MD VB VBN IN DT JJ NN IN DT NN NN NN . Samples taken Sunday from the children and their family will determine if they are the first human victims of the disease in Africa . NNS VBN NNP IN DT NNS CC PRP$ NN MD VB IN PRP VBP DT JJ JJ NNS IN DT NN IN NNP . The children are from the northern state of Kaduna , where officials have confirmed discovery of a ' highly pathogenic ' version of the H5N1 strain on a chicken farm . DT NNS VBP IN DT JJ NN IN NNP , WRB NNS VBP VBN NN IN DT `` RB JJ `` NN IN DT NNP NN IN DT NN NN . It was Africa 's first reported case of the lethal strain of bird flu . PRP VBD NNP POS JJ JJ NN IN DT JJ NN IN NN NN . That strain has since been confirmed in the Nigerian states of Plateau and Kano , where as many as 20 farms may be affected . DT NN VBZ IN VBN VBN IN DT JJ NNS IN NNP CC NNP , WRB RB JJ IN CD NNS MD VB VBN . International experts continue to arrive in Nigeria to help with containment efforts , that have included the killing of thousands of chickens across the region . NNP NNS VBP TO VB IN NNP TO VB IN NN NNS , WDT VBP VBN DT NN IN NNS IN NNS IN DT NN . President Bush has an aggressive agenda for his trip to Europe during the coming week , including planned talks on a number of Middle East issues . NNP NNP VBZ DT JJ NN IN PRP$ NN TO NNP IN DT JJ NN , VBG JJ NNS IN DT NN IN NNP NNP NNS . In his weekly radio address , Saturday , Mr. Bush said the United States and Europe share common goals of helping rebuild Iraq , spreading democracy across the gobe and working for peace in the Middle East . IN PRP$ JJ NN NN , NNP , NNP NNP VBD DT NNP NNPS CC NNP VBP JJ NNS IN VBG VB NNP , VBG NN IN DT NN CC VBG IN NN IN DT NNP NNP . On Friday , in an interview with European reporters , Mr. Bush said the United States ' past disagreements with European allies over the Iraq war do not diminish their shared values . IN NNP , IN DT NN IN JJ NNS , NNP NNP VBD DT NNP NNPS POS JJ NNS IN JJ NNS IN DT NNP NN VBP RB VB PRP$ JJ NNS . He also said he plans to discuss concerns about the Middle East , Iran 's nuclear program and the environment during three days of talks with European leaders in Brussels , his first stop . PRP RB VBD PRP VBZ TO VB NNS IN DT NNP NNP , NNP POS JJ NN CC DT NN IN CD NNS IN NNS IN JJ NNS IN NNP , PRP$ JJ NN . Mr. Bush will also meet German Chancellor Gerhard Schroeder and Russian President Vladimir Putin during his trip . NNP NNP MD RB VB JJ NNP NNP NNP CC JJ NNP NNP NNP IN PRP$ NN . An Islamic militant group in Iraq says it has taken a U.S. soldier hostage and is threatening to kill him unless Iraqis held in U.S. prisons are freed within 72 hours . DT NNP NN NN IN NNP VBZ PRP VBZ VBN DT NNP NN NN CC VBZ VBG TO VB PRP IN NNS VBD IN NNP NNS VBP VBN IN CD NNS . A group calling itself the Mujahedeen Squadrons made the kidnapping claim and demand in a statement posted on an Islamist website Tuesday , along with a photograph of the alleged captive . DT NN VBG PRP DT NNP NNPS VBD DT NN NN CC NN IN DT NN VBN IN DT NN NN NNP , IN IN DT NN IN DT JJ NN . The Internet statement 's authenticity could not be verified , and the U.S. military said it could not confirm the claim . DT NNP NN POS NN MD RB VB VBN , CC DT NNP NN VBD PRP MD RB VB DT NN . Indonesian health officials have confirmed the country 's fourth death from bird flu , bringing to 63 the number of people across Asia who have died from the virus since 2003 . JJ NN NNS VBP VBN DT NN POS JJ NN IN NN NN , VBG TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NN IN CD . Authorities Friday said recent tests indicate an Indonesian woman who died last week in a Jakarta hospital was infected with the H5N1 strain of avian flu . NNS NNP VBD JJ NNS VBP DT JJ NN WP VBD JJ NN IN DT NNP NN VBD VBN IN DT NNP NN IN JJ NN . Indonesia 's health ministry says it is investigating whether a neighbor of the victim is also infected . NNP POS NN NN VBZ PRP VBZ VBG IN DT NN IN DT NN VBZ RB VBN . The bird flu strain has killed at least 43 people in Vietnam since 2003 , at least 12 in Thailand and four in Cambodia . DT NN NN NN VBZ VBN IN JJS CD NNS IN NNP IN CD , IN JJS CD IN NNP CC CD IN NNP . Health experts fear the virus could infect millions of people worldwide if it changes into a form that can be spread easily by human-to-human contact . NNP NNS VBP DT NN MD VB NNS IN NNS JJ IN PRP VBZ IN DT NN WDT MD VB VBN RB IN JJ NN . Authorities are continuing emergency rescue efforts after Hurricane Katrina slammed the Gulf Coast of the United States . NNS VBP VBG NN NN NNS IN NNP NNP VBD DT NNP NNP IN DT NNP NNPS . Mississippi Governor Haley Barbour says the death toll could be as high as 80 in one Mississippi county alone . NNP NNP NNP NNP VBZ DT NN NN MD VB RB JJ IN CD IN CD NNP NN RB . The powerful storm cut a path of destruction through ( the southern U.S. states of ) Louisiana , Alabama and Mississippi , uprooting trees and destroying homes and buildings . DT JJ NN VBD DT NN IN NN IN LRB DT JJ NNP NNS IN RRB NNP , NNP CC NNP , VBG NNS CC VBG NNS CC NNS . Rescuers used helicopters to pluck stranded residents from rooftops of houses submerged in flooding . NNS VBD NNS TO VB JJ NNS IN NNS IN NNS VBN IN NN . The death toll is expected to rise . DT NN NN VBZ VBN TO VB . Live power lines are down and gas lines ruptured , and authorities are warning residents not to return to their homes yet . JJ NN NNS VBP RB CC NN NNS VBD , CC NNS VBP VBG NNS RB TO VB TO PRP$ NNS RB . The storm came ashore early Monday and has cut power to more than one-million residents . DT NN VBD RB JJ NNP CC VBZ VBN NN TO JJR IN JJ NNS . Officials say it could be weeks before residents are allowed back into the area . NNS VBP PRP MD VB NNS IN NNS VBP VBN RB IN DT NN . Forecasters say the storm is now centered in northern Mississippi , and moving northeast . NNS VBP DT NN VBZ RB VBN IN JJ NNP , CC VBG RB . Japan and North Korea are to hold talks this week on issues that have blocked the two countries from forging diplomatic ties . NNP CC NNP NNP VBP TO VB NNS DT NN IN NNS WDT VBP VBN DT CD NNS IN VBG JJ NNS . Japan 's chief cabinet secretary , Shinzo Abe , said Wednesday the talks will take place in Beijing Saturday and Sunday . NNP POS JJ NN NN , NNP NNP , VBD NNP DT NNS MD VB NN IN NNP NNP CC NNP . He said discussions will focus on the abduction of Japanese citizens by North Korea , as well as reparation requests by North Korea related to Japan 's occupation of the Korean Peninsula from 1910 to World War II . PRP VBD NNS MD VB IN DT NN IN JJ NNS IN NNP NNP , RB RB IN NN NNS IN NNP NNP VBN TO NNP POS NN IN DT JJ NNP IN CD TO NNP NNP NNP . Mr. Abe reiterated Japan 's stance that normalizing relations with North Korea will not be possible until the abduction issue is resolved . NNP NNP VBD NNP POS NN IN VBG NNS IN NNP NNP MD RB VB JJ IN DT NN NN VBZ VBN . North Korea admits kidnapping 13 Japanese citizens to train its spies in the 1970s and 1980s . NNP NNP VBZ VBG CD JJ NNS TO VB PRP$ NNS IN DT NNS CC NNS . Pyongyang has returned five , but says the other eight are dead . NNP VBZ VBN CD , CC VBZ DT JJ CD VBP JJ . Japan wants conclusive proof of their deaths and says there are other cases of suspected abductions that Pyongyang has not properly addressed . NNP VBZ JJ NN IN PRP$ NNS CC VBZ EX VBP JJ NNS IN JJ NNS IN NNP VBZ RB RB VBN . Azerbaijani police have used water cannon and clubs to disperse opposition supporters who were protesting what they consider to be rigged elections and were demanding a new vote . JJ NNS VBP VBN NN NN CC NNS TO VB NN NNS WP VBD VBG WP PRP VBP TO VB VBN NNS CC VBD VBG DT JJ NN . Police waded into the crowd of at least 10,000 activists in a Baku square after protest leaders announced their intention to remain on the scene beyond the time authorities had allotted for the demonstration . NNP VBD IN DT NN IN IN JJS CD NNS IN DT NNP NN IN NN NNS VBD PRP$ NN TO VB IN DT NN IN DT NN NNS VBD VBN IN DT NN . The protesters hurled stones at the officers . DT NNS VBD NNS IN DT NNS . Witnesses reported a number of injuries . NNS VBD DT NN IN NNS . The clashes were the first time police have intervened to disperse protesters , who have staged a series of demonstrations protesting the November 6 parliamentary vote . DT NNS VBD DT JJ NN NNS VBP VBN TO VB NNS , WP VBP VBD DT NN IN NNS VBG DT NNP CD JJ NN . Official election results show the governing party still in control of parliament . JJ NN NNS VBP DT VBG NN RB IN NN IN NN . International monitors said the vote fell below democratic standards . JJ NNS VBD DT NN VBD IN JJ NNS . The U.S. embassy in Baku deplored what it called ' the unjustified and unprovoked use of force against citizens peacefully exercising their right of assembly . ' DT NNP NN IN NNP VBD WP PRP VBD `` DT JJ CC JJ NN IN NN IN NNS RB VBG PRP$ NN IN NN . `` A U.S. newspaper report says some U.S. officials are critical of Afghan President Hamid Karzai 's efforts to curtail Afghanistan 's huge heroin trade . DT NNP NN NN VBZ DT NNP NNS VBP JJ IN JJ NNP NNP NNP POS NNS TO VB NNP POS JJ NN NN . The New York Times , in a story published Sunday , says U.S. diplomats in Kabul expressed alarm at the slow pace of poppy eradication in a recent memo to U.S. Secretary of State Condoleezza Rice . DT NNP NNP NNP , IN DT NN VBN NNP , VBZ NNP NNS IN NNP VBD NN IN DT JJ NN IN NN NN IN DT JJ NN TO NNP NNP IN NNP NNP NNP . The memo accuses local officials and village elders of hampering a U.S.-funded program to destroy poppy crops used to make the illegal drug . DT NN VBZ JJ NNS CC NN NNS IN VBG DT JJ NN TO VB NN NNS VBN TO VB DT JJ NN . And it faults top Afghan officials , including Mr. Karzai for doing little to overcome that resistance . CC PRP VBZ JJ JJ NNS , VBG NNP NNP IN VBG JJ TO VB DT NN . The Times says the criticism of Mr. Karzai reflects mounting frustration among some American officials that plans to uproot large swaths of Afghanistan 's poppy crop have produced little success . DT NNP VBZ DT NN IN NNP NNP VBZ VBG NN IN DT JJ NNS WDT VBZ TO VB JJ NNS IN NNP POS NN NN VBP VBN JJ NN . The newspaper says some State Department officials defended the Afghan president , saying bad weather and logistical problems also contributed to the ineffectiveness of the eradication program . DT NN VBZ DT NNP NNP NNS VBD DT JJ NN , VBG JJ NN CC JJ NNS RB VBD TO DT NN IN DT NN NN . Fighting in southern Somalia continued for a second straight day between militias run by two lawmakers in a dispute over where to locate the country 's transitional government . VBG IN JJ NNP VBD IN DT JJ JJ NN IN NNS VBN IN CD NNS IN DT NN IN WRB TO VB DT NN POS JJ NN . Reports from Baidoa , located several nearly 300 kilometers west of Mogadishu , say fighters commanded by Mohamed Ibrahim Habsadeh took control of the city early Sunday after heavy fighting against forces aligned with Colonel Hassan Mohamed Nur Shargudud . NNS IN NNP , VBN JJ RB CD NNS NN IN NNP , VBP NNS VBN IN NNP NNP NNP VBD NN IN DT NN JJ NNP IN JJ NN IN NNS VBN IN NNP NNP NNP NNP NNP . The French news agency , AFP , reports that at least 15 people have been killed in two days of clashes . DT JJ NN NN , NNP , VBZ IN IN JJS CD NNS VBP VBN VBN IN CD NNS IN NNS . On Saturday , witnesses said at least five people were killed . IN NNP , NNS VBD IN JJS CD NNS VBD VBN . In addition to the location of the transitional government , Mr. Habsadeh and Colonel Shargudud are engaged in a dispute over whether to allow neighboring countries to take part in a regional peacekeeping force . IN NN TO DT NN IN DT JJ NN , NNP NNP CC NNP NNP VBP VBN IN DT NN IN IN TO VB JJ NNS TO VB NN IN DT JJ NN NN . A published report quotes Iraqi President Jalal Talabani as saying an immediate withdrawal of U.S. troops from Iraq would have ' catastrophic consequences ' for the region . DT VBN NN VBZ JJ NNP NNP NNP IN VBG DT JJ NN IN NNP NNS IN NNP MD VB `` JJ NNS `` IN DT NN . In an interview published Tuesday in the French newspaper Le Figaro , President Talabani warned against a withdrawal of U.S.-led coalition forces at this time . IN DT NN VBN NNP IN DT JJ NN NNP NNP , NNP NNP VBD IN DT NN IN JJ NN NNS IN DT NN . He says coalition forces will only withdraw when Iraqi forces are ready to maintain security on their own . PRP VBZ NN NNS MD RB VB WRB JJ NNS VBP JJ TO VB NN IN PRP$ NN . President Talabani also says civil war can still be avoided in Iraq . NNP NNP RB VBZ JJ NN MD RB VB VBN IN NNP . He says Iraqi political leaders understand violence is not an option . PRP VBZ JJ JJ NNS VBP NN VBZ RB DT NN . Mr. Talabani is scheduled to arrive in Paris on Wednesday for his first official visit to France . NNP NNP VBZ VBN TO VB IN NNP IN NNP IN PRP$ JJ JJ NN TO NNP . He is expected to hold talks with French President Jacques Chirac Thursday . PRP VBZ VBN TO VB NNS IN JJ NNP NNP NNP NNP . Governments in several countries in the Middle East have denounced the bomb blasts in London Thursday . NNS IN JJ NNS IN DT NNP NNP VBP VBN DT NN NNS IN NNP NNP . Syria 's President Bashar al-Assad condemned the attacks in a cable sent to Prime Minister Tony Blair . NNP POS NNP NNP NNP VBD DT NNS IN DT NN VBN TO NNP NNP NNP NNP . In Tehran , a spokesman for Iran 's foreign ministry , Hamidreza Asefi , expressed his condolences for the victims and their relatives and said terrorism was inappropriate for achieving any aims . IN NNP , DT NN IN NNP POS JJ NN , NNP NNP , VBD PRP$ NNS IN DT NNS CC PRP$ NNS CC VBD NN VBD JJ IN VBG DT NNS . The kingdom of Saudi Arabia condemned the blasts and said it continues to support intensifying efforts to combat terrorism . DT NN IN NNP NNP VBD DT NNS CC VBD PRP VBZ TO VB VBG NNS TO VB NN . Both Israeli and Palestinian Authority officials condemned the blasts . DT JJ CC JJ NNP NNS VBD DT NNS . And authorities in Kuwait , the United Arab Emirates , Lebanon and Turkey also denounced the attacks . CC NNS IN NNP , DT NNP NNP NNPS , NNP CC NNP RB VBD DT NNS . British Prime Minister Gordon Brown is to make his first visit to the United States next week to meet with President Bush . JJ NNP NNP NNP NNP VBZ TO VB PRP$ JJ NN TO DT NNP NNPS JJ NN TO VB IN NNP NNP . The White House announced the two-day visit Thursday , saying Brown will arrive at Mr. Bush 's Camp David retreat to the north of the U.S. capital , on July 29 . DT NNP NNP VBD DT JJ NN NNP , VBG NNP MD VB IN NNP NNP POS NNP NNP NN TO DT NN IN DT NNP NN , IN NNP CD . A White House spokesman says the two will discuss a broad range of issues , including progress in Iraq and Afghanistan , ending genocide in Darfur and protecting the United States and the United Kingdom from terrorists . DT NNP NNP NN VBZ DT CD MD VB DT JJ NN IN NNS , VBG NN IN NNP CC NNP , VBG NN IN NNP CC VBG DT NNP NNPS CC DT NNP NNP IN NNS . Last month , Prime Minister Brown succeeded Tony Blair , whose critics complained about his support for the U.S.-led war in Iraq . JJ NN , NNP NNP NNP VBD NNP NNP , WP$ NNS VBD IN PRP$ NN IN DT JJ NN IN NNP . A suicide bomber blew himself up in a packed mosque Friday in northwestern Pakistan , killing at least 50 people and wounding around 70 others . DT NN NN VBD PRP RP IN DT VBN NN NNP IN JJ NNP , VBG IN JJS CD NNS CC VBG IN CD NNS . Officials said the mosque , full of worshippers for Friday prayers , was destroyed and has collapsed . NNS VBD DT NN , JJ IN NNS IN NNP NNS , VBD VBN CC VBZ VBN . It is located near a police check point and is visited by paramilitary forces and tribal police . PRP VBZ VBN IN DT NN NN NN CC VBZ VBN IN JJ NNS CC JJ NNS . There has been no claim of responsibility . EX VBZ VBN DT NN IN NN . The attack took place in Jamrud town in the Khyber tribal agency , an area where Islamic insurgents have increased attacks on trucks carrying supplies for U.S. and NATO troops in Afghanistan . DT NN VBD NN IN NNP NN IN DT NNP NN NN , DT NN WRB JJ NNS VBP VBN NNS IN NNS VBG NNS IN NNP CC NNP NNS IN NNP . The bombing came just hours before U.S. President Barack Obama announced a comprehensive new strategy for Afghanistan and Pakistan . DT NN VBD RB NNS IN NNP NNP NNP NNP VBD DT JJ JJ NN IN NNP CC NNP . Mr. Obama says al-Qaida terrorists are planning more attacks on the United States from safe havens in Pakistan and urged Islamabad to be a stronger partner in the fight against militants . NNP NNP VBZ NNP NNS VBP VBG JJR NNS IN DT NNP NNPS IN JJ NNS IN NNP CC VBD NNP TO VB DT JJR NN IN DT NN IN NNS . The international media rights group , Reporters Without Borders , says it is concerned about a decision by Venezuelan authorities to charge a television journalist with defaming the country 's Supreme Court . DT JJ NNS NNS NN , NNS IN NNS , VBZ PRP VBZ VBN IN DT NN IN JJ NNS TO VB DT NN NN IN VBG DT NN POS NNP NNP . The rights group said in a statement Friday that the state prosecutor 's office filed an ' insult ' charge against Venevision TV journalist Napoleon Bravo Wednesday . DT NNS NN VBD IN DT NN NNP IN DT NN NN POS NN VBD DT `` NN `` NN IN NNP NN NN NNP NNP NNP . The group says he faces 15 months in prison , if convicted . DT NN VBZ PRP VBZ CD NNS IN NN , IN VBN . The organization says the charge against Bravo , whose real name is Jose Ovidio Rodriguez Cuesta , stems from a September 2004 broadcast on his program 24 Hours in which he criticized Venezuela 's entire judicial system . DT NN VBZ DT NN IN NNP , WP$ JJ NN VBZ NNP NNP NNP NNP , VBZ IN DT NNP CD NN IN PRP$ NN CD NNS IN WDT PRP VBD NNP POS JJ JJ NN . The Bravo case is the first to be tried under a new Venezuelan law that increases sanctions for press offenses . DT NNP NN VBZ DT JJ TO VB VBN IN DT JJ JJ NN WDT VBZ NNS IN NN NNS . The media rights group says the case demonstrates the law will seriously compromise press freedom in Venezuela . DT NNS NNS NN VBZ DT NN VBZ DT NN MD RB VB NN NN IN NNP . At least one person was killed and several others wounded Sunday when police and demonstrators clashed in Indian-controlled Kashmir . IN JJS CD NN VBD VBN CC JJ NNS VBD NNP WRB NNS CC NNS VBD IN JJ NNP . Police opened fire on the crowd of stone-throwing protesters in Baramullah town , about 55 kilometers outside Srinigar . NNS VBD NN IN DT NN IN JJ NNS IN NNP NN , IN CD NNS IN NNP . Demonstrators chanting pro-freedom slogans had taken to the streets to call for the release of several people who had been arrested during a recent strike . NNS VBG JJ NNS VBD VBN TO DT NNS TO VB IN DT NN IN JJ NNS WP VBD VBN VBN IN DT JJ NN . Anti-India protests have grown in recent months . NNP NNS VBP VBN IN JJ NNS . Last week , separatists called for the United Nations to intervene in determining the fate of the disputed region . JJ NN , NNS VBD IN DT NNP NNPS TO VB IN VBG DT NN IN DT JJ NN . And a pro-independence strike shut down large parts of Indian-controlled Kashmir on Friday . CC DT JJ NN VBD RP JJ NNS IN JJ NNP IN NNP . Kashmir is divided between India and Pakistan , but claimed by both . NNP VBZ VBN IN NNP CC NNP , CC VBN IN DT . Two of the three wars the two countries have fought have been over the disputed territory . CD IN DT CD NNS DT CD NNS VBP VBN VBP VBN IN DT JJ NN . About 70,000 people , mostly civilians , have died in Indian-administered Kashmir since a separatist insurgency began in 1989 . IN CD NNS , RB NNS , VBP VBN IN JJ NNP IN DT JJ NN VBD IN CD . U.S. President Barack Obama holds a working lunch Tuesday with sub-Saharan African leaders on the sidelines of the U.N. General Assembly . NNP NNP NNP NNP VBZ DT VBG NN NNP IN JJ JJ NNS IN DT NNS IN DT NNP NNP NNP . U.S. ambassador to the U.N. Susan Rice said the meeting will focus on how the U.S. can work in partnership with African governments to strengthen Africa 's economic and social development . NNP NN TO DT NNP NNP NNP VBD DT NN MD VB IN WRB DT NNP MD VB IN NN IN JJ NNS TO VB NNP POS JJ CC JJ NN . She said the three main topics will be job creation , creating a better climate for trade and investment , and improving agriculture to feed more people . PRP VBD DT CD JJ NNS MD VB NN NN , VBG DT JJR NN IN NN CC NN , CC VBG NN TO VB JJR NNS . President Obama has previously urged African leaders to fight corruption and to promote the rule of law in order to spark economic growth . NNP NNP VBZ RB VBN JJ NNS TO VB NN CC TO VB DT NN IN NN IN NN TO VB JJ NN . Mr. Obama has made one visit to sub-Saharan Africa since becoming president , to Ghana in July . NNP NNP VBZ VBN CD NN TO JJ NNP IN VBG NN , TO NNP IN NNP . A close aide says Iran 's moderate former President Mohammad Khatami may soon withdraw from the June presidential election . DT JJ NN VBZ NNP POS JJ JJ NNP NNP NNP MD RB VB IN DT NNP JJ NN . Mr. Khatami 's aide told several Western news agencies Monday that he expects an announcement soon . NNP NNP POS NN VBD JJ JJ NN NNS NNP IN PRP VBZ DT NN RB . The news comes after the ex-president spoke to his supporters at a meeting late Sunday . DT NN VBZ IN DT NN VBD TO PRP$ NNS IN DT NN JJ NNP . News agencies quote Mr. Khatami as saying that another moderate candidate , Mir Hossein Mousavi , may face less resistance from some hardliners and so might be a better contender . NN NNS VBP NNP NNP IN VBG IN DT JJ NN , NNP NNP NNP , MD VB JJR NN IN DT NNS CC RB MD VB DT JJR NN . He indicated that he may consider withdrawing to avoid dividing the pro-reformist vote . PRP VBD IN PRP MD VB VBG TO VB VBG DT JJ NN . Mr. Khatami served as president of Iran from 1997 to 2005 . NNP NNP VBD IN NN IN NNP IN CD TO CD . Mr. Mousavi served as Iran 's prime minister throughout most of the 1980s , but his position was scrapped when Iran 's constitution was revised in 1989 . NNP NNP VBD IN NNP POS JJ NN IN JJS IN DT NNS , CC PRP$ NN VBD VBN WRB NNP POS NN VBD VBN IN CD . British military personnel are due to leave Indonesia 's tsunami-devastated Aceh province Sunday after more than a month working on relief efforts . JJ JJ NNS VBP JJ TO VB NNP POS JJ NNP NN NNP IN JJR IN DT NN VBG IN NN NNS . British pilots and other personnel have been in Indonesia since the first week in January . JJ NNS CC JJ NNS VBP VBN IN NNP IN DT JJ NN IN NNP . The British Embassy in Jakarta says a Royal Navy vessel will stay in Indonesian waters . DT NNP NNP IN NNP VBZ DT NNP NNP NN MD VB IN JJ NNS . The United States has already started scaling back military relief efforts in Indonesia by pulling out an aircraft carrier that operated a major helicopter relief operation . DT NNP NNPS VBZ RB VBN VBG RB JJ NN NNS IN NNP IN VBG RP DT NN NN WDT VBD DT JJ NN NN NN . Australia has announced plans to withdraw relief forces , as well . NNP VBZ VBN NNS TO VB NN NNS , RB RB . Indonesia was the nation hardest-hit by the December 26 tsunami . NNP VBD DT NN NN IN DT NNP CD NNS . Indonesian officials say the death toll in the country has risen to at least 1,17,000 , while the number of missing and presumed dead remained at nearly 1,15,000 . JJ NNS VBP DT NN NN IN DT NN VBZ VBN TO IN JJS CD , IN DT NN IN JJ CC JJ NN VBD IN RB CD . Indian police Thursday are questioning a married couple in connection with Sunday 's train bombing that killed 68 people . JJ NN NNP VBP VBG DT JJ NN IN NN IN NNP POS NN NN WDT VBD CD NNS . Security officials say they detained the husband and wife late in Bikaner in northern Rajasthan , an area bordering Pakistan . NN NNS VBP PRP VBD DT NN CC NN RB IN NNP IN JJ NNP , DT NN VBG NNP . Media reports say the man resembles the sketch of a suspect released earlier this week . NNS NNS VBP DT NN VBZ DT NN IN DT NN VBN RBR DT NN . There are conflicting reports about the number of people who have been detained in the ongoing probe , with figures ranging from three to 12 . EX VBP VBG NNS IN DT NN IN NNS WP VBP VBN VBN IN DT JJ NN , IN NNS VBG IN CD CC CD . Also Thursday , Indian authorities transferred the bodies of 12 Pakistanis killed in the attack to their relatives in Pakistan . RB NNP , JJ NNS VBD DT NNS IN CD NNS VBN IN DT NN TO PRP$ NNS IN NNP . Pakistani soldiers carried the coffins across the border and passed them to grieving relatives . JJ NNS VBD DT NNS IN DT NN CC VBD PRP TO VBG NNS . The bombing took place on a train from New Delhi to the Pakistani city of Lahore . DT NN VBD NN IN DT NN IN NNP NNP TO DT JJ NN IN NNP . Two small bombs aboard triggered a fire that engulfed the train about an hour after it left the Indian capital . CD JJ NNS RB VBD DT NN WDT VBD DT NN IN DT NN IN PRP VBD DT JJ NN . Kenya 's Finance Minister Amos Kimunya says violence following the country 's recent disputed election may have cost the Kenyan economy up to $ 1 billion . NNP POS NNP NNP NNP NNP VBZ NN VBG DT NN POS JJ JJ NN MD VB VBN DT JJ NN IN TO $ CD CD . Kimunya says tourism , agriculture , and other sectors were affected by the unrest , but he says the economy is resilient and will recover soon . NNP VBZ NN , NN , CC JJ NNS VBD VBN IN DT NN , CC PRP VBZ DT NN VBZ JJ CC MD VB RB . He also projected a strong seven percent growth rate for the country this year . PRP RB VBD DT JJ CD NN NN NN IN DT NN DT NN . Kenya is East Africa 's largest economy . NNP VBZ NNP NNP POS JJS NN . The Bloomberg financial news service reports Kenya received more than one million tourists in the first nine months of 2007 and is the largest exporter of black tea in the world . DT NNP JJ NN NN NNS NNP VBD JJR IN CD CD NNS IN DT JJ CD NNS IN CD CC VBZ DT JJS NN IN JJ NN IN DT NN . Iraq 's government has ordered its troops to Baghdad 's international airport to reopen the facility after the British company that protects it shut it down in a payment dispute . NNP POS NN VBZ VBN PRP$ NNS TO NNP POS JJ NN TO VB DT NN IN DT JJ NN WDT VBZ PRP VBD PRP RP IN DT NN NN . Acting Transportation Minister Esmat Amer said Friday keeping the airport open is a matter of Iraqi sovereignty . NNP NNP NNP NNP NNP VBD NNP VBG DT NN JJ VBZ DT NN IN JJ NN . He said flights will resume Friday . PRP VBD NNS MD VB NNP . The British security firm Global Strategies Group says the Iraqi government is seven months behind in payments . DT JJ NN NN NNP NNP NNP VBZ DT JJ NN VBZ CD NNS IN IN NNS . The company says it will continue to secure the complex , but flights will be grounded until the bills are paid . DT NN VBZ PRP MD VB TO VB DT NN , CC NNS MD VB VBN IN DT NNS VBP VBN . Meanwhile , in Baghdad , insurgent attacks have left two Iraqis dead and at least six others injured . RB , IN NNP , JJ NNS VBP VBN CD NNS JJ CC IN JJS CD NNS VBN . In other developments , former American hostage Roy Hallums , who was rescued by American troops Wednesday , is on his way home to the United States . IN JJ NNS , JJ NNP NN NNP NNP , WP VBD VBN IN JJ NNS NNP , VBZ IN PRP$ NN NN TO DT NNP NNPS . Most Asian stock markets are closed Thursday , for the Christmas holidays . JJS JJ NN NNS VBP JJ NNP , IN DT NNP NNS . Tokyo 's Nikkei index rose 82 points , nearly one percent , to finish at 8,599 . NNP POS NNP NN VBD CD NNS , RB CD NN , TO VB IN CD . Share prices closed lower in Shanghai and Taipei , but ended higher in Bangkok . NN NNS VBD JJR IN NNP CC NNP , CC VBD JJR IN NNP . Markets are closed in Hong Kong , Jakarta , Manila , Mumbai , Seoul , Sydney and Wellington . NNS VBP VBN IN NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP . In currency trading , the dollar was selling at 90.41 yen , down 0.5 yen from Wednesday . IN NN NN , DT NN VBD VBG IN CD NNS , RB CD NN IN NNP . Afghan President Hamid Karzai says terrorists who are killing foreign soldiers in his country want the international community to fail in its efforts to rebuild war-torn Afghanistan . JJ NNP NNP NNP VBZ NNS WP VBP VBG JJ NNS IN PRP$ NN VBP DT JJ NN TO VB IN PRP$ NNS TO VB JJ NNP . Mr. Karzai told the U.N. General Assembly Wednesday that terrorists see a prosperous Afghanistan as their ultimate defeat . NNP NNP VBD DT NNP NNP NNP NNP IN NNS VBP DT JJ NNP IN PRP$ JJ NN . In a clear reference to neighboring Pakistan , Mr. Karzai told world leaders that ' terrorism does not emanate from within Afghanistan . ' IN DT JJ NN TO VBG NNP , NNP NNP VBD NN NNS IN `` NN VBZ RB VB IN IN NNP . `` He said there is a need to destroy terrorist sanctuaries beyond Afghanistan , and to dismantle all terror networks in the region . PRP VBD EX VBZ DT NN TO VB JJ NNS IN NNP , CC TO VB DT NN NNS IN DT NN . Mr. Karzai 's remarks come just two weeks after Pakistan 's truce with pro-Taleban militants in the North Waziristan region . NNP NNP POS NNS VBP RB CD NNS IN NNP POS NN IN JJ NNS IN DT NNP NNP NN . Pakistani troops agreed to end their crackdown in the region , and the militants said they will stop harboring foreign terrorists and will stop crossing into Afghanistan to launch ambushes . JJ NNS VBD TO VB PRP$ NN IN DT NN , CC DT NNS VBD PRP MD VB VBG JJ NNS CC MD VB VBG IN NNP TO VB NNS . Norway has pulled out of the Nordic Combined team event at the Turin Olympics in Italy because nearly the entire team has become ill . NNP VBZ VBN IN IN DT NNP NNP NN NN IN DT NNP NNP IN NNP IN RB DT JJ NN VBZ VBN JJ . Norwegian spokesman Tom Dahl Froeshaug said Tuesday that only one member of the four-man team is healthy enough to compete . JJ NN NNP NNP NNP VBD NNP IN RB CD NN IN DT JJ NN VBZ JJ RB TO VB . He says an infection has swept through the team that won the world championship last year . PRP VBZ DT NN VBZ VBN IN DT NN WDT VBD DT NN NN JJ NN . The Nordic Combined event includes ski jumping off the large hill , and the 4x5-kilometer cross-country ski race . DT NNP NNP NN VBZ NN VBG RP DT JJ NN , CC DT JJ JJ NN NN . The Norwegians are hoping to be ready for the individual sprint competition next Tuesday . DT NNS VBP VBG TO VB JJ IN DT JJ NN NN IN NNP . The outgoing president of Ukraine , Leonid Kuchma , says there will not be a revolution in his country over the nation 's hotly contested presidential election . DT JJ NN IN NNP , NNP NNP , VBZ EX MD RB VB DT NN IN PRP$ NN IN DT NN POS RB VBN JJ NN . On the eve of Sunday 's run-off vote , President Kuchma said in a televised address that authorities will not allow instability to erupt over the vote . IN DT NN IN NNP POS NN NN , NNP NNP VBD IN DT JJ NN IN NNS MD RB VB NN TO VB IN DT NN . Opposition candidate Viktor Yushchenko has warned that his supporters will stage massive demonstrations if electoral fraud is discovered . NN NN NNP NNP VBZ VBN IN PRP$ NNS MD VB JJ NNS IN JJ NN VBZ VBN . The United States has warned it will review its relations with Ukraine if the election fails to be free or fair . DT NNP NNP VBZ VBN PRP MD VB PRP$ NNS IN NNP IN DT NN VBZ TO VB JJ CC JJ . Mr. Yushchenko , with just under 40 percent support , edged out Prime Minister Viktor Yanukovych by a half of percentage point in the first round of voting on October 31 . NNP NNP , IN RB IN CD NN NN , VBD RP NNP NNP NNP NNP IN DT NN IN NN NN IN DT JJ NN IN NN IN NNP CD . International observers said the October balloting fell short of democratic standards . NNP NNS VBD DT NNP NN VBD RB IN JJ NNS . Supporters of Nigerian Vice President Atiku Abubakar have launched a new political party to oppose a possible re-election effort by President Olusegun Obasanjo . NNS IN JJ NNP NNP NNP NNP VBP VBN DT JJ JJ NN TO VB DT JJ NN NN IN NNP NNP NNP . They say the new party , the Advanced Congress of Democrats , will allow Mr. Abubakar to contest next year 's presidential elections and help rally opponents of the president . PRP VBP DT JJ NN , DT NNP NNP IN NNPS , MD VB NNP NNP TO NN IN NN POS JJ NNS CC VB VB NNS IN DT NN . The spokesman for the new party , Lai Mohammed , tells VOA that efforts to amend the constitution to allow Mr. Obasanjo 's re-election are ' unconstitutional , immoral and illegal . ' DT NN IN DT JJ NN , NNP NNP , VBZ NNP IN NNS TO VB DT NN TO VB NNP NNP POS NN VBP `` JJ , JJ CC JJ . `` Nigeria 's parliament is debating a constitutional amendment proposed by supporters of Mr. Obasanjo that would permit presidents three terms in office instead of two . NNP POS NN VBZ VBG DT JJ NN VBN IN NNS IN NNP NNP WDT MD VB NNS CD NNS IN NN IN IN CD . The president has not yet said whether he will run for a third term if the measure passes . DT NN VBZ RB RB VBN IN PRP MD VB IN DT JJ NN IN DT NN VBZ . Mr. Abubakar announced his intention to run for president earlier this month . NNP NNP VBD PRP$ NN TO VB IN NN RBR DT NN . The rebel Lord 's Resistance Army has killed at least eight people in a new series of attacks in southern Sudan . DT NN NNP POS NN NNP VBZ VBN IN JJS CD NNS IN DT JJ NN IN NNS IN JJ NNP . Local officials say LRA fighters attacked villages near Yambio , the capital of Western Equatoria state , on Friday and Saturday . JJ NNS VBP NNP NNS VBD NNS IN NNP , DT NN IN JJ NNP NN , IN NNP CC NNP . They say all of those killed were civilians . PRP VBP DT IN DT VBN VBD NNS . The LRA is originally from Uganda but has evolved into a roaming band of fighters causing terror across central Africa . DT NNP VBZ RB IN NNP CC VBZ VBN IN DT VBG NN IN NNS VBG NN IN JJ NNP . Last month , Human Rights Watch said the group had killed more than 250 people in the Central African Republic and the Democratic Republic of Congo over the previous year and a half . JJ NN , NNP NNP NNP VBD DT NN VBD VBN RBR IN CD NNS IN DT NNP NNP NNP CC DT JJ NNP IN NNP IN DT JJ NN CC DT NN . It said nearly 700 others were kidnapped and forced to be either soldiers or sex slaves . PRP VBD RB CD NNS VBD VBN CC VBN TO VB DT NNS CC NN NNS . Ugandan forces have chased the rebels in neighboring countries but have failed to stop the attacks or catch LRA leader Joseph Kony . JJ NNS VBP VBN DT NNS IN VBG NNS CC VBP VBN TO VB DT NNS CC VB NNP NN NNP NNP . Kony is wanted by the International Criminal Court for alleged crimes against humanity . NNP VBZ VBN IN DT NNP NNP NNP IN JJ NNS IN NN . A Togolese general says the military has agreed to return the country to ' constitutional order ' to resolve the crisis over the installation of President Faure Gnassingbe . DT JJ NN VBZ DT NN VBZ VBN TO VB DT NN TO `` JJ NN `` TO VB DT NN IN DT NN IN NNP NNP NNP . General Seyi Memene said the military agreed to the move after talks Tuesday with West African diplomats . NNP NNP NNP VBD DT NN VBD TO DT NN IN NNS NNP IN JJ JJ NNS . He did not say weather elections will be held within 60 days as specified under Togo 's former constitution . PRP VBD RB VB NN NNS MD VB VBN IN CD NNS IN VBN IN NNP POS JJ NN . Lawmakers amended the constitution earlier this month after the death of longtime President Gnassingbe Eyadema , allowing his son to serve out his term until 2008 . NNS VBD DT NN RBR DT NN IN DT NN IN JJ NNP NNP NNP , VBG PRP$ NN TO VB RP PRP$ NN IN CD . The regional grouping , known as the Economic Community of West African States ( ECOWAS ) , has threatened sanctions against the Togolese government if it does not hold fresh elections . DT JJ NN , VBN IN DT NNP NNP IN NNP NNP NNP LRB NNP RRB , VBZ VBN NNS IN DT JJ NN IN PRP VBZ RB VB JJ NNS . Iran 's leaders have sent their condolences to the grieving families of the victims of a mosque fire that killed 59 worshippers in Tehran Monday . NNP POS NNS VBP VBN PRP$ NNS TO DT VBG NNS IN DT NNS IN DT NN NN WDT VBD CD NNS IN NNP NNP . Supreme Leader Ayatollah Ali Khamenei and President Mohammad Khatami issued separate statements Tuesday promising the best possible medical care for the more than 200 injured , and an investigation into the fire 's cause . NNP NNP NNP NNP NNP CC NNP NNP NNP VBD JJ NNS NNP VBG DT JJS JJ JJ NN IN DT JJR IN CD NN , CC DT NN IN DT NN POS NN . No official cause has been determined , but initial reports point to a kerosene heater that ignited either a curtain or a woman 's veil , setting the Arg mosque on fire . DT NN NN VBZ VBN VBN , CC JJ NNS VBP TO DT NN NN WDT VBD RB DT NN CC DT NN POS NN , VBG DT NNP NN IN NN . The fire broke out during evening prayers in the women 's section of the mosque . DT NN VBD RP IN NN NNS IN DT NNS POS NN IN DT NN . Witnesses said the flames spread quickly , and dozens of worshippers were killed or injured from a stampede triggered by panic . NNS VBD DT NNS VBD RB , CC NNS IN NNS VBD VBN CC VBN IN DT NN VBN IN NN . Eight Chinese laborers who were held hostage by Iraqi militants for five days last week are on their way home . CD JJ NNS WP VBD VBN NN IN JJ NNS IN CD NNS JJ NN VBP IN PRP$ NN NN . The group flew out of Baghdad earlier Tuesday , accompanied by several Chinese diplomats . DT NN VBD IN IN NNP RBR NNP , VBN IN JJ JJ NNS . After a brief stop in Amman , Jordan , they will fly on to Beijing . IN DT JJ NN IN NNP , NNP , PRP MD VB IN TO NNP . The eight men were driving to Jordan when they were kidnapped last Tuesday . DT CD NNS VBD VBG TO NNP WRB PRP VBD VBN JJ NNP . The kidnappers released a video threatening to kill the Chinese workers if Beijing did not explain why they were in Iraq . DT NNS VBD DT NN VBG TO VB DT JJ NNS IN NNP VBD RB VB WRB PRP VBD IN NNP . The laborers were turned over to a Chinese embassy official at a mosque in Ramdi on Sunday . DT NNS VBD VBN RP TO DT JJ NN NN IN DT NN IN NNP IN NNP . The insurgents said they released the men after Beijing promised to discourage its citizens from traveling to Iraq . DT NNS VBD PRP VBD DT NNS IN NNP VBD TO VB PRP$ NNS IN VBG TO NNP . The Nepalese military says it has confiscated explosives , bombs , communication devices and other weapons belonging to Maoist rebels that could have been used in several attacks . DT JJ NN VBZ PRP VBZ VBN NNS , NNS , NN NNS CC JJ NNS VBG TO NNP NNS WDT MD VB VBN VBN IN JJ NNS . A Royal Nepalese Army spokesman , Brigadier-General Deepak Gurung , told journalists in Kathmandu Tuesday the weapons were recovered from various Maoist hideouts in and around the nation 's capital . DT NNP JJ NNP NN , JJ NNP NNP , VBD NNS IN NNP NNP DT NNS VBD VBN IN JJ NNP NNS IN CC IN DT NN POS NN . The army confiscated the weapons as Maoist rebels escalated their attacks ahead of a January 13 deadline set by Prime Minister Sher Bahadur Deuba for the Maoists to resume peace talks . DT NN VBD DT NNS IN JJ NNS VBD PRP$ NNS RB IN DT NNP CD NN VBN IN NNP NNP NNP NNP NNP IN DT NNS TO VB NN NNS . Maoist rebels have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state . NNP NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN . So far , the conflict has claimed more than 10,000 lives . RB RB , DT NN VBZ VBN JJR IN CD NNS . The U.N. refugee agency says the death toll has risen to 91 from two boats that capsized off the coast of Yemen while crossing from the Horn of Africa . DT NNP NN NN VBZ DT NN NN VBZ VBN TO CD IN CD NNS WDT VBD RP DT NN IN NNP IN VBG IN DT NNP IN NNP . The U.N. High Commissioner for Refugees says another 114 people are still missing from the two vessels . DT NNP NNP NNP IN NNP VBZ DT CD NNS VBP RB VBG IN DT CD NNS . They were illegally carrying a total of 256 Somalis and Ethiopians across the Gulf of Aden a few days ago . PRP VBD RB VBG DT NN IN CD NNS CC NNS IN DT NNP IN NNP DT JJ NNS RB . It says a total of 51 people survived the voyages , noting that rescue operations continue along the Yemeni coast . PRP VBZ DT NN IN CD NNS VBD DT NNS , VBG IN NN NNS VBP IN DT JJ NN . The U.N. agency says a new wave of human smuggling vessels has been trying to cross the Gulf of Aden after a two-week lull stemming from bad weather . DT NNP NN VBZ DT JJ NN IN JJ NN NNS VBZ VBN VBG TO VB DT NNP IN NNP IN DT JJ NN VBG IN JJ NN . Thousands of Somalis and Ethiopians try to reach Yemen each year to escape poverty in their home countries . NNS IN NNS CC NNS VBP TO VB NNP DT NN TO VB NN IN PRP$ NN NNS . A German man , allegedly held in a U.S. secret prison in Afghanistan , says he has identified a German police official who visited him there . DT JJ NN , RB VBN IN DT NNP NN NN IN NNP , VBZ PRP VBZ VBN DT JJ NN NN WP VBD PRP RB . Khalid al-Masri , a German citizen of Lebanese descent , has said he was seized by CIA agents in Macedonia in 2003 and taken to Afghanistan , where he was interrogated as a terrorism suspect . NNP NNP , DT JJ NN IN JJ NN , VBZ VBN PRP VBD VBN IN NNP NNS IN NNP IN CD CC VBN TO NNP , WRB PRP VBD VBN IN DT NN NN . Masri has filed suit against the CIA for wrongful imprisonment , and German prosecutors are probing whether German officials had knowledge of his arrest . NNP VBZ VBN NN IN DT NNP IN JJ NN , CC JJ NNS VBP VBG IN JJ NNS VBD NN IN PRP$ NN . Prosecutors said Tuesday that Masri was ' 90 percent ' certain that a man in a police line-up was the official who visited him in prison . NNS VBD NNP IN NNP VBD `` CD NN `` JJ IN DT NN IN DT NN NN VBD DT NN WP VBD PRP IN NN . However , they said they were concerned that Masri was not absolutely certain . RB , PRP VBD PRP VBD VBN IN NNP VBD RB RB JJ . German officials have denied any knowledge of the case until Masri was released in Albania . JJ NNS VBP VBN DT NN IN DT NN IN NNP VBD VBN IN NNP . Authorities in military-ruled Burma have called on people to report terrorists , following two explosions and the discovery of a mine in Bago division over the last five days . NNS IN JJ NNP VBP VBN IN NNS TO VB NNS , VBG CD NNS CC DT NN IN DT NN IN NNP NN IN DT JJ CD NNS . The official New Light of Myanmar newspaper on Saturday blamed the bombings on anti-government organizations and armed terrorist groups . DT JJ NNP NNP IN NNP NN IN NNP VBD DT NNS IN JJ NNS CC JJ JJ NNS . The paper said a bomb blast occurred Friday night on a wooden bridge near the village of Kyauk-ein-su . DT NN VBD DT NN NN VBD NNP NN IN DT JJ NN IN DT NN IN NNP . That blast was followed about 10 minutes later by an explosion near an empty house in the village of Sar-dan . DT NN VBD VBN IN CD NNS RB IN DT NN IN DT JJ NN IN DT NN IN NNP . No casualties were reported in either explosion . DT NNS VBD VBN IN DT NN . The report also said an improvised mine had been found last Sunday in Kanyutkwin , Phyu township after authorities received a tip . DT NN RB VBD DT JJ NN VBD VBN VBN JJ NNP IN NNP , NNP NN IN NNS VBD DT NN . The NATO-led mission in Afghanistan has urged civilians to stay away from military patrol vehicles so that they are not mistaken for insurgents . DT JJ NN IN NNP VBZ VBN NNS TO VB RB IN JJ NN NNS RB IN PRP VBP RB VBN IN NNS . A spokesman , Bernd Allert , for NATO 's International Security Assistance Force , ISAF , told reporters Wednesday civilian drivers should behave so they can not be mistaken for a threat . DT NN , NNP NNP , IN NNP POS NNP NNP NNP NNP , NNP , VBD NNS NNP JJ NNS MD VB IN PRP MD RB VB VBN IN DT NN . The spokesman warned that ISAF forces are authorized to fire warning shots if unidentified vehicles get too close . DT NN VBD IN NNP NNS VBP VBN TO VB NN NNS IN JJ NNS VBP RB JJ . The warning is part of a new public awareness campaign aimed at preventing civilian casualties - an issue that has plagued the alliance over the past year . DT NN VBZ NN IN DT JJ JJ NN NN VBN IN VBG JJ NNS IN DT NN WDT VBZ VBN DT NN IN DT JJ NN . It will also include new signs on military vehicles , billboards and television advertisements . PRP MD RB VB JJ NNS IN JJ NNS , NNS CC NN NNS . After several incidents in which civilians were killed during anti-insurgent operations last year , Afghan President Hamid Karzai demanded NATO and the U.S.-led coalition review its military strategy . IN JJ NNS IN WDT NNS VBD VBN IN JJ NNS JJ NN , JJ NNP NNP NNP VBD NNP CC DT JJ NN NN PRP$ JJ NN . Former Vice President Al Gore is joining a venture capital company in the hope of boosting investments in clean energy . JJ JJ NNP NNP NNP VBZ VBG DT NN NN NN IN DT NN IN VBG NNS IN JJ NN . Gore won the Nobel Prize a few weeks ago for his role in sounding the alarm about the dangers of global warming from the carbon put into the atmosphere by burning oil and coal . NNP VBD DT NNP NNP DT JJ NNS IN IN PRP$ NN IN VBG DT NN IN DT NNS IN JJ NN IN DT NN VBN IN DT NN IN VBG NN CC NN . The company - Kleiner , Perkins , Caufield and Byers - was an early investor in small computer-related start-up companies that later blossomed into major companies . DT NN : NNP , NNP , NNP CC NNP : VBD DT JJ NN IN JJ JJ NN NNS WDT RB VBD IN JJ NNS . Gore adds his political skills and clout to the company 's financial resources and expertise . NNP VBZ PRP$ JJ NNS CC NN TO DT NN POS JJ NNS CC NN . He plans to donate his salary to an environmental group . PRP VBZ TO VB PRP$ NN TO DT JJ NN . Pakistani officials say they have arrested a foreigner suspected of links with the al-Qaida terrorist network . JJ NNS VBP PRP VBP VBN DT NN VBN IN NNS IN DT NNP JJ NN . Officials say the suspect was arrested Monday night in a village , Charsadda , northeast of Peshawar , about 50 kilometers from the Afghan border . NNS VBP DT NN VBD VBN NNP NN IN DT NN , NNP , NN IN NNP , IN CD NNS IN DT JJ NN . Pakistani security forces have rounded up dozens of suspected al-Qaida members following the arrest of the network 's reputed third-in-command , Abu Farraj al-Libbi , earlier this month . JJ NN NNS VBP VBN RP NNS IN JJ NNP NNS VBG DT NN IN DT NN POS JJ NN , NNP NNP NNP , RBR DT NN . The U.S. State Department says Libyan leader Moammar Gadhafi declined a U.S. request to meet with the highest ranking U.S. official to visit Libya in decades . DT NNP NNP NNP VBZ JJ NN NNP NNP VBD DT NNP NN TO VB IN DT JJS JJ NNP NN TO VB NNP IN NNS . A State Department spokesman says Deputy Secretary of State John Negroponte instead met with lower-level officials during his visit to Tripoli . DT NNP NNP NN VBZ NNP NNP IN NNP NNP NNP RB VBD IN JJ NNS IN PRP$ NN TO NNP . He says talks focused on Libya completing compensation payments to the families of the victims of the 1988 bombing of Pan Am flight 103 over Lockerbie , Scotland . PRP VBZ NNS VBD IN NNP VBG NN NNS TO DT NNS IN DT NNS IN DT CD NN IN NNP NNP NN CD IN NNP , NNP . They also discussed Libya 's prosecution of five Bulgarian nurses and a Palestinian doctor sentenced to death for allegedly infecting 400 children with HIV . PRP RB VBD NNP POS NN IN CD JJ NNS CC DT JJ NN VBN TO NN IN RB VBG CD NNS IN NNP . Negroponte and the Libyan officials also discussed the crisis in Darfur . NNP CC DT JJ NNS RB VBD DT NN IN NNP . The U.S. restored full diplomatic ties with Libya last year after the government of Mr. Gadhafi renounced terrorism . DT NNP VBD JJ JJ NNS IN NNP JJ NN IN DT NN IN NNP NNP VBD NN . The death toll in Kenya from a lethal batch of illegal alcohol has risen to at least 41 . DT NN NN IN NNP IN DT JJ NN IN JJ NN VBZ VBN TO IN JJS CD . Authorities in the Machakos district south of Nairobi say another 80 people are being treated , with nine of them in critical condition in a Nairobi hospital . NNS IN DT NNP NN NN IN NNP VBP DT CD NNS VBP VBG VBN , IN CD IN PRP IN JJ NN IN DT NNP NN . Several people have gone blind . JJ NNS VBP VBN JJ . The victims drank the homemade brew at a bar in Makutano , a village some 50 kilometers south of Nairobi . DT NNS VBD DT JJ NN IN DT NN IN NNP , DT NN DT CD NNS RB IN NNP . Police are looking for a woman they believe sold the illegal brew . NNS VBP VBG IN DT NN PRP VBP VBN DT JJ NN . Authorities say the drink probably contained methanol to make it more potent . NNS VBP DT NN RB VBD NN TO VB PRP RBR JJ . Cheap , illegal alcoholic drinks , known as chang'aa , are common in Kenya . JJ , JJ JJ NNS , VBN IN NN , VBP JJ IN NNP . In 2000 , more than 100 people died after consuming an illegal homemade drink in Nairobi . IN CD , JJR IN CD NNS VBD IN VBG DT JJ JJ NN IN NNP . Russian President Vladimir Putin has dismissed the president of the southern republic of Chechnya , Alu Alkhanov , and named the region 's prime minister as acting president . JJ NNP NNP NNP VBZ VBN DT NN IN DT JJ NN IN NNP , NNP NNP , CC VBN DT NN POS JJ NN IN JJ NN . Mr. Putin announced the move Thursday during a meeting with Alkhanov . NNP NNP VBD DT NN NNP IN DT NN IN NNP . The Russian leader appointed Chechnya 's Prime Minister Ramzan Kadyrov to replace Alkhanov . DT JJ NN VBN NNP POS NNP NNP NNP NNP TO VB NNP . Kadyrov is the son of the late Chechen president Akhmad Kadyrov , who was assassinated in 2004 . NNP VBZ DT NN IN DT JJ JJ NN NNP NNP , WP VBD VBN IN CD . President Putin appointed Alkhanov as deputy justice minister of the Russian federation . NNP NNP VBD NNP IN JJ NN NN IN DT JJ NN . Kadyrov has denied accusations that militias he controls are behind the abductions and abuse of Chechen separatists and civilians believed to have links with them . NNP VBZ VBN NNS IN NNS PRP VBZ VBP IN DT NNS CC NN IN JJ NNS CC NNS VBN TO VB NNS IN PRP . Major fighting in Chechnya ended in 2001 , but violence remains common in the mostly Muslim region . JJ NN IN NNP VBD IN CD , CC NN VBZ JJ IN DT RB JJ NN . The head of Iran 's powerful Guardian Council says his country will withstand any international sanctions over its nuclear program . DT NN IN NNP POS JJ NNP NNP VBZ PRP$ NN MD VB DT JJ NNS IN PRP$ JJ NN . Ayatollah Ahmad Jannati told state media Friday that Iran is not afraid of such sanctions . NNP NNP NNP VBD NN NNS NNP IN NNP VBZ RB JJ IN JJ NNS . He expressed confidence that Iran will achieve what he called ' its rights . ' PRP VBD NN IN NNP MD VB WP PRP VBD `` PRP$ NNS . `` Britain , France and Germany have been pressing Iran to abandon its nuclear enrichment activities . NNP , NNP CC NNP VBP VBN VBG NNP TO VB PRP$ JJ NN NNS . The United States says the Iranian program is intended to develop a nuclear weapon , a charge Tehran denies . DT NNP NNPS VBZ DT JJ NN VBZ VBN TO VB DT JJ NN , DT NN NNP VBZ . Last month , the Bush administration and the Europeans backed an International Atomic Energy Agency resolution that says Iran could be referred to the United Nations Security Council if it fails to cooperate fully with IAEA inspectors . JJ NN , DT NNP NN CC DT NNS VBD DT NNP NNP NNP NNP NN WDT VBZ NNP MD VB VBN TO DT NNP NNP NNP NNP IN PRP VBZ TO VB RB IN NNP NNS . Such a referral could open the way for international sanctions against Tehran . JJ DT NN MD VB DT NN IN JJ NNS IN NNP . Nepal 's Defense Ministry says at least 29 people - including Maoist rebels , soldiers and police - have been killed in a fierce gunfight in the western part of the country . NNP POS NNP NNP VBZ IN JJS CD NNS : VBG NNP NNS , NNS CC NNS : VBP VBN VBN IN DT JJ NN IN DT JJ NN IN DT NN . An army statement says the clash occurred late Tuesday in the Palpa area , some 250 kilometers west of the capital , Kathmandu . DT NN NN VBZ DT NN VBD JJ NNP IN DT NNP NN , DT CD NNS JJS IN DT NN , NNP . It says 18 rebels , 10 soldiers and a policeman were killed in the fighting . PRP VBZ CD NNS , CD NNS CC DT NN VBD VBN IN DT NN . No other details were immediately available . DT JJ NNS VBD RB JJ . Rebel attacks have increased since the Maoists ended a unilateral cease-fire in early January . NN NNS VBP VBN IN DT NNPS VBD DT JJ NN IN JJ NNP . They have been fighting since 1996 to overthrow Nepal 's constitutional monarchy and replace it with a communist state . PRP VBP VBN VBG IN CD TO VB NNP POS JJ NN CC VB PRP IN DT JJ NN . About 13,000 people have been killed in the war that shattered Nepal 's economy . IN CD NNS VBP VBN VBN IN DT NN WDT VBD NNP POS NN . Media reports say nine people were killed and 17 injured when an avalanche crashed down a mountain and struck a bus in eastern Turkey . NN NNS VBP CD NNS VBD VBN CC CD VBN WRB DT NN VBD RP DT NN CC VBD DT NN IN JJ NNP . The bus was traveling Saturday between the cities of Bitlis and Diyarbakir . DT NN VBD VBG NNP IN DT NNS IN NNP CC NNP . Rescuers are searching the wreck for others who may have been injured . NNS VBP VBG DT NN IN NNS WP MD VB VBN VBN . Iraqi officials say the Iranian military has fired artillery at several villages in northern Iraq where Iran believes Kurdish rebels are based . JJ NNS VBP DT JJ NN VBZ VBN NN IN JJ NNS IN JJ NNP WRB NNP VBZ JJ NNS VBP VBN . Iraqi Kurdish officials say Iranian forces shelled the villages in Iraq 's Sulaimaniyah province near the Iranian border Sunday and Saturday . JJ NNP NNS VBP JJ NNS VBD DT NNS IN NNP POS NNP NN IN DT JJ NN NNP CC NNP . No casualties were reported , but the government of northern Iraq 's Kurdish region says Iranian shelling has caused serious concern among residents . DT NNS VBD VBN , CC DT NN IN JJ NNP POS JJ NN VBZ JJ NN VBZ VBN JJ NN IN NNS . It strongly condemned the bombardment and demanded that it stop immediately . PRP RB VBD DT NN CC VBD IN PRP VB RB . Iran has not confirmed the artillery strikes . NNP VBZ RB VBN DT NN NNS . The Iranian military has frequently shelled areas of northern Iraq it suspects of harboring members of the Kurdish separatist group PEJAK , the Party of Free Life of Kurdistan . DT JJ NN VBZ RB VBN NNS IN JJ NNP PRP VBZ IN VBG NNS IN DT NNP NN NN NNP , DT NNP IN NNP NNP IN NNP . Tehran accuses the group of launching attacks inside Iran from bases in Iraq . NNP VBZ DT NN IN VBG NNS IN NNP IN NNS IN NNP . Iraq 's central government in Baghdad has criticized the Iranian artillery strikes and warned they could harm relations between the two neighbors . NNP POS JJ NN IN NNP VBZ VBN DT JJ NN NNS CC VBD PRP MD VB NNS IN DT CD NNS . Zimbabwe 's economy is growing at a brisk pace despite continuing political uncertainty . NNP POS NN VBZ VBG IN DT JJ NN IN VBG JJ NN . Following a decade of contraction , Zimbabwe 's economy recorded real growth of 5.9 % in 2010 . VBG DT NN IN NN , NNP POS NN VBD JJ NN IN CD NN IN CD . But the government of Zimbabwe still faces a number of difficult economic problems , including a large external debt burden and insufficient formal employment . CC DT NN IN NNP RB VBZ DT NN IN JJ JJ NNS , VBG DT JJ JJ NN NN CC JJ JJ NN . Zimbabwe 's 1998 - 2002 involvement in the war in the Democratic Republic of the Congo drained hundreds of millions of dollars from the economy . NNP POS CD : CD NN IN DT NN IN DT JJ NNP IN DT NNP VBD NNS IN NNS IN NNS IN DT NN . The government 's land reform program , characterized by chaos and violence , has badly damaged the commercial farming sector , the traditional source of exports and foreign exchange and the provider of 4,00,000 jobs , turning Zimbabwe into a net importer of food products . DT NN POS NN NN NN , VBN IN NN CC NN , VBZ RB VBN DT JJ NN NN , DT JJ NN IN NNS CC JJ NN CC DT NN IN CD NNS , VBG NNP IN DT JJ NN IN NN NNS . The EU and the US provide food aid on humanitarian grounds , though on a smaller scale than before . DT NNP CC DT NNP VB NN NN IN JJ NNS , RB IN DT JJR NN IN RB . Until early 2009 , the Reserve Bank of Zimbabwe routinely printed money to fund the budget deficit , causing hyperinflation . IN JJ CD , DT NNP NNP IN NNP RB VBD NN TO VB DT NN NN , VBG NN . The power-sharing government formed in February 2009 has led to some economic improvements , including the cessation of hyperinflation by eliminating the use of the Zimbabwe dollar and removing price controls . DT JJ NN VBN IN NNP CD VBZ VBN TO DT JJ NNS , VBG DT NN IN NN IN VBG DT NN IN DT NNP NN CC VBG NN NNS . The economy is registering its first growth in a decade , but will be reliant on further political improvement for greater growth . DT NN VBZ VBG PRP$ JJ NN IN DT NN , CC MD VB JJ IN JJ JJ NN IN JJR NN . All of the following US Pacific island territories except Midway Atoll constitute the Pacific Remote Islands National Wildlife Refuge ( NWR ) Complex and as such are managed by the Fish and Wildlife Service of the US Department of the Interior . DT IN DT VBG NNP NNP NN NNS IN NNP NNP VBP DT NNP NNP NNP NNP NNP NNP LRB NNP RRB NNP CC IN JJ VBP VBN IN DT NNP CC NNP NNP IN DT NNP NNP IN DT NNP . Midway Atoll NWR has been included in a Refuge Complex with the Hawaiian Islands NWR and also designated as part of Papahanaumokuakea Marine National Monument . NNP NNP NNP VBZ VBN VBN IN DT NN NN IN DT NNP NNP NNP CC RB VBN IN NN IN NNP NNP NNP NNP . These remote refuges are the most widespread collection of marine- and terrestrial-life protected areas on the planet under a single country 's jurisdiction . DT JJ NNS VBP DT RBS JJ NN IN NN CC JJ JJ NNS IN DT NN IN DT JJ NN POS NN . They sustain many endemic species including corals , fish , shellfish , marine mammals , seabirds , water birds , land birds , insects , and vegetation not found elsewhere . PRP VBP JJ JJ NNS VBG NNS , NN , NN , JJ NNS , NNS , NN NNS , NN NNS , NNS , CC NN RB VBN RB . Panama 's dollar-based economy rests primarily on a well-developed services sector that accounts for three-quarters of GDP . NNP POS JJ NN VBZ RB IN DT JJ NNS NN WDT VBZ IN NNS IN NN . Services include operating the Panama Canal , logistics , banking , the Colon Free Zone , insurance , container ports , flagship registry , and tourism . NNPS VBP VBG DT NNP NNP , NNS , NN , DT NNP NNP NNP , NN , NN NNS , NN NN , CC NN . Economic growth will be bolstered by the Panama Canal expansion project that began in 2007 and is scheduled to be completed by 2014 at a cost of $ 5.3 billion - about 25 % of current GDP . JJ NN MD VB VBN IN DT NNP NNP NN NN WDT VBD IN CD CC VBZ VBN TO VB VBN IN CD IN DT NN IN $ CD CD IN RB CD NN IN JJ NN . The expansion project will more than double the Canal 's capacity , enabling it to accommodate ships that are too large to traverse the existing canal . DT NN NN MD RBR IN VB DT NNP POS NN , VBG PRP TO VB NNS WDT VBP RB JJ TO VB DT VBG NN . The United States and China are the top users of the Canal . DT NNP NNPS CC NNP VBP DT JJ NNS IN DT NNP . Panama also plans to construct a metro system in Panama City , valued at $ 1.2 billion and scheduled to be completed by 2014 . NNP RB VBZ TO VB DT NN NN IN NNP NNP , VBN IN $ CD CD CC VBN TO VB VBN IN CD . Panama 's booming transportation and logistics services sectors , along with aggressive infrastructure development projects , will likely lead the economy to continued growth in 2011 . NNP POS JJ NN CC NNS NNS NNS , IN IN JJ NN NN NNS , MD RB VB DT NN TO JJ NN IN CD . Strong economic performance has not translated into broadly shared prosperity , as Panama has the second worst income distribution in Latin America . JJ JJ NN VBZ RB VBN IN RB VBN NN , IN NNP VBZ DT JJ JJS NN NN IN NNP NNP . About 30 % of the population lives in poverty ; however , from 2006 to 2010 poverty was reduced by 10 percentage points , while unemployment dropped from 12 % to 6 % of the labor force . IN CD NN IN DT NN NNS IN NN ; RB , IN CD TO CD NN VBD VBN IN CD NN NNS , IN NN VBD IN CD NN CC CD NN IN DT NN NN . Panama and the United States signed a Trade Promotion Agreement in June 2007 , which , when implemented , will help promote the country 's economic growth . NNP CC DT NNP NNPS VBD DT NNP NNP NNP IN NNP CD , WDT , WRB VBN , MD VB VB DT NN POS JJ NN . Seeking removal from the Organization of Economic Development 's gray-list of tax havens , Panama has also recently signed various double taxation treaties with other nations . VBG NN IN DT NNP IN NNP NNP POS NN IN NN NNS , NNP VBZ RB RB VBD JJ JJ NN NNS IN JJ NNS . Speculation over the existence of a ' southern land ' was not confirmed until the early 1820s when British and American commercial operators and British and Russian national expeditions began exploring the Antarctic Peninsula region and other areas south of the Antarctic Circle . NN IN DT NN IN DT `` JJ NN `` VBD RB VBN IN DT JJ NNS WRB JJ CC JJ JJ NNS CC JJ CC JJ JJ NNS VBD VBG DT NNP NNP NN CC JJ NNS RB IN DT NNP NNP . Not until 1840 was it established that Antarctica was indeed a continent and not just a group of islands or an area of ocean . RB IN CD VBD PRP VBN IN NNP VBD RB DT NN CC RB RB DT NN IN NNS CC DT NN IN NN . Several exploration ' firsts ' were achieved in the early 20th century , but generally the area saw little human activity . JJ NN `` NNS `` VBD VBN IN DT JJ JJ NN , CC RB DT NN VBD JJ JJ NN . Following World War II , however , there was an upsurge in scientific research on the continent . VBG NNP NNP NNP , RB , EX VBD DT NN IN JJ NN IN DT NN . A number of countries have set up a range of year-round and seasonal stations , camps , and refuges to support scientific research in Antarctica . DT NN IN NNS VBP VBN RP DT NN IN JJ CC JJ NNS , NNS , CC VBZ TO VB JJ NN IN NNP . Seven have made territorial claims , but not all countries recognize these claims . CD VBP VBN JJ NNS , CC RB DT NNS VBP DT NNS . In order to form a legal framework for the activities of nations on the continent , an Antarctic Treaty was negotiated that neither denies nor gives recognition to existing territorial claims ; signed in 1959 , it entered into force in 1961 . IN NN TO VB DT JJ NN IN DT NNS IN NNS IN DT NN , DT NNP NNP VBD VBN IN DT VBZ CC VBZ NN TO VBG JJ NNS ; VBN IN CD , PRP VBD IN NN IN CD . Tourism is the mainstay of the small open Aruban economy , together with offshore banking . NNP VBZ DT NN IN DT JJ JJ JJ NN , RB IN JJ NN . Oil refining and storage ended in 2009 . NN NN CC NN VBN IN CD . The rapid growth of the tourism sector over the last decade has resulted in a substantial expansion of other activities . DT JJ NN IN DT NN NN IN DT JJ NN VBZ VBN IN DT JJ NN IN JJ NNS . Over 1.5 million tourists per year visit Aruba with 75 % of those from the US . IN CD CD NNS IN NN NN NNP IN CD NN IN DT IN DT NNP . Construction continues to boom with hotel capacity five times the 1985 level . NN VBZ TO VB IN NN NN CD NNS DT CD NN . Tourist arrivals rebounded strongly following a dip after the 11 September 2001 attacks . NNP NNS VBD RB VBG DT NN IN DT CD NNP CD NNS . The government has made cutting the budget and trade deficits a high priority . DT NN VBZ VBN VBG DT NN CC NN NNS DT JJ NN . AN ASS , carrying a load of wood , passed through a pond . DT NN , VBG DT NN IN NN , VBN IN DT NN . As he was crossing through the water he lost his footing , stumbled and fell , and not being able to rise on account of his load , groaned heavily . IN PRP VBD VBG IN DT NN PRP VBD PRP$ NN , VBD CC VBD , CC RB VBG JJ TO VB IN NN IN PRP$ NN , VBD RB . Some Frogs frequenting the pool heard his lamentation , and said , ' What would you do if you had to live here always as we do , when you make such a fuss about a mere fall into the water ? ' DT NNS VBG DT NN VBD PRP$ NN , CC VBD , `` WP MD PRP VB IN PRP VBD TO VB RB RB IN PRP VBP , WRB PRP VBP JJ DT NN IN DT JJ NN IN DT NN . `` Men often bear little grievances with less courage than they do large misfortunes . NNS RB VBP JJ NNS IN JJR NN IN PRP VBP JJ NNS . Australia 's cricket team has scored 351-7 declared in its second innings , leaving India a massive target of nearly 500 runs after the third day of their first test in Melbourne . NNP POS NN NN VBZ VBN CD VBN IN PRP$ JJ NN , VBG NNP DT JJ NN IN RB CD NNS IN DT JJ NN IN PRP$ JJ NN IN NNP . Australian batsmen Michael Clarke and Phil Jaques led the home side with Clarke scoring 73 runs and Jaques adding another 51 . JJ NNS NNP NNP CC NNP NNP VBD DT NN NN IN NNP VBG CD NNS CC NNP VBG DT CD . Brad Hogg scored 34 runs and Brett Lee added another 12 for Australia . NNP NNP VBD CD NNS CC NNP NNP VBD DT CD IN NNP . Indian bowler Harbhajan Singh took three for 101 while Anil Kumble was two for 102 . JJ NN NNP NNP VBD CD IN CD IN NNP NNP VBD CD IN CD . India was 6 without loss after surviving eight overs before stumps . NNP VBD CD IN NN IN VBG CD NNS IN NNS . The Indians have their work cut out for them - they need 493 runs in 10 wickets . DT NNS VBP PRP$ NN VBN RP IN PRP IN PRP VBP CD NNS IN CD NNS . The highest successful run-chase at Melbourne was England 's 332 runs against Australia in the 1928 - 1929 Ashes series . DT JJS JJ NN IN NNP VBD NNP POS CD NNS IN NNP IN DT CD : CD NNP NN . Only three teams have ever achieved what India must to win the match . RB CD NNS VBP RB VBN WP NNP MD TO VB DT NN . Poland 's defense minister has announced plans to cut his country 's forces in Iraq by almost one third next year . NNP POS NN NN VBZ VBN NNS TO VB PRP$ NN POS NNS IN NNP IN RB CD JJ JJ NN . Minister Jerzy Szmajdzinski said the number of Polish troops remaining in Iraq in mid-February will stand at 1,700 . NNP NNP NNP VBD DT NN IN JJ NNS VBG IN NNP IN NNP MD VB IN CD . He said another 700 will remain in Poland on standby in case of emergency . PRP VBD DT CD MD VB IN NNP IN NN IN NN IN NN . The withdrawal is to follow Iraq 's parliamentary elections . DT NN VBZ TO VB NNP POS JJ NNS . Poland has about 2,400 soldiers in Iraq . NNP VBZ IN CD NNS IN NNP . It is the third largest contributor of troops to the international stabilization forces in that country , after the United States and Britain . PRP VBZ DT JJ JJS NN IN NNS TO DT JJ NN NNS IN DT NN , IN DT NNP NNPS CC NNP . Poland commands a 6,500-strong international force south of Baghdad . NNP VBZ DT JJ JJ NN NN IN NNP . World and European champion Germany remains atop the latest International Football Federation ( FIFA ) women 's soccer rankings , with the Olympic champion U.S. team second . NNP CC JJ NN NNP VBZ IN DT JJS NNP NNP NNP LRB NNP RRB NNS POS NN NNS , IN DT JJ JJ NNP NN NN . Norway is third followed by Brazil , France , and Sweden . NNP VBZ JJ VBN IN NNP , NNP , CC NNP . North Korea is seventh followed by Denmark , which rose one place to eighth . NNP NNP VBZ JJ VBN IN NNP , WDT VBD CD NN TO NN . China dropped one place to ninth in the world and Italy remained in 10th place . NNP VBD CD NN TO VB IN DT NN CC NNP VBD IN JJ NN . Outside the top 10 , the big winner was Russia which came through three Women 's World Cup qualifiers without losing a match and is 13th in the world . IN DT JJ CD , DT JJ NN VBD NNP WDT VBD IN CD NNP POS NNP NNP NNS IN VBG DT NN CC VBZ JJ IN DT NN . There are now 124 teams in the FIFA Women 's World Rankings . EX VBP RB CD NNS IN DT NNP NNP POS NNP NNP . The rankings are published four times a year and the next ranking will be issued December 16 , 2005 . DT NNS VBP VBN CD NNS DT NN CC DT JJ NN MD VB VBN NNP CD , CD . A top Palestinian official has announced a series of new measures to increase public safety and end factional strife in the Gaza Strip . DT JJ NN NN VBZ VBN DT NN IN JJ NNS TO VB JJ NN CC NN JJ NN IN DT NNP NNP . Rashid Abu Shbak , a senior security official said Saturday the measures include the disbanding of the Department of Protection and Security , a group Gazans have nicknamed ' death squad . ' NNP NNP NNP , DT JJ NN NN VBD NNP DT NNS VBP DT NN IN DT NNP IN NNP CC NNP , DT NN NNPS VBP VBN `` NN NN . `` The 70-member squad has faced accusations of corruption and intimidating the public . DT JJ NN VBZ VBN NNS IN NN CC VBG DT NN . Mr. Shbak also announced that the dominant Fatah faction will work to merge its several militant groups in order to end intra-Palestinian violence and factional infighting . NNP NNP RB VBD IN DT JJ NNP NN MD VB TO VB PRP$ JJ JJ NNS IN NN TO VB JJ NN CC JJ NN . Palestinian territories have seen an upsurge in factional strife in the months preceding the death of longtime Palestinian leader Yasser Arafat , who died on November 11 . JJ NNS VBP VBN DT NN IN JJ NN IN DT NNS VBG DT NN IN JJ JJ NN NNP NNP , WP VBD IN NNP CD . Separately , a lecturer at Gaza City 's al-Azhar university was killed when a bomb exploded at his university office . RB , DT NN IN NNP NNP POS JJ NN VBD VBN WRB DT NN VBD IN PRP$ NN NN . Bolivians demanding the nationalization of the country 's energy industry have taken over several oil fields belonging to a Spanish oil company . NNS VBG DT NN IN DT NN POS NN NN VBP VBN RP JJ NN NNS VBG TO DT JJ NN NN . Officials say protesters occupied the fields near the eastern city of Santa Cruz Wednesday . NNS VBP NNS VBD DT NNS IN DT JJ NN IN NNP NNP NNP . The latest protest action comes one day before legislators are scheduled to vote on whether to accept President Carlos Mesa 's resignation . DT JJS NN NN VBZ CD NN IN NNS VBP VBN TO VB IN IN TO VB NNP NNP NNP POS NN . President Mesa submitted his resignation Monday , saying he could no longer lead the poor Andean nation in the face of continuing large demonstrations over his government 's policies . NNP NNP VBD PRP$ NN NNP , VBG PRP MD RB RB VB DT JJ JJ NN IN DT NN IN VBG JJ NNS IN PRP$ NN POS NNS . Mr. Mesa tried to resign earlier this year , but lawmakers rejected his offer . NNP NNP VBD TO VB RBR DT NN , CC NNS VBD PRP$ NN . Thursday 's special legislative session is scheduled to take place in the city of Sucre , south of the capital La Paz . NNP POS JJ JJ NN VBZ VBN TO VB NN IN DT NN IN NNP , NN IN DT NN NNP NNP . The Senate president would be next in line to replace Mr. Mesa . DT NNP NN MD VB JJ IN NN TO VB NNP NNP . France 's Richard Gasquet will meet Max Mirnyi of Belarus in the final of the Nottingham Open tennis tournament Saturday after both scored semifinal wins in England . NNP POS NNP NNP MD VB NNP NNP IN NNP IN DT JJ IN DT NNP NNP NN NN NNP IN DT VBD JJ NNS IN NNP . The fourth-seeded Gasquet beat fifth seed Taylor Dent of the United States in straight sets , 06-Apr , 06-Feb . DT JJ NNP VBD JJ NN NNP NNP IN DT NNP NNPS IN JJ NNS , CD , CD . Mirnyi , seeded eighth , also won in straight sets , but he had a more difficult time . NNP , JJ NN , RB VBD IN JJ NNS , CC PRP VBD DT RBR JJ NN . He beat seventh-seeded Olivier Rochus of Belgium , 06-Apr , 07-May . PRP VBD JJ NNP NNP IN NNP , CD , CD . The grass court tournament is one of several warm-up events for the third major tournament of the year , Wimbledon , which starts Monday in London . DT NN NN NN VBZ CD IN JJ JJ NNS IN DT JJ JJ NN IN DT NN , NNP , WDT VBZ NNP IN NNP . Gasquet will be seeded 27th at the All England Club , while Mirnyi is unseeded . NNP MD VB VBN JJ IN DT NNP NNP NNP , IN NNP VBZ JJ . World oil prices fell $ 2 a barrel on Friday , closing below $ 50 dollars a barrel for the first time since mid-February . NNP NN NNS VBD $ CD DT NN IN NNP , VBG IN $ CD NNS DT NN IN DT JJ NN IN JJ . Crude oil for June delivery was selling at $ 49.5 a barrel at the close of New York trading . JJ NN IN NNP NN VBD VBG IN $ CD DT NN IN DT NN IN NNP NNP NN . The decline follows reports that crude oil supplies are growing and economic growth is slowing in the key U.S. market . DT NN VBZ NNS IN JJ NN NNS VBP VBG CC JJ NN VBZ VBG IN DT JJ NNP NN . Prices spiked earlier when investors thought supplies could not keep up with robust demand . NNS VBD JJR WRB NNS VBD NNS MD RB VB RP IN JJ NN . Pope Benedict XVI is expected to meet with diplomats from Muslim countries and leaders of Italy 's Islamic community Monday to explain comments about Islam that he says were misunderstood . NNP NNP NNP VBZ VBN TO VB IN NNS IN NNP NNS CC NNS IN NNP POS JJ NN NNP TO VB NNS IN NNP IN PRP VBZ VBD VBN . The head of the Pontifical Council for Interreligious Dialogue , Cardinal Paul Poupard , will also attend the meeting at Castel Gandolfo , the Pope 's summer residence outside Rome . DT NN IN DT NNP NNP IN NNP NNP , NNP NNP NNP , MD RB VB DT NN IN NNP NNP , DT NNP POS NN NN IN NNP . Vatican officials hope the meeting will reopen dialogue between the Roman Catholic Church and the Islamic world . NNP NNS VBP DT NN MD VB NN IN DT NNP NNP NNP CC DT JJ NN . Earlier this month , Pope Benedict quoted a 14th-century Byzantine emperor who had criticized some of the teachings of the prophet Muhammad . RBR DT NN , NNP NNP VBD DT JJ NN NN WP VBD VBN DT IN DT NNS IN DT NN NN . The pope has said those are not his own views . DT NN VBZ VBN DT VBP RB PRP$ JJ NNS . On Sunday , the pope praised an Italian nun killed by gunmen last week in Somalia . IN NNP , DT NN VBD DT JJ NN VBN IN NNS JJ NN IN NNP . It has been theorized that Muslim anger over the pope 's remarks was to blame for the killing . PRP VBZ VBN VBN IN NNP NN IN DT NN POS NNS VBD TO VB IN DT NN . Thousands of Muslims worldwide have demonstrated to protest the pope 's remarks . NNS IN NNPS NN VBP VBN TO VB DT NN POS NNS . The U.S military says four American soldiers have been killed in a roadside bomb blast north of Baghdad . DT NNP NN VBZ CD JJ NNS VBP VBN VBN IN DT NN NN NN NN IN NNP . A statement says the incident occurred Thursday in Samarra , some 95 kilometers north of the Iraqi capital . DT NN VBZ DT NN VBD NNP IN NNP , DT CD NNS RB IN DT JJ NN . In Baghdad Wednesday , three car bombs exploded in close succession , killing at least 43 people . IN NNP NNP , CD NN NNS VBD IN JJ NN , VBG IN JJS CD NNS . Meanwhile , Iraqi political leaders are continuing negotiations on a draft constitution . RB , JJ JJ NNS VBP VBG NNS IN DT NN NN . Mahmud Othman , a Kurdish member of the committee drafting the document , tells the French News agency that Wednesday 's deadly bombings have increased global pressure on politicians to wrap up the constitution by the new deadline of August 22 . NNP NNP , DT JJ NN IN DT NN VBG DT NN , VBZ DT NNP NNP NN IN NNP POS JJ NNS VBP VBN JJ NN IN NNS TO VB RP DT NN IN DT JJ NN IN NNP CD . He said ' it has now become a question of who is stronger - the politicians or the insurgents . ' PRP VBD `` PRP VBZ RB VBN DT NN IN WP VBZ JJR IN DT NNS CC DT NNS . `` Jamie Foxx , star of the movie Ray , has won the best actor award and Hilary Swank takes best actress for her role in Million Dollar Baby at the 11th annual Screen Actors Guild Awards . NNP NNP , NN IN DT NN NNP , VBZ VBN DT JJS NN NN CC NNP NNP VBZ JJS NN IN PRP$ NN IN NNP NNP NNP IN DT JJ JJ NNP NNPS NNP NNPS . Cate Blanchett won the supporting-actress honor for her portrayal of Katherine Hepburn in The Aviator while Morgan Freeman captured the supporting-actor prize for his work on Million Dollar Baby . NNP NNP VBD DT JJ NN IN PRP$ NN IN NNP NNP IN DT NNP IN NNP NNP VBD DT JJ NN IN PRP$ NN IN NNP NNP NNP . Other winners at Saturday 's ceremony in Los Angeles include Alias star Jennifer Garner , Tony Shaloub from the television comedy Monk , and the late Jerry Orbach who starred in the drama series Law and Order . JJ NNS IN NNP POS NN IN NNP NNP VBP NNP NN NNP NNP , NNP NNP IN DT NN NN NNP , CC DT JJ NNP NNP WP VBD IN DT NN NN NN CC NN . The cast award for best movie ensemble went to the quirky , road-trip comedy Sideways . DT NN NN IN JJS NN NN VBD TO DT JJ , JJ NN NNS . The Screen Actors Guild winners are among front-runners for the prestigious Oscar Awards to be presented later this month . DT NNP NNPS NNP NNS VBP IN NNS IN DT JJ NNP NNPS TO VB VBN RB DT NN . South Korea 's foreign minister says he thinks the six-party talks on North Korea 's nuclear ambitions may resume in February . NNP NNP POS JJ NN VBZ PRP VBZ DT JJ NNS IN NNP NNP POS JJ NNS MD VB IN NNP . Ban Ki-moon was speaking to reporters at the World Economic Forum in Davos , Switzerland Friday . NNP NNP VBD VBG TO NNS IN DT NNP NNP NNP IN NNP , NNP NNP . Earlier , Japan said it will hold bilateral talks with North Korea in China next week . RB , NNP VBD PRP MD VB JJ NNS IN NNP NNP IN NNP JJ NN . Japanese officials said the working-level talks will focus on Pyongyang 's past abduction of Japanese nationals , normalization of diplomatic ties and North Korea 's nuclear and missile programs . JJ NNS VBD DT JJ NNS MD VB IN NNP POS JJ NN IN JJ NNS , NN IN JJ NNS CC NNP NNP POS JJ CC NN NNS . The latest round of six-party talks on Pyongyang 's nuclear programs has been stalled since November . DT JJS NN IN JJ NNS IN NNP POS JJ NNS VBZ VBN VBN IN NNP . North Korea wants the United States to lift economic sanctions against Pyongyang before returning to the table . NNP NNP VBZ DT NNP NNPS TO VB JJ NNS IN NNP IN VBG TO DT NN . Washington has rejected the demand . NNP VBZ VBN DT NN . Army officials in the Democratic Republic of Congo say an air raid has killed more than 40 Rwandan Hutu rebels . NNP NNS IN DT JJ NNP IN NNP VBP DT NN NN VBZ VBN JJR IN CD JJ NNP NNS . The Thursday strike on the camp where leaders of the Democratic Forces for the Liberation of Rwanda were meeting also wounded several other rebels . DT NNP NN IN DT NN WRB NNS IN DT JJ NNS IN DT NN IN NNP VBD VBG RB VBN JJ JJ NNS . The attack came after the Congolese government gave Rwandan soldiers the go ahead to join forces with its own troops in the east of the country to attack ethnic Hutu militia . DT NN VBD IN DT JJ NN VBD JJ NNS DT NN RB TO VB NNS IN PRP$ JJ NNS IN DT NN IN DT NN TO VB JJ NNP NN . The militia are seen as a root cause of instability in the region . DT NN VBP VBN IN DT NN NN IN NN IN DT NN . Some of their leaders are accused of being behind the 1994 genocide in Rwanda . DT IN PRP$ NNS VBP VBN IN VBG IN DT CD NN IN NNP . Meanwhile , a coalition of human rights groups says protecting civilians in the eastern Democratic Republic of Congo should be a top priority as Congolese and Rwandan government forces pursue their joint operation . RB , DT NN IN JJ NNS NNS VBZ VBG NNS IN DT JJ JJ NNP IN NNP MD VB DT JJ NN IN JJ CC JJ NN NNS VB PRP$ JJ NN . Chinese authorities have suspended poultry exports from the western province of Xinjiang to Hong Kong because of an outbreak of bird flu . JJ NNS VBP VBN NN NNS IN DT JJ NN IN NNP TO NNP NNP IN IN DT NN IN NN NN . China notified Hong Kong Wednesday that it has culled more than 13,000 geese at a farm in Xinjiang . NNP VBD NNP NNP NNP IN PRP VBZ VBN JJR IN CD NNS IN DT NN IN NNP . A government statement says hundreds of dead geese were found on the farm and that tests showed they had died from the H5N1 avian flu strain , which can be lethal to humans . DT NN NN VBZ NNS IN JJ NNS VBD VBN IN DT NN CC IN NNS VBD PRP VBD VBN IN DT NNP JJ NN NN , WDT MD VB JJ TO NNS . It said officials in Xinjiang have carried out vaccinations on birds at all nearby poultry farms . PRP VBD NNS IN NNP VBP VBN RP NNS IN NNS IN DT JJ NN NNS . Hong Kong says it has not imported any live birds or poultry meat from Xinjiang and the suspension of exports is merely a precaution . NNP NNP VBZ PRP VBZ RB VBN DT JJ NNS CC JJ NN IN NNP CC DT NN IN NNS VBZ RB DT NN . The U.S. Undersecretary for Public Diplomacy is set to lead a delegation of business executives to Central America next week . DT NNP NN IN NNP NNP VBZ VBN TO VB DT NN IN NN NNS TO NNP NNP JJ NN . A statement issued Wednesday by the State Department says Karen Hughes will be accompanied by chief executives of major U.S companies such as PepsiCo and JPMorgan Private Bank . DT NN VBN NNP IN DT NNP NNP VBZ NNP NNP MD VB VBN IN JJ NNS IN JJ NNPS NNS JJ IN NNP CC NNP NNP NNP . The delegation will visit Guatemala , Honduras and El Salvador , where a series of natural disasters damaged economies in the region . DT NN MD VB NNP , NNP CC NNP NNP , WRB DT NN IN JJ NNS VBN NNS IN DT NN . The trip aims to encourage private sector assistance for reconstruction efforts in the area . DT NN VBZ TO VB JJ NN NN IN NN NNS IN DT NN . President Bush has asked the business leaders to see U.S. assistance efforts already underway . NNP NNP VBZ VBN DT NN NNS TO VB NNP NN NNS RB RB . The trip will last December 4 to December 6 . DT NN MD VB NNP CD TO NNP CD . NATO has announced it will deploy 2,000 more troops to Afghanistan ahead of parliamentary elections there in September . NNP VBZ VBN PRP MD VB CD JJR NNS TO NNP RB IN JJ NNS RB IN NNP . A spokeswoman for the NATO-led peacekeeping force in Afghanistan says the troops are to be deployed in July , about six weeks before the scheduled polling . DT NN IN DT JJ NN NN IN NNP VBZ DT NNS VBP TO VB VBN IN NNP , IN CD NNS IN DT VBN NN . The NATO-led International Security Assistance Force now has more than 8,000 troops in Afghanistan . DT JJ NNP NNP NNP NNP RB VBZ JJR IN CD NNS IN NNP . Wednesday 's announcement came as Afghan President Hamid Karzai said he believes attacks will increase and terrorism will rise in the run-up to the election . NNP POS NN VBD IN JJ NNP NNP NNP VBD PRP VBZ NNS MD VB CC NN MD VB IN DT NN TO DT NN . The September vote will be the first parliamentary elections since the Taleban regime was toppled in 2001 . DT NNP NN MD VB DT JJ JJ NNS IN DT NNP NN VBD VBN IN CD . Italian defender Marco Materazzi has appeared before a disciplinary committee in Zurich at the headquarters of football 's world governing body , FIFA . JJ NN NNP NNP VBZ VBN IN DT JJ NN IN NNP IN DT NN IN NN POS NN NN NN , NNP . FIFA wants to find out what he did to provoke French midfielder Zinedine Zidane to head-butt him during Italy 's World Cup title victory over France last Sunday in Berlin . NNP VBZ TO VB RP WP PRP VBD TO VB JJ NN NNP NNP TO VB PRP IN NNP POS NNP NNP NN NN IN NNP JJ NNP IN NNP . A FIFA spokesman refused to provide any details of the meeting . DT NNP NN VBD TO VB DT NNS IN DT NN . Materazzi is being investigated based on statements by Zidane , who was sent off for ramming his head into the defender 's chest during extra time in the match . NNP VBZ VBG VBN VBN IN NNS IN NNP , WP VBD VBN RP IN VBG PRP$ NN IN DT NN POS NN IN JJ NN IN DT NN . Zidane said on French television Wednesday night that Materazzi insulted his mother and sister . NNP VBD IN JJ NN NNP NN IN NNP VBD PRP$ NN CC NN . Materazzi has admitted insulting Zidane , but denied verbally attacking Zidane 's mother . NNP VBZ VBN VBG NNP , CC VBD RB VBG NNP POS NN . Zidane is scheduled to attend a FIFA hearing next Thursday to explain his actions . NNP VBZ VBN TO VB DT NNP NN IN NNP TO VB PRP$ NNS . A decision is expected later that day . DT NN VBZ VBN RB DT NN . FIFA has declined to comment on possible punishments for either individuals or teams . NNP VBZ VBN TO VB IN JJ NNS IN DT NNS CC NNS . Crude oil prices rose Wednesday after a government report showed U.S. supplies of crude oil , gasoline , and other oil products declined last week . JJ NN NNS VBD NNP IN DT NN NN VBD NNP NNS IN JJ NN , NN , CC JJ NN NNS VBD JJ NN . The Energy Department report said crude oil inventories dropped more than one million barrels , a decline of about one-third of a percent . DT NNP NNP NN VBD JJ NN NNS VBD JJR IN CD CD NNS , DT NN IN IN NN IN DT NN . Stocks of gasoline declined around 1.5 percent , which is more than experts had predicted . NNS IN NN VBD IN CD NN , WDT VBZ JJR IN NNS VBD VBN . The price of a barrel of crude oil for future delivery rose 69 cents to $ 77 a barrel in New York . DT NN IN DT NN IN JJ NN IN JJ NN VBD CD NNS TO $ CD DT NN IN NNP NNP . London prices also rose . NNP NNS RB VBD . Diplomats at the United Nations Nuclear Agency say Iran has started small-scale uranium enrichment , a process that produces fuel that can be used in nuclear weapons and reactors . NNS IN DT NNP NNP NNP NNP VBP NNP VBZ VBN JJ NN NN , DT NN WDT VBZ NN WDT MD VB VBN IN JJ NNS CC NNS . The International Atomic Energy Agency officials , speaking on condition of anonymity , say uranium gas has been fed into some machines . DT NNP NNP NNP NNP NNS , VBG IN NN IN NN , VBP NN NN VBZ VBN VBN IN DT NNS . Iran had warned it would resume large-scale enrichment activities after the IAEA referred it to the U.N. Security Council for possible sanctions over its nuclear program . NNP VBD VBN PRP MD VB JJ NN NNS IN DT NNP VBD PRP TO DT NNP NNP NNP IN JJ NNS IN PRP$ JJ NN . Iran also further postponed talks set for this week with Russia about a proposal to process uranium on Russian soil for use in Iran 's nuclear plants . NNP RB RB VBD NNS VBN IN DT NN IN NNP IN DT NN TO VB NN IN JJ NN IN NN IN NNP POS JJ NNS . Russia has been pushing for the plan as a way to ease international concerns that Iran might be aiming to produce weapons-grade uranium . NNP VBZ VBN VBG IN DT NN IN DT NN TO VB JJ NNS IN NNP MD VB VBG TO VB JJ NN . Iran says its nuclear program is only intended to generate electricity . NNP VBZ PRP$ JJ NN VBZ RB VBN TO VB NN . The Palestinian militant group Hamas says Israeli police briefly detained a minister in the new Hamas-led Palestinian government Thursday . DT JJ JJ NN NNP VBZ JJ NN RB VBD DT NN IN DT JJ JJ JJ NN NNP . Officials say Khaled Abu Arafa and his bodyguard were arrested while traveling to the Jerusalem suburb of Izzariya to take control of a political office that had been operated by the previous Fatah administration . NNS VBP NNP NNP NNP CC PRP$ NN VBD VBN IN VBG TO DT NNP NN IN NNP TO VB NN IN DT JJ NN WDT VBD VBN VBN IN DT JJ NNP NN . The two were released several hours later . DT CD VBD VBN JJ NNS RB . Israel considers Hamas a terrorist organization and describes Jerusalem as its eternal capital . NNP VBZ NNP DT JJ NN CC VBZ NNP IN PRP$ JJ NN . As such , Israeli officials have refused to let the militant group conduct any political activity in the city . IN JJ , JJ NNS VBP VBN TO VB DT JJ NN NN DT JJ NN IN DT NN . It was not immediately clear whether Israel will permit the office to operate while Hamas controls the Palestinian government . PRP VBD RB RB JJ IN NNP MD VB DT NN TO VB IN NNP VBZ DT JJ NN . A U.S. scientist says he is withdrawing from a stem cell research project led by a team of South Korean scientists because of concerns over a possible breach of ethics . DT NNP NN VBZ PRP VBZ VBG IN DT NN NN NN NN VBN IN DT NN IN JJ JJ NNS IN IN NNS IN DT JJ NN IN NNS . Gerald Schatten of the University of Pittsburgh , in the northern U.S. state of Pennsylvania , has been working for more than a year with the team , which is led by Hwang Woo-Suk . NNP NNP IN DT NNP IN NNP , IN DT JJ NNP NN IN NNP , VBZ VBN VBG IN JJR IN DT NN IN DT NN , WDT VBZ VBN IN NNP NNP . Mr. Hwang announced last year that his team was the first to clone human embryos and extract embryonic stem cells from them . NNP NNP VBD JJ NN IN PRP$ NN VBD DT JJ TO VB JJ NNS CC VB JJ NN NNS IN PRP . Mr. Schatten says he is withdrawing over allegations the South Korean scientists used eggs donated by a female member of the team . NNP NNP VBZ PRP VBZ VBG RP NNS DT JJ JJ NNS VBD NNS VBN IN DT JJ NN IN DT NN . Widely held ethics principles preclude scientists from accepting donations from underlings in order to avoid any suggestions of coercion . RB VBN NNS NNS VB NNS IN VBG NNS IN NNS IN NN TO VB DT NNS IN NN . Questions have also been raised as to whether the woman was paid for the eggs . NNS VBP RB VBN VBN IN TO IN DT NN VBD VBN IN DT NNS . Mr. Hwang has denied allegations of ethical impropriety . NNP NNP VBZ VBN NNS IN JJ NN . The World Health Organization says an outbreak of deadly Marburg fever in Angola has claimed 127 lives , the highest number of fatalities from the rare virus . DT NNP NNP NNP VBZ DT NN IN JJ NNP NN IN NNP VBZ VBN CD NNS , DT JJS NN IN NNS IN DT JJ NN . However , a spokeswoman for the U.N. agency , Fadela Chaib , said Friday the outbreak can be controlled if people suspected of infection are put in isolation and all their contacts are identified . RB , DT NN IN DT NNP NN , NNP NNP , VBD NNP DT NN MD VB VBN IN NNS VBN IN NN VBP VBN IN NN CC DT PRP$ NNS VBP VBN . The WHO also announced that hospital staff in Italy have put nine patients in isolation , suspected of having had contact with a sufferer in Angola . DT NNP RB VBD IN NN NN IN NNP VBP VBN CD NNS IN NN , VBN IN VBG VBN NN IN DT NN IN NNP . So far , 132 cases of Marburg have been reported , mainly in Angola 's northwestern Uige province . RB RB , CD NNS IN NNP VBP VBN VBN , RB IN NNP POS JJ NNP NN . Two deaths occurred in the capital , Luanda . CD NNS VBD IN DT NN , NNP . Marburg virus is a severe form of hemorrhagic fever similar to Ebola - and is spread through contact with bodily fluids . NNP NN VBZ DT JJ NN IN JJ NN JJ TO NNP : CC VBZ VBN IN NN IN RB NNS . Symptoms include headaches , nausea , vomiting and bloody discharges . NNS VBP NNS , NN , VBG CC JJ NNS . Former Malaysian prime minister Mahathir Mohamad says Australia should be kept out of a new East Asian regional grouping , saying Australians are Europeans , not Asians . JJ JJ JJ NN NNP NNP VBZ NNP MD VB VBN IN IN DT JJ JJ JJ JJ NN , VBG NNS VBP NNS , RB NNS . Asked by reporters Monday if Australia has anything to offer to Asia , Mr. Mahathir replied , ' Nothing . ' VBN IN NNS NNP IN NNP VBZ DT TO VB TO NNP , NNP NNP VBD , `` DT . `` Leaders of the Association of Southeast Asian Nations who met in Laos last week approved Mr. Mahathir 's plan to launch an East Asian regional summit next year . NNS IN DT NNP IN NNP NNP NNPS WP VBD IN NNP JJ NN VBD NNP NNP POS NN TO VB DT JJ JJ JJ NN JJ NN . The summit would probably include China , Japan , South Korea , New Zealand and Australia , in addition to ASEAN members . DT NN MD RB VB NNP , NNP , NNP NNP , NNP NNP CC NNP , IN NN TO NNP NNS . However , Mr. Mahathir has objected to Australia 's participation because Canberra has refused to sign a non-aggression treaty with ASEAN . RB , NNP NNP VBZ VBN TO NNP POS NN IN NNP VBZ VBN TO VB DT JJ NN IN NNP . Australia says such a pact could prevent criticism of the human rights records of countries such as Burma . NNP VBZ PDT DT NN MD VB NN IN DT JJ NNS NNS IN NNS JJ IN NNP . Iran is facing calls to hand over sensitive nuclear documents for analysis , one day after it escaped immediate referral to the United Nations Security Council for its nuclear activities . NNP VBZ VBG NNS TO VB RP JJ JJ NNS IN NN , CD NN IN PRP VBD JJ NN TO DT NNP NNP NNP NNP IN PRP$ JJ NNS . At a meeting Friday in Vienna of the International Atomic Energy Agency 's 35-member board , Britain called for Iran to allow the five main nuclear powers to examine what some experts say are designs for making the explosive core of a nuclear warhead . IN DT NN NNP IN NNP IN DT NNP NNP NNP NNP POS JJ NN , NNP VBD IN NNP TO VB DT CD JJ JJ NNS TO VB WP DT NNS VBP VBP NNS IN VBG DT JJ NN IN DT JJ NN . Iran insists it did not ask for the designs but was given them by Pakistan 's nuclear black market network run by disgraced scientist Abdul Qadeer Khan . NNP VBZ PRP VBD RB VB IN DT NNS CC VBD VBN PRP IN NNP POS JJ JJ NN NN VBN IN JJ NN NNP NNP NNP . The call for examination comes as a report circulating in Vienna says Iran 's top nuclear officials met late last month to discuss resuming their enrichment program . DT NN IN NN VBZ IN DT NN VBG IN NNP VBZ NNP POS JJ JJ NNS VBD RB JJ NN TO VB VBG PRP$ NN NN . In August , Iran restarted uranium conversion - a precursor to enrichment . IN NNP , NNP VBD NN NN IN DT NN TO NN . That move prompted Europe to break off nuclear talks with Tehran . DT NN VBD NNP TO VB RP JJ NNS IN NNP . The United States is considering boosting the number of troops it has in Iraq ahead of elections there set for Jan. 27 . DT NNP NNPS VBZ VBG VBG DT NN IN NNS PRP VBZ IN NNP RB IN NNS RB VBN IN NNP CD . The deputy commander of the U.S. Central Command , Lt.-Gen. Lance Smith , told Friday , the number of additional troops would depend on the security situation following the assault on Fallujah , but would ' probably be an additional brigade 's worth of forces ' -- up to several thousand soldiers . DT NN NN IN DT NNP NNP NNP , NNP NNP NNP , VBD NNP , DT NN IN JJ NNS MD VB IN DT NN NN VBG DT NN IN NNP , CC MD `` RB VB DT JJ NN POS NN IN NNS `` : RP TO JJ CD NNS . Gen. Smith says the Pentagon is primarily considering an extension of the tours of duty of soldiers already in Iraq , because experienced troops are needed to cope with an expected increase in violence . NNP NNP VBZ DT NNP VBZ RB VBG DT NN IN DT NNS IN NN IN NNS RB IN NNP , IN JJ NNS VBP VBN TO VB IN DT VBN NN IN NN . The United States now has about 1,38,000 troops in Iraq . DT NNP NNPS RB VBZ IN CD NNS IN NNP . An advance team of Chinese engineers and medical officers arrived in Sudan 's war-torn Darfur region Saturday . DT NN NN IN JJ NNS CC JJ NNS VBD IN NNP POS JJ NNP NN NNP . A United Nations spokesman says the 135 personnel are the first of a 315-member army engineering unit that will support that joint African Union-U.N. peacekeeping mission to Darfur . DT NNP NNP NN VBZ DT CD NNS VBP DT NN IN DT JJ NN NN NN WDT MD VB DT JJ NNP NNP VBG NN TO NNP . The rest of the Chinese force is due to arrive in December . DT NN IN DT JJ NN VBZ JJ TO VB IN NNP . The Chinese engineering team will dig wells and build roads and bridges in preparation for the deployment of the 26,000-member peacekeeping force scheduled to begin arriving in January . DT JJ NN NN MD VB NNS CC VB NNS CC NNS IN NN IN DT NN IN DT JJ NN NN VBN TO VB VBG IN NNP . That force will replace 7,000 beleaguered African Union peacekeepers . DT NN MD VB CD JJ NNP NNP NNS . The Sudanese government has welcomed the Chinese mission to Darfur . DT JJ NN VBZ VBN DT JJ NN TO NNP . But critics object to Beijing 's involvement because they say Chinese-made weapons that have found their way to the troubled region have contributed to genocide and robbery . CC NNS VBP TO NNP POS NN IN PRP VBP JJ NNS WDT VBP VBN PRP$ NN TO DT JJ NN VBP VBN TO NN CC NN . China is the biggest buyer of Sudan 's oil . NNP VBZ DT JJS NN IN NNP POS NN . An earthquake in southeastern Turkey has injured at least seven people and triggered an avalanche . DT NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN DT NN . Istanbul 's Kandili observatory says a 5.7 magnitude earthquake struck early Saturday in rural Bingol province . NNP POS NNP NN VBZ DT CD NN NN VBD JJ NNP IN JJ NNP NN . It was centered in the town of Karliova . PRP VBD VBN IN DT NN IN NNP . Turkey 's Anatolianews agency says the quake apparently triggered an avalanche in neighboring Erzurum province , and is blocking a highway leading to the village of Cat . NNP POS NNP NN VBZ DT NN RB VBD DT NN IN JJ NNP NN , CC VBZ VBG DT NN VBG TO DT NN IN NNP . At least 20 homes in the area have been damaged . IN JJS CD NNS IN DT NN VBP VBN VBN . Provincial officials say recent heavy snowfall is hampering efforts to reach small villages . JJ NNS VBP JJ JJ NN VBZ VBG NNS TO VB JJ NNS . Earthquakes are common in Turkey . NNS VBP JJ IN NNP . In 2003 , a magnitude 6.4 quake struck the same region , killing 177 people . IN CD , DT NN CD NN VBD DT JJ NN , VBG CD NNS . Coalition forces in Iraq have detained two suspected weapons smugglers the U.S. military says may have ties to the Iranian Revolutionary Guards Qods force . NN NNS IN NNP VBP VBN CD JJ NNS VBZ DT NNP NN VBZ MD VB NNS TO DT JJ NNP NNPS NNP NN . The military issued a statement saying the suspects and weapons were seized during a raid on a rural farm compound in eastern Iraq . DT JJ VBD DT NN VBG DT NNS CC NNS VBD VBN IN DT NN IN DT JJ NN NN IN JJ NNP . The military statement says the suspects may be linked to a network that has been smuggling Explosively Formed Projectiles ( EFPs ) and other weapons , personnel and money from Iran into Iraq . DT JJ NN VBZ DT NNS MD VB VBN TO DT NN WDT VBZ VBN VBG RB VBN NNP LRB NNP RRB CC JJ NNS , NNS CC NN IN NNP IN NNP . Earlier Sunday Iraqi Prime Minister Nouri al-Maliki urged parliament to cancel or shorten its August summer break to pass laws he considers crucial to Iraq 's stability . RB NNP JJ NNP NNP NNP NNP VBD NN TO VB CC VB PRP$ NNP NN NN TO VB NNS PRP VBZ JJ TO NNP POS NN . Parliament was scheduled to adjourn for all of August , but American officials have been pressing Mr. Maliki and parliament to pass laws aimed at curbing sectarian violence and healing divisions between majority Shi'ite Arabs , minority Sunni Arabs and Kurds . NNP VBD VBN TO VB IN DT IN NNP , CC JJ NNS VBP VBN VBG NNP NNP CC NN TO VB NNS VBN IN VBG JJ NN CC VBG NNS IN NN NNP NNS , NN NNP NNS CC NNPS . Iraqi police say a car bomb in northern Baghdad has killed 12 people . JJ NNS VBP DT NN NN IN JJ NNP VBZ VBN CD NNS . At least 22 others were wounded in Sunday 's attack , which took place near a passport office in the capital 's northern Adhamiya district . IN JJS CD NNS VBD VBN IN NNP POS NN , WDT VBD NN IN DT NN NN IN DT NN POS JJ NNP NN . In other violence in Iraq 's capital , nine people , including six civilians , were wounded when a roadside bomb exploded near a police patrol . IN JJ NN IN NNP POS NN , CD NNS , VBG CD NNS , VBD VBN WRB DT NN NN VBD IN DT NN NN . The bombings came hours before Iraq 's parliament is scheduled to hold a special session to try to resolve a dispute about power-sharing proposals for the northern region of Kirkuk . DT NNS VBD NNS IN NNP POS NN VBZ VBN TO VB DT JJ NN TO VB TO VB DT NN IN JJ NNS IN DT JJ NN IN NNP . A top North Korean official says his country has a stockpile of nuclear weapons and is making more . DT JJ JJ JJ NN VBZ PRP$ NN VBZ DT NN IN JJ NNS CC VBZ VBG RBR . Vice Foreign Minister Kim Gye Gwan told U.S.-based ABC News Wednesday that North Korea has enough nuclear bombs to defend against a U.S. attack . NNP NNP NNP NNP NNP NNP VBD JJ NNP NNP NNP IN NNP NNP VBZ RB JJ NNS TO VB IN DT NNP NN . But he added Pyongyang has no intention of attacking the United States . CC PRP VBD NNP VBZ DT NN IN VBG DT NNP NNPS . When asked if North Korea has a missile capable of hitting the United States , Mr. Kim would not answer , saying one can not speculate about that because the nuclear program is not aimed at the United States . WRB VBN IN NNP NNP VBZ DT NN JJ IN VBG DT NNP NNPS , NNP NNP MD RB VB , VBG PRP MD RB VB IN DT IN DT JJ NN VBZ RB VBN IN DT NNP NNPS . South Korean president Roh Moo-hyun is on his way to Washington for talks Friday with President Bush . JJ JJ NN NNP NNP VBZ IN PRP$ NN TO NNP IN NNS NNP IN NNP NNP . The two men are expected to discuss recent signs North Korea may be willing to return to six-nation talks on ending its nuclear weapons program . DT CD NNS VBP VBN TO VB JJ NNS NNP NNP MD VB JJ TO VB TO JJ NNS IN VBG PRP$ JJ NNS NN . The U.S. military says an American soldier was killed in Iraq 's restive al-Anbar province , as U.S. and Iraqi forces continued their offensive to hunt down insurgents in western Iraq . DT NNP NN VBZ DT JJ NN VBD VBN IN NNP POS JJ JJ NN , IN NNP CC JJ NNS VBD PRP$ NN TO VB RP NNS IN JJ NNP . The military says the soldier was killed late Friday during security operations in Anbar . DT JJ VBZ DT NN VBD VBN JJ NNP IN NN NNS IN NNP . No other details were given . DT JJ NNS VBD VBN . U.S. Marines swept through the Iraqi town of Haditha in Anbar province early Saturday . NNP NNPS VBD IN DT JJ NN IN NNP IN NNP NN JJ NNP . A Reuters report says soldiers destroyed a cache of weapons and briefly exchanged fire with guerrillas . DT NNP NN VBZ NNS VBD DT NN IN NNS CC RB VBD NN IN NNS . Insurgents also continued assaults on Iraq 's strategic infrastructure , blowing up a section of an oil pipeline in the oil-rich northern region of Kirkuk late Friday . NNS RB VBD NNS IN NNP POS JJ NN , VBG RP DT NN IN DT NN NN IN DT JJ JJ NN IN NNP JJ NNP . Russian lawmakers have slightly modified a bill that critics say would undermine operations of non-governmental organizations in the country . JJ NNS VBP RB VBN DT NN IN NNS VBP MD VB NNS IN JJ NNS IN DT NN . The State Duma overwhelmingly approved on second reading the measure that would expand oversight of non-governmental groups and ban their acceptance of foreign funds for political activities . DT NNP NNP RB VBD IN JJ VBG DT NN WDT MD VB NN IN JJ NNS CC VB PRP$ NN IN JJ NNS IN JJ NNS . The lawmakers approved a set of amendments suggested by Russian President Vladimir Putin , including doing away with a clause that would require foreign NGOs to register as Russian entities . DT NNS VBD DT NN IN NNS VBN IN JJ NNP NNP NNP , VBG VBG RP IN DT NN WDT MD VB JJ NNS TO VB IN JJ NNS . The United States repeatedly has expressed concern over the bill . DT NNP NNPS RB VBZ VBN NN IN DT NN . A State Department Spokesman Sean McCormack said the changes met some of these concerns . DT NNP NNP NNP NNP NNP VBD DT NNS VBD DT IN DT NNS . But he said U.S. officials will withhold final judgment until they analyze the bill in depth . CC PRP VBD NNP NNS MD VB JJ NN IN PRP VBP DT NN IN NN . One more vote in the Duma is needed for final approval . CD JJR NN IN DT NNP VBZ VBN IN JJ NN . Human rights groups have condemned the measure as a reflection of the Kremlin 's crackdown on civil society institutions . JJ NNS NNS VBP VBN DT NN IN DT NN IN DT NNP POS NN IN JJ NN NNS . Police in 12 European countries and the United States have searched 150 homes in a coordinated crackdown on Internet child pornography . NNS IN CD JJ NNS CC DT NNP NNPS VBP VBN CD NNS IN DT JJ NN IN NNP NN NN . The European Union 's police agency , Europol , announced the action Wednesday , saying arrests have been made , but did not report how many . DT NNP NNP POS NN NN , NNP , VBD DT NN NNP , VBG NNS VBP VBN VBN , CC VBD RB VB WRB JJ . Europol officials said Dutch police initiated the operation , code named ' Baleno , ' by supplying information to 76 countries around the world . NNP NNS VBD JJ NN VBD DT NN , NN VBN `` NNP , `` IN VBG NN TO CD NNS IN DT NN . The operation started last year , when investigators discovered a sophisticated network distributing child pornography . DT NN VBD JJ NN , WRB NNS VBD DT JJ NN VBG NN NN . The network used technology to hide its members ' identities . DT NN VBD NN TO VB PRP$ NNS POS NNS . Europol coordinated the operation in Europe , while the FBI handled the probe in the United States . NNP VBD DT NN IN NNP , IN DT NNP VBD DT NN IN DT NNP NNPS . A memorial has been unveiled in Washington to honor journalists from around the world who have died or were killed while covering the news . DT NN VBZ VBN VBN IN NNP TO VB NNS IN IN DT NN WP VBP VBN CC VBD VBN IN VBG DT NN . The memorial is part of a new museum dedicated to journalism called the ' Newseum . ' DT NN VBZ NN IN DT JJ NN VBN TO NN VBD DT `` NNP . `` VOA 's Chris Simkins reports . NNP POS NNP NNP VBZ . Authorities in Mauritania say suspects in the recent killing of four French tourists are members of an extremist group linked to al-Qaida . NNS IN NNP VBP NNS IN DT JJ NN IN CD JJ NNS VBP NNS IN DT NN NN VBN TO NNP . Justice officials say the three primary suspects were previously arrested on terror-related charges , but all were released . NNP NNS VBP DT CD JJ NNS VBD RB VBN IN JJ NNS , CC DT VBD VBN . Prosecutors said they were members of a north African branch of the al-Qaida terror network . NNS VBD PRP VBD NNS IN DT JJ JJ NN IN DT NNP NN NN . Security officials say the French tourists were picnicking on the side of the highway outside of Aleg when a group of gunmen pulled up and demanded money . NN NNS VBP DT JJ NNS VBD VBG IN DT NN IN DT NN IN IN NNP WRB DT NN IN NNS VBD RB CC VBD NN . The family refused and the gunmen opened fire . DT NN VBD CC DT NNS VBD NN . One man survived the attack , but lost his two children , his brother and a family friend . CD NN VBD DT NN , CC VBD PRP$ CD NNS , PRP$ NN CC DT NN NN . Authorities say the suspects may have fled to neighboring Senegal . NNS VBP DT NNS MD VB VBN TO VBG NNP . French President Nicolas Sarkozy offered his condolences and said he is in touch with his Mauritanian counterpart , Sidi Ould Cheikh Abdallahi . JJ NNP NNP NNP VBD PRP$ NNS CC VBD PRP VBZ IN NN IN PRP$ JJ NN , NNP NNP NNP NNP . Afghan authorities say they have detained a police chief in connection with last year 's killing of five aid workers from the Doctors Without Borders group . JJ NNS VBP PRP VBP VBN DT NN NN IN NN IN JJ NN POS NN IN CD NN NNS IN DT NNP NNP NNP NN . An Afghan interior ministry spokesman said the police chief of Qadis district of Badghis province is a suspect and has been detained for questioning . DT JJ NN NN NN VBD DT NN NN IN NNP NN IN NNP NN VBZ DT NN CC VBZ VBN VBN IN VBG . Three foreign and two Afghan aid workers were killed when their vehicle was hit by grenades in an apparently targeted attack in Badghis June 2 last year . CD JJ CC CD JJ NN NNS VBD VBN WRB PRP$ NN VBD VBN IN NNS IN DT RB JJ NN IN NNP NNP CD JJ NN . A month later , the Nobel Prize-winning medical relief agency pulled out of Afghanistan after 24 years , citing poor security and the government 's failure to launch a ' credible ' investigation into the killings . DT NN RB , DT NNP JJ JJ NN NN VBD IN IN NNP IN CD NNS , VBG JJ NN CC DT NN POS NN TO VB DT `` JJ `` NN IN DT NNS . Third-seeded Dinara Safina of Russia has easily defeated Iveta Benesova of the Czech Republic , 6-0 , 06-Jan , to advance to the third round of the women 's Gold Coast hardcourt tennis championships in Australia . JJ NNP NNP IN NNP VBZ RB VBN NNP NNP IN DT JJ NNP , CD , CD , TO VB IN DT JJ NN IN DT NNS POS NNP NNP NN NN NNS IN NNP . In other matches Tuesday , fourth-seeded Flavia Pennetta of Italy beat China 's Li Na , 06-Feb , 06-Feb . IN JJ NNS NNP , JJ NNP NNP IN NNP VBD NNP POS NNP NNP , CD , CD . Number-eight Anabel Medina Garrigues of Spain defeated Aiko Nakamura of Japan , 06-Apr , 06-Apr , while teenager Lucie Safarova of the Czech Republic scored a three-set win over Slovakia 's Jarmila Gajdosova ( 04-Jun , 07-May , 06-Apr ) . JJ NNP NNP NNP IN NNP VBD NNP NNP IN NNP , CD , CD , IN JJ NNP NNP IN DT JJ NNP VBD DT JJ NN IN NNP POS NNP NNP LRB CD , CD , CD RRB . Meanwhile in doubles , comeback player Martina Hingis of Switzerland teamed up with Tatiana Golovin of France to beat Athens Olympic doubles gold medalists Li Ting and Sun Tiantian of China , 06-Jan , 06-Apr . RB IN NNS , NN NN NNP NNP IN NNP VBD RP IN NNP NNP IN NNP TO VB NNP NNP VBZ JJ NNS NNP NNP CC NNP NNP IN NNP , CD , CD . The 25-year-old Hingis is making a return to the circuit after retiring three years ago due to a series of chronic foot injuries . DT JJ NNP VBZ VBG DT NN TO DT NN IN VBG CD NNS RB JJ TO DT NN IN JJ NN NNS . Bolivian President Evo Morales ended his five-day hunger strike Tuesday , after Congress passed a new electoral law making it possible for him to seek re-election in December . JJ NNP NNP NNP VBD PRP$ JJ NN NN NNP , IN NNP VBD DT JJ JJ NN VBG PRP JJ IN PRP TO VB NN IN NNP . The new law approved early Tuesday calls for general elections to be held on December 6 and gives more seats in Congress to minority indigenous groups . DT JJ NN VBD JJ NNP NNS IN JJ NNS TO VB VBN IN NNP CD CC VBZ JJR NNS IN NNP TO NN JJ NNS . Mr. Morales is the country 's first indigenous president . NNP NNP VBZ DT NN POS JJ JJ NN . President Morales started the hunger strike Thursday after accusing the opposition-controlled Senate of holding up passage of the measure . NNP NNP VBD DT NN NN NNP IN VBG DT JJ NNP IN VBG RP NN IN DT NN . Bolivians recently approved a new constitution that allows President Morales to seek a second , five-year term in December elections . NNS RB VBD DT JJ NN WDT VBZ NNP NNP TO VB DT JJ , JJ NN IN NNP NNS . German military authorities have suspended two soldiers in connection with a series of disturbing photos showing servicemen posing with human skulls in Afghanistan . JJ JJ NNS VBP VBN CD NNS IN NN IN DT NN IN JJ NNS VBG NNS VBG IN JJ NNS IN NNP . Defense Minister Josef Jung announced the suspensions Friday in Berlin . NNP NNP NNP NNP VBD DT NNS NNP IN NNP . The scandal broke Wednesday when the newspaper Bild printed several pictures reportedly taken in 2003 , including one of a German soldier posing with a skull in a sexual manner . DT NN VBD NNP WRB DT NN NNP VBD JJ NNS RB VBN IN CD , VBG CD IN DT JJ NN VBG IN DT NN IN DT JJ NN . RTL television on Thursday broadcast photographs of one soldier kissing a skull while another soldier displays a skull on the hood of a military vehicle . NNP NN IN NNP NN NNS IN CD NN VBG DT NN IN DT NN VBZ DT NN IN DT NN IN DT JJ NN . The photos aired by RTL were reportedly taken a year later . DT NNS VBN IN NNP VBD RB VBN DT NN RB . The photos have scandalized much of Germany . DT NNS VBP VBN NN IN NNP . Chancellor Angela Merkel calls the pictures disgusting and unforgivable . NNP NNP NNP VBZ DT NNS VBG CC JJ . The defense minister says the army has identified at least six of the soldiers involved in the photos , and has promised to punish them . DT NN NN VBZ DT NN VBZ VBN IN JJS CD IN DT NNS VBN IN DT NNS , CC VBZ VBN TO VB PRP . Zimbabwe 's main opposition party has cut ties with the South African government following its endorsement of parliamentary elections won by President Robert Mugabe 's ruling party . NNP POS JJ NN NN VBZ VBN NNS IN DT JJ JJ NN VBG PRP$ NN IN JJ NNS VBN IN NNP NNP NNP POS VBG NN . Movement for Democratic Change ( MDC ) spokesman Paul Nyathi says there is no point in engaging with the South African government anymore . NN IN JJ NNP LRB NNP RRB NN NNP NNP VBZ EX VBZ DT NN IN VBG IN DT JJ JJ NN RB . Mr. Nyathi criticized the South African government for declaring what the opposition says were deeply-flawed March elections as free and fair . NNP NNP VBD DT JJ JJ NN IN VBG WP DT NN VBZ VBD JJ NNP NNS IN JJ CC JJ . He said South Africa was there , but did not bother to observe the elections properly . PRP VBD NNP NNP VBD RB , CC VBD RB VB TO VB DT NNS RB . South Africa has led mediation efforts on Zimbabwe 's political crisis , and has been slammed repeatedly by the opposition for its approach of so-called ' quiet diplomacy ' towards the Mugabe government . NNP NNP VBZ VBN NN NNS IN NNP POS JJ NN , CC VBZ VBN VBN RB IN DT NN IN PRP$ NN IN JJ `` JJ NN `` IN DT NNP NN . The MDC has said the poll was rigged and it plans to contest the outcome of 13 seats in court . DT NNP VBZ VBN DT NN VBD VBN CC PRP VBZ TO NN DT NN IN CD NNS IN NN . China and Russia are discussing plans to set up a hotline so Chinese officials can inform Moscow about a toxic chemical spill that is flowing toward Russian territory . NNP CC NNP VBP VBG NNS TO VB RP DT NN IN JJ NNS MD VB NNP IN DT JJ NN NN WDT VBZ VBG IN JJ NN . Authorities in Russia 's far eastern Khabarovsk region Thursday are on alert as heavily contaminated waters from China head downriver . NNS IN NNP POS RB JJ NNP NN NNP VBP IN NN IN RB VBN NNS IN NNP NN NN . Chinese authorities have already had to close the water mains in Harbin , one of China 's largest northeastern cities , because of a huge slick of toxic benzene in the Songhua River . JJ NNS VBP RB VBN TO VB DT NN NNS IN NNP , CD IN NNP POS JJS JJ NNS , IN IN DT JJ NN IN JJ NN IN DT NNP NNP . Scientists say even small amounts of the industrial solvent can cause mouth ulcers , and larger quantities can cause leukemia . NNS VBP RB JJ NNS IN DT JJ NN MD VB NN NNS , CC JJR NNS MD VB NN . Facing criticism , Chinese officials have promised to take measures to monitor pollutants . VBG NN , JJ NNS VBP VBN TO VB NNS TO VB NNS . The contamination stems from a chemical plant explosion that spilled toxic compounds into the Songhua River on November 13 . DT NN VBZ IN DT NN NN NN WDT VBD JJ NNS IN DT NNP NNP IN NNP CD . Fifty people representing 26 countries took the Oath of Allegiance this week ( Thursday ) and became U.S. citizens in a special ceremony at the Newseum in Washington , D.C. CD NNS VBG CD NNS VBD DT NN IN NNP DT NN LRB NNP RRB CC VBD NNP NNS IN DT JJ NN IN DT NNP IN NNP , NNP The ceremony was in held in honor of America 's July 4 Independence Day holiday . DT NN VBD IN VBN IN NN IN NNP POS NNP CD NNP NNP NN . VOA 's Ana Ward spoke to some of the participants about the significance of this day and their new life as American citizens . NNP POS NNP NNP VBD TO DT IN DT NNS IN DT NN IN DT NN CC PRP$ JJ NN IN JJ NNS . Jim Bertel narrates . NNP NNP VBZ . Police said a bomb blast in eastern Sri Lanka has killed one police officer and one civilian . NNP VBD DT NN NN IN JJ NNP NNP VBZ VBN CD NN NN CC CD JJ . Authorities said Tamil Tiger rebels were responsible for the blast in the town of Batticaloa . NNS VBD NNP NNP NNS VBD JJ IN DT NN IN DT NN IN NNP . They said the blast wounded 11 people , including four schoolchildren . PRP VBD DT NN VBD CD NNS , VBG CD NNS . A Tamil Tiger spokesman could not be reached for comment . DT NNP NNP NN MD RB VB VBN IN NN . The bombing came as the military surrounded the rebels in the country 's northeast in a push to end the 25-year-old civil war . DT NN VBD IN DT JJ VBN DT NNS IN DT NN POS NN IN DT NN TO VB DT JJ JJ NN . Journalists are often unable to independently confirm military and rebel reports because they are barred from the war zone . NNS VBP RB JJ TO RB VB JJ CC JJ NNS IN PRP VBP VBN IN DT NN NN . Taleban militants have resumed talks with South Korean officials trying to negotiate the release of 19 South Korean aid workers held in Afghanistan for more than a month . NNP NNS VBP VBN NNS IN JJ JJ NNS VBG TO VB DT NN IN CD JJ JJ NN NNS VBN IN NNP IN JJR IN DT NN . A Red Cross official , Frank Rauchenstein , says negotiations got underway Thursday at the office of the Afghan Red Crescent in Ghazni City . DT NNP NNP NN , NNP NNP , VBZ NNS VBD JJ NNP IN DT NN IN DT JJ NNP NNP IN NNP NNP . Monday , the Taleban released two of the hostages in what was described as a ' goodwill gesture . ' NNP , DT NNP VBD CD IN DT NNS IN WP VBD VBN IN DT `` NN NN . `` Taleban militants abducted 23 South Korean Christian aid workers on July 19 while they traveled through Ghazni province on a humanitarian mission . NNP NNS VBD CD JJ JJ JJ NN NNS IN NNP CD IN PRP VBD IN NNP NN IN DT JJ NN . Two male hostages were executed late last month after the Afghan government failed to meet Taleban demands to release militant prisoners . CD JJ NNS VBD VBN RB JJ NN IN DT JJ NN VBD TO VB NNP NNS TO VB JJ NNS . Iranian state media say an Iranian rocket launched into space earlier this month has sent data back to Earth . JJ NN NNS VBP DT JJ NN VBD IN NN RBR DT NN VBZ VBN NNS RB TO NNP . Iran says the rocket that it launched on February 4 is designed to carry the country 's first home-made satellite into orbit later this year . NNP VBZ DT NN IN PRP VBD IN NNP CD VBZ VBN TO VB DT NN POS JJ JJ NN IN NN RB DT NN . Washington criticized Iran 's launch and said it will further isolate Tehran in the international community . NNP VBD NNP POS NN CC VBD PRP MD RB VB NNP IN DT JJ NN . Moscow said it does not approve of Iran 's efforts to develop rocket technology . NNP VBD PRP VBZ RB VB IN NNP POS NNS TO VB NN NN . The technology used to put satellites into orbit can also be used for launching weapons . DT NN VBD TO VB NNS IN NN MD RB VB VBN IN VBG NNS . Iran says other countries should not worry about its scientific achievements , and says it wants to launch satellites for research and telecommunications . NNP VBZ JJ NNS MD RB VB IN PRP$ JJ NNS , CC VBZ PRP VBZ TO VB NNS IN NN CC NNS . Iranian President Mahmoud Ahmadinejad has said Iran will test-launch two more rockets before it sends a satellite into orbit . JJ NNP NNP NNP VBZ VBN NNP MD VB CD JJR NNS IN PRP VBZ DT NN IN NN . Denmark 's foreign ministry is urging Danish nationals to leave Lebanon after protesters , angered over a political cartoon of the prophet Mohammed , burned the Danish consulate . NNP POS JJ NN VBZ VBG JJ NNS TO VB NNP IN NNS , VBD IN DT JJ NN IN DT NN NNP , VBD DT JJ NN . Riot police used tear gas and water cannons to break up the mob . NN NNS VBD JJ NN CC NN NNS TO VB RP DT NN . Lebanese Interior Minister Hassan al-Sabaa resigned following the unrest . JJ NNP NNP NNP NNP VBD VBG DT NN . Protesters burned the Danish and Norwegian embassies in Damascus , Syria Saturday . NNS VBD DT JJ CC JJ NNS IN NNP , NNP NNP . Muslims throughout the region are boycotting Danish goods . NNPS IN DT NN VBP VBG JJ NNS . Store owners have pulled Danish products from shelves . NNP NNS VBP VBN JJ NNS IN NNS . The cartoon was first printed in a Danish newspaper and then reprinted in a number of European cities . DT NN VBD JJ VBN IN DT JJ NN CC RB VBN IN DT NN IN JJ NNS . Muslims call any depiction of the prophet blasphemous . NNPS VBP DT NN IN DT NN JJ . Muslim and Arab leaders are calling for calm . NNP CC JJ NNS VBP VBG IN NN . Lebanese leaders say violence is as harmful to Islam as the cartoon . JJ NNS VBP NN VBZ IN JJ IN NNP IN DT NN . Rising oil prices , global trade imbalances and China 's inflexible currency rates are among issues for discussion Saturday at the start of the annual meetings of the International Monetary Fund and the World Bank . VBG NN NNS , JJ NN NNS CC NNP POS JJ NN NNS VBP IN NNS IN NN NNP IN DT NN IN DT JJ NNS IN DT NNP NNP NNP CC DT NNP NNP . The meetings in Washington begin a day after a gathering of the top economic officials from the world 's seven major industrialized nations - the United States , Japan , Britain , Germany , France , Canada and Italy . DT NNS IN NNP VBP DT NN IN DT NN IN DT JJ JJ NNS IN DT NN POS CD JJ JJ NNS IN DT NNP NNPS , NNP , NNP , NNP , NNP , NNP CC NNP . The group issued a statement calling on China to convert its currency to a more flexible exchange rate as a means of addressing Beijing 's trade surplus with much of the world . DT NN VBD DT NN VBG IN NNP TO VB PRP$ NN TO DT RBR JJ NN NN IN DT NN IN VBG NNP POS NN NN IN NN IN DT NN . The economic officials say the IMF needs to take a more aggressive role in monitoring the currency practices of its member nations . DT JJ NNS VBP DT NNP VBZ TO VB DT RBR JJ NN IN VBG DT NN NNS IN PRP$ NN NNS . The statement also spelled out what other nations could do to address global trade imbalances , such as the U.S. reducing its huge budget deficit . DT NN RB VBD RP WP JJ NNS MD VB TO VB JJ NN NNS , JJ IN DT NNP VBG PRP$ JJ NN NN . U.S. President Barack Obama has signed into law a $ 2 billion extension to the popular ' cash for clunkers ' auto rebate program . NNP NNP NNP NNP VBZ VBN IN NN DT $ CD CD NN TO DT JJ `` NN IN NNS `` NN NN NN . Mr. Obama signed the legislation Friday . NNP NNP VBD DT NN NNP . The Senate approved the extension late Thursday . DT NNP VBD DT NN JJ NNP . The ' cash for clunkers ' incentive program has helped boost U.S. auto sales . DT `` NN IN NNS `` NN NN VBZ VBN VB NNP NN NNS . The program gives car owners up to $ 4,500 in rebates to trade in older , gas-guzzling vehicles for newer , more fuel-efficient models . DT NN VBZ NN NNS RB TO $ CD IN NNS TO VB IN JJR , JJ NNS IN JJR , RBR JJ NNS . The House of Representatives approved the bill last week to replenish funding for the program , which nearly exhausted its initial $ 1 billion funding limit within a matter of days . DT NNP IN NNPS VBD DT NN JJ NN TO VB NN IN DT NN , WDT RB VBD PRP$ JJ $ CD CD NN NN IN DT NN IN NNS . The Obama administration had said the program would have gone broke by Friday if Congress did not approve the extension . DT NNP NN VBD VBN DT NN MD VB VBN VBN IN NNP IN NNP VBD RB VB DT NN . A lawyer for imprisoned Russian oil magnate Mikhail Khodorkovsky says his client has ended a nearly week-long hunger strike . DT NN IN JJ JJ NN NN NNP NNP VBZ PRP$ NN VBZ VBN DT RB JJ NN NN . Attorney Anton Drel says oil magnate ended his fast after authorities transferred his business partner Platon Lebedev from solitary confinement to a regular cell . NN NNP NNP VBZ NN NN VBD PRP$ NN IN NNS VBD PRP$ NN NN NNP NNP IN JJ NN IN DT JJ NN . Authorities put Lebedev in isolation after accusing him of insulting prison guards . NNS VBD NNP IN NN IN VBG PRP IN VBG NN NNS . In May , authorities sentenced the two former owners of the Yukos oil company to nine years in prison for tax evasion and fraud . IN NNP , NNS VBD DT CD JJ NNS IN DT NNP NN NN TO CD NNS IN NN IN NN NN CC NN . Opposition supporters call their trial politically motivated because of Khodorkovsky 's backing of opposition politicians - charges Kremlin authorities deny . NN NNS VBP PRP$ NN RB JJ IN IN NNP POS NN IN NN NNS IN NNS NNP NNS VBP . Tibetans around the world are celebrating the 46th anniversary of their Democracy Day . NNS IN DT NN VBP VBG DT JJ NN IN PRP$ NN NN . Among the exiled Tibetan community in India and elsewhere , formal and informal celebrations are being held Saturday . IN DT VBN JJ NN IN NNP CC RB , JJ CC JJ NNS VBP VBG VBN NNP . At a Tibetan school in New Delhi , a gathering of people heard speeches by dignitaries including a representative of Tibetan spiritual leader , the Dalai Lama . IN DT JJ NN IN NNP NNP , DT NN IN NNS VBN NNS IN NNS VBG DT NN IN JJ JJ NN , DT NNP NNP . Students at the school performed Tibetan cultural songs and dances for those in attendance . NNS IN DT NN VBD JJ JJ NNS CC NNS IN DT IN NN . On September 2 , 1960 , a 13-member assembly of Tibetan exiles met for the first time in Dharamsala , northern India . IN NNP CD , CD , DT JJ NN IN JJ NNS VBD IN DT JJ NN IN NNP , JJ NNP . The Tibetan community observes this day each year as Democracy Day . DT JJ NN VBZ DT NN DT NN IN NNP NNP . A roadside bomb has ripped through a U.S. military vehicle in Afghanistan , killing one soldier and wounding two others in the northeastern province of Kunar . DT NN NN VBZ VBN IN DT NNP JJ NN IN NNP , VBG CD NN CC VBG CD NNS IN DT JJ NN IN NNP . A U.S. military spokesman says the troops were driving an armored vehicle southwest of the provincial capital of Asadabad . DT NNP JJ NN VBZ DT NNS VBD VBG DT JJ NN NN IN DT JJ NN IN NNP . Kunar is a mountainous province on the border with Pakistan and is considered a hideout for militants . NNP VBZ DT JJ NN IN DT NN IN NNP CC VBZ VBN DT NN IN NNS . Another American soldier was killed and four were injured in southern Afghanistan when their armored vehicle rolled over near Kandahar city . DT JJ NN VBD VBN CC CD VBD VBN IN JJ NNP WRB PRP$ JJ NN VBD RP IN NNP NN . A U.S. military statement says enemy activities were not a factor in the accident . DT NNP JJ NN VBZ NN NNS VBD RB DT NN IN DT NN . Kandahar is a stronghold of Afghanistan 's former Taleban rulers . NNP VBZ DT NN IN NNP POS JJ NNP NNS . Doctors say Israeli Prime Minister Ariel Sharon remains in critical but stable condition - 10 days after suffering a massive stroke . NNS VBP JJ NNP NNP NNP NNP VBZ IN JJ CC JJ NN IN CD NNS IN VBG DT JJ NN . Jerusalem 's Hadassah hospital issued the update on Mr. Sharon 's condition Saturday evening after the end of the Jewish sabbath . NNP POS NNP NN VBD DT NN IN NNP NNP POS NN NNP NN IN DT NN IN DT JJ NN . The hospital said medical tests showed that Mr. Sharon has activity in both of his brain lobes . DT NN VBD JJ NNS VBD IN NNP NNP VBZ NN IN DT IN PRP$ NN NNS . For several days , doctors have been reducing the level of sedatives , with the intent of drawing the 77-year-old Mr. Sharon out of an induced coma . IN JJ NNS , NNS VBP VBN VBG DT NN IN NNS , IN DT NN IN VBG DT JJ NNP NNP IN IN DT JJ NN . However , he has not shown any signs of waking up . RB , PRP VBZ RB VBN DT NNS IN VBG RP . Nigerian authorities say gunmen have kidnapped a Lebanese man in the country 's volatile southern region . JJ NNS VBP NNS VBP VBN DT JJ NN IN DT NN POS JJ JJ NN . Military officials say the man was seized along with his car in the city of Warri Tuesday . JJ NNS VBP DT NN VBD VBN IN IN PRP$ NN IN DT NN IN NNP NNP . The man works for a construction company , Niger Cat . DT NN VBZ IN DT NN NN , NNP NNP . On Saturday , gunmen kidnapped two Indian petrochemical workers in another southern town , Port Harcourt . IN NNP , NNS VBD CD JJ NN NNS IN DT JJ NN , NNP NNP . In all , about 100 foreigners have been kidnapped in Nigeria 's oil-rich Niger Delta region this year . IN DT , IN CD NNS VBP VBN VBN IN NNP POS NN NNP NNP NN DT NN . Most have been released unharmed , after their employers paid ransom . JJS VBP VBN VBN JJ , IN PRP$ NNS VBN NN . Several hostages also have been injured or killed during rescue attempts by the Nigerian military . JJ NNS RB VBP VBN VBN CC VBN IN NN NNS IN DT JJ NN . Many of the kidnappings are carried out by criminal gangs , while others are the work of militants who want more of the region 's oil wealth directed to impoverished locals . NN IN DT NNS VBP VBN RP IN JJ NNS , IN NNS VBP DT NN IN NNS WP VBP JJR IN DT NN POS NN NN VBD TO JJ NNS . Palestinian gunmen have surrounded European Union offices in the Gaza Strip threatening violence and demanding an apology after newspapers in Europe reprinted Danish caricatures of the Prophet Mohammed . JJ NNS VBP VBN NNP NNP NNS IN DT NNP NNP JJ NN CC VBG DT NN IN NNS IN NNP VBD JJ NNS IN DT NNP NNP . Newspapers in several EU countries published the cartoons Wednesday in a show of solidarity for press freedom . NNS IN JJ NNP NNS VBD DT NNS NNP IN DT NN IN NN IN NN NN . One cartoon shows the Prophet Mohammed wearing a turban shaped like a bomb . CD NN VBZ DT NNP NNP VBG DT NN VBN IN DT NN . The militants have threatened to target Danish , French , and Norwegian nationals in the Palestinian territories . DT NNS VBP VBN TO VB JJ , JJ , CC JJ NNS IN DT JJ NNS . The French-Egyptian owner of the French newspaper France Soir has fired an editor for reprinting the cartoons . DT JJ NN IN DT JJ NN NNP NNP VBZ VBN DT NN IN VBG DT NNS . A spokesman for the press freedom group Reporters Without Borders is calling on both sides to calm down . DT NN IN DT NN NN NN VBZ IN NNS VBZ VBG IN DT NNS TO VB RP . Meanwhile , a Jordanian weekly newspaper has published three of the 12 cartoons to acquaint the Muslim public with the caricatures . RB , DT JJ JJ NN VBZ VBN CD IN DT CD NNS TO VB DT NNP NN IN DT NNS . Publication of the cartoons by a Danish newspaper in September prompted Muslim protests . NN IN DT NNS IN DT JJ NN IN NNP VBD NNP NNS . Mexican authorities say two police officers and a medical technician are dead after a car rammed two police vehicles in what authorities say was retaliation for the arrest of a drug cartel leader . JJ NNS VBP CD NNS NNS CC DT JJ NN VBP JJ IN DT NN VBD CD NNS NNS IN WP NNS VBP VBD NN IN DT NN IN DT NN NN NN . Police said the attack Thursday in the violent border town of Ciudad Juarez was a direct response to the arrest earlier in the day of Jesus Acosta Guerrero , a senior gang member linked to the Juarez cartel . NNS VBD DT NN NNP IN DT JJ NN NN IN NNP NNP VBD DT JJ NN TO DT NN RBR IN DT NN IN NNP NNP NNP , DT JJ NN NN VBN TO DT NNP NN . Authorities say the attack caused an explosion , leaving the vehicles badly damaged . NNS VBP DT NN VBD DT NN , VBG DT NNS RB VBN . The Associated Press news agency reports the car may have been packed with explosives or inflammable material . DT NNP NNP NN NN VBZ DT NN MD VB VBN VBN IN NNS CC JJ NN . Mexican President Felipe Calderon has deployed thousands of soldiers nationwide to fight drug gangs since taking office in 2006 . JJ NNP NNP NNP VBZ VBN NNS IN NNS JJ TO VB NN NNS IN VBG NN IN CD . At least 23,000 people have been killed in drug-related violence since the president began cracking down on the cartels . IN JJS CD NNS VBP VBN VBN IN JJ NN IN DT NN VBD VBG RP IN DT NNS . The Bush administration will ask Congress for more than $ 240 billion to cover the cost of military operations in Iraq and Afghanistan for the next two fiscal years . DT NNP NN MD VB NNP IN JJR IN $ CD CD TO VB DT NN IN JJ NNS IN NNP CC NNP IN DT JJ CD JJ NNS . Mr. Bush is seeking more than $ 90 billion for the current fiscal year , to go along with the $ 70 billion already approved by lawmakers . NNP NNP VBZ VBG JJR IN $ CD CD IN DT JJ JJ NN , TO VB RP IN DT $ CD CD RB VBN IN NNS . He will also ask for more than $ 140 billion to cover war costs for fiscal year 2008 , which begins October 1 . PRP MD RB VB IN JJR IN $ CD CD TO VB NN NNS IN JJ NN CD , WDT VBZ NNP CD . The money is separate from the $ 481 billion the president will request for the military 's regular 2008 budget . DT NN VBZ JJ IN DT $ CD CD DT NN MD VB IN DT NN POS JJ CD NN . The administration has obtained funding for the Iraq and Afghanistan operations through emergency spending bills . DT NN VBZ VBN NN IN DT NNP CC NNP NNS IN NN NN NNS . Lawmakers have criticized the practice , saying the emergency bills are not subject to the same scrutiny as regular spending bills . NNS VBP VBN DT NN , VBG DT NN NNS VBP RB JJ TO DT JJ NN IN JJ NN NNS . India and Saudi Arabia have said they intend to form an energy partnership to increase the amount of crude oil supplied to India . NNP CC NNP NNP VBP VBN PRP VBP TO VB DT NN NN TO VB DT NN IN JJ NN VBD TO NNP . The joint declaration was announced Friday in New Delhi at the end of Saudi King Abdullah 's four-day visit to India . DT JJ NN VBD VBN NNP IN NNP NNP IN DT NN IN NNP NNP NNP POS JJ NN TO NNP . The agreement , signed by the king and India 's Prime Minister Manmohan Singh , endorses greater exports of Saudi crude oil to India along with Saudi investments in refining and distribution in India . DT NN , VBN IN DT NN CC NNP POS NNP NNP NNP NNP , VBZ JJR NNS IN JJ JJ NN TO NNP IN IN JJ NNS IN NN CC NN IN NNP . The two countries said they would establish a joint venture to produce fertilizer at plants in Saudi Arabia . DT CD NNS VBD PRP MD VB DT JJ NN TO VB NN IN NNS IN NNP NNP . India imports 70 percent of the oil it consumes . NNP NNS CD NN IN DT NN PRP VBZ . In the agreement , India and Saudi Arabia also pledged to cooperate in the fight against terrorism . IN DT NN , NNP CC NNP NNP RB VBD TO VB IN DT NN IN NN . Former Lebanese Prime Minister Rafik Hariri , the billionaire tycoon who oversaw the post-civil war reconstruction of Beirut , died Monday in a Beirut car bombing . JJ JJ NNP NNP NNP NNP , DT NN NN WP VBD DT JJ NN NN IN NNP , VBD NNP IN DT NNP NN NN . He was 60 . PRP VBD CD . Mr. Hariri became prime minister in 1992 as optimism swept Lebanon two years after the end of its 15-year civil war . NNP NNP VBD JJ NN IN CD IN NN VBD NNP CD NNS IN DT NN IN PRP$ JJ JJ NN . He began massive rebuilding projects , while backing Syrian efforts to consolidate political control in Lebanon . PRP VBD JJ NN NNS , IN VBG JJ NNS TO VB JJ NN IN NNP . While dogged by accusations of corruption , Mr. Hariri was also widely known for his philanthropy . IN VBN IN NNS IN NN , NNP NNP VBD RB RB VBN IN PRP$ NN . He is said to have paid the education bills of 30,000 Lebanese students , and donated tens of millions of dollars of his own money to Lebanese charities . PRP VBZ VBN TO VB VBN DT NN NNS IN CD JJ NNS , CC VBD NNS IN NNS IN NNS IN PRP$ JJ NN TO VB NNS . He quit the government in 1998 , but returned in 2000 and served as prime minister until quitting again in late 2004 , after Lebanon 's pro-Syrian parliament voted to extend the term of pro-Syrian president and political rival Emile Lahoud . PRP VBD DT NN IN CD , CC VBD IN CD CC VBD IN JJ NN IN VBG RB IN JJ CD , IN NNP POS JJ NN VBD TO VB DT NN IN JJ NN CC JJ NN NNP NNP . Lebanon 's newly chosen prime minister , Najib Mikati , has begun talks to form a cabinet , amid rising hopes that the country 's parliamentary elections will be held by the end of May . NNP POS RB VBN JJ NN , NNP NNP , VBZ VBN NNS TO VB DT NN , IN VBG NNS IN DT NN POS JJ NNS MD VB VBN IN DT NN IN NNP . The cabinet discussions began Saturday , one day after Lebanese President Emile Lahoud named the moderate pro-Syrian politician as the new prime minister . DT NN NNS VBD NNP , CD NN IN JJ NNP NNP NNP VBD DT JJ JJ NN IN DT JJ JJ NN . Mr. Mikati said his priorities will be holding elections , reviving economic growth , and cooperating with the U.N. probe into February 's assassination of former Prime Minister Rafik Hariri . NNP NNP VBD PRP$ NNS MD VB VBG NNS , VBG JJ NN , CC VBG IN DT NNP NN IN NNP POS NN IN JJ NNP NNP NNP NNP . Lebanon has been without a government since former Prime Minister Omar Karami resigned after the Hariri killing , which the opposition blames on pro-Syrian agents . NNP VBZ VBN IN DT NN IN JJ NNP NNP NNP NNP VBD IN DT NNP NN , WDT DT NN VBZ IN JJ NNS . President Lahoud re-appointed Mr. Karami , but he quit again this week after failing to form a new government . NNP NNP VBD NNP NNP , CC PRP VBD RB DT NN IN VBG TO VB DT JJ NN . Britain is taking new steps to limit the poaching of developing world doctors , nurses and other health care professionals . NNP VBZ VBG JJ NNS TO VB DT NN IN VBG NN NNS , NNS CC JJ NN NN NNS . A revised code of practice for the country 's National Health System ( NHS ) closes loopholes that allow British employers to strip developing countries of health care professionals . DT JJ NN IN NN IN DT NN POS NNP NNP NNP LRB NNP RRB VBZ NNS WDT VBP JJ NNS TO VB VBG NNS IN NN NN NNS . Growing health care systems in Britain and other industrialized countries actively recruit health care professionals from developing countries . VBG NN NN NNS IN NNP CC JJ JJ NNS RB VBP NN NN NNS IN VBG NNS . That ' brain drain ' puts strain on developing-world health systems facing their own health care crises . DT `` NN NN `` VBZ NN IN JJ NN NNS VBG PRP$ JJ NN NN NNS . Britain 's new code of practice forbids employers working with the NHS from recruiting from developing countries unless there is an agreement with that country 's government . NNP POS JJ NN IN NN NNS NNS VBG IN DT NNP IN VBG IN VBG NNS IN EX VBZ DT NN IN DT NN POS NN . British Health Minister John Hutton said in a statement that the NHS is expanding , but wo n't do so at the expense of other countries . JJ NNP NNP NNP NNP VBD IN DT NN IN DT NNP VBZ VBG , CC MD RB VB RB IN DT NN IN JJ NNS . The leaders of Australia and Japan have offered their full support to Britain in the aftermath of the deadly attacks on London 's transit system . DT NNS IN NNP CC NNP VBP VBN PRP$ JJ NN TO NNP IN DT NN IN DT JJ NNS IN NNP POS NN NN . Australian Prime Minister John Howard said Thursday on national radio it is important his country stands ' shoulder to shoulder ' with its British allies at a time like this . JJ NNP NNP NNP NNP VBD NNP IN JJ NN PRP VBZ JJ PRP$ NN VBZ `` NN TO VB `` IN PRP$ JJ NNS IN DT NN IN DT . Mr. Howard expressed his ' horror and disgust ' at the attacks and said they would not alter the determination of free countries to ' do the right thing . ' NNP NNP VBD PRP$ `` NN CC NN `` IN DT NNS CC VBD PRP MD RB VB DT NN IN JJ NNS TO `` VB DT JJ NN . `` At the Group of Eight summit in Scotland , Japanese Prime Minister Junichiro Koizumi said he is outraged by the London attacks . IN DT NNP IN CD NN IN NNP , JJ NNP NNP NNP NNP VBD PRP VBZ VBN IN DT NNP NNS . He noted terrorist acts must not be forgivable . PRP VBD JJ NNS MD RB VB JJ . Sarin gas attacks on the Tokyo subway system in 1995 killed 12 people and injured thousands . NNP NN NNS IN DT NNP NN NN IN CD VBD CD NNS CC JJ NNS . A human rights group has called on Asian leaders to increase pressure on Burma to hasten democratic reforms and stop human rights abuses . DT JJ NNS NN VBZ VBN IN JJ NNS TO VB NN IN NNP TO VB JJ NNS CC VB JJ NNS NNS . The Alternative ASEAN Network for Burma said officials from the Association of Southeast Asian Nations meeting this week should consider new options in dealing with Burma . DT NNP NNP NNP IN NNP VBD NNS IN DT NNP IN NNP NNP NNP NN DT NN MD VB JJ NNS IN VBG IN NNP . It said leaders should consider supporting a possible resolution on Burma by the United Nations Security Council . PRP VBD NNS MD VB VBG DT JJ NN IN NNP IN DT NNP NNP NNP NNP . The group also urged ASEAN leaders to acknowledge the many security problems caused by Burma 's military regime . DT NN RB VBD NNP NNS TO VB DT JJ NN NNS VBN IN NNP POS JJ NN . The rights group accuses Burma 's government of involvement in illegal drug trafficking and human rights abuses , especially against some ethnic groups in Burma . DT NNS NN VBZ NNP POS NN IN NN IN JJ NN NN CC JJ NNS NNS , RB IN DT JJ NNS IN NNP . Iraqi officials say gunmen have killed a member of the secular coalition led by former Iraqi prime minister Ayad Allawi . JJ NNS VBP NNS VBP VBN DT NN IN DT JJ NN VBN IN JJ JJ JJ NN NNP NNP . Officials say Faras al-Jabouri was shot Saturday after gunmen raided his home near the northern city of Mosul . NNS VBP NNP NNP VBD VBN NNP IN NNS VBD PRP$ NN IN DT JJ NN IN NNP . Jabouri did not win a seat in the March 7 parliamentary elections in which Mr. Allawi 's Iraqiya list received the most votes . NNP VBD RB VB DT NN IN DT NNP CD JJ NNS IN WDT NNP NNP POS NNP NN VBD DT JJS NNS . His death comes two weeks after another member of Mr. Allawi 's bloc was killed . PRP$ NN VBZ CD NNS IN DT NN IN NNP NNP POS NN VBD VBN . Gunmen shot Bashar Hamid al-Aqidi May 24 in an ambush outside his home in Mosul . NNS VBD NNP NNP NNP NNP CD IN DT NN IN PRP$ NN IN NNP . Iraq 's Supreme Court ratified the election results last week . NNP POS NNP NNP VBD DT NN NNS JJ NN . None of the political groups won the 163 seats needed to form a majority . NN IN DT JJ NNS VBD DT CD NNS VBN TO VB DT NN . Mr. Allawi 's coalition had the most seats with 91 , just two more than the mainly Shi'ite group led by Prime Minister Nouri al-Maliki . NNP NNP POS NN VBD DT JJS NNS IN CD , RB CD JJR IN DT RB JJ NN VBN IN NNP NNP NNP NNP . Ecuador 's state-run oil company , Petroecuador , has restored some operations that had been interrupted by six days of protests . NNP POS JJ NN NN , NNP , VBZ VBN DT NNS WDT VBD VBN VBN IN CD NNS IN NNS . Company officials say production totaled around 33,000 barrels of crude oil per day on Saturday . NN NNS VBP NN VBD IN CD NNS IN JJ NN IN NN IN NNP . However , the rate was still far from the normal output of more than 2,00,000 barrels . RB , DT NN VBD RB RB IN DT JJ NN IN JJR IN CD NNS . Army troops and police have been helping to restore order and oil production since the government declared a state of emergency in the Sucumbios and Orellana provinces . NNP NNS CC NNS VBP VBN VBG TO VB NN CC NN NN IN DT NN VBD DT NN IN NN IN DT NNS CC NNP NNS . Protesters there have been demanding new contract negotiations with foreign oil firms . NNS EX VBP VBN VBG JJ NN NNS IN JJ NN NNS . They also have called for increased spending on infrastructure and social programs . PRP RB VBP VBN IN JJ NN IN NN CC JJ NNS . The demonstrations forced Petroecuador to suspend production and the government to seek a temporary loan of oil from Venezuela to keep up exports . DT NNS VBD NNP TO VB NN CC DT NN TO VB DT JJ NN IN NN IN NNP TO VB RP NNS . Most of Ecuador 's oil exports go to the United States . JJS IN NNP POS NN NNS VBP TO DT NNP NNPS . Iran is calling an international resolution on its nuclear program politically motivated and illegal , but does not rule out future negotiations with the West . NNP VBZ VBG DT JJ NN IN PRP$ JJ NN RB JJ CC JJ , CC VBZ RB VB RP JJ NNS IN DT NNP . Speaking Sunday in Tehran , Foreign Minister Manouchehr Mottaki called the International Atomic Energy Agency resolution a scenario determined by the United States in advance . VBG NNP IN NNP , NNP NNP NNP NNP VBD DT NNP NNP NNP NNP NN DT NN VBN IN DT NNP NNPS IN NN . The IAEA resolution passed Saturday in Vienna accuses Tehran of violating the Nuclear Non-Proliferation Treaty by failing to comply with international nuclear safeguard agreements . DT NNP NN VBD NNP IN NNP VBZ NNP IN VBG DT NNP NNP NNP IN VBG TO VB IN JJ JJ NN NNS . The resolution leaves open the possibility of referring Tehran to the U.N. Security Council for possible sanctions if it fails to cooperate fully with IAEA inspectors . DT NN VBZ JJ DT NN IN VBG NNP TO DT NNP NNP NNP IN JJ NNS IN PRP VBZ TO VB RB IN NNP NNS . Washington accuses Tehran of using its ongoing nuclear program as a cover for efforts to develop an atomic weapon . NNP VBZ NNP IN VBG PRP$ JJ JJ NN IN DT NN IN NNS TO VB DT JJ NN . Tehran says its program is aimed at developing electricity . NNP VBZ PRP$ NN VBZ VBN IN VBG NN . The United States says six world powers have made progress on a new U.N. sanctions resolution aimed at curbing Iran 's nuclear program and could begin drafting the text next week . DT NNP NNP VBZ CD NN NNS VBP VBN NN IN DT JJ NNP NNS NN VBN IN VBG NNP POS JJ NN CC MD VB VBG DT NN JJ NN . Representatives of Germany and the five permanent U.N. Security Council members , the United States , Britain , France , Russia and China , discussed the resolution in a conference call Thursday . NNS IN NNP CC DT CD JJ NNP NNP NNP NNS , DT NNP NNPS , NNP , NNP , NNP CC NNP , VBD DT NN IN DT NN NN NNP . A U.S. State Department spokeswoman , Joanne Moore , said the representatives agreed to confer again by phone on Saturday . DT NNP NNP NNP NN , NNP NNP , VBD DT NNS VBD TO VB RB IN NN IN NNP . Iran ignored a U.N. Security Council deadline last week to suspend uranium enrichment or face new U.N. sanctions , on top of those imposed in December . NNP VBD DT NNP NNP NNP NN JJ NN TO VB NN NN CC VB JJ NNP NNS , IN NN IN DT VBN IN NNP . The United States and its Western allies suspect Iran is working to develop nuclear weapons , a charge Tehran denies . DT NNP NNPS CC PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS , DT NN NNP VBZ . Palestinian officials say ailing Palestinian leader Yasser Arafat has lost consciousness several times while in the intensive care unit of a French military hospital . JJ NNS VBP VBG JJ NN NNP NNP VBZ VBN NN JJ NNS IN IN DT JJ NN NN IN DT JJ JJ NN . The officials say Mr. Arafat has drifted in and out of consciousness since Wednesday . DT NNS VBP NNP NNP VBZ VBN IN CC IN IN NN IN NNP . There are conflicting reports about his present condition and it is not clear whether he is in a coma . EX VBP VBG NNS IN PRP$ JJ NN CC PRP VBZ RB JJ IN PRP VBZ IN DT NN . Doctors at the Paris hospital are expected to speak to reporters later Thursday about Mr. Arafat 's condition . NNS IN DT NNP NN VBP VBN TO VB TO NNS RB NNP IN NNP NNP POS NN . The Palestinian officials provided no more details . DT NN NNS VBD DT JJR NNS . Mr. Arafat has been receiving emergency medical treatment at the hospital since late last week . NNP NNP VBZ VBN VBG NN JJ NN IN DT NN IN JJ JJ NN . He was airlifted to France after being ill for about two weeks . PRP VBD VBN TO NNP IN VBG JJ IN IN CD NNS . The exact nature of his illness is still not clear , but officials say he was experiencing intense stomach pains , diarrhea and vomiting . DT JJ NN IN PRP$ NN VBZ RB RB JJ , CC NNS VBP PRP VBD VBG JJ NN NNS , NN CC NN . World oil prices have hit a record high in Asian trading . NN NN NNS VBP VBN DT NN NN IN JJ NN . Crude oil for future delivery went as high as $ 57.79 a barrel . JJ NN IN JJ NN VBD RB JJ IN $ CD DT NN . Oil had closed at $ 57.25 a barrel Friday in New York after hitting a high of $ 57.7 . NN VBD VBN IN $ CD DT NN NNP IN NNP NNP IN VBG DT NN IN $ CD . The president of the Organization of Petroleum Exporting Countries , Sheikh Ahmad Fahad al-Ahmad al-Sabah , says oil ministers this week will discuss the possibility of pumping more oil in an effort to bring prices down . DT NN IN DT NNP IN NNP NNP NNPS , NNP NNP NNP NNP NNP , VBZ NN NNS DT NN MD VB DT NN IN VBG JJR NN IN DT NN TO VB NNS RB . OPEC announced an increase in production quotas in mid-March , but that move failed to bring a significant drop on oil markets . NNP VBD DT NN IN NN NNS IN NN , CC DT NN VBD TO VB DT JJ NN IN NN NNS . A recent report by analysts at Goldman-Sachs predicted that oil might eventually cost as much as $ 105 a barrel . DT JJ NN IN NNS IN NNP VBD IN NN MD RB VB RB JJ IN $ CD DT NN . Other analysts think $ 60 is a more likely top price . JJ NNS VBP $ CD VBZ DT RBR JJ JJ NN . Dozens of African health ministers have declared tuberculosis an emergency in the region , where it kills more than half a million people each year . NNS IN JJ NN NNS VBP VBN NN DT NN IN DT NN , WRB PRP VBZ JJR IN PDT DT CD NNS DT NN . Officials announced the decision in Mozambique during a meeting of the World Health Organization 's Regional Committee for Africa , which ends Friday . NNS VBD DT NN IN NNP IN DT NN IN DT NNP NNP NNP POS NNP NNP IN NNP , WDT VBZ NNP . Officials say urgent measures are needed as TB cases have quadrupled in 18 African nations since 1990 . NNS VBP JJ NNS VBP VBN IN NNP NNS VBP VBN IN CD JJ NNS IN CD . The World Health Organization says most cases of the lung infection can be cured through a six-month drug plan . DT NNP NNP NNP VBZ JJS NNS IN DT NN NN MD VB VBN IN DT JJ NN NN . Experts say TB is a leading cause of death for people with HIV-AIDS , which affects the immune systems of millions of people across Africa . NNS VBP NNP VBZ DT VBG NN IN NN IN NNS IN NNP , WDT VBZ DT JJ NNS IN NNS IN NNS IN NNP . U.S. President Barack Obama has announced creation of a new foreign policy position focusing on global women 's issues . NNP NNP NNP NNP VBZ VBN NN IN DT JJ JJ NN NN VBG IN JJ NNS POS NNS . The president Friday nominated Melanne Verveer to the post of ambassador-at-large for international women 's issues . DT NN NNP VBD NNP NNP TO DT NN IN NN IN JJ NNS POS NNS . She will work at the State Department under Secretary of State Hillary Clinton . PRP MD VB IN DT NNP NNP IN NNP IN NNP NNP NNP . The White House says the new position reflects the importance of global women 's issues to the Obama administration . DT NNP NNP VBZ DT JJ NN VBZ DT NN IN JJ NNS POS NNS TO DT NNP NN . Verveer previously worked as chief of staff for Clinton when she was first lady , and also worked as an aide in the White House for former President Bill Clinton . NNP RB VBD IN NN IN NN IN NNP WRB PRP VBD JJ NN , CC RB VBD IN DT NN IN DT NNP NNP IN JJ NNP NNP NNP . Verveer is also the co-founder and chair of Vital Voices Global Partnership . NNP VBZ RB DT NN CC NN IN NNP NNP NNP NNP . The White House describes the group as an international non-profit that invests in emerging women leaders . DT NNP NNP VBZ DT NN IN DT JJ JJ WDT VBZ IN VBG NNS NNS . Russia has expressed concern about the violence in eastern Uzbekistan , one day after soldiers fired on protesters , killing dozens of people in the city of Andijon . NNP VBZ VBN NN IN DT NN IN JJ NNP , CD NN IN NNS VBD IN NNS , VBG NNS IN NNS IN DT NN IN NNP . In a telephone conversation Saturday , Uzbek President Islam Karimov briefed Russian President Vladimir Putin about the situation . IN DT NN NN NNP , JJ NNP NNP NNP VBD JJ NNP NNP NNP IN DT NN . Both voiced concern about possible threats to stability in Central Asia , and the two leaders agreed to remain in close contact . DT VBD NN IN JJ NNS TO NN IN NNP NNP , CC DT CD NNS VBD TO VB IN JJ NN . Yesterday , Russian authorities blamed Uzbek protesters for the violence . NN , JJ NNS VBD JJ NNS IN DT NN . But the European Union blamed Tashkent , saying the clashes in Andijon were a result of the government 's lack of respect for human rights and failure to ease poverty . CC DT NNP NNP VBD NNP , VBG DT NNS IN NNP VBD DT NN IN DT NN POS NN IN NN IN JJ NNS CC NN TO VB NN . In Washington , U.S. officials urged both the Uzbek government and demonstrators to show restraint and seek a peaceful resolution . IN NNP , NNP NNS VBD DT DT JJ NN CC NNS TO VB NN CC VB DT JJ NN . Japan reportedly is planning to build 12 new facilities in China to dismantle chemical weapons left behind by the Imperial Army at the end of World War II . NNP RB VBZ VBG TO VB CD JJ NNS IN NNP TO VB NN NNS VBN RP IN DT NNP NNP IN DT NN IN NNP NNP NNP . Japan 's Yomiuri newspaper said Sunday that the two countries agreed last month to build the facilities near 12 locations including Beijing , Harbin and Nanjing , where abandoned Japanese chemical weapons are stored . NNP POS NNP NN VBD NNP IN DT CD NNS VBD JJ NN TO VB DT NNS IN CD NNS VBG NNP , NNP CC NNP , WRB JJ JJ NN NNS VBP VBN . The paper said Japan initially planned to dismantle all the weapons at a major plant in Haerbaling , near the border with North Korea . DT NN VBD NNP RB VBD TO VB PDT DT NNS IN DT JJ NN IN NNP , IN DT NN IN NNP NNP . But when China raised concerns about the dangers of transporting the weapons over long distances , Tokyo decided to build the smaller facilities spread throughout the country . CC WRB NNP VBD NNS IN DT NNS IN VBG DT NNS IN JJ NNS , NNP VBD TO VB DT JJR NNS VBD IN DT NN . The report did not include details about the cost or timetable of the construction . DT NN VBD RB VB NNS IN DT NN CC NN IN DT NN . Afghan and U.S.-led coalition troops say they have killed several suspected Taliban militants during an operation in southern Helmand province . JJ CC JJ NN NNS VBP PRP VBP VBN JJ JJ NNP NNS IN DT NN IN JJ NNP NN . Coalition officials said in a statement released Tuesday that the latest clash occurred as troops searched a compound for militants associated with the Taliban , as well as others helping foreign fighters . NN NNS VBD IN DT NN VBN NNP IN DT JJS NN VBD IN NNS VBD DT NN IN NNS VBN IN DT NNP , RB RB IN NNS VBG JJ NNS . During the search a gun battle erupted in which several suspected militants died . IN DT NN DT NN NN VBD IN WDT JJ JJ NNS VBD . A coalition statement said no civilians were killed or injured in the fighting . DT NN NN VBD DT NNS VBD VBN CC VBN IN DT NN . The statement adds that a cache of weapons including rifles , rockets and explosives was found and destroyed following following the battle . DT NN VBZ IN DT NN IN NNS VBG NNS , NNS CC NNS VBD VBN CC VBN VBG VBG DT NN . Helmand province has been badly affected by the Taliban insurgency . NNP NN VBZ VBN RB VBN IN DT NNP NN . The area is one of the world 's top opium growing regions . DT NN VBZ CD IN DT NN POS JJ NN VBG NNS . Journalists in Kenya and abroad are urging Kenyan President Mwai Kibaki to reject legislation that could require reporters to divulge their news sources . NNS IN NNP CC RB VBP VBG JJ NNP NNP NNP TO VB NN WDT MD VB NNS TO VB PRP$ NN NNS . The Kenyan Editors Guild said Thursday that a proposed ' Media Bill ' passed by parliament last month was crafted in part to settle old scores . DT JJ NNP NNP VBD NNP IN DT VBN `` NN NN `` VBN IN NN JJ NN VBD VBN IN NN TO VB JJ NNS . They petitioned Mr. Kibaki to reject the measure . PRP VBD NNP NNP TO VB DT NN . The media advocacy group Reporters Without Borders is also urging Mr. Kibaki to reject the bill . DT NNS NN NN VBZ IN NNS VBZ RB VBG NNP NNP TO VB DT NN . The Paris-based group said in a letter that the measure would have ' disastrous consequences ' for Kenyan democracy , and would undermine a fundamental principle of journalism . DT JJ NN VBD IN DT NN IN DT NN MD VB `` JJ NNS `` IN JJ NN , CC MD VB DT JJ NN IN NN . The bill was amended at the last minute to give the government power to demand the names of unnamed news sources in reports that lead to legal disputes . DT NN VBD VBN IN DT JJ NN TO VB DT NN NN TO VB DT NNS IN JJ NN NNS IN NNS WDT VBP TO JJ NNS . The Ethiopian government has charged 55 opposition members with trying to launch an armed rebellion . DT JJ NN VBZ VBN CD NN NNS IN VBG TO VB DT JJ NN . The state-run Ethiopian News Agency reports the defendants were charged this week with ' instigating armed violence ' against the government following the 1997 national elections . DT JJ NNP NNP NNP VBZ DT NNS VBD VBN DT NN IN `` VBG JJ NN `` IN DT NN VBG DT CD JJ NNS . All of the defendants are said to be associated with the opposition Coalition for Unity and Democracy . DT IN DT NNS VBP VBN TO VB VBN IN DT NN NN IN NN CC NN . The report says the proceedings have been adjourned until Thursday . DT NN VBZ DT NNS VBP VBN VBN IN NNP . More than 80 other opposition figures are already on trial in Ethiopia , accused of treason and attempting to commit genocide . JJR IN CD JJ NN NNS VBP RB IN NN IN NNP , VBN IN NN CC VBG TO VB NN . Those suspects were charged in the wake of unrest that followed the disputed 2005 elections . DT NNS VBD VBN IN DT NN IN NN WDT VBD DT JJ CD NNS . The trial has drawn harsh criticism from donors and human rights groups who say the government is trying to stifle dissent . DT NN VBZ VBN JJ NN IN NNS CC JJ NNS NNS WP VBP DT NN VBZ VBG TO VB NN . OPEC 's most influential member says the oil cartel should raise production quotas at Wednesday 's meeting in Iran . NNP POS JJS JJ NN VBZ DT NN NN MD VB NN NNS IN NNP POS NN IN NNP . Saudi Arabia 's Oil Minister Ali al-Naimi says the Organization of Petroleum Exporting Countries should boost output by 5,00,000 barrels a day from the current self-imposed limit of 27 million barrels . NNP NNP POS NNP NNP NNP NNP VBZ DT NNP IN NNP NNP NNPS MD VB NN IN CD NNS DT NN IN DT JJ JJ NN IN CD CD NNS . Supply concerns were one factor behind last week 's surge that pushed oil prices to within pennies of the all-time record in New York trading . NN NNS VBD CD NN IN JJ NN POS NN WDT VBD NN NNS TO IN NNS IN DT JJ NN IN NNP NNP NN . The price of crude oil for April delivery declined after the Saudi announcement . DT NN IN JJ NN IN NNP NN VBD IN DT JJ NN . But oil prices later rose 52 cents to close at $ 54.95 a barrel in New York on Monday . CC NN NNS RB VBD CD NNS TO VB IN $ CD DT NN IN NNP NNP IN NNP . OPEC produces about 40 percent of the world 's oil and energy ministers from its 11 members are gathering to discuss oil supplies and prices . NNP VBZ IN CD NN IN DT NN POS NN CC NN NNS IN PRP$ CD NNS VBP VBG TO VB NN NNS CC NNS . China has urged Burma to take effective measures to safeguard the rights of Chinese citizens in Burma . NNP VBZ VBN NNP TO VB JJ NNS TO VB DT NNS IN JJ NNS IN NNP . The Chinese foreign ministry said on its Web site Saturday that consular affairs department chief Wei Wei conveyed Beijing 's concerns at a meeting with an official from Burma 's embassy . DT JJ JJ NN VBD IN PRP$ NNP NN NNP IN JJ NNS NN NN NNP NNP VBD NNP POS NNS IN DT NN IN DT NN IN NNP POS NN . The release said Wei met on September 21 with Kyi Kyi Sein , minister counselor of the Burma Embassy . DT NN VBD NNP VBD IN NNP CD IN NNP NNP NNP , NN NN IN DT NNP NNP . Wei urged Burma to investigate reports that military conflicts in northern Burma in August had harmed the rights and interests of Chinese citizens living there . NNP VBD NNP TO VB NNS IN JJ NNS IN JJ NNP IN NNP VBD VBN DT NNS CC NNS IN JJ NNS VBG RB . Tens of thousands of refugees fled across the border into China to escape fighting between the Burmese army and ethnic rebels in Kokang , a mainly ethnic Chinese region of Burma 's Shan state . NNS IN NNS IN NNS VBD IN DT NN IN NNP TO VB VBG IN DT JJ NN CC JJ NNS IN NNP , DT RB JJ JJ NN IN NNP POS NNP NN . Zimbabwe 's ruling ZANU-PF party has rejected the campaign of Information Minister Jonathan Moyo in this year 's parliamentary elections . NNP POS NN NNP NN VBZ VBN DT NN IN NNP NNP NNP NNP IN DT NN POS JJ NNS . The state-run Herald newspaper reports Monday that Mr. Moyo 's name is not included in a new list of candidates in upcoming primary votes . DT JJ NNP NN NNS NNP IN NNP NNP POS NN VBZ RB VBN IN DT JJ NN IN NNS IN VBG JJ NNS . It says Mr. Moyo was planning to compete in the Tsholotsho district that has been reserved for female candidates . PRP VBZ NNP NNP VBD VBG TO VB IN DT NNP NN WDT VBZ VBN VBN IN JJ NNS . President Robert Mugabe has said he will only choose elected lawmakers for his cabinet after the elections . NNP NNP NNP VBZ VBN PRP MD RB VB VBN NNS IN PRP$ NN IN DT NNS . The Herald reports the primary list also does not include Justice Minister Patrick Chinamasa , former Harare mayor Tony Gara , and war veterans leader Joseph Chinotimba . DT NNP VBZ DT JJ NN RB VBZ RB VB NNP NNP NNP NNP , JJ NNP NNP NNP NNP , CC NN NNS NN NNP NNP . Also missing is current lawmaker Philip Chiyangwa , who was jailed last month on charges of spying . RB VBG VBZ JJ NN NNP NNP , WP VBD VBN JJ NN IN NNS IN VBG . Chinese President Hu Jintao has arrived in Spain Sunday for a two day-visit aimed at strengthening bilateral ties . JJ NNP NNP NNP VBZ VBN IN NNP NNP IN DT CD NN VBN IN VBG JJ NNS . His schedule includes talks with King Juan Carlos and Spanish Prime Minister Jose Luis Rodriguez Zapatero . PRP$ NN VBZ NNS IN NNP NNP NNP CC JJ NNP NNP NNP NNP NNP NNP . In part , Spain hopes to increase exports to reduce its trade inbalance with China . IN NN , NNP VBZ TO VB NNS TO VB PRP$ NN NN IN NNP . Mr. Hu arrived in Madrid from Germany where he conferred with outgoing Chancellor Gerhard Schroeder , Chancellor-designate Angela Merkel , and other senior officials . NNP NNP VBD IN NNP IN NNP WRB PRP VBD IN VBG NNP NNP NNP , NNP NNP NNP , CC JJ JJ NNS . The two sides are said to have signed a number of business agreements , and pledged to continue close ties between Berlin and Beijing . DT CD NNS VBP VBN TO VB VBN DT NN IN NN NNS , CC VBD TO VB JJ NNS IN NNP CC NNP . Spain is the last leg of Mr. Hu 's European tour that began last Tuesday in Britain . NNP VBZ DT JJ NN IN NNP NNP POS JJ NN WDT VBD JJ NNP IN NNP . Demonstrators protesting Chinese policies on human rights and Tibet have followed Mr. Hu throughout his trip . NNS VBG JJ NNS IN JJ NNS CC NNP VBP VBN NNP NNP IN PRP$ NN . Mexican President Felipe Calderon has condemned an attack on a Chihuahua drug rehabilitation facility that left 19 people dead . JJ NNP NNP NNP VBZ VBN DT NN IN DT NNP NN NN NN WDT VBD CD NNS JJ . Mr. Calderon issued a statement from Johannesburg where he attended the opening of the World Cup . NNP NNP VBD DT NN IN NNP WRB PRP VBD DT NN IN DT NNP NNP . He said the attack by more than 24 armed men reinforces the conviction to fight criminal gangs that carry out such ' barbaric acts . ' PRP VBD DT NN IN JJR IN CD JJ NNS VBZ DT NN TO VB JJ NNS WDT VBP RP JJ `` JJ NNS . `` On Thursday , a gang of gunmen killed 20 people in another northern Mexican town known for drug-related gang warfare . IN NNP , DT NN IN NNS VBN CD NNS IN DT JJ JJ NN VBN IN JJ NN NN . Authorities say some of the 18 men and two women killed in the series of shootings in Madero were bound in handcuffs . NNS VBP DT IN DT CD NNS CC CD NNS VBN IN DT NN IN NNS IN NNP VBD VBN IN NNS . An estimated 23,000 people have been killed in drug-related violence in Mexico since President Calderon began a crackdown on the drug cartels after taking office in December 2006 . DT VBN CD NNS VBP VBN VBN IN JJ NN IN NNP IN NNP NNP VBD DT NN IN DT NN NNS IN VBG NN IN NNP CD . Representatives of the European Union and China have begun a fourth day of talks in Beijing to resolve a trade dispute over Chinese textiles . NNS IN DT NNP NNP CC NNP VBP VBN DT JJ NN IN NNS IN NNP TO VB DT NN NN IN JJ NNS . There is no word on any progress in the talks , which began Thursday . EX VBZ DT NN IN DT NN IN DT NNS , WDT VBD NNP . A spokesman for the EU office in Beijing has said negotiators are trying to reach a new agreement on textile quotas . DT NN IN DT NNP NN IN NNP VBZ VBN NNS VBP VBG TO VB DT JJ NN IN JJ NNS . China agreed in June to quotas in its textile exports to the EU . NNP VBD IN NNP TO NNS IN PRP$ NN NNS TO DT NNP . But millions of items of clothing manufactured in China have been blocked in European ports because China has already shipped its annual quota . CC NNS IN NNS IN NN VBN IN NNP VBP VBN VBN IN JJ NNS IN NNP VBZ RB VBN PRP$ JJ NN . The quotas are designed to protect European textile manufacturers from low-priced Chinese competition . DT NNS VBP VBN TO VB JJ NN NNS IN JJ JJ NN . Chinese textile exports surged early this year when a global system of textile quotas ended . JJ NN NNS VBD RB DT NN WRB DT JJ NN IN JJ NNS VBD . Forecasters say Hurricane Otis is gaining strength as it moves closer to Mexico 's northwestern coast . NNS VBP NNP NNP VBZ VBG NN IN PRP VBZ RBR TO NNP POS JJ NN . The U.S. National Hurricane Center says the Category One storm has winds of 150 kilometers per hour and is moving toward the Baja California Peninsula . DT NNP NNP NNP NNP VBZ DT NNP NNP NN VBZ NNS IN CD NNS IN NN CC VBZ VBG IN DT NNP NNP NNP . The storm is currently projected to hit the central portion of the Baja Peninsula as early as Sunday . DT NN VBZ RB VBN TO VB DT JJ NN IN DT NNP NNP RB RB IN NNP . Forecasters warn that a shift in position could result in an earlier landfall on the southern end of the peninsula . NNS VBP IN DT NN IN NN MD VB IN DT JJR NN IN DT JJ NN IN DT NN . Insurgents have knocked out electrical power to much of Baghdad on the eve of Iraq 's nationwide constitutional referendum . NNS VBP VBN RP JJ NN TO NN IN NNP IN DT NN IN NNP POS JJ JJ NN . After dark Friday , saboteurs hit powerlines north of Baghdad . IN JJ NNP , NNS VBD NNS NN IN NNP . Electrical Ministry officials say they do not know how long it will take to restore power to the capital . NNP NNP NNS VBP PRP VBP RB VB WRB JJ PRP MD VB TO VB NN TO DT NN . The streets of Baghdad were mostly quiet Friday due to security measures put in place to prevent violence from interfering with election preparations . DT NNS IN NNP VBD RB JJ NNP JJ TO NN NNS VBN IN NN TO VB NN IN VBG IN NN NNS . At Friday prayers , clerics discussed the proposed constitution . IN NNP NNS , NNS VBD DT VBN NN . Some told worshippers to vote for its adoption , while others urged its rejection . DT VBD NNS TO VB IN PRP$ NN , IN NNS VBD PRP$ NN . Authorities reported gunshots fired at two polling stations . NNS VBD NNS VBD IN CD VBG NNS . Insurgents also bombed and set fire to offices belonging to the largest Sunni Arab political party , the Iraqi Islamic Party , in apparent retaliation for its decision to support the constitution . NNS RB VBD CC VBD NN TO NNS VBG TO DT JJS JJ JJ JJ NN , DT JJ NNP NNP , IN JJ NN IN PRP$ NN TO VB DT NN . The United Nations Development Program has named Spanish actor Antonio Banderas as a Goodwill Ambassador in the fight against poverty . DT NNP NNP NNP NNP VBZ VBN JJ NN NNP NNP IN DT NNP NN IN DT NN IN NN . The U.N. said Wednesday Banderas will work to enact the U.N. Millennium Development Goals that were established to fight hunger , disease , illiteracy , environmental degradation and discrimination against women . DT NNP VBD NNP NNP MD VB TO VB DT NNP NNP NNP NNS WDT VBD VBN TO VB NN , NN , NN , JJ NN CC NN IN NNS . Banderas issued a statement saying he will work with the U.N. Development Program to take action on the goals , with a particular focus on Latin America and Africa . NNP VBD DT NN VBG PRP MD VB IN DT NNP NNP NNP TO VB NN IN DT NNS , IN DT JJ NN IN NNP NNP CC NNP . The actor will also work to raise awareness of the $ 710 million Millennium Development Goal Achievement Fund , which supports national and local governments as well as citizen organizations in their efforts to tackle poverty and inequality . DT NN MD RB VB TO VB NN IN DT $ CD CD NNP NNP NNP NNP NNP , WDT VBZ JJ CC JJ NNS RB RB IN NN NNS IN PRP$ NNS TO VB NN CC NN . Antonio Banderas was born in Spain and is an accomplished actor , writer , singer and producer . NNP NNP VBD VBN IN NNP CC VBZ DT JJ NN , NN , NN CC NN . Philippine President Gloria Arroyo has approved legislation abolishing the death penalty ahead of a planned trip to the Vatican . JJ NNP NNP NNP VBZ VBN NN VBG DT NN NN RB IN DT JJ NN TO DT NNP . The law Ms. Arroyo signed Saturday automatically commutes the sentences of about 1,200 death row convicts in the Philippines to life imprisonment . DT NN NNP NNP VBD NNP RB VBZ DT NNS IN IN CD NN NN NNS IN DT NNPS TO NN NN . Congress restored the death penalty in the mid-1990s for serious crimes such as murder . NNP VBD DT NN NN IN DT NNS IN JJ NNS JJ IN NN . Seven people have been executed since then . CD NNS VBP VBN VBN IN RB . Ms. Arroyo is to leave for the Vatican and Spain Sunday . NNP NNP VBZ TO VB IN DT NNP CC NNP NNP . She had been scheduled to leave Saturday , but the trip was rescheduled so she could receive two days of hospital treatment for a stomach virus . PRP VBD VBN VBN TO VB NNP , CC DT NN VBD VBN IN PRP MD VB CD NNS IN NN NN IN DT NN NN . Iran 's President Mahmoud Ahmadinejad says he suspects Britain may have played a role in twin bomb attacks that killed five people and injured 100 others in southwestern Iran . NNP POS NNP NNP NNP VBZ PRP VBZ NNP MD VB VBN DT NN IN JJ NN NNS WDT VBD CD NNS CC VBN CD NNS IN JJ NNP . Iran 's Student News Agency quoted Mr. Ahmadinejad as saying Iranian officials have found what he called British ' footprints ' in past attacks . NNP POS NNP NNP NNP VBD NNP NNP IN VBG JJ NNS VBP VBN WP PRP VBD JJ `` NNS `` IN JJ NNS . He added the presence of British troops in southern Iraq and near Iran 's border is a factor behind insecurity in both countries . PRP VBD DT NN IN JJ NNS IN JJ NNP CC IN NNP POS NN VBZ DT NN IN NN IN DT NNS . Britain 's embassy in Tehran has rejected the allegations and condemned Saturday 's attack near a shopping center in Khuzestan province . NNP POS NN IN NNP VBZ VBN DT NNS CC VBD NNP POS NN IN DT NN NN IN NNP NN . In a statement , it said any link between the British government and terrorist attacks in the area is without foundation . IN DT NN , PRP VBD DT NN IN DT JJ NN CC JJ NNS IN DT NN VBZ IN NN . Earlier this month , British officials accused Iran and Lebanese militants of supplying explosives technology to insurgents in Iraq . RBR DT NN , JJ NNS VBD NNP CC JJ NNS IN VBG NNS NN TO NNS IN NNP . Farmer in Ivory Coast 's Duekoue cocoa plantation Unidentified attackers have killed at least 41 villagers in Ivory Coast 's western cocoa region . NNP IN NNP NNP POS JJ NN NN VBN NNS VBP VBN IN JJS CD NNS IN NNP NNP POS JJ NN NN . Army spokesman Jules Yao Yao says 64 others were wounded in the attack early Wednesday outside the town of Duekoue . NNP NN NNP NNP NNP VBZ CD NNS VBD VBN IN DT NN JJ NNP IN DT NN IN NNP . He says the victims were shot , stabbed or burned to death . PRP VBZ DT NNS VBD VBN , VBN CC VBN TO NN . Witnesses say they were all members of the ethnic Guere tribe . NNS VBP PRP VBD DT NNS IN DT JJ NNP NN . It is not clear what sparked the attack . PRP VBZ RB JJ WP VBD DT NN . However , clashes between indigenous tribes and migrant farm workers are common in the region . RB , NNS IN JJ NNS CC JJ NN NNS VBP JJ IN DT NN . Tensions between the groups have been exacerbated by Ivory Coast 's civil war , which began in 2002 . NNS IN DT NNS VBP VBN VBN IN NNP NNP POS JJ NN , WDT VBD IN CD . The United Nations peacekeeping mission in Ivory Coast says it has sent patrols to the region to investigate . DT NNP NNPS VBG NN IN NNP NNP VBZ PRP VBZ VBN NNS TO DT NN TO VB . Lebanese security officials say a car bomb explosion has killed a senior member of the militant Palestinian group Islamic Jihad in Sidon , Friday . JJ NN NNS VBP DT NN NN NN VBZ VBN DT JJ NN IN DT JJ JJ NN NNP NNP IN NNP , NNP . The officials say the militant 's brother also died in the blast near the central square of the southern coastal city . DT NNS VBP DT NN POS NN RB VBD IN DT NN IN DT JJ NN IN DT JJ JJ NN . There has been no claim of responsibility for the bombing . EX VBZ VBN DT NN IN NN IN DT NN . Islamic Jihad blamed Israel for the attack on the militant leader Mahmoud Majzoub , but Israeli officials denied any knowledge of the bombing . NNP NNP VBD NNP IN DT NN IN DT JJ NN NNP NNP , CC JJ NNS VBD DT NN IN DT NN . Amnesty International says Zimbabwe 's upcoming parliamentary elections will not be free and fair -- because the government of Zimbabwe continues to use threats and intimidation against opposition supporters . NNP NNP VBZ NNP POS JJ JJ NNS MD RB VB JJ CC JJ : IN DT NN IN NNP VBZ TO VB NNS CC NN IN NN NNS . Samkelo Mokhine is the chairman for Amnesty International in Johannesburg , South Africa . NNP NNP VBZ DT NN IN NNP NNP IN NNP , NNP NNP . He told English to Africa reporter William Eagle that his group is offering several suggestions to improve the conduct of the elections . PRP VBD NNP TO NNP NN NNP NNP IN PRP$ NN VBZ VBG JJ NNS TO VB DT NN IN DT NNS . One is to train monitors how to look for human rights violations , such as withholding access to food . CD VBZ TO VB NNS WRB TO VB IN JJ NNS NNS , JJ IN VBG NN TO NN . Another is to watch for attacks on all parties before , during and after the polls . DT VBZ TO VB IN NNS IN DT NNS IN , IN CC IN DT NNS . Amnesty says any violations should then be publicly denounced and reported to authorities . NNP VBZ DT NNS MD RB VB RB VBN CC VBN TO NNS . The group says monitors should also have access to all sectors of the population - since many violations occur far away from polling stations . DT NN VBZ NNS MD RB VB NN TO DT NNS IN DT NN ; IN JJ NNS VBP RB RB IN VBG NNS . Pakistani authorities say police in the southern port city of Karachi have arrested two al-Qaida militants for their involvement in a suicide attack earlier this year that killed a U.S. diplomat . JJ NNS VBP NNS IN DT JJ JJ NN IN NNP VBP VBN CD NNP NNS IN PRP$ NN IN DT NN NN RBR DT NN WDT VBD DT NNP NN . The police chief for the Sindh province Jehangir Mirza says the suspects were captured during an early morning Monday raid . DT NN NN IN DT NNP NN NNP NNP VBZ DT NNS VBD VBN IN DT JJ NN NNP NN . The blast near the U.S. consulate in Karachi on March 2 killed the U.S. diplomat David Foy , three Pakistanis and the attacker who rammed his explosive-laden car into a car carrying the diplomat . DT NN IN DT NNP NN IN NNP IN NNP CD VBD DT NNP NN NNP NNP , CD NNS CC DT NN WP VBD PRP$ JJ NN IN DT NN VBG DT NN . More than 50 people were wounded in the attack , including a Moroccan child . JJR IN CD NNS VBD VBN IN DT NN , VBG DT JJ NN . Last week , Pakistani intelligence officials arrested six people in connection with the attack and identified the suicide bomber . JJ NN , JJ NN NNS VBN CD NNS IN NN IN DT NN CC VBD DT NN NN . Authorities said the six were associated with the suicide attacker , and that they were linked to al-Qaida , as well as banned domestic militant groups . NNS VBD DT CD VBD VBN IN DT NN NN , CC IN PRP VBD VBN TO NNP , RB RB IN VBN JJ JJ NNS . President Bush says the United States will drop subsidies to American farmers - if the European Union does the same in Europe . NNP NNP VBZ DT NNP NNPS MD VB NNS TO JJ NNS IN IN DT NNP NNP VBZ DT NN IN NNP . He told British television Sunday , ending those subsidies would allow African countries to compete better , reducing their need for international aid . PRP VBD JJ NN NNP , VBG DT NNS MD VB JJ NNS TO VB RB , VBG PRP$ NN IN JJ NN . President Bush will attend he Group of Eight Summit this week , which will discuss aid to Africa . NNP NNP MD VB PRP NNP IN CD NNP DT NN , WDT MD VB NN TO NNP . But farm subsidies are very popular in France and Germany , and the U.S. challenge is not thought likely to be accepted . CC NN NNS VBP RB JJ IN NNP CC NNP , CC DT NNP NN VBZ RB VBN JJ TO VB VBN . President Bush also said he will reject any Kyoto-style deal on climate change at the G8 summit in Scotland . NNP NNP RB VBD PRP MD VB DT JJ NN IN NN NN IN DT NNP NN IN NNP . He said the 1997 U.N. Kyoto protocol , which Washington never ratified , would have ruined the American economy with its mandated reductions on carbon emissions . PRP VBD DT CD NNP NNP NN , WDT NNP RB VBD , MD VB VBN DT JJ NN IN PRP$ VBN NNS IN NN NNS . Mr. Bush favors a focus on clean technologies to counter climate change . NNP NNP VBZ DT NN IN JJ NNS TO VB NN NN . An Iranian news report quotes a top nuclear official as saying Tehran will ' seriously and enthusiastically ' study a Russian proposal to enrich uranium from Iran on Russian soil . DT JJ NN NN VBZ DT JJ JJ NN IN VBG NNP MD `` RB CC RB `` VB DT JJ NN TO VB NN IN NNP IN JJ NN . The comments by Javad Vaeedi , the deputy head of Iran 's National Security Council , were reported Wednesday by the Iranian Student News Agency . DT NNS IN NNP NNP , DT NN NN IN NNP POS NNP NNP NNP , VBD VBN NNP IN DT JJ NNP NNP NNP . The United States and the European Union have voiced grave concerns that without oversight , Tehran will process uranium to the highly enriched level needed to make an atomic bomb . DT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS WDT IN NN , NNP MD VB NN TO DT RB VBN NN VBN TO VB DT JJ NN . Tehran says it is seeking a lower grade of enriched uranium to fuel a nuclear power plant . NNP VBZ PRP VBZ VBG DT JJR NN IN VBN NN TO VB DT JJ NN NN . Wednesday 's comments by the Iranian official are the most positive public statements from Tehran since Moscow offered earlier this year to supply enriched uranium for Iran 's Bushehr reactor . NNP POS NNS IN DT JJ NN VBP DT RBS JJ JJ NNS IN NNP IN NNP VBD RBR DT NN TO VB VBN NN IN NNP POS NNP NN . The comments are also the first public acknowledgment that Tehran has received the Russian offer . DT NNS VBP RB DT JJ JJ NN IN NNP VBZ VBN DT JJ NN . Four suspected al-Qaida members in Saudi Arabian custody have said on Saudi media they planned to attack oil facilities in the kingdom and other Gulf states . CD JJ NNP NNS IN NNP NNP NN VBP VBN IN JJ NNS PRP VBD TO VB NN NNS IN DT NN CC JJ NNP NNS . Saudi police detained the four last year in connection with a failed February 2006 attack on the Abqaiq oil complex . JJ NNS VBD DT CD JJ NN IN NN IN DT VBN NNP CD NN IN DT NNP NN NN . Security guards foiled the attack . NNP NNS VBD DT NN . The four suspects appeared on Saudi television this week . DT CD NNS VBD IN JJ NN DT NN . They are accused of providing logistical support to the bombers . PRP VBP VBN IN VBG JJ NN TO DT NNS . One of the four , identified as Abdullah al-Muqrin , said the plan to attack oil facilities in Saudi Arabia was to coincide with other al-Qaida attacks on oil facilities in Kuwait and the United Arab Emirates . CD IN DT CD , VBN IN NNP NNP , VBD DT NN TO VB NN NNS IN NNP NNP VBD TO VB IN JJ NNP NNS IN NN NNS IN NNP CC DT NNP NNP NNPS . Al-Muqrin also said he was told al-Qaida leader Osama bin Laden would authorize the attacks . NNP RB VBD PRP VBD VBN NNP NN NNP NNP NNP MD VB DT NNS . With the U.S. economy in recession , some Americans are finding ways to be thrifty this holiday season : spending time and money on handmade gifts . IN DT NNP NN IN NN , DT NNS VBP VBG NNS TO VB JJ DT NN NN IN NN NN CC NN IN JJ NNS . Making , rather than buying , holiday gifts is growing in popularity . VBG , RB IN VBG , NN NNS VBZ VBG IN NN . In 1974 , ethnic differences within the British colony of the Gilbert and Ellice Islands caused the Polynesians of the Ellice Islands to vote for separation from the Micronesians of the Gilbert Islands . IN CD , JJ NNS IN DT JJ NN IN DT NNP CC NNP NNP VBD DT NNS IN DT NNP NNP TO VB IN NN IN DT NNPS IN DT NNP NNP . The following year , the Ellice Islands became the separate British colony of Tuvalu . DT JJ NN , DT NNP NNP VBD DT JJ JJ NN IN NNP . Independence was granted in 1978 . NN VBD VBN IN CD . In 2000 , Tuvalu negotiated a contract leasing its Internet domain name ' . tv ' for $ 50 million in royalties over a 12-year period . IN CD , NNP VBD DT NN VBG PRP$ NNP NN NN `` . VB `` IN $ CD CD IN NNS IN DT JJ NN . Tonga has a small , open , South Pacific island economy . NNP VBZ DT JJ , JJ , NNP NNP NN NN . It has a narrow export base in agricultural goods . PRP VBZ DT JJ NN NN IN JJ NNS . Squash , vanilla beans , and yams are the main crops . NNP , NN NNS , CC NNS VBP DT JJ NNS . Agricultural exports , including fish , make up two-thirds of total exports . NNP NNS , VBG NN , VB RP NNS IN JJ NNS . The country must import a high proportion of its food , mainly from New Zealand . DT NN MD VB DT JJ NN IN PRP$ NN , RB IN NNP NNP . The country remains dependent on external aid and remittances from Tongan communities overseas to offset its trade deficit . DT NN VBZ JJ IN JJ NN CC NNS IN NNP NNS RB TO VB PRP$ NN NN . Tourism is the second-largest source of hard currency earnings following remittances . NNP VBZ DT JJ NN IN JJ NN NNS VBG NNS . Tonga had 39,000 visitors in 2006 . NNP VBD CD NNS IN CD . The government is emphasizing the development of the private sector , especially the encouragement of investment , and is committing increased funds for health and education . DT NN VBZ VBG DT NN IN DT JJ NN , RB DT NN IN NN , CC VBZ VBG VBN NNS IN NN CC NN . Tonga has a reasonably sound basic infrastructure and well developed social services . NNP VBZ DT RB JJ JJ NN CC RB VBN JJ NNS . High unemployment among the young , a continuing upturn in inflation , pressures for democratic reform , and rising civil service expenditures are major issues facing the government . JJ NN IN DT JJ , DT VBG NN IN NN , NNS IN JJ NN , CC VBG JJ NN NNS VBP JJ NNS VBG DT NN . Shortly after achieving independence from Britain in the early 1960s , Tanganyika and Zanzibar merged to form the nation of Tanzania in 1964 . RB IN VBG NN IN NNP IN DT JJ NNS , NNP CC NNP VBD TO VB DT NN IN NNP IN CD . One-party rule ended in 1995 with the first democratic elections held in the country since the 1970s . JJ NN VBD IN CD IN DT JJ JJ NNS VBN IN DT NN IN DT NNS . Zanzibar 's semi-autonomous status and popular opposition have led to two contentious elections since 1995 , which the ruling party won despite international observers ' claims of voting irregularities . NNP POS JJ NN CC JJ NN VBP VBN TO CD JJ NNS IN CD , WDT DT NN NN VBD IN JJ NNS POS NNS IN NN NNS . The formation of a government of national unity between Zanzibar 's two leading parties succeeded in minimizing electoral tension in 2010 DT NN IN DT NN IN JJ NN IN NNP POS CD JJ NNS VBN IN VBG JJ NN IN CD Phosphate mining had been the only significant economic activity , but in December 1987 the Australian government closed the mine . NNP NN VBD VBN DT JJ JJ JJ NN , CC IN NNP CD DT JJ NN VBD DT NN . In 1991 , the mine was reopened . IN CD , DT NN VBD VBN . With the support of the government , a $ 34 million casino opened in 1993 , but closed in 1998 . IN DT NN IN DT NN , DT $ CD CD NN VBD IN CD , CC VBD IN CD . From 2004 to 2007 , the economy grew about 10 % per year , driven largely by an expansion in the garment sector , construction , agriculture , and tourism . IN CD TO CD , DT NN VBD RB CD NN IN NN , VBN RB IN DT NN IN DT NN NN , NN , NN , CC NN . GDP contracted slightly in 2009 as a result of the global economic slowdown , but climbed more than 4 % in 1010 , driven by renewed exports . NN VBD RB IN CD IN DT NN IN DT JJ JJ NN , CC VBD JJR IN CD NN IN CD , VBN IN JJ NNS . With the January 2005 expiration of a WTO Agreement on Textiles and Clothing , Cambodian textile producers were forced to compete directly with lower-priced countries such as China , India , Vietnam , and Bangladesh . IN DT NNP CD NN IN DT NNP NN IN NNP CC NNP , JJ NN NNS VBD VBN TO VB RB IN JJ NNS JJ IN NNP , NNP , NNP , CC NNP . The garment industry currently employs more than 2,80,000 people - about 5 % of the work force - and contributes more than 70 % of Cambodia 's exports . DT NN NN RB VBZ JJR IN CD NNS : IN CD NN IN DT NN NN : CC VBZ JJR IN CD NN IN NNP POS NNS . In 2005 , exploitable oil deposits were found beneath Cambodia 's territorial waters , representing a new revenue stream for the government if commercial extraction begins . IN CD , JJ NN NNS VBD VBN IN NNP POS JJ NNS , VBG DT JJ NN NN IN DT NN IN JJ NN VBZ . Mining also is attracting significant investor interest , particularly in the northern parts of the country . NN RB VBZ VBG JJ NN NN , RB IN DT JJ NNS IN DT NN . The government has said opportunities exist for mining bauxite , gold , iron and gems . DT NN VBZ VBN NNS VBP IN NN NN , NN , NN CC NNS . In 2006 , a US-Cambodia bilateral Trade and Investment Framework Agreement ( TIFA ) was signed , and several rounds of discussions have been held since 2007 . IN CD , DT NNP NN NNP CC NNP NNP NNP LRB NNP RRB VBD VBN , CC JJ NNS IN NNS VBP VBN VBN IN CD . Rubber exports increased about 25 % in 2009 due to rising global demand . NNP NNS VBD RB CD NN IN CD JJ TO VBG JJ NN . The tourism industry has continued to grow rapidly , with foreign arrivals exceeding 2 million per year in 2007 - 8 ; however , economic troubles abroad dampened growth in 2009 . DT NN NN VBZ VBN TO VB RB , IN JJ NNS VBG CD CD IN NN IN CD : CD ; RB , JJ NNS RB VBD NN IN CD . The global financial crisis is weakening demand for Cambodian exports , and construction is declining due to a shortage of credit . DT JJ JJ NN VBZ VBG NN IN JJ NNS , CC NN VBZ VBG JJ TO DT NN IN NN . The long-term development of the economy remains a daunting challenge . DT JJ NN IN DT NN VBZ DT JJ NN . The Cambodian government is working with bilateral and multilateral donors , including the World Bank and IMF , to address the country 's many pressing needs . DT JJ NN VBZ VBG IN JJ CC JJ NNS , VBG DT NNP NNP CC NNP , TO VB DT NN POS JJ JJ NNS . The major economic challenge for Cambodia over the next decade will be fashioning an economic environment in which the private sector can create enough jobs to handle Cambodia 's demographic imbalance . DT JJ JJ NN IN NNP IN DT JJ NN MD VB VBG DT JJ NN IN WDT DT JJ NN MD VB JJ NNS TO VB NNP POS JJ NN . More than 50 % of the population is less than 25 years old . JJR IN CD NN IN DT NN VBZ JJR IN CD NNS JJ . The population lacks education and productive skills , particularly in the poverty-ridden countryside , which suffers from an almost total lack of basic infrastructure . DT NN VBZ NN CC JJ NNS , RB IN DT JJ NN , WDT VBZ IN DT RB JJ NN IN JJ NN . A FOWLER , taking his bird-lime and his twigs , went out to catch birds . DT NN , VBG PRP$ NN CC PRP$ NNS , VBD RP TO VB NNS . Seeing a thrush sitting upon a tree , he wished to take it , and fitting his twigs to a proper length , watched intently , having his whole thoughts directed towards the sky . VBG DT NN VBG IN DT NN , PRP VBD TO VB PRP , CC VBG PRP$ NNS TO DT JJ NN , VBD RB , VBG PRP$ JJ NNS VBD IN DT NN . While thus looking upwards , he unknowingly trod upon a Viper asleep just before his feet . IN RB VBG NNS , PRP RB VBD IN DT NN JJ RB IN PRP$ NNS . The Viper , turning about , stung him , and falling into a swoon , the man said to himself , ' Woe is me ! that while I purposed to hunt another , I am myself fallen unawares into the snares of death . ' DT NN , VBG RB , VBG PRP , CC VBG IN DT NN , DT NN VBD TO PRP , `` NN VBZ PRP . WDT IN PRP VBD TO VB DT , PRP VBP PRP VBN NNS IN DT NNS IN NN . `` A manager is a person who thinks that nine women can produce a child in one month . DT NN VBZ DT NN WP VBZ IN CD NNS MD VB DT NN IN CD NN . The United Nations ' new envoy to Somalia has held his first talks with President Abdullah Yusuf and other officials in Mogadishu . DT NNP NNPS POS JJ NN TO NNP VBZ VBN PRP$ JJ NNS IN NNP NNP NNP CC JJ NNS IN NNP . Upon arriving in the capital , Ahmedou Ould Abdallah called the humanitarian and human rights situation in Somalia ' the worst on the continent . ' IN VBG IN DT NN , NNP NNP NNP VBD DT JJ CC JJ NNS NN IN NNP `` DT JJS IN DT NN . `` Abdallah , a Mauritanian diplomat , was appointed to the post September 12 . NNP , DT JJ NN , VBD VBN TO DT NN NNP CD . The envoy 's meeting with top leaders came as two explosions ripped through Mogadishu 's Bakara market , a site of frequent attacks in recent months . DT NN POS NN IN JJ NNS VBD IN CD NNS VBD IN NNP POS NNP NN , DT NN IN JJ NNS IN JJ NNS . Both explosions went off as government forces drove through the area . DT NNS VBD RP IN NN NNS VBD IN DT NN . Witnesses say at least five police officers were wounded in one of the attacks . NNS VBP IN JJS CD NNS NNS VBD VBN IN CD IN DT NNS . Syria says it is forming a joint commission with Beirut to investigate whether a Syrian military post is actually in Lebanese territory . NNP VBZ PRP VBZ VBG DT JJ NN IN NNP TO VB IN DT JJ JJ NN VBZ RB IN JJ NN . The announcement follows the broadcast of Arab television news footage showing a border post near a village in the southern Bekaa valley , in the area of Deir al-Ashayier to the east of Kfar Kouk , where Syrian troops are reported to be still stationed . DT NN VBZ DT NN IN JJ NN NN NN VBG DT NN NN IN DT NN IN DT JJ NNP NN , IN DT NN IN NNP NNP TO DT NN IN NNP NNP , WRB JJ NNS VBP VBN TO VB RB VBN . Last month , Syria said it had withdrawn all of its troops and intelligence agents from Lebanon , but the pullout is still being verified by a United Nations team in the country . JJ NN , NNP VBD PRP VBD VBN DT IN PRP$ NNS CC NN NNS IN NNP , CC DT NN VBZ RB VBG VBN IN DT NNP NNP NN IN DT NN . Last week , U.N. officials said the Lebanese government still does not fully control large parts of the country . JJ NN , NNP NNS VBD DT JJ NN RB VBZ RB RB VB JJ NNS IN DT NN . Syrian officials say they are willing to cooperate with a U.N. investigation into the assassination of former Lebanese Prime Minister Rafik Hariri . JJ NNS VBP PRP VBP JJ TO VB IN DT NNP NN IN DT NN IN JJ JJ NNP NNP NNP NNP . The French Press Agency , AFP and Reuters quote an unnamed Syrian official as making that statement Friday , one day after a top U.N. official said Damascus has ignored requests to help with the probe . DT NNP NNP NNP , NNP CC NNP VBP DT JJ JJ NN IN VBG IN NN NNP , CD NN IN DT JJ NNP NN VBD NNP VBZ VBN NNS TO VB IN DT NN . Undersecretary-General for Political Affairs Ibrahim Gambari said Damascus has not responded to requests for documents and for interviews with witnesses . JJ IN NNP NNP NNP NNP VBD NNP VBZ RB VBN TO NNS IN NNS CC IN NNS IN NNS . The U.N. Security Council later urged all countries - especially those who it said have ' yet to respond adequately ' - to cooperate fully . DT NNP NNP NNP RB VBD DT NNS IN RB DT WP PRP VBD VBP `` RB TO VB RB `` : TO VB RB . Friday 's news reports say the head of the probe , German prosecutor Detlev Mehlis , will meet shortly with a Syrian representative . NNP POS NN NNS VBP DT NN IN DT NN , JJ NN NNP NNP , MD VB RB IN DT JJ NN . Many in Lebanon have accused Syria of being behind Mr. Hariri 's February 14 assassination - a charge Damascus denies . JJ IN NNP VBP VBN NNP IN VBG IN NNP NNP POS NNP CD NN IN DT NN NNP VBZ . The U.S. military says U.S.-led forces in Iraq have captured a prominent militant linked to al-Qaida ally Abu Musab al-Zarqawi . DT NNP NN VBZ JJ NNS IN NNP VBP VBN DT JJ NN VBN TO NNP NN NNP NNP NNP . A military statement issued Saturday says Abdul Aziz Sa'dun Ahmed Hamduni -- also known as Abu Ahmed -- was detained on December 22 . DT JJ NN VBN NNP VBZ NNP NNP NNP NNP NNP : RB VBN IN NNP NNP : VBD VBN IN NNP CD . The military says Abu Ahmed was the deputy of Abu Talha , commander of a Zarqawi terrorist group in the northern city of Mosul . DT JJ VBZ NNP NNP VBD DT NN IN NNP NNP , NN IN DT NNP JJ NN IN DT JJ NN IN NNP . Last week , the Iraqi government announced the capture of two other Abu Talha leaders in late December . JJ NN , DT JJ NN VBD DT NN IN CD JJ NNP NNP NNS IN JJ NNP . The developments come as Iraq prepares for elections on January 30 . DT NNS VBP IN NNP VBZ IN NNS IN NNP CD . President Bush says the U.S. military will do its best to give every Iraqi citizen a chance to vote . NNP NNP VBZ DT NNP NN MD VB PRP$ JJS TO VB DT JJ NN DT NN TO VB . On Friday , the president confirmed reports he is sending a team to Iraq to assess the country 's security situation . IN NNP , DT NN VBD NNS PRP VBZ VBG DT NN TO NNP TO VB DT NN POS NN NN . The U.S. government is working to bolster troubled banks at a time when officials worry the recession may get worse and hit financial companies even harder . DT NNP NN VBZ VBG TO VB JJ NNS IN DT NN WRB NNS VBP DT NN MD VB JJR CC VBD JJ NNS RB RBR . The U.S. Treasury department and other financial regulators say they will ease the repayment terms of hundreds of billions of dollars worth of aid they have given to banks and make it easier for banks to use government help in the future . DT NNP NNP NN CC JJ JJ NNS VBP PRP MD VB DT NN NNS IN NNS IN NNS IN NNS NN IN NN PRP VBP VBN TO NNS CC VB PRP JJR IN NNS TO VB NN NN IN DT NN . This week , regulators will check banks to see if they have the reserves needed to ' provide the credit necessary to restore economic growth . ' DT NN , NNS MD VB NNS TO VB IN PRP VBP DT NNS VBN TO `` VB DT NN JJ TO VB JJ NN . `` Those banks that can not raise the needed capital from private sources could get additional government help . DT NNS WDT MD RB VB DT JJ NN IN JJ NNS MD VB JJ NN NN . After Monday 's announcement , the share prices of two major banks , Citigroup and the Bank of America , rose . IN NNP POS NN , DT NN NNS IN CD JJ NNS , NNP CC DT NNP IN NNP , VBD . Those firms had seen shares plunge last week after investors grew worried that the banks could not cope with rising credit losses . DT NNS VBD VBN NNS VB JJ NN IN NNS VBD JJ IN DT NNS MD RB VB IN VBG NN NNS . Australia has announced plans to buy 100 state-of-the-art U.S. jet fighters and double the size of its small submarine fleet to keep pace with an Asian military buildup . NNP VBZ VBN NNS TO VB CD JJ NNP NN NNS CC VB DT NN IN PRP$ JJ NN NN TO VB NN IN DT JJ JJ NN . Prime Minister Kevin Rudd launched the government 's defense white paper for the next 20 years onboard the HMAS Stuart in Sydney Harbor Saturday . NNP NNP NNP NNP VBD DT NN POS NN JJ NN IN DT JJ CD NNS VBD DT NNP NNP IN NNP NNP NNP . Mr. Rudd said the government will increase annual defense spending by three percent over the next decade . NNP NNP VBD DT NN MD VB JJ NN NN IN CD NN IN DT JJ NN . Under the plan , Australia will buy 12 submarines fitted with cruise missiles , eight warships and 100 F-35 Lightning Joint Strike Fighter jets . IN DT NN , NNP MD VB CD NNS VBN IN NN NNS , CD NNS CC CD NNP NNP NNP NNP NNP NNS . Opposition leader Malcolm Turnbull criticized the plan , saying the government has failed to explain how it will pay for the project . NNP NN NNP NNP VBD DT NN , VBG DT NN VBZ VBN TO VB WRB PRP MD VB IN DT NN . The paper predicted that China will be the strongest Asian military power and said Beijing should assure its neighbors that it is not a threat to their sovereignty . DT NN VBD IN NNP MD VB DT JJS JJ JJ NN CC VBD NNP MD VB PRP$ NNS IN PRP VBZ RB DT NN TO PRP$ NN . Authorities in Indian Kashmir say three policemen have been killed and at least 11 people were wounded in two separate incidents Thursday . NNS IN JJ NNP VBP CD NNS VBP VBN VBN CC IN JJS CD NNS VBD VBN IN CD JJ NNS NNP . The authorities say the police officers died when suspected Islamic militants ambushed their patrol north of Jammu . DT NNS VBP DT NN NNS VBD WRB JJ NNP NNS VBD PRP$ JJ NN IN NNP . Two policemen are missing . CD NNS VBP VBG . In the town of Awantipora , north of Srinagar , suspected militants hurled a grenade at a busy intersection , wounding at least 11 pedestrians . IN DT NN IN NNP , NN IN NNP , JJ NNS VBD DT NN IN DT JJ NN , VBG IN JJS CD NNS . Police sealed-off the area and are looking for the attackers . NNS VBP DT NN CC VBP VBG IN DT NNS . Militant separatists continue their attacks against government targets in Kashmir , saying they oppose the ongoing peace process between India and Pakistan . NNP NNS VBP PRP$ NNS IN NN NNS IN NNP , VBG PRP VBP DT JJ NN NN IN NNP CC NNP . Kashmiri militants have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan . JJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP . The insurgency has claimed tens of thousand of lives . DT NN VBZ VBN NNS IN CD IN NNS . Pirates have hijacked a Greek-owned cargo vessel in the Gulf of Aden , off the coast of Somalia . NNS VBP VBN DT JJ NN NN IN DT NNP IN NNP , IN DT NN IN NNP . The Greek merchant marine ministry says pirates seized the MV Saldanha early Sunday , as it headed toward Slovenia with a load of coal . DT JJ NN NN NN VBZ NNS VBD DT NNP NNP JJ NNP , IN PRP VBD IN NNP IN DT NN IN NN . The ministry says the ship was carrying 22 crew members , their nationalities unknown . DT NN VBZ DT NN VBD VBG CD NN NNS , PRP$ NNS NN . Somali pirates have received millions of dollars in ransom payments during a hijacking spree over the past year . JJ NNS VBP VBN NNS IN NNS IN NN NNS IN DT JJ NN IN DT JJ NN . The attacks have continued despite increased naval patrols by the U.S. , European Union and other world powers . DT NNS VBP VBN IN VBN JJ NNS IN DT NNP , NNP NNP CC JJ NN NNS . At least 20 people in Baghdad have been killed in a series of attacks in the Iraqi capital . IN JJS CD NNS IN NNP VBP VBN VBN IN DT NN IN NNS IN DT JJ NN . Iraqi authorities said two bombs exploded minutes apart Tuesday at the main Shurja market in central Baghdad , killing 10 and injuring 69 others . JJ NNS VBD CD NNS VBD NNS RB NNP IN DT JJ NNP NN IN JJ NNP , VBG CD CC VBG CD NNS . The latest violence underscores the security crisis facing Iraqi Prime Minister Nouri al-Maliki as he attempts to halt what many analysts see as a slide towards civil war . DT JJS NN VBZ DT NN NN VBG JJ NNP NNP NNP NNP IN PRP VBZ TO VB WP JJ NNS VBP IN DT NN IN JJ NN . Much of the violence has been blamed on sectarian militias . NN IN DT NN VBZ VBN VBN IN JJ NNS . About 6,000 additional Iraqi troops and 3,500 U.S. troops are being deployed in the Iraqi capital to help stem the violence . IN CD JJ JJ NNS CC CD NNP NNS VBP VBG VBN IN DT JJ NN TO VB VB DT NN . In another development , the U.S. military says the Fourth Iraqi Army division has officially assumed the lead in its area of responsibility from the 101st U.S. Airborne division . IN DT NN , DT NNP NN VBZ DT NNP JJ NNP NN VBZ RB VBN DT NN IN PRP$ NN IN NN IN DT CD NNP NNP NN . The area includes the cities of Kirkuk and Tikrit . DT NN VBZ DT NNS IN NNP CC NNP . The State Department says it will ask Congress for $ 75 million in additional funding this year to promote democracy in Iran . DT NNP NNP VBZ PRP MD VB NNP IN $ CD CD IN JJ NN DT NN TO VB NN IN NNP . Officials say the money would be used for radio and television broadcasts to Iran and exchange programs for Iranian students . NNS VBP DT NN MD VB VBN IN NN CC NN NNS TO NNP CC NN NNS IN JJ NNS . They say Secretary of State Condoleezza Rice plans to request the funds when she appears before the Senate Foreign Relations Committee Wednesday . PRP VBP NNP IN NNP NNP NNP VBZ TO VB DT NNS WRB PRP VBZ IN DT NNP NNP NNP NNP NNP . Rice is expected to face questions from the panel on the Bush administration 's policies on Iran , which is facing growing international pressure to abandon its controversial nuclear program . NNP VBZ VBN TO VB NNS IN DT NN IN DT NNP NN POS NNS IN NNP , WDT VBZ VBG VBG JJ NN TO VB PRP$ JJ JJ NN . Russian and French leaders Tuesday called on Tehran to stop all uranium enrichment . JJ CC JJ NNS NNP VBD IN NNP TO VB DT NN NN . China urged more diplomatic efforts to ease growing tension over the program , which the West says is aimed at developing a nuclear weapon . NNP VBD RBR JJ NNS TO VB VBG NN IN DT NN , WDT DT NNP VBZ VBZ VBN IN VBG DT JJ NN . The Iranian foreign minister says the three American hikers held in Iran after crossing the border with Iraq will stand trial . DT JJ JJ NN VBZ DT CD JJ NNS VBN IN NNP IN VBG DT NN IN NNP MD VB NN . Manouchehr Mottaki did not say when the proceedings would begin during a news conference Monday in Tehran . NNP NNP VBD RB VB WRB DT NNS MD VB IN DT NN NN NNP IN NNP . He said the Americans entered Iran with ' suspicious aims . ' PRP VBD DT NNS VBD NNP IN `` JJ NNS . `` Iran has accused them of espionage . NNP VBZ VBN PRP IN NN . The three U.S. citizens were detained on July 31 for entering Iran illegally , after they apparently strayed across the border while on a hike in northern Iraq . DT CD NNP NNS VBD VBN IN NNP CD IN VBG NNP RB , IN PRP RB VBD IN DT NN IN IN DT NN IN JJ NNP . U.S. Secretary of State Hillary Clinton has said Washington believes there is no evidence to support any charge against the hikers . NNP NNP IN NNP NNP NNP VBZ VBN NNP VBZ EX VBZ DT NN TO VB DT NN IN DT NNS . She has appealed to Iranian authorities to exercise compassion and free the trio . PRP VBZ VBN TO JJ NNS TO VB NN CC JJ DT NN . Iran and the United States have no diplomatic relations , and are embroiled in a dispute over Iran 's nuclear program . NNP CC DT NNP NNPS VBP DT JJ NNS , CC VBP VBN IN DT NN IN NNP POS JJ NN . The Nigerian city of Maiduguri was quiet Sunday as police and military patrolled the day after 15 people were killed in rioting over cartoons of the Prophet Muhammad . DT JJ NN IN NNP VBD JJ NNP IN NN CC NN VBD DT NN IN CD NNS VBD VBN IN NN IN NNS IN DT NNP NNP . Muslims went on a rampage Saturday , attacking Christians and burning churches and shops owned by Christians before troops and police restored order . NNS VBD IN DT NN NNP , VBG NNS CC NN NNS CC NNS VBN IN NNS IN NNS CC NNS VBD NN . On Sunday the secretary general of the Nigerian Supreme Council for Islamic Affairs , Lateef Adegbite appealed to Christians not to retaliate , saying the riot was a misguided adventure by Muslims who acted against the tenets of Islam . IN NNP DT NN NN IN DT JJ NNP NNP IN NNP NNP , NNP NNP VBD TO NNPS RB TO VB , VBG DT NN VBD DT JJ NN IN NNPS WP VBD IN DT NNS IN NNP . The Maiduguri riot was the latest outbreak of Muslim anger over cartoons originally published in a Danish newspaper last year . DT NNP NN VBD DT JJS NN IN NNP NN IN NNS RB VBN IN DT JJ NN JJ NN . Many Muslims believe depiction of the Prophet Muhammad is blasphemous . JJ NNPS VBP NN IN DT NNP NNP VBZ JJ . An audio recording posted on the Internet Wednesday , says Muslim religious scholars or Ulemas have betrayed Islamic fighters by keeping silent about U.S. actions in Iraq and Afghanistan . DT NN NN VBN IN DT NNP NNP , VBZ NNP JJ NNS CC NNPS VBP VBN JJ NNS IN VBG JJ IN NNP NNS IN NNP CC NNP . The message charges the Ulemas have quit supporting the mujahedin , betraying them in the darkest circumstances and leaving them to confront the world 's greatest power alone . DT NN VBZ DT NNP VBP VBN VBG DT NN , VBG PRP IN DT JJS NNS CC VBG PRP TO VB DT NN POS JJS NN RB . The recording was attributed to wanted al-Qaida-linked terrorist Abu Musab al-Zarqwai . DT NN VBD VBN TO JJ JJ JJ NNP NNP NNP . Its authenticity could not be independently verified . PRP$ NN MD RB VB RB VBN . Al-Zarqawi - Iraq 's most wanted man - is believed to have fled his base in Fallujah during the U.S.-led assault on the insurgent-held city earlier this month . NNP IN NNP POS RBS JJ NN : VBZ VBN TO VB VBN PRP$ NN IN NNP IN DT JJ NN IN DT JJ NN RBR DT NN . A bomb exploded Tuesday near a Kurdish party 's office in northern Iraq , killing at least three Iraqi soldiers . DT NN VBD NNP IN DT NNP NN POS NN IN JJ NNP , VBG IN JJS CD JJ NNS . Reports from Mosul said a car bomb went off close to the office of the Kurdistan Democratic Party . NNS IN NNP VBD DT NN NN VBD RB RB TO DT NN IN DT NNP NNP NNP . No one claimed responsibility for the attack , which occurred in a city considered one of the last urban strongholds of al-Qaida in Iraq . DT NN VBD NN IN DT NN , WDT VBD IN DT NN VBN CD IN DT JJ JJ NNS IN NNP IN NNP . In central Baghdad Tuesday , a bomb blast struck a convoy carrying a senior Iraqi official . IN JJ NNP NNP , DT NN NN VBD DT NN VBG DT JJ JJ NN . Major General Ahmed al-Attiya , who heads the nation 's customs agency , escaped injury , but three of his security guards were wounded . NNP NNP NNP NNP , WP VBZ DT NN POS NNS NN , VBD NN , CC CD IN PRP$ NN NNS VBD VBN . Violence has been on the rise in the days leading up to provincial elections this Saturday . NN VBZ VBN IN DT NN IN DT NNS VBG RP TO JJ NNS DT NNP . The crew of the U.S. space shuttle Atlantis has returned to the southeastern state of Florida to prepare for a new launch attempt on Wednesday . DT NN IN DT NNP NN NN NNP VBZ VBN TO DT JJ NN IN NNP TO VB IN DT JJ NN NN IN NNP . Their shuttle launch was scrubbed earlier this week when a tropical storm Ernesto was expected to pass near the launch site . PRP$ NN NN VBD VBN RBR DT NN WRB DT JJ NN NNP VBD VBN TO VB IN DT NN NN . The spacecraft was moved to a hangar , and the six astronauts flew back to their training base in Houston . DT NN VBD VBN TO DT NN , CC DT CD NNS VBD RB TO PRP$ NN NN IN NNP . If the National Air and Space Administration is not able to launch Atlantis next week , the mission to the International Space Station likely will be postponed until October . IN DT NNP NNP CC NNP NNP VBZ RB JJ TO VB NNP JJ NN , DT NN TO DT NNP NNP NNP RB MD VB VBN IN NNP . NASA 's plans call for an 11-day mission to the space station , where astronauts will conduct three spacewalks to attach solar panels . NNP POS NNS VBP IN DT JJ NN TO DT NN NN , WRB NNS MD VB CD NNS TO VB JJ NNS . The panels eventually will generate one quarter of the station 's energy . DT NNS RB MD VB CD NN IN DT NN POS NN . Israel has moved a step closer to the creation of a moderate , new government . NNP VBZ VBN DT NN RBR TO DT NN IN DT JJ , JJ NN . An ambitious plan to draw Israel 's final borders by 2010 is topping the agenda . DT JJ NN TO VB NNP POS JJ NNS IN CD VBZ VBG DT NN . Interim Prime Minister Ehud Olmert 's centrist Kadima Party and the Dovish Labor party have signed a coalition agreement . NNP NNP NNP NNP NNP POS NN NNP NNP CC DT NNP NNP NN VBP VBN DT NN NN . It includes a pledge to withdraw from large parts of the West Bank over the next four years . PRP VBZ DT NN TO VB IN JJ NNS IN DT NNP NNP IN DT JJ CD NNS . Under Mr. Olmert 's plan , about 70,000 Jewish settlers would be removed from their homes . IN NNP NNP POS NN , IN CD JJ NNS MD VB VBN IN PRP$ NNS . At the same time , Israel would annex big West Bank settlement blocs . IN DT JJ NN , NNP MD VB JJ NNP NNP NN NNS . Mr. Olmert says he would prefer to do this as part of an agreement with the Palestinians . NNP NNP VBZ PRP MD VB TO VB DT IN NN IN DT NN IN DT NNS . But he believes that is impossible because the Islamic militant group Hamas , which seeks Israel 's destruction , now heads the Palestinian Authority . CC PRP VBZ DT VBZ JJ IN DT NNP JJ NN NNP , WDT VBZ NNP POS NN , RB VBZ DT JJ NNP . Mr. Olmert says if there is no Palestinian peace partner , Israel will withdraw unilaterally . NNP NNP VBZ IN EX VBZ DT JJ NN NN , NNP MD VB RB . ' We will have to act on the basis of a broad national consensus in Israel and work towards fixing of the permanent border lines even without an agreement . ' `` PRP MD VB TO VB IN DT NN IN DT JJ JJ NN IN NNP CC NN IN VBG IN DT JJ NN NNS RB IN DT NN . `` Former Palestinian legislator Sabri Saddam says expanding settlements and annexing land will only bring more conflict . JJ JJ NN NNP NNP VBZ VBG NNS CC JJ NN MD RB VB JJR NN . ' The unilateral withdrawal is not a solution at all but rather a FALSE disengagement , ' he said . `` DT JJ NN VBZ RB DT NN IN DT CC RB DT JJ NN , `` PRP VBD . ' What we 're looking for is a final , just and fair peace . ' `` WP PRP VBP VBG IN VBZ DT JJ , RB CC JJ NN . `` In addition to Palestinian opposition , Mr. Olmert faces another obstacle to implementing the pullout plan . IN NN TO JJ NN , NNP NNP VBZ DT NN TO VBG DT NN NN . His coalition with Labor does not give him a majority in the 120-member Knesset or parliament . PRP$ NN IN NNP VBZ RB VB PRP DT NN IN DT JJ NN CC NN . Therefore , he will have to bring the ultra-Orthodox Shas party into the coalition , and Shas opposes the pullout plan . RB , PRP MD VB TO VB DT JJ NNP NN IN DT NN , CC NNP VBZ DT NN NN . Analysts say the government could collapse in two or three years , when the time comes to remove tens of thousands settlers from their homes . NNS VBP DT NN MD VB IN CD CC CD NNS , WRB DT NN VBZ TO VB NNS IN NNS NNS IN PRP$ NNS . Nepal 's parliament has voted to abolish the country 's centuries-old monarchy and change to a republic . NNP POS NN VBZ VBN TO VB DT NN POS JJ NN CC VB TO DT NN . Friday 's vote was part of negotiations between former Maoist rebels and six other political parties . NNP POS NN VBD NN IN NNS IN JJ NNP NNS CC CD JJ JJ NNS . The Maoists bolted from the interim government in September after demanding election reform and an immediate end to the monarchy . DT NNPS VBD IN DT JJ NN IN NNP IN VBG NN NN CC DT JJ NN TO DT NN . The final vote was 270 - 3 . DT JJ NN VBD CD IN CD . King Gyanendra will still remain on the throne until parliamentary elections are held in April . NNP NNP MD RB VB IN DT NN IN JJ NNS VBP VBN IN NNP . Under the plan , voters will elect 240 assembly members by direct vote , and 335 other candidates based on proportional representation . IN DT NN , NNS MD VB CD NN NNS IN JJ NN , CC CD JJ NNS VBN IN JJ NN . The vote brings to an end a decade-long effort by the Maoists to replace the monarchy . DT NN VBZ TO DT NN DT JJ NN IN DT NNS TO VB DT NN . The rebels which fought a bloody civil war that left some 13,000 Nepalese dead . DT NNS WDT VBD DT JJ JJ NN WDT VBD DT CD NNS JJ . The Russian justice ministry says it will sell off part of oil giant Yukos in order to cover the company 's outstanding back taxes . DT JJ NN NN VBZ PRP MD VB RP NN IN NN NN NNP IN NN TO VB DT NN POS JJ JJ NNS . Ministry officials said Tuesday the value of a Yukos subsidiary Yuganskneftegaz has been established so the government can prepare for the sale . NNP NNS VBD NNP DT NN IN DT NNP NN NNP VBZ VBN VBN IN DT NN MD VB IN DT NN . Officials say Yukos has been taking too much time in paying its back taxes . NNS VBP NNP VBZ VBN VBG RB JJ NN IN VBG PRP$ JJ NNS . A Russian court ruled Monday the embattled company must pay nearly all of the $ 1.34 billion in fines connected to its 2001 tax bill . DT JJ NN VBD NNP DT JJ NN MD VB RB DT IN DT $ CD CD IN NNS VBN TO PRP$ CD NN NN . Yukos is already struggling to pay $ 3.4 billion in taxes and fines for 2000 , and $ 2.7 billion in taxes for 2001 . NNP VBZ RB VBG TO VB $ CD CD IN NNS CC NNS IN CD , CC $ CD CD IN NNS IN CD . Government critics charge the actions against Yukos are in retaliation for support the firm 's former chief Mikhail Khodorkovsky gave to the political opposition . NN NNS VBP DT NNS IN NNP VBP IN NN IN NN DT NN POS JJ NN NNP NNP VBD TO DT JJ NN . The leaders of Chad and Sudan have signed a peace accord , pledging to deny refuge to each other 's rebel groups . DT NNS IN NNP CC NNP VBP VBN DT NN NN , VBG TO VB NN TO DT NN POS NN NNS . Presidents Omar al-Bashir of Sudan and Idriss Deby of Chad reached the agreement Wednesday at a summit hosted by Libyan leader Moammar Gadhafi in Tripoli . NNS NNP NNP IN NNP CC NNP NNP IN NNP VBD DT NN NNP IN DT NN VBN IN JJ NN NNP NNP IN NNP . Their accord calls for Sudan and Chad to work toward normal relations , and to not use their territories to support harmful activity against each other . PRP$ NN VBZ IN NNP CC NNP TO VB IN JJ NNS , CC TO RB VB PRP$ NNS TO VB JJ NN IN DT NN . Chad has accused Sudan of harboring rebels opposed to Mr. Deby , while Sudan has said that Chad is backing rebels fighting Sudanese government forces in war-torn Darfur . NNP VBZ VBN NNP IN VBG NNS VBN TO NNP NNP , IN NNP VBZ VBN IN NNP VBZ VBG NNS VBG JJ NN NNS IN JJ NNP . The accord calls for the creation of an African force to preserve security on the Chad-Sudan border . DT NN VBZ IN DT NN IN DT JJ NN TO VB NN IN DT JJ NN . Which countries will supply troops and finance the force has not been determined . WDT NNS MD VB NNS CC VB DT NN VBZ RB VBN VBN . In Pakistan local officials say Pakistani troops have killed at least eight militants in clashes in the northwest region of the country . IN NNP JJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS IN NNS IN DT JJS NN IN DT NN . The French news agency reports that two underground hideouts used by militants were also captured in Sunday 's operation in the restive Orakzai tribal district . DT JJ NN NN NNS IN CD JJ NNS VBN IN NNS VBD RB VBN IN NNP POS NN IN DT JJ NNP NN NN . Pakistan 's military launched an offensive against Taliban insurgents in Orakzai in March , to target militants who are believed to have fled an earlier military offensive in South Waziristan . NNP POS NN VBD DT NN IN NNP NNS IN NNP IN NNP , TO VB NNS WP VBP VBN TO VB VBN DT JJR JJ NN IN NNP NNP . Lawyers for imprisoned Russian oil tycoon Mikhail Khodorkovsky say authorities have filed new charges against their client . NNS IN VBN JJ NN NN NNP NNP VBP NNS VBP VBN JJ NNS IN PRP$ NN . The lawyers say they are still trying to determine the exact nature of the charges . DT NNS VBP PRP VBP RB VBG TO VB DT JJ NN IN DT NNS . But they indicate that those filed Monday appear to differ little from earlier charges against the imprisoned former oil executive . CC PRP VBP IN DT VBN NNP VBP TO VB NN IN JJR NNS IN DT JJ JJ NN NN . They called the new filing an effort to extend the inquiry into the case . PRP VBD DT JJ NN DT NN TO VB DT NN IN DT NN . Khodorkovsky , the former chief of the Yukos Oil Company , is serving eight years in prison for fraud and tax evasion - charges he says were politically motivated because of his support for opposition politicians . NNP , DT JJ NN IN DT NNP NNP NNP , VBZ VBG CD NNS IN NN IN NN CC NN NN IN NNS PRP VBZ VBD RB JJ IN IN PRP$ NN IN NN NNS . The former oil executive is being held in the Siberian city of Chita , where authorities have been investigating money laundering and theft charges against him . DT JJ NN NN VBZ VBG VBN IN DT JJ NN IN NNP , WRB NNS VBP VBN VBG NN NN CC NN NNS IN PRP . The probe involves the theft of more than $ 33 million from Yukos subsidiaries . DT NN VBZ DT NN IN JJR IN $ CD CD IN NNP NNS . Pakistani authorities say security forces have captured a high-ranking Taleban leader in Quetta , the capital of southwestern Baluchistan province . JJ NNS VBP NN NNS VBP VBN DT JJ NNP NN IN NNP , DT NN IN JJ NNP NN . Intelligence officials say Mullah Obaidullah Akhund , a former Taleban defense minister and a close associate of fugitive Taleban leader Mullah Omar , was arrested during a raid on a home earlier this week . NN NNS VBP NNP NNP NNP , DT JJ NNP NN NN CC DT JJ NN IN JJ NNP NN NNP NNP , VBD VBN IN DT NN IN DT NN RBR DT NN . The Pakistani government has not confirmed the arrest . DT JJ NN VBZ RB VBN DT NN . Akhund would be the most senior leader from the Islamist militia to be nabbed since the Taleban was ousted from power in neighboring Afghanistan in late 2001 . NNP MD VB DT RBS JJ NN IN DT NNP NN TO VB VBN IN DT NNP VBD VBN IN NN IN JJ NNP IN JJ CD . His arrest follows a surprise visit to Pakistan by U.S. Vice President Dick Cheney , who urged President Pervez Musharraf to do more to stop insurgents from crossing into Afghanistan . PRP$ NN VBZ DT NN NN TO NNP IN NNP NNP NNP NNP NNP , WP VBD NNP NNP NNP TO VB JJR TO VB NNS IN VBG IN NNP . General Musharraf reiterated the country is doing all it can to secure its border and defeat insurgents . NNP NNP VBD DT NN VBZ VBG DT PRP MD TO VB PRP$ NN CC NN NNS . Indian opposition leader Lal Krishna Advani says he will resign as head of the Bharatiya Janata Party ( BJP ) . JJ NN NN NNP NNP NNP VBZ PRP MD VB IN NN IN DT NNP NNP NNP LRB NNP RRB . In a statement issued Sunday in Chennai , Mr. Advani pledged to step down after the party 's next plenary meeting in December . IN DT NN VBN NNP IN NNP , NNP NNP VBD TO VB RB IN DT NN POS JJ JJ NN IN NNP . This is the second time the former deputy prime minister announced his resignation . DT VBZ DT JJ NN DT JJ NN JJ NN VBD PRP$ NN . Mr. Advani first offered to step down in June after returning from a visit to Pakistan . NNP NNP RB VBD TO VB RB IN NNP IN VBG IN DT NN TO NNP . His praise for the Islamic nation 's founder Mohammed Ali Jinnah angered staunch Hindu nationalists , who blame Mr. Jinnah for the violent partition of the subcontinent in 1947 . PRP$ NN IN DT NNP NN POS NN NNP NNP NNP VBD JJ NNP NNS , WP VBP NNP NNP IN DT JJ NN IN DT NN IN CD . The rift within the party that Mr. Advani 's comments provoked was temporarily patched over . DT NN IN DT NN IN NNP NNP POS NNS VBD VBD RB VBN IN . Russian President Vladimir Putin has sent new year 's greetings to 80-year old Vassily Kononov , a Soviet partisan in World War II who was convicted in Latvia of war crimes . JJ NNP NNP NNP VBZ VBN JJ NN POS NNS TO JJ JJ NNP NNP , DT JJ NN IN NNP NNP NNP WP VBD VBN IN NNP IN NN NNS . Mr. Putin said heroes should not be slandered . NNP NNP VBD NNS MD RB VB VBN . Mr. Kononov was convicted last year of murdering Latvian civilians in 1944 in a trial that angered many Russians , who view him as a legitimate war hero . NNP NNP VBD VBN JJ NN IN VBG JJ NNS IN CD IN DT NN WDT VBD JJ NNS , WP VBP PRP IN DT JJ NN NN . Mr. Putin 's letter saluted Mr. Kononov 's contribution to the defeat of the Nazis in World War II , noting that 2005 will mark the 60th anniversary of the end of the war . NNP NNP POS NN VBD NNP NNP POS NN TO DT NN IN DT NNPS IN NNP NNP NNP , VBG IN CD MD VB DT JJ NN IN DT NN IN DT NN . Relations between Russia and its Baltic neighbor have been strained in recent years , in part because Latvia decided to join the NATO alliance . NNP IN NNP CC PRP$ JJ NN VBP VBN VBN IN JJ NNS , IN NN IN NNP VBD TO VB DT NNP NN . Japanese prosecutors have indicted a U.S. sailor in connection with the death of a Japanese woman . JJ NNS VBP VBN DT NNP NN IN NN IN DT NN IN DT JJ NN . William Oliver Reese , 21 , is accused of robbing and fatally beating 56-year-old Yoshie Sato on January 3 . NNP NNP NNP , CD , VBZ VBN IN VBG CC RB VBG JJ NNP NNP IN NNP CD . Japanese authorities say the attack occurred near the U.S. Navy base in Yokosuka , southwest of Tokyo . JJ NNS VBP DT NN VBD IN DT NNP NNP NN IN NNP , NN IN NNP . Reese is stationed on the USS Kitty Hawk aircraft carrier . NNP VBZ VBN IN DT NNP NNP NNP NN NN . The homicide has rekindled concerns about crimes committed by U.S. military personnel in Japan . DT NN VBZ VBN NNS IN NNS VBN IN NNP JJ NNS IN NNP . In 1995 , Japanese citizens protested against the U.S. military presence after the rape of a schoolgirl in Okinawa . IN CD , JJ NNS VBD IN DT NNP JJ NN IN DT NN IN DT NN IN NNP . This latest incident comes during a crucial time as Washington and Tokyo discuss the reorganization of U.S. troops in Japan . DT JJS NN VBZ IN DT JJ NN IN NNP CC NNP VB DT NN IN NNP NNS IN NNP . Roughly 50,000 American troops are stationed in Japan . RB CD JJ NNS VBP VBN IN NNP . The Russian gas monopoly Gazprom has approved a plan to bid for a main production unit of the troubled giant oil firm Yukos . DT JJ NN NN NNP VBZ VBN DT NN TO VB IN DT JJ NN NN IN DT JJ JJ NN NN NNP . The company 's board of directors Wednesday also approved obtaining outside financing for the December 19 bidding on the unit , Yuganskneftegaz . DT NN POS NN IN NNS NNP RB VBD VBG JJ NN IN DT NNP CD NN IN DT NN , NNP . Government officials say they want to recover billions of dollars Yukos owes in back taxes . NN NNS VBP PRP VBP TO VB NNS IN NNS NNP VBZ IN JJ NNS . Bids are to start at $ 8.6 billion , far below what independent assessors say the unit is worth . NNS VBP TO VB IN $ CD CD , RB IN WP JJ NNS VBP DT NN VBZ JJ . The Interfax news agency quotes a source close to Yukos saying authorities questioned a member of the firm 's legal department for eight hours Tuesday in a probe of financial wrongdoing . DT NNP NN NN VBZ DT NN RB TO NNP VBG NNS VBD DT NN IN DT NN POS JJ NN IN CD NNS NNP IN DT NN IN JJ NN . The report says the interrogation ended only after the man lost consciousness . DT NN VBZ DT NN VBD RB IN DT NN VBN NN . Russian officials have pledged to fight corporate corruption and today gave mobile phone operator VimpelCom a tax bill for nearly $ 160 million for 2000 . JJ NNS VBP VBN TO VB JJ NN CC NN VBD JJ NN NN NNP DT NN NN IN RB $ CD CD IN CD . U.S. media reports say the United States is investigating possible Iranian involvement in a recent attack in the Iraqi city of Karbala , in which five American soldiers were killed . NNP NNS NNS VBP DT NNP NNPS VBZ VBG JJ JJ NN IN DT JJ NN IN DT JJ NN IN NNP , IN WDT CD JJ NNS VBD VBN . The reports in the New York Times and CNN television quote unnamed U.S. officials as saying the Defense Department is trying to determine whether Iranians or Iranian-trained operatives carried out the attack on a U.S. military compound last Saturday . DT NNS IN DT NNP NNP NNP CC NNP NN VBZ JJ NNP NNS IN VBG DT NNP NNP VBZ VBG TO VB IN NNS CC JJ NNS VBD IN DT NN IN DT NNP JJ NN JJ NNP . The U.S. military has said the attack was well coordinated , with assailants dressed in U.S. military-style uniforms and driving vehicles similar to those used by U.S. troops . DT NNP NN VBZ VBN DT NN VBD RB VBN , IN NNS VBN IN NNP JJ NNS CC VBG NNS JJ TO DT VBN IN NNP NNS . The White House said Wednesday that it would not comment on what it called ' speculation ' about Iranian involvement in the Karbala attack . DT NNP NNP VBD NNP IN PRP MD RB VB IN WP PRP VBD `` NN `` IN JJ NN IN DT NNP NN . But spokesman Tony Snow repeated U.S. warnings to respond ' forcefully ' to anyone trying to kill U.S. troops in Iraq or destabilize the country . CC NN NNP NNP VBD NNP NNS TO VB `` RB `` TO DT VBG TO VB NNP NNS IN NNP CC VB DT NN . Officials in India say a blast on a packed train that killed at least 12 people and left dozens wounded was apparently caused by a bomb . NNS IN NNP VBP DT NN IN DT VBN NN WDT VBD IN JJS CD NNS CC VBD NNS VBN VBD RB VBN IN DT NN . The explosion occurred Thursday near the town of Jaunpur in Uttar Pradesh state . DT NN VBD NNP IN DT NN IN NNP IN NNP NNP NN . The train was traveling from the eastern city of Patna to New Delhi at the time of the explosion . DT NN VBD VBG IN DT JJ NN IN NNP TO NNP NNP IN DT NN IN DT NN . Local news media reported Friday that bomb experts found traces of the explosive substance RDX ( also known as Hexogen ) in the train . JJ NN NNS VBD NNP IN NN NNS VBD NNS IN DT JJ NN NNP LRB RB VBN IN NNP RRB IN DT NN . A local official told the French News Agency the blast came from an unclaimed suitcase near a toilet . DT JJ NN VBD DT NNP NNP NNP DT NN VBD IN DT JJ NN IN DT NN . RDX , which forms the base of a number of common military explosives , has been used by Islamic militants fighting Indian rule in Kashmir , as well as by separatist rebels in the troubled northeast region , who frequently target trains . NNP , WDT VBZ DT NN IN DT NN IN JJ JJ NNS , VBZ VBN VBN IN JJ NNS VBG JJ NN IN NNP , RB RB IN IN JJ NNS IN DT JJ NN NN , WP RB VBP NNS . German police have conducted a series of raids against individuals suspected of gathering donations to finance radical Islamic activities abroad . JJ NNS VBP VBN DT NN IN NNS IN NNS VBN IN NN NNS TO VB JJ JJ NNS RB . Officials say police made no arrests , but raided 33 apartments and four businesses in Wednesday 's operation , which took place primarily in the southern state of Bavaria . NNS VBP NNS VBD DT NNS , CC VBD CD NNS CC CD NNS IN NNP POS NN , WDT VBD NN RB IN DT JJ NN IN NNP . They said officers seized computers and propaganda materials during the raids . PRP VBD NNS VBD NNS CC NN NNS IN DT NNS . Officials said the operation targeted 24 people , including citizens of Lebanon , Iraq , Egypt , Jordan and Tunisia . NNS VBD DT NN VBD CD NNS , VBG NNS IN NNP , NNP , NNP , NNP CC NNP . Tuesday , an Italian court charged two suspected Islamic militants with terrorism , while police in Spain arrested four Moroccans allegedly linked to last year 's deadly Madrid train bombings . NNP , DT JJ NN VBD CD JJ JJ NNS IN NN , IN NNS IN NNP VBN CD NNS RB VBN TO JJ NN POS JJ NNP NN NNS . Also Tuesday , British authorities released an Egyptian terror suspect held for more than three years without charge , citing a lack of evidence . RB NNP , JJ NNS VBD DT JJ NN NN VBD IN JJR IN CD NNS IN NN , VBG DT NN IN NN . President Bush welcomes Nigerian President Olusegun Obasanjo to the White House Thursday for talks expected to focus on the situations in Sudan and Ivory Coast . NNP NNP VBZ JJ NNP NNP NNP TO DT NNP NNP NNP IN NNS VBN TO VB IN DT NNS IN NNP CC NNP NNP . Mr. Obasanjo is current chairman of the African Union , which has been working to end internal fighting in both countries and the humanitarian crisis in Sudan 's Darfur region where 1.6 million people have been driven from their homes . NNP NNP VBZ JJ NN IN DT NNP NNP , WDT VBZ VBN VBG TO VB JJ NN IN DT NNS CC DT JJ NN IN NNP POS NNP NN WRB CD CD NNS VBP VBN VBN IN PRP$ NNS . The United Nations says the war between rebels and pro-government forces in Darfur has also killed some 70,000 people . DT NNP NNP VBZ DT NN IN NNS CC JJ NNS IN NNP VBZ RB VBN DT CD NNS . The White House says Mr. Bush and Mr. Obasanjo plan to discuss the A.U. role in regional defense and security issues . DT NNP NNP VBZ NNP NNP CC NNP NNP VBZ TO VB DT NNP NN IN JJ NN CC NN NNS . It says the two leaders will also review U.S.-Nigerian relations and opportunities for trade and investment . PRP VBZ DT CD NNS MD RB VB JJ NNS CC NNS IN NN CC NN . Later in the day , Mr. Obasanjo will meet with U.S. Secretary of State Colin Powell . RB IN DT NN , NNP NNP MD VB IN NNP NNP IN NNP NNP NNP . Mehmet Ali Talat holding an olive branch after voting Turkish Cypriot Prime Minister Mehmet Ali Talat has won Sunday presidential election in the breakaway enclave . NNP NNP NNP VBG DT JJ NN IN VBG JJ JJ NNP NNP NNP NNP NNP VBZ VBN NNP JJ NN IN DT NN NN . With all the votes counted , Mr. Talat had more than 55 percent of the vote , while his nearest rival won just under 23 percent . IN PDT DT NNS VBN , NNP NNP VBD JJR IN CD NN IN DT NN , IN PRP$ JJS NN VBD RB IN CD NN . Nine candidates were running . CD NNS VBD VBG . Mr. Talat will replace 81-year-old Rauf Denktash , who has led the self-declared Turkish Cypriot state for decades and did not seek re-election . NNP NNP MD VB JJ NNP NNP , WP VBZ VBN DT JJ JJ JJ NN IN NNS CC VBD RB VB NN . When the vote result was announced , Mr. Talat immediately called for new reunification talks with Greek Cypriots . WRB DT NN NN VBD VBN , NNP NNP RB VBD IN JJ NN NNS IN JJ NNS . Cyprus has been divided between Greek and Turkish Cypriot communities since 1974 . NNP VBZ VBN VBN IN JJ CC JJ NN NNS IN CD . Turkish Cypriots voted last year in favor of a U.N. reunification plan , but Greek Cypriots rejected it . JJ NNS VBD JJ NN IN NN IN DT NNP NN NN , CC JJ NNS VBD PRP . Syria says it has arrested kidnappers suspected of killing a Kurdish Muslim cleric , as thousands of Kurds gathered to mourn his death . NNP VBZ PRP VBZ VBN NNS VBN IN VBG DT NNP NNP NN , IN NNS IN NNS VBD TO VB PRP$ NN . An unnamed official in the Interior Ministry told Syrian state media Wednesday that a criminal gang was believed to have kidnapped Sheikh Mohammad Maashouq al-Khaznawi three weeks ago . DT JJ NN IN DT NNP NNP VBD JJ NN NNS NNP IN DT JJ NN VBD VBN TO VB VBN NNP NNP NNP NNP CD NNS RB . Officials from the Yekiti Kurdish Party say hospital officials in northeastern Syria found signs of torture on the cleric 's body , after it was recovered . NNS IN DT NNP NNP NNP VBP NN NNS IN JJ NNP VBD NNS IN NN IN DT NN POS NN , IN PRP VBD VBN . Meanwhile , thousands gathered in the northeastern town of Kameshli for a funeral for the sheikh , who disappeared after leaving the Islamic Studies Center in Damascus . RB , NNS VBD IN DT JJ NN IN NNP IN DT NN IN DT NN , WP VBD IN VBG DT NNP NNP NNP IN NNP . The incident sparked a march last month by Kurds demanding to know Mr. al-Khaznawi 's whereabouts . DT NN VBD DT NN JJ NN IN NNS VBG TO VB NNP NNP POS NNS . Kurdish leaders accused Syrian officials of holding the sheikh . JJ NNS VBD JJ NNS IN VBG DT NN . Authorities denied the charge . NNS VBD DT NN . Venezuela is blaming the United States for deteriorating relations between the two countries . NNP VBZ VBG DT NNP NNPS IN VBG NNS IN DT CD NNS . Vice President Jose Vicente Rangel responded Wednesday to charges by U.S. officials that Caracas is seeking closer military and economic ties with Iran and North Korea . NNP NNP NNP NNP NNP VBD NNP TO NNS IN NNP NNS IN NNP VBZ VBG RBR JJ CC JJ NNS IN NNP CC NNP NNP . Rangel said any moves Caracas makes are responses to what he called Washington 's aggressions in the region . NNP VBD DT NNS NNP VBZ VBP NNS TO WP PRP VBD NNP POS NNS IN DT NN . A day earlier , U.S. National Intelligence Director John Negroponte criticized Venezuela for its growing relations with Iran , North Korea and Cuba . DT NN RB , NNP NNP NNP NNP NNP NNP VBD NNP IN PRP$ VBG NNS IN NNP , NNP NNP CC NNP . Negroponte also accused Mr. Chavez of spending millions of dollars on what he called an extravagant foreign policy , at the expense of the Venezuelan people . NNP RB VBD NNP NNP IN VBG NNS IN NNS IN WP PRP VBD DT JJ JJ NN , IN DT NN IN DT JJ NNS . He said Mr. Chavez is investing considerable sums of money in politics in other Latin American countries . PRP VBD NNP NNP VBZ VBG JJ NNS IN NN IN NNS IN JJ JJ JJ NNS . The U.S. manufacturing sector expanded in September , suggesting the economy may overcome the effects of the two recent hurricanes . DT NNP NN NN VBN IN NNP , VBG DT NN MD VB DT NNS IN DT CD JJ NNS . The strength of the expansion surprised some analysts who were expecting a decline . DT NN IN DT NN VBD DT NNS WP VBD VBG DT NN . Monday 's data came from a survey by the Institute for Supply Managers . NNP POS NNS VBD IN DT NN IN DT NNP IN NNP NNS . Their index of manufacturing activity grew 5.8 points to a reading of 59.4 . PRP$ NN IN NN NN VBD CD NNS TO DT NN IN CD . Any reading over 50 indicates an expanding manufacturing sector . DT NN IN CD VBZ DT VBG NN NN . A separate report from the U.S. Commerce Department Monday said construction spending in the United States climbed to a record high in August . DT JJ NN IN DT NNP NNP NNP NNP VBD NN NN IN DT NNP NNPS VBD TO DT NN NN IN NNP . Some experts said the increase was fueled by a renewed boom in housing . DT NNS VBD DT NN VBD VBN IN DT VBN NN IN NN . Many analysts expect further expansion of the construction sector as residents rebuild homes and businesses wrecked by Hurricanes Katrina and Rita . JJ NNS VBP JJ NN IN DT NN NN IN NNS VB NNS CC NNS VBN IN NNP NNP CC NNP . President Bush has called for civility in the congressional debate over immigration reform , saying the United States does not have to choose between being a compassionate society and a society of law . NNP NNP VBZ VBN IN NN IN DT JJ NN IN NN NN , VBG DT NNP NNPS VBZ RB VB TO VB IN VBG DT JJ NN CC DT NN IN NN . He spoke Friday at the National Catholic Prayer Breakfast in Washington , D.C. Mr. Bush said the immigration system should not force people into the shadows of society or leave them prey to criminals . PRP VBD NNP IN DT NNP NNP NNP NNP IN NNP , NNP NNP NNP VBD DT NN NN MD RB VB NNS IN DT NNS IN NN CC VB PRP VB TO NNS . The Senate last week began a contentious debate over immigration reform , one that looks as though it will not be finished before Congress breaks for a two-week recess , Friday . DT NNP JJ NN VBD DT JJ NN IN NN NN , CD WDT VBZ IN IN PRP MD RB VB VBN IN NNP NNS IN DT JJ NN , NNP . Mr. Bush also referred to abortion , something both he and the Catholic Church oppose . NNP NNP RB VBD TO NN , DT CC PRP CC DT NNP NNP VBP . He drew applause from his audience when he said God 's hope shines on every child , born and unborn . PRP VBD NN IN PRP$ NN WRB PRP VBD NNP POS NN VBZ IN DT NN , VBN CC NN . He added the United States is working to expand the protections of unborn children . PRP VBD DT NNP NNPS VBZ VBG TO VB DT NNS IN JJ NNS . An Iraqi judge in the southern city of Basra has ordered the arrest of two British soldiers freed Monday in a controversial British raid on a local prison . DT JJ NN IN DT JJ NN IN NNP VBZ VBN DT NN IN CD JJ NNS VBD NNP IN DT JJ JJ NN IN DT JJ NN . The charges against the soldiers include killing an Iraqi policeman and wounding another . DT NNS IN DT NNS VBP VBG DT JJ NN CC VBG DT . British officials said the warrants have no legal basis , because British troops come under British jurisdiction . JJ NNS VBD DT NNS VBP DT JJ NN , IN JJ NNS VBP IN JJ NN . Meanwhile , in Baghdad , the leader , Abdel Aziz al-Hakim of Iraq 's largest Shi'ite political party - Supreme Council of the Islamic Revolution in Iraq endorsed the draft constitution and urged Shi'ites to vote ' yes ' in next month 's national referendum . RB , IN NNP , DT NN , NNP NNP NNP IN NNP POS JJS JJ JJ NN IN NNP NNP IN DT NNP NNP IN NNP VBD DT NN NN CC VBD NNS TO VB `` UH `` IN JJ NN POS JJ NN . Also in Baghdad , police say a suicide car bomb exploded near an Iraqi military checkpoint killing two soldiers . RB IN NNP , NNS VBP DT NN NN NN VBD IN DT JJ JJ NN VBG CD NNS . And the United Nations World Food Program warns that a lack of donors means it will not be able to feed about three million people in Iraq , more than half of them children . CC DT NNP NNP NNP NNP NNP VBZ IN DT NN IN NNS VBZ PRP MD RB VB JJ TO VB IN CD CD NNS IN NNP , JJR IN NN IN PRP NNS . U.S. officials have been allowed for the first time to see an American teacher who has been jailed in North Korea on charges of illegally entering the country . NNP NNS VBP VBN VBN IN DT JJ NN TO VB DT JJ NN WP VBZ VBN VBN IN NNP NNP IN NNS IN RB VBG DT NN . State Department spokesman P.J. Crowley said Monday that a U.S. diplomat , two doctors and a translator were in Pyongyang from Monday through Wednesday of last week . NNP NNP NN NNP NNP VBD NNP IN DT NNP NN , CD NNS CC DT NN VBD IN NNP IN NNP IN NNP IN JJ NN . He said he believed the meeting with 30-year-old Aijalon Gomes took place at a hospital . PRP VBD PRP VBD DT NN IN JJ NNP NNP VBD NN IN DT NN . The spokesman added that the United States is continuing to seek his immediate release because of health worries . DT NN VBD IN DT NNP NNPS VBZ VBG TO VB PRP$ JJ NN IN IN NN NNS . Gomes , who had worked as an English teacher in Seoul , was arrested in January and has been sentenced to eight years of hard labor . NNP , WP VBD VBN IN DT JJ NN IN NNP , VBD VBN IN NNP CC VBZ VBN VBN TO CD NNS IN JJ NN . North Korea said last month that he had attempted suicide . NNP NNP VBD JJ NN IN PRP VBD VBN NN . Russia and France have agreed on a six-point plan for a permanent truce in Georgia . NNP CC NNP VBP VBN IN DT JJ NN IN DT JJ NN IN NNP . The plan , which awaits Georgian approval , includes provisions for what officials are calling an ' international discussion ' on the future status of South Ossetia and Abkhazia - the two pro-Russian breakaway regions of northern Georgia . DT NN , WDT VBZ JJ NN , VBZ NNS IN WP NNS VBP VBG DT `` JJ NN `` IN DT JJ NN IN NNP NNP CC NNP IN DT CD JJ NN NNS IN JJ NNP . Russian President Dmitri Medvedev said the plan also includes : provisions for the renunciation of force by all parties , a halt to military action , unhindered access to humanitarian aid , the return of Georgian forces to their pre-conflict positions , and the continued presence of Russian peacekeepers in the two rebellious territories . JJ NNP NNP NNP VBD DT NN RB VBZ IN NNS IN DT NN IN NN IN DT NNS , DT NN TO JJ NN , JJ NN TO JJ NN , DT NN IN JJ NNS TO PRP$ JJ NNS , CC DT JJ NN IN JJ NNS IN DT CD JJ NNS . A Pakistani army official says government troops have killed 18 militants who attacked a military checkpoint near the Afghan border . DT JJ NN NN VBZ NN NNS VBP VBN CD NNS WP VBD DT JJ NN IN DT JJ NN . Major General Waheed Arshad says Tuesday 's violence erupted when around 40 militants fired at a military patrol in North Waziristan , in Pakistan 's northwest . NNP NNP NNP NNP VBZ NNP POS NN VBD WRB IN CD NNS VBD IN DT JJ NN IN NNP NNP , IN NNP POS NN . The government troops responded , backed by helicopter gunships . DT NN NNS VBD , VBN IN NN NNS . Also in North Waziristan today , four soldiers were abducted by suspected militants near the town of Bannu . RB IN NNP NNP NN , CD NNS VBD VBN IN JJ NNS IN DT NN IN NNP . And in South Waziristan , a roadside bomb wounded six paramilitary soldiers Tuesday near the Afghan border . CC IN NNP NNP , DT NN NN VBD CD JJ NNS NNP IN DT JJ NN . Violence has risen in Pakistan since security forces stormed the radical Red Mosque in the capital , Islamabad , earlier this month following a week long standoff . NN VBZ VBN IN NNP IN NN NNS VBD DT JJ NNP NNP IN DT NN , NNP , RBR DT NN VBG DT NN RB NN . More than 100 people were killed . JJR IN CD NNS VBD VBN . Indian police say the lone surviving gunman in the deadly Mumbai attacks will be formally charged in the case on Wednesday . JJ NNS VBP DT NN VBG NN IN DT JJ NNP NNS MD VB RB VBN IN DT NN IN NNP . Police say Pakistani national Mohammed Ajmal Kasab will be charged with ' waging war ' in the November attacks . NNS VBP JJ JJ NNP NNP NNP MD VB VBN IN `` VBG NN `` IN DT NNP NNS . Authorities say several other suspects will also be charged for allegedly helping to plan the assault . NNS VBP JJ JJ NNS MD RB VB VBN IN RB VBG TO VB DT NN . The Mumbai attacks were carried out over a three-day period , killing more than 170 people . DT NNP NNS VBD VBN RP IN DT JJ NN , VBG JJR IN CD NNS . The attacks have raised tensions between India and neighboring Pakistan , both nuclear-armed countries that have fought three wars . DT NNS VBP VBN NNS IN NNP CC JJ NNP , DT JJ NNS WDT VBP VBN CD NNS . India has blamed the attacks on a Pakistan-based militant group , Lashkar-e-Taiba and has accused Pakistan of not doing enough to bring those responsible to justice . NNP VBZ VBN DT NNS IN DT JJ JJ NN , NNP CC VBZ VBN NNP IN RB VBG RB TO VB DT JJ TO NN . Pakistan has admitted that the Mumbai attacks were partly planned in Pakistan . NNP VBZ VBN IN DT NNP NNS VBD RB VBN IN NNP . But Pakistan denies India 's charge that elements in Pakistan 's intelligence services may have been involved . CC NNP VBZ NNP POS NN IN NNS IN NNP POS NN NNS MD VB VBN VBN . Afghanistan 's Health Ministry has confirmed the presence of bird flu in eastern Nangarhar province . NNP POS NNP NNP VBZ VBN DT NN IN NN NN IN JJ NNP NN . Health Ministry Deputy Faizullah Kakar told VOA that the deadly H5N1 strain of bird flu virus was confirmed by officials Friday . NNP NNP NNP NNP NNP VBD NNP IN DT JJ NNP NN IN NN NN NN VBD VBN IN NNS NNP . A team of doctors also suspected a human case of bird flu in the region but discovered the person was suffering from malaria . DT NN IN NNS RB VBD DT JJ NN IN NN NN IN DT NN CC VBD DT NN VBD VBG IN NN . The area has been quarantined , and the Health Ministry says officials have begun an information campaign . DT NN VBZ VBN VBN , CC DT NNP NNP VBZ NNS VBP VBN DT NN NN . Earlier this week , Afghan authorities ordered the slaughter of birds in both Nangarhar and Kunar provinces , suspecting an outbreak of bird flu . RBR DT NN , JJ NNS VBD DT NN IN NNS IN DT NNP CC NNP NNS , VBG DT NN IN NN NN . Last year , Afghanistan discovered cases of the H5N1 virus in birds , but not humans . JJ NN , NNP VBD NNS IN DT NNP NN IN NNS , CC RB NNS . The deadly strain of the bird flu virus has killed at least 160 people worldwide since 2003 . DT JJ NN IN DT NN NN NN VBZ VBN IN JJS CD NNS JJ IN CD . Egyptian President Hosni Mubarak has sought to defuse anger over his recent remarks about Shi'ite Muslims being more loyal to Iran than to their home countries , saying he was referring only to religion . JJ NNP NNP NNP VBZ VBN TO VB NN IN PRP$ JJ NNS IN NNP NNPS VBG RBR JJ TO NNP IN TO PRP$ NN NNS , VBG PRP VBD VBG RB TO NN . In an interview published Saturday in the official Akhbar al-Youm newspaper , Mr. Mubarak says he only wanted to warn of threats to Iraq 's unity and sovereignty . IN DT NN VBN NNP IN DT JJ NNP NNP NN , NNP NNP VBZ PRP RB VBD TO VB IN NNS TO NNP POS NN CC NN . Last week , Mr. Mubarak told al-Arabiya television during an interview that civil war in Iraq had already begun among Shi'ites , Sunnis , Kurds and foreign fighters from Asia . JJ NN , NNP NNP VBD JJ NN IN DT NN IN JJ NN IN NNP VBD RB VBN IN NNS , NNP , NNP CC JJ NNS IN NNP . The Egyptian president also said Iran has significant influence over Iraq 's majority Shi'ite population . DT JJ NN RB VBD NNP VBZ JJ NN IN NNP POS NN NNP NN . Iraqi leaders and Shi'ites across the region denounced Mr. Mubarak 's remarks and accused him of fueling sectarian tensions between Islam 's two main sects . JJ NNS CC NNS IN DT NN VBD NNP NNP POS NNS CC VBD PRP IN VBG JJ NNS IN NNP POS CD JJ NNS . U.S. military officials say wanted terrorist Abu Musab al-Zarqawi recently escaped capture by U.S. troops in Iraq , but he left behind several key pieces of intelligence . NNP JJ NNS VBP VBN JJ NNP NNP NNP RB VBD NN IN NNP NNS IN NNP , CC PRP VBD IN JJ JJ NNS IN NN . A covert military unit tasked with finding the leader of Iraq 's insurgency says Zarqawi jumped from a moving vehicle near a checkpoint on February 20 , not far from the western city of Ramadi . DT JJ JJ NN VBD IN VBG DT NN IN NNP POS NN VBZ NNP VBD IN DT VBG NN IN DT NN IN NNP CD , RB RB IN DT JJ NN IN NNP . Troops gave chase and stopped the vehicle , which they say contained the terrorist leader 's laptop computer and about $ 1,00,000 in euros . NNP VBD NN CC VBD DT NN , WDT PRP VBP VBN DT JJ NN POS NN NN CC IN $ CD IN NNS . At least one Zarqawi associate was arrested . IN JJS CD NNP NN VBD VBN . U.S. Defense Secretary Donald Rumsfeld told reporters in Washington Tuesday that Zarqawi 's network may be small , but is very lethal and has carried out a large number of attacks . NNP NNP NNP NNP NNP VBD NNS IN NNP NNP IN NNP POS NN MD VB JJ , CC VBZ RB JJ CC VBZ VBN RP DT JJ NN IN NNS . The United States is offering a $ 25 million reward for Zarqawi 's capture . DT NNP NNPS VBZ VBG DT $ CD CD NN IN NNP POS NN . Burmese state media say security forces have seized drugs , drug-making equipment and weapons near Burma 's border with China , where troops recently targeted rebel militias . JJ NN NNS VBP NN NNS VBP VBN NNS , NN NN CC NNS IN NNP POS NN IN NNP , WRB NNS RB VBD JJ NNS . Media reports say troops found tens of thousands of stimulant narcotic pills along with weapons during a raid this week in Kokang , a mainly ethnic-Chinese region in Burma 's northeastern Shan state . NNS NNS VBP NNS VBD NNS IN NNS IN NN JJ NNS IN IN NNS IN DT NN DT NN IN NNP , DT RB JJ NN IN NNP POS JJ NNP NN . The region is known for drug smuggling . DT NN VBZ VBN IN NN NN . Burma launched an offensive against the rebel Myanmar National Democratic Alliance Army last month , forcing more than 30,000 people to leave their homes and cross into China 's southern Yunnan province . NNP VBD DT NN IN DT NN NNP NNP NNP NNP NNP JJ NN , VBG JJR IN CD NNS TO VB PRP$ NNS CC NN IN NNP POS JJ NNP NN . Many Burmese refugees have since returned home . JJ JJ NNS VBP IN VBN NN . Burma has been pressuring ethnic militia members to give up their arms and become border guards , ahead of the country 's national elections set for next year , the first in nearly two decades . NNP VBZ VBN VBG JJ NN NNS TO VB RP PRP$ NNS CC VB NN NNS , RB IN DT NN POS JJ NNS VBN IN JJ NN , DT NN IN RB CD NNS . Palestinian witnesses say Israeli troops killed two Palestinian militants after a gunbattle near the West Bank city of Bethlehem early Friday . JJ NNS VBP JJ NNS VBD CD JJ NNS IN DT NN IN DT NNP NNP NN IN NNP JJ NNP . The Israeli military says two Islamic Jihad members were killed after they opened fire on Israeli special forces operating in the area . DT JJ NN VBZ CD NNP NNP NNS VBD VBN IN PRP VBD NN IN JJ JJ NNS VBG IN DT NN . Separately , Israel carried out an air strike on a metal workshop in Gaza City . RB , NNP VBD RP DT NN NN IN DT NN NN IN NNP NNP . Palestinians say three people were wounded in that attack . NNS VBP CD NNS VBD VBN IN DT NN . The incidents occurred hours after Palestinian President Mahmoud Abbas said Palestinian militant groups have agreed to suspend attacks on Israel . DT NNS VBD NNS IN JJ NNP NNP NNP VBD JJ JJ NNS VBP VBN TO VB NNS IN NNP . Mr. Abbas says all Palestinian factions agreed to cease actions that may give others an excuse to retaliate . NNP NNP VBZ DT JJ NNS VBD TO VB NNS WDT MD VB NNS DT NN TO VB . Israel has carried out a nearly two-month-long Gaza offensive in an effort to stop cross-border rocket fire and to press for the release of a captured Israeli soldier . NNP VBZ VBN RP DT RB JJ NNP NN IN DT NN TO VB JJ NN NN CC TO VB IN DT NN IN DT VBN JJ NN . Nearly 200 Palestinians , many of them militants , have been killed in the Israeli offensive . RB CD NNS , NN IN PRP NNS , VBP VBN VBN IN DT JJ NN . Russia has called on Iran to cooperate with the International Atomic Energy Agency and clear up remaining questions about its nuclear program . NNP VBZ VBN IN NNP TO VB IN DT NNP NNP NNP NNP CC JJ IN VBG NNS IN PRP$ JJ NN . The Russian foreign ministry made the comments in a statement Saturday evening after the U.N. nuclear agency 's board found that Iran failed to comply with international nuclear safeguard agreements , but did not vote to refer the matter to the U.N. Security Council . DT JJ JJ NN VBD DT NNS IN DT NN NNP NN IN DT NNP JJ NN POS NN VBD IN NNP VBD TO VB IN JJ JJ NN NNS , CC VBD RB VB TO VB DT NN TO DT NNP NNP NNP . Russia , which is helping Iran build a nuclear power plant , was one of 12 nations that abstained from voting on Saturday 's IAEA resolution . NNP , WDT VBZ VBG NNP VB DT JJ NN NN , VBD CD IN CD NNS WDT VBD IN VBG IN NNP POS NNP NN . The United Nations has once again urged the kidnappers of one of its officials to make direct contact and called for his immediate release . DT NNP NNP VBZ RB RB VBD DT NNS IN CD IN PRP$ NNS TO VB JJ NN CC VBN IN PRP$ JJ NN . American citizen John Solecki , the head of the U.N. refugee agency ( UNHCR ) in Quetta , Pakistan , was abducted two weeks ago , on February 2 , in southwestern Baluchistan province . JJ NN NNP NNP , DT NN IN DT NNP NN NN LRB NNP RRB IN NNP , NNP , VBD VBN CD NNS RB , IN NNP CD , IN JJ NNP NN . A previously unknown group , the Baluchistan Liberation United Front , is threatening to kill Solecki if Pakistan 's government does not release Baluch prisoners . DT RB JJ NN , DT NNP NNP NNP NNP , VBZ VBG TO VB NNP IN NNP POS NN VBZ RB VB NNP NNS . On Monday , the group extended a 72-hour deadline it had given for its demands to be met . IN NNP , DT NN VBD DT JJ NN PRP VBD VBN IN PRP$ NNS TO VB VBN . In a statement , the United Nations appealed for his immediate and safe release and asked for the kidnappers to initiate contact with U.N. officials . IN DT NN , DT NNP NNP VBD IN PRP$ JJ CC JJ NN CC VBD IN DT NNS TO VB NN IN NNP NNS . Last week , a local news agency in Pakistan broadcast what appeared to be a video of Solecki pleading for his release . JJ NN , DT JJ NN NN IN NNP VBD WP VBD TO VB DT NN IN NNP VBG IN PRP$ NN . An international conference on world food security and climate change is taking place in Rome . DT JJ NN IN NN NN NN CC NN NN VBZ VBG NN IN NNP . U.N. Secretary-General Ban Ki-moon is there , along with French President Nicolas Sarkozy and Iranian President Mahmoud Ahmadinejad . NNP NNP NNP NNP VBZ RB , IN IN JJ NNP NNP NNP CC JJ NNP NNP NNP . Experts say global warming is having an impact on the world 's food supply and may impact it even more in the future . NNS VBP JJ NN VBZ VBG DT NN IN DT NN POS NN NN CC MD VB PRP RB RBR IN DT NN . VOA 's Carolyn Presutti explains . NNP POS NNP NNP VBZ . Saudi officials say security forces have killed a suspected militant in the western city of Jeddah after the man tried to use a hand grenade against them . JJ NNS VBP NN NNS VBP VBN DT JJ NN IN DT JJ NN IN NNP IN DT NN VBD TO VB DT NN NN IN PRP . Officials said the incident took place Saturday after security forces surrounded the man 's vehicle in the city 's Jamia district . NNS VBD DT NN VBD NN NNP IN NN NNS VBN DT NN POS NN IN DT NN POS NNP NN . They said police found guns , ammunition , hand grenades , pipe bombs , and money in the car . PRP VBD NN VBD NNS , NN , NN NNS , NN NNS , CC NN IN DT NN . Saudi officials have blamed al-Qaida militants for a wave of violence that has claimed dozens of lives in the kingdom since May of last year . JJ NNS VBP VBN NNP NNS IN DT NN IN NN WDT VBZ VBN NNS IN NNS IN DT NN IN NNP IN JJ NN . President Bush has dispatched the State Department 's new undersecretary for public diplomacy to help shore up America 's image in the Middle East . NNP NNP VBZ VBN DT NNP NNP POS JJ JJ IN JJ NN TO VB VB RP NNP POS NN IN DT NNP NNP . Karen Hughes , a long-time advisor to the president , is slated to arrive in Egypt Sunday as part of what she says is a campaign to counter a terrorist message of hate with one of freedom and hope . NNP NNP , DT JJ NN TO DT NN , VBZ VBN TO VB IN NNP NNP IN NN IN WP PRP VBZ VBZ DT NN TO VB DT JJ NN IN NN IN CD IN NN CC NN . Sworn in earlier this month , she says one of her primary roles is putting a human face on American policy . NNP IN RBR DT NN , PRP VBZ CD IN PRP$ JJ NNS VBZ VBG DT JJ NN IN JJ NN . During her five-day trip , which includes stops in Saudi Arabia and Turkey , she will meet with senior government officials , students and religious leaders . IN PRP$ JJ NN , WDT VBZ NNS IN NNP NNP CC NNP , PRP MD VB IN JJ NN NNS , NNS CC JJ NNS . Her trip comes as numerous polls indicate a surge in anti-Americanism in Europe , the Middle East and Asia . PRP$ NN VBZ IN JJ NNS VBP DT NN IN NN IN NNP , DT NNP NNP CC NNP . Wall Street 's most famous stock index , the Dow Jones Industrial Average , set a record closing high on Thursday , ending above 12,000 for the first time . NNP NNP POS JJS JJ NN NN , DT NNP NNP NNP NNP , VBD DT NN VBG JJ IN NNP , VBG IN CD IN DT JJ NN . However , the closing figure of 12,012 points was below the record level of 12,049 points reached during trading Wednesday . RB , DT NN NN IN CD NNS VBD IN DT NN NN IN CD NNS VBN IN NN NNP . The market was driven by investor optimism about corporate earnings after strong earnings reports from soft-drink giant Coca-Cola and the two largest U.S. providers of phone service , AT&T and Verizon . DT NN VBD VBN IN NN NN IN JJ NNS IN JJ NNS NNS IN NN NN NNP CC DT CD JJS NNP NNS IN NN NN , NNP CC NNP . Investors seemed to discount some new reports that indicated a weakening of the overall U.S. economy . NNS VBD TO VB DT JJ NNS IN VBD DT NN IN DT JJ NNP NN . Both the broad market S&P 500 index and NASDAQ Composite Index also showed gains . DT DT JJ NN NNP CD NN CC NNP NNP NNP RB VBD NNS . The Dow Jones Industrial Average is a measure of the share value of 30 top U.S. companies . DT NNP NNP NNP NNP VBZ DT NN IN DT NN NN IN CD JJ NNP NNS . Belarus security forces say they have uncovered a plot to seize control of the government on the day of the March 19 presidential elections . NNP NN NNS VBP PRP VBP VBN DT NN TO VB NN IN DT NN IN DT NN IN DT NNP CD JJ NNS . Belarus security ( KGB ) chief Stepan Sukhorenko says officials found fake exit polls from an unregistered non-governmental organization to be released by the opposition election day . NNP NN LRB NNP RRB NN NNP NNP VBZ NNS VBD JJ NN NNS IN DT JJ JJ NN TO VB VBN IN DT NN NN NN . He says the polls showed opposition candidate Alexander Milinkevich beating incumbent President Alexander Lukashenko by approximately 54 percent to 41 percent . PRP VBZ DT NNS VBD NN NN NNP NNP VBG JJ NNP NNP NNP IN RB CD NN TO CD NN . Sukhorenko says the opposition planned to detonate explosives in a crowd of their own supporters as they protested what the opposition would insist were fraudulent official election results . NNP VBZ DT NN VBN TO VB NNS IN DT NN IN PRP$ JJ NNS IN PRP VBD WP DT NN MD VB VBD JJ JJ NN NNS . Mr. Lukashenko is running for a third term . NNP NNP VBZ VBG IN DT JJ NN . The United States has branded him Europe 's last dictator for suppressing human rights and free speech . DT NNP NNPS VBZ VBN PRP NNP POS JJ NN IN VBG JJ NNS CC JJ NN . Milinkevich says he has planned a rally Thursday in Minsk without the permission of authorities . NNP VBZ PRP VBZ VBN DT NN NNP IN NNP IN DT NN IN NNS . A written statement purportedly from Taleban leader Mullah Omar mourns the death of Abu Musab al-Zarqawi , and vows to keep fighting in Afghanistan . DT JJ NN RB IN NNP NN NNP NNP VBZ DT NN IN NNP NNP NNP , CC VBZ TO VB VBG IN NNP . In the statement that surfaced Friday in Pakistan , Omar said Zarqawi 's death - described as ' martyrdom ' - would not weaken the resistance movement in Iraq or stop the battle in Afghanistan . IN DT NN WDT VBD NNP IN NNP , NNP VBD NNP POS NN : VBN IN `` NN `` : MD RB VB DT NN NN IN NNP CC VB DT NN IN NNP . The authenticity of the statement could not be confirmed . DT NN IN DT NN MD RB VB VBN . A wave of bomb attacks across Iraq killed at least 22 people Sunday . DT NN IN NN NNS IN NNP VBD IN JJS CD NNS NNP . Two explosions near a Shi'ite Muslim mosque in Baghdad killed 15 people and wounded 60 others . CD NNS IN DT NNP NNP NN IN NNP VBD CD NNS CC VBD CD NNS . Many of the casualties were caused by a suicide attacker who drove into a crowd of people helping victims of the first bomb , then detonated his vehicle . NN IN DT NNS VBD VBN IN DT NN NN WP VBD IN DT NN IN NNS VBG NNS IN DT JJ NN , RB VBD PRP$ NN . A separate roadside bomb blast in eastern Baghdad Sunday killed an American soldier . DT JJ NN NN NN IN JJ NNP NNP VBD DT JJ NN . To the north , in Tikrit , two suicide bombers killed six people , including four policemen , outside a police academy . TO DT NN , IN NNP , CD NN NNS VBD CD NNS , VBG CD NNS , IN DT NN NN . In other developments , Pakistani officials say kidnappers have released a Pakistani embassy employee who was abducted earlier this month in Baghdad . IN JJ NNS , JJ NNS VBP NNS VBP VBN DT JJ NN NN WP VBD VBN RBR DT NN IN NNP . And , Iraq 's political leaders are continuing efforts to form a government . CC , NNP POS JJ NNS VBP VBG NNS TO VB DT NN . Negotiations among major groups have yet to yield a Cabinet , nearly three months after the country 's historic elections , on January 30 . NNS IN JJ NNS VBP RB TO VB DT NNP , RB CD NNS IN DT NN POS JJ NNS , IN NNP CD . Thousands of Iranians have gathered outside the former U.S. Embassy in Tehran to commemorate the 27th anniversary of the seizure of the building by Islamic radicals . NNS IN NNS VBP VBN IN DT JJ NNP NNP IN NNP TO VB DT JJ NN IN DT NN IN DT NN IN NNP NNS . The demonstrators , mostly students , carried banners and shouted slogans proclaiming ' Death to America ' and Death to Israel . ' DT NNS , RB NNS , VBD NNS CC VBD NNS VBG `` NN TO NNP `` CC NNP TO NNP . `` Islamic radicals stormed the U.S. Embassy on November fourth , 1979 , and held American diplomats for 444 days . NNP NNS VBD DT NNP NNP IN NNP JJ , CD , CC VBD JJ NNS IN CD NNS . The takeover came shortly after the Islamic Revolution led by Ayatollah Ruhollah Khomeini that toppled the Shah of Iran . DT NN VBD RB IN DT JJ NN VBN IN NNP NNP NNP WDT VBD DT NNP IN NNP . The United States and other Western nations are trying to persuade the U.N. Security Council to impose sanctions on Iran because of its nuclear program . DT NNP NNPS CC JJ JJ NNS VBP VBG TO VB DT NNP NNP NNP TO VB NNS IN NNP IN IN PRP$ JJ NN . The West says Iran is secretly trying to develop nuclear weapons . DT NNP VBZ NNP VBZ RB VBG TO VB JJ NNS . Tehran says its nuclear program is meant to provide electricity . NNP VBZ PRP$ JJ NN VBZ VBN TO VB NN . Bulgaria has criticized Libya 's Supreme Court for postponing a ruling on the appeal of five Bulgarian nurses and a Palestinian doctor sentenced to death on charges of deliberately infecting children with AIDS . NNP VBZ VBN NNP POS NNP NNP IN VBG DT NN IN DT NN IN CD JJ NNS CC DT JJ NN VBN TO NN IN NNS IN RB VBG NNS IN NNP . Bulgarian President Georgi Parvanov says the court 's decision to delay the ruling until January 31st prolongs the tragedy of the detainees . JJ NNP NNP NNP VBZ DT NN POS NN TO VB DT NN IN NNP CD VBZ DT NN IN DT NNS . Relatives of some of the infected children fought with riot police when the postponement was announced . NNS IN DT IN DT JJ NNS VBN IN NN NNS WRB DT NN VBD VBN . The court gave no reason for putting off its decision . DT NN VBD DT NN IN VBG RP PRP$ NN . The defendants deny the charges , and human rights groups say Libyan police used torture to force them to confess . DT NNS VBP DT NNS , CC JJ NNS NNS VBP JJ NNS VBD NN TO VB PRP TO VB . Here in Washington , State Department spokesman Adam Ereli repeated U.S. calls for the defendants ' release and said establishment of normalized relations with Libya depends on Libyan progress on human rights . RB IN NNP , NNP NNP NN NNP NNP VBD NNP NNS IN DT NNS POS NN CC VBD NN IN JJ NNS IN NNP VBZ IN JJ NN IN JJ NNS . Some pro-opposition demonstrators in Ukraine have ended a two-week vigil in the capital after lawmakers approved a series of electoral reforms . DT JJ NNS IN NNP VBP VBN DT JJ NN IN DT NN IN NNS VBD DT NN IN JJ NNS . Tens of thousands of people had packed Kiev 's main square following a flawed presidential runoff election on November 21 . NNS IN NNS IN NNS VBD VBN NNP POS JJ NN VBG DT JJ JJ NN NN IN NNP CD . Opposition leader Viktor Yushchenko Wednesday , urged the masses to return home , but to look toward the court-ordered repeat election on December 26 . NNP NN NNP NNP NNP , VBD DT NNS TO VB NN , CC TO VB IN DT JJ NN NN IN NNP CD . Parliament Wednesday adopted the election reforms aimed at preventing fraud in the new vote . NNP NNP VBD DT NN NNS VBN IN VBG NN IN DT JJ NN . Also included are constitutional changes that transfer some presidential powers to parliament . RB VBN VBP JJ NNS IN VBP DT JJ NNS TO NN . The opposition has also ended a blockade on government buildings . DT NN VBZ RB VBN DT NN IN NN NNS . Some demonstrators remain in Kiev . DT NNS VBP IN NNP . Meanwhile , outgoing President Leonid Kuchma has fired Prosecutor General Hennadiy Vasylyev following opposition demands for his dismissal in connection with the election crisis . RB , VBG NNP NNP NNP VBZ VBN NNP NNP NNP NNP VBG NN NNS IN PRP$ NN IN NN IN DT NN NN . Rival presidential candidate Prime Minister Viktor Yanukovych says the new electoral measures will not stop fraud . JJ JJ NN NNP NNP NNP NNP VBZ DT JJ JJ NNS MD RB VB NN . President Bush has nominated the acting administrator of the U.S. Environmental Protection Agency to be its new head . NNP NNP VBZ VBN DT JJ NN IN DT NNP NNP NNP NNP TO VB PRP$ JJ NN . At the White House Friday , the president asked Congress to promptly approve Steve Johnson for the position . IN DT NNP NNP NNP , DT NN VBD NNP TO RB VB NNP NNP IN DT NN . Mr. Johnson is a professional scientist and a career EPA employee . NNP NNP VBZ DT JJ NN CC DT NN NNP NN . Mr. Bush also asked Congress to get his proposed ' Clear Skies ' legislation to his desk for signing this year . NNP NNP RB VBD NNP TO VB PRP$ VBN `` NNP NNPS `` NN TO PRP$ NN IN NN DT NN . He called the proposal , which aims to dramatically reduce power plant emissions , a ' common sense , pro-environment and pro-jobs ' initiative . PRP VBD DT NN , WDT VBZ TO RB VB NN NN NNS , DT `` JJ NN , NN CC NNS `` NN . However , environmental groups have criticized the proposed legislation , saying it would actually weaken existing air pollution regulations , known as the ' Clean Air Act . ' RB , JJ NNS VBP VBN DT VBN NN , VBG PRP MD RB VB VBG NN NN NNS , VBN IN DT `` NNP NNP NNP . `` Insurgents in Iraq killed at least 11 people Monday , including a U.S. soldier , in a series of bombings and shootings five days before a referendum on the country 's proposed new constitution . NNS IN NNP VBD IN JJS CD NNS NNP , VBG DT NNP NN , IN DT NN IN NNS CC NNS CD NNS IN DT NN IN DT NN POS VBN JJ NN . The soldier died in a suicide bombing at a checkpoint outside Baghdad 's heavily fortified Green Zone . DT NN VBD IN DT NN VBG IN DT NN IN NNP POS RB VBN NNP NNP . Elsewhere in the capital , gunmen opened fire on a convoy carrying delegates from the Arab League . RB IN DT NN , NNS VBD NN IN DT NN VBG NNS IN DT NNP NNP . There were reports of casualties among guards assigned to the convoy . EX VBD NNS IN NNS IN NNS VBN TO DT NN . The attacks came as negotiators from Shi'ite and Kurdish factions that dominate parliament continued talks aimed at winning last-minute Sunni Arab backing for the draft constitution . DT NNS VBD IN NNS IN NNP CC NNP NNS WDT VBP NN VBD NNS VBN IN VBG JJ NNP NNP NN IN DT NN NN . U.S. Ambassador Zalmay Khalilzad was also attending the Baghdad talks . NNP NNP NNP NNP VBD RB VBG DT NNP NNS . Participants say the negotiators remain far apart on several key issues , including federalism provisions that Sunnis Arabs fear will give too much economic and political power to Iraq 's Shi'ites and Kurds . NNS VBP DT NNS VBP RB RB IN JJ JJ NNS , VBG NN NNS WDT NNP NNS NN MD VB RB JJ JJ CC JJ NN TO NNP POS NNS CC NNS . A major earthquake jolted a largely empty area of the southern Atlantic Ocean Monday morning , between Antarctica and Argentina . DT JJ NN VBD DT RB JJ NN IN DT JJ NNP NNP NNP NN , IN NNP CC NNP . Seismologists around the world are on alert , but there is no sign of any tsunami triggered by the earthquake , which was measured at a magnitude of at least 7.3 . NNS IN DT NN VBP IN NN , CC EX VBZ DT NN IN DT NN VBN IN DT NN , WDT VBD VBN IN DT NN IN IN JJS CD . The U.S. National Earthquake Information Center says the earthquake was centered about 10 kilometers below the ocean floor , nearly 350 kilometers southeast of the South Sandwich Islands . DT NNP NNP NNP NNP NNP VBZ DT NN VBD VBN IN CD NNS IN DT NN NN , RB CD NNS NN IN DT NNP NNP NNP . It hit shortly after six hours , Universal Time . PRP VBD RB IN CD NNS , NNP NNP . Scientists in Japan and Finland said they measured the quake 's strength at magnitude 7.5 and 7.4 , respectively . NNS IN NNP CC NNP VBD PRP VBD DT NN POS NN IN NN CD CC CD , RB . Britain administers the South Sandwich Islands , an uninhabited chain roughly 4,000 kilometers southeast of Buenos Aires . NNP VBZ DT NNP NNP NNP , DT JJ NN RB CD NNS NN IN NNP NNPS . Argentina also claims the islands . NNP RB VBZ DT NNS . Police in Sweden say one person was killed and two others wounded in two almost simultaneous explosions in central Stockholm Saturday . NNS IN NNP VBP CD NN VBD VBN CC CD NNS VBD IN CD RB JJ NNS IN JJ NNP NNP . The police say the first blast occurred in a car near a busy shopping street and left two people hurt . DT NNS VBP DT JJ NN VBD IN DT NN IN DT JJ NN NN CC VBD CD NNS VBN . Shortly afterward , a second explosion was heard on the same street , and police later found one person dead at the scene . RB RB , DT JJ NN VBD VBN IN DT JJ NN , CC NNS RB VBD CD NN JJ IN DT NN . A police spokeswoman says it is unclear what caused the blasts and if they are linked . DT NN NN VBZ PRP VBZ JJ WP VBD DT NNS CC IN PRP VBP VBN . The Associated Press quotes a rescue services spokesman as saying the car that exploded first contained gas canisters . DT NNP NNP VBZ DT NN NNS NN IN VBG DT NN WDT VBD RB VBN NN NNS . No other details were immediately available . DT JJ NNS VBD RB JJ . Iran 's new hard-line nuclear negotiator says Tehran will offer new proposals in its standoff with the West over its nuclear program . NNP POS JJ JJ JJ NN VBZ NNP MD VB JJ NNS IN PRP$ NN IN DT NNP IN PRP$ JJ NN . Ali Larijani made the announcement Friday in Vienna , after a meeting with International Atomic Energy Agency , IAEA , chief Mohamed ElBaradei . NNP NNP VBD DT NN NNP IN NNP , IN DT NN IN NNP NNP NNP NNP , NNP , JJ NNP NNP . Mr. Larijani told a news conference that Iranian President Mahmoud Ahmadinejad will need about a month to lay out new proposals . NNP NNP VBD DT NN NN IN JJ NNP NNP NNP MD VB IN DT NN TO VB RP JJ NNS . He said Tehran has not ruled out further talks with the European Union , even though the EU has broken off the talks to protest Iran 's resumption of nuclear fuel work that could lead to atomic weapons . PRP VBD NNP VBZ RB VBN IN JJ NNS IN DT NNP NNP , RB IN DT NNP VBZ VBN RP DT NNS TO VB NNP POS NN IN JJ NN NN WDT MD VB TO JJ NNS . Mr. Larijani said Iran has too much power in its region to worry about U.S. and European threats to refer Iran to the U.N. Security Council . NNP NNP VBD NNP VBZ RB JJ NN IN PRP$ NN TO VB IN NNP CC JJ NNS TO VB NNP TO DT NNP NNP NNP . Details of Mr. Larijani 's talks with the IAEA were not immediately known . NNS IN NNP NNP POS NNS IN DT NNP VBD RB RB VBN . Germany has won third place in the World cup with a late game header , beating Uruguay 03-Feb . NNP VBZ VBN JJ NN IN DT NNP NN IN DT JJ NN NN , VBG NNP CD . Germany 's Sami Khedira scored in the 82nd minute after Uruguay 's defense failed to clear a corner from Mesut Oezil . NNP POS NNP NNP VBD IN DT CD NN IN NNP POS NN VBD TO VB DT NN IN NNP NNP . The goal ended Uruguay 's hopes of beating Germany for the first time in 82 years . DT NN VBD NNP POS NNS IN VBG NNP IN DT JJ NN IN CD NNS . Thomas Mueller gave Germany the lead in the 19th minute with his fifth goal of the tournament , but Uruguayan Edinson Cavani equalized the score nine minutes later . NNP NNP VBD NNP DT NN IN DT JJ NN IN PRP$ JJ NN IN DT NN , CC JJ NNP NNP VBD DT NN CD NNS RB . Uruguay took the lead early in the second half with a strike by Diego Forlan , but Marcell Jansen leveled the score for Germany within six minutes . NNP VBD DT NN RB IN DT JJ NN IN DT NN IN NNP NNP , CC NNP NNP VBD DT NN IN NNP IN CD NNS . The championship game will be played Sunday between Spain and The Netherlands . DT NN NN MD VB VBN NNP IN NNP CC DT NNP . More than 100 Vietnamese Montagnards were who forcibly repatriated from Cambodia earlier this month may get a chance to resettle in the United States . JJR IN CD JJ NNS VBD WP RB VBD IN NNP RBR DT NN MD VB DT NN TO VB IN DT NNP NNPS . A spokesman for the U.S. Embassy in Hanoi says U.S. and Vietnamese officials are discussing possible options , including resettling the Montagnards in the United States . DT NN IN DT NNP NNP IN NNP VBZ NNP CC JJ NNS VBP VBG JJ NNS , VBG VBG DT NNS IN DT NNP NNPS . The spokesman tells VOA that Hanoi supports the review of the case . DT NN VBZ NNP IN NNP VBZ DT NN IN DT NN . The Montagnards , from Vietnam 's Central Highlands were among several hundred who fled to Cambodia last year after security forces cracked down on demonstrators protesting Hanoi 's land confiscation policy and lack of religious freedom . DT NNS , IN NNP POS NNP NNPS VBD IN JJ CD WP VBD TO NNP JJ NN IN NN NNS VBD RP IN NNS VBG NNP POS NN NN NN CC NN IN JJ NN . They were forcibly sent back to Vietnam after the United Nations denied them refugee status . PRP VBD RB VBN RB TO NNP IN DT NNP NNPS VBD PRP VB NN . Officials in southern India say four days of torrential rains and flash floods have killed more than 130 people . NNS IN JJ NNP VBP CD NNS IN JJ NNS CC NN NNS VBP VBN JJR IN CD NNS . The army sent troops and helicopters into Karnataka state and neighboring Andhra Pradesh to rescue stranded families and deliver emergency food and medical supplies . DT NN VBD NNS CC NNS IN NNP NN CC VBG NNP NNP TO VB JJ NNS CC VB NN NN CC JJ NNS . Hundreds of thousands of people have already been evacuated . NNS IN NNS IN NNS VBP RB VBN VBN . Officials say the rains destroyed thousands of homes . NNS VBP DT NNS VBD NNS IN NNS . Flooding has also destroyed crops , washed away roads and disrupted communication links . NN VBZ RB VBN NNS , VBD RB NNS CC VBN NN NNS . Officials expect the death toll will rise as they reach areas that remain inaccessible . NNS VBP DT NN NN MD VB IN PRP VBP NNS WDT VBP JJ . Weather experts say the intense rains stem from a storm in the Bay of Bengal . NNP NNS VBP DT JJ NNS VBP IN DT NN IN DT NNP IN NNP . Burma is rejecting a U.S. human rights report that condemns the military-run country 's rights record . NNP VBZ VBG DT NNP JJ NNS NN WDT VBZ DT JJ NN POS NNS NN . The official New Light of Myanmar quoted Burma 's Foreign Ministry Saturday as saying that the report carries a number of unfounded and unsubstantiated allegations of human rights violations that are aimed at smearing the country 's image . DT JJ NNP NNP IN NNP VBD NNP POS NNP NNP NNP IN VBG IN DT NN VBZ DT NN IN JJ CC JJ NNS IN JJ NNS NNS WDT VBP VBN IN VBG DT NN POS NN . On Tuesday , the U.S. State Department released its Country Reports on Human Rights Practices for 2006 . IN NNP , DT NNP NNP NNP VBD PRP$ NN NNS IN NNP NNP NNPS IN CD . In it , Washington categorized Burma , as well as countries including North Korea , China and Russia , as some of the world 's worst human rights offenders . IN PRP , NNP VBD NNP , RB RB IN NNS VBG NNP NNP , NNP CC NNP , IN DT IN DT NN POS JJS JJ NNS NNS . The report accused Burma of using executions , rape , torture , random detentions , and forced relocation of entire villages , particularly of ethnic minorities , to maintain its grip on power . DT NN VBD NNP IN VBG NNS , NN , NN , JJ NNS , CC JJ NN IN JJ NNS , RB IN JJ NNS , TO VB PRP$ NN IN NN . The U.S report also says that surveillance of political activists continues in Burma and notes that 1,100 political prisoners remain behind bars . DT NNP NN RB VBZ IN NN IN JJ NNS VBZ IN NNP CC VBZ IN CD JJ NNS VBP IN NNS . Reports from Darfur say an air raid by the Sudanese army has killed at least 13 people and wounded others , including children . NNS IN NNP VBP DT NN NN IN DT JJ NN VBZ VBN IN JJS CD NNS CC VBN NNS , VBG NNS . Aid groups and rebel representatives say a Sudanese military plane bombed the village of Shegag Karo in North Darfur state on Sunday . JJ NNS CC JJ NNS VBP DT JJ JJ NN VBD DT NN IN NNP NNP IN NNP NNP NN IN NNP . The Sudanese army has not commented . DT JJ NN VBZ RB VBN . Five years of fighting in Darfur between rebels , the Sudanese government and government-backed militias has killed an estimated 2,00,000 people and displaced some 2.5 million others . CD NNS IN VBG IN NNP IN NNS , DT JJ NN CC JJ NNS VBZ VBN DT JJ CD NNS CC VBD DT CD CD NNS . Officials from the World Health Organization say they fear Yemen could be facing a major polio epidemic , after confirming 83 cases of the disease . NNS IN DT NNP NNP NNP VBP PRP VBP NNP MD VB VBG DT JJ NN NN , IN VBG CD NNS IN DT NN . Sixty-seven of the cases were found in a single province al-Hudaidah . CD IN DT NNS VBD VBN IN DT JJ NN NN . Meanwhile , health officials are investigating another 411 suspected cases across the country . RB , NN NNS VBP VBG DT CD JJ NNS IN DT NN . A first round of vaccinations was completed last month , and officials say another round is planned . DT JJ NN IN NNS VBD VBN JJ NN , CC NNS VBP DT NN VBZ VBN . Yemen is one of 16 previously polio-free countries that have reported new cases of the disease since 2003 . NNP VBZ CD IN CD RB JJ NNS WDT VBP VBN JJ NNS IN DT NN IN CD . The water-borne disease , which mostly strikes the young , attacks the nervous system and can cause paralysis and sometimes death . DT JJ NN , WDT RB VBZ DT JJ , VBZ DT JJ NN CC MD VB NN CC RB NN . Reports from Syria say a small aircraft apparently used by the military has crashed near Damascus , killing three people on board . NNS IN NNP VBP DT JJ NN RB VBN IN DT NN VBZ VBN IN NNP , VBG CD NNS IN NN . Witnesses said the plane appeared to be on a training flight Sunday when it came down . NNS VBD DT NN VBD TO VB IN DT NN NN NNP WRB PRP VBD RB . There was no immediate confirmation of the incident from Syrian officials . EX VBD DT JJ NN IN DT NN IN JJ NNS . The plane crash happened at a time of heightened tension between Syria and Israel , which carried out an air strike deep inside Syrian territory on September 6 . DT NN NN VBD IN DT NN IN JJ NN IN NNP CC NNP , WDT VBD RP DT NN NN JJ IN JJ NN IN NNP CD . Neither country has given much information about the target of the Israeli raid . DT NN VBZ VBN JJ NN IN DT NN IN DT JJ NN . The Olympic Flame rode in style Saturday in a Ferrari as the torch continued its trek toward Turin for the Winter Games . DT NNP NNP VBD IN NN NNP IN DT NNP IN DT NN VBD PRP$ NN IN NNP IN DT NNP NNPS . Luca Badoer , the test driver for Ferrari 's Formula One team , received the flame from a torchbearer and drove it slowly through the company 's headquarters in a red Ferrari F-430 Spider . NNP NNP , DT NN NN IN NNP POS NNP CD NN , VBD DT NN IN DT NN CC VBD PRP RB IN DT NN POS NN IN DT JJ NNP NNP NNP . From Maranello , the torch moved towards Reggio Emilia and Parma , where the day 's travel ended . IN NNP , DT NN VBD IN NNP NNP CC NNP , WRB DT NN POS NN VBD . The torch moves east toward Venice Sunday and will continue traveling through Italy until it ignites the Olympic Cauldron at the Opening Ceremonies February 10th in Turin . DT NN VBZ JJ IN NNP NNP CC MD VB VBG IN NNP IN PRP VBZ DT NNP NNP IN DT NNP NNPS NNP CD IN NNP . The U.S. space agency NASA says its Phoenix probe has touched the surface of the planet Mars with its robot arm . DT NNP NN NN NNP VBZ PRP$ NNP NN VBZ VBN DT NN IN DT NN NNP IN PRP$ NN NN . Officials said Sunday that operators were testing the arm , which will be used to scoop up samples of Martian soil and ice for testing in the lander 's onboard laboratory . NNS VBD NNP IN NNS VBD VBG DT NN , WDT MD VB VBN TO VB RP NNS IN JJ NN CC NN IN NN IN DT NN POS NN NN . NASA released a photograph of the disturbed soil where the arm touched the ground , leaving behind a footprint-shaped impression . NNP VBD DT NN IN DT JJ NN WRB DT NN VBD DT NN , VBG IN DT JJ NN . A camera attached to the arm also took photographs of the area beneath the lander . DT NN VBN TO DT NN RB VBD NNS IN DT NN IN DT NN . The Phoenix probe arrived on Mars a week ago . DT NNP NN VBD IN NNP DT NN RB . It is on a three-month mission to analyze samples of Martian soil and subsurface ice , to study the history of water on Mars and to determine whether the planet could support life . PRP VBZ IN DT JJ NN TO VB NNS IN JJ NN CC NN NN , TO VB DT NN IN NN IN NNP CC TO VB IN DT NN MD VB NN . Phoenix was launched last August and traveled 679 million kilometers to reach Mars . NNP VBD VBN JJ NNP CC VBD CD CD NNS TO VB NNP . The government of Venezuela says it has signed an agreement to buy an American company 's interest in Venezuela 's largest telecommunications company . DT NN IN NNP VBZ PRP VBZ VBN DT NN TO VB DT JJ NN POS NN IN NNP POS JJS NN NN . On Monday Venezuelan officials announced the agreement to purchase 28 percent of CANTV from Verizon , a telecommunications company based in the United States . IN NNP JJ NNS VBD DT NN TO VB CD NN IN NNP IN NNP , DT NN NN VBN IN DT NNP NNPS . In early January , President Hugo Chavez said Venezuela should regain control of strategic sectors of its economy . IN JJ NNP , NNP NNP NNP VBD NNP MD VB NN IN JJ NNS IN PRP$ NN . He asked the national assembly to grant him special powers to nationalize businesses . PRP VBD DT JJ NN TO VB PRP JJ NNS TO VB NNS . Last week , Venezuela agreed to buy a controlling stake in the country 's largest private electric company . JJ NN , NNP VBD TO VB DT VBG NN IN DT NN POS JJS JJ JJ NN . On February 2 , Mr. Chavez gave foreign oil companies three months to surrender control of their operations in Venezuela . IN NNP CD , NNP NNP VBD JJ NN NNS CD NNS TO VB NN IN PRP$ NNS IN NNP . The U.S. has criticized the nationalization plan . DT NNP VBZ VBN DT NN NN . Secretary of State Condoleezza Rice said last week President Chavez is destroying his country , economically and politically . NNP IN NNP NNP NNP VBD JJ NN NNP NNP VBZ VBG PRP$ NN , RB CC RB . Turkish security officials say one soldier and 12 Kurdish rebels were killed in a clash in eastern Turkey . JJ NN NNS VBP CD NN CC CD JJ NNS VBD VBN IN DT NN IN JJ NNP . They say the fighting erupted in Tunceli province during a military offensive against the outlawed Kurdistan Workers Party , or PKK . PRP VBP DT NN VBD IN NNP NN IN DT JJ NN IN DT JJ NNP NNP NNP , CC NNP . Clashes usually intensify during this time of year , as melting snow allows the Kurdish rebels to move more freely . NNS RB VB IN DT NN IN NN , IN VBG NN VBZ DT JJ NNS TO VB RBR RB . Last week , Turkey 's top military official , General Yasar Buyukanit , called for an incursion into Iraq to pursue Kurdish rebels based there . JJ NN , NNP POS JJ JJ NN , NNP NNP NNP , VBD IN DT NN IN NNP TO VB NNP NNS VBN RB . The PKK announced a unilateral ceasefire in October , but Turkey rejected it . DT NNP VBD DT JJ NN IN NNP , CC NNP VBD PRP . Kurdish rebels have been fighting Turkey for autonomy since 1984 . NNP NNS VBP VBN VBG NNP IN NN IN CD . The conflict has claimed more than 37,000 lives . DT NN VBZ VBN JJR IN CD NNS . The U.S. considers the PKK a terrorist organization . DT NNP VBZ DT NNP DT JJ NN . Officials in Japan say the death toll from a typhoon that swept across the island-nation now stands at 75 . NNS IN NNP VBP DT NN NN IN DT NN WDT VBD IN DT NN RB VBZ IN CD . Authorities say 15 people are still missing in the aftermath of Typhoon Tokage , which battered Japan earlier this week . NNS VBP CD NNS VBP RB VBG IN DT NN IN NNP NNP , WDT VBD NNP RBR DT NN . Rescue crews are searching through flooded towns and the rubble of collapsed homes . NN NNS VBP VBG IN VBN NNS CC DT NN IN JJ NNS . Tokage has since moved out to sea east of Japan . NNP VBZ IN VBN RP TO NN NN IN NNP . It is the latest in a record number of typhoons to hit Japan this year . PRP VBZ DT JJS IN DT NN NN IN NNS TO VB NNP DT NN . Japan says the number of casualties from Tokage was the worst from a typhoon since 1979 , when 115 people died or went missing from a similar storm . NNP VBZ DT NN IN NNS IN NN VBD DT JJS IN DT NN IN CD , WRB CD NNS VBD CC VBD VBG IN DT JJ NN . Crude oil prices continued their surge Thursday hitting a new record high of nearly $ 106 a barrel . JJ NN NNS VBD PRP$ NN NNP VBG DT JJ NN NN IN RB $ CD DT NN . Prices for crude for future delivery went as high as $ 105.97 before easing slightly . NNS IN NN IN JJ NN VBD RB JJ IN $ CD IN VBG RB . The latest record high for oil follows another record low for the dollar compared to the euro . DT JJS NN NN IN NN VBZ DT NN NN IN DT NN VBN TO DT NN . Dollar-priced raw materials like oil gain from the weak greenback because the fall in the dollar makes them cheaper for buyers using other , stronger currencies . JJ JJ NNS IN NN NN IN DT JJ NN IN DT NN IN DT NN VBZ PRP JJR IN NNS VBG JJ , JJR NNS . The price spike is also related to Wednesday 's decision by the Organization of Petroleum Exporting Countries to hold oil production steady rather than raise output as requested by Washington . DT NN NN VBZ RB VBN TO NNP POS NN IN DT NNP IN NNP NNP NNPS TO VB NN NN RB RB IN VB NN IN VBN IN NNP . Some oil-importing nations say more oil would help ease prices , but OPEC officials say the markets are well-supplied with crude . DT JJ NNS VBP JJR NN MD VB VB NNS , CC NNP NNS VBP DT NNS VBP JJ IN NN . Church bells have begun tolling across Rome and throughout Italy , signaling the death of Pope John Paul II . NNP NNS VBP VBN VBG IN NNP CC IN NNP , VBG DT NN IN NNP NNP NNP NNP . As news of his death spread , Roman Catholics around the world began mourning and offering prayers for the death of the spiritual leader of the 1.1 billion-member Roman Catholic Church . IN NN IN PRP$ NN NN , NNP NNPS IN DT NN VBD VBG CC VBG NNS IN DT NN IN DT JJ NN IN DT CD JJ NNP NNP NNP . In his native Poland , people in the pope 's hometown of Wadowice fell to their knees and wept at the end of a special Mass in the church where he worshipped as a boy . IN PRP$ JJ NNP , NNS IN DT NN POS NN IN NNP VBD TO PRP$ NNS CC VBD IN DT NN IN DT JJ NNP IN DT NN WRB PRP VBD IN DT NN . Special masses are being held around the world , including Latin America , home to nearly half of the world 's Roman Catholics . JJ NNS VBP VBG VBN IN DT NN , VBG NNP NNP , NN TO RB NN IN DT NN POS NNP NNPS . U.S. National Intelligence Director John Negroponte has singled out Venezuelan president Hugo Chavez for criticism during a hearing on homeland security . NNP NNP NNP NNP NNP NNP VBZ VBN RP JJ NN NNP NNP IN NN IN DT NN IN NN NN . Negroponte told a Senate committee Tuesday that Mr. Chavez is seeking closer military and economic ties with Iran and North Korea . NNP VBD DT NNP NN NNP IN NNP NNP VBZ VBG RBR JJ CC JJ NNS IN NNP CC NNP NNP . Negroponte also said Mr. Chavez is expected to deepen his relationship with Fidel Castro , president of communist Cuba and an outspoken critic of President Bush . NNP RB VBD NNP NNP VBZ VBN TO VB PRP$ NN IN NNP NNP , NN IN JJ NNP CC DT JJ NN IN NNP NNP . He added that Venezuela has recently scaled back its counternarcotics cooperation with the United States . PRP VBD IN NNP VBZ RB VBN RP PRP$ NNS NN IN DT NNP NNPS . Negroponte also accused Mr. Chavez of spending millions of dollars on what he termed an extravagant foreign policy , at the expense of the Venezuelan people . NNP RB VBD NNP NNP IN VBG NNS IN NNS IN WP PRP VBD DT JJ JJ NN , IN DT NN IN DT JJ NNS . He said Mr. Chavez is investing considerable sums of money in politics in other Latin American countries . PRP VBD NNP NNP VBZ VBG JJ NNS IN NN IN NNS IN JJ JJ JJ NNS . Namibia has sworn in a new parliament , as President Sam Nujoma readies to step down after 15 years in office . NNP VBZ VBN IN DT JJ NN , IN NNP NNP NNP VBZ TO VB RB IN CD NNS IN NN . Seventy-two lawmakers took the oath of office in Windhoek Sunday and elected former prime minister Theo Ben Gurirab as the new speaker of parliament . CD NNS VBD DT NN IN NN IN NNP NNP CC VBN JJ JJ NN NNP NNP NNP IN DT JJ NN IN NN . The ruling South West Africa People 's Organization ( SWAPO ) party controls 55 seats in the legislature , following a victory in November elections . DT NN NNP NNP NNP NNP POS NNP LRB NNP RRB NN VBZ CD NNS IN DT NN , VBG DT NN IN NNP NNS . Monday , President Nujoma will hand over power to Hifikepunye Pohamba , becoming Namibia 's second head of state since independence from apartheid-era South Africa . NNP , NNP NNP MD VB IN NN IN NNP NNP , VBG NNP POS JJ NN IN NN IN NN IN JJ NNP NNP . Mr. Pohamba has vowed to maintain many of the economic policies of Mr. Nujoma and advance a land redistribution program . NNP NNP VBZ VBN TO VB NN IN DT JJ NNS IN NNP NNP CC VB DT NN NN NN . Iran 's state-run television says President Mahmoud Ahmadinejad has named a new head of the country 's Supreme National Security Council , the agency that oversees Iran 's nuclear policy . NNP POS JJ NN VBZ NNP NNP NNP VBZ VBN DT JJ NN IN DT NN POS NNP NNP NNP NNP , DT NN WDT VBZ NNP POS JJ NN . The new nuclear chief , Ali Larijani , has served as an aide to Supreme Leader Ayatollah Ali Khamenei and is known as a hardline conservative . DT JJ JJ NN , NNP NNP , VBZ VBN IN DT NN TO NNP NNP NNP NNP NNP CC VBZ VBN IN DT JJ NN . He is also a former head of Iranian state radio and television . PRP VBZ RB DT JJ NN IN JJ NN NN CC NN . Mr. Larijani 's appointment comes as Iran faces intense pressure to stop its nuclear activities or face the possibility of international sanctions . NNP NNP POS NN VBZ IN NNP VBZ JJ NN TO VB PRP$ JJ NNS CC VB DT NN IN JJ NNS . Some observers are concerned that he will take a tougher stance on Iran 's nuclear ambitions Iran resumed uranium conversion last week after rejecting a European Union proposal offering economic and political incentives in exchange for suspending nuclear fuel processing . DT NNS VBP VBN IN PRP MD VB DT JJR NN IN NNP POS JJ NNS NNP VBD NN NN JJ NN IN VBG DT NNP NNP NN VBG JJ CC JJ NNS IN NN IN VBG JJ NN NN . Iran insists its nuclear program is solely for peaceful purposes . NNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS . Israeli health authorities say they have found the deadly H5N1 strain of bird flu in dead chickens at a kindergarten petting zoo . JJ NN NNS VBP PRP VBP VBN DT JJ NNP NN IN NN NN IN JJ NNS IN DT NN VBG NN . The Israeli Agriculture Ministry says 18 chickens were found dead Thursday at the kindergarten in the northern town of Binyamina . DT JJ NNP NNP VBZ CD NNS VBD VBN JJ NNP IN DT NN IN DT JJ NN IN NNP . The ministry says tests later confirmed they were infected with the H5N1 virus that is potentially lethal to humans . DT NN VBZ NNS RB VBD PRP VBD VBN IN DT NNP NN WDT VBZ RB JJ TO NNS . Israeli authorities alerted hospitals in the area to look out for any children or adults with high fever , the most common symptom associated with the virus . JJ NNS VBD NNS IN DT NN TO VB RP IN DT NNS CC NNS IN JJ NN , DT RBS JJ NN VBN IN DT NN . Authorities also are checking for other bird flu outbreaks within a 10-kilometer radius of the kindergarten . NNS RB VBP VBG IN JJ NN NN NNS IN DT JJ NN IN DT NN . Israel culled more than one million chickens and turkeys in March 2006 after the H5N1 virus infected poultry at several communal farms . NNP VBD JJR IN CD CD NNS CC NNS IN NNP CD IN DT NNP NN VBD NN IN JJ JJ NNS . Migratory birds are thought to have spread the virus from Asia to the Middle East and Europe . JJ NNS VBP VBN TO VB VBN DT NN IN NNP TO DT NNP NNP CC NNP . A series of attacks by suspected Taleban insurgents has left eleven Afghans dead and an election candidate seriously wounded . DT NN IN NNS IN JJ NNP NNS VBZ VBN CD NNS NN CC DT NN NN RB VBD . Three policemen guarding a convoy transporting supplies to U.S. bases were killed late Saturday during an ambush in the southern province Zabul . CD NNS VBG DT NN VBG NNS TO NNP NNS VBD VBN JJ NNP IN DT NN IN DT JJ NN NNP . Another policeman was killed and two were wounded early Sunday in an attack on a police checkpoint on the main highway linking the southern city of Kandahar with Kabul . DT NN VBD VBN CC CD VBD VBN JJ NNP IN DT NN IN DT NN NN IN DT JJ NN VBG DT JJ NN IN NNP IN NNP . Also Sunday , in the southern Helmand province , suspected rebels attacked a district police chief , killing him , three of his bodyguards and his son . RB NNP , IN DT JJ NNP NN , JJ NNS VBD DT NN NN NN , VBG PRP , CD IN PRP$ NNS CC PRP$ NN . Two militants were also killed when the police returned fire . CD NNS VBD RB VBN WRB DT NN VBD NN . Hours later , in the same province , a bomb blast seriously wounded a candidate in the September 18 parliamentary elections . NNS RB , IN DT JJ NN , DT NN NN RB VBD DT NN IN DT NNP CD JJ NNS . The U.S. Defense Department says 52 detainees at the U.S. military prison in Guantanamo Bay , Cuba , are on a hunger strike to protest their continued detention . DT NNP NNP NNP VBZ CD NNS IN DT NNP JJ NN IN NNP NNP , NNP , VBP IN DT NN NN TO VB PRP$ JJ NN . In a statement Thursday , Pentagon officials said the hunger strike began three days ago and appears to be temporary . IN DT NN NNP , NNP NNS VBD DT NN NN VBD CD NNS RB CC VBZ TO VB JJ . The Pentagon says some detainees have abandoned the strike . DT NNP VBZ DT NNS VBP VBN DT NN . But , the Los Angeles Times reported Thursday that two prisoners recently released from the facility say there are 180 prisoners on hunger strike , demanding better conditions and more information on their cases . CC , DT NNP NNP NNP VBD NNP IN CD NNS RB VBN IN DT NN VBP EX VBP CD NNS IN NN NN , VBG JJR NNS CC JJR NN IN PRP$ NNS . Many of the some-500 terrorism suspects at Guantanamo have been held for more than two years without charge . NN IN DT JJ NN NNS IN NNP VBP VBN VBN IN JJR IN CD NNS IN NN . This week , the Pentagon said it was resuming a series of military trials for some prisoners . DT NN , DT NNP VBD PRP VBD VBG DT NN IN JJ NNS IN DT NNS . Reports from southern China 's Guangdong province say armed police have sealed off a village after opening fire on a group of protesters and killing at least two people this week . NNS IN JJ NNP POS NNP NN VBP JJ NNS VBP VBN RP DT NN IN VBG NN IN DT NN IN NNS CC VBG IN JJS CD NNS DT NN . Witnesses say police fired into a crowd late Tuesday in Dongzhou village , where at least 1,000 people were protesting inadequate compensation for land taken for the construction of a power plant . NNS VBP NN VBD IN DT NN JJ NNP IN NNP NN , WRB IN JJS CD NNS VBD VBG JJ NN IN NN VBN IN DT NN IN DT NN NN . Local residents are quoted by Reuters and the French News agency as saying Chinese authorities have surrounded the village and are not allowing them to leave . JJ NNS VBP VBN IN NNS CC DT NNP NNP NN IN VBG JJ NNS VBP VBN DT NN CC VBP RB VBG PRP TO VB . The deputy Asia Director for Amnesty International Catherine Baber has described the reports from Guangdong as ' chilling , ' and called for an immediate independent investigation . DT NN NNP NNP IN NNP NNP NNP NNP VBZ VBN DT NNS IN NNP IN `` VBG , `` CC VBD IN DT JJ JJ NN . The Chinese government has not commented on the matter . DT JJ NN VBZ RB VBN IN DT NN . The Arab League 's chief says the 22-member organization will soon open an office in Iraq . DT NNP NNP POS NN VBZ DT JJ NN MD RB VB DT NN IN NNP . Amr Moussa made the pledge during a joint news conference Thursday in Baghdad alongside Iraqi Prime Minister Ibrahim al-Jaafari . NNP NNP VBD DT NN IN DT JJ NN NN NNP IN NNP IN JJ NNP NNP NNP NNP . Mr. al-Jaafari echoed criticism of the League for not establishing a presence sooner in Iraq , saying he had hoped that the League would have had a ' greater role ' there earlier . NNP NNP VBD NN IN DT NNP IN RB VBG DT NN RBR IN NNP , VBG PRP VBD VBN IN DT NNP MD VB VBN DT `` JJR NN `` EX RBR . The two leaders met against a backdrop of new violence , with at least six Iraqis killed in attacks across the country . DT CD NNS VBD IN DT NN IN JJ NN , IN IN JJS CD NNS VBN IN NNS IN DT NN . Meanwhile , the Arab world 's media reacted with mixed emotions to the start Wednesday of former Iraqi dictator Saddam Hussein 's trial on charges of killing 143 of his countrymen . RB , DT JJ NN POS NNS VBD IN JJ NNS TO DT NN NNP IN JJ JJ NN NNP NNP POS NN IN NNS IN VBG CD IN PRP$ NNS . Some papers welcomed the trial , but others said it could fuel ethnic and sectarian tensions in Iraq . DT NNS VBD DT NN , CC NNS VBD PRP MD VB JJ CC JJ NNS IN NNP . Indonesia has begun withdrawing government forces from Aceh province , the first major step in a new peace agreement between the government and separatist rebels to end a three-decade conflict . NNP VBZ VBN VBG NN NNS IN NNP NN , DT JJ JJ NN IN DT JJ NN NN IN DT NN CC JJ NNS TO VB DT JJ NN . Military officials say more than 1,200 soldiers shipped out Monday as part of the peace deal signed last week in Finland . JJ NNS VBP JJR IN CD NNS VBN RP NNP IN NN IN DT NN NN VBN JJ NN IN NNP . The agreement is intended to end 29 years of bloodshed between the Indonesian government and Free Aceh Movement rebels costing 15,000 lives . DT NN VBZ VBN TO VB CD NNS IN NN IN DT JJ NN CC NNP NNP NNP NNS VBG CD NNS . The peace deal calls for Indonesia to pull out non-local army and police forces , and for rebels to demobilize . DT NN NN VBZ IN NNP TO VB RP JJ NN CC NN NNS , CC IN NNS TO VB . Indonesia will grant amnesty to rebels , except those jailed for common crimes . NNP MD VB JJ TO NNS , IN DT VBN IN JJ NNS . Aceh will be allowed to manage its own natural resources and keep 70 percent of revenues . NNP MD VB VBN TO VB PRP$ JJ JJ NNS CC VB CD NN IN NNS . The province will also be allowed to have local political representation . DT NN MD RB VB VBN TO VB JJ JJ NN . Iran 's President Mahmoud Ahmadinejad says his country will produce nuclear fuel on an industrial scale soon . NNP POS NNP NNP NNP VBZ PRP$ NN MD VB JJ NN IN DT JJ NN RB . Speaking in a provincial city Wednesday , Mr. Ahmadinejad did not specify when . VBG IN DT JJ NN NNP , NNP NNP VBD RB VB WRB . He said Tehran will not be intimidated by what he called bullying powers who want to deprive Iran of its nuclear ambitions . PRP VBD NNP MD RB VB VBN IN WP PRP VBD VBG NNS WP VBP TO VB NNP IN PRP$ JJ NNS . In December , the U.N. Security Council passed economic sanctions against Iran for its controversial nuclear enrichment program . IN NNP , DT NNP NNP NNP VBD JJ NNS IN NNP IN PRP$ JJ JJ NN NN . Since then , Mr. Ahmadinejad has called the UN sanctions ' invalid , ' insisting that Iran will continue its program . IN RB , NNP NNP VBZ VBN DT NNP NNS `` NN , `` VBG DT NNP MD VB PRP$ NN . Iran 's top nuclear negotiator said Tehran would begin working on installing 3,000 uranium-enriching centrifuges at a plant in Natanz . NNP POS JJ JJ NN VBD NNP MD VB VBG IN VBG CD JJ NNS IN DT NN IN NNP . The U.S. and its Western allies believe Iran is developing nuclear technology for weapons , a charge Tehran denies . DT NNP CC PRP$ JJ NNS VBP NNP VBZ VBG JJ NN IN NNS , DT NN NNP VBZ . Producing nuclear fuel that could be used in a power plant would be another step in mastering the nuclear fuel cycle . VBG JJ NN WDT MD VB VBN IN DT NN NN MD VB DT NN IN VBG DT JJ NN NN . Witnesses say at least 15 people have been killed in two days of ongoing clashes between rival Islamist groups in central Somalia . NNS VBP IN JJS CD NNS VBP VBN VBN IN CD NNS IN JJ NNS IN JJ NN NNS IN JJ NNP . Clashes in the town of Wabho mainly involved fighters from the al-Shabab group and its rival the , Ahlu Sunna Wajama . NNS IN DT NN IN NNP RB VBD NNS IN DT NNP NN CC PRP$ JJ DT , NNP NNP NNP . Residents say many civilians have been injured since the violence erupted Saturday . NNS VBP JJ NNS VBP VBN VBN IN DT NN VBD NNP . Reports say the pro-government Ahlu Sunna Wajama reportedly attacked the Shabab-held village . NNS VBP DT JJ NNP NNP NNP RB VBD DT JJ NN . The two sides have fought repeatedly for control over the region . DT CD NNS VBP VBN RB IN NN IN DT NN . Venezuela 's President Hugo Chavez is asking the National Assembly to grant him special powers over the country 's electrical and telecommunications industries . NNP POS NNP NNP NNP VBZ VBG DT NNP NNP TO VB PRP JJ NNS IN DT NN POS JJ CC NN NNS . In a televised speech , Mr. Chavez said he would nationalize some electricial companies and the country 's largest telecommunications company , CANTV . IN DT JJ NN , NNP NNP VBD PRP MD VB DT JJ NNS CC DT NN POS JJS NN NN , NNP . The leftist leader promised to take a more radical turn toward socialism after he was re-elected by a wide margin last month . DT JJ NN VBD TO VB DT RBR JJ NN IN NN IN PRP VBD VBN IN DT JJ NN JJ NN . He will begin a second six-year term as president on Wednesday . PRP MD VB DT JJ JJ NN IN NN IN NNP . Mr. Chavez has said he hopes to merge all the political parties supporting him into one party . NNP NNP VBZ VBN PRP VBZ TO VB PDT DT JJ NNS VBG PRP IN CD NN . He also wants to re-write the constitution . PRP RB VBZ TO VB DT NN . Another Bosnian Serb military figure accused of war crimes in the former Yugoslavia is surrendering to the U.N. tribunal in the Hague . DT JJ JJ JJ NN VBN IN NN NNS IN DT JJ NNP VBZ VBG TO DT NNP NN IN DT NNP . Gojko Jankovic , a former paramilitary leader who has been a fugitive for more than five years , turned himself in to Bosnian Serb authorities Sunday in the town of Banja Luka . NNP NNP , DT JJ JJ NN WP VBZ VBN DT JJ IN JJR IN CD NNS , VBD PRP IN TO JJ JJ NNS NNP IN DT NN IN NNP NNP . He is expected to be transferred to The Hague on Monday . PRP VBZ VBN TO VB VBN TO DT NNP IN NNP . The U.N. tribunal says that during the violence of the 1990s , soldiers under Mr. Jankovic 's command arrested a group of women in the town of Foca and brutally abused and raped them during interrogations . DT NNP NN VBZ IN IN DT NN IN DT NNS , NNS IN NNP NNP POS NN VBN DT NN IN NNS IN DT NN IN NNP CC RB VBD CC VBD PRP IN NNS . Mr. Jankovic is the sixth Bosnian Serb to surrender to the U.N. court in less than two months . NNP NNP VBZ DT JJ JJ JJ TO VB TO DT NNP NN IN JJR IN CD NNS . However , the two main targets of the long-running war-crimes prosecution - former Bosnian Serb leader Radovan Karadzic and his military commander , Ratko Mladic - remain at large . RB , DT CD JJ NNS IN DT JJ NNS NN IN JJ JJ JJ NN NNP NNP CC PRP$ JJ NN , NNP NNP : VBP IN JJ . The public memorial for the late United States Chief Justice William Rehnquist is under way at the Supreme Court building in Washington . DT JJ NN IN DT JJ NNP NNPS NNP NNP NNP NNP VBZ IN NN IN DT NNP NNP NN IN NNP . Mr. Rehnquist died of cancer Saturday at the age of 80 . NNP NNP VBD IN NN NNP IN DT NN IN CD . President Bush paid his respects to the late chief justice Tuesday , pausing for a moment of silence beside his flag-draped coffin in the Great Hall of the high court . NNP NNP VBD PRP$ NNS TO DT JJ NN NN NNP , VBG IN DT NN IN NN IN PRP$ JJ NN IN DT NNP NNP IN DT JJ NN . The public memorial continues until noon Wednesday , when he will be buried in a private ceremony at Arlington National Cemetery . DT JJ NN VBZ IN NN NNP , WRB PRP MD VB VBN IN DT JJ NN IN NNP NNP NNP . The conservative chief justice was first appointed to the nine-member court by President Nixon in 1972 . DT JJ NN NN VBD JJ VBN TO DT JJ NN IN NNP NNP IN CD . President Reagan appointed him chief justice 14 years later , in 1986 . NNP NNP VBD PRP JJ NN CD NNS RB , IN CD . U.S. Supreme Court justices are appointed for life-long terms . NNP NNP NNP NNS VBP VBN IN JJ NNS . President Bush has nominated federal appeals court judge John Roberts to be the next chief justice . NNP NNP VBZ VBN JJ NNS NN NN NNP NNP TO VB DT JJ NN NN . Senate confirmation hearings for Mr. Roberts are scheduled to begin Monday . NNP NN NNS IN NNP NNP VBP VBN TO VB NNP . U.S. Secretary of State Condoleezza Rice says the European Union and the United States disagree on whether to lift the embargo on arms sales to China . NNP NNP IN NNP NNP NNP VBZ DT NNP NNP CC DT NNP NNPS VBP IN IN TO VB DT NN IN NNS NNS TO NNP . In a television interview broadcast by the BBC on Sunday , Ms. Rice said lifting the ban could upset the military balance in East Asia , and called it a serious concern . IN DT NN NN VBN IN DT NNP IN NNP , NNP NNP VBD VBG DT NN MD VB DT JJ NN IN NNP NNP , CC VBD PRP DT JJ NN . She added that it could also send the wrong signal to China on human rights . PRP VBD IN PRP MD RB VB DT JJ NN TO NNP IN JJ NNS . The European Union is considering the resumption of weapons sales , but says China would have to respect human rights and regional stability . DT NNP NNP VBZ VBG DT NN IN NNS NNS , CC VBZ NNP MD VB TO VB JJ NNS CC JJ NN . Arms sales were banned in 1989 following China 's Tiananmen Square crackdown . NNS NNS VBD VBN IN CD VBG NNP POS NNP NNP NN . U.S. President George Bush is encouraging all Americans to vote in national elections Tuesday and prove to the world that self-government can endure . NNP NNP NNP NNP VBZ VBG DT NNS TO VB IN JJ NNS NNP CC VB TO DT NN IN NN MD VB . During his weekly radio address Saturday , Mr. Bush said U.S. elections serve as a model , especially to young democracies such at Georgia , Ukraine , Afghanistan and Iraq . IN PRP$ JJ NN NN NNP , NNP NNP VBD NNP NNS VBP IN DT NN , RB TO JJ NNS JJ IN NNP , NNP , NNP CC NNP . The president said Americans have demonstrated that for two centuries a free people have been able to choose their own leaders . DT NN VBD NNS VBP VBN IN IN CD NNS DT JJ NNS VBP VBN JJ TO VB PRP$ JJ NNS . He said the nation has flourished because of its commitment to trusting the wisdom of the people . PRP VBD DT NN VBZ VBN IN IN PRP$ NN TO VBG DT NN IN DT NNS . President Bush also called on voters to recall the sacrifices made by generations of Americans in uniform to preserve America 's way of life . NNP NNP RB VBD IN NNS TO VB DT NNS VBN IN NNS IN NNS IN NN TO VB NNP POS NN IN NN . The U.S. military in Iraq says it is releasing more than 400 Iraqi detainees , including five women prisoners . DT NNP NN IN NNP VBZ PRP VBZ VBG JJR IN CD JJ NNS , VBG CD NNS NNS . A military statement says the prisoners are being freed Thursday and Friday , after reviews of their cases determined there was no reason to keep holding them . DT JJ NN VBZ DT NNS VBP VBG VBN NNP CC NNP , IN NNS IN PRP$ NNS VBN EX VBD DT NN TO VB VBG PRP . Iraqi and U.S. officials have stressed the move has nothing to do with American journalist Jill Carroll , who was kidnapped earlier this month . JJ CC NNP NNS VBP VBN DT NN VBZ DT TO VB IN JJ NN NNP NNP , WP VBD VBN RBR DT NN . Her kidnappers threatened to kill her by last Friday unless all Iraqi women detainees were released . PRP$ NNS VBD TO VB PRP IN JJ NNP IN DT JJ NNS NNS VBD VBN . The deadline passed with no word on her fate . DT NN VBD IN DT NN IN PRP$ NN . Separately , the U.S. military says one American soldier was killed and another wounded in a roadside bomb blast south of Baghdad Wednesday . RB , DT NNP NN VBZ CD JJ NN VBD VBN CC DT VBN IN DT NN NN NN NN IN NNP NNP . A similar bomb blast north of the capital killed three Iraqi soldiers and wounded four others . DT JJ NN NN NN IN DT NN VBD CD JJ NNS CC VBD CD NNS . Greenland , the world 's largest island , is about 81 % ice capped . NNP , DT NN POS JJS NN , VBZ IN CD NN NN VBN . Vikings reached the island in the 10th century from Iceland ; Danish colonization began in the 18th century , and Greenland was made an integral part of Denmark in 1953 . NNS VBD DT NN IN DT JJ NN IN NNP ; JJ NN VBD IN DT JJ NN , CC NNP VBD VBN DT JJ NN IN NNP IN CD . It joined the European Community ( now the EU ) with Denmark in 1973 but withdrew in 1985 over a dispute centered on stringent fishing quotas . PRP VBD DT NNP NNP LRB RB DT NNP RRB IN NNP IN CD CC VBD IN CD IN DT NN VBN IN JJ NN NNS . Greenland was granted self-government in 1979 by the Danish parliament ; the law went into effect the following year . NNP VBD VBN NN IN CD IN DT JJ NN ; DT NN VBD IN NN DT JJ NN . Greenland voted in favor of increased self-rule in November 2008 and acquired greater responsibility for internal affairs in June 2009 . NNP VBD IN NN IN VBN NN IN NNP CD CC VBD JJR NN IN JJ NNS IN NNP CD . Denmark , however , continues to exercise control of Greenland 's foreign affairs , security , and financial policy in consultation with Greenland 's Home Rule Government . NNP , RB , VBZ TO VB NN IN NNP POS JJ NNS , NN , CC JJ NN IN NN IN NNP POS NNP NNP NNP . After almost four decades under US administration as the easternmost part of the UN Trust Territory of the Pacific Islands , the Marshall Islands attained independence in 1986 under a Compact of Free Association . IN RB CD NNS IN NNP NN IN DT JJ NN IN DT NNP NNP NNP IN DT NNP NNP , DT NNP NNP VBD NN IN CD IN DT NN IN NNP NNP . Compensation claims continue as a result of US nuclear testing on some of the atolls between 1947 and 1962 . NN NNS VBP IN DT NN IN NNP JJ NN IN DT IN DT NNS IN CD CC CD . The Marshall Islands hosts the US Army Kwajalein Atoll ( USAKA ) Reagan Missile Test Site , a key installation in the US missile defense network . DT NNP NNP VBZ DT NNP NNP NNP NNP LRB NNP RRB NNP NNP NNP NNP , DT JJ NN IN DT NNP NN NN NN . Rivalry between French and Italian interests in Tunisia culminated in a French invasion in 1881 and the creation of a protectorate . NN IN JJ CC JJ NNS IN NNP VBD IN DT JJ NN IN CD CC DT NN IN DT NN . Agitation for independence in the decades following World War I was finally successful in getting the French to recognize Tunisia as an independent state in 1956 . NN IN NN IN DT NNS VBG NNP NNP NNP VBD RB JJ IN VBG DT NNS TO VB NNP IN DT JJ NN IN CD . The country 's first president , Habib BOURGUIBA , established a strict one-party state . DT NN POS JJ NN , NNP NNP , VBD DT JJ JJ NN . He dominated the country for 31 years , repressing Islamic fundamentalism and establishing rights for women unmatched by any other Arab nation . PRP VBD DT NN IN CD NNS , VBG NNP NN CC VBG NNS IN NNS VBN IN DT JJ JJ NN . ================================================ FILE: P009StructureLearning/pos-hmm-hw-solution.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import numpy as np\n", "import math\n", "import time\n", "\n", "\n", "class HMM:\n", " '''\n", " Implement an HMM\n", " \n", " Use notation and formulae from Jurafsky--Martin \n", " (https://web.stanford.edu/~jurafsky/slp3/9.pdf)\n", " \n", " Assume the hidden states are from 1, 2, ..., to N. State 0 and \n", " State N+1 are reserved from the START and STOP state, which occur \n", " at exactly time 0 and time T+1 of a T long observation sequence.\n", " \n", " Assume observation values are from 1, 2, ..., to some max values \n", " M. Observation 0 and Observation M+1 are reserved and are seen\n", " at exactly time 0 and time T+1 of a T long observation sequence.\n", " '''\n", " \n", " def __init__(self, a, b):\n", " '''\n", " Initialize the HMM with given parameters\n", " \n", " Initialize any missing parameter with random probability\n", " values.\n", " \n", " \"a\", the transmission probabilities, is a (N+2) x (N+2) matrix \n", " such that a(i, j) is the \n", " probability of moving from hidden state i to hidden state j. \n", " Since one cannot move to State 0 from any state, Column 0 \n", " has 0 values. Similarly Row N+1 has 0 values.\n", " \n", " \"b\", the emission probabilities, is a (N+2) x (M+2) matrix such\n", " that b(i, j) is the probability of emitting output j in hidden\n", " state i. Since\n", " Output 0 is only emitted in State 0, Row 0 has a 1.0 in \n", " Column 0, and 0 values otherwise. Similarly, Row N+1 has\n", " a 1.0 in Column M+1 and 0 values otherwise.\n", " '''\n", " \n", " \n", " # Check input\n", " if (a.shape[0] != a.shape[1] or\n", " a.shape[0] != b.shape[0]):\n", " raise Exception(\"Improper a or b matrix shapes.\")\n", " \n", " # N is number of regular states \n", " self.N = a.shape[0] - 2\n", " # M is number of regular outputs\n", " self.M = b.shape[1] - 2\n", " \n", " self.a = a\n", " self.b = b\n", " \n", " # Useful macros\n", " self.START = 0 # start state\n", " self.FINISH = self.N+1 # finish state\n", " self.STATES = range(1, self.N+1) # set of regular states\n", " \n", " # placeholders\n", " self.O = [] # observation sequence\n", " self.T = 0 # number of observations\n", " self.alpha_table = None\n", " self.beta_table = None\n", " self.viterbi_table = None\n", " self.viterbi_bpointers = None\n", " \n", " def print(self):\n", " print(f\"N {self.N} M {self.M} T {self.T}\")\n", " print(\"Transmission probabilities 'a'\")\n", " print(self.a)\n", " print(\"Emission probabilities 'b'\")\n", " print(self.b)\n", " \n", " def set_a_b(self, a, b):\n", " \n", " if (a.shape[0] != a.shape[1] or a.shape[0] != b.shape[0] or\n", " a.shape[0] != self.N+2 or b.shape[1] != self.M+2):\n", " raise Exception('Incompatible a, b shapes')\n", " \n", " self.a = a\n", " self.b = b\n", " self.reset_alpha_beta_tables()\n", " \n", " def reset_alpha_beta_tables(self):\n", " \n", " # intialize alpha values to save recursive calls\n", " self.alpha_table = np.array(\n", " [[-1.0] * (self.N+2)] * (self.T+2))\n", " self.alpha_table[self.T+1, :self.N+1] = 0.0\n", " self.alpha_table[0, 0] = 1.0\n", " self.alpha_table[0, 1:] = 0.0\n", " \n", " # initialize beta values\n", " self.beta_table = np.array(\n", " [[-1.0] * (self.N+2)] * (self.T+1)) \n", " # Recall beta(T+1, i) is not defined.\n", " \n", " def set_observations(self, O):\n", " '''\n", " Set the observation sequence\n", " \n", " Assume the first observation is 0 and the last M+1, and\n", " the rest are in [1,...,M]. \n", " '''\n", " \n", " # Check that observations are valid\n", " if (not set(O[1:-1]).issubset(set(range(1, self.M+1))) or\n", " O[0] != 0 or O[-1] != self.M+1):\n", " print(O)\n", " raise Exception(\"Invalid observation sequence.\")\n", " self.O = O\n", " self.T = len(O)-2\n", " self.reset_alpha_beta_tables()\n", " \n", " \n", " def forward(self):\n", " '''Fill alpha_table, i.e., alpha_t(j)'s'''\n", " \n", " # This should be called after set_observation, \n", " # else self.T == 0.\n", " \n", " if (self.T == 0):\n", " raise Exception(\"Premature call to alpha().\")\n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # Please follow the algorithm as described in \n", " # https://web.stanford.edu/~jurafsky/slp3/9.pdf\n", " # from 9.15 to 9.17\n", " # First fill for t = 0\n", " # Fill remaining values \"recursively\"\n", " \n", " self.alpha_table[0, self.START] = 1.0\n", "# for j in range(1, self.N+1):\n", "# self.alpha_table[0, j] = 0.0\n", " self.alpha_table[0, 1:self.N+1] = 0.0\n", " \n", " # Fill remaining values \"recursively\"\n", " for t in range(1, self.T+2):\n", "# for j in range(self.N+2):\n", "# self.alpha_table[t, j] = sum(\n", "# [self.alpha_table[t-1, i] * self.a[i, j] \n", "# for i in range(self.N+2)]\n", "# ) * self.b[j, self.O[t]]\n", " self.alpha_table[t, :self.N+2] = np.matmul(\n", " self.alpha_table[t-1, :], self.a[:, :self.N+2]) * self.b[:self.N+2, self.O[t]]\n", " \n", " \n", " def viterbi(self, t, j):\n", " \n", " if (self.T==0 or t < 1 or t > self.T+1 or j < 0 or\n", " j > self.N + 1 or \n", " (t == self.T+1 and j != self.FINISH)):\n", " raise Exception(\"Invalid call to viterbi().\")\n", " \n", " # Check if value already available\n", " rv = self.viterbi_table[t, j]\n", " if rv <= -1:\n", " if t == 1:\n", " rv = self.a[self.START, j] * self.b[j, self.O[1]]\n", " self.viterbi_bpointers[t, j] = self.START\n", " else:\n", " if t == self.T+1:\n", " possibles = [(self.viterbi(t-1, i) * \n", " self.a[i,j] , i) \n", " for i in self.STATES]\n", " else: \n", " possibles = [(self.viterbi(t-1, i) * \n", " self.a[i,j] * self.b[j, self.O[t]],\n", " i)\n", " for i in self.STATES]\n", " \n", " rv, max_i = max(possibles, key=lambda tup: tup[0])\n", " self.viterbi_bpointers[t, j] = max_i\n", " self.viterbi_table[t, j] = rv\n", " return rv\n", " \n", " def decode(self, O=None):\n", " '''Return the most likely hidden state sequenence\n", " for observation sequence obs based \n", " on self.a and self.b, and its probability.\n", " O is the observations'''\n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # Your code should implement the VITERBI function\n", " # in Figure 9.11 on Jurafsky-Martin \n", " # https://web.stanford.edu/~jurafsky/slp3/9.pdf.\n", " # In particular you should store probabilities in\n", " # a table and store backpointers in another table.\n", " # You need to construct the best hidden state sequence\n", " # using the backpointers and return it along with its\n", " # probability. For this you will need to use self.a\n", " # and self.b, and values self.T, but you don't need to\n", " # use the alpha or beta tables.\n", " \n", " if O is not None:\n", " self.set_observations(O)\n", " self.viterbi_table = np.ones((self.T+2, self.N+2)) * -1.0\n", " self.viterbi_bpointers = np.ones((self.T+2, self.N+2),\n", " dtype = int) * -1\n", " \n", " p = self.viterbi(self.T+1, self.FINISH)\n", " bp_sequence = [self.FINISH]\n", " j = self.FINISH\n", " for t in range(self.T+1,0,-1):\n", " j = self.viterbi_bpointers[t, j]\n", " bp_sequence.append(j)\n", " return (list(reversed(bp_sequence)), p)\n", " \n", " def backward(self):\n", " '''Fill beta_table, i.e., beta_t(i)'s'''\n", " \n", " # Unlike alpha we don't define beta(T+1, i).\n", " # This should be called after set_observation, \n", " # else self.T == 0.\n", " \n", " if (self.T == 0):\n", " raise Exception(\"Premature call to beta()\")\n", " \n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # Please follow the algorithm as described in \n", " # https://web.stanford.edu/~jurafsky/slp3/9.pdf\n", " # from 9.27 to 9.30\n", " # First fill for t = T\n", " # Fill for t=T-1 to 1 \"recursively\"\n", " # Fill in for t = 0 and i = START\n", " \n", " # First fill for t = T\n", " for i in range(1, self.N+1):\n", " self.beta_table[self.T, i] = self.a[i, self.FINISH]\n", " \n", " # Fill for t=1 to T-1 \"recursively\"\n", " for t in range(self.T-1, 0, -1):\n", "# for i in range(1, self.N+1):\n", "# self.beta_table[t, i] = sum(\n", "# [self.a[i, j] * self.b[j, self.O[t+1]] * \n", "# self.beta_table[t+1, j] for j in self.STATES])\n", " for i in range(1, self.N+1):\n", " self.beta_table[t, i] = np.sum(\n", " self.a[i, 1:self.N+1] * self.b[1:self.N+1, self.O[t+1]] * \n", " self.beta_table[t+1, 1:self.N+1])\n", " \n", " # Fill in for t = 0 and i = START\n", "# self.beta_table[0, self.START] = sum(\n", "# [self.a[self.START, j] * self.b[j, self.O[1]] * \n", "# self.beta_table[1, j] for j in self.STATES])\n", " self.beta_table[0, self.START] = np.sum(\n", " self.a[self.START, 1:self.N+1] * self.b[1:self.N+1, self.O[1]] * \n", " self.beta_table[1, 1:self.N+1])\n", " \n", " \n", " \n", " def xi(self, t, i, j):\n", " '''\n", " Return xi_t(i, j)\n", " ''' \n", "\n", " # The basic formula works for t=0 as well. For t=T we need\n", " # a special case because beta(t+1, j) is not defined for all j.\n", " \n", " if self.alpha_table[self.T+1, self.FINISH] <= 0.0:\n", " raise Exception(\"Impossible observation sequence\")\n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # Please follow formula 9.37 in \n", " # https://web.stanford.edu/~jurafsky/slp3/9.pdf\n", " # to compute the value of xi. \n", " # You may need to take care of some corner cases carefully. \n", " \n", " if t >= 0 and t < self.T:\n", " rv = (self.alpha_table[t, i] * self.a[i, j] * \n", " self.b[j, self.O[t+1]] * self.beta_table[t+1, j]\n", " )/ self.alpha_table[self.T+1, self.FINISH] \n", " elif t == self.T: # non-zero only for j == FINISH\n", " if j != self.FINISH:\n", " rv = 0.0\n", " else:\n", " rv = (self.alpha_table[t, i] * self.a[i, j] / \n", " self.alpha_table[self.T+1, self.FINISH])\n", " else:\n", " raise Exception(\"Invalid call to xi().\")\n", " \n", " return rv\n", " \n", " def gamma(self, t, j):\n", " '''\n", " Return gamma_t(j)\n", " ''' \n", " \n", " rv = 0\n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # Your code should compute gamma_t(j) as specified\n", " # in Figure 9.16 of Jurafsky-Martin \n", " # https://web.stanford.edu/~jurafsky/slp3/9.pdf. \n", " # For this you wil need to use self.alpha_table, \n", " # self.beta_table, self.T, and values such as self.START\n", " # (the number corresponding to start state, set at 0),\n", " # and self.FINISH (the number corresponding to the\n", " # the end state, set at self.N+1).\n", " \n", " if self.alpha_table[self.T+1, self.FINISH] <= 0.0:\n", " raise Exception(\"Impossible observation sequence\")\n", " \n", " if t >0 and t < self.T+1:\n", " rv = (self.alpha_table[t, j] * self.beta_table[t, j] / \n", " self.alpha_table[self.T+1, self.FINISH])\n", " elif t == 0:\n", " if j == self.START:\n", " rv = 1.0\n", " else:\n", " rv = 0.0\n", " elif t == self.T+1:\n", " if j == self.FINISH:\n", " rv = 1.0\n", " else:\n", " rv = 0.0\n", " else:\n", " raise Exception(\"Invalid call to gamma()\")\n", " \n", " return rv\n", "\n", " def a_from_xi(self, i, j, rtype='ratio'):\n", " '''\n", " Return new a_{ij} computed from xi\n", " rtype: we define two return types, \"ratio\" or \"separate\", \n", " the separate return type will be used in later functions. \n", " '''\n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # Your code should compute a(hat) as described\n", " # in Figure 9.16 of Jurafsky-Martin \n", " # https://web.stanford.edu/~jurafsky/slp3/9.pdf. \n", " \n", " if j == self.START or i == self.FINISH:\n", " numerator = 0.0\n", " denominator = 1.0\n", " else:\n", " numerator = sum([self.xi(t, i, j) for t in \n", " range(0, self.T+1)])\n", " \n", " # Denominator in Jurafsky-Martin can be improved. \n", " #denominator = sum([self.xi(t, i, k) for t in \n", " # range(0, self.T+1) for k in \n", " # range(self.N+2)])\n", " denominator = sum([self.gamma(t, i) for t in\n", " range(self.T+1)])\n", "\n", " if rtype == 'separate':\n", " rv = (numerator, denominator)\n", " elif math.isclose(denominator, 0.0):\n", " print(\"Divide by zero in i={} j={}\".format(i, j))\n", " rv = np.nan\n", " else:\n", " rv = numerator/denominator\n", " return rv\n", " \n", " return rv\n", " \n", " def b_from_gamma(self, j, v, rtype='ratio'):\n", " '''\n", " Return new b_{ij} computed from xi\n", " rtype: we define two return types, \"ratio\" or \"separate\", \n", " the separate return type will be used in later functions. \n", " '''\n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # Your code should compute b(hat) as described\n", " # in Figure 9.16 of Jurafsky-Martin \n", " # https://web.stanford.edu/~jurafsky/slp3/9.pdf. \n", " \n", " numerator = sum([self.gamma(t, j) for t in \n", " range(0, self.T+2) if self.O[t] == v])\n", " denominator = sum([self.gamma(t, j) for t in \n", " range(0, self.T+2)])\n", "\n", " if rtype == 'separate':\n", " rv = (numerator, denominator) \n", " elif math.isclose(denominator, 0.0):\n", " print(\"Divide by zero in j={}, v={}\".format(j, v))\n", " rv = np.nan\n", " else:\n", " rv = numerator/denominator\n", " return rv\n", " \n", " def new_a(self):\n", " rv = np.array([[-1.0] * (self.N+2)] * (self.N+2))\n", " for i in range(self.N+2):\n", " for j in range(self.N+2):\n", " rv[i,j] = self.a_from_xi(i, j)\n", " return rv\n", " \n", " def new_b(self):\n", " rv = np.array([[-1.0] * (self.M+2)] * (self.N+2))\n", " for j in range(self.N+2):\n", " for v in range(self.M+2):\n", " rv[j,v] = self.b_from_gamma(j,v)\n", " return rv\n", " \n", " def fit(self, O, max_iter=10, verbose=False):\n", " '''\n", " Run the forward-backward algorithm for a single observation\n", " '''\n", " \n", " self.set_observations(O)\n", " converged = False\n", " i = 0\n", " while not converged and i < max_iter:\n", " i += 1\n", " \n", " self.forward()\n", " self.backward()\n", " \n", " new_a = self.new_a()\n", " new_b = self.new_b()\n", " \n", " if verbose:\n", " print(f'Iteration {i}')\n", " print(new_b.T)\n", " print(new_a.T)\n", " \n", " if (np.allclose(new_a, self.a) and\n", " np.allclose(new_b, self.b)):\n", " converged = True\n", " else:\n", " self.set_a_b(new_a, new_b)\n", " return(i)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "# A toy example for testing your code, based on Jason Eisner's\n", "# Workbook\n", "\n", "transmission_prob = np.array([\n", " [0. , 0.5, 0.5, 0. ],\n", " [0. , 0.8, 0.1, 0.1],\n", " [0. , 0.2, 0.7, 0.1],\n", " [0. , 0. , 0. , 0. ]])\n", "\n", "emission_prob = np.array([\n", " [1. , 0. , 0. , 0. , 0. ],\n", " [0. , 0.7, 0.2, 0.1, 0. ],\n", " [0. , 0. , 0.3, 0.7, 0. ],\n", " [0. , 0. , 0. , 0. , 1. ]])\n", "\n", "observation_short = [\n", " 0,\n", " 2, 3, 3, 2,\n", " 4\n", "]\n", "\n", "T_observation_short = len(observation_short) -2\n", "\n", "observation_long = [\n", " 0,\n", " 2, 3, 3, 2,\n", " 3, 2, 3, 2,\n", " 2, 3, 1, 3,\n", " 3, 1, 1, 1,\n", " 2, 1, 1, 1,\n", " 3, 1, 2, 1,\n", " 1, 1, 2, 3,\n", " 3, 2, 3, 2, \n", " 2,\n", " 4\n", "]\n", "\n", "T_observation_long = len(observation_long)-2" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "hmms = HMM(transmission_prob, emission_prob)\n", "hmms.set_observations(observation_short)\n", "hmms.forward()\n", "expected_alpha = np.array(\n", " [[1. , 0. , 0. , 0. ],\n", " [0. , 0.1 , 0.15 , 0. ],\n", " [0. , 0.011 , 0.0805 , 0. ],\n", " [0. , 0.00249 , 0.040215 , 0. ],\n", " [0. , 0.002007 , 0.00851985, 0. ],\n", " [0. , 0. , 0. , 0.00105268]])\n", "\n", "assert np.allclose(hmms.alpha_table, expected_alpha)\n", "\n", "hmms.backward()\n", "expected_beta = np.array([\n", " [ 0.00105268, -1. , -1. , -1. ],\n", " [-1. , 0.0011457 , 0.0062541 , -1. ],\n", " [-1. , 0.00327 , 0.01263 , -1. ],\n", " [-1. , 0.019 , 0.025 , -1. ],\n", " [-1. , 0.1 , 0.1 , -1. ]])\n", "assert np.allclose(hmms.beta_table, expected_beta)\n", "\n", "expected_decode = ([0, 2, 2, 2, 2, 3], 0.0007563149999999998)\n", "assert hmms.decode(hmms.O) == expected_decode" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "hmml = HMM(transmission_prob, emission_prob)\n", "hmml.fit(observation_long, max_iter = 20)\n", "expected_a = np.array([\n", " [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\n", " [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\n", " [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\n", " [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\n", "expected_b = np.array([\n", " [1. , 0. , 0. , 0. , 0. ],\n", " [0. , 0.64048263, 0.14806965, 0.21144771, 0. ],\n", " [0. , 0. , 0.53439047, 0.46560953, 0. ],\n", " [0. , 0. , 0. , 0. , 1. ]])\n", "assert np.allclose(hmml.a, expected_a)\n", "assert np.allclose(hmml.b, expected_b)\n", "\n", "expected_decode_result = ([0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, \n", " 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, \n", " 2, 2, 2, 2, 2, 2, 3],\n", " 1.4779964597903278e-16)\n", "assert np.allclose(hmml.decode(hmml.O)[0], expected_decode_result[0])\n", "assert np.isclose(hmml.decode(hmml.O)[1], expected_decode_result[1])" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "class HMMMulti(HMM):\n", " '''\n", " Run the forward-backward algorithm for multiple independent observations\n", " \n", " Follow the description in Sec 4.1 of \"Training Hidden Markov Models with \n", " Multiple Observations – A Combinatorial Method\" by Li, Parizeau, \n", " and Plamondon, available at \n", " http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.335.1457&rep=rep1&type=pdf\n", " ''' \n", " \n", " def update_new_a_num_deno(self):\n", " for i in range(self.N+2):\n", " for j in range(self.N+2):\n", " (num, deno) = self.a_from_xi(i, j, 'separate')\n", " self.new_a_num[i,j] += num\n", " self.new_a_deno[i,j] += deno\n", " \n", " def update_new_b_num_deno(self):\n", " for j in range(self.N+2):\n", " for v in range(self.M+2):\n", " (num, deno) = self.b_from_gamma(j, v, 'separate')\n", " self.new_b_num[j, v] += num\n", " self.new_b_deno[j, v] += deno\n", " \n", " def get_likelihoods(self):\n", " '''Get the likelihood at each iteration of\n", " the fit/learning step.\n", " \n", " Assume this is called only after a call to fit().'''\n", " \n", " ##################################################\n", " # WRITE YOUR CODE HERE ###########################\n", " ##################################################\n", " # You have to write code here, and make changes in \n", " # other parts of this \n", " # class as well to store the likelihoods of the \n", " # entire set of observations Oset used in fit,\n", " # at each step of the fit process, and return them\n", " # when this function is called.\n", " \n", " prob = 0 # in log space\n", " self.forward()\n", " prob += np.log(self.alpha_table[\n", " self.T+1, self.FINISH])\n", " return np.exp(prob)\n", "\n", "\n", "\n", " def fit(self, Oset, max_iter=10, verbose=False):\n", " \n", " self.new_a_num = np.array([[0.0] * (self.N+2)] * (self.N+2))\n", " self.new_a_deno = np.array([[0.0] * (self.N+2)] * (self.N+2))\n", " self.new_b_num = np.array([[0.0] * (self.M+2)] * (self.N+2))\n", " self.new_b_deno = np.array([[0.0] * (self.M+2)] * (self.N+2))\n", "\n", " \n", " converged = False\n", " i = 0\n", " \n", " while not converged and i < max_iter:\n", " i += 1\n", " \n", " for O in Oset:\n", " self.set_observations(O)\n", " \n", " self.forward()\n", " self.backward()\n", " \n", " \n", " \n", " self.update_new_a_num_deno()\n", " self.update_new_b_num_deno()\n", " \n", " new_a = self.new_a_num / self.new_a_deno\n", " new_b = self.new_b_num / self.new_b_deno\n", " \n", " if verbose:\n", " print(f'Iteration {i}')\n", " print(new_b.T)\n", " print(new_a.T)\n", " else:\n", " print(f'Iteration {i}')\n", " \n", " if (np.allclose(new_a, self.a) and\n", " np.allclose(new_b, self.b)):\n", " converged = True\n", " else:\n", " self.set_a_b(new_a, new_b)\n", " self.new_a_num.fill(0)\n", " self.new_a_deno.fill(0)\n", " self.new_b_num.fill(0)\n", " self.new_b_deno.fill(0)\n", " \n", " \n", " return(i)\n", " " ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "hmmml = HMMMulti(transmission_prob, emission_prob)\n", "hmmml.fit([observation_long]*5, max_iter = 20)\n", "expected_a = np.array([\n", " [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\n", " [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\n", " [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\n", " [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\n", "expected_b = np.array([\n", " [1. , 0. , 0. , 0. , 0. ],\n", " [0. , 0.64048263, 0.14806965, 0.21144771, 0. ],\n", " [0. , 0. , 0.53439047, 0.46560953, 0. ],\n", " [0. , 0. , 0. , 0. , 1. ]])\n", "assert np.allclose(hmml.a, expected_a)\n", "assert np.allclose(hmml.b, expected_b)\n", "expected_likelihoods = [8.463524947168683e-21, 6.45760751286262e-19,\n", " 2.604423720662633e-18, 3.772405535111533e-18,\n", " 3.934445572171057e-18, 3.945375545182965e-18,\n", " 3.9459945227193204e-18, 3.946030509476693e-18,\n", " 3.946032758826868e-18, 3.946032909436204e-18,\n", " 3.94603292005471e-18]\n", "assert np.allclose(hmmml.get_likelihoods(), expected_likelihoods)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import nltk\n", "from nltk.corpus import brown" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "class POS:\n", " '''\n", " Partition given sentences, or those obtained from the brown\n", " corpus, equally into fit sentences and test sentences.\n", " For each obtain tags using nltk tagger. Initialize \"a\"\n", " with the tags from all sentences, but with uniform\n", " transition probabilities. Initialize \"b\" with all words\n", " in all sentences. But the emission probability \n", " initialization should only use the words in fit sentences.\n", " For each word in the fit sentence, give its most common\n", " tag \"high\" probability of emitting it. All other words\n", " get a \"low\" probability of being emitted by a tag. (The\n", " high and low values are different for each tag because of\n", " normalization.)\n", " '''\n", " \n", " def __init__(self, sents=None, category=None, \n", " num_sents=40,\n", " b_bound = 1*10**(-4), \n", " tagset=\"universal\"):\n", " \n", " if sents is None:\n", " self.sents = brown.sents(categories=category)[:num_sents]\n", " self.tagged_sents = brown.tagged_sents(\n", " categories=category, tagset=tagset)[:num_sents]\n", " else:\n", " self.sents = [nltk.word_tokenize(s) for s in sents]\n", " self.tagged_sents = [nltk.pos_tag(s, tagset = tagset)\n", " for s in self.sents]\n", " \n", " self.fsize = int(len(self.sents) * 0.5)\n", " self.fit_tsents = self.tagged_sents[:self.fsize]\n", " self.test_tsents = self.tagged_sents[self.fsize:]\n", " tagged_words = [tup for s in self.tagged_sents[:self.fsize] \n", " for tup in s]\n", " \n", " self.vocabulary = (['_SWORD'] + # Special observation in STAG\n", " sorted(list(set([w.lower() for \n", " s in self.sents for w in s]))) +\n", " ['_FWORD']) # Special observation in FTAG\n", " self.M = len(self.vocabulary) # Number of distinct observations\n", " \n", " print(f'Vocabulary size {self.M}')\n", " \n", " self.tags = (['STAG'] + # Special start state\n", " sorted(list(set([p[1] for s in self.tagged_sents \n", " for p in s]))) + \n", " ['FTAG']) # Special end state\n", " self.N = len(self.tags) # Number of states\n", " \n", " self.w2i = dict(zip(self.vocabulary, \n", " range(len(self.vocabulary))))\n", " self.t2i = dict(zip(self.tags, range(len(self.tags))))\n", " \n", " # Initialize a (transition probabilities)\n", " #self.a = np.random.rand(self.N, self.N)\n", " self.a = np.ones((self.N, self.N))\n", " self.a[:,0] = 0.0\n", " self.a = self.a/(self.a.sum(axis=1).reshape(\n", " self.a.shape[0],1))\n", " self.a[-1,:] = 0.0\n", " \n", " cfd = nltk.ConditionalFreqDist((word.lower(), tag) for \n", " (word, tag)\n", " in tagged_words)\n", " \n", " # Initialize b (emission probabilities)\n", " #self.b = np.random.rand(self.N, self.M)*b_random_bound\n", " self.b = np.ones((self.N, self.M))*b_bound\n", " # STAG only produces _SWORD and FTAG only produces _FWORD\n", " self.b[0,:] = 0.0\n", " self.b[:,0] = 0.0\n", " self.b[0,0] = 1.0\n", " self.b[-1,:] = 0.0\n", " self.b[:,-1] = 0.0\n", " self.b[-1, -1] = 1.0\n", " # Set non-trivial probability of a word being produced\n", " # by its most common tag\n", " for word in cfd.conditions():\n", " tag = (cfd[word].most_common(1)[0][0])\n", " self.setb(tag, word, 0.5)\n", " self.b = self.b/(self.b.sum(axis=1).reshape(self.N,1))\n", " \n", " # Initialize an HMM on oset with a, b\n", " self.hmm = HMMMulti(self.a.copy(), self.b.copy())\n", " \n", " def create_oset(self):\n", " \n", " self.oset = []\n", " for ts in self.tagged_sents:\n", " s, _ = split_tagged_sent(ts)\n", " self.oset.append(self.s2o(s))\n", " \n", " def fit(self, max_iter=10):\n", " \n", " # Create oset\n", " self.create_oset()\n", " \n", " # Fit the hmm \n", " self.hmm.fit(self.oset, max_iter=max_iter)\n", " \n", " def test(self):\n", " \n", " for descrip, ts_set in [(\"fit set\", self.fit_tsents), \n", " (\"test set\", self.test_tsents)]: \n", " correct = 0\n", " sum_accuracy = 0\n", " for ts in ts_set:\n", " s, tag_seq = split_tagged_sent(ts)\n", " predicted, _ = self.decode(s)\n", " a = accuracy(tag_seq, predicted)\n", " if a == 1.0:\n", " correct += 1\n", " sum_accuracy += a\n", " avg_accuracy = sum_accuracy/len(ts_set)\n", " correct_ratio = correct/len(ts_set)\n", " print(f\"For {descrip}: Average accuracy = \"\n", " f\"{avg_accuracy:.3f},\" \n", " f\" Totally correct ratio = \" \n", " f\"{correct_ratio:.3f}\")\n", " \n", " def decode(self, sentence):\n", " if sentence[0] != 0: # Weak check if converted\n", " O = self.s2o(sentence)\n", " else:\n", " O = sentence.copy()\n", " state_seq, prob = self.hmm.decode(O)\n", " tag_seq = [self.tags[s] for s in state_seq]\n", " return (tag_seq, prob)\n", " \n", " def setb(self, j, w, p):\n", " self.b[self.t2i[j], self.w2i[w]] = p\n", " def getb(self, j, w, b=None):\n", " if b is None:\n", " b = self.b\n", " return b[self.t2i[j], self.w2i[w]]\n", " def seta(self, i, j, p):\n", " self.a[self.t2i[i], self.t2i[j]] = p\n", " def geta(self, i, j, a=None):\n", " if a is None:\n", " a = self.a\n", " return a[self.t2i[i], self.t2i[j]]\n", " def s2o(self, sentence):\n", " return([0] + \n", " [self.w2i[w.lower()] for w in sentence] + \n", " [self.w2i['_FWORD']])\n", " def i2t(self, state_sequence):\n", " return [self.tags[i] for i in state_sequence][1:-1]\n", " \n", " def print_b_unsorted(self, b=None):\n", " if b is None:\n", " b = self.b\n", " for t in self.tags:\n", " print(f'\\n\\n{t}', end='')\n", " for w in self.vocabulary:\n", " p = self.getb(t, w, b)\n", " if p > 10**(-5):\n", " print(f' {w}[{p:.5f}]', end='')\n", " \n", " def print_a_unsorted(self, a=None):\n", " if a is None:\n", " a = self.a\n", " for t in self.tags:\n", " print(f'\\n\\n{t}', end='')\n", " for u in self.tags:\n", " p = self.geta(t, u, a)\n", " print(f' {u}[{p:.5f}]', end='')\n", " \n", " def print_b(self, b=None):\n", " if b is None:\n", " b = self.b\n", " for t in self.tags:\n", " ptups = zip(b[self.t2i[t],:],self.vocabulary)\n", " ptups = sorted(ptups, key = lambda tup: tup[0],\n", " reverse = True) \n", " print(f'\\n\\n{t}', end='')\n", " for tup in ptups:\n", " print(f' {tup[1]}[{tup[0]}]', end='')\n", " \n", " def print_a(self, a=None):\n", " if a is None:\n", " a = self.a\n", " for t in self.tags:\n", " ptups = zip(a[self.t2i[t],:],self.tags)\n", " ptups = sorted(ptups, key = lambda tup: tup[0],\n", " reverse = True) \n", " print(f'\\n\\n{t}', end='')\n", " for tup in ptups:\n", " print(f' {tup[1]}[{tup[0]}]', end='')\n", " \n", " def create_tagged_sent(self, sentence, tags):\n", " if sentence[0] != '_SWORD':\n", " s = (['_SWORD'] + \n", " [w.lower() for w in sentence] + \n", " ['_FWORD'])\n", " else:\n", " s = sentence\n", " return list(zip(s, tags))\n", " \n", " def check_sent(self, sentence_number):\n", " n = sentence_number\n", " s = self.sents[n]\n", " tag_seq = [tag for (word, tag) in \n", " self.tagged_sents[n]]\n", " predicted_tag_seq = self.decode(s)[0][1:-1]\n", " return list(zip(s, tag_seq, predicted_tag_seq))\n", "\n", "def split_tagged_sent(tagged_sent):\n", " return list(zip(*tagged_sent))\n", "\n", "def accuracy(tag_seq, predicted_tag_seq):\n", " if predicted_tag_seq[0] == 'STAG':\n", " p = predicted_tag_seq[1:-1]\n", " else:\n", " p = predicted_tag_seq\n", " return (sum(t == pt for (t, pt) in zip(tag_seq, p))/\n", " len(tag_seq))\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "sents_example_1 = [\n", " \"Janet will back the bill.\",\n", " \"Richard will eat an apple.\",\n", " \"Mary will run a mile.\",\n", " \"Sam will write an essay.\",\n", "]\n", "\n", "start = time.time()\n", "pos = POS(sents_example_1)\n", "pos.fit(100)\n", "pos.test()\n", "pos.print_a(pos.hmm.a)\n", "pos.print_b(pos.hmm.b)\n", "finish = time.time()\n", "elapsed = finish - start\n", "print(\"time elapsed: \", elapsed)\n", "\n", "############################################################\n", "# PLEASE ANSWER THE FOLLOWING: ############################\n", "############################################################\n", "# Did the HMM based POS tagger learn a correct POS\n", "# tagging model? If not, what might be the cause?" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "sents_example_2 = [\n", " \"Janet will back the bill.\",\n", " \"Janet likes music.\",\n", " \"Richard will eat an apple.\",\n", " \"Peter needs rest.\",\n", " \"Mary will run a mile.\",\n", " \"Joe hates TV.\",\n", " \"Sam will write an essay.\",\n", " \"Ramona loves cooking.\",\n", "]\n", "\n", "start = time.time()\n", "pos = POS(sents_example_2)\n", "pos.fit(100)\n", "pos.test()\n", "pos.print_a(pos.hmm.a)\n", "pos.print_b(pos.hmm.b)\n", "finish = time.time()\n", "elapsed = finish - start\n", "print(\"time elapsed: \", elapsed)\n", "\n", "############################################################\n", "# PLEASE ANSWER THE FOLLOWING: ############################\n", "############################################################\n", "# Did the HMM based POS tagger learn a correct POS\n", "# tagging model? If not, what might be the cause?" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "from nltk import sent_tokenize\n", "\n", "with open(\"dev.txt\", \"r\") as fin:\n", " text = fin.read()\n", " \n", "sents_example_3 = sent_tokenize(text)\n", "\n", "start = time.time()\n", "pos = POS(sents_example_3)\n", "pos.fit(100)\n", "pos.test()\n", "pos.print_a(pos.hmm.a)\n", "pos.print_b(pos.hmm.b)\n", "finish = time.time()\n", "elapsed = finish - start\n", "print(\"time elapsed: \", elapsed)\n", "\n", "############################################################\n", "# PLEASE ANSWER THE FOLLOWING: ############################\n", "############################################################\n", "# Did the HMM based POS tagger learn a correct POS\n", "# tagging model? If not, what might be the cause?" ] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 1 } ================================================ FILE: P009StructureLearning/pos-hmm-hw.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import math\n", "%matplotlib inline\n", "\n", "class HMM:\n", " '''\n", " 实现一个HMM\n", " \n", " 我们使用Jurafsky--Martin中的公式\n", " (https://web.stanford.edu/~jurafsky/slp3/9.pdf)\n", " \n", " 假设我们有N个隐藏状态,1,2,...,N。隐藏状态0和N+1是START和STOP状态,\n", " 只有在开头和结束的时候出现。\n", " \n", " 假设我们有M个观测状态,1,2,...,M。观察状态0和M+1是为了开头和结束保留的。\n", " '''\n", " \n", " def __init__(self, a, b):\n", " '''\n", " 初始化HMM参数\n", " \n", " 用一些随机数来初始化模型参数。\n", " \n", " \"a\", 状态转移概率矩阵,是一个 (N+2) x (N+2)的矩阵。\n", " a(i, j)代表从隐状态i转变到隐状态j的概率。\n", " 由于我们不能从任何状态回到状态0,所以a的第一列全部为0。\n", " 同理,第N+1行也全部为0。\n", " \n", " \"b\", 观测生成概率矩阵,是一个(N+2) x (M+2)的矩阵。\n", " b(i, j)代表从隐状态i生成观测状态j的概率。\n", " 由于观测状态0只会从隐状态0中产生,第一行只有第一列为1.0,\n", " 其余都为0。同理,第N+1行只有第M+1列为1.0,其余都是0。\n", " '''\n", " \n", " \n", " # Check input\n", " if (a.shape[0] != a.shape[1] or\n", " a.shape[0] != b.shape[0]):\n", " raise Exception(\"Improper a or b matrix shapes.\")\n", " \n", " # N is number of regular states \n", " self.N = a.shape[0] - 2\n", " # M is number of regular outputs\n", " self.M = b.shape[1] - 2\n", " \n", " self.a = a\n", " self.b = b\n", " \n", " # Useful macros\n", " self.START = 0 # start state\n", " self.FINISH = self.N+1 # finish state\n", " self.STATES = range(1, self.N+1) # set of regular states\n", " \n", " # placeholders\n", " self.O = [] # observation sequence\n", " self.T = 0 # number of observations\n", " self.alpha_table = None\n", " self.beta_table = None\n", " self.viterbi_table = None\n", " self.viterbi_bpointers = None\n", " \n", " def print(self):\n", " print(f\"N {self.N} M {self.M} T {self.T}\")\n", " print(\"Transmission probabilities 'a'\")\n", " print(self.a)\n", " print(\"Emission probabilities 'b'\")\n", " print(self.b)\n", " \n", " def set_a_b(self, a, b):\n", " \n", " if (a.shape[0] != a.shape[1] or a.shape[0] != b.shape[0] or\n", " a.shape[0] != self.N+2 or b.shape[1] != self.M+2):\n", " raise Exception('Incompatible a, b shapes')\n", " \n", " self.a = a\n", " self.b = b\n", " self.reset_alpha_beta_tables()\n", " \n", " def reset_alpha_beta_tables(self):\n", " \n", " # intialize alpha values to save recursive calls\n", " self.alpha_table = np.array(\n", " [[-1.0] * (self.N+2)] * (self.T+2))\n", " self.alpha_table[self.T+1, :self.N+1] = 0.0\n", " self.alpha_table[0, 0] = 1.0\n", " self.alpha_table[0, 1:] = 0.0\n", " \n", " # initialize beta values\n", " self.beta_table = np.array(\n", " [[-1.0] * (self.N+2)] * (self.T+1)) \n", " # Recall beta(T+1, i) is not defined.\n", " \n", " def set_observations(self, O):\n", " '''\n", " 设置观测序列\n", " \n", " 假设第一个观测是0,最后一个观测是M+1,其余是\n", " [1,...,M]。\n", " '''\n", " \n", " # Check that observations are valid\n", " if (not set(O[1:-1]).issubset(set(range(1, self.M+1))) or\n", " O[0] != 0 or O[-1] != self.M+1):\n", " print(O)\n", " raise Exception(\"Invalid observation sequence.\")\n", " self.O = O\n", " self.T = len(O)-2\n", " self.reset_alpha_beta_tables()\n", " \n", " \n", " def forward(self):\n", " '''Fill alpha_table, i.e., alpha_t(j)'s'''\n", " \n", " # This should be called after set_observation, \n", " # else self.T == 0.\n", " \n", " if (self.T == 0):\n", " raise Exception(\"Premature call to alpha().\")\n", " \n", " # Fill t=0 values\n", " self.alpha_table[0, self.START] = 1.0\n", " for j in range(1, self.N+1):\n", " self.alpha_table[0, j] = 0.0\n", " \n", " # Fill remaining values \"recursively\"\n", " for t in range(1, self.T+2):\n", " for j in range(self.N+2):\n", " self.alpha_table[t, j] = sum(\n", " [self.alpha_table[t-1, i] * self.a[i, j] \n", " for i in range(self.N+2)]\n", " ) * self.b[j, self.O[t]]\n", " \n", " def decode(self, obs=None):\n", " '''给定观测序列和self.a, self.b,\n", " 返回最可能的hidden state序列,以及它的概率。'''\n", " \n", " seq = []\n", " prob = 0.0\n", " \n", " ##################################################\n", " # 你的代码 ########################################\n", " ##################################################\n", " # 你的代码应当实现VITERBI算法\n", " # 具体来说,把概率存在一张表格X中,把上一个状态的指针存在\n", " # 另一张表格Y中。\n", " # 你应该从表格Y中得到最好的隐状态序列,并计算它的概率。\n", " # 你会用到self.a, self.b和self.T,不过你不需要使用alpha\n", " # 或者beta表格。\n", " \n", " return (seq, prob)\n", " \n", " def backward(self):\n", " '''填充beta_table beta_t(i)'''\n", " \n", " # Unlike alpha we don't define beta(T+1, i).\n", " # This should be called after set_observation, \n", " # else self.T == 0.\n", " \n", " if (self.T == 0):\n", " raise Exception(\"Premature call to beta()\")\n", " \n", " # First fill for t = T\n", " for i in range(1, self.N+1):\n", " self.beta_table[self.T, i] = self.a[i, self.FINISH]\n", " \n", " # Fill for t=1 to T-1 \"recursively\"\n", " for t in range(self.T-1, 0, -1):\n", " for i in range(1, self.N+1):\n", " self.beta_table[t, i] = sum(\n", " [self.a[i, j] * self.b[j, self.O[t+1]] * \n", " self.beta_table[t+1, j] for j in self.STATES])\n", " \n", " # Fill in for t = 0 and i = START\n", " self.beta_table[0, self.START] = sum(\n", " [self.a[self.START, j] * self.b[j, self.O[1]] * \n", " self.beta_table[1, j] for j in self.STATES])\n", " \n", " def xi(self, t, i, j):\n", " '''\n", " Return xi_t(i, j)\n", " ''' \n", "\n", " # The basic formula works for t=0 as well. For t=T we need\n", " # a special case because beta(t+1, j) is not defined for all j.\n", " \n", " if self.alpha_table[self.T+1, self.FINISH] <= 0.0:\n", " raise Exception(\"Impossible observation sequence\")\n", " \n", " if t >= 0 and t < self.T:\n", " rv = (self.alpha_table[t, i] * self.a[i, j] * \n", " self.b[j, self.O[t+1]] * self.beta_table[t+1, j]\n", " )/ self.alpha_table[self.T+1, self.FINISH] \n", " elif t == self.T: # non-zero only for j == FINISH\n", " if j != self.FINISH:\n", " rv = 0.0\n", " else:\n", " rv = (self.alpha_table[t, i] * self.a[i, j] / \n", " self.alpha_table[self.T+1, self.FINISH])\n", " else:\n", " raise Exception(\"Invalid call to xi().\")\n", " return rv\n", " \n", " def gamma(self, t, j):\n", " '''\n", " 返回 gamma_t(j)\n", " ''' \n", " \n", " rv = 0\n", " \n", " ##################################################\n", " # 你的代码 ########################################\n", " ##################################################\n", " # 你的代码需要计算 gamma_t(j) \n", " # 你会需要用到self.alpha_table, self.beta_table, \n", " # self.T以及self.START, self.FINISH等等。\n", " \n", " return rv\n", "\n", " def a_from_xi(self, i, j, rtype='ratio'):\n", " '''\n", " Return new a_{ij} computed from xi\n", " '''\n", " \n", " if j == self.START or i == self.FINISH:\n", " numerator = 0.0\n", " denominator = 1.0\n", " else:\n", " numerator = sum([self.xi(t, i, j) for t in \n", " range(0, self.T+1)])\n", " \n", " #denominator = sum([self.xi(t, i, k) for t in \n", " # range(0, self.T+1) for k in \n", " # range(self.N+2)])\n", " denominator = sum([self.gamma(t, i) for t in\n", " range(self.T+1)])\n", "\n", " if rtype == 'separate':\n", " rv = (numerator, denominator)\n", " elif math.isclose(denominator, 0.0):\n", " print(\"Divide by zero in i={} j={}\".format(i, j))\n", " rv = np.nan\n", " else:\n", " rv = numerator/denominator\n", " return rv\n", " \n", " def b_from_gamma(self, j, v, rtype='ratio'):\n", " \n", " numerator = sum([self.gamma(t, j) for t in \n", " range(0, self.T+2) if self.O[t] == v])\n", " denominator = sum([self.gamma(t, j) for t in \n", " range(0, self.T+2)])\n", "\n", " if rtype == 'separate':\n", " rv = (numerator, denominator) \n", " elif math.isclose(denominator, 0.0):\n", " print(\"Divide by zero in j={}, v={}\".format(j, v))\n", " rv = np.nan\n", " else:\n", " rv = numerator/denominator\n", " return rv\n", " \n", " def new_a(self):\n", " rv = np.array([[-1.0] * (self.N+2)] * (self.N+2))\n", " for i in range(self.N+2):\n", " for j in range(self.N+2):\n", " rv[i,j] = self.a_from_xi(i, j)\n", " return rv\n", " \n", " def new_b(self):\n", " rv = np.array([[-1.0] * (self.M+2)] * (self.N+2))\n", " for j in range(self.N+2):\n", " for v in range(self.M+2):\n", " rv[j,v] = self.b_from_gamma(j,v)\n", " return rv\n", " \n", " def fit(self, O, max_iter=10, verbose=False):\n", " \n", " self.set_observations(O)\n", " converged = False\n", " i = 0\n", " while not converged and i < max_iter:\n", " i += 1\n", " \n", " self.forward()\n", " self.backward()\n", " \n", " new_a = self.new_a()\n", " new_b = self.new_b()\n", " \n", " if verbose:\n", " print(f'Iteration {i}')\n", " print(new_b.T)\n", " print(new_a.T)\n", " \n", " if (np.allclose(new_a, self.a) and\n", " np.allclose(new_b, self.b)):\n", " converged = True\n", " else:\n", " self.set_a_b(new_a, new_b)\n", " return(i)" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "# A toy example for testing your code, based on Jason Eisner's\n", "# Workbook\n", "\n", "transmission_prob = np.array([\n", " [0. , 0.5, 0.5, 0. ],\n", " [0. , 0.8, 0.1, 0.1],\n", " [0. , 0.2, 0.7, 0.1],\n", " [0. , 0. , 0. , 0. ]])\n", "\n", "emission_prob = np.array([\n", " [1. , 0. , 0. , 0. , 0. ],\n", " [0. , 0.7, 0.2, 0.1, 0. ],\n", " [0. , 0. , 0.3, 0.7, 0. ],\n", " [0. , 0. , 0. , 0. , 1. ]])\n", "\n", "observation_short = [\n", " 0,\n", " 2, 3, 3, 2,\n", " 4\n", "]\n", "\n", "T_observation_short = len(observation_short) -2\n", "\n", "observation_long = [\n", " 0,\n", " 2, 3, 3, 2,\n", " 3, 2, 3, 2,\n", " 2, 3, 1, 3,\n", " 3, 1, 1, 1,\n", " 2, 1, 1, 1,\n", " 3, 1, 2, 1,\n", " 1, 1, 2, 3,\n", " 3, 2, 3, 2, \n", " 2,\n", " 4\n", "]\n", "\n", "T_observation_long = len(observation_long)-2" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "ename": "AssertionError", "evalue": "", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mAssertionError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 23\u001b[0m \u001b[0mexpected_decode\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m0.0007563149999999998\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 24\u001b[0;31m \u001b[0;32massert\u001b[0m \u001b[0mhmms\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdecode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mhmms\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mO\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mexpected_decode\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;31mAssertionError\u001b[0m: " ] } ], "source": [ "hmms = HMM(transmission_prob, emission_prob)\n", "hmms.set_observations(observation_short)\n", "hmms.forward()\n", "expected_alpha = np.array(\n", " [[1. , 0. , 0. , 0. ],\n", " [0. , 0.1 , 0.15 , 0. ],\n", " [0. , 0.011 , 0.0805 , 0. ],\n", " [0. , 0.00249 , 0.040215 , 0. ],\n", " [0. , 0.002007 , 0.00851985, 0. ],\n", " [0. , 0. , 0. , 0.00105268]])\n", "\n", "assert np.allclose(hmms.alpha_table, expected_alpha)\n", "\n", "hmms.backward()\n", "expected_beta = np.array([\n", " [ 0.00105268, -1. , -1. , -1. ],\n", " [-1. , 0.0011457 , 0.0062541 , -1. ],\n", " [-1. , 0.00327 , 0.01263 , -1. ],\n", " [-1. , 0.019 , 0.025 , -1. ],\n", " [-1. , 0.1 , 0.1 , -1. ]])\n", "assert np.allclose(hmms.beta_table, expected_beta)\n", "\n", "expected_decode = ([0, 2, 2, 2, 2, 3], 0.0007563149999999998)\n", "assert hmms.decode(hmms.O) == expected_decode" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "hmml = HMM(transmission_prob, emission_prob)\n", "hmml.fit(observation_long, max_iter = 20)\n", "expected_a = np.array([\n", " [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\n", " [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\n", " [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\n", " [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\n", "expected_b = np.array([\n", " [1. , 0. , 0. , 0. , 0. ],\n", " [0. , 0.64048263, 0.14806965, 0.21144771, 0. ],\n", " [0. , 0. , 0.53439047, 0.46560953, 0. ],\n", " [0. , 0. , 0. , 0. , 1. ]])\n", "assert np.allclose(hmml.a, expected_a)\n", "assert np.allclose(hmml.b, expected_b)\n", "\n", "expected_decode_result = ([0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, \n", " 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, \n", " 2, 2, 2, 2, 2, 2, 3],\n", " 1.4779964597903278e-16)\n", "assert np.allclose(hmml.decode(hmml.O)[0], expected_decode_result[0])\n", "assert np.isclose(hmml.decode(hmml.O)[1], expected_decode_result[1])" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "class HMMMulti(HMM):\n", " \n", " def update_new_a_num_deno(self):\n", " for i in range(self.N+2):\n", " for j in range(self.N+2):\n", " (num, deno) = self.a_from_xi(i, j, 'separate')\n", " self.new_a_num[i,j] += num\n", " self.new_a_deno[i,j] += deno\n", " \n", " def update_new_b_num_deno(self):\n", " for j in range(self.N+2):\n", " for v in range(self.M+2):\n", " (num, deno) = self.b_from_gamma(j, v, 'separate')\n", " self.new_b_num[j, v] += num\n", " self.new_b_deno[j, v] += deno\n", " \n", " def get_likelihoods(self):\n", " '''在每一个fit/learning步骤中计算似然概率。\n", " \n", " 假设它会在fit函数中被用到。'''\n", " \n", " rv = []\n", " \n", " ##################################################\n", " # 你的代码 ########################################\n", " ##################################################\n", " # 你需要在这里填充代码,然后这个class中的别的方法可能也要\n", " # 做出相应的修改。你需要储存观测序列Oset在当前参数下的似然\n", " # 概率。这个函数在fit函数下会被用到。\n", "\n", " return rv\n", "\n", "\n", " def fit(self, Oset, max_iter=10, verbose=False):\n", " \n", " self.new_a_num = np.array([[0.0] * (self.N+2)] * (self.N+2))\n", " self.new_a_deno = np.array([[0.0] * (self.N+2)] * (self.N+2))\n", " self.new_b_num = np.array([[0.0] * (self.M+2)] * (self.N+2))\n", " self.new_b_deno = np.array([[0.0] * (self.M+2)] * (self.N+2))\n", "\n", " \n", " converged = False\n", " i = 0\n", " \n", " while not converged and i < max_iter:\n", " i += 1\n", " \n", " for O in Oset:\n", " self.set_observations(O)\n", " \n", " self.forward()\n", " self.backward()\n", " \n", " \n", " \n", " self.update_new_a_num_deno()\n", " self.update_new_b_num_deno()\n", " \n", " new_a = self.new_a_num / self.new_a_deno\n", " new_b = self.new_b_num / self.new_b_deno\n", " \n", " if verbose:\n", " print(f'Iteration {i}')\n", " print(new_b.T)\n", " print(new_a.T)\n", " else:\n", " print(f'Iteration {i}')\n", " \n", " if (np.allclose(new_a, self.a) and\n", " np.allclose(new_b, self.b)):\n", " converged = True\n", " else:\n", " self.set_a_b(new_a, new_b)\n", " self.new_a_num.fill(0)\n", " self.new_a_deno.fill(0)\n", " self.new_b_num.fill(0)\n", " self.new_b_deno.fill(0)\n", " \n", " \n", " return(i)\n", " " ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "hmmml = HMMMulti(transmission_prob, emission_prob)\n", "hmmml.fit([observation_long]*5, max_iter = 20)\n", "expected_a = np.array([\n", " [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\n", " [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\n", " [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\n", " [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\n", "expected_b = np.array([\n", " [1. , 0. , 0. , 0. , 0. ],\n", " [0. , 0.64048263, 0.14806965, 0.21144771, 0. ],\n", " [0. , 0. , 0.53439047, 0.46560953, 0. ],\n", " [0. , 0. , 0. , 0. , 1. ]])\n", "assert np.allclose(hmml.a, expected_a)\n", "assert np.allclose(hmml.b, expected_b)\n", "expected_likelihoods = [8.463524947168683e-21, 6.45760751286262e-19,\n", " 2.604423720662633e-18, 3.772405535111533e-18,\n", " 3.934445572171057e-18, 3.945375545182965e-18,\n", " 3.9459945227193204e-18, 3.946030509476693e-18,\n", " 3.946032758826868e-18, 3.946032909436204e-18,\n", " 3.94603292005471e-18]\n", "assert np.allclose(hmmml.get_likelihoods(), expected_likelihoods)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import nltk\n", "from nltk.corpus import brown" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "class POS:\n", " '''将给定的句子们,或者是brown corpus中的句子们,分成同样的train和test部分。\n", " 对于每个句子,我们用nltk tagger得到tags。\n", " 将a初始化成所有句子中可能出现的tags,但是用均匀分布。\n", " 将b初始化成所有句子中出现的单词。但是只有train中出现的单词才可以得到一定的概率。\n", " 给train中出现频率高的单词比较高的概率值,其余单词的概率应该低一些。\n", " (具体的高低值根据tag的不同会有所不同)\n", " '''\n", " \n", " def __init__(self, sents=None, category=None, \n", " num_sents=40,\n", " b_bound = 1*10**(-4), \n", " tagset=\"universal\"):\n", " \n", " if sents is None:\n", " self.sents = brown.sents(categories=category)[:num_sents]\n", " self.tagged_sents = brown.tagged_sents(\n", " categories=category, tagset=tagset)[:num_sents]\n", " else:\n", " self.sents = [nltk.word_tokenize(s) for s in sents]\n", " self.tagged_sents = [nltk.pos_tag(s, tagset = tagset)\n", " for s in self.sents]\n", " \n", " self.fsize = int(len(self.sents) * 0.5)\n", " self.fit_tsents = self.tagged_sents[:self.fsize]\n", " self.test_tsents = self.tagged_sents[self.fsize:]\n", " tagged_words = [tup for s in self.tagged_sents[:self.fsize] \n", " for tup in s]\n", " \n", " self.vocabulary = (['_SWORD'] + # Special observation in STAG\n", " sorted(list(set([w.lower() for \n", " s in self.sents for w in s]))) +\n", " ['_FWORD']) # Special observation in FTAG\n", " self.M = len(self.vocabulary) # Number of distinct observations\n", " \n", " print(f'Vocabulary size {self.M}')\n", " \n", " self.tags = (['STAG'] + # Special start state\n", " sorted(list(set([p[1] for s in self.tagged_sents \n", " for p in s]))) + \n", " ['FTAG']) # Special end state\n", " self.N = len(self.tags) # Number of states\n", " \n", " self.w2i = dict(zip(self.vocabulary, \n", " range(len(self.vocabulary))))\n", " self.t2i = dict(zip(self.tags, range(len(self.tags))))\n", " \n", " # Initialize a (transition probabilities)\n", " #self.a = np.random.rand(self.N, self.N)\n", " self.a = np.ones((self.N, self.N))\n", " self.a[:,0] = 0.0\n", " self.a = self.a/(self.a.sum(axis=1).reshape(\n", " self.a.shape[0],1))\n", " self.a[-1,:] = 0.0\n", " \n", " cfd = nltk.ConditionalFreqDist((word.lower(), tag) for \n", " (word, tag)\n", " in tagged_words)\n", " \n", " # Initialize b (emission probabilities)\n", " #self.b = np.random.rand(self.N, self.M)*b_random_bound\n", " self.b = np.ones((self.N, self.M))*b_bound\n", " # STAG only produces _SWORD and FTAG only produces _FWORD\n", " self.b[0,:] = 0.0\n", " self.b[:,0] = 0.0\n", " self.b[0,0] = 1.0\n", " self.b[-1,:] = 0.0\n", " self.b[:,-1] = 0.0\n", " self.b[-1, -1] = 1.0\n", " # Set non-trivial probability of a word being produced\n", " # by its most common tag\n", " for word in cfd.conditions():\n", " tag = (cfd[word].most_common(1)[0][0])\n", " self.setb(tag, word, 0.5)\n", " self.b = self.b/(self.b.sum(axis=1).reshape(self.N,1))\n", " \n", " # Initialize an HMM on oset with a, b\n", " self.hmm = HMMMulti(self.a.copy(), self.b.copy())\n", " \n", " def create_oset(self):\n", " \n", " self.oset = []\n", " for ts in self.tagged_sents:\n", " s, _ = split_tagged_sent(ts)\n", " self.oset.append(self.s2o(s))\n", " \n", " def fit(self, max_iter=10):\n", " \n", " # Create oset\n", " self.create_oset()\n", " \n", " # Fit the hmm \n", " self.hmm.fit(self.oset, max_iter=max_iter)\n", " \n", " def test(self):\n", " \n", " for descrip, ts_set in [(\"fit set\", self.fit_tsents), \n", " (\"test set\", self.test_tsents)]: \n", " correct = 0\n", " sum_accuracy = 0\n", " for ts in ts_set:\n", " s, tag_seq = split_tagged_sent(ts)\n", " predicted, _ = self.decode(s)\n", " a = accuracy(tag_seq, predicted)\n", " if a == 1.0:\n", " correct += 1\n", " sum_accuracy += a\n", " avg_accuracy = sum_accuracy/len(ts_set)\n", " correct_ratio = correct/len(ts_set)\n", " print(f\"For {descrip}: Average accuracy = \"\n", " f\"{avg_accuracy:.3f},\" \n", " f\" Totally correct ratio = \" \n", " f\"{correct_ratio:.3f}\")\n", " \n", " def decode(self, sentence):\n", " if sentence[0] != 0: # Weak check if converted\n", " O = self.s2o(sentence)\n", " else:\n", " O = sentence.copy()\n", " state_seq, prob = self.hmm.decode(O)\n", " tag_seq = [self.tags[s] for s in state_seq]\n", " return (tag_seq, prob)\n", " \n", " def setb(self, j, w, p):\n", " self.b[self.t2i[j], self.w2i[w]] = p\n", " def getb(self, j, w, b=None):\n", " if b is None:\n", " b = self.b\n", " return b[self.t2i[j], self.w2i[w]]\n", " def seta(self, i, j, p):\n", " self.a[self.t2i[i], self.t2i[j]] = p\n", " def geta(self, i, j, a=None):\n", " if a is None:\n", " a = self.a\n", " return a[self.t2i[i], self.t2i[j]]\n", " def s2o(self, sentence):\n", " return([0] + \n", " [self.w2i[w.lower()] for w in sentence] + \n", " [self.w2i['_FWORD']])\n", " def i2t(self, state_sequence):\n", " return [self.tags[i] for i in state_sequence][1:-1]\n", " \n", " def print_b_unsorted(self, b=None):\n", " if b is None:\n", " b = self.b\n", " for t in self.tags:\n", " print(f'\\n\\n{t}', end='')\n", " for w in self.vocabulary:\n", " p = self.getb(t, w, b)\n", " if p > 10**(-5):\n", " print(f' {w}[{p:.5f}]', end='')\n", " \n", " def print_a_unsorted(self, a=None):\n", " if a is None:\n", " a = self.a\n", " for t in self.tags:\n", " print(f'\\n\\n{t}', end='')\n", " for u in self.tags:\n", " p = self.geta(t, u, a)\n", " print(f' {u}[{p:.5f}]', end='')\n", " \n", " def print_b(self, b=None):\n", " if b is None:\n", " b = self.b\n", " for t in self.tags:\n", " ptups = zip(b[self.t2i[t],:],self.vocabulary)\n", " ptups = sorted(ptups, key = lambda tup: tup[0],\n", " reverse = True) \n", " print(f'\\n\\n{t}', end='')\n", " for tup in ptups:\n", " print(f' {tup[1]}[{tup[0]}]', end='')\n", " \n", " def print_a(self, a=None):\n", " if a is None:\n", " a = self.a\n", " for t in self.tags:\n", " ptups = zip(a[self.t2i[t],:],self.tags)\n", " ptups = sorted(ptups, key = lambda tup: tup[0],\n", " reverse = True) \n", " print(f'\\n\\n{t}', end='')\n", " for tup in ptups:\n", " print(f' {tup[1]}[{tup[0]}]', end='')\n", " \n", " def create_tagged_sent(self, sentence, tags):\n", " if sentence[0] != '_SWORD':\n", " s = (['_SWORD'] + \n", " [w.lower() for w in sentence] + \n", " ['_FWORD'])\n", " else:\n", " s = sentence\n", " return list(zip(s, tags))\n", " \n", " def check_sent(self, sentence_number):\n", " n = sentence_number\n", " s = self.sents[n]\n", " tag_seq = [tag for (word, tag) in \n", " self.tagged_sents[n]]\n", " predicted_tag_seq = self.decode(s)[0][1:-1]\n", " return list(zip(s, tag_seq, predicted_tag_seq))\n", "\n", "def split_tagged_sent(tagged_sent):\n", " return list(zip(*tagged_sent))\n", "\n", "def accuracy(tag_seq, predicted_tag_seq):\n", " if predicted_tag_seq[0] == 'STAG':\n", " p = predicted_tag_seq[1:-1]\n", " else:\n", " p = predicted_tag_seq\n", " return (sum(t == pt for (t, pt) in zip(tag_seq, p))/\n", " len(tag_seq))\n" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[[('Janet', 'NNP'),\n", " ('will', 'MD'),\n", " ('back', 'VB'),\n", " ('the', 'DT'),\n", " ('bill', 'NN'),\n", " ('.', '.')],\n", " [('Richard', 'NNP'),\n", " ('will', 'MD'),\n", " ('eat', 'VB'),\n", " ('an', 'DT'),\n", " ('apple', 'NN'),\n", " ('.', '.')],\n", " [('Mary', 'NNP'),\n", " ('will', 'MD'),\n", " ('run', 'VB'),\n", " ('a', 'DT'),\n", " ('mile', 'NN'),\n", " ('.', '.')],\n", " [('Sam', 'NNP'),\n", " ('will', 'MD'),\n", " ('write', 'VB'),\n", " ('an', 'DT'),\n", " ('essay', 'NN'),\n", " ('.', '.')]]" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[nltk.pos_tag(s) for s in [nltk.word_tokenize(s) \n", " for s in sents_example_1]]" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "ename": "NameError", "evalue": "name 'POS' is not defined", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;34m\"Sam will write an essay.\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 6\u001b[0m ]\n\u001b[0;32m----> 7\u001b[0;31m \u001b[0mpos\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mPOS\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msents_example_1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 8\u001b[0m \u001b[0mpos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m100\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0mpos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtest\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mNameError\u001b[0m: name 'POS' is not defined" ] } ], "source": [ "sents_example_1 = [\n", " \"Janet will back the bill.\",\n", " \"Richard will eat an apple.\",\n", " \"Mary will run a mile.\",\n", " \"Sam will write an essay.\",\n", "]\n", "pos = POS(sents_example_1)\n", "pos.fit(100)\n", "pos.test()\n", "pos.print_a(pos.hmm.a)\n", "pos.print_b(pos.hmm.b)\n", "\n", "############################################################\n", "# 回答以下问题: #############################################\n", "############################################################\n", "# 基于HMM的POS tagger模型效果如何?如果效果不好的话,会是因为什么原\n", "# 因?" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "sents_example_2 = [\n", " \"Janet will back the bill.\",\n", " \"Janet likes music.\",\n", " \"Richard will eat an apple.\",\n", " \"Peter needs rest.\",\n", " \"Mary will run a mile.\",\n", " \"Joe hates TV.\",\n", " \"Sam will write an essay.\",\n", " \"Ramona loves cooking.\",\n", "]\n", "pos = POS(sents_example_2)\n", "pos.fit(100)\n", "pos.test()\n", "pos.print_a(pos.hmm.a)\n", "pos.print_b(pos.hmm.b)\n", "\n", "############################################################\n", "# 回答以下问题: #############################################\n", "############################################################\n", "# 基于HMM的POS tagger模型效果如何?如果效果不好的话,会是因为什么原\n", "# 因?" ] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 1 } ================================================ FILE: P009StructureLearning/train.txt ================================================ Thousands of demonstrators have marched through London to protest the war in Iraq and demand the withdrawal of British troops from that country . NNS IN NNS VBP VBN IN NNP TO VB DT NN IN NNP CC VB DT NN IN JJ NNS IN DT NN . Families of soldiers killed in the conflict joined the protesters who carried banners with such slogans as ' Bush Number One Terrorist ' and ' Stop the Bombings . ' NNS IN NNS VBN IN DT NN VBD DT NNS WP VBD NNS IN JJ NNS IN `` NNP NN CD NN `` CC `` VB DT NNS . `` They marched from the Houses of Parliament to a rally in Hyde Park . PRP VBD IN DT NNS IN NN TO DT NN IN NNP NNP . Police put the number of marchers at 10,000 while organizers claimed it was 1,00,000 . NNS VBD DT NN IN NNS IN CD IN NNS VBD PRP VBD CD . The protest comes on the eve of the annual conference of Britain 's ruling Labor Party in the southern English seaside resort of Brighton . DT NN VBZ IN DT NN IN DT JJ NN IN NNP POS VBG NNP NNP IN DT JJ JJ NN NN IN NNP . The party is divided over Britain 's participation in the Iraq conflict and the continued deployment of 8,500 British troops in that country . DT NN VBZ VBN IN NNP POS NN IN DT NNP NN CC DT JJ NN IN CD JJ NNS IN DT NN . The London march came ahead of anti-war protests today in other cities , including Rome , Paris , and Madrid . DT NNP NN VBD RB IN JJ NNS NN IN JJ NNS , VBG NNP , NNP , CC NNP . The International Atomic Energy Agency is to hold second day of talks in Vienna Wednesday on how to respond to Iran 's resumption of low-level uranium conversion . DT NNP NNP NNP NNP VBZ TO VB JJ NN IN NNS IN NNP NNP IN WRB TO VB TO NNP POS NN IN JJ NN NN . Iran this week restarted parts of the conversion process at its Isfahan nuclear plant . NNP DT NN VBD NNS IN DT NN NN IN PRP$ NNP JJ NN . Iranian officials say they expect to get access to sealed sensitive parts of the plant Wednesday , after an IAEA surveillance system begins functioning . JJ NNS VBP PRP VBP TO VB NN TO JJ JJ NNS IN DT NN NNP , IN DT NNP NN NN VBZ VBG . The step will allow the facility to operate at full capacity . DT NN MD VB DT NN TO VB IN JJ NN . The European Union , with U.S. backing , has threatened to refer Iran to the U.N. Security Council , which could impose sanctions if it finds Tehran has violated the Nuclear Non-Proliferation treaty . DT NNP NNP , IN NNP NN , VBZ VBN TO VB NNP TO DT NNP NNP NNP , WDT MD VB NNS IN PRP VBZ NNP VBZ VBN DT NNP NNP NN . Iran 's new President Mahmoud Ahmadinejad said Tuesday that European incentives aimed at persuading Iran to end its nuclear fuel program are an insult to the Iranian nation . NNP POS JJ NNP NNP NNP VBD NNP IN JJ NNS VBN IN VBG NNP TO VB PRP$ JJ NN NN VBP DT NN TO DT JJ NN . Two Germans and four Nigerian oil workers were kidnapped by armed militants during a raid on a boat in Nigeria 's southern oil-rich Delta region . CD NNS CC CD JJ NN NNS VBD VBN IN JJ NNS IN DT NN IN DT NN IN NNP POS JJ JJ NNP NN . An official with the German firm Bilfinger Berger , Thomas Horbach , said the gunmen stopped the supply boat Wednesday as it sailed from Delta State to Bayelsa State to inspect an offshore oil field owned by Royal-Dutch Shell . DT NN IN DT JJ NN NNP NNP , NNP NNP , VBD DT NNS VBD DT NN NN NNP IN PRP VBD IN NNP NNP TO NNP NNP TO VB DT JJ NN NN VBN IN NNP NNP . The German firm works as a sub-contractor for Shell . DT JJ NN VBZ IN DT NN IN NNP . Militant groups frequently attack oil operations in the Niger Delta to demand social services and better job opportunities from multinational companies . JJ NNS RB VBP NN NNS IN DT NNP NNP TO VB JJ NNS CC JJR NN NNS IN JJ NNS . Poor residents often complain they have been cheated out of the huge riches extracted from their tribal lands - where the bulk of Nigeria 's 2.3 million barrels of petroleum are pumped daily . JJ NNS RB VBP PRP VBP VBN VBN IN IN DT JJ NNS VBN IN PRP$ JJ NNS : WRB DT NN IN NNP POS CD CD NNS IN NN VBP VBN RB . Suspected Islamist rebels have fired mortar shells at the palace used by Somalia 's interim President Abdullahi Yusuf Ahmad . JJ JJ NNS VBP VBN NN NNS IN DT NN VBN IN NNP POS JJ NNP NNP NNP NNP . It was not immediately clear if the president was in the palace in Mogadishu when the attack occurred or if anyone was hurt . PRP VBD RB RB JJ IN DT NN VBD IN DT NN IN NNP WRB DT NN VBD CC IN DT VBD VBN . Local news reports said at least five mortar shells hit the palace compound and other mortars were fired elsewhere in Mogadishu Wednesday . JJ NN NNS VBD IN JJS CD NN NNS VBD DT NN NN CC JJ NNS VBD VBN RB IN NNP NNP . The attacks occurred after the government said it will go ahead with a reconciliation conference to which more than 1,300 Somali elders , warlords and politicians are invited . DT NNS VBD IN DT NN VBD PRP MD VB RB IN DT NN NN TO WDT JJR IN CD JJ NNS , NNS CC NNS VBP VBN . Iraqi military officials say tanks and troops have arrived in the northern city Mosul for a new offensive against al Qaida in Iraq fighters . JJ JJ NNS VBP NNS CC NNS VBP VBN IN DT JJ NN NNP IN DT JJ NN IN NNP NNP IN NNP NNS . Officials will not say how many troops have arrived in the Sunni Arab and Kurdish city , where bombings last week killed at least 34 people and wounded more than 200 . NNS MD RB VB WRB JJ NNS VBP VBN IN DT NNP NNP CC NNP NN , WRB NNS JJ NN VBD IN JJS CD NNS CC VBD JJR IN CD . U.S. commanders have not explained how American forces will participate in the offensive . NNP NNS VBP RB VBN WRB JJ NNS MD VB IN DT NN . Officials say al Qaida in Iraq fighters have fled successful campaigns against them in Anbar province and Baghdad to other northern provinces . NNS VBP NNP NNP IN NNP NNS VBP VBN JJ NNS IN PRP IN NNP NN CC NNP TO JJ JJ NNS . Mosul is the largest city north of Baghdad and has long been a stronghold of Sunni militant fighters . NNP VBZ DT JJS NN NN IN NNP CC VBZ RB VBN DT NN IN NNP JJ NNS . In other violence , U.S. officials said one American soldier was killed while on patrol in Baghdad Sunday . IN JJ NN , NNP NNS VBD CD JJ NN VBD VBN IN IN NN IN NNP NNP . Egyptian police have arrested at least 16 members of the opposition Muslim Brotherhood as parts of the country prepare for parliamentary runoff elections Saturday . JJ NNS VBP VBN IN JJS CD NNS IN DT NN NNP NNP IN NNS IN DT NN VB IN JJ NN NNS NNP . The arrests occurred Friday in Alexandria . DT NNS VBD NNP IN NNP . A spokesman for the Brotherhood said the arrests are an attempt to cut the Brotherhood off from its supporters and punishment for winning parliamentary seats in earlier elections . DT NN IN DT NNP VBD DT NNS VBP DT NN TO VB DT NNP RB IN PRP$ NNS CC NN IN VBG JJ NNS IN JJR NNS . The Muslim Brotherhood has tripled its strength in parliament in recent elections , raising the party 's total to 47 seats . DT NNP NNP VBZ VBN PRP$ NN IN NN IN JJ NNS , VBG DT NN POS NN TO CD NNS . In Saturday 's elections , voters will cast ballots in nine provinces where no candidate won a majority in the previous round of voting . IN NNP POS NNS , NNS MD VB NNS IN CD NNS WRB DT NN VBD DT NN IN DT JJ NN IN NN . The Muslim Brotherhood is banned as a political party , but it endorses so-called independent candidates whose allegiance to the party is known to voters . DT NNP NNP VBZ VBN IN DT JJ NN , CC PRP VBZ JJ JJ NNS WP$ NN IN DT NN VBZ VBN TO NNS . Hardline lawmakers in Pakistan 's North West Frontier Province have pushed through a law that aims to ensure ' Islamic correctness ' in public places and establishes a morality police to enforce decent behavior . JJ NNS IN NNP POS NNP NNP NNP NNP VBP VBN IN DT NN WDT VBZ TO VB `` JJ NN `` IN JJ NNS CC VBZ DT NN NN TO VB JJ NN . A six-party coalition of religious based parties , the Mutahida Majlis-e-Amal , dominates the provincial assembly , so the bill was easily passed Thursday by a vote of 68-34 . DT JJ NN IN JJ VBN NNS , DT NNP NNP , VBZ DT JJ NN , IN DT NN VBD RB VBN NNP IN DT NN IN CD . The provincial governor must still sign the bill before it becomes law , a step seen only as a formality . DT JJ NN MD RB VB DT NN IN PRP VBZ NN , DT NN VBN RB IN DT NN . The proposed law calls for setting up a ' religious police force ' to make sure people adhere to Islamic values in public places , and entertainment outlets close during weekly Friday prayers . DT JJ NN VBZ IN VBG RP DT `` JJ NN NN `` TO VB JJ NNS VBP TO JJ NNS IN JJ NNS , CC NN NNS RB IN JJ NNP NNS . Violators could be jailed for up to six months . NNS MD VB VBN IN RB TO CD NNS . The opposition has denounced the measure , comparing it to the draconian rule of the former Taleban in neighboring Afghanistan . DT NN VBZ VBN DT NN , VBG PRP TO DT JJ NN IN DT JJ NNP IN VBG NNP . British police say they have arrested a man who dressed as suicide bomber at a demonstration against the publication of cartoons depicting Islam 's Prophet Muhammad . JJ NNS VBP PRP VBP VBN DT NN WP VBD IN NN NN IN DT NN IN DT NN IN NNS VBG NNP POS NNP NNP . Bedfordshire police said Tuesday that Omar Khayam was arrested in Bedford for breaching the conditions of his parole . NNP NNS VBD NNP IN NNP NNP VBD VBN IN NNP IN VBG DT NNS IN PRP$ NN . Police said the British Home Office sought an investigation of Khayam 's behavior after he was photographed last week at a demonstration dressed in fatigues , a black cap , and a bulky belt . NNS VBD DT NNP NNP NNP VBD DT NN IN NNP POS NN IN PRP VBD VBN JJ NN IN DT NN VBN IN NNS , DT JJ NN , CC DT JJ NN . A Home Office spokesman told the Associated Press that if the behavior of a paroled offender gives cause for concern , he can be sent back to prison . DT NNP NNP NN VBD DT NNP NNP IN IN DT NN IN DT JJ NN VBZ NN IN NN , PRP MD VB VBN RB TO NN . The AP also reports Khayam has been on parole from prison since last year after serving half his six-year sentence for drug dealing . DT NNP RB VBZ NNP VBZ VBN IN NN IN NN IN JJ NN IN VBG PDT PRP$ JJ NN IN NN NN . Pakistani officials say unidentified gunmen have killed three people , including a former government minister , in a semi-autonomous tribal region bordering Afghanistan . JJ NNS VBP JJ NNS VBP VBN CD NNS , VBG DT JJ NN NN , IN DT JJ JJ NN VBG NNP . The officials say prominent tribal leader Malik Faridullah Khan was traveling in South Waziristan Sunday when his vehicle was ambushed in the Kani Wam area . DT NNS VBP JJ JJ NN NNP NNP NNP VBD VBG IN NNP NNP NNP WRB PRP$ NN VBD VBN IN DT NNP NNP NN . His driver and a tribal elder were also killed . PRP$ NN CC DT JJ NN VBD RB VBN . No one has claimed responsibility for the killings . DT NN VBZ VBN NN IN DT NNS . The ambush came a day after a commander of Pakistani troops said the army has almost completely eliminated militants in South Waziristan . DT NN VBD DT NN IN DT NN IN JJ NNS VBD DT NN VBZ RB RB VBN NNS IN NNP NNP . The area became a refuge for many al-Qaida and Taleban fighters after the Taleban government was ousted in Afghanistan in 2001 . DT NN VBD DT NN IN JJ NNP CC NNP NNS IN DT NNP NN VBD VBN IN NNP IN CD . A senior Pakistani military official says Pakistan wants to put what he calls the ' sordid chapter ' of proliferation by one of its top scientists behind it and build civilian nuclear ties with the United States . DT JJ JJ JJ NN VBZ NNP VBZ TO VB WP PRP VBZ DT `` JJ NN `` IN NN IN CD IN PRP$ JJ NNS IN PRP CC VB JJ JJ NNS IN DT NNP NNPS . But he says Pakistan is not ready to make the nuclear scientist , Abdul Qadeer Khan , available for direct questioning over his sale of nuclear parts and secrets to states including Iran , Libya and North Korea . CC PRP VBZ NNP VBZ RB JJ TO VB DT JJ NN , NNP NNP NNP , JJ IN JJ VBG IN PRP$ NN IN JJ NNS CC NNS IN NNS VBG NNP , NNP CC NNP NNP . He said there are reasons of national sensitivities for not making him available . PRP VBD EX VBP NNS IN JJ NNS IN RB VBG PRP JJ . The Pakistani official was giving a background briefing to a small group of reporters in Washington . DT JJ NN VBD VBG DT NN NN TO DT JJ NN IN NNS IN NNP . Khan admitted in 2004 that he operated a worldwide clandestine network to sell nuclear technology in the black market . NNP VBD IN CD IN PRP VBD DT JJ NN NN TO VB JJ NN IN DT JJ NN . He was placed under house arrest in Islamabad , but not jailed because he is considered the father of Pakistan 's nuclear bomb . PRP VBD VBN IN NN NN IN NNP , CC RB VBN IN PRP VBZ VBN DT NN IN NNP POS JJ NN . U.S. Army officials said Wednesday that they will not renew a controversial multi-billion dollar contract with the Halliburton company to provide logistical support to U.S. troops in Iraq and elsewhere . NNP NNP NNS VBD NNP IN PRP MD RB VB DT JJ JJ NN NN IN DT NNP NN TO VB JJ NN IN NNP NNS IN NNP CC RB . Halliburton has been providing a long list of services , from meals to communication , for the military for several years . NNP VBZ VBN VBG DT JJ NN IN NNS , IN NNS TO NN , IN DT NN IN JJ NNS . Critics of Halliburton include auditors and congressional Democrats . NNS IN NNP VBP NNS CC JJ NNS . They say the company has produced some shoddy work and charges too much money . PRP VBP DT NN VBZ VBN DT JJ NN CC VBZ RB JJ NN . The company strongly denies the allegations . DT NN RB VBZ DT NNS . When the huge contract is put out for re-bidding , several companies will get a chance to compete for portions of the work . WRB DT JJ NN VBZ VBN RP IN NN , JJ NNS MD VB DT NN TO VB IN NNS IN DT NN . Representatives from the Asia Pacific Economic Cooperation Business Advisory Council are holding meetings this week to finalize their annual report for APEC leaders who will hold a summit on September 8 and 9 . NNS IN DT NNP NNP NNP NNP NNP NNP NNP VBP VBG NNS DT NN TO VB PRP$ JJ NN IN NNP NNS WP MD VB DT NN IN NNP CD CC CD . VOA 's Nancy-Amelia Collins reports from Sydney . NNP POS NNP NNP VBZ IN NNP . Energy , security , climate change , the World Trade Organization 's stalled negotiations , and investment are all expected to be among the major topics in the annual report of the APEC Business Advisory Council , known as ABAC . NN , NN , NN NN , DT NNP NNP NNP POS VBN NNS , CC NN VBP DT VBN TO VB IN DT JJ NNS IN DT JJ NN IN DT NNP NNP NNP NNP , VBN IN NNP . Tim Harcourt , the chief economist of the Australian Trade Commission , says ABAC plays an important role by informing governments where there are problems . NNP NNP , DT JJ NN IN DT NNP NNP NNP , VBZ NNP VBZ DT JJ NN IN VBG NNS WRB EX VBP NNS . ' The most important thing the business groups can do is to tell the governments where there are logjams , where there are obstacles , where things can improve , ' Harcourt said . `` DT RBS JJ NN DT NN NNS MD VB VBZ TO VB DT NNS WRB EX VBP NNS , WRB EX VBP NNS , WRB NNS MD VB , `` NNP VBD . ' I think actually ABAC has played a pretty good leadership on that in talking about trade facilitation and basically making sure standards are consistent and harmonious across the region . ' `` PRP VBP RB NNP VBZ VBN DT RB JJ NN IN DT IN VBG IN NN NN CC RB VBG JJ NNS VBP JJ CC JJ IN DT NN . `` ABAC comprises up to three members of the private sector of each of the 21 economies that make up APEC . NNP VBZ RP TO CD NNS IN DT JJ NN IN DT IN DT CD NNS WDT VBP RP NNP . It meets three times a year . PRP VBZ CD NNS DT NN . It was made a permanent body in 1995 to provide an independent business perspective within APEC . PRP VBD VBN DT JJ NN IN CD TO VB DT JJ NN NN IN NNP . Members represent a range of business sectors , including medium and small businesses . NNS VBP DT NN IN NN NNS , VBG JJ CC JJ NNS . ABAC says there is a need for businesses to improve energy efficiency and to encourage conservation practices , and is expected to include this in its annual report . NNP VBZ EX VBZ DT NN IN NNS TO VB NN NN CC TO VB NN NNS , CC VBZ VBN TO VB DT IN PRP$ JJ NN . Harcourt , of the Australian Trade Commission , says the ABAC report will also discuss ways to enhance regional cooperation . NNP , IN DT NNP NNP NNP , VBZ DT NNP NN MD RB VB NNS TO VB JJ NN . ' I reckon they 'll talk a little bit about customs and quarantine , a little bit about having consistent security arrangements around the region , ' Harcourt said . `` PRP VBP PRP MD VB DT JJ NN IN NNS CC NN , DT JJ NN IN VBG JJ NN NNS IN DT NN , `` NNP VBD . ' And I think they 'll want a one-stop shop in terms of combining security , immigration , customs , and quarantine together ... just to make sure it 's more streamlined and provides more certainty . ' `` CC PRP VBP PRP MD VB DT JJ NN IN NNS IN VBG NN , NN , NNS , CC VB RB , RB TO VB JJ PRP VBZ JJR JJ CC VBZ JJR NN . `` ABAC is the only non-governmental body that has an official role and formal dialogue with the leaders of the APEC economies . NNP VBZ DT JJ JJ NN WDT VBZ DT JJ NN CC JJ NN IN DT NNS IN DT NNP NNS . It will present its annual report at the APEC leaders meeting on Saturday . PRP MD VB PRP$ JJ NN IN DT NNP NNS NN IN NNP . Sudan 's government says it will order troops to end attacks immediately in Darfur , and is asking rebels to do the same . NNP POS NN VBZ PRP MD VB NNS TO VB NNS RB IN NNP , CC VBZ VBG NNS TO VB DT NN . Foreign Minister Mustafa Osman Ismail says Sudanese troops will also withdraw to positions held before an April cease-fire , if rebels in the western region agree to stop attacks . NNP NNP NNP NNP NNP VBZ JJ NNS MD RB VB TO NNS VBN IN DT NNP NN , IN NNS IN DT JJ NN VBP TO VB NNS . Mr. Ismail announced the decision after meeting with officials from the United Nations and African Union in Khartoum Sunday . NNP NNP VBD DT NN IN VBG IN NNS IN DT NNP NNPS CC NNP NNP IN NNP NNP . In recent weeks , AU officials say Sudanese troops and rebels have repeatedly violated the April truce . IN JJ NNS , NNP NNS VBP JJ NNS CC NNS VBP RB VBN DT NNP NN . Saturday , the head of AU forces in Darfur accused Sudanese government helicopters of bombing rebel sites in the South Darfur village of Labado . NNP , DT NN IN NNP NNS IN NNP VBD JJ NN NNS IN VBG NN NNS IN DT NNP NNP NN IN NNP . Khartoum says troops were defending their positions from rebel attacks . NNP VBZ NNS VBD VBG PRP$ NNS IN NN NNS . Aid workers say some relief efforts have been suspended in South Darfur due to recent attacks . NN NNS VBP DT NN NNS VBP VBN VBN IN NNP NNP JJ TO JJ NNS . Indonesian police have arrested three men in connection with the October 1 Bali bombings that left 23 people dead . JJ NNS VBP VBN CD NNS IN NN IN DT NNP CD NNP NNS WDT VBD CD NNS JJ . Indonesian police said Wednesday the men were flown to Bali from neighboring Java island for questioning at Bali police headquarters . JJ NN VBD NNP DT NNS VBD VBN TO NNP IN VBG NNP NN IN VBG IN NNP NN NN . Australian and French news agencies say at least one of the men arrested ( Cholily ) was captured during a series of counter-terrorism raids last week in Indonesia . JJ CC JJ NN NNS VBP IN JJS CD IN DT NNS VBN LRB NNP RRB VBD VBN IN DT NN IN NN NNS JJ NN IN NNP . The raids ended with the death of alleged extremist bombmaker Azahari bin Husin . DT NNS VBD IN DT NN IN JJ NN NN NNP NNP NNP . Indonesian authorities blame Azahari bin Husin for orchestrating last month 's attacks in Bali as well as the 2002 Bali bombings that killed more than 200 people . JJ NNS VBP NNP NNP NNP IN VBG JJ NN POS NNS IN NNP RB RB IN DT CD NNP NNS WDT VBD JJR IN CD NNS . Gunmen have shot and killed a Roman Catholic nun and her bodyguard at the hospital where she worked in Islamist-controlled Mogadishu , Somalia . NNS VBP VBN CC VBN DT NNP NNP NN CC PRP$ NN IN DT NN WRB PRP VBD IN JJ NNP , NNP . Some witnesses to the Sunday shooting said they feared the attack was linked to Muslim anger toward Pope Benedict . DT NNS TO DT NNP NN VBD PRP VBD DT NN VBD VBN IN NN NN IN NNP NNP . Two men with pistols attacked the nun , Sister Leonella Sgorbati , after she finished teaching a medical school class at the hospital in southern Mogadishu . CD NNS IN NNS VBD DT NN , NNP NNP NNP , IN PRP VBD VBG DT JJ NN NN IN DT NN IN JJ NNP . Officials say one suspect was arrested . NNS VBP CD NN VBD VBN . In Rome , a Vatican spokesman deplored the attack and said he hoped it was an isolated event , and not irrationality arising from comments made by the Pope which angered some Muslims . IN NNP , DT NNP NN VBD DT NN CC VBD PRP VBD PRP VBD DT JJ NN , CC RB JJ VBG IN NNS VBN IN DT NN WDT VBD DT NNS . Authorities in Mogadishu have not determined a motive for the shooting . NNS IN NNP VBP RB VBN DT NN IN DT NN . The pope has said he meant no offense to Muslims when he quoted a 14 century Byzantine emperor as saying some teachings of the Prophet Muhammed brought evil to the world . DT NN VBZ VBN PRP VBD DT NN TO NNPS WRB PRP VBD DT CD NN NNP NN IN VBG DT NNS IN DT NNP NNP VBD NN TO DT NN . Pakistani forces have targeted militants in the northwest for a third day , launching airstrikes that they say killed at least nine suspected insurgents . JJ NNS VBP VBN NNS IN DT NN IN DT JJ NN , VBG NNS IN PRP VBP VBN IN JJS CD JJ NNS . Helicopter gunships Saturday pounded militant hideouts in the Orakzai tribal region , where many Taliban militants are believed to have fled to avoid an earlier military offensive in nearby South Waziristan . NN NNS NNP VBD JJ NNS IN DT NNP JJ NN , WRB JJ NNP NNS VBP VBN TO VB VBN TO VB DT JJR JJ NN IN JJ NNP NNP . The Pakistani military launched its offensive in Orakzai to hunt Taliban insurgents . DT JJ NN VBD PRP$ NN IN NNP TO VB NNP NNS . So far , nearly 100 militants have been reported killed in the region since Thursday . RB RB , RB CD NNS VBP VBN VBN VBN IN DT NN IN NNP . On Friday , five soldiers were killed when dozens of militants stormed a military checkpoint in Orakzai . IN NNP , CD NNS VBD VBN WRB NNS IN NNS VBD DT JJ NN IN NNP . At least 32 suspected militants were killed when troops launched a counter-attack . IN JJS CD JJ NNS VBD VBN WRB NNS VBD DT NN . Elsewhere in the northwest , authorities on Saturday found the bodies of six people who had been shot dead in the Kurram region along the Afghan border . RB IN DT JJS , NNS IN NNP VBD DT NNS IN CD NNS WP VBD VBN VBN RB IN DT NNP NN IN DT JJ NN . The six were kidnapped a few days ago . DT CD VBD VBN DT JJ NNS RB . The U.S. military in Afghanistan says coalition forces killed 14 Taleban militants in separate clashes this week . DT NNP NN IN NNP VBZ NN NNS VBD CD NNP NNS IN JJ NNS DT NN . The military said Saturday 13 guerrillas were killed in two encounters in the central province of Uruzgan . DT NN VBD NNP CD NNS VBD VBN IN CD NNS IN DT JJ NN IN NNP . One Afghan soldier was killed and four others , including a U.S. soldier , were injured in the fighting . CD JJ NN VBD VBN CC CD NNS , VBG DT NNP NN , VBD VBN IN DT NN . Another militant was killed by U.S. troops in eastern Paktika province . DT NN VBD VBN IN NNP NNS IN JJ NNP NN . Separately , officials say four British soldiers from the NATO-led peacekeeping mission were wounded early Saturday in an attack in the northern city of Mazar-e-Sharif . RB , NNS VBP CD JJ NNS IN DT JJ NN NN VBD VBN JJ NNP IN DT NN IN DT JJ NN IN NNP . It was not immediately clear what motivated the attack . PRP VBD RB RB JJ WP VBN DT NN . Taleban rebels are not known to operate in northern Afghanistan and the area has been spared much of the bloodshed that has plagued southern and eastern regions . NNP NNS VBP RB VBN TO VB IN JJ NNP CC DT NN VBZ VBN VBN RB IN DT NN DT VBZ VBN JJ CC JJ NNS . Russian officials say at least five more people have died from a wave of extremely cold weather gripping the nation , bringing the death toll to 43 in the past week . JJ NNS VBP IN JJS CD JJR NNS VBP VBN IN DT NN IN RB JJ NN VBG DT NN , VBG DT NN NN TO CD IN DT JJ NN . Emergency medical officials say the five victims died in Moscow from exposure , and another 19 people are hospitalized with hypothermia . NN JJ NNS VBP DT CD NNS VBD IN NNP IN NN , CC DT CD NNS VBP VBN IN NN . Russia 's Itar-Tass news agency quotes a medical official as saying some of the victims were intoxicated or homeless . NNP POS NNP NN NN VBZ DT JJ NN IN VBG DT IN DT NNS VBD JJ CC JJ . The unusually cold weather is affecting Russia , the Baltic states of Lithuania , Latvia and Estonia , and is moving into the Nordic countries . DT RB JJ NN VBZ VBG NNP , DT JJ NNS IN NNP , NNP CC NNP , CC VBZ VBG IN DT JJ NNS . The death toll is expected to rise as temperatures continue to hover around minus 30 degrees Celsius or lower overnight . DT NN NN VBZ VBN TO VB IN NNS VBP TO VB IN NN CD NNS NNP CC JJR JJ . Emergency power rationing has been put into effect around Moscow . NN NN NN VBZ VBN VBN IN NN IN NNP . Health officials in Vietnam say a deadly strain of the bird flu virus has killed a second Vietnamese man this week , raising the country 's death toll from the virus to 50 . NN NNS IN NNP VBP DT JJ NN IN DT NN NN NN VBZ VBN DT JJ JJ NN DT NN , VBG DT NN POS NN NN IN DT NN IN CD . Officials say the 27-year old man from Vietnam 's northern Ninh Binh province died late Thursday and tested positive for the H5N1 strain of bird flu . NNS VBP DT JJ JJ NN IN NNP POS JJ NNP NNP NN VBD JJ NNP CC VBD JJ IN DT NNP NN IN NN NN . Officials say the man fell ill after slaughtering two chickens at his home . NNS VBP DT NN VBD RB IN VBG CD NNS IN PRP$ NN . He is the third person to die from avian influenza in Vietnam this year . PRP VBZ DT JJ NN TO VB IN JJ NN IN NNP DT NN . Not counting the latest death , the World Health Organization says 227 people around the world have died from bird flu since 2003 . RB VBG DT JJS NN , DT NNP NNP NNP VBZ CD NNS IN DT NN VBP VBN IN NN NN IN CD . Most of the world 's cases , 103 , have occurred in Indonesia . JJS IN DT NN POS NNS , CD , VBP VBN IN NNP . Witnesses in Somalia say insurgents have burned and dragged the bodies of at least two soldiers through the streets of Mogadishu , after a clash between militants and Ethiopian forces killed seven people . NNS IN NNP VBP NNS VBP VBN CC VBN DT NNS IN IN JJS CD NNS IN DT NNS IN NNP , IN DT NN IN NNS CC JJ NNS VBD CD NNS . The violence erupted Wednesday after insurgents attacked Ethiopian tanks rolling through an insurgent stronghold near the headquarters of the former Defense Ministry in southern Mogadishu . DT NN VBD NNP IN NNS VBD JJ NNS VBG IN DT JJ NN IN DT NN IN DT JJ NNP NNP IN JJ NNP . Witnesses say the Ethiopian troops returned heavy fire and that several people were wounded in the fighting . NNS VBP DT JJ NNS VBD JJ NN CC IN JJ NNS VBD VBN IN DT NN . Ethiopia deployed soldiers to Somalia last December to help the interim government push an Islamist movement from power . NNP VBD NNS IN NNP JJ NNP TO VB DT JJ NN VB DT JJ NN IN NN . Somalia 's internationally-recognized government has since been struggling to contain regular outbursts of violence by fighters loyal to the fallen Islamist movement . NNP POS JJ NN VBZ IN VBN VBG TO VB JJ NNS IN NN IN NNS JJ TO DT JJ NNP NN . The African Union has deployed troops to Somalia to replace the Ethiopian forces , which Addis Ababa plans to withdraw . DT NNP NNP VBZ VBN NNS TO NNP TO VB DT JJ NNS , WDT NNP NNP VBZ TO VB . Top Palestinian negotiator Ahmed Qureia says Israeli and Palestinian mediators have agreed to prepare a document outlining their progress toward a peace accord . JJ JJ NN NNP NNP VBZ JJ CC JJ NNS VBP VBN TO VB DT NN VBG PRP$ NN IN DT NN NN . In remarks to reporters , Qureia said the two sides agreed during recent meetings to begin writing out their positions on all issues discussed during peace negotiations . IN NNS TO NNS , NNP VBD DT CD NNS VBD IN JJ NNS TO VB VBG RP PRP$ NNS IN DT NNS VBN IN NN NNS . He did not elaborate on why negotiators had come to the decision . PRP VBD RB VB IN WRB NNS VBD VBN TO DT NN . Israeli Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas resumed U.S.-brokered peace talks last November , but progress has been slow . JJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBD JJ NN NNS JJ NNP , CC NN VBZ VBN JJ . The two sides have expressed hope at reaching a peace deal before U.S. President George Bush leaves office early next year . DT CD NNS VBP VBN NN IN VBG DT NN NN IN NNP NNP NNP NNP VBZ NN RB JJ NN . But Qureia said Wednesday that reaching a peace agreement with Israel before Mr. Bush leaves office will take a ' miracle . ' CC NNP VBD NNP IN VBG DT NN NN IN NNP IN NNP NNP VBZ NN MD VB DT `` NN . `` He told reporters in the West Bank that there is still room for progress in Israeli-Palestinian negotiations . PRP VBD NNS IN DT NNP NNP IN EX VBZ RB NN IN NN IN JJ NNS . The Israeli military says Major General Udi Adam - the head of the army 's Northern Command - has announced his resignation . DT JJ NN VBZ NNP NNP NNP NNP IN DT NN IN DT NN POS NNP NNP : VBZ VBN PRP$ NN . A military statement Wednesday , said General Adam has asked to leave his post ' as soon as possible , ' and the chief of staff has accepted the request to begin the process of his replacement . DT JJ NN NNP , VBD NNP NNP VBZ VBN TO VB PRP$ NN `` RB RB IN JJ , `` CC DT NN IN NN VBZ VBN DT NN TO VB DT NN IN PRP$ NN . Adam was widely expected to leave the army after he was pushed aside near the end of the 34-day war against Hezbollah guerrillas in Lebanon . NNP VBD RB VBN TO VB DT NN IN PRP VBD VBN RB IN DT NN IN DT JJ NN IN NNP NNS IN NNP . He was replaced by another general as ' coordinator of operations in Lebanon . ' PRP VBD VBN IN DT JJ IN `` NN IN NNS IN NNP . `` Israeli media say Adam had several disagreements with the army chief , Lieutenant General Dan Halutz , over the conduct of the war . JJ NNS VBP NNP VBD JJ NNS IN DT NN NN , NNP NNP NNP NNP , IN DT NN IN DT NN . A Washington-based research institute says Pakistan is building a nuclear reactor that could produce enough plutonium for 40 to 50 nuclear weapons a year . DT JJ NN NN VBZ NNP VBZ VBG DT JJ NN WDT MD VB JJ NN IN CD IN CD JJ NNS DT NN . The Institute for Science and International Security reports that satellite photos show a possible construction site for a larger nuclear reactor near the small one in the Khushab district of Punjab province . DT NNP IN NNP CC NNP NNP VBZ IN NN NNS VBP DT JJ NN NN IN DT JJR JJ NN IN DT JJ CD IN DT NNP NN IN NNP NN . The report says such a reactor could produce over 200 kilograms of weapons-grade plutonium , good for 40 to 50 nuclear weapons a year . DT NN VBZ JJ DT NN MD VB IN CD NNS IN JJ NN , JJ IN CD TO CD JJ NNS DT NN . According to some media reports , Pakistan is now capable of producing plutonium for just two warheads a year . VBG TO DT NNS NNS , NNP VBZ RB JJ IN VBG NN IN RB CD NNS DT NN . Pakistan 's Foreign Ministry spokeswoman Tasnim Aslam declined to say whether a new reactor is being constructed , but she said the presence of a nuclear weapons program and facilities at Khushab are well known . NNP POS NNP NNP NN NNP NNP VBD TO VB IN DT JJ NN VBZ VBG VBN , CC PRP VBD DT NN IN DT JJ NNS NN CC NNS IN NNP VBP RB VBN . The American Diabetes Association reports the disease is the leading cause of new cases of blindness among adults . DT NNP NNP NNP VBZ DT NN VBZ DT VBG NN IN JJ NNS IN NN IN NNS . It is the leading cause of kidney failure . PRP VBZ DT VBG NN IN NN NN . The rate of amputation is 10 times higher among those who suffer from the disease . DT NN IN NN VBZ CD NNS JJR IN DT WP VBP IN DT NN . Experts say those who learn how to manage the disease early , can live healthier and more normal lives . NNS VBP DT WP VBP WRB TO VB DT NN RB , MD VB JJR CC JJR JJ NNS . VOA 's June Soh found camps that provide children with this chronic disease a positive approach to living with diabetes while letting them just be kids . NNP POS NNP NNP VBD NNS WDT VBP NNS IN DT JJ NN DT JJ NN TO VBG IN NNS IN VBG PRP RB VB NNS . Amy Katz Narrates . NNP NNP VBZ . Cuba and Panama have said they will restore consular relations , months after Havana broke ties with Panama City for pardoning four men convicted in connection with an assassination attempt against Cuban President Fidel Castro . NNP CC NNP VBP VBN PRP MD VB JJ NNS , NNS IN NNP VBD NNS IN NNP NNP IN VBG CD NNS VBN IN NN IN DT NN NN IN JJ NNP NNP NNP . The countries agreed to reopen their consulates , following a meeting Friday between Panamanian President Martin Torrijos and Cuban Vice President Carlos Lage . DT NNS VBD TO VB PRP$ NNS , VBG DT NN NNP IN JJ NNP NNP NNP CC JJ NNP NNP NNP NNP . The meeting took place on the sidelines of the Ibero-American Summit in San Jose , Costa Rica , where heads of state were meeting to discuss a candidate to head the Organization of American States and other regional issues . DT NN VBD NN IN DT NNS IN DT JJ NNP IN NNP NNP , NNP NNP , WRB NNS IN NN VBD VBG TO VB DT NN TO VB DT NNP IN NNP NNPS CC JJ JJ NNS . Cuba severed ties with Panama in August , hours after Panamanian President Mireya Moscoso , in her final days in office , pardoned the men , preventing their extradition to Cuba . NNP VBD NNS IN NNP IN NNP , NNS IN JJ NNP NNP NNP , IN PRP$ JJ NNS IN NN , VBD DT NNS , VBG PRP$ NN IN NNP . They were convicted of plotting to kill Mr. Castro during the 2000 Ibero-American summit in Panama City . PRP VBD VBN IN VBG TO VB NNP NNP IN DT CD JJ NN IN NNP NNP . The Israeli army has killed a Palestinian youth in the northern Gaza Strip and wounded at least three other people . DT JJ NN VBZ VBN DT JJ NN IN DT JJ NNP NNP CC VBN IN JJS CD JJ NNS . The army says it targeted a man who was collecting a rocket launcher from an area used to fire rockets at Israel recently . DT NN VBZ PRP VBD DT NN WP VBD VBG DT NN NN IN DT NN VBN TO VB NNS IN NNP RB . Palestinian medical sources say the Israeli strike killed a teenager . JJ JJ NNS VBP DT JJ NN VBD DT NN . The Israeli military began an offensive in Gaza after militants kidnapped an Israeli soldier in June . DT JJ NN VBD DT NN IN NNP IN NNS VBD DT JJ NN IN NNP . More than 200 Palestinians have been killed in the offensive . JJR IN CD NNS VBP VBN VBN IN DT NN . On Sunday , Palestinian Prime Minister Ismail Haniyeh said his Hamas-led government will not recognize Israel . IN NNP , JJ NNP NNP NNP NNP VBD PRP$ JJ NN MD RB VB NNP . He said an Arab peace plan for the region is problematic because it requires Palestinians to recognize Israel in exchange for an Israeli pullout from Palestinian territories . PRP VBD DT JJ NN NN IN DT NN VBZ JJ IN PRP VBZ NNS TO VB NNP IN NN IN DT JJ NN IN JJ NNS . He spoke after a week of deadly political infighting between Hamas and the rival Fatah party of President Mahmoud Abbas . PRP VBD IN DT NN IN JJ JJ NN IN NNP CC DT JJ NNP NN IN NNP NNP NNP . U.S. automaker Chrysler has opened a $ 570 million engine plant in northern Mexico . NNP NN NNP VBZ VBN DT $ CD CD NN NN IN JJ NNP . During the ceremonial startup of the Saltillo plant Friday , Mexican President Felipe Calderon said Chrysler 's sixth plant in Mexico will create 700 jobs . IN DT JJ NN IN DT NNP NN NNP , JJ NNP NNP NNP VBD NNP POS JJ NN IN NNP MD VB CD NNS . Mr. Calderon said Mexico has become a worldwide leader in the auto industry . NNP NNP VBD NNP VBZ VBN DT JJ NN IN DT NN NN . Chrysler plans to build its new fuel-efficient Pentastar V-6 engine for Chrysler , Dodge , Jeep and Ram vehicles . NNP VBZ TO VB PRP$ JJ JJ NNP NNP NN IN NNP , NNP , NNP CC NNP NNS . Mexican officials say the new plant will have the capacity to build 4,40,000 engines per year . JJ NNS VBP DT JJ NN MD VB DT NN TO VB CD NNS IN NN . A U.S. jury has found that drug maker Merck is not liable for the heart attack suffered by a man taking its painkiller Vioxx . DT NNP NN VBZ VBN IN NN NN NNP VBZ RB JJ IN DT NN NN VBN IN DT NN VBG PRP$ NN NNP . The New Jersey jurists agreed with Merck that job stress and health risks caused the 60-year old postal worker to have a heart attack four years ago . DT NNP NNP NNS VBD IN NNP IN NN NN CC NN NNS VBD DT JJ JJ JJ NN TO VB DT NN NN CD NNS RB . The plaintiff argued Vioxx was responsible . DT NN VBD NNP VBD JJ . The jury also rejected the man 's claim that Merck failed to properly warn users about the drug 's risks . DT NN RB VBD DT NN POS NN IN NNP VBD TO RB VB NNS IN DT NN POS NNS . Merck withdrew the popular drug last year after a study showed it doubled the risk of heart problems in long-term users . NNP VBD DT JJ NN JJ NN IN DT NN VBD PRP VBD DT NN IN NN NNS IN JJ NNS . Merck is facing thousands of other lawsuits over Vioxx . NNP VBZ VBG NNS IN JJ NNS IN NNP . Thursday 's verdict is only the second in a Vioxx case . NNP POS NN VBZ RB DT NN IN DT NNP NN . In the first , Merck was ordered to pay millions of dollars to the widow of a Vioxx user . IN DT JJ , NNP VBD VBN TO VB NNS IN NNS TO DT NN IN DT NNP NN . Merck is appealing that decision . NNP VBZ VBG DT NN . The rumors are TRUE : Nicole Ritchie is pregnant . DT NNS VBP JJ IN NNP NNP VBZ JJ . Speaking to ABC News interviewer Dianne Sawyer , the 25-year-old co-star of TV 's The Simple Life said she is almost four months along in her pregnancy . VBG TO NNP NNP NN NNP NNP , DT JJ NN IN NN POS DT NNP NNP VBD PRP VBZ RB CD NNS IN IN PRP$ NN . She said the father is her boyfriend , Joel Madden of the rock band Good Charlotte . PRP VBD DT NN VBZ PRP$ NN , NNP NNP IN DT JJ NN NNP NNP . Ritchie also spoke about her guilty plea last week to driving under the influence and the resulting four-day jail sentence . NNP RB VBD IN PRP$ JJ NN JJ NN TO VBG IN DT NN CC DT VBG JJ NN NN . ' I have a responsibility and it 's something that I did wrong , and if I could personally apologize to every single person that has lost a loved one from drunk driving , I would , ' she said . `` PRP VBP DT NN CC PRP VBZ DT IN PRP VBD JJ , CC IN PRP MD RB VB TO DT JJ NN WDT VBZ VBN DT JJ CD IN JJ NN , PRP MD , `` PRP VBD . ' And unfortunately I ca n't , but this is my way of paying my dues and taking responsibility and being an adult . ' `` CC RB PRP MD RB , CC DT VBZ PRP$ NN IN VBG PRP$ NNS CC VBG NN CC VBG DT NN . `` The interview airs August 2 and 3 on Good Morning America , and later August 3 on 20/20 . DT NN VBZ NNP CD CC CD IN NNP NNP NNP , CC RB NNP CD IN NNP . U.S. Senator John Warner of the southeastern state of Virginia , a prominent Republican figure in the debate over the war in Iraq , says he will retire after finishing his term in 2009 . NNP NNP NNP NNP IN DT JJ NN IN NNP , DT JJ JJ NN IN DT NN IN DT NN IN NNP , VBZ PRP MD VB IN VBG PRP$ NN IN CD . Warner told supporters outside of the University of Virginia Friday that he will not seek a sixth term in the 2008 elections . NNP VBD NNS IN IN DT NNP IN NNP NNP IN PRP MD RB VB DT JJ NN IN DT CD NNS . The former chairman of the powerful Senate Armed Services Committee has openly criticized President Bush 's handling of the war in Iraq . DT JJ NN IN DT JJ NNP NNP NNP NNP VBZ RB VBN NNP NNP POS NN IN DT NN IN NNP . He called on Mr. Bush earlier this month to begin withdrawing some U.S. troops from Iraq . PRP VBD IN NNP NNP RBR DT NN TO VB VBG DT NNP NNS IN NNP . His retirement will leave open what would have been a relatively safe seat for Republicans in the fight for Senate control in the elections . PRP$ NN MD VB JJ WP MD VB VBN DT RB JJ NN IN NNS IN DT NN IN NNP NN IN DT NNS . Democrats will now have a better chance to protect or expand their one-seat majority in the Senate . NNS MD RB VB DT JJR NN TO VB CC VB PRP$ JJ NN IN DT NNP . When he leaves office , the 80-year-old former Navy secretary will have served 30 years as a U.S. senator . WRB PRP VBZ NN , DT JJ JJ NNP NN MD VB VBN CD NNS IN DT NNP NN . The United Nations says December 's Indian Ocean tsunami caused around $ 520 million in damage to fishing industries in seven of the worst hit countries . DT NNP NNP VBZ NNP POS NNP NNP NN VBD IN $ CD CD IN NN TO NN NNS IN CD IN DT RBS VBN NNS . The U.N. 's Food and Agricultural Organization ( FAO ) said the tsunami destroyed or damaged more than 1,11,000 fishing vessels in the region . DT NNP POS NNP CC NNP NNP LRB NNP RRB VBD DT NN VBD CC VBD JJR IN CD NN NNS IN DT NN . It said the loss was significant in a region where fishing provides a vital source of food . PRP VBD DT NN VBD JJ IN DT NN WRB NN VBZ DT JJ NN IN NN . The FAO 's estimate includes damage to fishing industries in Indonesia , Maldives , Somalia , Sri Lanka and Thailand . DT NNP POS NN VBZ NN TO NN NNS IN NNP , NNP , NNP , NNP NNP CC NNP . The agency says it has sent experts to help rebuild fishing industry infrastructure lost in the disaster and is developing strategies for long-term recovery in the region . DT NN VBZ PRP VBZ VBN NNS TO VB VB NN NN NN VBN IN DT NN CC VBZ VBG NNS IN JJ NN IN DT NN . Officials in Indonesia say another person has died from bird flu , bringing the country 's death toll from the disease to 96 since the outbreak started in 2003 . NNS IN NNP VBP DT NN VBZ VBN IN NN NN , VBG DT NN POS NN NN IN DT NN TO CD IN DT NN VBD IN CD . The latest victim was a 16-year-old girl from the town of Bekasi , on the eastern outskirts of Jakarta . DT JJS NN VBD DT JJ NN IN DT NN IN NNP , IN DT JJ NNS IN NNP . Officials say she died Tuesday . NNS VBP PRP VBD NNP . Monday , officials reported that a 32-year-old woman from an area just west of Jakarta died of bird flu last week , at her home in the city of Tangerang . NNP , NNS VBD IN DT JJ NN IN DT NN RB JJS IN NNP VBD IN NN NN JJ NN , IN PRP$ NN IN DT NN IN NNP . A statement from the health ministry said the woman 's family kept chickens in their backyard . DT NN IN DT NN NN VBD DT NN POS NN VBD NNS IN PRP$ NN . Humans are usually infected with bird flu by direct contact with infected poultry , but experts fear the H5N1 virus may mutate into a form easily transmitted between people . NNS VBP RB VBN IN NN NN IN JJ NN IN JJ NN , CC NNS VBP DT NNP NN MD VB IN DT NN RB VBN IN NNS . Scientists fear such a mutation could spark a global pandemic with a potential death toll of millions . NNS VBP JJ DT NN MD VB DT JJ NN IN DT JJ NN NN IN NNS . Thailand says it has photo evidence to prove its claim that Islamic militants responsible for violence in Thailand 's Muslim-majority south are training in neighboring Malaysia . NNP VBZ PRP VBZ NN NN TO VB PRP$ NN IN NNP NNS JJ IN NN IN NNP POS JJ NN VBP VBG IN VBG NNP . Thai Deputy Interior Minister Sutham Saengprathum says the photos show the militants training in Malaysia 's northern Kelantan state , which borders southern Thailand . JJ NNP NNP NNP NNP NNP VBZ DT NNS VBP DT NNS VBG IN NNP POS JJ NNP NN , WDT VBZ JJ NNP . He said if Malaysia wants to see the photos , Bangkok will provide them . PRP VBD IN NNP VBZ TO VB DT NNS , NNP MD VB PRP . Thai Prime Minister Thaksin Shinawatra has said he believes some of the insurgents have been trained in Malaysia , Indonesia and southern Thailand . JJ NNP NNP NNP NNP VBZ VBN PRP VBZ DT IN DT NNS VBP VBN VBN IN NNP , NNP CC JJ NNP . Malaysia and Indonesia have demanded proof of Bangkok 's allegations . NNP CC NNP VBP VBN NN IN NNP POS NNS . More than 500 people have been killed this year in an insurgency that some say is supported by extremist Muslims in Indonesia and Malaysia . JJR IN CD NNS VBP VBN VBN DT NN IN DT NN IN DT VBP VBZ VBN IN NN NNS IN NNP CC NNP . Anti-Japanese protests in the western Chinese city of Shanghai turned violent Saturday , with protesters pelting the Japanese consulate with rocks , bottles and eggs . JJ NNS IN DT JJ JJ NN IN NNP VBD JJ NNP , IN NNS VBG DT JJ NN IN NNS , NNS CC NNS . Several thousand people took to the streets of Shanghai as part of a new wave of anti-Japanese protests over Japan 's bid for a permanent seat on the U.N. Security Council and Tokyo 's alleged downplaying of war atrocities . JJ CD NNS VBD TO DT NNS IN NNP IN NN IN DT JJ NN IN JJ NNS IN NNP POS NN IN DT JJ NN IN DT NNP NNP NNP CC NNP POS JJ NN IN NN NNS . In Beijing , police are out in force waiting for protests to begin in the capital . IN NNP , NNS VBP RB IN NN VBG IN NNS TO VB IN DT NN . State Councilor Tang Jiaxuan told the official Xinhua news agency that China 's government is urging people to protest in a calm and orderly manner . NNP NNP NNP NNP VBD DT JJ NNP NN NN IN NNP POS NN VBZ VBG NNS TO VB IN DT JJ CC JJ NN . Japan 's Foreign Minister , Nobutaka Machimura , arrives Sunday in Beijing for talks with his Chinese counterpart , Li Zhaoxing , to discuss relations between the two countries . NNP POS NNP NNP , NNP NNP , VBZ NNP IN NNP IN NNS IN PRP$ JJ NN , NNP NNP , TO VB NNS IN DT CD NNS . Organizers of the 2012 Summer Olympics in London have promised the ' greenest games ' in history and sought to soothe concerns about the rising cost of the event . NNS IN DT CD NNP NNPS IN NNP VBP VBN DT `` JJS NNS `` IN NN CC VBD TO VB NNS IN DT VBG NN IN DT NN . With 2,012 days to go until the Games get under way , organizers said the design would champion low waste , low carbon emissions and environmentally friendly transportation . IN CD NNS TO VB IN DT NNPS VBP IN NN , NNS VBD DT NN MD JJ JJ NN , JJ NN NNS CC RB JJ NN . The Olympic Delivery Authority has promised to cut emissions 50 percent by generating energy on site and using renewable energy . DT NNP NNP NNP VBZ VBN TO VB NNS CD NN IN VBG NN IN NN CC VBG JJ NN . Prime Minister Tony Blair said London is farther ahead in preparations at this stage than any other previous Olympic host city . NNP NNP NNP NNP VBD NNP VBZ RB RB IN NNS IN DT NN IN DT JJ JJ JJ NN NN . The British government wants to have the Olympic budget finalized early this year , but costs have already risen substantially since London won the bid in July of 2005 . DT JJ NN VBZ TO VB DT NNP NN VBN RB DT NN , CC NNS VBP RB VBN RB IN NNP VBD DT NN IN NNP IN CD . A select committee report due Wednesday is expected to be highly critical of the government 's financing of the Games . DT JJ NN NN JJ NNP VBZ VBN TO VB RB JJ IN DT NN POS NN IN DT NNPS . China 's giant pandas have been on endangered species lists for nearly 30 years . NNP POS JJ NNS VBP VBN IN JJ NNS NNS IN RB CD NNS . There are only about 1,600 pandas still living in the wild in China . EX VBP RB IN CD NNS RB VBG IN DT NN IN NNP . One of the 2008 Olympic mascots is modeled on a panda called Jing Jing . CD IN DT CD JJ NNS VBZ VBN IN DT NN VBN NNP NNP . Conservationists hope she will help draw attention to the threats facing the giant panda -- one of China 's national symbols . NNS VBP PRP MD VB VB NN TO DT NNS VBG DT JJ NN IN CD IN NNP POS JJ NNS . Sam Beattie reports from Jing Jing 's home in Sichuan province . NNP NNP VBZ IN NNP NNP POS NN IN NNP NN . British defense officials say 14 British military personnel have been killed in a crash of a NATO aircraft in southern Afghanistan . JJ NN NNS VBP CD JJ JJ NNS VBP VBN VBN IN DT NN IN DT NNP NN IN JJ NNP . A NATO spokesman says the aircraft went off the radar and crashed in an open area near Kandahar Saturday . DT NNP NN VBZ DT NN VBD IN DT NN CC VBD IN DT JJ NN IN NNP NNP . Officials say the aircraft was supporting a NATO mission in the country 's south , but there is no indication of enemy action causing the crash . NNS VBP DT NN VBD VBG DT NNP NN IN DT NN POS NN , CC EX VBZ DT NN IN NN NN VBG DT NN . The crash comes as NATO forces launched an offensive to drive Taleban remnants out of Kandahar . DT NN VBZ IN NNP NNS VBD DT NN TO VB NNP NNS IN IN NNP . Officials say ' Operation Medusa ' is aimed at removing the Taleban threat so that stability , reconstruction and development can be achieved in the area . NNS VBP `` NNP NNP `` VBZ VBN IN VBG DT NNP NN RB IN NN , NN CC NN MD VB VBN IN DT NN . Sri Lankan authorities say a prominent Tamil journalist was found shot dead Friday in Colombo , hours after he was abducted by several attackers as he left a restaurant . NNP NNP NNS VBP DT JJ NNP NN VBD VBN VBN JJ NNP IN NNP , NNS IN PRP VBD VBN IN JJ NNS IN PRP VBD DT NN . Dharmeratnam Sivaram was a board member of the pro-rebel TamilNet Web site and a columnist for Sri Lanka 's english newspaper , the Daily Mirror . NNP NNP VBD DT NN NN IN DT JJ NNP NNP NN CC DT NN IN NNP NNP POS NNP NN , DT NNP NNP . Mr. Sivaram 's Web site became popular for ongoing reports on the Sri Lankan civil war and was a prominent supporter of the Tamil Tiger rebel movement . NNP NNP POS NNP NN VBD JJ IN JJ NNS IN DT NNP NNP JJ NN CC VBD DT JJ NN IN DT NNP NNP NN NN . Mr. Sivaram , who was also brutally attacked in 2001 , was found near a lake gagged with gunshot wounds to the head . NNP NNP , WP VBD RB RB VBN IN CD , VBD VBN IN DT NN VBN IN NN NNS TO DT NN . No one claimed responsibility for the killing . DT NN VBD NN IN DT NN . Japan and North Korea say they are considering a resumption of bilateral talks as part of efforts to normalize relations . NNP CC NNP NNP VBP PRP VBP VBG DT NN IN JJ NNS IN NN IN NNS TO VB NNS . Japanese media reported Monday that the two countries hope to arrange to hold the talks in Beijing in early November . JJ NNS VBD NNP IN DT CD NNS VBP TO VB TO VB DT NNS IN NNP IN JJ NNP . The talks could come before six-party talks on North Korea 's nuclear ambitions resume . DT NNS MD VB IN JJ NNS IN NNP NNP POS JJ NNS VBP . Japan and North Korea have not had formal bilateral talks for about a year . NNP CC NNP NNP VBP RB VBN JJ JJ NNS IN RB DT NN . Tokyo and Pyongyang are at odds over North Korea 's nuclear weapons program and the North 's kidnapping of Japanese citizens in the 1970s and 1980s . NNP CC NNP VBP IN NNS IN NNP NNP POS JJ NNS NN CC DT NNP POS NN IN JJ NNS IN DT NNS CC NNS . A human rights group has accused coalition forces in Iraq of failing to secure evidence considered vital to the upcoming war crimes trial of former Iraqi leader Saddam Hussein . DT JJ NNS NN VBZ VBN NN NNS IN NNP IN VBG TO VB NN VBN JJ TO DT JJ NN NNS NN IN JJ JJ NN NNP NNP . Human Rights Watch , in a report released Thursday , said coalition forces failed to stop people from stealing thousands of Iraqi government documents in the months after the 2003 invasion of Iraq . NNP NNP NNP , IN DT NN VBN NNP , VBD NN NNS VBD TO VB NNS IN VBG NNS IN JJ NN NNS IN DT NNS IN DT CD NN IN NNP . The group also accused troops of failing to stop people from damaging several mass graves in the war-torn country . DT NN RB VBD NNS IN VBG TO VB NNS IN VBG JJ NN NNS IN DT JJ NN . The Associated Press quotes a U.S. Defense Department spokeswoman as saying it has not reviewed the report . DT NNP NNP VBZ DT NNP NNP NNP NN IN VBG PRP VBZ RB VBN DT NN . Saddam Hussein was arraigned in July at a U.S. military base on the outskirts of Baghdad . NNP NNP VBD VBN IN NNP IN DT NNP NN NN IN DT NNS IN NNP . He faces charges of war crimes , genocide and crimes against humanity . PRP VBZ NNS IN NN NNS , NN CC NNS IN NN . Egypt 's government and the World Health Organization say three Egyptian children have been hospitalized with the deadly form of avian flu . NNP POS NN CC DT NNP NNP NNP VBP CD JJ NNS VBP VBN VBN IN DT JJ NN IN JJ NN . The children come from different parts of the country . DT NNS VBP IN JJ NNS IN DT NN . WHO says they are receiving treatment and are in stable condition . NNP VBZ PRP VBP VBG NN CC VBP IN JJ NN . The organization says the children had a history of contact with dead birds . DT NN VBZ DT NNS VBD DT NN IN NN IN JJ NNS . Thirty two Egyptians have contracted the H5N1 form of avian flu . CD CD NNS VBP VBN DT NNP NN IN JJ NN . Thirteen of them have died . CD IN PRP VBP VBN . Egypt has had the largest number of human bird flu cases outside of Asia . NNP VBZ VBN DT JJS NN IN JJ NN NN NNS IN IN NNP . The head of the U.N. investigation into the Iraq oil-for-food program says Saddam Hussein illegally obtained more money from oil smuggling than from corruption in the U.N. program . DT NN IN DT NNP NN IN DT NNP NN NN VBZ NNP NNP RB VBD JJR NN IN NN NN IN IN NN IN DT NNP NN . Former U.S. Federal Reserve Chairman Paul Volcker says the smuggling began before the start of the oil-for-food program , and was known to the United Nations Security Council . JJ NNP NNP NNP NNP NNP NNP VBZ DT NN VBD IN DT NN IN DT NN NN , CC VBD VBN TO DT NNP NNP NNP NNP . In an interview with the U.S. government-funded alHurra television station , Mr. Volcker said there is a lot of confusion about how much money Saddam obtained from the oil-for-food program itself . IN DT NN IN DT NNP JJ NNP NN NN , NNP NNP VBD EX VBZ DT NN IN NN IN WRB JJ NN NNP VBD IN DT NN NN PRP . He refused to provide specific estimates , but said large amounts that have been reported in the media were from smuggling and not from funds diverted from the program . PRP VBD TO VB JJ NNS , CC VBD JJ NNS WDT VBP VBN VBN IN DT NNS VBD IN VBG CC RB IN NNS VBN IN DT NN . The United Nations created the oil-for-food program after the first Gulf War to allow Iraq to sell oil and use the profits for the Iraqi people 's humanitarian needs . DT NNP NNPS VBD DT NN NN IN DT JJ NNP NNP TO VB NNP TO VB NN CC VB DT NNS IN DT JJ NNS POS JJ NNS . Kyrgyzstan 's Justice Ministry says four people , including parliament member Tynychbek Akmatbayev , have been killed at a prison near Bishkek after inmates took them hostage . NNP POS NNP NNP VBZ CD NNS , VBG NN NN NNP NNP , VBP VBN VBN IN DT NN IN NNP IN NNS VBD PRP NN . Interior Minister Murat Sutalinov is at the prison to head negotiations with the inmates . NNP NNP NNP NNP VBZ IN DT NN TO VB NNS IN DT NNS . The ministry gave no other details . DT NN VBD DT JJ NNS . It is not clear if the hostage-takers made any demands . PRP VBZ RB JJ IN DT NNS VBD DT NNS . Mr. Akmatbayev was involved in negotiations on Wednesday at another Kyrgyz prison where a riot over poor living conditions forced the staff to evacuate earlier this week . NNP NNP VBD VBN IN NNS IN NNP IN DT JJ NN WRB DT NN IN JJ NN NNS VBD DT NN TO VB RBR DT NN . That prison , also near Bishkek , remained surrounded by security forces on Thursday . DT NN , RB IN NNP , VBD VBN IN NN NNS IN NNP . A commercial airplane taking off from Western Europe has landed in Iraq for the first time in nearly 20 years . DT JJ NN VBG RP IN NNP NNP VBZ VBN IN NNP IN DT JJ NN IN RB CD NNS . The plane , operated by France 's Aigle Azur airline , took off from Charles De Gaulle airport in Paris late Saturday and touched down at Baghdad International Airport early Sunday . DT NN , VBN IN NNP POS NNP NNP NN , VBD RP IN NNP NNP NNP NN IN NNP JJ NNP CC VBD RP IN NNP NNP NNP JJ NNP . Officials said this first flight was largely ceremonial , and that most of the passengers were French diplomats and business leaders . NNS VBD DT JJ NN VBD RB JJ , CC IN JJS IN DT NNS VBD JJ NNS CC NN NNS . One of the passengers , French Foreign Trade Minister Anne-Marie Idrac , called it a historic day for cooperation between France and Iraq . CD IN DT NNS , JJ NNP NNP NNP NNP NNP , VBD PRP DT JJ NN IN NN IN NNP CC NNP . Regular service between Paris and Baghdad is not expected to start for at least several weeks . JJ NN IN NNP CC NNP VBZ RB VBN TO VB IN IN JJS JJ NNS . Aigle Azur is just one of a number of airlines to start flying to Baghdad . NNP NNP VBZ RB CD IN DT NN IN NNS TO VB VBG TO NNP . Etihad and Emirates airlines , both operating out of the United Arab Emirates , started flying to Baghdad earlier this year . NNP CC NNP NNS , DT VBG IN IN DT NNP NNP NNPS , VBD VBG TO NNP RBR DT NN . A new government report shows U.S. businesses added a moderate 1,11,000 new jobs in January . DT JJ NN NN VBZ NNP NNS VBD DT JJ CD JJ NNS IN NNP . The Labor Department Friday issued a report that also showed the U.S. unemployment rate increased for the first time in three months - to 4.6 percent . DT NNP NNP NNP VBD DT NN WDT RB VBD DT NNP NN NN VBD IN DT JJ NN IN CD NNS IN IN CD NN . According to the report , American workers earned an average of $ 17.09 an hour in January - a slight increase from the previous month . VBG TO DT NN , JJ NNS VBD DT NN IN $ CD DT NN IN NNP IN DT JJ NN IN DT JJ NN . Analysts say the Department of Labor report will help ease worries that a tight labor market will significantly inflate wages and costs . NNS VBP DT NNP IN NNP NN MD VB VB NNS IN DT JJ NN NN MD RB VB NNS CC NNS . Earlier this week , the U.S. central bank decided to maintain a key interest rate , despite the risk of inflation . RBR DT NN , DT NNP JJ NN VBD TO VB DT JJ NN NN , IN DT NN IN NN . Venezuelan President Hugo Chavez has denounced Colombia 's defense minister as an obstacle to peace and a pawn of the United States . JJ NNP NNP NNP VBZ VBN NNP POS NN NN IN DT NN TO NN CC DT NN IN DT NNP NNPS . Mr. Chavez reacted sharply Sunday to the defense minister 's remarks about a meeting between Mr. Chavez and Colombian President Alvaro Uribe . NNP NNP VBD RB NNP TO DT NN NN POS NNS IN DT NN IN NNP NNP CC JJ NNP NNP NNP . The two presidents met Friday to try to mend ties between their countries . DT CD NNS VBD NNP TO VB TO VB NNS IN PRP$ NNS . After the meeting , Colombian Defense Minister Juan Manuel Santos said he hoped Venezuela would follow through with promises made during the meeting . IN DT NN , JJ NNP NNP NNP NNP NNP VBD PRP VBD NNP MD VB IN IN NNS VBN IN DT NN . During a televised speech Sunday , Mr. Chavez called on President Uribe to put his defense minister in his place . IN DT JJ NN NNP , NNP NNP VBD IN NNP NNP TO VB PRP$ NN NN IN PRP$ NN . Tensions between the two countries rose in March when Colombia attacked a rebel camp in Ecuador . NNS IN DT CD NNS VBD IN NNP WRB NNP VBD DT NN NN IN NNP . Venezuela responded by sending troops to the Colombian border . NNP VBD IN VBG NNS TO DT JJ NN . China has lashed out at a U.S. report critical of Chinese policies on religious freedom , saying such criticism could harm U.S. - China relations . NNP VBZ VBN RP IN DT NNP NN JJ IN JJ NNS IN JJ NN , VBG JJ NN MD VB NNP IN NNP NNS . In its annual report issued Wednesday , the U.S. Commission on International Religious Freedom said China continues to be responsible for pervasive and severe violations of religious freedom , regularly imprisoning and harassing religious leaders and practitioners . IN PRP$ JJ NN VBN NNP , DT NNP NNP IN NNP NNP NNP VBD NNP VBZ TO VB JJ IN JJ CC JJ NNS IN JJ NN , RB VBG CC VBG JJ NNS CC NNS . In a statement Saturday Chinese Foreign Ministry spokesman Liu Jianchao accused the U.S. body of attempting to interfere with Chinese internal affairs under the guise of religious freedom . IN DT NN NNP JJ NNP NNP NN NNP NNP VBD DT NNP NN IN VBG TO VB IN JJ JJ NNS IN DT NN IN JJ NN . He said such criticism runs counter to the good development of U.S - China relations . PRP VBD JJ NN VBZ NN TO DT JJ NN IN NNP IN NNP NNS . Liu said China protects the religious freedom of Chinese citizens according to law , and that citizens enjoy full freedom of religion . NNP VBD NNP VBZ DT JJ NN IN JJ NNS VBG TO NN , CC IN NNS VBP JJ NN IN NN . China 's communist government allows worship only in state-approved and state-monitored churches , temples and mosques . NNP POS JJ NN VBZ NN RB IN JJ CC JJ NNS , NNS CC NNS . People who worship in unauthorized ways are subject to arrest . NNS WP VBP IN JJ NNS VBP JJ TO NN . President Bush has issued 14 pardons to convicted criminals , and has commuted the prison sentences of two others . NNP NNP VBZ VBN CD NNS TO VBN NNS , CC VBZ VBN DT NN NNS IN CD NNS . The pardons , announced Monday , include no high-profile names . DT NNS , VBN NNP , VBP DT JJ NNS . They were for people convicted of such acts as bank embezzlement , making FALSE statements to the federal government , unlawfully killing wildlife , and committing drug offenses . PRP VBD IN NNS VBN IN JJ NNS IN NN NN , VBG JJ NNS TO DT JJ NN , RB VBG NN , CC VBG NN NNS . Including Monday 's actions , Mr. Bush has granted 171 pardons and commuted eight sentences while U.S. president . IN NNP POS NNS , NNP NNP VBZ VBN CD NNS CC VBN CD NNS IN NNP NN . Pardons are one of the president 's absolute powers , and in recent years it has become typical for the president to issue pardons as he prepares to leave office . NNS VBP CD IN DT NN POS JJ NNS , CC IN JJ NNS PRP VBZ VBN JJ IN DT NN TO VB NNS IN PRP VBZ TO VB NN . White House officials say he made the pardon decisions on a case-by-case basis , and will continue to review clemency requests . NNP NNP NNS VBP PRP VBD DT NN NNS IN DT JJ NN , CC MD VB TO VB NN NNS . Uganda 's government and rebels of the Lord 's Resistance Army are nearing a peace deal to end more than 20 years of conflict . NNP POS NN CC NNS IN DT NNP POS NN NNP VBP VBG DT NN NN TO VB JJR IN CD NNS IN NN . Officials close to the negotiations say an accord signed Friday provides for the disarmament and demobilization of the LRA . NNS RB TO DT NNS VBP DT NN VBN NNP VBZ IN DT NN CC NN IN DT NNP . The two sides signed a permanent cease-fire agreement last Saturday during peace talks in Sudan . DT CD NNS VBD DT JJ NN NN JJ NNP IN NN NNS IN NNP . However , there is still uncertainty the rebels will sign the final peace deal until rebel leader Joseph Kony is granted immunity from international prosecution . RB , EX VBZ RB NN DT NNS MD VB DT JJ NN NN IN NN NN NNP NNP VBZ VBN NN IN JJ NN . Kony is one of five LRA officials sought by the International Criminal Court for alleged war crimes . NNP VBZ CD IN CD NNP NNS VBN IN DT NNP NNP NNP IN JJ NN NNS . LRA fighters are accused of murdering thousands of civilians and raping and mutilating others during the long insurgency in northern Uganda . NNP NNS VBP VBN IN VBG NNS IN NNS CC VBG CC VBG NNS IN DT JJ NN IN JJ NNP . World number one men 's tennis player Roger Federer has been nearly unbeatable in the past year . NN NN CD NNS POS NN NN NNP NNP VBZ VBN RB JJ IN DT JJ NN . But his warmup for the Australian Open has abruptly ended with a rare loss . CC PRP$ NN IN DT NNP NNP VBZ RB VBN IN DT JJ NN . The Swiss star was upset Wednesday by German Tommy Haas in the opening match of the Kooyong Classic in Melbourne . DT JJ NN VBD VBN NNP IN JJ NNP NNP IN DT NN NN IN DT NNP NNP IN NNP . Because he was playing in exhibition tournament , the loss will not count on his Association of Tennis Professionals Tour record . IN PRP VBD VBG IN NN NN , DT NN MD RB VB IN PRP$ NN IN NNP NNPS NNP NN . The 41st ranked Haas fended off three break points while serving for the match and closed a 03-Jun , 06-Apr , 06-Apr win with an ace . DT CD VBN NNP VBD RP CD NN NNS IN VBG IN DT NN CC VBD DT CD , CD , CD NN IN DT NN . Federer said he is completely healthy and has no concerns that the ankle problem that curtailed his last season would flare up before the Australian Open , which starts Monday . NNP VBD PRP VBZ RB JJ CC VBZ DT NNS IN DT NN NN WDT VBD PRP$ JJ NN MD VB RP IN DT NNP NNP , WDT VBZ NNP . The European Space Agency says it has received the first images and scientific readings from the surface of Saturn 's moon Titan . DT NNP NNP NNP VBZ PRP VBZ VBN DT JJ NNS CC JJ NNS IN DT NN IN NNP POS NN NNP . Officials at agency headquarters in Germany Friday say information taken from the Huygens space probe show what looks like drainage channels on the moon . NNS IN NN NN IN NNP NNP VBP NN VBN IN DT NNP NN NN VBP WP VBZ IN NN NNS IN DT NN . They say the surface has canyons that were most likely caused by some type of liquid . PRP VBP DT NN VBZ NNS WDT VBD RBS JJ VBN IN DT NN IN NN . The space probe began transmitting data to the Cassini spacecraft while landing on Saturn 's largest moon earlier Friday . DT NN NN VBD VBG NNS TO DT NNP NN IN VBG IN NNP POS JJS NN RB NNP . Scientists say the information from Huygens - operated jointly by the American , European and Italian space agencies - may provide clues about how primitive Earth evolved into a life-bearing planet . NNS VBP DT NN IN NNP : VBN RB IN DT JJ , JJ CC JJ NN NNS : MD VB NNS IN WRB JJ NNP VBD IN DT JJ NN . Ugandan opposition leader Kizza Besigye has been released on bail , after a judge ruled his detention by the military was illegal . JJ NN NN NNP NNP VBZ VBN VBN IN NN , IN DT NN VBD PRP$ NN IN DT NN VBD JJ . Police fired tear gas to disperse hundreds of Dr. Besigye 's supporters who took to the streets in Kampala after his release Monday . NNS VBD JJ NN TO VB NNS IN NNP NNP POS NNS WP VBD TO DT NNS IN NNP IN PRP$ NN NNP . Uganda 's military had detained Dr. Besigye since November , when he returned from self-imposed exile to run against President Yoweri Museveni in next month 's presidential election . NNP POS NN VBD VBN NNP NNP IN NNP , WRB PRP VBD IN JJ NN TO VB IN NNP NNP NNP IN JJ NN POS JJ NN . A military tribunal has charged Dr. Besigye with terrorism and possessing illegal weapons . DT JJ NN VBZ VBN NNP NNP IN NN CC VBG JJ NNS . But a Ugandan High Court Judge , John Bosco Katutsi , said his detention was illegal because the High Court had suspended the military trial . CC DT JJ NNP NNP NN , NNP NNP NNP , VBD PRP$ NN VBD JJ IN DT NNP NNP VBD VBN DT JJ NN . Dr. Besigye still faces rape charges , for which a civilian trial began Monday . NNP NNP RB VBZ NN NNS , IN WDT DT JJ NN VBD NNP . He has denied all the charges , which supporters say were trumped up to keep him from running for president . PRP VBZ VBN PDT DT NNS , WDT NNS VBP VBD VBN RP TO VB PRP IN VBG IN NN . U.S. President Barack Obama says improvements in the American health care system are inevitable . NNP NNP NNP NNP VBZ NNS IN DT JJ NN NN NN VBP JJ . Mr. Obama made his comments in the White House Rose Garden Monday as he nominated an African-American woman , Regina Benjamin , to become the U.S. Surgeon General . NNP NNP VBD PRP$ NNS IN DT NNP NNP NNP NNP NNP IN PRP VBD DT JJ NN , NNP NNP , TO VB DT NNP NNP NNP . The president said ' naysayers and cynics ' should not bet against the passage of health insurance legislation . DT NN VBD `` NNS CC NNS `` MD RB VB IN DT NN IN NN NN NN . He also said inaction on the issue is not an option . PRP RB VBD NN IN DT NN VBZ RB DT NN . Mr. Obama has vowed to sign a health care bill into law this year . NNP NNP VBZ VBN TO VB DT NN NN NN IN NN DT NN . Democrats in the House of Representatives say they are nearly ready to unveil their health care reform plan . NNS IN DT NNP IN NNPS VBP PRP VBP RB JJ TO VB PRP$ NN NN NN NN . Controversy over extending health coverage to uninsured Americans centers on how to pay for it . NN IN VBG NN NN TO JJ NNS VBZ IN WRB TO VB IN PRP . It is expected to cost $ 1 trillion over 10 years . PRP VBZ VBN TO VB $ CD CD IN CD NNS . World Bank member nations meeting in Washington have approved a debt relief plan for 17 African and Latin American countries that could total $ 37 billion over 40 years . NNP NNP NN NNS VBG IN NNP VBP VBN DT NN NN NN IN CD JJ CC JJ JJ NNS WDT MD VB $ CD CD IN CD NNS . World Bank President Paul Wolfowitz said two-thirds of the bank members have now approved the plan , meaning the bank could start forgiving debts in July . NNP NNP NNP NNP NNP VBD NNS IN DT NN NNS VBP RB VBN DT NN , VBG DT NN MD VB VBG NNS IN NNP . The move follows July 's pledge from the wealthy G-8 countries to cancel the debt of the world 's poorest countries , many of which are located in Africa . DT NN VBZ NNP POS NN IN DT JJ NNP NNS TO VB DT NN IN DT NN POS JJS NNS , NN IN WDT VBP VBN IN NNP . The 17 countries now eligible for World Bank debt relief are Benin , Bolivia , Burkina Faso , Ethiopia , Ghana , Guyana , Honduras , Madagascar , Mali , Mozambique , Nicaragua , Niger , Rwanda , Senegal , Tanzania , Uganda and Zambia . DT CD NNS RB JJ IN NNP NNP NN NN VBP NNP , NNP , NNP NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP CC NNP . Iran has closed government offices and schools in Tehran for two days because of wind-blown dust that has polluted the capital . NNP VBZ VBN NN NNS CC NNS IN NNP IN CD NNS IN IN JJ NN WDT VBZ VBN DT NN . Government authorities have declared Tuesday and Wednesday a public holiday , and Iranian media say many domestic airline flights have been canceled . NN NNS VBP VBN NNP CC NNP DT JJ NN , CC JJ NNS VBP JJ JJ NN NNS VBP VBN VBN . Medical authorities are advising people with heart and respiratory problems to stay inside . JJ NNS VBP VBG NNS IN NN CC JJ NNS TO VB RB . Iran 's Press TV says Tehran 's Air Quality Control Company has found the amount of potentially harmful particulate in the air has reached dangerous levels . NNP POS NNP NNP VBZ NNP POS NNP NNP NNP NNP VBZ VBN DT NN IN RB JJ NN IN DT NN VBZ VBN JJ NNS . The dust has blown in from Saudi Arabia and neighboring Iraq , where a severe sandstorm recently blanketed the capital , Baghdad . DT NN VBZ VBN IN IN NNP NNP CC JJ NNP , WRB DT JJ NN RB VBD DT NN , NNP . Sandstorms can be caused by heavy winds blowing across deserts , or across land that has lost its fertile top soil and greenery . NNS MD VB VBN IN JJ NNS VBG IN NNS , CC IN NN WDT VBZ VBN PRP$ JJ JJ NN CC NN . Shortly before midnight a suicide bomber blew himself up in a crowd of young Israelis waiting to get into a beachfront nightclub in Tel Aviv . RB IN NN DT NN NN VBD PRP RP IN DT NN IN JJ NNS VBG TO VB IN DT NN NN IN NNP NNP . Israeli police say the bomber was spotted and prevented from entering the club . JJ NNS VBP DT NN VBD VBN CC VBN IN VBG DT NN . They say if he had gotten inside the carnage would have been even worse . PRP VBP IN PRP VBD VBN IN DT NN MD VB VBN RB RBR . It is unclear who was behind the attack with major Palestinian militant groups saying they had nothing to do with it . PRP VBZ JJ WP VBD IN DT NN IN JJ JJ NN NNS VBG PRP VBD DT TO VB IN PRP . A statement released by Palestinian President Mahmoud Abbas in Ramallah vowed to track down and punish those responsible , saying this was an attempt to sabotage the peace process . DT NN VBN IN JJ NNP NNP NNP IN NNP VBD TO VB RB CC VB DT JJ , VBG DT VBD DT NN TO VB DT NN NN . The bombing shatters weeks of calm after Mr. Abbas declared a truce during a summit with Israeli Prime Minister Ariel Sharon in Egypt earlier this month . DT NN VBZ NNS IN NN IN NNP NNP VBD DT NN IN DT NN IN JJ NNP NNP NNP NNP IN NNP RBR DT NN . Indonesian officials say they have signed an initial agreement with Russia to build a space launch center on the remote island of Biak off the coast of Papua New Guinea . JJ NNS VBP PRP VBP VBN DT JJ NN IN NNP TO VB DT NN NN NN IN DT JJ NN IN NNP IN DT NN IN NNP NNP NNP . An Indonesian foreign ministry spokesman says senior officials from both countries reached the preliminary agreement last week . DT JJ JJ NN NN VBZ JJ NNS IN DT NNS VBD DT JJ NN JJ NN . They say the island is well-suited for the project because of its proximity to the equator , which makes it easier to launch satellites into some Earth orbits . PRP VBP DT NN VBZ JJ IN DT NN IN IN PRP$ NN TO DT NN , WDT VBZ PRP JJR TO VB NNS IN DT NNP NNS . The spokesman says a formal agreement on the project will be signed in June when Indonesian President Susilo Bambang Yudhoyono is scheduled to visit Moscow . DT NN VBZ DT JJ NN IN DT NN MD VB VBN IN NNP WRB JJ NNP NNP NNP NNP VBZ VBN TO VB NNP . An Algerian man goes on trial Monday in France for terrorist attacks on the Paris subway in 1995 . DT JJ NN VBZ IN NN NNP IN NNP IN NN NNS IN DT NNP NN IN CD . Prosecutors say Rachid Ramda helped fund at least three bombings on the Paris metro . NNS VBP NNP NNP VBD VB IN JJS CD NNS IN DT NNP NN . If he is convicted , Ramda could get life in prison . IN PRP VBZ VBN , NNP MD VB NN IN NN . The 38-year-old is already serving a 10-year sentence in France after he was convicted last year on terrorism charges . DT JJ VBZ RB VBG DT JJ NN IN NNP IN PRP VBD VBN JJ NN IN NN NNS . Police say Ramda operated from London where investigators say they found evidence that he sent money to terrorists . NNS VBP NNP VBD IN NNP WRB NNS VBP PRP VBD NN IN PRP VBD NN TO NNS . He is accused of helping fund attacks carried out by an Algerian militant organization the Armed Islamic Group . PRP VBZ VBN IN VBG NN NNS VBD RP IN DT JJ JJ NN DT NNP NNP NNP . British police arrested Ramda in 1995 . JJ NN VBN NNP IN CD . He fought extradition to France for 10 years . PRP VBD NN TO NNP IN CD NNS . In Monday 's trial , Ramda is facing charges of being an accomplice to at least three bombings on the Paris subway , including the July 25 , 1995 attack that killed eight people and injured more than 150 . IN NNP POS NN , NNP VBZ VBG NNS IN VBG DT NN TO IN JJS CD NNS IN DT NNP NN , VBG DT NNP CD , CD NN WDT VBD CD NNS CC VBD JJR IN CD . The United Nations says Sudanese refugees have begun returning from the Central African Republic under a new deal between the countries and the U.N. refugee agency . DT NNP NNP VBZ JJ NNS VBP VBN VBG IN DT NNP NNP NNP IN DT JJ NN IN DT NNS CC DT NNP NN NN . The U.N. says the deal , which was signed Wednesday , will allow some 16,000 Sudanese refugees living in the CAR to voluntarily return home . DT NNP VBZ DT NN , WDT VBD VBN NNP , MD VB DT CD JJ NNS VBG IN DT NNP TO RB VB NN . It says the first group of refugees was scheduled to fly home Thursday . PRP VBZ DT JJ NN IN NNS VBD VBN TO VB NN NNP . Five thousand refugees are expected to return to Sudan by April . CD CD NNS VBP VBN TO VB TO NNP IN NNP . The rest will go home by the end of the year . DT NN MD VB NN IN DT NN IN DT NN . The deal is one of several involving Sudan reached this week by the refugee agency and Sudan 's neighbors . DT NN VBZ CD IN JJ VBG NNP VBD DT NN IN DT NN NN CC NNP POS NNS . The U.N. says the other agreements will allow for the return of 13,000 Sudanese refugees living in the Democratic Republic of Congo , and for the return of nearly 7,000 Congolese refugees currently in Sudan . DT NNP VBZ DT JJ NNS MD VB IN DT NN IN CD JJ NNS VBG IN DT NNP NNP IN NNP , CC IN DT NN IN RB CD JJ NNS RB IN NNP . Police in Japan say a teacher stabbed to death a 12-year-old girl Saturday in the country 's third killing of a school girl in less than three weeks . NNS IN NNP VBP DT NN VBN TO NN DT JJ NN NNP IN DT NN POS JJ NN IN DT NN NN IN JJR IN CD NNS . Yu Hagino , 23 , was arrested at the murder scene , a school in the western city of Uji . NNP NNP , CD , VBD VBN IN DT NN NN , DT NN IN DT JJ NN IN NNP . Police say the suspect confessed to stabbing the girl with a knife after arguing with her . NNS VBP DT NN VBD TO VBG DT NN IN DT NN IN VBG IN PRP . The killing follows the recent murders of two school girls in the space of just over a week . DT NN VBZ DT JJ NNS IN CD NN NNS IN DT NN IN RB IN DT NN . The two were killed in separate incidents as they walked home alone from elementary school along deserted roads . DT CD VBD VBN IN JJ NNS IN PRP VBD NN RB IN JJ NN IN JJ NNS . Radical Islamic cleric Omar Bakri Mohammed has called on all Muslims to leave Europe . JJ JJ NN NNP NNP NNP VBZ VBN IN DT NNS TO VB NNP . In an interview with French television to be broadcast Monday , Mr. Bakri says Muslims will one day return to Europe , and the Islamic flag will fly over Downing Street , the home of Britain 's prime minister . IN DT NN IN JJ NN TO VB VBN NNP , NNP NNP VBZ NNPS MD CD NN VB TO NNP , CC DT JJ NN MD VB IN NNP NNP , DT NN IN NNP POS JJ NN . The interview took place in Beirut where Mr. Bakri lives after the British government stripped him of his residency in its campaign to rein in radical Islamic leaders . DT NN VBD NN IN NNP WRB NNP NNP VBZ IN DT JJ NN VBD PRP IN PRP$ NN IN PRP$ NN TO VB IN JJ JJ NNS . Mr. Bakri triggered British outrage after the July 7 bombings in London when he said he would never tip off police if he knew a Muslim was about to carry out an attack . NNP NNP VBD JJ NN IN DT NNP CD NNS IN NNP WRB PRP VBD PRP MD RB VB IN NN IN PRP VBD DT NN VBD IN TO VB RP DT NN . In the France 3 interview , Mr. Bakri says the backgrounds of the four suicide bombers in the London attacks prove the message of al-Qaida chief Osama bin Laden has reached moderate communities . IN DT NNP CD NN , NNP NNP VBZ DT NNS IN DT CD NN NNS IN DT NNP NNS VBP DT NN IN NNP NN NNP NNP NNP VBZ VBN JJ NNS . Iran 's defense minister has denounced remarks by the top U.S. military commander , who said Washington has not ruled out the use of force against Iran to prevent it from making nuclear weapons . NNP POS NN NN VBZ VBN NNS IN DT JJ NNP JJ NN , WP VBD NNP VBZ RB VBN IN DT NN IN NN IN NNP TO VB PRP IN VBG JJ NNS . Joint Chiefs of Staff Chairman Mike Mullen said Sunday that the U.S. has a plan to strike Iran . NNP NNP IN NNP NN NNP NNP VBD NNP IN DT NNP VBZ DT NN TO VB NNP . But Admiral Mullen said he hopes the military option is not needed . CC NNP NNP VBD PRP VBZ DT JJ NN VBZ RB VBN . Iran 's defense minister , Brigadier General Ahmad Vahidi , said Tuesday that U.S. threats to attack his country violate the United Nations charter . NNP POS NN NN , NNP NNP NNP NNP , VBD NNP IN NNP NNS TO VB PRP$ NN VBP DT NNP NNP NN . He warned that Tehran has drawn up defensive plans that would make its enemies regret any attack . PRP VBD IN NNP VBZ VBN RP JJ NNS WDT MD VB PRP$ NNS VBP DT NN . The United States and other Western countries accuse Iran of secretly developing nuclear weapons under cover of a civilian energy program - a charge Iran denies . DT NNP NNPS CC JJ JJ NNS VBP NNP IN RB VBG JJ NNS IN NN IN DT JJ NN NN IN DT NN NNP VBZ . Admiral Mullen said he hopes the combination of sanctions and diplomatic efforts will resolve the dispute . NNP NNP VBD PRP VBZ DT NN IN NNS CC JJ NNS MD VB DT NN . Georgia 's president has announced plans for his country to get emergency natural gas supplies from Iran to help end the country 's shortage of both gas and electricity . NNP POS NN VBZ VBN NNS IN PRP$ NN TO VB NN JJ NN NNS IN NNP TO VB VB DT NN POS NN IN DT NN CC NN . President Mikhail Saakashvili told cabinet members Friday that gas from Iran is expected to begin flowing into Georgia beginning Sunday or , at the latest , Monday . NNP NNP NNP VBD NN NNS NNP IN NN IN NNP VBZ VBN TO VB VBG IN NNP VBG NNP CC , IN DT JJS , NNP . Residents in the former Soviet republic have been enduring freezing weather with limited supplies after explosions on pipelines delivering Russian natural gas . NNS IN DT JJ JJ NN VBP VBN VBG JJ NN IN JJ NNS IN NNS IN NNS VBG JJ JJ NN . Russian authorities deny Georgian charges that they deliberately cut supplies , and insist the pipelines were sabotaged . JJ NNS VBP JJ NNS IN PRP RB VBD NNS , CC VBP DT NNS VBD VBN . Repairs are due to be completed by Sunday . NNS VBP JJ TO VB VBN IN NNP . Georgia is heavily dependent on Russian natural gas . NNP VBZ RB JJ IN JJ JJ NN . President Saakashvili says the agreement with Iran shows his country has alternative sources . NNP NNP VBZ DT NN IN NNP VBZ PRP$ NN VBZ JJ NNS . Millions of Georgians have also been without electricity because of a breakdown of a unit at a power station , as well as downed power lines . NNS IN NNS VBP RB VBN IN NN IN IN DT NN IN DT NN IN DT NN NN , RB RB IN JJ NN NNS . Peru 's former President , Alberto Fujimori , has told authorities he is trying to form a political alliance to support his bid to run in next April 's presidential election . NNP POS JJ NN , NNP NNP , VBZ VBN NNS PRP VBZ VBG TO VB DT JJ NN TO VB PRP$ NN TO VB IN JJ NNP POS JJ NN . In a visit to the Peruvian consulate in Tokyo Wednesday , Mr. Fujimori had his signature validated on a document joining his Si Cumple party with two other political parties . IN DT NN TO DT JJ NN IN NNP NNP , NNP NNP VBD PRP$ NN VBD IN DT NN VBG PRP$ NNP NNP NN IN CD JJ JJ NNS . The consulate said it notarized his signature , but not the contents of the document . DT NN VBD PRP VBD PRP$ NN , CC RB DT NNS IN DT NN . The disgraced ex-president and son of Japanese parents fled to Japan in 2000 , where he was granted citizenship . DT JJ NN CC NN IN JJ NNS VBD TO NNP IN CD , WRB PRP VBD VBN NN . The exiled president is wanted in Peru to face charges of corruption and human rights abuses related to the death squad murders of 25 people . DT VBN NN VBZ VBN IN NNP TO VB NNS IN NN CC JJ NNS NNS VBN IN DT NN NN NNS IN CD NNS . Mr. Fujimori , Peru 's hard-line ruler from 1990 to 2000 , has denied the charges , calling them politically motivated . NNP NNP , NNP POS JJ NN IN CD IN CD , VBZ VBN DT NNS , VBG PRP RB JJ . Tokyo has refused requests from Lima for his extradition . NNP VBZ VBN NNS IN NNP IN PRP$ NN . The British Embassy in Sudan 's capital has re-opened to the public , four days after it was closed because of a possible terrorist threat . DT JJ NN IN NNP POS NN VBZ VBN TO DT NN , CD NNS IN PRP VBD VBN IN IN DT JJ JJ NN . The embassy said in a statement Thursday that ' additional security ' has allowed it to resume normal consular and visa services . DT NN VBD IN DT NN NNP IN `` JJ NN `` VBZ VBN PRP TO VB JJ NN CC NN NNS . The statement also thanked the Sudanese government for its cooperation . DT NN RB VBD DT JJ NN IN PRP$ NN . Earlier this week , the government said it had broken up a plot to attack several Western diplomatic missions in the capital , Khartoum . RBR DT NN , DT NN VBD PRP VBD VBN RP DT NN TO VB JJ JJ JJ NNS IN DT NN , NNP . The state news agency reported that police had arrested eight Sudanese men and confiscated arms and explosives . DT NN NN NN VBD IN NNS VBD VBN CD JJ NNS CC VBN NNS CC NNS . The British Embassy has advised British citizens to avoid travel to Khartoum . DT JJ NN VBZ VBN JJ NNS TO VB NN IN NNP . Kenyan police have opened fire at hundreds of people demonstrating against cartoons depicting the Prophet Muhammad , as protests across the Muslim world showed no signs of abating . JJ NNS VBP VBN NN IN NNS IN NNS VBG IN NNS VBG DT NNP NNP , IN NNS IN DT NNP NN VBD DT NNS IN VBG . At least one Kenyan was wounded Friday when protesters tried to march on the Danish embassy in Nairobi , shouting anti-Denmark slogans and burning Danish flags . IN JJS CD NN VBD VBN NNP WRB NNS VBD TO VB IN DT JJ NN IN NNP , VBG JJ NNS CC VBG JJ NNS . Muslims also demonstrated Friday in cities across the Middle East as well as in India , Pakistan , Afghanistan , Bangladesh , Malaysia , and Venezuela . NNS RB VBD NNP IN NNS IN DT NNP NNP RB RB IN IN NNP , NNP , NNP , NNP , NNP , CC NNP . In France , a Muslim organization - the French Council of the Muslim Faith - said it was launching legal action against French newspapers that published the cartoons , one of which depicts the Prophet Muhammad wearing a turban shaped like a bomb . IN NNP , DT NNP NN IN DT JJ NN IN DT NNP NNP : VBD PRP VBD VBG JJ NN IN JJ NNS WDT VBD DT NNS , CD IN WDT VBZ DT NNP NNP VBG DT NN VBN IN DT NN . Malaysian Prime Minister Abdullah Ahmad Badawi told an international conference Friday the Muslim world and the West must stop demonizing each other and ' accept one another as equals . ' JJ NNP NNP NNP NNP NNP VBD DT JJ NN NNP DT NNP NN CC DT NNP MD VB VBG DT NN CC `` VB CD DT IN NNS . `` The death toll from a coal mining accident in northwestern China rose to 32 Wednesday after searchers recovered the body of the last missing miner . DT NN NN IN DT NN NN NN IN JJ NNP VBD TO CD NNP IN NNS VBD DT NN IN DT JJ JJ NN . China 's state-run media say 39 people were working at the privately-owned coal mine in Shaanxi province on Saturday when a gas explosion occurred . NNP POS JJ NNS VBP CD NNS VBD VBG IN DT JJ NN NN IN NNP NN IN NNP WRB DT NN NN VBD . Seven miners managed to reach the surface , but the others were trapped . CD NNS VBD TO VB DT NN , CC DT NNS VBD VBN . The Xinhua news agency says police have detained the owner and managers of the mine , but provided no other details . DT NNP NN NN VBZ NNS VBP VBN DT NN CC NNS IN DT NN , CC VBD DT JJ NNS . Chinese mines are among the most dangerous in the world . JJ NNS VBP IN DT RBS JJ IN DT NN . Thousands of people are killed every year in explosions , cave-ins and floods , despite government crackdowns on safety violations . NNS IN NNS VBP VBN DT NN IN NNS , NNS CC NNS , IN NN NNS IN NN NNS . India and Pakistan plan to hold a third round of peace talks in January with a focus on security , the Kashmir issue and confidence-building measures between the nuclear rivals . NNP CC NNP VBP TO VB DT JJ NN IN NN NNS IN NNP IN DT NN IN NN , DT NNP NN CC JJ NNS IN DT JJ NNS . The two-day talks will begin on January 17 and they will be led by the countries ' foreign secretaries . DT JJ NNS MD VB IN NNP CD CC PRP MD VB VBN IN DT NNS POS JJ NNS . They will review progress made so far and also chart a course for future negotiations . PRP MD VB NN VBN RB RB CC RB VB DT NN IN JJ NNS . The talks will be under a peace process that the two sides began in January 2004 . DT NNS MD VB IN DT NN NN IN DT CD NNS VBD IN NNP CD . A foreign office spokeswoman in Islamabad also said that the two sides have been holding secret talks on possible reduction of forces in Kashmir and a Pakistani proposal of self-rule in Kashmir . DT JJ NN NN IN NNP RB VBD IN DT CD NNS VBP VBN VBG JJ NNS IN JJ NN IN NNS IN NNP CC DT JJ NN IN JJ IN NNP . She did not give any more details and also declined to reveal at what level the talks are being held . PRP VBD RB VB DT JJR NNS CC RB VBD TO VB IN WDT NN DT NNS VBP VBG VBN . India has not made any comment about the talks . NNP VBZ RB VBN DT NN IN DT NNS . Iraqi officials say at least two people were killed and several others wounded in a car bomb blast in central Baghdad Tuesday . JJ NNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBD IN DT NN NN NN IN JJ NNP NNP . Earlier reports said the attack was carried out by a suicide bomber . RBR NNS VBD DT NN VBD VBN RP IN DT NN NN . It came as the U.S. military announced it had rounded up 428 suspects over the past 30 hours in a major operation against insurgents in a western suburb of the capital . PRP VBD IN DT NNP NN VBD PRP VBD VBN RP CD NNS IN DT JJ CD NNS IN DT JJ NN IN NNS IN DT JJ NN IN DT NN . On Monday , dozens of people were killed and scores were hurt in a series of car bombings and other attacks in cities and towns across Iraq . IN NNP , NNS IN NNS VBD VBN CC NNS VBD VBN IN DT NN IN NN NNS CC JJ NNS IN NNS CC NNS IN NNP . Also Monday , an al-Qaida-linked group claimed responsibility for gunning down a top Iraqi security official ( Wael al-Rubaei ) and his driver in Baghdad . RB NNP , DT JJ NN VBD NN IN VBG RP DT JJ JJ NN NN LRB NNP NNP RRB CC PRP$ NN IN NNP . Iran 's hard-line Guardian Council has approved a bill that would block United Nations inspections of its nuclear facilities and allow it to resume uranium enrichment if it is referred to the U.N. Security Council . NNP POS JJ NNP NNP VBZ VBN DT NN WDT MD VB NNP NNP NNS IN PRP$ JJ NNS CC VB PRP TO VB NN NN IN PRP VBZ VBN TO DT NNP NNP NNP . State media report Saturday that the 12-member council approved the measure after deciding it does not contradict the constitution or Islamic law . NN NNS VBP NNP IN DT JJ NN VBD DT NN IN VBG PRP VBZ RB VB DT NN CC JJ NN . The parliament already approved the bill last month . DT NN RB VBD DT NN JJ NN . The final step will be President Mahmoud Ahmadinejad 's signature . DT JJ NN MD VB NNP NNP NNP POS NN . The move could jeopardize nuclear talks with Europe that Iran said it expects will resume within weeks . DT NN MD VB JJ NNS IN NNP IN NNP VBD PRP VBZ MD VB IN NNS . Those talks collapsed in August , when Tehran restarted converting uranium - the precursor of enrichment . DT NNS VBD IN NNP , WRB NNP VBD VBG NN IN DT NN IN NN . Last year , Tehran suspended enrichment as a good faith measure to allay international concerns it is secretly pursuing nuclear weapons , a charge its government denies . JJ NN , NNP VBD NN IN DT JJ NN NN TO VB JJ NNS PRP VBZ RB VBG JJ NNS , DT NN PRP$ NN VBZ . Zambian officials say reports that President Levy Mwanawasa has died are FALSE . JJ NNS VBP NNS IN NNP NNP NNP VBZ VBN VBP JJ . Information Minister Mike Mulongoti made a televised address Thursday to say the foreign media reports are not TRUE . NNP NNP NNP NNP VBD DT JJ NN NNP TO VB DT JJ NNS NNS VBP RB JJ . He said President Mwanawasa remains in stable condition in a Paris hospital , and is being treated for hypertension . PRP VBD NNP NNP VBZ IN JJ NN IN DT NNP NN , CC VBZ VBG VBN IN NN . Mr. Mwanawasa was flown to France Tuesday after suffering a stroke Sunday while in Egypt for an African Union summit . NNP NNP VBD VBN IN NNP NNP IN VBG DT NN NNP IN IN NNP IN DT NNP NNP NN . The summit was dominated by the political crisis in Zimbabwe , and the absence of Mr. Mwanawasa , a critic of Zimbabwean President Robert Mugabe , was said to hurt attempts to put more pressure on Harare . DT NN VBD VBN IN DT JJ NN IN NNP , CC DT NN IN NNP NNP , DT NN IN JJ NNP NNP NNP , VBD VBN TO VB NNS TO VB JJR NN IN NNP . Mr. Mwanawasa is 59 years old and has served as Zambia 's president since 2002 . NNP NNP VBZ CD NNS JJ CC VBZ VBN IN NNP POS NN IN CD . He is also the current leader of the Southern African Development Community . PRP VBZ RB DT JJ NN IN DT NNP NNP NNP NNP . He suffered a mild stroke two years ago . PRP VBD DT JJ NN CD NNS RB . U.S. President Barack Obama has named Gene Sperling as the new head of the National Economic Council , which oversees the administration 's economic policies . NNP NNP NNP NNP VBZ VBN NNP NNP IN DT JJ NN IN DT NNP NNP NNP , WDT VBZ DT NN POS JJ NNS . Sperling had the same job in President Bill Clinton 's administration . NNP VBD DT JJ NN IN NNP NNP NNP POS NN . He succeeds Lawrence Summers , another top economic official from the Clinton-era . PRP VBZ NNP NNPS , DT JJ JJ NN IN DT NN . Sperling has spent the first two years of the Obama administration as a counselor to Treasury Secretary Timothy Geithner . NNP VBZ VBN DT JJ CD NNS IN DT NNP NN IN DT NN TO NNP NNP NNP NNP . Mr. Obama made the announcement Friday during a visit to a window manufacturer located outside of Washington , D.C. NNP NNP VBD DT NN NNP IN DT NN TO DT NN NN VBN IN IN NNP , NNP Sperling 's appointment is the latest major staff change for the Obama administration as it begins dealing with a new Republican majority in the House of Representatives , and planning for the president 's likely re-election campaign in 2012 . NNP POS NN VBZ DT JJS JJ NN NN IN DT NNP NN IN PRP VBZ VBG IN DT JJ JJ NN IN DT NNP IN NNPS , CC VBG IN DT NN POS JJ NN NN IN CD . On Thursday , Mr. Obama named another ex-Clinton official , William Daley , as his new chief of staff , replacing Rahm Emmanuel . IN NNP , NNP NNP VBD DT JJ NN , NNP NNP , IN PRP$ JJ NN IN NN , VBG NNP NNP . Authorities in Bosnia-Herzegovina say they have arrested a former Bosnian Serb police officer for his suspected role in the 1995 massacre of Muslims near the eastern Bosnian town of Srebrenica . NNS IN NNP VBP PRP VBP VBN DT JJ JJ JJ NN NN IN PRP$ JJ NN IN DT CD NN IN NNS IN DT JJ JJ NN IN NNP . The state prosecutor 's office says 37-year-old Dragan Neskovic was arrested Wednesday in the northeastern town of Bijeljina on suspicion of genocide . DT NN NN POS NN VBZ JJ NNP NNP VBD VBN NNP IN DT JJ NN IN NNP IN NN IN NN . No further details were released . DT JJ NNS VBD VBN . More than 8,000 Muslim men and boys were killed by Serb forces in July 1995 in what was supposed to have been a United Nations safe haven . JJR IN CD NNP NNS CC NNS VBD VBN IN JJ NNS IN NNP CD IN WP VBD VBN TO VB VBN DT NNP NNP JJ NN . The Srebrenica killings are considered the worst European massacre since World War II . DT NNP NNS VBP VBN DT JJS JJ NN IN NNP NNP NNP . The U.N. war crimes tribunal in The Hague has already sentenced 14 Serbs for their key roles in the killings . DT NNP NN NNS NN IN DT NNP VBZ RB VBN CD NNS IN PRP$ JJ NNS IN DT NNS . Former Bosnian Serb leader Radovan Karadzic is currently on trial there , charged with genocide and crimes against humanity . JJ JJ JJ NN NNP NNP VBZ RB IN NN RB , VBN IN NN CC NNS IN NN . The Bosnian war crimes court was established in 2005 to ease the workload of the Hague-based tribunal . DT JJ NN NNS NN VBD VBN IN CD TO VB DT NN IN DT JJ NN . China 's official Xinhua news agency says archaeologists have discovered the ruins of 29 villages that date back more than 4,500 years . NNP POS JJ NNP NN NN VBZ NNS VBP VBN DT NNS IN CD NNS WDT VBP RB JJR IN CD NNS . The report said the ancient communities were discovered in the northern part of Shaanxi province , a region known for its archaeological treasures . DT NN VBD DT JJ NNS VBD VBN IN DT JJ NN IN NNP NN , DT NN VBN IN PRP$ JJ NNS . Xinhua says the ruins show that people had mastered building techniques and had constructed houses and stone walls around their community . NNP VBZ DT NNS VBP IN NNS VBD VBN NN NNS CC VBD VBN NNS CC NN NNS IN PRP$ NN . It said a total of 96 houses were unearthed , as well as the ruins of a sacrificial altar . PRP VBD DT NN IN CD NNS VBD JJ , RB RB IN DT NNS IN DT JJ NN . The report quoted an official with the Shaanxi Provincial Archaeological Research Institute as saying the discovery will help scientists better understand the environment during the Neolithic period , also known as the New Stone Age . DT NN VBD DT NN IN DT NNP NNP NNP NNP NNP IN VBG DT NN MD VB NNS RBR VB DT NN IN DT JJ NN , RB VBN IN DT NNP NNP NNP . A United Nations expert on extrajudicial killings says he would like to visit Thailand to investigate last month 's deaths of 87 Muslim protesters . DT NNP NNPS NN IN JJ NNS VBZ PRP MD VB TO VB NNP TO VB JJ NN POS NNS IN CD NNP NNS . Philip Alston said he is deeply concerned by the October 25 incident . NNP NNP VBD PRP VBZ RB VBN IN DT NNP CD NN . He said a visit to Thailand would allow him to speak with those involved and to recommend ways to bring peace and stability to the region . PRP VBD DT NN TO NNP MD VB PRP TO VB IN DT VBN CC TO VB NNS TO VB NN CC NN TO DT NN . Thailand has not responded to Mr. Alston 's request . NNP VBZ RB VBN TO NNP NNP POS NN . Meanwhile , Thailand 's revered King Bhumibol Adulyadej warned that the country could fall into ruin if the violence in the south does not end . RB , NNP POS JJ NNP NNP NNP VBD IN DT NN MD VB IN NN IN DT NN IN DT NN VBZ RB VB . He urged security forces to better cooperate to deal with the region 's turmoil . PRP VBD NN NNS TO RB VB TO VB IN DT NN POS NN . Hundreds of people have been killed since January when an insurgency flared up in Thailand 's three Muslim-majority southern provinces . NNS IN NNS VBP VBN VBN IN NNP WRB DT NN VBD RP IN NNP POS CD JJ JJ NNS . Israeli soldiers have killed two Palestinians in the southern Gaza Strip . JJ NNS VBP VBN CD NNS IN DT JJ NNP NNP . Witnesses say the two men were killed early Friday near the security barrier separating southern Gaza with Israel . NNS VBP DT CD NNS VBD VBN RB NNP IN DT NN NN VBG JJ NNP IN NNP . Israeli military officials say troops had spotted the men attempting to plant bombs along the barrier . JJ JJ NNS VBP NNS VBD VBN DT NNS VBG TO VB NNS IN DT NN . The killings were the latest in a series of clashes between the Israeli army and Palestinian militants . DT NNS VBD DT JJS IN DT NN IN NNS IN DT JJ NN CC JJ NNS . Israeli soldiers killed five Palestinians Thursday during an army operation in the West Bank city of Nablus . JJ NNS VBD CD NNS NNP IN DT NN NN IN DT NNP NNP NN IN NNP . Officials say three of the dead were wanted militants from the al-Aqsa Martyrs ' Brigades , a violent offshoot of the mainstream Fatah Party . NNS VBP CD IN DT NN VBD VBN NNS IN DT NNP NNP POS NNP , DT JJ NN IN DT NN NNP NNP . Palestinian President Mahmoud Abbas and incoming Hamas Prime Minister Ismail Haniyeh Friday denounced the Israeli military 's sweep through the Nablus refugee camps . JJ NNP NNP NNP CC JJ NNP NNP NNP NNP NNP NNP VBD DT JJ NN POS NN IN DT NNP NN NNS . The head of U.S. troops in the Horn of Africa says terrorists and insurgents may begin leaving war zones in Afghanistan and Iraq and head for east Africa . DT NN IN NNP NNS IN DT NNP IN NNP VBZ NNS CC NNS MD VB VBG NN NNS IN NNP CC NNP CC VB IN JJ NNP . Major General Timothy Ghormley says officials are concerned that instability and weak governments in east Africa could draw international terrorist groups seeking to establish a base of operations . NNP NNP NNP NNP VBZ NNS VBP VBN IN NN CC JJ NNS IN JJ NNP MD VB JJ JJ NNS VBG TO VB DT NN IN NNS . General Ghormley says the joint task force in Djibouti has been helping to train foreign soldiers and build anti-terrorist capabilities of governments in the region . NNP NNP VBZ DT JJ NN NN IN NNP VBZ VBN VBG TO VB JJ NNS CC VB JJ NNS IN NNS IN DT NN . However , U.S. forces have yet to enter Somalia , which has been without a functioning central government for more than 10 years . RB , NNP NNS VBP RB TO VB NNP , WDT VBZ VBN IN DT VBG JJ NN IN JJR IN CD NNS . Earlier this year , Ethiopian Prime Minister Meles Zenawi warned an al-Qaida cell is already operating out of Somalia 's capital , Mogadishu . RBR DT NN , JJ NNP NNP NNP NNP VBD DT NNP NN VBZ RB VBG IN IN NNP POS NN , NNP . Ugandan Lord 's Resistance Army rebels are seeking a 12-month suspension in the arrest warrants against their leaders issued by the International Criminal Court . JJ NNP POS NNP NNP NNS VBP VBG DT JJ NN IN DT NN NNS IN PRP$ NNS VBN IN DT NNP NNP NNP . James Obita , the technical advisor to the rebels ' negotiating team , tells VOA the rebels will ask for the suspension when peace talks with the Ugandan government resume Thursday in Juba , southern Sudan . NNP NNP , DT JJ NN TO DT NNS POS VBG NN , VBZ NNP DT NNS MD VB IN DT NN WRB NN NNS IN DT JJ NN VBP NNP IN NNP , JJ NNP . He says in connection with that request , the rebels will propose an ' alternative justice system ' to deal with war crimes committed during the rebels ' 20-year uprising in northern Uganda . PRP VBZ IN NN IN DT NN , DT NNS MD VB DT `` JJ NN NN `` TO VB IN NN NNS VBN IN DT NNS POS JJ NN IN JJ NNP . LRA fighters are accused of killing and mutilating thousands of civilians during the conflict . NNP NNS VBP VBN IN VBG CC VBG NNS IN NNS IN DT NN . The International Criminal Court has indicted five top rebel leaders on war crimes charges . DT NNP NNP NNP VBZ VBN CD JJ NN NNS IN NN NNS NNS . The LRA has demanded those charges be dropped as a condition for signing any peace deal . DT NNP VBZ VBN DT NNS VB VBN IN DT NN IN VBG DT NN NN . The 10-month-old peace talks have achieved some progress , including a ceasefire that the sides extended in April . DT JJ NN NNS VBP VBN DT NN , VBG DT NN IN DT NNS VBN IN NNP . A group linked to al-Qaida in Iraq is denying Iraqi government reports that its leader was recently arrested . DT NN VBN TO NNP IN NNP VBZ VBG JJ NN NNS IN PRP$ NN VBD RB VBN . The Islamic State of Iraq says the man it claims is its leader , Abu Omar al-Baghdadi , is fine . DT NNP NNP IN NNP VBZ DT NN PRP VBZ VBZ PRP$ NN , NNP NNP NNP , VBZ JJ . The group says on an Islamist Web site it does not know the person who Iraqi authorities arrested last month and presented as al-Baghdadi . DT NN VBZ IN DT JJ NN NN PRP VBZ RB VB DT NN WP JJ NNS VBD JJ NN CC VBN IN NNP . The Iraqi army said it captured the Sunni insurgent leader in the Iraqi capital , Baghdad . DT JJ NN VBD PRP VBD DT NNP JJ NN IN DT JJ NN , NNP . The United States did not confirm the report . DT NNP NNPS VBD RB VB DT NN . Iraqi authorities in the past have announced the arrest or killing of major insurgent leaders , to only later say the reports were FALSE . JJ NNS IN DT NN VBP VBN DT NN CC NN IN JJ JJ NNS , TO RB RB VBP DT NNS VBD JJ . In addition , U.S. military commander General Kevin Bergner previously had said al-Baghdadi may not be a real person , but rather a fictional character created to put an Iraqi face on the otherwise foreign leadership of al-Qaida in Iraq . IN NN , NNP JJ NN NNP NNP NNP RB VBD VBN NNP MD RB VB DT JJ NN , CC RB DT JJ NN VBN TO VB DT JJ NN IN DT RB JJ NN IN NNP IN NNP . U.S. military officials have announced changes to military trials of terrorism suspects being held at the U.S. naval base in Guantanamo Bay , Cuba . NNP JJ NNS VBP VBN NNS TO JJ NNS IN NN NNS VBG VBN IN DT NNP JJ NN IN NNP NNP , NNP . Air Force Brigadier General Thomas Hemingway said Wednesday the so-called ' improvements ' will bring the process closer to the American judge-and-jury system . NNP NNP NNP NNP NNP NNP VBD NNP DT JJ `` NNS `` MD VB DT NN RBR TO DT JJ NN NN . He said the presiding officer at the trial will function more like a judge than under the previous system , and other officers will act like a jury . PRP VBD DT VBG NN IN DT NN MD VB RBR IN DT NN IN IN DT JJ NN , CC JJ NNS MD VB IN DT NN . Some human rights groups rejected the changes for not going far enough , noting there is still no option for appeal to an independent court . DT JJ NNS NNS VBD DT NNS IN RB VBG RB RB , VBG EX VBZ RB DT NN IN NN TO DT JJ NN . U.S. military officials have filed charges against four detainees at Guantanamo , where more than 500 terror suspects are being held . NNP JJ NNS VBP VBN NNS IN CD NNS IN NNP , WRB JJR IN CD NN NNS VBP VBG VBN . Meantime Center for Constitutional Rights said some prisoners have launched a hunger strike to protest their conditions . RB NNP IN NNP NNP VBD DT NNS VBP VBN DT NN NN TO VB PRP$ NNS . A landmine blast in southern Afghanistan has killed nine Afghan soldiers . DT NN NN IN JJ NNP VBZ VBN CD JJ NNS . The Taleban later claimed responsibility for the blast in Kandahar province . DT NNP RB VBD NN IN DT NN IN NNP NN . An Afghan Army spokesman said the troops were traveling towards the nearby Pakistani border when their vehicle hit the mine . DT JJ NNP NN VBD DT NNS VBD VBG IN DT JJ JJ NN WRB PRP$ NN VBD DT NN . U.S.-led forces are hunting down remnants of Afghanistan 's ousted Taleban regime who frequently carry out hit and run attacks on coalition and Afghan government forces , mainly in the country 's eastern and southern regions . JJ NNS VBP VBG RP NNS IN NNP POS JJ NNP NN WP RB VBP RP NN CC VB NNS IN NN CC JJ NN NNS , RB IN DT NN POS JJ CC JJ NNS . Four key Palestinian militant groups say they are ending a truce aimed at easing attacks on Israel . CD JJ JJ JJ NNS VBP PRP VBP VBG DT NN VBN IN VBG NNS IN NNP . In separate statements issued Sunday , Hamas and the Popular Resistance Committees said they were no longer bound by the truce deal brokered last March by Palestinian Authority President Mahmoud Abbas . IN JJ NNS VBN NNP , NNP CC DT NNP NNP NNS VBD PRP VBD RB RB VBN IN DT NN NN VBN JJ NNP IN NNP NNP NNP NNP NNP . The al-Aqsa Martyrs Brigades and Islamic Jihad also scrapped the deal , and said they had fired rockets early today into southern Israel . DT NNP NNP NNP CC NNP NNP RB VBD DT NN , CC VBD PRP VBD VBN NNS RB NN IN JJ NNP . In a separate development , gunmen in the Gaza Strip stormed a club for United Nations workers and blew up a hall where alcohol was served . IN DT JJ NN , NNS IN DT NNP NNP VBD DT NN IN NNP NNPS NNS CC VBD RP DT NN WRB NN VBD VBN . There were no reports of injuries and no claim of responsibility . EX VBD DT NNS IN NNS CC DT NN IN NN . A short while later , gunmen in Gaza kidnapped an Italian activist near Khan Younis , but later released him . DT JJ NN RB , NNS IN NNP VBD DT JJ NN IN NNP NNP , CC RB VBD PRP . Coalition troops in Iraq have captured a suspected al-Qaida terrorist during a raid on the home of a senior Sunni Arab politician , Adnan al-Dulaymi . NN NNS IN NNP VBP VBN DT JJ NNP NN IN DT NN IN DT NN IN DT JJ NNP NNP NN , NNP NNP . U.S. officials say they believe the man was involved in planning car bomb attacks on Baghdad 's Green Zone , which houses government , diplomatic and military offices . NNP NNS VBP PRP VBP DT NN VBD VBN IN VBG NN NN NNS IN NNP POS NNP NNP , WDT VBZ NN , JJ CC JJ NNS . The man is identified as a bodyguard at Mr. Dulaymi 's home in the Iraqi capital . DT NN VBZ VBN IN DT NN IN NNP NNP POS NN IN DT JJ NN . Officials say the raid does not imply the politician himself is involved in illegal activity . NNS VBP DT NN VBZ RB VB DT NN PRP VBZ VBN IN JJ NN . On Friday , Iraqi authorities imposed a curfew in Baghdad , because of fears of new violence . IN NNP , JJ NNS VBD DT NN IN NNP , IN IN NNS IN JJ NN . The ban on pedestrians and vehicles was expected to remain in effect until Sunday . DT NN IN NNS CC NNS VBD VBN TO VB IN NN IN NNP . In the northern city of Tal Afar , a car bomb exploded Saturday , killing two people and wounding 30 others . IN DT JJ NN IN NNP NNP , DT NN NN VBD NNP , VBG CD NNS CC VBG CD NNS . The U.S. military says the Iraqi army has captured three suspected al-Qaida in Iraq leaders involved in roadside bomb attacks . DT NNP NN VBZ DT JJ NN VBZ VBN CD JJ NNP IN NNP NNS VBN IN NN NN NNS . Statements Wednesday say the suspects were detained in separate operations north of Baghdad in Kirkuk province , and in the towns of Tarmiyah and Judaidah . NNS NNP VBP DT NNS VBD VBN IN JJ NNS NN IN NNP IN NNP NN , CC IN DT NNS IN NNP CC NNP . The military says U.S. Special Forces advised the Iraqi army in all three operations . DT NN VBZ NNP NNP NNP VBD DT JJ NN IN DT CD NNS . The U.S. military also says Iraqi special operations forces detained seven suspected criminals in and around Baghdad 's Sadr City district , a stronghold of radical Shi'ite cleric Moqtada al-Sadr . DT NNP NN RB VBZ JJ JJ NNS NNS VBD CD JJ NNS IN CC IN NNP POS NNP NNP NN , DT NN IN JJ NNP NN NNP NNP . U.S. and Iraqi soldiers have been fighting Shi'ite militants in Sadr City in recent weeks as part of a crackdown on illegal militias . NNP CC JJ NNS VBP VBN VBG NNP NNS IN NNP NNP IN JJ NNS IN NN IN DT NN IN JJ NNS . The United Nations reports a halt to international aid work in the displaced persons ' camps of Zalinge , in Sudan 's Darfur region . DT NNP NNPS VBZ DT NN TO JJ NN NN IN DT JJ NNS POS NNS IN NNP , IN NNP POS NNP NN . The U.N. refugee agency says international groups suspended their activities in the camps after a mob killed three water workers on Thursday . DT NNP NN NN VBZ JJ NNS VBD PRP$ NNS IN DT NNS IN DT NN VBN CD NN NNS IN NNP . It was unclear what caused the violence . PRP VBD JJ WP VBD DT NN . Friday , spokesman Ron Redmond said agency is ' extremely concerned ' about what he called the continued deterioration in Darfur 's security situation . NNP , NN NNP NNP VBD NN VBZ `` RB JJ `` IN WP PRP VBD DT JJ NN IN NNP POS NN NN . Redmond listed a number of attacks on relief groups over the past week , including one where an aid worker was shot dead in North Darfur . NNP VBD DT NN IN NNS IN NN NNS IN DT JJ NN , VBG CD WRB DT NN NN VBD VBN JJ IN NNP NNP . World leaders have been pressing Sudan to accept a U.N. peacekeeping force in Darfur . NN NNS VBP VBN VBG NNP TO VB DT NNP NN NN IN NNP . The government is still rejecting any U.N. deployment to the region , where more than three years of violence has killed nearly 2,00,000 people , and displaced some two million others . DT NN VBZ RB VBG DT NNP NN TO DT NN , WRB JJR IN CD NNS IN NN VBZ VBN RB CD NNS , CC VBD DT CD CD NNS . Iraq 's parliament has approved six new government ministers , including four from the country 's Sunni minority which held power under Saddam Hussein . NNP POS NN VBZ VBN CD JJ NN NNS , VBG CD IN DT NN POS NNP NN WDT VBD NN IN NNP NNP . However , the Sunni Human Rights appointee Hashem Ashibli quickly turned down the post , leaving a single vacancy in the 33-member cabinet . RB , DT NNP NNP NNP NN NNP NNP RB VBD RP DT NN , VBG DT JJ NN IN DT JJ NN . He said he could not accept a position awarded on a sectarian basis . PRP VBD PRP MD RB VB DT NN VBN IN DT JJ NN . A Sunni Arab , Saadoun al-Dulaimi , has been approved as defense minister , and a Shi'ite ( Ibrahim Bahr al-Uloum ) will head the all-important oil ministry . DT NNP NN , NNP NNP , VBZ VBN VBN IN NN NN , CC DT NN LRB NNP NNP NNP RRB MD VB DT JJ NN NN . Top slots in the ministries of industry and electricity were also filled , along with a third deputy prime minister position . JJ NNS IN DT NNS IN NN CC NN VBD RB VBN , IN IN DT JJ NN JJ NN NN . Meanwhile , Iraqi police say gunmen assassinated a senior member of the Transportation Ministry Zoba Yass and his driver today in Baghdad . RB , JJ NNS VBP NNS VBD DT JJ NN IN DT NNP NNP NNP NNP CC PRP$ NN NN IN NNP . Separately , U.S. officials say coalition forces killed six insurgents and captured 54 suspects early Sunday near the western border town of al-Qaim . RB , NNP NNS VBP NN NNS VBD CD NNS CC VBD CD NNS JJ NNP IN DT JJ NN NN IN NNP . The U.S. government is delivering more bad news on the country 's struggling economy , saying first time claims for unemployment benefits are at a 26-year high . DT NNP NN VBZ VBG RBR JJ NN IN DT NN POS VBG NN , VBG JJ NN NNS IN NN NNS VBP IN DT JJ NN . The Labor Department report , issued Thursday , said the number of laid-off workers applying for benefits for the first time soared to 6,26,000 last week . DT NNP NNP NN , VBN NNP , VBD DT NN IN JJ NNS VBG IN NNS IN DT JJ NN VBD TO CD JJ NN . Officials said the total number of workers receiving unemployment benefits is now close to 4.8 million , another record . NNS VBD DT JJ NN IN NNS VBG NN NNS VBZ RB JJ TO CD CD , DT NN . A comprehensive government report on unemployment is due out Friday . DT JJ NN NN IN NN VBZ JJ IN NNP . Economists surveyed by news organizations predict the nationwide jobless rate will rise three-tenths of a percent to hit 7.5 percent . NNS VBN IN NN NNS VBP DT JJ NN NN MD VB NNS IN DT NN TO VB CD NN . Despite the rising claims for unemployment insurance , U.S. companies are squeezing more productivity out of their shrinking workforces . IN DT VBG NNS IN NN NN , NNP NNS VBP VBG JJR NN IN IN PRP$ NN NNS . A second Labor Department report Thursday said productivity - a measure of how much an employee produces per hour - rose more than three percent for the last three months of 2008 . DT JJ NNP NNP NN NNP VBD NN IN DT NN IN WRB RB DT NN VBZ IN NN : VBD JJR IN CD NN IN DT JJ CD NNS IN CD . At least 17 people , including seven children , were killed and more than 70 others wounded in an explosion Monday at a home used for religious education in Pakistan 's Punjab province . IN JJS CD NNS , VBG CD NNS , VBD VBN CC JJR IN CD NNS VBN IN DT NN NNP IN DT NN VBN IN JJ NN IN NNP POS NNP NN . Officials in the Mian Channu area said they believe the blast , which also flattened more than 20 nearby houses , was caused by a cache of explosives stored in the house . NNS IN DT NNP NNP NN VBD PRP VBP DT NN , WDT RB VBD JJR IN CD JJ NNS , VBD VBN IN DT NN IN NNS VBN IN DT NN . They said the rescuers were trying to recover people still trapped in the rubble . PRP VBD DT NNS VBD VBG TO VB NNS RB VBN IN DT NN . The house belongs to a Muslim cleric who has been accused of recruiting fighters for a banned militant group . DT NN VBZ TO DT NNP NN WP VBZ VBN VBN IN VBG NNS IN DT VBN JJ NN . It is unclear what triggered the blast , but local police searching through the debris say they found rocket launchers , grenades , and several suicide-bomber jackets . PRP VBZ JJ WP VBD DT NN , CC JJ NN VBG IN DT NN VBP PRP VBD NN NNS , NNS , CC JJ NN NNS . Pakistani Prime Minister Yusuf Raza Gilani condemned the blast and ordered an inquiry into the incident . JJ NNP NNP NNP NNP NNP VBD DT NN CC VBD DT NN IN DT NN . A U.S. immigration judge has denied bail for Luis Posada Carriles , an asylum-seeking former CIA operative from Cuba . DT NNP NN NN VBZ VBN NN IN NNP NNP NNP , DT JJ JJ NNP NN IN NNP . U.S. authorities arrested the 77-year-old Posada Carriles in May after he illegally entered the country through Mexico . NNP NNS VBN DT JJ NNP NNP IN NNP IN PRP RB VBD DT NN IN NNP . Posada Carriles is wanted in Venezuela for his alleged role in a 1976 Cuban airliner bombing that killed 73 people . NNP NNP VBZ VBN IN NNP IN PRP$ JJ NN IN DT CD JJ NN NN WDT VBD CD NNS . Some 20 years ago , a Venezuelan court acquitted him of a role in the bombing . DT CD NNS RB , DT JJ NN VBN PRP IN DT NN IN DT NN . He later escaped from prison while awaiting a new trial . PRP RB VBD IN NN IN VBG DT JJ NN . In May , U.S. officials rejected a Venezuelan request for his arrest , citing a lack of evidence against the Cuban exile who holds Venezuelan citizenship . IN NNP , NNP NNS VBD DT JJ NN IN PRP$ NN , VBG DT NN IN NN IN DT JJ NN WP VBZ JJ NN . Pakistani President Pervez Musharraf has sought the support of Pakistanis in the fight against religious extremism and terrorism . JJ NNP NNP NNP VBZ VBN DT NN IN NNS IN DT NN IN JJ NN CC NN . He underlined the need of ridding the society of extremism and terrorism , saying they are hurting Pakistan 's image by their actions . PRP VBD DT NN IN VBG DT NN IN NN CC NN , VBG PRP VBP VBG NNP POS NN IN PRP$ NNS . In a broadcast address to the nation Thursday , General Musharraf promised ' stern action ' against those involved in the printing , publication and distribution of hate material , including newspapers , magazines , pamphlets , and audio and video material . IN DT NN NN TO DT NN NNP , NNP NNP VBD `` JJ NN `` IN DT VBN IN DT NN , NN CC NN IN NN NN , VBG NNS , NNS , NNS , CC NN CC NN NN . He said no outlawed organization will be allowed to collect donations and action will be taken against those who preach hate in mosques . PRP VBD DT JJ NN MD VB VBN TO VB NNS CC NN MD VB VBN IN DT WP VBP NN IN NNS . Some Western leaders have said Pakistan should do more to curb militancy , and that extremists were operating in Islamic schools , or madrassas . DT JJ NNS VBP VBN NNP MD VB JJR TO VB NN , CC IN NNS VBD VBG IN JJ NNS , CC NNS . General Musharraf said all madrassas in Pakistan must be registered with the government by the end of this year . NNP NNP VBD DT NNS IN NNP MD VB VBN IN DT NN IN DT NN IN DT NN . U.S. health officials have called for updated quarantine procedures , including better access to airline and ship passenger lists , to protect Americans from infectious diseases , including bird flu . NNP NN NNS VBP VBN IN VBN NN NNS , VBG JJR NN TO NN CC NN NN NNS , TO VB NNS IN JJ NNS , VBG NN NN . The changes , proposed by the U.S. Centers for Disease Control , would apply to planes and ships arriving from outside the United States as well as some domestic flights . DT NNS , VBN IN DT NNP NNPS IN NNP NNP , MD VB TO NNS CC NNS VBG IN IN DT NNP NNPS RB RB IN DT JJ NNS . The CDC also called for giving U.S. health officials more authority to administer medical treatment and vaccinations to quarantined people . DT NNP RB VBD IN VBG NNP NN NNS RBR NN TO VB JJ NN CC NNS TO JJ NNS . Health officials say the need for new regulations became apparent during the 2003 SARS , Severe Acute Respiratory Syndrome outbreak , when authorities found it difficult to get in touch with airline passengers who may have been exposed to the illness . NN NNS VBP DT NN IN JJ NNS VBD JJ IN DT CD NNP , NNP NNP NNP NNP NN , WRB NNS VBD PRP JJ TO VB IN NN IN NN NNS WP MD VB VBN VBN TO DT NN . The proposals come amid growing concern about the spread of bird flu , which has killed more than 60 people in Asia since 2003 . DT NNS VBP IN VBG NN IN DT NN IN NN NN , WDT VBZ VBN JJR IN CD NNS IN NNP IN CD . Pakistani police have arrested four alleged members of an Islamic militant group in connection with the murder of a prominent Shi'ite Muslim cleric earlier this year . JJ NNS VBP VBN CD JJ NNS IN DT JJ JJ NN IN NN IN DT NN IN DT JJ NNP NNP NN RBR DT NN . A senior police official , Saud Aziz , says the four wanted in connection with the slaying of Agha Ziauddin in the town of Gilgit in January were picked up in the city of Rawalpindi . DT JJ NN NN , NNP NNP , VBZ DT CD VBN IN NN IN DT NN IN NNP NNP IN DT NN IN NNP IN NNP VBD VBN RP IN DT NN IN NNP . The murder sparked sectarian violence that left at least 14 people dead . DT NN VBD JJ NN WDT VBD IN JJS CD NNS JJ . The official says the suspects belong to the Sunni Muslim Lashkar-e-Jhangvi and that they were plotting to attack Shi'ite events last week but changed their minds because of tight security . DT NN VBZ DT NNS VBP TO DT NNP NNP NNP CC IN PRP VBD VBG TO VB NNP NNS JJ NN CC VBD PRP$ NNS IN IN JJ NN . The banned group is accused of killing hundreds of Pakistani Shi'ite Muslims in recent years and is believed to have links to the al-Qaida terrorist network . DT VBN NN VBZ VBN IN VBG NNS IN JJ NNP NNPS IN JJ NNS CC VBZ VBN TO VB NNS TO DT NNP NN NN . The name ' Latvia ' originates from the ancient Latgalians , one of four eastern Baltic tribes that formed the ethnic core of the Latvian people ( ca. 8th - 12th centuries A.D. ) . DT NN `` NNP `` VBZ IN DT JJ NNS , CD IN CD JJ NNP NNS WDT VBD DT JJ NN IN DT JJ NNS LRB NN CD : JJ NNS NNP RRB . The region subsequently came under the control of Germans , Poles , Swedes , and finally , Russians . DT NN RB VBD IN DT NN IN NNS , NNS , NNS , CC RB , NNS . A Latvian republic emerged following World War I , but it was annexed by the USSR in 1940 - an action never recognized by the US and many other countries . DT JJ NN VBD VBG NNP NNP NNP , CC PRP VBD VBN IN DT NNP IN CD IN DT NN RB VBN IN DT NNP CC JJ JJ NNS . Latvia reestablished its independence in 1991 following the breakup of the Soviet Union . NNP VBD PRP$ NN IN CD VBG DT NN IN DT NNP NNP . Although the last Russian troops left in 1994 , the status of the Russian minority ( some 30 % of the population ) remains of concern to Moscow . IN DT JJ JJ NNS VBD IN CD , DT NN IN DT JJ NN LRB DT CD NN IN DT NN RRB VBZ IN NN TO NNP . Latvia joined both NATO and the EU in the spring of 2004 . NNP VBD DT NNP CC DT NNP IN DT NN IN CD . Bolivia is one of the poorest and least developed countries in Latin America . NNP VBZ CD IN DT JJS CC JJS JJ NNS IN NNP NNP . Following a disastrous economic crisis during the early 1980s , reforms spurred private investment , stimulated economic growth , and cut poverty rates in the 1990s . VBG DT JJ JJ NN IN DT JJ NNS , NNS VBD JJ NN , VBD JJ NN , CC VBD NN NNS IN DT NNS . The period 2003 - 5 was characterized by political instability , racial tensions , and violent protests against plans - subsequently abandoned - to export Bolivia 's newly discovered natural gas reserves to large northern hemisphere markets . DT NN CD : CD VBD VBN IN JJ NN , JJ NNS , CC JJ NNS IN NNS IN RB VBN : TO VB NNP POS RB VBN JJ NN NNS TO JJ JJ NN NNS . In 2005 , the government passed a controversial hydrocarbons law that imposed significantly higher royalties and required foreign firms then operating under risk-sharing contracts to surrender all production to the state energy company in exchange for a predetermined service fee . IN CD , DT NN VBD DT JJ NNS NN WDT VBD RB JJR NNS CC VBD JJ NNS RB VBG IN JJ NNS TO VB DT NN TO DT NN NN NN IN NN IN DT JJ NN NN . After higher prices for mining and hydrocarbons exports produced a fiscal surplus in 2008 , the global recession in 2009 slowed growth . IN JJR NNS IN NN CC NNS NNS VBD DT JJ NN IN CD , DT JJ NN IN CD VBD NN . Nevertheless , Bolivia recorded the highest growth rate in South America that year . RB , NNP VBD DT JJS NN NN IN NNP NNP DT NN . During 2010 an increase in world commodity prices resulted in the biggest trade surplus in history . IN CD DT NN IN NN NN NNS VBD IN DT JJS NN NN IN NN . However , a lack of foreign investment in the key sectors of mining and hydrocarbons and higher food prices pose challenges for the Bolivian economy . RB , DT NN IN JJ NN IN DT JJ NNS IN NN CC NNS CC JJR NN NNS VBP NNS IN DT JJ NN . Autonomy for the Swazis of southern Africa was guaranteed by the British in the late 19th century ; independence was granted in 1968 . NN IN DT NNS IN JJ NNP VBD VBN IN DT NNS IN DT JJ JJ NN ; NN VBD VBN IN CD . Student and labor unrest during the 1990s pressured King MSWATI III , the world 's last absolute monarch , to grudgingly allow political reform and greater democracy , although he has backslid on these promises in recent years . NN CC NN NN IN DT NNS VBD NNP NNP NNP , DT NN POS JJ JJ NN , TO RB VB JJ NN CC JJR NN , IN PRP VBZ VBN IN DT NNS IN JJ NNS . A constitution came into effect in 2006 , but the legal status of political parties remains unclear . DT NN VBD IN NN IN CD , CC DT JJ NN IN JJ NNS VBZ JJ . The African United Democratic Party tried unsuccessfully to register as an official political party in mid 2006 . DT JJ NNP NNP NNP VBD RB TO VB IN DT JJ JJ NN IN JJ CD . Talks over the constitution broke down between the government and progressive groups in 2007 . NNS IN DT NN VBD RP IN DT NN CC JJ NNS IN CD . Swaziland recently surpassed Botswana as the country with the world 's highest known HIV / AIDS prevalence rate . NNP RB VBD NNP IN DT NN IN DT NN POS JJS VBN NNP CC NNP NN NN . First colonized by the Spanish , the islands came under British control in the early 19th century . RB VBN IN DT NNS , DT NNS VBD IN JJ NN IN DT JJ JJ NN . The islands ' sugar industry was hurt by the emancipation of the slaves in 1834 . DT NNS POS NN NN VBD VBN IN DT NN IN DT NNS IN CD . Manpower was replaced with the importation of contract laborers from India between 1845 and 1917 , which boosted sugar production as well as the cocoa industry . NN VBD VBN IN DT NN IN NN NNS IN NNP IN CD CC CD , WDT VBD NN NN RB RB IN DT NN NN . The discovery of oil on Trinidad in 1910 added another important export . DT NN IN NN IN NNP IN CD VBD DT JJ NN . Independence was attained in 1962 . NN VBD VBN IN CD . The country is one of the most prosperous in the Caribbean thanks largely to petroleum and natural gas production and processing . DT NN VBZ CD IN DT RBS JJ IN DT NNP NNS RB TO NN CC JJ NN NN CC NN . Tourism , mostly in Tobago , is targeted for expansion and is growing . NN , RB IN NNP , VBZ VBN IN NN CC VBZ VBG . The government is coping with a rise in violent crime . DT NN VBZ VBG IN DT NN IN JJ NN . A GOATHERD , driving his flock from their pasture at eventide , found some Wild Goats mingled among them , and shut them up together with his own for the night . DT NN , VBG PRP$ NN IN PRP$ NN IN NN , VBD DT JJ NNS VBN IN PRP , CC VBD PRP RP RB IN PRP$ NN IN DT NN . The next day it snowed very hard , so that he could not take the herd to their usual feeding places , but was obliged to keep them in the fold . DT JJ NN PRP VBD RB JJ , RB IN PRP MD RB VB DT NN TO PRP$ JJ NN NNS , CC VBD VBN TO VB PRP IN DT NN . He gave his own goats just sufficient food to keep them alive , but fed the strangers more abundantly in the hope of enticing them to stay with him and of making them his own . PRP VBD PRP$ JJ NNS RB JJ NN TO VB PRP JJ , CC VBD DT NNS RBR RB IN DT NN IN VBG PRP TO VB IN PRP CC IN VBG PRP PRP$ NN . When the thaw set in , he led them all out to feed , and the Wild Goats scampered away as fast as they could to the mountains . WRB DT NN VBD IN , PRP VBD PRP DT RP TO VB , CC DT JJ NNS VBD RB RB JJ IN PRP MD TO DT NNS . The Goatherd scolded them for their ingratitude in leaving him , when during the storm he had taken more care of them than of his own herd . DT NN VBD PRP IN PRP$ NN IN VBG PRP , WRB IN DT NN PRP VBD VBN RBR NN IN PRP IN IN PRP$ JJ NN . One of them , turning about , said to him : ' That is the very reason why we are so cautious ; for if you yesterday treated us better than the Goats you have had so long , it is plain also that if others came after us , you would in the same manner prefer them to ourselves . ' CD IN PRP , VBG RB , VBD TO PRP : `` DT VBZ DT JJ NN WRB PRP VBP RB JJ ; IN IN PRP NN VBD PRP JJR IN DT NNS PRP VBP VBN RB RB , PRP VBZ JJ RB IN IN NNS VBD IN PRP , PRP MD IN DT JJ NN VB PRP TO PRP . `` Old friends can not with impunity be sacrificed for new ones . JJ NNS MD RB IN NN VB VBN IN JJ NNS . A KIND-HEARTED Physician sitting at the bedside of a patient afflicted with an incurable and painful disease , heard a noise behind him , and turning saw a cat laughing at the feeble efforts of a wounded mouse to drag itself out of the room . DT JJ NN VBG IN DT NN IN DT NN VBN IN DT JJ CC JJ NN , VBD DT NN IN PRP , CC VBG VBD DT NN VBG IN DT JJ NNS IN DT VBN NN TO VB PRP IN IN DT NN . ' You cruel beast ! ' cried he . `` PRP JJ NN . `` VBD PRP . ' Why do n't you kill it at once , like a lady ? ' `` WRB VBP RB PRP VB PRP IN RB , IN DT NN . `` Rising , he kicked the cat out of the door , and picking up the mouse compassionately put it out of its misery by pulling off its head . VBG , PRP VBD DT NN IN IN DT NN , CC VBG RP DT NN RB VBD PRP IN IN PRP$ NN IN VBG RP PRP$ NN . Recalled to the bedside by the moans of his patient , the Kind-hearted Physician administered a stimulant , a tonic , and a nutrient , and went away . VBN TO DT NN IN DT NNS IN PRP$ NN , DT JJ NN VBD DT NN , DT JJ , CC DT NN , CC VBD RB . Kids these days , they grow up too quickly and know entirely too much too soon . NNS DT NNS , PRP VBP RP RB RB CC VB RB RB RB RB RB . I mean this one friend of mine was trying to get his boy into Nursery Rhymes . PRP VBP DT CD NN IN NN VBD VBG TO VB PRP$ NN IN NN NN . All that happened was that the boy told his shrink that his Father had a lot of problems , including a fixation that a cow could orbit the moon . DT DT VBD VBD IN DT NN VBD PRP$ NN IN PRP$ NN VBD DT NN IN NNS , VBG DT NN IN DT NN MD VB DT NN . The fate of seven suspected Somali pirates who were captured by a Spanish warship is uncertain after Spanish prosecutors reversed plans to bring them to Spain to face trial . DT NN IN CD JJ JJ NNS WP VBD VBN IN DT JJ NN VBZ JJ IN JJ NNS VBD NNS TO VB PRP TO NNP TO VB NN . A Spanish judge , Fernando Andreu , ordered the Somali men released on Friday . DT JJ NN , NNP NNP , VBD DT JJ NNS VBN IN NNP . However , he refused the prosecution 's request to surrender them to Kenyan authorities , saying it would violate the law , since proceedings were already taking place in Spain . RB , PRP VBD DT NN POS NN TO VB PRP TO JJ NNS , VBG PRP MD VB DT NN , IN NNS VBD RB VBG NN IN NNP . A Spanish ship seized the men off the coast of Somalia Wednesday after their boat capsized during their alleged attempt to hijack a Panamanian-flagged vessel . DT JJ NN VBD DT NNS IN DT NN IN NNP NNP IN PRP$ NN VBN IN PRP$ JJ NN TO VB DT JJ NN . France is prosecuting 15 piracy suspects in its own courts , though it has transferred others to Kenya , including 11 who were handed over on Friday . NNP VBZ VBG CD NN NNS IN PRP$ JJ NNS , IN PRP VBZ VBN NNS TO NNP , VBG CD WP VBD VBN RP IN NNP . China says it punished more than 1,200 health workers last year for such corruption as taking commissions from drug companies and accepting bribes from patients . NNP VBZ PRP VBD JJR IN CD NN NNS JJ NN IN JJ NN IN VBG NNS IN NN NNS CC VBG NNS IN NNS . The official Xinhua news agency says investigators from China 's Health Ministry uncovered more than 200 cases of hospital staff members buying and selling medicine for personal profit . DT JJ NNP NN NN VBZ NNS IN NNP POS NNP NNP VBD JJR IN CD NNS IN NN NN NNS VBG CC VBG NN IN JJ NN . The health workers are said to have received $ 1.3 million illegally . DT NN NNS VBP VBN TO VB VBN $ CD CD RB . Authorities also found that some doctors took bribes for surgeries , even after patients paid their hospital fees . NNS RB VBD IN DT NNS VBD NNS IN NNS , RB IN NNS VBD PRP$ NN NNS . More than 800 health workers were punished for charging illegal fees . JJR IN CD NN NNS VBD VBN IN VBG JJ NNS . China 's Health Minister Gao Qiang said at a nationwide health meeting Saturday that most hospital staff members are doing a good job . NNP POS NNP NNP NNP NNP VBD IN DT JJ NN NN NNP IN JJS NN NN NNS VBP VBG DT JJ NN . But he says those who become corrupt will be punished without mercy . CC PRP VBZ DT WP VBP JJ MD VB VBN IN NN . A vault built to safeguard seed samples of the world 's important food crops has opened in the remote Norwegian archipelago of Svalbard . DT NN VBN TO VB NN NNS IN DT NN POS JJ NN NNS VBZ VBN IN DT JJ JJ NN IN NNP . Norway 's Prime Minister Jens Stoltenberg and Nobel-Prize winning environmentalist Wangari Maathai on Tuesday placed the first seeds inside the vault , built in caverns 130 meters inside a frozen mountain . NNP POS JJ NN NNP NNP CC NNP VBG NN NNP NNP IN NNP VBD DT JJ NNS IN DT NN , VBN IN NNS CD NNS IN DT JJ NN . The repository is designed to shield plant seeds and preserve crop diversity in the event of disaster such as climate change , epidemic or nuclear war . DT NN VBZ VBN TO VB NN NNS CC VB NN NN IN DT NN IN NN JJ IN NN NN , JJ CC JJ NN . The vault has the capacity to store 4.5 million seed samples . DT NN VBZ DT NN TO VB CD CD NN NNS . The Norwegian government spent $ 9 million to build the vault . DT JJ NN VBD $ CD CD TO VB DT NN . Other countries can deposit seeds without charge and reserve the right to withdraw them upon need . JJ NNS MD VB NNS IN NN CC VB DT NN TO VB PRP IN NN . More than two dozen Iraqi civilians and policemen have been killed in a wave of bombings Wednesday in Baghdad and parts of central and northern Iraq meant to intimidate voters less than two weeks ahead of national elections . JJR IN CD NN JJ NNS CC NNS VBP VBN VBN IN DT NN IN NNS NNP IN NNP CC NNS IN JJ CC JJ NNP VBD TO VB NNS JJR IN CD NNS RB IN JJ NNS . Five bomb attacks were carried out in Baghdad . CD NN NNS VBD VBN RP IN NNP . Wanted terrorist Abu Musab al-Zarqawi 's group ( al-Qaida in Iraq ) claimed responsibility for four of them , including one outside the Australian embassy . VBN JJ NNP NNP NNP POS NN LRB NNP IN NNP RRB VBD NN IN CD IN PRP , VBG CD IN DT JJ NN . The U.S. military reported at least 26 people were killed and many others wounded in those blasts . DT NNP NN VBD IN JJS CD NNS VBD VBN CC JJ NNS VBN IN DT NNS . North of the capital , in Kirkuk , police say a human rights activist and a relative were killed , while in Irbil , a bomb targeted the convoy of the police academy chief , killing a bystander . NNP IN DT NN , IN NNP , NNS VBP DT JJ NNS NN CC DT NN VBD VBN , IN IN NNP , DT NN VBD DT NN IN DT NN NN NN , VBG DT NN . And in Dohuk , the provincial governor escaped injury when a bomb hit his convoy . CC IN NNP , DT JJ NN VBD NN WRB DT NN VBD PRP$ NN . A policeman was also killed in a car bombing south of Baghdad , near Hilla . DT NN VBD RB VBN IN DT NN VBG NN IN NNP , IN NNP . An Israeli airstrike in the Gaza Strip has killed a top Islamic Jihad commander and at least six other people , a day after an Islamic Jihad suicide bomber killed five people in central Israel . DT JJ NN IN DT NNP NNP VBZ VBN DT JJ NNP NNP NN CC IN JJS CD JJ NNS , DT NN IN DT JJ NNP NN NN VBD CD NNS IN JJ NNP . The Israeli military confirmed the Thursday evening helicopter strike near the Jabaliya refugee camp , saying it targeted an Islamic Jihad militant . DT JJ NN VBD DT NNP NN NN NN IN DT NNP NN NN , VBG PRP VBD DT JJ NN NN . Palestinians identified him as Shahdi Mohanna , the Islamic Jihad commander for the northern Gaza Strip . NNS VBD PRP IN NNP NNP , DT NNP NNP NN IN DT JJ NNP NNP . They said three other Islamic Jihad activists and three civilians were also among the dead , and at least 15 people were wounded . PRP VBD CD JJ NNP NNP NNS CC CD NNS VBD RB IN DT NN , CC IN JJS CD NNS VBD VBN . Earlier Thursday , Israeli Prime Minister Ariel Sharon announced an offensive he said would not stop until the Palestinian Authority moves decisively to stop militant attacks . RBR NNP , JJ NNP NNP NNP NNP VBD DT NN PRP VBD MD RB VB IN DT JJ NNP VBZ RB TO VB NN NNS . He also said he will not hold talks with Palestinian leader Mahmoud Abbas until the attacks stop . PRP RB VBD PRP MD RB VB NNS IN JJ NN NNP NNP IN DT NNS VBP . A draft peace proposal under consideration by the Afghan government could offer Taliban leaders exile overseas if they agree to stop fighting . DT NN NN NN IN NN IN DT JJ NN MD VB NNP NNS NN RB IN PRP VBP TO VB VBG . The draft plan , seen by reporters for British news organizations Reuters and the Guardian newspaper , also calls for ' de-radicalization ' classes for insurgents and thousands of new jobs to be created for militants who renounce violence . DT NN NN , VBN IN NNS IN JJ NN NNS NNS CC DT NNP NN , RB VBZ IN `` NN `` NNS IN NNS CC NNS IN JJ NNS TO VB VBN IN NNS WP VBP NN . The proposal comes weeks before a grand council of Afghans , known as a jirga , meets in Kabul on May 29 to discuss how to make peace with the insurgents . DT NN VBZ NNS IN DT JJ NN IN NNS , VBN IN DT NN , VBZ IN NNP IN NNP CD TO VB WRB TO VB NN IN DT NNS . Possible peace talks will be a key issue discussed when Afghan President Hamid Karzai meets with U.S. President Barack Obama in Washington this week . JJ NN NNS MD VB DT JJ NN VBN WRB JJ NNP NNP NNP VBZ IN NNP NNP NNP NNP IN NNP DT NN . Russia has ordered its fleet of Su-24 bombers grounded after one of the planes crashed during a training mission . NNP VBZ VBN PRP$ NN IN NNP NNS VBD IN CD IN DT NNS VBD IN DT NN NN . Air force officials said Thursday that a technical problem caused the early morning accident in the Far East Khabarovsk territory . NNP NN NNS VBD NNP IN DT JJ NN VBD DT JJ NN NN IN DT NNP NNP NNP NN . They said preliminary investigation indicates that a technical problem rather than pilot error cause the crash . PRP VBD JJ NN VBZ IN DT JJ NN RB IN NN NN VBZ DT NN . Russian news media say rescue helicopters found the wreckage more than a 100 kilometers away from the airfield . JJ NN NNS VBP NN NNS VBD DT NN RBR IN DT CD NNS RB IN DT NN . The two pilots had ejected safely before the crash and were taken to a military hospital for a medical examination . DT CD NNS VBD VBN RB IN DT NN CC VBD VBN TO DT JJ NN IN DT JJ NN . Reports say there was no damage on the ground . NNS VBP EX VBD DT NN IN DT NN . The bomber flights are to remain suspended until investigators establish the cause of the crash . DT NN NNS VBP TO VB JJ IN NNS VB DT NN IN DT NN . Pro-Russian demonstrators in Crimea have protested against the arrival of a U.S. naval frigate in Sevastopol , the Ukrainian port where Russia 's Black Sea fleet is based . JJ NNS IN NNP VBP VBN IN DT NN IN DT NNP JJ NN IN NNP , DT JJ NN WRB NNP POS NNP NNP NN VBZ VBN . News-agency reports from Sevastopol say the demonstrators shouted ' NATO out ' and ' Yankee go home ' during their protest Wednesday . NN NNS IN NNP VBP DT NNS VBD `` NNP IN `` CC `` NN VB RB `` IN PRP$ NN NNP . Ukraine 's navy says the U.S. naval vessel is on a friendly visit to the Black Sea and is not taking part in any military exercises . NNP POS NN VBZ DT NNP JJ NN VBZ IN DT JJ NN TO DT NNP NNP CC VBZ RB VBG NN IN DT JJ NNS . Sevastopol 's naval base dates back to Soviet times . NNP POS JJ NN VBZ RB TO JJ NNS . Through a lease agreement with Ukraine , Russia will operate the facility until 2017 . IN DT NN NN IN NNP , NNP MD VB DT NN IN CD . Ukraine 's campaign to win NATO membership has been strongly opposed by Moscow , which says it will not accept any further expansion of the western alliance on Russia 's borders . NNP POS NN TO VB NNP NN VBZ VBN RB VBN IN NNP , WDT VBZ PRP MD RB VB DT JJ NN IN DT JJ NN IN NNP POS NNS . Egypt 's largest opposition group defied authorities and held anti-government protests in Cairo Sunday . NNP POS JJS NN NN VBD NNS CC VBN JJ NNS IN NNP NNP . Several thousand riot police prevented the Muslim Brotherhood from holding a rally outside the Egyptian parliament as planned . JJ CD NN NN VBD DT NNP NNP IN VBG DT NN IN DT JJ NN IN VBN . Instead , members of the group gathered in front of a Cairo mosque , shouting demands for political reforms . RB , NNS IN DT NN VBD IN NN IN DT NNP NN , VBG NNS IN JJ NNS . Authorities say they arrested at least 50 protesters . NNS VBP PRP VBN IN JJS CD NNS . Estimates of the crowd range from several hundred to 3,000 . NNS IN DT NN VBP IN JJ CD TO CD . Smaller protests took place at two other Cairo locations . JJR NNS VBD NN IN CD JJ NNP NNS . Egyptian authorities had arrested another 50 Brotherhood members before the protests . JJ NNS VBD VBN DT CD NNP NNS IN DT NNS . The Muslim Brotherhood calls for replacing Egypt 's secular government with an Islamic state . DT NNP NNP VBZ IN VBG NNP POS JJ NN IN DT JJ NN . The group was formally banned in 1954 , but its members , running in elections as independents , hold enough seats to make the Brotherhood the largest opposition group in Egypt 's parliament . DT NN VBD RB VBN IN CD , CC PRP$ NNS , VBG IN NNS IN NNS , VBP JJ NNS TO VB DT NN DT JJS NN NN IN NNP POS NN . Russia says it is commissioning its first unit of new mobile intercontinental ballistic missiles . NNP VBZ PRP VBZ VBG PRP$ JJ NN IN JJ JJ JJ JJ NNS . Monday told Russian television the new version of the Topol-M missile is capable of penetrating multi-layered missile defense systems . NNP VBD JJ NN DT JJ NN IN DT NNP NN VBZ JJ IN VBG JJ NN NN NNS . Ivanov said the missiles will form the core of Russia 's strategic missile forces . NNP VBD DT NNS MD VB DT NN IN NNP POS JJ NN NNS . He called them a new generation of the stationary Topol system already in service . PRP VBD PRP DT JJ NN IN DT JJ NNP NN RB IN NN . Western analysts say Topol missiles were first deployed in Russian silos in the late 1990s . JJ NNS VBP NNP NNS VBD JJ VBN IN JJ NNS IN DT JJ NNS . The new missiles reportedly can carry a 1,200 kilogram payload and have an estimated range of about 10,000 kilometers . DT JJ NNS RB MD VB DT CD NN NN CC VBP DT VBN NN IN IN CD NNS . They are said to maneuver in ways that are difficult to detect . PRP VBP VBN TO VB IN NNS WDT VBP JJ TO VB . A massive blast at an ammunition shop in Afghanistan 's capital leveled shops and homes , killing at least six people and wounding around nine others . DT JJ NN IN DT NN NN IN NNP POS NN VBD NNS CC NNS , VBG IN JJS CD NNS CC VBG IN CD NNS . Bystanders joined rescuers Wednesday to dig through the rubble of collapsed buildings in an attempt to find survivors . NNS VBD NNS NNP TO VB IN DT NN IN JJ NNS IN DT NN TO VB NNS . Descriptions of the scope of the damage vary , with reports saying several to 25 buildings in Kabul were destroyed . NNS IN DT NN IN DT NN VBP , IN NNS VBG JJ TO CD NNS IN NNP VBD VBN . Police have not said what caused the blast in the ammunition store . NNS VBP RB VBN WP VBD DT NN IN DT NN NN . Also Wednesday , a suicide bomber in eastern Afghanistan blew himself up near a police convoy . RB NNP , DT NN NN IN JJ NNP VBD PRP RP IN DT NN NN . Police officers in Khost said at least four civilians were killed and more than 30 other people were injured , among them Afghan policemen . NNS NNS IN NNP VBD IN JJS CD NNS VBD VBN CC JJR IN CD JJ NNS VBD VBN , IN PRP JJ NNS . Members of a violent Central American street gang have been sent to the southwestern U.S. state of Arizona to attack Minuteman Project volunteers , as they begin a month-long campaign to help patrol the southern U.S. border with Mexico . NNS IN DT JJ JJ JJ NN NN VBP VBN VBN TO DT JJ NNP NN IN NNP TO VB NNP NNP NNS , IN PRP VBP DT JJ NN TO VB VB DT JJ NNP NN IN NNP . James Gilchrist , a Minuteman organizer frustrated by the U.S. government 's failure to control illegal immigration , tells the Washington Times newspaper that leaders of Mara Salvatrucha or MS-13 have sent gang members to confront his group in Arizona . NNP NNP , DT NNP NN VBN IN DT NNP NN POS NN TO VB JJ NN , VBZ DT NNP NNP NN IN NNS IN NNP NNP CC NNP VBP VBN NN NNS TO VB PRP$ NN IN NNP . More than 1,000 civilian volunteers are expected to converge on the city of Tombstone Friday to begin a 30-day border patrol . JJR IN CD JJ NNS VBP VBN TO VB IN DT NN IN NNP NNP TO VB DT JJ NN NN . Likewise , Hispanics from the National Alliance for Human Rights are going to Tombstone to protest the Minuteman Project . RB , NNS IN DT NNP NNP IN NNP NNPS VBP VBG TO VB TO VB DT NNP NNP . Last year , 5,00,000 illegal aliens were caught in Arizona . JJ NN , CD JJ NNS VBD VBN IN NNP . MS-13 runs a major smuggling operation on the U.S.-Mexico border , running drugs , weapons and undocumented aliens from Central and South America into the United States . NNP VBZ DT JJ NN NN IN DT JJ NN , VBG NNS , NNS CC JJ NNS IN NNP CC NNP NNP IN DT NNP NNPS . The World Bank has approved $ 257 million in loans for business development in Colombia and a project designed to improve the country 's environment . DT NNP NNP VBZ VBN $ CD CD IN NNS IN NN NN IN NNP CC DT NN VBN TO VB DT NN POS NN . In a statement issued Thursday , the bank says its board of directors allocated $ 250 million to fund a business productivity and efficiency project designed to create businesses , improve their access to financing , and increase overall productivity in Colombia . IN DT NN VBN NNP , DT NN VBZ PRP$ NN IN NNS VBD $ CD CD TO VB DT NN NN CC NN NN VBN TO VB NNS , VB PRP$ NN TO NN , CC VB JJ NN IN NNP . The Bank allocated another $ 7 million to Colombia for a sustainable development project , aimed at reducing air and water pollution , improve hygiene and urban environmental management . DT NNP VBD DT $ CD CD TO NNP IN DT JJ NN NN , VBN IN VBG NN CC NN NN , VB NN CC JJ JJ NN . The bank is also loaning El Salvador $ 27 million to support a poverty reduction program known as Red Solidaria , designed to help the poorest Salvadorans by improving health , nutrition and education in the country . DT NN VBZ RB VBG NNP NNP $ CD CD TO VB DT NN NN NN VBN IN NNP NNP , VBN TO VB DT JJS NNS IN VBG NN , NN CC NN IN DT NN . Italian opposition politicians are demanding Prime Minister Silvio Berlusconi apologize for using an obscenity to refer to anyone who would vote against him in Sunday 's election . JJ NN NNS VBP VBG NNP NNP NNP NNP NN IN VBG DT NN TO VB TO DT WP MD VB IN PRP IN NNP POS NN . During a speech to a group of shopkeepers Tuesday , Mr. Berlusconi used a word regarded by many as an obscenity and by others as an insult . IN DT NN TO DT NN IN NNS NNP , NNP NNP VBD DT NN VBN IN JJ IN DT NN CC IN NNS IN DT NN . He said using such language was rough but effective . PRP VBD VBG JJ NN VBD JJ CC JJ . The remark came a day after Mr. Berlusconi traded insults in a political debate with his chief political rival , center-left leader Romano Prodi . DT NN VBD DT NN IN NNP NNP VBD NNS IN DT JJ NN IN PRP$ JJ JJ NN , JJ NN NNP NNP . Both candidates assailed the other 's fiscal policies , with Mr. Berlusconi calling Prodi a ' useful idiot ' and Prodi saying the prime minister is like a ' drunkard clinging to a lamppost . ' DT NNS VBD DT NN POS JJ NNS , IN NNP NNP VBG NNP DT `` JJ NN `` CC NNP VBG DT JJ NN VBZ IN DT `` NN VBG TO DT NN . `` Voters go to the polls Sunday and Monday to choose a new government . NNS VBP TO DT NNS NNP CC NNP TO VB DT JJ NN . Polls show many of the voters are undecided . NNS VBP NN IN DT NNS VBP JJ . Iraqi police say a roadside bombing in Baghdad Saturday killed at least two people who were taking part in a Shi'ite Muslim religious procession . JJ NNS VBP DT NN NN IN NNP NNP VBD IN JJS CD NNS WP VBD VBG NN IN DT NNP NNP JJ NN . The attack , in the New Baghdad district , also wounded eight others . DT NN , IN DT NNP NNP NN , RB VBD CD NNS . Iraqi authorities have boosted security measures as hundreds of thousands of Shi'ite pilgrims flock to Iraq 's holy shrine city of Karbala for the solemn Ashura holiday . JJ NNS VBP VBN NN NNS IN NNS IN NNS IN NNP NNS VBP TO NNP POS JJ JJ NN IN NNP IN DT JJ NNP NN . Worshipers travel to the shrine each year to mourn the seventh-century killing of the grandson of the Prophet Muhammad . NNS VBP TO DT NN DT NN TO VB DT JJ NN IN DT NN IN DT NNP NNP . Several pilgrims were killed earlier this week in a spate of attacks targeting worshipers . JJ NNS VBD VBN RBR DT NN IN DT NN IN NNS VBG NNS . On Friday , a roadside bomb blast killed at least six Shi'ites in the eastern Baghdad district of Sadr City . IN NNP , DT NN NN NN VBD IN JJS CD NNS IN DT JJ NNP NN IN NNP NNP . Other attacks this week in the city of Mosul targeted the Christian minority as they celebrated Christmas . JJ NNS DT NN IN DT NN IN NNP VBD DT JJ NN IN PRP VBD NNP . Are the streets in America really paved with gold ? VBP DT NNS IN NNP RB VBD IN NN . Moses Bittok probably thinks so . NNPS NNP RB VBZ RB . Mr. Bittok , who immigrated from Kenya to the United States , learned last week he had a winning ticket worth nearly $ 2 million from an Iowa lottery . NNP NNP , WP VBD IN NNP TO DT NNP NNPS , VBD JJ NN PRP VBD DT NN NN JJ RB $ CD CD IN DT NNP NN . And get this - he realized he had won shortly after taking the oath of U.S. citizenship . CC VB DT : PRP VBD PRP VBD VBN RB IN VBG DT NN IN NNP NN . As he cashed in his ticket , Mr. Bittok said - quote - ' It 's almost like you adopted a country and they netted you $ 1.8 million dollars . ' IN PRP VBD IN PRP$ NN , NNP NNP VBD : NN : `` PRP VBZ RB IN PRP VBD DT NN CC PRP VBD PRP $ CD CD NNS . `` He added that something like this can only happen in America . PRP VBD IN DT IN DT MD RB VB IN NNP . A top Japanese official is calling for U.N. economic sanctions against North Korea if Pyongyang tests a nuclear device . DT JJ JJ NN VBZ VBG IN NNP JJ NNS IN NNP NNP IN NNP VBZ DT JJ NN . Shinzo Abe , acting secretary general of Japan 's ruling Liberal Democratic Party , said Sunday that it would be ' unthinkable ' for Tokyo to do nothing should North Korea conduct such a test . NNP NNP , VBG NN NN IN NNP POS NN NNP NNP NNP , VBD NNP IN PRP MD VB `` JJ `` IN NNP TO VB NN MD NNP NNP VB JJ DT NN . U.S. officials have warned that North Korea may be preparing for a nuclear test , citing satellite photos they say show suspicious activity near the coastal town of Kilju . NNP NNS VBP VBN IN NNP NNP MD VB VBG IN DT JJ NN , VBG NN NNS PRP VBP VB JJ NN IN DT JJ NN IN NNP . Interviewed on the television program Fox News Sunday , VBN IN DT NN NN NNP NNP NNP , U.S. National Security Adviser Stephen Hadley said a nuclear test would be an act of defiance , and prompt Washington and its allies to discuss new steps to punish the North Korean government . NNP NNP NNP NNP NNP NNP VBD DT JJ NN MD VB DT NN IN NN , CC VB NNP CC PRP$ NNS TO VB JJ NNS TO VB DT JJ JJ NN . North Korea has warned that it will consider any sanctions imposed against it a declaration of war . NNP NNP VBZ VBN IN PRP MD VB DT NNS VBN IN PRP DT NN IN NN . Authorities in Iraq say a car bomb exploded in central Baghdad early Monday , killing at least three people and injuring two others . NNS IN NNP VBP DT NN NN VBD IN JJ NNP JJ NNP , VBG IN JJS CD NNS CC VBG CD NNS . The blast occurred near one of the gates to the heavily fortified Green Zone , where the headquarters of the Iraqi government , U.S. forces and most foreign missions are located . DT NN VBD IN CD IN DT NNS TO DT RB VBN NNP NNP , WRB DT NN IN DT JJ NN , NNP NNS CC JJS JJ NNS VBP VBN . Separately , the U.S. military says more than 35 insurgents were killed when coalition air strikes hit five targets in a small western town ( Obeidi ) near the Syrian border . RB , DT NNP NN VBZ JJR IN CD NNS VBD VBN WRB NN NN NNS VBD CD NNS IN DT JJ JJ NN LRB NNP RRB IN DT JJ NN . Officials say 25 other insurgents were captured . NNS VBP CD JJ NNS VBD VBN . U.S. and Iraqi forces have been operating in the Euphrates River valley to stem the flow of insurgents and supplies from across the border , ahead of next month 's parliamentary elections . NNP CC JJ NNS VBP VBN VBG IN DT NNP NNP NN TO VB DT NN IN NNS CC NNS IN IN DT NN , RB IN JJ NN POS JJ NNS . On Sunday , Iraq 's Sunni Arab leaders called for an end to large-scale military operations in mostly Sunni areas , saying they may discourage Sunnis from taking part in the vote . IN NNP , NNP POS NNP NNP NNS VBD IN DT NN TO JJ JJ NNS IN RB JJ NNS , VBG PRP MD VB NNP IN VBG NN IN DT NN . European Union Health Commissioner Markos Kypriano says the EU is increasing its pledge for the fight against bird flu to $ 120 million . NNP NNP NNP NNP NNP NNP VBZ DT NNP VBZ VBG PRP$ NN IN DT NN IN NN NN TO $ CD CD . The EU pledged the assistance in Beijing Tuesday at a donors conference organized by health experts to raise money to help developing countries contain bird flu . DT NNP VBD DT NN IN NNP NNP IN DT NNS NN VBN IN NN NNS TO VB NN TO VB VBG NNS VBP NN NN . The World Bank and World Health Organization are hoping to raise $ 1.5 billion from rich countries to help poorer nations fight bird flu and prevent a global pandemic . DT NNP NNP CC NNP NNP NNP VBP VBG TO VB $ CD CD IN JJ NNS TO VB JJR NNS VBP NN NN CC VB DT JJ NN . The United States is expected to announce its pledge on Wednesday . DT NNP NNPS VBZ VBN TO VB PRP$ NN IN NNP . Swiss drugmaker Roche said it will donate another batch of Tamiflu , an anti-viral medication , to treat an additional two million people in the event of a bird flu pandemic . JJ NN NNP VBD PRP MD VB DT NN IN NNP , DT JJ NN , TO VB DT JJ CD CD NNS IN DT NN IN DT NN NN NN . A World Health Organization official , Margaret Chan , told the meeting there is a great risk of an epidemic , although the timing and severity is uncertain . DT NNP NNP NNP NN , NNP NNP , VBD DT NN EX VBZ DT JJ NN IN DT NN , IN DT NN CC NN VBZ JJ . The Inter-American Development Bank says the world Haitian disapora sent more than $ 1.6 billion back to families on the impoverished island in 2006 . DT NNP NNP NNP VBZ DT NN JJ NN VBD JJR IN $ CD CD RB TO NNS IN DT JJ NN IN CD . The bank said Tuesday the money sent to Haiti from overseas equals more than one-third of the country 's gross national product . DT NN VBD NNP DT NN VBN TO NNP IN RB VBZ JJR IN NN IN DT NN POS JJ JJ NN . More than $ 1 billion came from the United States and the large Haitian communities in Boston , Miami , and New~York . JJR IN $ CD CD VBD IN DT NNP NNPS CC DT JJ JJ NNS IN NNP , NNP , CC NNP . Other large contributions came from Canada , France , and the Bahamas . JJ JJ NNS VBD IN NNP , NNP , CC DT NNPS . The bank says many of the recipients of overseas money have incomes less than $ 500 a year . DT NN VBZ NN IN DT NNS IN JJ NN VBP NNS JJR IN $ CD DT NN . They use the extra funds for basic expenses , while others invest it in small businesses and education for their children . PRP VBP DT JJ NNS IN JJ NNS , IN NNS VBP PRP IN JJ NNS CC NN IN PRP$ NNS . Ukraine 's Prime Minister Yury Yekhanurov says the signing of a controversial natural gas deal with Russia has been postponed again . NNP POS NNP NNP NNP NNP VBZ DT NN IN DT JJ JJ NN NN IN NNP VBZ VBN VBN RB . The signing had already been delayed from Saturday to Wednesday . DT NN VBD RB VBN VBN IN NNP TO NNP . But Mr. Yekhanurov says experts continue to work on the documents . CC NNP NNP VBZ NNS VBP TO VB IN DT NNS . The draft agreement calls for Ukraine to pay Russia nearly twice as much for natural gas . DT NN NN VBZ IN NNP TO VB NNP RB RB RB JJ IN JJ NN . The new price would be $ 95 per 1,000 cubic meters , up from the previous rate of $ 50 . DT JJ NN MD VB $ CD IN CD JJ NNS , RB IN DT JJ NN IN $ CD . The two sides reached the deal January 4 , after a three-day suspension of Russian gas deliveries to Ukraine . DT CD NNS VBD DT NN NNP CD , IN DT JJ NN IN JJ NN NNS TO NNP . The agreement triggered a political crisis in Ukraine , and parliament voted to dismiss the government . DT NN VBD DT JJ NN IN NNP , CC NN VBD TO VB DT NN . The Chinese government has called for new measures to prevent the economy from overheating . DT JJ NN VBZ VBN IN JJ NNS TO VB DT NN IN VBG . The official Xinhua news agency reports the State Council moved on Friday to tighten controls on fixed asset investments and money supply after concluding they increased excessively in the first quarter . DT JJ NNP NN NN VBZ DT NNP NNP VBD IN NNP TO VB NNS IN JJ NN NNS CC NN NN IN VBG PRP VBD RB IN DT JJ NN . China 's banks doled out $ 156 billion in new loans in the first quarter , more than half the target for all of 2006 . NNP POS NNS VBD RP $ CD CD IN JJ NNS IN DT JJ NN , JJR IN PDT DT NN IN DT IN CD . The Chinese economy is growing at a rapid pace , topping nine percent in the last two years . DT JJ NN VBZ VBG IN DT JJ NN , VBG CD NN IN DT JJ CD NNS . Leaders are concerned the pace could raise inflation rates or lead to investment in unnecessary projects . NNS VBP VBN DT NN MD VB NN NNS CC VB TO NN IN JJ NNS . The central bank said the growth of the broad money supply rose nearly 19 percent on a year-on-year basis to $ 3.9 trillion by the end of March . DT JJ NN VBD DT NN IN DT JJ NN NN VBD RB CD NN IN DT JJ NN TO $ CD CD IN DT NN IN NNP . A media rights group says Burma 's military-led government has released two Burmese journalists working for a Japanese television station . DT NNS NNS NN VBZ NNP POS JJ NN VBZ VBN CD JJ NNS VBG IN DT JJ NN NN . Reporters Without Borders and the Burma Media Association welcomed the release of the reporters after two days of detention . NNS IN NNS CC DT NNP NNP NNP VBD DT NN IN DT NNS IN CD NNS IN NN . They say the journalists are in good shape - despite being shaken by the incident . PRP VBP DT NNS VBP IN JJ NN IN IN VBG VBN IN DT NN . The two journalists were arrested Monday after they went to a port near Rangoon to verify the arrival of a North Korean cargo ship . DT CD NNS VBD VBN NNP IN PRP VBD TO DT NN IN NNP TO VB DT NN IN DT JJ JJ NN NN . The reporters , Aung Shwe Oo and his daughter , Daw Sint Sint Aung , both work for Nippon News Network 's Bangkok bureau . DT NNS , NNP NNP NNP CC PRP$ NN , NNP NNP NNP NNP , DT VBP IN NNP NNP NNP POS NNP NN . Images of the Indian Ocean floor show a giant landslide at the starting point of the earthquake triggered tsunami that devastated regional coastlines on December 26 . NNS IN DT NNP NNP NN VBP DT JJ NN IN DT VBG NN IN DT NN VBD NNS WDT VBD JJ NNS IN NNP CD . The digital map has been produced by a British survey ship HMS Scott that has been collecting data off the coast of Indonesia 's Sumatra Island since early January . DT JJ NN VBZ VBN VBN IN DT JJ NN NN NNP NNP WDT VBZ VBN VBG NNS IN DT NN IN NNP POS NNP NNP IN JJ NNP . The probe of the area where two pieces of ocean floor collided shows a ridge of mud hundreds of meters thick where the seawater was forced up to form the tsunami . DT NN IN DT NN WRB CD NNS IN NN NN VBD VBZ DT NN IN NN NNS IN NNS JJ WRB DT NN VBD VBN RP TO VB DT NN . Scientists on the ship say that while the data will not help predict when earthquakes will occur , it could help in warning of future tsunamis . NNS IN DT NN VBP IN IN DT NNS MD RB VB VB WRB NNS MD VB , PRP MD VB IN NN IN JJ NNS . A Republican Congressman says he is temporarily stepping down from a House committee-chairman position while he is being investigated for corruption . DT JJ NN VBZ PRP VBZ RB VBG RP IN DT NNP NN NN IN PRP VBZ VBG VBN IN NN . Ohio Representative Bob Ney is the second lawmaker to relinquish a House leadership post in recent months . NNP NN NNP NNP VBZ DT JJ NN TO VB DT NNP NN NN IN JJ NNS . He said in a statement Sunday that the allegations against him have become a distraction to lawmakers , including those in the committee he chaired , the House Administration Committee . PRP VBD IN DT NN NNP IN DT NNS IN PRP VBP VBN DT NN TO NNS , VBG DT IN DT NN PRP VBD , DT NNP NNP NNP . Ney has been identified as the unnamed lawmaker that lobbyist Jack Abramoff said accepted lavish gifts and financial contributions in exchange for favors and support . NNP VBZ VBN VBN IN DT JJ NN IN NN NNP NNP VBD VBN JJ NNS CC JJ NNS IN NN IN NNS CC NN . Abramoff has pleaded guilty to fraud and tax evasion . NNP VBZ VBN JJ TO NN CC NN NN . Ney denies any wrongdoing . NNP VBZ DT NN . Texas representative Tom DeLay stepped down as House Majority Leader late last year after being indicted for alleged campaign finance violations . NNP NN NNP NNP VBD RP IN NNP NNP NNP RB JJ NN IN VBG VBN IN JJ NN NN NNS . DeLay had close ties to Abramoff and some of the congressman 's aides are being investigated in the Abramoff scandal . NNP VBD JJ NNS TO NNP CC DT IN DT NN POS NNS VBP VBG VBN IN DT NNP NN . One of the suspected bombers in the failed July 21 attacks on London 's transport system is being extradited from Italy to Britain . CD IN DT JJ NNS IN DT VBN NNP CD NNS IN NNP POS NN NN VBZ VBG VBN IN NNP TO NNP . A plane carrying Ethiopian-born Hamdi Issac , also known as Osman Hussain , left Rome 's Ciampino airport around midday Thursday , for London . DT NN VBG JJ NNP NNP , RB VBN IN NNP NNP , VBD NNP POS NNP NN IN NN NNP , IN NNP . Italian police arrested the British citizen in Rome a week after the July 21 attacks , which caused no fatalities but brought chaos to London two weeks after suicide bombers killed 52 people in the British capital . JJ NNS VBN DT JJ NN IN NNP DT NN IN DT NNP CD NNS , WDT VBD DT NNS CC VBD NN TO NNP CD NNS IN NN NNS VBD CD NNS IN DT JJ NN . Hamdi Issac has admitted to taking part in the second set of attacks but has said the action was meant to scare people , not kill them . NNP NNP VBZ VBN TO VBG NN IN DT JJ NN IN NNS CC VBZ VBN DT NN VBD VBN TO VB NNS , RB VB PRP . Italy 's highest court upheld his extradition order on September 13 . NNP POS JJS NN VBD PRP$ NN NN IN NNP CD . The surging Mississippi River spilled over levees in two towns in the state of Illinois and is threatening to deluge other parts of the central United States . DT VBG NNP NNP VBD IN NNS IN CD NNS IN DT NN IN NNP CC VBZ VBG TO VB JJ NNS IN DT JJ NNP NNPS . The Army Corps of Engineers says 20 levees in the central U.S. have already overflowed - and up to 30 more are in danger of overflowing . DT NNP NNP IN NNP VBZ CD NNS IN DT JJ NNP VBP RB VBN : CC RB TO CD JJR VBP IN NN IN VBG . Central U.S. river towns are at risk as floodwaters that submerged parts of two of the state of Iowa 's largest cities are now flowing downstream . NNP NNP NN NNS VBP IN NN IN NNS WDT VBD NNS IN CD IN DT NN IN NNP POS JJS NNS VBP RB VBG NN . Residents have joined members of the National Guard in a desperate effort to strengthen levees with sandbags . NNS VBP VBN NNS IN DT NNP NNP IN DT JJ NN TO VB NNS IN NNS . Meanwhile , Iowa is cleaning up after widespread flooding inundated homes , destroyed crops and cut off highways and bridges . RB , NNP VBZ VBG RP IN JJ NN VBD NNS , VBD NNS CC VBD RP NNS CC NNS . At the White House Tuesday , U.S. President George Bush expressed concern for the flood victims . IN DT NNP NNP NNP , NNP NNP NNP NNP VBD NN IN DT NN NNS . He is to visit Iowa Thursday to inspect the damage . PRP VBZ TO VB NNP NNP TO VB DT NN . A U.S. government audit shows that at least 232 civilians have been killed while working on U.S. reconstruction projects in Iraq . DT NNP NN NN VBZ IN IN JJS CD NNS VBP VBN VBN IN VBG IN NNP NN NNS IN NNP . The report by the Special Inspector General for Iraq Reconstruction indicates the death toll of those employees for private contractors increased 93 percent in recent months ( the fourth quarter of 2004 ) . DT NN IN DT NNP NNP NNP IN NNP NNP VBZ DT NN NN IN DT NNS IN JJ NNS VBD CD NN IN JJ NNS LRB DT JJ NN IN CD RRB . In addition to those killed , 728 claims were filed for employees who missed more than four days of work . IN NN TO DT VBN , CD NNS VBD VBN IN NNS WP VBD JJR IN CD NNS IN NN . The inspector 's report says ' Iraq 's unsettled security environment continues to present grave risks for contractors and employees . ' DT NN POS NN VBZ `` NNP POS JJ NN NN VBZ TO VB JJ NNS IN NNS CC NNS . `` The quarterly report sent to U.S. Congress based its information on statistics from the U.S. Labor Department compiled from workers ' compensation claims filed by all U.S. government contractors . DT JJ NN VBN TO NNP NNP VBD PRP$ NN IN NNS IN DT NNP NNP NNP VBN IN NNS POS NN NNS VBN IN DT NNP NN NNS . Former Chilean dictator Augusto Pinochet has been indicted on human rights charges and placed under house arrest . JJ JJ NN NNP NNP VBZ VBN VBN IN JJ NNS NNS CC VBN IN NN NN . Judge Victor Montiglio charged General Pinochet in connection with the kidnapping and disappearance of seven people in the early years of his 1973 to 1990 rule . NNP NNP NNP VBD NNP NNP IN NN IN DT NN CC NN IN CD NNS IN DT JJ NNS IN PRP$ CD TO CD NN . The charges are part of a human rights case known as ' Operation Colombo , ' in which 119 dissidents disappeared while in custody . DT NNS VBP NN IN DT JJ NNS NN VBN IN `` NNP NNP , `` IN WDT CD NNS VBN IN IN NN . Mr. Montiglio 's indictment Thursday comes six days after he questioned the ex-dictator and the former head of the secret police , Manuel Contreras , to determine responsibility for the disappearance of the 119 Pinochet foes . NNP NNP POS NN NNP VBZ CD NNS IN PRP VBD DT NN CC DT JJ NN IN DT JJ NN , NNP NNP , TO VB NN IN DT NN IN DT CD NNP NNS . This is the second indictment in two days against the former dictator . DT VBZ DT JJ NN IN CD NNS IN DT JJ NN . General Pinochet , who turns 90 on Friday , had just made bail following his indictment Wednesday on charges of tax evasion , corruption and using FALSE passports in a case involving an estimated $ 27 million hidden in foreign bank accounts . NNP NNP , WP VBZ CD IN NNP , VBD RB VBN NN VBG PRP$ NN NNP IN NNS IN NN NN , NN CC VBG JJ NNS IN DT NN VBG DT VBN $ CD CD VBN IN JJ NN NNS . Leaders of the South American trade bloc Mercosur are meeting in Venezuela to formally welcome Venezuela into the group . NNS IN DT NNP NNP NN NN NNP VBP VBG IN NNP TO RB VB NNP IN DT NN . Presidents of member nations Argentina , Brazil , Paraguay and Uruguay are to sign a document Tuesday extending voting rights and lower tariffs to Venezuela . NNS IN NN NNS NNP , NNP , NNP CC NNP VBP TO VB DT NN NNP VBG NN NNS CC JJR NNS TO NNP . With the new member , officials say the trade bloc will account for $ 1 trillion in annual economic activity and include 250 million people . IN DT JJ NN , NNS VBP DT NN NN MD VB IN $ CD CD IN JJ JJ NN CC VBP CD CD NNS . Bolivian President Evo Morales also is to attend the summit for talks with his Brazilian counterpart Luiz Inacio Lula da Silva to discuss the price of gas exports to Brazil . JJ NNP NNP NNP RB VBZ TO VB DT NN IN NNS IN PRP$ JJ NN NNP NNP NNP NNP NNP TO VB DT NN IN NN NNS TO NNP . Bolivia is an associate member of Mercosur , formed in 1991 . NNP VBZ DT JJ NN IN NNP , VBN IN CD . Meanwhile , Paraguay 's President Nicanor Duarte has threatened to abandon the group because of alleged protectionist trade policies by Brazil and Argentina . RB , NNP POS NNP NNP NNP VBZ VBN TO VB DT NN IN IN JJ NN NN NNS IN NNP CC NNP . A strong earthquake shook Indonesia 's Aceh province just before midnight Saturday ( about 1657 UTC ) , causing residents to flee their homes in panic . DT JJ NN VBD NNP POS NNP NN RB IN NN NNP LRB IN CD NNP RRB , VBG NNS TO VB PRP$ NNS IN NN . The magnitude 5.8 quake was centered 33 kilometers under the Indian Ocean and about 33 kilometers northwest of the provincial capital of Banda Aceh . DT NN CD NN VBD VBN CD NNS IN DT NNP NNP CC IN CD NNS JJS IN DT JJ NN IN NNP NNP . Officials say there have been no reports of damage or casualties , but residents of the city ran out of their homes in panic after the quake jolted them awake . NNS VBP EX VBP VBN DT NNS IN NN CC NNS , CC NNS IN DT NN VBD IN IN PRP$ NNS IN NN IN DT NN VBD PRP JJ . A magnitude 9 quake off the west coast of Aceh triggered the December 26 tsunamis , which the U.S. Geological Survey says killed more than 2,75,000 people around the Indian Ocean . DT NN CD NN IN DT JJS NN IN NNP VBD DT NNP CD NNS , WDT DT NNP NNP NNP VBZ VBN JJR IN CD NNS IN DT NNP NNP . That includes 1,31,000 in Aceh . DT VBZ CD IN NNP . U.S. Democratic senators have criticized President Bush 's proposal to revamp Social Security , on the eve of the retirement program 's 70th anniversary . NNP JJ NNS VBP VBN NNP NNP POS NN TO VB NNP NNP , IN DT NN IN DT NN NN POS JJ NN . Senator John Kerry , the 2004 democratic presidential candidate , said in a radio address delivered in Spanish Saturday that the president 's proposal to add private investments accounts to the program will hurt Hispanics . NNP NNP NNP , DT CD JJ JJ NN , VBD IN DT NN NN VBN IN JJ NNP IN DT NN POS NN TO VB JJ NNS NNS IN DT NN MD VB NNS . Democratic Senator Ken Salazar , from Colorado said in a separate English-language radio address Saturday the president is fabricating a crisis in the retirement program so he can push through his proposals to change it . JJ NNP NNP NNP , IN NNP VBD IN DT JJ JJ NN NN NNP DT NN VBZ VBG DT NN IN DT NN NN IN PRP MD VB IN PRP$ NNS TO VB PRP . President Bush says his plans will help the program avoid severe funding shortfalls over the next few decades . NNP NNP VBZ PRP$ NNS MD VB DT NN VB JJ NN NNS IN DT JJ JJ NNS . A key part of his proposal is to allow younger workers to privately invest some of their Social Security funds which are now managed by the government . DT JJ NN IN PRP$ NN VBZ TO VB JJR NNS TO RB VB DT IN PRP$ NNP NNP NNS WDT VBP RB VBN IN DT NN . More than 60 African migrants have drowned while crossing the Gulf of Aden on their way to Yemen . JJR IN CD JJ NNS VBP VBN IN VBG DT NNP IN NNP IN PRP$ NN TO NNP . Witnesses say at least 15 others swam to safety after their vessel sank close to the Yemeni coast . NNS VBP IN JJS CD NNS VBP TO VB IN PRP$ NN VBD RB TO DT JJ NN . The boat originated from Somalia and most of those on board are believed to have been Somalians . DT NN VBD IN NNP CC JJS IN DT IN NN VBP VBN TO VB VBN NNPS . It is not clear how the boat capsized . PRP VBZ RB JJ WRB DT NN VBD . Migrants frequently attempt the crossing to escape violence in Somalia and often rely on smugglers to help them cross . NNS RB VBP DT NN TO VB NN IN NNP CC RB VBP IN NNS TO VB PRP VB . They often face abuse at the hands of smugglers , with many forced to disembark offshore to avoid Yemeni coast guard patrols . PRP RB VBP NN IN DT NNS IN NNS , IN JJ VBN TO VB RB TO VB JJ NN NN NNS . Earlier this month , the U.N. High Commissioner for Refugees estimated 20,000 people have made the crossing this year and said at least 439 people have died and another 489 are missing . RBR DT NN , DT NNP NNP NNP IN NNP VBD CD NNS VBP VBN DT NN DT NN CC VBD IN JJS CD NNS VBP VBN CC DT CD VBP VBG . Police in Afghanistan say attackers have shot and killed an Afghan senator who briefly served as prime minister in the early 1990s . NNS IN NNP VBP NNS VBP VBN CC VBN DT JJ NN WP RB VBD IN JJ NN IN DT JJ NNS . Authorities say Abdul Saboor Farid was killed late Wednesday outside his home in the capital , Kabul . NNS VBP NNP NNP NNP VBD VBN JJ NNP IN PRP$ NN IN DT NN , NNP . Mr. Farid was Afghanistan 's prime minister for one month in 1992 during the chaos of a civil war that followed the defeat of the Soviet army . NNP NNP VBD NNP POS JJ NN IN CD NN IN CD IN DT NN IN DT JJ NN WDT VBD DT NN IN DT JJ NN . The motive for the senator 's killing is not clear . DT NN IN DT NN POS NN VBZ RB JJ . In another development , police say a remote-controlled roadside bomb tore through the side of an Afghan army bus Thursday in Kabul , killing the driver and wounding 29 people . IN DT NN , NNS VBP DT JJ NN NN VBD IN DT NN IN DT JJ NN NN NNP IN NNP , VBG DT NN CC VBG CD NNS . Taleban militants claimed responsibility for the attack . NNP NNS VBD NN IN DT NN . Meanwhile , the British defense ministry says a British soldier serving with the NATO-led coalition in Afghanistan was killed during fighting with militants in the south . RB , DT JJ NN NN VBZ DT JJ NN VBG IN DT JJ NN IN NNP VBD VBN IN VBG IN NNS IN DT NN . NATO has launched large-scale military operations in the region recently to pre-empt an expected Taleban offensive . NNP VBZ VBN JJ JJ NNS IN DT NN RB TO VB DT VBN NNP NN . Insurgents in Iraq killed at least nine people in attacks Sunday northeast of Baghdad . NNS IN NNP VBD IN JJS CD NNS IN NNS NNP NN IN NNP . Police say a roadside bomb killed four policemen and wounded nine in Baquba . NNS VBP DT NN NN VBD CD NNS CC VBD CD IN NNP . In another town , Balad Ruz , police say a rocket attack on a policeman 's house killed the man 's brother and four children . IN DT NN , NNP NNP , NNS VBP DT NN NN IN DT NN POS NN VBD DT NN POS NN CC CD NNS . Military officials say on Saturday U.S. soldiers killed three gunmen who fired on a patrol in the northern town of Baiji . JJ NNS VBP IN NNP NNP NNS VBD CD NNS WP VBD IN DT NN IN DT JJ NN IN NNP . In northern Iraq , police say the bodies of an elderly tribal leader , Ibrahim Ali al-Nuimei , and his son were found near the town of Kirkuk . IN JJ NNP , NNS VBP DT NNS IN DT JJ JJ NN , NNP NNP NNP , CC PRP$ NN VBD VBN IN DT NN IN NNP . In a separate development , the trial of ousted leader Saddam Hussein is scheduled to resume Tuesday with a new presiding judge , and a Western diplomat says members of the former Baathist regime may testify . IN DT JJ NN , DT NN IN JJ NN NNP NNP VBZ VBN TO VB NNP IN DT JJ NN NN , CC DT JJ NN VBZ NNS IN DT JJ NNP NN MD VB . The United States Government , Wednesday [ May 14 ] officially added polar bears to the list of threatened animals under the Endangered Species Act . DT NNP NNP NNP , NNP LRB NNP CD RRB RB VBD JJ NNS TO DT NN IN JJ NNS IN DT NNP NNP NNP . Bush administration scientists decided the species is at risk of becoming endangered . NNP NN NNS VBD DT NNS VBZ IN NN IN VBG VBN . Officials cited warming trends and loss of sea ice as threatening the bears , opening a debate over whether to regulate greenhouse gases to protect the bear and its habitat . NNS VBD NN NNS CC NN IN NN NN IN VBG DT NNS , VBG DT NN IN IN TO VB NN NNS TO VB DT NN CC PRP$ NN . Paul Sisco reports . NNP NNP VBZ . Iranian media report that inspectors from the U.N. International Atomic Energy Agency will travel to Iran early next month . JJ NNS VBP IN NNS IN DT NNP NNP NNP NNP NNP MD VB TO NNP RB JJ NN . News reports Saturday quote an unnamed Iranian official as saying a delegation will visit on August 6 to discuss technical issues and regulations . NNP NNS NNP VBP DT JJ JJ NN IN VBG DT NN MD VB IN NNP CD TO VB JJ NNS CC NNS . Separately , the United Nations ' nuclear agency is set to inspect Iran 's heavy water nuclear reactor in a matter of days . RB , DT NNP NNPS POS JJ NN VBZ VBN TO VB NNP POS JJ NN JJ NN IN DT NN IN NNS . That reactor is under construction in the industrial city of Arak . DT NN VBZ IN NN IN DT JJ NN IN NNP . It will produce plutonium once it is completed . PRP MD VB NN RB PRP VBZ VBN . Enriched plutonium and uranium can be used to build nuclear weapons . VBN NN CC NN MD VB VBN TO VB JJ NNS . The U.N. Security Council has imposed two sets of sanctions on Iran because of its refusal to suspend uranium enrichment . DT NNP NNP NNP VBZ VBN CD NNS IN NNS IN NNP IN IN PRP$ NN TO VB NN NN . The United States and its Western allies accuse Iran of trying to develop nuclear weapons , but Iran says its atomic program is for peaceful purposes . DT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS , CC NNP VBZ PRP$ JJ NN VBZ IN JJ NNS . Insurgents have launched two deadly attacks against Shi'ites in Iraq , just hours after U.S. Secretary of Defense Donald Rumsfeld paid a surprise visit to American troops in the country . NNS VBP VBN CD JJ NNS IN NNS IN NNP , RB NNS IN NNP NNP IN NNP NNP NNP VBD DT NN NN TO JJ NNS IN DT NN . In the first attack , gunmen entered a bakery in a mainly Shi'ite neighborhood in Baghdad , killing at least nine people . IN DT JJ NN , NNS VBD DT NN IN DT RB JJ NN IN NNP , VBG IN JJS CD NNS . A short time later , a car bomb exploded outside a Shi'ite mosque in the town of Balad Ruz , northeast of Baghdad . DT JJ NN RB , DT NN NN VBD IN DT NNP NN IN DT NN IN NNP NNP , NN IN NNP . Abu Musab al-Zarqawi 's group claimed responsibility for that blast that killed 13 and injured 23 others . NNP NNP NNP POS NN VBD NN IN DT NN WDT VBD CD CC VBD CD NNS . An American soldier was also killed when a bomb exploded in western Baghdad . DT JJ NN VBD RB VBN WRB DT NN VBD IN JJ NNP . The violence came as Mr. Rumsfeld visited U.S. troops in Mosul and Baghdad . DT NN VBD IN NNP NNP VBD NNP NNS IN NNP CC NNP . He also observed Iraqi police and special forces perform training exercises , before he met with Iraqi interim Prime Minister Iyad Allawi . PRP RB VBD JJ NN CC JJ NNS VBP NN NNS , IN PRP VBD IN JJ JJ NNP NNP NNP NNP . Nigerian authorities say kidnappers have released a Polish oil worker seized last week in the country 's restive Niger Delta region . JJ NNS VBP NNS VBP VBN DT JJ NN NN VBN JJ NN IN DT NN POS JJ NNP NNP NN . The officials say the Polish national was released late Sunday . DT NNS VBP DT JJ NN VBD VBN JJ NNP . He was seized Thursday by six gunmen near the southern city of Warri . PRP VBD VBN NNP IN CD NNS IN DT JJ NN IN NNP . Abduction for ransom or to press political demands is frequent in the oil-rich Niger Delta . NN IN NN CC TO VB JJ NNS VBZ JJ IN DT NN NNP NNP . In all , more than 100 foreign oil workers have been kidnapped in the region this year . IN DT , JJR IN CD JJ NN NNS VBP VBN VBN IN DT NN DT NN . Most have been released unharmed , often after a payment of ransom . JJS VBP VBN VBN JJ , RB IN DT NN IN NN . Some kidnappings have been carried out by criminal gangs , while others are the work of militants who want impoverished local villages to get more of the region 's oil wealth . DT NNS VBP VBN VBN RP IN JJ NNS , IN NNS VBP DT NN IN NNS WP VBP JJ JJ NNS TO VB JJR IN DT NN POS NN NN . The attacks on the oil industry have caused Nigeria to cut oil production by almost 25 percent . DT NNS IN DT NN NN VBP VBN NNP TO VB NN NN IN RB CD NN . U.S. Treasury officials have frozen the assets of an Ohio-based nonprofit group because they say it has ties to the Palestinian militant organization Hamas . NNP NNP NNS VBP VBN DT NNS IN DT JJ JJ NN IN PRP VBP PRP VBZ NNS TO DT JJ JJ NN NNP . Officials said Sunday that the group named KindHearts has coordinated with Hamas leaders and has ties to two other U.S.-based charities accused of links to terrorism . NNS VBD NNP IN DT NN VBN NNP VBZ VBN IN NNP NNS CC VBZ NNS TO CD JJ JJ NNS VBN IN NNS TO NN . Those groups were shut down by U.S. officials in late 2001 . DT NNS VBD VBN RP IN NNP NNS IN JJ CD . KindHearts describes itself on its Web site as a nonprofit charitable organization administering humanitarian aid to the world 's poor . NNP VBZ PRP IN PRP$ NNP NN IN DT JJ JJ NN VBG JJ NN TO DT NN POS NN . KindHearts officials have not commented on the alleged links to terrorism . NNP NNS VBP RB VBN IN DT JJ NNS TO NN . Hamas dominated recent Palestinian elections , but U.S. officials regard it as a terrorist organization . NNP VBD JJ JJ NNS , CC NNP NNS VBP PRP IN DT JJ NN . The group refuses to recognize Israel 's right to exist and has organized suicide attacks against Israeli targets in the past . DT NN VBZ TO VB NNP POS NN TO VB CC VBZ VBN NN NNS IN JJ NNS IN DT NN . China says it has designated three parks in outlying parts of Beijing to be used for public protests during the Olympic Games next month . NNP VBZ PRP VBZ VBN CD NNS IN VBG NNS IN NNP TO VB VBN IN JJ NNS IN DT NNP NNPS JJ NN . China 's head of Olympic security , Liu Shaowu , made the announcement Wednesday at a news conference . NNP POS NN IN NNP NN , NNP NNP , VBD DT NN NNP IN DT NN NN . He said protesters may stage demonstrations if they apply to the government for a permit and are approved . PRP VBD NNS MD VB NNS IN PRP VBP TO DT NN IN DT NN CC VBP VBN . He did not answer questions about whether foreigners could protest in the parks , or whether there would be restrictions on what people could protest about . PRP VBD RB VB NNS IN IN NNS MD VB IN DT NNS , CC IN EX MD VB NNS IN WP NNS MD VB RB . The city of Athens , Greece , designated such protest areas when it hosted the Olympic Games in 2004 . DT NN IN NNP , NNP , VBN JJ NN NNS WRB PRP VBD DT NNP NNPS IN CD . The International Olympic Committee bars demonstrations at Olympic venues . DT NNP NNP NNP VBZ NNS IN NNP NNS . The international portion of the Olympic torch relay was marred in some cities earlier this year by protests against China 's rule in Tibet . DT JJ NN IN DT NNP NN NN VBD VBN IN DT NNS RBR DT NN IN NNS IN NNP POS NN IN NNP . Childhood obesity affects children in most countries in the world according to the International Obesity Task Force . NNP NN VBZ NNS IN JJS NNS IN DT NN VBG TO DT NNP NNP NNP NNP . Now , a new study shows that one of the most effective ways of preventing obesity -- exercise -- is something children are not getting enough of . RB , DT JJ NN VBZ IN CD IN DT RBS JJ NNS IN VBG NN : NN : VBZ DT NNS VBP RB VBG RB IN . VOA 's Carol Pearson reports . NNP POS NNP NNP VBZ . The last Australian aid agency operating in Iraq says it is pulling out . DT JJ JJ NN NN VBG IN NNP VBZ PRP VBZ VBG RP . World Vision Australia chief Tim Costello says the situation in Iraq is too dangerous for its staff to remain . NNP NNP NNP NN NNP NNP VBZ DT NN IN NNP VBZ RB JJ IN PRP$ NN TO VB . He says the work the organization has been doing in Iraq will be handed over to local officials and any unspent funds will be returned to donors . PRP VBZ DT NN DT NN VBZ VBN VBG IN NNP MD VB VBN IN TO JJ NNS CC DT JJ NNS MD VB VBN TO NNS . Mr. Costello says the agency made the decision to leave Iraq before the apparent murder of international aid worker Margaret Hassan . NNP NNP VBZ DT NN VBD DT NN TO VB NNP IN DT JJ NN IN JJ NN NN NNP NNP . World Vision Australia 's Iraqi head of operations , Mohammed Hushiar , was killed in late September in the northern city of Mosul . NNP NNP NNP POS JJ NN IN NNS , NNP NNP , VBD VBN IN JJ NNP IN DT JJ NN IN NNP . A published report says the Bush administration is pressing Iraqi leaders to end their political stalemate and form a new government . DT JJ NN VBZ DT NNP NN VBZ VBG JJ NNS TO VB PRP$ JJ NN CC VB DT JJ NN . The New York Times newspaper says Secretary of State Condoleezza Rice telephoned Iraq 's President Jalal Talabani on Friday to urge that the government be formed as soon as possible . DT NNP NNP NNP NN VBZ NNP IN NNP NNP NNP VBD NNP POS NNP NNP NNP IN NNP TO VB IN DT NN VB VBN RB RB IN JJ . It says Ms. Rice and Vice President Dick Cheney conveyed the same message in a White House meeting with Adil Abdul Mahdi , a leading Shi'ite politician named as one of the new Iraqi vice presidents . PRP VBZ NNP NNP CC NNP NNP NNP NNP VBD DT JJ NN IN DT NNP NNP NN IN NNP NNP NNP , DT VBG NNP NN VBN IN CD IN DT JJ JJ NN NNS . U.S. officials have said repeatedly that Iraqis must form their own government without American intervention . NNP NNS VBP VBN RB IN NNS MD VB PRP$ JJ NN IN JJ NN . But efforts to name a new cabinet in Baghdad have failed , although nearly three months have passed since the Iraqi elections . CC NNS TO VB DT JJ NN IN NNP VBP VBN , IN RB CD NNS VBP VBN IN DT JJ NNS . Many Iraqis blame the political turmoil for a recent upsurge in violence . JJ NNS VBP DT JJ NN IN DT JJ NN IN NN . Israeli Prime Minister Ehud Olmert is scheduled to meet with Palestinian President Mahmoud Abbas Wednesday in Jerusalem . JJ NNP NNP NNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP NNP IN NNP . Palestinian negotiator Saeb Erekat said the talks will focus on permanent-status issues , Israeli checkpoints and the fate of Palestinian prisoners . JJ NN NNP NNP VBD DT NNS MD VB IN JJ NNS , JJ NNS CC DT NN IN JJ NNS . The meeting , at Mr. Olmert 's official residence , will be the first between the two since Mr. Olmert announced that he will step down after his Kadima Party chooses a new leader in September . DT NN , IN NNP NNP POS JJ NN , MD VB DT NN IN DT CD IN NNP NNP VBD IN PRP MD VB RB IN PRP$ NNP NNP VBZ DT JJ NN IN NNP . The two leaders re-started peace talks in November with the goal of reaching a deal by this year 's end . DT CD NNS JJ NN NNS IN NNP IN DT NN IN VBG DT NN IN DT NN POS NN . Authorities in Afghanistan say nine Afghan soldiers and 10 Taleban rebels have been killed in two separate ambushes in the country 's restive south . NNS IN NNP VBP CD JJ NNS CC CD NNP NNS VBP VBN VBN IN CD JJ NNS IN DT NN POS JJ NN . A provincial government official says suspected Taleban rebels attacked the soldiers late Thursday when they were on patrol in the remote Chakul area of southern Helmand province . DT JJ NN NN VBZ JJ NNP NNS VBD DT NNS JJ NNP WRB PRP VBD IN NN IN DT JJ NNP NN IN JJ NNP NN . Later , a person claiming to be a Taleban spokesman claimed responsibility for the attack . RB , DT NN VBG TO VB DT NNP NN VBD NN IN DT NN . The U.S. military said 10 Taleban rebels also were killed Thursday during a U.S. helicopter raid in southeastern Khost province after five Afghan soldiers were wounded in an ambush . DT NNP NN VBD CD NNP NNS RB VBD VBN NNP IN DT NNP NN NN IN JJ NNP NN IN CD JJ NNS VBD VBN IN DT NN . Taleban activity has eased during the harshest Afghan winter in decades , but officials believe upcoming warmer weather will result in a renewed surge of violence . NNP NN VBZ VBN IN DT JJS JJ NN IN NNS , CC NNS VBP VBG JJR NN MD VB IN DT JJ NN IN NN . Britain 's defense ministry has defended its decision to allow the sailors and marines freed by Iran last week to sell their stories - a reversal of usual policy . NNP POS NN NN VBZ VBN PRP$ NN TO VB DT NNS CC NNS VBN IN NNP JJ NN TO VB PRP$ NNS IN DT NN IN JJ NN . On Sunday , the ministry said that huge public interest made the circumstances exceptional . IN NNP , DT NN VBD IN JJ JJ NN VBD DT NNS JJ . Members of the opposition Conservative Party immediately challenged the decision . NNS IN DT NN NNP NNP RB VBD DT NN . Many families of British troops killed in Iraq and Afghanistan have also said they find the decision distasteful . JJ NNS IN JJ NNS VBN IN NNP CC NNP VBP RB VBD PRP VBP DT NN NN . The two officers among the 15 service members detained in Iran for 13 days have said they have chosen not to profit from stories of their captivity , but others in the group have reportedly made lucrative deals with British media . DT CD NNS IN DT CD NN NNS VBN IN NNP IN CD NNS VBP VBN PRP VBP VBN RB TO VB IN NNS IN PRP$ NN , CC NNS IN DT NN VBP RB VBN JJ NNS IN JJ NNS . Several of the the former captives have said they were mistreated during their detention . NN IN DT DT JJ NNS VBP VBN PRP VBD VBN IN PRP$ NN . However , a video released Monday , by Iran shows the sailors and marines relaxing and socializing during their captivity . RB , DT NN VBN NNP , IN NNP VBZ DT NNS CC NNS VBG CC VBG IN PRP$ NN . The weather in the western U.S. state of California has helped firefighters gain greater control of a massive wildfire that is burning near the populous city of Santa Barbara . DT NN IN DT JJ NNP NN IN NNP VBZ VBN NNS VB JJR NN IN DT JJ NN WDT VBZ VBG IN DT JJ NN IN NNP NNP . Fire officials said the winds were calmer overnight and a dense fog rolled in Saturday morning helping firefighters gain control of 30 percent of the blaze , compared to 10 percent on Friday . NN NNS VBD DT NNS VBD JJR JJ CC DT NN NN VBD IN NNP NN VBG NNS VB NN IN CD NN IN DT NN , VBN TO CD NN IN NNP . Authorities said the fire has burned 35 square kilometers and has damaged 80 homes in the area known for its large mansions and scenic ocean views . NNS VBD DT NN VBZ VBN CD JJ NNS CC VBZ VBN CD NNS IN DT NN VBN IN PRP$ JJ NNS CC JJ NN NNS . Before now , strong overnight winds and dry conditions had been making it difficult to keep the blaze from spreading . IN RB , JJ JJ NNS CC JJ NNS VBD VBN VBG PRP JJ TO VB DT NN IN VBG . The fire , which began on May 5 , has forced the evacuation of more than 30,000 . DT NN , WDT VBD IN NNP CD , VBZ VBN DT NN IN JJR IN CD . More than 4,200 personnel are battling the wildfire . JJR IN CD NNS VBP VBG DT NN . A top aide to Iraqi Prime Minister Nouri al-Maliki says the government has launched an inquiry into the conduct of the execution of Saddam Hussein and how it was secretly filmed and distributed . DT JJ NN TO JJ NNP NNP NNP NNP VBZ DT NN VBZ VBN DT NN IN DT NN IN DT NN IN NNP NNP CC WRB PRP VBD RB VBN CC VBN . The official execution tape , which had no sound , showed the former dictator being led to the gallows but not his actual hanging . DT JJ NN NN , WDT VBD DT NN , VBD DT JJ NN VBG VBN TO DT NNS CC RB PRP$ JJ NN . However , video captured on a mobile phone camera showed footage and sound of Saddam being taunted and then dropping to his death . RB , NN VBD IN DT JJ NN NN VBD NN CC NN IN NNP VBG VBN CC RB VBG TO PRP$ NN . In the mobile phone footage , one person can be heard shouting ' Moqtada , ' the name of a radical Shi'ite cleric and opponent of Saddam . IN DT JJ NN NN , CD NN MD VB VBN VBG `` NNP , `` DT NN IN DT JJ NNP NN CC NN IN NNP . The unauthorized video has caused anger among many Saddam supporters , who say it shows that the execution was a sectarian act against the deposed Sunni Arab leader . DT JJ NN VBZ VBN NN IN JJ NNP NNS , WP VBP PRP VBZ IN DT NN VBD DT JJ NN IN DT VBN NNP NNP NN . Tuesday , Sunni Arab mourners in Saddam 's hometown Tikrit and other cities marched to pay their respects to the former dictator . NNP , NNP NNP NNS IN NNP POS NN NN CC JJ NNS VBD TO VB PRP$ NNS TO DT JJ NN . Local officials in Afghanistan 's northeastern Nuristan Province say three Afghans who had been kidnapped earlier in the week have been found unharmed . JJ NNS IN NNP POS JJ NNP NNP VBP CD NNS WP VBD VBN VBN RBR IN DT NN VBP VBN VBN JJ . The three had been reported abducted from a house in the Kamdesh district of Nuristan Province . DT CD VBD VBN VBN VBN IN DT NN IN DT NNP NN IN NNP NNP . At least two of the three Afghans were election workers . IN JJS CD IN DT CD NNS VBD NN NNS . No further details were immediately available . DT JJ NNS VBD RB JJ . More than three years after a U.S.-led coalition ousted the Taleban regime , loyalists are waging an escalating guerrilla campaign ahead of Afghanistan 's September parliamentary vote . JJR IN CD NNS IN DT JJ NN VBD DT NNP NN , NNS VBP VBG DT VBG NN NN RB IN NNP POS NNP JJ NN . In recent days in Kandahar Province , a judge and a district administrator were killed in attacks believed to have been carried out by insurgents . IN JJ NNS IN NNP NNP , DT NN CC DT NN NN VBD VBN IN NNS VBN TO VB VBN VBN RP IN NNS . More than 700 people have been killed in the violence this year . JJR IN CD NNS VBP VBN VBN IN DT NN DT NN . World famous Russian cellist and conductor , Mstislav Rostropovich , who appeared frail at his 80th birthday celebration last month , has been hospitalized in Moscow for the second time this year . NNP JJ JJ NN CC NN , NNP NNP , WP VBD NN IN PRP$ JJ NN NN JJ NN , VBZ VBN VBN IN NNP IN DT JJ NN DT NN . A spokesman for the cellist said Thursday he is undergoing routine treatment . DT NN IN DT NN VBD NNP PRP VBZ VBG JJ NN . Following his earlier hospitalization in February , Russian news media reported that he was being treated for cancer . VBG PRP$ JJR NN IN NNP , JJ NN NNS VBD IN PRP VBD VBG VBN IN NN . At the time , Russian President Vladimir Putin visited the hospital to confer a medal honoring Rostropovich for his extraordinary achievements in music . IN DT NN , JJ NNP NNP NNP VBD DT NN TO VB DT JJ NN NNP IN PRP$ JJ NNS IN NN . Rostropovich and his wife , soprano Galina Vishnevskaya , left the Soviet Union in 1974 in response to political persecution . NNP CC PRP$ NN , NN NNP NNP , VBD DT NNP NNP IN CD IN NN TO JJ NN . They returned to Russia after the fall of the Soviet Union and are running a charitable organization aiding orphaned children . PRP VBD TO NNP IN DT NN IN DT NNP NNP CC VBP VBG DT JJ NN VBG VBN NNS . The U.S. Internet giant Google is planning to install solar panels at its headquarters in the western state of California to run some of its operations with energy from the sun . DT NNP NN NN NNP VBZ VBG TO VB JJ NNS IN PRP$ NN IN DT JJ NN IN NNP TO VB DT IN PRP$ NNS IN NN IN DT NN . The leading Internet search engine says it will install enough solar grids at its complex in Mountain View , California to generate 1.6 megawatts of electricity . DT VBG NNP NN NN VBZ PRP MD VB RB JJ NNS IN PRP$ NN IN NNP NNP , NNP TO VB CD NNS IN NN . That 's enough energy to light up about 1,000 California homes . DT VBZ JJ NN TO VB RP IN CD NNP NNS . The company hopes the sun will produce 30 percent of the power needed to run its 93,000 square meter complex . DT NN VBZ DT NN MD VB CD NN IN DT NN VBN TO VB PRP$ CD JJ NN NN . Google says it wants to set an example that renewable energy can be profitable . NNP VBZ PRP VBZ TO VB DT NN IN JJ NN MD VB JJ . The Israeli parliament has rejected a bill calling for a national referendum on Prime Minister Ariel Sharon 's plan to evacuate settlers and troops from the Gaza Strip and four small West Bank enclaves later this year . DT JJ NN VBZ VBN DT NN VBG IN DT JJ NN IN NNP NNP NNP NNP POS NN TO VB NNS CC NNS IN DT NNP NNP CC CD JJ NNP NNP NNS RBR DT NN . Monday 's vote of 72-39 all but ends attempts by withdrawal opponents to derail the Gaza pullout . NNP POS NN IN CD DT CC VBZ NNS IN NN NNS TO VB DT NNP NN . Under the withdrawal plan , all 21 Jewish settlements in Gaza are to be evacuated , along with four of 120 settlements in the occupied West Bank . IN DT NN NN , DT CD JJ NNS IN NNP VBP TO VB VBN , IN IN CD IN CD NNS IN DT JJ NNP NNP . A referendum would have delayed the withdrawal for months from its July starting date . DT NN MD VB VBN DT NN IN NNS IN PRP$ NNP NN NN . Meanwhile , Israeli troops raided the West Bank Palestinian town of Jenin today , arresting eight accused members of Islamic Jihad . RB , JJ NNS VBD DT NNP NNP JJ NN IN NNP NN , VBG CD VBN NNS IN NNP NNP . The Israeli army alleges the suspects were making crude rockets and mortars for future attacks . DT JJ NN VBZ DT NNS VBD VBG JJ NNS CC NNS IN JJ NNS . Popular American tennis star Andre Agassi has been knocked out of the quarterfinals at the Delray Beach International in Florida . JJ JJ NN NN NNP NNP VBZ VBN VBN IN IN DT NNS IN DT NNP NNP NNP IN NNP . The top seed and former world number one lost in straight sets Friday to Spain 's Guillermo Garcia-Lopez , 06-Apr , 06-Feb . DT JJ NN CC JJ NN NN CD VBN IN JJ NNS NNP TO NNP POS NNP NNP , CD , CD . The Spaniard next takes on defending champion Xavier Malisse of Belgium in the semifinals . DT NN NN VBZ IN VBG JJ NNP NNP IN NNP IN DT NNS . The third-seeded Malisse rallied after dropping the first set to eliminate sixth-seeded Florian Mayer of Germany 06-Jul , 06-Feb , 06-Mar . DT JJ NNP VBD IN VBG DT JJ NN TO VB JJ NNP NNP IN NNP CD , CD , CD . Meanwhile , fourth-seeded Tommy Haas of Germany beat Luxembourg 's Gilles Muller in straight sets ( 06-Mar , 06-Feb ) . RB , JJ NNP NNP IN NNP VBD NNP POS NNP NNP IN JJ NNS LRB CD , CD RRB . Haas next plays eighth-seeded American Vince Spadea , a straight-sets winner over Lee Hyung-taik of South Korea ( 06-Mar , 06-Mar ) . NNP RB VBZ JJ JJ NNP NNP , DT JJ NN IN NNP NNP IN NNP NNP LRB CD , CD RRB . United Nations investigators have begun questioning top Syrian officials about the assassination of former Lebanese Prime Minister Rafik Hariri . NNP NNPS NNS VBP VBN VBG JJ JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP . Diplomatic sources say five Syrian officials are being questioned at U.N. offices in Vienna . JJ NNS VBP CD JJ NNS VBP VBG VBN IN NNP NNS IN NNP . The interviews are expected to continue until Wednesday . DT NNS VBP VBN TO VB IN NNP . The sources say the suspects arrived in the Austrian capital late Sunday . DT NNS VBP DT NNS VBD IN DT JJ NN JJ NNP . Damascus recently agreed to allow its officials to be questioned outside Syria . NNP RB VBD TO VB PRP$ NNS TO VB VBN IN NNP . Syria denies any involvement in the February 14 bombing in Beirut that killed Mr. Hariri and 20 other people . NNP VBZ DT NN IN DT NNP CD VBG IN NNP WDT VBD NNP NNP CC CD JJ NNS . However , a report by a U.N. commission in October implicated top Syrian and Lebanese officials . RB , DT NN IN DT NNP NN IN NNP VBD JJ JJ CC JJ NNS . The U.N. Security Council has warned Syria to cooperate fully with the probe or face consequences . DT NNP NNP NNP VBZ VBN NNP TO VB RB IN DT NN CC VB NNS . Earlier this year , Syria was forced to withdraw its troops from Lebanon under intense domestic and international pressure . RBR DT NN , NNP VBD VBN TO VB PRP$ NNS IN NNP IN JJ JJ CC JJ NN . Aides to U.S. Senator - and former first lady - Hillary Rodham Clinton have confirmed that the New~York senator has invited supporters from the state of Iowa to her Washington , D.C. home for a private political fundraising event . NNS TO NNP NNP : CC JJ JJ NN : NNP NNP NNP VBP VBN IN DT NNP NN VBZ VBN NNS IN DT NN IN NNP TO PRP$ NNP , NNP NN IN DT JJ JJ NN NN . Senator Clinton is facing re-election in New York in 2006 , but the invitation of Iowa supporters raises speculation that a 2008 bid for the U.S. presidency is likely . NNP NNP VBZ VBG NN IN NNP NNP IN CD , CC DT NN IN NNP NNS VBZ NN IN DT CD NN IN DT NNP NN VBZ JJ . Iowa is traditionally the first state to hold political caucuses in which candidates from the same party compete against each other for their party 's presidential nomination . NNP VBZ RB DT JJ NN TO VB JJ NNS IN WDT NNS IN DT JJ NN VBP IN DT NN IN PRP$ NN POS JJ NN . Mrs. Clinton 's former national finance director from her 2000 Senate campaign is currently on trial in Los Angeles federal court on charges he lied to regulators about the cost of a lavish Hollywood fundraiser . NNP NNP POS JJ JJ NN NN IN PRP$ CD NNP NN VBZ RB IN NN IN NNP NNP JJ NN IN NNS PRP VBD TO NNS IN DT NN IN DT JJ NNP NN . Neither Mrs. Clinton nor her husband , the former president , are accused of any wrongdoing . DT NNP NNP CC PRP$ NN , DT JJ NN , VBP VBN IN DT NN . Burmese pro-democracy leader Aung San Suu Kyi met Saturday with a top United Nations official . JJ JJ NN NNP NNP NNP NNP VBD NNP IN DT JJ NNP NNP NN . Aung San Suu Kyi spoke to reporters Saturday at her lakeside home in Rangoon , and praised the talks with Vijay Nambiar , chief of staff for U.N. Secretary-General Ban Ki-moon . NNP NNP NNP NNP VBD TO NNS NNP IN PRP$ NN NN IN NNP , CC VBD DT NNS IN NNP NNP , NN IN NN IN NNP NNP NNP NNP . The 65-year-old Nobel peace prize laureate has been vocal about pursuing democratic reforms since her release November 13 from more than seven years of house arrest . DT JJ NNP NN NN NN VBZ VBN JJ IN VBG JJ NNS IN PRP$ NN NNP CD IN JJR IN CD NNS IN NN NN . But she has also been careful not to verbally challenge Burma 's ruling generals . CC PRP VBZ RB VBN JJ RB TO RB VB NNP POS NN NNS . Nambiar also met Saturday with Burma 's foreign minister . NNP RB VBD NNP IN NNP POS JJ NN . He also planned to meet with diplomats and recently-elected lawmakers . PRP RB VBD TO VB IN NNS CC JJ NNS . Pakistani officials say security forces have arrested at least three al-Qaida suspects after a gunfight near the Afghan border . JJ NNS VBP NN NNS VBP VBN IN JJS CD NNP NNS IN DT NN IN DT JJ NN . They say police opened fire Monday on a car carrying the suspects outside the northwestern city of Peshawar and forced it to stop . PRP VBP NNS VBD NN NNP IN DT NN VBG DT NNS IN DT JJ NN IN NNP CC VBD PRP TO VB . Reports say one of the suspects escaped while the others were arrested . NNS VBP CD IN DT NNS VBD IN DT NNS VBD VBN . This comes less than a week after Pakistani officials said a senior al-Qaida explosives expert was killed in a raid on a suspected insurgent hideout in the tribal region of North Waziristan bordering Afghanistan . DT VBZ JJR IN DT NN IN JJ NNS VBD DT JJ NNP NNS NN VBD VBN IN DT NN IN DT JJ JJ NN IN DT JJ NN IN NNP NNP VBG NNP . Egyptian-born Muhsin Musa Matwali Atwah was wanted in connection with the 1998 bombings of the U.S. embassies in Kenya and Tanzania . JJ NNP NNP NNP NNP VBD VBN IN NN IN DT CD NNS IN DT NNP NNS IN NNP CC NNP . The United States offered a $ 5 million reward for his capture . DT NNP NNPS VBD DT $ CD CD NN IN PRP$ NN . Six other Islamic militants were killed in the raid . CD JJ JJ NNS VBD VBN IN DT NN . Rebels in eastern Sudan say government war planes have been bombing a rebel area near the border with Eritrea , wounding several people . NNS IN JJ NNP VBP NN NN NNS VBP VBN VBG DT NN NN IN DT NN IN NNP , VBG JJ NNS . A spokesman with rebels known as the Eastern Front said Friday , the bombing began Thursday in the Barka Valley region near the town of Tokar , 120 kilometers south Port Sudan on the Red Sea . DT NN IN NNS VBN IN DT NNP NNP VBD NNP , DT NN VBD NNP IN DT NNP NNP NN IN DT NN IN NNP , CD NNS JJ NNP NNP IN DT NNP NNP . The French news agency quotes a rebel spokesman as saying many civilians have been injured by the bombs , and much livestock has been killed . DT JJ NN NN VBZ DT NN NN IN VBG JJ NNS VBP VBN VBN IN DT NNS , CC RB NN VBZ VBN VBN . He says the bombings continue Friday . PRP VBZ DT NNS VBP NNP . There has been no independent verification of the air strikes . EX VBZ VBN DT JJ NN IN DT NN NNS . Fighting broke out between the rebels and government troops near Tokar early this week . NN VBD RP IN DT NNS CC NN NNS IN NNP RB DT NN . Two Sudanese rebel factions joined forces in February to form the Eastern Front . CD JJ NN NNS VBD NNS IN NNP TO VB DT NNP NNP . Pope Benedict XVI has visited the Italian city of L'Aquilla and other central Italian locales devastated earlier this month by a deadly earthquake . NNP NNP NNP VBZ VBN DT JJ NN IN NNP CC JJ JJ JJ NNS VBN RBR DT NN IN DT JJ NN . The pontiff Tuesday visited several sites in L'Aquilla , a medieval walled city of 70,000 residents . DT NN NNP VBD JJ NNS IN NNP , DT JJ JJ NN IN CD NNS . His stops included the site of a partially-collapsed college dormitory , and the ruins of the 13th century Santa Maria di Collemaggio basilica . PRP$ NNS VBD DT NN IN DT JJ NN NN , CC DT NNS IN DT JJ NN NNP NNP NNP NNP NN . Speaking to survivors , he called for ' an examination of conscience ' by builders and inspectors accused of shoddy construction practices linked to the collapse of numerous buildings . VBG TO NNS , PRP VBD IN `` DT NN IN NN `` IN NNS CC NNS VBN IN JJ NN NNS VBN TO DT NN IN JJ NNS . Benedict earlier visited the village of Onna , where 40 of 300 residents perished . NNP RB VBD DT NN IN NNP , WRB CD IN CD NNS VBN . The 6.4 magnitude quake on April 6 reduced large sections of the Abruzzo region to rubble . DT CD NN NN IN NNP CD VBD JJ NNS IN DT NNP NN TO NN . The Italian government has earmarked more than $ 10 billion for reconstruction in the region . DT JJ NN VBZ VBN JJR IN $ CD CD IN NN IN DT NN . Experts say it will take about $ 16 billion to rebuild the area . NNS VBP PRP MD VB RB $ CD CD TO VB DT NN . The top U.S. military commander in Afghanistan says Taleban insurgents could stage a high-profile attack over the next six to nine months , despite what he called their more limited ' terrorist capabilities . ' DT JJ NNP JJ NN IN NNP VBZ NNP NNS MD VB DT JJ NN IN DT JJ CD CC CD NNS , IN WP PRP VBD PRP$ JJR JJ `` JJ NNS . `` Lieutenant General David Barno told reporters Saturday the Taleban fighters are becoming more desperate to ' change the course of events in Afghanistan . ' NN NNP NNP NNP VBD NNS NNP DT NNP NNS VBP VBG RBR JJ TO `` VB DT NN IN NNS IN NNP . `` General Barno said he expects a small hard-core remnant of the Taleban to continue fighting even as the group 's military strength fades away . NNP NNP VBD PRP VBZ DT JJ JJ NN IN DT NNP TO VB VBG RB IN DT NN POS JJ NN VBZ RB . Afghanistan is scheduled to hold parliamentary elections on September 18 , a little less than one year after the country 's first direct and democratic presidential elections . NNP VBZ VBN TO VB JJ NNS IN NNP CD , DT RB JJR IN CD NN IN DT NN POS JJ JJ CC JJ JJ NNS . Three world leaders who had key roles in the reunification of Germany gathered Saturday to share their memories of the collapse of the Berlin Wall . CD NN NNS WP VBD JJ NNS IN DT NN IN NNP VBD NNP TO VB PRP$ NNS IN DT NN IN DT NNP NNP . Germany 's ex-chancellor Helmut Kohl , former U.S. president George Herbert Walker Bush , and former Soviet leader Mikhail Gorbachev were honored at a gathering in Berlin for their efforts in reunifying Germany . NNP POS NN NNP NNP , JJ NNP NN NNP NNP NNP NNP , CC JJ JJ NN NNP NNP VBD VBN IN DT NN IN NNP IN PRP$ NNS IN VBG NNP . Former Chancellor Kohl now speaks with difficulty after a stroke and is confined to a wheelchair . JJ NN NNP RB VBZ IN NN IN DT NN CC VBZ VBN TO DT NN . He said that although Germany 's history was not always proud , Germans should be proud of their country 's reunification . PRP VBD IN IN NNP POS NN VBD RB RB JJ , NNS MD VB JJ IN PRP$ NN POS NN . At the close of World War II , Germany was divided into two separate countries governed under separate ideologies of democracy and communism . IN DT NN IN NNP NNP NNP , NNP VBD VBN IN CD JJ NNS VBN IN JJ NNS IN NN CC NN . The wall was built starting in 1961 and came to symbolize the divide between the so-called Iron Curtain and the democratic West . DT NN VBD VBN VBG IN CD CC VBD TO VB DT NN IN DT JJ NNP NNP CC DT JJ NNP . The wall was breached on November 9 , 1989 as a worldwide audience watched on live television . DT NN VBD VBN IN NNP CD , CD IN DT JJ NN VBN IN JJ NN . Thousands of Icelanders marked the 90th anniversary of sovereignty from Denmark Monday by demanding the government resign over the country 's economic crisis . NNS IN NNS VBD DT JJ NN IN NN IN NNP NNP IN VBG DT NN VB IN DT NN POS JJ NN . Hundreds of marchers tried to storm central bank headquarters in Reykjavik . NNS IN NNS VBD TO VB JJ NN NN IN NNP . They left after a tense hour-long standoff with riot police . PRP VBD IN DT NN JJ NN IN NN NNS . The global financial crisis has left Iceland 's economy in shambles . DT JJ JJ NN VBZ VBN NNP POS NN IN NNS . Three major banks have collapsed , unemployment has soared , and the value of the krona has plunged . CD JJ NNS VBP VBN , NN VBZ VBN , CC DT NN IN DT NN VBZ VBN . Prime Minister Geir Haarde has refused to resign or call for early elections . JJ NN NNP NNP VBZ VBN TO VB CC VB IN JJ NNS . He blames Iceland 's economic calamity on commercial bankers . PRP VBZ NNP POS JJ NN IN JJ NNS . The government was forced to ask the International Monetary Fund and several countries for a multi-billion-dollar loan . DT NN VBD VBN TO VB DT NNP NNP NNP CC JJ NNS IN DT JJ NN . Global health experts said cancer will become the leading cause of death in the world by 2010 , overtaking heart disease . JJ NN NNS VBD NN MD VB DT VBG NN IN NN IN DT NN IN CD , VBG NN NN . A World Health Organization report issued Tuesday said one factor behind cancer 's growing deadliness is rising cigarette smoking in developing countries . DT NNP NNP NNP NN VBN NNP VBD CD NN IN NN POS VBG NN VBZ VBG NN NN IN VBG NNS . 40 percent of the world 's smokers are thought to live in China and India alone . CD NN IN DT NN POS NNS VBP VBN TO VB IN NNP CC NNP RB . The WHO report said an estimated 12 million people will be diagnosed with some form of cancer this year . DT NNP NN VBD DT VBN CD CD NNS MD VB VBN IN DT NN IN NN DT NN . It predicts that 7.6 million of them will die . PRP VBZ IN CD CD IN PRP MD VB . Health experts predicted the number of people who die from cancer will soon be greater than deaths from AIDS , tuberculosis and malaria combined . NN NNS VBD DT NN IN NNS WP VBP IN NN MD RB VB JJR IN NNS IN NNP , NN CC NN VBN . The WHO said the number of new cancer patients may rise to 27 million a year by 2030 , with 17 million people dying from the disease . DT NNP VBD DT NN IN JJ NN NNS MD VB TO CD CD DT NN IN CD , IN CD CD NNS VBG IN DT NN . A civil liberties group says it has obtained documents that allegedly show U.S. military forces tried to suppress reports about the abuse of Iraqi prisoners . DT JJ NNS NN VBZ PRP VBZ VBN NNS WDT RB VBP NNP JJ NNS VBD TO VB NNS IN DT NN IN JJ NNS . The documents - released by the American Civil Liberties Union on Tuesday - say staff members of the Pentagon 's Defense Intelligence Agency ( DIA ) witnessed several incidents of abuse , including prisoners being assaulted , deprived of sleep and humiliated . DT NNS IN VBN IN DT NNP NNP NNPS NNP IN NNP : VBP NN NNS IN DT NNP POS NNP NNP NNP LRB NNP RRB VBD JJ NNS IN NN , VBG NNS VBG VBN , VBN IN NN CC VBN . The documents also included complaints that DIA personnel had their e-mails monitored by special forces , and were ordered ' not to talk to anyone in the U.S. ' about what they witnessed . DT NNS RB VBD NNS IN NNP NNS VBD PRP$ NNS VBN IN JJ NNS , CC VBD VBN `` RB TO VB TO DT IN DT NNP `` IN WP PRP VBD . The ACLU obtained the documents after a federal court ordered the Pentagon to comply with a year-old request under the U.S. Freedom of Information Act . DT NNP VBD DT NNS IN DT JJ NN VBD DT NNP TO VB IN DT JJ NN IN DT NNP NNP IN NNP NNP . Georgian Prime Minister Zurab Zhvania says he supports democracy in Ukraine and hopes the upcoming Ukrainian presidential election will be free and fair . JJ NNP NNP NNP NNP VBZ PRP VBZ NN IN NNP CC VBZ DT VBG JJ JJ NN MD VB JJ CC JJ . Mr. Zhvania , who is currently visiting the United States , made the comment Wednesday in an interview with the Voice of America . NNP NNP , WP VBZ RB VBG DT NNP NNPS , VBD DT NN NNP IN DT NN IN DT NNP IN NNP . He also expressed satisfaction with his U.S. visit , which began Sunday , and says the United States has a great deal of interest in Georgia . PRP RB VBD NN IN PRP$ NNP NN , WDT VBD NNP , CC VBZ DT NNP NNPS VBZ DT JJ NN IN NN IN NNP . Mr. Zhvania has met with a number of high-level U.S. officials , including National Security Advisor Condoleezza Rice . NNP NNP VBZ VBN IN DT NN IN JJ NNP NNS , VBG NNP NNP NNP NNP NNP . He quoted Ms. Rice as saying that Washington recognizes Georgia 's territorial integrity in regards to Abkhazia , a pro-Russian enclave in Georgia that has run its own affairs since the early 1990s . PRP VBD NNP NNP IN VBG IN NNP VBZ NNP POS JJ NN IN NNS TO NNP , DT JJ NN IN NNP WDT VBZ VBN PRP$ JJ NNS IN DT JJ NNS . Mr. Zhvania concludes his visit Thursday . NNP NNP VBZ PRP$ NN NNP . South Korean police detained a group of anti-Japanese protesters in Seoul Friday after stopping their attempt to hold a mock funeral for Japanese Prime Minister Junichiro Koizumi . JJ JJ NN VBD DT NN IN JJ NNS IN NNP NNP IN VBG PRP$ NN TO VB DT NN NN IN JJ NNP NNP NNP NNP . Hundreds of riot police surrounded about 30 demonstrators who carried an empty coffin and Mr. Koizumi 's picture to a park near the Japanese embassy for the funeral . NNS IN NN NNS VBN IN CD NNS WP VBD DT JJ NN CC NNP NNP POS NN TO DT NN IN DT JJ NN IN DT NN . Earlier , the same group burned a coffin and an effigy of Japanese Ambassador Toshiyuki Takano in front of his residence . RB , DT JJ NN VBD DT NN CC DT NN IN JJ NN NNP NNP IN NN IN PRP$ NN . They also fired flaming arrows , which failed to reach the house . PRP RB VBD VBG NNS , WDT VBD TO VB DT NN . Anti-Japanese sentiment runs high in South Korea over territorial claims both countries make to a group of small islands controlled by South Korea , and over Tokyo 's approval of history books that critics say downplay Japan 's wartime atrocities . JJ NN VBZ JJ IN NNP NNP IN JJ NNS DT NNS VBP TO DT NN IN JJ NNS VBN IN NNP NNP , CC IN NNP POS NN IN NN NNS IN NNS VBP NN NNP POS NN NNS . Venezuela 's defense minister says his country is considering building unmanned planes and may look to allied countries - such as Iran - for help . NNP POS NN NN VBZ PRP$ NN VBZ VBG VBG JJ NNS CC MD VB TO JJ NNS : JJ IN NNP : IN NN . Defense Minister General Raul Baduel said Monday in Caracas that Venezuela has made progress in the development of pilotless planes . NN NN NNP NNP NNP VBD NNP IN NNP IN NNP VBZ VBN NN IN DT NN IN JJ NNS . He also said that Venezuela will look to other countries for help in maintaining its aging U.S.-made F-5 fighter jets . PRP RB VBD IN NNP MD VB TO JJ NNS IN NN IN VBG PRP$ NN JJ NN NN NNS . Venezuela has had trouble maintaining the planes since the United States began blocking arms sales to the South American country . NNP VBZ VBN NN VBG DT NNS IN DT NNP NNPS VBD VBG NNS NNS TO DT NNP NNP NN . Iran 's foreign minister says nuclear talks remain stalled between his government and European negotiators . NNP POS JJ NN VBZ JJ NNS VBP VBN IN PRP$ NN CC JJ NNS . Speaking to reporters Wednesday in Tehran , Kamal Kharrazi said Iran has always sought a short-term suspension of its uranium enrichment activities , but Britain , France and Germany are pressing for a permanent one . VBG TO NNS NNP IN NNP , NNP NNP VBD NNP VBZ RB VBN DT JJ NN IN PRP$ NN NN NNS , CC NNP , NNP CC NNP VBP VBG IN DT JJ CD . Iran has suspended its enrichment activities as a good faith gesture during negotiations , but said it will decide in three months whether to continue the suspension . NNP VBZ VBN PRP$ NN NNS IN DT JJ NN NN IN NNS , CC VBD PRP MD VB IN CD NNS IN TO VB DT NN . Highly enriched uranium can be used to make fuel for nuclear weapons . RB VBN NN MD VB VBN TO VB NN IN JJ NNS . The head of Iran 's Atomic Energy Organization , Gholamreza Aghazadeh , called on the Europeans to speed up the talks . DT NN IN NNP POS NNP NNP NNP , NNP NNP , VBD IN DT NNS TO VB RP DT NNS . In remarks today , he expressed hope the negotiations would protect Iran 's scientific achievements , which he says the Islamic Republic will never give up . IN NNS NN , PRP VBD NN DT NNS MD VB NNP POS JJ NNS , WDT PRP VBZ DT NNP NNP MD RB VB RP . President Bush has declared a state of emergency for the Gulf Coast state of Louisiana , as it braces for the expected onslaught of Hurricane Katrina , set to make landfall on Monday . NNP NNP VBZ VBN DT NN IN NN IN DT NNP NNP NN IN NNP , IN PRP VBZ IN DT VBN NN IN NNP NNP , VBN TO VB NN IN NNP . Saturday 's emergency declaration authorizes federal officials to coordinate all disaster relief efforts and provide appropriate assistance in several Louisiana parishes . NNP POS NN NN VBZ JJ NNS TO VB DT NN NN NNS CC VB JJ NN IN JJ NNP NNS . Hours earlier , Louisiana and neighboring Mississippi declared their own states of emergency in preparation for the storm , and evacuations of low-lying areas began . NNS RB , NNP CC JJ NNP VBD PRP$ JJ NNS IN NN IN NN IN DT NN , CC NNS IN JJ NNS VBD . Oil rigs in the Gulf of Mexico were evacuated as well , as the 11th named storm of this year 's Atlantic hurricane season churned over the Gulf 's warm waters . NN NNS IN DT NNP IN NNP VBD VBN RB RB , IN DT JJ VBN NN IN DT NN POS NNP NN NN VBD IN DT NNP POS JJ NNS . At last report , Katrina had 185 kilometer-per-hour winds as it moved slowly toward the west-northwest . IN JJ NN , NNP VBD CD JJ NNS IN PRP VBD RB IN DT NN . Hurricane Katrina slammed into southeast Florida Thursday , leaving at least seven people dead . NNP NNP VBD IN NN NNP NNP , VBG IN JJS CD NNS JJ . Israel 's security cabinet has approved a plan to release 900 Palestinian prisoners and withdraw troops from the Palestinian town of Jericho . NNP POS NN NN VBZ VBN DT NN TO VB CD JJ NNS CC VB NNS IN DT JJ NN IN NNP . The plan calls for Israel to free 500 Palestinians after next week 's Israeli-Palestinian summit , and 400 others over the next three months . DT NN VBZ IN NNP TO VB CD NNS IN JJ NN POS JJ NN , CC CD NNS IN DT JJ CD NNS . About 8,000 Palestinians are in Israeli custody . IN CD NNS VBP IN JJ NN . Both sides say they hope to reach agreement at the Cairo summit on a formal truce ending more than four years of violence . DT NNS VBP PRP VBP TO VB NN IN DT NNP NN IN DT JJ NN VBG JJR IN CD NNS IN NN . Meanwhile , Palestinian gunmen interrupted a two-week old de~facto truce Thursday with an attack on an Israeli military vehicle that wounded an Israeli soldier in the occupied Gaza Strip . RB , JJ NNS VBN DT JJ JJ JJ NN NNP IN DT NN IN DT JJ JJ NN WDT VBD DT JJ NN IN DT JJ NNP NNP . Witnesses said Israeli soldiers returned fire and killed one Palestinian gunman . NNS VBD JJ NNS VBD NN CC VBD CD JJ NN . The attack came despite renewed efforts by the Palestinian Authority to stop militants from attacking Israeli targets . DT NN VBD IN VBN NNS IN DT JJ NNP TO VB NNS IN VBG JJ NNS . It was not immediately clear what , if any , effect it would have on summit plans . PRP VBD RB RB JJ WP , IN DT , NN PRP MD VB IN NN NNS . A Russian spacecraft carrying an American space tourist and two cosmonauts has docked with the International Space Station . DT JJ NN VBG DT JJ NN NN CC CD NNS VBZ VBN IN DT NNP NNP NNP . The Soyuzcapsule reached the space station Monday -- two days after lifting off from Kazakhstan . DT NNP VBD DT NN NN NNP IN CD NNS IN VBG RP IN NNP . It carried cosmonauts Fyodor Yurchikhin and Oleg Kotov and American computer software billionaire Charles Simonyi . PRP VBD NNS NNP NNP CC NNP NNP CC JJ NN NN NN NNP NNP . He paid $ 25 million for the privilege of a spaceflight and visit to the space station . PRP VBD $ CD CD IN DT NN IN DT NN CC NN TO DT NN NN . Simonyi brought with him a gourmet dinner to be eaten Thursday , which Russia marks as Cosmonauts Day -- the anniversary of Yuri Gagarin 's first manned space flight in 1961 . NNP VBD IN PRP DT NN NN TO VB VBN NNP , WDT NNP VBZ IN NNP NNP IN DT NN IN NNP NNP POS JJ JJ NN NN IN CD . The current space station crew -- Russian Mikhail Tyurin and American astronauts Miguel Lopez-Alegria and Sunita Williams -- return to Earth with Simonyi on April 20 . DT JJ NN NN NN : JJ NNP NNP CC JJ NNS NNP NNP CC NNP NNP : VBP TO NNP IN NNP IN NNP CD . Palestinian President Mahmoud Abbas says he wants a clear position from the United States regarding implementation of the ' road map ' plan for peace in the Middle East . JJ NNP NNP NNP VBZ PRP VBZ DT JJ NN IN DT NNP NNPS VBG NN IN DT `` NN NN `` NN IN NN IN DT NNP NNP . Mr. Abbas made his comment to reporters as he arrived in Washington late Tuesday for his meeting Thursday with President Bush . NNP NNP VBD PRP$ NN TO NNS IN PRP VBD IN NNP JJ NNP IN PRP$ NN NNP IN NNP NNP . A White House spokesman said Wednesday that Mr. Bush believes the road map is the best plan for achieving his vision of two states , Israel and Palestine , living peacefully side by side . DT NNP NNP NN VBD NNP IN NNP NNP VBZ DT NN NN VBZ DT JJS NN IN VBG PRP$ NN IN CD NNS , NNP CC NNP , VBG RB NN IN NN . The 2003 plan calls for Palestinians to crack down on terror groups and build democratic institutions ahead of final status negotiations aimed at ending the Israeli-Palestinian conflict . DT CD NN VBZ IN NNS TO VB RP IN NN NNS CC VB JJ NNS RB IN JJ NN NNS VBN IN VBG DT JJ NN . Mr. Abbas said he will also ask for economic aid , and the two men are expected to discuss Israel 's plan to withdraw from the Gaza Strip . NNP NNP VBD PRP MD RB VB IN JJ NN , CC DT CD NNS VBP VBN TO VB NNP POS NN TO VB IN DT NNP NNP . A published report in Spain says the armed Basque separatist group ETA has taken responsibility for five attacks in the northern part of the country in recent months . DT VBN NN IN NNP VBZ DT JJ NNP NN NN NNP VBZ VBN NN IN CD NNS IN DT JJ NN IN DT NN IN JJ NNS . The Gara newspaper Tuesday published an ETA statement saying it carried out the five attacks in June and July . DT NNP NN NNP VBD DT NNP NN VBG PRP VBD IN DT CD NNS IN NNP CC NNP . ETA says one target was La Peineta stadium , which was the centerpiece of Spain 's failed bid to host the 2012 Olympics . NNP VBZ CD NN VBD NNP NNP NN , WDT VBD DT NN IN NNP POS VBN NN TO VB DT CD NNS . Spanish Prime Minister Jose Luis Rodriguez Zapatero has offered to hold peace talks with ETA if it renounces violence . JJ NNP NNP NNP NNP NNP NNP VBZ VBN TO VB NN NNS IN NNP IN PRP VBZ NN . ETA has been blamed for more than 800 deaths since the 1960s , when it began its armed campaign for a separate Basque homeland in northern Spain . NNP VBZ VBN VBN IN JJR IN CD NNS IN DT NNS , WRB PRP VBD PRP$ JJ NN IN DT JJ NN NN IN JJ NNP . The Who cancelled a March 13 concert in Tampa , Florida , after lead singer Roger Daltrey fell ill . DT NNP VBD DT NNP CD NN IN NNP , NNP , IN NN NN NNP NNP VBD RB . The 63-year-old Daltrey walked offstage during the first song ; guitarist Pete Townshend later told the crowd he was suffering from bronchitis and could barely speak . DT JJ NNP VBD NN IN DT JJ NN ; NN NNP NNP RB VBD DT NN PRP VBD VBG IN NN CC MD RB VB . The crowd of 9,000 then cheered when Townshend said the show had been rescheduled for March 25 . DT NN IN CD RB VBD WRB NNP VBD DT NN VBD VBN VBN IN NNP CD . The Who is currently touring in support of Endless Wire , its first album since 1982 . DT NNP VBZ RB VBG IN NN IN JJ NNP , PRP$ JJ NN IN CD . The band next performs March 17 in Mexico City . DT NN IN VBZ NNP CD IN NNP NNP . The U.S. State Department says the already poor human rights situation in Nepal worsened in the past year , with security forces and insurgents alike committing serious human rights abuses . DT NNP NNP NNP VBZ DT RB JJ JJ NNS NN IN NNP VBD IN DT JJ NN , IN NN NNS CC NNS RB VBG JJ JJ NNS NNS . However , the report says the governments of India and Sri Lanka generally respected the rights of citizens , although serious problems remain . RB , DT NN VBZ DT NNS IN NNP CC NNP NNP RB VBD DT NNS IN NNS , IN JJ NNS VBP . The State Department criticizes Sri Lanka 's government and the Tamil Tiger rebel group for violating a ceasefire accord in place since 2002 . DT NNP NNP VBZ NNP NNP POS NN CC DT NNP NNP NN NN IN VBG DT JJ NN IN NN IN CD . It also says Indian officials have used anti-terrorism laws to justify the use of excessive force against insurgents in Jammu and Kashmir . PRP RB VBZ JJ NNS VBP VBN JJ NNS TO VB DT NN IN JJ NN IN NNS IN NNP CC NNP . The report describes the human rights situation as poor in Afghanistan , a country recovering from 20 years of war . DT NN VBZ DT JJ NNS NN IN JJ IN NNP , DT NN VBG IN CD NNS IN NN . It notes violence against women and minorities , as well as restrictions on personal freedoms . PRP VBZ NN IN NNS CC NNS , RB RB IN NNS IN JJ NNS . Similarly , the report says the human rights situations in Bangladesh and Pakistan remain poor , as extrajudicial killings and politically motivated violence continue . RB , DT NN VBZ DT JJ NNS NNS IN NNP CC NNP VBP JJ , IN JJ NNS CC RB JJ NN VBP . Palestinian leader Mahmoud Abbas says he may resign if a Hamas-led government prevents him from advancing the Mideast peace process . JJ NN NNP NNP VBZ PRP MD VB IN DT JJ NN VBZ PRP IN VBG DT JJ NN NN . In a British ( ITV ) television interview broadcast Sunday , Mr. Abbas said Hamas must abide by existing Palestinian Authority commitments recognizing Israel and denouncing the use of violence . IN DT JJ LRB NNP RRB NN NN NN NNP , NNP NNP VBD NNP MD VB IN VBG JJ NNP NNS VBG NNP CC VBG DT NN IN NN . He said that if he can not continue his policies regarding Israel , he will resign . PRP VBD IN IN PRP MD RB VB PRP$ NNS VBG NNP , PRP MD VB . Mr. Abbas was elected for a four-year term as president of the Palestinian Authority in January , 2005 . NNP NNP VBD VBN IN DT JJ NN IN NN IN DT JJ NNP IN NNP , CD . Hamas , considered a terrorist organization by the West , wrested control of the legislature from the ruling Fatah party in parliamentary elections last month . NNP , VBN DT JJ NN IN DT NNP , VBD NN IN DT NN IN DT NN NNP NN IN JJ NNS JJ NN . Hamas leader and Palestinian Prime Minister-designate Ismail Haniyeh said Sunday his militant group is ready to recognize Israel , if Israel gives the Palestinian people a state on lands occupied since the 1967 war . NNP NN CC JJ NNP NNP NNP NNP VBD NNP PRP$ JJ NN VBZ JJ TO VB NNP , IN NNP VBZ DT JJ NNS DT NN IN NNS VBN IN DT CD NN . European Union Trade Commissioner Peter Mandelson has called on EU governments to release blocked Chinese textile shipments , saying a failure to do so could cause economic hardship in Europe . NNP NNP NNP NNP NNP NNP VBZ VBN IN NNP NNS TO VB VBN JJ NN NNS , VBG DT NN TO VB RB MD VB JJ NN IN NNP . The announcement followed talks with Beijing aimed at revising a June textile quota agreement limiting shipments to Europe . DT NN VBD NNS IN NNP VBN IN VBG DT NNP NN NN NN VBG NNS TO NNP . Those quotas filled so quickly that millions of items of Chinese-made clothing were left stranded at customs checkpoints . DT NNS VBN RB RB IN NNS IN NNS IN JJ NN VBD VBN VBN IN NNS NNS . Mr. Mandelson Tuesday said the economic consequences of not allowing the goods to enter Europe will be severe for small retailers . NNP NNP NNP VBD DT JJ NNS IN RB VBG DT NNS TO VB NNP MD VB JJ IN JJ NNS . He said delaying the shipments could also cause higher prices and shortages in the next few months . PRP VBD VBG DT NNS MD RB VB JJR NNS CC NNS IN DT JJ JJ NNS . EU textile producers say the imports are harming their business , but retailers say they have already paid for the Chinese clothing and want the items released . NNP NN NNS VBP DT NNS VBP VBG PRP$ NN , CC NNS VBP PRP VBP RB VBN IN DT JJ NN CC VB DT NNS VBN . Iraqi officials say authorities have regained control of the southern city of Diwaniyah , after fierce clashes with Shi'ite militiamen that claimed more than 70 lives . JJ NNS VBP NNS VBP VBN NN IN DT JJ NN IN NNP , IN JJ NNS IN NNP NNS WDT VBD JJR IN CD NNS . The office of Prime Minister Nouri al-Maliki says 23 government soldiers and 50 gunmen were killed in the fighting Monday . DT NN IN NNP NNP NNP NNP VBZ CD NN NNS CC CD NNS VBD VBN IN DT NN NNP . Several civilians also were reported to have died . JJ NNS RB VBD VBN TO VB VBN . The fighting ended after a deal was reached between officials and Shi'ite militiamen loyal to radical Shi'ite cleric Moqtada al-Sadr . DT NN VBD IN DT NN VBD VBN IN NNS CC NNP NNS JJ TO JJ NNP NN NNP NNP . Meanwhile , some 30 Iraqis were killed and a number of others wounded in a fuel pipeline explosion near Diwaniyah . RB , DT CD NNS VBD VBN CC DT NN IN NNS VBN IN DT NN NN NN IN NNP . The victims may have been trying to syphon fuel at the time of the blast . DT NNS MD VB VBN VBG TO VB NN IN DT NN IN DT NN . In Baghdad , police say they found the bodies of at least 20 people who had been shot and dumped in the capital . IN NNP , NNS VBP PRP VBD DT NNS IN IN JJS CD NNS WP VBD VBN VBN CC VBN IN DT NN . The U.S. military has reported the deaths of 10 American soldiers in hostile action in Iraq since Sunday . DT NNP NN VBZ VBN DT NNS IN CD JJ NNS IN JJ NN IN NNP IN NNP . Sri Lankan military officials say at least 18 Tamil rebels and two government soldiers have died in separate clashes . NNP NNP JJ NNS VBP IN JJS CD NNP NNS CC CD NN NNS VBP VBN IN JJ NNS . Officials said Sunday that the navy attacked a rebel camp on Iranativu island off the northern coast Saturday , destroying a rebel boat and killing four Tamil fighters . NNS VBD NNP IN DT NN VBD DT NN NN IN NNP NN IN DT JJ NN NNP , VBG DT NN NN CC VBG CD NNP NNS . The military says the other 14 rebels died in fighting across several northern districts Saturday . DT JJ VBZ DT JJ CD NNS VBD IN VBG IN JJ JJ NNS NNP . The military reports rebel casualties almost daily , and both sides are known to exaggerate the number of people killed . DT JJ VBZ NN NNS RB RB , CC DT NNS VBP VBN TO VB DT NN IN NNS VBN . The latest fighting raged despite a cease-fire offered by the rebels to take place during a regional summit in the capital , Colombo . DT JJS NN VBD IN DT NN VBN IN DT NNS TO VB NN IN DT JJ NN IN DT NN , NNP . The rebels have been fighting for an independent homeland for ethnic Tamils in Sri Lanka 's north and east since 1983 . DT NNS VBP VBN VBG IN DT JJ NN IN JJ NNS IN NNP NNP POS NN CC NN IN CD . They complain of discrimination by the ethnic Sinhalese majority . PRP VBP IN NN IN DT JJ JJ NN . President Bush has signed legislation reaffirming U.S. support for the continued expansion of NATO . NNP NNP VBZ VBN NN VBG NNP NN IN DT JJ NN IN NNP . The measure designates Albania , Croatia , Georgia , Macedonia and Ukraine as eligible to receive financial assistance as they pursue NATO membership . DT NN VBZ NNP , NNP , NNP , NNP CC NNP IN JJ TO VB JJ NN IN PRP VB NNP NN . It also specifies that funds for military assistance for these countries should be included in next year 's budget . PRP RB VBZ IN NNS IN JJ NN IN DT NNS MD VB VBN IN JJ NN POS NN . But the White House announcement did not specify a figure . CC DT NNP NNP NN VBD RB VB DT NN . Al-Qaida 's deputy leader , Ayman al-Zawahiri , has warned that the Persian Gulf region and Israel will be the terrorist group 's next targets . NNP POS NN NN , NNP NNP , VBZ VBN IN DT NNP NNP NN CC NNP MD VB DT JJ NN POS JJ NNS . The Egyptian-born Zawahiri issued the threat in a videotaped message that was broadcast Monday - the fifth anniversary of the September 11 attacks on the United States . DT JJ NNP VBD DT NN IN DT VBN NN WDT VBD VBN NNP IN DT JJ NN IN DT NNP CD NNS IN DT NNP NNPS . Zawahiri warned of ' new events ' and suggested that militants should target Western economic interests . NNP VBD IN `` JJ NNS `` CC VBD IN NNS MD VB JJ JJ NNS . The deputy-leader also accused Western powers of stealing ' Muslim ' oil . DT NN RB VBD JJ NNS IN VBG `` NNP `` NN . Zawahiri stressed that Western leaders should be more concerned about attacks in the Gulf or Israel than violence in Iraq or Afghanistan . NNP VBD IN JJ NNS MD VB RBR JJ IN NNS IN DT NNP CC NNP IN NN IN NNP CC NNP . He also made the first indirect threat against United Nations peacekeepers bound for Lebanon . PRP RB VBD DT JJ JJ NN IN NNP NNPS NNS VBN IN NNP . Zawahiri said the force is ' hostile to Islam . ' NNP VBD DT NN VBZ `` JJ TO NNP . `` The message was not dated , but Zawahiri referred to the war between Israel and Hezbollah guerrillas . DT NN VBD RB VBN , CC NNP VBD TO DT NN IN NNP CC NNP NNS . An animal rights group says more than 40 dolphins are being held under what it calls ' appalling ' conditions in the Solomon Islands . DT NN NNS NN VBZ JJR IN CD NNS VBP VBG VBN IN WP PRP VBZ `` VBG `` NNS IN DT NNP NNP . The World Society for the Protection of Animals says the dolphins are being kept in cages in overcrowded , shallow and polluted pens off the island of Gavutu in the Pacific island nation . DT NNP NNP IN DT NN IN NNS VBZ DT NNS VBP VBG VBN IN NNS IN JJ , JJ CC JJ NNS IN DT NN IN NNP IN DT NNP NN NN . The group says the dolphins suffer from cuts , scratches and sunburn , and appear to be undernourished and stressed . DT NN VBZ DT NNS VBP IN NNS , NNS CC NN , CC VBP TO VB VBN CC VBN . The group urged the Solomon Islands to rehabilitate and release the dolphins into the wild . DT NN VBD DT NNP NNP TO VB CC VB DT NNS IN DT NN . Last year , 28 dolphins were transported by plane from the Solomon Islands to Mexico , sparking international criticism . JJ NN , CD NNS VBD VBN IN NN IN DT NNP NNP TO NNP , VBG JJ NN . A reporters ' advocacy group has condemned the shutdown of a Somali radio station and the detention of two of its reporters . DT NNS POS NN NN VBZ VBN DT NN IN DT JJ NN NN CC DT NN IN CD IN PRP$ NNS . The New York-based Committee to Protect Journalists says it is alarmed by the closure of Radio Shabelle in the city of Baidoa on Sunday . DT NNP VBN NNP TO VB NNP VBZ PRP VBZ VBN IN DT NN IN NNP NNP IN DT NN IN NNP IN NNP . Somalia 's transitional government shut down the station after it broadcast a report saying 300 Ethiopian soldiers had crossed into Somalia . NNP POS JJ NN VBD RP DT NN IN PRP VBD DT NN VBG CD JJ NNS VBD VBN IN NNP . Ethiopia has denied the report . NNP VBZ VBN DT NN . The advocacy group quotes Radio Shabelle 's deputy director Mohamed Amiin as saying militiamen entered its premises and detained the two journalists , Mohamed Adawe and Ali Mohamed Saed , for about eight hours . DT NN NN VBZ NNP NNP POS NN NN NNP NNP IN VBG NNS VBD PRP$ NNS CC VBD DT CD NNS , NNP NNP CC NNP NNP NNP , IN IN CD NNS . It says the government gave no explanation for its action . PRP VBZ DT NN VBD DT NN IN PRP$ NN . The station remained off the air on Monday . DT NN VBD IN DT NN IN NNP . Deputy Director Amiin says the station stands by its report that Ethiopian troops took up positions at Baidoa 's airport on Saturday . NNP NNP NNP VBZ DT NN VBZ IN PRP$ NN IN JJ NNS VBD RP NNS IN NNP POS NN IN NNP . The U.S. military says the trials of three Army reservists charged with abusing detainees at the Abu Ghraib prison will be moved to the United States . DT NNP NN VBZ DT NNS IN CD NNP NNS VBN IN VBG NNS IN DT NNP NNP NN MD VB VBN TO DT NNP NNPS . In a statement released late Wednesday , officials say the courts martial of Specialist Charles Graner , Sergeant Javal Davis , and Specialist Sabrina Harman would be held early next year in Fort Hood , Texas instead of Baghdad . IN DT NN VBN JJ NNP , NNS VBP DT NNS NN IN NNP NNP NNP , NNP NNP NNP , CC NNP NNP NNP MD VB VBN RB JJ NN IN NNP NNP , NNP IN IN NNP . No reason for the change of venue was given . DT NN IN DT NN IN NN VBD VBN . Three other U.S. troops have pleaded guilty in connection with prisoner abuse at the Baghdad prison . CD JJ NNP NNS VBP VBN JJ IN NN IN NN NN IN DT NNP NN . Most of those charged were part of a military police company based in the U.S. state of Maryland . JJS IN DT VBN VBD NN IN DT JJ NN NN VBN IN DT NNP NN IN NNP . The prisoner abuse scandal erupted in April when photographs of U.S. soldiers taunting and humiliating naked Iraqi prisoners became public , sparking worldwide condemnation . DT NN NN NN VBD IN NNP WRB NNS IN NNP NNS VBG CC VBG JJ JJ NNS VBD JJ , VBG JJ NN . A Mexican diplomat says he has met with the leader of Colombia 's second largest rebel group in an effort to broker a peace deal between the group and the Colombian government . DT JJ NN VBZ PRP VBZ VBN IN DT NN IN NNP POS JJ JJS NN NN IN DT NN TO NN DT NN NN IN DT NN CC DT JJ NN . Mexico 's Andres Valencia told reporters late Tuesday his talks with National Liberation Army ( ELN ) leader Francisco Galan focused on ways to reduce differences between the rebels and the government in order to set up a possible meeting between the two sides in Mexico . NNP POS NNP NNP VBD NNS RB NNP PRP$ NNS IN NNP NNP NNP LRB NNP RRB NN NNP NNP VBD IN NNS TO VB NNS IN DT NNS CC DT NN IN NN TO VB RP DT JJ NN IN DT CD NNS IN NNP . The Colombian government is demanding the group disarm and cease its practice of kidnapping citizens . DT JJ NN VBZ VBG DT NN NN CC VB PRP$ NN IN VBG NNS . While other paramilitary groups in the nation have grown rich from the drug trade , the ELN funds itself through kidnapping . IN JJ JJ NNS IN DT NN VBP VBN JJ IN DT NN NN , DT NNP VBZ PRP IN NN . A top U.S. official says the importance of opium cultivation to Afghanistan 's economy is declining . DT JJ NNP NN VBZ DT NN IN NN NN TO NNP POS NN VBZ VBG . Richard Boucher , the U.S. assistant secretary of state for south and central Asian affairs , says about one third of the Afghan economy was based on opium last year . NNP NNP , DT NNP NN NN IN NN IN NN CC JJ JJ NNS , VBZ IN CD NN IN DT JJ NN VBD VBN IN NN JJ NN . But he added that its production was diminishing due to the growth of the regular economy , including the cultivation of other crops . CC PRP VBD IN PRP$ NN VBD VBG JJ TO DT NN IN DT JJ NN , VBG DT NN IN JJ NNS . He said more needed to be done to develop economic alternatives to opium production in Afghanistan . PRP VBD RBR VBN TO VB VBN TO VB JJ NNS TO NN NN IN NNP . The country is the world 's number one producer of opium , a key ingredient in heroin . DT NN VBZ DT NN POS NN CD NN IN NN , DT JJ NN IN NN . Boucher is attending an international conference in Berlin on the reconstruction of Afghanistan . NNP VBZ VBG DT JJ NN IN NNP IN DT NN IN NNP . Last week , the Bush administration announced it would spend more than $ 10 billion in Afghanistan for security and reconstruction . JJ NN , DT NNP NN VBD PRP MD VB JJR IN $ CD CD IN NNP IN NN CC NN . A U.S.-based human rights group says recently gathered information could lead to new charges against a notorious former Iraqi general who is accused of ordering the 1988 massacre of Kurds in northern Iraq . DT JJ JJ NNS NN VBZ RB VBN NN MD VB TO JJ NNS IN DT JJ JJ JJ NN WP VBZ VBN IN VBG DT CD NN IN NNS IN JJ NNP . In a report issued Thursday , Human Rights Watch says the new information implicates Ali Hassan al-Majid - known as ' Chemical Ali ' - in the execution of hundreds of Shi'ite Muslims during an uprising in the southern city of Basra in 1999 . IN DT NN VBN NNP , NNP NNP NNP VBZ DT JJ NN VBZ NNP NNP NNP : VBN IN `` NNP NNP `` : IN DT NN IN NNS IN NNP NNPS IN DT NN IN DT JJ NN IN NNP IN CD . Iraqi officials say they expect Chemical Ali to be among the first of several top lieutenants of Saddam Hussein 's regime to go on trial for a range of crimes , including crimes against humanity and genocide . JJ NNS VBP PRP VBP NNP NNP TO VB IN DT NN IN JJ JJ NNS IN NNP NNP POS NN TO VB IN NN IN DT NN IN NNS , VBG NNS IN NN CC NN . In December , Iraq 's interim Prime Minister Iyad Allawi said the trials of top officials of the ousted regime would begin within weeks . IN NNP , NNP POS JJ NNP NNP NNP NNP VBD DT NNS IN JJ NNS IN DT JJ NN MD VB IN NNS . But so far , no trial dates have been set . CC RB RB , DT NN NNS VBP VBN VBN . A fugitive leader of the Palestinian militant group Hamas has appeared in a videotape calling Israel 's withdrawal from the Gaza Strip a victory for Palestinian militants . DT JJ NN IN DT JJ JJ NN NNP VBZ VBN IN DT NN VBG NNP POS NN IN DT NNP NNP DT NN IN JJ NNS . Mohammed Deif , who has eluded Israeli authorities for more than a decade , said Israel 's pullout is a humiliation suffered at the hands of the armed resistance . NNP NNP , WP VBZ VBN JJ NNS IN JJR IN DT NN , VBD NNP POS NN VBZ DT NN VBN IN DT NNS IN DT JJ NN . The alleged bombmaker , who Israel accuses of being behind a string of suicide bombings , appeared in the video in profile with a dark shadow over his face . DT JJ NN , WP NNP NNS IN VBG IN DT NN IN NN NNS , VBD IN DT NN IN NN IN DT JJ NN IN PRP$ NN . He warned the Palestinian Authority not to try to disarm the militant groups . PRP VBD DT JJ NNP RB TO VB TO VB DT JJ NNS . But he did call for dialogue ' to protect our Palestinian blood . ' CC PRP VBD VB IN NN `` TO VB PRP$ JJ NN . `` Western news agencies in Gaza received copies of the tape overnight Saturday . JJ NN NNS IN NNP VBD NNS IN DT NN JJ NNP . They say they believe the tape is authentic . PRP VBP PRP VBP DT NN VBZ JJ . Pope John Paul II has urged believers to proudly display the signs of their faith , saying the practice does not encourage intolerance or infringe on the separation of church and state . NNP NNP NNP NNP VBZ VBN NNS TO RB VB DT NNS IN PRP$ NN , VBG DT NN VBZ RB VB NN CC NN IN DT NN IN NN CC NN . In an apostolic letter to Roman Catholics launching the Year of the Eucharist , the pope made no mention of specific problems . IN DT JJ NN TO NNP NNPS VBG DT NN IN DT NNP , DT NN VBD DT NN IN JJ NNS . But the message follows sharp controversy in France over a government ban on conspicuous religious symbols such as Muslim headscarves , Jewish skullcaps or large crucifixes in the country 's schools . CC DT NN VBZ JJ NN IN NNP IN DT NN NN IN JJ JJ NNS JJ IN NNP NNS , JJ NNS CC JJ NNS IN DT NN POS NNS . The pontiff also repeated his concern that too few Catholics are giving due reverence to the Eucharist or properly marking Sunday as the Lord 's Day . DT NN RB VBD PRP$ NN IN RB JJ NNS VBP VBG JJ NN TO DT NN CC RB VBG NNP IN DT NNP POS NN . He also described faith as a means of counteracting violence and a way of bringing attention to such problems as poverty and hunger in the world . PRP RB VBD NN IN DT NN IN VBG NN CC DT NN IN VBG NN TO JJ NNS IN NN CC NN IN DT NN . Former U.S. President Bill Clinton says that publishing cartoons of the Prophet Muhammad was a mistake , but that violent protests by Muslims have wasted a chance to build bridges with the West . JJ NNP NNP NNP NNP VBZ IN VBG NNS IN DT NNP NNP VBD DT NN , CC IN JJ NNS IN NNPS VBP VBN DT NN TO VB NNS IN DT NNP . Clinton was speaking in Pakistan , the scene of some of the worst rallies against the drawings , where he was visiting survivors of last year 's South Asian earthquake and launching an HIV / AIDS project . NNP VBD VBG IN NNP , DT NN IN DT IN DT JJS NNS IN DT NNS , WRB PRP VBD VBG NNS IN JJ NN POS NNP NNP NN CC VBG DT NNP NNP NNP NN . He said he strongly disagrees with the publication of the cartoons , considered blasphemous by Muslims , and has no objection to the Muslim protests if they are peaceful . PRP VBD PRP RB VBZ IN DT NN IN DT NNS , VBN JJ IN NNPS , CC VBZ DT NN TO DT NNP NNS IN PRP VBP JJ . But he said by holding violent demonstrations that have killed 18 people , Muslims have missed an opportunity to build better ties with the West . CC PRP VBD IN VBG JJ NNS WDT VBP VBN CD NNS , NNPS VBP VBN DT NN TO VB JJR NNS IN DT NNP . Clinton arrived in Islamabad early Friday for a day-long trip and held talks with Pakistani President Pervez Musharraf and Prime Minister Shaukat Aziz . NNP VBD IN NNP JJ NNP IN DT JJ NN CC VBD NNS IN JJ NNP NNP NNP CC NNP NNP NNP NNP . Iran says it will allow United Nations nuclear experts to take environmental samples from a military site to disprove allegations Tehran is secretly developing nuclear weapons . NNP VBZ PRP MD VB NNP NNP JJ NNS TO VB JJ NNS IN DT JJ NN TO VB NNS NNP VBZ RB VBG JJ NNS . A foreign ministry spokesman Hamid Reza Asefi told reporters Sunday in Tehran that International Atomic Energy Agency inspectors would only take samples from so-called ' green areas ' at the military site , and not from inside the installation . DT JJ NN NN NNP NNP NNP VBD NNS NNP IN NNP IN NNP NNP NNP NNP NNS MD RB VB NNS IN JJ `` JJ NNS `` IN DT JJ NN , CC RB IN IN DT NN . The head of the IAEA , Mohamed ElBaradei , said last week Iran had agreed to allow access to the site at Parchin , near the capital , and that inspectors would arrive there soon . DT NN IN DT NNP , NNP NNP , VBD JJ NN NNP VBD VBN TO VB NN TO DT NN IN NNP , IN DT NN , CC IN NNS MD VB RB RB . The IAEA has been seeking access to Parchin , which has long been used by Iran to research , develop and produce missiles and other high explosives . DT NNP VBZ VBN VBG NN TO NNP , WDT VBZ RB VBN VBN IN NNP TO VB , VB CC VB NNS CC JJ JJ NNS . The United States accuses Iran of secretly developing nuclear weapons . DT NNP NNPS VBZ NNP IN RB VBG JJ NNS . Iran asserts its nuclear program is only for producing electricity . NNP VBZ PRP$ JJ NN VBZ RB IN VBG NN . Turkish police have detained at least 50 suspected al-Qaida-linked militants in raids across nine provinces . JJ NNS VBP VBN IN JJS CD JJ JJ NNS IN NNS IN CD NNS . Local media say the militants , thought to be members of a group ( the Islamic Jihad League ) tied to al-Qaida , were planning attacks against U.S. , Israeli and NATO targets in Turkey . JJ NNS VBP DT NNS , VBN TO VB NNS IN DT NN LRB DT NNP NNP NNP RRB VBN TO NNP , VBD VBG NNS IN NNP , JJ CC NNP NNS IN NNP . They say the suspects may have had contact with al-Qaida 's second-in-command , Ayman al-Zawahri , and may have been trained in Afghanistan . PRP VBP DT NNS MD VB VBN NN IN NNP POS NN , NNP NNP , CC MD VB VBN VBN IN NNP . Turkey 's Hurriyet daily says police Thursday seized an unlicensed gun , documents , CDs and laptops during a search of homes and offices of suspected al-Qaida members in the eastern province of Van . NNP POS NNP NN VBZ NN NNP VBD DT JJ NN , NNS , NNS CC NNS IN DT NN IN NNS CC NNS IN JJ NNP NNS IN DT JJ NN IN NNP . A Moscow court has rejected the appeal of former Russian oil tycoon Mikhail Khodorkovsky against his conviction on fraud and tax evasion charges , but the court reduced his prison sentence from nine to eight years . DT NNP NN VBZ VBN DT NN IN JJ JJ NN NN NNP NNP IN PRP$ NN IN NN CC NN NN NNS , CC DT NN VBD PRP$ NN NN IN CD CC CD NNS . Khodorkovsky , once Russia 's richest man , was convicted in May in what his supporters call a political trial in retaliation for the tycoon 's backing of opposition politicians . NNP , RB NNP POS JJS NN , VBD VBN IN NNP IN WP PRP$ NNS VBP DT JJ NN IN NN IN DT NN POS NN IN NN NNS . Thursday 's proceedings got underway after the court repeatedly rejected defense motions for a delay to allow them more preparation time . NNP POS NNS VBD NN IN DT NN RB VBD NN NNS IN DT NN TO VB PRP JJR NN NN . In a statement to the court , Khodorkovsky proclaimed his innocence and accused bureaucrats opposed to his funding of the political opposition of responsibility for his conviction . IN DT NN TO DT NN , NNP VBD PRP$ NN CC VBD NNS VBN TO PRP$ NN IN DT JJ NN IN NN IN PRP$ NN . Supporters of the former chief of the giant Russian oil firm Yukos say authorities had rushed through the appeal to prevent Khodorkovsky from running in a December parliamentary by-election . NNS IN DT JJ NN IN DT JJ JJ NN NN NNP VBP NNS VBD VBN IN DT NN TO VB NNP IN VBG IN DT NNP JJ NN . The African Union says it is temporarily suspending the deployment of troops to Sudan 's troubled Darfur region because of a fuel shortage . DT NNP NNP VBZ PRP VBZ RB VBG DT NN IN NNS TO NNP POS JJ NNP NN IN IN DT NN NN . AU officials say the suspension will last several weeks . NNP NNS VBP DT NN MD VB JJ NNS . The Associated Press reports the fuel shortage was caused by the closure of a refinery in Sudan 's capital , Khartoum , for repairs . DT NNP NNP VBZ DT NN NN VBD VBN IN DT NN IN DT NN IN NNP POS NN , NNP , IN NNS . AU officials say heavy rains in Darfur are also hindering the deployment of troops as some roads have become impassable . NNP NNS VBP JJ NNS IN NNP VBP RB VBG DT NN IN NNS IN DT NNS VBP VBN JJ . Several thousand AU troops and police officers are already in Darfur . JJ CD NNP NNS CC NNS NNS VBP RB IN NNP . The force is expected to number more than 7,000 when the deployment is completed . DT NN VBZ VBN TO VB JJR IN CD WRB DT NN VBZ VBN . The force is monitoring a cease-fire between Darfur rebels and pro-government Arab militia . DT NN VBZ VBG DT NN IN NNP NNS CC JJ JJ NN . The conflict has left 1,80,000 people dead and two million others displaced . DT NN VBZ VBN CD NNS JJ CC CD CD NNS VBD . China says at least 37 miners died early Sunday in a coal mine accident in the central province of Henan . NNP VBZ IN JJS CD NNS VBD JJ NNP IN DT NN NN NN IN DT JJ NN IN NNP . The official Xinhua news agency says seven other miners are being treated in the hospital for their injuries after what was called a gas ' outburst ' in the private mine near the city of Dengfeng . DT JJ NNP NN NN VBZ CD JJ NNS VBP VBG VBN IN DT NN IN PRP$ NNS IN WP VBD VBN DT NN `` JJS `` IN DT JJ NN IN DT NN IN NNP . The report said 108 people were underground when the accident occurred , and 64 of them escaped . DT NN VBD CD NNS VBD RB WRB DT NN VBD , CC CD IN PRP VBD . The accident happened one day after a fire at a coal mine in northeastern China killed at least five miners and trapped 30 . DT NN VBD CD NN IN DT NN IN DT NN NN IN JJ NNP VBD IN JJS CD NNS CC JJ CD . Xinhua said the fire broke out Saturday at a mine in Hegang City , Heilongjiang province , while 44 miners were working underground . NNP VBD DT NN VBD RP NNP IN DT NN IN NNP NNP , NNP NN , IN CD NNS VBD VBG RB . China 's coal mines are the world 's deadliest , with thousands of people dying every year in explosions , cave-ins and floods . NNP POS NN NNS VBP DT NN POS JJS , IN NNS IN NNS VBG DT NN IN NNS , NNS CC NNS . Iraq says it will close its borders and extend curfew hours as part of an extensive security plan to foil insurgent attacks during Thursday 's parliamentary elections . NNP VBZ PRP MD VB PRP$ NNS CC VB NN NNS IN NN IN DT JJ NN NN TO VB JJ NNS IN NNP POS JJ NNS . The Interior Ministry says the curfews will begin Tuesday and last until Saturday . DT NNP NNP VBZ DT NNS MD VB NNP CC JJ IN NNP . During that time , road travel will be restricted to vehicles with special permits . IN DT NN , NN NN MD VB VBN TO NNS IN JJ NNS . All airports will be closed from Wednesday to Friday . DT NNS MD VB VBN IN NNP TO NNP . A coalition of Shi'ite religious parties is expected to win the biggest bloc of seats in the new legislature . DT NN IN NNP JJ NNS VBZ VBN TO VB DT JJS NN IN NNS IN DT JJ NN . But analysts predict that no party will win an outright majority , and that a coalition of Shi'ites and Kurds will likely govern . CC NNS VBP IN DT NN MD VB DT JJ NN , CC IN DT NN IN NNS CC NNS MD RB VB . The polls will be the first under the constitution ratified in October in a national referendum . DT NNS MD VB DT JJ IN DT NN VBN IN NNP IN DT JJ NN . Meanwhile , the U.S. military says an American soldier was killed Sunday when a roadside bomb exploded near his patrol in western Baghdad . RB , DT NNP NN VBZ DT JJ NN VBD VBN NNP WRB DT NN NN VBD IN PRP$ NN IN JJ NNP . A former White House aide to former U.S. President George Bush has been sentenced to 30 months in prison for stealing nearly $ 6,00,000 from a government-funded program that promotes democracy in Cuba . DT JJ NNP NNP NN TO JJ NNP NNP NNP NNP VBZ VBN VBN TO CD NNS IN NN IN VBG RB $ CD IN DT JJ NN WDT VBZ NN IN NNP . A federal judge sentenced Felipe Sixto on Wednesday for the theft of funds from the Center for a Free Cuba . DT JJ NN VBD NNP NNP IN NNP IN DT NN IN NNS IN DT NNP IN DT NNP NNP . Sixto resigned as a special assistant to President Bush for intergovernmental affairs last year , after learning the center was taking legal action against him . NNP VBD IN DT JJ NN TO NNP NNP IN JJ NNS JJ NN , IN VBG DT NN VBD VBG JJ NN IN PRP . He pleaded guilty to theft in December and apologized for the crime . PRP VBD JJ TO NN IN NNP CC VBN IN DT NN . Sixto has admitted he bought bulk shipments of radios through two companies he created , then resold the equipment to the center at a higher price . NNP VBZ VBN PRP VBD JJ NNS IN NNS IN CD NNS PRP VBD , RB VBD DT NN TO DT NN IN DT JJR NN . He was the center 's chief of staff before moving to the White House . PRP VBD DT NN POS NN IN NN IN VBG TO DT NNP NNP . The Center for a Free Cuba is a non-profit institution dedicated to promoting human rights and democracy in Cuba . DT NNP IN DT NNP NNP VBZ DT JJ NN VBN TO VBG JJ NNS CC NN IN NNP . A moderate earthquake struck northwest Pakistan Sunday , but there were no immediate reports of damage or injuries . DT JJ NN VBD JJ NNP NNP , CC EX VBD DT JJ NNS IN NN CC NNS . The U.S. Geological Survey measured the quake at a magnitude of 4.9 . DT NNP NNP NNP VBD DT NN IN DT NN IN CD . Officials say the earthquake was centered in the Hindu Kush mountains of neighboring Afghanistan . NNS VBP DT NN VBD VBN IN DT NNP NNP NNS IN VBG NNP . Pakistani officials say the earthquake was felt in the capital , Islamabad , as well as Peshawar and Chitral . JJ NNS VBP DT NN VBD VBN IN DT NN , NNP , RB RB IN NNP CC NNP . Police officials say there were no reports of deaths , injuries or damages . NN NNS VBP EX VBD DT NNS IN NNS , NNS CC NNS . Iraqi Sunni leaders say they want more seats on the parliamentary committee charged with drafting the country 's constitution or they will boycott the process . JJ NNP NNS VBP PRP VBP JJR NNS IN DT JJ NN VBN IN VBG DT NN POS NN CC PRP MD VB DT NN . A coalition of Sunni organizations said Wednesday they want to increase their current special allotment of 13 seats to 25 , strengthening their voice on a key committee that could have a total of some 75 seats . DT NN IN NNP NNS VBD NNP PRP VBP TO VB PRP$ JJ JJ NN IN CD NNS TO CD , VBG PRP$ NN IN DT JJ NN WDT MD VB DT NN IN DT CD NNS . The Sunnis have already been granted 11 extra seats on the committee to make up for their small number of legislators - a result of the parliament election boycott by Sunni voters . DT NNPS VBP RB VBN VBN CD JJ NNS IN DT NN TO VB RP IN PRP$ JJ NN IN NNS IN DT NN IN DT NN NN NN IN NNP NNS . Shi'ite leaders have not responded to the demands . NNP NNS VBP RB VBN TO DT NNS . Meanwhile , insurgent attacks across Iraq Tuesday killed at least 25 people , including three U.S. soldiers . RB , JJ NNS IN NNP NNP VBD IN JJS CD NNS , VBG CD NNP NNS . Several hundred anti-war protesters have begun their second week of demonstrations outside President Bush 's Crawford , Texas ranch . JJ CD JJ NNS VBP VBN PRP$ JJ NN IN NNS IN NNP NNP POS NNP , NNP NN . At the center of the protests is a California woman whose son was killed in Iraq last year . IN DT NN IN DT NNS VBZ DT NNP NN WP$ NN VBD VBN IN NNP JJ NN . Cindy Sheehan came to Crawford a week ago demanding to talk to Mr. Bush about the death of her son and the rationale behind the Iraq conflict . NNP NNP VBD IN NNP DT NN IN VBG TO VB TO NNP NNP IN DT NN IN PRP$ NN CC DT NN IN DT NNP NN . On Saturday , dozens of anti-war demonstrators squared off with counter-protesters outside Mr. Bush 's ranch . IN NNP , NNS IN JJ NNS VBD RP IN NNS IN NNP NNP POS NN . Authorities turned out in force to keep the two groups separated . NNS VBD RP IN NN TO VB DT CD NNS VBN . Mr. Bush has said he understands the sentiments of anti-war protesters , but he repeated his position that U.S. troops will not be immediately withdrawn from Iraq . NNP NNP VBZ VBN PRP VBZ DT NNS IN JJ NNS , CC PRP VBD PRP$ NN IN NNP NNS MD RB VB RB VBN IN NNP . A presidential panel says U.S. intelligence about Iran 's arms capabilities is ' inadequate . ' DT JJ NN VBZ NNP NN IN NNP POS NNS NNS VBZ `` JJ . `` The New York Times says the panel investigating U.S. intelligence on global weapons proliferation will submit the classified report to President Bush later this month . DT NNP NNP NNP VBZ DT NN VBG NNP NN IN JJ NNS NN MD VB DT JJ NN TO NNP NNP RB DT NN . The commission is expected to also be critical of American intelligence on North Korea , but the newspaper says officials describe the lack of information about Tehran 's capabilities as particularly worrisome . DT NN VBZ VBN TO RB VB JJ IN JJ NN IN NNP NNP , CC DT NN VBZ NNS VBP DT NN IN NN IN NNP POS NNS IN RB JJ . The report says America lacks the intelligence on Tehran 's arms to allow firm judgments about its weapons programs . DT NN VBZ NNP VBZ DT NN IN NNP POS NNS TO VB JJ NNS IN PRP$ NNS NNS . The United States says Iran is trying to covertly develop nuclear weapons . DT NNP NNP VBZ NNP VBZ VBG TO RB VB JJ NNS . Tehran insists its nuclear program is for civilian purposes . NNP VBZ PRP$ JJ NN VBZ IN JJ NNS . The International Atomic Energy Agency has been skeptical of Tehran 's claims , but says it has seen no evidence of an Iranian nuclear weapons program . DT NNP NNP NNP NNP VBZ VBN JJ IN NNP POS NNS , CC VBZ PRP VBZ VBN DT NN IN DT JJ JJ NNS NN . Police in Pakistan say at least five soldiers were killed in a suicide attack in the country 's northwestern Swat Valley . NNS IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN NN IN DT NN POS JJ NNP NNP . Security officials say a suicide bomber rammed his explosives-laden vehicle into a security checkpoint in the town of Khawaza Kehla Saturday . NN NNS VBP DT NN NN VBD PRP$ JJ NN IN DT NN NN IN DT NN IN NNP NNP NNP . At least four soldiers were wounded . IN JJS CD NNS VBD VBN . Pakistan 's military launched an offensive in Swat and surrounding areas in late April after militants violated a peace deal and began advancing toward the capital , Islamabad . NNP POS NN VBD DT NN IN NNP CC VBG NNS IN JJ NNP IN NNS VBD DT NN NN CC VBD VBG IN DT NN , NNP . Officials call the operation a success and say most of the Taliban insurgents have been driven from the region . NNS VBP DT NN DT NN CC VBP JJS IN DT NNP NNS VBP VBN VBN IN DT NN . However , Pakistani forces have encountered some lingering resistance . RB , JJ NNS VBP VBN DT VBG NN . The military says eight militants were killed Saturday in a clash that erupted as soldiers searched another area of Swat Valley . DT NN VBZ CD NNS VBD VBN NNP IN DT NN WDT VBD IN NNS VBD DT NN IN NNP NNP . Two others were detained . CD NNS VBD VBN . Elsewhere in northwestern Pakistan , security officials say fighter jets targeted a suspected militant hideout in the South Waziristan tribal region Saturday . RB IN JJ NNP , NN NNS VBP NN NNS VBD DT JJ NN NN IN DT NNP NNP JJ NN NNP . Iran 's top nuclear negotiator says Tehran will soon resume large-scale enrichment of uranium if Iran is referred to the United Nations Security Council . NNP POS JJ JJ NN VBZ NNP MD RB VB JJ NN IN NN IN NNP VBZ VBN TO DT NNP NNP NNP NNP . Ali Larijani also told a news conference Wednesday that Iran 's main enrichment plant is ready for use . NNP NNP RB VBD DT NN NN NNP IN NNP POS JJ NN NN VBZ JJ IN NN . He said all Iran has to do is inform the International Atomic Energy Agency that it would be resuming operations . PRP VBD DT NNP VBZ TO VB VBZ VB DT NNP NNP NNP NNP IN PRP MD VB VBG NNS . His comments come one day before the IAEA board meets in Vienna . PRP$ NNS VBP CD NN IN DT NNP NN VBZ IN NNP . A draft resolution obtained by news agencies formally calls on the IAEA to report Iran to the U.N. Security Council over its nuclear activities . DT NN NN VBN IN NN NNS RB VBZ IN DT NNP TO VB NNP TO DT NNP NNP NNP IN PRP$ JJ NNS . British Foreign Secretary Jack Straw met his Iranian counterpart Manouchehr Mottaki in London today to tell him that Tehran has one last chance to convince the world that its nuclear program is peaceful . JJ NNP NNP NNP NNP VBD PRP$ JJ NN NNP NNP IN NNP NN TO VB PRP IN NNP VBZ CD JJ NN TO VB DT NN IN PRP$ JJ NN VBZ JJ . European and U.S. leaders accuse Iran of secretly trying to develop nuclear weapons . JJ CC NNP NNS VBP NNP IN RB VBG TO VB JJ NNS . Iran denies the charge . NNP VBZ DT NN . U.S. Secretary of State Condoleezza Rice says the Bush administration has a strategy to ' assure victory ' in Iraq . NNP NN IN NN NNP NNP VBZ DT NNP NN VBZ DT NN TO `` VB NN `` IN NNP . In testimony before the Senate Foreign Relations Committee , Ms. Rice said the plan is to clear out areas under insurgent control , hold those areas securely , and build durable , national Iraqi institutions . IN NN IN DT NNP NNP NNP NNP , NNP NNP VBD DT NN VBZ TO VB RP NNS IN JJ NN , VBP DT NNS RB , CC VB JJ , JJ JJ NNS . She said the United States will send in teams of diplomatic and military personnel working together to help Iraqis train police , and set up essential services . PRP VBD DT NNP NNPS MD VB IN NNS IN JJ CC JJ NNS VBG RB TO VB NNS VB NN , CC VB RP JJ NNS . Ms. Rice 's testimony Wednesday comes just days after Iraqis voted in a referendum on a new constitution . NNP NNP POS NN NNP VBZ RB NNS IN NNS VBD IN DT NN IN DT JJ NN . Senators pressed the secretary for specifics , including when the 150-thousand U.S. troops in Iraq might start coming home . NNS VBD DT NN IN NNS , VBG WRB DT JJ NNP NNS IN NNP MD VB VBG NN . The secretary refused to offer a timetable , saying any withdrawal depends on Iraqi forces being able to fight the insurgents independently . DT NN VBD TO VB DT NN , VBG DT NN VBZ IN JJ NNS VBG JJ TO VB DT NNS RB . English and Irish colonists from St. Kitts first settled on Montserrat in 1632 ; the first African slaves arrived three decades later . JJ CC JJ NNS IN NNP NNP RB VBD IN NNP IN CD ; DT JJ JJ NNS VBD CD NNS RB . The British and French fought for possession of the island for most of the 18th century , but it finally was confirmed as a British possession in 1783 . DT NNS CC NNS VBD IN NN IN DT NN IN JJS IN DT JJ NN , CC PRP RB VBD VBN IN DT JJ NN IN CD . The island 's sugar plantation economy was converted to small farm landholdings in the mid 19th century . DT NN POS NN NN NN VBD VBN TO JJ NN NNS IN DT JJ JJ NN . Much of this island was devastated and two-thirds of the population fled abroad because of the eruption of the Soufriere Hills Volcano that began on 18 July 1995 . NN IN DT NN VBD VBN CC NNS IN DT NN VBD RB IN IN DT NN IN DT NNP NNP NNP WDT VBD IN CD NNP CD . Montserrat has endured volcanic activity since , with the last eruption occurring in July 2003 . NNP VBZ VBN JJ NN IN , IN DT JJ NN VBG IN NNP CD . Georgia 's economy sustained GDP growth of more than 10 % in 2006 - 7 , based on strong inflows of foreign investment and robust government spending . NNP POS NN VBD NN NN IN JJR IN CD NN IN CD : CD , VBN IN JJ NNS IN JJ NN CC JJ NN NN . However , GDP growth slowed in 2008 following the August 2008 conflict with Russia , and turned negative in 2009 as foreign direct investment and workers ' remittances declined in the wake of the global financial crisis , but rebounded in 2010 . RB , NN NN VBD IN CD VBG DT NNP CD NN IN NNP , CC VBD JJ IN CD IN JJ JJ NN CC NNS POS NNS VBD IN DT NN IN DT JJ JJ NN , CC VBD IN CD . Georgia 's main economic activities include the cultivation of agricultural products such as grapes , citrus fruits , and hazelnuts ; mining of manganese and copper ; and output of a small industrial sector producing alcoholic and nonalcoholic beverages , metals , machinery , aircraft and chemicals . NNP POS JJ JJ NNS VBP DT NN IN JJ NNS JJ IN NNS , JJ NNS , CC NNS ; NN IN NN CC NN ; CC NN IN DT JJ JJ NN VBG JJ CC JJ NNS , NNS , NN , NN CC NNS . Areas of recent improvement include growth in the construction , banking services , and mining sectors , but reduced availability of external investment and the slowing regional economy are emerging risks . NNS IN JJ NN VBP NN IN DT NN , NN NNS , CC NN NNS , CC VBD NN IN JJ NN CC DT VBG JJ NN VBP VBG NNS . The country imports nearly all its needed supplies of natural gas and oil products . DT NN VBZ RB PDT PRP$ JJ NNS IN JJ NN CC NN NNS . It has sizeable hydropower capacity , a growing component of its energy supplies . PRP VBZ JJ NN NN , DT VBG NN IN PRP$ NN NNS . Georgia has overcome the chronic energy shortages and gas supply interruptions of the past by renovating hydropower plants and by increasingly relying on natural gas imports from Azerbaijan instead of from Russia . NNP VBZ VBN DT JJ NN NNS CC NN NN NNS IN DT NN IN VBG NN NNS CC IN RB VBG IN JJ NN NNS IN NNP IN IN IN NNP . The construction on the Baku-T'bilisi-Ceyhan oil pipeline , the Baku-T'bilisi-Erzerum gas pipeline , and the Kars-Akhalkalaki Railroad are part of a strategy to capitalize on Georgia 's strategic location between Europe and Asia and develop its role as a transit point for gas , oil and other goods . DT NN IN DT JJ NN NN , DT JJ NN NN , CC DT NNP NNP VBP NN IN DT NN TO VB IN NNP POS JJ NN IN NNP CC NNP CC VB PRP$ NN IN DT NN NN IN NN , NN CC JJ NNS . Georgia has historically suffered from a chronic failure to collect tax revenues ; however , the government , since coming to power in 2004 , has simplified the tax code , improved tax administration , increased tax enforcement , and cracked down on petty corruption . NNP VBZ RB VBN IN DT JJ NN TO VB NN NNS ; RB , DT NN , IN VBG TO NN IN CD , VBZ VBN DT NN NN , VBD NN NN , VBN NN NN , CC VBN RP IN JJ NN . However , the economic downturn of 2008 - 9 eroded the tax base and led to a decline in the budget surplus and an increase in public borrowing needs . RB , DT JJ NN IN CD : CD VBD DT NN NN CC VBD TO DT NN IN DT NN NN CC DT NN IN JJ NN NNS . The country is pinning its hopes for renewed growth on a determined effort to continue to liberalize the economy by reducing regulation , taxes , and corruption in order to attract foreign investment , but the economy faces a more difficult investment climate both domestically and internationally . DT NN VBZ VBG PRP$ NNS IN JJ NN IN DT JJ NN TO VB TO VB DT NN IN VBG NN , NNS , CC NN IN NN TO VB JJ NN , CC DT NN VBZ DT RBR JJ NN NN DT RB CC RB . After discarding socialist economic policies in the mid-1990s , Madagascar followed a World Bank- and IMF-led policy of privatization and liberalization that has been undermined since the start of the political crisis . IN VBG JJ JJ NNS IN DT NNS , NNP VBD DT NNP NNP CC JJ NN IN NN CC NN WDT VBZ VBN VBN IN DT NN IN DT JJ NN . This strategy placed the country on a slow and steady growth path from an extremely low level . DT NN VBD DT NN IN DT JJ CC JJ NN NN IN DT RB JJ NN . Agriculture , including fishing and forestry , is a mainstay of the economy , accounting for more than one-fourth of GDP and employing 80 % of the population . NN , VBG NN CC NN , VBZ DT NN IN DT NN , VBG IN JJR IN NN IN NN CC VBG CD NN IN DT NN . Exports of apparel have boomed in recent years primarily due to duty-free access to the US . NNS IN NN VBP VBN IN JJ NNS RB JJ TO JJ NN TO DT NNP . However , Madagascar 's failure to comply with the requirements of the African Growth and Opportunity Act ( AGOA ) led to the termination of the country 's duty-free access in January 2010 . RB , NNP POS NN TO VB IN DT NNS IN DT JJ NN CC NNP NNP LRB NNP RRB VBD TO DT NN IN DT NN POS JJ NN IN NNP CD . Deforestation and erosion , aggravated by the use of firewood as the primary source of fuel , are serious concerns . NN CC NN , VBN IN DT NN IN NN IN DT JJ NN IN NN , VBP JJ NNS . Former President RAVALOMANANA worked aggressively to revive the economy following the 2002 political crisis , which triggered a 12 % drop in GDP that year . JJ NNP NNP VBD RB TO VB DT NN VBG DT CD JJ NN , WDT VBD DT CD NN NN IN NN IN NN . The current political crisis which began in early 2009 has dealt additional blows to the economy . DT JJ JJ NN WDT VBD IN JJ CD VBZ VBN JJ NNS TO DT NN . Tourism dropped more than 50 % in 2009 , compared with the previous year , and many investors are wary of entering the uncertain investment environment . NN VBD JJR IN CD NN IN CD , VBN IN DT JJ NN , CC JJ NNS VBP JJ IN VBG DT JJ NN NN . Settled by both Britain and France during the first half of the 19th century , the island was made a French possession in 1853 . VBN IN DT NNP CC NNP IN DT JJ NN IN DT JJ NN , DT NN VBD VBN DT JJ NN IN CD . It served as a penal colony for four decades after 1864 . PRP VBD IN DT JJ NN IN CD NNS IN CD . Agitation for independence during the 1980s and early 1990s ended in the 1998 Noumea Accord , which over a period of 15 to 20 years will transfer an increasing amount of governing responsibility from France to New Caledonia . NN IN NN IN DT NNS CC JJ NNS VBD IN DT CD NNP NNP , WDT IN DT NN IN CD CC CD NNS MD VB DT JJ NN IN VBG NN IN NNP TO NNP NNP . The agreement also commits France to conduct a referendum between 2014 and 2019 to decide whether New Caledonia should assume full sovereignty and independence . DT NN RB VBZ NNP TO VB DT NN IN CD CC CD TO VB IN NNP NNP MD VB JJ NN CC NN . ALL the Goods were once driven out by the Ills from that common share which they each had in the affairs of mankind ; for the Ills by reason of their numbers had prevailed to possess the earth . PDT DT NNS VBD RB VBN RP IN DT NNS IN DT JJ NN WDT PRP DT VBD IN DT NNS IN NN ; IN DT NNS IN NN IN PRP$ NNS VBD VBN TO VB DT NN . The Goods wafted themselves to heaven and asked for a righteous vengeance on their persecutors . DT NNS VBD PRP TO VB CC VBD IN DT JJ NN IN PRP$ NNS . They entreated Jupiter that they might no longer be associated with the Ills , as they had nothing in common and could not live together , but were engaged in unceasing warfare ; and that an indissoluble law might be laid down for their future protection . PRP VBD NNP IN PRP MD RB RB VB VBN IN DT NNS , IN PRP VBD DT IN JJ CC MD RB VB RB , CC VBD VBN IN JJ NN ; CC IN DT JJ NN MD VB VBN RP IN PRP$ JJ NN . Jupiter granted their request and decreed that henceforth the Ills should visit the earth in company with each other , but that the Goods should one by one enter the habitations of men . NNP VBD PRP$ NN CC VBD IN NN DT NNPS MD VB DT NN IN NN IN DT NN , CC IN DT NNS MD CD IN CD VBP DT NNS IN NNS . Hence it arises that Ills abound , for they come not one by one , but in troops , and by no means singly : while the Goods proceed from Jupiter , and are given , not alike to all , but singly , and separately ; and one by one to those who are able to discern them . RB PRP VBZ IN NNPS VB , IN PRP VBP RB CD IN CD , CC IN NNS , CC IN DT NNS RB IN IN DT NNS VBP IN NNP , CC VBP VBN , RB RB TO DT , CC RB , CC RB ; CC CD IN CD TO DT WP VBP JJ TO VB PRP . Turkish security officials say Kurdish rebels have killed 13 Turkish soldiers in a southeastern province near the border with Iraq . JJ NN NNS VBP NNP NNS VBP VBN CD JJ NNS IN DT JJ NN IN DT NN IN NNP . Reports from Turkey say the soldiers were killed Sunday in Sirnak province near an area where a Kurdish rebel was killed in earlier fighting . NNS IN NNP VBP DT NNS VBD VBN NNP IN NNP NN IN DT NN WRB DT JJ NN VBD VBN IN JJR NN . A Turkish army statement said an operation is under way to hunt down the attackers . DT JJ NN NN VBD DT NN VBZ IN NN TO VB RP DT NNS . It also said Turkish troops shelled areas near the Iraqi border to try to prevent rebels from reaching their bases in northern Iraq . PRP RB VBD JJ NNS VBD NNS IN DT JJ NN TO VB TO VB NNS IN VBG PRP$ NNS IN JJ NNP . Last week , rebels from the Kurdistan Workers ' Party , or PKK , ambushed a minibus in Sirnak and killed 12 passengers , including village guards . JJ NN , NNS IN DT NNP NNP POS NNP , CC NNP , VBD DT NN IN NNP CC VBD CD NNS , VBG NN NNS . Ankara signed an agreement with Baghdad last month that commits Iraqi troops to crack down on PKK rebels who Turkey says use northern Iraq to attack Turkey . NNP VBD DT NN IN NNP JJ NN WDT VBZ JJ NNS TO VB RP IN NNP NNS WP NNP VBZ NN JJ NNP TO VB NNP . The deal does not allow Turkey to send its troops into Iraq . DT NN VBZ RB VB NNP TO VB PRP$ NNS IN NNP . Afghanistan 's government says Afghan and U.S.-led troops have killed five Taleban insurgents in the east of the country . NNP POS NN VBZ JJ CC JJ NNS VBP VBN CD NNP NNS IN DT NN IN DT NN . The Afghan Defense Ministry says the rebels were killed in a gun fight Saturday in the eastern province of Paktika . DT JJ NNP NNP VBZ DT NNS VBD VBN IN DT NN NN NNP IN DT JJ NN IN NNP . Afghan and coalition forces captured one insurgent . JJ CC NN NNS VBD CD NN . In other fighting Saturday , a Canadian soldier was killed in Kandahar province when militants ambushed his patrol with a roadside bomb and gunfire . IN JJ NN NNP , DT JJ NN VBD VBN IN NNP NN WRB NNS VBD PRP$ NN IN DT NN NN CC NN . Separately , Afghan police are searching for the gunmen who killed two German journalists early Saturday in a remote part of northern Afghanistan . RB , JJ NNS VBP VBG IN DT NNS WP VBD CD JJ NNS JJ NNP IN DT JJ NN IN JJ NNP . The two Deutsche Welle journalists , a man and a woman , were shot dead as they spent the night in a tent in Baghlan province . DT CD NNP NNP NNS , DT NN CC DT NN , VBD VBN JJ IN PRP VBD DT NN IN DT NN IN NNP NN . The area has been relatively calm this year , and the motive for the shooting is unknown . DT NN VBZ VBN RB JJ DT NN , CC DT NN IN DT NN VBZ JJ . German Foreign Minister Frank-Walter Steinmeier condemned the killings as atrocious and senseless . JJ NNP NNP NNP NNP VBD DT NNS IN JJ CC JJ . American Idol narrowed the field of hopefuls to 16 March 1 , bouncing two women and two men . NNP NNP VBD DT NN IN NNS TO CD NNP CD , VBG CD NNS CC CD NNS . This time , the axe fell on Alaina Alexander , who sang a tepid rendition of the Dixie Chicks ' ' Not Ready To Make Nice , ' and Nick Pedro , deemed lacking in charisma , according to judge Simon Cowell . DT NN , DT NN VBD IN NNP NNP , WP VBD DT JJ NN IN DT NNP NNPS POS `` RB JJ TO VB NNP , `` CC NNP NNP , VBD VBG IN NN , VBG TO VB NNP NNP . Also removed were A.J. Tabaldo and Leslie Hunt , who both sang Nina Simone 's ' Feeling Good ' . RB VBN VBD NNP NNP CC NNP NNP , WP DT VBD NNP NNP POS `` VBG JJ `` . Still in the race , however , is 20-year-old New Jersey native Antonella Barba , whose racy photos have become an Internet sensation . RB IN DT NN , RB , VBZ JJ NNP NNP JJ NNP NNP , WP$ JJ NNS VBP VBN DT NNP NN . Burma 's detained democracy leader Aung San Suu Kyi has appealed to the ruling military against her home confinement . NNP POS JJ NN NN NNP NNP NNP NNP VBZ VBN TO DT NN NN IN PRP$ NN NN . A spokesman for her National League for Democracy says the appeal was sent by the party to the cabinet . DT NN IN PRP$ NNP NNP IN NNP VBZ DT NN VBD VBN IN DT NN TO DT NN . Aung San Suu Kyi approved the final draft of her legal appeal during a meeting with her lawyer Kyi Win in September . NNP NNP NNP NNP VBD DT JJ NN IN PRP$ JJ NN IN DT NN IN PRP$ NN NNP NNP IN NNP . Last month , the military government released 9,000 prisoners , including ten political prisoners in an amnesty ahead of elections planned for 2010 . JJ NN , DT JJ NN VBD CD NNS , VBG JJ JJ NNS IN DT NN RB IN NNS VBN IN CD . The NLD won a landslide victory in 1990 elections , but the military refused to acknowledge the win . DT NNP VBD DT NN NN IN CD NNS , CC DT NN VBD TO VB DT NN . The Nobel Peace Prize laureate has been under house arrest for 13 of the last 19 years . DT NNP NNP NNP NN VBZ VBN IN NN NN IN CD IN DT JJ CD NNS . Pope Benedict is calling for swift global action to overcome hunger in the troubled Darfur region of western Sudan . NNP NNP VBZ VBG IN JJ JJ NN TO VB NN IN DT JJ NNP NN IN JJ NNP . Speaking Sunday , the pontiff said the most basic food needs of hundreds of thousands of people in Darfur are not being met . VBG NNP , DT NN VBD DT JJS JJ NN NNS IN NNS IN NNS IN NNS IN NNP VBP RB VBG VBN . Earlier this month , the World Food Program said lagging donations had forced it to reduce food rations to 1,050 calories per day - about half of an average person 's daily requirement . RBR DT NN , DT NNP NNP NNP VBD VBG NNS VBD VBN PRP TO VB NN NNS TO CD NNS IN NN : IN NN IN DT JJ NN POS JJ NN . The Khartoum government and Darfur 's main rebel group signed a peace deal May fifth to end fighting that has killed more than 2,00,000 people and displaced more than 2.5 million others since 2003 . DT NNP NN CC NNP POS JJ NN NN VBD DT NN NN NNP NN TO VB VBG DT VBZ VBN JJR IN CD NNS CC VBN JJR IN CD CD NNS IN CD . But African Union peacekeepers have been unable to stop militia attacks on civilians since then . CC NNP NNP NNS VBP VBN JJ TO VB NN NNS IN NNS IN RB . Prosecutors in Ukraine say they want to question former President Leonid Kuchma about the death of an investigative reporter five years ago . NNS IN NNP VBP PRP VBP TO VB JJ NNP NNP NNP IN DT NN IN DT JJ NN CD NNS RB . Officials will pose questions about Georgy Gongadze , an Internet journalist who had been critical of Mr. Kuchma 's government . NNS MD VB NNS IN NNP NNP , DT NNP NN WP VBD VBN JJ IN NNP NNP POS NN . No date has been set for the interview . DT NN VBZ VBN VBN IN DT NN . The journalist disappeared in September 2000 and his decapitated body was found weeks later . DT NN VBD IN NNP CD CC PRP$ JJ NN VBD VBN NNS RB . Mr. Kuchma 's former bodyguard says he secretly recorded conversations during which the former leader allegedly implicates himself in the killing . NNP NNP POS JJ NN VBZ PRP RB VBD NNS IN WDT DT JJ NN RB VBZ PRP IN DT NN . The former president has denied any involvement in Mr. Gongadze 's death . DT JJ NN VBZ VBN DT NN IN NNP NNP POS NN . Friday , his former interior minister , Yuri Kravchenko , apparently committed suicide hours before he was to be questioned in the case . NNP , PRP$ JJ JJ NN , NNP NNP , RB JJ NN NNS IN PRP VBD TO VB VBN IN DT NN . U.S. first lady Laura Bush has visited a center for missing children and praised the work of those trying to reunite the families separated by Hurricane Katrina . NNP JJ NN NNP NNP VBZ VBN DT NN IN VBG NNS CC VBD DT NN IN DT VBG TO VB DT NNS VBN IN NNP NNP . Mrs. Bush greeted volunteers at the National Center for Missing and Exploited Children outside Washington Friday . NNP NNP VBD NNS IN DT NNP NNP IN NNP CC NNP NNP IN NNP NNP . The center in Alexandria , Virginia says more than 2,000 children are still reported missing from the hurricane or are looking for their parents or other caregivers . DT NN IN NNP , NNP VBZ JJR IN CD NNS VBP RB VBN VBG IN DT NN CC VBP VBG IN PRP$ NNS CC JJ NNS . Photographs and information of the missing , including adults , are posted on the center 's website . NN CC NN IN DT VBG , VBG NNS , VBP VBN IN DT NN POS NN . Some children are only listed by their first name , as their full identification is still unknown , nearly three weeks after the storm hit . DT NNS VBP RB VBN IN PRP$ JJ NN , IN PRP$ JJ NN VBZ RB JJ , RB CD NNS IN DT NN VBZ . The American Red Cross also has a registry of the missing . DT NNP NNP NNP RB VBZ DT NN IN DT VBG . Former president Jimmy Carter says the U.S. military should close its detention camp at Guantanamo Bay , Cuba , following allegations of prisoner abuse . JJ NN NNP NNP VBZ DT NNP NN MD VB PRP$ NN NN IN NNP NNP , NNP , VBG NNS IN NN NN . Mr. Carter told an audience in Atlanta Tuesday that closing the camp and several other secret detention centers around the globe would show that the United States is committed to defending human rights . NNP NNP VBD DT NN IN NNP NNP IN VBG DT NN CC JJ JJ JJ NN NNS IN DT NN MD VB IN DT NNP NNPS VBZ VBN TO VBG JJ NNS . Earlier this week , a leading Democrat in the Senate called on President Bush to shut down the Guantanamo camp and launch a massive probe into alleged abuses there . RBR DT NN , DT VBG NNP IN DT NNP VBD IN NNP NNP TO VB RP DT NNP NN CC VB DT JJ NN IN JJ NNS RB . A report by the human rights group Amnesty International criticizes the U.S. military for holding terrorist suspects without charge and for other abuses . DT NN IN DT JJ NNS NN NNP NNP VBZ DT NNP NN IN VBG JJ NNS IN NN CC IN JJ NNS . Defense Secretary Donald Rumsfeld has rejected the Amnesty report as ' absurd , ' and he says U.S. officials have no plans to close the camp at Guantanamo . NNP NNP NNP NNP VBZ VBN DT JJ NN IN `` JJ , `` CC PRP VBZ NNP NNS VBP DT NNS TO VB DT NN IN NNP . NATO says it is investigating allegations that seven members of a private security company were killed Saturday during an Afghan and coalition force operation . NNP VBZ PRP VBZ VBG NNS IN CD NNS IN DT JJ NN NN VBD VBN NNP IN DT JJ CC NN NN NN . A coalition statement says the deadly shooting happened after its service members had ' peacefully detained ' a Haqqani facilitator in Paktiya province . DT NN NN VBZ DT JJ NN VBD IN PRP$ NN NNS VBD `` RB VBN `` DT NNP NN IN NNP NN . NATO says after the joint force used a bullhorn to call for occupants of a vehicle to ' exit peacefully , ' a man got out of the vehicle with an AK-47 . NNP VBZ IN DT JJ NN VBD DT NN TO VB IN NNS IN DT NN TO `` NN RB , `` DT NN VBD IN IN DT NN IN DT NNP . The alliance says the security force assessed the man ' to be hostile ' and shot him . DT NN VBZ DT NN NN VBD DT NN `` TO VB JJ `` CC VBD PRP . NATO says several armed individuals then clashed with the force , resulting in seven deaths . NNP VBZ JJ JJ NNS RB VBD IN DT NN , VBG IN CD NNS . NATO says it is assessing who the individuals were . NNP VBZ PRP VBZ VBG WP DT NNS VBD . Brazilian security forces , backed by tanks and helicopters , have carried out an operation to recover stolen weapons from a slum in Rio de Janeiro . JJ NN NNS , VBN IN NNS CC NNS , VBP VBN RP DT NN TO VB JJ NNS IN DT NN IN NNP NNP NNP . More than 1,000 soldiers and police officers searched Monday for 10 assault rifles and a nine-millimeter pistol stolen from army barracks by a group of armed men on Friday . JJR IN CD NNS CC NN NNS VBD NNP IN CD NN NNS CC DT JJ NN VBN IN NN NNS IN DT NN IN JJ NNS IN NNP . A homemade bomb was hurled at soldiers at the entrance of the Providencia slum in the early hours of Monday morning . DT JJ NN VBD VBN IN NNS IN DT NN IN DT NNP NN IN DT JJ NNS IN NNP NN . No injuries were reported . DT NNS VBD VBN . Security officials say police and soldiers exchanged fire with slum residents . NN NNS VBP NNS CC NNS VBD NN IN NN NNS . Rio is one of the world 's most violent cities . NNP VBZ CD IN DT NN POS RBS JJ NNS . Its slums are often the scene of gang and drug-related violence that kills hundreds of people each year . PRP$ NNS VBP RB DT NN IN NN CC JJ NN WDT VBZ NNS IN NNS DT NN . China has issued a new set of rules that state-media said would better protect religious freedoms in the officially atheist country . NNP VBZ VBN DT JJ NN IN NNS IN NN VBD MD RB VB JJ NNS IN DT RB JJ NN . The official Xinhua news agency said Sunday that the Religious Affairs Provisions explicitly specify the rights of religious groups , religious sites , and people . DT JJ NNP NN NN VBD NNP IN DT JJ NNP NNPS RB VB DT NNS IN JJ NNS , JJ NNS , CC NNS . They also offer guidance on religious affairs involving state and public interests . PRP RB VBP NN IN JJ NNS VBG NN CC JJ NNS . Xinhua called the rules a significant step forward in the protection of Chinese citizens ' religious freedom . NNP VBD DT NNS DT JJ NN RB IN DT NN IN JJ NNS POS JJ NN . The U.S. State Department 's Annual Report on Religious Freedom last year rebuked China for poor respect for religious freedom and interference and harassment of people who do not belong to state churches . DT NNP NNP NNP POS NNP NNP IN NNP NNP JJ NN VBD NNP IN JJ NN IN JJ NN CC NN CC NN IN NNS WP VBP RB VB TO NN NNS . China requires people to worship in state-sanctioned churches and cracks down on groups outside of the government 's control . NNP VBZ NNS TO VB IN JJ NNS CC VBZ RB IN NNS IN IN DT NN POS NN . A new public opinion poll in the United States says President Bush 's job approval rating has fallen to an all-time low of 45 percent because of the war in Iraq and rising gasoline prices . DT JJ JJ NN NN IN DT NNP NNPS VBZ NNP NNP POS NN NN NN VBZ VBN TO DT JJ NN IN CD NN IN IN DT NN IN NNP CC VBG NN NNS . The ABC News-Washington Post survey published Wednesday found that just over half ( 53 percent ) of the 1,600 people surveyed said the war in Iraq is not worth fighting , while 57 percent disapprove of the president 's handling of the conflict . DT NNP NNP NNP NN VBN NNP VBD IN RB IN NN LRB CD NN RRB IN DT CD NNS VBN VBD DT NN IN NNP VBZ RB JJ NN , IN CD NN NN IN DT NN POS NN IN DT NN . The survey also said 73 percent disapprove of President Bush 's efforts to control the soaring gasoline prices in the United States . DT NN RB VBD CD NN NN IN NNP NNP POS NNS TO VB DT VBG NN NNS IN DT NNP NNPS . The poll said that Mr. Bush 's handing of the war against terrorism received 56 percent approval , the only issue on which he received a majority approval . DT NN VBD IN NNP NNP POS NN IN DT NN IN NN VBD CD NN NN , DT JJ NN IN WDT PRP VBD DT NN NN . The poll of randomly selected Americans has a three percent margin of error . DT NN IN RB VBN NNS VBZ DT CD NN NN IN NN . Kenyan police say thieves tried to break into the home of Sarah Obama , the grandmother of U.S. presidential hopeful Barack Obama . JJ NNS VBP NNS VBD TO VB IN DT NN IN NNP NNP , DT NN IN NNP JJ NN NNP NNP . The 85-year-old Obama told police and Kenyan media that the break-in attempt occurred early Wednesday at her home in the western village of Kogelo . DT JJ NNP VBD NNS CC JJ NNS IN DT JJ NN VBD JJ NNP IN PRP$ NN IN DT JJ NN IN NNP . She told a Kenyan newspaper , The Daily Nation , that the thieves tried to get into the house through the kitchen door and then tried to remove a solar panel from the roof . PRP VBD DT JJ NN , DT NNP NNP , IN DT NNS VBD TO VB IN DT NN IN DT NN NN CC RB VBD TO VB DT JJ NN IN DT NN . Police say they have arrested four suspects in connection with the incident and are now giving Obama 24-hour protection . NNS VBP PRP VBP VBN CD NNS IN NN IN DT NN CC VBP RB VBG NNP JJ NN . Barack Obama was born to a white American mother and a Kenyan father . NNP NNP VBD VBN TO DT JJ JJ NN CC DT JJ NN . The Democratic Party candidate is wildly popular among Kenyans , who take pride in his run for the presidency . DT JJ NNP NN VBZ RB JJ IN NNS , WP VBP NN IN PRP$ NN IN DT NN . Sarah Obama is his step-grandmother . NNP NNP VBZ PRP$ NN . Supporters of Zimbabwean President Robert Mugabe have raised $ 2,50,000 to throw him a lavish birthday party , Saturday . NNS IN JJ NNP NNP NNP VBP VBN $ CD TO VB PRP DT JJ NN NN , NNP . The state-run Herald newspaper says Mr. Mugabe 's 85th birthday will be celebrated in the town of Chinhoyi , north of the capital Harare . DT JJ NNP NN VBZ NNP NNP POS JJ NN MD VB VBN IN DT NN IN NNP , NN IN DT NN NN . Prime Minister Morgan Tsvangirai , the president 's longtime rival , plans to attend the event . NNP NNP NNP NNP , DT NN POS JJ NN , VBZ TO VB DT NN . The two men recently entered into a unity government under intense pressure from regional leaders . DT CD NNS RB VBD IN DT NN NN IN JJ NN IN JJ NNS . Mr. Tsvangirai has criticized the president 's birthday parties in the past , saying they waste money in a country crippled by poverty and food shortages . NNP NNP VBZ VBN DT NN POS NN NNS IN DT NN , VBG PRP VB NN IN DT NN VBN IN NN CC NN NNS . Iraqi Kurdish negotiators say they will resume talks Monday with the country 's dominant Shi'ite alliance to hammer out details of a coalition government . JJ NNP NNS VBP PRP MD VB NNS NNP IN DT NN POS JJ NNP NN TO VB RP NNS IN DT NN NN . One of the negotiators , Fuad Masoum , says there are further , important issues that need to be resolved before a government is formed . CD IN DT NNS , NNP NNP , VBZ EX VBP RB , JJ NNS WDT VBP TO VB VBN IN DT NN VBZ VBN . Negotiators have been hoping to agree on a government before Iraq 's National Assembly convenes for the first time on Wednesday . NNS VBP VBN VBG TO VB IN DT NN IN NNP POS NNP NNP VBZ IN DT JJ NN IN NNP . Meanwhile , a roadside bomb south of Baghdad killed two American security contractors Sunday . RB , DT NN NN NN IN NNP VBD CD JJ NN NNS NNP . To the north , in Mosul , witnesses say three Iraqi civilians were killed when a U.S. helicopter fired on insurgents . TO DT NN , IN NNP , NNS VBP CD JJ NNS VBD VBN WRB DT NNP NN VBD IN NNS . Also Sunday , a previously-unknown group claimed responsibility for last week 's bomb attack on a Shi'ite funeral that killed 50 people . RB NNP , DT JJ NN VBD NN IN JJ NN POS NN NN IN DT NNP NN WDT VBD CD NNS . It says the attack was to demonstrate opposition to Shi'ites who are set to take control of Iraq 's new government . PRP VBZ DT NN VBD TO VB NN TO NNS WP VBP VBN TO VB NN IN NNP POS JJ NN . A prominent U.S. newspaper says Washington wants to expand a secret Central Intelligence Agency operation in Pakistan designed to eliminate Islamic militants ' havens near the Afghan border . DT JJ NNP NN VBZ NNP VBZ TO VB DT JJ NNP NNP NNP NN IN NNP VBD TO VB NNP NNS POS NNS IN DT JJ NN . The Wall Street Journal reported late Friday the U.S. has asked Pakistan in recent weeks to allow more CIA officers and special operations military trainers into the country to participate in Washington 's efforts step up pressure on militants . DT NNP NNP NNP VBD JJ NNP DT NNP VBZ VBN NNP IN JJ NNS TO VB JJR NNP NNS CC JJ NNS JJ NNS IN DT NN TO VB IN NNP POS NNS VB RP NN IN NNS . The report says Islamabad has refused the requests for additional personnel because it remains ' extremely wary ' of a larger U.S. ground presence in Pakistan . DT NN VBZ NNP VBZ VBN DT NNS IN JJ NNS IN PRP VBZ `` RB JJ `` IN DT JJR NNP NN NN IN NNP . The newspaper reports the number of CIA personnel in Pakistan is ' highly classified , ' but says it ' has grown substantially ' in recent years . DT NN VBZ DT NN IN NNP NNS IN NNP VBZ `` RB VBN , `` CC VBZ PRP `` VBZ VBN RB `` IN JJ NNS . The Wall Street Journal says Washington wants Islamabad to take ' more aggressive action ' against groups allied with al-Qaida . DT NNP NNP NNP VBZ NNP VBZ NNP TO VB `` RBR JJ NN `` IN NNS VBN IN NNP . The death toll from a passenger train derailment in southern India has risen to at least 77 people , after rescue workers retrieved more bodies from the mangled wreckage . DT NN NN IN DT NN NN NN IN JJ NNP VBZ VBN TO IN JJS CD NNS , IN NN NNS VBD JJR NNS IN DT JJ NN . Authorities say the accident occurred Saturday , near the town of Veligonda in southern Andhra Pradesh state . NNS VBP DT NN VBD NNP , IN DT NN IN NNP IN JJ NNP NNP NN . They say heavy rains washed away a portion of the tracks and that the train derailed and fell into a swollen river . PRP VBP JJ NNS VBN RB DT NN IN DT NNS CC IN DT NN VBD CC VBD IN DT JJ NN . Officials say at least 100 injured passengers were rescued from the seven cars that plunged into the flood waters , but that many more remain trapped inside . NNS VBP IN JJS CD JJ NNS VBD VBN IN DT CD NNS WDT VBD IN DT NN NNS , CC IN JJ JJR VBP JJ NN . Indian television images showed corpses lying on the soft marshy ground , many clad in brightly colored , but sodden clothes . JJ NN NNS VBD NNS VBG IN DT JJ NN NN , JJ NN IN RB VBN , CC JJ NNS . Rescuers used ropes to help them wade through the water to reach the train carriages and then drag bodies onto higher land . NNS VBD NNS TO VB PRP VB IN DT NN TO VB DT NN NNS CC RB VB NNS IN JJR NN . A laboratory in Hong Kong has confirmed it was the deadly H5N1 strain of bird flu that killed two Indonesian children from the same family this month . DT NN IN NNP NNP VBZ VBN PRP VBD DT JJ NNP NN IN NN NN WDT VBD CD JJ NNS IN DT JJ NN DT NN . An Indonesian Health Ministry official said Saturday the deaths in West Java province raise the country 's toll from bird flu to 14 confirmed cases . DT JJ NNP NNP NN VBD NNP DT NNS IN NNP NNP NN VB DT NN POS NN IN NN NN TO CD VBN NNS . A three-year-old boy died Tuesday at a provincial hospital . DT JJ NN VBD NNP IN DT JJ NN . His 13-year-old sister died the previous week , and a third sibling is suffering symptoms of the virus . PRP$ JJ NN VBD DT JJ NN , CC DT JJ NN VBZ VBG NNS IN DT NN . Elsewhere , Ukraine has confirmed a new outbreak of bird flu among birds in the southern Crimea Peninsula . RB , NNP VBZ VBN DT JJ NN IN NN NN IN NNS IN DT JJ NNP NNP . Ukrainian officials say they do not yet know if the birds had the H5N1 strain . JJ NNS VBP PRP VBP RB RB VB IN DT NNS VBD DT NNP NN . The World Health Organization has confirmed more than 80 deaths from bird flu in East Asia and Turkey since 2003 . DT NNP NNP NNP VBZ VBN JJR IN CD NNS IN NN NN IN NNP NNP CC NNP IN CD . An outbreak of cholera in West Africa has killed at least 177 people and sickened more than 9,000 in Guinea-Bissau within the past month . DT NN IN NN IN NNP NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD IN NNP IN DT JJ NN . In an attempt to control the outbreak , the government has banned the sale of water at markets . IN DT NN TO VB DT NN , DT NN VBZ VBN DT NN IN NN IN NNS . Cholera is an intestinal infection usually spread through contaminated water or food . NN VBZ DT JJ NN RB VBN IN JJ NN CC NN . It causes life-threatening dehydration if not treated . PRP VBZ JJ NN IN RB VBN . Health officials say this year 's rainy season in Guinea-Bissau has created favorable conditions for the spread of the disease . NN NNS VBP DT NN POS NN NN IN NNP VBZ VBN JJ NNS IN DT NN IN DT NN . Flooded latrines can contaminate nearby well water . JJ NNS MD VB RB RB NN . The World Health Organization says Burkina Faso , Guinea , Liberia , Mali , Mauritania , Niger and Senegal also have seen a rise in cholera cases . DT NNP NNP NNP VBZ NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP RB VBP VBN DT NN IN NN NNS . Germany 's highest court has ruled that random data profiling for terror suspects is legal only when the country faces a specific threat to security or lives . NNP POS JJS NN VBZ VBN IN JJ NNS VBG IN NN NNS VBZ JJ RB WRB DT NN VBZ DT JJ NN TO NN CC NNS . Germany 's Constitutional Court ruled Tuesday that the general threat of terror since September 11 , 2001 , does not warrant random profiling . NNP POS NNP NNP VBD NNP IN DT JJ NN IN NN IN NNP CD , CD , VBZ RB VB JJ NN . Analysts say the ruling could force many German states to revise laws on random searches . NNS VBP DT NN MD VB JJ JJ NNS TO VB NNS IN JJ NNS . The measure stems from the case of a Moroccan student in the German state of North Rhine-Westphalia , who challenged scanned data on five million men who were profiled following the 2001 terror attacks on the United States . DT NN VBZ IN DT NN IN DT JJ NN IN DT JJ NN IN NNP NNP , WP VBD VBN NNS IN CD CD NNS WP VBD VBN VBG DT CD NN NNS IN DT NNP NNPS . No terror suspects were found in the data search . DT NN NNS VBD VBN IN DT NNS NN . Bavarian Interior Minister Guenther Beckstein criticized today 's ruling , saying data profiling is an effective way to combat terrorism . JJ NNP NNP NNP NNP VBD NN POS NN , VBG NNS VBG VBZ DT JJ NN TO VB NN . Israeli soldiers on stand by in the Gush Katif bloc of Jewish settlements leading to the site were Palestinian militants attacked an army post near Egypt-Gaza border Israeli security officials say three soldiers have been wounded in an attack by Palestinian militants . JJ NNS IN NN IN IN DT NNP NNP NN IN JJ NNS VBG TO DT NN VBD JJ NNS VBD DT NN NN IN NNP NN JJ NN NNS VBP CD NNS VBP VBN VBN IN DT NN IN JJ NNS . Israeli officials say two militants fired light arms and rocket-propelled grenades at soldiers and civilians near any army post on the Gaza-Egypt border Sunday . JJ NNS VBP CD NNS VBD JJ NNS CC JJ NNS IN NNS CC NNS IN DT NN NN IN DT JJ NN NNP . Authorities say the soldiers returned fire , killing one of the attackers . NNS VBP DT NNS VBD NN , VBG CD IN DT NNS . The militant group Islamic Jihad said the attack was a joint operation between its militants and those affiliated with the Fatah movement of Palestinian leader Mahmoud Abbas . DT JJ NN NNP NNP VBD DT NN VBD DT JJ NN IN PRP$ NNS CC DT VBN IN DT NNP NN IN JJ NN NNP NNP . Sierra Leone 's U.N.-backed war crimes tribunal has accused former Liberian President Charles Taylor of backing an attempt to kill Guinea 's president . NNP NNP POS JJ NN NNS NN VBZ VBN JJ JJ NNP NNP NNP IN VBG DT NN TO VB NNP POS NN . The court 's chief prosecutor David Crane says the exiled former leader ordered the assassination of Guinean President Lansana Conte in January to punish him for allegedly supporting rebels in Liberia . DT NN POS NN NN NNP NNP VBZ DT VBN JJ NN VBD DT NN IN JJ NNP NNP NNP IN NNP TO VB PRP IN RB VBG NNS IN NNP . A spokesman for Mr. Taylor has denied the charge . DT NN IN NNP NNP VBZ VBN DT NN . He has lived in exile in Nigeria since 2003 when he stepped down under pressure from advancing rebels and the United States . PRP VBZ VBN IN NN IN NNP IN CD WRB PRP VBD RB IN NN IN VBG NNS CC DT NNP NNPS . Before Mr. Taylor left office , the special court indicted him on war crimes charges for backing rebels during Sierra Leone 's 10-year civil war . IN NNP NNP VBD NN , DT JJ NN VBD PRP IN NN NNS NNS IN VBG NNS IN NNP NNP POS JJ JJ NN . Meanwhile , the United States House of Representatives is expected to pass a resolution calling on Nigeria to hand Mr. Taylor to the tribunal . RB , DT NNP NNP NNP IN NNPS VBZ VBN TO VB DT NN VBG IN NNP TO VB NNP NNP TO DT NN . Panama says drug-running Colombian rebels have planted landmines in Panama near the two countries ' shared border . NNP VBZ JJ JJ NNS VBP VBN NNS IN NNP IN DT CD NNS POS JJ NN . Panamanian Security Minister Jose Mulino said Friday that whoever planted the mines is apparently ' protecting something ' in the area . JJ NNP NNP NNP NNP VBD NNP IN WP VBD DT NNS VBZ RB `` VBG DT `` IN DT NN . Mulino did not say how many mines were found in the Darien region where two police officers were wounded last week in a mine blast . NNP VBD RB VB WRB JJ NNS VBD VBN IN DT NNP NN WRB CD NNS NNS VBD VBN JJ NN IN DT NN NN . The region has been the scene of occasional incursions by rebels into Panamanian territory in the past . DT NN VBZ VBN DT NN IN JJ NNS IN NNS IN JJ NN IN DT NN . Palestinian officials say Israeli soldiers have shot and killed at least two Palestinians in separate incidents in the West Bank . JJ NNS VBP JJ NNS VBP VBN CC VBN IN JJS CD NNS IN JJ NNS IN DT NNP NNP . Early Sunday , Israeli troops killed a member of the Al-Aqsa Martyrs Brigades in a refugee camp in Nablus . RB NNP , JJ NNS VBD DT NN IN DT NNP NNP NNP IN DT NN NN IN NNP . An Israeli army spokesman said soldiers opened fire on two gunmen , killing one and wounding the other . DT JJ NN NN VBD NNS VBD NN IN CD NNS , VBG CD CC VBG DT JJ . In the other incident , near Hebron , Israeli forces killed a man who was involved in a shootout between two Palestinian families . IN DT JJ NN , IN NNP , JJ NNS VBD DT NN WP VBD VBN IN DT NN IN CD JJ NNS . An Israeli army spokesman says the man was armed . DT JJ NN NN VBZ DT NN VBD VBN . Separately , in the Gaza Strip , Hamas security forces say they found a bomb near the Palestinian parliament building . RB , IN DT NNP NNP , NNP NN NNS VBP PRP VBD DT NN IN DT JJ NN NN . Hamas blamed members of the rival Fatah movement for planting the device . NNP VBD NNS IN DT JJ NNP NN IN VBG DT NN . Hamas seized control of Gaza in June after factional fighting with Fatah that killed more than 100 people . NNP VBD NN IN NNP IN NNP IN JJ NN IN NNP WDT VBD JJR IN CD NNS . The Turkish Weightlifting Federation has been fined $ 1,00,000 and suspended from all international competitions until May 31 following a series of anti-doping violations . DT JJ NNP NNP VBZ VBN VBN $ CD CC VBN IN DT JJ NNS IN NNP CD VBG DT NN IN JJ NNS . In a statement Tuesday after a meeting in Doha , Qatar , the International Weightlifting Federation 's executive committee sanctioned Turkey 's federation for ' bringing the sport of weightlifting into disrepute . ' IN DT NN NNP IN DT NN IN NNP , NNP , DT NNP NNP NNP POS NN NN VBD NNP POS NN IN `` VBG DT NN IN VBG IN NN . `` The fine must be paid before Turkey can be readmitted to the sport 's International Federation , with the money to be used for anti-doping activities . DT NN MD VB VBN IN NNP MD VB VBN TO DT NN POS NNP NNP , IN DT NN TO VB VBN IN JJ NNS . The IWF also directed the Turkish Federation to identify and sanction athletes and coaches involved in the violations , and develop an anti-doping education program to be approved and monitored by the world body 's executive board . DT NNP RB VBD DT JJ NNP TO VB CC VB NNS CC NNS VBN IN DT NNS , CC VB DT JJ NN NN TO VB VBN CC VBN IN DT NN NN POS NN NN . Brazil 's president is pledging to invest at least $ 1.7 billion to develop Rio de Janeiro 's slums . NNP POS NN VBZ VBG TO VB IN JJS $ CD CD TO VB NNP NNP NNP POS NNS . In a speech on Monday , Luiz Inacio Lula da Silva said the state should meet its obligations to slum dwellers or else drug traffickers will take over the shantytowns . IN DT NN IN NNP , NNP NNP NNP NNP NNP VBD DT NN MD VB PRP$ NNS TO NN NNS CC RB NN NNS MD VB RP DT NNS . He added that Brazil can defeat organized crime only if the government improves the country 's poorest areas . PRP VBD IN NNP MD VB JJ NN RB IN DT NN VBZ DT NN POS JJS NNS . Mr. da Silva spoke a few days after a police raid on drug gangs killed at least 13 people in a slum . NNP NNP NNP VBD DT JJ NNS IN DT NN NN IN NN NNS VBD IN JJS CD NNS IN DT NN . The announced investment will provide basic services such as water and sewage systems , as well as basic facilities such as schools and hospitals . DT JJ NN MD VB JJ NNS JJ IN NN CC NN NNS , RB RB IN JJ NNS JJ IN NNS CC NNS . The money is expected to benefit two million families in the state and city of Rio de Janeiro . DT NN VBZ VBN TO VB CD CD NNS IN DT NN CC NN IN NNP IN NNP . Brazil 's federal , state , and municipal governments will all contribute to the fund . NNP POS JJ , NN , CC JJ NNS MD RB VB TO DT NN . Before Hurricane Gustav even made landfall , the American Red Cross had spent $ 12 million organizing 5,000 workers and supplies for disaster relief . IN NNP NNP RB VBD NN , DT NNP NNP NNP VBD VBN $ CD CD VBG CD NNS CC NNS IN NN NN . Now , hundreds of Red Cross chapters nationwide are getting ready for the next group of storms . RB , NNS IN NNP NNP NNS RB VBP VBG JJ IN DT JJ NN IN NNS . VOA 's Carolyn Presutti shows how that is accomplished . NNP POS NNP NNP VBZ WRB DT VBZ VBN . The United Nations Security Council is expected to discuss a build-up of peacekeeping troops in Ivory Coast later Monday . DT NNP NNP NNP NNP VBZ VBN TO VB DT NN IN VBG NNS IN NNP NNP RB NNP . U.N. Secretary-General Kofi Annan has officially requested the transfer of 200 additional peacekeepers and a police unit from Liberia to protect U.N. personnel and property . NNP NNP NNP NNP VBZ RB VBN DT NN IN CD JJ NNS CC DT NN NN IN NNP TO VB NNP NNS CC NN . On Sunday , Mr. Annan urged the Council for a quick approval . IN NNP , NNP NNP VBD DT NNP IN DT JJ NN . He said in a statement that he is deeply concerned by continued threats against U.N. personnel and by reports that more violent protests and attacks are being planned . PRP VBD IN DT NN IN PRP VBZ RB VBN IN JJ NNS IN NNP NNS CC IN NNS IN JJR JJ NNS CC NNS VBP VBG VBN . The U.N. evacuated hundreds of staffers from Ivory Coast last month after supporters of President Laurent Gbagbo assaulted U.N. compounds . DT NNP VBD NNS IN NNS IN NNP NNP JJ NN IN NNS IN NNP NNP NNP VBD NNP NNS . The U.N. currently has 7,000 peacekeepers in Ivory Coast , working with 4,000 French troops trying to uphold a shaky peace agreement . DT NNP RB VBZ CD NNS IN NNP NNP , VBG IN CD JJ NNS VBG TO VB DT JJ NN NN . The West African nation has been divided into a rebel-held north and government-controlled south since a 2002 civil war . DT JJ JJ NN VBZ VBN VBN IN DT JJ NN CC JJ NN IN DT CD JJ NN . U.S. Special Prosecutor Patrick Fitzgerald has met with a federal grand jury investigating the leak of a covert CIA operative 's identity . NNP NNP NNP NNP NNP VBZ VBN IN DT JJ JJ NN VBG DT NN IN DT JJ NNP NN POS NN . Lawyers in the case have said Mr. Fitzgerald may ask the jury to issue charges against President Bush 's chief advisor , Karl Rove , and Vice President Dick Cheney 's chief of staff , Lewis Libby . NNS IN DT NN VBP VBN NNP NNP MD VB DT NN TO NN NNS IN NNP NNP POS JJ NN , NNP NNP , CC NNP NNP NNP NNP POS NN IN NN , NNP NNP . Mr. Fitzgerald has been conducting a nearly two-year investigation into whether someone in the Bush administration blew the cover of a CIA operative ( Valerie Plame ) in 2003 . NNP NNP VBZ VBN VBG DT RB JJ NN IN IN DT IN DT NNP NN VBD DT NN IN DT NNP NN LRB NNP NNP RRB IN CD . It is a federal crime to knowingly reveal a covert agent 's identity . PRP VBZ DT JJ NN TO RB VB DT JJ NN POS NN . The grand jury is scheduled to expire Friday unless extended by a federal judge . DT JJ NN VBZ VBN TO VB NNP IN VBN IN DT JJ NN . The White House has generally refused to comment on the probe , although media reports indicate Bush administration officials are bracing for at least one indictment . DT NNP NNP VBZ RB VBN TO VB IN DT NN , IN NNS NNS VBP NNP NN NNS VBP VBG IN IN JJS CD NN . United Nations Secretary-General Kofi Annan will formally present Monday a report that calls for major reforms of the world body . NNP NNP NNP NNP NNP MD RB VB NNP DT NN WDT VBZ IN JJ NNS IN DT NN NN . Among changes Mr. Annan will call for during a speech to the General Assembly is expanding the Security Council from its current 15 members , which includes five permanent seats - the United States , Britain , France , China and Russia . IN NNS NNP NNP MD VB IN IN DT NN TO DT NNP NNP VBZ VBG DT NNP NNP IN PRP$ JJ CD NNS , WDT VBZ CD JJ NNS IN DT NNP NNPS , NNP , NNP , NNP CC NNP . If the Council expands , India , Brazil , Germany and Japan are among nations wanting to be added as permanent members . IN DT NNP NNS , NNP , NNP , NNP CC NNP VBP IN NNS VBG TO VB VBN IN JJ NNS . Another proposal is the creation of a smaller human rights panel to replace the current Commission on Human Rights . DT NN VBZ DT NN IN DT JJR JJ NNS NN TO VB DT JJ NNP IN NNP NNP . The commission has been criticized for allowing some accused human rights abusers to use their membership to protect each other from condemnation . DT NN VBZ VBN VBN IN VBG DT VBN JJ NNS NNS TO VB PRP$ NN TO VB DT NN IN NN . Calls for U.N. reform have increased in recent years , fueled in part by financial scandal in the Iraq oil-for-food program , and the U.S. decision to invade Iraq without Security Council approval . NNS IN NNP NN VBP VBN IN JJ NNS , VBD IN NN IN JJ NN IN DT NNP NN NN , CC DT NNP NN TO VB NNP IN NNP NNP NN . The U.N. nuclear agency says its investigation into an alleged secret nuclear reactor in Syria has made a ' good start ' after inspectors visited the site . DT NNP JJ NN VBZ PRP$ NN IN DT JJ JJ JJ NN IN NNP VBZ VBN DT `` JJ NN `` IN NNS VBD DT NN . Chief inspector Olli Heinonen said Wednesday that he and two colleagues achieved what they wanted from their first trip to Syria as part of the investigation . JJ NN NNP NNP VBD NNP IN PRP CC CD NNS VBD WP PRP VBD IN PRP$ JJ NN TO NNP IN NN IN DT NN . The International Atomic Energy Agency official was speaking on his return to Vienna after four days in Syria . DT NNP NNP NNP NNP NN VBD VBG IN PRP$ NN TO NNP IN CD NNS IN NNP . Heinonen said his team took samples at the Al Kibar complex in northeastern Syria that Washington says housed a covert nuclear reactor built with North Korean help . NNP VBD PRP$ NN VBD NNS IN DT NNP NNP NN IN JJ NNP IN NNP VBZ VBD DT JJ JJ NN VBN IN JJ JJ NN . Israeli warplanes destroyed the building last September . JJ NNS VBD DT NN JJ NNP . Heinonen said the agency still has work to do in analyzing samples from the site . NNP VBD DT NN RB VBZ NN TO VB IN VBG NNS IN DT NN . He did not say when U.N. inspectors may return to Syria . PRP VBD RB VB WRB NNP NNS MD VB TO NNP . Damascus denies U.S. intelligence allegations that it built a secret nuclear reactor and accuses Washington of fabricating evidence . NNP VBZ NNP NN NNS IN PRP VBD DT JJ JJ NN CC VBZ NNP IN VBG NN . Nepal 's new government has released more Maoist rebels detained under a scrapped anti-terror law . NNP POS JJ NN VBZ VBN RBR JJ NNS VBN IN DT VBN JJ NN . At least 182 rebels are now free . IN JJS CD NNS VBP RB JJ . The government of interim Prime Minister Girija Prasad Koirala announced Monday that it was dropping terrorism charges against hundreds of rebels . DT NN IN JJ NNP NNP NNP NNP NNP VBD NNP IN PRP VBD VBG NN NNS IN NNS IN NNS . They were imprisoned by the former royalist government of King Gyanendra . PRP VBD VBN IN DT JJ NN NN IN NNP NNP . Friends and relatives greeted the former prisoners Tuesday afternoon . NNS CC NNS VBD DT JJ NNS NNP NN . The rebels raised their fists in a Maoist salute and chanted Maoist slogans . DT NNS VBD PRP$ NNS IN DT NNP NN CC VBD NNP NNS . A Maoist rebel spokesman , Krishna Mahara , says the government has promised to free 350 rebels , although hundreds more will remain in jail . DT NNP NN NN , NNP NNP , VBZ DT NN VBZ VBN TO VB CD NNS , IN NNS RBR MD VB IN NN . The government decision to release the rebels came following talks on Sunday between Nepal 's home affairs minister , Krishna Prasad Sitaula , and Maoist leader Prachanda in a remote western village . DT NN NN TO VB DT NNS VBD VBG NNS IN NNP IN NNP POS NN NNS NN , NNP NNP NNP , CC NNP NN NNP IN DT JJ JJ NN . U.S. Democratic presidential hopeful Barack Obama has proposed a clampdown on energy speculation which he believes is responsible for record-high oil prices . NNP JJ JJ JJ NN NNP VBZ VBN DT NN IN NN NN WDT PRP VBZ VBZ JJ IN JJ NN NNS . Senator Obama Sunday announced the proposal , which would close a legal provision that exempts energy commodies from government oversight . NNP NNP NNP VBD DT NN , WDT MD VB DT JJ NN WDT VBZ NN NNS IN NN NN . Critics say the deregulation measure , signed in 2000 by then-President Bill Clinton , opened the way to uncontrolled speculation in the oil markets . NNS VBP DT NN NN , VBN IN CD IN JJ NNP NNP , VBD DT NN TO JJ NN IN DT NN NNS . The price of gasoline has become a campaign issue between Obama and presumptive Republican nominee John McCain . DT NN IN NN VBZ VBN DT NN NN IN NNP CC JJ JJ NN NNP NNP . Senator McCain wants Congress to lift a ban on offshore oil drilling , while Obama says such a measure would not help the problem in the short term . NNP NNP VBZ NNP TO VB DT NN IN JJ NN NN , IN NNP VBZ PDT DT NN MD RB VB DT NN IN DT JJ NN . Obama 's announcement concides with a major energy summit in Saudi Arabia on ways to rein in the high oil prices . NNP POS NN VBZ IN DT JJ NN NN IN NNP NNP IN NNS TO VB IN DT JJ NN NNS . The teenage boy at the center of the latest Michael Jackson scandal says the pop star sexually molested him twice in the singer 's bedroom . DT NN NN IN DT NN IN DT JJS NNP NNP NN VBZ DT NN NN RB VBD PRP RB IN DT NN POS NN . The accuser , who testified in a California court Thursday , was a 13-year old cancer patient at the time of the alleged incidents . DT NN , WP VBD IN DT NNP NN NNP , VBD DT JJ JJ NN NN IN DT NN IN DT JJ NNS . Mr. Jackson had invited him and his family for a visit in 2003 . NNP NNP VBD VBN PRP CC PRP$ NN IN DT NN IN CD . The teen also testified that the entertainer urged him to drink wine aboard his private jet and hard liquor at the singer 's ranch . DT NN RB VBD IN DT NN VBD PRP TO VB NN IN PRP$ JJ NN CC JJ NN IN DT NN POS NN . Mr. Jackson has denied all the charges against him . NNP NNP VBZ VBN PDT DT NNS IN PRP . Thursday 's testimony came after the judge threatened to jail Mr. Jackson and revoke his bail when he arrived more than one hour late for court . NNP POS NN VBD IN DT NN VBD TO VB NNP NNP CC VB PRP$ NN WRB PRP VBD JJR IN CD NN JJ IN NN . A Jackson spokesman said the star had been hospitalized for a serious back injury . DT NNP NN VBD DT NN VBD VBN VBN IN DT JJ NN NN . Pakistan has denied allegations by Moscow that militants have been training on Pakistani territory to carry out terrorist attacks in Russia and the former Soviet central Asian nations . NNP VBZ VBN NNS IN NNP IN NNS VBP VBN VBG IN JJ NN TO VB RP JJ NNS IN NNP CC DT JJ JJ JJ JJ NNS . Foreign ministry spokesman Jalil Abbas Jilani in Islamabad Saturday said there are no militant training facilities in Pakistan . JJ NN NN NNP NNP NNP IN NNP NNP VBD EX VBP DT JJ NN NNS IN NNP . He said the role and sacrifices made by Islamabad , a key U.S. ally in the war on terror , have been acknowledged by the international community . PRP VBD DT NN CC NNS VBN IN NNP , DT JJ NNP NN IN DT NN IN NN , VBP VBN VBN IN DT JJ NN . His comments come one day after Russian Foreign Minister Sergei Lavrov said Moscow had information that people are being trained in Afghanistan and Pakistan with the help of Taleban insurgents to carry out attacks inside Russia . PRP$ NNS VBP CD NN IN JJ NNP NNP NNP NNP VBD NNP VBD NN IN NNS VBP VBG VBN IN NNP CC NNP IN DT NN IN NNP NNS TO VB RP NNS IN NNP . He also alleged that militants have already crossed into the Fergana Valley of Uzbekistan , Kyrgyzstan and Tajikistan . PRP RB VBD IN NNS VBP RB VBN IN DT NNP NNP IN NNP , NNP CC NNP . Jordan says it will host a regional conference next week to discuss ways to help hundreds of thousands of Iraqi refugees who have fled their country 's violence . NNP VBZ PRP MD VB DT JJ NN JJ NN TO VB NNS TO VB NNS IN NNS IN JJ NNS WP VBP VBN PRP$ NN POS NN . The state-owned Petra news agency said Thursday Jordan has invited officials from Syria , Egypt , Iraq , the Arab League and the United Nations to attend the meeting in Amman on July 26 . DT JJ NNP NN NN VBD NNP NNP VBZ VBN NNS IN NNP , NNP , NNP , DT NNP NNP CC DT NNP NNPS TO VB DT NN IN NNP IN NNP CD . Petra says representatives of Iran , Turkey , Russia and Japan also will take part as observers . NNP VBZ NNS IN NNP , NNP , NNP CC NNP RB MD VB NN IN NNS . It says the delegates will discuss how to ease the burden of countries hosting large numbers of Iraqi refugees . PRP VBZ DT NNS MD VB WRB TO VB DT NN IN NNS VBG JJ NNS IN JJ NNS . The U.N. refugee agency says Jordan has about 7,50,000 Iraqi refugees , while 1.4 million Iraqis have fled to Syria in recent years . DT NNP NN NN VBZ NNP VBZ RB CD JJ NNS , IN CD CD NNS VBP VBN TO NNP IN JJ NNS . The agency has warned that Iraqi refugees in Syria and Jordan are putting severe strains on healthcare , education systems and housing . DT NN VBZ VBN IN JJ NNS IN NNP CC NNP VBP VBG JJ NNS IN NN , NN NNS CC NN . Greek journalists and public transportation workers are stopping work in the latest round of strikes protesting Greece 's economic austerity measures . JJ NNS CC JJ NN NNS VBP VBG NN IN DT JJS NN IN NNS VBG NNP POS JJ NN NNS . Bus , subway , and tram services ceased in Greece 's capital Athens Thursday , while Greek journalists stopped radio and television broadcasts . NN , NN , CC NN NNS VBN IN NNP POS NN NNP NNP , IN JJ NNS VBD NN CC NN NNS . Greek newspapers planned not to print Friday . JJ NNS VBD RB TO NN NNP . Greece has seen several rounds of labor strikes since the government earlier this year began to raise taxes , freeze civil service pay , and cut pensions in efforts to decrease the country 's massive debt . NNP VBZ VBN JJ NNS IN NN NNS IN DT NN RBR DT NN VBD TO VB NNS , NN JJ NN NN , CC VBD NNS IN NNS TO VB DT NN POS JJ NN . Greece agreed to take those steps in return for a massive emergency loan from the European Union and International Monetary Fund . NNP VBD TO VB DT NNS IN NN IN DT JJ NN NN IN DT NNP NNP CC NNP NNP NNP . South Korea 's ambassador to China is being quoted saying the two countries could open talks on a free trade agreement next year . NNP NNP POS NN TO NNP VBZ VBG VBN VBG DT CD NNS MD VB NNS IN DT JJ NN NN JJ NN . The report in the state-run China Daily quotes Ambassador Yu Woo-ik as saying the sides ' are expected to initiate official FTA talks in 2011 . ' DT NN IN DT JJ NNP NNP VBZ NNP NNP NNP IN VBG DT NNS `` VBP VBN TO VB JJ NNP NNS IN CD . `` China is Asia 's largest economy and South Korea is fourth-largest on the continent . NNP VBZ NNP POS JJS NN CC NNP NNP VBZ JJ IN DT NN . South Korea sends almost one-quarter of its exports to China , but faces growing competition from Taiwan , which just completed a trade agreement with China . NNP NNP VBZ RB NN IN PRP$ NNS TO NNP , CC VBZ VBG NN IN NNP , WDT RB VBD DT NN NN IN NNP . South Korea has been pursuing other trade deals to prop up its export-driven economy . NNP NNP VBZ VBN VBG JJ NN NNS TO VB RP PRP$ JJ NN . An agreement signed last year with the European Union is pending , but a deal with the United States has been stalled in Congress since 2007 because of concerns from the American beef and auto industries . DT NN VBN JJ NN IN DT NNP NNP VBZ VBG , CC DT NN IN DT NNP NNPS VBZ VBN VBN IN NNP IN CD IN IN NNS IN DT JJ NN CC NN NNS . News outlets in the United States are reporting that Christopher Hill , the lead American negotiator on North Korea , is expected to be nominated as the next U.S. ambassador to Iraq . NNP NNS IN DT NNP NNPS VBP VBG IN NNP NNP , DT JJ JJ NN IN NNP NNP , VBZ VBN TO VB VBN IN DT JJ NNP NN TO NNP . There has been no official confirmation of the reports Monday on CBS , ABC , the Associated Press and Reuters , which quote unnamed officials who say Hill is expected to be the nominee . EX VBZ VBN DT JJ NN IN DT NNS NNP IN NNP , NNP , DT NNP NNP CC NNP , WDT VBP JJ NNS WP VBP NNP VBZ VBN TO VB DT NN . Hill is currently the Assistant Secretary of State for East Asian and Pacific Affairs . NNP VBZ RB DT NNP NNP IN NNP IN NNP NNP CC NNP NNP . Hill has previously served as ambassador to South Korea , Poland and Macedonia . NNP VBZ RB VBN IN NN TO NNP NNP , NNP CC NNP . He was also special envoy to Kosovo . PRP VBD RB JJ NN TO NNP . Before he started his career in the foreign service , Hill served as a Peace Corps volunteer in Cameroon . IN PRP VBD PRP$ NN IN DT JJ NN , NNP VBD IN DT NNP NNP NN IN NNP . If nominated and confirmed by the U.S. Senate , Hill would replace another career diplomat , Ryan Crocker , as Washington 's top diplomat in Iraq . IN VBN CC VBN IN DT NNP NNP , NNP MD VB DT NN NN , NNP NNP , IN NNP POS JJ NN IN NNP . Israeli police say a car bomb in central Tel Aviv has killed the suspected leader of one of the country 's top crime families . JJ NNS VBP DT NN NN IN JJ NNP NNP VBZ VBN DT JJ NN IN CD IN DT NN POS JJ NN NNS . Officials say they believe a rival crime family targeted Ya'akov Alperon Monday , in the attack . NNS VBP PRP VBP DT JJ NN NN VBD NNP NNP NNP , IN DT NN . The blast also slightly wounded two bystanders , including a 13-year-old boy . DT NN RB RB VBD CD NNS , VBG DT JJ NN . Media reports say Alperon was returning from a court hearing for his son , Dror , who is facing extortion charges . NNS NNS VBP NNP VBD VBG IN DT NN NN IN PRP$ NN , NNP , WP VBZ VBG NN NNS . Witnesses say they heard a huge explosion , and some thought it was a terrorist attack . NNS VBP PRP VBD DT JJ NN , CC DT VBD PRP VBD DT JJ NN . In June , another car bomb in Tel Aviv killed one of Israel 's top criminal lawyers , in what police said was a criminal , not a terrorist , act . IN NNP , DT NN NN IN NNP NNP VBD CD IN NNP POS JJ JJ NNS , IN WP NN VBD VBD DT JJ , RB DT JJ , NN . The lawyer , Yoram Haham , had represented several notorious mobsters during his career as a criminal lawyer . DT NN , NNP NNP , VBD VBN JJ JJ NNS IN PRP$ NN IN DT JJ NN . U.S. President George Bush has issued a proclamation putting into effect a free trade agreement with Peru . NNP NNP NNP NNP VBZ VBN DT NN VBG IN NN DT JJ NN NN IN NNP . U.S. Trade Representative Susan Schwab said Friday the proclamation marks an important milestone in the relationship between the U.S. and Peru . NNP NNP NNP NNP NNP VBD NNP DT NN VBZ DT JJ NN IN DT NN IN DT NNP CC NNP . The agreement gives Peru permanent , duty-free access to the U.S. DT NN VBZ NNP JJ , JJ NN TO DT NNP In return , Peru will eliminate duties on most U.S. industrial and consumer products . IN NN , NNP MD VB NNS IN JJS NNP JJ CC NN NNS . The pact was initially approved after discussions between President Bush and Peruvian President Alan Garcia , but Democrats in Congress forced U.S. officials to reopen negotiations and add stronger labor and environmental provisions . DT NN VBD RB VBN IN NNS IN NNP NNP CC JJ NNP NNP NNP , CC NNPS IN NNP VBD NNP NNS TO VB NNS CC VB JJR NN CC JJ NNS . Peru 's Congress this week passed modifications to earlier legislation to conform with the trade pact . NNP POS NNP DT NN VBD NNS TO JJR NN TO VB IN DT NN NN . The agreement will take effect on the first of February . DT NN MD VB NN IN DT NN IN NNP . Burma has confirmed additional outbreaks of the H5N1 strain of bird flu virus among poultry in the suburbs of Rangoon . NNP VBZ VBN JJ NNS IN DT NNP NN IN NN NN NN IN NN IN DT NNS IN NNP . The latest outbreaks were discovered in Hlinethaya , a western suburb of Rangoon . DT JJS NNS VBD VBN IN NNP , DT JJ NN IN NNP . Earlier this week Burmese authorities confirmed a new outbreak of the H5N1 virus on poultry farms , also in Rangoon 's western suburbs . RBR DT NN JJ NNS VBD DT JJ NN IN DT NNP NN IN NN NNS , RB IN NNP POS JJ NNS . No human cases have been announced in the country . DT JJ NNS VBP VBN VBN IN DT NN . More than 160 people have died from bird flu since late 2003 . JJR IN CD NNS VBP VBN IN NN NN IN JJ CD . Most of the victims came in contact with infected poultry . DT IN DT NNS VBD IN NN IN JJ NN . Experts fear the virus could mutate into a form that is easily transmissible by human-to-human contact . NNS VBP DT NN MD VB IN DT NN WDT VBZ RB JJ IN JJ NN . The mayor of Los Angeles , Antonio Villaraigosa , says authorities know of no credible threats to the western U.S. city , following a warning from a suspected al-Qaida member . DT NN IN NNP NNP , NNP NNP , VBZ NNS VBP IN DT JJ NNS TO DT JJ NNP NN , VBG DT NN IN DT JJ NNP NN . The warning came in a videotaped statement aired by the U.S. television network ABC on Sunday . DT NN VBD IN DT VBN NN VBN IN DT NNP NN NN NNP IN NNP . A masked man on the tape says ' Allah willing , ' Los Angeles and the Australian city of Melbourne will be attacked . DT VBN NN IN DT NN VBZ `` NNP JJ , `` NNP NNP CC DT JJ NN IN NNP MD VB VBN . ABC says the tape was delivered to its office in Pakistan on Saturday . NNP VBZ DT NN VBD VBN TO PRP$ NN IN NNP IN NNP . It says the speaker is probably Adam Gadahn , a U.S. citizen wanted for questioning by the FBI for possible terrorist activity . PRP VBZ DT NN VBZ RB NNP NNP , DT NNP NN VBN IN VBG IN DT NNP IN JJ JJ NN . Officials in both Los Angeles and Melbourne say the tape was meant to instill fear , and have advised residents to go about their normal lives . NNS IN DT NNP NNP CC NNP VBP DT NN VBD VBN TO VB NN , CC VBP VBN NNS TO VB IN PRP$ JJ NNS . U.S. intelligence officials have refused to comment on whether the taped warning is authentic . NNP NN NNS VBP VBN TO VB IN IN DT VBN NN VBZ JJ . The U.S. military says it has uncovered a large stockpile of weapons inside a Fallujah mosque led by a key insurgent leader . DT NNP NN VBZ PRP VBZ VBN DT JJ NN IN NNS IN DT NNP NN VBN IN DT JJ JJ NN . The military did not specify the number of weapons found , but called it the ' largest weapons cache to date in the city ' - a one-time rebel bastion . DT JJ VBD RB VB DT NN IN NNS VBN , CC VBD PRP DT `` JJS NNS NN TO NN IN DT NN `` : DT JJ NN NN . U.S. and Iraqi government forces are continuing to sweep Fallujah after an assault on the city earlier this month . NNP CC JJ NN NNS VBP VBG TO NN NNP IN DT NN IN DT NN RBR DT NN . In southern Iraqi city of Basra , police said they arrested five Arab foreigners suspected of planning attacks . IN JJ JJ NN IN NNP , NN VBD PRP VBN CD JJ NNS VBN IN NN NNS . A senior police official said the two Saudi nationals , two Tunisians and one Libyan , who were arrested late Wednesday , had escaped from Fallujah four days ago . DT JJ NN NN VBD DT CD NNP NNS , CD NNPS CC CD JJ , WP VBD VBN JJ NNP , VBD VBN IN NNP CD NNS RB . European Union officials say transportation and other logistical problems are holding up some of the massive amounts of humanitarian aid European countries have offered to victims of Hurricane Katrina . NNP NNP NNS VBP NN CC JJ JJ NNS VBP VBG RP DT IN DT JJ NNS IN JJ NN JJ NNS VBP VBN TO NNS IN NNP NNP . In Brussels Tuesday , a spokeswoman for the European Commission said a Swedish plane loaded with food and water treatment tools was ready to take off , but had not received approval from Washington to enter U.S. airspace . IN NNP NNP , DT NN IN DT NNP NNP VBD DT JJ NN VBN IN NN CC NN NN NNS VBD JJ TO VB RP , CC VBD RB VBN NN IN NNP TO VB NNP NN . She said EU authorities have suggested to the Bush administration that aid could flow more easily if it was placed aboard military planes at U.S. air bases in Europe . PRP VBD NNP NNS VBP VBN TO DT NNP NN IN NN MD VB JJR RB IN PRP VBD VBN IN JJ NNS IN NNP NN NNS IN NNP . More than 20 countries have offered emergency aid teams , tents , meals , water and aircraft to help in the massive relief effort . JJR IN CD NNS VBP VBN NN NN NNS , NNS , NNS , NN CC NN TO VB IN DT JJ NN NN . Meanwhile , U.S. officials say all aid flights from abroad will be directed to an Air Force base in Arkansas , before being sent to the devastated U.S. Gulf Coast . RB , NNP NNS VBP DT NN NNS IN RB MD VB VBN TO DT NNP NNP NN IN NNP , IN VBG VBN TO DT JJ NNP NNP NNP . The United Nations nuclear agency says it has no information to support a recent media report of an undeclared nuclear facility in Syria . DT NNP NNP JJ NN VBZ PRP VBZ DT NN TO VB DT JJ NNS NN IN DT JJ JJ NN IN NNP . A spokeswoman , Melissa Fleming , for the International Atomic Energy Agency says her agency would investigate any relevant information on the subject . DT NN , NNP NNP , IN DT NNP NNP NNP NNP VBZ PRP$ NN MD VB DT JJ NN IN DT NN . She said the IAEA expects any country with information about nuclear-related activity of another country to provide that information to the IAEA . PRP VBD DT NNP VBZ DT NN IN NN IN JJ NN IN DT NN TO VB DT NN TO DT NNP . The New York Times newspaper reported Sunday that an Israeli air strike on Syria last month targeted a partially built nuclear reactor . DT NNP NNP NNP NN VBD NNP IN DT JJ NN NN IN NNP JJ NN VBD DT RB VBN JJ NN . The article , which cited unidentified U.S. and foreign officials , said the nuclear reactor was modeled on one North Korea used for stockpiling nuclear fuel . DT NN , WDT VBD JJ NNP CC JJ NNS , VBD DT JJ NN VBD VBN IN CD NNP NNP VBD IN VBG JJ NN . U.S. officials said the site was identified by satellite photographs earlier this year . NNP NNS VBD DT NN VBD VBN IN NN NNS RBR DT NN . The IAEA says it is in contact with Syrian authorities to verify the authenticity of the report . DT NNP VBZ PRP VBZ IN NN IN JJ NNS TO VB DT NN IN DT NN . The United Nations envoy to the Middle East has urged Israel to accept a new Syrian proposal to renew peace talks . DT NNP NNPS NN TO DT NNP NNP VBZ VBN NNP TO VB DT JJ JJ NN TO VB NN NNS . Terje Roed-Larsen made the appeal in a meeting with the Israeli parliament 's Defense and Foreign Affairs Committee Tuesday . NNP NNP VBD DT NN IN DT NN IN DT JJ NN POS NN CC NNP NNP NNP NNP . Mr. Roed-Larsen , who visited Damascus last week , said he feels Syria has stretched out , what he called , a genuine hand of peace and Israel should grab the opportunity . NNP NNP , WP VBD NNP JJ NN , VBD PRP VBZ NNP VBZ VBN RP , WP PRP VBD , DT JJ NN IN NN CC NNP MD VB DT NN . Israel leaders have dismissed as insincere Syrian President Bashar al-Assad 's offer to resume peace talks without any preconditions . NNP NNS VBP VBN IN JJ JJ NNP NNP NNP POS NN TO VB NN NNS IN DT NNS . They accuse Syria of harboring groups that want to destroy the Jewish state . PRP VBP NNP IN VBG NNS WDT VBP TO VB DT JJ NN . Syria and Israel last held peace talks in January 2000 . NNP CC NNP JJ JJ NN NNS IN NNP CD . Colombian authorities say they have captured a wanted drug lord who allegedly led a major ring with his twin brother , who was killed by police earlier this week . JJ NNS VBP PRP VBP VBN DT JJ NN NN WP RB VBD DT JJ NN IN PRP$ NN NN , WP VBD VBN IN NNS RBR DT NN . Authorities say Miguel Angel Mejia was captured early Friday in the Tolima region , about 100 kilometers west of Bogota . NNS VBP NNP NNP NNP VBD VBN RB NNP IN DT NNP NN , IN CD NNS JJS IN NNP . The brother , Victor Manuel Mejia , was killed Tuesday at a farmhouse in the northern state of Antioquia , along with two of his associates . DT NN , NNP NNP NNP , VBD VBN NNP IN DT NN IN DT JJ NN IN NNP , IN IN CD IN PRP$ NNS . The United States had offered a $ 5 million reward for information leading to the arrest and conviction of each of the brothers . DT NNP NNPS VBD VBN DT $ CD CD NN IN NN VBG TO DT NN CC NN IN DT IN DT NNS . The two allegedly ran illegal drugs into the United States via Mexico . DT CD RB VBD JJ NNS IN DT NNP NNPS IN NNP . Authorities say the brothers were also members of a right-wing paramilitary group that demobilized in recent years as part of a peace deal with the government . NNS VBP DT NNS VBD RB NNS IN DT JJ JJ NN WDT VBD IN JJ NNS IN NN IN DT NN NN IN DT NN . But the twins went on the run instead of turning themselves in as part of the deal . CC DT NNS VBD IN DT NN RB IN VBG PRP IN IN NN IN DT NN . The family of Brad Delp says his death was a suicide . DT NN IN NNP NNP VBZ PRP$ NN VBD DT NN . The 55-year-old Delp , who sang in the multi-million-selling rock band Boston , was found March 9 by his fiancee at his home in the northeastern state of New Hampshire . DT JJ NNP , WP VBD IN DT JJ NN NN NNP , VBD VBN NNP CD IN PRP$ NN IN PRP$ NN IN DT JJ NN IN NNP NNP . Toxicology tests by the state medical examiner 's office confirmed he committed suicide by sealing himself inside a bathroom with two charcoal grills . NN NNS IN DT NN JJ NN POS NN VBD PRP VBD NN IN VBG PRP IN DT NN IN CD JJ NNS . He died from carbon monoxide poisoning . PRP VBD IN NN NN NN . Delp left two notes taped to a door , along with letters to his family and his fiancee , Pamela Sullivan . NNP VBD CD NNS VBN TO DT NN , IN IN NNS TO PRP$ NN CC PRP$ NN , NNP NNP . A police representative says the contents of the letters are not known . DT NN NN VBZ DT NNS IN DT NNS VBP RB VBN . Brad Delp 's family is reportedly planning a public memorial . NNP NNP POS NN VBZ RB VBG DT JJ NN . John Garang NNP NNP South Sudan 's leader John Garang says his former rebel group is ready to deploy up to 12,000 troops in war-torn west Sudan 's Darfur region to help displaced people return to their villages . NNP NNP POS NN NNP NNP VBZ PRP$ JJ NN NN VBZ JJ TO VB RP TO CD NNS IN JJ NN NNP POS NNP NN TO VB VBN NNS VB TO PRP$ NNS . In an interview with VOA in Washington Wednesday , Mr. Garang said his Sudan People Liberation Army ( SPLA ) would be deployed alongside African Union troops . IN DT NN IN NNP IN NNP NNP , NNP NNP VBD PRP$ NNP NNS NNP NNP LRB NNP RRB MD VB VBN IN NNP NNP NNS . The two-and-half year conflict in Darfur between mainly local rebels and pro-government militias has killed 1,80,000 people and displaced about two million others . DT JJ NN NN IN NNP IN RB JJ NNS CC JJ NNS VBZ VBN CD NNS CC VBD IN CD CD NNS . Mr. Garang 's rebel group and the Sudanese government in Khartoum signed a peace accord in January ending more than 20 years of civil war . NNP NNP POS NN NN CC DT JJ NN IN NNP VBD DT NN NN IN NNP VBG JJR IN CD NNS IN JJ NN . Under the accord Mr. Garang becomes first vice president of Sudan 's national government . IN DT NN NNP NNP VBZ JJ NN NN IN NNP POS JJ NN . Isolated grass fires continue to burn in the southern U.S. states of Oklahoma and Texas , but they have weakened since killing one elderly woman and scorching dozens of homes on Tuesday . VBN NN NNS VBP TO VB IN DT JJ NNP NNS IN NNP CC NNP , CC PRP VBP VBN IN VBG CD JJ NN CC VBG NNS IN NNS IN NNP . Officials said decreased winds and slightly cooler temperatures have helped firefighters contain the blazes . NNS VBD JJ NNS CC RB JJR NNS VBP VBN NNS VBP DT NNS . But there are worries that continuing drought conditions could lead to new fires . CC EX VBP NNS IN VBG NN NNS MD VB TO JJ NNS . The initial fires are being blamed on children playing with fireworks or people being careless with discarded cigarettes . DT JJ NNS VBP VBG VBN IN NNS VBG IN NNS CC NNS VBG JJ IN VBN NNS . On Tuesday , Texas governor Rick Perry dispatched National Guard troops to help battle the blazes and declared the fires a disaster . IN NNP , NNP NN NNP NNP VBD NNP NNP NNS TO VB VB DT NNS CC VBD DT NNS DT NN . U.S. Vice President Dick Cheney has left Singapore after his plane underwent repairs for a minor mechanical problem . NNP NNP NNP NNP NNP VBZ VBN NNP IN PRP$ NN VBD NNS IN DT JJ JJ NN . U.S. officials say Cheney 's plane made a scheduled stop Sunday at Singapore 's Paya Lebar Air Base to refuel . NNP NNS VBP NNP POS NN VBD DT JJ NN NNP IN NNP POS NNP NNP NNP NNP TO VB . While there , the plane underwent repairs for a minor electrical problem . IN RB , DT NN VBD NNS IN DT JJ JJ NN . Officials did not describe the problem but said it was not a safety concern and had not affected flight plans . NNS VBD RB VB DT NN CC VBD PRP VBD RB DT NN NN CC VBD RB VBN NN NNS . Earlier , Australian Prime Minister John Howard had said Cheney 's plane was diverted to Singapore because of unspecified problems . RB , JJ NNP NNP NNP NNP VBD VBN NNP POS NN VBD VBN TO NNP IN IN JJ NNS . Cheney traveled to Singapore from Australia , where he held talks with Mr. Howard and opposition leader Kevin Rudd . NNP VBD TO NNP IN NNP , WRB PRP VBD NNS IN NNP NNP CC NN NN NNP NNP . Earlier in the week , Cheney visited Japan and the U.S. Pacific island of Guam to discuss regional security issues , and rally support for the Iraq war . RBR IN DT NN , NNP VBD NNP CC DT NNP NNP NN IN NNP TO VB JJ NN NNS , CC VB NN IN DT NNP NN . French authorities have announced April 22 , 2007 , as the date for the first round of the country 's presidential election , with a run-off if needed on May 6 . JJ NNS VBP VBN NNP CD , CD , IN DT NN IN DT JJ NN IN DT NN POS JJ NN , IN DT NN IN VBN IN NNP CD . Officials say voting for a new National Assembly , the lower house of parliament , will be held June 10 and June 17 . NNS VBP NN IN DT JJ NNP NNP , DT JJR NN IN NN , MD VB VBN NNP CD CC NNP CD . Interior Minister Nicolas Sarkozy is expected to be the presidential candidate of the ruling Union for a Popular Movement . NNP NNP NNP NNP VBZ VBN TO VB DT JJ NN IN DT NN NNP IN DT NNP NN . The front-runner for the Socialist nomination is Segolene Royal , head of the Poitou-Charentes region in western France . DT NN IN DT JJ NN VBZ NNP NNP , NN IN DT NNP NN IN JJ NNP . The term of incumbent President Jacques Chirac expires in May . DT NN IN JJ NNP NNP NNP VBZ IN NNP . The French leader , who has been in office since 1995 , has not announced whether he plans to seek re-election . DT JJ NN , WP VBZ VBN IN NN IN CD , VBZ RB VBN IN PRP VBZ TO VB NN . But most analysts do not believe he will seek another term . CC JJS NNS VBP RB VB PRP MD VB DT NN . Burmese officials have defended the recent 800 percent increase in fuel prices , saying the hike is a reasonable move to keep pace with world oil prices . JJ NNS VBP VBN DT JJ CD NN NN IN NN NNS , VBG DT NN VBZ DT JJ NN TO VB NN IN NN NN NNS . The overnight increase last week raised prices for gasoline from less than four cents per liter to more than 30 cents per liter . DT JJ NN JJ NN VBD NNS IN NN IN JJR IN CD NNS IN NN TO JJR IN CD NNS IN NN . The rate is still much lower than many other countries , but is relatively expensive for Burmese consumers . DT NN VBZ RB RB JJR IN JJ JJ NNS , CC VBZ RB JJ IN JJ NNS . Burma 's information minister Brigadier General Kyaw Hsann said the government has been subsidizing gasoline at a loss for years . NNP POS NN NN NNP NNP NNP NNP VBD DT NN VBZ VBN VBG NN IN DT NN IN NNS . Reports indicate prices on everyday goods have jumped following the gas price hike . NNS VBP NNS IN JJ NNS VBP VBN VBG DT NN NN NN . The information minister denied the rise was linked to fuel prices , blaming the increase on what he called greedy business people . DT NN NN VBD DT NN VBD VBN TO NN NNS , VBG DT NN IN WP PRP VBD JJ NN NNS . The largest U.S. supplier of parts for the automotive industry has filed for bankruptcy protection . DT JJS NNP NN IN NNS IN DT JJ NN VBZ VBN IN NN NN . Delphi Corporation filed a motion with the federal bankruptcy court in New York Saturday to reorganize its U.S. operations . NNP NNP VBD DT NN IN DT JJ NN NN IN NNP NNP NNP TO VB PRP$ NNP NNS . Delphi , which split off from its former parent , General Motors , six years ago , recently failed to win financial concessions from unions . NNP , WDT VBD RP IN PRP$ JJ NN , NNP NNPS , CD NNS RB , RB VBD TO VB JJ NNS IN NNS . The company 's chairman and chief executive officer , Robert Miller , told the Associated Press he hopes Delphi can emerge from bankruptcy protection within two years . DT NN POS NN CC JJ NN NN , NNP NNP , VBD DT NNP NNP PRP VBZ NNP MD VB IN NN NN IN CD NNS . He said the firm will continue to negotiate with General Motors and its unions to lower labor costs . PRP VBD DT NN MD VB TO VB IN NNP NNPS CC PRP$ NNS TO JJR NN NNS . Delphi lost nearly $ 5 billion in 2004 and $ 750 million in the first half of this year . NNP VBD RB $ CD CD IN CD CC $ CD CD IN DT JJ NN IN DT NN . It has a reported debt load of $ 6 billion . PRP VBZ DT VBN NN NN IN $ CD CD . Former U.S. President Bill Clinton has checked into a New~York hospital in preparation for more surgery Thursday , this time to remove fluid and scar tissue from his left chest cavity . JJ NNP NNP NNP NNP VBZ VBN IN DT NNP NN IN NN IN JJR NN NNP , DT NN TO VB NN CC NN NN IN PRP$ NN NN NN . Mr. Clinton said Wednesday he is not worried about his condition , a complication that doctors have described as uncommon but not high risk . NNP NNP VBD NNP PRP VBZ RB VBN IN PRP$ NN , DT NN IN NNS VBP VBN IN JJ CC RB JJ NN . Surgeons will drain fluid that has accumulated around the former president 's left lung after his quadruple heart bypass operation last September . NNS MD VB NN WDT VBZ VBN IN DT JJ NN POS NN NN IN PRP$ NN NN NN NN JJ NNP . He is expected to be in the hospital for three to 10 days , but doctors say they expect a full recovery . PRP VBZ VBN TO VB IN DT NN IN CD CC CD NNS , CC NNS VBP PRP VBP DT JJ NN . The 58-year-old Mr. Clinton spent the day before his surgery playing in a charity golf tournament for tsunami relief in the southeastern state of Florida . DT JJ NNP NNP VBD DT NN IN PRP$ NN NN IN DT NN NN NN IN NN NN IN DT JJ NN IN NNP . He has told reporters he feels fine despite the condition , which causes some shortness of breath . PRP VBZ VBN NNS PRP VBZ RB IN DT NN , WDT VBZ DT NN IN NN . Kuwait has found the deadly H5N1 variety of avian flu in one of two infected birds culled by authorities . NNP VBZ VBN DT JJ NNP NN IN JJ NN IN CD IN CD JJ NNS VBN IN NNS . The strain was found in a migrating flamingo , while a second , imported bird had the milder H5N2 variant . DT NN VBD VBN IN DT NN NN , IN DT NN , VBN NN VBD DT JJR NNP NN . Later Friday , Thai officials said a one-year-old boy in Bangkok has been diagnosed with the virulent H5N1 strain , but is expected to fully recover . RB NNP , JJ NNS VBD DT JJ NN IN NNP VBZ VBN VBN IN DT JJ NNP NN , CC VBZ VBN TO RB VB . Meanwhile , Vietnam says it will set up a medical facility for Cambodian bird flu patients near the border between the two countries in an effort to contain the spread of the virus . RB , NNP VBZ PRP MD VB RP DT JJ NN IN JJ NN NN NNS IN DT NN IN DT CD NNS IN DT NN TO VB DT NN IN DT NN . Health officials said the small ward will mean Cambodian patients do not have to travel more deeply into Vietnam for treatment . NNP NNS VBD DT JJ NN MD VB JJ NNS VBP RB VB TO VB RBR RB IN NNP IN NN . And on Thursday , China reported another outbreak of bird flu in a flock of chickens in northeastern Liaoning province , the country 's seventh outbreak in a month . CC IN NNP , NNP VBD DT NN IN NN NN IN DT NN IN NNS IN JJ NN NN , DT NN POS JJ NN IN DT NN . The sentencing phase begins Tuesday for Army Private Lynndie England , who was convicted of abusing detainees at Iraq 's Abu Ghraib prison . DT NN NN VBZ NNP IN NNP NNP NNP NNP , WP VBD VBN IN VBG NNS IN NNP POS NNP NNP NN . On Monday , a military jury in Fort Hood , Texas , found her guilty of maltreating detainees , committing an indecent act , and conspiracy . IN NNP , DT JJ NN IN NNP NNP , NNP , VBD PRP NN IN VBG NNS , VBG DT JJ NN , CC NN . She faces up to 10 years in prison . PRP VBZ RP TO CD NNS IN NN . England became a central figure in the scandal after photographs emerged of her humiliating prisoners . NNP VBD DT JJ NN IN DT NN IN NNS VBD IN PRP$ JJ NNS . She is seen grinning , and in one picture , holding a leash around the neck of a naked prisoner . PRP VBZ VBN VBG , CC IN CD NN , VBG DT NN IN DT NN IN DT JJ NN . Her lawyers argued she is overly compliant and was easily controlled by the accused ringleader of the abuse , then-Specialist Charles Graner , who is now serving a 10-year prison sentence . PRP$ NNS VBD PRP VBZ RB JJ CC VBD RB VBN IN DT VBN NN IN DT NN , JJ NNP NNP , WP VBZ RB VBG DT JJ NN NN . Early this year , England pleaded guilty to abuse charges as part of a plea bargain , but a judge later canceled the deal and ordered the case to trial . RB DT NN , NNP VBD JJ TO VB NNS IN NN IN DT NN NN , CC DT NN RB VBD DT NN CC VBD DT NN TO NN . Nepal 's main political parties say they are ready to hold talks with Maoists on forming a broad front against King Gyanendra , provided the rebels stop killing civilians . NNP POS JJ JJ NNS VBP PRP VBP JJ TO VB NNS IN NNS IN VBG DT JJ NN IN NNP NNP , VBD DT NNS VBP VBG NNS . A member of the main Nepali Congress party told reporters the parties will set up a team for talks with the rebels . DT NN IN DT JJ NNP NNP NN VBD NNS DT NNS MD VB RP DT NN IN NNS IN DT NNS . But , he said , no date has been fixed . CC , PRP VBD , DT NN VBZ VBN VBN . He said human rights groups and activists would be asked to monitor whether the rebels had ended their attacks on civilians before any dialogue is held . PRP VBD JJ NNS NNS CC NNS MD VB VBN TO VB IN DT NNS VBD VBN PRP$ NNS IN NNS IN DT NN VBZ VBN . The decision by the seven parties came after Maoist leader Prachanda last month agreed to key conditions set by them . DT NN IN DT CD NNS VBD IN NNP NN NNP JJ NN VBD TO JJ NNS VBN IN PRP . Prachanda promised that the rebels would stop extortion and also targeting unarmed civilians . NNP VBD IN DT NNS MD VB NN CC RB VBG JJ NNS . There has been no reaction by the royalist government , which describes the rebels as terrorists . EX VBZ VBN DT NN IN DT NN NN , WDT VBZ DT NNS IN NNS . Mexican authorities have discovered the decapitated bodies of 12 men , including some believed to be soldiers , in the southern state of Guerrero . JJ NNS VBP VBN DT JJ NNS IN CD NNS , VBG DT VBN TO VB NNS , IN DT JJ NN IN NNP . Earlier media reported there were nine bodies found in and around the state capital , Chilpancingo . RBR NNS VBD EX VBD CD NNS VBN IN CC IN DT NN NN , NNP . Authorities said the heads of the men were found in plastic bags in a separate , nearby location . NNS VBD DT NNS IN DT NNS VBD VBN IN NN NNS IN DT JJ , JJ NN . Authorities found a sign near some of the bodies that read : ' For every one of mine that you kill , I will kill 10 . ' NNS VBD DT NN IN DT IN DT NNS WDT VBP : `` IN DT CD IN NN IN PRP VBP , PRP MD VB CD . `` Mexico is caught in a rising wave of violence as drug cartels battle for territory and fight a nationwide crackdown led by President Felipe Calderon , who has deployed tens of thousands of troops and federal police across Mexico to try to stop the violence . NNP VBZ VBN IN DT VBG NN IN NN IN NN NNS NN IN NN CC VB DT JJ NN VBN IN NNP NNP NNP , WP VBZ VBN NNS IN NNS IN NNS CC JJ NNS IN NNP TO VB TO VB DT NN . Police say the cartels are battling for control of smuggling routes into the United States . NNS VBP DT NNS VBP VBG IN NN IN VBG NNS IN DT NNP NNPS . There have been nearly 5400 drug-related homicides across Mexico this year . EX VBP VBN RB CD JJ NNS IN NNP DT NN . The U.S. military says a soldier is being held in Iraq for allegedly killing two other American servicemen during an argument . DT NNP NN VBZ DT NN VBZ VBG VBN IN NNP IN RB VBG CD JJ JJ NNS IN DT NN . A military statement released Tuesday says Specialist Neftaly Platero was detained after the killing of two soldiers in Fallujah , Iraq , last Thursday . DT JJ NN VBN NNP VBZ NNP NNP NNP VBD VBN IN DT NN IN CD NNS IN NNP , NNP , JJ NNP . Colonel Barry Johnson says a ' verbal altercation ' broke out among four soldiers . NNP NNP NNP VBZ DT `` JJ NN `` VBD RP IN CD NNS . The military spokesman says Platero allegedly took out his weapon and began shooting at the other soldiers . DT JJ NN VBZ NNP RB VBD RP PRP$ NN CC VBD VBG IN DT JJ NNS . A third soldier was wounded in the incident . DT JJ NN VBD VBN IN DT NN . The United Nations Food and Agriculture Organization says 36 countries are currently dependent on external food aid , and says civil strife and bad weather are primarily to blame . DT NNP NNPS NNP CC NNP NNP VBZ CD NNS VBP RB JJ IN JJ NN NN , CC VBZ JJ NN CC JJ NN VBP RB TO VB . The organization says the majority of dependent countries continue to be in Africa , where 23 states rely on food assistance from abroad . DT NN VBZ DT NN IN JJ NNS VBP TO VB IN NNP , WRB CD NNS VBP IN NN NN IN RB . In its report , the U.N. agency warns that conflict and drought in the troubled Sudanese region of Darfur will most likely lead to a below-average harvest . IN PRP$ NN , DT NNP NN VBZ IN NN CC NN IN DT JJ JJ NN IN NNP MD RBS JJ VB TO DT JJ NN . The organization warned of diminishing crops in Eritrea and Kenya , and says below-normal rainfall in southern Africa could adversely affect Zimbabwe , Lesotho , and Swaziland DT NN VBD IN VBG NNS IN NNP CC NNP , CC VBZ JJ NN IN JJ NNP MD RB VB NNP , NNP , CC NNP The report also says the food situation remains critical in the west African country of Mauritania , and says the conflict in Ivory Coast is disrupting agriculture and market activities there . DT NN RB VBZ DT NN NN VBZ JJ IN DT JJ JJ NN IN NNP , CC VBZ DT NN IN NNP NNP VBZ VBG NN CC NN NNS RB . A senior aide to Palestinian President Mahmoud Abbas said Saturday Mr. Abbas and Israeli Prime Minister Ehud Olmert will meet Monday in the West Bank town of Jericho . DT JJ NN TO JJ NNP NNP NNP VBD NNP NNP NNP CC JJ NNP NNP NNP NNP MD VB NNP IN DT NNP NNP NN IN NNP . The announcement comes less than a week after U.S. Secretary of State Condolezza Rice met separately with each leader and called for a deeper dialogue between Israel and the Palestinians . DT NN VBZ JJR IN DT NN IN NNP NNP IN NNP NNP NNP VBD RB IN DT NN CC VBD IN DT JJR NN IN NNP CC DT NNS . Mr. Abbas and Mr. Olmert have held periodic meetings in recent months . NNP NNP CC NNP NNP VBP VBN JJ NNS IN JJ NNS . Abbas aide Nabil Amr says this week 's meeting is an opportunity for both sides to make progress on key areas ahead of an international peace conference proposed for later this year in the United States . NNP NN NNP NNP VBZ DT NN POS NN VBZ DT NN IN DT NNS TO VB NN IN JJ NNS RB IN DT JJ NN NN VBN IN RB DT NN IN DT NNP NNPS . Rice said during her trip to the region last week the international conference could ' advance Palestinian statehood . ' NNP VBD IN PRP$ NN TO DT NN JJ NN DT JJ NN MD `` VB JJ NN . `` Zambia 's deputy leader says President Levy Mwanawasa has undergone minor surgery in France to improve his breathing . NNP POS NN NN VBZ NNP NNP NNP VBZ VBN JJ NN IN NNP TO VB PRP$ NN . Zambian Vice President Rupiah Banda says Tuesday the president is in stable condition following the operation which took place Monday afternoon . JJ NNP NNP NNP NNP VBZ NNP DT NN VBZ IN JJ NN VBG DT NN WDT VBD NN NNP NN . Mr. Mwanawasa suffered a stroke during a visit to Egypt on June 29 and was transferred to a Paris military hospital last week for treatment . NNP NNP VBD DT NN IN DT NN TO VB IN NNP CD CC VBD VBN TO DT NNP JJ NN JJ NN IN NN . Mr. Mwanawasa is 59 years old and has served as Zambian president since 2002 . NNP NNP VBZ CD NNS JJ CC VBZ VBN IN JJ NN IN CD . He suffered a mild stroke in 2006 before being re-elected that year . PRP VBD DT JJ NN IN CD IN VBG VBN DT NN . Mr. Mwanawasa also is the leader of the Southern African Development Community . NNP NNP RB VBZ DT NN IN DT JJ NNP NNP NNP . Organizers of this week 's British Grand Prix Formula One race say that the competition will go ahead as scheduled despite Thursday 's bombings in Central London . NNS IN DT NN POS JJ NNP NNP NNP CD NN VBP IN DT NN MD VB RB IN VBN IN NNP POS NNS IN NNP NNP . Race organizers said in a statement that the Silverstone course has a well-established set of security measures that have been planned in detail with police and other agencies . NNP NNS VBD IN DT NN IN DT NNP NN VBZ DT JJ NN IN NN NNS WDT VBP VBN VBN IN NN IN NNS CC JJ NNS . The statement said that organizers are confident the security is adequate to ensure the safety of all attending the race Sunday . DT NN VBD IN NNS VBP JJ DT NN VBZ JJ TO VB DT NN IN DT VBG DT NN NNP . Practice for the race is Friday with qualifying on Saturday . NN IN DT NN VBZ NNP IN VBG IN NNP . The event was disrupted two years ago when a kilted protester ran onto the track during the race . DT NN VBD VBN CD NNS RB WRB DT VBN NN VBD IN DT NN IN DT NN . The number two leader of the al-Qaida terror network has urged Muslims to oppose a referendum proposed by Palestinian President Mahmoud Abbas . DT NN CD NN IN DT NNP NN NN VBZ VBN NNS TO VB DT NN VBN IN JJ NNP NNP NNP . Ayman al-Zawahiri made the statement in a videotape aired Friday by the Arabic television network al-Jazeera . NNP NNP VBD DT NN IN DT NN VBN NNP IN DT NNP NN NN NNP . He said Palestine is a house of Islam and not subject to any compromise . PRP VBD NNP VBZ DT NN IN NNP CC RB JJ TO DT NN . Mr. Abbas has proposed to hold a referendum on a Palestinian statehood plan that recognizes Israel . NNP NNP VBZ VBN TO VB DT NN IN DT JJ NN NN WDT VBZ NNP . Mr. Abbas of the Fatah party has given the militant group Hamas until the end of the week to agree to the statehood plan or he will call the referendum . NNP NNP IN DT NNP NN VBZ VBN DT JJ NN NNP IN DT NN IN DT NN TO VB TO DT NN NN CC PRP MD VB DT NN . Mr. Abbas has been in a power struggle with Hamas since the militant group took control of the Palestinian Authority earlier this year . NNP NNP VBZ VBN IN DT NN NN IN NNP IN DT JJ NN VBD NN IN DT JJ NNP RBR DT NN . Former Portuguese Prime Minister Anibal Cavaco Silva was sworn-in Thursday as the country 's first center-right president in 32 years . JJ JJ JJ NN NNP NNP NNP VBD JJ NNP IN DT NN POS JJ JJ NN IN CD NNS . A number of foreign dignitaries attended the inauguration , including former U.S. President George H.W. Bush . DT NN IN JJ NNS VBD DT NN , VBG JJ NNP NNP NNP NNP NNP . Mr. Cavaco Silva has promised to revitalize Portugal 's economy . NNP NNP NNP VBZ VBN TO VB NNP POS NN . He says he is entirely ready to cooperate with the ruling Socialists to achieve his goals . PRP VBZ PRP VBZ RB JJ TO VB IN DT NN VBZ TO VB PRP$ NNS . The country has been suffering with high unemployment and less than one percent economic growth . DT NN VBZ VBN VBG IN JJ NN CC JJR IN CD NN JJ NN . The Portuguese president has no executive powers , but does have the authority to dissolve parliament , appoint prime ministers , and veto laws . DT JJ NN VBZ DT JJ NNS , CC VBZ VB DT NN TO VB NN , JJ JJ NNS , CC NN NNS . Mr. Cavaco Silva was elected in January . NNP NNP NNP VBD VBN IN NNP . He is Portugal 's first conservative president since the country became a democracy in 1974 . PRP VBZ NNP POS JJ JJ NN IN DT NN VBD DT NN IN CD . A report in Sunday 's New York Times says the Bush administration may have tried to influence Iraq 's January elections by covertly supporting certain political parties . DT NN IN NNP POS NNP NNP NNP VBZ DT NNP NN MD VB VBN TO VB NNP POS NNP NNS IN RB VBG JJ JJ NNS . The report cites an article written by investigative journalist Seymour Hersh that will appear in the coming issue of The New Yorker magazine . DT NN VBZ DT NN VBN IN JJ NN NNP NNP WDT MD VB IN DT JJ NN IN DT NNP NNP NN . Mr. Hersh asserts the administration proceeded with the plan despite Congressional objections . NNP NNP VBZ DT NN VBD IN DT NN IN JJ NNS . A National Security Council spokesman told the New York Times that , in the end , the president decided not to help individual candidates for Iraqi office . DT NNP NNP NNP NN VBD DT NNP NNP NNP IN , IN DT NN , DT NN VBD RB TO VB JJ NNS IN JJ NN . As the newspaper noted , the response did not make clear whether certain parties were helped . IN DT NN VBD , DT NN VBD RB VB JJ IN JJ NNS VBD VBN . The spokesman added that White House officials were concerned about what they saw as extensive Iranian support for pro-Shiite parties . DT NN VBD IN NNP NNP NNS VBD VBN IN WP PRP VBD IN JJ JJ NN IN JJ NNS . President Bush has repeatedly called for free and fair elections in Iraq and other Middle Eastern countries . NNP NNP VBZ RB VBN IN JJ CC JJ NNS IN NNP CC JJ NNP NNP NNS . Thousands of Africans flocked to churches across the continent to remember Pope John Paul II , as many more gathered around televisions to watch his funeral in Rome . NNS IN NNS VBD TO NNS IN DT NN TO VB NNP NNP NNP NNP , IN JJ RBR VBN IN NNS TO VB PRP$ NN IN NNP . Several African states declared Friday a national holiday or a day of national mourning for the pope . JJ JJ NNS VBD NNP DT JJ NN CC DT NN IN JJ NN IN DT NN . State television broadcast the funeral live in countries such as Nigeria , South Africa , Ivory Coast and the Democratic Republic of Congo . NNP NN VBD DT JJ JJ IN NNS JJ IN NNP , NNP NNP , NNP NNP CC DT JJ NNP IN NNP . In the capital of the Republic of Congo , Brazzaville , a giant television screen was set up for those without one at home . IN DT NN IN DT NNP IN NNP , NNP , DT JJ NN NN VBD VBN RP IN DT IN CD IN NN . Officials in Madagascar say people gathered in town halls where the funeral was being shown on television powered by generators . NNS IN NNP VBP NNS VBD IN NN NNS WRB DT NN VBD VBG VBN IN NN VBN IN NNS . Africans praised Pope John Paul II for his efforts to help the poor and promote peace during many trips to the continent , which now has one of the fastest growing Roman Catholic populations in the world . NNS VBD NNP NNP NNP NNP IN PRP$ NNS TO VB DT NN CC VB NN IN JJ NNS TO DT NN , WDT RB VBZ CD IN DT JJS VBG NNP NNP NNS IN DT NN . Israeli Prime Minister Ariel Sharon has announced plans for a summit with Palestinian Authority President Mahmoud Abbas on June 21 in the Egyptian resort town of Sharm al-Sheikh . JJ NNP NNP NNP NNP VBZ VBN NNS IN DT NN IN JJ NNP NNP NNP NNP IN NNP CD IN DT JJ NN NN IN NNP NNP . A statement from the Israeli prime minister on Wednesday said officials from both sides will hold talks before the summit to discuss an ongoing truce and Israel 's planned withdrawal from the Gaza Strip in August . DT NN IN DT JJ JJ NN IN NNP VBD NNS IN DT NNS MD VB NNS IN DT NN TO VB DT JJ NN CC NNP POS VBN NN IN DT NNP NNP IN NNP . Separately , Israeli police say they have arrested five members of the Islamic Jihad militant group who they said were planning to carry out a bomb attack in Jerusalem on Thursday . RB , JJ NNS VBP PRP VBP VBN CD NNS IN DT NNP NNP JJ NN WP PRP VBD VBD VBG TO VB RP DT NN NN IN NNP IN NNP . Also the Israeli parliament was expected to hold a debate late Wednesday on plans to demolish the homes of nearly 90 Arab families in East Jerusalem to make room for a national park . RB DT JJ NN VBD VBN TO VB DT NN JJ NNP IN NNS TO VB DT NNS IN RB CD JJ NNS IN NNP NNP TO VB NN IN DT JJ NN . Palestinian officials have criticized the plan . JJ NNS VBP VBN DT NN . The terrorist group al-Qaida in Iraq has criticized the country 's moderate Sunni Arabs for taking part in last month 's parliamentary elections and called on them to abandon electoral politics . DT NN NN NNP IN NNP VBZ VBN DT NN POS JJ NNP NNS IN VBG NN IN JJ NN POS JJ NNS CC VBN IN PRP TO VB JJ NNS . The remark came in an audio tape posted on an Islamist web site Sunday . DT NN VBD IN DT NN NN VBN IN DT JJ NN NN NNP . The speaker sounded like Abu Musab al-Zarqawi , but the authenticity of the tape could not be verified . DT NN VBD IN NNP NNP NNP , CC DT NN IN DT NN MD RB VB VBN . In the tape , he denounced the Iraqi Islamic Party for endorsing a new constitution , and said the largest Sunni Arab party should not be involved in reconciliation because it will lead to the destruction of the Sunni community . IN DT NN , PRP VBD DT JJ NNP NNP IN VBG DT JJ NN , CC VBD DT JJS NNP NNP NN MD RB VB VBN IN NN IN PRP MD VB TO DT NN IN DT NNP NN . Zarqawi said his group could have disrupted the December 15 balloting , but did not want to harm the Sunni people . NNP VBD PRP$ NN MD VB VBN DT NNP CD NN , CC VBD RB VB TO VB DT NNP NNS . He also criticized Arab countries that met in Cairo in November to seek reconciliation between Iraq 's political factions . PRP RB VBD JJ NNS WDT VBD IN NNP IN NNP TO VB NN IN NNP POS JJ NNS . He said those countries were out to destroy Iraq and cooperate with America . PRP VBD DT NNS VBD RB TO VB NNP CC VB IN NNP . Egyptian authorities have tentatively identified the remains of one of the bombers who struck a Red Sea resort on Saturday , killing scores of people . JJ NNS VBP RB VBN DT NNS IN CD IN DT NNS WP VBD DT NNP NNP NN IN NNP , VBG NNS IN NNS . Security sources say they believe a known Sinai militant , Youssef Badran , was at the wheel of a vehicle that exploded in front of a hotel . NN NNS VBP PRP VBP DT VBN NNP NN , NNP NNP , VBD IN DT NN IN DT NN WDT VBD IN NN IN DT NN . Authorities were performing DNA tests Tuesday to confirm the identity . NNS VBD VBG NN NNS NNP TO VB DT NN . Egyptian sources say police have been looking for links between Saturday 's attacks and two Sinai bombings last year that killed 34 people . JJ NNS VBP NNS VBP VBN VBG IN NNS IN NNP POS NNS CC CD NNP NNS JJ NN WDT VBD CD NNS . The possible links surfaced after two militant groups claiming credit for Saturday 's attack said they also carried out bombings last October near a resort in Taba . DT JJ NNS VBD IN CD JJ NNS VBG NN IN NNP POS NN VBD PRP RB VBD RP NNS JJ NNP IN DT NN IN NNP . Meanwhile , the Egyptian Health Ministry says 64 people died in the blasts , while local doctors say they account for 88 fatalities . RB , DT JJ NNP NNP VBZ CD NNS VBD IN DT NNS , IN JJ NNS VBP PRP VBP IN CD NNS . Several reports quote hospitals as saying the ministry count excludes some sets of body parts . JJ NNS VBP NNS IN VBG DT NN NN VBZ DT NNS IN NN NNS . Iraq 's foreign minister says Syria is refusing to stop insurgents and foreign fighters from entering Iraq . NNP POS JJ NN VBZ NNP VBZ VBG TO VB NNS CC JJ NNS IN VBG NNP . Hoshyar Zebari told the Associated Press Thursday Syria and other authoritarian governments in the region are frightened of Iraq 's efforts to build a democratic nation in the heart of the Middle East and want to see it fail . NNP NNP VBD DT NNP NNP NNP NNP CC JJ JJ NNS IN DT NN VBP VBN IN NNP POS NNS TO VB DT JJ NN IN DT NN IN DT NNP NNP CC VBP TO VB PRP VB . The Iraqi foreign minister said these governments are not helping stem the flow of foreign fighters and weapons into Iraq , despite pledges to do so . DT JJ JJ NN VBD DT NNS VBP RB VBG VB DT NN IN JJ NNS CC NNS IN NNP , IN NNS TO VB RB . Syria 's U.N. Ambassador Fayssal Mekdad insisted Wednesday that his country has been cooperating with Iraq by deploying 10,000 troops on the border , erecting barriers and arresting hundreds of potential infiltrators . NNP POS NNP NNP NNP NNP VBD NNP IN PRP$ NN VBZ VBN VBG IN NNP IN VBG CD NNS IN DT NN , VBG NNS CC VBG NNS IN JJ NNS . Earlier this month , President Bush said Syria faces growing international isolation because of what he calls its failure to stop fighters from crossing its border into Iraq . RBR DT NN , NNP NNP VBD NNP VBZ VBG JJ NN IN IN WP PRP VBZ PRP$ NN TO VB NNS IN VBG PRP$ NN IN NNP . Burma 's military government has blamed ethnic Karen rebels for a land mine explosion that killed two people and wounded 11 others in the country 's east . NNP POS JJ NN VBZ VBN JJ NNP NNS IN DT NN NN NN WDT VBD CD NNS CC VBD CD NNS IN DT NN POS NN . Burmese state media said a passenger bus hit the explosive last Sunday as it was traveling in Karen State about 200 kilometers from Rangoon . JJ NN NNS VBD DT NN NN VBD DT JJ JJ NNP IN PRP VBD VBG IN NNP NNP IN CD NNS IN NNP . The reports said the junta blamed the Karen National Union for the blast . DT NNS VBD DT NN VBD DT NNP NNP NNP IN DT NN . It was not immediately clear why the incident was reported only Saturday - nearly a week later . PRP VBD RB RB JJ WRB DT NN VBD VBN RB NNP : RB DT NN RB . The military has accused the Karen National Union of responsibility for a series of bombings in recent months , including a December blast in Karen state that killed seven people . DT NN VBZ VBN DT NNP NNP NNP IN NN IN DT NN IN NNS IN JJ NNS , VBG DT NNP NN IN NNP NN WDT VBD CD NNS . The Karen National Union has been fighting for greater autonomy for ethnic Karen people in Burma for more than 60 years . DT NNP NNP NNP VBZ VBN VBG IN JJR NN IN JJ NNP NNS IN NNP IN JJR IN CD NNS . Traditional fishermen in poor countries around the world face tough competition from international industrial fishing operations . JJ NNS IN JJ NNS IN DT NN NN JJ NN IN JJ JJ NN NNS . In the fishing-rich West African nation of Guinea , there are laws meant to preserve some waters for the local fishermen . IN DT JJ JJ JJ NN IN NNP , EX VBP NNS VBN TO VB DT NNS IN DT JJ NNS . But a lack of money means these laws often are not enforced . CC DT NN IN NN VBZ DT NNS RB VBP RB VBN . Kari Barber reports from Conakry that many traditional fishermen feel they are being squeezed out of their livelihoods . NNP NNP VBZ IN NNP IN JJ JJ NNS VBP PRP VBP VBG VBN IN IN PRP$ NNS . President Bush will pay tribute at a Memorial Day ceremony later Monday at Arlington National Cemetery to members of America 's military who died in combat . NNP NNP MD VB NN IN DT NNP NNP NN RB NNP IN NNP NNP NNP TO NNS IN NNP POS NN WP VBD IN NN . Mr. Bush will make remarks and lay a wreath at the Tomb of the Unknowns which contains the remains of unidentified U.S. service members who died in World Wars I and II - and in the Korean War . NNP NNP MD VB NNS CC VBD DT NN IN DT NNP IN DT NNPS WDT VBZ DT NNS IN JJ NNP NN NNS WP VBD IN NNP NNPS NNP CC NNP : CC IN DT NNP NNP . On Sunday thousands of motorcycle riders conducted a parade through downtown Washington to honor missing soldiers and prisoners of war . IN NNP NNS IN NN NNS VBD DT NN IN NN NNP TO VB VBG NNS CC NNS IN NN . In the United States , the Memorial Day holiday marks the unofficial start of summer , and is an occassion for picnics and parties as well as for observances at military cemeteries around the country . IN DT NNP NNPS , DT NNP NNP NN VBZ DT JJ NN IN NN , CC VBZ DT NN IN NNS CC NNS RB RB IN IN NNS IN JJ NNS IN DT NN . A key U.S. congressional panel has approved legislation to reform the American health care system . DT JJ NNP JJ NN VBZ VBN NN TO VB DT JJ NN NN NN . The House of Representatives ' Energy and Commerce committee voted 31 to 28 late Friday to back a measure aimed at extending health insurance to Americans not now covered . DT NNP IN NNP POS NNP CC NNP NN VBD CD TO CD JJ NNP TO VB DT NN VBN IN VBG NN NN TO NNS RB RB VBN . Congress is about to adjourn for an August recess . NNP VBZ IN TO VB IN DT NNP NN . But now that the committee has approved the bill , it can move to the full House as early as September . CC RB IN DT NN VBZ VBN DT NN , PRP MD VB TO DT JJ NNP RB RB IN NNP . A major part of the legislation involves creating a public health insurance plan . DT JJ NN IN DT NN VBZ VBG DT JJ NN NN NN . House Speaker Nancy Pelosi - a Democrat - says the changes will stop the insurance industry from coming between doctors and patients . NNP NNP NNP NNP IN DT NNP : VBZ DT NNS MD VB DT NN NN IN VBG IN NNS CC NNS . But minority Republicans say the proposal costs too much and is the first step toward a government takeover of health care . CC NN NNS VBP DT NN VBZ RB JJ CC VBZ DT JJ NN IN DT NN NN IN NN NN . Bangladeshi authorities have slaughtered nearly 20,000 chickens after bird flu was detected at a government-run poultry farm . JJ NNS VBP VBN RB CD NNS IN NN NN VBD VBN IN DT JJ NN NN . Officials Tuesday said the latest infection of the potentially deadly H5N1 virus occurred at the farm in Mirpur , just outside Bangladesh 's capital , Dhaka . NNS NNP VBD DT JJS NN IN DT RB JJ NNP NN VBD IN DT NN IN NNP , RB IN NNP POS NN , NNP . The bird flu was first detected in Bangladesh in March of 2007 at a state-owned poultry farm . DT NN NN VBD RB VBN IN NNP IN NNP IN CD IN DT JJ NN NN . Since then , the government has slaughtered more than 3,00,000 chickens . IN RB , DT NN VBZ VBN JJR IN CD NNS . No human cases of infection have been reported so far . DT JJ NNS IN NN VBP VBN VBN RB RB . Officials say Bangladesh has about 1,50,000 poultry farms , with an annual turnover of $ 750 million . NNS VBP NNP VBZ IN CD NN NNS , IN DT JJ NN IN $ CD CD . Russia says it agrees with the United States that Iran must be prevented from acquiring nuclear weapons , but Moscow sees no reason to refer Tehran to the United Nations Security Council for possible sanctions . NNP VBZ PRP VBZ IN DT NNP NNPS IN NNP MD VB VBN IN VBG JJ NNS , CC NNP VBZ DT NN TO VB NNP TO DT NNP NNP NNP NNP IN JJ NNS . Russia 's Foreign Minister Sergei Lavrov made the comment Saturday , after talks in Moscow with U.S. Secretary of State Condoleezza Rice . NNP POS NNP NNP NNP NNP VBD DT NN NNP , IN NNS IN NNP IN NNP NNP IN NNP NNP NNP . Mr. Lavrov said the issue should be handled within the International Atomic Energy Agency . NNP NNP VBD DT NN MD VB VBN IN DT NNP NNP NNP NNP . But Secretary Rice insisted that the Security Council option remains open if Iran fails to agree to negotiations on its nuclear program . CC NNP NNP VBD IN DT NNP NNP NN VBZ JJ IN NNP VBZ TO VB TO NNS IN PRP$ JJ NN . Iran denies U.S. and European accusations that it is secretly trying to develop atomic weapons . NNP VBZ NNP CC JJ NNS IN PRP VBZ RB VBG TO VB JJ NNS . Secretary Rice later met with Russian President Vladimir Putin , who praised the success of her trip through five Asian countries . NNP NNP RB VBD IN JJ NNP NNP NNP , WP VBD DT NN IN PRP$ NN IN CD JJ NNS . She stops in Britain before returning home . PRP VBZ IN NNP IN VBG NN . The U.S. attorney general has defended the use of sting operations against suspected terrorists during a speech to a Muslim rights group . DT NNP NN NN VBZ VBN DT NN IN VBG NNS IN JJ NNS IN DT NN TO DT NN NNS NN . Eric Holder told Muslim Advocates that such operations are essential to identifying and preventing terror attacks on all citizens . NNP NNP VBD NNP VBZ IN JJ NNS VBP JJ IN VBG CC VBG NN NNS IN DT NNS . The California-based group had expressed concern that Justice Department tactics bordered on entrapment in some cases . DT JJ NN VBD VBN NN IN NNP NNP NNS VBD IN NN IN DT NNS . During his speech , Holder defended a case last month , in which a Somali-born man in Oregon was arrested after trying to detonate what he thought was a bomb near Christmas tree lighting . IN PRP$ NN , NNP VBD DT NN JJ NN , IN WDT DT JJ NN IN NNP VBD VBN IN VBG TO VB WP PRP VBD VBD DT NN IN NNP NN NN . Undercover FBI agents provided the suspect with the fake bomb . NN NNP NNS VBD DT NN IN DT JJ NN . The director of the Muslim Advocates says it still has concerns and that fairness should be the cornerstone of each probe . DT NN IN DT NNP NNP VBZ PRP RB VBZ NNS CC IN NN MD VB DT NN IN DT NN . Ukraine 's foreign minister says the Commonwealth of Independent States has no future in its present form but indicated his country is not planning to quit the organization that groups 12 former Soviet republics . NNP POS JJ NN VBZ DT NNP IN NNP NNPS VBZ DT NN IN PRP$ JJ NN CC VBD PRP$ NN VBZ RB VBG TO VB DT NN IN VBZ CD JJ JJ NNS . Boris Tarasyuk told reporters in Kiev Tuesday that the commonwealth , long criticized for being dominated by Russia , has become stagnant . NNP NNP VBD NNS IN NNP NNP IN DT NN , RB VBN IN VBG VBN IN NNP , VBZ VBN JJ . Georgia has said it is considering quitting the group . NNP VBZ VBN PRP VBZ VBG VBG DT NN . Ukrainian authorities are currently preparing for a summit Monday of leaders from another grouping of former Soviet republics known as GUAM , a group that brings together Georgia , Ukraine , Azerbaijan and Moldova . JJ NNS VBP RB VBG IN DT NN NNP IN NNS IN DT NN IN JJ JJ NNS VBN IN NNP , DT NN WDT VBZ RB NNP , NNP , NNP CC NNP . Tarasyuk says one purpose of next week 's meeting is to strengthen and reorganize the smaller group , which , he said , could bring in other countries . NNP VBZ CD NN IN JJ NN POS NN VBZ TO VB CC VB DT JJR NN , WDT , PRP VBD , MD VB IN JJ NNS . An Israeli security guard has shot dead a Palestinian man in Jerusalem 's Old City after the Palestinian grabbed a gun from another Israeli guard and opened fire . DT JJ NN NN VBZ VBN JJ DT JJ NN IN NNP POS NNP NNP IN DT NN VBD DT NN IN DT JJ NN CC VBD NN . Israeli police say the gunfight Friday began when the Palestinian snatched a gun from an Israeli guard outside a Jewish seminary in the Old City 's Christian quarter . JJ NNS VBP DT NN NNP VBD WRB DT NN VBD DT NN IN DT JJ NN IN DT JJ NN IN DT NNP NNP POS JJ NN . They say the attacker , roughly 20 years old , shot and wounded the guard and fled . PRP VBP DT NN , RB CD NNS JJ , VBD CC VBD DT NN CC VBD . Another Israeli guard chased the Palestinian and shot him dead after a brief exchange of fire . DT JJ NN VBD DT NN CC VBD PRP RB IN DT JJ NN IN NN . Ten bystanders also were wounded by the gunfire . CD NNS RB VBD VBN IN DT NN . Several witnesses say the Israeli guard kept shooting after the attacker fell to the ground . JJ NNS VBP DT JJ NN VBD NN IN DT NN VBD TO DT NN . Israeli police say the security guard acted appropriately in response to a terrorist incident . JJ NNS VBP DT NN NN VBD RB IN NN TO DT JJ NN . In May , Israeli security forces killed two Palestinian gunmen who opened fire in an Arab neighborhood of East Jerusalem . IN NNP , JJ NN NNS VBD CD JJ NNS WP VBD NN IN DT JJ NN IN NNP NNP . Two Israeli officers were wounded in that attack . CD JJ NNS VBD VBN IN DT NN . The former U.S. administrator for Iraq has praised Sunday 's election as a victory for democracy , and says it has proved skeptics wrong . DT JJ NNP NN IN NNP VBZ VBN NNP POS NN IN DT NN IN NN , CC VBZ PRP VBZ VBN NNS JJ . Speaking on American television ( NBC 's Today Show ) Monday , Paul Bremer said the election was a great victory for the Iraqi people , for democracy and for President Bush 's message of freedom . VBG IN JJ NN LRB NNP POS NN NN RRB NNP , NNP NNP VBD DT NN VBD DT JJ NN IN DT JJ NNS , IN NN CC IN NNP NNP POS NN IN NN . Mr. Bremer said it is a mark of the resilience and courage of the Iraqi people that they have come this far . NNP NNP VBD PRP VBZ DT NN IN DT NN CC NN IN DT JJ NNS IN PRP VBP VBN DT RB . But he added that despite the apparent success of the vote , he expects more violence ahead . CC PRP VBD IN IN DT JJ NN IN DT NN , PRP VBZ JJR NN RB . Mr. Bremer also expressed optimism that Iraq would not fracture along ethnic and religious lines , and that the Sunni minority , which appears to have largely boycotted the vote , would have a voice in the new government . NNP NNP RB VBD NN IN NNP MD RB VB IN JJ CC JJ NNS , CC IN DT NNP NN , WDT VBZ TO VB RB VBN DT NN , MD VB DT NN IN DT JJ NN . Security sources in Yemen say tribesmen have blown up an oil pipeline in retaliation for raids targeting al-Qaida sympathizers . NN NNS IN NNP VBP NNS VBP VBN RP DT NN NN IN NN IN NNS VBG NNP NNS . Officials say tribesman in eastern Maarib province sabotaged the pipeline Saturday , after government forces raided the homes of tribal leaders thought to be harboring al-Qaida operatives . NNS VBP NN IN JJ NNP NN VBD DT NN NNP , IN NN NNS VBD DT NNS IN JJ NNS VBN TO VB VBG NNP NNS . On Wednesday , more than 20 people were wounded when security forces clashed with tribesmen in eastern Yemen during the operation to apprehend Hassan al-Aqili . IN NNP , JJR IN CD NNS VBD VBN WRB NN NNS VBN IN NNS IN JJ NNP IN DT NN TO VB NNP NNP . Aqili is wanted for the death of a senior army officer , killed in an ambush last Saturday . NNP VBZ VBN IN DT NN IN DT JJ NN NN , VBN IN DT JJ JJ NNP . Reigning champion Canada defeated Italy , 07-Feb , while Sweden defeated Kazakhstan , 07-Feb , in first-round action at the Olympic men 's ice hockey tournament in Turin . VBG NN NNP VBD NNP , CD , IN NNP VBD NNP , CD , IN JJ NN IN DT NNP NNS POS NN NN NN IN NNP . Canada scored five consecutive goals in the second period after Italy had tied the Group-A game 01-Jan . Jarome Iginla , Dany Heatley , Shane Doan , Martin St. Louis and Brad Richards all scored for Canada . NNP VBD CD JJ NNS IN DT JJ NN IN NNP VBD VBN DT NNP NN CD . NNP NNP , NNP NNP , NNP NNP , NNP NNP NNP CC NNP NNP DT VBN IN NNP . Meanwhile in Group-B , Daniel Tjarnqvist scored twice while brothers Daniel and Henrik Sedin had one goal each to lead Sweden past Kazakhstan in their first-round game . RB IN NNP , NNP NNP VBD RB IN NNS NNP CC NNP NNP VBD CD NN DT TO VB NNP JJ NNP IN PRP$ JJ NN . Later games have Finland against Switzerland , Germany playing the Czech Republic , Russia taking on Slovakia , and the United States against Latvia . RB NNS VBP NNP IN NNP , NNP VBG DT JJ NNP , NNP VBG IN NNP , CC DT NNP NNPS IN NNP . China says it will deploy unmanned aircraft or drones over its Olympic sailing venue in the coastal city of Qingdao during the Beijing Games to watch for suspicious activities . NNP VBZ PRP MD VB JJ NN CC NNS IN PRP$ NNP NN NN IN DT JJ NN IN NNP IN DT NNP NNPS TO VB IN JJ NNS . The state-run Xinhua news agency says police tested one of the drones Friday during a drill in the Shandong provincial capital of Jinan , not far from Qingdao . DT JJ NNP NN NN VBZ NN VBD CD IN DT NNS NNP IN DT NN IN DT NNP JJ NN IN NNP , RB RB IN NNP . Reports say it is the first time that China has used the unmanned , low-flying reconnaissance aircraft . NNS VBP PRP VBZ DT JJ NN IN NNP VBZ VBN DT JJ , JJ NN NN . Xinhua says the drones will scout out suspicious activity and transmit photos and video back to a command station . NNP VBZ DT NNS MD VB RP JJ NN CC NN NNS CC NN RB TO DT NN NN . It did not say what threats the sailing event could face . PRP VBD RB VB WP NNS DT NN NN MD VB . China has said terrorism is the biggest threat to the Beijing games and already claims to have foiled terrorist plots targeting athletes and foreigners during the Olympics . NNP VBZ VBN NN VBZ DT JJS NN TO DT NNP NNS CC RB VBZ TO VB VBN JJ NNS VBG NNS CC NNS IN DT NNS . Iran 's chief religious leader is urging Arab nations to boycott an upcoming U.S.-hosted peace conference . NNP POS JJ JJ NN VBZ VBG JJ NNS TO VB DT JJ JJ NN NN . Supreme Leader Ayatollah Ali Khamenei issued the call Saturday during a sermon in Tehran . NN NN NNP NNP NNP VBD DT NN NNP IN DT NN IN NNP . The conference next month is aimed at resolving the issue of Palestinian statehood , but Ayatollah Khamenei says the real goal is to prop up Israel , which he called the ' Zionist regime . ' DT NN JJ NN VBZ VBN IN VBG DT NN IN JJ NN , CC NNP NNP VBZ DT JJ NN VBZ TO VB RP NNP , WDT PRP VBD DT `` NNP NN . `` The cleric says previous peace conferences have been at the expense of the Palestinian people . DT NN VBZ JJ NN NNS VBP VBN IN DT NN IN DT JJ NNS . He questioned the need for Arab states to attend the forum , since the Palestinians themselves are not taking part . PRP VBD DT NN IN JJ NNS TO VB DT NN , IN DT NNS PRP VBP RB VBG NN . He did not mention talks between Israeli Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas , preparing for the conference . PRP VBD RB VB NNS IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP , VBG IN DT NN . In Saturday 's sermon , the ayatollah also blamed the United States for the chaos in Iraq . IN NNP POS NN , DT NN RB VBD DT NNP NNPS IN DT NN IN NNP . Police in Afghanistan say Afghan and NATO forces have killed 18 Taleban rebels in clashes in the country 's volatile southern region . NNS IN NNP VBP JJ CC NNP NNS VBP VBN CD NNP NNS IN NNS IN DT NN POS JJ JJ NN . The fighting took place Tuesday near the village of Garmser in Helmand province . DT NN VBD NN NNP IN DT NN IN NNP IN NNP NN . There were no casualties reported among the NATO and Afghan troops . EX VBD DT NNS VBN IN DT NNP CC JJ NNS . Also on Tuesday , three British soldiers were killed in the same province when suspected Taleban insurgents ambushed a NATO patrol . RB IN NNP , CD JJ NNS VBD VBN IN DT JJ NN WRB VBN NNP NNS VBD DT NNP NN . NATO took over security operations this week from U.S.-led coalition forces in six southern Afghan provinces . NNP VBD RP NN NNS DT NN IN JJ NN NNS IN CD JJ JJ NNS . A car exploded just outside Afghanistan 's capital , Kabul , killing one person in the vehicle Wednesday , and wounding at least two others . DT NN VBD RB IN NNP POS NN , NNP , VBG CD NN IN DT NN NNP , CC VBG IN JJS CD NNS . Police say they are not sure if the blast was a suicide attack . NNS VBP PRP VBP RB JJ IN DT NN VBD DT NN NN . At least one of the people injured was in the vehicle at the time of the explosion . IN JJS CD IN DT NNS VBN VBD IN DT NN IN DT NN IN DT NN . Colombian authorities say leftist rebels have attacked a military convoy in southern Colombia with explosives , killing 10 servicemen . JJ NNS VBP JJ NNS VBP VBN DT JJ NN IN JJ NNP IN NNS , VBG CD NNS . A military commander says the attack was carried out by the Revolutionary Armed Forces of Colombia ( FARC ) in Putumayo state , one of Colombia 's biggest cocaine-producing regions . DT JJ NN VBZ DT NN VBD VBN RP IN DT NNP NNP NNS IN NNP LRB NNP RRB IN NNP NN , CD IN NNP POS JJS JJ NNS . The FARC , along with a smaller rebel group and rightist paramilitaries , is locked in a long-running war with the government that leaves thousands of people dead each year . DT NNP , IN IN DT JJR NN NN CC NN NNS , VBZ VBN IN DT JJ NN IN DT NN WDT VBZ NNS IN NNS JJ DT NN . Self-sufficient Gibraltar benefits from an extensive shipping trade , offshore banking , and its position as an international conference center . JJ NNP NNS IN DT JJ NN NN , JJ NN , CC PRP$ NN IN DT JJ NN NN . Tax rates are low to attract foreign investment . NN NNS VBP JJ TO VB JJ NN . The British military presence has been sharply reduced and now contributes about 7 % to the local economy , compared with 60 % in 1984 . DT JJ JJ NN VBZ VBN RB VBN CC RB VBZ IN CD NN TO DT JJ NN , VBN IN CD NN IN CD . The financial sector , tourism ( almost 5 million visitors in 1998 ) , gaming revenues , shipping services fees , and duties on consumer goods also generate revenue . DT JJ NN , NN LRB RB CD CD NNS IN CD RRB , VBG NNS , VBG NNS NNS , CC NNS IN NN NNS RB VBP NN . The financial sector , tourism , and the shipping sector contribute 30 % , 30 % , and 25 % , respectively , of GDP . DT JJ NN , NN , CC DT NN NN VBP CD NN , CD NN , CC CD NN , RB , IN NN . Telecommunications , e-commerce , and e-gaming account for the remaining 15 % . NN , NN , CC JJ NN IN DT VBG CD NN . In recent years , Gibraltar has seen major structural change from a public to a private sector economy , but changes in government spending still have a major impact on the level of employment . IN JJ NNS , NNP VBZ VBN JJ JJ NN IN DT NN TO DT JJ NN NN , CC NNS IN NN NN RB VBP DT JJ NN IN DT NN IN NN . Poland is an ancient nation that was conceived near the middle of the 10th century . NNP VBZ DT JJ NN WDT VBD VBN IN DT NN IN DT JJ NN . Its golden age occurred in the 16th century . PRP$ JJ NN VBD IN DT JJ NN . During the following century , the strengthening of the gentry and internal disorders weakened the nation . IN DT JJ NN , DT NN IN DT NN CC JJ NNS VBD DT NN . In a series of agreements between 1772 and 1795 , Russia , Prussia , and Austria partitioned Poland among themselves . IN DT NN IN NNS IN CD CC CD , NNP , NNP , CC NNP VBD NNP IN PRP . Poland regained its independence in 1918 only to be overrun by Germany and the Soviet Union in World War II . NNP VBD PRP$ NN IN CD RB TO VB VBN IN NNP CC DT NNP NNP IN NNP NNP NNP . It became a Soviet satellite state following the war , but its government was comparatively tolerant and progressive . PRP VBD DT JJ NN NN VBG DT NN , CC PRP$ NN VBD RB JJ CC JJ . Labor turmoil in 1980 led to the formation of the independent trade union ' Solidarity ' that over time became a political force and by 1990 had swept parliamentary elections and the presidency . NN NN IN CD VBD TO DT NN IN DT JJ NN NN `` NNP `` WDT IN NN VBD DT JJ NN CC IN CD VBD VBN JJ NNS CC DT NN . A ' shock therapy ' program during the early 1990s enabled the country to transform its economy into one of the most robust in Central Europe , but Poland still faces the lingering challenges of high unemployment , underdeveloped and dilapidated infrastructure , and a poor rural underclass . DT `` NN NN `` NN IN DT JJ NNS VBD DT NN TO VB PRP$ NN IN CD IN DT RBS JJ IN NNP NNP , CC NNP RB VBZ DT VBG NNS IN JJ NN , JJ CC JJ NN , CC DT JJ JJ NN . Poland joined NATO in 1999 and the European Union in 2004 . NNP VBD NNP IN CD CC DT NNP NNP IN CD . With its transformation to a democratic , market-oriented country largely completed , Poland is an increasingly active member of Euro-Atlantic organizations . IN PRP$ NN TO DT JJ , JJ NN RB VBN , NNP VBZ DT RB JJ NN IN JJ NNS . This thoroughly modern market economy features a high-tech agricultural sector , state-of-the-art industry with world-leading firms in pharmaceuticals , maritime shipping and renewable energy , and a high dependence on foreign trade . DT RB JJ NN NN VBZ DT JJ JJ NN , JJ NN IN JJ NNS IN NNS , NN NN CC JJ NN , CC DT JJ NN IN JJ NN . Denmark is a member of the European Union ( EU ) ; Danish legislation and regulations conform to EU standards on almost all issues . NNP VBZ DT NN IN DT NNP NNP LRB NNP RRB ; JJ NN CC NNS VBP IN NNP NNS IN RB DT NNS . Danes enjoy among the highest standards of living in the world and the Danish economy is characterized by extensive government welfare measures and an equitable distribution of income . NNS VBP IN DT JJS NNS IN VBG IN DT NN CC DT JJ NN VBZ VBN IN JJ NN NN NNS CC DT JJ NN IN NN . Denmark is a net exporter of food and energy and enjoys a comfortable balance of payments surplus , but depends on imports of raw materials for the manufacturing sector . NNP VBZ DT JJ NN IN NN CC NN CC VBZ DT JJ NN IN NNS NN , CC VBZ IN NNS IN JJ NNS IN DT NN NN . Within the EU , Denmark is among the strongest supporters of trade liberalization . IN DT NNP , NNP VBZ IN DT JJS NNS IN NN NN . After a long consumption-driven upswing , Denmark 's economy began slowing in 2007 with the end of a housing boom . IN DT JJ JJ NN , NNP POS NN VBD VBG IN CD IN DT NN IN DT NN NN . Housing prices dropped markedly in 2008 - 9 . NN NNS VBD RB IN CD : CD . The global financial crisis has exacerbated this cyclical slowdown through increased borrowing costs and lower export demand , consumer confidence , and investment . DT JJ JJ NN VBZ VBN DT JJ NN IN VBN NN NNS CC JJR NN NN , NN NN , CC NN . The global financial crises cut Danish GDP by 0.9 % in 2008 and 5.2 % in 2009 . DT JJ JJ NNS VBD JJ NN IN CD NN IN CD CC CD NN IN CD . Historically low levels of unemployment rose sharply with the recession but remain below 5 % , based on the national measure , about half the level of the EU ; harmonized to OECD standards the unemployment rate was about 8 % at the end of 2010 . RB JJ NNS IN NN VBD RB IN DT NN CC VBP IN CD NN , VBN IN DT JJ NN , IN PDT DT NN IN DT NNP ; VBN TO NNP NNS DT NN NN VBD IN CD NN IN DT NN IN CD . Denmark made a modest recovery in 2010 in part because of increased government spending . NNP VBD DT JJ NN IN CD IN NN IN IN VBN NN NN . An impending decline in the ratio of workers to retirees will be a major long-term issue . DT JJ NN IN DT NN IN NNS TO NNS MD VB DT JJ JJ NN . Denmark maintained a healthy budget surplus for many years up to 2008 , but the budget balance swung into deficit during 2009 - 10 . NNP VBD DT JJ NN NN IN JJ NNS IN TO CD , CC DT NN NN VBD IN NN IN CD IN CD . Nonetheless , Denmark 's fiscal position remains among the strongest in the EU . RB , NNP POS JJ NN VBZ IN DT JJS IN DT NNP . Despite previously meeting the criteria to join the European Economic and Monetary Union ( EMU ) , so far Denmark has decided not to join , although the Danish krone remains pegged to the euro . IN RB VBG DT NNS TO VB DT JJ NNP CC NNP NNP LRB NNP RRB , RB RB NNP VBZ VBN RB TO VB , IN DT JJ NN VBZ VBN TO DT NN . The eastern half of the island of New Guinea - second largest in the world - was divided between Germany ( north ) and the UK ( south ) in 1885 . DT JJ NN IN DT NN IN NNP NNP IN JJ JJS IN DT NN : VBD VBN IN NNP LRB NN RRB CC DT NNP LRB NN RRB IN CD . The latter area was transferred to Australia in 1902 , which occupied the northern portion during World War I and continued to administer the combined areas until independence in 1975 . DT JJ NN VBD VBN TO NNP IN CD , WDT VBD DT JJ NN IN NNP NNP NNP CC VBD TO VB DT JJ NNS IN NN IN CD . A nine-year secessionist revolt on the island of Bougainville ended in 1997 after claiming some 20,000 lives . DT JJ NN NN IN DT NN IN NNP VBD IN CD IN VBG DT CD NNS . The UK established a protectorate over the Solomon Islands in the 1890s . DT NNP VBD DT NN IN DT NNP NNP IN DT NNS . Some of the most bitter fighting of World War II occurred on this archipelago . DT IN DT RBS JJ NN IN NNP NNP NNP VBD IN DT NN . Self-government was achieved in 1976 and independence two years later . NN VBD VBN IN CD CC NN CD NNS RB . Ethnic violence , government malfeasance , and endemic crime have undermined stability and civil society . NNP NN , NN NN , CC JJ NN VBP VBN NN CC JJ NN . In June 2003 , then Prime Minister Sir Allan KEMAKEZA sought the assistance of Australia in reestablishing law and order ; the following month , an Australian-led multinational force arrived to restore peace and disarm ethnic militias . IN NNP CD , RB NNP NNP NNP NNP NNP VBD DT NN IN NNP IN VBG NN CC NN ; DT VBG NN , DT JJ JJ NN VBD TO VB NN CC NN JJ NNS . The Regional Assistance Mission to the Solomon Islands ( RAMSI ) has generally been effective in restoring law and order and rebuilding government institutions . DT NNP NNP NNP TO DT NNP NNP LRB NNP RRB VBZ RB VBN JJ IN VBG NN CC NN CC NN NN NNS . THE OLIVE-TREE ridiculed the Fig-Tree because , while she was green all the year round , the Fig-Tree changed its leaves with the seasons . DT NN VBD DT NN IN , IN PRP VBD JJ PDT DT NN NN , DT NN VBD PRP$ NNS IN DT NNS . A shower of snow fell upon them , and , finding the Olive full of foliage , it settled upon its branches and broke them down with its weight , at once despoiling it of its beauty and killing the tree . DT NN IN NN VBD IN PRP , CC , VBG DT NN JJ IN NN , PRP VBD IN PRP$ NNS CC VBD PRP RP IN PRP$ NN , IN RB VBG PRP IN PRP$ NN CC VBG DT NN . But finding the Fig-Tree denuded of leaves , the snow fell through to the ground , and did not injure it at all . CC VBG DT NN VBN IN NNS , DT NN VBD IN TO DT NN , CC VBD RB VB PRP IN DT . AN Editor who was always vaunting the purity , enterprise , and fearlessness of his paper was pained to observe that he got no subscribers . DT NN WP VBD RB VBG DT NN , NN , CC NN IN PRP$ NN VBD VBN TO VB IN PRP VBD DT NNS . One day it occurred to him to stop saying that his paper was pure and enterprising and fearless , and make it so . CD NN PRP VBD TO PRP TO VB VBG IN PRP$ NN VBD JJ CC JJ CC JJ , CC VB PRP RB . ' If these are not good qualities , ' he reasoned , ' it is folly to claim them . ' `` IN DT VBP RB JJ NNS , `` PRP VBD , `` PRP VBZ RB TO VB PRP . `` Under the new policy he got so many subscribers that his rivals endeavoured to discover the secret of his prosperity , but he kept it , and when he died it died with him . IN DT JJ NN PRP VBD RB JJ NNS IN PRP$ NNS VBD TO VB DT NN IN PRP$ NN , CC PRP VBD PRP , CC WRB PRP VBD PRP VBD IN PRP . On July 8 , 1947 , witnesses claim a spaceship with five aliens aboard crashed on a sheep-and-cattle ranch outside Roswell , an incident they say has been covered up by the military . IN NNP CD , CD , NNS VBP DT NN IN CD NNS IN VBN IN DT JJ NN IN NNP , DT NN PRP VBP VBZ VBN VBN RP IN DT NN . March 31 , 1948 , nine months after that day , Al Gore was born . NNP CD , CD , CD NNS IN DT NN , NNP NNP VBD VBN . That clears up a lot of things . DT VBZ RP DT NN IN NNS . Venezuelan President Hugo Chavez has rallied hundreds of thousands of supporters in Caracas in advance of the December 3 presidential vote . JJ NNP NNP NNP VBZ VBN NNS IN NNS IN NNS IN NNP IN NN IN DT NNP CD JJ NN . Mr. Chavez told the crowd Sunday that his goal is not to merely win , but to outdo previous triumphs in a way that is overwhelming and crushing . NNP NNP VBD DT NN NNP IN PRP$ NN VBZ RB TO RB VB , CC TO VB JJ NNS IN DT NN WDT VBZ JJ CC NN . Polls show Mr. Chavez well ahead of his opponent Manuel Rosales . NNS VBP NNP NNP RB RB IN PRP$ NN NNP NNP . Mr. Chavez has built strong support in Venezuela for his criticism of the Bush administration and for programs he says will improve the lives of the nation 's poor . NNP NNP VBZ VBN JJ NN IN NNP IN PRP$ NN IN DT NNP NN CC IN NNS PRP VBZ MD VB DT NNS IN DT NN POS NN . Mr. Rosales is the governor of Zulia state . NNP NNP VBZ DT NN IN NNP NN . He has criticized Chavez ' ties to Cuba 's Fidel Castro , saying Venezuelans want modernity , not the Cubanization of their country . PRP VBZ VBN NNP POS NNS TO NNP POS NNP NNP , VBG NNS VBP NN , RB DT NN IN PRP$ NN . Mr. Rosales held a campaign rally Saturday that also attracted hundreds of thousands of supporters . NNP NNP VBD DT NN NN NNP WDT RB VBD NNS IN NNS IN NNS . Officials say a journalist with state-controlled Russian television was found dead in his Moscow apartment early Friday . NNS VBP DT NN IN JJ JJ NN VBD VBN JJ IN PRP$ NNP NN RB NNP . Firefighters who came to put out a fire at his apartment found the body of 32-year-old Ilyas Shurpayev . NNS WP VBD TO VB RP DT NN IN PRP$ NN VBD DT NN IN JJ NNP NNP . Police said he appeared to have been strangled with a belt and had multiple stab wounds . NNS VBD PRP VBD TO VB VBN VBN IN DT NN CC VBD JJ NN NNS . Shurpayev moved to Moscow from the mostly Muslim Dagestan province and had reported extensively from Russia 's violence-ridden North Caucasus region and neighboring areas of Georgia . NNP VBD TO NNP IN DT RB JJ NNP NN CC VBD VBN RB IN NNP POS JJ NNP NNP NN CC JJ NNS IN NNP . More than a dozen journalists have been slain in contract-style killings in Russia since 2000 . JJR IN DT CD NNS VBP VBN VBN IN JJ NNS IN NNP IN CD . Many journalists appear to have been targeted for beatings and killings because of their attempts to report on allegations of official corruption . JJ NNS VBP TO VB VBN VBN IN NNS CC NNS IN IN PRP$ NNS TO VB IN NNS IN JJ NN . Iranian state media are reporting that Iran is operating nearly 500 new uranium-enriching centrifuges at its Natanz nuclear facility . JJ NN NNS VBP VBG IN NNP VBZ VBG RB CD JJ JJ NNS IN PRP$ NNP JJ NN . The Islamic Republic News Agency quoted Friday an unnamed source familiar with the program as saying that the centrifuges are part of 3,000 installed last year at the complex . DT NNP NNP NNP NNP VBD NNP DT JJ NN JJ IN DT NN IN VBG IN DT NNS VBP NN IN CD VBN JJ NN IN DT NN . On Tuesday , Iranian President Mahmoud Ahmadinejad announced Tehran plans to install 6,000 new centrifuges at Natanz . IN NNP , JJ NNP NNP NNP VBD NNP VBZ TO VB CD JJ NNS IN NNP . Meanwhile , a senior Iranian nuclear official denied Iran is having technical difficulties in expanding its nuclear activities . RB , DT JJ JJ JJ NN VBD NNP VBZ VBG JJ NNS IN VBG PRP$ JJ NNS . Iran currently faces three sets of United Nations Security Council sanctions and international isolation for its refusal to halt uranium enrichment , which can be used in building nuclear weapons . NNP RB VBZ CD NNS IN NNP NNP NNP NNP NNS CC JJ NN IN PRP$ NN TO VB NN NN , WDT MD VB VBN IN VBG JJ NNS . The United States has accused Iran of secretly trying to develop nuclear weapons . DT NNP NNPS VBZ VBN NNP IN RB VBG TO VB JJ NNS . Iran says its nuclear program is for peaceful purposes . NNP VBZ PRP$ JJ NN VBZ IN JJ NNS . Authorities in Afghanistan say four policemen were killed and four others wounded by militants who attacked a security checkpoint in southern Kandahar province . NNS IN NNP VBP CD NNS VBD VBN CC CD NNS VBN IN NNS WP VBD DT NN NN IN JJ NNP NN . Police say one militant also was killed during the assault - a drive-by shooting - late Sunday in Maywand district , west of Kandahar city . NNS VBP CD NN RB VBD VBN IN DT NN IN DT JJ NN IN JJ NNP IN NNP NN , NN IN NNP NN . Less than 24 hours earlier , two U.S. soldiers were wounded in an attack on their patrol in southern Zabul province . RBR IN CD NNS RBR , CD NNP NNS VBD VBN IN DT NN IN PRP$ NN IN JJ NNP NN . Two weeks ago , American and Afghan forces launched a winter offensive , dubbed ' Operation Lightning Freedom ' , to hunt for Taleban militants ahead of planned parliamentary elections next year . CD NNS RB , NNP CC JJ NNS VBD DT NN NN , VBN `` NNP NNP NNP `` , TO VB IN NNP NNS RB IN JJ JJ NNS IN NN . The operation is aimed at strengthening security to ensure that the parliamentary election , in about four months , can be conducted as smoothly as Afghanistan 's landmark presidential ballot in October . DT NN VBZ VBN IN VBG NN TO VB IN DT JJ NN , IN IN CD NNS , MD VB VBN RB RB IN NNP POS NN JJ NN IN NNP . Australian Prime Minister John Howard says his government has received information about a specific terror threat against the country . JJ NNP NNP NNP NNP VBZ PRP$ NN VBZ VBN NN IN DT JJ NN NN IN DT NN . Mr. Howard told a news conference Wednesday , the government received information this week that caused ' serious concern . ' NNP NNP VBD DT NN NN NNP , DT NN VBD NN DT NN WDT VBD `` JJ NN . `` He would not provide details . PRP MD RB VB NNS . The prime minister said he would try to push new anti-terror legislation through parliament Wednesday , to help law enforcement agencies fight the threat . DT JJ NN VBD PRP MD VB TO VB JJ JJ NN IN NN NNP , TO VB NN NN NNS VBP DT NN . Counter-terrorism laws under consideration in Australia would allow suspects to be electronically watched or held in custody for up to 14 days without charge . NN NNS IN NN IN NNP MD VB NNS TO VB RB VBN CC VBN IN NN IN RB TO CD NNS IN NN . They would also create tighter checks on citizenship applicants and authorize jail terms for inciting violence . PRP MD RB VB JJR NNS IN NN NNS CC VB NN NNS IN VBG NN . Rights organizations have criticized the measures , saying they threaten civil liberties and violate international law . NNS NNS VBP VBN DT NNS , VBG PRP VBP JJ NNS CC VBP JJ NN . U.S. Senate investigators say the former head of the U.N. oil-for-food program for Iraq may have netted more than $ 1 million through oil deals with Saddam Hussein 's government . NNP NNP NNS VBP DT JJ NN IN DT NNP NN NN IN NNP MD VB VBN JJR IN $ CD CD IN NN NNS IN NNP NNP POS NN . A Senate panel has released Iraqi Oil Ministry documents that suggest program chief Benon Sevan was given the right to sell Iraqi oil contracts . DT NNP NN VBZ VBN JJ NNP NNP NNS WDT VBP NN NN NNP NNP VBD VBN DT NN TO VB JJ NN NNS . The panel began hearings Tuesday on allegations of corruption in the now-defunct United Nations-run program . DT NN VBD NNS NNP IN NNS IN NN IN DT JJ NNP NNP NN . A U.N. commission headed by former U.S. Federal Reserve Chairman Paul Volcker is conducting a separate investigation into whether Mr. Sevan received money through the program . DT NNP NN VBN IN JJ NNP NNP NNP NNP NNP NNP VBZ VBG DT JJ NN IN IN NNP NNP VBD NN IN DT NN . The commission 's preliminary report said Mr. Sevan solicited oil deals for a Panamanian company , an act the commission called a ' conflict of interest . ' DT NN POS JJ NN VBD NNP NNP VBD NN NNS IN DT JJ NN , DT NN DT NN VBD DT `` NN IN NN . `` Mr. Sevan has repeatedly denied any wrongdoing . NNP NNP VBZ RB VBN DT NN . The death toll from a gas explosion at a Chinese coal mine has climbed to 87 , with rescuers still searching for 21 miners . DT NN NN IN DT NN NN IN DT JJ NN NN VBZ VBN TO CD , IN NNS RB VBG IN CD NNS . Officials with the local coal mine safety bureau said Friday that gas density in the mine is so high it makes rescue efforts dangerous . NNS IN DT JJ NN NN NN NN VBD NNP IN NN NN IN DT NN VBZ RB JJ PRP VBZ NN NNS JJ . The latest explosion happened Wednesday at the Liuguantun mine near Tangshan city in Hebei province . DT JJS NN VBD NNP IN DT NNP NN IN NNP NN IN NNP NN . Only 30 miners are known to have survived the blast . RB CD NNS VBP VBN TO VB VBN DT NN . China 's mines are the deadliest in the world . NNP POS NNS VBP DT JJS IN DT NN . Thousands of miners are killed each year . NNS IN NNS VBP VBN DT NN . On Tuesday , rescuers recovered the body of the last miner missing in a November 27 coal dust explosion in Heilongjiang province , bringing the number of deaths in that blast to 171 . IN NNP , NNS VBD DT NN IN DT JJ NN VBG IN DT NNP CD NN NN NN IN NNP NN , VBG DT NN IN NNS IN DT NN TO CD . China 's Xinhua news agency reports the top Communist Party official in a northern Chinese city and 26 other officials have gone on trial for their alleged involvement in a deadly attack on a shantytown . NNP POS NNP NN NN VBZ DT JJ NNP NNP NN IN DT JJ JJ NN CC CD JJ NNS VBP VBN IN NN IN PRP$ JJ NN IN DT JJ NN IN DT NN . More than 200 people attended the opening of the trial in Hebei province . JJR IN CD NNS VBD DT NN IN DT NN IN NNP NN . The news agency says last June , hundreds of apparently hired thugs armed with guns , clubs and knives killed six people and injured dozens of others protesting land seizures in the village of Shengyou . DT NN NN VBZ JJ NNP , NNS IN RB VBN NNS VBN IN NNS , NNS CC NNS VBD CD NNS CC JJ NNS IN NNS VBG NN NNS IN DT NN IN NNP . Villagers were angry over the low compensation officials offered for their land . NNS VBD JJ IN DT JJ NN NNS VBN IN PRP$ NN . Such disputes have become more common as Chinese developers turn residential and farm land into shopping malls , apartment buildings and other projects . JJ NNS VBP VBN RBR JJ IN JJ NNS VBP JJ CC NN NN IN NN NNS , NN NNS CC JJ NNS . Residents often accuse authorities of forcing them off land without proper compensation . NNS RB VBP NNS IN VBG PRP RP NN IN JJ NN . The author of new book about Burmese military ruler Than Shwe describes the general as smarter and better informed than most people realize , but also ruthless and adept at manipulating others . DT NN IN JJ NN IN JJ JJ NN IN NNP VBZ DT JJ IN NN CC JJR VBN IN JJS NNS VBP , CC RB JJ CC JJ IN VBG NNS . During interviews promoting the book , entitled Unmasking Than Shwe , British journalist Benedict Rogers said he relied on conversations with Burmese military defectors and foreign diplomats to gain an insight into one of the world 's most secretive leaders . IN NNS VBG DT NN , VBN VBG NNP NNP , JJ NN NNP NNP VBD PRP VBD IN NNS IN JJ JJ NNS CC JJ NNS TO VB DT NN IN CD IN DT NN POS RBS JJ NNS . Rogers says Than Shwe 's reputed interest in astrology should not lead outsiders to underestimate him . NNP VBZ NNP NNP POS JJ NN IN NN MD RB VB NNS TO VB PRP . He said the general is an astute judge of people and trained in psychological warfare , making him an expert at divide-and-rule tactics . PRP VBD DT NN VBZ DT JJ NN IN NNS CC VBN IN JJ NN , VBG PRP DT NN IN JJ NNS . The author says no one should believe that planned elections this year will loosen Than Shwe 's grip on power . DT NN VBZ DT NN MD VB IN JJ NNS DT NN MD VB NNP NNP POS NN IN NN . Rogers also says the actions documented in his book provide ample grounds for Than Shwe to be brought to trial for war crimes and crimes against humanity . NNP RB VBZ DT NNS VBN IN PRP$ NN VB JJ NNS IN NNP NNP TO VB VBN TO NN IN NN NNS CC NNS IN NN . Israel has re-opened its border crossings with the Gaza Strip . NNP VBZ VBN PRP$ NN NNS IN DT NNP NNP . Military spokesman Peter Lerner says the Sufa , Karni and the Nahal Oz crossings opened Wednesday . NNP NN NNP NNP VBZ DT NNP , NNP CC DT NNP NNP NNS VBD NNP . He said cement shipments will delivered for the first time in a year into the Gaza Strip . PRP VBD NN NNS MD VBN IN DT JJ NN IN DT NN IN DT NNP NNP . The border crossings were closed on Tuesday in response to a rocket attack on southern Israel on Monday . DT NN NNS VBD VBN IN NNP IN NN TO DT NN NN IN JJ NNP IN NNP . There were no causalities in the incident . EX VBD DT NNS IN DT NN . Israeli Prime Minister Ehud Olmert Tuesday warned Palestinian militants that Israel will respond militarily if they continue attacks from the Gaza Strip in violation of a truce . JJ NNP NNP NNP NNP NNP VBD JJ NNS IN NNP MD VB RB IN PRP VBP NNS IN DT NNP NNP IN NN IN DT NN . He said Israel 's restraint in the face of rocket attacks up to now should not be interpreted as a weakness . PRP VBD NNP POS NN IN DT NN IN NN NNS IN TO RB MD RB VB VBN IN DT NN . South African health officials say they have confirmed six new cases of a deadly and extremely drug-resistant strain of tuberculosis . JJ JJ NN NNS VBP PRP VBP VBN CD JJ NNS IN DT JJ CC RB JJ NN IN NN . The officials Wednesday said five of the patients diagnosed with so-called XDR-TB are from Gauteng province , which includes Johannesburg . DT NNS NNP VBD CD IN DT NNS VBN IN JJ NN VBP IN NNP NN , WDT VBZ NNP . A spokesman said three of the patients have been hospitalized , while authorities try to track down the other three . DT NN VBD CD IN DT NNS VBP VBN VBN , IN NNS VBP TO VB RP DT JJ CD . The find has fueled fears the strain may be spreading . DT NN VBZ VBN NNS DT NN MD VB VBG . A recent outbreak in South Africa 's Kwazulu-Natal province killed at least 55 people . DT JJ NN IN NNP NNP POS NNP NN VBN IN JJS CD NNS . South African Health Minister Mento Tshabalala-Msimang has requested an urgent meeting with the World Health Organization to deal with the outbreak . JJ JJ NN NN NNP NNP VBZ VBN DT JJ NN IN DT NNP NNP NNP TO VB IN DT NN . The world health body has warned that XDR-TB is a virulent form of tuberculosis resistant to most , perhaps all of the drugs used to treat it . DT NN NN NN VBZ VBN IN NNP VBZ DT JJ NN IN NN NN IN RBS , RB DT IN DT NNS VBN TO VB PRP . Arsonists burned down an Afghan school for boys and girls in Kandahar early Sunday after another school was saved from the same fate in another part of the city . NNS VBD RP DT JJ NN IN NNS CC NNS IN NNP JJ NNP IN DT NN VBD VBN IN DT JJ NN IN DT NN IN DT NN . A local education official , provincial education chief Hayabullah Rafiqi , blames both incidents on Islamic insurgents . DT JJ NN NN , JJ NN NN NNP NNP , VBZ DT NNS IN JJ NNS . At least two school workers were rescued from the Qabail Primary School before it burned down Sunday . IN JJS CD NN NNS VBD VBN IN DT NNP NNP NNP IN PRP VBD RP NNP . The education official says that attack came hours after gunmen tried to set fire to another school in Kandahar , but its guards scared away the suspected Taleban arsonists . DT NN NN VBZ IN NN VBD NNS IN NNS VBD TO VB NN TO DT NN IN NNP , CC PRP$ NNS VBN RB DT JJ NNP NNS . The Taleban is against educating women or sending them for work outside the house . DT NNP VBZ IN VBG NNS CC VBG PRP IN NN IN DT NN . There has been a spate of attacks on schools that accept girls across Afghanistan since U.S.-led forces ousted the Taleban in 2001 . EX VBZ VBN DT NN IN NNS IN NNS WDT VBP NNS IN NNP IN JJ NNS VBD DT NNP IN CD . Chinese President Hu Jintao marked New Year 's Eve Saturday with a speech stressing the country 's commitment to peaceful development . JJ NNP NNP NNP VBD NNP NNP POS NNP NNP IN DT NN VBG DT NN POS NN TO JJ NN . In a speech broadcast on China Central Television , Mr. Hu said China 's development is peaceful , open , cooperative and harmonious . IN DT NN NN IN NNP NNP NNP , NNP NNP VBD NNP POS NN VBZ JJ , JJ , JJ CC JJ . He said the Chinese people will strive for world peace through their own development . PRP VBD DT JJ NNS MD VB IN NN NN IN PRP$ JJ NN . The Chinese leader offered New Year 's greetings to people in Taiwan , and said Beijing would seek peaceful reunification with the island , which China regards as a rogue territory . DT JJ NN VBD NNP NNP POS NNS TO NNS IN NNP , CC VBD NNP MD VB JJ NN IN DT NN , WDT NNP VBZ IN DT NN NN . He added that China would never sway from the ' one China ' principle . PRP VBD IN NNP MD RB VB IN DT `` CD NNP `` NN . Afghan officials say a mass grave discovered in eastern Afghanistan is thought to contain the bodies of more than 500 soldiers of the communist regime that was toppled in 1992 . JJ NNS VBP DT NN NN VBN IN JJ NNP VBZ VBN TO VB DT NNS IN JJR IN CD NNS IN DT JJ NN WDT VBD VBN IN CD . Interior Ministry spokesman Yousuf Stanizai says the grave was discovered in Paktika and a team has been sent there to investigate . NNP NNP NN NNP NNP VBZ DT NN VBD VBN IN NNP CC DT NN VBZ VBN VBN RB TO VB . He said there are reports that more than 500 bodies are in the grave . PRP VBD EX VBP NNS IN JJR IN CD NNS VBP IN DT NN . Officials believe they were defeated soldiers of Soviet-backed President Najibullah , who were killed after they surrendered to the mujahedin fighters . NNS VBP PRP VBD VBN NNS IN JJ NNP NNP , WP VBD VBN IN PRP VBD TO DT NN NNS . Mr. Najibullah was executed later by the Taleban in 1996 . NNP NNP VBD VBN RB IN DT NNP IN CD . If proven TRUE , it would be the first mass grave found in Afghanistan containing communist soldiers . IN VBN JJ , PRP MD VB DT JJ NN NN VBN IN NNP VBG JJ NNS . Other graves have been found with the bodies of thousands of anti-communist mujahedin fighters . JJ NNS VBP VBN VBN IN DT NNS IN NNS IN JJ NN NNS . French rally driver Sebastien Loeb has continued his dominance of the Rally of Turkey , stretching his lead to more than one minute after the second day of the event . JJ NN NN NNP NNP VBZ VBN PRP$ NN IN DT NN IN NNP , VBG PRP$ NN TO JJR IN CD NN IN DT JJ NN IN DT NN . Loeb , in a Citroen , expanded his lead to 1.16 minutes over Subaru driver Petter Solberg of Norway . NNP , IN DT NNP , VBD PRP$ NN TO CD NNS IN NNP NN NNP NNP IN NNP . Former world champion Marcus Gronholm of Finland in a Peugeot is third overall , 1.24 behind Loeb . JJ NN NN NNP NNP IN NNP IN DT NNP VBZ JJ JJ , CD IN NNP . Mitsubishi 's Gigi Galli of Italy , who briefly led the rally Friday , dropped to ninth place after suffering a turbo charger malfunction in the 10th stage . NNP POS NNP NNP IN NNP , WP RB VBD DT NN NNP , VBD TO JJ NN IN VBG DT NN NN NN IN DT JJ NN . Loeb now has a total time of 3:34:33.2 hours . NNP RB VBZ DT JJ NN IN CD NNS . The French driver leads the season standings with 45 points . DT JJ NN VBZ DT NN NNS IN CD NNS . Petter Solberg and Markko Martin of Estonia are tied for second with 34 points . NNP NNP CC NNP NNP IN NNP VBP VBN IN JJ IN CD NNS . Spain 's Interior Minister Jose Antonio Alonso says Croatian war crimes suspect General Ante Gotovina will be extradited to the United Nations tribunal in The Hague as soon possible . NNP POS NNP NNP NNP NNP NNP VBZ JJ NN NNS VBP NNP NNP NNP MD VB VBN TO DT NNP NNPS NN IN DT NNP IN RB JJ . He did not specify a time , but police officials say they expect it to take place early Saturday . PRP VBD RB VB DT NN , CC NN NNS VBP PRP VBP PRP TO VB NN JJ NNP . Police arrested General Gotovina in Spain 's Canary Islands Wednesday . NN VBN NNP NNP IN NNP POS NNP NNP NNP . The tribunal indicted him in 2001 for the deaths of 150 civilians in a Serb-held region of Croatia in 1995 . DT NN VBD PRP IN CD IN DT NNS IN CD NNS IN DT JJ NN IN NNP IN CD . The arrest has increased pressure on Serbia to capture the tribunal 's most wanted suspects , former Bosnian Serb leader Radovan Karadzic and military commander General Ratko Mladic . DT NN VBZ VBN NN IN NNP TO VB DT NN POS RBS JJ NNS , JJ JJ JJ NN NNP NNP CC JJ NN NNP NNP NNP . Serbian authorities Friday turned over to U.N. prosecutors a secret file on General Mladic , including a number of pages they earlier had withheld . JJ NNS NNP VBD RP TO NNP NNS DT JJ NN IN NNP NNP , VBG DT NN IN NNS PRP RB VBD VBN . In Belgrade , visiting French Foreign Minister Philippe Douste-Blazy urged Serbian officials to arrest and surrender the two fugitives . IN NNP , VBG JJ NNP NNP NNP NNP VBD JJ NNS TO VB CC VB DT CD NNS . Western security officials in Afghanistan say searchers have found the wreckage of an Afghan passenger jet missing since Thursday . JJ NN NNS IN NNP VBP NNS VBP VBN DT NN IN DT JJ NN NN VBG IN NNP . Security officials say the Kam Air Boeing 737 was found Friday near Kabul , the Afghan capital . NN NNS VBP DT NNP NNP NNP CD VBD VBN NNP IN NNP , DT JJ NN . It was not immediately clear if any survivors were found . PRP VBD RB RB JJ IN DT NNS VBD VBN . Airline officials say the plane was carrying 104 people , including a number of foreigners . NN NNS VBP DT NN VBD VBG CD NNS , VBG DT NN IN NNS . Nine of the passengers are believed to be Turkish nationals , and three were American women working for a health services agency . CD IN DT NNS VBP VBN TO VB JJ NNS , CC CD VBD JJ NNS VBG IN DT NN NNS NN . Six Russian crew members and two Afghan staff were also on board . CD JJ NN NNS CC CD JJ NN VBD RB IN NN . The plane was traveling from the western city of Herat to Kabul , but was turned away from the capital 's airport because of a severe snow storm . DT NN VBD VBG IN DT JJ NN IN NNP TO NNP , CC VBD VBN RB IN DT NN POS NN IN IN DT JJ NN NN . Officials say the pilot had contacted an airport in neighboring Pakistan seeking permission to land , but that the plane never arrived there . NNS VBP DT NN VBD VBN DT NN IN VBG NNP VBG NN TO NN , CC IN DT NN RB VBD RB . Thousands of demonstrators have marched in Oaxaca , Mexico , to continue their call for the resignation of the state 's governor . NNS IN NNS VBP VBN IN NNP , NNP , TO VB PRP$ NN IN DT NN IN DT NN POS NN . A student was wounded Sunday when a gunmen fired on a group of protesters . DT NN VBD VBN NNP WRB DT NNS VBN IN DT NN IN NNS . Thousands of protesters marched through the city center and gathered near Mexican federal police -- who were sent to restore order in Oaxaca . NNS IN NNS VBD IN DT NN NN CC VBD IN JJ JJ NNS : WP VBD VBN TO VB NN IN NNP . Police searched vehicles for weapons . NNS VBD NNS IN NNS . For the past five months , protesters have demanded the resignation of Oaxaca State Governor Ulises Ruiz over corruption allegations . IN DT JJ CD NNS , NNS VBP VBN DT NN IN NNP NNP NNP NNP NNP IN NN NNS . Ruiz has refused to step down . NNP VBZ VBN TO VB RB . On Wednesday , police re-opened a central square in the city after clearing out protesters . IN NNP , NN VBD DT JJ NN IN DT NN IN VBG RP NNS . At least nine people , including a U.S. journalist , have been killed in the crisis in recent weeks . IN JJS CD NNS , VBG DT NNP NN , VBP VBN VBN IN DT NN IN JJ NNS . Chinese authorities are being ordered to prepare for new flooding as the death toll from weeks of weather-related disasters continues to rise . JJ NNS VBP VBG VBN TO VB IN JJ NN IN DT NN NN IN NNS IN JJ NNS VBZ TO VB . The official Xinhua news agency said Monday that two more periods of heavy rainfall are forecast across China . DT JJ NNP NN NN VBD NNP IN CD JJR NNS IN JJ NN VBP VBN IN NNP . It said local authorities have been instructed to evacuate residents from high-risk areas and set up emergency shelters well in advance . PRP VBD JJ NNS VBP VBN VBN TO VB NNS IN JJ NNS CC VB RP NN NNS RB IN NN . More than 2,300 people have died across China in weeks of flooding and mudslides triggered by torrential rains . JJR IN CD NNS VBP VBN IN NNP IN NNS IN NN CC NNS VBN IN JJ NNS . The toll now stands at 1,254 dead in Zhouqu , a town in northwest Gansu province that was partly buried by mud a week ago . DT NN RB VBZ IN CD JJ IN NNP , DT NN IN JJ NNP NN WDT VBD RB VBN IN NN DT NN RB . A town official told the French news agency that roads to the town are still clogged with mud , hampering relief efforts . DT NN NN VBD DT JJ NN NN IN NNS TO DT NN VBP RB VBN IN NN , VBG NN NNS . Gunmen killed at least 31 people in Pakistan 's southern port city of Karachi as a by-election was held Sunday to replace a lawmaker murdered earlier this year . NNS VBD IN JJS CD NNS IN NNP POS JJ JJ NN IN NNP IN DT NN VBD VBN NNP TO VB DT NN VBN RBR DT NN . The violence broke out Saturday night when gunmen opened fire in several parts of the city ahead of the vote . DT NN VBD RP NNP NN WRB NNS VBD NN IN JJ NNS IN DT NN RB IN DT NN . Police say they have arrested at least 20 suspects in connection with the killings . NNS VBP PRP VBP VBN IN JJS CD NNS IN NN IN DT NNS . The election was being held to replace provincial lawmaker Raza Haider from the Muttahida Quami Movement ( MQM ) , who was gunned down in August . DT NN VBD VBG VBN TO VB JJ NN NNP NNP IN DT NNP NNP NNP LRB NNP RRB , WP VBD VBN RB IN NNP . The assassination sparked four days of violence that killed at least 85 people . DT NN VBD CD NNS IN NN WDT VBD IN JJS CD NNS . MQM , which largely represents the Urdu-speaking community , and the rival Awami National Party , representing ethnic Pashtuns , blamed each other for the violence . NNP , WDT RB VBZ DT JJ NN , CC DT JJ NNP NNP NNP , VBG JJ NNS , VBN DT NN IN DT NN . Karachi has been plagued by ethnic and sectarian killings , crime and kidnappings . NNP VBZ VBN VBN IN JJ CC JJ NNS , NN CC NNS . Ivory Coast 's prime minister says he is ' convinced ' that new African Union president Denis Sassou-Nguesso will fully support the U.N. peace plan for his country . NNP NNP POS JJ NN VBZ PRP VBZ `` VBN `` IN JJ NNP NNP NN NNP NNP MD RB VB DT NNP NN NN IN PRP$ NN . Charles Konan Banny spoke to reporters Sunday after meeting with the AU and Congolese president in the Republic of Congo 's capital , Brazzaville . NNP NNP NNP VBD TO NNS NNP IN VBG IN DT NNP CC JJ NN IN DT NNP IN NNP POS NN , NNP . Mr. Sassou-Nguesso was named AU president last week after Sudan 's bid to head the 53-nation block failed because of concerns over its human rights record . NNP NNP VBD VBN NNP NN JJ NN IN NNP POS NN TO VB DT JJ NN VBD IN IN NNS IN PRP$ JJ NNS NN . Mr. Banny heads a transitional government tasked with arranging elections in Ivory Coast , which has been split between rebel-held and government-controlled areas since a 2002 civil war . NNP NNP VBZ DT JJ NN VBD IN VBG NNS IN NNP NNP , WDT VBZ VBN VBN IN JJ CC JJ NNS IN DT CD JJ NN . The United Nations removed some staff from Ivory Coast following attacks on U.N. offices there earlier this month . DT NNP NNPS VBD DT NN IN NNP NNP VBG NNS IN NNP NNS RB RBR DT NN . The attacks were carried out by militant supporters of President Laurent Gbagbo , after U.N.-backed foreign mediators recommended that parliament be dissolved to advance the peace process . DT NNS VBD VBN RP IN JJ NNS IN NNP NNP NNP , IN JJ JJ NNS VBD DT NN VB VBN TO VB DT NN NN . The White House has expressed doubts about a Russian proposal for a Middle East peace conference , saying diplomats should focus on Israel 's upcoming Gaza withdrawal . DT NNP NNP VBZ VBN NNS IN DT JJ NN IN DT NNP NNP NN NN , VBG NNS MD VB IN NNP POS JJ NNP NN . Russian President Vladimir Putin suggested holding such a conference Wednesday after meeting in Cairo with Egyptian President Hosni Mubarak . JJ NNP NNP NNP VBD VBG PDT DT NN NNP IN VBG IN NNP IN JJ NNP NNP NNP . Both Russia and the United States sponsored the Middle East road map peace plan along with the European Union and United Nations . DT NNP CC DT NNP NNPS VBD DT NNP NNP NN NN NN NN IN IN DT NNP NNP CC NNP NNPS . Mr. Putin 's talks in Egypt made him the first Russian leader to visit Cairo in four decades . NNP NNP POS NNS IN NNP VBD PRP DT JJ JJ NN TO VB NNP IN CD NNS . He then went to Israel for talks Thursday with Israeli Prime Minister Ariel Sharon before he is to meet Friday with Palestinian leader Mahmoud Abbas in the West Bank . PRP RB VBD TO NNP IN NNS NNP IN JJ NNP NNP NNP NNP IN PRP VBZ TO VB NNP IN JJ NN NNP NNP IN DT NNP NNP . Mr. Putin is the first Russian or Soviet leader to visit Israel . NNP NNP VBZ DT JJ JJ CC JJ NN TO VB NNP . Ukrainian Prime Minister Yulia Tymoshenko says her government plans to review some 3,000 privatizations to ensure they were conducted fairly . JJ NNP NNP NNP NNP VBZ PRP$ NN VBZ TO VB DT CD NNS TO VB PRP VBD VBN RB . The Interfax news agency quotes her as saying Wednesday that the state will get back what was illegally handed over to what she called ' private but dishonest hands . ' DT NNP NN NN VBZ PRP IN VBG NNP IN DT NN MD VB RB WP VBD RB VBN IN TO WP PRP VBD `` JJ CC JJ NNS . `` She has already ordered authorities to begin the process of returning the country 's largest steel mill , Kryvorizhstal , to government control . PRP VBZ RB VBN NNS TO VB DT NN IN VBG DT NN POS JJS NN NN , NNP , TO NN NN . A consortium that included the son-in-law , Viktor Pinchuk , of former Ukrainian President Leonid Kuchma purchased the complex last year for $ 800 million , far below its estimated market value . DT NN WDT VBD DT NN , NNP NNP , IN JJ JJ NNP NNP NNP VBD DT NN JJ NN IN $ CD CD , RB IN PRP$ JJ NN NN . Many privatizations in Ukraine took place under questionable circumstances after the fall of the Soviet Union . JJ NNS IN NNP VBD NN IN JJ NNS IN DT NN IN DT NNP NNP . China says it plans to issue its first ever white paper on the country 's political democracy . NNP VBZ PRP VBZ TO VB PRP$ JJ RB JJ NN IN DT NN POS JJ NN . China 's official Xinhua news agency said Tuesday that the Information Office of China 's State Council will issue the document Wednesday . NNP POS JJ NNP NN NN VBD NNP IN DT NNP NNP IN NNP POS NNP NNP MD VB DT NN NNP . The announcement said the white paper will give a detailed account of the ' inception , development , contents and principles of the country 's political democracy . ' DT NN VBD DT JJ NN MD VB DT JJ NN IN DT `` NN , NN , NNS CC NNS IN DT NN POS JJ NN . `` Xinhua said the document will also mention the problems Beijing faces in building democracy . NNP VBD DT NN MD RB VB DT NNS NNP VBZ IN VBG NN . International rights organizations and several countries , including the United States , have criticized Beijing for not speeding the pace of political reform . JJ NNS NNS CC JJ NNS , VBG DT NNP NNPS , VBP VBN NNP IN RB VBG DT NN IN JJ NN . China rejects the criticism , saying internal affairs should be handled by China 's government and citizens , not outsiders . NNP VBZ DT NN , VBG JJ NNS MD VB VBN IN NNP POS NN CC NNS , RB NNS . Iraqi authorities say a roadside bomb struck a police patrol northeast of Baghdad late Wednesday , killing at least two police officers and wounding four others . JJ NNS VBP DT NN NN VBD DT NN NN NN IN NNP JJ NNP , VBG IN JJS CD NNS NNS CC VBG CD NNS . The explosion occurred in the town of Jalawla in Diyala province . DT NN VBD IN DT NN IN NNP IN NNP NN . Insurgents frequently target local and international security forces . NNS RB VBP JJ CC JJ NN NNS . Turkish media are reporting that two bombs have exploded in the southern Turkish resort city of Antalya , wounding at least six people . JJ NNS VBP VBG IN CD NNS VBP VBN IN DT JJ JJ NN NN IN NNP , VBG IN JJS CD NNS . Turkey 's Anatolia news agency says the explosions Tuesday were in two different locations , but occurred just minutes apart . NNP POS NNP NN NN VBZ DT NNS NNP VBD IN CD JJ NNS , CC VBD RB NNS RB . One of the bombs was planted in a trash can that exploded as workers were emptying it . CD IN DT NNS VBD VBN IN DT NN NN WDT VBD IN NNS VBD VBG PRP . Anatolia reports that the second blast also came from a trash can and wounded three people , including a tourist . NNP VBZ IN DT JJ NN RB VBD IN DT NN NN CC VBD CD NNS , VBG DT NN . It is unclear who planted the bombs . PRP VBZ JJ WP VBD DT NNS . Kurdish rebels from the banned Kurdistan Workers Party have recently launched several attacks on Turkish resort towns . JJ NNS IN DT VBN NNP NNP NNP VBP RB VBN JJ NNS IN JJ NN NNS . Other terrorist attacks in the country have been blamed on Islamic terrorists . JJ JJ NNS IN DT NN VBP VBN VBN IN NNP NNS . Antalya , on Turkey 's Mediterranean coast , is a popular vacation resort . NNP , IN NNP POS NNP NN , VBZ DT JJ NN NN . A lingering ankle injury will keep tennis great Andre Agassi from playing in the Australian Open , the first Grand Slam tennis tournament of the season . DT VBG NN NN MD VB NN JJ NNP NNP IN VBG IN DT NNP NNP , DT JJ NNP NNP NN NN IN DT NN . Agassi 's management company issued a statement in Australia Thursday saying the former Australian Open champion would not play in the event beginning January 16 . NNP POS NN NN VBD DT NN IN NNP NNP VBG DT JJ NNP NNP NN MD RB VB IN DT NN VBG NNP CD . The 35-year-old Agassi has also withdrawn from the Kooyong exhibition event next week . DT JJ NNP VBZ RB VBN IN DT NNP NN NN JJ NN . Agassi sustained a severe sprain to his left ankle on October 12 while playing racquetball . NNP VBD DT JJ NN TO PRP$ JJ NN IN NNP CD IN VBG NN . The injury initially forced his withdrawal from the Tennis Masters Cup in Shanghai in November . DT NN RB VBD PRP$ NN IN DT NNP NNP NNP IN NNP IN NNP . Agassi finished 2005 ranked number seven by the Association of Tennis Professionals . NNP VBD CD VBD NN CD IN DT NNP IN NNP NNPS . Agassi has won eight career Grand Slam titles . NNP VBZ VBN CD NN NNP NNP NNS . Half of them were at the Australian Open . NN IN PRP VBD IN DT NNP NNP . India and Saudi Arabia have signed a memorandum of understanding to combat terrorism . NNP CC NNP NNP VBP VBN DT NN IN NN TO VB NN . The two sides also inked three other agreements on bilateral investment promotion and protection , avoidance of double taxation , and cooperation in the field of youth affairs and sports . DT CD NNS RB VBD CD JJ NNS IN JJ NN NN CC NN , NN IN JJ NN , CC NN IN DT NN IN NN NNS CC NNS . The accords were signed Wednesday following a meeting between Indian Prime Minister Manmohan Singh and visiting Saudi King Abdullah in New Delhi . DT NNS VBD VBN NNP VBG DT NN IN JJ NNP NNP NNP NNP CC VBG JJ NNP NNP IN NNP NNP . The Saudi monarch is the guest of honor at Thursday 's Indian Republic Day celebrations . DT JJ NN VBZ DT NN IN NN IN NNP POS NNP NNP NNP NNS . During his four-day stay , aimed at boosting energy and trade ties between the two sides , he will also hold talks with President Abdul Kalam and other top ranking officials . IN PRP$ JJ NN , VBN IN VBG NN CC NN NNS IN DT CD NNS , PRP MD RB VB NNS IN NNP NNP NNP CC JJ JJ NN NNS . King Abdullah arrived in India from China , where he signed several economic deals with Chinese President Hu Jintao . NNP NNP VBD IN NNP IN NNP , WRB PRP VBD JJ JJ NNS IN JJ NNP NNP NNP . At least 43 people were killed Wednesday , when three car bombs exploded in close succession in central Baghdad . IN JJS CD NNS VBD VBN NNP , WRB CD NN NNS VBD IN JJ NN IN JJ NNP . Nearly 80 other people were wounded . RB CD JJ NNS VBD VBN . Police say two car bombs exploded within minutes of each other at a major bus station , that services cities in mainly Shi'ite southern Iraq . NNS VBP CD NN NNS VBD IN NNS IN DT NN IN DT JJ NN NN , IN NNS NNS IN RB NNP JJ NNP . A short time later , a suicide bomber detonated his explosives outside a nearby hospital as the wounded were arriving for treatment . DT JJ NN RB , DT NN NN VBD PRP$ NNS IN DT JJ NN IN DT VBN VBD VBG IN NN . Wednesday 's violence comes as political leaders resume negotiations to try to hammer out a draft constitution . NNP POS NN VBZ IN JJ NNS VBP NNS TO VB TO VB RP DT NN NN . Negotiators took a one-day break in talks after missing Monday 's draft deadline . NNS VBD DT JJ NN IN NNS IN VBG NNP POS NN NN . Parliament has voted an extension until midnight August 22 . NNP VBZ VBN DT NN IN NN NNP CD . If there is no document by then , the interim constitution dictates that parliament and the government must be dissolved and new elections held . IN EX VBZ DT NN IN RB , DT JJ NN VBZ IN NN CC DT NN MD VB VBN CC JJ NNS VBN . A pro-U.S.-immigration rally has been held in the same Los Angeles park where a similar rally earlier this month ended in a clash between demonstrators and police . DT JJ NN VBZ VBN VBN IN DT JJ NNP NNP NN WRB DT JJ NN RBR DT NN VBD IN DT NN IN NNS CC NNS . Hundreds of activists gathered in the city 's MacArthur Park Thursday after marching from a church , where they held a meeting . NNS IN NNS VBN IN DT NN POS NNP NNP NNP IN VBG IN DT NN , WRB PRP VBD DT NN . Demonstrators called for fair treatment for 12 million illegal immigrants in the United States . NNS VBD IN JJ NN IN CD CD JJ NNS IN DT NNP NNPS . Hours earlier , the Bush administration reached agreement with several U.S. senators on a plan that would provide legal status and a path to citizenship to the immigrants . NNS RB , DT NNP NN VBD NN IN JJ NNP NNS IN DT NN WDT MD VB JJ NN CC DT NN TO NN TO DT NNS . At a rally on May 1 , riot police fired rubber bullets at demonstrators and beat many of them with batons . IN DT NN IN NNP CD , NN NN VBD NN NNS IN NNS CC VBD NN IN PRP IN NNS . Police said they responded after being hit by rocks and bottles . NNS VBD PRP VBD IN VBG VBN IN NNS CC NNS . The FBI is investigating possible civil rights violations . DT NNP VBZ VBG JJ JJ NNS NNS . Iraqi security forces have surrounded a town south of Baghdad where gunmen believed to be Sunni militants have taken at least 60 Shi'ite Muslims hostage . JJ NN NNS VBP VBN DT NN NN IN NNP WRB NNS VBN TO VB NNP NNS VBP VBN IN JJS CD NNP NNPS NN . Authorities say the gunmen have threatened to kill the hostages in Madaen unless Shi'ites leave the town . NNS VBP DT NNS VBP VBN TO VB DT NNS IN NNP IN NNP VBP DT NN . The town has a mixed population of Sunni and Shi'ite Muslims . DT NN VBZ DT JJ NN IN NNP CC NNP NNPS . The abductions are the latest in a series of violent incidents throughout the country . DT NNS VBP DT JJS IN DT NN IN JJ NNS IN DT NN . A bomb explosion Saturday at a restaurant in Baquba a town north of Baghdad killed up to seven people , including at least two police officers . DT NN NN NNP IN DT NN IN NNP DT NN NN IN NNP VBD RP TO CD NNS , VBG IN JJS CD NNS NNS . Meanwhile , gunmen have killed one policeman and at least one Iraqi soldier in separate incidents in the city of Kirkuk . RB , NNS VBP VBN CD NN CC IN JJS CD JJ NN IN JJ NNS IN DT NN IN NNP . And further to the north , in Mosul , a car bomb damaged a U.S. military convoy . CC RB TO DT NN , IN NNP , DT NN NN VBD DT NNP JJ NN . Causality reports from that incident are not yet available . NN NNS IN DT NN VBP RB RB JJ . Officials and witnesses in Somalia say at least one person was killed when a roadside bomb exploded in Mogadishu Saturday near the convoy of the capital city 's two deputy mayors . NNS CC NNS IN NNP VBP IN JJS CD NN VBD VBN WRB DT NN NN VBD IN NNP NNP IN DT NN IN DT NN NN POS CD JJ NNS . The convoy was traveling through northern Mogadishu when the bomb was detonated . DT NN VBD VBG IN JJ NNP WRB DT NN VBD VBN . A teenage boy was killed , and four government troops were wounded . DT NN NN VBD VBN , CC CD NN NNS VBD VBN . The deputy mayors narrowly avoided injury . DT NN NNS RB VBD NN . Guerrilla attacks have increased in Mogadishu since government troops allied with Ethiopian forces battled Islamist forces in March and April , killing more than 1,000 people . NNP NNS VBP VBN IN NNP IN NN NNS VBN IN JJ NNS VBD JJ NNS IN NNP CC NNP , VBG JJR IN CD NNS . Somalia has been without an effective government since 1991 , when warlords overthrew dictator Mohamed Siad Barre and then turned against each other . NNP VBZ VBN IN DT JJ NN IN CD , WRB NNS VBP NN NNP NNP NNP CC RB VBD IN DT NN . Ethiopian Foreign Minister Seyoum Mesfin visited Somalia Saturday to discuss the security situation with government officials . JJ NNP NNP NNP NNP VBD NNP NNP TO VB DT NN NN IN NN NNS . Officials in the Somali capital of Mogadishu say a bomb explosion near the mayor 's convoy Sunday has killed two people and wounded several others . NNS IN DT JJ NN IN NNP VBP DT NN NN IN DT NN POS NN NNP VBZ VBN CD NNS CC VBD JJ NNS . Mogadishu mayor Mohammed Dheere and his convoy escaped unharmed . NNP NNP NNP NNP CC PRP$ NN VBD JJ . He says security forces killed the suspected bomber as he tried to flee . PRP VBZ NN NNS VBD DT JJ NN IN PRP VBD TO VB . Dheere told reporters his convoy was traveling on a road north of the city when the explosion occurred . NNP VBD NNS PRP$ NN VBD VBG IN DT NN NN IN DT NN WRB DT NN VBD . It is unclear whether the device was a remote-controlled bomb or a grenade . PRP VBZ JJ IN DT NN VBD DT JJ NN CC DT NN . The mayor blames remnants of the Islamic courts movement for the attack . DT NN VBZ NNS IN DT JJ NNS NN IN DT NN . Last Thursday , the convoy of Interim Prime Minister Ali Mohamed Gedi was also attacked while traveling in Mogadishu . JJ NNP , DT NN IN NNP NNP NNP NNP NNP NNP VBD RB VBN IN VBG IN NNP . No injuries or deaths were reported in that incident . DT NNS CC NNS VBD VBN IN DT NN . The owner of a Venezuelan pro-opposition television channel has told U.S. media that he has asked for political asylum in the United States . DT NN IN DT JJ NN NN NN VBZ VBN NNP NNS IN PRP VBZ VBN IN JJ NN IN DT NNP NNPS . Globovision president Guillermo Zuloaga made the comment Wednesday in an interview with CNN 's Spanish language channel . NNP NN NNP NNP VBD DT NN NNP IN DT NN IN NNP POS JJ NN NN . Zuloaga fled to the U.S. in June after the government in Caracas issued a warrant for his arrest based on fraud charges relating to another business , an auto dealership . NNP VBD TO DT NNP IN NNP IN DT NN IN NNP VBD DT NN IN PRP$ NN VBN IN NN NNS VBG TO DT NN , DT NN NN . Zuloaga denied the charges and said Venezuelan President Hugo Chavez ordered his arrest on trumped-up charges . NNP VBD DT NNS CC VBD JJ NNP NNP NNP VBD PRP$ NN IN JJ NNS . Zuloaga has also denied allegations of involvement in a $ 100-million scheme to assassinate the Venezuelan president . NNP VBZ RB VBN NNS IN NN IN DT $ CD NN TO VB DT JJ NN . Mr. Chavez has waged a long-running campaign against Globovision . NNP NNP VBZ VBN DT JJ NN IN NNP . The Inter-American Commission on Human Rights said earlier this year that it is concerned about the use of the punitive power of the state to silence opponents in Venezuela . DT JJ NNP IN NNP NNP VBD RBR DT NN IN PRP VBZ VBN IN DT NN IN DT JJ NN IN DT NN TO NN NNS IN NNP . The British Broadcasting Corporation ( BBC ) says unidentified gunmen shot and wounded one of its journalists in the Somali capital , Mogadishu . DT NNP NNP NNP LRB NNP RRB VBZ JJ NNS VBD CC VBD CD IN PRP$ NNS IN DT JJ NN , NNP . The broadcaster says Kate Peyton was rushed to a local hospital after the attack and underwent surgery . DT NN VBZ NNP NNP VBD VBN TO DT JJ NN IN DT NN CC VBD NN . Hospital officials say she is in stable condition . NN NNS VBP PRP VBZ IN JJ NN . Witnesses say the attackers opened fire on Ms. Peyton outside her hotel ( Sahafi Hotel ) and fled the scene in a vehicle . NNS VBP DT NNS VBD NN IN NNP NNP IN PRP$ NN LRB NNP NNP RRB CC VBD DT NN IN DT NN . A colleague working with her was unhurt in the attack . DT NN VBG IN PRP VBD JJ IN DT NN . Ms. Peyton had traveled from her home in South Africa this week to report on a visit by Somalia 's new government to Mogadishu . NNP NNP VBD VBN IN PRP$ NN IN NNP NNP DT NN TO VB IN DT NN IN NNP POS JJ NN TO NNP . Somali officials are readying plans to move the new government from its current base in Kenya later this month . JJ NNS VBP VBG NNS TO VB DT JJ NN IN PRP$ JJ NN IN NNP RB DT NN . Somalia has been without a central government for 14 years , having been ruled by warring factional leaders . NNP VBZ VBN IN DT JJ NN IN CD NNS , VBG VBN VBN IN VBG JJ NNS . An Indian diplomat has been formally charged with spying for India 's longtime rival Pakistan . DT JJ NN VBZ VBN RB VBN IN VBG IN NNP POS JJ JJ NNP . Officials say Madhuri Gupta was charged Tuesday under the Official Secrets Act . NNS VBP NNP NNP VBD VBN NNP IN DT NNP NNP NNP . She is alleged to have passed classified information to Pakistan 's intelligence agency . PRP VBZ VBN TO VB VBN JJ NN TO NNP POS NN NN . The 53-year-old junior diplomat worked at the press and information wing of the Indian embassy in Islamabad for three years . DT JJ JJ NN VBD IN DT NN CC NN NN IN DT JJ NN IN NNP IN CD NNS . Gupta was taken into custody in April after being called back to New Delhi on the pretext of consultations . NNP VBD VBN IN NN IN NNP IN VBG VBN RB TO NNP NNP IN DT NN IN NNS . Tensions run deep between India and Pakistan , whose dispute over Kashmir has led to decades of hostility and triggered three wars . NNS VBP RB IN NNP CC NNP , WP$ NN IN NNP VBZ VBN TO NNS IN NN CC VBD CD NNS . China 's central government has formally launched its official Web site . NNP POS JJ NN VBZ RB VBN PRP$ JJ NNP NN . The www.gov.cn site serves as a platform for the central and regional governments to release information and provide some online services . DT NNP NN VBZ IN DT NN IN DT JJ CC JJ NNS TO VB NN CC VB DT JJ NNS . There is also an English-language section with information on recent government news , biographies of officials and information for travelers to the country . EX VBZ RB DT JJ NN IN NN IN JJ NN NN , NNS IN NNS CC NN IN NNS TO DT NN . China 's official Xinhua news agency quotes the Web site 's editor-in-chief as saying the site works to increase government transparency and prevent ' miscommunication ' between the government and the people . NNP POS JJ NNP NN NN VBZ DT NNP NN POS NN IN VBG DT NN VBZ TO VB NN NN CC VB `` NN `` IN DT NN CC DT NNS . China 's central government has come under criticism in recent months for moves that tighten control over the Internet . NNP POS JJ NN VBZ VBN IN NN IN JJ NNS IN NNS WDT VBP NN IN DT NNP . New regulations forbid Internet news sites from publishing information that goes against what the government calls China 's security and public interest . JJ NNS VBD NNP NN NNS IN VBG NN WDT VBZ IN WP DT NN VBZ NNP POS NN CC JJ NN . A double suicide attack on a Pakistani military checkpoint near Quetta has killed at least 11 people and wounded several others . DT JJ NN NN IN DT JJ JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN JJ NNS . Officials say the first bomber detonated explosives Thursday near a line of vehicles waiting at the checkpoint in southwestern Baluchistan province . NNS VBP DT JJ NN VBD NNS NNP IN DT NN IN NNS VBG IN DT NN IN JJ NNP NN . As people gathered near the wreckage , a second suicide bomber triggered another explosion . IN NNS VBD IN DT NN , DT JJ NN NN VBD DT NN . Among the dead are five Pakistani soldiers . IN DT NN VBP CD JJ NNS . Baluchistan province experiences regular bombing and shooting attacks , usually blamed on Baluch nationalists battling the central government for more autonomy and a larger share of the region 's oil and natural gas reserves . NNP NN VBZ JJ NN CC NN NNS , RB VBN IN NNP NNS VBG DT JJ NN IN JJR NN CC DT JJR NN IN DT NN POS NN CC JJ NN NNS . But suicide attacks are more commonly carried out by pro-Taliban Islamic extremist groups , based north of Baluchistan in Pakistan 's tribal regions . CC NN NNS VBP RBR RB VBN RP IN JJ JJ NN NNS , VBN NN IN NNP IN NNP POS JJ NNS . Afghan police say U.S.-led forces have wounded at least six civilians in two separate incidents involving cars that ignored orders to stop . JJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS IN CD JJ NNS VBG NNS WDT VBD NNS TO VB . Authorities in eastern Khost province say that , in the first incident late Monday , a newborn baby , her mother and two other women were hurt when soldiers opened fire at their car after the driver failed to stop . NNS IN JJ NNP NN VBP IN , IN DT JJ NN JJ NNP , DT JJ NN , PRP$ NN CC CD JJ NNS VBD VBN WRB NNS VBD NN IN PRP$ NN IN DT NN VBD TO VB . Hours later , in the same province , a driver of a truck and a six-year-old boy were injured in a similar incident . NNS RB , IN DT JJ NN , DT NN IN DT NN CC DT JJ NN VBD VBN IN DT JJ NN . Meanwhile , the U.S. military in Afghanistan says Afghan and coalition troops killed five suspected Taleban insurgents Monday in northeastern Kunar province , where they launched a major offensive last week . RB , DT NNP NN IN NNP VBZ JJ CC NN NNS VBD CD JJ NNP NNS NNP IN JJ NNP NN , WRB PRP VBD DT JJ NN JJ NN . Some 2,500 troops are participating in ' Operation Mountain Lion ' aimed at disrupting insurgent activities by killing , incapacitating or capturing terrorists operating in the region . DT CD NNS VBP VBG IN `` NNP NNP NNP `` VBN IN VBG JJ NNS IN VBG , VBG CC VBG NNS VBG IN DT NN . The Air Transport Association predicts fewer domestic airline passengers in the U.S. this summer , between June 1 and August 31 . DT NNP NNP NNP VBZ JJR JJ NN NNS IN DT NNP DT NN , IN NNP CD CC NNP CD . The airline trade group says higher fuel prices and a weak economy have reduced airline carrying capacity which has led to higher ticket prices . DT NN NN NN VBZ JJR NN NNS CC DT JJ NN VBP VBN NN VBG NN WDT VBZ VBN TO JJR NN NNS . Those factors could have an impact on the number of passengers planning to travel in the U.S. during the traditionally busy summer vacation months . DT NNS MD VB DT NN IN DT NN IN NNS VBG TO VB IN DT NNP IN DT RB JJ NN NN NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Energy ministers of Russia and Ukraine have adjourned until Thursday their talks in Moscow on a huge price hike sought for deliveries by Russia 's state-run natural gas company , Gazprom . NN NNS IN NNP CC NNP VBP VBN IN NNP PRP$ NNS IN NNP IN DT JJ NN NN VBN IN NNS IN NNP POS JJ JJ NN NN , NNP . Ukrainian Fuel and Energy Minister Ivan Plachkov and his Russian counterpart , Viktor Khristenko met late Wednesday and agreed to continue discussions . JJ NN CC NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP VBD JJ NNP CC VBD TO VB NNS . After the meeting Mr. Plachkov said he believes a compromise is possible . IN DT NN NNP NNP VBD PRP VBZ DT NN VBZ JJ . The Gazprom is threatening to cut natural gas supplies to Ukraine on January 1 if no deal is reached . DT NNP VBZ VBG TO VB JJ NN NNS TO VB IN NNP CD IN DT NN VBZ VBN . Ukraine 's Prime Minister Yuriy Yekhanurov has rejected Gazprom 's plans to more than quadruple natural gas prices , calling it an unacceptable move aimed at putting direct economic pressure on Ukraine . NNP POS NNP NNP NNP NNP VBZ VBN NNP POS NNS TO JJR IN JJ JJ NN NNS , VBG PRP DT JJ NN VBN IN VBG JJ JJ NN IN NNP . Mr. Yekhanurov told officials in Kiev his country will take all necessary legal steps if the dispute is not resolved . NNP NNP VBD NNS IN NNP PRP$ NN MD VB DT JJ JJ NNS IN DT NN VBZ RB VBN . Nepal 's Supreme Court has issued a stay-order to temporarily halt the closure of a private radio station that defied a ban on broadcasting news . NNP POS NNP NNP VBZ VBN DT NN TO RB VB DT NN IN DT JJ NN NN WDT VBD DT NN IN NN NN . Judge Anup Raj Sharma issued an interim order on Wednesday requiring Nepal 's royalist government to immediately suspend the closure of Nepal FM radio station . NNP NNP NNP NNP VBD DT JJ NN IN NNP VBG NNP POS NN NN TO RB VB DT NN IN NNP NNP NN NN . Mr. Sharma also questioned the grounds on which the government closed down the station . NNP NNP RB VBD DT NNS IN WDT DT NN VBD IN DT NN . Now the station will continue operating until a final ruling by the Supreme Court determines its future . RB DT NN MD VB VBG IN DT JJ NN IN DT NNP NNP VBZ PRP$ NN . The Ministry of Information and Communication issued a letter requesting the station be shut down because it defied a ban imposed by King Gyanendra . DT NNP IN NNP CC NNP VBD DT NN VBG DT NN VB VBN RB IN PRP VBD DT NN VBN IN NNP NNP . Nepal FM aired programs that included weather forecasts , information on cultural events and government announcements . NNP NNP VBD NNS WDT VBD NN NNS , NN IN JJ NNS CC NN NNS . Afghan police say a suicide bomber has killed at least three people in the south of the country . JJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT NN IN DT NN . Local police chief Jawid Ahmad said the bomber was also killed Saturday when he detonated his explosives while riding his motorcycle in the border town of Spin Boldak in Kandahar province . JJ NN NN NNP NNP VBD DT NN VBD RB VBN NNP WRB PRP VBD PRP$ NNS IN VBG PRP$ NN IN DT NN NN IN NNP NNP IN NNP NN . Eight people , including women and children , were wounded in the attack . CD NNS , VBG NNS CC NNS , VBD VBN IN DT NN . Spin Boldak is a major crossing point between Afghanistan and Pakistan . NNP NNP VBZ DT JJ VBG NN IN NNP CC NNP . Wednesday , a suicide bomber killed at least five security guards escorting a NATO convoy in a similar attack in the area . NNP , DT NN NN VBD IN JJS CD NN NNS VBG DT NNP NN IN DT JJ NN IN DT NN . Syria 's ambassador to the United States says his government will fully withdraw from Lebanon as soon as possible , perhaps in less than two months . NNP POS NN TO DT NNP NNP VBZ PRP$ NN MD RB VB IN NNP RB RB IN JJ , RB IN JJR IN CD NNS . Speaking at Georgetown University in Washington , Wednesday Ambassador Imad Moustapha said the timing of the withdrawal will be determined by Syrian and Lebanese military officials , who are set to meet next week . VBG IN NNP NNP IN NNP , NNP NNP NNP NNP VBD DT NN IN DT NN MD VB VBN IN JJ CC JJ JJ NNS , WP VBP VBN TO VB JJ NN . Earlier , U.N. Secretary-General Kofi Annan said Syrian President Bashar al-Assad had agreed to present by early next month a firm timetable for the pullout . RB , NNP NNP NNP NNP VBD JJ NNP NNP NNP VBD VBN TO VB IN JJ JJ NN DT NN NN IN DT NN . Mr. Annan also said he will soon release the findings of the U.N. investigation into the February assassination of former Lebanese Prime Minister Rafik Hariri . NNP NNP RB VBD PRP MD RB VB DT NNS IN DT NNP NN IN DT NNP NN IN JJ JJ NNP NNP NNP NNP . But he added that a second probe may be needed . CC PRP VBD IN DT JJ NN MD VB VBN . Mr. Annan spoke after news reports said early findings show signs of negligence and possible evidence tampering by Lebanese authorities . NNP NNP VBD IN NN NNS VBD JJ NNS VBP NNS IN NN CC JJ NN VBG IN JJ NNS . Two Egyptian children have tested positive for bird flu , bringing the total number infected in the country to 29 . CD JJ NNS VBP VBN JJ IN NN NN , VBG DT JJ NN VBN IN DT NN TO CD . The health ministry said Tuesday , the two children are from different areas south of Cairo . DT NN NN VBD NNP , DT CD NNS VBP IN JJ NNS RB IN NNP . They were taken to the hospital and both are in stable condition . PRP VBD VBN TO DT NN CC DT VBP IN JJ NN . Sunday , a three-year-old girl from the southern town of Aswan tested positive for the potentially deadly H5N1 strain of bird flu . NNP , DT JJ NN IN DT JJ NN IN NNP VBD JJ IN DT RB JJ NNP NN IN NN NN . The girl 's condition is improving . DT NN POS NN VBZ VBG . Egypt has the largest number of human cases of bird flu outside Asia . NNP VBZ DT JJS NN IN JJ NNS IN NN NN IN NNP . At least 13 people have died since the first confirmed case in the country about a year ago . IN JJS CD NNS VBP VBN IN DT NN VBD NN IN DT NN IN DT NN RB . Thousands of people in the Haitian capital have demonstrated in support of presidential candidate Rene Preval . NNS IN NNS IN DT JJ NN VBP VBN IN NN IN JJ NN NNP NNP . As election workers continued to tally votes in the close race , demonstrators gathered outside the election commission , with some demanding Preval be declared the winner . IN NN NNS VBD TO RB NNS IN DT JJ NN , NNS VBD IN DT NN NN , IN DT VBG NNP VB VBN DT NN . But election officials said Saturday that the former president has just over 49 percent of the vote , with about three-quarters of the ballots counted . CC NN NNS VBD NNP IN DT JJ NN VBZ RB IN CD NN IN DT NN , IN IN NNS IN DT NNS VBN . He needs to win a majority for an outright victory . PRP VBZ TO VB DT NN IN DT JJ NN . Another former president , Leslie Manigat , is second with 12 percent . DT JJ NN , NNP NNP , VBZ JJ IN CD NN . International observers say the election was free and fair and have urged Haitians to respect the outcome . JJ NNS VBP DT NN VBD JJ CC JJ CC VBP VBN NNS TO VB DT NN . But candidate Charles Baker , who has about eight percent of the vote , has called for an investigation into reports of people voting multiple times . CC NN NNP NNP , WP VBZ IN CD NN IN DT NN , VBZ VBN IN DT NN IN NNS IN NNS VBG JJ NNS . Officials from the Federal Bureau of Investigations say violent crime in the U.S. has increased for a second straight year in 2006 . NNS IN DT NNP NNP IN NNS VBP JJ NN IN DT NNP VBZ VBN IN DT JJ JJ NN IN CD . In its annual crime report , released Monday , the FBI says violent crime increased nationwide by 1.3 percent . IN PRP$ JJ NN NN , VBN NNP , DT NNP VBZ JJ NN VBN JJ IN CD NN . The increase follows a rise of 2.3 percent in 2005 . DT NN VBZ DT NN IN CD NN IN CD . The report shows that murders in large cities , with populations over one million , were up by 6.7 percent . DT NN VBZ IN NNS IN JJ NNS , IN NNS IN CD CD , VBD RP IN CD NN . They include cities such as Miami in the southeastern state of Florida , Oakland in the western state of California and Phoenix in the southwestern state of Arizona and New York City , among others . PRP VBP NNS JJ IN NNP IN DT JJ NN IN NNP , NNP IN DT JJ NN IN NNP CC NNP IN DT JJ NN IN NNP CC NNP NNP NNP , IN NNS . Around the country incidences of forcible rape decreased by nearly two percent . IN DT NN NNS IN JJ NN VBN IN RB CD NN . Robbery saw an overall increase of near six percent . NNP VBD DT JJ NN IN JJ CD NN . The statistics were collected from more than 11,700 law enforcement agencies nationwide . DT NNS VBD VBN IN JJR IN CD NN NN NNS JJ . Deposed Honduran President Manuel Zelaya has given the de~facto government until Monday to consider his counter-proposal for ending the country 's political crisis . JJ JJ NNP NNP NNP VBZ VBN DT JJ NN IN NNP TO VB PRP$ NN IN VBG DT NN POS JJ NN . A representative of the ousted leader , Ricardo Martinez , said if no agreement is reached by then , the dialogue is broken . DT NN IN DT JJ NN , NNP NNP , VBD IN DT NN VBZ VBN IN RB , DT NN VBZ VBN . Mr. Zelaya 's proposal would authorize the Honduran Congress to decide whether to reinstate him . NNP NNP POS NN MD VB DT JJ NNP TO VB IN TO VB PRP . The Zelaya camp rejected a proposal by Interim President Roberto Micheletti calling for the Supreme Court to make the decision . DT NNP NN VBD DT NN IN NNP NNP NNP NNP VBG IN DT NNP NNP TO VB DT NN . The ousted leader 's chief negotiator called the proposal ' absurd . ' DT JJ NN POS NN NN VBD DT NN `` JJ . `` Mr. Micheletti has been under intense international pressure to restore Mr. Zelaya , since he was removed from power in a June 28 coup . NNP NNP VBZ VBN IN JJ JJ NN TO VB NNP NNP , IN PRP VBD VBN IN NN IN DT NNP CD NN . Mr. Zelaya 's opponents say he was ousted because he was trying to illegally change the constitution to extend his term in office . NNP NNP POS NNS VBP PRP VBD VBN IN PRP VBD VBG TO RB VB DT NN TO VB PRP$ NN IN NN . Japan says it will deliver a second installment of food aid to North Korea , despite its disappointment with recent talks on the fate of Japanese nationals kidnapped by Pyongyang decades ago . NNP VBZ PRP MD VB DT JJ NN IN NN NN TO NNP NNP , IN PRP$ NN IN JJ NNS IN DT NN IN JJ NNS VBN IN NNP NNS RB . Japan announced the decision Wednesday , one day after saying it would consider imposing sanctions on North Korea , including a suspension of aid . NNP VBD DT NN NNP , CD NN IN VBG PRP MD VB VBG NNS IN NNP NNP , VBG DT NN IN NN . Japanese Chief Cabinet Secretary Hiroyuki Hosoda says Tokyo is analyzing new evidence from Pyongyang on the abductions . JJ NNP NNP NNP NNP NNP VBZ NNP VBZ VBG JJ NN IN NNP IN DT NNS . He said such analysis could take time . PRP VBD JJ NN MD VB NN . Five Japanese kidnapped by North Korea returned to Japan two years ago . CD NNS VBN IN NNP NNP VBD TO NNP CD NNS RB . Pyongyang contends eight others are dead . NNP VBZ CD NNS VBP JJ . Japan believes there are two additional abductees whom North Korea has never acknowledged . NNP VBZ EX VBP CD JJ NNS WP NNP NNP VBZ RB VBN . An Israeli airstrike has killed a Palestinian man in the Gaza Strip , east of Gaza City . DT JJ NN VBZ VBN DT JJ NN IN DT NNP NNP , NN IN NNP NNP . The Israeli military says aircraft fired at three Palestinian gunmen who were within meters of the security fence separating the Gaza Strip from Israel . DT JJ NN VBZ NN VBD IN CD JJ NNS WP VBD IN NNS IN DT NN NN VBG DT NNP NNP IN NNP . Palestinians give a different account . NNS VBP DT JJ NN . A Palestinian militant group , the Popular Resistance Committees , says a bystander was killed when an Israeli helicopter fired at a car carrying several of its fighters . DT JJ JJ NN , DT NNP NNP NNP , VBZ DT NN VBD VBN WRB DT JJ NN VBD IN DT NN VBG NN IN PRP$ NNS . The violence comes three days before Palestinian parliamentary elections . DT NN VBZ CD NNS IN JJ JJ NNS . The international medical aid group , Doctors Without Borders ( Medecins Sans Frontieres ) , says one of its aid workers was killed in Sudan 's western Darfur region during an attack by government troops . DT JJ JJ NN NN , NNS IN NNS LRB NNP NNP NNP RRB , VBZ CD IN PRP$ NN NNS VBD VBN IN NNP POS JJ NNP NN IN DT NN IN NN NNS . The aid group said Wednesday the Sudanese employee was shot dead December 17 in front of the group 's warehouse in the town of Labado in the southern part of Darfur . DT NN NN VBD NNP DT JJ NN VBD VBN JJ NNP CD IN NN IN DT NN POS NN IN DT NN IN NNP IN DT JJ NN IN NNP . Doctors Without Borders also said 29 other local staff in the town are missing following fighting between government troops and rebels . NNP NNP NNP RB VBD CD JJ JJ NN IN DT NN VBP VBG VBG NN IN NN NNS CC NNS . It says the slain man was the second Sudanese employee to be killed in the last three months . PRP VBZ DT NN NN VBD DT JJ JJ NN TO VB VBN IN DT JJ CD NNS . On Tuesday , the British charity Save the Children announced it is evacuating all its staff from Darfur after four of its workers were killed in the past two months . IN NNP , DT JJ NN NNP NNP NNP VBD PRP VBZ VBG DT PRP$ NN IN NNP IN CD IN PRP$ NNS VBD VBN IN DT JJ CD NNS . Iraqi President Jalal Talabani says in a statement he does not intend to seek re-election when his term expires at the end of the year . JJ NNP NNP NNP VBZ IN DT NN PRP VBZ RB VB TO VB NN WRB PRP$ NN VBZ IN DT NN IN DT NN . But the Kurdish leader says he will remain active in politics . CC DT NNP NN VBZ PRP MD VB JJ IN NNS . The 75-year-old Talabani has been president since 2005 . DT JJ NNP VBZ VBN NN IN CD . He had heart surgery in the United States last year . PRP VBD NN NN IN DT NNP NNPS JJ NN . Officials say he wants to take a rest . NNS VBP PRP VBZ TO VB DT NN . Iraq 's prime minister , Nouri al-Maliki , holds most of the power in the country . NNP POS JJ NN , NNP NNP , VBZ JJS IN DT NN IN DT NN . Parliament chooses the president and two vice presidents . NNP VBZ DT NN CC CD NN NNS . Their terms end when a new parliament is elected at the end of this year . PRP$ NNS NN WRB DT JJ NN VBZ VBN IN DT NN IN DT NN . Afghanistan and its neighbors have ended a two-day conference in Kabul with a pledge to boost economic cooperation in a region reaching from China to Turkey and the Persian Gulf . NNP CC PRP$ NNS VBP VBN DT JJ NN IN NNP IN DT NN TO VB JJ NN IN DT NN VBG IN NNP TO NNP CC DT NNP NNP . In a joint declaration , delegations from 12 nations pledged cooperation in areas including electricity , counternarcotics , and water resource management . IN DT JJ NN , NNS IN CD NNS VBD NN IN NNS VBG NN , NNS , CC NN NN NN . Britain co-chaired the Regional Economic Cooperation Conference as current holder of the G8 presidency . NNP VBD DT NNP NNP NNP NNP IN JJ NN IN DT NNP NN . British Foreign Office Minister Kim Howells said the Kabul Declaration marks the ' moment when Afghanistan has become a real player in bringing peace and stability to the region . ' JJ NNP NNP NNP NNP NNP VBD DT NNP NNP VBZ DT `` NN WRB NNP VBZ VBN DT JJ NN IN VBG NN CC NN TO DT NN . `` The meeting brought together six nations bordering Afghanistan -- Tajikistan , Uzbekistan , Turkmenistan , Iran , Pakistan and China , as well as India , Turkey , the United Arab Emirates , Kazakhstan and Kyrgyzstan . DT NN VBD RB CD NNS VBG NNP : NNP , NNP , NNP , NNP , NNP CC NNP , RB RB IN NNP , NNP , DT NNP NNP NNPS , NNP CC NNP . The death toll from a fireworks explosion on a bus carrying guests from a wedding in eastern Pakistan has risen to at least 38 , with scores of others injured . DT NN NN IN DT NNS NN IN DT NN VBG NNS IN DT NN IN JJ NNP VBZ VBN TO IN JJS CD , IN NNS IN NNS VBN . Police officials at the scene in Lahore warned the death toll may rise further since many of the injured are in serious condition . NN NNS IN DT NN IN NNP VBD DT NN NN MD VB RB IN NN IN DT NN VBP IN JJ NN . Witnesses say the bus was engulfed by flames in seconds Sunday , giving people no time to escape . NNS VBP DT NN VBD VBN IN NNS IN NNS NNP , VBG NNS DT NN TO VB . Some of the victims were burned beyond recognition . DT IN DT NNS VBD VBN IN NN . The French news agency , AFP , quotes local residents as saying the blast occurred just seconds after one of the bus passengers was seen throwing firecrackers out of a rear window . DT JJ NN NN , NNP , VBZ JJ NNS IN VBG DT NN VBD RB NNS IN CD IN DT NN NNS VBD VBN VBG NNS IN IN DT NN NN . The U.S. space shuttle Discovery 's upcoming mission to the International Space Station has been delayed again , as NASA continues work to repair the shuttle 's external fuel tank . DT NNP NN NN NNP POS JJ NN TO DT NNP NNP NNP VBZ VBN VBN RB , IN NNP VBZ NN TO VB DT NN POS JJ NN NN . The U.S. space agency says it is now considering potential launch dates in late February , not early in the month as previously planned . DT NNP NN NN VBZ PRP VBZ RB VBG JJ NN NNS IN JJ NNP , RB RB IN DT NN IN RB VBN . Cracks in some of the metal supports of Discovery 's fuel tank were discovered when a hydrogen leak led NASA to cancel a planned launch attempt in early November . NNS IN DT IN DT NN NNS IN NNP POS NN NN VBD VBN WRB DT NN NN VBD NNP TO VB DT JJ NN NN IN JJ NNP . NASA officials now say the shuttle could launch as early as February 24 . NNP NNS RB VBP DT NN MD VB RB JJ IN NNP CD . At this point , the Discovery supply mission is the next-to-last in the agency 's 30-year shuttle program . IN DT NN , DT NNP NN NN VBZ DT NN IN DT NN POS JJ NN NN . But another flight could be added mid-year , before the fleet is set to retire this year . CC DT NN MD VB VBN JJ , IN DT NN VBZ VBN TO VB DT NN . Final results from last month 's presidential runoff election in Guinea-Bissau give the victory to former military ruler Joao Bernardo Vieira . JJ NNS IN JJ NN POS JJ NN NN IN NNP VBP DT NN TO JJ JJ NN NNP NNP NNP . Electoral officials say Mr. Vieira , also known as ' Nino , ' received 52 percent of the vote , compared with 48 percent for his rival , interim leader Malam Bacai Sanha . NNP NNS VBP NNP NNP , RB VBN IN `` NNP , `` VBD CD NN IN DT NN , VBN IN CD NN IN PRP$ JJ , JJ NN NNP NNP NNP . Mr. Sanha has said he will not accept the results , alleging voter fraud . NNP NNP VBZ VBN PRP MD RB VB DT NNS , VBG NN NN . Both candidates in the July 24 runoff election had pledged to end years of political instability . DT NNS IN DT NNP CD NN NN VBD VBN TO VB NNS IN JJ NN . Guinea-Bissau has been plagued by numerous coups and coup attempts since gaining independence from Portugal in 1974 . NNP VBZ VBN VBN IN JJ NNS CC NN NNS IN VBG NN IN NNP IN CD . Mr. Viera took power in a 1980 coup and ruled 19 years until he was ousted during a civil war . NNP NNP VBD NN IN DT CD NN CC VBD CD NNS IN PRP VBD VBN IN DT JJ NN . South Korea says it will not stage another large-scale rescue of North Korean refugees . NNP NNP VBZ PRP MD RB VB DT JJ NN IN JJ JJ NNS . South Korean Unification Minister Chung Dong-young told reporters Tuesday that Seoul has no plans to repeat last July 's airlift of 468 North Korean refugees from a third country that was never officially identified but believed to be Vietnam . JJ JJ NNP NNP NNP NNP VBD NNS NNP IN NNP VBZ DT NNS TO VB JJ NNP POS NN IN CD JJ JJ NNS IN DT JJ NN WDT VBD RB RB VBN CC VBN TO VB NNP . The mass defection angered North Korea , which responded by boycotting ministerial talks in August . DT NN NN VBD NNP NNP , WDT VBD IN VBG JJ NNS IN NNP . Analysts say Mr. Chung 's comments may be part of efforts by South Korea to encourage North Korea to resume bilateral talks . NNS VBP NNP NNP POS NNS MD VB NN IN NNS IN NNP NNP TO VB NNP NNP TO VB JJ NNS . Last month , South Korea announced it would strengthen background checks on North Koreans seeking asylum in the South , as well as cut financial subsidies to North Korean defectors . JJ NN , NNP NNP VBD PRP MD VB NN NNS IN NNP NNS VBG NN IN DT NNP , RB RB IN VBN JJ NNS TO JJ JJ NNS . World oil prices rose Wednesday after Iran test-fired some missiles . NNP NN NNS VBD NNP IN NNP VBD DT NNS . Investors assumed the tests indicate continued tensions between Iran , a major oil producer , and Israel and the United States , which might disrupt oil supplies at a time of strong demand and tight inventories . NNS VBD DT NNS VBP JJ NNS IN NNP , DT JJ NN NN , CC NNP CC DT NNP NNPS , WDT MD VB NN NNS IN DT NN IN JJ NN CC JJ NNS . The price of oil for future delivery rose more than two dollars to go as high as $ 138.28 a barrel in New York trading . DT NN IN NN IN JJ NN VBD JJR IN CD NNS TO VB RB JJ IN $ CD DT NN IN NNP NNP NN . Earlier , U.S. government energy experts said members of the Organization of Petroleum Exporting Countries will have net export revenues of $ 1.2 trillion this year , nearly double the gain from 2007 . RB , NNP NN NN NNS VBD NNS IN DT NNP IN NNP NNP NNPS MD VB JJ NN NNS IN $ CD CD DT NN , RB RB DT NN IN CD . The increase is driven by record-high oil prices which hit an all time high of $ 145.85 a barrel on July 3 . DT NN VBZ VBN IN JJ NN NNS WDT VBD DT DT NN NN IN $ CD DT NN IN NNP CD . The average retail price of gasoline in the United States remains at a record high of just over $ 1.08 a liter ( $ 4.11 a gallon ) . DT JJ JJ NN IN NN IN DT NNP NNPS VBZ IN DT NN NN IN RB IN $ CD DT NN LRB $ CD DT NN RRB . A commander of Dutch troops in southern Afghanistan says forces from the Netherlands have killed dozens of suspected Taleban fighters in recent months . DT NN IN JJ NNS IN JJ NNP VBZ NNS IN DT NNP VBP VBN NNS IN JJ NNP NNS IN JJ NNS . In an interview published Saturday in the Netherlands ' daily newspaper NRC Handelsblad , Colonel Henk Morsink said troops in troubled Uruzgan province recently have been involved in six clashes with insurgents . IN DT NN VBN NNP IN DT NNP POS JJ NN NNP NNP , NNP NNP NNP VBD NNS IN JJ NNP NN RB VBP VBN VBN IN CD NNS IN NNS . He also said a senior Taleban leader is believed to be among those killed . PRP RB VBD DT JJ NNP NN VBZ VBN TO VB IN DT VBN . Morsink stressed that his figures are based on estimates that can not always be verified . NNP VBD IN PRP$ NNS VBP VBN IN NNS WDT MD RB RB VB VBN . More Dutch troops , along with additional forces from Britain and Canada , will soon be deployed in Afghanistan 's volatile south , as NATO members increase troop levels in the country from 9,000 to 16,000 . RBR JJ NNS , IN IN JJ NNS IN NNP CC NNP , MD RB VB VBN IN NNP POS JJ NN , IN NNP NNS VBP NN NNS IN DT NN IN CD TO CD . A top U.S. diplomat is in Turkey for talks on the situation in neighboring Iraq as it prepares for elections January 30th . DT JJ NNP NN VBZ IN NNP IN NNS IN DT NN IN VBG NNP IN PRP VBZ IN NNS NNP CD . Outgoing Deputy Secretary of State Richard Armitage was slated to meet with Turkish Foreign Minister Abdullah Gul as well as top lawmakers and Turkey 's army chief-of-staff . VBG NNP NNP IN NNP NNP NNP VBD VBN TO VB IN JJ NNP NNP NNP NNP RB RB IN JJ NNS CC NNP POS NN NN . Earlier Sunday , in Syria , Mr. Armitage said Damascus has improved security along its border with Iraq . RBR NNP , IN NNP , NNP NNP VBD NNP VBZ VBN NN IN PRP$ NN IN NNP . But he also urged Syrian leaders to do more , and repeated U.S. claims that members of Saddam Hussein 's ousted regime are ' going back and forth from Syria ' into Iraq . CC PRP RB VBD JJ NNS TO VB JJR , CC VBD NNP NNS IN NNS IN NNP NNP POS JJ NN VBP `` VBG RB CC RB IN NNP `` IN NNP . The U.S. envoy spoke after meeting with Syrian President Bashar al-Assad . DT NNP NN VBD IN VBG IN JJ NNP NNP NNP . Mr. Armitage visited northern Iraq on Saturday , and will also visit Jordan before returning home early this week . NNP NNP VBD JJ NNP IN NNP , CC MD RB VB NNP IN VBG NN RB DT NN . South Africa has lifted a 13-year ban on killing elephants , despite an outcry from conservationists and animal rights activists . NNP NNP VBZ VBN DT JJ NN IN VBG NNS , IN DT NN IN NNS CC NN NNS NNS . The government earlier this year authorized the move , which took effect Thursday , as a way of controlling the rising elephant population , which has more than doubled since 1995 , to 18,000 . DT NN RBR DT NN VBD DT NN , WDT VBD NN NNP , IN DT NN IN VBG DT VBG NN NN , WDT VBZ JJR IN VBN IN CD , TO CD . In related news , a conservation group says 14 elephants have been illegally killed during the last two weeks in the Democratic Republic of Congo 's Virunga National Park . IN JJ NN , DT NN NN VBZ CD NNS VBP VBN RB VBN IN DT JJ CD NNS IN DT JJ NNP IN NNP POS NNP NNP NNP . Wildlife Direct says in a statement released Thursday that rebels , soldiers and local villagers killed the elephants . NNP NNP VBZ IN DT NN VBN NNP IN NNS , NNS CC JJ NNS VBD DT NNS . The group blames the surge in poaching on the liberalization of the ivory trade being pushed by South Africa , and the increased presence of Chinese operators in the area who feed a demand for ivory in their home country . DT NN VBZ DT NN IN VBG IN DT NN IN DT NN NN VBG VBN IN NNP NNP , CC DT VBN NN IN JJ NNS IN DT NN WP VB DT NN IN NN IN PRP$ NN NN . The park was estimated to have an elephant population of 350 as of 2006 . DT NN VBD VBN TO VB DT JJ NN IN CD IN IN CD . U.S. military officials say a television cameraman killed in Iraq Monday died in a gunbattle between Marines and insurgents , contradicting an account from his news agency . NNP JJ NNS VBP DT NN NN VBN IN NNP NNP VBD IN DT NN IN NNPS CC NNS , VBG DT NN IN PRP$ NN NN . Dhia Najim , an Iraqi freelance cameraman working for Reuters , was shot and killed in the town of Ramadi , west of Baghdad . NNP NNP , DT JJ NN NN VBG IN NNP , VBD VBN CC VBN IN DT NN IN NNP , NN IN NNP . U.S. military officials say Mr. Najim was hit by a bullet in the neck while taping a clash between Marines and insurgents . NNP JJ NNS VBP NNP NNP VBD VBN IN DT NN IN DT NN IN VBG DT NN IN NNPS CC NNS . But Reuters says video pictures taken at the time of Mr. Najim 's death show he was shot by a sniper and that there was no fighting at the time . CC NNP VBZ NN NNS VBN IN DT NN IN NNP NNP POS NN VBP PRP VBD VBN IN DT NN CC IN EX VBD DT NN IN DT NN . The press freedom group , Reporters Without Borders , has called on the Pentagon to make what it calls a proper investigation . DT NN NN NN , NNPS NNP NNS , VBZ VBN IN DT NNP TO VB WP PRP VBZ DT JJ NN . Russia is warning it will take retaliatory steps if any country deploys weapons in space . NNP VBZ VBG PRP MD VB JJ NNS IN DT NN VBZ NNS IN NN . Russian Defense Minister Sergei Ivanov says Moscow 's position on the issue has remained unchanged for decades in that Russia remains categorically against the militarization of space . JJ NNP NNP NNP NNP VBZ NNP POS NN IN DT NN VBZ VBN JJ IN NNS IN DT NNP VBZ RB IN DT NN IN NN . He made the comments Thursday in Kazakhstan . PRP VBD DT NNS NNP IN NNP . Last month , White House press secretary Scott McClellan said the United States is reviewing a draft updated national space policy - but that policy does not look at the weaponization of space . JJ NN , NNP NNP NN NN NNP NNP VBD DT NNP NNPS VBZ VBG DT NN VBN JJ NN NN : CC DT NN VBZ RB VB IN DT NN IN NN . However , he did say that protecting U.S. space systems is something that has to be considered . RB , PRP VBD VB IN VBG NNP NN NNS VBZ DT WDT VBZ TO VB VBN . The Interfax news agency also quotes Mr. Ivanov as saying Moscow is prepared to negotiate an agreement on controlling tactical nuclear weapons - but only when all countries with such weapons keep them within their own territories . DT NNP NN NN RB VBZ NNP NNP IN VBG NNP VBZ VBN TO VB DT NN IN VBG JJ JJ NNS : CC RB WRB DT NNS IN JJ NNS VBP PRP IN PRP$ JJ NNS . The United States has such weapons in Europe . DT NNP NNPS VBZ JJ NNS IN NNP . The Israeli navy has ordered a Libyan ship carrying humanitarian aid to the Gaza Strip to turn back . DT JJ NN VBZ VBN DT JJ NN VBG JJ NN TO DT NNP NNP TO VB RP . Officials say the ship , the Al Marwa , was carrying some 3,000 tons of aid when it was stopped by the Israeli navy . NNS VBP DT NN , DT NNP NNP , VBD VBG DT CD NNS IN NN WRB PRP VBD VBN IN DT JJ NN . Israel says there was no physical confrontation when it ordered the ship to turn around . NNP VBZ EX VBD DT JJ NN WRB PRP VBD DT NN TO VB RP . Palestinian officials say the ship is now sailing to the Egyptian port of El-Arish . JJ NNS VBP DT NN VBZ RB VBG TO DT JJ NN IN JJ . Gaza 's borders have been largely sealed by Israel and Egypt following a violent takeover by the militant Hamas last year . NNP POS NNS VBP VBN RB VBN IN NNP CC NNP VBG DT JJ NN IN DT JJ NNP JJ NN . The blockade has been stepped up in recent weeks due to a surge in border clashes between the Israeli military and Palestinian militants . DT NN VBZ VBN VBN RP IN JJ NNS JJ TO DT NN IN NN NNS IN DT JJ JJ CC JJ NNS . The regional government in Iraq 's Kurdish region has signed seven new foreign oil deals . DT JJ NN IN NNP POS NNP NN VBZ VBN CD JJ JJ NN NNS . The Kurdish Regional Government said in a statement on its Web site Tuesday all revenues from petroleum activities in the Kurdish region will be shared proportionately throughout Iraq under Iraqi law . DT NNP NNP NNP VBD IN DT NN IN PRP$ NNP NN NNP DT NNS IN NN NNS IN DT NNP NN MD VB VBN RB IN NNP IN JJ NN . The government in the Kurdish region of northern Iraq has approved its own law governing the oil industry , while the Iraqi national parliament is still working on a hydrocarbon law that would regulate the industry throughout the country . DT NN IN DT JJ NN IN JJ NNP VBZ VBN PRP$ JJ NN VBG DT NN NN , IN DT JJ JJ NN VBZ RB VBG IN DT NN NN WDT MD VB DT NN IN DT NN . Iraqi oil minister Hussein al-Shahristani had declared as ' illegal ' a previous agreement between the Kurdish regional government and a foreign oil company , Hunt Oil . JJ NN NN NNP NNP VBD VBN IN `` JJ `` DT JJ NN IN DT JJ JJ NN CC DT JJ NN NN , NNP NNP . The Kurdish regional government said the new contracts are for the Mala Omar and Shorish Blocks , the Akre-Bijeel Block , the Shaikan Block , the Rovi and Sarta Blocks , and a block in Dihok province . DT JJ JJ NN VBD DT JJ NNS VBP IN DT NNP NNP CC NNP NNPS , DT NNP NNP , DT NNP NNP , DT NNP CC NNP NNPS , CC DT NN IN NNP NN . Iraq 's Shi'ite politicians have postponed until Sunday a decision to select a new prime minister . NNP POS NNP NNS VBP VBN IN NNP DT NN TO VB DT JJ JJ NN . The United Iraqi Alliance met Saturday , to choose between two contenders - Prime Minister Ibrahim al-Jaafari and Vice President Adel Abdul-Mahdi . DT NNP JJ NNP VBD NNP , TO VB IN CD NNS IN NNP NNP NNP NNP CC NNP NNP NNP NNP . Each is supported by two major factions in the Shi'ite alliance . DT VBZ VBN IN CD JJ NNS IN DT NNP NN . But Shi'ite sources say followers of radical Shi'ite cleric Moqtada al-Sadr wanted more time to discuss the candidates . CC NNP NNS VBP NNS IN JJ NNP NN NNP NNP VBD JJR NN TO VB DT NNS . Iraq 's Shi'ite alliance won the largest number of parliament seats in the nation 's December 15th election . NNP POS NNP NN VBD DT JJS NN IN NN NNS IN DT NN POS NNP CD NN . Under Iraq 's constitution , the new parliament should convene within the next two weeks . IN NNP POS NN , DT JJ NN MD VB IN DT JJ CD NNS . Separately , Kuwait 's al-Rai television station says the kidnappers in Iraq of American journalist Jill Carroll are threatening to kill her if their demands are not met by February 26 . RB , NNP POS NNP NN NN VBZ DT NNS IN NNP IN JJ NN NNP NNP VBP VBG TO VB PRP IN PRP$ NNS VBP RB VBN IN NNP CD . The militants previously had demanded that all Iraqi women prisoners be freed . DT NNS RB VBD VBN IN DT JJ NNS NNS VB VBN . The Sri Lankan navy says it has arrested five Indian nationals and confiscated their trawler carrying 61,000 bomb detonators . DT NNP NNP NN VBZ PRP VBZ VBN CD JJ NNS CC VBD PRP$ NN VBG CD NN NNS . A navy spokesman said the five men were detained late Wednesday off the island 's northern coast , an area under Tamil Tiger rebel control , and were handed over to police . DT NN NN VBD DT CD NNS VBD VBN RB NNP IN DT NN POS JJ NN , DT NN IN NNP NNP NN NN , CC VBD VBN IN TO NNS . He said authorities are trying to determine if the shipment was meant for the rebels . PRP VBD NNS VBP VBG TO VB IN DT NN VBD VBN IN DT NNS . The seizure came hours after the government and the rebels agreed to hold a new round of peace talks in Switzerland , easing fears that the country may slide back into full-scale civil war . DT NN VBD NNS IN DT NN CC DT NNS VBD TO VB DT JJ NN IN NN NNS IN NNP , VBG NNS IN DT NN MD VB RB IN JJ JJ NN . Meanwhile , Sri Lanka 's stock market staged a major rally Thursday as investors cheered the agreement between Colombo and the rebels . RB , NNP NNP POS NN NN VBD DT JJ NN NNP IN NNS VBD DT NN IN NNP CC DT NNS . Tamil rebels also released a Sri Lankan policeman in what they call a goodwill gesture , four months after capturing him when he strayed into rebel territory . NNP NNS RB VBD DT NNP NNP NN IN WP PRP VBP DT NN NN , CD NNS IN VBG PRP WRB PRP VBD IN JJ NN . Greek officials say a moderate earthquake has struck off the coast of some of the country 's islands in the Aegean Sea . JJ NNS VBP DT JJ NN VBZ VBN RP DT NN IN DT IN DT NN POS NNS IN DT NNP NNP . The Athens Geodynamic Institute says Friday 's magnitude 5.1 quake was centered near the eastern islands of Kos and Astypaleia , about 300 kilometers from the Greek capital . DT NNP NNP NNP VBZ NNP POS NN CD NN VBD VBN IN DT JJ NNS IN NNP CC NNP , IN CD NNS IN DT JJ NN . There were no immediate reports of damage or injuries . EX VBD DT JJ NNS IN NN CC NNS . Iranian state television says the country 's Revolutionary Guards have test-fired several long-range missiles with the capability of carrying cluster bombs . JJ NN NN VBZ DT NN POS JJ NNS VBP VBN JJ JJ NNS IN DT NN IN VBG NN NNS . The state-owned Al-Alam network says the missiles were launched Thursday from a desert site near the central Iranian town of Qom . DT JJ NNP NN VBZ DT NNS VBD VBN NNP IN DT NN NN IN DT JJ JJ NN IN NNP . The tests mark the beginning of a 10-day Iranian military exercise that will also include drills in the Persian Gulf and Sea of Oman . DT NNS VBP DT NN IN DT JJ JJ JJ NN WDT MD RB VB NNS IN DT NNP NNP CC NNP IN NNP . The Iranian report says the missile tests involve the Shahab-3 missile , which has a range of up to 2,000 kilometers . DT JJ NN VBZ DT NN NNS VBP DT JJ NN , WDT VBZ DT NN IN IN TO CD NNS . The Revolutionary Guards are the ideological wing of the Iranian armed forces , and have a separate command structure from the regular army . DT JJ NNS VBP DT JJ NN IN DT JJ JJ NNS , CC VBP DT JJ NN NN IN DT JJ NN . Iran is conducting military maneuvers after United States held naval exercises in the Persian Gulf earlier this week . NNP VBZ VBG JJ NNS IN NNP NNPS VBD JJ NNS IN DT NNP NNP RBR DT NN . The U.S.-led drills involved 25 nations and were aimed at training forces to block the transport of weapons of mass destruction . DT JJ NNS VBN CD NNS CC VBD VBN IN NN NNS TO VB DT NN IN NNS IN NN NN . Russia is defending its plans to sell Venezuela assault rifles and helicopters . NNP VBZ VBG PRP$ NNS TO VB NNP NN NNS CC NNS . Russian Foreign Minister Sergei Lavrov dismissed concerns expressed by the United States that the guns and aircraft could fall into the hands of leftist rebels in Colombia . JJ NNP NNP NNP NNP VBD NNS VBN IN DT NNP NNPS IN DT NNS CC NN MD VB IN DT NNS IN JJ NNS IN NNP . Mr. Lavrov said the arms deal is a bilateral issue in line with international law . NNP NNP VBD DT NNS NN VBZ DT JJ NN IN NN IN JJ NN . U.S. officials fear Venezuelan President Hugo Chavez , who has strained relations with Washington , could export small arms to rebel movements , including rebel groups in neighboring Colombia . NNP NNS VBP JJ NNP NNP NNP , WP VBZ VBN NNS IN NNP , MD VB JJ NNS TO JJ NNS , VBG NN NNS IN VBG NNP . A State Department spokesman says the United States has raised the issue with Russia on several occasions . DT NNP NNP NN VBZ DT NNP NNPS VBZ VBN DT NN IN NNP IN JJ NNS . Earlier this week , Venezuelan Vice President Jose Rangel said his country is buying the weapons to strengthen its national security and that the purchase should not concern Washington . RBR DT NN , JJ NNP NNP NNP NNP VBD PRP$ NN VBZ VBG DT NNS TO VB PRP$ JJ NN CC IN DT NN MD RB VB NNP . Security is tight in the Afghan capital , Kabul , on the eve of the inauguration of the country 's first parliament in more than 30 years . NN VBZ JJ IN DT JJ NN , NNP , IN DT NN IN DT NN IN DT NN POS JJ NN IN JJR IN CD NNS . Police and troops were deployed days ahead of the Monday ceremony , during which 351 new lawmakers will be sworn in by President Hamid Karzai . NNS CC NNS VBD VBN NNS RB IN DT NNP NN , IN WDT CD JJ NNS MD VB VBN IN IN NNP NNP NNP . The event will be attended by many foreign dignitaries , including U.S. Vice President Dick Cheney . DT NN MD VB VBN IN JJ JJ NNS , VBG NNP NNP NNP NNP NNP . Concerns that the Taleban insurgents could disrupt the opening of a landmark parliamentary session were heightened after rebels attacked a police checkpoint near Kandahar overnight , killing three policemen . NNS IN DT NNP NNS MD VB DT NN IN DT NN JJ NN VBD VBN IN NNS VBD DT NN NN IN NNP RB , VBG CD NNS . A Taleban insurgent was also killed in the ambush . DT NNP NN VBD RB VBN IN DT NN . Meanwhile , France 's Defense Minister Michele Alliot-Marie , visiting Kabul on Sunday , said Paris will increase the number of its troops in Afghanistan in 2006 when NATO expands operations there . RB , NNP POS NNP NNP NNP NNP , VBG NNP IN NNP , VBD NNP MD VB DT NN IN PRP$ NNS IN NNP IN CD WRB NNP VBZ NNS RB . Russian Defense Minister Sergei Ivanov says Russia will soon begin testing a new intercontinental ballistic missile system . JJ NNP NNP NNP NNP VBZ NNP MD RB VB VBG DT JJ JJ JJ NN NN . The Russian minister told reporters his country would develop weapons based on the Topol-M mobile missiles and the sea-based Bulava system . DT JJ NN VBD NNS PRP$ NN MD VB NNS VBN IN DT JJ JJ NNS CC DT JJ NNP NN . The Interfax news agency quotes Mr. Ivanov as saying Moscow plans to produce nuclear weapons that can penetrate any defense system . DT NNP NN NN VBZ NNP NNP IN VBG NNP VBZ TO VB JJ NNS WDT MD VB DT NN NN . Dutch Prime Minister Jan Peter Balkenende says a ' no ' vote in next week 's referendum on the European Constitution would damage the country 's reputation as a champion of European integration . JJ NNP NNP NNP NNP NNP VBZ DT `` DT `` NN IN JJ NN POS NN IN DT NNP NNP MD VB DT NN POS NN IN DT NN IN JJ NN . In an interview with Dutch newspapers Saturday Mr. Balkenende said European leaders currently view the Netherlands as a country that works ' constructively and critically ' with international institutions . IN DT NN IN JJ NNS NNP NNP NNP VBD JJ NNS RB VBP DT NNP IN DT NN WDT VBZ `` RB CC RB `` IN JJ NNS . Reuters news agency quotes the Netherlands leader as urging voters not to use the referendum as an opportunity to express discontent with Dutch government policies , but to read the document and vote on its substance . NNP NN NN VBZ DT NNP NN IN VBG NNS RB TO VB DT NN IN DT NN TO VB NN IN JJ NN NNS , CC TO VB DT NN CC NN IN PRP$ NN . Latest public opinion polls indicate that more than half of Dutch citizens plan to vote against the treaty in the June first referendum . JJS JJ NN NNS VBP IN JJR IN NN IN JJ NNS VBP TO VB IN DT NN IN DT NNP JJ NN . Diabetics have a greater than average chance of having a heart attack or stroke . NNS VBP DT JJR IN JJ NN IN VBG DT NN NN CC NN . But new research indicates that lowering blood pressure and cholesterol below recommended guidelines seems to reduce these risks . CC JJ NN VBZ IN VBG NN NN CC NN IN VBN NNS VBZ TO VB DT NNS . VOA 's Carol Pearson tells us about the study . NNP POS NNP NNP VBZ PRP IN DT NN . U.S. presidential candidates John McCain and Barack Obama have responded cautiously to North Korea 's declaration of its nuclear activities . NNP JJ NNS NNP NNP CC NNP NNP VBP VBN RB TO NNP NNP POS NN IN PRP$ JJ NNS . Senator McCain Thursday called the declaration ' a modest step forward , ' but said it was only a step covering one part of North Korea 's activities . NNP NNP NNP VBD DT NN `` DT JJ NN RB , `` CC VBD PRP VBD RB DT NN VBG CD NN IN NNP NNP POS NNS . He said the expected destruction of a nuclear cooling tower Friday would be another step , but said it is important to remember that the goal is a full , permanent , and verifiable denuclearization of the Korean Peninsula . PRP VBD DT VBN NN IN DT JJ NN NN NNP MD VB DT NN , CC VBD PRP VBZ JJ TO VB IN DT NN VBZ DT JJ , JJ , CC JJ NN IN DT JJ NNP . Senator Obama said critical questions about North Korea 's nuclear program remain unanswered . NNP NNP VBD JJ NNS IN NNP NNP POS JJ NN VBP JJ . He said sanctions against the country are an important part of leverage to pressure North Korea to act . PRP VBD NNS IN DT NN VBP DT JJ NN IN NN TO VB NNP NNP TO VB . President George Bush promised to lift trade restrictions now that North Korea submitted the declaration . NNP NNP NNP VBD TO VB NN NNS RB IN NNP NNP VBD DT NN . Sales of new homes in the United States declined 1.6 percent in May , evidence that the slump in the housing market is continuing for a second year . NNS IN JJ NNS IN DT NNP NNPS VBD CD NN IN NNP , NN IN DT NN IN DT NN NN VBZ VBG IN DT JJ NN . Tuesday 's report from the Commerce Department showed that if sales continued at May 's pace for a year , just 9,15,000 new homes would change hands . NNP POS NN IN DT NNP NNP VBD IN IN NNS VBD IN NNP POS NN IN DT NN , RB CD JJ NNS MD VB NNS . Analysts blame rising interest rates and a glut of unsold homes for the decline . NNS VBP VBG NN NNS CC DT NN IN JJ NNS IN DT NN . Besides the housing market , consumers tell researchers they are also worried about jobs and high energy prices . IN DT NN NN , NNS VBP NNS PRP VBP RB VBN IN NNS CC JJ NN NNS . A separate report by a business group showed consumer confidence declining in June ( by 4.6 points to a reading of 103.9 ) . DT JJ NN IN DT NN NN VBD NN NN VBG IN NNP LRB IN CD NNS TO DT NN IN CD RRB . Economists track consumer confidence for clues about the consumer spending that drives most of the U.S. economy . NNS VBP NN NN IN NNS IN DT NN NN WDT VBZ JJS IN DT NNP NN . A U.S. federal judge has awarded more than $ 90 million in Cuban assets to the families of two men executed in Cuba in 1961 after the failed Bay of Pigs invasion attempt . DT NNP JJ NN VBZ VBN JJR IN $ CD CD IN JJ NNS TO DT NNS IN CD NNS VBN IN NNP IN CD IN DT VBN NNP IN NNP NN NN . The ruling Friday in the northeastern state of New York ordered a bank holding frozen Cuban assets to pay sums to the families of Howard Anderson and Thomas Ray , both Americans . DT NN NNP IN DT JJ NN IN NNP NNP VBD DT NN VBG JJ JJ NNS TO VB NNS TO DT NNS IN NNP NNP CC NNP NNP , DT NNS . Anderson was arrested and executed in Cuba for counter-revolutionary activities , while Ray 's CIA plane was shot down over Cuba . NNP VBD VBN CC VBN IN NNP IN JJ NNS , IN NNP POS NNP NN VBD VBN RB IN NNP . Both men were executed by the Cuban government . DT NNS VBD VBN IN DT JJ NN . The families of the men sued Cuba under a U.S. federal law allowing citizens to bring lawsuits against foreign governments in cases of terrorism . DT NNS IN DT NNS VBD NNP IN DT NNP JJ NN VBG NNS TO VB NNS IN JJ NNS IN NNS IN NN . The Bay of Pigs invasion was a CIA-backed attempt by Cuban exiles to overthrow Fidel Castro . DT NNP IN NNP NN VBD DT JJ NN IN JJ NNS TO VB NNP NNP . Sales of previously-owned homes in the United States declined in May as higher mortgage interest rates cut demand . NNS IN JJ NNS IN DT NNP NNPS VBD IN NNP IN JJR NN NN NNS VBD NN . Tuesday 's report from a business group , the National Association of Realtors , says re-sales fell more than one percent . NNP POS NN IN DT NN NN , DT NNP NNP IN NNPS , VBZ NNS VBD JJR IN CD NN . If home sales continued at this rate for a full year , 6.7 million homes would change hands . IN NN NNS VBD IN DT NN IN DT JJ NN , CD CD NNS MD VB NNS . Tuesday 's report on existing home sales contrasts sharply with Monday 's figures on sales of newly-built homes , which increased . NNP POS NN IN VBG NN NNS VBZ RB IN NNP POS NNS IN NNS IN JJ NNS , WDT VBD . But analysts say new home sales are likely to decline under pressure from rising interest rates . CC NNS VBP JJ NN NNS VBP JJ TO VB IN NN IN VBG NN NNS . U.S. central bankers are expected to announce another in a long series of interest rate increases later this week . NNP JJ NNS VBP VBN TO VB DT IN DT JJ NN IN NN NN NNS RB DT NN . A separate report said U.S. consumer confidence increased slightly this month . DT JJ NN VBD NNP NN NN VBD RB DT NN . Consumer confidence figures give experts clues about consumer spending , which drives most U.S. economic activity . NN NN NNS VBP NNS NNS IN NN NN , WDT VBZ RBS NNP JJ NN . Russia 's state-owned natural gas firm Gazprom has announced plans to buy a controlling stake in the Russian daily Izvestia . NNP POS JJ JJ NN NN NNP VBZ VBN NNS TO VB DT VBG NN IN DT JJ JJ NNP . A spokesman for Gazprom media says negotiations are almost complete , with an announcement in coming days . DT NN IN NNP NNS VBZ NNS VBP RB JJ , IN DT NN IN VBG NNS . The Vedomosti business daily quotes industry officials as speculating the deal could be worth between $ 10 million to $ 20 million . DT NNP NN JJ NNS NN NNS IN VBG DT NN MD VB JJ IN $ CD CD TO $ CD CD . Critics call the move a Kremlin effort to tighten its influence on the media . NNS VBP DT NN DT NNP NN TO VB PRP$ NN IN DT NNS . The government already controls national television and radio networks . DT NN RB VBZ JJ NN CC NN NNS . An editor at Izvestia resigned last year in what he said was a dispute over the newspaper 's coverage of the Beslan school crisis in which more than 330 people were killed . DT NN IN NNP VBD JJ NN IN WP PRP VBD VBD DT NN IN DT NN POS NN IN DT NNP NN NN IN WDT JJR IN CD NNS VBD VBN . He said he was forced to resign over coverage the paper 's leadership deemed too shocking . PRP VBD PRP VBD VBN TO VB IN NN DT NN POS NN VBD RB JJ . The newspaper printed graphic pictures of the bloody siege . DT NN VBD JJ NNS IN DT JJ NN . Some speculated that coverage upset the Kremlin . DT VBD DT NN VB DT NNP . Jennifer Lopez will come to your party - for a price . NNP NNP MD VB TO PRP$ NN IN IN DT NN . Russian banking tycoon Andrei Melnichenko is reportedly paying the singer-actress $ 2 million to perform at his wife 's 30th birthday party . JJ NN NN NNP NNP VBZ RB VBG DT JJ $ CD CD TO VB IN PRP$ NN POS JJ NN NN . International media report Lopez will receive $ 1.2 million for her 40 minute performance in the UK , with an additional $ 8,00,000 earmarked for expenses . JJ NNS NN NNP MD VB $ CD CD IN PRP$ CD JJ NN IN DT NNP , IN DT JJ $ CD VBN IN NNS . The 35-year-old Melnichenko 's personal fortune is estimated near $ 5 billion . DT JJ NNP POS JJ NN VBZ VBN IN $ CD CD . In other Jennifer Lopez news , the U.S. Magazine Us has named her its Style Icon of the Year ; she 'll pick up her prize at a ceremony in Hollywood . IN JJ NNP NNP NN , DT NNP NNP NNP VBZ VBN PRP PRP$ JJ NN IN DT NN ; PRP MD VB RP PRP$ NN IN DT NN IN NNP . The top U.S. weapons inspector for Iraq says the search for weapons of mass destruction has ' gone as far as feasible ' and has found nothing . DT JJ NNP NNS NN IN NNP VBZ DT NN IN NNS IN NN NN VBZ `` VBN RB RB IN JJ `` CC VBZ VBN DT . The assessment by CIA special advisor Charles Duelfer , head of the Iraq Survey Group , was contained in an addendum , posted on the Internet late Monday , to last year 's final report on Iraq 's weapons program . DT NN IN NNP JJ NN NNP NNP , NN IN DT NNP NNP NNP , VBD VBN IN DT NN , VBN IN DT NNP JJ NNP , TO JJ NN POS JJ NN IN NNP POS NNS NN . Mr. Duelfer concludes there is no reason to keep many detainees who are held because of their knowledge of Iraq 's weapons program , saying that after more than 18 months , the weapons investigation and debriefing of weapons-related detainees has been exhausted . NNP NNP VBZ EX VBZ DT NN TO VB JJ NNS WP VBP VBN IN IN PRP$ NN IN NNP POS NNS NN , VBG IN IN JJR IN CD NNS , DT NNS NN CC NN IN JJ NNS VBZ VBN VBN . The United States maintains that the Iraqi authorities will make the final decision whether to release those detainees . DT NNP NNPS VBZ IN DT JJ NNS MD VB DT JJ NN IN TO VB DT NNS . Mr. Duelfer also warns that there is a risk some Iraqi scientists might share their skills with terrorists or insurgents , who are making concerted efforts to gain chemical weapons capabilities . NNP NNP RB VBZ IN EX VBZ DT NN DT JJ NNS MD VB PRP$ NNS IN NNS CC NNS , WP VBP VBG JJ NNS TO VB JJ NNS NNS . NATO has expressed its solidarity with Britain over Thursday 's deadly terrorist attacks in London . NNP VBZ VBN PRP$ NN IN NNP IN NNP POS JJ JJ NNS IN NNP . Ambassadors of the 26 alliance states , meeting in Brussels , condemned terrorism in all its forms and reaffirmed NATO 's determination to combat terrorism and defend the alliance 's values of freedom , tolerance and democracy . NNS IN DT CD NN NNS , NN IN NNP , VBD NN IN DT PRP$ NNS CC VBD NNP POS NN TO VB NN CC VB DT NN POS NNS IN NN , NN CC NN . Earlier , NATO Secretary-General Jaap de Hoop Scheffer condemned the bombings as heinous crimes and stressed that they underscored the need for alliance unity in fighting terrorism . RB , NNP NNP NNP NNP NNP NNP VBD DT NNS IN JJ NNS CC VBD IN PRP VBD DT NN IN NN NN IN VBG NN . Spanish police have arrested seven people suspected of helping fund Islamic militants with links to the al-Qaida terrorist group . JJ NNS VBP VBN CD NNS VBN IN VBG NN JJ NNS IN NNS TO DT NNP JJ NN . Interior Minister Jose Antonio Alonso says the seven , arrested in the Costa del Sol region of southern Spain , had provided funds and logistical support to the Algerian-based Salafist Group for Preaching and Combat . NNP NNP NNP NNP NNP VBZ DT CD , VBN IN DT NNP NNP NNP NN IN JJ NNP , VBD VBN NNS CC JJ NN TO DT JJ NNP NNP IN NNP CC NNP . Spanish authorities have stepped up efforts against Islamic militants since last year 's al-Qaida-linked bombings of Madrid commuter trains that killed 191 people . JJ NNS VBP VBN RP NNS IN NNP NNS IN JJ NN POS JJ NNS IN NNP NN NNS WDT VBD CD NNS . Last month , police arrested 11 people on charges of providing financial support for the same Algerian-based group in raids in other areas of southern Spain . JJ NN , NN VBN CD NNS IN NNS IN VBG JJ NN IN DT JJ JJ NN IN NNS IN JJ NNS IN JJ NNP . Two senior U.S. diplomats are meeting with the new leader of southern Sudan 's former rebel movement Wednesday in an effort to ensure that the sudden death of Vice President John Garang will not derail the peace process . CD JJ NNP NNS VBP VBG IN DT JJ NN IN JJ NNP POS JJ NN NN NNP IN DT NN TO VB IN DT JJ NN IN NNP NNP NNP NNP MD RB VB DT NN NN . The visit by Assistant Secretary of State for African Affairs Connie Newman and special envoy for Sudan Roger Winter follows two days of riots in response to news of the death of Mr. Garang , the former rebel leader who became Sudan 's vice president as part of a peace deal . DT NN IN NNP NNP IN NNP IN NNP NNP NNP NNP CC JJ NN IN NNP NNP NNP VBZ CD NNS IN NNS IN NN TO NN IN DT NN IN NNP NNP , DT JJ JJ NN WP VBD NNP POS NN NN IN NN IN DT NN NN . At least 42 people died in the violence . IN JJS CD NNS VBD IN DT NN . Mr. Garang was killed in a helicopter crash Saturday evening . NNP NNP VBD VBN IN DT NN NN NNP NN . He was a key player in the deal that ended 21 years of civil war between rebels in southern Sudan and the Khartoum government . PRP VBD DT JJ NN IN DT NN WDT VBD CD NNS IN JJ NN IN NNS IN JJ NNP CC DT NNP NN . The U.S. diplomats plan to hold talks with government officials in Khartoum after their meetings in the south of the country . DT NNP NNS VBP TO VB NNS IN NN NNS IN NNP IN PRP$ NNS IN DT NN IN DT NN . A lawyers for two British journalists being held in Zimbabwe has accused prosecutors of deliberately delaying the proceedings after state witnesses failed to turn up at court . DT NNS IN CD JJ NNS VBG VBN IN NNP VBZ VBN NNS IN RB VBG DT NNS IN NN NNS VBD TO VB RP IN NN . Beatrice Mtetwa told the court in the northern town of Norton Friday that prosecutors are seeking ' to prolong the accused 's agony . ' NNP NNP VBD DT NN IN DT JJ NN IN NNP NNP IN NNS VBP VBG `` TO VB DT NN POS NN . `` The Sunday Telegraph 's chief foreign correspondent Toby Harnden and photographer Julian Simmonds have been in custody for more than a week on charges of reporting on last week 's parliamentary elections without accreditation . DT NNP NNP POS JJ JJ NN NNP NNP CC NN NNP NNP VBP VBN IN NN IN JJR IN DT NN IN NNS IN VBG IN JJ NN POS JJ NNS IN NN . The journalists were granted bail last week . DT NNS VBD VBN NN JJ NN . But the state appealed , forcing the men to remain in custody . CC DT NN VBD , VBG DT NNS TO VB IN NN . Ms. Mtetwa said Friday 's proceedings lasted less than one hour because not all of the state 's witnesses showed up in court . NNP NNP VBD NNP POS NNS VBD JJR IN CD NN IN RB DT IN DT NN POS NNS VBD RP IN NN . Reports from Baghdad say two bombs have exploded near a market in central Baghdad , killing at least 10 people . NNS IN NNP VBP CD NNS VBP VBN IN DT NN IN JJ NNP , VBG IN JJS CD NNS . Police say the second bomb was detonated Tuesday after a crowd had gathered at the site of the first blast , near a shop just outside the Bab al-Sharjee market . NNS VBP DT JJ NN VBD VBN NNP IN DT NN VBD VBN IN DT NN IN DT JJ NN , IN DT NN RB IN DT NNP NNP NN . Hours earlier , two Iraqi civilians were killed and four policemen were wounded in two separate roadside bombings in southern Iraq ( at Yousifiyah , south of Baghdad , and in Basra province ) . NNS RB , CD JJ NNS VBD VBN CC CD NNS VBD VBN IN CD JJ NN NNS IN JJ NNP LRB IN NNP , NN IN NNP , CC IN NNP NN RRB . A U.S. military announcement today says three Marines were killed Monday near the restive town of Hit in western Anbar province . DT NNP JJ NN NN VBZ CD NNS VBD VBN NNP IN DT JJ NN IN NNP IN JJ NNP NN . A fourth Marine has died of wounds suffered in a similar attack in the same region on Sunday . DT JJ NN VBZ VBN IN NNS VBN IN DT JJ NN IN DT JJ NN IN NNP . The U.S. military in Iraq has sent a team of forensic experts to the northern city of Mosul to investigate the cause of Tuesday 's massive explosion at an American military base that killed 22 people and wounded 72 others . DT NNP NN IN NNP VBZ VBN DT NN IN JJ NNS TO DT JJ NN IN NNP TO VB DT NN IN NNP POS JJ NN IN DT JJ JJ NN WDT VBD CD NNS CC VBD CD NNS . Initial reports said the base 's dining hall was struck by either a mortar or rocket . JJ NNS VBD DT NN POS NN NN VBD VBN IN RB DT NN CC NN . But the military says it is not ruling out anything . CC DT NN VBZ PRP VBZ RB VBG RP DT . The militant group that claimed responsibility for the attack said it was carried out by a suicide bomber . DT JJ NN WDT VBD NN IN DT NN VBD PRP VBD VBN RP IN DT NN NN . Among the dead were 14 American military personnel , four U.S civilian contractors and four Iraqi security force members . IN DT NN VBD CD JJ JJ NNS , CD NNS JJ NNS CC CD JJ NN NN NNS . Most of the wounded were also American servicemen . JJS IN DT VBN VBD RB JJ NNS . Wednesday , the streets of Mosul were deserted and the city 's five bridges were closed . NNP , DT NNS IN NNP VBD VBN CC DT NN POS CD NNS VBD VBN . American tanks and troops were positioned across the city and helicopters hovered overhead . JJ NNS CC NNS VBD VBN IN DT NN CC NNS VBD RB . The Rock and Roll Hall of Fame has inducted its newest members at a star-studded ceremony in New York City . DT NNP CC NNP NNP IN NNP VBZ VBN PRP$ JJS NNS IN DT JJ NN IN NNP NNP NNP . The 2006 class of inductees includes heavy metal band Black Sabbath , punk rockers the Sex Pistols , southern rock mainstays Lynyrd Skynyrd , and the late jazz legend Miles Davis . DT CD NN IN NNS VBZ JJ NN NN NNP NNP , NN NNS DT NN NNS , JJ NN NNS NNP NNP , CC DT JJ NN NN NNP NNP . Members of the new wave band Blondie also were inducted into the Hall of Fame , Monday . NNS IN DT JJ NN NN NNP RB VBD VBN IN DT NNP IN NNP , NNP . The hall also gave a lifetime achievement award to trumpeter Herb Alpert and business partner Jerry Moss , the founders of A&M Records . DT NN RB VBD DT NN NN NN TO VB NNP NNP CC NN NN NNP NNP , DT NNS IN NNP NNP . Musicians become eligible for Hall of Fame consideration 25 years after their first recording . NNS VBP JJ IN NNP IN NNP NN CD NNS IN PRP$ JJ NN . The Hall of Fame has a museum in Cleveland , Ohio to honor the history and personalities of rock music . DT NNP IN NNP VBZ DT NN IN NNP , NNP TO VB DT NN CC NNS IN NN NN . Russia says a strain of bird flu virus found infecting fowl in Siberia is the deadly H5N1 strain that can be transmitted to humans . NNP VBZ DT NN IN NN NN NN VBD VBG NN IN NNP VBZ DT JJ NNP NN WDT MD VB VBN TO NNS . A spokesman for the agricultural ministry in Moscow Friday said the investigation of the bird flu outbreak in Russia 's Novosibirsk region indicated the need for wider quarantine measures . DT NN IN DT JJ NN IN NNP NNP VBD DT NN IN DT NN NN NN IN NNP POS NNP NN VBD DT NN IN JJR NN NNS . The outbreak in Siberia began earlier this month when large numbers of chicken , geese and other fowl began dying . DT NN IN NNP VBD RBR DT NN WRB JJ NNS IN NN , NNS CC JJ NN VBD VBG . Strains of the virus have been hitting flocks throughout Asia , and more than 50 people in southeast Asia have died from exposure to the virus since 2003 . NNS IN DT NN VBP VBN VBG NNS IN NNP , CC JJR IN CD NNS IN JJ NNP VBP VBN IN NN TO DT NN IN CD . Health experts fear a global pandemic if the virus mutates into a form easily passed among humans . NNP NNS VBP DT JJ NN IN DT NN VBZ IN DT NN RB VBN IN NNS . Two car bomb blasts near the Shi'ite shrine city of Karbala in southern Iraq have killed at least 20 people and wounded more than 50 others . CD NN NN NNS IN DT NNP NN NN IN NNP IN JJ NNP VBP VBN IN JJS CD NNS CC VBN JJR IN CD NNS . Iraqi officials say the attacks targeted Shi'ite pilgrims heading to Karbala for an important Sh'ite holiday this week . JJ NNS VBP DT NNS VBD NNP NNS VBG TO NNP IN DT JJ NNP NN DT NN . Earlier Monday , another car bomb exploded in front of the Baghdad offices of Al-Arabiya television , killing at least four people and wounding 16 others . RBR NNP , DT NN NN VBD IN NN IN DT NNP NNS IN NNP NN , VBG IN JJS CD NNS CC VBG CD NNS . Al-Arabiya staffers said the explosion badly damaged the building and left a huge crater . NNP NNS VBD DT NN RB VBD DT NN CC VBD DT JJ NN . Iraqi officials had previously warned the network about the threat of an insurgent attack . JJ NNS VBD RB VBN DT NN IN DT NN IN DT JJ NN . Monday 's bombing was not the first time Al-Arabiya has been targeted in Iraq . NNP POS NN VBD RB DT JJ NN NNP VBZ VBN VBN IN NNP . The network 's Baghdad bureau chief escaped harm in 2008 after a bomb was found strapped to his car . DT NN POS NNP NN NN VBD NN IN CD IN DT NN VBD VBN JJ TO PRP$ NN . The Arabic-language station is owned by Saudi Arabia and based in Dubai . DT JJ NN VBZ VBN IN NNP NNP CC VBN IN NNP . A Jewish settler in the West Bank has been indicted by an Israeli court in the shooting deaths of four Palestinians in northern Israel earlier this month . DT JJ NN IN DT NNP NNP VBZ VBN VBN IN DT JJ NN IN DT NN NNS IN CD NNS IN JJ NNP RBR DT NN . Defendant Asher Weisgan has been in Israeli custody since allegedly opening fire on a group of Palestinian workers at an industrial zone at the West Bank settlement of Shiloh on August 17 . NN NNP NNP VBZ VBN IN JJ NN IN RB VBG NN IN DT NN IN JJ NNS IN DT JJ NN IN DT NNP NNP NN IN NNP IN NNP CD . At the time of the assault , police said a gunman seized a rifle from an Israeli security officer at the work zone and then shot and killed two Palestinians he had driven to the job site . IN DT NN IN DT NN , NN VBD DT NN VBD DT NN IN DT JJ NN NN IN DT NN NN CC RB VBD CC VBD CD NNS PRP VBD VBN TO DT NN NN . He then opened fire on a crowd of nearby workers , killing two more and wounding a fifth worker . PRP RB VBD NN IN DT NN IN JJ NNS , VBG CD JJR CC VBG DT JJ NN . Police said the attacker launched the attack to protest Israel 's recently concluded evacuation of the Gaza Strip . NNS VBD DT NN VBD DT NN TO VB NNP POS RB VBN NN IN DT NNP NNP . The leader of Germany 's Social Democratic Party says he will not run again for that post and might not serve in a new cabinet . DT NN IN NNP POS NNP NNP NNP VBZ PRP MD RB VB RB IN DT NN CC MD RB VB IN DT JJ NN . Franz Muentefering spoke Monday after the Social Democrats ' executive committee named a left-wing party member to run for party general secretary , rejecting Mr. Muentefering 's chosen candidate . NNP NNP VBD NNP IN DT NNP NNPS POS NN NN VBD DT JJ NN NN TO VB IN NN JJ NN , VBG NNP NNP POS JJ NN . The committee nominated Andrea Nahles to run , rejecting Kajo Wasserhoevel . DT NN VBD NNP NNP TO VB , VBG NNP NNP . Mr. Muentefering was set to become vice chancellor in a government led by Christian Democrat Chancellor-designate Angela Merkel . NNP NNP VBD VBN TO VB NN NN IN DT NN VBN IN NNP NNP NNP NNP NNP . The Social Democrats will elect their general secretary in mid-November . DT NNP NNPS MD VB PRP$ JJ NN IN NNP . Iraqi Shi'ite leaders say they have made their final compromise proposal to Sunni Arabs on the text of a new constitution . JJ NNP NNS VBP PRP VBP VBN PRP$ JJ NN NN TO VB NNS IN DT NN IN DT JJ NN . A Shi'ite official said Friday the proposal addresses the two main Sunni Arab objections : federalism , and efforts to exclude former members of Saddam Hussein 's Ba'ath Party from public life . DT NNP NN VBD NNP DT NN VBZ DT CD JJ NNP NNP NNS IN NN , CC NNS TO VB JJ NNS IN NNP NNP POS NNP NNP IN JJ NN . The announcement comes following a phone call from President Bush to Abdul-Aziz al-Hakim , the leader of Iraq 's largest Shi'ite party . DT NN VBZ VBG DT NN NN IN NNP NNP TO NNP NNP , DT NN IN NNP POS JJS JJ NN . The White House says it is doing everything it can to assist the Iraqis in moving the democratic process forward . DT NNP NNP VBZ PRP VBZ VBG DT PRP MD TO VB DT NNS IN VBG DT JJ NN RB . In other developments , the U.S. military launched multiple airstrikes Friday against a building sheltering about 50 suspected terrorists in the western province of Al-Anbar , close to the Syrian border . IN JJ NNS , DT NNP NN VBD JJ NNS NNP IN DT NN VBG IN CD JJ NNS IN DT JJ NN IN NNP , RB TO DT JJ NN . No casualty figures were released . DT NN NNS VBD VBN . The Russian state-owned oil firm Rosneft has rejected a statement by the giant natural gas company Gazprom about their planned merger . DT JJ JJ NN NN NNP VBZ VBN DT NN IN DT JJ JJ NN NN NNP IN PRP$ JJ NN . Wednesday , Gazprom chief Alexei Miller said the Yuganskneftegaz production unit would become an independent state company led by Rosneft head Sergei Bogdanchikov . NNP , NNP NN NNP NNP VBD DT NNP NN NN MD VB DT JJ NN NN VBN IN NNP NN NNP NNP . Rosneft Thursday said the statement does not correspond with reality , and should be taken as opinion . NNP NNP VBD DT NN VBZ RB VB IN NN , CC MD VB VBN IN NN . The merger would give the state a controlling stake in Gazprom , which would allow the lifting of a ban on foreign ownership of its shares . DT NN MD VB DT NN DT VBG NN IN NNP , WDT MD VB DT NN IN DT NN IN JJ NN IN PRP$ NNS . The government had seized Yuganskneftegaz for failure to pay taxes and sold it at auction last year . DT NN VBD VBN NNP IN NN TO VB NNS CC VBD PRP IN NN JJ NN . Rosneft acquired the unit from a previously unknown company that purchased it at the auction . NNP VBD DT NN IN DT RB JJ NN WDT VBD PRP IN DT NN . Critics accuse the Kremlin of trying to tighten control of the oil market and retaliate for former Yukos chief Mikhail Khodorkovsky 's support of the political opposition , charges authorities deny . NNS VBP DT NNP IN VBG TO VB NN IN DT NN NN CC VB IN JJ NNP NN NNP NNP POS NN IN DT JJ NN , NNS NNS VBP . Iranian President Mahmoud Ahmadinejad has called for closer cooperation with Syria , as both countries face continuing diplomatic pressure from Western governments . JJ NNP NNP NNP VBZ VBN IN JJR NN IN NNP , IN DT NNS VBP VBG JJ NN IN JJ NNS . Mr. Ahmadinejad 's comments Sunday in Tehran came in a joint news conference with visiting Syrian President Bashar al-Assad . NNP NNP POS NNS NNP IN NNP VBD IN DT JJ NN NN IN VBG JJ NNP NNP NNP . The Iranian news agency quotes Mr. Ahmadinejad as saying common threats require more bilateral cooperation to protect the Middle East from foreign aggression . DT JJ NN NN VBZ NNP NNP IN VBG JJ NNS VBP JJR JJ NN TO VB DT NNP NNP IN JJ NN . Both governments remain on a U.S. list of countries supporting terrorism , and Washington accuses both countries of failing to stop Islamic insurgents from crossing their borders into Iraq . DT NNS VBP IN DT NNP NN IN NNS VBG NN , CC NNP VBZ DT NNS IN VBG TO VB JJ NNS IN VBG PRP$ NNS IN NNP . Additionally , the United States and European governments accuse Iran of seeking to build atomic weapons . RB , DT NNP NNPS CC JJ NNS VBP NNP IN VBG TO VB JJ NNS . Both governments deny the charges . DT NNS VBP DT NNS . Authorities in Angola say 14 more people have died from the Marburg virus , raising the death toll from the outbreak to 146 . NNS IN NNP VBP CD JJR NNS VBP VBN IN DT NNP NN , VBG DT NN NN IN DT NN TO CD . This makes it the worst outbreak of the Ebola-like virus since 123 people died in the neighboring Democratic Republic of Congo between 1998 and 2000 . DT VBZ PRP DT JJS NN IN DT JJ NN IN CD NNS VBD IN DT JJ NNP NNP IN NNP IN CD CC CD . The World Health Organization has deployed 20 experts to Angola to help combat the virus , which is characterized by headaches , vomiting and diarrhea . DT NNP NNP NNP VBZ VBN CD NNS TO NNP TO VB VB DT NN , WDT VBZ VBN IN NNS , VBG CC NN . The outbreak has been mainly confined to the northern province of Uige . DT NN VBZ VBN RB VBN TO DT JJ NN IN NNP . Store owners in the capital city of Luanda say panicked residents have bought out all their stocks of household bleach to help guard against the virus . NNP NNS IN DT NN NN IN NNP VBP JJ NNS VBP VBN RP DT PRP$ NNS IN NN NN TO VB VB IN DT NN . Ethiopia 's elections body has rejected opposition calls for a re-run of last month 's parliamentary poll , won by the ruling party in a landslide . NNP POS NNS NN VBZ VBN NN NNS IN DT NN IN JJ NN POS JJ NN , VBN IN DT VBG NN IN DT NN . A coalition of six parties said the May 23 election was rigged , and that voters and opposition candidates were harassed . DT NN IN CD NNS VBD DT NNP CD NN VBD VBN , CC IN NNS CC NN NNS VBD VBN . The National Electoral Board said Wednesday that the opposition claims were not backed by any evidence . DT NNP NNP NNP VBD NNP IN DT NN NNS VBD RB VBN IN DT NN . Election results showed the ruling EPRDF coalition and allied parties taking 534 out of 537 parliamentary seats . NN NNS VBD DT VBG NNP NN CC JJ NNS VBG CD IN IN CD JJ NNS . Opposition leaders say the government 's near-total victory could not be accomplished without cheating . NN NNS VBP DT NN POS JJ NN MD RB VB VBN IN NN . Both the United States and the European Union criticized the election as falling short of international standards . DT DT NNP NNPS CC DT NNP NNP VBD DT NN IN VBG JJ IN JJ NNS . Ethiopian officials have said the voting was free , fair , and democratic . JJ NNS VBP VBN DT NN VBD JJ , JJ , CC JJ . The election was Ethiopia 's first parliamentary poll since a disputed 2005 vote that led to violent unrest . DT NN VBD NNP POS JJ JJ NN IN DT JJ CD NN WDT VBD TO JJ NN . Security forces killed nearly 200 people while putting down demonstrations after that poll . NN NNS VBD RB CD NNS IN VBG RP NNS IN DT NN . Election authorities in Liberia have begun releasing returns from the country 's first post-war election , in which large numbers turned out to elect a new president and parliament . NNP NNS IN NNP VBP VBN VBG NNS IN DT NN POS JJ JJ NN , IN WDT JJ NNS VBD RP TO VB DT JJ NN CC NN . With ballots from about one percent of the polling stations counted , former World Bank economist Ellen Johnson-Sirleaf has 24 percent of the vote . IN NNS IN IN CD NN IN DT NN NNS VBD , JJ NNP NNP NN NNP NNP VBZ CD NN IN DT NN . Soccer ( football ) star George Weah , one of her opponents in the presidential race , has 21 percent . NNP LRB NN RRB NN NNP NNP , CD IN PRP$ NNS IN DT JJ NN , VBZ CD NN . The head of Liberia 's National Elections Commission , Frances Johnson Morris , says it could take three to seven days of vote counting before the new leader is known . DT NN IN NNP POS NNP NNPS NNP , NNP NNP NNP , VBZ PRP MD VB CD CC CD NNS IN NN NN IN DT JJ NN VBZ VBN . United Nations Secretary General Kofi Annan and the U.S. ambassador to Liberia , Donald Booth , have praised Liberians for conducting a peaceful and orderly election . NNP NNP NNP NNP NNP NNP CC DT NNP NN TO NNP , NNP NNP , VBP VBN NNS IN VBG DT JJ CC JJ NN . Liberia 's vote is seen as a step toward restoring stability to a country beset by war and corruption . NNP POS NN VBZ VBN IN DT NN IN VBG NN TO DT NN VBN IN NN CC NN . The Philippines will keep its peacekeeping force in Haiti despite a sniper attack on a Filipino enlisted man Thursday . DT NNPS MD VB PRP$ NN NN IN NNP IN DT NN NN IN DT NN JJ NN NNP . Staff Sergeant Rodrigo Galam was standing guard outside the Christopher Hotel in Port-au-Prince when he came under sniper fire . NNP NNP NNP NNP VBD VBG NN IN DT NNP NNP IN NNP WRB PRP VBD IN NN NN . His body armor saved him from injury by deflecting two bullets . PRP$ NN NN VBD PRP IN NN IN VBG CD NNS . The hotel will be the future headquarters of the UN peacekeeping forces in the country . DT NN MD VB DT JJ NN IN DT NNP NN NNS IN DT NN . Philippine ambassador to the United Nations Lauro Baja said in a statement that the attack would not in any way alter Manila 's resolve to help bring peace and stability to Haiti . JJ NN TO DT NNP NNPS NNP NNP VBD IN DT NN IN DT NN MD RB IN DT NN VB NNP POS NN TO VB VB NN CC NN TO NNP . The Philippines deployed 135 troops to Haiti in December . DT NNPS VBD CD NNS TO NNP IN NNP . IRAQ-POVERTY ( Washington ) NNP LRB NNP RRB Rep. Tony Hall , D-Ohio , urges the United Nations to allow a freer flow of food and medicine into Iraq . NNP NNP NNP , NNP , VBZ DT NNP NNPS TO VB DT JJR NN IN NN CC NN IN NNP . Hall , who recently returned from a trip to Iraq , said U.N. economic sanctions have hurt millions of civilians there . NNP , WP RB VBD IN DT NN IN NNP , VBD NN JJ NNS VBP VBN NNS IN NNS RB . By AUSTIN ZALKIN . IN NNP NNP . The economy suffers from the typical Pacific island problems of geographic isolation , few resources , and a small population . DT NN VBZ IN DT JJ NNP NN NNS IN JJ NN , JJ NNS , CC DT JJ NN . Government expenditures regularly exceed revenues , and the shortfall is made up by critically needed grants from New Zealand that are used to pay wages to public employees . NN NNS RB VBP NNS , CC DT NN VBZ VBN RP IN RB VBN NNS IN NNP NNP WDT VBP VBN TO VB NNS TO JJ NNS . Niue has cut government expenditures by reducing the public service by almost half . NNP VBZ VBN NN NNS IN VBG DT JJ NN IN RB NN . The agricultural sector consists mainly of subsistence gardening , although some cash crops are grown for export . DT JJ NN VBZ RB IN NN NN , IN DT NN NNS VBP VBN IN NN . Industry consists primarily of small factories to process passion fruit , lime oil , honey , and coconut cream . NN VBZ RB IN JJ NNS TO VB NN NN , JJ NN , NN , CC NN NN . The sale of postage stamps to foreign collectors is an important source of revenue . DT NN IN JJ NNS TO JJ NNS VBZ DT JJ NN IN NN . The island in recent years has suffered a serious loss of population because of emigration to New Zealand . DT NN IN JJ NNS VBZ VBN DT JJ NN IN NN IN IN NN TO NNP NNP . Efforts to increase GDP include the promotion of tourism and financial services , although the International Banking Repeal Act of 2002 resulted in the termination of all offshore banking licenses . NNS TO VB NN VBP DT NN IN NN CC JJ NNS , IN DT NNP NNP NNP NNP IN CD VBD IN DT NN IN DT JJ NN NNS . Economic aid from New Zealand in FY08/09 was US $ 5.7 million . JJ NN IN NNP NNP IN NNP VBD NNP $ CD CD . Niue suffered a devastating typhoon in January 2004 , which decimated nascent economic programs . NNP VBD DT JJ NN IN NNP CD , WDT VBD JJ JJ NNS . While in the process of rebuilding , Niue has been dependent on foreign aid . IN IN DT NN IN NN , NNP VBZ VBN JJ IN JJ NN . British influence and control over what would become Nigeria and Africa 's most populous country grew through the 19th century . JJ NN CC NN IN WP MD VB NNP CC NNP POS JJS JJ NN VBD IN DT JJ NN . A series of constitutions after World War II granted Nigeria greater autonomy ; independence came in 1960 . DT NN IN NNS IN NNP NNP NNP VBD NNP JJR NN ; NN VBD IN CD . Following nearly 16 years of military rule , a new constitution was adopted in 1999 , and a peaceful transition to civilian government was completed . VBG RB CD NNS IN JJ NN , DT JJ NN VBD VBN IN CD , CC DT JJ NN TO JJ NN VBD VBN . The government continues to face the daunting task of reforming a petroleum-based economy , whose revenues have been squandered through corruption and mismanagement , and institutionalizing democracy . DT NN VBZ TO VB DT JJ NN IN VBG DT JJ NN , WP$ NNS VBP VBN VBN IN NN CC NN , CC VBG NN . In addition , Nigeria continues to experience longstanding ethnic and religious tensions . IN NN , NNP VBZ TO VB JJ JJ CC JJ NNS . Although both the 2003 and 2007 presidential elections were marred by significant irregularities and violence , Nigeria is currently experiencing its longest period of civilian rule since independence . IN DT DT CD CC CD JJ NNS VBD VBN IN JJ NNS CC NN , NNP VBZ RB VBG PRP$ JJS NN IN JJ NN IN NN . The general elections of April 2007 marked the first civilian-to-civilian transfer of power in the country 's history . DT JJ NNS IN NNP CD VBD DT JJ JJ NN IN NN IN DT NN POS NN . In January 2010 , Nigeria assumed a nonpermanent seat on the UN Security Council for the 2010 - 11 term . IN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD IN CD NN . Britain conquered Burma over a period of 62 years ( 1824 - 1886 ) and incorporated it into its Indian Empire . NNP VBD NNP IN DT NN IN CD NNS LRB CD : CD RRB CC VBD PRP IN PRP$ JJ NN . Burma was administered as a province of India until 1937 when it became a separate , self-governing colony ; independence from the Commonwealth was attained in 1948 . NNP VBD VBN IN DT NN IN NNP IN CD WRB PRP VBD DT JJ , JJ NN ; NN IN DT NNP VBD VBN IN CD . Gen. NE WIN dominated the government from 1962 to 1988 , first as military ruler , then as self-appointed president , and later as political kingpin . NNP NNP NNP VBD DT NN IN CD TO CD , RB IN JJ NN , RB IN JJ NN , CC RB IN JJ NN . In September 1988 , the military deposed NE WIN and established a new ruling junta . IN NNP CD , DT NN VBD NNP NNP CC VBD DT JJ NN NN . Despite multiparty legislative elections in 1990 that resulted in the main opposition party - the National League for Democracy ( NLD ) - winning a landslide victory , the junta refused to hand over power . IN JJ JJ NNS IN CD WDT VBD IN DT JJ NN NN IN DT NNP NNP IN NNP LRB NNP RRB IN VBG DT NN NN , DT NN VBD TO VB IN NN . NLD leader and Nobel Peace Prize recipient AUNG SAN SUU KYI , who was under house arrest from 1989 to 1995 and 2000 to 2002 , was imprisoned in May 2003 and subsequently transferred to house arrest . NNP NN CC NNP NNP NNP NN NNP NNP NNP NNP , WP VBD IN NN NN IN CD TO CD CC CD TO CD , VBD VBN IN NNP CD CC RB VBN TO NN NN . She was finally released in November 2010 . PRP VBD RB VBN IN NNP CD . After the ruling junta in August 2007 unexpectedly increased fuel prices , tens of thousands of Burmese marched in protest , led by prodemocracy activists and Buddhist monks . IN DT NN NN IN NNP CD RB VBD NN NNS , NNS IN NNS IN NNS VBD IN NN , VBN IN NN NNS CC NN NNS . In late September 2007 , the government brutally suppressed the protests , killing at least 13 people and arresting thousands for participating in the demonstrations . IN JJ NNP CD , DT NN RB VBD DT NNS , VBG IN JJS CD NNS CC VBG NNS IN VBG IN DT NNS . Since then , the regime has continued to raid homes and monasteries and arrest persons suspected of participating in the pro-democracy protests . IN RB , DT NN VBZ VBN TO VB NNS CC NNS CC NN NNS VBN IN VBG IN DT JJ NNS . Burma in early May 2008 was struck by Cyclone Nargis , which claimed over 1,38,000 dead and tens of thousands injured and homeless . NNP IN JJ NNP CD VBD VBN IN NNP NNP , WDT VBD IN CD JJ CC NNS IN NNS VBN CC NN . Despite this tragedy , the junta proceeded with its May constitutional referendum , the first vote in Burma since 1990 . IN DT NN , DT NN VBD IN PRP$ NNP JJ NN , DT JJ NN IN NNP IN CD . Parliamentary elections held in November 2010 , considered flawed by many in the international community , saw the junta 's Union Solidarity and Development Party garnering over 75 % of the seats . JJ NNS VBN IN NNP CD , VBN VBN IN NN IN DT JJ NN , VBD DT NN POS NNP NNP CC NNP NNP VBG IN CD NN IN DT NNS . Parliament convened in January 2011 and selected former Prime Minister THEIN SEIN as president . NNP VBD IN NNP CD CC VBN JJ NNP NNP NNP NNP IN NN . The vast majority of national-level appointees named by THEIN SEIN are former or current military officers . DT JJ NN IN JJ NNS VBN IN NNP NNP VBP JJ CC JJ JJ NNS . Grenada relies on tourism as its main source of foreign exchange especially since the construction of an international airport in 1985 . NNP VBZ IN NN IN PRP$ JJ NN IN JJ NN RB IN DT NN IN DT JJ NN IN CD . Hurricanes Ivan ( 2004 ) and Emily ( 2005 ) severely damaged the agricultural sector - particularly nutmeg and cocoa cultivation - which had been a key driver of economic growth . NNP NNP LRB CD RRB CC RB LRB CD RRB RB VBN DT JJ NN : RB NN CC NN NN : WDT VBD VBN DT JJ NN IN JJ NN . Grenada has rebounded from the devastating effects of the hurricanes but is now saddled with the debt burden from the rebuilding process . NNP VBZ VBN IN DT JJ NNS IN DT NNS CC VBZ RB VBN IN DT NN NN IN DT NN NN . Public debt-to-GDP is nearly 110 % , leaving the THOMAS administration limited room to engage in public investments and social spending . NNP NNP VBZ RB CD NN , VBG DT NNP NN JJ NN TO VB IN JJ NNS CC JJ NN . Strong performances in construction and manufacturing , together with the development of tourism and an offshore financial industry , have also contributed to growth in national output ; however , economic growth was stagnant in 2010 after a sizeable contraction in 2009 , because of the global economic slowdown 's effects on tourism and remittances . JJ NNS IN NN CC NN , RB IN DT NN IN NN CC DT JJ JJ NN , VBP RB VBN TO NN IN JJ NN ; RB , JJ NN VBD JJ IN CD IN DT JJ NN IN CD , IN IN DT JJ JJ NN POS NNS IN NN CC NNS . One day a countryman going to the nest of his Goose found there an egg all yellow and glittering . CD NN DT NN VBG TO DT NN IN PRP$ NN VBD EX DT NN DT NN CC NN . When he took it up it was as heavy as lead and he was going to throw it away , because he thought a trick had been played upon him . WRB PRP VBD PRP RP PRP VBD RB JJ IN NN CC PRP VBD VBG TO VB PRP RB , IN PRP VBD DT NN VBD VBN VBN IN PRP . But he took it home on second thoughts , and soon found to his delight that it was an egg of pure gold . CC PRP VBD PRP NN IN JJ NNS , CC RB VBD TO PRP$ NN IN PRP VBD DT NN IN JJ NN . Every morning the same thing occurred , and he soon became rich by selling his eggs . DT NN DT JJ NN VBD , CC PRP RB VBD JJ IN VBG PRP$ NNS . As he grew rich he grew greedy ; and thinking to get at once all the gold the Goose could give , he killed it and opened it only to find nothing . IN PRP VBD JJ PRP VBD NN ; CC VBG TO VB IN RB PDT DT NN DT NNP MD VB , PRP VBD PRP CC VBD PRP RB TO VB DT . Greed oft o'er reaches itself . NN RB RB VBZ PRP . A Doe had had the misfortune to lose one of her eyes , and could not see any one approaching her on that side . DT NN VBD VBN DT NN TO VB CD IN PRP$ NNS , CC MD RB VB DT CD VBG PRP IN DT NN . So to avoid any danger she always used to feed on a high cliff near the sea , with her sound eye looking towards the land . RB TO VB DT NN PRP RB VBD TO VB IN DT JJ NN IN DT NN , IN PRP$ JJ NN VBG IN DT NN . By this means she could see whenever the hunters approached her on land , and often escaped by this means . IN DT NN PRP MD VB WRB DT NNS VBD PRP IN NN , CC RB VBN IN DT NN . But the hunters found out that she was blind of one eye , and hiring a boat rowed under the cliff where she used to feed and shot her from the sea . CC DT NNS VBD RP IN PRP VBD JJ IN CD NN , CC VBG DT NN VBN IN DT NN WRB PRP VBD TO VB CC VBD PRP IN DT NN . ' Ah , ' cried she with her dying voice , `` UH , `` VBD PRP IN PRP$ JJ NN , ' You can not escape your fate . ' `` PRP MD RB VB PRP$ NN . `` A WOLF followed a flock of sheep for a long time and did not attempt to injure one of them . DT NN VBD DT NN IN NNS IN DT JJ NN CC VBD RB VB TO VB CD IN PRP . The Shepherd at first stood on his guard against him , as against an enemy , and kept a strict watch over his movements . DT NN IN RB VBN IN PRP$ NN IN PRP , IN IN DT NN , CC VBD DT JJ NN IN PRP$ NNS . But when the Wolf , day after day , kept in the company of the sheep and did not make the slightest effort to seize them , the Shepherd began to look upon him as a guardian of his flock rather than as a plotter of evil against it ; and when occasion called him one day into the city , he left the sheep entirely in his charge . CC WRB DT NN , NN IN NN , VBD IN DT NN IN DT NNS CC VBD RB VB DT JJS NN TO VB PRP , DT NN VBD TO VB RB PRP IN DT NN IN PRP$ NN RB IN IN DT NN IN NN IN PRP ; CC WRB NN VBD PRP CD NN IN DT NN , PRP VBD DT NNS RB IN PRP$ NN . The Wolf , now that he had the opportunity , fell upon the sheep , and destroyed the greater part of the flock . DT NN , RB IN PRP VBD DT NN , VBD IN DT NNS , CC VBD DT JJR NN IN DT NN . When the Shepherd returned to find his flock destroyed , he exclaimed : WRB DT NN VBD TO VB PRP$ NN VBD , PRP VBD : ' I have been rightly served ; why did I trust my sheep to a Wolf ? ' `` PRP VBP VBN RB VBN ; WRB VBD PRP VB PRP$ NNS TO DT NN . `` Documents released by the White House show that the Democratic National Committee asked Al Gore to make 140 calls to campaign donors , but he only connected on 56 of them . NNS VBN IN DT NNP NNP VBP IN DT NNP NNP NNP VBD NNP NNP TO VB CD NNS TO NN NNS , CC PRP RB VBN IN CD IN PRP . The other 84 hung up because he sounds just like a dial tone . DT JJ CD VBD RP IN PRP VBZ RB IN DT NN NN . When NASA first started sending up astronauts , they quickly discovered that ball-point pens would not work in zero gravity . WRB NNP RB VBD VBG RP NNS , PRP RB VBD IN JJ NNS MD RB VB IN CD NN . To combat this problem , NASA scientists spent a decade and $ 12 billion developing a pen that writes in zero gravity , upside down , underwater , on almost any surface including glass and at temperatures ranging from below freezing to over 300 C . TO VB DT NN , NNP NNS VBD DT NN CC $ CD CD VBG DT NN WDT VBZ IN CD NN , RB RB , NN , IN RB DT NN VBG NN CC IN NNS VBG IN IN VBG TO IN CD NNS . The Russians use a pencil . DT NNS VBP DT NN . Krygyz President Kurmanbek Bakiyev says he is ready for any new proposals from the U.S. government to stabilize the situation in Afghanistan . JJ NNP NNP NNP VBZ PRP VBZ JJ IN DT JJ NNS IN DT NNP NN TO VB DT NN IN NNP . Mr. Bakiyev made his comments to the British Broadcasting Corporation Wednesday . NNP NNP VBD PRP$ NNS TO DT NNP NNP NNP NNP . But Kyrgyz officials said Thursday the government will not reverse its decision to evict U.S. forces from a key military base that supports Western troops in Afghanistan . CC JJ NNS VBD NNP DT NN MD RB VB PRP$ NN TO VB NNP NNS IN DT JJ JJ NN WDT VBZ JJ NNS IN NNP . Last week , Kyrgyzstan ordered U.S. forces to leave the Manas air base within six months after President Bakiyev signed the decision into law . JJ NN , NNP VBD NNP NNS TO VB DT NNP NN NN IN CD NNS IN NNP NNP VBD DT NN IN NN . U.S. Defense Secretary Robert Gates said he believes the issue is not ' closed , ' and that the U.S. will try to reach a new agreement with Kyrgyzstan . NNP NNP NNP NNP NNP VBD PRP VBZ DT NN VBZ RB `` VBN , `` CC IN DT NNP MD VB TO VB DT JJ NN IN NNP . As an alternative , Gates said the U.S. is considering other supply routes . IN DT NN , NNP VBD DT NNP VBZ VBG JJ NN NNS . Manas Air Base is currently the only U.S. military supply route in Central Asia . NNP NNP NNP VBZ RB DT JJ NNP JJ NN NN IN NNP NNP . A top U.S. military officer said Tajikistan and Uzbekistan have agreed to allow the transit of non-lethal U.S. cargo through their territory to Afghanistan . DT JJ NNP JJ NN VBD NNP CC NNP VBP VBN TO VB DT NN IN JJ NNP NN IN PRP$ NN TO NNP . Washington also has received permission from Russia and Kazakhstan to send supplies to Afghanistan by rail . NNP RB VBZ VBN NN IN NNP CC NNP TO VB NNS IN NNP IN NN . President Bakiyev had complained that Washington was not paying enough rent for the base . NNP NNP VBD VBN IN NNP VBD RB VBG JJ NN IN DT NN . He announced plans to close it after Russia pledged to give Kyrgyzstan about $ 2 billion in loans and aid . PRP VBD NNS TO VB PRP IN NNP VBD TO VB NNP IN $ CD CD IN NNS CC NN . Most U.S. and NATO shipments into Afghanistan have been arriving by road through Pakistan , but those convoys have increasingly come under attack from Taliban and al-Qaida militants . JJS NNP CC NNP NNS IN NNP VBP VBN VBG IN NN IN NNP , CC DT NNS VBP RB VBN IN NN IN NNP CC NNP NNS . Palestinian security officials say a clash between Israeli troops and Palestinian militants near the West Bank town of Jenin has left three militants dead . JJ NN NNS VBP DT NN IN JJ NNS CC JJ NNS IN DT NNP NNP NN IN NNP VBZ VBN CD NNS JJ . The officials identified the victims as a local leader of the Al Aqsa Martyrs Brigades and two members of Islamic Jihad . DT NNS VBD DT NNS IN DT JJ NN IN DT NNP NNP NNP NNP CC CD NNS IN NNP NNP . They say the fighting erupted when Israeli troops raided Jenin early Thursday morning . PRP VBP DT NN VBD WRB JJ NNS VBD NNP JJ NNP NN . Wednesday , Israel 's military warned it may bombard the Gaza Strip town of Beit Hanoun , if necessary , to stop Palestinian rocket fire into Israel . NNP , NNP POS NN VBD PRP MD VB DT NNP NNP NN IN NNP NNP , IN JJ , TO VB JJ NN NN IN NNP . The militants have been firing rockets from the area , despite earlier pledges to stop such attacks . DT NNS VBP VBN VBG NNS IN DT NN , IN JJR NNS TO VB JJ NNS . In Washington , a State Department spokesman Sean McCormack said Secretary of State Condoleezza Rice has been pressing both sides to end the violence . IN NNP , DT NNP NNP NN NNP NNP VBD NNP IN NNP NNP NNP VBZ VBN VBG DT NNS TO VB DT NN . President Bush is to meet with Palestinian leader Mahmoud Abbas at the White House next month for talks on peace efforts . NNP NNP VBZ TO VB IN JJ NN NNP NNP IN DT NNP NNP JJ NN IN NNS IN NN NNS . The U.S. military says the death toll from Thursday 's suicide bomb attack on a Shi'ite funeral in the northern city of Mosul has risen to 50 . DT NNP NN VBZ DT NN NN IN NNP POS NN NN NN IN DT NNP NN IN DT JJ NN IN NNP VBZ VBN TO CD . More than 80 other people were injured in the blast , many critically . JJR IN CD JJ NNS VBD VBN IN DT NN , JJ RB . No group has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . Friday , grieving families buried their dead in private , canceling plans for a mass funeral procession because of fears it would be attacked . NNP , VBG NNS VBN PRP$ JJ IN JJ , VBG NNS IN DT NN NN NN IN IN NNS PRP MD VB VBN . On the political front , Iraq 's main Shi'ite alliance , which swept the January 30 elections , is finalizing a deal with Kurdish leaders to form a coalition ahead of the new parliament 's first session next Wednesday . IN DT JJ NN , NNP POS JJ NNP NN , WDT VBD DT NNP CD NNS , VBZ VBG DT NN IN JJ NNS TO VB DT NN RB IN DT JJ NN POS JJ NN JJ NNP . And a Polish newspaper quoted Warsaw 's defense minister Jerzy Szmajdzinski , as saying Poland will withdraw several hundred of its troops from Iraq in July . CC DT JJ NN VBN NNP POS NN NN NNP NNP , IN VBG NNP MD VB JJ CD IN PRP$ NNS IN NNP IN NNP . The leaders of the 53-member African Union have opened their two-day summit , where they will focus on debt relief and a greater voice in the United Nations . DT NNS IN DT JJ NNP NNP VBP VBN PRP$ JJ NN , WRB PRP MD VB IN NN NN CC DT JJR NN IN DT NNP NNPS . The African summit beginning Monday is being held just days before the leaders of the Group of Eight industrialized nations gather in Scotland to discuss debt relief for the war-torn , poverty-stricken continent . DT JJ NN VBG NNP VBZ VBG VBN RB NNS IN DT NNS IN DT NNP IN CD JJ NNS VBP IN NNP TO VB NN NN IN DT JJ , JJ NN . The G-8 summit is expected to give final approval to an agreement that forgives $ 40 billion of debt held by the world 's poorest nations , mostly in Africa . DT NNP NN VBZ VBN TO VB JJ NN TO DT NN WDT VBZ $ CD CD IN NN VBN IN DT NN POS JJS NNS , RB IN NNP . The AU leaders are also expected to support a proposal calling for the continent to get two permanent seats and two non-permanent seats on an expanded U.N. Security Council . DT NNP NNS VBP RB VBN TO VB DT NN VBG IN DT NN TO VB CD JJ NNS CC CD JJ NNS IN DT JJ NNP NNP NNP . A secular coalition led by Iraq 's former prime minister has taken a slight lead in overall votes as ballot counting from parliamentary elections continues - but it remains behind in the key provincial tally . DT JJ NN VBN IN NNP POS JJ JJ NN VBZ VBN DT JJ NN IN JJ NNS IN NN NN IN JJ NNS VBZ : CC PRP VBZ IN IN DT JJ JJ NN . With about 93 percent of the ballots counted , election officials said Saturday that former Prime Minister Ayad Allawi 's secularists lead the Shi'ite coalition headed by current Prime Minister Nouri al-Maliki by about 8,000 votes . IN IN CD NN IN DT NNS VBN , NN NNS VBD NNP IN JJ NNP NNP NNP NNP POS NNS VBP DT NNP NN VBN IN JJ NNP NNP NNP NNP IN RB CD NNS . The lead has repeatedly shifted between Mr. Allawi and Prime Minister Maliki since the March 7 vote . DT NN VBZ RB VBN IN NNP NNP CC NNP NNP NNP IN DT NNP CD NN . But Mr. Maliki 's State of Law coalition is still ahead in seven of Iraq 's 18 provinces - compared to five provinces held by Mr. Allawi 's Iraqiya alliance . CC NNP NNP POS NN IN NN NN VBZ RB RB IN CD IN NNP POS CD NNS IN VBN TO CD NNS VBN IN NNP NNP POS NNP NN . Seats in Iraq 's 325-member parliament are won according to how well a coalition does in a province , not according to the overall vote . NNS IN NNP POS JJ NN VBP VBN VBG TO WRB RB DT NN VBZ IN DT NN , RB VBG TO DT JJ NN . Officials say they hope to have final results by the end of the month . NNS VBP PRP VBP TO VB JJ NNS IN DT NN IN DT NN . Pakistan 's Prime Minister Shaukat Aziz has arrived in New Delhi for talks with Indian leaders to review the on-going peace process between the two neighbors . NNP POS NNP NNP NNP NNP VBZ VBN IN NNP NNP IN NNS IN JJ NNS TO VB DT JJ NN NN IN DT CD NNS . A day before his arrival , Mr. Aziz warned not to expect a breakthrough during his talks with Prime Minister Manmohan Singh , which he described as part of a continuing dialogue . DT NN IN PRP$ NN , NNP NNP VBD RB TO VB DT NN IN PRP$ NNS IN NNP NNP NNP NNP , WDT PRP VBD IN NN IN DT VBG NN . On Monday , Mr. Aziz said India 's reduction in troops in disputed Kashmir has helped reduce tensions . IN NNP , NNP NNP VBD NNP POS NN IN NNS IN JJ NNP VBZ VBN VB NNS . But he added that a permanent solution is likely to be some time off . CC PRP VBD IN DT JJ NN VBZ JJ TO VB DT NN RP . Mr. Aziz also plans to meet Kashmiri separatist leaders during his visit . NNP NNP RB VBZ TO VB JJ JJ NNS IN PRP$ NN . His trip to India is part of a regional tour as the outgoing chairman of the South Asian Association for Regional Cooperation , or SAARC . PRP$ NN TO NNP VBZ NN IN DT JJ NN IN DT JJ NN IN DT NNP NNP NNP IN NNP NNP , CC NNP . According to the World Bank , 300 million people in China - a number roughly equal to the population of the United States - live on less than a dollar a day . VBG TO DT NNP NNP , CD CD NNS IN NNP IN DT NN RB JJ TO DT NN IN DT NNP NNPS : VBP IN JJR IN DT NN DT NN . As China 's government works to control record high inflation , the country 's poor are struggling to put food on the table . IN NNP POS NN VBZ TO VB JJ JJ NN , DT NN POS NN VBP VBG TO VB NN IN DT NN . And the recent earthquake , officials say , is likely to fuel even higher inflation because of the damage to the country 's agriculture . CC DT JJ NN , NNS VBP , VBZ JJ TO VB RB JJR NN IN IN DT NN TO DT NN POS NN . Sam Beattie reports from Beijing . NNP NNP VBZ IN NNP . German authorities have released a Lebanese man arrested in connection with an alleged plot against Iraqi interim Prime Minister Iyad Allawi . JJ NNS VBP VBN DT JJ NN VBN IN NN IN DT JJ NN IN JJ JJ NNP NNP NNP NNP . But prosecutors have issued arrest orders against three others accused of planning to attack Mr. Allawi during his visit to Germany last week . CC NNS VBP VBN NN NNS IN CD NNS VBN IN VBG TO VB NNP NNP IN PRP$ NN TO NNP JJ NN . Prosecutors identified the three as suspected members of the Islamic militant group Ansar al-Islam , which U.S. authorities have linked to al-Qaida . NNS VBD DT CD IN JJ NNS IN DT NNP JJ NN NNP NNP , WDT NNP NNS VBP VBN TO NNP . Authorities detained the suspects in several German cities just hours before a meeting Friday between Mr. Allawi and German Chancellor Gerhard Schroeder in Berlin . NNS VBD DT NNS IN JJ JJ NNS RB NNS IN DT NN NNP IN NNP NNP CC JJ NNP NNP NNP IN NNP . The Iraqi leader changed his travel plans after the alleged plot was uncovered . DT JJ NN VBD PRP$ NN NNS IN DT JJ NN VBD VBN . U.S. embassy officials in Iraq say an American teen who skipped school and flew to Baghdad without his parents ' permission is on his way home . NNP NN NNS IN NNP VBP DT JJ NN WP VBD NN CC VBD TO VB IN PRP$ NNS POS NN VBZ IN PRP$ NN NN . In a brief statement Friday , the U.S. consul-general in Baghdad announced that 16-year-old Farris Hassan has left Iraq . IN DT JJ NN NNP , DT NNP NN IN NNP VBD IN JJ NNP NNP VBZ VBN NNP . The boy , of Iraqi descent , says he went to the war-torn country to pursue his interest in news reporting , cultivated in a high school journalism class . DT NN , IN JJ NN , VBZ PRP VBD TO DT JJ NN TO VB PRP$ NN IN NN NN , VBN IN DT JJ NN NN NN . The student from Florida bought a plane ticket and left the United States on December 11 , arriving in Kuwait , where he called his parents . DT NN IN NNP VBD DT NN NN CC VBD DT NNP NNPS IN NNP CD , VBG IN NNP , WRB PRP VBD PRP$ NNS . He later flew to Iraq on a flight from Lebanon . PRP RB VBD TO NNP IN DT NN IN NNP . Earlier this week , the boy entered the Iraqi offices of the Associated Press news agency . RBR DT NN , DT NN VBD DT JJ NNS IN DT NNP NNP NN NN . Journalists immediately called the U.S. embassy , where officials had been looking for the teen , at his parents ' request . NNS RB VBD DT NNP NN , WRB NNS VBD VBN VBG IN DT NN , IN PRP$ NNS POS NN . The Israeli army says troops raided the West Bank town of Jenin Monday , arresting eight militants suspected of involvement in making crude rockets and mortars . DT JJ NN VBZ NNS VBD DT NNP NNP NN IN NNP NNP , VBG CD NNS VBN IN NN IN VBG JJ NNS CC NNS . The army says the detained men are members of the Islamic Jihad militant group . DT NN VBZ DT JJ NNS VBP NNS IN DT NNP NNP JJ NN . It says one soldier was slightly wounded during the operation . PRP VBZ CD NN VBD RB VBN IN DT NN . On Sunday , Israel delayed handing over the town of Qalqilya to Palestinian security control , saying the Palestinians have failed to move against militants in Jericho and Tulkarem - the two towns already transferred to them . IN NNP , NNP VBD VBG IN DT NN IN NNP TO JJ NN NN , VBG DT NNS VBP VBN TO VB IN NNS IN NNP CC NNP IN DT CD NNS RB VBN TO PRP . Qalqilya is the third of five West Bank towns Israel is to hand over to Palestinian security control under an agreement the two sides reached last month . NNP VBZ DT NN IN CD NNP NNP NNS NNP VBZ TO VB IN TO JJ NN NN IN DT NN DT CD NNS VBD JJ NN . There is no word on when the remaining two towns - Jenin and Ramallah - will be transferred . EX VBZ DT NN IN WRB DT VBG CD NNS IN NNP CC NNP : MD VB VBN . A powerful earthquake has shaken the area around Tibet in China . DT JJ NN VBZ VBN DT NN IN NNP IN NNP . The U.S. Geological Survey says the quake had a 6.9 magnitude and was centered about 245 kilometers north of Qamdo prefecture , which borders China 's Sichuan province . DT NNP NNP NNP VBZ DT NN VBD DT CD NN CC VBD VBN IN CD NNS RB IN NNP NN , WDT VBZ NNP POS JJ NN . At least one strong aftershock with a 5.2 magnitude struck about 30 minutes later . IN JJS CD JJ NN IN DT CD NN VBD IN CD NNS RB . There were no early reports about damage or injuries . EX VBD DT JJ NNS IN NN CC NNS . A massive 7.9 quake hit Sichuan province in 2008 , killing close to 90,000 people . DT JJ CD NN VBD NNP NN IN CD , VBG RB TO CD NNS . Officials at the United States Embassy in Nepal say they are alarmed by the possibility of an alliance between Maoist rebels and political parties in the Himalayan kingdom . NNS IN DT NNP NNPS NNP IN NNP VBP PRP VBP VBN IN DT NN IN DT NN IN NNP NNS CC JJ NNS IN DT NNP NN . An official statement released by the Embassy says the United States supports the restoration of democracy in Nepal as well as the prevention of a Maoist takeover . DT JJ NN VBN IN DT NNP VBZ DT NNP NNPS VBZ DT NN IN NN IN NNP RB RB IN DT NN IN DT NNP NN . Nepal 's seven major political parties recently offered to talk to the Maoists about forming a broad front opposed to King Gyanendra on the condition that the rebels end violent attacks aimed at civilians . NNP POS CD JJ JJ NNS RB VBD TO VB TO DT NNS IN VBG DT JJ NN VBN TO NNP NNP IN DT NN IN DT NNS VBP JJ NNS VBN IN NNS . The king assumed emergency powers earlier this year and ousted the kingdom 's four-party government for failing to make progress in the battle against the rebels , who have been fighting since 1996 to overthrow the monarchy . DT NN VBD NN NNS RBR DT NN CC VBD DT NN POS JJ NN IN VBG TO VB NN IN DT NN IN DT NNS , WP VBP VBN VBG IN CD TO VB DT NN . Some economists say cyclone damage to Burma 's key rice-growing areas might cut supplies of the key food and lead to a further increase in global rice prices . DT NNS VBP NN NN TO NNP POS JJ JJ NNS MD VB NNS IN DT JJ NN CC VB TO DT JJ NN IN JJ NN NNS . Burma , also known as Myanmar , was expected to export about 4,00,000 metric tons of rice this year . NNP , RB VBN IN NNP , VBD VBN TO VB IN CD JJ NNS IN NN DT NN . The President of the Thai Rice Exporters Association , Chookiat Ophaswongse , says in a story by the Bloomberg financial news service that , Burma may now have to import rice instead . DT NNP IN DT JJ NNP NNP NNP , NNP NNP , VBZ IN DT NN IN DT NNP JJ NN NN IN , NNP MD RB VB TO VB NN RB . Rice is the staple food for about half of the world 's population and its prices hit record highs in late April after some other rice-producing nations put restrictions on some exports . NN VBZ DT NN NN IN IN NN IN DT NN POS NN CC PRP$ NNS VBD NN NNS IN JJ NNP IN DT JJ JJ NNS VBD NNS IN DT NNS . While in Pakistan , President Bush tried to learn the game of cricket and how it differs from baseball . IN IN NNP , NNP NNP VBD TO VB DT NN IN NN CC WRB PRP VBZ IN NN . Mr. Bush bowled and batted several times on a small cricket pitch set up on the grounds of the U.S. embassy , as students from the Islamabad College for Boys looked on and encouraged him . NNP NNP VBD CC VBD JJ NNS IN DT JJ NN NN VBD RP IN DT NNS IN DT NNP NN , IN NNS IN DT NNP NNP IN NNPS VBD IN CC VBD PRP . He got a quick lesson on how to hold the bat from the chairman of the Pakistan Cricket Board , Shaharyar Khan . PRP VBD DT JJ NN IN WRB TO VB DT NN IN DT NN IN DT NNP NNP NNP , NNP NNP . Khan also explained to the former owner of a Texas baseball team how cricket , the popular sport of the old British empire , differs from baseball . NNP RB VBD TO DT JJ NN IN DT NNP NN NN WRB NN , DT JJ NN IN DT JJ JJ NN , NNS IN NN . Pakistani cricket team captain Inzamam-ul-Haq and famous batsman Salman Butt were also on hand to share their expertise with Mr. Bush . JJ NN NN NN NNP CC JJ NN NNP NNP VBD RB IN NN TO VB PRP$ NN IN NNP NNP . The government of Nepal is responding to international criticism of controversial municipal elections held earlier this week . DT NN IN NNP VBZ VBG TO JJ NN IN JJ JJ NNS VBN RBR DT NN . A statement from Nepal 's foreign ministry Saturday called the criticism objectionable and unacceptable . DT NN IN NNP POS JJ NN NNP VBD DT NN JJ CC JJ . The statement further urged foreign governments to refrain from making what it described as ' insolent comments ' about Nepal 's internal affairs . DT NN RB VBD JJ NNS TO VB IN VBG WP PRP VBD IN `` JJ NNS `` IN NNP POS JJ NNS . The response followed allegations by several other countries , including India , Japan , Britain and the United States , who all said Wednesday 's vote was flawed . DT NN VBD NNS IN JJ JJ NNS , VBG NNP , NNP , NNP CC DT NNP NNPS , WP DT VBD NNP POS NN VBD VBN . Seven major opposition parties boycotted the vote and the election sparked almost daily anti-government demonstrations . CD JJ NN NNS VBD DT NN CC DT NN VBD RB JJ NN NNS . The vice chairman of Nepal 's cabinet , the royal council of ministers , Tulsi Giri , is promising to proceed with general elections in April regardless of whether opposition parties participate . DT NN NN IN NNP POS NN , DT JJ NN IN NNS , NNP NNP , VBZ VBG TO VB IN JJ NNS IN NNP RB IN IN NN NNS VBP . King Gyanendra took absolute power last year with a promise to crush the Maoist rebellion and restore multi-party democracy . NNP NNP VBD JJ NN JJ NN IN DT NN TO VB DT NNP NN CC VB JJ NN . Russian energy giant Gazprom has blasted European calls to ratify an agreement to guarantee Russian gas shipments to Europe . JJ NN NN NNP VBZ VBN JJ NNS TO VB DT NN TO VB JJ NN NNS TO NNP . Gazprom deputy chief executive Alexander Medvedev Tuesday criticized a proposed energy charter between the EU and Russia , saying the document no longer represents market conditions . NNP NN NN NN NNP NNP NNP VBD DT VBN NN NN IN DT NNP CC NNP , VBG DT NN RB RB VBZ NN NNS . Part of the charter would require Russia to effectively allow third-party access to the state-owned Gazprom 's export pipeline network . NN IN DT NN MD VB NNP TO RB VB JJ NN TO DT JJ NNP POS NN NN NN . Europe currently relies on Russia for a quarter of its natural gas . NNP RB VBZ IN NNP IN DT NN IN PRP$ JJ NN . Gazprom officials have threatened to sell the gas elsewhere if European countries move to limit the company 's expansion . NNP NNS VBP VBN TO VB DT NN RB IN JJ NNS VBP TO VB DT NN POS NN . Earlier this year , Gazprom temporarily cut gas supplies to Ukraine in a price dispute . RBR DT NN , NNP RB VBD NN NNS TO VB IN DT NN NN . The blockage sharply reduced deliveries to other European countries , prompting calls from some EU members for applying the bloc 's anti-monopoly rules to the Russian firm . DT NN RB VBD NNS TO JJ JJ NNS , VBG NNS IN DT NNP NNS IN VBG DT NN POS JJ NNS TO DT JJ NN . Former Croatian General Ante Gotovina , who many Croats still consider a hero , goes on trial Tuesday in The Hague for war crimes committed during the closing months of the war in Croatia in 1995 . JJ JJ NNP NNP NNP , WP JJ NNS RB VBP DT NN , VBZ IN NN NNP IN DT NN IN NN NNS VBN IN DT NN NNS IN DT NN IN NNP IN CD . The United Nations War Crimes Tribunal has charged Gotovina and two other ex-generals - Ivan Cermak and Mladen Markac - with doing nothing while soldiers murdered at least 37 ethnic Serbs in Krajina . DT NNP NNP NNP NNP NNP VBZ VBN NNP CC CD JJ NNS : NNP NNP CC NNP NNP : IN VBG DT IN NNS VBN IN JJS CD JJ NNS IN NNP . The troops also burned and plundered villages , and stabbed civilians who tried to escape . DT NNS RB VBD CC VBD NNS , CC VBD NNS WP VBD TO VB . The court says some family members were forced to watch their relatives being killed . DT NN VBZ DT NN NNS VBD VBN TO VB PRP$ NNS VBG VBN . All three defendants have pleaded not guilty . DT CD NNS VBP VBN RB JJ . Gotovina was indicted in 2001 but was at large until his arrest four years later in the Canary Islands . NNP VBD VBN IN CD CC VBD IN JJ IN PRP$ NN CD NNS RB IN DT NNP NNP . Many Croats regard Gotovina as a national hero for re-taking Croatian land seized by Serb rebels . JJ NNS VBP NNP IN DT JJ NN IN JJ JJ NN VBN IN JJ NNS . Western and Muslim leaders and activists are meeting in Austria for a conference on Islam and ways to promote understanding between Muslims and non-Muslims . NNP CC NNP NNS CC NNS VBP VBG IN NNP IN DT NN IN NNP CC NNS TO VB NN IN NNPS CC NNPS . Austrian Foreign Minister Ursula Plassnik says the three-day ' Islam in a Pluralistic World ' is also aimed at increasing dialogue between different religions . JJ JJ NN NNP NNP VBZ DT JJ `` NNP IN DT JJ NN `` VBZ RB VBN IN VBG NN IN JJ NNS . Scheduled speakers include Afghan President Hamid Karzai and Iraqi President Jalal Talabani who is expected to discuss Islam 's role in a world of interwoven interests and economies . VBN NNS VBP JJ NNP NNP NNP CC JJ NNP NNP NNP WP VBZ VBN TO VB NNP POS NN IN DT NN IN JJ NNS CC NNS . Other attendees include former Iranian president Mohammed Khatami and Iranian human rights attorney Shirin Ebadi , who won the 2003 Nobel Peace Prize . JJ NNS VBP JJ JJ NN NNP NNP CC JJ JJ NNS NN NNP NNP , WP VBD DT CD NNP NNP NNP . The conference comes as the riots in France have forced new dialogue on how Muslims are viewed in European society . DT NN VBZ IN DT NNS IN NNP VBP VBN JJ NN IN WRB NNS VBP VBN IN JJ NN . If the housing crisis is not pressing enough , rising credit card debt is creating more hardship for many Americans . IN DT NN NN VBZ RB VBG RB , VBG NN NN NN VBZ VBG JJR NN IN JJ NNS . An analysis by the newspaper USA Today shows credit card debt grew between 2001 and early 2006 , fueled in part , by rising home equity , the value of a home minus its outstanding loans . DT NN IN DT NN NNP NNP VBZ NN NN NN VBD IN CD CC RB CD , VBN IN NN , IN VBG NN NN , DT NN IN DT NN NN PRP$ JJ NNS . Some consumer advocates blame the banking industry for taking advantage of homeowners who now find themselves in a credit trap . DT NN NNS VBP DT NN NN IN VBG NN IN NNS WP RB VBP PRP IN DT NN NN . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Al-Qaida 's number two leader has appeared in a video praising Abu Musab al-Zarqawi , the leader of al-Qaida in Iraq killed on June seventh by a U.S. air strike . NNP POS NN CD NN VBZ VBN IN DT NN VBG NNP NNP NNP , DT NN IN NNP IN NNP VBD IN NNP JJ IN DT NNP NN NN . Ayman al-Zawahiri 's video aired Friday on Al Jazeera . NNP NNP POS NN VBD NNP IN NNP NNP . In it , Zawahiri appeared in front of a portrait of Zarqawi . IN PRP , NNP VBD IN NN IN DT NN IN NNP . He called Zarqawi the prince of martyrs and said that no member of al-Qaida would die without avenging him . PRP VBD NNP DT NN IN NNS CC VBD IN DT NN IN NNP MD VB IN VBG PRP . He also criticized several Iraqi government officials and the U.S. Ambassador to Iraq . PRP RB VBD JJ JJ NN NNS CC DT NNP NN TO NNP . Zawahiri did not mention Zarqawi 's successor as leader of al-Qaida in Iraq , Abu Hamza al-Muhajer . NNP VBD RB VB NNP POS NN IN NN IN NNP IN NNP , NNP NNP NNP . The omission may mean the tape was made before Muhajer was appointed or that Zawahiri does not endorse him . DT NN MD VB DT NN VBD VBN IN NNP VBD VBN CC IN NNP VBZ RB VB PRP . Zawahiri , along with al-Qaida chief Osama bin Laden , is thought to be hiding somewhere along the rugged border dividing Afghanistan and Pakistan . NNP , IN IN NNP NN NNP NNP NNP , VBZ VBN TO VB VBG RB IN DT JJ NN VBG NNP CC NNP . Thousands of Cubans gathered around the U.S. diplomatic office in Havana Tuesday , to demonstrate against what President Fidel Castro has called ' provocations ' from Washington . NNS IN NNS VBD IN DT NNP JJ NN IN NNP NNP , TO VB IN WP NNP NNP NNP VBZ VBN `` NNS `` IN NNP . The marchers are protesting an electronic message board posted on the side of the building that since last week has been displaying passages from the Universal Declaration of Human Rights and quotes from slain American civil rights leader , Martin Luther King . DT NNS VBP VBG DT JJ NN NN VBD IN DT NN IN DT NN IN IN JJ NN VBZ VBN VBG NNS IN DT NNP NNP IN NNP NNPS CC NNS IN JJ JJ JJ NNS NN , NNP NNP NNP . Mr. Castro called for the march on Sunday during a speech on national television , accusing Washington of human rights violations in Iraq and Afghanistan . NNP NNP VBD IN DT NN IN NNP IN DT NN IN JJ NN , VBG NNP IN JJ NNS NNS IN NNP CC NNP . Tuesday 's march also was timed to coincide with the court appearance of Cuban exile Luis Posada Carriles , who is being held at a U.S. federal detention center on immigration charges . NNP POS NN RB VBD VBN TO VB IN DT NN NN IN JJ NN NNP NNP NNP , WP VBZ VBG VBN IN DT NNP JJ NN NN IN NN NNS . Cuba says the Bush administration is protecting Posada Carriles , who is wanted for his alleged role in the bombing of a Cuban airliner in 1976 . NNP VBZ DT NNP NN VBZ VBG NNP NNP , WP VBZ VBN IN PRP$ JJ NN IN DT NN IN DT JJ NN IN CD . Nigeria 's president has inaugurated the nation 's energy board with a promise to commission the country 's first nuclear power plant within 10 to 12 years . NNP POS NN VBZ VBN DT NN POS NN NN IN DT NN TO NN DT NN POS JJ JJ NN NN IN CD CC CD NNS . President Olusegun Obasanjo said Monday in the capital , Abuja , that the nuclear capacity would be strictly for peaceful purposes to strengthen the nation 's electrical system . NNP NNP NNP VBD NNP IN DT NN , NNP , IN DT JJ NN MD VB RB IN JJ NNS TO VB DT NN POS JJ NN . He stressed that Nigeria is ' unequivocally committed to the Nuclear Non-Proliferation Treaty . ' PRP VBD IN NNP VBZ `` RB VBN TO DT NNP NNP NNP . `` Mr. Obasanjo made the comments to the Nigeria Atomic Energy Commission , which he chairs . NNP NNP VBD DT NNS TO DT NNP NNP NNP NNP , WDT PRP VBZ . He said the commission will be working to enhance electricity capabilities for Nigeria 's impoverished population . PRP VBD DT NN MD VB VBG TO VB NN NNS IN NNP POS JJ NN . Israel says clashes have broken out between Israeli forces and Hezbollah guerrillas on the Lebanon border for a second straight day . NNP VBZ NNS VBP VBN RP IN JJ NNS CC NNP NNS IN DT NNP NN IN DT JJ JJ NN . The Israeli army said the fighting in the Shebaa Farms region erupted early Thursday , and was continuing . DT JJ NN VBD DT NN IN DT NNP NNP NN VBD RB NNP , CC VBD VBG . But , a Hezbollah spokesman told Reuters news service in Beirut that guerrilla fighters did not respond to Israeli firing . CC , DT NNP NN VBD NNP NN NN IN NNP IN NN NNS VBD RB VB TO JJ NN . Wednesday , one Israeli soldier and one Hezbollah fighter were killed , when guerillas fired rockets on Israeli military positions , and Israeli warplanes bombed targets in a village nearby . NNP , CD JJ NN CC CD NNP NN VBD VBN , WRB NNS VBD NNS IN JJ JJ NNS , CC JJ NNS VBD NNS IN DT NN RB . Shebaa Farms has been the focus of Hezbollah attacks and Israeli counter-attacks since Israel withdrew from southern Lebanon in 2000 , after a 22-year occupation . NNP NNP VBZ VBN DT NN IN NNP NNS CC JJ NNS IN NNP VBD IN JJ NNP IN CD , IN DT JJ NN . Lebanon and Syria say the area is Lebanese . NNP CC NNP VBP DT NN VBZ JJ . But cartographers say it belongs to a part of Syria that has been occupied by Israel since the 1967 war . CC NNS VBP PRP VBZ TO DT NN IN NNP WDT VBZ VBN VBN IN NNP IN DT CD NN . South Africa 's ruling party has promised to improve services and create jobs for the country 's poor majority . NNP NNP POS NN NN VBZ VBN TO VB NNS CC VB NNS IN DT NN POS JJ NN . President Thabo Mbeki unveiled a $ 65 billion spending plan Sunday at a rally launching the African National Congress ' campaign for municipal elections . NNP NNP NNP VBD DT $ CD CD NN NN NNP IN DT NN VBG DT NNP NNP NNP POS NN IN JJ NNS . The ANC 's election manifesto says the money would be used to build roads , dams , power plants , rail networks , and communications infrastructure . DT NNP POS NN NN VBZ DT NN MD VB VBN TO VB NNS , NNS , NN NNS , NN NNS , CC NNS NN . It says every household will have access to running water , electricity , and decent sanitation by 2012 . PRP VBZ DT NN MD VB NN TO VBG NN , NN , CC JJ NN IN CD . The ANC has ruled South Africa since the end of apartheid in 1994 but faces growing dissent over poor basic services and Mr. Mbeki 's firing of popular Deputy President Jacob Zuma . DT NNP VBZ VBN NNP NNP IN DT NN IN NN IN CD CC VBZ VBG NN IN JJ JJ NNS CC NNP NNP POS NN IN JJ NNP NNP NNP NNP . The ANC says Mr. Zuma , who faces rape and corruption charges , will still help the party campaign for the March 1 elections . DT NNP VBZ NNP NNP , WP VBZ NN CC NN NNS , MD RB VB DT NN NN IN DT NNP CD NNS . German Chancellor Gerhard Schroeder and his challenger , Angela Merkel , are campaigning in the eastern city of Dresden ahead of Sunday 's vote for the only seat left undecided in this month 's parliamentary elections . JJ NNP NNP NNP CC PRP$ NN , NNP NNP , VBP VBG IN DT JJ NN IN NNP RB IN NNP POS NN IN DT JJ NN VBD JJ IN DT NN POS JJ NNS . Both sides hope to gain an edge in talks on a new government after the inconclusive September 18 balloting left Ms. Merkel 's Christian Democrats just three seats ahead of the Chancellor 's Social Democrats . DT NNS VBP TO VB DT NN IN NNS IN DT JJ NN IN DT JJ NNP CD NN VBD NNP NNP POS NNP NNPS RB CD NNS RB IN DT NNP POS NNP NNPS . The two sides have been discussing forming a so-called ' Grand Coalition ' of their two parties after neither side could get enough backing in parliament to form a government . DT CD NNS VBP VBN VBG VBG DT JJ `` NNP NNP `` IN PRP$ CD NNS IN DT NN MD VB JJ NN IN NN TO VB DT NN . But the talks are stalled because both Chancellor Schroeder and Ms. Merkel continue to claim the right to be the next chancellor . CC DT NNS VBP VBN IN DT NNP NNP CC NNP NNP VBP TO VB DT NN TO VB DT JJ NN . Sunday 's Dresden vote was delayed for two weeks by the death of a candidate from a far-right party shortly before the election . NNP POS NNP NN VBD VBN IN CD NNS IN DT NN IN DT NN IN DT JJ NN RB IN DT NN . German Chancellor Gerhard Schroeder has confirmed that he will not be part of the country 's next government to be headed by Christian Democratic Union leader Angela Merkel . JJ NNP NNP NNP VBZ VBN IN PRP MD RB VB NN IN DT NN POS JJ NN TO VB VBN IN NNP NNP NNP NN NNP NNP . Mr. Schroeder made the comment Wednesday in a speech to trade union members in his hometown of Hanover . NNP NNP VBD DT NN NNP IN DT NN TO VB NN NNS IN PRP$ NN IN NNP . Ms. Merkel 's conservative party narrowly beat Mr. Schroeder 's Social Democrats in the September 18 parliamentary elections . NNP NNP POS JJ NN RB VBD NNP NNP POS NNP NNPS IN DT NNP CD JJ NNS . The two parties agreed to a coalition deal Monday under which Ms. Merkel will become the new chancellor while the Social Democrats control a majority of cabinet posts . DT CD NNS VBD TO DT NN NN NNP IN WDT NNP NNP MD VB DT JJ NN IN DT NNP NNPS VBP DT NN IN NN NNS . In Washington , a White House spokesman says President Bush telephoned Ms. Merkel to congratulate her on her selection as chancellor . IN NNP , DT NNP NNP NN VBZ NNP NNP VBD NNP NNP TO VB PRP IN PRP$ NN IN NN . Mr. Bush said he looks forward to working with her to build a strong foundation of U.S.-German relations . NNP NNP VBD PRP VBZ RB TO VBG IN PRP TO VB DT JJ NN IN JJ NNS . A new United Nations report says insurgent and terrorist violence in Afghanistan sharply increased last year , with more than 8,000 conflict-related deaths . DT JJ NNP NNPS NN VBZ JJ CC JJ NN IN NNP RB VBD JJ NN , IN JJR IN CD JJ NNS . In his report issued Monday , U.N. Secretary-General Ban Ki-moon said he is concerned that a fifth of those killed were civilians . IN PRP$ NN VBN NNP , NNP NN NNP NNP VBD PRP VBZ VBN IN DT NN IN DT VBN VBD NNS . He also cited increased attacks on humanitarian workers and aid convoys . PRP RB VBD VBN NNS IN JJ NNS CC NN NNS . Mr. Ban said Taliban insurgents , related armed groups and drug trafficking all represent serious threats to Afghanistan 's stability , with violence spreading to the previously calm northwest . NNP NNP VBD NNP NNS , VBN JJ NNS CC NN NN DT VBP JJ NNS TO NNP POS NN , IN NN VBG TO DT RB JJ NN . His report also highlights the way the conflict has changed from a conventional war between western forces and the Taliban to an insurgency using suicide attacks , assassinations , abductions and roadside bombings . PRP$ NN RB VBZ DT NN DT NN VBZ VBN IN DT JJ NN IN JJ NNS CC DT NNP TO DT NN VBG NN NNS , NNS , NNS CC NN NNS . As expected , Mr. Ban recommended that the mandate for the U.N. mission in Afghanistan - which expires later this month - be extended for another year . IN VBN , NNP NNP VBD IN DT NN IN DT NNP NN IN NNP : WDT VBZ RB DT NN : VB VBN IN DT NN . The U.S. military says one U.S. Marine and one Afghan government soldier have been killed in fighting with militants in eastern Afghanistan . DT NNP NN VBZ CD NNP NNP CC CD JJ NN NN VBP VBN VBN IN VBG IN NNS IN JJ NNP . A military statement says four other Afghan soldiers were wounded in the clash Thursday as they tried to ' disrupt enemy forces ' in Kunar province to prepare for next month 's parliamentary elections . DT JJ NN VBZ CD JJ JJ NNS VBD VBN IN DT NN NNP IN PRP VBD TO `` VB NN NNS `` IN NNP NN TO VB IN JJ NN POS JJ NNS . The wounded Afghan soldiers were taken to a nearby U.S. base in the city of Asadabad for treatment . DT JJ JJ NNS VBD VBN TO DT JJ NNP NN IN DT NN IN NNP IN NN . Two of them later returned to duty . CD IN PRP RB VBD TO NN . The deaths came on the same day that two U.S. soldiers were killed by a roadside bomb in the southern province of Kandahar . DT NNS VBD IN DT JJ NN IN CD NNP NNS VBD VBN IN DT NN NN IN DT JJ NN IN NNP . Violence in Afghanistan has surged in recent months as Taleban insurgents try to sabotage next month 's parliamentary polls . NN IN NNP VBZ VBN IN JJ NNS IN NNP NNS VBP TO VB JJ NN POS JJ NNS . Rescuers in Latin America have resumed their search Friday for survivors of mudslides and floodwaters triggered by Hurricane Stan . NNS IN NNP NNP VBP VBN PRP$ NN NNP IN NNS IN NNS CC NNS VBN IN NNP NNP . At least 223 people have been killed and many others are missing in Latin America after several days of heavy rains , mudslides and flooding from the storm , which came ashore Tuesday on Mexico 's eastern Gulf Coast . IN JJS CD NNS VBP VBN VBN CC JJ NNS VBP VBG IN NNP NNP IN JJ NNS IN JJ NNS , NNS CC NN IN DT NN , WDT VBD RB NNP IN NNP POS JJ NNP NNP . Rescuers in Guatemala Thursday pulled 40 bodies from a mudslide about 100 kilometers west of Guatemala City . NNS IN NNP NNP VBD CD NNS IN DT NN IN CD NNS JJS IN NNP NNP . Scores of other people were killed in Mexico and Central America after the storm ripped through the region , knocking down power lines and ripping apart houses . NNS IN JJ NNS VBD VBN IN NNP CC NNP NNP IN DT NN VBD IN DT NN , VBG RP NN NNS CC VBG RB NNS . Tens of thousands of people fled their homes , and many remain homeless . NNS IN NNS IN NNS VBD PRP$ NNS , CC JJ VBP JJ . The United Nations says it is rushing assistance to El Salvador and Costa Rica , and remains ready to mobilize international support for emergency relief and recovery efforts . DT NNP NNP VBZ PRP VBZ VBG NN TO NNP NNP CC NNP NNP , CC VBZ JJ TO VB JJ NN IN NN NN CC NN NNS . Burmese officials say ethnic Karen rebels attacked a convoy of trucks and buses on a highway in southern Burma , killing eight people and wounding 15 others . JJ NNS VBP JJ NNP NNS VBD DT NN IN NNS CC NNS IN DT NN IN JJ NNP , VBG CD NNS CC VBG CD NNS . Officials say a gunfight broke out between security forces and the Karen National Union rebels during the pre-dawn attack Thursday on two trucks and 12 passenger buses along the Dawei-Ye highway between Dawei and Rangoon . NNS VBP DT NN VBD RP IN NN NNS CC DT NNP NNP NNP NNS IN DT JJ NN NNP IN CD NNS CC CD NN NNS IN DT JJ NN IN NNP CC NNP . Among the dead were a university student and a teacher . IN DT NN VBD DT NN NN CC DT NN . The vehicles included two buses carrying students and lecturers from Dawei University . DT NNS VBD CD NNS VBG NNS CC NNS IN NNP NNP . The rebels are reported to have taken about $ 3,400 in cash and jewelry from passengers before the gunmen fled . DT NNS VBP VBN TO VB VBN RB $ CD IN NN CC NN IN NNS IN DT NNS VBD . The KNU is the only major rebel group not to have signed a cease-fire with the military government . DT NNP VBZ DT RB JJ NN NN RB TO VB VBN DT NN IN DT JJ NN . Pakistan 's President Asif Ali Zardari is meeting Britain 's Prime Minister David Cameron on Thursday for the first time since the British leader 's remarks suggesting that Islamabad is promoting ' the export of terror . ' NNP POS NNP NNP NNP NNP VBZ VBG NNP POS NNP NNP NNP NNP IN NNP IN DT JJ NN IN DT JJ NN POS NNS VBG IN NNP VBZ VBG `` DT NN IN NN . `` Mr. Zardari will have dinner with Mr. Cameron at the British prime minister 's country retreat Chequers , outside London . NNP NNP MD VB NN IN NNP NNP IN DT JJ JJ NN POS NN NN NNP , IN NNP . The leaders hold formal talks on Friday . DT NNS VBP JJ NNS IN NNP . During a trip to India last week , Prime Minister Cameron suggested Pakistan was not doing enough to counter terrorist groups within its borders that threaten India , Afghanistan and other nations . IN DT NN TO NNP JJ NN , NNP NNP NNP VBD NNP VBD RB VBG RB TO VB JJ NNS IN PRP$ NNS WDT VBP NNP , NNP CC JJ NNS . The comments angered Pakistan . DT NNS VBD NNP . Earlier this week President Zardari told the French newspaper Le Monde that Pakistan is paying the ' highest price of human life ' in the war on terrorism . RBR DT NN NNP NNP VBD DT JJ NN NNP NNP IN NNP VBZ VBG DT `` JJS NN IN JJ NN `` IN DT NN IN NN . Mr. Cameron has stood by his remarks . NNP NNP VBZ VBN IN PRP$ NNS . President Zardari traveled to Britain from France on Tuesday . NNP NNP VBD TO NNP IN NNP IN NNP . European Union officials have confirmed the first outbreak of the deadly H5N1 strain of bird flu in an EU country this year . NNP NNP NNS VBP VBN DT JJ NN IN DT JJ NNP NN IN NN NN IN DT NNP NN DT NN . European Commission officials say laboratory tests have confirmed the presence of the deadly strain in geese found dead in Csongrad County in southeastern Hungary . JJ NNP NNS VBP NN NNS VBP VBN DT NN IN DT JJ NN IN NNS VBN JJ IN NNP NNP IN JJ NNP . They say tests were conducted because of an abnormally high mortality rate among the birds . PRP VBP NNS VBD VBN IN IN DT RB JJ NN NN IN DT NNS . Hungarian officials have slaughtered all 3,000 birds in the affected flock . JJ NNS VBP VBN DT CD NNS IN DT JJ NN . They also have set up a three-kilometer protection zone and a 10-kilometer surveillance zone around the area . PRP RB VBP VBN RP DT JJ NN NN CC DT JJ NN NN IN DT NN . The discovery is the first in an EU country since last August . DT NN VBZ DT NN IN DT NNP NN IN JJ NNP . EU experts are to meet Friday to review the situation . NNP NNS VBP TO VB NNP TO VB DT NN . Meanwhile , Croatia has banned poultry imports from Hungary following the announcement . RB , NNP VBZ VBN JJ NNS IN NNP VBG DT NN . Bird flu has killed more than 150 people worldwide since 2003 , mostly in Asia . NN NN VBZ VBN JJR IN CD NNS JJ IN CD , RB IN NNP . The U.S. men 's national football team has completed a 10-day training camp in Cary , North Carolina ahead of the World Cup finals next month in Germany . DT NNP NNS POS JJ NN NN VBZ VBN DT JJ NN NN IN NNP , NNP NNP RB IN DT NNP NNP NNS JJ NN IN NNP . U.S. coach Bruce Arena says he is satisfied that his team is healthy and ready for the first of three tuneup games . NNP NN NNP NNP VBZ PRP VBZ VBN IN PRP$ NN VBZ JJ CC JJ IN DT NN IN CD NN NNS . At Sunday 's final practice , Arena reminded his players numerous times not to fight too hard for the ball and save their aggression for World Cup games . IN NNP POS JJ NN , NNP VBD PRP$ NNS JJ NNS RB TO VB RB JJ IN DT NN CC VB PRP$ NN IN NNP NNP NNS . The Americans host Morocco on Tuesday in Nashville , Tennessee before facing Venezuela on Friday in Cleveland , Ohio . DT NNS VBP NNP IN NNP IN NNP , NNP IN VBG NNP IN NNP IN NNP , NNP . The last warmup game is next Sunday against Latvia in East Hartford , Connecticut . DT JJ NN NN VBZ JJ NNP IN NNP IN NNP NNP , NNP . The Americans , who made an impressive quarterfinal run at the 2002 World Cup , will face the Czech Republic , Italy and Ghana next month at the global football tournament . DT NNS , WP VBD DT JJ JJ NN IN DT CD NNP NNP , MD VB DT JJ NNP , NNP CC NNP JJ NN IN DT JJ NN NN . Russia has criticized a recent White House report that calls for greater democratic reforms in Russia 's neighbors . NNP VBZ VBN DT JJ NNP NNP NN WDT VBZ IN JJR JJ NNS IN NNP POS NNS . In a statement Monday , Russia 's foreign ministry said the report showed that U.S. officials are seeking an active democracy-building role in the region . IN DT NN NNP , NNP POS JJ NN VBD DT NN VBD IN NNP NNS VBP VBG DT JJ JJ NN IN DT NN . It warned that , in its words , ' artificial ' and ' forceful ' attempts at planting democracy in other countries may not be successful . PRP VBD IN , IN PRP$ NNS , `` JJ `` CC `` JJ `` NNS IN VBG NN IN JJ NNS MD RB VB JJ . It added that no one has a monopoly on interpreting the basis of democracy . PRP VBD IN DT NN VBZ DT NN IN VBG DT NN IN NN . The statement follows the release last week of President Bush 's new national security strategy , which criticized Russia for falling off the path to democracy . DT NN VBZ DT NN JJ NN IN NNP NNP POS JJ JJ NN NN , WDT VBD NNP IN VBG RP DT NN TO NN . Referring to Russia , it said recent trends ' regrettably point toward a diminishing commitment to democratic freedoms and institutions . ' VBG TO NNP , PRP VBD JJ NNS `` RB NN IN DT VBG NN TO JJ NNS CC NNS . `` Mr. Bush said future relations will depend on Russia 's domestic and foreign policies . NNP NNP VBD JJ NNS MD VB IN NNP POS JJ CC JJ NNS . A top international security organization has urged the candidates in Kyrgyzstan 's July 10 presidential election to agree to a code of conduct for the sake of the country 's stability . DT JJ JJ NN NN VBZ VBN DT NNS IN NNP POS NNP CD JJ NN TO VB TO DT NN IN NN IN DT NN IN DT NN POS NN . The statement by the Organization for Security and Cooperation in Europe comes more than two months after a popular uprising ousted President Askar Akayev . DT NN IN DT NNP IN NNP CC NNP IN NNP VBZ JJR IN CD NNS IN DT JJ NN VBD NNP NNP NNP . Mr. Akayev fled to Russia in March after a revolt spurred by complaints over vote-rigging in parliamentary elections earlier this year . NNP NNP VBD TO NNP IN NNP IN DT NN VBN IN NNS IN NN IN JJ NNS RBR DT NN . Earlier Wednesday , several dozen young people forced their way into Kyrgyzstan 's Supreme Court building and evicted supporters of rival political groups who occupied the building since April . RBR NNP , JJ NN JJ NNS VBD PRP$ NN IN NNP POS NNP NNP NN CC VBN NNS IN JJ JJ NNS WP VBD DT NN IN NNP . Witnesses say several people were injured in the fighting . NNS VBP JJ NNS VBD VBN IN DT NN . The activists forced to flee the building backed politicians who had been disqualified by courts from running in this year 's parliamentary elections . DT NNS VBN TO VB DT NN VBD NNS WP VBD VBN VBN IN NNS IN VBG IN DT NN POS JJ NNS . A Venezuela-based television station begins limited broadcasts Sunday as a counter to what its creators say is biased media coverage by European and U.S.-run channels . DT JJ NN NN VBZ JJ NNS NNP IN DT NN TO WP PRP$ NNS VBP VBZ JJ NNS NN IN JJ CC JJ NNS . Telesur is a joint venture funded by Venezuela , Argentina , Cuba and Uruguay . NNP VBZ DT JJ NN VBN IN NNP , NNP , NNP CC NNP . Organizers say they aim to develop a hemispheric television network to provide programs from a Latin American perspective . NNS VBP PRP VBP TO VB DT JJ NN NN TO VB NNS IN DT JJ JJ NN . The U.S. House of Representatives on Wednesday passed an amendment authorizing radio and television broadcasts to Venezuela . DT NNP NNP IN NNPS IN NNP VBD DT NN VBG NN CC NN NNS TO NNP . The amendment was to a bill authorizing State Department programs . DT NN VBD TO DT NN VBG NNP NNP NNS . The amendment 's author , Florida Republican Connie Mack , said the U.S. broadcasts would offer what he called a consistently accurate , objective and comprehensive source of news to Venezuela . DT NN POS NN , NNP NNP NNP NNP , VBD DT NNP NNS MD VB WP PRP VBD DT RB JJ , JJ CC JJ NN IN NN TO NNP . The measure still requires Senate approval . DT NN RB VBZ NNP NN . Venezuelan President Hugo Chavez says his government will ' jam the signal ' of any broadcasts from the United States . JJ NNP NNP NNP VBZ PRP$ NN MD `` VB DT NN `` IN DT NNS IN DT NNP NNPS . Ukrainian lawmakers have set Tuesday for a repeat vote on Yulia Tymoshenko 's nomination as prime minster . JJ NNS VBP VBN NNP IN DT NN NN IN NNP NNP POS NN IN JJ NN . Members of the unicameral parliament Verkhovna Rada also agreed Friday to vote by raising hands to ensure transparency . NNS IN DT JJ NN NNP NNP RB VBD NNP TO VB IN VBG NNS TO VB NN . Ms. Tymoshenko failed to win the absolute majority by one vote Tuesday . NNP NNP VBD TO VB DT JJ NN IN CD NN NNP . Ms. Tymoshenko accused her political rivals of tampering with the electronic voting system , saying the device failed to register two votes cast in her favor . NNP NNP VBD PRP$ JJ NNS IN VBG IN DT JJ NN NN , VBG DT NN VBD TO VB CD NNS VBN IN PRP$ NN . The vote will follow President Viktor Yushchenko 's decision Wednesday to again nominate her for the post . DT NN MD VB NNP NNP NNP POS NN NNP TO RB VB PRP IN DT NN . Belgian tennis star Justine Henin-Hardenne has won the women 's title at the Sydney International tournament in Australia . JJ NN NN NNP NNP VBZ VBN DT NNS POS NN IN DT NNP NNP NN IN NNP . She lost the first set and trailed Italian Francesca Schiavone 04-Jan in the second set before rallying to win Friday 's final , 04-Jun , 07-May , 07-May . PRP VBD DT JJ NN CC VBD JJ NNP NNP CD IN DT JJ NN IN VBG TO VB NNP POS JJ , CD , CD , CD . Two years ago , Henin-Hardenne won this tournament and went on to take the season 's first major at the Australian Open two weeks later . CD NNS RB , NNP VBD DT NN CC VBD IN TO VB DT NN POS JJ JJ IN DT JJ NNP CD NNS RB . This year 's Australian Open begins Monday . DT NN POS JJ NN VBZ NNP . Earlier in the day , in a men 's semifinal , American James Blake overcame a 04-Feb first-set deficit to upset second-seeded Nikolay Davydenko of Russia , 06-Apr , 06-Feb . RBR IN DT NN , IN DT NNS POS JJ , JJ NNP NNP VBD DT JJ JJ NN TO VB JJ NNP NNP IN NNP , CD , CD . Blake will play the Sydney final on Saturday against Russia 's Igor Andreev , who beat Andreas Seppi of Italy , 06-Feb , 02-Jun , 06-Feb . NNP MD VB DT NNP JJ IN NNP IN NNP POS NNP NNP , WP VBD NNP NNP IN NNP , CD , CD , CD . Andreev and Blake will be vying for their fourth career ATP tournament wins . NNP CC NNP MD VB VBG IN PRP$ JJ NN NNP NN NNS . Ukrainian troops have joined their U.S. counterparts in NATO military exercises as tensions mount over the aspirations of former Soviet republics to enter the alliance . JJ NNS VBP VBN PRP$ NNP NNS IN NNP JJ NNS IN NNS VBP IN DT NNS IN JJ JJ NNS TO VB DT NN . The two-week NATO ' Sea Breeze ' exercises along the Black Sea coast also include forces from Armenia , Azerbaijan , Georgia , and key countries of western Europe . DT JJ NNP `` NNP NNP `` NNS IN DT NNP NNP NN RB VBP NNS IN NNP , NNP , NNP , CC JJ NNS IN JJ NNP . Turkey , Macedonia and Latvia are also participating . NNP , NNP CC NNP VBP RB VBG . The exercises include naval and air maneuvers as well as large-scale armored exercises . DT NNS VBP JJ CC NN NNS RB RB IN JJ JJ NNS . Separate maneuvers are being held this week in Georgia . JJ NNS VBP VBG VBN DT NN IN NNP . Armenian , Azerbaijani , Ukrainian and U.S. troops are participating . JJ , NNP , JJ CC NNP NNS VBP VBG . Small groups of anti-NATO protesters were reported encamped along the Ukrainian coast . JJ NNS IN JJ NNS VBD VBN VBN IN DT JJ NN . Ukraine and Georgia are actively seeking NATO membership , despite official warnings that Moscow will not tolerate an additional NATO presence on its borders . NNP CC NNP VBP RB VBG NNP NN , IN JJ NNS IN NNP MD RB VB DT JJ NNP NN IN PRP$ NNS . Last month , Ukraine 's pro-Western leadership hosted a NATO delegation , which was also confronted by several hundred anti-alliance protesters . JJ NN , NNP POS JJ NN VBD DT NNP NN , WDT VBD RB VBN IN JJ CD JJ NNS . New York City Mayor Michael Bloomberg says a strike by the city 's transit union is ' morally reprehensible . ' NNP NNP NNP NNP NNP NNP VBZ DT NN IN DT NN POS NN NN VBZ `` RB JJ . `` The union went on strike early this Tuesday morning after negotiations broke down with the state 's transportation authority . DT NN VBD IN NN RB DT NNP NN IN NNS VBD RP IN DT NN POS NN NN . The walkout will shutdown the city 's huge bus and subway network , and throw the daily commute of its seven million customers into chaos . DT NN MD VB DT NN POS JJ NN CC NN NN , CC VB DT JJ NN IN PRP$ CD CD NNS IN NN . Mr. Bloomberg says he will ask a judge to take legal action against the union . NNP NNP VBZ PRP MD VB DT NN TO VB JJ NN IN DT NN . Contract talks between the two sides have deadlocked over such issues as wage increases and at what age new employees will be eligible to receive a full pension . NN NNS IN DT CD NNS VBP VBN IN JJ NNS IN NN NNS CC IN WP NN JJ NNS MD VB JJ TO VB DT JJ NN . Union head Roger Toussaint calls the dispute a fight over whether ' hard work will be rewarded with a decent retirement . ' NN NN NNP NNP VBZ DT NN DT NN IN IN `` JJ NN MD VB VBN IN DT JJ NN . `` An emergency plan is in effect to prevent massive traffic jams on New York 's streets . DT NN NN VBZ IN NN TO VB JJ NN NNS IN NNP NNP POS NNS . Former U.S. president Bill Clinton has signed an agreement with the Cambodian government to expand medical treatment for children living with H.I.V. and AIDS . JJ NNP NN NNP NNP VBZ VBN DT NN IN DT JJ NN TO VB JJ NN IN NNS VBG IN NNP CC NNP . Mr. Clinton and Cambodian Prime Minister Hun Sen signed the deal Monday in the capital , Phnom Penh . NNP NNP CC JJ NNP NNP NNP NNP VBD DT NN NNP IN DT NN , NNP NNP . The former president is in Cambodia to tour AIDS-related projects and local organizations supported by his development group , the Clinton Foundation H.I.V./AIDS Initiative . DT JJ NN VBZ IN NNP TO VB JJ NNS CC JJ NNS VBN IN PRP$ NN NN , DT NNP NNP NNP NNP . Mr. Clinton praised the government for making ' steadfast ' efforts to fight H.I.V . He said there is hope Cambodia can be a model for the rest of Asia and possibly the world . NNP NNP VBD DT NN IN VBG `` JJS `` NNS TO VB NNP . PRP VBD EX VBZ NN NNP MD VB DT NN IN DT NN IN NNP CC RB DT NN . Cambodia has reduced adult infection rates from about three percent in 1998 , to just under two percent in 2004 . NNP VBZ VBN NN NN NNS IN IN CD NN IN CD , TO RB IN CD NN IN CD . The country still has one of the highest AIDS prevalence rates in the region . DT NN RB VBZ CD IN DT JJS NNP NN NNS IN DT NN . Prime Minister Hun Sen says Mr. Clinton 's visit will raise awareness about H.I.V. and help prevent discrimination against people living with the virus . NNP NNP NNP NNP VBZ NNP NNP POS NN MD VB NN IN NNP CC VB VB NN IN NNS VBG IN DT NN . Britain 's defense ministry has launched what it calls an urgent military police investigation into alleged abuse of Iraqi prisoners caught on videotape . NNP POS NN NN VBZ VBN WP PRP VBZ DT JJ JJ NN NN IN JJ NN IN JJ NNS VBN IN NN . A ministry statement says it condemns all acts of abuse and brutality and treats allegations of wrongdoing very seriously . DT NN NN VBZ PRP VBZ DT NNS IN NN CC NN CC VBZ NNS IN NN RB RB . British television broadcast the videotape Sunday after it was released by the News of the World newspaper . JJ NN VBD DT NN NNP IN PRP VBD VBN IN DT NN IN DT NNP NN . The British soldiers are seen beating detained young Iraqi protesters with batons and kicking them . DT JJ NNS VBP VBN VBG JJ JJ JJ NNS IN NNS CC VBG PRP . The newspaper says the tape was shot in 2004 in southern Iraq . DT NN VBZ DT NN VBD VBN IN CD IN JJ NNP . British Prime Minister Tony Blair said Sunday the incident will be fully investigated . JJ NNP NNP NNP NNP VBD NNP DT NN MD VB RB VBN . He says the overwhelming majority of British troops in Iraq are doing a great job helping Iraq become a democracy . PRP VBZ DT JJ NN IN JJ NNS IN NNP VBP VBG DT JJ NN VBG NNP VB DT NN . A medical official in the Somali capital , Mogadishu , says at least 17 people have been killed in fighting between Islamist militants and government forces . DT JJ NN IN DT JJ NN , NNP , VBZ IN JJS CD NNS VBP VBN VBN IN VBG IN NNP NNS CC NN NNS . Ali Muse , who is head of Mogadishu 's ambulance service , says at least 45 others were wounded in the fighting Wednesday . NNP NNP , WP VBZ NN IN NNP POS NN NN , VBZ IN JJS CD NNS VBD VBN IN DT NN NNP . Mogadishu residents say insurgents attacked African Union peacekeepers , prompting soldiers to launch an artillery barrage . NNP NNS VBP NNS VBN NNP NNP NNS , VBG NNS TO VB DT NN NN . Many of those killed died when shells landed in the city 's busy Bakara market . NN IN DT VBN VBD WRB NNS VBD IN DT NN POS JJ NNP NN . Insurgent groups al-Shabab and Hizbul Islam are trying to topple the government and establish a strict Islamic state . JJ NNS JJ CC JJ NNP VBP VBG TO VB DT NN CC VB DT JJ JJ NN . The current government controls only parts of Mogadishu and relies on AU peacekeepers in order to stay in power . DT JJ NN VBZ RB NNS IN NNP CC VBZ IN NNP NNS IN NN TO VB IN NN . Somalia has experienced nearly two decades of violence and lawlessness since the fall of the last functioning central government . NNP VBZ VBN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ JJ NN . The founder of Microsoft , Bill Gates , has received a rousing welcome in Vietnam by thousands of university students eager for a glimpse of the world 's richest man . DT NN IN NNP , NNP NNP , VBZ VBN DT VBG JJ IN NNP IN NNS IN NN NNS JJ IN DT NN IN DT NN POS JJS NN . Students climbed trees and pushed through crowds at Hanoi University Saturday , where Gates was delivering a speech on information technology . NNS VBD NNS CC VBD IN NNS IN NNP NNP NNP , WRB NNP VBD VBG DT NN IN NN NN . Earlier , Gates met Prime Minister Phan Van Khai and President Tran Duc Luong , who both took time away from the ruling Communist Party National Congress . RB , NNP VBD NNP NNP NNP NNP NNP CC NNP NNP NNP NNP , WP DT VBD NN RB IN DT NN NNP NNP NNP NNP . During the meeting , the Vietnamese leaders and Gates signed an agreement to use Microsoft software in Vietnam 's government systems . IN DT NN , DT JJ NNS CC NNP VBD DT NN TO VB NNP NN IN NNP POS NN NNS . Gates ' trip to Hanoi is seen as another major boost for Vietnam 's high-tech sector . NNP POS NN TO NNP VBZ VBN IN DT JJ NN IN NNP POS JJ NN . Earlier this year , the government landed a high tech deal when leading chipmaker Intel Corporation announced it was building a plant in the country . RBR DT NN , DT NN VBD DT JJ NN NN WRB VBG NN NNP NNP VBD PRP VBD VBG DT NN IN DT NN . The World Health Organization says a massive shortfall of a key malaria drug will last well into next year , leaving poor countries with about half of what they need to fight the disease . DT NNP NNP NNP VBZ DT JJ NN IN DT JJ NN NN MD VB RB IN JJ NN , VBG JJ NNS IN IN NN IN WP PRP VBP TO VB DT NN . The WHO says Chinese suppliers have not shipped enough of a key ingredient used to make anti-malaria drugs to companies which manufacture the combination therapy . DT NNP VBZ JJ NNS VBP RB VBN RB IN DT JJ NN VBN TO VB JJ NNS TO NNS WDT VBP DT NN NN . The ingredient , called artemisinin , is extracted from a plant primarily grown in China . DT NN , VBN NN , VBZ VBN IN DT NN RB VBN IN NNP . The WHO says it will set up a system of priorities to deliver the drug to those who need it most . DT NNP VBZ PRP MD VB RP DT NN IN NNS TO VB DT NN TO DT WP VBP PRP RBS . It says the combination therapy is the most effective way to fight the deadliest form of malaria , called falciparum . PRP VBZ DT NN NN VBZ DT RBS JJ NN TO VB DT JJS NN IN NN , VBD NN . The mosquito-born disease has become resistant to treatment with older , more traditional medication . DT JJ NN VBZ VBN JJ TO NN IN JJR , RBR JJ NN . The WHO estimates that malaria kills more than one million people worldwide , with more than 90 percent of fatalities occurring in sub-Saharan Africa . DT NNP VBZ IN NN VBZ JJR IN CD CD NNS JJ , IN JJR IN CD NN IN NNS VBG IN JJ NNP . Kandani Ngwira , who works for a newspaper that publishes scandals involving public figures , says he has been taken into custody and not told why NNP NNP , WP VBZ IN DT NN WDT VBZ NNS VBG JJ NNS , VBZ PRP VBZ VBN VBN IN NN CC RB VBN WRB A Malawi journalist who works for a newspaper that publishes scandals involving public figures has confirmed his own arrest . DT NNP NN WP VBZ IN DT NN WDT VBZ NNS VBG JJ NNS VBZ VBN PRP$ JJ NN . Kandani Ngwira contacted media outlets on Tuesday , saying he had been taken into custody and not told why . NNP NNP VBD NNS NNS IN NNP , VBG PRP VBD VBN VBN IN NN CC RB VBN WRB . Ngwira works for the Weekly Times , a newspaper that the Malawian government tried to ban in November of last year . NNP VBZ IN DT NNP NNP , DT NN IN DT JJ NN VBD TO VB IN NNP IN JJ NN . National police spokesman , Willy Mwaluka , says he had no information about Ngwira 's detention . JJ NN NN , NNP NNP , VBZ PRP VBD DT NN IN NNP POS NN . The journalist says he was arrested in Blantyre and transported to the capital , Lilongwe . DT NN VBZ PRP VBD VBN IN NNP CC VBN TO DT NN , NNP . Blantyre Newspapers Limited , which owns the Weekly Times says it is providing a lawyer for Ngwira . NNP NNP NNP , WDT VBZ DT NNP NNP VBZ PRP VBZ VBG DT NN IN NNP . Israel and some Palestinian militant groups say they are willing to observe a cease-fire , if certain conditions are met . NNP CC DT JJ JJ NNS VBP PRP VBP JJ TO VB DT NN , IN JJ NNS VBP VBN . The Al Aqsa Martyrs ' Brigades , the armed wing of the Fatah movement , said Saturday it would agree to a truce if Israel promises to release Palestinian prisoners and stop military operations , including raids to make arrests , and targeted killings of Palestinian militants . DT NNP NNP NNP POS NNS , DT JJ NN IN DT NNP NN , VBD NNP PRP MD VB TO DT NN IN NNP VBZ TO VB JJ NNS CC VB JJ NNS , VBG NNS TO VB NNS , CC JJ NNS IN JJ NNS . Other groups have made similar comments . JJ NNS VBP VBN JJ NNS . For its part , Israel signaled it could ease military operations against Palestinian gunmen if they halt attacks against Israelis . IN PRP$ NN , NNP VBD PRP MD VB JJ NNS IN JJ NNS IN PRP VBP NNS IN NNS . The conciliatory messages follow efforts by Palestinian leader Mahmoud Abbas to persuade militants to end their campaign of anti-Israeli attacks so he can negotiate for a Palestinian state on Israeli-occupied lands . DT JJ NNS VBP NNS IN JJ NN NNP NNP TO VB NNS TO VB PRP$ NN IN JJ NNS IN PRP MD VB IN DT JJ NN IN JJ NNS . India 's industrial production has increased at its fastest pace in 16 months , another sign that Asia 's third largest economy is pulling out of the international financial crisis . NNP POS JJ NN VBZ VBN IN PRP$ JJS NN IN CD NNS , DT NN IN NNP POS JJ JJS NN VBZ VBG IN IN DT JJ JJ NN . The government statistics agency said Wednesday that manufacturing output surged 7.8 percent in June from a year earlier . DT NN NNS NN VBD NNP IN VBG NN VBD CD NN IN NNP IN DT NN RBR . The 16 nations using the euro as their currency have not done as well . DT CD NNS VBG DT NN IN PRP$ NN VBP RB VBN RB RB . Eurozone industrial output fell 17 percent in June , compared to last year . NNP JJ NN VBD CD NN IN NNP , VBN TO JJ NN . Job cuts and a shorter supply of bank loans has weakened consumer demand , depressing Europe 's industrial output . NNP NNS CC DT JJR NN IN NN NNS VBZ VBN NN NN , VBG NNP POS JJ NN . Data released in London Wednesday showed Britain 's unemployment rate has hit a 14-year high , with 2.43 million people out of work . NNS VBN IN NNP NNP VBD NNP POS NN NN VBZ VBN DT JJ JJ , IN CD CD NNS IN IN NN . The number of jobless increased by 7.8 percent ( 2,20,000 jobs ) in the three months to June . DT NN IN NN VBN IN CD NN LRB CD NNS RRB IN DT CD NNS TO NNP . A senior Russian veterinary official says a bird and animal market in southern Moscow is the source of last week 's bird flu outbreak on nearby farms . DT JJ JJ JJ NN VBZ DT NN CC NN NN IN JJ NNP VBZ DT NN IN JJ NN POS NN NN NN IN JJ NNS . Alexei Alexeyenko said Sunday the section of the market where the outbreak began has been closed . NNP NNP VBD NNP DT NN IN DT NN WRB DT NN VBD VBZ VBN VBN . Tests are also being carried out on the dead birds to determine if they carried the H5N1 strain , which is deadly to humans . NNS VBP RB VBG VBN RP IN DT JJ NNS TO VB IN PRP VBD DT NNP NN , WDT VBZ JJ TO NNS . Russian authorities say they found bird flu on two farms south and north of Moscow . JJ NNS VBP PRP VBD JJ NN IN CD NNS RB CC RB IN NNP . They say they do not yet know the origin of the dead birds found in the market , but the Moscow region 's chief veterinary official , Valery Sitnikov , said bio-terrorism can not be ruled out . PRP VBP PRP VBP RB RB VB DT NN IN DT JJ NNS VBN IN DT NN , CC DT NNP NN POS NN JJ NN , NNP NNP , VBD NN MD RB VB VBN RP . The H5N1 bird flu strain has killed 167 people since 2003 . DT NNP NN NN NN VBZ VBN CD NNS IN CD . Most of the victims were Asians . JJS IN DT NNS VBD NNS . North Korea has invited Washington 's chief U.S. nuclear negotiator to Pyongyang to discuss the North 's nuclear program . NNP NNP VBZ VBN NNP POS JJ NNP JJ NN TO NNP TO VB DT NNP POS JJ NN . The North 's Deputy Foreign Minister , Choe Su Hon , said Pyongyang would impose no conditions on a visit by U.S. Assistant Secretary of State Christopher Hill . DT NNP POS NNP NNP NNP , NNP NNP NNP , VBD NNP MD VB DT NNS IN DT NN IN NNP NNP NNP IN NNP NNP NNP . Washington has not commented on the proposal . NNP VBZ RB VBN IN DT NN . Also Thursday , North Korea said the United States should provide it with civilian nuclear reactors ' as soon as possible ' to build confidence in Monday 's nuclear disarmament agreement . RB NNP , NNP NNP VBD DT NNP NNPS MD VB PRP IN JJ JJ NNS `` RB RB IN JJ `` TO VB NN IN NNP POS JJ NN NN . Washington has rejected that demand . NNP VBZ VBN DT NN . Meanwhile , Japan 's Kyodo news agency reports Pyongyang has agreed to talks with Japan in October on a range of issues , including Pyongyang 's nuclear weapons program . RB , NNP POS NNP NN NN VBP NNP VBZ VBN TO NNS IN NNP IN NNP IN DT NN IN NNS , VBG NNP POS JJ NNS NN . Their disputes include North Korea 's missile program and the unresolved cases of Japanese citizens kidnapped by Pyongyang in the 1970s and 80s . PRP$ NNS VBP NNP NNP POS NN NN CC DT JJ NNS IN JJ NNS VBN IN NNP IN DT NNS CC NNS . Lawyers for a former California gang leader have asked the state supreme court to block his execution Tuesday , while California Governor Arnold Schwarzenegger considers granting clemency . NNS IN DT JJ NNP NN NN VBP VBN DT NN JJ NN TO VB PRP$ NN NNP , IN NNP NNP NNP NNP VBZ VBG NN . Stanley ' Tookie ' Williams has been convicted of four murders and was the co-founder of the infamous Crips street gang . NNP `` NNP `` NNP VBZ VBN VBN IN CD NNS CC VBD DT NN IN DT JJ NNP NN NN . His case has attracted international attention because Williams is the author of a series of children 's books warning young people about the dangers of gangs . PRP$ NN VBZ VBN JJ NN IN NNP VBZ DT NN IN DT NN IN NNS POS NNS VBG JJ NNS IN DT NNS IN NNS . His lawyers argue that the books are evidence that Williams has turned his life around during his 24 years in prison . PRP$ NNS VBP IN DT NNS VBP NN IN NNP VBZ VBN PRP$ NN IN IN PRP$ CD NNS IN NN . Williams has apologized for his gang activity , but denies committing the 1979 murders . NNP VBZ VBN IN PRP$ NN NN , CC VBZ VBG DT CD NNS . In an earlier appeal , the California high court upheld Williams ' conviction . IN DT JJR NN , DT NNP JJ NN VBD NNP POS NN . Mr. Schwarzenegger 's decision on clemency is expected Monday . NNP NNP POS NN IN NN VBZ VBN NNP . In two other death penalty cases he has refused clemency appeals . IN CD JJ NN NN NNS PRP VBZ VBN NN NNS . Saturday is the last day for Iran 's presidential hopefuls to apply as candidates in the June election . NNP VBZ DT JJ NN IN NNP POS JJ NNS TO VB IN NNS IN DT NNP NN . Applicants on the final day include former state broadcasting chief Ali Larijani , a conservative who once was an advisor to Supreme Leader Ayatollah Ali Khamenei . NNS IN DT JJ NN VBP JJ NN NN NN NNP NNP , DT NN WP RB VBD DT NN TO NNP NNP NNP NNP NNP . Former foreign minister Ibrahim Yazdi also signed up for the ballot to elect a successor to President Mohammad Khatami . JJ JJ NN NNP NNP RB VBD RP IN DT NN TO VB DT NN TO NNP NNP NNP . Hundreds of people have applied to run in the election - among them highly favored two-time president Akbar Hashemi Rafsanjani . NNS IN NNS VBP VBN TO VB IN DT NN : IN PRP RB JJ JJ NN NNP NNP NNP . The past chief of the national police , Bager Qalibaf , and the mayor of Tehran , Mahmoud Ahmadinejad , are also seeking the presidency . DT JJ NN IN DT JJ NN , NNP NNP , CC DT NN IN NNP , NNP NNP , VBP RB VBG DT NN . After the registration period ends , applicants will be screened by the Guardians Council , which will determine the make-up of the presidential ballot . IN DT NN NN VBZ , NNS MD VB VBN IN DT NNPS NNP , WDT MD VB DT NN IN DT JJ NN . The leader of the Shi'ite militant group Hezbollah is blaming President Bush for last week 's sectarian violence in Lebanon . DT NN IN DT NNP JJ NN NNP VBZ VBG NNP NNP IN JJ NN POS JJ NN IN NNP . Speaking to a large crowd in Beirut Tuesday , Hassan Nasrallah accused Mr. Bush and U.S. Secretary of State Condoleezza Rice of seeking to spark a civil war in Lebanon . VBG TO DT JJ NN IN NNP NNP , NNP NNP VBD NNP NNP CC NNP NNP IN NNP NNP NNP IN VBG TO VB DT JJ NN IN NNP . He also asserted that the Bush administration ordered Israel to attack Hezbollah positions in the country last year . PRP RB VBD IN DT NNP NN VBD NNP TO VB NNP NNS IN DT NN JJ NN . The July-August war between Israel and Hezbollah killed about 1,200 people in Lebanon and about 160 Israelis . DT JJ NN IN NNP CC NNP VBD IN CD NNS IN NNP CC IN CD NNS . On Monday , President Bush said Hezbollah , along with Syria and Iran , are responsible for last week 's violence in Lebanon between government supporters and the Hezbollah-led opposition . IN NNP , NNP NNP VBD NNP , IN IN NNP CC NNP , VBP JJ IN JJ NN POS NN IN NNP IN NN NNS CC DT JJ NN . Seven people were killed and more than 100 wounded . CD NNS VBD VBN CC JJR IN CD VBD . Some in Lebanon are concerned that sectarian tensions will spin out of control and might lead to a civil war like the one that raged from 1975 to 1990 . DT IN NNP VBP VBN IN JJ NNS MD VB IN IN NN CC MD VB TO DT JJ NN IN DT CD WDT VBD IN CD TO CD . United Nations Secretary-General Kofi Annan says it is very unlikely that security operations in Iraq would be transferred from U.S.-led troops to U.N. peacekeepers . NNP NNP NNP NNP NNP VBZ PRP VBZ RB JJ IN NN NNS IN NNP MD VB VBN IN JJ NNS TO NNP NNS . Speaking on the sidelines of a security conference in Munich , Mr. Annan said at this stage , the United Nations hopes to help more with Iraq 's post-war reconstruction . VBG IN DT NNS IN DT NN NN IN NNP , NNP NNP VBD IN DT NN , DT NNP NNP VBZ TO VB RBR IN NNP POS JJ NN . Mr. Annan told the British Broadcasting Corporation the world body could help with training ministry officials and rebuilding the war-damaged country . NNP NNP VBD DT NNP NNP NNP DT NN NN MD VB IN NN NN NNS CC VBG DT JJ NN . On another issue , Mr. Annan said he has no plans to resign over allegations of bribes and kickbacks in the U.N.-supervised oil-for-food program in Iraq . IN DT NN , NNP NNP VBD PRP VBZ DT NNS TO VB IN NNS IN NNS CC NNS IN DT JJ NN NN IN NNP . Competitive diving is one of the sports guaranteed to attract a large audience at the Summer Olympics in Beijing . JJ NN VBZ CD IN DT NNS VBN TO VB DT JJ NN IN DT NNP NNPS IN NNP . Recreational diving is also a growing amateur sport in the U.S. JJ NN VBZ RB DT VBG NN NN IN DT NNP Unfortunately , the joy of jumping off the diving board at the local swimming pool has too often been spoiled by a trip to the emergency room . RB , DT NN IN VBG RP DT VBG NN IN DT JJ NN NN VBZ RB RB VBN VBN IN DT NN TO DT NN NN . VOA 's Melinda Smith has details of a new study showing that at least 6,000 children in the U.S. are hurt every year in diving accidents . NNP POS NNP NNP VBZ NNS IN DT JJ NN VBG IN IN JJS CD NNS IN DT NNP VBP VBN DT NN IN VBG NNS . Venezuelan authorities say a new outbreak of fighting among inmates at a crowded prison has left six more prisoners dead . JJ NNS VBP DT JJ NN IN NN IN NNS IN DT JJ NN VBZ VBN CD JJR NNS JJ . Earlier this week , 16 prisoners were killed at Uribana prison when rival gangs fought for control of two cell blocks . RBR DT NN , CD NNS VBD VBN IN NNP NN WRB JJ NNS VBD IN NN IN CD NN NNS . National guard troops were called to maintain order at the prison , located west of the capital , Caracas . NNP NN NNS VBD VBN TO VB NN IN DT NN , VBN NN IN DT NN , NNP . Riots , murders and other violence are common in Venezuela 's overcrowded prisons . NNS , NNS CC JJ NN VBP JJ IN NNP POS JJ NNS . An official with Canada 's spy agency has said that potential terrorists already reside inside the country , and that some have been schooled in al-Qaida training camps . DT NN IN NNP POS NN NN VBZ VBN IN JJ NNS RB VBP IN DT NN , CC IN DT VBP VBN VBN IN NNP NN NNS . Jack Hooper , the deputy director of the Canadian Security Intelligence Service , spoke Monday in Ottawa to a legislative committee studying Canada 's involvement in Afghanistan . NNP NNP , DT NN NN IN DT NNP NNP NNP NNP , VBD NNP IN NNP TO DT JJ NN VBG NNP POS NN IN NNP . Hooper told the lawmakers Canada faces a threat from home-grown terrorists . NNP VBD DT NNS NNP VBZ DT NN IN JJ NNS . He said that all the circumstances which produced the London transit bombing are present now in Canada . PRP VBD IN PDT DT NNS WDT VBD DT NNP NN NN VBP JJ RB IN NNP . Hooper said that many of the home-grown terrorists are Canadian citizens . NNP VBD IN NN IN DT JJ NNS VBP JJ NNS . He also cautioned that his agency has been able to investigate only 10 percent of the immigrants who have come to Canada during the past five years from Pakistan and Afghanistan . PRP RB VBD IN PRP$ NN VBZ VBN JJ TO VB RB CD NN IN DT NNS WP VBP VBN TO NNP IN DT JJ CD NNS IN NNP CC NNP . Venezuelan President Hugo Chavez has met twice with the ailing former Cuban leader Fidel Castro during a short visit to Havana . JJ NNP NNP NNP VBZ VBN RB IN DT JJ JJ JJ NN NNP NNP IN DT JJ NN TO NNP . Cuba 's state-run media says the first meeting took place after Mr. Chavez arrived Friday night . NNP POS JJ NNS VBZ DT JJ NN VBD NN IN NNP NNP VBD NNP NN . The Venezuelan leader met again with Mr. Castro and his brother , Cuban President Raul Castro , on Saturday before Mr. Chavez 's afternoon departure . DT JJ NN VBD RB IN NNP NNP CC PRP$ NN , JJ NNP NNP NNP , IN NNP IN NNP NNP POS NN NN . The former Cuban president and Mr. Chavez were reported to have discussed their countries ' ' fruitful ties ' and the global economic crisis and its consequences for Latin America and the Caribbean . DT JJ JJ NN CC NNP NNP VBD VBN TO VB VBN PRP$ NNS POS `` JJ NNS `` CC DT JJ JJ NN CC PRP$ NNS IN NNP NNP CC DT NNP . No images of Fidel Castro were released from the meetings . DT NNS IN NNP NNP VBD VBN IN DT NNS . He has not been seen in public since 2006 when he underwent surgery and ceded power to his younger brother . PRP VBZ RB VBN VBN IN JJ IN CD WRB PRP VBD NN CC JJ NN TO PRP$ JJR NN . The trip to Cuba was President Chavez 's first since winning a referendum this month that removes term limits on his presidency and allows him to seek re-election . DT NN TO NNP VBD NNP NNP POS JJ IN VBG DT NN DT NN WDT VBZ NN NNS IN PRP$ NN CC VBZ PRP TO VB NN . The Organization of American States says it will send election observers to monitor Suriname 's parliamentary elections to be held May 25 . DT NNP IN NNP NNP VBZ PRP MD VB NN NNS TO VB NNP POS JJ NNS TO VB VBN NNP CD . The OAS and Suriname officials agreed to the monitors Friday in Washington . DT NNP CC NNP NNS VBD TO DT NNS NNP IN NNP . The ruling coalition in Suriname faces opposition from the National Democratic Party , which says its leader , former dictator Desi Bouterse , would become president if the party wins the elections . DT NN NN IN NNP VBZ NN IN DT NNP NNP NNP , WDT VBZ PRP$ NN , JJ NN NNP NNP , MD VB NN IN DT NN VBZ DT NNS . The United States has warned that relations with Suriname would suffer if Bouterse takes power . DT NNP NNP VBZ VBN IN NNS IN NNP MD VB IN NNP VBZ NN . He was convicted in the Netherlands six years ago for illegal drug trafficking , and sentenced to 11 years in prison . PRP VBD VBN IN DT NNP CD NNS RB IN JJ NN NN , CC VBD TO CD NNS IN NN . However , he was never sent to the Netherlands as the two countries do not have an extradition agreement . RB , PRP VBD RB VBN TO DT NNP IN DT CD NNS VBP RB VB DT NN NN . Bouterse , who is an elected member of parliament , led a successful military coup in Suriname in 1980 , and ruled the South American country for nearly a decade . NNP , WP VBZ DT JJ NN IN NN , VBD DT JJ JJ NN IN NNP IN CD , CC VBD DT JJ JJ NN IN RB DT NN . The Vatican says Pope John Paul has canceled his scheduled audiences for the next few days because he has the flu . DT NNP VBZ NNP NNP NNP VBZ VBN PRP$ JJ NNS IN DT JJ JJ NNS IN PRP VBZ DT NN . The Roman Catholic pontiff also canceled his audiences on Monday . DT NNP NNP NN RB VBD PRP$ NNS IN NNP . It is the first time in more than one year the pope has had to miss an audience due to illness . PRP VBZ DT JJ NN IN JJR IN CD NN DT NN VBZ VBN TO VB DT NN JJ TO NN . John Paul began to fall ill on Sunday , and doctors advised him to cut back on his activities . NNP NNP VBD TO VB RB IN NNP , CC NNS VBD PRP TO VB RP IN PRP$ NNS . The Vatican Tuesday issued a brief statement announcing the cancellations on the pope 's schedule , but did not release any specific information about his condition . DT NNP NNP VBD DT JJ NN VBG DT NNS IN DT NN POS NN , CC VBD RB VB DT JJ NN IN PRP$ NN . The increasingly frail , 84-year-old pope suffers from Parkinson 's disease and arthritis , but continues to maintain a full travel schedule , hold audiences and perform his papal duties . DT RB JJ , JJ NN NNS IN NNP POS NN CC NN , CC VBZ TO VB DT JJ NN NN , NN NNS CC VB PRP$ NN NNS . President Bush has called on Congress to make his tax cuts permanent , saying they will keep the economy on track to cut the deficit in half by 2009 . NNP NNP VBZ VBN IN NNP TO VB PRP$ NN NNS JJ , VBG PRP MD VB DT NN IN NN TO VB DT NN IN NN IN CD . In a radio address to the nation Saturday , Mr. Bush said some Democrats in Congress want to repeal the tax cuts or let them expire over the next few years . IN DT NN NN TO DT NN NNP , NNP NNP VBD DT NNS IN NNP VBP TO VB DT NN NNS CC VB PRP VB IN DT JJ JJ NNS . Mr. Bush said the cuts instituted in 2001 have put $ 880 billion back into the hands of American citizens . NNP NNP VBD DT NNS VBN IN CD VBP VBN $ CD CD RB IN DT NNS IN JJ NNS . He said giving citizens more spending power helps the economy grow . PRP VBD VBG NNS RBR JJ NN VBZ DT NN VB . Mr. Bush said eliminating the tax cuts will present American families with a big tax increase that they do not expect and will not want . NNP NNP VBD VBG DT NN NNS MD VB JJ NNS IN DT JJ NN NN IN PRP VBP RB VB CC MD RB VB . Israel completed its handover of the West Bank town of Tulkarem to the Palestinians Tuesday . NNP VBD PRP$ NN IN DT NNP NNP NN IN NNP TO DT NNS NNP . Tulkarem is the second town transferred to the Palestinians , after Jericho last week . NNP VBZ DT JJ NN VBN TO DT NNS , IN NNP JJ NN . The transfer of five West Bank towns is one of the steps Israeli and Palestinian leaders agreed to at a summit in Egypt last month . DT NN IN CD NNP NNP NNS VBZ CD IN DT NNS JJ CC JJ NNS VBD TO IN DT NN IN NNP JJ NN . Israel has yet to hand over three other towns - Qalqiliya , Bethlehem and Ramallah . NNP VBZ RB TO VB RP CD JJ NNS : NNP , NNP CC NNP . Meanwhile , Israel confirmed plans to build 3,500 new homes in Maale Adumin , the largest Jewish settlement in the West Bank . RB , NNP VBD NNS TO VB CD JJ NNS IN NNP NNP , DT JJS JJ NN IN DT NNP NNP . Palestinians condemned the move as a violation of the internationally-backed ' Road Map ' peace plan and said it threatens the newly-energized Middle East peace process . NNS VBD DT NN IN DT NN IN DT JJ `` NNP NNP `` NN NN CC VBD PRP VBZ DT JJ NNP NNP NN NN . The peace plan calls on Israel to freeze its settlement activity in the West Bank . DT NN NN VBZ IN NNP TO VB PRP$ NN NN IN DT NNP NNP . It also requires the Palestinians to dismantle militant groups . PRP RB VBZ DT NNS TO VB JJ NNS . A group of armed men stormed into a bar in western Mexico and threw five human heads on the floor in an incident apparently linked to illegal drug trafficking . DT NN IN JJ NNS VBD IN DT NN IN JJ NNP CC VBD CD JJ NNS IN DT NN IN DT NN RB VBN TO JJ NN NN . Witnesses say the 20 men fired shots in the air as they entered the bar in Michoacan state before dawn Wednesday . NNS VBP DT CD NNS VBD NNS IN DT NN IN PRP VBD DT NN IN NNP NN IN NN NNP . The group also left a note saying the killings were part of what it called ' divine justice . ' DT NN RB VBD DT NN VBG DT NNS VBD NN IN WP PRP VBD `` NN NN . `` Officials say relatives of three of the victims had identified their bodies and claimed they were not connected to illegal drug gangs . NNS VBP NNS IN CD IN DT NNS VBD VBN PRP$ NNS CC VBD PRP VBD RB VBN TO JJ NN NNS . Mexican police have found several victims from similar attacks earlier this year . JJ NNS VBP VBN JJ NNS IN JJ NNS RBR DT NN . Mexico 's President-elect Felipe Calderon has vowed to crack down on violent crime when he takes office in December . NNP POS JJ NNP NNP VBZ VBN TO VB RP IN JJ NN WRB PRP VBZ NN IN NNP . Pakistani authorities say at least 18 women and children were killed in a stampede in the southern city of Karachi , where they were waiting to get free flour . JJ NNS VBP IN JJS CD NNS CC NNS VBD VBN IN DT NN IN DT JJ NN IN NNP , WRB PRP VBD VBG TO VB JJ NN . Medical officials say at least 25 others were injured in the crush in the city 's crowded Khori Garden neighborhood . JJ NNS VBP IN JJS CD NNS VBD VBN IN DT NN IN DT NN POS JJ NNP NNP NN . A private charity group was giving out the flour in honor of the Muslim holy month of Ramadan . DT JJ NN NN VBD VBG RP DT NN IN NN IN DT NNP JJ NN IN NNP . Dozens of impoverished women and children had gathered in the narrow lanes and alleys outside the distribution point . NNS IN JJ NNS CC NNS VBD VBN IN DT JJ NNS CC NNS IN DT NN NN . Witnesses say some people on line started pushing , and panic ensued when a security guard used force to restore order . NNS VBP DT NNS IN NN VBD VBG , CC NN VBD WRB DT NN NN VBD NN TO VB NN . Officials say most of the victims died of suffocation . NNS VBP JJS IN DT NNS VBD IN NN . Pakistani Prime Minister Yousuf Raza Gilani ordered medical treatment for the injured and an investigation into the incident . JJ NNP NNP NNP NNP NNP VBD JJ NN IN DT NN CC DT NN IN DT NN . Police have detained the event 's organizer , saying they were not notified of the planned distribution . NNS VBP VBN DT NN POS NN , VBG PRP VBD RB VBN IN DT JJ NN . A group of Israeli actors , writers and directors is vowing not to perform in Jewish settlements in the West Bank . DT NN IN JJ NNS , NNS CC NNS VBZ VBG RB TO VB IN JJ NNS IN DT NNP NNP . More than 50 members of Israel 's theater community have signed a petition to boycott performances at a state-funded theater in the northern West Bank settlement of Ariel . JJR IN CD NNS IN NNP POS NN NN VBP VBN DT NN TO VB NNS IN DT JJ NN IN DT JJ NNP NNP NN IN NNP . Prime Minister Benjamin Netanyahu told his Cabinet Sunday that the Israeli government does not need to provide funding to the performers taking part in the boycott . NNP NNP NNP NNP VBD PRP$ NNP NNP IN DT JJ NN VBZ RB VB TO VB NN TO DT NNS VBG NN IN DT NN . Mr. Netanyahu said the performers ' actions play into the hands of international efforts to delegitimize Israel with economic and cultural boycotts . NNP NNP VBD DT NNS POS NNS VBP IN DT NNS IN JJ NNS TO VB NNP IN JJ CC JJ NNS . The protest comes as Israeli and Palestinian leaders prepare to meet in Washington this week to resume stalled Middle East peace talks . DT NN VBZ IN JJ CC JJ NNS VBP TO VB IN NNP DT NN TO VB VBN NNP NNP NN NNS . Both Israelis and Palestinians say they hold little hope that U.S.-mediated direct talks will yield any results or make progress toward ending the decades-old conflict in the Middle East . DT NNS CC NNS VBP PRP VBP JJ NN IN JJ JJ NNS MD VB DT NNS CC VB NN IN VBG DT JJ NN IN DT NNP NNP . Somalia 's transitional government-in-exile met Tuesday to try to bridge deep divisions over plans to relocate to the war-shattered nation . NNP POS JJ NN VBD NNP TO VB TO VB JJ NNS IN NNS TO VB TO DT JJ NN . A group of Somali ministers walked out of a meeting Monday , before a majority voted to return to Somalia but not to the capital , Mogadishu , which the prime minister says is too dangerous . DT NN IN JJ NNS VBD IN IN DT NN NNP , IN DT NN VBD TO VB TO NNP CC RB TO DT NN , NNP , WDT DT JJ NN VBZ VBZ RB JJ . The ministers voted instead to relocate to the central towns of Baidoa and Jowhar until security improves in the capital . DT NNS VBD RB TO VB TO DT JJ NNS IN NNP CC NNP IN NN VBZ IN DT NN . The Somali government currently operates out of Nairobi , Kenya . DT JJ NN RB VBZ IN IN NNP , NNP . Lawmakers are also bitterly divided over plans to deploy a peacekeeping force to provide security once the government returns to Somalia . NNS VBP RB RB VBN IN NNS TO VB DT NN NN TO VB NN IN DT NN NNS TO NNP . The regional bloc - IGAD - has decided to initially exclude troops from nations bordering Somalia . DT JJ NN : NNP : VBZ VBN TO RB VB NNS IN NNS VBG NNP . Opponents of the force say border nations have backed violent factions during years of civil war . NNS IN DT NN VBP NN NNS VBP VBN JJ NNS IN NNS IN JJ NN . A Saudi Interior Ministry spokesman says three French nationals have been killed in northwestern Saudi Arabia . DT JJ NNP NNP NN VBZ CD JJ NNS VBP VBN VBN IN JJ NNP NNP . The spokesman says gunmen shot at a group of nine French nationals as they rested at a roadside , killing three and injuring at least one other . DT NN VBZ NNS VBD IN DT NN IN CD JJ NNS IN PRP VBD IN DT NN , VBG CD CC VBG IN JJS CD JJ . The spokesman says the group was traveling to the holy city of Mecca , where some of them were to perform the minor pilgrimage known as Omra . DT NN VBZ DT NN VBD VBG TO DT JJ NN IN NNP , WRB DT IN PRP VBD TO VB DT JJ NN VBN IN NNP . Only Muslims are allowed in Mecca . RB NNPS VBP VBN IN NNP . The spokesman said the French nationals were residents of the Saudi kingdom . DT NN VBD DT JJ NNS VBD NNS IN DT NNP NN . It was not immediately clear who was responsible for the killings . PRP VBD RB RB JJ WP VBD JJ IN DT NNS . Saudi Arabia has been battling al-Qaida militants in the kingdom , and the terrorist group has targeted Westerners in the past . NNP NNP VBZ VBN VBG NNP NNS IN DT NN , CC DT JJ NN VBZ VBN NNS IN DT NN . Several hundred inmates who escaped from a prison in Haiti are believed to still be at large Sunday , after an attack on the national penitentiary left one guard dead . JJ CD NNS WP VBD IN DT NN IN NNP VBP VBN TO RB VB IN JJ NNP , IN DT NN IN DT JJ JJ NN CD NN NN . Haitian officials say as many as 500 of the prison 's 1,200 detainees may have escaped . JJ NNS VBP RB JJ IN CD IN DT NN POS CD NNS MD VB VBN . It is unclear how many have been recaptured . PRP VBZ JJ WRB JJ VBP VBN VBN . The prisoners fled after gunmen fired on the facility Saturday . DT NNS VBD IN NNS VBD IN DT NN NNP . The French news agency , AFP , quotes a government source as saying the raid was aimed at freeing drug traffickers . DT JJ NN NN , NNP , VBZ DT NN NN IN VBG DT NN VBD VBN IN VBG NN NNS . Two high-ranking officials from the government of ousted Haitian President Jean Bertrand Aristide were among the prisoners who were quickly recaptured . CD JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP VBD IN DT NNS WP VBD RB VBN . Haitian authorities say former Prime Minister Yvon Neptune and former Interior Minister Jocelerme Privert are back in custody . JJ NNS VBP JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP VBP RB IN NN . Both men have yet to be indicted . DT NNS VBP RB TO VB VBN . They are accused of violence against Aristide opponents . PRP VBP VBN IN NN IN NNP NNS . U.N. Secretary General Kofi Annan says the situation between Ethiopia and Eritrea has reached a ' dangerous stalemate ' and suggested possible changes to the U.N. mission in the region . NNP NNP NNP NNP NNP VBZ DT NN IN NNP CC NNP VBZ VBN DT `` JJ NN `` CC VBD JJ NNS TO DT NNP NN IN DT NN . Mr. Annan presented the U.N. Security Council with six options for the U.N. mission , ranging from maintaining the status quo to a full withdrawal . NNP NNP VBD DT NNP NNP NNP IN CD NNS IN DT NNP NN , VBG IN VBG DT NN NN TO DT JJ NN . Other options include moving the U.N. mission headquarters from Eritrea to Ethiopia and downgrading the operation to either an observer or liaison effort . JJ NNS VBP VBG DT NNP NN NN IN NNP TO NNP CC VBG DT NN TO DT DT NN CC NN NN . Mr. Annan did not recommend any particular option and said none offered an ideal way out of the stalemate . NNP NNP VBD RB VB DT JJ NN CC VBD NN VBD DT JJ NN IN IN DT NN . Both Eritrea and Ethiopia have increased troops along their shared border . DT NNP CC NNP VBP VBN NNS IN PRP$ JJ NN . Eritrea has also imposed restrictions on U.N. peacekeepers in its territory . NNP VBZ RB VBN NNS IN NNP NNS IN PRP$ NN . The Security Council has threatened sanctions against both countries if the situation is not reversed . DT NNP NNP VBZ VBN NNS IN DT NNS IN DT NN VBZ RB JJ . In this photograph released by the Iraqi Special Tribunal on June 13 , 2005 , former Iraqi dictator Saddam Hussein is seen being questioned by investigating magistrates Iraq 's special tribunal has filed its first charges against former president Saddam Hussein for crimes committed during his 24-year rule . IN DT NN VBN IN DT JJ NNP NNP IN NNP CD , CD , JJ JJ NN NNP NNP VBZ VBN VBG VBN IN VBG NNS NNP POS JJ NN VBZ VBN PRP$ JJ NNS IN JJ NN NNP NNP IN NNS VBN IN PRP$ JJ NN . The chief investigating judge says the ousted dictator has been charged in connection with the 1982 deaths of dozens of villagers in Dujail . DT NN VBG NN VBZ DT JJ NN VBZ VBN VBN IN NN IN DT CD NNS IN NNS IN NNS IN NNP . Authorities allege the villagers were killed in retaliation for an attempted assassination of Saddam . NNS VBP DT NNS VBD VBN IN NN IN DT JJ NN IN NNP . The judge told reporters a trial date could be announced within days . DT NN VBD NNS DT NN NN MD VB VBN IN NNS . He also said other investigations are continuing or nearing their final stages . PRP RB VBD JJ NNS VBP VBG CC VBG PRP$ JJ NNS . The Dujail case is widely seen as relatively uncomplicated compared to cases of alleged genocide and crimes against humanity still under investigation . DT NNP NN VBZ RB VBN IN RB JJ VBN TO NNS IN JJ NN CC NNS IN NN RB IN NN . Lebanese Prime Minister Saad Hariri has denied a newspaper report that says he will ask a U.N. tribunal to stop its investigation into the 2005 assassination of his father , former Prime Minister Rafiq Hariri . JJ JJ NN NNP NNP VBZ VBN DT NN NN WDT VBZ PRP MD VB DT NNP NN TO VB PRP$ NN IN DT CD NN IN PRP$ NN , JJ NNP NNP NNP NNP . Mr. Hariri 's office said Wednesday the report by Ad-Diyar newspaper was not accurate . NNP NNP POS NN VBD NNP DT NN IN JJ NN VBD RB JJ . Media reports say the tribunal may soon indict members of the Shi'ite militant group Hezbollah in the killing of Rafiq Hariri and 22 other people in a 2005 blast in downtown Beirut . NN NNS VBP DT NN MD RB VB NNS IN DT NNP JJ NN NNP IN DT NN IN NNP NNP CC CD JJ NNS IN DT CD NN IN NN NNP . Hezbollah denies involvement and promises a backlash if its members are indicted . NNP VBZ NN CC VBZ DT NN IN PRP$ NNS VBP VBN . Hezbollah , part of the nation 's fragile political coalition , is deemed a terrorist group by Western nations . NNP , NN IN DT NN POS JJ JJ NN , VBZ VBN DT JJ NN IN JJ NNS . New data from China 's National Bureau of Statistics show inflation in the country at an 11-year high of 8.7 percent . JJ NNS IN NNP POS NNP NNP IN NNPS VBP NN IN DT NN IN DT JJ NN IN CD NN . That is nearly double what Chinese leaders set as a goal for 2008 -- a rate of 4.8 percent . DT VBZ RB JJ WP JJ NNS VBD IN DT NN IN CD IN DT NN IN CD NN . Sam Beattie reports for VOA from Beijing . NNP NNP VBZ IN NNP IN NNP . Turkish Prime Minister Recep Tayyip Erdogan has paid a rare visit to mainly Kurdish southeastern Turkey , where he repeated government promises to solve problems in the restive region . JJ JJ NN NNP NNP NNP VBZ VBN DT JJ NN TO RB VB JJ NNP , WRB PRP VBD NN NNS TO VB NNS IN DT JJ NN . Speaking Sunday in Diyarbakir , Mr. Erdogan told a political conference his government wants to eradicate imbalances between the impoverished region and the rest of Turkey . VBG NNP IN NNP , NNP NNP VBD DT JJ NN PRP$ NN VBZ TO VB NNS IN DT JJ NN CC DT NN IN NNP . Mr. Erdogan 's visit coincides with an upsurge in violence blamed on the outlawed Kurdistan Workers Party said to be operating from bases in northern Iraq . NNP NNP POS NN VBZ IN DT NN IN NN VBN IN DT JJ NNP NNP NNP VBN TO VB VBG IN NNS IN JJ NNP . Dozens of soldiers and suspected Kurdish rebels have been killed in recent months . NNS IN NNS CC JJ JJ NNS VBP VBN VBN IN JJ NNS . The prime minister also condemned last week 's bombing of a minibus carrying soldiers ' children home from school in the city of Hakkari . DT JJ NN RB VBD JJ NN POS NN IN DT NN VBG NNS POS NNS NN IN NN IN DT NN IN NNP . Authorities say 11 children were among the 17 people wounded . NNS VBP CD NNS VBD IN DT CD NNS VBN . Kurds in Turkey began a campaign for an independent homeland in the southeast in 1984 . NNS IN NNP VBD DT NN IN DT JJ NN IN DT NN IN CD . More than 30,000 people have been killed since then . JJR IN CD NNS VBP VBN VBN IN RB . Venezuelan President Hugo Chavez has begun a visit to Brazil for talks with President Luiz Inacio Lula da Silva on energy cooperation and regional issues . JJ NNP NNP NNP VBZ VBN DT NN TO NNP IN NNS IN NNP NNP NNP NNP NNP NNP IN NN NN CC JJ NNS . President Chavez arrived in the northern city of Recife Wednesday to meet with the Brazilian leader and tour the construction site of a refinery that , once completed , is expected to process 2,00,000 barrels of oil daily . NNP NNP VBD IN DT JJ NN IN NNP NNP TO VB IN DT JJ NN CC VB DT NN NN IN DT NN IN , RB VBN , VBZ VBN TO VB CD NNS IN NN NN . Officials have said the project will involve Brazil 's state-run Petrobras oil company and Venezuela 's state-run Petroleos de Venezuela , PDVSA . NNS VBP VBN DT NN MD VB NNP POS JJ NNP NN NN CC NNP POS VBN NNP NNP NNP , NNP . Separately , the presidents were expected to discuss Venezuela 's pending membership in the South American trade bloc , Mercosur , which groups Argentina , Brazil , Paraguay and Uruguay . RB , DT NNS VBD VBN TO VB NNP POS VBG NN IN DT JJ JJ NN NN , NNP , WDT VBZ NNP , NNP , NNP CC NNP . Mercosur accounts for $ 1 trillion in annual economic activity and includes 250 million people . NNP VBZ IN $ CD CD IN JJ JJ NN CC VBZ CD CD NNS . The United Nations nuclear agency says Iran has started enriching uranium at an underground facility . DT NNP NNP JJ NN VBZ NNP VBZ VBN VBG NN IN DT JJ NN . The International Atomic Energy Agency also says Iran has set up more than 1,000 centrifuges for enrichment at the plant at Natanz . DT NNP NNP NNP NNP RB VBZ NNP VBZ VBN RP JJR IN CD NNS IN NN IN DT NN IN NNP . The IAEA made the claim in a confidential document . DT NNP VBD DT NN IN DT JJ NN . The enrichment process can be used to create fuel for nuclear reactors or in the creation of nuclear weapons . DT NN NN MD VB VBN TO VB NN IN JJ NNS CC IN DT NN IN JJ NNS . Last week , Iran said it had reached an industrial scale in uranium enrichment . JJ NN , NNP VBD PRP VBD VBN DT JJ NN IN NN NN . But nuclear experts said Iran 's program was not yet at that level . CC JJ NNS VBD NNP POS NN VBD RB RB IN DT NN . The United States and its allies have accused Iran of trying to develop atomic weapons . DT NNP NNPS CC PRP$ NNS VBP VBN NNP IN VBG TO VB JJ NNS . Iran says its nuclear program is for the peaceful production of energy . NNP VBZ PRP$ JJ NN VBZ IN DT JJ NN IN NN . The popular Web site Twitter is now functioning after a cyber attack took the service offline for several hours . DT JJ NNP NN NNP VBZ RB VBG IN DT NN NN VBD DT NN NN IN JJ NNS . Twitter said in a status blog earlier Thursday it was ' defending against a denial-of-service attack . ' NNP VBD IN DT NN NN RB NNP PRP VBD `` VBG IN DT JJ NN . `` Users of the social networking Web site Facebook also encountered problems on Thursday . NNS IN DT JJ NN NNP NN NNP RB VBD NNS IN NNP . Unlike Twitter , Facebook never became completely inaccessible , but users did experience long delays while accessing their online profiles . IN NNP , NNP RB VBD RB JJ , CC NNS VBD VB JJ NNS IN VBG PRP$ JJ NNS . It is not clear if the attacks on the Web sites are related , but Twitter and Facebook officials say they are working with online search engine Google to investigate . PRP VBZ RB JJ IN DT NNS IN DT NNP NNS VBP VBN , CC NNP CC NNP NNS VBP PRP VBP VBG IN JJ NN NN NNP TO VB . Even though both sites are now functioning , Twitter says users will continue to experience longer load times and slow response . RB IN DT NNS VBP RB VBG , NNP VBZ NNS MD VB TO VB JJR NN NNS CC JJ NN . The Twitter outage follows a wave of similar cyber attacks last month that disrupted access to several high-profile U.S. Web sites , including the White House site . DT NNP NN VBZ DT NN IN JJ NN NNS JJ NN WDT VBD NN TO JJ JJ NNP NNP NNS , VBG DT NNP NNP NN . A U.S. judge has agreed to review the government 's decision to repatriate 15 Cuban migrants after they reached an abandoned bridge in the Florida Keys . DT NNP NN VBZ VBN TO VB DT NN POS NN TO VB CD JJ NNS IN PRP VBD DT JJ NN IN DT NNP NNPS . U.S. District Judge Federico Moreno Thursday questioned the government 's reasoning for sending back the migrants earlier this week . NNP NNP NNP NNP NNP NNP VBD DT NN POS NN IN VBG RP DT NNS RBR DT NN . Moreno called the bridge ' as American as apple pie ' - an expression common in the U.S. to indicate something is certainly American - even though it does not connect to dry land . NNP VBD DT NN `` RB JJ IN NN NN `` : DT NN NN IN DT NNP TO VB DT VBZ RB JJ IN RB IN PRP VBZ RB VB TO JJ NN . A Cuban advocacy group had filed a legal complaint on behalf of the repatriated Cubans . DT JJ NN NN VBD VBN DT JJ NN IN NN IN DT JJ NNS . The U.S. employs a ' wet foot , dry foot ' policy for illegal Cuban immigrants . DT NNP VBZ DT `` JJ NN , JJ NN `` NN IN JJ JJ NNS . The policy allows Cuban refugees who reach U.S. soil to stay in the United States , while those intercepted at sea are sent back home . DT NN VBZ JJ NNS WP VBP NNP NN TO VB IN DT NNP NNPS , IN DT VBN IN NN VBP VBN RB NN . Insurgents in Iraq launched a series of new attacks on Saturday , killing at least seven people , including two British contractors . NNS IN NNP VBD DT NN IN JJ NNS IN NNP , VBG IN JJS CD NNS , VBG CD JJ NNS . British officials say the two contractors were traveling in a British consular convoy that was hit by a roadside bomb . JJ NNS VBP DT CD NNS VBD VBG IN DT JJ JJ NN WDT VBD VBN IN DT NN NN . The attack in the relatively quiet town of Basra also injured two Iraqi children . DT NN IN DT RB JJ NN IN NNP RB VBD CD JJ NNS . In Baghdad , Iraqi police said a suicide car bomber attacked a police checkpoint , killing at least five people and injuring 25 others . IN NNP , JJ NNS VBD DT NN NN NN VBD DT NN NN , VBG IN JJS CD NNS CC VBG CD NNS . Meanwhile , a Sunni Arab leader , Sheikh Khalaf al-Ilayan , said he was not hurt in an assassination attempt by gunmen wearing Iraqi military uniforms . RB , DT NNP NNP NN , NNP NNP NNP , VBD PRP VBD RB VBN IN DT NN NN IN NNS VBG JJ JJ NNS . And officials said kidnappers seized an Iraqi health ministry official from her Baghdad home . CC NNS VBD NNS VBD DT JJ NN NN NN IN PRP$ NNP NN . Police also reported finding the bodies of three Baghdad airport employees kidnapped earlier this week . NNS RB VBD VBG DT NNS IN CD NNP NN NNS VBN RBR DT NN . India won its first home test series against Pakistan in 27 years when the third and final test in Bangalore ended in a draw . NNP VBD PRP$ JJ NN NN NN IN NNP IN CD NNS WRB DT JJ CC JJ NN IN NNP VBD IN DT NN . Indian spin bowler Anil Kumble took five wickets in Pakistan 's second innings as the visitors reached 162-7 before bad light ended play . JJ NN NN NNP NNP VBD CD NNS IN NNP POS JJ NN IN DT NNS VBD CD IN JJ NN VBD NN . The score was in response to India 's second innings score of 284-6 declared . DT NN VBD IN NN TO NNP POS JJ NN NN IN CD VBN . The final score : India 626 and 284-6 declared . DT JJ NN IN NNP CD CC CD VBN . Pakistan 537 and 162-7 . NNP CD CC CD . India had not won a home test series with Pakistan since 1980 . NNP VBD RB VBN DT NN NN NN IN NNP IN CD . The host nation won the first test by six wickets and the second test was a draw . DT NN NN VBD DT JJ NN IN CD NNS CC DT JJ NN VBD DT NN . India won the five-match one-day series , 03-Feb . NNP VBD DT JJ JJ NN , CD . An Ethiopian court has convicted former President Mengistu Haile Mariam of genocide . DT JJ NN VBZ VBN JJ NNP NNP NNP NNP IN NN . The 12-year trial of Colonel Mengistu ended Tuesday in Addis Ababa , when a three-judge panel found him guilty of genocide and other charges . DT JJ NN IN NNP NNP VBD NNP IN NNP NNP , WRB DT JJ NN VBD PRP JJ IN NN CC JJ NNS . The former dictator was convicted in absentia . DT JJ NN VBD VBN IN NN . He fled to Zimbabwe in 1991 after he was ousted by a guerrilla campaign led by current Prime Minister Meles Zenawi . PRP VBD TO VB IN CD IN PRP VBD VBN IN DT NN NN VBN IN JJ NNP NNP NNP NNP . Only 34 of the more than 70 people accused of atrocities were present in court Tuesday . RB CD IN DT JJR IN CD NNS VBN IN NNS VBD JJ IN NN NNP . A total of 25 were tried in absentia , while 14 others have died since the trial began in 1994 . DT NN IN CD VBD VBN IN NN , IN CD NNS VBP VBN IN DT NN VBD IN CD . Those convicted of crimes against humanity and genocide could be sentenced to death . DT VBN IN NNS IN NN CC NN MD VB VBN TO NN . Mengistu 's rule from 1974 to 1991 is considered among the most brutal in Africa . NNP POS NN IN CD TO CD VBZ VBN IN DT RBS JJ IN NNP . An estimated 50,000 people , including students , political figures and members of the middle class , were killed for opposing his regime . DT VBN CD NNS , VBG NNS , JJ NNS CC NNS IN DT JJ NN , VBD VBN IN VBG PRP$ NN . A Libyan official is denying reports that up to 20 Somali prisoners have been killed during an attempted jailbreak in the city of Banghazi . DT JJ NN VBZ VBG NNS WDT RB TO CD JJ NNS VBP VBN VBN IN DT JJ NN IN DT NN IN NNP . Libya 's ambassador to Somalia told reporters in Mogadishu Tuesday that there was no prison escape that he is aware of , and that no Somali prisoners have been killed . NNP POS NN TO NNP VBD NNS IN NNP NNP IN EX VBD DT NN NN IN PRP VBZ JJ IN , CC IN DT JJ NNS VBP VBN VBN . On Monday , VOA 's Somali service interviewed a prisoner , Abdullahi Abdi Siad , who said five inmates were killed when guards opened fire during the escape attempt . IN NNP , NNP POS JJ NN VBD DT NN , NNP NNP NNP , WP VBD CD NNS VBD VBN WRB NNS VBD NN IN DT NN NN . The prisoner added that guards put the death toll at 20 . DT NN VBD IN NNS VBD DT NN NN IN CD . That is the number reported Tuesday by two Somali news outlets . DT VBZ DT NN VBN NNP IN CD JJ NN NNS . Britain has pressured Libya to improve conditions in its prisons , which were once notorious for overcrowding , poor sanitation , and poor health care . NNP VBZ VBN NNP TO VB NNS IN PRP$ NNS , WDT VBD RB JJ IN VBG , JJ NN , CC JJ NN NN . The British Foreign Office says on its Web site that conditions have improved in recent years , though overcrowding remains a problem . DT NNP NNP NNP VBZ IN PRP$ NNP NN IN NNS VBP VBN IN JJ NNS , IN VBG VBZ DT NN . Four U.S. soldiers have been killed in Afghanistan by a roadside bomb in eastern Kunar province . CD NNP NNS VBP VBN VBN IN NNP IN DT NN NN IN JJ NNP NN . A U.S. military statement said the soldier 's vehicle was hit by an improvised explosive device while on patrol Sunday . DT NNP JJ NN VBD DT NN POS NN VBD VBN IN DT JJ JJ NN IN IN NN NNP . Also Sunday , Sibghatullah Mujaddedi , who chairs the upper house of Afghanistan 's parliament , escaped with minor injuries from a suicide bombing in Kabul . RB NNP , NNP NNP , WP VBZ DT JJ NN IN NNP POS NN , VBD IN JJ NNS IN DT NN VBG IN NNP . The bombing killed two bystanders and two suicide bombers . DT NN VBD CD NNS CC CD NN NNS . Mujaddedi said he believed Pakistan 's intelligence agency organized the bombing . NNP VBD PRP VBD NNP POS NN NN VBD DT NN . Pakistan denied the charge . NNP VBD DT NN . Meanwhile , the Taleban claimed responsibility Sunday for kidnapping four Albanians and four Afghan men working for U.S. forces in southern Afghanistan . RB , DT NNP VBD NN NNP IN VBG CD NNS CC CD JJ NNS VBG IN NNP NNS IN JJ NNP . Taleban spokesman , Qari Mohammed Yousaf said his group kidnapped the men Saturday . NNP NN , NNP NNP NNP VBD PRP$ NN VBD DT NNS NNP . He also said the Taleban 's fugitive leader Mullah Mohammad Omar would decide what would happen to the men . PRP RB VBD DT NNP POS JJ NN NNP NNP NNP MD VB WP MD VB TO DT NNS . All eight worked for a cleaning company employed by coalition forces . DT CD VBD IN DT NN NN VBN IN NN NNS . Authorities in Indian Kashmir say suspected Islamic militants have detonated a grenade , wounding at least six people , including two policemen . NNS IN JJ NNP VBP JJ JJ NNS VBP VBN DT NN , VBG IN JJS CD NNS , VBG CD NNS . The authorities say the blast occurred Saturday near a security post in a crowded business district in the heart of Srinagar . DT NNS VBP DT NN VBD NNP IN DT NN NN IN DT JJ NN NN IN DT NN IN NNP . They say the attackers apparently missed their intended target , a patrol of paramilitary soldiers . PRP VBP DT NNS RB VBD PRP$ JJ NN , DT NN IN JJ NNS . The wounded were taken to nearby hospitals . DT VBN VBD VBN TO JJ NNS . Police cordoned off the area and were searching for the attackers . NNS VBD RP DT NN CC VBD VBG IN DT NNS . No one has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . Muslim separatists in Indian Kashmir have been fighting for an independent Kashmir or its merger with neighboring Pakistan since 1989 . NNP NNS IN JJ NNP VBP VBN VBG IN DT JJ NNP CC PRP$ NN IN VBG NNP IN CD . Their fight against Indian rule has killed tens of thousands of people . PRP$ NN IN JJ NN VBZ VBN NNS IN NNS IN NNS . Russia 's energy minister says United Nations sanctions will not get in the way of the country 's plans to develop Iran 's oil and gas sectors . NNP POS NN NN VBZ NNP NNP NNS MD RB VB IN DT NN IN DT NN POS NNS TO VB NNP POS NN CC NN NNS . Russian Energy Minister Sergei Shmatko met with his Iranian counterpart , Masud Mir-Kazemi , in Moscow Wednesday to sign a ' road map ' document outlining energy cooperation . JJ NNP NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP , IN NNP NNP TO VB DT `` NN NN `` NN VBG NN NN . Shmatko said Russian companies are prepared to deliver oil products to Iran , despite sanctions . NNP VBD JJ NNS VBP VBN TO VB NN NNS TO NNP , IN NNS . Russian state energy company Gazprom has agreed to help Iran further develop its oil and natural gas fields , but most projects are currently on hold because of sanctions . JJ NN NN NN NNP VBZ VBN TO VB NNP RB VB PRP$ NN CC JJ NN NNS , CC JJS NNS VBP RB IN NN IN IN NNS . Western governments have urged their companies to cut ties with Iran because of its controversial nuclear program . JJ NNS VBP VBN PRP$ NNS TO VB NNS IN NNP IN IN PRP$ JJ JJ NN . Western nations accuse Iran of seeking to develop nuclear weapons under cover of a civilian energy program , a charge Tehran denies . JJ NNS VBP NNP IN VBG TO VB JJ NNS IN NN IN DT JJ NN NN , DT NN NNP VBZ . The United States says there are more than 13,000 American military personnel giving relief support to nations affected by the Asian tsunami . DT NNP NNPS VBZ EX VBP JJR IN CD JJ JJ NNS VBG NN NN TO NNS VBN IN DT JJ NN . Admiral Thomas Fargo , who is commander of the U.S. Pacific Command , said Tuesday more personnel and ships are pouring into the region . NNP NNP NNP , WP VBZ NN IN DT NNP NNP NNP , VBD NNP JJR NNS CC NNS VBP VBG IN DT NN . He said the military initially dispatched ships that could treat drinking water and that carried medical and engineering supplies . PRP VBD DT NN RB VBD NNS WDT MD VB NN NN CC DT VBD JJ CC NN NNS . Admiral Fargo added that the military is looking at sending the hospital ship , Mercy , to the region . NNP NNP VBD IN DT NN VBZ VBG IN VBG DT NN NN , NNP , TO DT NN . He said authorities are considering configuring the ship for humanitarian assistance and staffing it largely with members of non-governmental organizations . PRP VBD NNS VBP VBG VBG DT NN IN JJ NN CC VBG PRP RB IN NNS IN JJ NNS . So far , the U.S. military has delivered more than 200 tons of relief supplies . RB RB , DT NNP NN VBZ VBN JJR IN CD NNS IN NN NNS . Those supplies and equipment are being delivered by helicopters , cargo planes and ships . DT NNS CC NN VBP VBG VBN IN NNS , NN NNS CC NNS . The Israeli army says Palestinian militants detonated a car bomb near a shrine in the West Bank city of Nablus overnight , but caused no injuries or damage . DT JJ NN VBZ JJ NNS VBD DT NN NN IN DT NN IN DT NNP NNP NN IN NNP JJ , CC VBD DT NNS CC NN . A spokesman said the bomb went off next to Joseph 's Tomb shortly after midnight , when Israeli troops were guarding a small group religious Jews praying inside . DT NN VBD DT NN VBD RB JJ TO NNP POS NNP RB IN NN , WRB JJ NNS VBD VBG DT JJ NN VBZ NNPS VBG NN . Meanwhile , Israel 's Vice Prime Minister and Labor Party leader Shimon Peres held talks with Palestinian Cabinet Minister Mohmmed Dahlan in Tel Aviv late Wednesday . RB , NNP POS NNP NNP NNP CC NNP NNP NN NNP NNP VBD NNS IN JJ NNP NNP NNP NNP IN NNP NNP JJ NNP . It was the first high level contact between the two sides since last week 's suicide bombing in Tel Aviv that killed five Israelis . PRP VBD DT JJ JJ NN NN IN DT CD NNS IN JJ NN POS NN VBG IN NNP NNP WDT VBD CD NNS . Mr. Peres told Israeli radio one of the topics he discussed was a possible hand over to the Palestinians of businesses held by Jewish settlers in the Gaza Strip , when Israel pulls out of the territory later this year . NNP NNP VBD JJ NN NN IN DT NNS PRP VBD VBD DT JJ NN IN TO DT NNS IN NNS VBN IN JJ NNS IN DT NNP NNP , WRB NNP VBZ IN IN DT NN RB DT NN . The U.S. official overseeing relief efforts for Hurricane Katrina says rescuers are finding many fewer bodies than expected . DT NNP NN VBG NN NNS IN NNP NNP VBZ NNS VBP VBG JJ JJR NNS IN VBN . In an interview with the television program Fox News Sunday , Coast Guard Vice Admiral Thad Allen said it was hard to estimate a final death toll from the disaster . IN DT NN IN DT NN NN NNP NNP NNP , NNP NNP NNP NNP NNP NNP VBD PRP VBD JJ TO VB DT JJ NN NN IN DT NN . But the admiral joined a growing chorus of officials suggesting fears that Katrina killed up to 10,000 people may be unfounded . CC DT NN VBD DT VBG NN IN NNS VBG NNS WDT NNP VBD RP TO CD NNS MD VB JJ . Authorities continue a block-by-block search for bodies in the city of New Orleans as floodwaters there continue to recede . NNS VBP DT JJ NN IN NNS IN DT NN IN NNP NNP IN NNS RB VBP TO VB . The official death from Katrina toll now stands at nearly 400 , with 154 in New Orleans . DT JJ NN IN NNP NN RB VBZ IN RB CD , IN CD IN NNP NNP . President Bush returns to the southern U.S. coast later Sunday to get a first-hand look at the cleanup and recovery effort . NNP NNP NNS TO DT JJ NNP NN RB NNP TO VB DT JJ NN IN DT NN CC NN NN . Investigators in China have ruled out terrorism in the crash of a passenger plane Sunday that claimed the lives of 54 people . NNS IN NNP VBP VBN RP NN IN DT NN IN DT NN NN NNP WDT VBD DT NNS IN CD NNS . State media said Monday that investigators sent from Beijing had n't determined the cause of the crash but found no evidence of sabotage . NNP NNS VBD NNP IN NNS VBN IN NNP VBD RB VBN DT NN IN DT NN CC VBD DT NN IN NN . The China Eastern Airlines Shanghai-bound jet plunged into a lake just seconds after taking off from Baotou city in Inner Mongolia . DT NNP NNP NNPS JJ NN VBD IN DT NN RB NNS IN VBG RP IN NNP NN IN NNP NNP . Witnesses said they heard a blast while the plane was still in the air . NNS VBD PRP VBD DT NN IN DT NN VBD RB IN DT NN . All 53 people on board and one on the ground were killed . DT CD NNS IN NN CC CD IN DT NN VBD VBN . Divers have yet to find the two in-flight recorders that could help determine the cause of the accident . NNS VBP RB TO VB DT CD JJ NNS WDT MD VB VB DT NN IN DT NN . The plane was a Canadian-made CRJ-200 . DT NN VBD DT JJ NNP . China has grounded all its other CRJ-200s . NNP VBZ VBN DT PRP$ JJ NNPS . Pakistani helicopter gunships and fighter jets pounded militant hide-outs in the country 's northwest Saturday , killing at least 12 militants . JJ NN NNS CC NN NNS VBD JJ NNS IN DT NN POS JJS NNP , VBG IN JJS CD NNS . Security officials say the airstrikes targeted three suspected militant positions in Orakzai region , where a military transport helicopter crashed the day before , killing at least 26 military personnel . NN NNS VBP DT NNS VBD CD JJ JJ NNS IN NNP NN , WRB DT JJ NN NN VBD DT NN IN , VBG IN JJS CD JJ NNS . Pakistani officials say the helicopter crashed Friday outside the city of Peshawar due to a technical failure . JJ NNS VBP DT NN VBD NNP IN DT NN IN NNP JJ TO DT JJ NN . But the Taliban claims it shot down the aircraft . CC DT NNP VBZ PRP VBD IN DT NN . Elsewhere in the northwest , clashes between a pro-government tribal militia and militants killed at least 12 people late Friday in the remote Mohmand region , along the Afghan border . RB IN DT NN , NNS IN DT JJ JJ NN CC NNS VBD IN JJS CD NNS JJ NNP IN DT JJ NNP NN , IN DT JJ NN . Pakistan 's military has been fighting Taliban militants throughout the country 's northwest for more than two months . NNP POS NN VBZ VBN VBG NNP NNS IN DT NN POS JJS IN JJR IN CD NNS . Security officials also are on high alert following the launch this week of a major U.S. offensive against Taliban militants in neighboring Afghanistan . NN NNS RB VBP IN JJ NN VBG DT NN DT NN IN DT JJ NNP NN IN NNP NNS IN VBG NNP . A leading Syrian human rights activist , who faces trial for allegedly defaming Syria 's image , has been awarded a prestigious international human rights award . DT VBG JJ JJ NNS NN , WP VBZ NN IN RB VBG NNP POS NN , VBZ VBN VBN DT JJ JJ JJ NNS NN . Syrian lawyer-activist Aktham Naisse was chosen unanimously by the 11 international human rights groups that make up the Geneva-based Martin Ennals Foundation . JJ NN NNP NNP VBD VBN RB IN DT CD JJ JJ NNS NNS WDT VBP RP DT JJ NNP NNP NNP . In announcing the 2005 award , the jury panel said the 53-year-old Mr. Naise has for 30 years ' embodied the soul of the democratic movement in Syria . ' IN VBG DT CD NN , DT NN NN VBD DT JJ NNP NNP VBZ IN CD NNS `` VBD DT NN IN DT JJ NN IN NNP . `` Mr. Naisse was arrested last April in Damascus , one month after his group - the Committees for the Defense of Democratic Liberties and Human Rights in Syria - organized a rare protest outside Syria 's parliament . NNP NNP VBD VBN JJ NNP IN NNP , CD NN IN PRP$ NN IN DT NNS IN DT NN IN JJ NNS CC JJ NNS IN NNP : VBD DT JJ NN IN NNP POS NN . The protest highlighted demands for political reform and the repeal of Syria 's emergency laws . DT NN VBD NNS IN JJ NN CC DT NN IN NNP POS NN NNS . The group says he faces trial next week , January 16 , on charges of ' disseminating FALSE information aimed at weakening the state . ' DT NN VBZ PRP VBZ NN JJ NN , NNP CD , IN NNS IN `` VBG JJ NN VBN IN VBG DT NN . `` The U.S. military says at least two Marines are dead and three Marines and a sailor are missing after a suicide car bomb blast struck their convoy in Fallujah late Thursday . DT NNP NN VBZ IN JJS CD NNS VBP JJ CC CD NNS CC DT NN VBP VBG IN DT NN NN NN NN VBD PRP$ NN IN NNP JJ NNP . The military says that 13 other service members were wounded in the attack , which took place as the convoy was traveling through the city . DT JJ VBZ IN CD JJ NN NNS VBD VBN IN DT NN , WDT VBD NN IN DT NN VBD VBG IN DT NN . Officials released no further details about the incident . NNS VBD DT JJ NNS IN DT NN . In Baghdad , a British security firm guarding Iraq 's main airport has temporarily stopped work because of a contract dispute with the Iraqi government . IN NNP , DT JJ NN NN VBG NNP POS JJ NN VBZ RB VBN NN IN IN DT NN NN IN DT JJ NN . Following the move , all commercial flights at the airport were halted . VBG DT NN , DT JJ NNS IN DT NN VBD VBN . And in Mosul , local officials say one Iraqi woman was killed by an errant mortar round fired at a nearby police academy . CC IN NNP , JJ NNS VBP CD JJ NN VBD VBN IN DT JJ NN NN VBN IN DT JJ NN NN . A congressional investigation says tens of millions of dollars of U.S. taxpayer funds are indirectly being paid to Afghan warlords , public officials and even the Taliban to ensure safe passage of U.S. supply convoys in Afghanistan . DT JJ NN VBZ NNS IN NNS IN NNS IN NNP NN NNS VBP RB VBG VBN TO JJ NNS , JJ NNS CC RB DT NNP TO VB JJ NN IN NNP NN NNS IN NNP . A lengthy report released late Monday says eight Afghan-based private contractors working with the Defense Department through a $ 2.1 billion transportation contract are paying several thousand dollars per truck for guards . DT JJ NN VBN JJ NNP VBZ CD JJ JJ NNS VBG IN DT NNP NNP IN DT $ CD CD NN NN VBP VBG JJ CD NNS IN NN IN NNS . The contract covers at least 70 percent of all goods and services used by U.S. forces . DT NN VBZ IN JJS CD NN IN DT NNS CC NNS VBN IN NNP NNS . Congressional investigators say trucking contractors raised the issue with military officials , but their concerns were never properly addressed . JJ NNS VBP NN NNS VBD DT NN IN JJ NNS , CC PRP$ NNS VBD RB RB VBN . The report was completed by the House of Representative 's national security subcommittee , which will hold hearings on the report Tuesday . DT NN VBD VBN IN DT NNP IN NNP POS JJ NN NN , WDT MD VB NNS IN DT NN NNP . The U.S. military says it has begun investigating reports of corruption in Afghanistan , and has created a task force to determine the impact of its contracting processes on corruption . DT NNP NN VBZ PRP VBZ VBN VBG NNS IN NN IN NNP , CC VBZ VBN DT NN NN TO VB DT NN IN PRP$ NN NNS IN NN . Reports from Iran say police have exchanged gunfire with militants following an explosion near a school in the southeastern part of the country . NNS IN NNP VBP NNS VBP VBN NN IN NNS VBG DT NN IN DT NN IN DT JJ NN IN DT NN . Iranian news agencies said late Friday that police in the city of Zahedan cordoned off the neighborhood where the incident took place . JJ NN NNS VBD JJ NNP IN NN IN DT NN IN NNP VBD RP DT NN WRB DT NN VBD NN . Electrical power to the area was cut off . JJ NN TO DT NN VBD VBN RP . It is not clear if there were casualties . PRP VBZ RB JJ IN EX VBD NNS . On Wednesday , a car bomb blast in the same city killed 11 Iranian Revolutionary Guards . IN NNP , DT NN NN NN IN DT JJ NN VBD CD JJ JJ NNS . A Sunni Muslim group , Jundollah , claimed responsibility for that attack . DT NNP NNP NN , NNP , VBD NN IN DT NN . Officials say the group is linked to al-Qaida . NNS VBP DT NN VBZ VBN TO NNP . Zahedan is the capital of Sistan-Baluchistan province , which borders Pakistan and Afghanistan . NNP VBZ DT NN IN NNP NN , WDT VBZ NNP CC NNP . Iran has accused the United States of backing militants in the sensitive border area to destabilize the country . NNP VBZ VBN DT NNP NNPS IN VBG NNS IN DT JJ NN NN TO VB DT NN . Family members carry coffin of police officer Mohamed Badr for burial in Baghdad Insurgents in Iraq launched a third straight day of stepped-up attacks Sunday , killing at least nine Iraqis . NN NNS VBP NN IN NN NN NNP NNP IN NN IN NNP NNS IN NNP VBD DT JJ JJ NN IN JJ NNS NNP , VBG IN JJS CD NNS . Authorities say five Iraqi policemen manning a security checkpoint were shot to death in a surprise attack shortly after dawn . NNS VBP CD JJ NNS VBG DT NN NN VBD VBN TO NN IN DT NN NN RB IN NN . Later , a car-bomb attack on a U.S. military convoy in southeast Baghdad killed at least four Iraqi civilians and injured 12 others . RB , DT NN NN IN DT NNP JJ NN IN NN NNP VBD IN JJS CD JJ NNS CC VBN CD NNS . Violence in Iraq has increased dramatically since Thursday , when the nation 's first democratically elected government was formed following the fall of Saddam Hussein . NN IN NNP VBZ VBN RB IN NNP , WRB DT NN POS JJ RB VBN NN VBD VBN VBG DT NN IN NNP NNP . Suicide attacks , car bombings and other guerrilla strikes in Baghdad and nearby areas have killed at least 75 people since Friday . NN NNS , NN NNS CC JJ NN NNS IN NNP CC JJ NNS VBP VBN IN JJS CD NNS IN NNP . The U.S. military says coalition forces have killed 25 militants and arrested 10 more during a series of raids across Afghanistan . DT NNP NN VBZ NN NNS VBP VBN CD NNS CC VBN CD JJR IN DT NN IN NNS IN NNP . A military statement says 15 militants were killed Wednesday during a raid on suspected militants in the southern city of Kandahar . DT JJ NN VBZ CD NNS VBD VBN NNP IN DT NN IN JJ NNS IN DT JJ NN IN NNP . The U.S. says two other operations took place in southeastern Afghanistan , where ten militants were killed in separate raids . DT NNP VBZ CD JJ NNS VBD NN IN JJ NNP , WRB JJ NNS VBD VBN IN JJ NNS . Elsewhere , government officials say unknown gunmen killed five police officers in southern Helmand province . RB , NN NNS VBP JJ NNS VBD CD NNS NNS IN JJ NNP NN . Authorities suspect fellow police officers linked to the Taliban may have taken part in the deadly attack . NNS VBP JJ NN NNS VBN TO DT NNP MD VB VBN NN IN DT JJ NN . Five other police officers also went missing . CD JJ NN NNS RB VBD VBG . At least six people have been killed and more than a dozen others wounded in a bomb explosion in the southwestern Pakistani city of Quetta . IN JJS CD NNS VBP VBN VBN CC JJR IN DT NN NNS VBD IN DT NN NN IN DT JJ JJ NN IN NNP . The bomb exploded Friday near a military truck parked in the center of the city , the capital of Baluchistan province . DT NN VBD NNP IN DT JJ NN VBN IN DT NN IN DT NN , DT NN IN NNP NN . Officials say the bomb was strapped to a bicycle . NNS VBP DT NN VBD VBN TO DT NN . Information Minister Sheikh Rashid Ahmed condemned the blast , calling it a heinous act that would not go unpunished . NNP NNP NNP NNP NNP VBD DT NN , VBG PRP DT JJ NN WDT MD RB VB JJ . A recent increase in violence in Baluchistan has been blamed on local tribesmen , who want a bigger share of the revenue from the region 's mineral and oil resources . DT JJ NN IN NN IN NNP VBZ VBN VBN IN JJ NNS , WP VBP DT JJR NN IN DT NN IN DT NN POS NN CC NN NNS . Pakistan 's military says at least 30 militants and six soldiers have been killed during fighting Sunday in the North Waziristan tribal region . NNP POS NN VBZ IN JJS CD NNS CC CD NNS VBP VBN VBN IN VBG NNP IN DT NNP NNP JJ NN . An army spokesman ( Major General Waheed Arshad ) says that security forces attacked the pro-Taleban militants after they ambushed a military convoy Saturday evening near the town of Mir Ali . DT NN NN LRB NNP NNP NNP NNP RRB VBZ IN NN NNS VBD DT JJ NNS IN PRP VBD DT JJ NN NNP NN IN DT NN IN NNP NNP . He says fighting was also taking place in other parts of the area . PRP VBZ NN VBD RB VBG NN IN JJ NNS IN DT NN . Violence has been escalating in Pakistan 's northern tribal regions bordering Afghanistan since July , when a peace pact with militants broke down in North Waziristan , and army commandos stormed a radical mosque in the capital , Islamabad . NN VBZ VBN VBG IN NNP POS JJ JJ NNS VBG NNP IN NNP , WRB DT NN NN IN NNS VBD RP IN NNP NNP , CC NN NNS VBD DT JJ NN IN DT NN , NNP . The United States and North Korea have held a third one-on-one meeting as they seek to narrow still wide differences on how to dismantle Pyongyang 's nuclear program . DT NNP NNPS CC NNP NNP VBP VBN DT JJ JJ NN IN PRP VBP TO VB RB JJ NNS IN WRB TO VB NNP POS JJ NN . U.S. officials say U.S. Assistant Secretary of State Christopher Hill and North Korean Vice Foreign Minister Kim Kye-gwan met for two hours Thursday in Beijing , on the sidelines of the six-nation negotiations being hosted by China . NNP NNS VBP NNP NNP NNP IN NNP NNP NNP CC NNP JJ NNP NNP NNP NNP NNP VBD IN CD NNS NNP IN NNP , IN DT NNS IN DT JJ NNS VBG VBN IN NNP . There was no immediate word on how the talks went or what was discussed . EX VBD DT JJ NN IN WRB DT NNS VBD CC WP VBD VBN . Wednesday the United States and North Korea each said the other must make the first move to denuclearize the Korean peninsula . NNP DT NNP NNPS CC NNP NNP DT VBD DT JJ MD VB DT JJ NN TO VB DT JJ NN . The six-nation talks include the two Koreas , the United States , China , Japan and Russia . DT JJ NNS VBP DT CD NNP , DT NNP NNPS , NNP , NNP CC NNP . The native Amerindian population of Cuba began to decline after the European discovery of the island by Christopher COLUMBUS in 1492 and following its development as a Spanish colony during the next several centuries . DT JJ JJ NN IN NNP VBD TO VB IN DT JJ NN IN DT NN IN NNP NNP IN CD CC VBG PRP$ NN IN DT JJ NN IN DT JJ JJ NNS . Large numbers of African slaves were imported to work the coffee and sugar plantations , and Havana became the launching point for the annual treasure fleets bound for Spain from Mexico and Peru . JJ NNS IN JJ NNS VBD VBN TO VB DT NN CC NN NNS , CC NNP VBD DT NN NN IN DT JJ NN NNS VBN IN NNP IN NNP CC NNP . Spanish rule eventually provoked an independence movement and occasional rebellions that were harshly suppressed . JJ NN RB VBD DT NN NN CC JJ NNS WDT VBD RB VBN . US intervention during the Spanish-American War in 1898 assisted the Cubans in overthrowing Spanish rule . NNP NN IN DT JJ NNP IN CD VBD DT NNS IN VBG JJ NN . The Treaty of Paris established Cuban independence from the US in 1902 after which the island experienced a string of governments mostly dominated by the military and corrupt politicians . DT NNP IN NNP VBD JJ NN IN DT NNP IN CD IN WDT DT NN VBD DT NN IN NNS RB VBN IN DT JJ CC JJ NNS . Fidel CASTRO led a rebel army to victory in 1959 ; his iron rule held the subsequent regime together for nearly five decades . NNP NNP VBD DT NN NN TO NN IN CD ; PRP$ NN NN VBD DT JJ NN RB IN RB CD NNS . He stepped down as president in February 2008 in favor of his younger brother Raul CASTRO . Cuba 's Communist revolution , with Soviet support , was exported throughout Latin America and Africa during the 1960s , 1970s , and 1980s . PRP VBD RP IN NN IN NNP CD IN NN IN PRP$ JJR NN NNP NNP . NNP POS JJ NN , IN JJ NN , VBD VBN IN NNP NNP CC NNP IN DT NNS , NNS , CC NNS . The country faced a severe economic downturn in 1990 following the withdrawal of former Soviet subsidies worth $ 4 billion to $ 6 billion annually . DT NN VBD DT JJ JJ NN IN CD VBG DT NN IN JJ JJ NNS JJ $ CD CD TO $ CD CD RB . Cuba at times portrays the US embargo , in place since 1961 , as the source if its difficulties . NNP IN NNS VBZ DT NNP NN , IN NN IN CD , IN DT NN IN PRP$ NNS . Illicit migration to the US - using homemade rafts , alien smugglers , air flights , or via the southwest border - is a continuing problem . JJ NN TO DT NNP : VBG JJ NNS , JJ NNS , NN NNS , CC IN DT JJS NN : VBZ DT VBG NN . The US Coast Guard intercepted 982 individuals attempting to cross the Straits of Florida in fiscal year 2009 . DT NNP NNP NNP VBD CD NNS VBG TO VB DT NNS IN NNP IN JJ NN CD . Cote d'Ivoire is heavily dependent on agriculture and related activities , which engage roughly 68 % of the population . NNP NNP VBZ RB JJ IN NN CC JJ NNS , WDT VBP RB CD NN IN DT NN . Cote d'Ivoire is the world 's largest producer and exporter of cocoa beans and a significant producer and exporter of coffee and palm oil . NNP NNP VBZ DT NN POS JJS NN CC NN IN NN NNS CC DT JJ NN CC NN IN NN CC NN NN . Consequently , the economy is highly sensitive to fluctuations in international prices for these products , and , to a lesser extent , in climatic conditions . RB , DT NN VBZ RB JJ TO NNS IN JJ NNS IN DT NNS , CC , TO DT JJR NN , IN JJ NNS . Cocoa , oil , and coffee are the country 's top export revenue earners , but the country is also producing gold . NN , NN , CC NN VBP DT NN POS JJ NN NN NNS , CC DT NN VBZ RB VBG NN . Since the end of the civil war in 2003 , political turmoil has continued to damage the economy , resulting in the loss of foreign investment and slow economic growth . IN DT NN IN DT JJ NN IN CD , JJ NN VBZ VBN TO VB DT NN , VBG IN DT NN IN JJ NN CC JJ JJ NN . GDP grew by more than 2 % in 2008 and around 4 % per year in 2009 - 10 . NN VBD IN JJR IN CD NN IN CD CC RB CD NN IN NN IN CD IN CD . Per capita income has declined by 15 % since 1999 , but registered a slight improvement in 2009 - 10 . IN NN NN VBZ VBN IN CD NN IN CD , CC VBD DT JJ NN IN CD IN CD . Power cuts caused by a turbine failure in early 2010 slowed economic activity . NN NNS VBN IN DT NN NN IN JJ CD VBD JJ NN . Cote d'Ivoire in 2010 signed agreements to restructure its Paris Club bilateral , other bilateral , and London Club debt . NNP NNP IN CD VBD NNS TO VB PRP$ NNP NNP NN , JJ NN , CC NNP NNP NN . Cote d'Ivoire 's long term challenges include political instability and degrading infrastructure . NNP NNP POS JJ NN NNS VBP JJ NN CC VBG NN . An independent kingdom for much of its long history , Korea was occupied by Japan beginning in 1905 following the Russo-Japanese War . DT JJ NN IN NN IN PRP$ JJ NN , NNP VBD VBN IN NNP VBG IN CD VBG DT JJ NNP . Five years later , Japan formally annexed the entire peninsula . CD NNS RB , NNP RB VBD DT JJ NN . Following World War II , Korea was split with the northern half coming under Soviet-sponsored Communist control . VBG NNP NNP NNP , NNP VBD VBN IN DT JJ NN VBG IN JJ JJ NN . After failing in the Korean War ( 1950 - 53 ) to conquer the US-backed Republic of Korea ( ROK ) in the southern portion by force , North Korea ( DPRK ) , under its founder President KIM Il Sung , adopted a policy of ostensible diplomatic and economic ' self-reliance ' as a check against outside influence . IN VBG IN DT NNP NNP LRB CD IN CD RRB TO VB DT JJ NNP IN NNP LRB NNP RRB IN DT JJ NN IN NN , NNP NNP LRB NNP RRB , IN PRP$ NN NNP NNP NNP NNP , VBD DT NN IN JJ JJ CC JJ `` NN `` IN DT NN IN JJ NN . The DPRK demonized the US as the ultimate threat to its social system through state-funded propaganda , and molded political , economic , and military policies around the core ideological objective of eventual unification of Korea under Pyongyang 's control . DT NNP VBD DT NNP IN DT JJ NN TO PRP$ JJ NN IN JJ NN , CC VBD JJ , JJ , CC JJ NNS IN DT NN JJ NN IN JJ NN IN NNP IN NNP POS NN . KIM Il Sung 's son , the current ruler KIM Jong Il , was officially designated as his father 's successor in 1980 , assuming a growing political and managerial role until the elder KIM 's death in 1994 . NNP NNP NNP POS NN , DT JJ NN NNP NNP NNP , VBD RB VBN IN PRP$ NN POS NN IN CD , VBG DT VBG JJ CC JJ NN IN DT NN NNP POS NN IN CD . In 2010 , KIM Jong Il began the process of preparing the way for his youngest son , KIM Jong Un , to succeed him in power . IN CD , NNP NNP NNP VBD DT NN IN VBG DT NN IN PRP$ JJS NN , NNP NNP NNP , TO VB PRP IN NN . After decades of economic mismanagement and resource misallocation , the DPRK since the mid-1990s has relied heavily on international aid to feed its population . IN NNS IN JJ NN CC NN NN , DT NNP IN DT NNS VBZ VBN RB IN JJ NN TO VB PRP$ NN . North Korea 's history of regional military provocations , proliferation of military-related items , long-range missile development , WMD programs including tests of nuclear devices in 2006 and 2009 , and massive conventional armed forces are of major concern to the international community . NNP NNP POS NN IN JJ JJ NNS , NN IN JJ NNS , JJ NN NN , NNP NNS VBG NNS IN JJ NNS IN CD CC CD , CC JJ JJ JJ NNS VBP IN JJ NN TO DT JJ NN . The regime has marked 2012 , the centenary of KIM Il Sung 's birth , a banner year ; to that end , the country has been focused on development of the economy . DT NN VBZ VBN CD , DT NN IN NNP NNP NNP POS NN , DT NN NN ; TO DT NN , DT NN VBZ VBN VBN IN NN IN DT NN . The Czech Republic is a stable and prosperous market economy , which harmonized its laws and regulations with those of the EU prior to its EU accession in 2004 . DT JJ NNP VBZ DT JJ CC JJ NN NN , WDT VBD PRP$ NNS CC NNS IN DT IN DT NNP RB TO PRP$ NNP NN IN CD . While the conservative , inward looking Czech financial system has remained relative healthy , the small , open , export-driven Czech economy remains very sensitive to changes in the economic performance of its main export markets , especially Germany . IN DT JJ , JJ VBG JJ JJ NN VBZ VBN JJ JJ , DT JJ , JJ , JJ JJ NN VBZ RB JJ TO NNS IN DT JJ NN IN PRP$ JJ NN NNS , RB NNP . When Western Europe and Germany fell into recession in late 2008 , demand for Czech goods plunged , leading to double digit drops in industrial production and exports . WRB NNP NNP CC NNP VBD IN NN IN JJ CD , NN IN JJ NNS VBD , VBG TO VB NN NNS IN JJ NN CC NNS . As a result , real GDP fell 4.1 % in 2009 , with most of the decline occurring during the first quarter . IN DT NN , JJ NN VBD CD NN IN CD , IN JJS IN DT NN VBG IN DT JJ NN . Real GDP , however , has slowly recovered with positive quarter-on-quarter growth starting in the second half of 2009 and continuing throughout 2010 . JJ NN , RB , VBZ RB VBN IN JJ NN NN VBG IN DT JJ NN IN CD CC VBG IN CD . The auto industry remains the largest single industry and , together with its suppliers , accounts for as much as 20 % of Czech manufacturing . DT NN NN VBZ DT JJS JJ NN CC , RB IN PRP$ NNS , NNS IN RB JJ IN CD NN IN JJ NN . The Czech Republic produced more than a million cars for the first time in 2010 , over 80 % of which were exported . DT JJ NNP VBD JJR IN DT CD NNS IN DT JJ NN IN CD , IN CD NN IN WDT VBD VBN . Foreign and domestic businesses alike voice concerns about corruption , especially in public procurement . JJ CC JJ NNS RB NN NNS IN NN , RB IN JJ NN . Other long term challenges include dealing with a rapidly aging population , funding an unsustainable pension and health care system , and diversifying away from manufacturing and toward a more high-tech , services-based , knowledge economy . JJ JJ NN NNS VBP VBG IN DT RB VBG NN , VBG DT JJ NN CC NN NN NN , CC VBG RB IN NN CC IN DT RBR JJ , JJ , NN NN . A BULL was striving with all his might to squeeze himself through a narrow passage which led to his stall . DT NN VBD VBG IN DT PRP$ NN TO VB PRP IN DT JJ NN WDT VBD TO PRP$ NN . A young Calf came up , and offered to go before and show him the way by which he could manage to pass . DT JJ NN VBD RB , CC VBD TO VB RB CC VB PRP DT NN IN WDT PRP MD VB TO VB . ' Save yourself the trouble , ' said the Bull ; `` VB PRP DT NN , `` VBD DT NN ; ' I knew that way long before you were born . ' `` PRP VBD DT NN RB IN PRP VBD VBN . `` A WOLF , passing by , saw some Shepherds in a hut eating a haunch of mutton for their dinner . DT NN , VBG IN , VBD DT NNS IN DT NN VBG DT NN IN NN IN PRP$ NN . Approaching them , he said , ' What a clamor you would raise if I were to do as you are doing ! ' VBG PRP , PRP VBD , `` WP DT NN PRP MD VB IN PRP VBD TO VB IN PRP VBP VBG . `` Two neighbors had been fighting each other for nigh on four decades . CD NNS VBD VBN VBG DT NN IN NN IN CD NNS . Bob buys a Great Dane and teaches it to use the bathroom in Bill 's yard . NNP VBZ DT NNP NNP CC VBZ PRP TO VB DT NN IN NNP POS NN . For one whole year Bill ignores the dog . IN CD JJ NN NNP VBZ DT NN . So Bob then buys a cow and teaches it to use the bathroom in Bill 's yard . RB NNP RB VBZ DT NN CC VBZ PRP TO VB DT NN IN NNP POS NN . After about a year and a half of Bob 's cow crapping in Bill 's yard ; being ignored all the while , a semi pulls up in front of Bill 's house . IN IN DT NN CC DT NN IN NNP POS NN NN IN NNP POS NN ; VBG VBN PDT DT NN , DT NN VBZ RP IN NN IN NNP POS NN . Bob runs over and demands to know what 's in the 18-wheeler . NNP VBZ IN CC NNS TO VB WP VBZ IN DT JJ . ' My new pet elephant , ' Bill replies solemly . `` PRP$ JJ NN NN , `` NN VBZ RB . Inscribed in stone over the great front doors of an old church being restored was : ' This is the Gate of Heaven . ' VBN IN NN IN DT JJ JJ NNS IN DT JJ NN VBG VBN VBD : `` DT VBZ DT NN IN NNP . `` Just below it someone had placed a small cardboard sign which read : ' Use Other Entrance . ' RB IN PRP DT VBD VBN DT JJ NN NN WDT VBD : `` NNP JJ NNP . `` Officials Wednesday said Savo Todovic requested more time to fully comprehend the 18 charges against him . NNS NNP VBD NNP NNP VBD JJR NN TO RB VB DT CD NNS IN PRP . He was extradited to the tribunal after surrendering to police in the Bosnian Serb Republic on Saturday . PRP VBD VBN TO DT NN IN VBG TO NNS IN DT JJ JJ NNP IN NNP . Prosecutors indicted Mr. Todovic for his role as deputy commander of a notorious Serb prison , The Dom , in the city of Foca in eastern Bosnia-Herzegovina . NNS VBD NNP NNP IN PRP$ NN IN JJ NN IN DT JJ JJ NN , DT NNP , IN DT NN IN NNP IN JJ NNP . They say he selected detainees for killings , beatings , interrogations and forced labor . PRP VBP PRP VBN NNS IN NNS , NNS , NNS CC VBN NN . Mr. Todovic is the first suspect the Bosnian Serb government has handed over to The Hague war crimes tribunal . NNP NNP VBZ DT JJ NN DT JJ JJ NN VBZ VBN RP TO DT NNP NN NNS JJ . International officials have been pressing the Bosnian Serbs to cooperate with the court in the arrest and extradition of war crimes suspects as required by the Dayton Peace Accord that halted the Bosnian conflict . JJ NNS VBP VBN VBG DT JJ NNS TO VB IN DT NN IN DT NN CC NN IN NN NNS VBZ IN VBN IN DT NNP NNP NNP WDT VBD DT JJ NN . An international meeting set to begin in Ethiopia on Thursday will focus on how to reverse African poverty and gain greater support from developed nations , including more debt relief . DT JJ NN VBN TO VB IN NNP IN NNP MD VB IN WRB TO VB JJ NN CC NN JJR NN IN JJ NNS , VBG JJR NN NN . The British-sponsored Commission for Africa is intended , in part , to map out an African policy agenda for Britain to press when it heads the G8 and European Union in 2005 . DT JJ NNP IN NNP VBZ VBN , IN NN , TO VB RP DT JJ NN NN IN NNP TO VB WRB PRP VBZ DT NNP CC NNP NNP IN CD . The commission aims to propose action from the West on boosting aid , making trade rules more fair for African exporters , and obtaining more debt relief . DT NN VBZ TO VB NN IN DT NNP IN VBG NN , VBG NN NNS RBR JJ IN JJ NNS , CC VBG JJR NN NN . Industrialized nations at meetings of the G7 nations on Friday and the International Monetary Fund and World Bank Saturday and Sunday failed to agree on a strategy for reducing the heavy burden of debt faced by some of the world 's poorest nations . VBN NNS IN NNS IN DT NNP NNS IN NNP CC DT NNP NNP NNP CC NNP NNP NNP CC NNP VBD TO VB IN DT NN IN VBG DT JJ NN IN NN VBN IN DT IN DT NN POS JJS NNS . Spain 's King Juan Carlos has defended the country 's parliamentary monarchy as a guarantor of national stability . NNP POS NNP NNP NNP VBZ VBN DT NN POS JJ NN IN DT NN IN JJ NN . The monarch told university students in the northern city of Oviedo that the monarchy had contributed to the longest period of stability and prosperity in democratic Spain . DT NN VBD NN NNS IN DT JJ NN IN NNP IN DT NN VBD VBN TO DT JJS NN IN NN CC NN IN JJ NNP . His speech came more than two weeks after separatists in Catalonia burned posters of the king and his wife , Queen Sofia , in the town of Girona , northeast of Barcelona . PRP$ NN VBD JJR IN CD NNS IN NNS IN NNP VBD NNS IN DT NN CC PRP$ NN , NNP NNP , IN DT NN IN NNP , NN IN NNP . The separatists also shouted pro-independence slogans , such as ' Catalonians have no king . ' DT NNS RB VBD JJ NNS , JJ IN `` NNS VBP DT NN . `` Both the Socialist government of Prime Minister Jose Luis Rodriguez Zapatero and the opposition Popular Party have defended and backed the monarch . DT DT JJ NN IN NNP NNP NNP NNP NNP NNP CC DT NN NNP NNP VBP VBN CC VBN DT NN . Outside Catalonia and the Separatist Basque region to the west , Juan Carlos remains extremely popular . JJ NNP CC DT NNP NNP NN TO DT NN , NNP NNP VBZ RB JJ . Many Spaniards respect him for helping to thwart a rightist military coup in 1981 and strengthening democracy in the country . JJ NNS VB PRP IN VBG TO VB DT JJ JJ NN IN CD CC VBG NN IN DT NN . More than 2,00,000 people have been left without electricity in Spain 's Canary Islands after a powerful tropical storm ripped through the area , killing at least seven people . JJR IN CD NNS VBP VBN VBN IN NN IN NNP POS NNP NNP IN DT JJ JJ NN VBN IN DT NN , VBG IN JJS CD NNS . Local officials say tropical storm Delta struck the region Monday , hitting the islands of Tenerife and La Palma the hardest . JJ NNS VBP JJ NN NNP VBD DT NN NNP , VBG DT NNS IN NNP CC NNP NNP DT JJS . The storm forced ports and airports to close . DT NN VBD NNS CC NNS TO VB . The victims were a man who fell from his roof as he attempted to repair it and six migrants who drowned when their boat sank while it was trying to reach the islands from Africa . DT NNS VBD DT NN WP VBD IN PRP$ NN IN PRP VBD TO VB PRP CC CD NNS WP VBD WRB PRP$ NN VBD IN PRP VBD VBG TO VB DT NNS IN NNP . Weather officials say the storm is expected to weaken as it heads toward northwestern Africa . NNP NNS VBP DT NN VBZ VBN TO VB IN PRP VBZ IN JJ NNP . China 's state-run media say a 19-year-old Chinese soldier has been hospitalized with bird flu . NNP POS JJ NNS VBP DT JJ JJ NN VBZ VBN VBN IN NN NN . It is not immediately clear if the soldier has been infected with the often deadly H5N1 strain of bird flu . PRP VBZ RB RB JJ IN DT NN VBZ VBN VBN IN DT RB JJ NNP NN IN NN NN . Fifteen people have died in China since the outbreak in 2003 . CD NNS VBP VBN IN NNP IN DT NN IN CD . Worldwide , the virus has killed 186 people , mostly in Southeast Asia . RB , DT NN VBZ VBN CD NNS , RB IN NNP NNP . The virus is mainly passed on to humans through contact with infected poultry . DT NN VBZ RB VBN IN TO NNS IN NN IN JJ NN . But experts fear the virus could spark a pandemic if it mutates into a form easily transmissible upon human to human contact . CC NNS VBP DT NN MD VB DT JJ IN PRP VBZ IN DT NN RB JJ IN JJ TO JJ NN . President Barack Obama calls on Congress to provide new incentives to encourage Americans to make homes more energy-efficient . NNP NNP NNP VBZ IN NNP TO VB JJ NNS TO VB NNS TO VB NNS RBR JJ . U.S. President Barack Obama is calling on Congress to provide new incentives that would encourage Americans to make their homes more energy-efficient . NNP NNP NNP NNP VBZ VBG IN NNP TO VB JJ NNS WDT MD VB NNS TO VB PRP$ NNS RBR JJ . Speaking Tuesday at a large hardware store near Washington , Mr. Obama said the incentives would help consumers cut their energy costs enough to pay for the changes they make . VBG NNP IN DT JJ NN NN IN NNP , NNP NNP VBD DT NNS MD VB NNS VB PRP$ NN NNS RB TO VB IN DT NNS PRP VBP . He also said it would help the economy by boosting consumer spending , and would put a lot of people to work in the construction industry , which has high unemployment . PRP RB VBD PRP MD VB DT NN IN VBG NN NN , CC MD VB DT NN IN NNS TO VB IN DT NN NN , WDT VBZ JJ NN . The plan is part of a program the president previously announced to spur job creation . DT NN VBZ NN IN DT NN DT NN RB VBD TO VB NN NN . It also calls for tax cuts for business and more spending on roads , broadband networks and other infrastructure . PRP RB VBZ IN NN NNS IN NN CC JJR NN IN NNS , NN NNS CC JJ NN . Gulbuddin Hekmatyar In Afghanistan , 17 members of the Hezb-e-Islami militant group have laid down their arms and surrendered to authorities in the southeast of the country . NNP NNP IN NNP , CD NNS IN DT NNP JJ NN VBP VBN RP PRP$ NNS CC VBD TO NNS IN DT NN IN DT NN . The Hezb-e-Islami is led by former Afghan prime minister Gulbuddin Hekmatyar , who is on the United States ' most wanted list of terror suspects . DT NNP VBZ VBN IN JJ JJ JJ NN NNP NNP , WP VBZ IN DT NNP NNPS POS RBS JJ NN IN NN NNS . The governor of Khost province , Merajudeen Patan told reporters the 17 men are from different districts of Paktia and Khost provinces , and that they have returned from Pakistan to join the political process and help rebuild war-torn Afghanistan . DT NN IN NNP NN , NNP NNP VBD NNS DT CD NNS VBP IN JJ NNS IN NNP CC NNP NNS , CC IN PRP VBP VBN IN NNP TO VB DT JJ NN CC VB VB JJ NNP . Afghan President Hamid Karzai offered an amnesty to rank-and-file Taleban fighters last year . JJ NNP NNP NNP VBD DT NN TO JJ NNP NNS JJ NN . He said all but a hard core of 150 militants wanted for human rights violations would be able to rejoin the political process . PRP VBD DT CC DT JJ NN IN CD NNS VBN IN JJ NNS NNS MD VB JJ TO VB DT JJ NN . U.S. border officials have found a tunnel under the U.S.-Mexican border in southern California and say they suspect it was used to smuggle drugs or people . NNP NN NNS VBP VBN DT NN IN DT JJ NN IN JJ NNP CC VB PRP VBP PRP VBD VBN TO VB NNS CC NNS . A spokeswoman for the Immigration and Customs Enforcement Agency says the tunnel is near the border town of San Ysidro , south of San Diego . DT NN IN DT NNP CC NNP NNP NNP VBZ DT NN VBZ IN DT NN NN IN NNP NNP , RB IN NNP NNP . She says the tunnel is about 11 meters long and one meter square in diameter . PRP VBZ DT NN VBZ IN CD NNS RB CC CD NN NN IN NN . She says trash and other evidence was found in the tunnel indicating it had been used recently . PRP VBZ NN CC JJ NN VBD VBN IN DT NN VBG PRP VBD VBN VBN RB . Each year , thousands of people illegally enter the United States from Mexico . DT NN , NNS IN NNS RB VBP DT NNP NNPS IN NNP . U.S. lawmakers recently ordered construction of security fencing along the border to curb illegal crossing . NNP NNS RB VBD NN IN NN VBG IN DT NN TO VB JJ VBG . Millions of Americans are gathering with family and friends Thursday , to reflect on their blessings for the Thanksgiving holiday . NNS IN NNS VBP VBG IN NN CC NNS NNP , TO VB IN PRP$ NNS IN DT NNP NN . In towns and cities across the United States , Thanksgiving is marked by parades , charity events and traditional turkey dinners . IN NNS CC NNS IN DT NNP NNPS , NNP VBZ VBN IN NNS , NN NNS CC JJ NN NNS . The American Automobile Association estimates that some 37-million Americans will travel 80 kilometers or more from home this holiday , a slight increase over last year . DT NNP NNP NNP VBZ IN DT JJ NNS MD VB CD NNS CC JJR IN NN DT NN , DT JJ NN IN JJ NN . After several weeks of almost non-stop travel , President Bush is spending the holiday at his ranch in Crawford , Texas to spend a few quiet days with his family . IN JJ NNS IN RB JJ NN , NNP NNP VBZ VBG DT NN IN PRP$ NN IN NNP , NNP TO VB DT JJ JJ NNS IN PRP$ NN . Mr. Bush said Wednesday he is thinking of American military personnel serving abroad , as well as their families . NNP NNP VBD NNP PRP VBZ VBG IN JJ JJ NNS VBG RB , RB RB IN PRP$ NNS . He said Americans are thankful for their sacrifices . PRP VBD NNS VBP JJ IN PRP$ NNS . Thanksgiving is observed each year on the fourth Thursday in November . NNP VBZ VBN DT NN IN DT JJ NNP IN NNP . It dates back to 1621 , when European settlers and native American Indians ate together to celebrate a bountiful harvest . PRP VBZ RB TO CD , WRB JJ NNS CC JJ JJ NNS VBP RB TO VB DT JJ NN . Bolivia 's elections court has confirmed that President Evo Morales ' party won more than half the seats in the nation 's constituent assembly election last week . NNP POS NNS NN VBZ VBN IN NNP NNP NNP POS NN VBD JJR IN PDT DT NNS IN DT NN POS JJ NN NN JJ NN . The official count released Tuesday shows that Mr. Morales ' Movement Toward Socialism ( MAS ) party won 137 of the assembly 's 255 seats . DT JJ NN VBN NNP VBZ IN NNP NNP POS NNP NNP NNP LRB NNP RRB NN VBD CD IN DT NN POS CD NNS . That result leaves MAS short of the two-thirds needed to control the assembly , which will rewrite the constitution . DT NN VBZ NNP NN IN DT NNS VBN TO VB DT NN , WDT MD VB DT NN . Coming in second was the main opposition PODEMOS alliance with 60 seats . VBG IN NN VBD DT JJ NN NNP NN IN CD NNS . A referendum held at the same time on whether the national government will grant Bolivian states greater autonomy failed in a majority of states . DT NN VBN IN DT JJ NN IN IN DT JJ NN MD VB JJ NNS JJR NN VBD IN DT NN IN NNS . Chad 's parliamentary election has been postponed for two years as part of a deal between the government and the opposition parties that boycotted last year 's presidential election . NNP POS JJ NN VBZ VBN VBN IN CD NNS IN NN IN DT NN IN DT NN CC DT NN NNS WDT VBD JJ NN POS JJ NN . President Idriss Deby and a coalition of about 20 opposition parties called ' Coordination for the Defense of the Constitution ' signed the agreement Monday after six months of negotiations . NNP NNP NNP CC DT NN IN IN CD NN NNS VBD `` NN IN DT NN IN DT NNP `` VBD DT NN NNP IN CD NNS IN NNS . The new accord delays elections until December 2009 to allow for the creation of computerized and tamper-proof electoral lists , as well as biometric voting cards to prevent fraud . DT JJ NN NNS NNS IN NNP CD TO VB IN DT NN IN JJ CC JJ JJ NNS , RB RB IN JJ NN NNS TO VB NN . In the meantime , members of the opposition will have more of a role in the current government . IN DT NN , NNS IN DT NN MD VB JJR IN DT NN IN DT JJ NN . Some analysts say the agreement will do little to change Chad 's political climate , considering President Deby has managed to keep a firm hold on power . DT NNS VBP DT NN MD VB RB TO VB NNP POS JJ NN , VBG NNP NNP VBZ VBN TO VB DT JJ NN IN NN . Opposition parties boycotted the 2006 presidential balloting that led to Mr. Deby 's re-election . NN NNS VBD DT CD JJ NN WDT VBD TO NNP NNP POS NN . They accused the ruling party of electoral corruption . PRP VBD DT VBG NN IN JJ NN . The United Nations has condemned the killing of a U.N. security officer in southern Somalia . DT NNP NNP VBZ VBN DT NN IN DT NNP NN NN IN JJ NNP . Mohamuud Musse Gurage , a Somali national , was shot by two unidentified gunmen Monday night in the port town of Kismayo in Somalia 's Lower Juba region . NNP NNP NNP , DT JJ NN , VBD VBN IN CD JJ NNS NNP NN IN DT JJ NN IN NNP IN NNP POS NNP NNP NN . The United Nations says it has evacuated its staffers from the area . DT NNP NNP VBZ PRP VBZ VBN PRP$ NNS IN DT NN . Foreigners and Somali nationals with international ties have been targeted by assassins in Somalia , which has been ruled by warring factions since the collapse of the government in 1991 . NNS CC JJ NNS IN JJ NNS VBP VBN VBN IN NNS IN NNP , WDT VBZ VBN VBN IN VBG NNS IN DT NN IN DT NN IN CD . A fragile transitional administration is now in place following peace talks in Kenya but security concerns continue . DT JJ JJ NN VBZ RB IN NN VBG NN NNS IN NNP CC NN NNS VBP . In July , prominent Somali peace activist Abdulkadir Yahya Ali was gunned down in the capital , Mogadishu . IN NNP , JJ JJ NN NN NNP NNP NNP VBD VBN RP IN DT NN , NNP . And a journalist with the British Broadcasting Corporation was murdered outside her hotel in the capital in February . CC DT NN IN DT NNP NNP NNP VBD VBN IN PRP$ NN IN DT NN IN NNP . The U.S. military says it expects an increase in insurgent attacks in Iraq as its newly elected government forms and final results from last month 's general elections are released . DT NNP NN VBZ PRP VBZ DT NN IN JJ NNS IN NNP IN PRP$ RB VBN NN NNS CC JJ NNS IN JJ NN POS JJ NNS VBP VBN . Brigadier-General Don Alston says insurgents will use Iraq 's transition to a new government as an opportunity to try to derail the democratic process . NNP NNP NNP VBZ NNS MD VB NNP POS NN TO DT JJ NN IN DT NN TO VB TO VB DT JJ NN . He spoke Thursday as Iraq was in a relative period of calm during the Muslim holiday of Eid Al-Adha . PRP VBD NNP IN NNP VBD IN DT JJ NN IN NN IN DT NNP NN IN NNP NNP . Meanwhile , lawyers for former Iraqi deputy prime minister Tareq Aziz say he is in poor health and may have just weeks to live . RB , NNS IN JJ JJ NN JJ NN NNP NNP VBP PRP VBZ IN JJ NN CC MD VB RB NNS TO VB . They say Aziz , one of the most recognizable figures of Saddam Hussein 's former regime , is suffering from numerous ailments . PRP VBP NNP , CD IN DT RBS JJ NNS IN NNP NNP POS JJ NN , VBZ VBG IN JJ NNS . But U.S. officials say Aziz has suffered no serious deterioration while he has been in U.S. custody . CC NNP NNS VBP NNP VBZ VBN DT JJ NN IN PRP VBZ VBN IN NNP NN . A U.S. military helicopter has crashed northwest of Baghdad . DT NNP JJ NN VBZ VBN NN IN NNP . There is no immediate word on casualties . EX VBZ DT JJ NN IN NNS . The U.S. military confirmed that an Apache attack helicopter with two pilots on board went down around 11 a.m. local time in a field , and that an investigation is under way to determine the cause of the crash . DT NNP NN VBD IN DT NNP NN NN IN CD NNS IN NN VBD RB IN CD RB JJ NN IN DT NN , CC IN DT NN VBZ IN NN TO VB DT NN IN DT NN . In Baghdad , authorities say two Iraqi civilians were killed in a roadside bomb blast near a police station in a Sunni district of the city . IN NNP , NNS VBP CD JJ NNS VBD VBN IN DT NN NN NN IN DT NN NN IN DT NNP NN IN DT NN . Elsewhere in the capital , at least two people , including a child , were killed in a drive-by shooting , and the U.S. military says a soldier was killed by small-arms fire while investigating a burning vehicle . RB IN DT NN , IN JJS CD NNS , VBG DT NN , VBD VBN IN DT JJ NN , CC DT NNP NN VBZ DT NN VBD VBN IN NNS NN IN VBG DT NN NN . Sunday , at least 30 people , including many policemen , were killed in a series of car bombings in the northern city of Mosul . NNP , IN JJS CD NNS , VBG JJ NNS , VBD VBN IN DT NN IN NN NNS IN DT JJ NN IN NNP . German Chancellor Angela Merkel is headed to Washington to meet with President Bush Wednesday . JJ NNP NNP NNP VBZ VBN TO NNP TO VB IN NNP NNP NNP . The two leaders are expected to focus on the international response to Iran 's controversial nuclear program . DT CD NNS VBP VBN TO VB IN DT JJ NN TO NNP POS JJ JJ NN . Germany has held months of negotiations with Tehran , alongside Britain and France . NNP VBZ VBN NNS IN NNS IN NNP , IN NNP CC NNP . This is Ms. Merkel 's second trip to the United States since she took office last November . DT VBZ NNP NNP POS JJ NN TO DT NNP NNPS IN PRP VBD NN JJ NNP . Ms. Merkel will travel to New York for several hours on Thursday for economic meetings , and will return to Washington later that day to speak at the American Jewish Committee , which works to safeguard Jews and Jewish life worldwide . NNP NNP MD VB TO NNP NNP IN JJ NNS IN NNP IN JJ NNS , CC MD VB TO NNP RB DT NN TO VB IN DT NNP NNP NNP , WDT VBZ TO VB NNPS CC JJ NN NN . Some officials in Washington and Berlin view the visits as a chance for the two allies to re-build ties that were strong during the Cold War , but frayed over differences between President Bush and former Chancellor Gerhard Schroeder over the Iraq war . DT NNS IN NNP CC NNP VBP DT NNS IN DT NN IN DT CD NNS TO JJ NNS WDT VBD JJ IN DT NNP NNP , CC VBD IN NNS IN NNP NNP CC JJ NNP NNP NNP IN DT NNP NN . Russian officials say they are destroying thousands of domestic birds in an effort to contain the spread of a bird flu outbreak that began in Siberia and has spread west to the Ural mountains region . JJ NNS VBP PRP VBP VBG NNS IN JJ NNS IN DT NN TO VB DT NN IN DT NN NN NN WDT VBD IN NNP CC VBZ VBN RB TO DT NNP NNS NN . Health officials and the Emergency Situations Ministry say the outbreak of the highly potent H5N1 strain of virus could pose a threat to humans . NNP NNS CC DT NNP NNP NNP VBP DT NN IN DT RB JJ NNP NN IN NN MD VB DT NN TO NNS . They also say it could spread to the Mediterranean area and the Middle East as birds migrate westward to avoid the harsh Russian winter . PRP RB VBP PRP MD VB TO DT NNP NN CC DT NNP NNP IN NNS VBP RB TO VB DT JJ JJ NN . Officials say the illness , which can be fatal , has not yet spread to humans in Russia . NNS VBP DT NN , WDT MD VB JJ , VBZ RB RB VBN TO NNS IN NNP . At least 60 people in southeast Asia have died from bird flu since 2003 . IN JJS CD NNS IN JJ NNP VBP VBN IN NN NN IN CD . On Monday , authorities said the virus had been discovered in the Chelyabinsk region , but it is not clear whether it was the H5N1 strain . IN NNP , NNS VBD DT NN VBD VBN VBN IN DT NNP NN , CC PRP VBZ RB JJ IN PRP VBD DT NNP NN . Millions of Muslims across South Asia have celebrated the annual Eid al-Fitr Islamic holiday , marking the end of the month-long Ramadan . NNS IN NNPS IN NNP NNP VBP VBN DT JJ NNP NNP NNP NN , VBG DT NN IN DT JJ NNP . And millions of them will celebrate it on Wednesday because of different sightings of the new moon at different places . CC NNS IN PRP MD VB PRP IN NNP IN IN JJ NNS IN DT JJ NN IN JJ NNS . Afghan President Hamid Karzai called on the world 's Muslims to help his country rid itself of insurgents . JJ NNP NNP NNP VBD IN DT NN POS NNS TO VB PRP$ NN VB PRP IN NNS . In New Delhi , government offices closed , and thousands packed into the main 17th-century mosque known as ' Jama Masjid ' Tuesday morning to pray . IN NNP NNP , NN NNS VBD , CC NNS VBD IN DT JJ JJ NN VBN IN `` NNP NNP `` NNP NN TO VB . Eid was also celebrated Tuesday in the eastern Indian states of Bihar and West Bengal , and southern Karnataka and Kerala states . NNP VBD RB VBN NNP IN DT JJ JJ NNS IN NNP CC NNP NNP , CC JJ NNP CC NNP NNS . But in other parts of the country it will be observed on Wednesday . CC IN JJ NNS IN DT NN PRP MD VB VBN IN NNP . In Bangladesh , Eid will also fall on Wednesday . IN NNP , NNP MD RB VB IN NNP . In Pakistan , the official day of Eid will be Wednesday , though in some parts people celebrated it on Tuesday . IN NNP , DT JJ NN IN NNP MD VB NNP , IN IN DT NNS NNS VBD PRP IN NNP . The European Parliament has started its own investigation into reports of CIA secret prisons in Eastern Europe . DT NNP NNP VBZ VBN PRP$ JJ NN IN NNS IN NNP JJ NNS IN NNP NNP . The lawmakers agreed Thursday in Brussels to set up a 46-member committee to look into the matter . DT NNS VBD NNP IN NNP TO VB RP DT JJ NN TO VB IN DT NN . Several EU countries have set up their own probes . JJ NNP NNS VBP VBN RP PRP$ JJ NNS . The committee will recommend what political action should be taken against any country deemed to be involved . DT NN MD VB WP JJ NN MD VB VBN IN DT NN VBN TO VB VBN . Reports saying the CIA has secret detention centers in Europe first appeared in November in the Washington Post newspaper . NNS VBG DT NNP VBZ JJ NN NNS IN NNP RB VBD IN NNP IN DT NNP NNP NN . Human rights groups subsequently singled out Poland and Romania as possible sites for such facilities . JJ NNS NNS RB VBD RP NNP CC NNP IN JJ NNS IN JJ NNS . Both countries denied any involvement . DT NNS VBD DT NN . Meanwhile , Bulgaria 's Foreign Minister Ivaylo Kalfin has denied there are secret CIA prisons in his country . RB , NNP POS NNP NNP NNP NNP VBZ VBN EX VBP JJ NNP NNS IN PRP$ NN . His comment comes after a Swiss newspaper said local security officials had intercepted an Egyptian government document mentioning CIA prisons in several eastern European countries including Bulgaria and Ukraine . PRP$ NN VBZ IN DT JJ NN VBD JJ NN NNS VBD VBN DT JJ NN NN VBG NNP NNS IN JJ JJ JJ NNS VBG NNP CC NNP . Seven & I Holdings , the Japanese company that owns 7-Eleven convenience stores in the U.S. , Japan and elsewhere , has reached a deal to take over department stores Seibu and Sogo . NNP CC NNP NNPS , DT JJ NN WDT VBZ NNP NN NNS IN DT NNP , NNP CC RB , VBZ VBN DT NN TO VB RP NN NNS NNP CC NNP . The $ 1.1 billion acquisition will make Seven & I the largest retailer in Japan by sales . DT $ CD CD NN MD VB NNP CC NNP DT JJS NN IN NNP IN NNS . Under the deal announced Monday , Seven & I will buy a 65 percent stake in Millennium Retailing , which runs the Seibu and Sogo chains . IN DT NN VBN NNP , NNP CC NNP MD VB DT CD NN NN IN NNP NNP , WDT VBZ DT NNP CC NNP NNS . Millennium is currently controlled by an affiliate of Japanese brokerage Nomura Securities . NNP VBZ RB VBN IN DT NN IN JJ NN NNP NNPS . Seven & I plans to buy up the remaining shares of Millennium by March of next year . NNP CC NNP VBZ TO VB RP DT VBG NNS IN NN IN NNP IN JJ NN . The takeover of Seibu and Sogo will help 7-Eleven 's parent company expand into the luxury retail market , at a time when Japanese consumer spending is surging . DT NN IN NNP CC NNP MD VB NNP POS NN NN VB IN DT NN JJ NN , IN DT NN WRB JJ NN NN VBZ VBG . Night time curfews have gone into effect in more than 30 French cities and towns , and the country 's worst unrest in decades is showing signs of abating . NNP NN NNS VBP VBN IN NN IN JJR IN CD JJ NNS CC NNS , CC DT NN POS JJS NN IN NNS VBZ VBG NNS IN VBG . Police say 482 vehicles were burned across the country overnight , and 203 people were arrested . NNS VBP CD NNS VBD VBN IN DT NN JJ , CC CD NNS VBD VBN . But there were no reports of injuries , and police say the number of violent incidents has dropped since the curfews took effect . CC EX VBD DT NNS IN NNS , CC NNS VBP DT NN IN JJ NNS VBZ VBN IN DT NNS VBD NN . Police say a school in the eastern town of Belfort was destroyed overnight and vandalism at an electricity station caused a power blackout in Lyon . NNS VBP DT NN IN DT JJ NN IN NNP VBD VBN JJ CC NN IN DT NN NN VBD DT NN NN IN NNP . The area around Paris was reported quiet , despite the absence of curfews there . DT NN IN NNP VBD VBN JJ , IN DT NN IN NNS RB . Muslim youths of North African descent have mainly been responsible for the two weeks of riots . NNP NNS IN JJ JJ NN VBP RB VBN JJ IN DT CD NNS IN NNS . The government has promised to address what many French say are the causes of the violence - unemployment , poor schools and housing , and racism . DT NN VBZ VBN TO VB WP JJ NNS VBP VBP DT NNS IN DT NN IN NN , JJ NNS CC NN , CC NN . The Committee to Protect Journalists says it is alarmed by Niger 's attempt to censor coverage of hunger and malnutrition in parts of the West African nation . DT NNP TO VB NNP VBZ PRP VBZ VBN IN NNP POS NN TO VB NN IN NN CC NN IN NNS IN DT JJ JJ NN . In a statement from New York , the media rights group was reacting to the Niger government 's move revoking permission for a local BBC team to report on hunger issues . IN DT NN IN NNP NNP , DT NNS NNS NN VBD VBG TO DT NNP NN POS NN VBG NN IN DT JJ NNP NN TO VB IN NN NNS . The CPJ said the government was putting its desire to protect its image ahead of the desperate needs of its own citizens . DT NNP VBD DT NN VBD VBG PRP$ NN TO VB PRP$ NN RB IN DT JJ NNS IN PRP$ JJ NNS . It called on the government to allow full coverage of the humanitarian needs of the local population . PRP VBD IN DT NN TO VB JJ NN IN DT JJ NNS IN DT JJ NN . On Wednesday , a Niger government spokesman , Ben Omar , told VOA Hausa service that journalists were giving incorrect impressions about the country 's food situation . IN NNP , DT NNP NN NN , NNP NNP , VBD NNP NNP NN IN NNS VBD VBG JJ NNS IN DT NN POS NN NN . Aid agencies say that some three million people suffered from severe food shortages in Niger in 2005 . JJ NNS VBP IN DT CD CD NNS VBD IN JJ NN NNS IN NNP IN CD . The World Health Organization is urging greater cooperation among nations to tackle the growing number of cross-border threats to public health . DT NNP NNP NNP VBZ VBG JJR NN IN NNS TO VB DT VBG NN IN JJ NNS TO JJ NN . To mark World Health Day Saturday , the WHO issued a report that warns of emerging international threats to health security . TO VB NNP NNP NNP NNP , DT NNP VBD DT NN WDT VBZ IN VBG JJ NNS TO NN NN . The report says infectious diseases such as HIV / AIDs , Ebola , the SARS ( Severe Acute Respiratory Syndrome ) outbreak in Asia , and human cases of the H5N1 bird flu have emerged in unprecedented numbers . DT NN VBZ JJ NNS JJ IN NNP CC NNP , NNP , DT NNS LRB NNP NNP NNP NNP RRB NN IN NNP , CC JJ NNS IN DT NNP NN NN VBP VBN IN JJ NNS . The WHO says natural disasters , environmental change , bioterrorism and chemical spills also pose major challenges . DT NNP VBZ JJ NNS , JJ NN , NN CC NN NNS RB VBP JJ NNS . WHO Director-General Margaret Chan said countries have to share responsibility and take pre-emptive action against such threats . NNP NN NNP NNP VBD NNS VBP TO VB NN CC VB JJ NN IN JJ NNS . As part of that effort , the Geneva-based U.N. body has revised its international regulations to help countries identify and respond earlier to health challenges . IN NN IN DT NN , DT JJ NNP NN VBZ VBN PRP$ JJ NNS TO VB NNS VB CC VB JJR TO NN NNS . Indonesian health officials say a 16-year-old boy who had tested positive for bird flu has died . JJ NN NNS VBP DT JJ NN WP VBD VBN JJ IN NN NN VBZ VBN . If confirmed by the World Health Organization , the death would be Indonesia 's 43rd from the deadly H5N1 bird flu virus . IN VBN IN DT NNP NNP NNP , DT NN MD VB NNP POS CD IN DT JJ NNP NN NN NN . Health Ministry officials say the patient had been in contact with sick chickens in the West Java district of Bekasi . NNP NNP NNS VBP DT NN VBD VBN IN NN IN JJ NNS IN DT NNP NNP NN IN NNP . Officials say samples from the boy are being sent to a laboratory in the United States for secondary testing . NNS VBP NNS IN DT NN VBP VBG VBN TO DT NN IN DT NNP NNPS IN JJ NN . Health experts are closely watching Indonesia . NNP NNS VBP RB VBG NNP . Seven members of a single family died in a north Sumatra village last May . CD NNS IN DT JJ NN VBD IN DT JJ NNP NN JJ NNP . The deaths were the largest cluster of its kind since the global outbreak began in 2003 , and raised concerns about human-to-human transmission of the virus . DT NNS VBD DT JJS NN IN PRP$ NN IN DT JJ NN VBD IN CD , CC VBD NNS IN JJ NN IN DT NN . The international press freedom watchdog group , Reporters Without Borders , is condemning what it calls a ' climate of violence ' against the media in Afghanistan . DT JJ NN NN NN NN , NNS IN NNS , VBZ VBG WP PRP VBZ DT `` NN IN NN `` IN DT NNS IN NNP . In an open letter to President Hamid Karzai Thursday , the group expressed concern about recent violence and disciplinary actions against media outlets in the country . IN DT JJ NN TO NNP NNP NNP NNP , DT NN VBD NN IN JJ NN CC JJ NNS IN NNS NNS IN DT NN . The organization cited an incident Wednesday in which media representatives were barred from parliamentary proceedings after a legislator complained of video that showed her asleep during debates aired on national television . DT NN VBD DT NN NNP IN WDT NNS NNS VBD VBN IN JJ NNS IN DT NN VBD IN NN WDT VBD PRP$ JJ IN NNS VBN IN JJ NN . The letter also addresses alleged acts of violence against reporters and the government 's detention of a radio journalist for more than seven months without evidence . DT NN RB VBZ JJ NNS IN NN IN NNS CC DT NN POS NN IN DT NN NN IN JJR IN CD NNS IN NN . A spokesman for the Afghan embassy in Washington , Ashraf Haidari , told VOA Thursday that the country 's constitution guarantees freedom of expression . DT NN IN DT JJ NN IN NNP , NNP NNP , VBD NNP NNP IN DT NN POS NN VBZ NN IN NN . He said the growth of private radio stations and hundreds of newspapers illustrates the Afghan government is protecting the media . PRP VBD DT NN IN JJ NN NNS CC NNS IN NNS VBZ DT JJ NN VBZ VBG DT NNS . Spain 's National Court has sentenced a Spanish citizen , released last year from the U.S. detention facility at Guantanamo Bay , Cuba , to six years in prison for membership in al-Qaida . NNP POS NNP NNP VBZ VBN DT JJ NN , VBN JJ NN IN DT NNP NN NN IN NNP NNP , NNP , IN CD NNS IN NN IN NN IN NNP . The court announced the sentence in the case of Hamed Aberrahman Ahmed Wednesday . DT NN VBD DT NN IN DT NN IN NNP NNP NNP NNP . Prosecutors say Mr. Ahmed had gone to Afghanistan to train with Osama bin Laden 's followers . NNS VBP NNP NNP VBD VBN TO NNP TO VB IN NNP NNP NNP POS NNS . He has denied al-Qaida membership . PRP VBZ VBN NNP NN . Mr. Ahmed was arrested in Pakistan in late 2001 . NNP NNP VBD VBN IN NNP IN JJ CD . Pakistani authorities later handed him over to U.S. forces , who sent him to the military detention facility at Guantanamo Bay . JJ NNS RB VBD PRP IN TO NNP NNS , WP VBD PRP TO DT JJ NN NN IN NNP NNP . U.S authorities turned him over to Spain in February of last year . NNP NNS VBD PRP RP TO NNP IN NNP IN JJ NN . United Nations Secretary-General Kofi Annan says he expects the Bosnian Serb government to follow up its apology for the 1995 Srebrenica massacre with a drive to arrest and prosecute those responsible for the killings . NNP NNP NNP NNP NNP VBZ PRP VBZ DT JJ JJ NN TO VB RP PRP$ NN IN DT CD NNP NN IN DT NN TO VB CC VB DT JJ IN DT NNS . Mr. Annan 's spokesman , Fred Eckhard , says the UN chief welcomes last week 's Bosnian Serb apology and condolences to the relatives of Srebrenica massacre victims . NNP NNP POS NN , NNP NNP , VBZ DT NNP NN VBZ JJ NN POS JJ JJ NN CC NNS TO DT NNS IN NNP NN NNS . The Bosnian Serb government has acknowledged that Bosnian Serb forces killed almost 8,000 Muslim men and boys in July 1995 , after overrunning the Muslim enclave of Srebrenica . DT JJ JJ NN VBZ VBN IN JJ JJ NNS VBD RB CD NNP NNS CC NNS IN NNP CD , IN VBG DT NNP NN IN NNP . Following the apology , Bosnian Serb President Dragan Cavic urged indicted war crimes suspects to surrender to authorities , saying it is crucial for the future of the Bosnia Serb Republic . VBG DT NN , JJ JJ NNP NNP NNP VBD VBN NN NNS VBZ TO VB TO NNS , VBG PRP VBZ JJ IN DT NN IN DT NNP JJ NNP . In connection with the massacre , the U.N. war crimes court in The Hague has indicted several Bosnian Serb officials and commanders , some of whom remain at large . IN NN IN DT NN , DT NNP NN NNS NN IN DT NNP VBZ VBN JJ JJ JJ NNS CC NNS , DT IN WP VBP IN JJ . The trial of Saddam Hussein and seven co-defendants has resumed in Baghdad after a five-day break . DT NN IN NNP NNP CC CD NNS VBZ VBN IN NNP IN DT JJ NN . The prosecution is presenting experts Monday , in an effort to confirm signatures of the former Iraqi leader and his co-defendants on documents related to the crackdown on Shi'ites in the 1980s . DT NN VBZ VBG NNS NNP , IN DT NN TO VB NNS IN DT JJ JJ NN CC PRP$ NNS IN NNS VBN TO DT NN IN NNS IN DT NNS . The chief judge , Raouf Abdel Rahman , ruled last Wednesday that Saddam 's handwriting was authentic on documents related to the incident . DT NN NN , NNP NNP NNP , VBD JJ NNP IN NNP POS NN VBD JJ IN NNS VBN TO DT NN . The ousted Iraqi dictator and the seven co-defendants are on trial for the 1982 killing of more than 140 Iraqi Shi'ites in the village of Dujail . DT JJ JJ NN CC DT CD NNS VBP IN NN IN DT CD NN IN JJR IN CD JJ NNS IN DT NN IN NNP . The United Nations human rights envoy for Burma is calling on that country 's government to substantially improve human rights before the 2010 elections . DT NNP NNPS JJ NNS NN IN NNP VBZ VBG IN DT NN POS NN TO RB VB JJ NNS IN DT CD NNS . In a report Wednesday , envoy Tomas Ojea Quintana said that if the elections take place in an atmosphere in which human rights are fully respected , the vote will be seen as credible . IN DT NN NNP , NN NNP NNP NNP VBD IN IN DT NNS VBP NN IN DT NN IN WDT JJ NNS VBP RB VBN , DT NN MD VB VBN IN JJ . He outlined a series of measures that Burma should take , including amending laws that limit fundamental rights , such as freedom of expression , opinion and peaceful assembly . PRP VBD DT NN IN NNS WDT NNP MD VB , VBG VBG NNS WDT VBP JJ NNS , JJ IN NN IN NN , NN CC JJ NN . The U.N. envoy said political prisoners should be released . DT NNP NN VBD JJ NNS MD VB VBN . He said such a move would inspire political participation in the upcoming elections . PRP VBD PDT DT NN MD VB JJ NN IN DT JJ NNS . The envoy also suggested a number of changes for Burma 's judiciary , including guaranteeing due process and setting up mechanisms to investigate human rights abuses . DT NN RB VBD DT NN IN NNS IN NNP POS NN , VBG NN JJ NN CC VBG RP NNS TO VB JJ NNS NNS . Argentine media is reporting that a Cuban dissident has sought refuge at the Argentine embassy in Havana . JJ NNS VBZ VBG IN DT JJ NN VBZ VBN NN IN DT JJ NN IN NNP . The Argentine newspaper La Nacion reported Thursday renowned brain surgeon Hilda Molina and her 84-year-old mother had entered the embassy to request political asylum . DT JJ NN NNP NNP VBD NNP VBD NN NN NNP NNP CC PRP$ JJ NN VBD VBN DT NN TO VB JJ NN . Dr. Molina has been petitioning the Cuban government to allow her to travel to Argentina to see her son , who lives in exile there . NNP NNP VBZ VBN VBG DT JJ NN TO VB PRP TO VB TO NNP TO VB PRP$ NN , WP VBZ IN NN RB . Earlier this month , Argentine President Nestor Kirchner wrote to his Cuban counterpart , Fidel Castro , asking him to allow Dr. Molina to visit Argentina . RBR DT NN , JJ NNP NNP NNP VBD TO PRP$ JJ NN , NNP NNP , VBG PRP TO VB NNP NNP TO VB NNP . Mr. Castro responded that Dr. Molina 's family should visit her in Cuba . NNP NNP VBD IN NNP NNP POS NN MD VB PRP IN NNP . Ukraine has denied reports there are secret prisons run by the U.S. Central Intelligence Agency on Ukrainian territory . NNP VBZ VBN NNS EX VBP JJ NNS VBN IN DT NNP NNP NNP NNP IN JJ NN . Foreign Ministry spokesman , Vasilily Filipchuk Tuesday called a Swiss media report saying Ukraine allowed the covert U.S. interrogation centers on its soil ' absurd . ' NNP NNP NN , NNP NNP NNP VBD DT JJ NNS NN VBG NNP VBD DT JJ NNP NN NNS IN PRP$ NN `` JJ . `` Russia 's Novosti news agency says Ukraine 's penitentiary and security service officials also dismissed the Swiss report . NNP POS NNP NN NN VBZ NNP POS JJ CC NN NN NNS RB VBD DT JJ NN . The Swiss newspaper Sonntags-Blick says Swiss security officials intercepted an Egyptian government document mentioning secret CIA prisons in several eastern European nations , including Ukraine , Romania , Macedonia , Bulgaria as well as in Serbia 's province of Kosovo . DT JJ NN NNP VBZ JJ NN NNS VBD DT JJ NN NN VBG JJ NNP NNS IN JJ JJ JJ NNS , VBG NNP , NNP , NNP , NNP RB RB IN IN NNP POS NN IN NNP . Iran 's foreign minister has postponed a visit to Saudi Arabia , which was to be part of a tour of Gulf States aimed at gathering support for Iran 's controversial nuclear program . NNP POS JJ NN VBZ VBN DT NN TO NNP NNP , WDT VBD TO VB NN IN DT NN IN NNP NNP VBN IN VBG NN IN NNP POS JJ JJ NN . Manouchehr Mottaki was to hold talks with his Saudi counterpart Prince Saud al-Faisal in Jeddah Wednesday . NNP NNP VBD TO VB NNS IN PRP$ JJ NN NNP NNP NNP IN NNP NNP . Instead he traveled to the United Arab Emirates , following talks in Oman . IN PRP VBD TO DT NNP NNP NNPS , VBG NNS IN NNP . Iranian and Saudi officials said the meeting was postponed because of differences in the men 's schedules , and the two would meet in the future . JJ CC JJ NNS VBD DT NN VBD VBN IN IN NNS IN DT NNS POS NNS , CC DT CD MD VB IN DT NN . They also dismissed reports of tension between the two nations sparked by the Iraq war . PRP RB VBD NNS IN NN IN DT CD NNS VBN IN DT NNP NN . Prince Saud has expressed concerns over Iran 's alleged interference in Iraq , including the entry of people , money and weapons to Iraq . NNP NNP VBZ VBN NNS IN NNP POS JJ NN IN NNP , VBG DT NN IN NNS , NN CC NNS TO NNP . Iran has denied the allegations . NNP VBZ VBN DT NNS . News reports quote American officials as saying police in Zambia have detained a man whom U.S. authorities suspect of involvement in the deadly July 7 bombings in London . NN NNS VBP JJ NNS IN VBG NNS IN NNP VBP VBN DT NN WP NNP NNS VBP IN NN IN DT JJ NNP CD NNS IN NNP . The reports Thursday by CNN Television and The Los Angeles Times newspaper identify the man as Haroon Rashid Aswat , a British citizen of South Asian descent in his early 30s . DT NNS NNP IN NNP NNP CC DT NNP NNP NNP NN VB DT NN IN NNP NNP NNP , DT JJ NN IN NNP NNP NN IN PRP$ JJ NNS . The reports say U.S. and Zambian officials are holding talks to determine where to prosecute Mr. Aswat . DT NNS VBP NNP CC JJ NNS VBP VBG NNS TO VB WRB TO VB NNP NNP . Reports say Mr. Aswat came to the attention of U.S. authorities in connection with alleged attempts to set up an al-Qaida training camp in the western United States several years ago . NNS VBP NNP NNP VBD TO DT NN IN NNP NNS IN NN IN JJ NNS TO VB RP DT NNP NN NN IN DT JJ NNP NNPS JJ NNS RB . Separately , British police are still conducting a nationwide manhunt for the three remaining fugitive suspects in last week 's failed bomb attacks on the London transit system . RB , JJ NNS VBP RB VBG DT JJ NN IN DT CD VBG JJ NNS IN JJ NN POS VBN NN NNS IN DT NNP NN NN . Police arrested a fourth suspect Wednesday . NNS VBN DT JJ NN NNP . African Union observers say Sudan has failed to meet a deadline to abide by a cease-fire and stop attacking rebels in the western Darfur region . NNP NNP NNS VBP NNP VBZ VBN TO VB DT NN TO VB IN DT NN CC VB VBG NNS IN DT JJ NNP NN . AU officials reported fresh fighting Sunday , after mediators in Nigeria threatened to take Sudan and the rebels to the U.N. Security Council . NNP NNS VBD JJ NN NNP , IN NNS IN NNP VBD TO VB NNP CC DT NNS TO DT NNP NNP NNP . Unknown gunmen also fired Sunday at an African Union helicopter in Darfur . JJ NNS RB VBD NNP IN DT NNP NNP NN IN NNP . There are no reports of casualties . EX VBP DT NNS IN NNS . Sudanese Foreign Minister Mustafa Osman had earlier announced an immediate halt to all military operations in Darfur and asked the United Nations to make the same demand of the rebels . JJ NNP NNP NNP NNP VBD RB VBN DT JJ NN TO DT JJ NNS IN NNP CC VBN DT NNP NNPS TO VB DT JJ NN IN DT NNS . But a rebel spokesman told the Reuters News Agency that Sudan has failed to keep earlier promises to stop attacks . CC DT NN NN VBD DT NNP NNP NNP IN NNP VBZ VBN TO VB JJR NNS TO VB NNS . Fighting between largely Arab pro-government militias and non-Arab rebels in Darfur has left tens of thousands dead , including many civilians . VBG IN RB JJ JJ NNS CC JJ NNS IN NNP VBZ VBN NNS IN NNS JJ , VBG JJ NNS . A top U.N. official says indirect talks between the Ugandan government and northern rebels have provided the best chance for peace in 18 years of conflict . DT JJ NNP NN VBZ JJ NNS IN DT JJ NN CC JJ NNS VBP VBN DT JJS NN IN NN IN CD NNS IN NN . U.N. Emergency Relief Coordinator Jan Egeland praised the Ugandan government Wednesday for its renewed efforts to seek dialogue . NNP NNP NNP NNP NNP NNP VBD DT JJ NN NNP IN PRP$ JJ NNS TO VB NN . Mr. Egeland says the conflict has forced up to 90 percent of the population in some areas of northern Uganda from their homes , adding that hundreds of thousands of lives are at stake . NNP NNP VBZ DT NN VBZ VBN RP TO CD NN IN DT NN IN DT NNS IN JJ NNP IN PRP$ NNS , VBG IN NNS IN NNS IN NNS VBP IN NN . Rebels from the Lord 's Resistance Army are notorious for attacking civilians and kidnapping children for use as soldiers or sex slaves . NNS IN DT NNP POS NN NNP VBP JJ IN VBG NNS CC VBG NNS IN NN IN NNS CC NN NNS . Over the last few weeks , the rebels and the Ugandan government declared a temporary cease-fire and held talks through mediators . IN DT JJ JJ NNS , DT NNS CC DT JJ NN VBD DT JJ NN CC VBD NNS IN NNS . The government says it is extending the truce for another week in the hopes of starting formal peace talks by then . DT NN VBZ PRP VBZ VBG DT NN IN DT NN IN DT NNS IN VBG JJ NN NNS IN RB . South Africa has offered a higher wage increase to public service workers in an effort to avert a strike by some 9,00,000 members of the civil service . NNP NNP VBZ VBN DT JJR NN NN TO JJ NN NNS IN DT NN TO VB DT NN IN DT CD NNS IN DT JJ NN . The public services ministry announced Thursday it has offered to raise salaries by 7 percent . DT JJ NNS NN VBD NNP PRP VBZ VBN TO VB NNS IN CD NN . The previous offer was 6.5 percent , but unions are demanding an 8.6 percent raise . DT JJ NN VBD CD NN , CC NNS VBP VBG DT CD NN NN . The ministry said its offer of about $ 86 ( 630 rand ) for a housing allowance had not changed . DT NN VBD PRP$ NN IN IN $ CD LRB CD NNS RRB IN DT NN NN VBD RB VBN . Unions have asked for nearly $ 140 ( 1,000 rand ) . NNS VBP VBN IN RB $ CD LRB CD NN RRB . One union , the 2,10,000 member Public Servants Association , had threatened to begin its strike Thursday . CD NN , DT CD NN NNP NNP NNP , VBD VBN TO VB PRP$ NN NNP . The other workers have threatened to walk off their jobs next week . DT JJ NNS VBP VBN TO VB RP PRP$ NNS JJ NN . Public Service and Administration Minister Richard Baloyi has called for any strikes to be delayed until he is able to meet with union leaders Thursday . NNP NNP CC NNP NNP NNP NNP VBZ VBN IN DT NNS TO VB VBN IN PRP VBZ JJ TO VB IN NN NNS NNP . Peru 's President has urged the use of the military to destroy jungle factories that produce cocaine . NNP POS NN VBZ VBN DT NN IN DT JJ TO VB NN NNS WDT VBP NN . Alan Garcia said Monday in Lima that Peru should use its military attack aircraft to bomb and machine-gun coca processing facilities and the airports used to transport drugs . NNP NNP VBD NNP IN NNP IN NNP MD VB PRP$ JJ NN NN TO VB CC VB NN VBG NNS CC DT NNS VBN TO VB NNS . Mr. Garcia announced Sunday that Peru would resume the destruction of coca crops in Peru 's Amazon region . NNP NNP VBD NNP IN NNP MD VB DT NN IN NN NNS IN NNP POS NNP NN . Officials had previously agreed to allow farmers to produce coca , a key raw material in the production of cocaine . NNS VBD RB VBN TO VB NNS TO VB NN , DT JJ JJ NN IN DT NN IN NN . A United Nations report released last year said Peru is the world 's second largest cocaine producer behind Colombia . DT NNP NNPS NN VBN JJ NN VBD NNP VBZ DT NN POS JJ JJS NN NN IN NNP . According to the report , Peru produces some 30 percent of the world 's cocaine . VBG TO DT NN , NNP VBZ DT CD NN IN DT NN POS NN . African Union leaders have convened their summit in Khartoum Monday with host Sudan 's bid to head the continental bloc casting a cloud over the meeting . NNP NNP NNS VBP VBN PRP$ NN IN NNP NNP IN NN NNP POS NN TO VB DT JJ NN VBG DT NN IN DT NN . Five African leaders have appealed to Sudanese President Omar al-Bashir to withdraw his bid to hold the AU chairmanship because of ongoing violence in Sudan 's western Darfur region . CD JJ NNS VBP VBN IN JJ NNP NNP NNP TO VB PRP$ NN TO VB DT NNP NN IN IN JJ NN IN NNP POS JJ NNP NN . Tens of thousands of people have been killed and two million displaced since fighting broke out in 2003 between government-backed Arab militias , known as Janjaweed , and rebel forces . NNS IN NNS IN NNS VBP VBN VBN CC CD CD VBN IN NN VBD RP IN CD IN JJ JJ NNS , VBN IN NNP , CC JJ NNS . Militia fighters are accused of carrying out atrocities against civilians . NNP NNS VBP VBN IN VBG RP NNS IN NNS . The United States has accused Mr. al-Bashir 's government of committing genocide in Darfur . DT NNP NNPS VBZ VBN NNP NNP POS NN IN VBG NN IN NNP . Human rights group have also been very critical of Sudan , and Darfur rebels have threatened to boycott AU-sponsored peace talks if Khartoum assumes chairmanship of the 53-nation African Union . JJ NNS NN VBP RB VBN RB JJ IN NNP , CC NNP NNS VBP VBN TO VB JJ NN NNS IN NNP VBZ NN IN DT JJ NNP NNP . Taiwan 's future president , Ma Ying-jeou , is a U.S.-educated lawyer who served as minister for justice and minister without portfolio during the 1990s . NNP POS JJ NN , NNP NNP , VBZ DT JJ NN WP VBD IN NN IN NN CC NN IN NN IN DT NNS . Mr. Ma unseated Chen Shui-bian , the current president , as Taipei mayor in 1998 . NNP NNP VBD NNP NNP , DT JJ NN , IN NNP NN IN CD . Last August , Mr. Ma was cleared of corruption charges filed against him . JJ NNP , NNP NNP VBD VBN IN NN NNS VBN IN PRP . The charges prompted his resignation as party chairman . DT NNS VBD PRP$ NN IN NN NN . Prosecutors accused him of misusing $ 3,65,000 in government funds while Taipei mayor . NNS VBD PRP IN VBG $ CD IN NN NNS IN NNP NN . Mr. Ma has vowed not to provoke China with independence moves , so the two sides can co-exist and promote economic integration . NNP NNP VBZ VBN RB TO VB NNP IN NN NNS , IN DT CD NNS MD VB CC VB JJ NN . He has said he wants to open direct air and shipping links with China . PRP VBZ VBN PRP VBZ TO VB JJ NN CC NN NNS IN NNP . Tibetan leader cancels foreign travel . JJ NN VBZ JJ NN . Tibetan exiles in India fasted and prayed for peace on Saturday , and their spiritual leader , the Dalai Lama , joined in from a hospital bed in Mumbai . JJ NNS IN NNP VBD CC VBD IN NN IN NNP , CC PRP$ JJ NN , DT NNP NNP , VBD IN IN DT NN NN IN NNP . The 73-year-old Tibetan Buddhist leader is being treated for abdominal pain . DT JJ JJ NNP NN VBZ VBG VBN IN JJ NN . But a spokesman says he still joined in the 12-hour fast after doctors gave him permission to do so . CC DT NN VBZ PRP RB VBD IN DT JJ JJ IN NNS VBD PRP NN TO VB RB . The Dalai Lama canceled two upcoming foreign trips to undergo medical tests , after experiencing discomfort during recent travels . DT NNP NNP VBD CD JJ JJ NNS TO VB JJ NNS , IN VBG NN IN JJ NNS . He spends several months a year traveling to promote Tibetan causes , and recently returned to India after a visit to France . PRP VBZ JJ NNS DT NN VBG TO VB JJ NNS , CC RB VBD TO NNP IN DT NN TO NNP . A spokesman says he expects the Tibetan leader to return to his home in Dharamsala , in northern India , in a day or two . DT NN VBZ PRP VBZ DT JJ NN TO VB TO PRP$ NN IN NNP , IN JJ NNP , IN DT NN CC CD . Palestinian Prime Minister Ahmed Qureia has asked the United States for help in stopping Israel from expanding its largest West Bank settlement . JJ NNP NNP NNP NNP VBZ VBN DT NNP NNPS IN NN IN VBG NNP IN VBG PRP$ JJS NNP NNP NN . In Ramallah Thursday , Mr. Qureia asked visiting envoys Elliott Abrams and David Welch for a ' clear and firm ' U.S. position on Israeli plans to build 3,500 new homes in the Maale Adumim settlement near Jerusalem . IN NNP NNP , NNP NNP VBD VBG NNS NNP NNP CC NNP NNP IN DT `` JJ CC JJ `` NNP NN IN JJ NNS TO VB CD JJ NNS IN DT NNP NNP NN IN NNP . The Israeli plan appears to clash with the U.S.-backed ' road map ' peace blueprint , which calls for a halt to settlement expansion on all Palestinian land captured by Israel in the 1967 war . DT JJ NN VBZ TO VB IN DT JJ `` NN NN `` NN NN , WDT VBZ IN DT NN TO NN NN IN DT JJ NN VBN IN NNP IN DT CD NN . Analysts say the latest expansion is aimed at linking Maale Adumim to greater Jerusalem , which Israel claims as its eternal capital . NNS VBP DT JJS NN VBZ VBN IN VBG NNP NNP TO JJR NNP , WDT NNP VBZ IN PRP$ JJ NN . Palestinians want Arab East Jerusalem as the capital of a future state . NNS VBP NNP NNP NNP IN DT NN IN DT JJ NN . Wednesday , the two U.S. diplomats asked Israeli Prime Minister Ariel Sharon to clarify the expansion plans . NNP , DT CD NNP NNS VBD JJ NNP NNP NNP NNP TO VB DT NN NNS . European Union Commission President Jose Manuel Barroso is expected in Moscow Thursday to prepare for next month 's summit between Russian President Vladimir Putin and EU leaders . NNP NNP NNP NNP NNP NNP NNP VBZ VBN IN NNP NNP TO VB IN JJ NN POS NN IN JJ NNP NNP NNP CC NNP NNS . The EU Commission says Mr. Barroso 's talks with President Putin aim at finding ways to improve cooperation with Russia . DT NNP NNP VBZ NNP NNP POS NNS IN NNP NNP NN IN VBG NNS TO VB NN IN NNP . The summit , on May 10 , will take place one day after ceremonies in Moscow commemorating the 60th anniversary of the end of World War II in Europe . DT NN , IN NNP CD , MD VB NN CD NN IN NNS IN NNP VBG DT JJ NN IN DT NN IN NNP NNP NNP IN NNP . The two sides are trying to create four major areas of cooperation : the economy ; freedom , security and justice ; external security ; and research , education and culture . DT CD NNS VBP VBG TO VB CD JJ NNS IN NN IN DT NN ; NN , NN CC NN ; JJ NN ; CC NN , NN CC NN . However , officials say there remain areas of disagreement , including on the introduction of a more liberal visa policy between the EU and Russia . RB , NNS VBP EX VBP NNS IN NN , VBG IN DT NN IN DT RBR JJ NN NN IN DT NNP CC NNP . The Sudanese army has strongly denied involvement in a series of raids on villages and a displaced persons camp in Darfur in which at least 44 people were killed . DT JJ NN VBZ RB VBN NN IN DT NN IN NNS IN NNS CC DT JJ NNS NN IN NNP IN WDT IN JJS CD NNS VBD VBN . On Saturday , the African Union accused Sudanese government forces of coordinating attacks with pro-government militiamen , known as the Janjaweed , of launching attacks in the western region over the past two weeks . IN NNP , DT NNP NNP VBD JJ NN NNS IN VBG NNS IN JJ NNS , VBN IN DT NNP , IN VBG NNS IN DT JJ NN IN DT JJ CD NNS . The Sudanese army says the information provided by A.U. Ambassador Baba Gana Kingibe is incorrect and unreliable . DT JJ NN VBZ DT NN VBN IN NNP NNP NNP NNP NNP VBZ JJ CC JJ . Meanwhile , the Sudanese government and two Darfur rebel groups began face to face talks in Nigeria Monday for first the first time since opening the latest round of negotiations in mid-September . RB , DT JJ NN CC CD NNP NN NNS VBD NN TO VB NNS IN NNP NNP IN RB DT JJ NN IN VBG DT JJS NN IN NNS IN NNP . The proceedings began with a condemnation of the recent violence from the African Union 's chief mediator , Salim Ahmed Salim , who said attacks on civilians and continued banditry in Darfur are not understandable . DT NNS VBD IN DT NN IN DT JJ NN IN DT NNP NNP POS JJ NN , NNP NNP NNP , WP VBD NNS IN NNS CC JJ NN IN NNP VBP RB JJ . A bad economy can impact people 's health as well as their wealth . DT JJ NN MD VB NNS POS NN RB RB IN PRP$ NN . Carol Pearson reports on the impact plunging stock markets are having on Americans . NNP NNP VBZ IN DT NN VBG NN NNS VBP VBG IN NNS . The largest civil rights organization of American Sikhs has expressed outrage at a new U.S. airport security policy that allows random searches of turbans . DT JJS JJ NNS NN IN JJ NNS VBZ VBN NN IN DT JJ NNP NN NN NN WDT VBZ JJ NNS IN NNS . The Sikh Coalition said it had been informed by the U.S. Transportation Security Administration that under new guidelines the religious headdress could be subject to pat-downs even if the turban wearers had passed a metal detector test . DT NNP NNP VBD PRP VBD VBN VBN IN DT NNP NNP NNP NNP IN IN JJ NNS DT JJ NN MD VB JJ TO NNS RB IN DT NN NNS VBD VBN DT NN NN NN . On its website , the Coalition says it is concerned that the new policy amounts to religious profiling . IN PRP$ NN , DT NN VBZ PRP VBZ VBN IN DT JJ NN VBZ TO JJ NN . The organization urged Sikhs to sign a petition to the TSA to demonstrate grassroots concern with the new procedures . DT NN VBD NNS TO VB DT NN TO DT NNP TO VB NNS NN IN DT JJ NNS . It also asked all Sikhs to document their experience with the new headgear screening procedures . PRP RB VBD DT NNS TO VB PRP$ NN IN DT JJ JJ NN NNS . The TSA said on its website it does not conduct ethnic or religious profiling . DT NNP VBD IN PRP$ NN PRP VBZ RB VB JJ CC JJ NN . Britain 's Prime Minister Tony Blair has called for automatically deporting foreigners who commit crimes , following criticism of the country 's deportation program . NNP POS NNP NNP NNP NNP VBZ VBN IN RB VBG NNS WP VBP NNS , VBG NN IN DT NN POS NN NN . Mr. Blair spoke in the House of Commons Wednesday , saying that the government 's deportation system has been failing for years . NNP NNP VBD IN DT NNP IN NNP NNP , VBG IN DT NN POS NN NN VBZ VBN VBG IN NNS . He added that Home Secretary Charles Clarke is working to fix those problems and ensure that foreigners are sent to their home countries after serving their prison sentences . PRP VBD IN NNP NNP NNP NNP VBZ VBG TO VB DT NNS CC VB IN NNS VBP VBN TO PRP$ NN NNS IN VBG PRP$ NN NNS . But opposition lawmakers are calling for Clarke to resign . CC NN NNS VBP VBG IN NNP TO VB . They say he is to blame for the failure to deport more than 1,000 former prisoners since 1999 , including some violent criminals . PRP VBP PRP VBZ TO VB IN DT NN TO VB JJR IN CD JJ NNS IN CD , VBG DT JJ NNS . Recent media reports say a suspect in the killing of a police officer last year is a Somali man who was not deported after an earlier prison term . JJ NNS NNS VBP DT NN IN DT NN IN DT NN NN JJ NN VBZ DT JJ NN WP VBD RB VBN IN DT JJR NN NN . The criticism of the ruling Labor Party comes ahead of local elections on Thursday . DT NN IN DT NN NNP NNP VBZ RB IN JJ NNS IN NNP . Opinion polls indicate Labor candidates will fare poorly . NN NNS VBP NN NNS MD VB RB . Police have broken up a Europe-wide child trafficking ring involving mostly Bulgarian children trained in petty crime . NNS VBP VBN RP DT JJ NN NN NN VBG RB JJ NNS VBN IN JJ NN . Italian police led the operation , arresting 41 Bulgarian nationals in Italy , Bulgaria , Austria , and Germany . JJ NNS VBD DT NN , VBG CD JJ NNS IN NNP , NNP , NNP , CC NNP . Investigators said Monday impoverished Bulgarian families sold more than 100 children to the traffickers who then smuggled them across Europe to carry out such petty crimes as picking pockets . NNS VBD NNP VBD JJ NNS VBD JJR IN CD NNS TO DT NNS WP RB VBD PRP IN NNP TO VB RP JJ JJ NNS IN NN NNS . The investigators said the suspects shared some of the stolen money with the parents . DT NNS VBD DT NNS VBD DT IN DT VBN NN IN DT NNS . Police also said some of the children were sexually abused . NNS RB VBD DT IN DT NNS VBD RB VBN . Iraqis living outside the country can begin voting Tuesday in the country 's parliamentary elections . NNS VBG IN DT NN MD VB VBG NNP IN DT NN POS JJ NNS . Expatriates will be able to cast ballots through Thursday , the day when Iraq itself holds the elections . NNS MD VB JJ TO VB NNS IN NNP , DT NN WRB NNP PRP VBZ DT NNS . Fifteen countries have set up polling stations for Iraqis living abroad . CD NNS VBP VBN RP NN NNS IN NNS VBG RB . Authorities in Iraq are preparing tough security measures for Thursday 's elections . NNS IN NNP VBP VBG JJ NN NNS IN NNP POS NNS . The country 's borders will be closed , road traffic will be restricted except for vehicles with special permits , and night-time curfews will be extended starting tonight . DT NN POS NNS MD VB VBN , NN NN MD VB VBN IN IN NNS IN JJ NNS , CC JJ NNS MD VB VBN VBG NN . Early voting was held in Iraq Monday for soldiers , prisoners and hospital patients . RB NN VBD VBN IN NNP NNP IN NNS , NNS CC NN NNS . Meanwhile , Iraqi police say gunmen shot dead a leading Sunni Muslim Arab politician . RB , JJ NNS VBP NNS VBD RB DT VBG NNP NNP NNP NN . Mizhar al-Dulaimi of the Free Progressive Iraqi Party was killed while campaigning in Ramadi , the capital of western Anbar province . NNP NNP IN DT NNP NNP JJ NNP VBD VBN IN VBG IN NNP , DT NN IN JJ NNP NN . He had been urging Iraqis to vote in the parliamentary election . PRP VBD VBN VBG NNS TO VB IN DT JJ NN . Burma has opened a three-day World Buddhist Summit , which has been marred by the pullout of its main sponsor . NNP VBZ VBN DT JJ NNP NNP NNP , WDT VBZ VBN VBN IN DT NN IN PRP$ JJ NN . Burmese Prime Minister General Soe Win joined monks , officials and other delegates from several countries at Thursday 's opening ceremony in Rangoon . JJ NNP NNP NNP NNP NNP VBD NNS , NNS CC JJ NNS IN JJ NNS IN NNP POS NN NN IN NNP . Chinese state-run media report Thai Prime Minister Thaksin Shinawatra and Lao Prime Minister Bounnyang Vorachit also attended the ceremony . JJ JJ NNS NN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP RB VBD DT NN . Japan 's Nenbutsushu Buddhist sect announced last month that it will not provide funding for the summit . NNP POS NNP NNP NN VBD JJ NN IN PRP MD RB VB NN IN DT NN . The pullout came after October 's ouster of Burmese Prime Minister General Khin Nyunt . DT NN VBD IN NNP POS NN IN JJ NNP NNP NNP NNP NNP . Previous World Buddhist Summits have been held in Japan , Thailand and Cambodia . JJ NNP NNP NNPS VBP VBN VBN IN NNP , NNP CC NNP . An Israeli television station has broadcast the first video images of Israel 's controversial Dimona nuclear facility . DT JJ NN NN VBZ VBN DT JJ NN NNS IN NNP POS JJ NNP JJ NN . The privately owned station , Channel 10 , showed the video Friday as part of a documentary about the plant . DT RB VBN NN , NNP CD , VBD DT NN NNP IN NN IN DT NN IN DT NN . It did not explain how the video was obtained , but it said the showing had been authorized by Israeli military censors . PRP VBD RB VB WRB DT NN VBD VBN , CC PRP VBD DT NN VBD VBN VBN IN JJ JJ NNS . The Israeli government has prohibited journalists from viewing the Dimona plant and has denied safety inspections by foreign nuclear experts . DT JJ NN VBZ VBN NNS IN VBG DT NNP NN CC VBZ VBN NN NNS IN JJ JJ NNS . In 1986 , the first still pictures of the facility were released by former technician , Mordechai Vanunu . IN CD , DT JJ RB NNS IN DT NN VBD VBN IN JJ NN , NNP NNP . He was later jailed for 18 years on treason charges . PRP VBD RB VBN IN CD NNS IN NN NNS . Foreign experts say Dimona is being used to produce nuclear warheads . JJ NNS VBP NNP VBZ VBG VBN TO VB JJ NNS . Israel has neither acknowledged nor denied having a nuclear arsenal . NNP VBZ RB VBN CC VBN VBG DT JJ NN . Afghan President Hamid Karzai has described as ridiculous a message by al-Qaida leader Osama bin Laden that calls on European nations to stop supporting the U.S.-led mission in Afghanistan . JJ NNP NNP NNP VBZ VBN IN JJ DT NN IN NNP NN NNP NNP NNP WDT VBZ IN JJ NNS TO VB VBG DT JJ NN IN NNP . A statement from Mr. Karzai 's office said bin Laden 's remarks are contrary to Islamic culture and human values . DT NN IN NNP NNP POS NN VBD NNP NNP POS NNS VBP JJ TO JJ NN CC JJ NNS . It also said bin Laden is the reason terrorism plagues the country and blamed the al-Qaida chief for causing the deaths of thousands of innocent Afghans . PRP RB VBD NNP NNP VBZ DT NN NN VBZ DT NN CC VBD DT NNP NN IN VBG DT NNS IN NNS IN JJ NNS . On Thursday , excerpts of a recorded message said to be the voice of Bin Laden was broadcast on the Arabic television network Al-Jazeera . IN NNP , NNS IN DT JJ NN VBN TO VB DT NN IN NNP NNP VBD VBN IN DT JJ NN NN NNP . On it , bin Laden says he is responsible for the September 11th , 2001 , attacks on the United States , and that the Afghan people had nothing to do with them . IN PRP , NNP NNP VBZ PRP VBZ JJ IN DT NNP CD , CD , NNS IN DT NNP NNPS , CC IN DT JJ NNS VBD DT TO VB IN PRP . He also calls on Europeans to stand against Washington and allied governments that are fighting extremists and overseeing reconstruction projects in Afghanistan . PRP RB VBZ IN NNS TO VB IN NNP CC JJ NNS WDT VBP VBG NNS CC VBG NN NNS IN NNP . A top Hamas leader says the Palestinian militant group is willing to discuss options for statehood in the West Bank and Gaza Strip as well as a truce with Israel . DT JJ NNP NN VBZ DT JJ JJ NN VBZ JJ TO VB NNS IN NN IN DT NNP NNP CC NNP NNP RB RB IN DT NN IN NNP . Hassan Youssef , the top Hamas official in the West Bank , is quoted by news agencies as saying the group could accept a long-term truce and the creation of an independent Palestinian state within the 1967 borders , a reference to lands Israel captured in the 1967 Middle East War . NNP NNP , DT JJ NNP NN IN DT NNP NNP , VBZ VBN IN NN NNS IN VBG DT NN MD VB DT JJ NN CC DT NN IN DT JJ JJ NN IN DT CD NNS , DT NN TO NNS NNP VBD IN DT CD NNP NNP NNP . The comments may indicate a shift in Hamas ' long-standing policy of destroying Israel and replacing it with a Palestinian state . DT NNS MD VB DT NN IN NNP POS JJ NN IN VBG NNP CC VBG PRP IN DT JJ NN . Meanwhile , earlier Friday , Israeli troops shot dead a member of the Islamic Jihad militant group in the West Bank . RB , JJR NNP , JJ NNS VBD JJ DT NN IN DT NNP NNP JJ NN IN DT NNP NNP . Israeli army officials say the militant was carrying a weapon when he was shot . JJ NN NNS VBP DT NN VBD VBG DT NN WRB PRP VBD VBN . The United States has rejected a North Korean demand to lift sanctions against Pyongyang as a condition for resuming nuclear disarmament talks . DT NNP NNP VBZ VBN DT JJ JJ NN TO VB NNS IN NNP IN DT NN IN VBG JJ NN NNS . State Department spokesman Sean McCormack said Tuesday the two issues are not related . NNP NNP NN NNP NNP VBD NNP DT CD NNS VBP RB VBN . He said he does not see why the sanctions are preventing the North Korean government from rejoining six-party talks . PRP VBD PRP VBZ RB VB WRB DT NNS VBP VBG DT JJ JJ NN IN VBG JJ NNS . White House spokesman Scott McClellan said Tuesday the North Korean demand is another pretext to delay the talks . NNP NNP NN NNP NNP VBD NNP DT JJ JJ NN VBZ DT NN TO VB DT NNS . Tuesday , North Korea said it will not return to the talks until the United States ends economic sanctions against Pyongyang . NNP , NNP NNP VBD PRP MD RB VB TO DT NNS IN DT NNP NNPS VBZ JJ NNS IN NNP . In October , Washington blacklisted eight North Korean companies allegedly involved in proliferation of weapons of mass destruction . IN NNP , NNP VBD CD JJ JJ NNS RB VBN IN NN IN NNS IN NN NN . U.S. officials also accuse Pyongyang of counterfeiting , money laundering and drug trafficking . NNP NNS RB VBP NNP IN VBG , NN NN CC NN NN . The list of Khalid Sheikh Mohammed 's confessions released by the Defense Department , ranges from real terror attacks to plots that never happened . DT NN IN NNP NNP NNP POS NNS VBN IN DT NNP NNP , VBZ IN JJ NN NNS TO NNS WDT RB VBD . One claim was censored . CD NN VBD VBN . Mohammed claimed responsibility for beheading Wall Street Journal reporter Daniel Pearl in Pakistan in 2002 . NNP VBD NN IN VBG NNP NNP NNP NN NNP NNP IN NNP IN CD . He also took responsibility for a ' shoe-bombing ' plot to bring down two U.S. airplanes . PRP RB VBD NN IN DT `` JJ `` NN TO VB RP CD NNP NNS . Mohammed said he planned dozens of other attacks that never happened , including plots to kill former U.S. presidents Jimmy Carter and Bill Clinton , the late Pope John Paul II , and Pakistani President Pervez Musharraf . NNP VBD PRP VBD NNS IN JJ NNS WDT RB VBD , VBG NNS TO VB JJ NNP NNS NNP NNP CC NNP NNP , DT JJ NNP NNP NNP NNP , CC JJ NNP NNP NNP . He also said he planned to blow up the Panama Canal , and to destroy U.S. embassies in Indonesia , Australia and Japan . PRP RB VBD PRP VBD TO VB RP DT NNP NNP , CC TO VB NNP NNS IN NNP , NNP CC NNP . Indian authorities say at least 32 people have been killed in two road accidents in northern and western parts of the country . JJ NNS VBP IN JJS CD NNS VBP VBN VBN IN CD NN NNS IN JJ CC JJ NNS IN DT NN . Officials in Indian Kashmir say at least 15 people died when a bus veered off a steep mountain road and plunged into a gorge . NNS IN JJ NNP VBP IN JJS CD NNS VBD WRB DT NN VBD RP DT JJ NN NN CC VBD IN DT NN . Reports from the area say at least 15 other people were injured but survived Wednesday 's accident . NNS IN DT NN VBP IN JJS CD JJ NNS VBD VBN CC VBN NNP POS NN . Survivors say the driver lost control of the bus on a sharp curve , and the vehicle plunged 250 meters down a mountainside . NNS VBP DT NN VBD NN IN DT NN IN DT JJ NN , CC DT NN VBD CD NNS IN DT NN . Villagers and police used ropes to reach the wreck . NNS CC NNS VBD NNS TO VB DT NN . Hours later , in western Gujarat state , a truck carrying sacks of salt and 19 people overturned and crashed into a flooded ditch . NNS RB , IN JJ NNP NN , DT NN VBG NNS IN NN CC CD NNS VBD CC VBD IN DT VBN NN . Local officials say 17 people did not survive the plunge . JJ NNS VBP CD NNS VBD RB VB DT NN . U.S. Secretary of State Condoleezza Rice , who is on a tour of the Middle East , met with Egyptian President Hosni Mubarak Wednesday . NNP NNP IN NNP NNP NNP , WP VBZ IN DT NN IN DT NNP NNP , VBD IN JJ NNP NNP NNP NNP . Rice and Mr. Mubarak were to discuss the aftermath of the militant group Hamas 's victory in the Palestinian elections . NNP CC NNP NNP VBD TO VB DT NN IN DT JJ NN NNP POS NN IN DT JJ NNS . She also met with Egyptian democracy activists Wednesday . PRP RB VBD IN JJ NN NNS NNP . Few details were given about those meetings . JJ NNS VBD VBN IN DT NNS . Rice 's Middle East tour is aimed at convincing Arab governments to take a stance against a Hamas-led Palestinian government . NNP POS NNP NNP NN VBZ VBN IN VBG JJ NNS TO VB DT NN IN DT JJ JJ NN . Her next stop will be Saudi Arabia and then she will wrap up her tour in the United Arab Emirates . PRP$ JJ NN MD VB NNP NNP CC RB PRP MD VB RP PRP$ NN IN DT NNP NNP NNPS . On Tuesday , Rice met with Egyptian Foreign Minister Ahmed Aboul Gheit in Cairo . IN NNP , NNP VBD IN JJ NNP NNP NNP NNP NNP IN NNP . During their meeting , Rice said Hamas must choose between terrorism and politics if it wants to successfully lead a Palestinian government . IN PRP$ NN , NNP VBD NNP MD VB IN NN CC NNS IN PRP VBZ TO RB VB DT JJ NN . Egypt says it will build a nuclear power plant to meet its growing energy needs . NNP VBZ PRP MD VB DT JJ NN NN TO VB PRP$ VBG NN NNS . The country 's energy minister Hassan Younes told the state-owned newspaper Al-Ahram that Egypt plans to build a 1000 Megawatt nuclear power plant on the Mediterranean coast . DT NN POS NN NN NNP NNP VBD DT JJ NN NNP IN NNP VBZ TO VB DT CD NNP JJ NN NN IN DT NNP NN . He said the project will cost $ 1.5 billion and that the government will seek foreign investment . PRP VBD DT NN MD VB $ CD CD CC IN DT NN MD VB JJ NN . The announcement comes three days after President Hosni Mubarak said Egypt should create a nuclear program for peaceful uses . DT NN VBZ CD NNS IN NNP NNP NNP VBD NNP MD VB DT JJ NN IN JJ NNS . Egypt abandoned plans for nuclear energy in 1986 after the accident at the Soviet nuclear plant in Chernobyl . NNP VBD NNS IN JJ NN IN CD IN DT NN IN DT JJ JJ NN IN NNP . Cairo has been largely silent on the dispute between Iran and major powers over Tehran 's nuclear enrichment activities . NNP VBZ VBN RB JJ IN DT NN IN NNP CC JJ NNS IN NNP POS JJ NN NNS . The U.S. believes Iran is trying to build a nuclear weapon . DT NNP VBZ NNP VBZ VBG TO VB DT JJ NN . Egypt has long called for a Middle East free of nuclear weapons . NNP VBZ RB VBN IN DT NNP NNP NN IN JJ NNS . U.S. Secretary of State Condoleezza Rice says Iran is a very dangerous state with dangerous policies . NNP NNP IN NNP NNP NNP VBZ NNP VBZ DT RB JJ NN IN JJ NNS . In a television interview on CNBC 's Closing Bell Friday , Rice said while Washington is committed to a diplomatic solution , Iran must know ' there are coercive elements ' to U.S. policy as well . IN DT NN NN IN NNP POS NNP NNP NNP , NNP VBD IN NNP VBZ VBN TO DT JJ NN , NNP MD VB `` EX VBP JJ NNS `` TO NNP NN RB RB . She said that with Iran becoming ' increasingly dangerous , ' the United States and its allies are discussing new sanctions to further curb Tehran 's access to the international financial system . PRP VBD IN IN NNP VBG `` RB JJ , `` DT NNP NNPS CC PRP$ NNS VBP VBG JJ NNS TO JJ VB NNP POS NN TO DT JJ JJ NN . She said that despite two U.N. Chapter 7 resolutions - the U.N. 's most serious Security Council resolution - Iran continues to pursue technologies that could lead to a nuclear weapon . PRP VBD IN IN CD NNP NN CD NNS IN DT NNP POS RBS JJ NNP NNP NN : NNP VBZ TO VB NNS WDT MD VB TO DT JJ NN . When asked if the United States should consider military retaliation , Rice said President Bush ' is never going to take his options off the table . ' WRB VBN IN DT NNP NNPS MD VB JJ NN , NNP VBD NNP NNP `` VBZ RB VBG TO VB PRP$ NNS IN DT NN . `` Tehran denies it is trying to build a nuclear weapon . NNP VBZ PRP VBZ VBG TO VB DT JJ NN . Palestinians in Israel and Lebanon turned out Friday to mark what they call the Naqba , or ' catastrophe ' of Israel 's creation 62 years ago . NNS IN NNP CC NNP VBD RP NNP TO VB WP PRP VBP DT NNP , CC `` NN `` IN NNP POS NN CD NNS RB . Demonstrators staged protests in the Hamas-controlled Gaza Strip and in Beirut . NNS VBD NNS IN DT JJ NNP NNP CC IN NNP . Lebanon is home to thousands of Palestinian refugees . NNP VBZ NN TO NNS IN JJ NNS . Chief Palestinian negotiator Saeb Erekat released a statement saying the Naqba continues . JJ JJ NN NNP NNP VBD DT NN VBG DT NNP VBZ . He accused Israel of refusing to recognize the ' basic rights ' of Palestinians . PRP VBD NNP IN VBG TO VB DT `` JJ NNS `` IN NNS . More than 7,00,000 Palestinians are estimated to have fled , or were forced from their homes during the Arab-Israeli war , which began in 1948 . JJR IN CD NNS VBP VBN TO VB VBN , CC VBD VBN IN PRP$ NNS IN DT JJ NN , WDT VBD IN CD . Meanwhile , authorities in Israel say a Palestinian teenager in the West Bank was found dead Friday from a gunshot wound . RB , NNS IN NNP VBP DT JJ NN IN DT NNP NNP VBD VBN JJ NNP IN DT NN NN . Palestinians allege Jewish settlers shot the teenager after he threw rocks at their cars . NNS VBP JJ NNS VBD DT NN IN PRP VBD NNS IN PRP$ NNS . Venezuela 's National Assembly has approved new joint venture deals with foreign oil companies , months after the companies were forced to give up their majority stakes to government control . NNP POS NNP NNP VBZ VBN JJ JJ NN NNS IN JJ NN NNS , NNS IN DT NNS VBD VBN TO VB RP PRP$ NN NNS TO NN NN . The agreements approved Tuesday create mixed companies consisting of Venezuela 's state oil company and foreign minority partners ( France 's Total , Norway 's Statoil , Britain 's BP , and U.S.-based Chevron ) . DT NNS VBN NNP VBP JJ NNS VBG IN NNP POS NN NN NN CC JJ NN NNS LRB NNP POS NNP , NNP POS NNP , NNP POS NNP , CC JJ NNP RRB . As part of the deals , the foreign companies will make multi-million dollar payments . IN NN IN DT NNS , DT JJ NNS MD VB JJ NN NNS . This money will be subtracted from the amount Venezuela owes the companies for taking over their majority stakes in oil fields and refining plants . DT NN MD VB VBN IN DT NN NNP VBZ DT NNS IN VBG RP PRP$ NN NNS IN NN NNS CC NN NNS . Chevron 's agreement does not include a monetary contribution clause . NNP POS NN VBZ RB VB DT JJ NN NN . Venezuela 's President Hugo Chavez seized majority control of the oil operations in the Orinoco Basin in May , offering foreign companies minority stakes . NNP POS NNP NNP NNP VBD NN NN IN DT NN NNS IN DT NNP NNP IN NNP , VBG JJ NNS NN NNS . A report from the investigative arm of the U.S. Congress says a new tracking system is needed to see if economic sanctions against Iran are effective . DT NN IN DT JJ NN IN DT NNP NNP VBZ DT JJ NN NN VBZ VBN TO VB IN JJ NNS IN NNP VBP JJ . The Government Accountability Office , GAO , says several U.S. agencies need to measure if sanctions are helping to curtail Iran 's alleged support of terrorist groups . DT NNP NNP NNP , NNP , VBZ JJ NNP NNS VBP TO VB IN NNS VBP VBG TO VB NNP POS JJ NN IN JJ NNS . The report says the agencies also need to assess the status of Iran 's controversial nuclear program . DT NN VBZ DT NNS RB VBP TO VB DT NN IN NNP POS JJ JJ NN . The United States imposed economic sanctions on Iran in 1987 , but this new report from the GAO says the impact of those long running sanctions is difficult to determine . DT NNP NNPS VBD JJ NNS IN NNP IN CD , CC DT JJ NN IN DT NNP VBZ DT NN IN DT JJ VBG NNS VBZ JJ TO VB . The report comes as President Bush completes a visit to the Middle East aimed , in part , at securing support for increased pressure on Iran . DT NN VBZ IN NNP NNP VBZ DT NN TO DT NNP NNP VBN , IN NN , IN VBG NN IN JJ NN IN NNP . Palestinian officials say security forces have arrested two Palestinian militants over rocket attacks on Jewish settlements in the Gaza Strip . JJ NNS VBP NN NNS VBP VBN CD JJ NNS IN NN NNS IN JJ NNS IN DT NNP NNP . Authorities said Friday the members of the al-Aqsa Martyrs Brigades were detained for questioning . NNS VBD NNP DT NNS IN DT JJ NNPS NNPS VBD VBN IN VBG . The group is loosely affiliated with the ruling Fatah movement . DT NN VBZ RB VBN IN DT NN NNP NN . An al-Aqsa spokesman confirmed that two of the group 's militants had been detained . DT NNP NN VBD IN CD IN DT NN POS NNS VBD VBN VBN . Palestinian President Mahmoud Abbas recently vowed to use an ' iron fist ' against militants to enforce a truce between Israel and the Palestinians . JJ NNP NNP NNP RB VBD TO VB DT `` NN RB `` IN NNS TO VB DT NN IN NNP CC DT NNS . Iranian media report that Iran 's supreme leader has told President Mahmoud Ahmadinejad to dismiss his chosen top deputy , after the selection angered conservative Iranians . JJ NNS NN IN NNP POS JJ NN VBZ VBN NNP NNP NNP TO VB PRP$ JJ JJ NN , IN DT NN VBD JJ NNS . Semi-official news agencies in Iran quote the deputy speaker of the parliament Mohammad Hassan Aboutorabi-Fard as saying Ayatollah Ali Khamenei sent Mr. Ahmadinejad a letter calling for the removal of the first vice president . JJ NN NNS IN NNP VBP DT NN NN IN DT NN NNP NNP NNP IN VBG NNP NNP NNP VBD NNP NNP DT NN VBG IN DT NN IN DT JJ NN NN . Esfandiar Rahim Mashaie has been sharply criticized for stating last year that Iran is a friend of all people in the world , including Israelis . NNP NNP NNP VBZ VBN RB VBN IN VBG JJ NN IN NNP VBZ DT NN IN DT NNS IN DT NN , VBG NNS . Iran does not recognize Israel . NNP VBZ RB VB NNP . To this point , Mr. Ahmadinejad has refused to back down on his selection of Mashaie , despite pressure to do so . TO DT NN , NNP NNP VBZ VBN TO VB RP IN PRP$ NN IN NNP , IN NN TO VB RB . Leading conservative Iranian cleric Ayatollah Ahmad Khatami also has called on Mr. Ahmadinejad to reconsider Mashaie 's appointment , saying it defies the president 's constituency . VBG JJ JJ NN NNP NNP NNP RB VBZ VBN IN NNP NNP TO VB NNP POS NN , VBG PRP VBZ DT NN POS NN . Mashaie and Ahmadinejad have family ties . NNP CC NNP VBP NN NNS . Mashaie 's daughter is married to Mr. Ahmadinejad 's son . NNP POS NN VBZ VBN TO NNP NNP POS NN . Burma 's state-run media say the military government has dismissed eight deputy Cabinet ministers and one supreme court judge , without giving reasons for the moves . NNP POS JJ NNS VBP DT JJ NN VBZ VBN CD NN NN NNS CC CD JJ NN NN , IN VBG NNS IN DT NNS . Those dismissed include the Deputy Minister of Defense , Major-General Khin Maung Win , and Deputy Minister of Industry Thein Thun . DT VBN VBP DT NNP NNP IN NNP , NNP NNP NNP NNP , CC NNP NNP IN NNP NNP NNP . The dismissed Supreme Court judge was Khin Maung Aye . DT VBN NNP NNP NN VBD NNP NNP NNP . New appointments to fill the posts were not announced . JJ NNS TO VB DT NNS VBD RB VBN . Since assuming power in 1988 , the leaders of the present regime and its cabinet have undergone a number of changes . IN VBG NN IN CD , DT NNS IN DT JJ NN CC PRP$ NN VBP VBN DT NN IN NNS . Last month , the government dismissed two Cabinet ministers and appointed four new ministers and four new deputy ministers . JJ NN , DT NN VBD CD NNP NNS CC VBN CD JJ NNS CC CD JJ NN NNS . Pakistan says the commander of its paramilitary Frontier Corps was wounded when his helicopter came under rocket attack in troubled Baluchistan province Thursday . NNP VBZ DT NN IN PRP$ JJ NNP NNP VBD VBN WRB PRP$ NN VBD IN NN NN IN JJ NNP NN NNP . Officials say Major-General Shujaat Zamir Dar was on an inspection flight when he was hit in the leg by shrapnel from the exploding rocket . NNS VBP JJ NNP NNP NNP VBD IN DT NN NN WRB PRP VBD VBN IN DT NN IN NN IN DT VBG NN . The helicopter 's pilot flew the aircraft safely back to its base . DT NN POS NN VBD DT NN RB RB TO PRP$ NN . Wednesday , rebels fired eight rockets during a visit to southwestern Pakistan by President Pervez Musharraf . NNP , NNS VBD CD NNS IN DT NN TO JJ NNP IN NNP NNP NNP . No one was injured in the attack , which was claimed by the separatist Baluchistan Liberation Army . DT NN VBD VBN IN DT NN , WDT VBD VBN IN DT JJ NNP NNP NNP . President Musharraf was laying the foundation for a military garrison outside the town of Kohlu , ( 300 kilometers ) east of the provincial capital , Quetta . NNP NNP VBD VBG DT NN IN DT JJ NN IN DT NN IN NNP , LRB CD NNS RRB NN IN DT JJ NN , NNP . Baluch rebels have been fighting a low-level insurgency against Pakistan 's central government for years . NNP NNS VBP VBN VBG DT JJ NN IN NNP POS JJ NN IN NNS . They want more jobs and higher royalties from Islamabad in return for their region 's natural resources . PRP VBP JJR NNS CC JJR NNS IN NNP IN NN IN PRP$ NN POS JJ NNS . French workers at a U.S.-run manufacturing plant in southeastern France have detained four managers , to protest plans to cut hundreds of jobs . JJ NNS IN DT JJ NN NN IN JJ NNP VBP VBN CD NNS , TO VB NNS TO VB NNS IN NNS . The workers at a Caterpillar heavy equipment plant in Grenoble were refusing Tuesday to let the managers , including the factory director , leave the premises . DT NNS IN DT NNP JJ NN NN IN NNP VBD VBG NNP TO VB DT NNS , VBG DT NN NN , VB DT NNS . Caterpillar is set to cut 733 workers at two plants in France . NNP VBZ VBN TO VB CD NNS IN CD NNS IN NNP . The seizures , on the eve of the G20 global economic summit in London , mark the third time in recent weeks that French workers have hijacked executives to protest job losses . DT NNS , IN DT NN IN DT NNP JJ JJ NN IN NNP , NN DT JJ NN IN JJ NNS IN JJ NNS VBP VBN NNS TO VB NN NNS . Police did not intervene in the earlier incidents , and the hostages were released unharmed . NNS VBD RB VB IN DT JJR NNS , CC DT NNS VBD VBN JJ . The French news agency quoted a union official , Benoit Nicolas , as saying a deal resulting in the release of the latest captives was within reach . DT JJ NN NN VBN DT NN NN , NNP NNP , IN VBG DT NN VBG IN DT NN IN DT JJS NNS VBD IN NN . US officials say an al-Qaida leader killed in a drone attack in northwestern Pakistan was not Osama bin Laden . NNP NNS VBP DT NNP NN VBN IN DT NN NN IN JJ NNP VBD RB NNP NNP NNP . U.S. officials say a top al-Qaida leader has been killed in a drone attack in restive northwestern Pakistan . NNP NNS VBP DT JJ NNP NN VBZ VBN VBN IN DT NN NN IN JJ JJ NNP . The officials did not identify the person killed , but they said it was not al-Qaida leader Osama bin Laden . DT NNS VBD RB VB DT NN VBN , CC PRP VBD PRP VBD RB NNP NN NNP NNP NNP . A U.S. television network , NBC , first reported the drone attack earlier this week . DT NNP NN NN , NNP , RB VBD DT NN NN RBR DT NN . The exact date of the attack is unclear . DT JJ NN IN DT NN VBZ JJ . Earlier this week , Pakistani officials said a suspected U.S. drone attack killed at least three people in northwestern Pakistan . RBR DT NN , JJ NNS VBD DT JJ NNP NN NN VBD IN JJS CD NNS IN JJ NNP . Intelligence officials say the pace of attacks by drones ( unmanned aircraft ) has increased under the Obama administration . NN NNS VBP DT NN IN NNS IN NNS LRB JJ NN RRB VBZ VBN IN DT NNP NN . The U.S. State Department says it is encouraged by Nicaragua 's decision to ratify the Central American Free Trade Agreement ( CAFTA ) . DT NNP NNP NNP VBZ PRP VBZ VBN IN NNP POS NN TO VB DT NNP NNP NNP NNP NNP LRB NNP RRB . In a statement issued Tuesday , Deputy Spokesman Adam Ereli called the economic pact ' Nicaragua 's best opportunity ' to gain the benefits of trade and investment . IN DT NN VBN NNP , NNP NNP NNP NNP VBD DT JJ NN `` NNP POS JJS NN `` TO VB DT NNS IN NN CC NN . He also said Nicaragua has taken positive political steps since Deputy Secretary of State Robert Zoellick visited last week . PRP RB VBD NNP VBZ VBN JJ JJ NNS IN NNP NNP IN NNP NNP NNP VBD JJ NN . President Bush has said the deal will strengthen democracy and reduce poverty in the Latin American nations that have signed the bill . NNP NNP VBZ VBN DT NN MD VB NN CC VB NN IN DT JJ JJ NNS WDT VBP VBN DT NN . The economic deal removes trade barriers between the United States and Costa Rica , El Salvador , Guatemala , Honduras , Nicaragua and the Dominican Republic . DT JJ NN VBZ NN NNS IN DT NNP NNPS CC NNP NNP , NNP NNP , NNP , NNP , NNP CC DT NNP NNP . In the United States , supporters of the plan say it will open new markets for U.S. goods and services . IN DT NNP NNPS , NNS IN DT NN VBP PRP MD VB JJ NNS IN NNP NNS CC NNS . Critics say it will send U.S. jobs to Central America , where labor is cheaper . NNS VBP PRP MD VB NNP NNS TO NNP NNP , WRB NN VBZ JJR . An Iranian official says his country will continue cooperating with the U.N. nuclear agency to prevent the imposition of more Security Council sanctions . DT JJ NN VBZ PRP$ NN MD VB VBG IN DT NNP JJ NN TO VB DT NN IN JJR NNP NNP NNS . Foreign Ministry spokesman Mohammad Ali Hosseini made the comment Sunday . NNP NNP NN NNP NNP NNP VBD DT NN NNP . On Friday , world powers meeting at the U.N. agreed to put off until November efforts to approve new sanctions . IN NNP , NN NNS VBG IN DT NNP VBD TO VB RP IN NNP NNS TO VB JJ NNS . But , the United States , other permanent Security Council members and Germany said they will seek a third round of sanctions against Iran unless diplomacy can resolve the dispute by November . CC , DT NNP NNPS , JJ JJ NNP NNP NNS CC NNP VBD PRP MD VB DT JJ NN IN NNS IN NNP IN NN MD VB DT NN IN NNP . The United States and its allies accuse Tehran of trying to build atomic weapons under the cover of a civilian nuclear program . DT NNP NNPS CC PRP$ NNS VBP NNP IN VBG TO VB JJ NNS IN DT NN IN DT JJ JJ NN . Iran denies the charge . NNP VBZ DT NN . The United States , France and Britain favor imposing new sanctions on Iran for its refusal to suspend sensitive nuclear activities . DT NNP NNPS , NNP CC NNP VBP VBG JJ NNS IN NNP IN PRP$ NN TO VB JJ JJ NNS . Russia and China say Tehran should be given more time before further sanctions are imposed . NNP CC NNP VBP NNP MD VB VBN JJR NN IN JJ NNS VBP VBN . The U.S. ambassador to the United Nations is dismissing charges by Venezuela 's foreign minister that he was mistreated by New York airport security , calling the diplomat 's protest ' street theater . ' DT NNP NN TO DT NNP NNP VBZ VBG NNS IN NNP POS JJ NN IN PRP VBD VBN IN NNP NNP NN NN , VBG DT NN POS NN `` NN NN . `` U.S. envoy John Bolton said Monday , there was no incident at the John F. Kennedy airport , where Venezuela 's Nicolas Maduro was detained by authorities Saturday . NNP NN NNP NNP VBD NNP , EX VBD DT NN IN DT NNP NNP NNP NN , WRB NNP POS NNP NNP VBD VBN IN NNS NNP . Maduro says officials frisked and physically threatened him . NNP VBZ NNS VBD CC RB VBD PRP . Bolton said Maduro purchased his plane ticket in a time and manner that raised security concerns , and instead of complying with a secondary screening , Bolton says Maduro called reporters about the incident . NNP VBD NNP VBD PRP$ NN NN IN DT NN CC NN WDT VBD NN NNS , CC RB IN VBG IN DT JJ NN , NNP VBZ NNP VBD NNS IN DT NN . Bolton labeled Maduro 's actions ' propaganda . ' NNP VBD NNP POS NNS `` NN . `` Maduro rejected a U.S. apology for the incident , which capped a tense week for U.S.-Venezuelan relations . NNP VBD DT NNP NN IN DT NN , WDT VBD DT JJ NN IN JJ NNS . At the U.N. General Assembly last week , Venezuelan President Hugo Chavez called President Bush ' the devil . ' IN DT NNP NNP NNP JJ NN , JJ NNP NNP NNP VBD NNP NNP `` DT NN . `` The United Nations war crimes tribunal has reduced to 40 years the life prison term of a former Bosnian Serb mayor convicted of overseeing detention camps for Croats and Muslims . DT NNP NNPS NN NNS JJ VBZ VBN TO CD NNS DT NN NN NN IN DT JJ JJ JJ NN VBN IN VBG NN NNS IN NNS CC NNS . The appeals chamber of the Hague-based court Wednesday said Milomir Stakic 's conviction would stand , but cut his prison term . DT NNS NN IN DT JJ NN NNP VBD NNP NNP POS NN MD VB , CC VBD PRP$ NN NN . The court said the lower judge had made errors in the sentencing procedure , but called the impact of the problem limited . DT NN VBD DT JJR NN VBD VBN NNS IN DT NN NN , CC VBD DT NN IN DT NN VBN . In 2003 , Stakic was the first person to be sentenced to life in prison by the tribunal . IN CD , NNP VBD DT JJ NN TO VB VBN TO NN IN NN IN DT NN . He was convicted of helping to set up three prison camps near the town of Prijedor , in northwestern Bosnia-Herzegovina where he was mayor . PRP VBD VBN IN VBG TO VB RP CD NN NNS IN DT NN IN NNP , IN JJ NNP WRB PRP VBD NN . The court acquitted him of genocide charges . DT NN VBN PRP IN NN NNS . More than 20,000 Bosnian Muslims and Croats were driven from their homes in Prijedor , and more than 15,000 were killed . JJR IN CD JJ NNPS CC NNS VBD VBN IN PRP$ NNS IN NNP , CC JJR IN CD VBD VBN . Police in Chile have used water canons and teargas to disperse student demonstrators calling for educational reform . NNS IN NNP VBP VBN NN NNS CC NNS TO VB NN NNS VBG IN JJ NN . About 1,000 students attempted to march through downtown Santiago Monday . IN CD NNS VBN TO VB IN NN NNP NNP . They were met by police who broke up the protest . PRP VBD VBN IN NNS WP VBD RP DT NN . Students threw rocks at police vehicles and tried to block roads with burning tires . NNS VBD NNS IN NN NNS CC VBD TO VB NNS IN NN NNS . The protest was smaller than one conducted last week by some 8,00,000 students . DT NN VBD JJR IN CD VBN JJ NN IN DT CD NNS . The students demanded free public transportation and fee waivers for college entrance exams . DT NNS VBD JJ JJ NN CC NN NNS IN NN NN NNS . They also wanted reform of the education law created under former dictator General Augusto Pinochet . PRP RB VBD NN IN DT NN NN VBN IN JJ NN NNP NNP NNP . Negotiations between the students and the government ended Friday with no agreement . NNS IN DT NNS CC DT NN VBD NNP IN DT NN . President Michelle Bachelet has promised to reduce fares for student bus passes , but rejected demands for free transportation , saying it is too costly . NNP NNP NNP VBZ VBN TO VB NNS IN NN NN NNS , CC VBD NNS IN JJ NN , VBG PRP VBZ RB JJ . Shi'ite negotiators in Iraq have announced a compromise deal that will place 25 more Sunnis on the pan-Iraqi committee drafting a new constitution . NNP NNS IN NNP VBP VBN DT NN NN WDT MD VB CD JJR NNS IN DT JJ NN VBG DT JJ NN . Thursday 's agreement breaks weeks of deadlock over the size and conditions of Sunni participation on the drafting committee . NNP POS NN VBZ NNS IN NN IN DT NN CC NNS IN NNP NN IN DT VBG NN . Under the deal , 15 Sunnis will join two others already on the committee . IN DT NN , CD NNS MD VB CD NNS RB IN DT NN . The remaining 10 Sunnis will serve as advisors . DT VBG CD NNS MD VB IN NNS . Iraqi President Jalal Talabani , a Sunni Kurd , last week backed Sunni Arab demands for 25 seats on the panel . JJ NNP NNP NNP , DT NNP NNP , JJ NN VBD NNP NNP NNS IN CD NNS IN DT NN . But Prime Minister Ibrahim Jaafari and fellow Shi'ites argued that any more than 15 Sunni seats would create an imbalance on the 55-member panel . CC NNP NNP NNP NNP CC JJ NNS VBD IN DT JJR IN CD NNP NNS MD VB DT NN IN DT JJ NN . Both the United States and the European Union have backed calls for greater Sunni participation on the committee , which has four months to write a permanent constitution before a referendum set for October . DT DT NNP NNPS CC DT NNP NNP VBP VBN NNS IN JJR NNP NN IN DT NN , WDT VBZ CD NNS TO VB DT JJ NN IN DT NN VBN IN NNP . British film director Mike Leigh has canceled a trip to Israel to protest against a proposed loyalty oath . JJ NN NN NNP NNP VBZ VBN DT NN TO NNP TO VB IN DT VBN NN NN . Israel 's Cabinet last week passed a bill that would require non-Jewish immigrants to pledge loyalty to a ' Jewish and democratic ' state - language seen as discriminatory toward Israel 's Arab minority . NNP POS NNP JJ NN VBD DT NN WDT MD VB JJ NNS TO NN NN TO DT `` JJ CC JJ `` NN IN NN VBN IN JJ IN NNP POS JJ NN . Leigh , the award-winning director of Naked and Secrets & Lies , said he was no longer prepared to take part in the ' great masters ' program at the Sam Spiegel Film & Television School in Jerusalem . NNP , DT JJ NN IN NNP CC NNP CC NNP , VBD PRP VBD RB RB VBN TO VB NN IN DT `` JJ NNS `` NN IN DT NNP NNP NNP CC NNP NNP IN NNP . In a letter to school director Renen Schorr , Leigh , who is Jewish , said he opposed Israel 's policies toward Palestinians and called the loyalty oath the ' last straw . ' IN DT NN TO NN NN NNP NNP , NNP , WP VBZ JJ , VBD PRP VBD NNP POS NNS IN NNS CC VBD DT NN NN DT `` JJ NN . `` Bangladesh is planning what a U.N. agency calls the biggest measles vaccination campaign in history , hoping to inoculate 33.5 million children between the age of nine months and 10 years . NNP VBZ VBG WP DT NNP NN VBZ DT JJS NNS NN NN IN NN , VBG TO VB CD CD NNS IN DT NN IN CD NNS CC CD NNS . Officials in Dhaka say the three-week program , organized with the United Nations Children 's Fund , will help curb the disease that kills an estimated 20,000 Bangladeshi children every year . NNS IN NNP VBP DT JJ NN , VBN IN DT NNP NNP NNP POS NNP , MD VB VB DT NN WDT VBZ DT JJ CD JJ NNS DT NN . The U.N. agency 's spokesman says the campaign will start on February 25 and will end on March 16 . DT NNP NN POS NN VBZ DT NN MD VB IN NNP CD CC MD VB IN NNP CD . The agency says the program will involve approximately 50,000 skilled vaccinators and 7,50,000 volunteers . DT NN VBZ DT NN MD VB RB CD JJ NNS CC CD NNS . The Bangladeshi government developed and adopted the plan of action to control measles in accordance with the current World Health Organization and UNICEF Global Measles Reduction strategy . DT JJ NN VBD CC VBD DT NN IN NN TO VB NNS IN NN IN DT JJ NNP NNP NNP CC NNP NNP NNP NNP NN . The price of crude oil dropped more than two percent in New York trading Wednesday , falling to the lowest level in about a month . DT NN IN JJ NN VBD JJR IN CD NN IN NNP NNP NN NNP , VBG TO DT JJS NN IN RB DT NN . The price of a barrel of crude oil for future delivery was off nearly $ 2 and went as low as $ 73.83 . DT NN IN DT NN IN JJ NN IN JJ NN VBD IN RB $ CD CC VBD RB JJ IN $ CD . The decline came as a government report said the total supply of crude oil and refined fuels in the United States was more than 1.1 billion barrels , the highest level in at least two decades . DT NN VBD IN DT NN NN VBD DT JJ NN IN JJ NN CC JJ NNS IN DT NNP NNPS VBD JJR IN CD CD NNS , DT JJS NN IN IN JJS CD NNS . An abundant supply of petroleum products generally pushes prices downward . DT JJ NN IN NN NNS RB VBZ NNS RB . Officials in Thailand say at least 47 Burmese refugees have left a camp on the Thai-Burma border this week to begin life in the United States . NNS IN NNP VBP IN JJS CD JJ NNS VBP VBN DT NN IN DT NNP NN DT NN TO VB NN IN DT NNP NNPS . The officials say the group of ethnic Karen refugees are the latest to leave the Than Him camp since the resettlement operation began August 15 . DT NNS VBP DT NN IN JJ NNP NNS VBP DT JJS TO VB DT NNP NNP NN IN DT NN NN VBD NNP CD . The U.S. government has agreed to allow at least 2,500 of the refugees to resettle in the United States by the end of this year . DT NNP NN VBZ VBN TO VB IN JJS CD IN DT NNS TO VB IN DT NNP NNPS IN DT NN IN DT NN . The refugees fled to escape fighting between Karen guerrillas and the Burmese army . DT NNS VBD TO VB VBG IN NNP NNS CC DT JJ NN . Some have been in the overcrowded camp for more than 20 years . DT VBP VBN IN DT JJ NN IN JJR IN CD NNS . The United States issued a waiver to its immigration laws in May to allow many of the refugees to apply for resettlement in the U.S. DT NNP NNPS VBD DT NN TO PRP$ NN NNS IN NNP TO VB NN IN DT NNS TO VB IN NN IN DT NNP The U.S. embassy in Iraq says a rocket attack on Baghdad 's heavily fortified Green Zone has killed three people and wounded 15 others . DT NNP NN IN NNP VBZ DT NN NN IN NNP POS RB VBN NNP NNP VBZ VBN CD NNS CC VBD CD NNS . The embassy said those killed in the attack Thursday include two Ugandans and a Peruvian . DT NN VBD DT VBN IN DT NN NNP VBP CD NNS CC DT NN . All of the victims were working for an American security contractor . DT IN DT NNS VBD VBG IN DT JJ NN NN . The Green Zone is home to Iraqi government buildings as well as the U.S. embassy . DT NNP NNP VBZ NN TO JJ NN NNS RB RB IN DT NNP NN . Elsewhere in Iraq Thursday , gunmen killed at least two people in separate attacks , including a Sunni cleric . RB IN NNP NNP , NNS VBD IN JJS CD NNS IN JJ NNS , VBG DT NNP NN . Police say the cleric ( Fathi al-Nuaimi ) was killed in the northern city of Mosul . NNS VBP DT NN LRB NNP NNP RRB VBD VBN IN DT JJ NN IN NNP . In another attack in the city , gunmen killed a bystander after opening fire on a policeman . IN DT NN IN DT NN , NNS VBD DT NN IN VBG NN IN DT NN . Police say the officer and another civilian were wounded in the attack . NNS VBP DT NN CC DT JJ VBD VBN IN DT NN . Mosul has remained an active area for insurgents , even as security in other parts of the country has improved and violence has diminished . NNP VBZ VBN DT JJ NN IN NNS , RB IN NN IN JJ NNS IN DT NN VBZ VBN CC NN VBZ VBN . Oil prices fell more than two percent Wednesday as the U.S. government reported a bigger-than-expected rise in crude supplies . NN NNS VBD RBR IN CD NN NNP IN DT NNP NN VBD DT JJ NN IN NN NNS . The price of oil fell $ 1.16 from Tuesday 's close ( or 2.2 percent ) to $ 52.82 a barrel on the New York Mercantile Exchange . DT NN IN NN VBD $ CD IN NNP POS NN LRB CC CD NN RRB TO $ CD DT NN IN DT NNP NNP NNP NNP . A U.S. government report said U.S. crude supplies rose by 3.3 million barrels in the week that ended March 20 to a total of 356.6 million barrels . DT NNP NN NN VBD NNP NN NNS VBD IN CD CD NNS IN DT NN WDT VBD NNP CD TO DT NN IN CD CD NNS . Analysts had expected a rise of just over one million barrels . NNS VBD VBN DT NN IN RB IN CD CD NNS . Oil prices had jumped to a 3-month high of $ 54 a barrel Monday on expectations that a U.S. government plan to help ailing banks will trigger an economic recovery and boost energy demand . NN NNS VBD VBN TO DT JJ NN IN $ CD DT NN NNP IN NNS IN DT NNP NN NN TO VB JJ NNS MD VB DT JJ NN CC VB NN NN . Chinese President Hu Jintao is offering aid to some of the world 's poorest countries - but made much of the deal contingent on the state 's recognition of China over Taiwan . JJ NNP NNP NNP VBZ VBG NN TO DT IN DT NN POS JJS NNS : CC VBD NN IN DT NN JJ IN DT NN POS NN IN NNP IN NNP . Addressing the U.N. General Assembly Wednesday in New York , President Hu said China will eliminate tariffs on most products from the 39 least-developed countries with diplomatic ties to China . VBG DT NNP NNP NNP NNP IN NNP NNP , NNP NNP VBD NNP MD VB NNS IN JJS NNS IN DT CD JJ NNS IN JJ NNS TO NNP . He also announced a series of aid measures for poor countries that includes job training , medicines , debt forgiveness and a $ 10 billion loan program . PRP RB VBD DT NN IN NN NNS IN JJ NNS WDT VBZ NN NN , NNS , NN NN CC DT $ CD CD NN NN . He did not make clear whether all the aid measures he mentioned would apply only to China 's diplomatic partners . PRP VBD RB VB JJ IN PDT DT NN NNS PRP VBD MD VB RB TO NNP POS JJ NNS . Beijing does not allow countries to recognize both China and Taiwan , which it sees as a renegade province . NNP VBZ RB VB NNS TO VB DT NNP CC NNP , WDT PRP VBZ IN DT NN NN . Palestinian Authority President Mahmoud Abbas is in Turkey , for talks on the stalled Middle East peace process and the impact of a European freeze on aid to the Hamas-led Palestinian government . JJ NNP NNP NNP NNP VBZ IN NNP , IN NNS IN DT VBN NNP NNP NN NN CC DT NN IN DT JJ NN IN NN TO DT JJ JJ NN . Mr. Abbas is to meet with Turkish President Ahmet Necdet Sezer and Prime Minister Recep Tayyip Erdogan during his two-day visit . NNP NNP VBZ TO VB IN JJ NNP NNP NNP NNP CC NNP NNP NNP NNP NNP IN PRP$ JJ NN . He visits Norway , Finland and France later this week . PRP VBZ NNP , NNP CC NNP RB DT NN . The United States and the European Union cut off direct aid to the Palestinian government earlier this year , after Hamas refused to renounce violence and recognize Israel . DT NNP NNPS CC DT NNP NNP VBD RP JJ NN TO DT JJ NN RBR DT NN , IN NNP VBD TO VB NN CC VB NNP . Turkey maintains close ties with both Israel and the Palestinians , and has frequently offered to mediate their long-standing conflict . NNP VBZ JJ NNS IN DT NNP CC DT NNS , CC VBZ RB VBN TO VB PRP$ JJ NN . In February , the Ankara government angered Israel when it hosted a Hamas delegation for talks described as a push to persuade Hamas to renounce violence . IN NNP , DT NNP NN VBD NNP WRB PRP VBD DT NNP NN IN NNS VBN IN DT NN TO VB NNP TO VB NN . Pakistani officials say security forces have killed at least 23 militants in fighting that took place during a search operation in the country 's northwest . JJ NNS VBP NN NNS VBP VBN IN JJS CD NNS IN VBG WDT VBD NN IN DT NN NN IN DT NN POS NN . The clash took place in Khyber Pakhtunkhwa province on Tuesday , a day after militants launched a suicide bomb attack near a paramilitary base , killing one soldier . DT NN VBD NN IN NNP NNP NN IN NNP , DT NN IN NNS VBD DT NN NN NN IN DT JJ NN , VBG CD NN . Officials say Tuesday 's gunbattle began when militants opened fire on troops searching the area . NNS VBP NNP POS NN VBD WRB NNS VBD NN IN NNS VBG DT NN . Pakistan 's military carried out a major offensive against the Taliban in Lower Dir and neighboring Swat Valley last year . NNP POS NN VBD RP DT JJ NN IN DT NNP IN NNP NNP CC JJ NNP NNP JJ NN . Zimbabwe 's main labor union says two South African-based trade union workers were deported Wednesday shortly after they arrived in Harare where they were planning to discuss the establishment of a trade union school . NNP POS JJ NN NN VBZ CD NNP JJ NN NN NNS VBD VBN NNP RB IN PRP VBD IN NNP WRB PRP VBD VBG TO VB DT NN IN DT NN NN NN . The Zimbabwe Congress of Trade Unions ( ZCTU ) said immigration officials told Bobbie Marie and Vihemina Prout to return home , because they did not have a clearance from the Ministry of Labor to meet union officials . DT NNP NNP IN NNP NNP LRB NNP RRB VBD NN NNS VBD NNP NNP CC NNP NNP TO VB NN , IN PRP VBD RB VB DT NN IN DT NNP IN NNP TO VB NN NNS . ZCTU secretary-general Wellington Chibebe said the latest deportation proves that Zimbabwe is a nation ' under seige . ' NNP JJ NNP NNP VBD DT JJS NN VBZ IN NNP VBZ DT NN `` IN NN . `` Last week , Zimbabwe expelled a delegation of the South African trade union COSATU , which tried to conduct a fact-finding mission in the country . JJ NN , NNP VBD DT NN IN DT JJ JJ NN NN NNP , WDT VBD TO VB DT JJ NN IN DT NN . The European Union 's Court of Human Rights has fined Russia for banning homosexual parades in Moscow . DT NNP NNP POS NNP IN NNP NNP VBZ VBN NNP IN VBG JJ NNS IN NNP . The Strasbourg-based court ruled Thursday that gay rights organizer Nikolai Alexeyev was discriminated against based on sexual orientation . DT JJ NN VBD NNP IN JJ NNS NN NNP NNP VBD VBN IN VBN IN JJ NN . It ordered Russia to pay more than $ 41,000 in damages and court costs to Alexeyev . PRP VBD NNP TO VB JJR IN $ CD IN NNS CC NN NNS TO NNP . Alexeyev told the court he and other organizers were denied permission to hold gay pride marches in 2006 , 2007 and 2008 . NNP VBD DT NN PRP CC JJ NNS VBD VBN NN TO VB JJ NN NNS IN CD , CD CC CD . The European rights court said the risk of a disturbance stemming from a demonstration was not sufficient to justify banning the parade . DT JJ NNS NN VBD DT NN IN DT NN VBG IN DT NN VBD RB JJ TO VB VBG DT NN . Former Moscow Mayor Yury Luzhkov once described gay parades as ' satanic . ' JJ NNP NNP NNP NNP RB VBD JJ NNS IN `` JJ . `` He was fired last month by Russian President Dmitry Medvedev . PRP VBD VBN JJ NN IN JJ NNP NNP NNP . Members of a delegation from the Congress of South African Trade Unions ( COSATU ) say they have been denied entry to Zimbabwe as they arrived in the capital , Harare for a fact-finding mission early Wednesday . NNS IN DT NN IN DT NNP IN NNP NNP NNP NNP LRB NNP RRB VBP PRP VBP VBN VBN NN TO VB IN PRP VBD IN DT NN , NNP IN DT JJ NN JJ NNP . The delegation members told reporters they were met at the airport by Zimbabwean officials who turned the group back . DT NN NNS VBD NNS PRP VBD VBN IN DT NN IN JJ NNS WP VBD DT NN RB . The delegation is expected to return to Johannesburg later today . DT NN VBZ VBN TO VB TO NNP RB NN . Zimbabwe 's government expelled a similar delegation last October and had warned the COSATU members that they would be deported or jailed . NNP POS NN VBD DT JJ NN JJ NNP CC VBD VBN DT NNP NNS IN PRP MD VB VBN CC VBN . The labor group said it intended to investigate Zimbabwe 's political climate ahead of general elections scheduled for next month . DT NN NN VBD PRP VBD TO VB NNP POS JJ NN RB IN JJ NNS VBN IN JJ NN . German Defense Minister Karl Theodor zu Guttenberg says Army Inspector General Wolfgang Schneiderhan failed to provide adequate information about the incident in which civilians were killed . JJ NNP NNP NNP NNP NNP NNP VBZ NNP NNP NNP NNP NNP VBD TO VB JJ NN IN DT NN IN WDT NNS VBD VBN . Germany 's top army officer has resigned over an investigation into a September air strike in Afghanistan in which civilians were among those killed . NNP POS JJ NN NN VBZ VBN IN DT NN IN DT NNP NN NN IN NNP IN WDT NNS VBD IN DT VBN . German Defense Minister Karl Theodor zu Guttenberg announced Thursday that General Wolfgang Schneiderhan had resigned . JJ NNP NNP NNP NNP NNP NNP VBD NNP IN NNP NNP NNP VBD VBN . Guttenberg told parliament that Schneiderhan failed to provide adequate information about the incident . NNP VBD NN IN NNP VBD TO VB JJ NN IN DT NN . An Afghan government-appointed commission said 30 civilians were killed in the September 4 air strike in northern Kunduz province . DT JJ JJ NN VBD CD NNS VBD VBN IN DT NNP CD NN NN IN JJ NNP NN . A commission investigator says 69 Taliban members were also killed after a German commander ordered the NATO strike on militants who had seized two fuel trucks . DT NN NN VBZ CD NNP NNS VBD RB VBN IN DT JJ NN VBD DT NNP NN IN NNS WP VBD VBN CD NN NNS . Initial NATO investigations indicated that civilians were among the victims . JJ NNP NNS VBD IN NNS VBD IN DT NNS . Turkish authorities say troops killed 10 Kurdish rebels in two operations since Monday . JJ NNS VBP NNS VBD CD JJ NNS IN CD NNS IN NNP . The officials say seven rebels were killed in fighting with soldiers in Siirt province . DT NNS VBP CD NNS VBD VBN IN VBG IN NNS IN NNP NN . Three other rebels were shot and killed in Van province . CD JJ NNS VBD VBN CC VBN IN NNP NN . Authorities believe the three entered the area from Iran . NNS VBP DT CD VBD DT NN IN NNP . Turkey 's military has recently intensified operations against the separatist Kurdistan Workers Party ( PKK ) . NNP POS NN VBZ RB VBN NNS IN DT JJ NNP NNP NNP LRB NNP RRB . The PKK has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 . DT NNP VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD . The United States , the European Union and Turkey classify the PKK as a terrorist group . DT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN . The Sultanate of Brunei 's influence peaked between the 15th and 17th centuries when its control extended over coastal areas of northwest Borneo and the southern Philippines . DT NNP IN NNP POS NN VBD IN DT JJ CC JJ NNS WRB PRP$ NN VBD IN JJ NNS IN JJ NNP CC DT JJ NNP . Brunei subsequently entered a period of decline brought on by internal strife over royal succession , colonial expansion of European powers , and piracy . NNP RB VBD DT NN IN NN VBN RP IN JJ NN IN JJ NN , JJ NN IN JJ NNS , CC NN . In 1888 , Brunei became a British protectorate ; independence was achieved in 1984 . IN CD , NNP VBD DT JJ NN ; NN VBD VBN IN CD . The same family has ruled Brunei for over six centuries . DT JJ NN VBZ VBN NNP IN IN CD NNS . Brunei benefits from extensive petroleum and natural gas fields , the source of one of the highest per capita GDPs in Asia . NNP NNS IN JJ NN CC JJ NN NNS , DT NN IN CD IN DT JJS IN NN NNS IN NNP . First inhabited by Arawak and later by Carib Indians , the Virgin Islands were settled by the Dutch in 1648 and then annexed by the English in 1672 . RB VBN IN NNP CC RB IN NNP NNS , DT NNP NNP VBD VBN IN DT NNS IN CD CC RB VBN IN DT NNS IN CD . The islands were part of the British colony of the Leeward Islands from 1872 - 1960 ; they were granted autonomy in 1967 . DT NNS VBD NN IN DT JJ NN IN DT NNP NNP IN CD IN CD ; PRP VBD VBN NN IN CD . The economy is closely tied to the larger and more populous US Virgin Islands to the west ; the US dollar is the legal currency . DT NN VBZ RB VBN TO DT JJR CC JJR JJ NNP NNP NNP TO DT NN ; DT NNP NN VBZ DT JJ NN . Aided by peace and neutrality for the whole of the 20th century , Sweden has achieved an enviable standard of living under a mixed system of high-tech capitalism and extensive welfare benefits . VBN IN NN CC NN IN DT NN IN DT JJ NN , NNP VBZ VBN DT JJ NN IN VBG IN DT JJ NN IN JJ NN CC JJ NN NNS . It has a modern distribution system , excellent internal and external communications , and a skilled labor force . PRP VBZ DT JJ NN NN , JJ JJ CC JJ NNS , CC DT JJ NN NN . In September 2003 , Swedish voters turned down entry into the euro system concerned about the impact on the economy and sovereignty . IN NNP CD , JJ NNS VBD RP NN IN DT NN NN VBN IN DT NN IN DT NN CC NN . Timber , hydropower , and iron ore constitute the resource base of an economy heavily oriented toward foreign trade . NNP , NN , CC NN NN VBP DT NN NN IN DT NN RB VBN IN JJ NN . Privately owned firms account for about 90 % of industrial output , of which the engineering sector accounts for 50 % of output and exports . RB VBN NNS VBP IN RB CD NN IN JJ NN , IN WDT DT NN NN VBZ IN CD NN IN NN CC NNS . Agriculture accounts for little more than 1 % of GDP and of employment . NNP NNS IN RB JJR IN CD NN IN NN CC IN NN . Until 2008 , Sweden was in the midst of a sustained economic upswing , boosted by increased domestic demand and strong exports . IN CD , NNP VBD IN DT NN IN DT JJ JJ NN , VBN IN VBN JJ NN CC JJ NNS . This and robust finances offered the center-right government considerable scope to implement its reform program aimed at increasing employment , reducing welfare dependence , and streamlining the state 's role in the economy . DT CC JJ NNS VBD DT JJ NN JJ NN TO VB PRP$ NN NN VBN IN VBG NN , VBG NN NN , CC VBG DT NN POS NN IN DT NN . Despite strong finances and underlying fundamentals , the Swedish economy slid into recession in the third quarter of 2008 and growth continued downward in 2009 as deteriorating global conditions reduced export demand and consumption . IN JJ NNS CC VBG NNS , DT JJ NN VBD IN NN IN DT JJ NN IN CD CC NN VBD JJ IN CD IN VBG JJ NNS VBN NN NN CC NN . Strong exports of commodities and a return to profitability by Sweden 's banking sector drove the strong rebound in 2010 . JJ NNS IN NNS CC DT NN TO NN IN NNP POS NN NN VBD DT JJ NN IN CD . El Salvador achieved independence from Spain in 1821 and from the Central American Federation in 1839 . NNP NNP VBD NN IN NNP IN CD CC IN DT NNP NNP NNP IN CD . A 12-year civil war , which cost about 75,000 lives , was brought to a close in 1992 when the government and leftist rebels signed a treaty that provided for military and political reforms . DT JJ JJ NN , WDT VBD IN CD NNS , VBD VBN TO DT NN IN CD WRB DT NN CC JJ NNS VBD DT NN WDT VBD IN JJ CC JJ NNS . A HARE one day ridiculed the short feet and slow pace of the Tortoise , who replied , laughing : DT NN CD NN VBD DT JJ NNS CC JJ NN IN DT NN , WP VBD , VBG : ' Though you be swift as the wind , I will beat you in a race . ' `` IN PRP VB JJ IN DT NN , PRP MD VB PRP IN DT NN . `` The Hare , believing her assertion to be simply impossible , assented to the proposal ; and they agreed that the Fox should choose the course and fix the goal . DT NN , VBG PRP$ NN TO VB RB JJ , VBN TO DT NN ; CC PRP VBD IN DT NN MD VB DT NN CC VB DT NN . On the day appointed for the race the two started together . IN DT NN VBN IN DT NN DT CD VBD RB . The Tortoise never for a moment stopped , but went on with a slow but steady pace straight to the end of the course . DT NN RB IN DT NN VBD , CC VBD IN IN DT JJ CC JJ NN RB TO DT NN IN DT NN . The Hare , lying down by the wayside , fell fast asleep . DT NN , VBG RP IN DT NN , VBD RB JJ . At last waking up , and moving as fast as he could , he saw the Tortoise had reached the goal , and was comfortably dozing after her fatigue . IN JJ VBG RP , CC VBG RB RB IN PRP MD , PRP VBD DT NN VBD VBN DT NN , CC VBD RB VBG IN PRP$ NN . Slow but steady wins the race . NNP CC JJ NNS DT NN . AN OWL , in her wisdom , counseled the Birds that when the acorn first began to sprout , to pull it all up out of the ground and not allow it to grow . DT NN , IN PRP$ NN , VBD DT NNS WDT WRB DT NN RB VBD TO VB , TO VB PRP DT RP IN IN DT NN CC RB VB PRP TO VB . She said acorns would produce mistletoe , from which an irremediable poison , the bird-lime , would be extracted and by which they would be captured . PRP VBD NNS MD VB NN , IN WDT DT JJ NN , DT NN , MD VB VBN CC IN WDT PRP MD VB VBN . The Owl next advised them to pluck up the seed of the flax , which men had sown , as it was a plant which boded no good to them . DT NN RB VBD PRP TO VB RP DT NN IN DT NN , WDT NNS VBD VBN , IN PRP VBD DT NN WDT VBD DT JJ TO PRP . And , lastly , the Owl , seeing an archer approach , predicted that this man , being on foot , would contrive darts armed with feathers which would fly faster than the wings of the Birds themselves . CC , RB , DT NNP , VBG DT NN NN , VBD IN DT NN , VBG IN NN , MD VB NNS VBN IN NNS WDT MD VB JJR IN DT NNS IN DT NNS PRP . The Birds gave no credence to these warning words , but considered the Owl to be beside herself and said that she was mad . DT NNS VBD DT NN TO DT NN NNS , CC VBD DT NN TO VB IN PRP CC VBD IN PRP VBD JJ . But afterwards , finding her words were TRUE , they wondered at her knowledge and deemed her to be the wisest of birds . CC NNS , VBG PRP$ NNS VBD JJ , PRP VBD IN PRP$ NN CC VBD PRP TO VB DT JJS IN NNS . Hence it is that when she appears they look to her as knowing all things , while she no longer gives them advice , but in solitude laments their past folly . NN PRP VBZ IN WRB PRP VBZ PRP VBP TO PRP IN VBG DT NNS , IN PRP RB RB VBZ PRP NN , CC IN NN NNS PRP$ JJ NN . Six Afghan police officers and two U.S. soldiers have been killed in separate roadside bombings in southern Afghanistan . CD JJ NN NNS CC CD NNP NNS VBP VBN VBN IN JJ NN NNS IN JJ NNP . Afghan officials say the police officers were killed and four others wounded Monday when a bomb ripped through their vehicle in the Khakrez district of Kandahar province . JJ NNS VBP DT NN NNS VBD VBN CC CD NNS VBD NNP WRB DT NN VBN IN PRP$ NN IN DT NNP NN IN NNP NN . The Taliban claimed responsibility for the attack . DT NNP VBD NN IN DT NN . Two American soldiers were killed in separate bomb attacks in the south Monday . CD JJ NNS VBD VBN IN JJ NN NNS IN DT NN NNP . NATO did not give details . NNP VBD RB VB NNS . Militants have stepped up attacks as U.S.-led NATO and Afghan forces work to clear Kandahar and surrounding areas of Taliban insurgents . NNS VBP VBN RP NNS IN JJ NNP CC JJ NNS VBP TO JJ NNP CC VBG NNS IN NNP NNS . The latest violence comes as the Afghan government prepares to host a major international conference on Afghanistan in Kabul Tuesday . DT JJS NN VBZ IN DT JJ NN VBZ TO VB DT JJ JJ NN IN NNP IN NNP NNP . VOA 's Creole Service has set up a hotline to help Haitians everywhere reach their loved ones , after Tuesday 's devastating earthquake destroyed much of the capital , Port-au-Prince . NNP POS NNP NNP VBZ VBN RP DT NN TO VB NNS RB VBP PRP$ VBN NNS , IN NNP POS JJ NN VBD NN IN DT NN , NNP . People can call the Creole service at 202-205-9942 to leave messages for their family members that will be broadcast on the service 's radio programs . NNS MD VB DT NNP NNP IN NNP TO VB NNS IN PRP$ NN NNS WDT MD VB VBN IN DT NN POS NN NNS . Messages can be left in either Creole or English . NNS MD VB VBN IN DT NNP CC NNP . Creole service chief Ronald Cesar says VOA Creole also has extended its broadcast hours and is reaching out on Facebook and Twitter . NNP NN NN NNP NNP VBZ NNP NNP RB VBZ VBN PRP$ NN NNS CC VBZ VBG RP IN NNP CC NNP . VOA continues to broadcast on shortwave . NNP VBZ TO VB IN NN . But because most of its satellite affiliates in Haiti are off the air , the Creole service also is using a Florida-based AM frequency to reach listeners in the country . CC IN JJS IN PRP$ NN NNS IN NNP VBP IN DT NN , DT NNP NN RB VBZ VBG DT JJ NNP NN TO VB NNS IN DT NN . The French government said it has arrested the suspected military leader of the Basque terrorist group ETA near the Spanish border . DT JJ NN VBD PRP VBZ VBN DT JJ JJ NN IN DT JJ JJ NN NNP IN DT JJ NN . From Paris , Lisa Bryant reports for VOA the arrest marks a further blow for hardline members of ETA . IN NNP , NNP NNP VBZ IN NNP DT NN VBZ DT JJ NN IN JJ NNS IN NNP . The French government said it had arrested suspected ETA miliatry leader Garikoitz Aspiazu Rubina along with a female colleague early Monday in the Pyrenees region near the border with Spain . DT JJ NN VBD PRP VBD VBN JJ NNP NN NN NNP NNP NNP IN IN DT JJ NN RB NNP IN DT NNP NN IN DT NN IN NNP . Interior Minister Michele Alliot-Marie outlined some details of the arrests to French radio . NNP NNP NNP NNP VBD DT NNS IN DT NNS TO JJ NN . Alliot-Marie said Aspiazu Rubina - known by his alias Txeroki - was suspected of killing two young police officers a year ago . NNP VBD NNP NNP : VBN IN PRP$ NNS NNP : VBD VBN IN VBG CD JJ NN NNS DT NN RB . Spain has also been hunting for him on suspicion of being behind a number of other attacks there . NNP VBZ RB VBN VBG IN PRP IN NN IN VBG IN DT NN IN JJ NNS RB . They include a 2006 bombing of a Madrid airport that killed two people . PRP VBP DT CD NN IN DT NNP NN WDT VBD CD NNS . Both France and Spain have hailed the arrest as a blow to ETA , which is blamed for more than 800 deaths in Spain during its 40-year campaign for an independent Basque state . DT NNP CC NNP VBP VBN DT NN IN DT NN TO NNP , WDT VBZ VBN IN JJR IN CD NNS IN NNP IN PRP$ JJ NN IN DT JJ JJ NN . Spanish Prime Minister Jose Luis Rodriguez Zapatero said ETA was weaker and Spanish democracy was stronger because of the arrest . JJ NNP NNP NNP NNP NNP NNP VBD NNP VBD JJR CC JJ NN VBD JJR IN IN DT NN . Analysts said it further undermines ETA 's hard-line leadership , which has already suffered from the arrests of a number of its members in recent years as part of stepped up French and Spanish efforts against the group . NNS VBD PRP RB VBZ NNP POS JJ NN , WDT VBZ RB VBN IN DT NNS IN DT NN IN PRP$ NNS IN JJ NNS IN NN IN VBN IN JJ CC JJ NNS IN DT NN . Some experts believe the arrests may give voice to moderates in the Basque group who back dialogue rather than arms to achieve their aims . DT NNS VBP DT NNS MD VB NN TO NNS IN DT NNP NN WP VBP NN RB IN NNS TO VB PRP$ NNS . ETA has been blamed for killing five people after renouncing a unilateral ceasefire in 2007 . NNP VBZ VBN VBN IN VBG CD NNS IN VBG DT JJ NN IN CD . The U.S. military says coalition soldiers in Iraq have killed 24 insurgents who attacked a coalition convoy outside Baghdad . DT NNP NN VBZ NN NNS IN NNP VBP VBN CD NNS WP VBD DT NN NN IN NNP . Authorities say six troops and seven insurgents were wounded in the fighting , which occurred late Sunday about 30 kilometers southeast of the capital . NNS VBP CD NNS CC CD NNS VBD VBN IN DT NN , WDT VBD JJ NNP IN CD NNS NN IN DT NN . Elsewhere , authorities say a car bomb exploded Monday in the center of Samarra , wounding at least 10 people . RB , NNS VBP DT NN NN VBD NNP IN DT NN IN NNP , VBG IN JJS CD NNS . The Associated Press says a truck loaded with explosives apparently detonated prematurely near a hospital . DT NNP NNP VBZ DT NN VBN IN NNS RB VBD RB IN DT NN . Separately , one U.S. soldier was killed in an insurgent attack in Kirkuk , while another soldier and a Marine were killed during security operations in Al Anbar province , west of Baghdad . RB , CD NNP NN VBD VBN IN DT JJ NN IN NNP , IN DT NN CC DT NN VBD VBN IN NN NNS IN NNP NNP NN , NN IN NNP . U.S. auto giant General Motors is reported to be in preliminary talks with Chrysler about a possible merger . NNP NN NN NNP NNP VBZ VBN TO VB IN JJ NNS IN NNP IN DT JJ NN . The New York Times and The Wall Street Journal cite people familiar with the discussions . DT NNP NNP NNP CC DT NNP NNP NNP VBP NNS JJ IN DT NNS . They say the talks began last month between GM and Cerberus Capital Management , a private equity firm that owns Chrysler . PRP VBP DT NNS VBD JJ NN IN NNP CC NNP NNP NNP , DT JJ NN NN WDT VBZ NNP . The possible merger could reduce the so-called ' Big Three ' automakers of Detroit to the Big Two . DT JJ NN MD VB DT JJ `` NNP CD `` NNS IN NNP TO DT NNP CD . Ford is also based in Detroit . NNP VBZ RB VBN IN NNP . The New York Times reports Cerberus is also in talks with other automakers , including Nissan and Renault . DT NNP NNP NNP VBZ NNP VBZ RB IN NNS IN JJ NNS , VBG NNP CC NNP . The global financial crisis has increased fears the Unites States ' biggest automakers could be forced into bankruptcy . DT JJ JJ NN VBZ VBN NNS DT NNP NNPS POS JJS NNS MD VB VBN IN NN . Car sales have fallen sharply and analysts say potential car buyers can not get loans . NN NNS VBP VBN RB CC NNS VBP JJ NN NNS MD RB VB NNS . Delegates to the United Nations Climate Change conference in Montreal have agreed to launch more talks on long term cuts in greenhouse gasses after marathon negotiations extended into an unscheduled 13th day . NNS TO DT NNP NNPS NNP NNP NN IN NNP VBP VBN TO VB JJR NNS IN JJ NN NNS IN NN NNS IN NN NNS VBD IN DT JJ JJ NN . The officials reached agreement early Saturday after all-night meetings . DT NNS VBD NN JJ NNP IN JJ NNS . The talks had stalled when the U.S. delegation did not approve the text of a Canadian proposal for future talks on the issue . DT NNS VBD VBN WRB DT NNP NN VBD RB VB DT NN IN DT JJ NN IN JJ NNS IN DT NN . President Bush withdrew from the current Kyoto Protocol in 2001 , saying its limits on greenhouse gasses would harm the U.S. economy because developing countries were not held to the same standards . NNP NNP VBD IN DT JJ NNP NNP IN CD , VBG PRP$ NNS IN NN NNS MD VB DT NNP NN IN VBG NNS VBD RB VBN TO DT JJ NNS . Former president Bill Clinton says the Bush administration is ' flat wrong . ' JJ NN NNP NNP VBZ DT NNP NN VBZ `` JJ JJ . `` Also Saturday , Kyoto Protocol members agreed to hold more talks among themselves on emission cuts beyond the current phase of the treaty which ends in 2012 . RB NNP , NNP NNP NNS VBD TO VB JJR NNS IN PRP IN NN NNS IN DT JJ NN IN DT NN WDT VBZ IN CD . African Union mediators who are brokering peace talks among warring parties in Sudan 's Darfur region have extended by 48 hours a deadline on negotiations . NNP NNP NNS WP VBP VBG NN NNS IN VBG NNS IN NNP POS NNP NN VBP VBN IN CD NNS DT NN IN NNS . The initial deadline expired at midnight Sunday , but the lead mediator for the AU , Salim Ahmed Salim said early Monday the deadline was extended following a request from the United States . DT JJ NN VBD IN NN NNP , CC DT NN NN IN DT NNP , NNP NNP NNP VBD JJ NNP DT NN VBD VBN VBG DT NN IN DT NNP NNPS . The government of Sudan had said it was prepared to sign the peace agreement which was the result of two years of talks . DT NN IN NNP VBD VBN PRP VBD VBN TO VB DT NN NN WDT VBD DT NN IN CD NNS IN NNS . But rebel groups said on Sunday they would not sign and insisted on changes . CC NN NNS VBD IN NNP PRP MD RB VB CC VBD IN NNS . The rebels said they wanted better terms for integrating their forces into the Sudanese army , and for disarming pro-government Janjaweed militias . DT NNS VBD PRP VBD JJR NNS IN VBG PRP$ NNS IN DT JJ NN , CC IN VBG JJ NNP NNS . Three years of violence in Darfur between government-backed forces and Darfur rebels have left tens of thousands of people dead and more than two million displaced . CD NNS IN NN IN NNP IN JJ NNS CC NNP NNS VBP VBN NNS IN NNS IN NNS JJ CC JJR IN CD CD VBD . U.N. troops have exchanged gunfire with gang members in Haiti 's largest slum in the first such confrontation in weeks . NNP NNS VBP VBN NN IN NN NNS IN NNP POS JJS NN IN DT JJ JJ NN IN NNS . U.N. officials late Thursday said the trouble happened Wednesday , in the Cite Soleil slum after gunmen shot at the peacekeepers . NNP NNS JJ NNP VBD DT NN VBD NNP , IN DT NNP NNP NN IN NNS VBD IN DT NNS . Officials could not confirm reports of casualties but said no peacekeepers were injured . NNS MD RB VB NNS IN NNS CC VBD DT NNS VBD VBN . Cite Soleil was a focal point of violence following the February 2004 ouster of President Jean-Bertrand Aristide . NNP NNP VBD DT JJ NN IN NN VBG DT NNP CD NN IN NNP NNP NNP . Also this week , Haiti 's Parliament approved a new Cabinet in a vote that formally confirms President Rene Preval 's choice for prime minister , Jacques Edouard Alexis . RB DT NN , NNP POS NNP VBD DT JJ NNP IN DT NN WDT RB VBZ NNP NNP NNP POS NN IN JJ NN , NNP NNP NNP . President Preval was sworn in last month after winning elections in February . NNP NNP VBD VBN IN JJ NN IN VBG NNS IN NNP . Turkish media say the prosecutor 's office has started a legal process to shut the country 's main pro-Kurdish political party , alleging it has ties to Kurdish rebels . JJ NNS VBP DT NN POS NN VBZ VBN DT JJ NN TO VB DT NN POS JJ JJ JJ NN , VBG PRP VBZ NNS IN JJ NNS . The reports say Turkey 's chief prosecutor , Abdurrahman Yalcinkaya , filed a case at the Constitutional Court to ban the Democratic Society Party - the DTP . DT NNS VBP NNP POS NN NN , NNP NNP , VBD DT NN IN DT NNP NNP TO VB DT JJ NNP NNP IN DT NNP . The move follows the DTP 's call for autonomy for the mainly Kurdish region of southeastern Turkey as a way to resolve more than two decades of separatist violence spearheaded by the Kurdistan Workers Party - the PKK . DT NN VBZ DT NNP POS NN IN NN IN DT RB JJ NN IN JJ NNP IN DT NN TO VB JJR IN CD NNS IN JJ NN VBN IN DT NNP NNP NNP IN DT NNP . In the past , Turkey has banned pro-Kurdish parties for links to PKK rebels . IN DT NN , NNP VBZ VBN JJ NNS IN NNS TO NNP NNS . Turkey has been pressing Iraq to crack down on PKK guerrillas who shelter in northern Iraq . NNP VBZ VBN VBG NNP TO VB RP IN NNP NNS WP VBP IN JJ NNP . Turkey has also threatened cross-border military operations against the PKK . NNP VBZ RB VBN JJ JJ NNS IN DT NNP . The Iraqi election commission says the main Shi'ite coalition has maintained a strong showing in Sunday 's landmark elections . DT JJ NN NN VBZ DT JJ NNP NN VBZ VBN DT JJ NN IN NNP POS NN NNS . Partial results show the United Iraqi Alliance , which has the support of influential Shi'ite cleric Grand Ayatollah Ali al-Sistani , with 2.2 million of the 3.3 million votes counted so far . JJ NNS VBP DT NNP JJ NNP , WDT VBZ DT NN IN JJ NNP NN NNP NNP NNP NNP , IN CD CD IN DT CD CD NNS VBN RB RB . The party of interim Prime Minister Iyad Allawi is in second place with less than 20 percent support . DT NN IN JJ NNP NNP NNP NNP VBZ IN JJ NN IN JJR IN CD NN NN . The results so far are from mainly Shi'ite regions , and a complete tabulation is not expected for another week . DT NNS RB RB VBP IN RB JJ NNS , CC DT JJ NN VBZ RB VBN IN DT NN . Meanwhile , the U.S. military says an American soldier was killed Thursday when a troop convoy was hit by a roadside bomb in the northern city of Mosul . RB , DT NNP NN VBZ DT JJ NN VBD VBN NNP WRB DT NN NN VBD VBN IN DT NN NN IN DT JJ NN IN NNP . Thousands of Ugandans took to the streets Monday to celebrate the release on bail of opposition leader Kizza Besigye . NNS IN NNS VBD TO DT NNS NNP TO VB DT NN IN NN IN NN NN NNP NNP . Dr. Besigye walked out of a Kampala courthouse Monday after a Ugandan High Court judge , John Bosco Katutsi , ruled his detention by the military was illegal . NNP NNP VBD IN IN DT NNP NN NNP IN DT JJ NNP NNP NN , NNP NNP NNP , VBD PRP$ NN IN DT NN VBD JJ . Police fired tear gas to disperse the celebrating supporters . NNS VBD JJ NN TO VB DT VBG NNS . The military had held Dr. Besigye since November , when he returned from self-imposed exile to run in next month 's elections against President Yoweri Museveni . DT NN VBD VBN NNP NNP IN NNP , WRB PRP VBD IN JJ NN TO VB IN JJ NN POS NNS IN NNP NNP NNP . A military tribunal has charged Dr. Besigye with terrorism and illegal firearms possession . DT JJ NN VBZ VBN NNP NNP IN NN CC JJ NNS NN . But the judge said the military 's authority to hold him expired last month , when the High Court ordered the tribunal suspended . CC DT NN VBD DT NN POS NN TO VB PRP VBN JJ NN , WRB DT NNP NNP VBD DT NN VBD . Dr. Besigye still faces civilian charges of rape and treason . NNP NNP RB VBZ JJ NNS IN NN CC NN . He has denied all the charges , which supporters say are politically motivated . PRP VBZ VBN PDT DT NNS , WDT NNS VBP VBP RB JJ . Official Iranian news reports say parliament has rejected President Mahmoud Ahmadinejad 's third nominee for the post of oil minister . NNP JJ NN NNS VBP NN VBZ VBN NNP NNP NNP POS JJ NN IN DT NN IN NN NN . The reports say Mohsen Tasalouti - a trained architect - failed Wednesday to win a vote of confidence , after lawmakers argued he was not qualified to run the all-important ministry . DT NNS VBP NNP NNP IN DT JJ NN : VBD NNP TO VB DT NN IN NN , IN NNS VBD PRP VBD RB VBN TO VB DT JJ NN . Oil exports generate 80 percent of Iran 's public revenues . NN NNS VBP CD NN IN NNP POS JJ NNS . The president 's first nominee for the post , Ali Saeedlou was rejected in August by lawmakers who said he was not qualified . DT NN POS JJ NN IN DT NN , NNP NNP VBD VBN IN NNP IN NNS WP VBD PRP VBD RB VBN . A second nominee , General Sadeq Mahsouli - a Revolutionary Guards commander with no oil experience - withdrew his candidacy earlier this month when it became clear parliament would reject him as well . DT JJ NN , NNP NNP NNP IN DT JJ NNP NN IN DT NN NN : VBD PRP$ NN RBR DT NN WRB PRP VBD JJ NN MD VB PRP RB RB . The ministry is currently being run by a deputy oil minister under former President Mohammed Khatami . DT NN VBZ RB VBG VBN IN DT JJ NN NN IN JJ NNP NNP NNP . Israel 's elder statesman , Nobel laureate Shimon Peres , has been ousted as the Labor party leader by a trade unionist who says he will quit the ruling coalition government and force early elections . NNP POS NN NN , NNP NN NNP NNP , VBZ VBN VBN IN DT NNP NN NN IN DT NN NN WP VBZ PRP MD VB DT NN NN NN CC NN JJ NNS . Trade union chief Amir Peretz won a vote among 1,00,000 rank-and-file Labor Party members Thursday . NNP NN NN NNP NNP VBD DT NN IN CD JJ NNP NNP NNS NNP . A short while after his upset win , Mr. Peretz said he would press Prime Minister Ariel Sharon to set a date for national elections . DT JJ NN IN PRP$ JJ NN , NNP NNP VBD PRP MD VB NNP NNP NNP NNP TO VB DT NN IN JJ NNS . Mr. Peretz linked Labor 's pullout from the ruling coalition to party opposition to free market reforms and spending cuts . NNP NNP VBD NNP POS NN IN DT NN NN TO NN NN TO JJ NN NNS CC NN NNS . Mr. Peres brought his party into the ruling coalition last year as a junior partner to help back Prime Minister Sharon 's evacuation of Jewish settlers from the Gaza Strip . NNP NNP VBD PRP$ NN IN DT NN NN JJ NN IN DT JJ NN TO VB RB NNP NNP NNP POS NN IN JJ NNS IN DT NNP NNP . Most analysts had expected Mr. Peres , a former prime minister , to retain his party 's leadership post . JJS NNS VBD VBN NNP NNP , DT JJ JJ NN , TO VB PRP$ NN POS NN NN . A spokesman for Iran 's Supreme National Security Council is denying a report that says the council head and top nuclear negotiator Hassan Rowhani has resigned . DT NN IN NNP POS NNP NNP NNP NNP VBZ VBG DT NN WDT VBZ DT NN NN CC JJ JJ NN NNP NNP VBZ VBN . Spokesman Ali Agha-Mohammadi says the resignation announcement published Wednesday by the state news agency IRNA was ' completely ' FALSE . NNP NNP NNP VBZ DT NN NN VBN NNP IN DT NN NN NN NNP VBD `` RB `` JJ . The IRNA report quoted an informed source as saying Mr. Rowhani , who heads ongoing nuclear talks with the European Union , has sent his resignation letter to outgoing President Mohammed Khatami . DT NNP NN VBD DT JJ NN IN VBG NNP NNP , WP VBZ JJ JJ NNS IN DT NNP NNP , VBZ VBN PRP$ NN NN TO VBG NNP NNP NNP . There has been growing media speculation in recent days that Mr. Rowhani would quit to allow President-elect Mahmoud Ahmadinejad to fill the position . EX VBZ VBN VBG NNS NN IN JJ NNS IN NNP NNP MD VB TO VB JJ NNP NNP TO VB DT NN . India and Burma have signed several new agreements to build stronger economic and defense ties , during a visit to India by Burma 's reclusive military ruler . NNP CC NNP VBP VBN JJ JJ NNS TO VB JJR JJ CC NN NNS , IN DT NN TO NNP IN NNP POS JJ JJ NN . Senior General Than Shwe , received a formal welcome Tuesday in New Delhi , where he met Prime Minister Manmohan Singh and other Indian officials . NNP NNP NNP NNP , VBD DT JJ JJ NNP IN NNP NNP , WRB PRP VBD NNP NNP NNP NNP CC JJ JJ NNS . The two countries signed five agreements following the talks , including a plan to jointly combat arms smuggling across their shared border . DT CD NNS VBD CD NNS VBG DT NNS , VBG DT NN TO RB VB NNS VBG IN PRP$ JJ NN . India also agreed to help Burma in a host of projects such as building roads , developing waterways , and a port . NNP RB VBD TO VB NNP IN DT NN IN NNS JJ IN NN NNS , VBG NNS , CC DT NN . Rights groups have criticized India for engaging with Burma , citing concerns about the Burmese government 's continued repression of its political opponents . NNS NNS VBP VBN NNP IN VBG IN NNP , VBG NNS IN DT JJ NN POS JJ NN IN PRP$ JJ NNS . Pro-democracy activists have held demonstrations in New Delhi to protest against Than Shwe 's five-day visit . JJ NNS VBP VBN NNS IN NNP NNP TO VB IN NNP NNP POS JJ NN . Aside from their shared border , Burma is of important strategic interest to India because of its large natural gas reserves . RB IN PRP$ JJ NN , NNP VBZ IN JJ JJ NN TO NNP IN IN PRP$ JJ JJ NN NNS . Gunmen in the Somali capital , Mogadishu , have killed the head of the U.N. Development Program for Somalia . NNS IN DT JJ NN , NNP , VBP VBN DT NN IN DT NNP NNP NNP IN NNP . Osman Ali Ahmed was shot dead Sunday as he left a Mogadishu mosque . NNP NNP NNP VBD VBN JJ NNP IN PRP VBD DT NNP NN . Witnesses say another man also was wounded in the attack . NNS VBP DT NN RB VBD VBN IN DT NN . No one has claimed responsibility . DT NN VBZ VBN NN . Attacks on aid workers and other officials are common in Somalia , where Islamist insurgents are fighting the Ethiopian-backed interim government . NNS IN NN NNS CC JJ NNS VBP JJ IN NNP , WRB NNP NNS VBP VBG DT JJ JJ NN . On Saturday , a land mine killed a Mogadishu city official and at least three security guards . IN NNP , DT NN NN VBD DT NNP NN NN CC IN JJS CD NN NNS . Somalia has not had a fully functioning central government since 1991 , when warlords overthrew dictator Mohamed Siad Barre and turned on each other . NNP VBZ RB VBN DT RB VBG JJ NN IN CD , WRB NNS VBP NN NNP NNP NNP CC VBD IN DT NN . The United States has called North Korea 's missile programs a global threat after the communist nation reportedly fired two missiles near its border with China . DT NNP NNP VBZ VBN NNP NNP POS NN NNS DT JJ NN IN DT JJ NN RB VBD CD NNS IN PRP$ NN IN NNP . Media reports differed on whether the missiles were launched as a test or by mistake . NNS NNS VBD IN IN DT NNS VBD VBN IN DT NN CC IN NN . However , a White House spokesman , Scott McClellan , said the launches were similar to previous tests carried out by North Korea . RB , DT NNP NNP NN , NNP NNP , VBD DT NNS VBD JJ TO JJ NNS VBN RP IN NNP NNP . Pyongyang has offered no public information about the missile launches . NNP VBZ VBN DT JJ NN IN DT NN NNS . Meanwhile , the chief U.S. negotiator at stalled nuclear talks , Christopher Hill , says North Korea is blocking progress in the negotiations . RB , DT JJ NNP NN IN VBN JJ NNS , NNP NNP , VBZ NNP NNP VBZ VBG NN IN DT NNS . Earlier Wednesday , a senior North Korean diplomat , Li Gun , repeated Pyongyang 's refusal to return to talks over its nuclear program until the United States lifts financial sanctions on North Korean assets . RBR NNP , DT JJ JJ JJ NN , NNP NNP , VBD NNP POS NN TO VB IN NNS IN PRP$ JJ NN IN DT NNP NNPS VBZ JJ NNS IN JJ JJ NNS . The United Nations anti-drug chief has called for a strong military action by NATO forces to destroy the opium industry in southern Afghanistan . DT NNP NNP JJ NN VBZ VBN IN DT JJ JJ NN IN NNP NNS TO VB DT NN NN IN JJ NNP . Head of the U.N. Office on Drugs and Crime Antonio Maria Costa Tuesday urged NATO countries to give the alliance the mandate to stop what he called the vicious circle of drugs funding terrorists and terrorists protecting drug traffickers . NNP IN DT NNP NNP IN NNP CC NNP NNP NNP NNP NNP VBD NNP NNS TO VB DT NN DT NN TO VB WP PRP VBD DT JJ NN IN NNS VBG NNS CC NNS VBG NN NNS . In an unrelated development , a U.S.-led coalition soldier died and another one was injured when their armored vehicle rolled over during a combat mission in eastern Kunar province late Monday . IN DT JJ NN , DT JJ NN NN VBD CC DT CD VBD VBN WRB PRP$ JJ NN VBD RP IN DT NN NN IN JJ NNP NN JJ NNP . Separately , unknown gunmen kidnapped a Colombian aid worker and two Afghan employees of a French-funded aid agency in central Wardak province . RB , JJ NNS VBD DT JJ NN NN CC CD JJ NNS IN DT JJ NN NN IN JJ NNP NN . Local officials say the three disappeared Sunday and that police are looking for them . JJ NNS VBP DT CD VBN NNP CC IN NNS VBP VBG IN PRP . It is not clear why they were in the remote area . PRP VBZ RB JJ WRB PRP VBD IN DT JJ NN . The U.S. has reopened its embassy and other offices in South Africa , three days after closing them because of a security threat . DT NNP VBZ VBN PRP$ NN CC JJ NNS IN NNP NNP , CD NNS IN VBG PRP IN IN DT NN NN . U.S. Embassy spokeswoman Sharon Hudson-Dean said the embassy in Pretoria and other facilities were open for business Friday . NNP NNP NN NNP NNP VBD DT NN IN NNP CC JJ NNS VBD JJ IN NN NNP . U.S. officials have not given any details about the threat that prompted them to close the embassy , three consulates , and U.S. aid offices on Tuesday . NNP NNS VBP RB VBN DT NNS IN DT NN WDT VBD PRP TO VB DT NN , CD NNS , CC NNP NN NNS IN NNP . However , a South African newspaper said the United States took action following a threat from an al-Qaida splinter group . RB , DT JJ JJ NN VBD DT NNP NNPS VBD NN VBG DT NN IN DT NNP NN NN . In a Thursday report , The Pretoria News said the splinter group telephoned the embassy Monday and apparently gave detailed information about possible attacks against several U.S. government buildings in South Africa . IN DT NNP NN , DT NNP NNP VBD DT NN NN VBD DT NN NNP CC RB VBD JJ NN IN JJ NNS IN JJ NNP NN NNS IN NNP NNP . The newspaper says its information is from ' well-placed security sources . ' DT NN VBZ PRP$ NN VBZ IN `` JJ NN NNS . `` It cites an intelligence source as saying the call to the embassy is believed to have come from South Africa . PRP VBZ DT NN NN IN VBG DT NN TO DT NN VBZ VBN TO VB VBN IN NNP NNP . Defending champion Serena Williams of the United States has advanced to the third round of the Australian Open tennis tournament in Melbourne , taking less than an hour to beat Camille Pin of France 06-Mar , 06-Jan . VBG NN NNP NNP IN DT NNP NNPS VBZ VBN TO DT JJ NN IN DT JJ NNP NN NN IN NNP , VBG JJR IN DT NN TO VB NNP NNP IN NNP CD , CD . Top seeded American Lindsay Davenport won her second round match today , beating Karolina Sprem of Croatia 07-Jun , 06-Mar . NN VBN JJ NNP NNP VBD PRP$ JJ NN NN NN , VBG NNP NNP IN NNP CD , CD . Fourth seeded Maria Sharapova of Russia dispatched of Ashley Harkleroad of the United States in straight sets , 06-Jan , 07-May . JJ VBN NNP NNP IN NNP VBD IN NNP NNP IN DT NNP NNPS IN JJ NNS , CD , CD . Other women advancing Wednesday included sixth seeded Nadia Petrova of Russia and eighth-seeded Justine Henin-Hardenne of Belgium . JJ NNS VBG NNP VBD JJ JJ NNP NNP IN NNP CC JJ NNP NNP IN NNP . On the men 's side , second seeded Andy Roddick of the United States advanced to the third round , after beating South African Wesley Moodie , 07-May , 06-Mar , 06-Feb . IN DT NNS POS NN , JJ JJ NNP NNP IN DT NNP NNPS VBD TO DT JJ NN , IN VBG JJ JJ NNP NNP , CD , CD , CD . Also winning their second round matches were seventh seeded Ivan Ljubicic of Croatia , eighth seed Gaston Gaudio of Argentina and number 20 James Blake of the United States . RB VBG PRP$ JJ NN NNS VBD JJ JJ NNP NNP IN NNP , JJ NN NNP NNP IN NNP CC NN CD NNP NNP IN DT NNP NNPS . A group of Croatian activists , opposed to President Bush 's visit , have signed a huge postcard inviting the U.S. president not to return to their country . DT NN IN JJ NNS , VBN TO NNP NNP POS NN , VBP VBN DT JJ NN VBG DT NNP NN RB TO VB TO PRP$ NN . The activists Saturday presented the postcard , which included the phrase ' Do n't Come Back , ' to the Croatian Foreign Ministry , after police prevented them from presenting it to Mr. Bush directly . DT NNS NNP VBD DT NN , WDT VBD DT NN `` VBP RB VB RB , `` TO DT JJ NNP NNP , IN NN VBD PRP IN VBG PRP TO NNP NNP RB . They hope the ministry will send it on to the United States . PRP VBP DT NN MD VB PRP IN TO DT NNP NNPS . Those signing urged Mr. Bush , among other things , to halt activities that hurt the environment , ratify the Kyoto Protocol , withdraw U.S. troops from the Middle East and close down the terrorist detention center at the U.S. Naval base in Guantanamo Bay , Cuba . DT NN VBD NNP NNP , IN JJ NNS , TO VB NNS WDT VBP DT NN , VB DT NNP NNP , VB NNP NNS IN DT NNP NNP CC RB IN DT JJ NN NN IN DT NNP NNP NN IN NNP NNP , NNP . An African Union official says two of the mission 's peacekeepers have been killed in an ambush in Sudan 's volatile Darfur region . DT NNP NNP NN VBZ CD IN DT NN POS NNS VBP VBN VBN IN DT NN IN NNP POS JJ NNP NN . The acting head of the AU mission in Sudan , Jean-Baptiste Natama , said the two peacekeeping soldiers , as well as two civilian contractors , were killed Saturday during a surprise attack in South Darfur . DT JJ NN IN DT NNP NN IN NNP , NNP NNP , VBD DT CD NN NNS , RB RB IN CD JJ NNS , VBD VBN NNP IN DT NN NN IN NNP NNP . More than 6,000 African Union peacekeepers are deployed to the region . JJR IN CD NNP NNP NNS VBP VBN TO DT NN . Fighting between Sudanese rebels and government-backed Arab militia in Darfur has killed tens of thousands of people and driven more than two million others from their homes since 2003 . VBG IN JJ NNS CC JJ JJ NN IN NNP VBZ VBN NNS IN NNS IN NNS CC VBN JJR IN CD CD NNS IN PRP$ NNS IN CD . Venezuelan President Hugo Chavez has accused the United States of supporting an alleged separatist movement in Venezuela 's oil-rich Zulia state . JJ NNP NNP NNP VBZ VBN DT NNP NNPS IN VBG DT JJ JJ NN IN NNP POS JJ NNP NN . Mr. Chavez said on Venezuelan television this week that the United States backs an effort in Zulia state by a group called Rumbo Propio , or ' our own path , ' to hold a referendum on breaking away from the government in Caracas . NNP NNP VBD IN JJ NN DT NN IN DT NNP NNPS VBZ DT NN IN NNP NN IN DT NN VBN NNP NNP , CC `` PRP$ JJ NN , `` TO VB DT NN IN VBG RB IN DT NN IN NNP . The head of the ruling MVR party , William Lara , has accused the U.S. Ambassador to Venezuela , William Brownfield , of meeting with the group . DT NN IN DT NN NNP NN , NNP NNP , VBZ VBN DT NNP NN TO NNP , NNP NNP , IN NN IN DT NN . But the U.S. embassy in Caracas told the Daily Journal newspaper there is no record of such a meeting . CC DT NNP NN IN NNP VBD DT NNP NNP NN EX VBZ DT NN IN JJ DT NN . Officials announced this week that Rumbo Propio is under investigation for possible treason . NNS VBD DT NN IN NNP NNP VBZ IN NN IN JJ NN . President Chavez has repeatedly accused the United States of plotting to overthrow his government . NNP NNP VBZ RB VBN DT NNP NNPS IN VBG TO VB PRP$ NN . President Bush and Macedonian Prime Minister Vlado Buckovski have met at the White House to discuss reforms in Macedonia and the situation in Iraq . NNP NNP CC JJ NNP NNP NNP NNP VBP VBN IN DT NNP NNP TO VB NNS IN NNP CC DT NN IN NNP . Following their talks , Mr. Bush praised Macedonia for showing the world it is possible for people of different backgrounds to live together in peace . VBG PRP$ NNS , NNP NNP VBD NNP IN VBG DT NN PRP VBZ JJ IN NNS IN JJ NNS TO VB RB IN NN . He said his discussions with Mr. Buckovski also covered Macedonia 's aspirations to join NATO . PRP VBD PRP$ NNS IN NNP NNP RB VBD NNP POS NNS TO VB NNP . Mr. Bush also thanked Mr. Buckovski for sending Macedonian troops to Iraq and Afghanistan . NNP NNP RB VBD NNP NNP IN VBG JJ NNS TO NNP CC NNP . The Macedonian leader said his forces will stay in those countries for as long as they are needed . DT JJ NN VBD PRP$ NNS MD VB IN DT NNS IN RB JJ IN PRP VBP VBN . Mr. Buckovski is also meeting at the Pentagon with U.S. Defense Secretary Donald Rumsfeld . NNP NNP VBZ RB VBG IN DT NNP IN NNP NNP NNP NNP NNP . Friday , he will be in New York for a United Nations Development Program donors ' conference on Macedonia . NNP , PRP MD VB IN NNP NNP IN DT NNP NNP NNP NNP NNS POS NN IN NNP . He winds up his U.S. trip with a stop in Detroit for a meeting with Macedonian-American community leaders . PRP VBZ RP PRP$ NNP NN IN DT NN IN NNP IN DT NN IN JJ NN NNS . The Palestinian parliament has approved a new cabinet dominated by technocrats and professional appointees . DT JJ NN VBZ VBN DT JJ NN VBN IN NNS CC JJ NNS . The approval Thursday comes after Prime Minister Ahmed Qureia bowed to lawmakers ' demands to replace several officials closely associated with the late Palestinian leader Yasser Arafat . DT NN NNP VBZ IN NNP NNP NNP NNP VBD TO NNS POS NNS TO VB JJ NNS RB VBN IN DT JJ JJ NN NNP NNP . The new lineup includes Arafat-allies Nabil Shaath , who becomes deputy prime minister , and Nasser al-Qidwa , Mr. Arafat 's nephew , who replaces Mr. Shaath as foreign minister . DT JJ NN VBZ NNS NNP NNP , WP VBZ JJ JJ NN , CC NNP NNP , NNP NNP POS NN , WP VBZ NNP NNP IN JJ NN . Saeb Erekat , who was an Arafat ally and former minister of negotiations , was left out . NNP NNP , WP VBD DT NNP NN CC JJ NN IN NNS , VBD VBN RP . The cabinet was approved after President Mahmoud Abbas pressured the dominant Fatah faction to accept a revised lineup . DT NN VBD VBN IN NNP NNP NNP VBD DT JJ NNP NN TO VB DT JJ NN . Mr. Abbas made reform of the Palestinian Authority a key platform of his recent presidential campaign . NNP NNP VBD NN IN DT JJ NNP DT JJ NN IN PRP$ JJ JJ NN . The Authority was plagued with corruption under Mr. Arafat , who died in November . DT NNP VBD VBN IN NN IN NNP NNP , WP VBD IN NNP . Parliament approved the new cabinet in a vote of 54 to 12 with four abstentions . NNP VBD DT JJ NN IN DT NN IN CD CC CD IN CD NNS . London-based Amnesty International has called on Iranian authorities to release dozens of journalists it says are in jail after being arrested during protests since the disputed June 12 election . JJ NNP NNP VBZ VBN IN JJ NNS TO VB NNS IN NNS PRP VBZ VBP IN NN IN VBG VBN IN NNS IN DT JJ NNP CD NN . The human rights group says the journalists are at risk of torture in detention . DT JJ NNS NN VBZ DT NNS VBP IN NN IN NN IN NN . Amnesty International says most of the journalists being jailed worked for the newspaper Kalameh Sabz , which was established by the runner-up in the poll , Mir Hossein Mousavi . NNP NNP VBZ JJS IN DT NNS VBG VBN VBD IN DT NN NNP NNP , WDT VBD VBN IN DT NN IN DT NN , NNP NNP NNP . A spokesman for the group said the organization assumes Iran 's government is trying to hide evidence of abuse , and further silence any critical voice . DT NN IN DT NN VBD DT NN VBZ NNP POS NN VBZ VBG TO VB NN IN NN , CC JJ NN DT JJ NN . In addition to the imprisonment of journalists , Amnesty condemns efforts by authorities to interrupt the Internet inside Iran , ban coverage of the unrest in local publications and prevent foreign journalists from doing their work properly . IN NN TO DT NN IN NNS , NNP NNS NNS IN NNS TO VB DT NNP IN NNP , NN NN IN DT NN IN JJ NNS CC VB JJ NNS IN VBG PRP$ NN RB . Nigerian police say armed men wearing camouflage uniforms have kidnapped a German oil industry worker in the country 's Niger Delta region . JJ NNS VBP JJ NNS VBG NN NNS VBP VBN DT JJ NN NN NN IN DT NN POS NNP NNP NN . A police spokesman says the kidnappers took the worker from his car near the southern city of Port Harcourt Thursday . DT NN NN VBZ DT NNS VBD DT NN IN PRP$ NN IN DT JJ NN IN NNP NNP NNP . The German man works for the company Bilfinger Berger . DT JJ NN VBZ IN DT NN NNP NNP . Police have not named any suspects in the case . NNS VBP RB VBN DT NNS IN DT NN . Kidnappings are common in the delta region . NNS VBP JJ IN DT NN NN . Local militants want residents to receive more of the region 's oil revenues . JJ NNS VBP NNS TO VB JJR IN DT NN POS NN NNS . On Monday , Nigerian militants released eight soldiers and 16 oil workers they had held hostage at an oil pumping station for a week . IN NNP , JJ NNS VBN CD NNS CC CD NN NNS PRP VBD VBN NN IN DT NN VBG NN IN DT NN . Nigeria normally produces about 2.5 million barrels of oil per day . NNP RB VBZ IN CD CD NNS IN NN IN NN . But recent attacks on oil facilities and the kidnappings have slashed production by at least 20 percent since February . CC JJ NNS IN NN NNS CC DT NNS VBP VBN NN IN IN JJS CD NN IN NNP . Two of the fastest men in the world , Jamaicans Asafa Powell and Usain Bolt , have finished in first and second place respectively in the 100-meter race at the DN Galan meet in Stockholm . CD IN DT JJS NNS IN DT NN , NNS NNP NNP CC NNP NNP , VBP VBN IN JJ CC JJ NN RB IN DT JJ NN IN DT NNP NNP VB IN NNP . Powell won the highly anticipated rematch Tuesday in 9.88 seconds . NNP VBD DT RB VBN NN NNP IN CD NNS . Bolt was slow out of the starting blocks , but nearly caught up and finished just one-100th of one second back . NNP VBD JJ IN IN DT VBG NNS , CC RB VBD RP CC VBD RB JJ IN CD NN RB . Bolt set the world record of 9.72 seconds on May 31 , breaking Powell 's mark by two-100ths of one second . NNP VBD DT NN NN IN CD NNS IN NNP CD , VBG NNP POS NN IN NNS IN CD NN . But at the Beijing Olympics next month , both Jamaicans will also battle American sprinter Tyson Gay , who ran the fastest time ever recorded for the 100 meter distance . CC IN DT NNP NNPS JJ NN , DT NNS MD RB VB JJ NN NNP NNP , WP VBD DT JJS NN RB VBN IN DT CD NN NN . Gay clocked a wind-assisted time of 9.68 seconds on June 30 . NNP VBD DT JJ NN IN CD NNS IN NNP CD . The United States says it will send a team of diplomats to the Horn of Africa region to try to resolve the border dispute between Eritrea and Ethiopia . DT NNP NNPS VBZ PRP MD VB DT NN IN NNS TO DT NNP IN NNP NN TO VB TO VB DT NN NN IN NNP CC NNP . The U.S. ambassador to the United Nations , John Bolton , says the delegation will focus on ' how to begin implementation of the border demarcation process . ' DT NNP NN TO DT NNP NNP , NNP NNP , VBZ DT NN MD VB IN `` WRB TO VB NN IN DT NN NN NN . `` He said the delegation will be led by U.S. Assistant Secretary of State for African affairs Jendayi Frazer . PRP VBD DT NN MD VB VBN IN NNP NNP NNP IN NNP IN JJ NNS NNP NNP . Mr. Bolton spoke to reporters after the U.N. Security Council discussed Eritrea and Ethiopia in a closed-door meeting Monday . NNP NNP VBD TO NNS IN DT NNP NNP NNP VBD NNP CC NNP IN DT JJ NN NNP . Eritrea says the U.N. has done too little to make Ethiopia accept a borderline drawn by an independent panel . NNP VBZ DT NNP VBZ VBN RB JJ TO VB NNP VB DT NN VBN IN DT JJ NN . U.N. officials have said the situation on the two countries ' border remains ' tense and potentially volatile . ' NNP NNS VBP VBN DT NN IN DT CD NNS POS NN VBZ `` NN CC RB JJ . `` Eritrea and Ethiopia fought a border war between 1998 and 2000 that killed 70,000 people . NNP CC NNP VBD DT NN NN IN CD CC CD WDT VBD CD NNS . Thousands of anti-globalization activists marched in the streets of Hong Kong Sunday as the city prepares to host the World Trade Organization 's ( WTO ) annual summit . NNS IN JJ NNS VBD IN DT NNS IN NNP NNP NNP IN DT NN VBZ TO VB DT NNP NNP NNP POS LRB NNP RRB JJ NN . The peaceful two-hour march by nearly 4,000 protesters was said to have a carnival-like atmosphere , with dozens of groups holding gaudy props while wearing colorful costumes . DT JJ JJ NN IN RB CD NNS VBD VBN TO VB DT JJ NN , IN NNS IN NNS VBG JJ NNS IN VBG JJ NNS . The march was the first of three large demonstrations planned for the summit . DT NN VBD DT NN IN CD JJ NNS VBN IN DT NN . Another will be held Tuesday when the ministerial conference kicks off . DT MD VB VBN NNP WRB DT JJ NN VBZ RP . The final protest rally is scheduled for the closing day next Sunday . DT JJ NN NN VBZ VBN IN DT NN NN IN NNP . Authorities in Hong Kong have been worried about a repeat of the violence , which marred previous trade meetings in Cancun and Seattle . NNS IN NNP NNP VBP VBN VBN IN DT NN IN DT NN , WDT VBD JJ NN NNS IN NNP CC NNP . Thousands of police have been put on alert for the Hong Kong summit . NNS IN NNS VBP VBN VBN IN NN IN DT NNP NNP NN . Brother of Iraqi policeman cries over coffin during funeral in Baghdad , Friday NNP IN JJ NN NNS IN NN IN NN IN NNP , NNP A series of insurgent attacks across Iraq killed at least 30 people Saturday , including a number of police recruits . DT NN IN JJ NNS IN NNP VBD IN JJS CD NNS NNP , VBG DT NN IN NN NNS . A suicide bomber blew himself up outside a police recruiting station in central Baghdad , killing at least 16 people . DT NN NN VBD PRP RP IN DT NN NN NN IN JJ NNP , VBG IN JJS CD NNS . Al-Qaida in Iraq claimed responsibility in an Internet posting , although the statement 's authenticity could not be confirmed . NNP IN NNP VBD NN IN DT NN VBG , IN DT NN POS NN MD RB VB VBN . Two separate suicide bomb attacks in a city south of Baghdad - one at a police checkpoint and a second attack targeting civilians - left another 10 people dead . CD JJ NN NN NNS IN DT NN NN IN NNP IN CD IN DT NN NN CC DT JJ NN VBG NNS : VBD DT CD NNS JJ . A bomb hidden in a vegetable cart exploded south of Baghdad as the funeral procession for a slain top Shi'ite cleric passed close by , killing two people . DT NN VBN IN DT JJ NN VBD RB IN NNP IN DT JJ NN IN DT NN JJ NNP NN VBD RB IN , VBG CD NNS . No one in the funeral party was injured . DT NN IN DT JJ NN VBD VBN . Gunmen and roadside bombs also targeted police officials and Iraqi soldiers in separate attacks elsewhere in Iraq . NNS CC NN NNS RB VBD NN NNS CC JJ NNS IN JJ NNS RB IN NNP . Three-time U.S. college basketball champion coach Mike Krzyzewski of Duke University has been officially named as the U.S. men 's national team coach . JJ NNP NN NN NN NN NNP NNP IN NNP NNP VBZ VBN RB VBN IN DT NNP NNS POS JJ NN NN . His primary task is to bring the Olympic title back to the United States . PRP$ JJ NN VBZ TO VB DT NNP NN RB TO DT NNP NNPS . The announcement by USA Basketball Wednesday came two weeks after Krzyzewski 's appointment was widely reported . DT NN IN NNP NNP NNP VBD CD NNS IN NNP POS NN VBD RB VBN . The move puts a college coach in charge of the U.S. team for the first times since National Basketball Players first began playing in the 1992 Olympics . DT NN VBZ DT NN NN IN NN IN DT NNP NN IN DT JJ NNS IN NNP NNP NNPS RB VBD VBG IN DT CD NNS . The United States ' ' Dream Team ' won gold at the 1992 Barcelona Games . DT NNP NNPS POS `` VB NNP `` VBD NN IN DT CD NNP NNPS . Teams with NBA players repeated the feat in 1996 and 2000 . NNS IN NNP NNS VBD DT NN IN CD CC CD . But the U.S. team finished sixth in the 2002 World Championship and took the bronze medal in Athens last year . CC DT NNP NN VBD RB IN DT CD NNP NNP CC VBD DT NN NN IN NNP JJ NN . The United Nations says it is investigating Eritrean claims that Ethiopian troops entered its territory and attacked a village . DT NNP NNP VBZ PRP VBZ VBG JJ NNS IN JJ NNS VBD PRP$ NN CC VBD DT NN . Eritrea 's Information Ministry said Wednesday Ethiopian troops crossed into a remote Eritrean village in late November , set fire to 10 houses and kidnapped five people . NNP POS NNP NNP VBD NNP JJ NNS VBD IN DT JJ JJ NN IN JJ NNP , VBD NN TO CD NNS CC VBD CD NNS . The commander of the U.N. peacekeeping force for Eritrea and Ethiopia said Thursday an investigation is underway . DT NN IN DT NNP NN NN IN NNP CC NNP VBD NNP DT NN VBZ JJ . He said the 1,000 kilometer border between the two countries continues ' peaceful and stable , ' despite allegations of an Ethiopian incursion . PRP VBD DT CD NN NN IN DT CD NNS VBZ `` JJ CC JJ , `` IN NNS IN DT JJ NN . Ethiopia and Eritrea fought a two and a half year border war between 1998 and 2000 that left more than 70,000 people dead . NNP CC NNP VBD DT CD CC DT JJ NN NN NN IN CD CC CD WDT VBD JJR IN CD NNS JJ . Both countries agreed to a ceasefire and international mediation , including an independent boundary commission whose decision would be final and binding . DT NNS VBD TO DT NN CC JJ NN , VBG DT JJ JJ NN WP$ NN MD VB JJ CC JJ . China is denying a United Nations investigator 's report of widespread torture in China , and accuses the envoy of jumping to conclusions . NNP VBZ VBG DT NNP NNP NN POS NN IN JJ NN IN NNP , CC VBZ DT NN IN VBG TO NNS . Speaking Tuesday in Beijing , a Foreign Ministry spokesman , Qin Gang , said the U.N. rapporteur on torture , Manfred Nowak , presented a report that was not factual because he only visited three Chinese cities during his two-week visit . VBG NNP IN NNP , DT NNP NNP NN , NNP NNP , VBD DT NNP NN IN NN , NNP NNP , VBD DT NN WDT VBD RB JJ IN PRP RB VBD CD JJ NNS IN PRP$ JJ NN . The spokesman also denied Mr. Nowak 's claim that Chinese officials obstructed his fact-finding mission , particularly when visiting detention centers . DT NN RB VBD NNP NNP POS NN IN JJ NNS VBD PRP$ JJ NN , RB WRB VBG NN NNS . Mr. Nowak told VOA that officials monitored his interviews with lawyers and family members of prisoners . NNP NNP VBD NNP IN NNS VBD PRP$ NNS IN NNS CC NN NNS IN NNS . However , he said he was able to determine that torture is widespread , including beatings , the use of electric shock batons , and dunking in filthy water . RB , PRP VBD PRP VBD JJ TO VB DT NN VBZ JJ , VBG NNS , DT NN IN JJ NN NNS , CC VBG IN JJ NN . Mr. Nowak 's visit to China included stops in Tibet and the Muslim-majority region of Xinjiang . NNP NNP POS NN TO NNP VBD NNS IN NNP CC DT JJ NN IN NNP . The trip resulted from 10 years of negotiations . DT NN VBD IN CD NNS IN NNS . A Russian general says placing elements of a U.S. anti-missile system in Poland and the Czech Republic would be a ' clear threat ' to Moscow . DT JJ NN VBZ VBG NNS IN DT NNP JJ NN IN NNP CC DT JJ NNP MD VB DT `` JJ NN `` TO NNP . Lieutenant General Vladimir Popovkin , the chief of Russia 's Space Forces , disputed the U.S. contention that the system 's sole aim was to defend Europe against intercontinental missiles fired by hostile states outside the region . NNP NNP NNP NNP , DT NN IN NNP POS NNP NNP , VBD DT NNP NN IN DT NN POS JJ NN VBD TO VB NNP IN JJ NNS VBN IN JJ NNS IN DT NN . Poland and the Czech Republic have agreed to start detailed discussions with Washington on hosting anti-missile defenses . NNP CC DT JJ NNP VBP VBN TO VB JJ NNS IN NNP IN VBG JJ NNS . Russian officials have repeatedly opposed the project , calling it a veiled attempt to change the strategic balance between Russia and the West . JJ NNS VBP RB VBN DT NN , VBG PRP DT VBN NN TO VB DT JJ NN IN NNP CC DT NNP . Both Poland and the Czech Republic are former communist Warsaw Pact countries that are now NATO members . DT NNP CC DT JJ NNP VBP JJ JJ NNP NNP NNS WDT VBP RB NNP NNS . Israel is pushing ahead with its campaign against Palestinian rocket attacks , with a series of air strikes Monday that killed at least five Palestinians . NNP VBZ VBG RB IN PRP$ NN IN JJ NN NNS , IN DT NN IN NN NNS NNP WDT VBD IN JJS CD NNS . In the deadliest attack , an air strike on a car killed at least four Islamic Jihad militants in the northern Gaza Strip . IN DT JJS NN , DT NN NN IN DT NN VBN IN JJS CD NNP NNP NNS IN DT JJ NNP NNP . On Sunday , Palestinian officials said an Israeli air strike on the Gaza City home of a Hamas lawmaker killed eight people . IN NNP , JJ NNS VBD DT JJ NN NN IN DT NNP NNP NN IN DT NNP NN VBD CD NNS . The attack outraged Hamas , which promised revenge . DT NN VBD NNP , WDT VBD NN . Israel launched the attack hours after its security Cabinet said it would intensify operations in Gaza to stop Palestinian militants from firing rockets into Israel . NNP VBD DT NN NNS IN PRP$ NN NNP VBD PRP MD VB NNS IN NNP TO VB JJ NNS IN VBG NNS IN NNP . Cabinet ministers threatened to target Hamas leaders . NNP NNS VBD TO VB NNP NNS . Nearly 40 Palestinians have been killed since Israel began its campaign last week . RB CD NNS VBP VBN VBN IN NNP VBD PRP$ NN JJ NN . European Union Foreign Policy chief Javier Solana has left on a visit to the Middle East to urge an end to the violence . NNP NNP NNP NNP NN NNP NNP VBZ VBN IN DT NN TO DT NNP NNP TO VB DT NN TO DT NN . Palestinian health officials say a Hamas militant is dead and that 16 people have been wounded in an explosion Saturday at a home in Gaza City . JJ NN NNS VBP DT NNP NN VBZ JJ CC IN CD NNS VBP VBN VBN IN DT NN NNP IN DT NN IN NNP NNP . Officials say two of the wounded are in critical condition . NNS VBP CD IN DT VBN VBP IN JJ NN . Witnesses say the home belonged to the victim , a Hamas activist named Nader Abu Shaban . NNS VBP DT NN VBD TO DT NN , DT NNP NN VBN NNP NNP NNP . Officials say the cause of the explosion is under investigation . NNS VBP DT NN IN DT NN VBZ IN NN . Several Palestinians have been killed after explosives being stored , or made , in their homes accidentally detonated . JJ NNS VBP VBN VBN IN NNS VBG VBN , CC VBN , IN PRP$ NNS RB VBD . A leading Hong Kong newspaper is reporting that Chief Executive Tung Chee-hwa has informed his cabinet he is stepping down . DT VBG NNP NNP NN VBZ VBG IN NNP NNP NNP NNP VBZ VBN PRP$ NN PRP VBZ VBG RP . Tuesday 's South China Morning Post quotes an unidentified cabinet minister who says Mr. Tung is quitting because he is tired and his health is not good . NNP POS NNP NNP NNP NNP VBZ DT JJ NN NN WP VBZ NNP NNP VBZ VBG IN PRP VBZ JJ CC PRP$ NN VBZ RB JJ . No timetable was given . DT NN VBD VBN . Hong Kong media reported last week that Mr. Tung had submitted his resignation to Beijing . NNP NNP NNS VBD JJ NN IN NNP NNP VBD VBN PRP$ NN TO NNP . He has made no official comment on those reports . PRP VBZ VBN DT JJ NN IN DT NNS . Mr. Tung has two years remaining on his five-year term . NNP NNP VBZ CD NNS VBG IN PRP$ JJ NN . Pro-democracy advocates fear Beijing will give his successor a fresh five-year term , further blocking hopes for greater autonomy . NN NNS VBP NNP MD VB PRP$ NN DT JJ JJ NN , RB VBG NNS IN JJR NN . But a senior Chinese official says any successor would have to complete Mr. Tung 's term in office . CC DT JJ JJ NN VBZ DT NN MD VB TO VB NNP NNP POS NN IN NN . Pakistan says the kidnapped employee of its Baghdad embassy appears to have been abducted for ransom . NNP VBZ DT VBN NN IN PRP$ NNP NN VBZ TO VB VBN VBN IN NN . A Foreign Ministry spokesman Jalil Abbas told reporters in Islamabad Monday that Malik Mohammed Javed is safe and well and is in contact with senior officials at the embassy . DT NNP NNP NN NNP NNP VBD NNS IN NNP NNP IN NNP NNP NNP VBZ JJ CC RB CC VBZ IN NN IN JJ NNS IN DT NN . Mr. Javed has not been seen since Saturday , when he left home for evening prayers at a Baghdad Mosque . NNP NNP VBZ RB VBN VBN IN NNP , WRB PRP VBD NN IN NN NNS IN DT NNP NNP . Scores of foreigners have been kidnapped in Iraq over the past year , some by groups with political demands , others by criminals seeking ransom . NNS IN NNS VBP VBN VBN IN NNP IN DT JJ NN , DT IN NNS IN JJ NNS , NNS IN NNS VBG NN . There has been no word about three Romanian journalists and an Iraqi assistant kidnapped nearly two weeks ago on the outskirts of Baghdad . EX VBZ VBN DT NN IN CD JJ NNS CC DT JJ NN VBN RB CD NNS RB IN DT NNS IN NNP . The fate of an Iraqi general abducted last week is also not known . DT NN IN DT JJ NN VBN JJ NN VBZ RB RB VBN . A suicide bomber has killed at least 30 people and wounded nearly 20 others on a bus in Baghdad . DT NN NN VBZ VBN IN JJS CD NNS CC VBN RB CD NNS IN DT NN IN NNP . The bus was crowded with people , traveling to the mostly Shi'ite city , Nasiriyah , southeast of Baghdad . DT NN VBD VBN IN NNS , VBG TO DT RB JJ NN , NNP , NN IN NNP . The bus was about to depart the al-Nahda station in the east Baghdad town of Rusafa , early Thursday , when the attack occurred . DT NN VBD IN TO VB DT JJ NN IN DT JJ NNP NN IN NNP , JJ NNP , WRB DT NN VBD . Witnesses told police that they believe a suicide bomber , wearing an explosive belt , climbed onto the bus minutes before the explosion . NNS VBD NNS IN PRP VBP DT NN NN , VBG DT JJ NN , VBD IN DT NN NNS IN DT NN . The bus station is a major hub for vehicles traveling to and from the mostly Shi'ite cities in the south of the country . DT NN NN VBZ DT JJ NN IN NNS VBG TO CC IN DT RB JJ NNS IN DT NN IN DT NN . In August , three car bombs exploded at the station , killing more than 40 people . IN NNP , CD NN NNS VBD IN DT NN , VBG JJR IN CD NNS . Suicide attacks have been on the rise ahead of crucial national elections in Iraq next Thursday . NN NNS VBP VBN IN DT NN RB IN JJ JJ NNS IN NNP JJ NNP . The al-Qaida in Iraq terrorist group has claimed responsibility for several of the large attacks . DT NNP IN NNP JJ NN VBZ VBN NN IN NN IN DT JJ NNS . Grieving families in northern Iraq have canceled plans for a mass funeral for dozens of suicide bomb victims because of concerns it would be attacked . VBG NNS IN JJ NNP VBP VBN NNS IN DT NN NN IN NNS IN NN NN NNS IN IN NNS PRP MD VB VBN . Religious leaders say families and politicians agreed to hold private funerals across the city of Mosul , Friday . JJ NNS VBP NNS CC NNS VBD TO VB JJ NNS IN DT NN IN NNP , NNP . The decision came as a mortar round landed near a Shi'ite mosque where a suicide bomber blew himself up Thursday , killing 47 people and wounding more than 80 others . DT NN VBD IN DT NN NN VBD IN DT NNP NN WRB DT NN NN VBD PRP RP NNP , VBG CD NNS CC VBG JJR IN CD NNS . On the political front , Iraq 's main Shi'ite alliance , which swept the January 30 elections , was finalizing a deal with Kurdish leaders to form a coalition ahead of the new parliament 's first session next Wednesday . IN DT JJ NN , NNP POS JJ NNP NN , WDT VBD DT NNP CD NNS , VBD VBG DT NN IN JJ NNS TO VB DT NN RB IN DT JJ NN POS JJ NN JJ NNP . Meanwhile , a Polish newspaper quoted Defense Minister Jerzy Szmajdzinski as saying Poland will withdraw several hundred of its troops from Iraq in July . RB , DT JJ NN VBN NNP NNP NNP NNP IN VBG NNP MD VB JJ CD IN PRP$ NNS IN NNP IN NNP . The price of oil hit another new record Friday - $ 147 a barrel . DT NN IN NN VBD DT JJ NN NNP IN $ CD DT NN . U.S. airlines are lightening their loads by cutting back on luxuries that weigh down airplanes . NNP NNS VBP VBG PRP$ NNS IN VBG RP IN NNS WDT VBP RP NNS . Meanwhile , the U.S. Congress is considering proposed laws that some say would help stabilize the price of oil . RB , DT NNP NNP VBZ VBG VBN NNS IN DT VBP MD VB VB DT NN IN NN . VOA 's Carolyn Presutti reports . NNP POS NNP NNP VBZ . Hundreds of Afghan students have held a protest over an American magazine report that copies of the Koran were desecrated at the U.S. jail in Guantanamo Bay , Cuba . NNS IN JJ NNS VBP VBN DT NN IN DT JJ NN NN IN NNS IN DT NNP VBD VBN IN DT NNP NN IN NNP NNP , NNP . The students marched through the eastern city of Jalalabad Tuesday chanting ' Death to America ' and burning an effigy of President Bush . DT NNS VBD IN DT JJ NN IN NNP NNP VBG `` NN TO NNP `` CC VBG DT NN IN NNP NNP . A recent edition of U.S. Newsweek magazine reports that in an effort to rattle imprisoned terrorism suspects , American interrogators placed Korans on toilets and in one case flushed one of the holy books down the toilet . DT JJ NN IN NNP NNP NN VBZ IN IN DT NN TO VB JJ NN NNS , JJ NNS VBD NNS IN NNS CC IN CD NN VBD CD IN DT JJ NNS IN DT NN . The government of neighboring Pakistan has called for an inquiry into the matter . DT NN IN VBG NNP VBZ VBN IN DT NN IN DT NN . The United States is holding more than 500 people at the U.S. naval base in Guantanamo Bay , many of them al-Qaida and Taleban suspects captured following the September 11 , 2001 attacks on America . DT NNP NNPS VBZ VBG JJR IN CD NNS IN DT NNP JJ NN IN NNP NNP , NN IN PRP NNP CC NNP NNS VBN VBG DT NNP CD , CD NNS IN NNP . A U.S. rights organization says a group of jailed Burmese activists are staging a hunger strike to demand medical treatment for an injured colleague . DT NNP NNS NN VBZ DT NN IN JJ JJ NNS VBP VBG DT NN NN TO VB JJ NN IN DT JJ NN . The Washington-based U.S. Campaign for Burma says 41 detained pro-democracy activists have been on a hunger strike since August 30 . DT JJ NNP NN IN NNP VBZ CD VBD JJ NNS VBP VBN IN DT NN NN IN NNP CD . It says they are demanding treatment for another jailed activist whose leg was broken during his arrest by Burmese police . PRP VBZ PRP VBP VBG NN IN DT JJ NN WP$ NN VBD VBN IN PRP$ NN IN JJ NNS . The rights group also is calling on Burma 's military government to give Red Cross workers access to the prisoners . DT NNS NN RB VBZ VBG IN NNP POS JJ NN TO VB NNP NNP NNS NN TO DT NNS . Authorities have barred the International Committee of the Red Cross from Burmese prisons since December 2005 . NNS VBP VBN DT NNP NNP IN DT NNP NNP IN JJ NNS IN NNP CD . Burma 's opposition says police have arrested more than 100 activists in a crackdown on recent protests around the country . NNP POS NN VBZ NNS VBP VBN JJR IN CD NNS IN DT NN IN JJ NNS IN DT NN . The government puts the figure at around 50 . DT NN VBZ DT NN IN IN CD . Burmese activists have held a series of rare public demonstrations in recent weeks to protest the government 's decision to sharply increase the price of fuel . JJ NNS VBP VBN DT NN IN JJ JJ NNS IN JJ NNS TO VB DT NN POS NN TO RB VB DT NN IN NN . Mexican authorities are investigating an explosion at an oil pipeline in Puebla State that killed at least 28 people , including at least 12 children . JJ NNS VBP VBG DT NN IN DT NN NN IN NNP NNP WDT VBD IN JJS CD NNS , VBG IN JJS CD NNS . Officials say the blast may have been set off by thieves trying to steal crude oil , but have not ruled out a possible mechanical malfunction . NNS VBP DT NN MD VB VBN VBN RP IN NNS VBG TO VB JJ NN , CC VBP RB VBN IN DT JJ JJ NN . Puebla state officials described the scene in the town of San Martin Texmelucan as ' rivers of fire in the streets . ' NNP NN NNS VBD DT NN IN DT NN IN NNP NNP NNP IN `` NNS IN NN IN DT NNS . `` At least 30 homes were destroyed and dozens more damaged , forcing people to flee for their lives . IN JJS CD NNS VBD VBN CC NNS RBR JJ , VBG NNS TO VB IN PRP$ NNS . More than 50 people were injured . JJR IN CD NNS VBD VBN . The state-owned Pemex oil company said the pipeline was carrying crude oil under high pressure . DT JJ NNP NN NN VBD DT NN VBD VBG JJ NN IN JJ NN . Fuel theft is rampant in the area , with hundreds of millions of dollars lost each year . NN NN VBZ JJ IN DT NN , IN NNS IN NNS IN NNS VBN DT NN . American gymnast Paul Hamm has announced that he will not be able to compete at the Beijing Olympics and defend his men 's all-around title . JJ NN NNP NNP VBZ VBN IN PRP MD RB VB JJ TO VB IN DT NNP NNPS CC VB PRP$ NNS POS JJ NN . Hamm officially notified USA Gymnastics and the U.S. Olympic Committee on Monday that he is withdrawing from the team . NNP RB VBD NNP NNP CC DT NNP NNP NNP IN NNP IN PRP VBZ VBG IN DT NN . He said his right hand , which he broke at the national championships in May , had not healed enough for him to compete . PRP VBD PRP$ JJ NN , WDT PRP VBD IN DT JJ NNS IN NNP , VBD RB VBN RB IN PRP TO VB . Hamm also hurt his rotator cuff in an accelerated recovery effort designed to get him ready for the Beijing Games . NNP RB VBD PRP$ NN NN IN DT JJ NN NN VBN TO VB PRP JJ IN DT NNP NNPS . The 25-year-old Hamm decided it would be better for the team to take a fully healthy gymnast to Beijing in his place . DT JJ NNP VBD PRP MD VB JJR IN DT NN TO VB DT RB JJ NN TO NNP IN PRP$ NN . The loss is a blow to the American squad 's medal hopes . DT NN VBZ DT NN TO DT NNP NN POS JJ NNS . Hamm had been expected to participate in all six events in team qualifying and probably all six in the team finals as well . NNP VBD VBN VBN TO VB IN DT CD NNS IN NN VBG CC RB DT CD IN DT NN NNS RB RB . One of three alternates will take Hamm 's spot in Beijing . CD IN CD NNS MD VB NNP POS NN IN NNP . Ukrainian officials say they are considering imposition of a quarantine throughout the country 's Crimean Peninsula after a British laboratory confirmed that the bird flu in the area is a variety deadly to humans . JJ NNS VBP PRP VBP VBG NN IN DT NN IN DT NN POS JJ NNP IN DT JJ NN VBD IN DT NN NN IN DT NN VBZ DT NN JJ TO NNS . Agriculture Ministry spokesman , Oleksander Horobets , says the British laboratory confirmed that the virus is the deadly H5N1 strain that has killed more than 70 people in East Asia since 2003 . NNP NNP NN , NNP NNPS , VBZ DT JJ NN VBD IN DT NN VBZ DT JJ NNP NN WDT VBZ VBN JJR IN CD NNS IN NNP NNP IN CD . He said authorities in the next few days will consider further measures . PRP VBD NNS IN DT JJ JJ NNS MD VB JJ NNS . President Viktor Yushchenko declared a state of emergency after the virus was first detected in northeastern Crimea earlier this month and then spread to at least 15 villages . NNP NNP NNP VBD DT NN IN NN IN DT NN VBD RB VBN IN JJ NNP RBR DT NN CC RB VBD TO IN JJS CD NNS . Authorities have destroyed more than 60,000 domestic birds despite strong opposition from villagers who depend on them for food . NNS VBP VBN JJR IN CD JJ NNS IN JJ NN IN NNS WP VBP IN PRP IN NN . The poultry are thought to have contracted the virus from migrating wild birds that travel by the millions over the area . DT NN VBP VBN TO VB VBN DT NN IN VBG JJ NNS IN NN IN DT NNS IN DT NN . Pakistani authorities say a bomb blast at a Shi'ite mosque in the North West Frontier Province has killed four people and wounded at least three others . JJ NNS VBP DT NN NN IN DT NNP NN IN DT NNP NNP NNP NNP VBZ VBN CD NNS CC VBN IN JJS CD NNS . Police say the bomb went off Monday as worshipers were leaving the mosque in Dera Ismail Khan after evening prayers . NNS VBP DT NN VBD RB NNP IN NNS VBD VBG DT NN IN NNP NNP NNP IN NN NNS . The bomb destroyed the mosque 's front wall and damaged its dome . DT NN VBD DT NN POS NN NN CC VBD PRP$ NN . Police cordoned off the area as people searched the rubble for survivors . NNS VBD RP DT NN IN NNS VBD DT NN IN NNS . No one has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . Dera Ismail Khan has a history of sectarian violence . NNP NNP NNP VBZ DT NN IN JJ NN . Last month , gunmen killed at least six Shi'ite Muslims in two suspected sectarian attacks in the city . JJ NN , NNS VBD IN JJS CD NNP NNPS IN CD JJ JJ NNS IN DT NN . Pakistan has a history of violence between the majority Sunni and minority Shi'ite Muslims . NNP VBZ DT NN IN NN IN DT NN NNP CC NN NNP NNPS . The communities generally coexist peacefully , but militants from both sides have attacked each other since the 1980s , killing thousands of people . DT NNS RB VBP RB , CC NNS IN DT NNS VBP VBN DT NN IN DT NNS , VBG NNS IN NNS . Environment ministers from haze-hit Southeast Asian nations are gathering in Indonesia to discuss ways to combat annual blazes that create a choking cloud of smoke over the region . NN NNS IN JJ JJ JJ NNS VBP VBG IN NNP TO VB NNS TO VB JJ NNS WDT VBP DT VBG NN IN NN IN DT NN . Ministers from Indonesia , Singapore , Malaysia , Thailand and Brunei are meeting Friday in the Indonesian town of Pekanbara on Sumatra island , one of the worst areas hit by haze each year . NNS IN NNP , NNP , NNP , NNP CC NNP VBP VBG NNP IN DT JJ NN IN NNP IN NNP NN , CD IN DT JJS NNS VBN IN NN DT NN . Jakarta said Thursday that it would sign a regional treaty to boost cooperation in tackling the problem . NNP VBD NNP IN PRP MD VB DT JJ NN TO VB NN IN VBG DT NN . President Susilo Bambang Yudhyono apologized earlier this week for the smoke that has blanketed the region . NNP NNP NNP NNP VBD RBR DT NN IN DT NN WDT VBZ VBN DT NN . Malaysia , Singapore and other regional neighbors have been calling on Indonesia to take serious action against the fires , lit each year by plantation companies and farmers to clear land . NNP , NNP CC JJ JJ NNS VBP VBN VBG IN NNP TO VB JJ NN IN DT NNS , NN DT NN IN NN NNS CC NNS TO JJ NN . The haze hit its worst levels from 1997 to 1998 , costing the Southeast Asian region $ 9 billion in losses from declines in tourism and business activities . DT NN VBD PRP$ JJS NNS IN CD TO CD , VBG DT JJ JJ NN $ CD CD IN NNS IN NNS IN NN CC NN NNS . Jordan 's King Abdullah says his country is seeking its own nuclear energy program . NNP POS NNP NNP VBZ PRP$ NN VBZ VBG PRP$ JJ JJ NN NN . In an interview with Israel 's Haaretz newspaper Friday , King Abdullah said Jordan wants nuclear power for peaceful purposes and has been discussing plans with the West . IN DT NN IN NNP POS NNP NN NNP , NNP NNP VBD NNP VBZ JJ NN IN JJ NNS CC VBZ VBN VBG NNS IN DT NNP . In response to a question about Iran 's nuclear program , King Abdullah said that Jordan had previously advocated a nuclear-free Middle East , but he said ' the rules have changed ' throughout the region . IN NN TO DT NN IN NNP POS JJ NN , NNP NNP VBD IN NNP VBD RB VBN DT JJ NNP NNP , CC PRP VBD `` DT NNS VBP VBN `` IN DT NN . He also noted that Egypt and the Gulf Cooperation Council have begun looking into nuclear programs . PRP RB VBD IN NNP CC DT NNP NNP NNP VBP VBN VBG IN JJ NNS . King Abdullah said he believes that any country with a nuclear program should conform to international regulations . NNP NNP VBD PRP VBZ IN DT NN IN DT JJ NN MD VB TO JJ NNS . The United States and its Western allies say Iran is trying to develop nuclear weapons . DT NNP NNPS CC PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS . Tehran denies the charges . NNP VBZ DT NNS . A Los Angeles judge has ruled that Phil Spector 's ex-girlfriend may testify that he twice pointed guns at her head . DT NNP NNP NN VBZ VBN IN NNP NNP POS NN MD VB IN PRP RB VBD NNS IN PRP$ NN . The April 10 ruling means that jurors at the music producer 's murder trial will hear that Spector has twice before engaged in what prosecutors allege are strikingly similar gun incidents . DT NNP CD NN VBZ IN NNS IN DT NN NN POS NN NN MD VB IN NNP VBZ RB RB VBN IN WP NNS VBP VBP RB JJ NN NNS . Phil Spector 's lawyers unsuccessfully attempted to bar the testimony of Devra Robitaille , his ex-girlfriend and employee . NNP NNP POS NNS RB VBD TO VB DT NN IN NNP NNP , PRP$ NN CC NN . They claimed her evidence , citing incidents from the 1970s and '80s , was irrelevent and would delay the start of the trial . PRP VBD PRP$ NN , VBG NNS IN DT NNS CC NNS , VBD JJ CC MD VB DT NN IN DT NN . Opening statments in the case are expected to begin in late April or early May . VBG NNS IN DT NN VBP VBN TO VB IN JJ NNP CC JJ NNP . Phil Spector , a pop music producer famed for his ' wall of sound ' technique , is accused of the fatal 2003 shooting of actress Lana Clarkson . NNP NNP , DT NN NN NN VBN IN PRP$ `` NN IN NN `` NN , VBZ VBN IN DT JJ CD NN IN NN NNP NNP . He has pleaded innocent , saying she committed suicide . PRP VBZ VBN JJ , VBG PRP VBD NN . Austrian alpine skier Benjamin Raich has padded his lead atop the season 's overall standings by winning a World Cup super-combined event in Wengen , Switzerland . JJ NN NN NNP NNP VBZ VBN PRP$ NN IN DT NN POS JJ NNS IN VBG DT NNP NNP JJ NN IN NNP , NNP . American Bode Miller was second-fastest in the morning 's downhill run and appeared to have won after the afternoon slalom but was disqualified for straddling a gate just meters from the finish line . NNP NNP NNP VBD JJ IN DT NN POS NN NN CC VBD TO VB VBN IN DT NN NN CC VBD VBN IN VBG DT NN RB NNS IN DT NN NN . Raich was only 13th after the downhill run , but he skied a fast slalom leg to win with a combined time ( of 2.38.46 ) that was 0.19 seconds faster than Kjetil Andre Aamodt of Norway ( 0.110474537 ) . NNP VBD RB JJ IN DT NN NN , CC PRP VBD DT JJ NN NN TO VB IN DT JJ NN LRB IN CD RRB WDT VBD CD NNS RBR IN NNP NNP NNP IN NNP LRB CD RRB . Italian Peter Fill posted his first career podium result in a World Cup event , placing third ( 0.110625 ) . JJ NNP NNP VBD PRP$ JJ NN NN NN IN DT NNP NNP NN , VBG JJ LRB CD RRB . The super-combi is a new version of the traditional combined race . DT NN VBZ DT JJ NN IN DT JJ JJ NN . It adds the times from a shortened downhill run in the morning to a single slalom leg a few hours later . PRP VBZ DT NNS IN DT VBN NN NN IN DT NN TO DT JJ NN NN DT JJ NNS RB . Iraqi police say a suicide car bomber attacked a security checkpoint in central Baghdad Monday , killing at least two people and wounding five others , mostly policemen . JJ NNS VBP DT NN NN NN VBD DT NN NN IN JJ NNP NNP , VBG IN JJS CD NNS CC VBG CD NNS , RB NNS . The attack took place near a gate into the Iraqi capital 's heavily fortified Green Zone , where most U.S. and Iraqi government offices are located . DT NN VBD NN IN DT NN IN DT JJ NN POS RB VBN NNP NNP , WRB RBS NNP CC JJ NN NNS VBP VBN . Separately , the U.S. military said two American airmen were killed and another wounded in a roadside bomb blast on Sunday near an airbase ( Taji ) north of Baghdad . RB , DT NNP NN VBD CD JJ NNS VBD VBN CC DT VBN IN DT NN NN NN IN NNP IN DT NN LRB NNP RRB NN IN NNP . In another development , the trial of ousted leader Saddam Hussein is scheduled to resume Tuesday , but it is not yet clear who will preside in court . IN DT NN , DT NN IN JJ NN NNP NNP VBZ VBN TO VB NNP , CC PRP VBZ RB RB JJ WP MD VB IN NN . News reports say senior officials are urging chief judge Rizgar Muhammad Amin to stay on . NNP NNS VBP JJ NNS VBP VBG JJ NN NNP NNP NNP TO VB IN . The jurist resigned earlier this month after criticism of his handling of the trial . DT NN VBD RBR DT NN IN NN IN PRP$ NN IN DT NN . The tribunal has not yet accepted his resignation . DT NN VBZ RB RB VBN PRP$ NN . Major U.S. professional sports organizations are adding a financial boost to relief efforts following Hurricane Katrina . NNP NNP JJ NNS NNS VBP VBG DT JJ NN TO NN NNS VBG NNP NNP . The National Football League says it is donating $ 1 million to the American Red Cross to assist hurricane victims in Louisiana , Mississippi and Alabama . DT NNP NNP NNP VBZ PRP VBZ VBG $ CD CD TO DT NNP NNP NNP TO VB NN NNS IN NNP , NNP CC NNP . The NFL also says it is working on other ways to assist . DT NNP RB VBZ PRP VBZ VBG IN JJ NNS TO VB . The National Basketball Association and Women 's NBA are combining their aid efforts . DT NNP NNP NNP CC NNP POS NNP VBP VBG PRP$ NN NNS . Players are making donations and helping directly with the U.S. Federal Emergency Management Agency . NNS VBP VBG NNS CC VBG RB IN DT NNP NNP NNP NNP NNP . The American Red Cross is raising money at WNBA playoff games in Los Angeles and Indiana . DT NNP NNP NNP VBZ VBG NN IN NNP NN NNS IN NNP NNP CC NNP . Major League Baseball teams are also gathering money and donating items to help . NNP NNP NNP NNS VBP RB VBG NN CC VBG NNS TO VB . Clothes and non-perishable food items were collected Wednesday at Dodger Stadium in Los Angeles . NNS CC JJ NN NNS VBD VBN NNP IN NNP NNP IN NNP NNP . Congolese President Joseph Kabila has suspended mining in a volatile region of the eastern Democratic Republic of Congo . JJ NNP NNP NNP VBZ VBN NN IN DT JJ NN IN DT JJ JJ NNP IN NNP . President Kabila ordered the suspension during a visit to the mining hub town of Walikale , reportedly to try to clean up the sector and weed out rebel groups fueling conflict there . NNP NNP VBD DT NN IN DT NN TO DT NN NN NN IN NNP , RB TO VB TO VB RP DT NN CC VBD RP JJ NNS VBG NN RB . More than 240 people were raped near Walikale during attacks by Rwandan Hutu and Congolese rebels between July 30 and August 3 . JJR IN CD NNS VBD VBN IN NNP IN NNS IN JJ NNP CC JJ NNS IN NNP CD CC NNP CD . It was not immediately clear if the president 's ban applied to areas outside of Walikale . PRP VBD RB RB JJ IN DT NN POS NN VBD TO NNS IN IN NNP . Eastern Congo 's provinces are rich in minerals like coltan and cassiterite , which are used by Western companies in the manufacturing of mobile phones and computers . NNP NNP POS NNS VBP JJ IN NNS IN NN CC NN , WDT VBP VBN IN JJ NNS IN DT NN IN JJ NNS CC NNS . However , control over those minerals has fueled persistent conflict between armed militias competing for dominance . RB , NN IN DT NNS VBZ VBN JJ NN IN JJ NNS VBG IN NN . The conflict is also fueled by ethnic hatred leftover from the 1994 slaughter of Tutsis in neighboring Rwanda as well as Congo 's civil wars . DT NN VBZ RB VBN IN JJ NN VBN IN DT CD NN IN NNP IN VBG NNP RB RB IN NNP POS JJ NNS . U.S. military officials in Iraq say American soldiers and Iraqi police have detained more than 50 people during raids in search of insurgents around the city of Baquba , north of Baghdad . NNP JJ NNS IN NNP VBP JJ NNS CC JJ NNS VBP VBN JJR IN CD NNS IN NNS IN NN IN NNS IN DT NN IN NNP , NN IN NNP . A statement Sunday says a number of weapons were also found during Saturday 's raids , around the towns of Buhriz and Hib Hib . DT NN NNP VBZ DT NN IN NNS VBD RB VBN IN NNP POS NNS , IN DT NNS IN NNP CC NNP NNP . Elsewhere Saturday , at least 10 Iraqis and a U.S. Marine were killed in several insurgent attacks across the country . RB NNP , IN JJS CD NNS CC DT NNP NN VBD VBN IN JJ JJ NNS IN DT NN . In another development , Dinesh Dharmendra Rajaratnam , a Sri Lankan truck driver set free by Iraqi militants last week after he was kidnapped in October , returned home Sunday , where he was reunited with his family . IN DT NN , NNP NNP NNP , DT NNP NNP NN NN VBN JJ IN JJ NNS JJ NN IN PRP VBD VBN IN NNP , VBD NN NNP , WRB PRP VBD VBN IN PRP$ NN . Pakistan has successfully tested a surface-to-surface missile with a range of 2,500 kilometers . NNP VBZ RB VBN DT JJ NN IN DT NN IN CD NNS . In a military statement Saturday , the South Asian country said the test was the second for the Hatf Six missile , which was earlier tested in March of 2005 . IN DT JJ NN NNP , DT NNP NNP NN VBD DT NN VBD DT JJ IN DT NNP CD NN , WDT VBD RB VBN IN NNP IN CD . Prime Minister Shaukat Aziz witnessed the test , which was carried out at an undisclosed location . NNP NNP NNP NNP VBD DT NN , WDT VBD VBN RP IN DT JJ NN . Aziz congratulated the scientists , engineers and the technical staff of Pakistan 's Strategic Organization . NNP VBD DT NNS , NNS CC DT JJ NN IN NNP POS NNP NNP . The military statement said Hatf Six is Pakistan 's longest range ballistic missile system and can carry nuclear and conventional warheads with great accuracy . DT JJ NN VBD NNP CD VBZ NNP POS JJS NN JJ NN NN CC MD VB JJ CC JJ NNS IN JJ NN . Regional rivals Pakistan and India have routinely conducted missile tests since they both conducted underground nuclear tests in 1998 . JJ NNS NNP CC NNP VBP RB VBN NN NNS IN PRP DT VBD JJ JJ NNS IN CD . The U.S. defense secretary is in Macedonia , where he will participate in a meeting of the region 's defense ministers . DT NNP NN NN VBZ IN NNP , WRB PRP MD VB IN DT NN IN DT NN POS NN NNS . Robert Gates arrived Tuesday in the southwestern town of Ohrid for the annual meeting of the Southeast Europe Defense Ministers . NNP NNP VBD NNP IN DT JJ NN IN NNP IN DT JJ NN IN DT NNP NNP NNP NNP . He will attend an informal meeting of NATO defense officials in the Hungarian capital , Budapest , on Thursday and Friday . PRP MD VB DT JJ NN IN NNP NN NNS IN DT JJ NN , NNP , IN NNP CC NNP . Macedonia is a candidate for NATO membership , but alliance member Greece has blocked Macedonia 's bid because Macedonia shares its name with a Greek province . NNP VBZ DT NN IN NNP NN , CC NN NN NNP VBZ VBN NNP POS NN IN NNP VBZ PRP$ NN IN DT JJ NN . Gates arrived today from Kosovo , the Serbian province that declared independence in February . NNP VBD NN IN NNP , DT JJ NN WDT VBD NN IN NNP . In the capital , Pristina , Gates reaffirmed U.S. support for Kosovo 's territorial integrity and vowed to maintain a U.S. military presence there until at least 2009 . IN DT NN , NNP , NNP VBD NNP NN IN NNP POS JJ NN CC VBD TO VB DT NNP JJ NN RB IN IN JJS CD . Secretary Gates is the most senior U.S. official to visit Kosovo since it declared independence . NNP NNP VBZ DT RBS JJ NNP NN TO VB NNP IN PRP VBD NN . More than 1,000 people gathered in Istanbul Saturday to protest attacks by separatist Kurdish rebels in southeast Turkey . JJR IN CD NNS VBD IN NNP NNP TO VB NNS IN JJ JJ NNS IN JJ NNP . Demonstrators walked silently through the streets of the capital carrying Turkish flags and banners calling for an end to terror . NNS VBD RB IN DT NNS IN DT NN VBG JJ NNS CC NNS VBG IN DT NN TO NN . The marchers were responding to a call by the Turkish military for mass opposition to the attacks by the Kurdistan Workers Party , known as the PKK . DT NNS VBD VBG TO DT NN IN DT JJ NN IN NN NN TO DT NNS IN DT NNP NNP NNP , VBN IN DT NNP . The Turkish government , along with the United States and the European Union , consider the Kurdish group a terrorist organization . DT JJ NN , IN IN DT NNP NNPS CC DT NNP NNP , VBP DT NNP NN DT JJ NN . The PKK has been fighting for autonomy since 1984 and an estimated 30-thousand people have died in the violence . DT NNP VBZ VBN VBG IN NN IN CD CC DT JJ JJ NNS VBP VBN IN DT NN . United Nations Secretary-General Kofi Annan has strongly condemned the killing of an African Union interpreter in the Kalma refugee camp in Sudan 's Darfur region . NNP NNP NNP NNP NNP VBZ RB VBN DT NN IN DT NNP NNP NN IN DT NNP NN NN IN NNP POS NNP NN . On Monday , the top U.N. humanitarian official Jan Egeland fled the camp when a large group of demonstrators asking for protection from peacekeepers turned violent . IN NNP , DT JJ NNP JJ NN NNP NNP VBD DT NN WRB DT JJ NN IN NNS VBG IN NN IN NNS VBD JJ . The U.N. group fled , but a translator was later killed by the angry mob . DT NNP NN VBD , CC DT NN VBD RB VBN IN DT JJ NN . In a statement issued Tuesday , Mr. Annan also criticized other recent attacks on humanitarian groups working in Darfur and Chad , including a U.N. staff member who was shot and critically wounded last week in eastern Chad . IN DT NN VBN NNP , NNP NNP RB VBD JJ JJ NNS IN JJ NNS VBG IN NNP CC NNP , VBG DT NNP NN NN WP VBD VBN CC RB VBN JJ NN IN JJ NNP . Secretary of State Condoleezza Rice is scheduled to appear at the U.N. Security Council today to call for speeding up the deployment of peacekeepers to the Darfur region . NNP IN NNP NNP NNP VBZ VBN TO VB IN DT NNP NNP NNP NN TO VB IN VBG RP DT NN IN NNS TO DT NNP NN . Sudan is under pressure to allow the United Nations to take over peacekeeping efforts from the African Union . NNP VBZ IN NN TO VB DT NNP NNPS TO VB RP VBG NNS IN DT NNP NNP . Election officials in Afghanistan say they have dismissed some 50 employees for suspected fraud in last month 's legislative elections . NN NNS IN NNP VBP PRP VBP VBN DT CD NNS IN JJ NN IN JJ NN POS JJ NNS . Chief of operations for the joint U.N.-Afghan election commission , Richard Atwood , says more than 650 ballot boxes - or about three percent of votes - have been taken out of the counting process because of suspicions they were stuffed . NNP IN NNS IN DT JJ JJ NN NN , NNP NNP , VBZ JJR IN CD NN NNS : CC IN CD NN IN NNS : VBP VBN VBN IN IN DT NN NN IN IN NNS PRP VBD VBN . But Mr. Atwood ruled out a recount , saying the fraud was not widespread and does not affect the integrity of the election . CC NNP NNP VBD RP DT NN , VBG DT NN VBD RB JJ CC VBZ RB VB DT NN IN DT NN . Accusations of irregularities in the count of the September 18 vote sparked demonstrations across the country . NNS IN NNS IN DT NN IN DT NNP CD NN VBD NNS IN DT NN . Meanwhile , human rights advocates warned that many of the winning candidates have links to armed groups , and that at least two former members of the Taleban have been elected to parliament . RB , JJ NNS NNS VBD IN NN IN DT JJ NNS VBP NNS TO JJ NNS , CC IN IN JJS CD JJ NNS IN DT NNP VBP VBN VBN TO NN . Cuba has officially ended circulation of the U.S. dollar , a move Cuban leader Fidel Castro says is in response to tightening U.S. sanctions . NNP VBZ RB VBN NN IN DT NNP NN , DT NN JJ NN NNP NNP VBZ VBZ IN NN TO VBG NNP NNS . The ban on the dollar went into effect Monday , preventing hotels , stores and restaurants from using the currency . DT NN IN DT NN VBD IN NN NNP , VBG NNS , NNS CC NNS IN VBG DT NN . Those business will now only accept a ' convertible peso ' which has a face value equal to the dollar , but no value internationally . DT NN MD RB RB VB DT `` JJ NN `` WDT VBZ DT NN NN JJ TO DT NN , CC DT NN RB . Mr. Castro announced the dollar ban two weeks ago . NNP NNP VBD DT NN NN CD NNS RB . The Cuban government has also encouraged Cubans living abroad to send money to their relatives in other currency , such as British pounds or Euros . DT JJ NN VBZ RB VBN NNS VBG RB TO VB NN TO PRP$ NNS IN JJ NN , JJ IN JJ NNS CC NNS . Cuba legalized the dollar in 1993 in the face of an economic crisis sparked by the collapse of the Soviet Union . NNP VBD DT NN IN CD IN DT NN IN DT JJ NN VBN IN DT NN IN DT NNP NNP . In many rural areas of North America , cowboy churches are attracting people that might shy away from traditional Christian churches . IN JJ JJ NNS IN NNP NNP , NN NNS VBP VBG NNS WDT MD VB RB IN JJ JJ NNS . These religious gatherings are generally held during the week and feature a very casual style . DT JJ NNS VBP RB VBN IN DT NN CC VB DT RB JJ NN . For producer Yi Suli , Elaine Lu has more on one cowboy church in North Carolina . IN NN NNP NNP , NNP NNP VBZ RBR IN CD NN NN IN NNP NNP . Another tropical storm has formed in the Atlantic Ocean , one day before the busiest and costliest Atlantic hurricane season on record officially comes to a close . DT JJ NN VBZ VBN IN DT NNP NNP , CD NN IN DT JJS CC JJS JJ NN NN IN NN RB VBZ TO DT NN . U.S. forecasters say Tropical Storm Epsilon took shape Tuesday and was slowly moving westward over the central Atlantic Ocean . NNP NNS VBP JJ NN NNP VBD NN NNP CC VBD RB VBG RB IN DT JJ NNP NNP . At last report , the storm was nearly 1,300 kilometers east of Bermuda . IN JJ NN , DT NN VBD RB CD NNS NN IN NNP . Officials say Epsilon is not expected to directly affect Bermuda , but they warn that dangerous surf conditions are possible in the next day or two . NNS VBP NNP VBZ RB VBN TO RB VB NNP , CC PRP VBP IN JJ NN NNS VBP JJ IN DT JJ NN CC CD . This year , an unprecedented 26 tropical storms have raged in the Atlantic since the season began on June first . DT NN , DT JJ CD JJ NNS VBP VBN IN DT NNP IN DT NN VBD IN NNP RB . Half of those strengthened into hurricanes . NN IN DT VBN IN NNS . The busy season meant forecasters exhausted their list of names , forcing them to use the Greek alphabet to name storms for the first time . DT JJ NN VBD NNS VBD PRP$ NN IN NNS , VBG PRP TO VB DT NNP NN TO VB NNS IN DT JJ NN . They also warn the next hurricane season could be just as bad . PRP RB VBP DT JJ NN NN MD VB RB IN JJ . Police in Mexico say they have found nine bodies - seven men and two women - buried near the drug-smuggling hub of Ciudad Juarez , just across the U.S. border . NNS IN NNP VBP PRP VBP VBN CD NNS IN CD NNS CC CD NNS IN VBN IN DT JJ NN IN NNP NNP , RB IN DT NNP NN . Investigators say they have not ruled out finding more bodies at the site . NNS VBP PRP VBP RB VBN IN VBG JJR NNS IN DT NN . Thousands of soldiers and federal police are posted around Juarez in an effort to quell violence involving warring drug gangs . NNS IN NNS CC JJ NNS VBP VBN IN NNP IN DT NN TO VB NN VBG VBG NN NNS . The cartels are fighting for control of trafficking routes into the United States . DT NNS VBP VBG IN NN IN VBG NNS IN DT NNP NNPS . The turf wars have turned Juarez into Mexico 's most violent city . DT NN NNS VBP VBN NNP IN NNP POS JJS JJ NN . It is located just across the border from the U.S. city of El~Paso , Texas . PRP VBZ VBN RB IN DT NN IN DT NNP NN IN NNP , NNP . Rescue workers in central China are searching for 59 police trainees who were swept away in a landslide triggered by Typhoon Longwang 's torrential rain . NN NNS IN JJ NNP VBP VBG IN CD NNS NNS WP VBD VBN RB IN DT NN VBN IN NNP NNP POS JJ NN . China 's official Xinhua news agency says the police recruits were in two training school barracks in Fuzhou , Fujian Province late Sunday night when the buildings were swept away . NNP POS JJ NNP NN NN VBZ DT NN NNS VBD IN CD NN NN NNS IN NNP , NNP NNP JJ NNP NN WRB DT NNS VBD VBN RB . Currently three people are confirmed dead from the storm . RB CD NNS VBP VBN JJ IN DT NN . The typhoon also killed one person in Taiwan before it hit China 's mainland . DT NN RB VBD CD NN IN NNP IN PRP VBD NNP POS NN . In a separate development , Xinhua says authorities have evacuated about 13,000 people from their homes in central China along , the Hanjiang River , a tributary of the Yangtze River . IN DT JJ NN , NNP VBZ NNS VBP VBN IN CD NNS IN PRP$ NNS IN JJ NNP IN , DT NNP NNP , DT NN IN DT NNP NNP . It says heavy rains in Hubei province have cut off several roads , and more rain is expected in the next two days . PRP VBZ JJ NNS IN NNP NN VBP VBN RP JJ NNS , CC JJR NN VBZ VBN IN DT JJ CD NNS . Police in Pakistani-controlled Kashmir say five girls have been killed by a cluster bomb . NNS IN JJ NNP VBP CD NNS VBP VBN VBN IN DT NN NN . Authorities say the young girls were playing with the toy-shaped explosive when it went off Friday in Kel village , near the line of control dividing Pakistani and Indian Kashmir . NNS VBP DT JJ NNS VBD VBG IN DT JJ NN WRB PRP VBD RB NNP IN NNP NN , IN DT NN IN NN VBG JJ CC NNP NNP . Officials say such cluster bombs were used in large numbers by Indian forces along the line of control before a ceasefire three years ago . NNS VBP JJ NN NNS VBD VBN IN JJ NNS IN JJ NNS IN DT NN IN NN IN DT JJ CD NNS RB . They say the Pakistani army has defused many bombs , grenades and toy-shaped bomblets , but that some are still lying in the farm fields . PRP VBP DT JJ NN VBZ VBN JJ NNS , NNS CC JJ NNS , CC IN DT VBP RB VBG IN DT NN NNS . Pakistan and India have a history of bitter relations and fought three wars over Kashmir . NNP CC NNP VBP DT NN IN JJ NNS CC VBD CD NNS IN NNP . Sporadic clashes and shelling along the border ceased following the ceasefire . JJ NNS CC VBG IN DT NN VBD VBG DT NN . Pakistan and India also have started a peace process to resolve the Kashmir conflict . NNP CC NNP RB VBP VBN DT NN NN TO VB DT NNP NN . Turkey 's parliament has set the dates for a presidential election after an earlier attempt in April to select a new president was blocked . NNP POS NN VBZ VBN DT NNS IN DT JJ NN IN DT JJR NN IN NNP TO VB DT JJ NN VBD VBN . The parliament Friday set the first round of voting for August 20 , followed by a second round on August 24 and a third round on August 28 . DT NN NNP VBD DT JJ NN IN NN IN NNP CD , VBN IN DT JJ NN IN NNP CD CC DT JJ NN IN NNP CD . The presidency is decided by a vote of parliament members only , not by a nationwide vote of Turkish citizens . DT NN VBZ VBN IN DT NN IN NN NNS RB , RB IN DT JJ NN IN JJ NNS . In April , a secularist campaign blocked the Islamist-rooted governing party of Prime Minister Recep Tayyip Erdogan from electing a member of his party as president . IN NNP , DT NN NN VBD DT JJ VBG NN IN NNP NNP NNP NNP NNP IN VBG DT NN IN PRP$ NN IN NN . Turkey 's newly-elected parliament on Thursday voted overwhelmingly to choose ruling Justice and Development Party member Koksal Toptan , a secular politician , as the new speaker . NNP POS JJ NN IN NNP VBD RB TO VB VBG NNP CC NNP NNP NN NNP NNP , DT JJ NN , IN DT JJ NN . The prominent tribe of Jordanian-born terrorist leader Abu Musab al-Zarqawi has published a declaration disowning him . DT JJ NN IN JJ JJ NN NNP NNP NNP VBZ VBN DT NN VBG PRP . In a half-page notice printed Sunday in Jordanian newspapers , 57 members of the al-Khalayleh family , including Zarqawi 's brother and cousin , said they are severing all links to the fugitive ' until doomsday . ' IN DT NN NN VBN NNP IN JJ NNS , CD NNS IN DT NNP NN , VBG NNP POS NN CC NN , VBD PRP VBP VBG DT NNS IN DT NN `` IN NN . `` The family also pledged strong allegiance to Jordan 's King Abdullah , who Zarqawi threatened last week to kill . DT NN RB VBD JJ NN TO NNP POS NNP NNP , WP NNP VBD JJ NN TO VB . The family statement was published two days after the al-Qaida in Iraq leader defended the November 9 bombings at three hotels in Amman that killed 59 people . DT NN NN VBD VBN CD NNS IN DT NNP IN NNP NN VBD DT NNP CD NNS IN CD NNS IN NNP WDT VBD CD NNS . He also warned of more attacks . PRP RB VBD IN JJR NNS . The family statement said anyone who carries out such attacks in Jordan is not Jordanian and has nothing to do with Jordan . DT NN NN VBD DT WP VBZ RP JJ NNS IN NNP VBZ RB JJ CC VBZ DT TO VB IN NNP . U.S. President Barack Obama is scheduled to meet Tuesday with Spanish Prime Minister Jose Luis Rodriguez Zapatero . NNP NNP NNP NNP VBZ VBN TO VB NNP IN JJ NNP NNP NNP NNP NNP NNP . The two leaders are to have a working lunch at the White House and then make statements to reporters . DT CD NNS VBP TO VB DT VBG NN IN DT NNP NNP CC RB VB NNS TO NNS . Later Tuesday , President Obama , first lady Michelle Obama , Vice President Joe Biden and his wife , Jill Biden , are to attend a concert on the White House South Lawn celebrating Hispanic musical heritage . RB NNP , NNP NNP , JJ NN NNP NNP , NNP NNP NNP NNP CC PRP$ NN , NNP NNP , VBP TO VB DT NN IN DT NNP NNP NNP NNP VBG JJ JJ NN . The concert will include a number of well-known Hispanic performers including Gloria Estefan , Marc Anthony , Jose Feliciano , George Lopez and Thalia . DT NN MD VB DT NN IN JJ JJ NNS VBG NNP NNP , NNP NNP , NNP NNP , NNP NNP CC NNP . The president is to make brief remarks at the beginning of the concert . DT NN VBZ TO VB JJ NNS IN DT NN IN DT NN . The event is to be televised nationally at a later date . DT NN VBZ TO VB VBN RB IN DT JJ NN . The incoming administration of U.S. President-elect Barack Obama is assembling a team of advisors and staffers , most of whom worked for the last Democratic administration under former President Bill Clinton . DT JJ NN IN NNP NNP NNP NNP VBZ VBG DT NN IN NNS CC NNS , JJS IN WP VBD IN DT JJ JJ NN IN JJ NNP NNP NNP . Mr. Obama has put together a team of experts to conduct a review of the State , Defense and Treasury Departments . NNP NNP VBZ VBN RB DT NN IN NNS TO VB DT NN IN DT NNP , NNP CC NNP NNS . The six team leaders picked for the task all worked under Mr. Clinton . DT CD NN NNS VBD IN DT NN DT VBN IN NNP NNP . Democratic officials say Vice President-elect Joe Biden has picked as his chief of staff Ron Klain , who was chief of staff for former Vice President Al Gore . JJ NNS VBP NN NNP NNP NNP VBZ VBN IN PRP$ NN IN NN NNP NNP , WP VBD NN IN NN IN JJ NNP NNP NNP NNP . Biden and his wife Jill are scheduled to meet outgoing Vice President Dick Cheney Thursday for a tour of the official vice presidential residence in Washington . NNP CC PRP$ NN NNP VBP VBN TO VB JJ NNP NNP NNP NNP NNP IN DT NN IN DT JJ NN JJ NN IN NNP . Thursday 's meeting on the vice presidential transition follows talks Monday between President George Bush and President-elect Obama . NNP POS NN IN DT NN JJ NN VBZ NNS NNP IN NNP NNP NNP CC NNP NNP . Interpol police in Afghanistan says four Taleban prisoners who escaped from one of Afghanistan 's prisons earlier this year have been recaptured in Bulgaria and Uzbekistan . NNP NN IN NNP VBZ CD NNP NNS WP VBD IN CD IN NNP POS NNS RBR DT NN VBP VBN VBN IN NNP CC NNP . The Interpol chief said Monday that the four men were captured last month . DT NNP NN VBD NNP IN DT CD NNS VBD VBN JJ NN . Two were captured in Bulgaria and two in Uzbekistan , and they will be sent back to Afghanistan as soon as identification procedures have been completed . CD VBD VBN IN NNP CC CD IN NNP , CC PRP MD VB VBN RB TO NNP RB RB IN NN NNS VBP VBN VBN . The four were among seven Taleban inmates who disguised themselves as visitors to escape the high security Pol-e-Charkhi prison on the outskirts of Kabul . DT CD VBD IN CD NNP NNS WP VBN PRP IN NNS TO VB DT JJ NN NNP NN IN DT NNS IN NNP . The other three remain at large . DT JJ CD VBP IN JJ . At the time of the escape , the prisoners did not wear special uniforms . IN DT NN IN DT NN , DT NNS VBD RB VB JJ NNS . So the seven militants duped the guards by marking their hands with a fake ink stamp similar to one used to identify visitors to the jail . IN DT CD NNS VBD DT NNS IN VBG PRP$ NNS IN DT JJ NN NN JJ TO CD VBN TO VB NNS TO DT NN . Russian President Dmitri Medvedev has sent parliament a draft law on extending the term of the country 's president from four to six years . JJ NNP NNP NNP VBZ VBN NN DT NN NN IN VBG DT NN IN DT NN POS NN IN CD CC CD NNS . The Russian leader first made the proposal in his state-of-the-nation address last week . DT JJ NN RB VBD DT NN IN PRP$ NN NN JJ NN . The measure also calls for extending the term of the lower house of parliament , the State Duma , from four to five years . DT NN RB VBZ IN VBG DT NN IN DT JJR NN IN NN , DT NNP NNP , IN CD CC CD NNS . Some Russian news reports raised the possibility the changes would require new presidential elections in Russia . DT JJ NN NNS VBD DT NN DT NNS MD VB JJ JJ NNS IN NNP . This , they said , would allow former Russian President Vladimir Putin , who now is Russia 's prime minister , to quickly seek to return to the presidency . DT , PRP VBD , MD VB JJ JJ NNP NNP NNP , WP RB VBZ NNP POS JJ NN , TO RB VB TO VB TO DT NN . But Russian officials have downplayed the possibility , noting that the changes would not apply to Mr. Medvedev 's current term . CC JJ NNS VBP VBN DT NN , VBG IN DT NNS MD RB VB TO NNP NNP POS JJ NN . Taiwan says it is asking the United States to clarify recent comments by a top State Department official who indirectly likened the island to a ' landmine ' in U.S.-China relations . NNP VBZ PRP VBZ VBG DT NNP NNPS TO VB JJ NNS IN DT JJ NNP NNP NN WP RB VBD DT NN TO DT `` NN `` IN NNP NNS . State Department officials were not immediately available to comment on the request . NNP NNP NNS VBD RB RB JJ TO VB IN DT NN . In a televised interview this month with U.S. Public Broadcasting , Deputy Secretary of State Richard Armitage was asked where the landmines are in China 's relationship with the United States . IN DT JJ NN DT NN IN NNP NNP NNP , NNP NNP IN NNP NNP NNP VBD VBN WRB DT NNS VBP IN NNP POS NN IN DT NNP NNPS . He replied that Taiwan is ' probably the biggest . ' PRP VBD IN NNP VBZ `` RB DT JJS . `` Mr. Armitage also repeated the U.S. official policy that recognizes Taiwan as part of China 's territory , and he mentioned the Taiwan Relations Act that requires the United States to keep military forces in the Pacific to deter an attack . NNP NNP RB VBD DT NNP NN NN WDT VBZ NNP IN NN IN NNP POS NN , CC PRP VBD DT NNP NNP NNP WDT VBZ DT NNP NNPS TO VB JJ NNS IN DT NNP TO VB DT NN . The interview was broadcast on December 10 , but Mr. Armitage 's remarks were not published on the State Department 's website until Monday . DT NN VBD VBN IN NNP CD , CC NNP NNP POS NNS VBD RB VBN IN DT NNP NNP POS NN IN NNP . Freed American hostage Jill Carroll , 28 , arrived at Ramstein Air Base in Germany Saturday as she headed home to the United States after 82 days in captivity in Iraq . NNP NNP NN NNP NNP , CD , VBD IN NNP NNP NNP IN NNP NNP IN PRP VBD NN TO DT NNP NNPS IN CD NNS IN NN IN NNP . The journalist was released by her abductors Thursday . DT NN VBD VBN IN PRP$ NNS NNP . Carroll 's father says the video in which she praised her Iraqi captors was made under duress . NNP POS NN VBZ DT NN IN WDT PRP VBD PRP$ JJ NNS VBD VBN IN NN . Jim Carroll says his daughter felt compelled to make statements strongly critical of President Bush in order to be released by her captors . NNP NNP VBZ PRP$ NN VBD VBN TO VB NNS RB JJ IN NNP NNP IN NN TO VB VBN IN PRP$ NNS . Following her release Thursday , her kidnappers released a video , taped before she was set free , in which she praised the Iraqi insurgency and criticized the U.S. war effort . VBG PRP$ NN NNP , PRP$ NNS VBD DT NN , VBN IN PRP VBD VBN JJ , IN WDT PRP VBD DT JJ NN CC VBD DT NNP NN NN . Indonesian officials say the World Health Organization has confirmed the country 's eighth human death from bird flu . JJ NNS VBP DT NNP NNP NNP VBZ VBN DT NN POS JJ JJ NN IN NN NN . The officials said Saturday , tests conducted at a laboratory in Hong Kong show that a 25-year-old woman who died earlier this week had the H5N1 strain of the virus . DT NNS VBD NNP , NNS VBN IN DT NN IN NNP NNP VBP IN DT JJ NN WP VBD RBR DT NN VBD DT NNP NN IN DT NN . Meanwhile , officials in Ukraine have reported the country 's first outbreak of bird flu in poultry . RB , NNS IN NNP VBP VBN DT NN POS JJ NN IN NN NN IN NN . The Agriculture Ministry says the virus was detected in Ukraine 's Crimea peninsula , but it is not known yet if the virus is the strain that is dangerous to humans . DT NNP NNP VBZ DT NN VBD VBN IN NNP POS NNP NN , CC PRP VBZ RB VBN RB IN DT NN VBZ DT NN WDT VBZ JJ TO NNS . Bird flu has killed nearly 70 people in Asia since 2003 , and has also spread among poultry flocks in many European countries . NN NN VBZ VBN RB CD NNS IN NNP IN CD , CC VBZ RB VBN IN JJ NNS IN JJ JJ NNS . Health experts fear the virus could mutate into a form that could be easily transmitted between humans and kill millions of people . NN NNS VBP DT NN MD VB IN DT NN WDT MD VB RB VBN IN NNS CC VB NNS IN NNS . Egypt 's state-run media have predicted an overwhelming victory for incumbent President Hosni Mubarak , based on preliminary election results . NNP POS JJ NNS VBP VBN DT JJ NN IN JJ NNP NNP NNP , VBN IN JJ NN NNS . Newspapers Friday proclaimed a fifth term for Mr. Mubarak , reporting he won more than 80 percent of the votes in the country 's 26 governorates . NNS NNP VBD DT JJ NN IN NNP NNP , VBG PRP VBD RBR IN CD NN IN DT NNS IN DT NN POS CD NNS . Voter turnout was low , by some estimates only around 30 percent of the 32 million registered voters , but state media downplayed its significance with editorials praising Mr. Mubarak . NNP NN VBD JJ , IN DT NNS RB IN CD NN IN DT CD CD JJ NNS , CC NN NNS VBD PRP$ NN IN NNS VBG NNP NNP . The 77-year-old leader faced nine challengers , including Ayman Nour of the liberal Tomorrow ( Ghad ) Party , who appears to have come in a very distant second , ahead of Noaman Gomaa of the Wafd Party . DT JJ NN VBD CD NNS , VBG NNP NNP IN DT JJ NN LRB NNP RRB NNP , WP VBZ TO VB VBN IN DT RB JJ NN , RB IN NNP NNP IN DT NNP NNP . Independent monitors and Western news agencies reported multiple problems with Wednesday 's election , including vote-buying and intimidation . JJ NNS CC JJ NN NNS VBD JJ NNS IN NNP POS NN , VBG JJ CC NN . But the election commission rejected a petition from Mr. Nour demanding a revote . CC DT NN NN VBD DT NN IN NNP NNP VBG DT NN . Final results are expected by Saturday . JJ NNS VBP VBN IN NNP . Venezuela 's oil minister has said OPEC countries have reached consensus to cut back crude oil production by one million barrels a day , beginning December first . NNP POS NN NN VBZ VBN NNP NNS VBP VBN NN TO VB RB JJ NN NN IN CD CD NNS DT NN , VBG NNP NN . OPEC says it is currently producing 28 million barrels per day . NNP VBZ PRP VBZ RB VBG CD CD NNS IN NN . Rafael Ramirez said Friday in a television interview that OPEC oil ministers agree on the cut and will hold a meeting to discuss the mechanics of the cut . NNP NNP VBD NNP IN DT NN NN IN NNP NN NNS VBP IN DT NN CC MD VB DT NN TO VB DT NNS IN DT NN . An Opec official said a meeting is expected on October 20 in Qatar . DT NNP NN VBD DT NN VBZ VBN IN NNP CD IN NNP . Ramirez said Venezuela would try to keep the price of oil above $ 55 a barrel . NNP VBD NNP MD VB TO VB DT NN IN NN IN $ CD DT NN . He said Venezuela has already implemented a 50,000 barrel per day output reduction . PRP VBD NNP VBZ RB VBN DT CD NN IN NN NN NN . The White House announced Saturday that U.S. President Barack Obama will travel to Russia , Italy and Ghana in July . DT NNP NNP VBD NNP IN NNP NNP NNP NNP MD VB TO NNP , NNP CC NNP IN NNP . Mr. Obama will visit Moscow from July 6 to 8 for meetings with Russian President Dmitri Medvedev . NNP NNP MD VB NNP IN NNP CD TO CD IN NNS IN JJ NNP NNP NNP . The two leaders are expected to talk about ways to reduce the stockpile of nuclear weapons , cooperate on nonproliferation and resolve differences over a U.S. planned missile defense system in central Europe . DT CD NNS VBP VBN TO VB IN NNS TO VB DT NN IN JJ NNS , VB IN NN CC VB NNS IN DT NNP JJ NN NN NN IN JJ NNP . The president will travel to L'Aquila , Italy to attend a G-8 summit of industrialized nations from July 8 to 10 . DT NN MD VB TO NNP , NNP TO VB DT JJ NN IN JJ NNS IN NNP CD TO CD . President Obama and world leaders are expected to discuss the economy , energy , and climate change . NNP NNP CC NN NNS VBP VBN TO VB DT NN , NN , CC NN NN . Mr. Obama will then travel to the sub-Saharan African country of Ghana , where he will visit the city of Accra on July 10 and 11 . NNP NNP MD RB VB TO DT JJ JJ NN IN NNP , WRB PRP MD VB DT NN IN NNP IN NNP CD CC CD . Mr. Obama will meet with Ghanaian President John Atta-Mills to discuss a range of bilateral and regional issues . NNP NNP MD VB IN JJ NNP NNP NNP TO VB DT NN IN JJ CC JJ NNS . Police in Afghanistan say an explosion in the capital , Kabul , has killed two policemen and wounded their commander . NNS IN NNP VBP DT NN IN DT NN , NNP , VBZ VBN CD NNS CC VBD PRP$ NN . Officials say the commander , Ali Shah Paktiawal , appears to have been the target of Wednesday attack . NNS VBP DT NN , NNP NNP NNP , VBZ TO VB VBN DT NN IN NNP NN . He is the head of criminal investigations in the Afghan capital . PRP VBZ DT NN IN JJ NNS IN DT JJ NN . Paktiawal survived the blast with injuries , but two of his officers died . NNP VBD DT NN IN NNS , CC CD IN PRP$ NNS VBD . Police say the bomb exploded when Paktiawal and his team were investigating the deaths of three of their colleagues . NNS VBP DT NN VBD WRB NNP CC PRP$ NN VBD VBG DT NNS IN CD IN PRP$ NNS . The three were killed in an overnight attack on a police post in the western outskirts of Kabul . DT CD VBD VBN IN DT JJ NN IN DT NN NN IN DT JJ NNS IN NNP . A Taliban spokesman claimed responsibility for both attacks . DT NNP NN VBD NN IN DT NNS . The World Health Organization ( WHO ) says Indonesia has one of the fastest growing HIV epidemics in Asia . DT NNP NNP NNP LRB NNP RRB VBZ NNP VBZ CD IN DT JJS VBG NNP NNS IN NNP . The U.N. body published a report Saturday saying drug users and sex workers account for most of the spread of the virus that causes AIDS . DT NNP NN VBD DT NN NNP VBG NN NNS CC NN NNS VBP IN JJS IN DT NN IN DT NN WDT VBZ NNP . The report says HIV has become a particular concern in the remote eastern province of Papua , where infection rates are more than 20 times the national average . DT NN VBZ NNP VBZ VBN DT JJ NN IN DT JJ JJ NN IN NNP , WRB NN NNS VBP JJR IN CD NNS DT JJ NN . Health authorities say about two percent of Papua 's population is infected with HIV . NNP NNS VBP IN CD NN IN NNP POS NN VBZ VBN IN NNP . U.N. officials say Indonesia 's underdeveloped health care system and lack of resources make it difficult for the country to deal with HIV and AIDS . NNP NNS VBP NNP POS JJ NN NN NN CC NN IN NNS VBP PRP JJ IN DT NN TO VB IN NNP CC NNP . About 7,000 AIDS cases have been reported in Indonesia , although the real figure is believed to be much higher . IN CD NNP NNS VBP VBN VBN IN NNP , IN DT JJ NN VBZ VBN TO VB RB JJR . Brazilian police say they have broken up a smuggling network , involving foreign diplomats from at least five embassies . JJ NNS VBP PRP VBP VBN RP DT NN NN , VBG JJ NNS IN IN JJS CD NNS . Police say the foreign envoys used their diplomatic privileges help smuggle items into the country tax free . NNS VBP DT JJ NNS VBD PRP$ JJ NNS VBP VB NNS IN DT NN NN JJ . The luxury products such as whiskey and perfumes were sold to the upper class in the capital of Brasilia . DT NN NNS JJ IN NN CC NNS VBD VBN TO DT JJ NN IN DT NN IN NNP . Federal police said Friday that embassies from three African and two Middle Eastern countries were allegedly part of the ring . JJ NNS VBD NNP IN NNS IN CD JJ CC CD NNP NNP NNS VBD RB NN IN DT NN . U.S. Vice President Dick Cheney is heading Sunday to the Middle East for visits to Oman , Saudia Arabia , Israel , the West Bank , and Turkey . NNP NNP NNP NNP NNP VBZ VBG NNP TO DT NNP NNP IN NNS TO NNP , NNP NNP , NNP , DT NNP NNP , CC NNP . U.S officials say Mr. Cheney 's talks will cover Iraq , the situations in Lebanon and Syria , Iran 's rising influnce in the region , violence in Gaza , and soaring gasoline prices in the United States . NNP NNS VBP NNP NNP POS NNS MD VB NNP , DT NNS IN NNP CC NNP , NNP POS VBG NN IN DT NN , NN IN NNP , CC VBG NN NNS IN DT NNP NNPS . He is expected to encourage Saudi Arabia to step up diplomatic ties with Iraq . PRP VBZ VBN TO VB NNP NNP TO VB RP JJ NNS IN NNP . Cheney also is expected to encourage Israel and the Palestinians to move forward with a peace deal . NNP RB VBZ VBN TO VB NNP CC DT NNS TO VB RB IN DT NN NN . In Turkey , the U.S. vice president is expected to discuss Turkey 's recent incursion against Iraq-based rebels of the Kurdistan Workers Party . IN NNP , DT NNP NN NN VBZ VBN TO VB NNP POS JJ NN IN JJ NNS IN DT NNP NNP NNP . Pope Benedict has marked the start of the new year with a call for protection of the family , which he said is vital for world peace . NNP NNP VBZ VBN DT NN IN DT JJ NN IN DT NN IN NN IN DT NN , WDT PRP VBD VBZ JJ IN NN NN . In the homily at his first Mass of 2008 , the pontiff called the family the primary means for assuring peace . IN DT NN IN PRP$ JJ NNP IN CD , DT NN VBD DT NN DT JJ NNS IN VBG NN . And he warned that any negation of family rights threatens the foundations of peace . CC PRP VBD IN DT NN IN NN NNS VBZ DT NNS IN NN . The pope has frequently turned to the topic of the traditional family based on marriage between a man and a woman , responding to calls by activists for recognition of same-sex marriage . DT NN VBZ RB VBN TO DT NN IN DT JJ NN VBN IN NN IN DT NN CC DT NN , VBG TO NNS IN NNS IN NN IN JJ NN . The Roman Catholic Church celebrates January first as its World Day of Peace . DT NNP NNP NNP VBZ NNP RB IN PRP$ NNP NNP IN NNP . The international aid group Doctors Without Borders ( Medecins Sans Frontieres ) says it is outraged by the arrest of its regional head in Sudan over a report accusing Sudanese soldiers and militiamen of rape . DT JJ NN NN NNS IN NNS LRB NNP NNP NNP RRB VBZ PRP VBZ VBN IN DT NN IN PRP$ JJ NN IN NNP IN DT NN VBG JJ NNS CC NNS IN NN . Monday , officials arrested Paul Foreman and accused him of publishing FALSE information for failing to turn over medical records supporting the report . NNP , NNS VBN NNP NNP CC VBD PRP IN VBG JJ NN IN VBG TO VB RP JJ NNS VBG DT NN . That report says some 400 rape victims identified their attackers as soldiers or members of the pro-government militia . DT NN VBZ DT CD NN NNS VBD PRP$ NNS IN NNS CC NNS IN DT JJ NN . But Mr. Foreman says he will not violate doctor-patient confidentiality by handing over the documents . CC NNP NNP VBZ PRP MD RB VB JJ NN IN VBG IN DT NNS . He has been released on bail , and authorities told him not to leave the country . PRP VBZ VBN VBN IN NN , CC NNS VBD PRP RB TO VB DT NN . Sudan 's Attorney General Mohamed Farid says Mr. Foreman should have submitted the report to the government before publishing it . NNP POS NNP NNP NNP NNP VBZ NNP NNP MD VB VBN DT NN TO DT NN IN VBG PRP . If he is found guilty , Mr. Foreman could serve up to three years in prison . IN PRP VBZ VBN JJ , NNP NNP MD VB RP TO CD NNS IN NN . President Bush says the United States must change its habits and reduce its dependence on foreign oil . NNP NNP VBZ DT NNP NNPS MD VB PRP$ NNS CC VB PRP$ NN IN JJ NN . President Bush says the country 's reliance on fossil fuels harms the environment and puts Americans at the mercy of nations that do not enjoy the same freedoms . NNP NNP VBZ DT NN POS NN IN JJ NNS VBZ DT NN CC VBZ NNS IN DT NN IN NNS WDT VBP RB VB DT JJ NNS . American consumers , for their part , appear to be changing their habits , but they are doing so for more practical reasons . JJ NNS , IN PRP$ NN , VBP TO VB VBG PRP$ NNS , CC PRP VBP VBG RB IN JJR JJ NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Iran says Russia is selling Tehran advanced anti-aircraft missiles , but did not say when they will arrive . NNP VBZ NNP VBZ VBG NNP JJ JJ NNS , CC VBD RB VB WRB PRP MD VB . The S-300 air defense system has a radar that can track many targets at the same time , and missiles that can hit targets anywhere from just above the treetops to 27 kilometers in the sky . DT JJ NN NN NN VBZ DT NN WDT MD VB JJ NNS IN DT JJ NN , CC NNS WDT MD VB NNS RB IN RB IN DT NNS TO CD NNS IN DT NN . The S-300 compliments a shorter-range Russian system sold to Iran earlier . DT NNP VBZ DT JJ JJ NN VBN TO NNP RB . Iran 's announcement that it is upgrading its air defenses was made during a time of international tensions over Iranian nuclear programs that western nations fear could be used to make nuclear weapons . NNP POS NN IN PRP VBZ VBG PRP$ NN NNS VBD VBN IN DT NN IN JJ NNS IN JJ JJ NNS IN JJ NNS VBP MD VB VBN TO VB JJ NNS . The United States has never ruled out military action against the suspected nuclear weapons projects , but a recently published U.S. intelligence report said Iran stopped its nuclear weapons program several years ago . DT NNP NNPS VBZ RB VBN RP JJ NN IN DT JJ JJ NNS NNS , CC DT RB VBN NNP NN NN VBD NNP VBD PRP$ JJ NNS NN JJ NNS RB . Iranian President Mohammad Khatami is on an official visit to Venezuela , where he is expected to sign a number of bilateral agreements with President Hugo Chavez . JJ NNP NNP NNP VBZ IN DT JJ NN TO NNP , WRB PRP VBZ VBN TO VB DT NN IN JJ NNS IN NNP NNP NNP . Oil and commercial accords are aimed at strengthening ties between the two nations , both of which have been the focus of criticism from the United States . NN CC JJ NNS VBP VBN IN VBG NNS IN DT CD NNS , DT IN WDT VBP VBN DT NN IN NN IN DT NNP NNPS . The Bush administration has been a vocal opponent of Iran 's nuclear program , and of Venezuelan President Chavez 's treatment of the opposition and the media in his country . DT NNP NN VBZ VBN DT JJ NN IN NNP POS JJ NN , CC IN JJ NNP NNP POS NN IN DT NN CC DT NNS IN PRP$ NN . The United States is Venezuela 's largest oil customer . DT NNP NNPS VBZ NNP POS JJS NN NN . President Khatami will also attend the inauguration of a tractor assembly plant . NNP NNP MD RB VB DT NN IN DT NN NN NN . India celebrated its 58th Republic Day Friday , with military parades in the nation 's capital and various cities across the country . NNP VBD PRP$ JJ NNP NNP NNP , IN JJ NNS IN DT NN POS NN CC JJ NNS IN DT NN . Security forces were on high alert for suspected insurgent attacks , but there were no reports of violence during the festivities . NNP NNS VBD IN JJ NN IN JJ JJ NNS , CC EX VBD DT NNS IN NN IN DT NNS . Russian President Vladimir Putin joined Prime Minister Manmohan Singh and President Abdul Kalam as the guest of honor for this year 's celebrations in New Delhi . JJ NNP NNP NNP VBD NNP NNP NNP NNP CC NNP NNP NNP IN DT NN IN NN IN DT NN POS NNS IN NNP NNP . On Thursday , New Delhi police said they arrested a suspected militant carrying more than two kilograms of explosives . IN NNP , NNP NNP NN VBD PRP VBN DT JJ NN VBG JJR IN CD NNS IN NNS . India 's Republic Day marks the founding of the Indian republic in 1950 , three years after its independence from Britain . NNP POS NNP NNP VBZ DT NN IN DT JJ NN IN CD , CD NNS IN PRP$ NN IN NNP . Campaigning has begun for Afghanistan 's first parliamentary polls since the fall of the Taleban in 2001 , amid warnings by a human rights group that female candidates need more protection . NN VBZ VBN IN NNP POS JJ JJ NNS IN DT NN IN DT NNP IN CD , IN NNS IN DT JJ NNS NN IN JJ NNS VBP JJR NN . On Wednesday , authorities launched a month of official campaigning featuring free radio or television slots for each of the nearly 6,000 candidates running for the national assembly or for local councils . IN NNP , NNS VBD DT NN IN JJ NN VBG JJ NN CC NN NNS IN DT IN DT RB CD NNS VBG IN DT JJ NN CC IN JJ NNS . The campaign will end on September 15 , three days ahead of the September 18 vote . DT NN MD VB IN NNP CD , CD NNS RB IN DT NNP CD NN . The polls have already been pushed back twice from last year , and the United Nations has said it could be the most challenging elections the international community has ever organized . DT NNS VBP RB VBN VBN RB RB IN JJ NN , CC DT NNP NNP VBZ VBN PRP MD VB DT RBS JJ NNS DT JJ NN VBZ RB VBN . Human Rights Watch says the fairness of the vote will be jeopardized if Afghan and international authorities do not do more to shield the nearly 600 female candidates . NNP NNP NNP VBZ DT NN IN DT NN MD VB VBN IN JJ CC JJ NNS VBP RB VB JJR TO VB DT RB CD JJ NNS . Russian and Chinese forces are wrapping up the second phase of joint military exercises as they prepare for live-fire drills to begin Tuesday in eastern China 's Shandong Peninsula . JJ CC JJ NNS VBP VBG RP DT JJ NN IN JJ JJ NNS IN PRP VBP IN JJ NNS TO VB NNP IN JJ NNP POS NNP NNP . Nearly 10,000 troops from land , sea , and air forces of both nations are participating in the first-ever large-scale war games between the two countries . RB CD NNS IN NN , NN , CC NN NNS IN DT NNS VBP VBG IN DT JJ JJ NN NNS IN DT CD NNS . The China Daily newspaper says the third phase of the eight-day exercise , dubbed ' Peace Mission 2005 , ' will involve firing with live ammunition by warplanes and military vessels as part of an amphibious landing on the Shandong peninsula . DT NNP NNP NN VBZ DT JJ NN IN DT JJ NN , VBD `` NNP NNP CD , `` MD VB VBG IN JJ NN IN NNS CC JJ NNS IN NN IN DT JJ NN IN DT NNP NN . The joint maneuvers began in the Russian port city of Vladivostok Thursday . DT JJ NNS VBD IN DT JJ JJ NN IN NNP NNP . The United States is not attending as an observer , but says it is closely monitoring the drills . DT NNP NNPS VBZ RB VBG IN DT NN , CC VBZ PRP VBZ RB VBG DT NNS . A Ugandan official says a massive landslide in eastern Uganda has killed at least 106 people . DT JJ NN VBZ DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NNS . Minister of State for Disasters Mussa Ecweru told VOA 's Swahili service that 300 people remain missing . NNP IN NNP IN NNP NNP NNP VBD NNP POS NNP NN IN CD NNS VBP JJ . The landslide engulfed three villages in the Bududa region near Mount Elgon late on Monday , following more than a week of heavy rain in the area . DT NN VBD CD NNS IN DT NNP NN IN NNP NNP RB IN NNP , VBG JJR IN DT NN IN JJ NN IN DT NN . Police and armed forces are taking part in efforts to find survivors . NNS CC JJ NNS VBP VBG NN IN NNS TO VB NNS . Officials say the mudslide destroyed homes , markets , schools , and a health clinic . NNS VBP DT NN VBD NNS , NNS , NNS , CC DT NN NN . France says it will conduct a fourth search for additional wreckage of an Air France jet that crashed into the Atlantic last year with 228 people on board . NNP VBZ PRP MD VB DT JJ NN IN JJ NN IN DT NNP NNP NN WDT VBD IN DT NNP JJ NN IN CD NNS IN NN . The French Transport Ministry said Thursday that the latest search should begin in February . DT JJ NN NNP VBD NNP IN DT JJS NN MD VB IN NNP . Officials were quoted as saying the ' best equipment currently available ' will be used . NNS VBD VBN IN VBG DT `` JJS NN RB JJ `` MD VB VBN . Air France Flight 447 crashed off Brazil 's coast in June 2009 as it headed to Paris from Rio de Janeiro . NNP NNP NNP CD VBD RP NNP POS NN IN NNP CD IN PRP VBD TO NNP IN NNP IN NNP . The initial search found wreckage and bodies , but the flight data recorders , which could provide clues as to what happened to the aircraft , have not been found . DT JJ NN VBD NN CC NNS , CC DT NN NNS NNS , WDT MD VB NNS IN TO WP VBD TO DT NN , VBP RB VBN VBN . Search teams looking for the missing recorders called off operations in May after failing to locate them . NNP NNS VBG IN DT VBG NNS VBD RP NNS IN NNP IN VBG TO VB PRP . The plane went down in water some 7,000 meters-deep above a mountainous ocean floor . DT NN VBD RB IN NN DT CD NN IN DT JJ NN NN . A preliminary report concluded that a faulty speed-sensing system may have led to the crash . DT JJ NN VBD IN DT JJ JJ NN MD VB VBN TO DT NN . Prosecutors in Indonesia have asked a panel of judges for the death penalty against an Australian accused of being a mastermind of a drug smuggling ring on the resort island of Bali . NNS IN NNP VBP VBN DT NN IN NNS IN DT NN NN IN DT NN VBN IN VBG DT NN IN DT NN VBG NN IN DT NN NN IN NNP . The defendant , Andrew Chan , is one of nine people arrested last April for allegedly trying to smuggle about eight kilograms of heroin out of Bali . DT NN , NNP NNP , VBZ CD IN CD NNS VBN JJ NNP IN RB VBG TO VB IN CD NNS IN NN IN IN NNP . Earlier this week , prosecutors sought the death penalty for the group 's alleged ringleader Myuran Sukumaran . RBR DT NN , NNS VBD DT NN NN IN DT NN POS JJ NN NNP NNP . They have requested life sentences for six other male defendants , and a 20 year prison term for the only female defendant . PRP VBP VBN NN NNS IN CD JJ JJ NNS , CC DT CD NN NN NN IN DT JJ JJ NN . The trial is the latest of several high-profile drug cases in Indonesia involving Australians . DT NN VBZ DT JJS IN JJ JJ NN NNS IN NNP VBG NNS . Indonesia 's Supreme Court recently reinstated a 20-year prison sentence for an Australian Schapelle Corby , convicted of marijuana smuggling . NNP POS NNP NNP RB VBD DT JJ NN NN IN DT JJ NNP NNP , VBN IN NN NN . Thousands of ethnic Albanians have marched through Kosovo 's capital , Pristina , to protest the killing of a police officer last week . NNS IN JJ NNS VBP VBN IN NNP POS NN , NNP , TO VB DT NN IN DT NN NN JJ NN . The demonstrators carried photographs of the officer , Triumf Riza , who was shot to death in a parking lot . DT NNS VBD NNS IN DT NN , NNP NNP , WP VBD VBN TO NN IN DT NN NN . Reaction to the shooting has highlighted citizens ' frustration with the high rate of crime in the area . NN TO DT NN VBZ VBN NNS POS NN IN DT JJ NN IN NN IN DT NN . The United Nations administrator of Kosovo , Joachim Ruecker , released a statement expressing full support for the demonstrators . DT NNP NNPS NN IN NNP , NNP NNP , VBD DT NN VBG JJ NN IN DT NNS . He called the murder of the policeman ' a heinous crime and a terrible tragedy . ' PRP VBD DT NN IN DT NN `` DT JJ NN CC DT JJ NN . `` He said the outpouring of emotion after Riza 's death is a sign that the people of Kosovo do not accept crime and violence . PRP VBD DT NN IN NN IN NNP POS NN VBZ DT NN IN DT NNS IN NNP VBP RB VB NN CC NN . Kosovo has been under U.N. administration since 1999 . NNP VBZ VBN IN NNP NN IN CD . Uganda 's Health Ministry says the country has confirmed its first case of H1N1 swine flu . NNP POS NNP NNP VBZ DT NN VBZ VBN PRP$ JJ NN IN NNP NN NN . Ugandan health official James Kakooza said Thursday that a 40-year-old British man tested positive for the virus after arriving in Entebbe on June 26 . JJ NN NN NNP NNP VBD NNP IN DT JJ JJ NN VBN JJ IN DT NN IN VBG IN NNP IN NNP CD . Kakooza said the man came from London through Nairobi , Kenya . NNP VBD DT NN VBD IN NNP IN NNP , NNP . Uganda is the seventh sub-Saharan nation to report swine flu cases - along with Kenya , Cape Verde , Ethiopia , Ivory Coast , Mauritius , and South Africa . NNP VBZ DT JJ JJ NN TO VB JJ NN NNS : IN IN NNP , NNP NNP , NNP , NNP NNP , NNP , CC NNP NNP . The World Health Organization said that as of Wednesday , 332 people have died from the swine flu virus , and more than 77,000 people have been diagnosed worldwide . DT NNP NNP NNP VBD IN IN IN NNP , CD NNS VBP VBN IN DT NN NN NN , CC JJR IN CD NNS VBP VBN VBN NN . In June , the WHO declared an influenza pandemic for the first time in more than 40 years . IN NNP , DT NNP VBD DT NN NN IN DT JJ NN IN JJR IN CD NNS . The H1N1 strain of swine flu is a highly contagious new virus that quickly spread around the world this year . DT NNP NN IN NN NN VBZ DT RB JJ JJ NN WDT RB VBD IN DT NN DT NN . Saudi Arabia has an oil-based economy with strong government controls over major economic activities . NNP NNP VBZ DT JJ NN IN JJ NN NNS IN JJ JJ NNS . It possesses about 20 % of the world 's proven petroleum reserves , ranks as the largest exporter of petroleum , and plays a leading role in OPEC . PRP VBZ IN CD NN IN DT NN POS JJ NN NNS , VBZ IN DT JJS NN IN NN , CC VBZ DT VBG NN IN NNP . The petroleum sector accounts for roughly 80 % of budget revenues , 45 % of GDP , and 90 % of export earnings . DT NN NN NNS IN RB CD NN IN NN NNS , CD NN IN NN , CC CD NN IN NN NNS . Saudi Arabia is encouraging the growth of the private sector in order to diversify its economy and to employ more Saudi nationals . NNP NNP VBZ VBG DT NN IN DT JJ NN IN NN TO VB PRP$ NN CC TO VB RBR JJ NNS . Diversification efforts are focusing on power generation , telecommunications , natural gas exploration , and petrochemical sectors . NN NNS VBP VBG IN NN NN , NNS , JJ NN NN , CC NN NNS . Almost 6 million foreign workers play an important role in the Saudi economy , particularly in the oil and service sectors , while Riyadh is struggling to reduce unemployment among its own nationals . RB CD CD JJ NNS VBP DT JJ NN IN DT JJ NN , RB IN DT NN CC NN NNS , IN NNP VBZ VBG TO VB NN IN PRP$ JJ NNS . Saudi officials are particularly focused on employing its large youth population , which generally lacks the education and technical skills the private sector needs . JJ NNS VBP RB VBN IN VBG PRP$ JJ NN NN , WDT RB VBZ DT NN CC JJ NNS DT JJ NN NNS . Riyadh has substantially boosted spending on job training and education , most recently with the opening of the King Abdallah University of Science and Technology - Saudi Arabia 's first co-educational university . NNP VBZ RB VBN NN IN NN NN CC NN , RBS RB IN DT NN IN DT NNP NNP NNP IN NNP CC NNP : NNP NNP POS JJ JJ NN . As part of its effort to attract foreign investment , Saudi Arabia acceded to the WTO in December 2005 after many years of negotiations . IN NN IN PRP$ NN TO VB JJ NN , NNP NNP VBD TO DT NNP IN NNP CD IN JJ NNS IN NNS . The government has begun establishing six ' economic cities ' in different regions of the country to promote foreign investment and plans to spend $ 373 billion between 2010 and 2014 on social development and infrastructure projects to advance Saudi Arabia 's economic development . DT NN VBZ VBN VBG CD `` JJ NNS `` IN JJ NNS IN DT NN TO VB JJ NN CC VBZ TO VB $ CD CD IN CD CC CD IN JJ NN CC NN NNS TO VB NNP NNP POS JJ NN . The first Sinhalese arrived in Sri Lanka late in the 6th century B.C. , probably from northern India . DT JJ NN VBD IN NNP NNP RB IN DT JJ NN NNP , RB IN JJ NNP . Buddhism was introduced in about the mid-third century B.C. , and a great civilization developed at the cities of Anuradhapura ( kingdom from circa 200 B.C. to circa A.D. 1000 ) and Polonnaruwa ( from about 1070 to 1200 ) . NNP VBD VBN IN IN DT JJ NN NNP , CC DT JJ NN VBD IN DT NNS IN NNP LRB NN IN NN CD NNP TO VB NNP CD RRB CC NNP LRB IN IN CD TO CD RRB . In the 14th century , a south Indian dynasty established a Tamil kingdom in northern Sri Lanka . IN DT JJ NN , DT JJ JJ NN VBD DT NNP NN IN JJ NNP NNP . The coastal areas of the island were controlled by the Portuguese in the 16th century and by the Dutch in the 17th century . DT JJ NNS IN DT NN VBD VBN IN DT NNS IN DT JJ NN CC IN DT NNS IN DT JJ NN . The island was ceded to the British in 1796 , became a crown colony in 1802 , and was formally united under British rule by 1815 . DT NN VBD VBN TO DT JJ IN CD , VBD DT JJ NN IN CD , CC VBD RB VBN IN JJ NN IN CD . As Ceylon , it became independent in 1948 ; its name was changed to Sri Lanka in 1972 . IN NNP , PRP VBD JJ IN CD ; PRP$ NN VBD VBN TO NNP NNP IN CD . Tensions between the Sinhalese majority and Tamil separatists erupted into war in 1983 . NNS IN DT NNP NN CC NNP NNS VBD IN NN IN CD . After two decades of fighting , the government and Liberation Tigers of Tamil Eelam ( LTTE ) formalized a cease-fire in February 2002 with Norway brokering peace negotiations . IN CD NNS IN NN , DT NN CC NN NNS IN NNP NNP LRB NNP RRB VBD DT NN IN NNP CD IN NNP VBG NN NNS . Violence between the LTTE and government forces intensified in 2006 , but the government regained control of the Eastern Province in 2007 . NN IN DT NNP CC NN NNS VBD IN CD , CC DT NN VBD NN IN DT NNP NNP IN CD . By May 2009 , the government announced that its military had defeated the remnants of the LTTE . IN NNP CD , DT NN VBD IN PRP$ NN VBD VBN DT NNS IN DT NNP . Since the end of the conflict , the government has resettled tens of thousands of internally displaced persons and has undertaken a number of massive infrastructure projects to reconstruct its economy . IN DT NN IN DT NN , DT NN VBZ VBN NNS IN NNS IN RB JJ NNS CC VBZ VBN DT NN IN JJ NN NNS TO VB PRP$ NN . The Pacific Ocean is a major contributor to the world economy and particularly to those nations its waters directly touch . DT NNP NNP VBZ DT JJ NN TO DT NN NN CC RB TO DT NNS PRP$ NNS RB RB . It provides low-cost sea transportation between East and West , extensive fishing grounds , offshore oil and gas fields , minerals , and sand and gravel for the construction industry . PRP VBZ JJ NN NN IN NNP CC NNP , JJ NN NNS , JJ NN CC NN NNS , NNS , CC NN CC NN IN DT NN NN . In 1996 , over 60 % of the world 's fish catch came from the Pacific Ocean . IN CD , IN CD NN IN DT NN POS NN NN VBD IN DT NNP NNP . Exploitation of offshore oil and gas reserves is playing an ever-increasing role in the energy supplies of the US , Australia , NZ , China , and Peru . NN IN JJ NN CC NN NNS VBZ VBG DT JJ NN IN DT NN NNS IN DT NNP , NNP , NNP , NNP , CC NNP . The high cost of recovering offshore oil and gas , combined with the wide swings in world prices for oil since 1985 , has led to fluctuations in new drillings . DT JJ NN IN VBG JJ NN CC NN , VBN IN DT JJ NNS IN NN NNS IN NN IN CD , VBZ VBN TO NNS IN JJ NNS . The Polynesian Maori reached New Zealand in about A.D. 800 . DT JJ NNP VBD NNP NNP IN IN NNP CD . In 1840 , their chieftains entered into a compact with Britain , the Treaty of Waitangi , in which they ceded sovereignty to Queen Victoria while retaining territorial rights . IN CD , PRP$ NNS VBD IN DT NN IN NNP , DT NNP IN NNP , IN WDT PRP VBD NN TO NNP NNP IN VBG JJ NNS . In that same year , the British began the first organized colonial settlement . IN DT JJ NN , DT NNS VBD DT JJ JJ NN NN . A series of land wars between 1843 and 1872 ended with the defeat of the native peoples . DT NN IN NN NNS IN CD CC CD VBN IN DT NN IN DT JJ NNS . The British colony of New Zealand became an independent dominion in 1907 and supported the UK militarily in both world wars . DT JJ NN IN NNP NNP VBD DT JJ NN IN CD CC VBD DT NNP RB IN DT NN NNS . New Zealand 's full participation in a number of defense alliances lapsed by the 1980s . NNP NNP POS JJ NN IN DT NN IN NN NNS VBD IN DT NNS . In recent years , the government has sought to address longstanding Maori grievances . IN JJ NNS , DT NN VBZ VBN TO VB JJ NNP NNS . Belarus has seen limited structural reform since 1995 , when President LUKASHENKO launched the country on the path of ' market socialism . ' NNP VBZ VBN JJ JJ NN IN CD , WRB NNP NNP VBD DT NN IN DT NN IN `` NN NN . `` In keeping with this policy , LUKASHENKO reimposed administrative controls over prices and currency exchange rates and expanded the state 's right to intervene in the management of private enterprises . IN VBG IN DT NN , NNP VBD JJ NNS IN NNS CC NN NN NNS CC VBD DT NN POS NN TO VB IN DT NN IN JJ NNS . Since 2005 , the government has re-nationalized a number of private companies . IN CD , DT NN VBZ VBN DT NN IN JJ NNS . In addition , businesses have been subjected to pressure by central and local governments , including arbitrary changes in regulations , numerous rigorous inspections , retroactive application of new business regulations , and arrests of ' disruptive ' businessmen and factory owners . IN NN , NNS VBP VBN VBN TO NN IN JJ CC JJ NNS , VBG JJ NNS IN NNS , JJ JJ NNS , JJ NN IN JJ NN NNS , CC NNS IN `` JJ `` NNS CC NN NNS . Continued state control over economic operations hampers market entry for businesses , both domestic and foreign . VBN NN NN IN JJ NNS NNS NN NN IN NNS , DT JJ CC JJ . Government statistics indicate GDP growth was strong , surpassing 10 % in 2008 , despite the roadblocks of a tough , centrally directed economy with a high rate of inflation and a low rate of unemployment . NN NNS VBP NN NN VBD JJ , VBG CD NN IN CD , IN DT NNS IN DT JJ , RB VBN NN IN DT JJ NN IN NN CC DT JJ NN IN NN . However , the global crisis pushed the country into recession in 2009 , and GDP grew only 0.2 % for the year . RB , DT JJ NN VBD DT NN IN NN IN CD , CC NN VBD RB CD NN IN DT NN . Slumping foreign demand hit the industrial sector hard . VBG JJ NN VBD DT JJ NN RB . Minsk has depended on a standby-agreement with the IMF to assist with balance of payments shortfalls . NNP VBZ VBN IN DT NN IN DT NNP TO VB IN NN IN NNS NNS . In line with IMF conditions , in 2009 , Belarus devalued the ruble more than 40 % and tightened some fiscal and monetary policies . IN NN IN NNP NNS , IN CD , NNP VBD DT NN RBR IN CD NN CC VBD DT JJ CC JJ NNS . On 1 January 2010 , Russia , Kazakhstan and Belarus launched a customs union , with unified trade regulations and customs codes still under negotiation . IN CD NNP CD , NNP , NNP CC NNP VBD DT NNS NN , IN JJ NN NNS CC NNS NNS RB IN NN . In late January , Russia and Belarus amended their 2007 oil supply agreement . IN JJ NNP , NNP CC NNP VBD PRP$ CD NN NN NN . The new terms raised prices for above quota purchases , increasing Belarus ' current account deficit . DT JJ NNS VBD NNS IN IN NN NNS , VBG NNP POS JJ NN NN . GDP grew 4.8 % in 2010 , in part , on the strength of renewed export growth . NN VBD CD NN IN CD , IN NN , IN DT NN IN VBN NN NN . In December 2010 , Belarus , Russia and Kazakhstan signed an agreement to form a Common Economic Space and Russia removed all Belarusian oil duties . IN NNP CD , NNP , NNP CC NNP VBD DT NN TO VB DT JJ NNP NNP CC NNP VBD DT JJ NN NNS . A BULL finding a lion 's cub asleep gored him to death with his horns . DT NN VBG DT NN POS NN JJ VBD PRP TO NN IN PRP$ NNS . The Lioness came up , and bitterly lamented the death of her whelp . DT NN VBD RB , CC RB VBD DT NN IN PRP$ NN . A wild-boar Hunter , seeing her distress , stood at a distance and said to her , ' Think how many men there are who have reason to lament the loss of their children , whose deaths have been caused by you . ' DT NN NNP , VBG PRP$ NN , VBD IN DT NN CC VBD TO PRP , `` VBP WRB JJ NNS EX VBP WP VBP NN TO VB DT NN IN PRP$ NNS , WP$ NNS VBP VBN VBN IN PRP . `` THE HARES waged war with the Eagles , and called upon the Foxes to help them . DT NNS VBD NN IN DT NNS , CC VBD IN DT NNS TO VB PRP . They replied , ' We would willingly have helped you , if we had not known who you were , and with whom you were fighting . ' PRP VBD , `` PRP MD RB VB VBN PRP , IN PRP VBD RB VBN WP PRP VBD , CC IN WP PRP VBD VBG . `` Count the cost before you commit yourselves . VB DT NN IN PRP VBP NNS . SAVE petrol by pushing your car to your destination . VB NN IN VBG PRP$ NN IN PRP$ NN . Invariably passers-by will think you 've broken down and help . RB NNS MD VB PRP VBP VBN RP CC VB . American billionaire Bill Gates is donating another $ 258 million to the fight against malaria , which kills more than one million people each year , mostly African children . JJ NN NNP NNP VBZ VBG DT $ CD CD TO DT NN IN NN , WDT VBZ JJR IN CD CD NNS DT NN , RB JJ NNS . The Bill and Melinda Gates Foundation announced Sunday it is granting the money to groups working on new drugs , a vaccine and better mosquito control to stop malaria . DT NNP CC NNP NNP NNP VBD NNP PRP VBZ VBG DT NN TO NNS VBG IN JJ NNS , DT NN CC JJR NN NN TO VB NN . A new report by a the Malaria Research and Development Alliance says the $ 258 million donation equals more than three-quarters of the entire global spending on research into the disease last year . DT JJ NN IN DT DT NNP NNP CC NNP NNP VBZ DT $ CD CD NN VBZ JJR IN NNS IN DT JJ JJ NN IN NN IN DT NN JJ NN . Mr. Gates told reporters Sunday it is ' a tragedy that the world has done so little ' to stop the disease that kills 2,000 African children every day . NNP NNP VBD NNS NNP PRP VBZ `` DT NN IN DT NN VBZ VBN RB RB `` TO VB DT NN WDT VBZ CD JJ NNS DT NN . Mr. Gates , who founded computer software giant Microsoft , is the world 's wealthiest person . NNP NNP , WP VBD NN NN NN NNP , VBZ DT NN POS JJS NN . The United Nations says an upsurge in violence in Sudan 's western Darfur region is threatening security and humanitarian aid to hundreds of thousands of people . DT NNP NNP VBZ DT NN IN NN IN NNP POS JJ NNP NN VBZ JJ NN CC JJ NN TO NNS IN NNS IN NNS . U.N. spokeswoman Radhia Achouri says about two-thirds of south Darfur are considered hazardous and no-go areas because of recent attacks on peacekeepers . NNP NN NNP NNP VBZ IN NNS IN JJ NNP VBP VBN JJ CC JJ NNS IN IN JJ NNS IN NNS . In the western Darfur city of Geneina , U.N. staff face increased constraints in delivering aid due to banditry and clashes between rebels and government-backed militias . IN DT JJ NNP NN IN NNP , NNP NN VBP JJ NNS IN VBG NN JJ TO NN CC NNS IN NNS CC JJ NNS . In recent days , African Union peacekeepers and civilians have been killed or kidnapped in violence that AU officials have blamed on Darfur 's main rebel group , the Sudan Liberation Movement . IN JJ NNS , NNP NNP NNS CC NNS VBP VBN VBN CC VBN IN NN IN NNP NNS VBP VBN IN NNP POS JJ NN NN , DT NNP NNP NNP . More than two million people have been displaced and tens of thousands of others killed during more than two years of conflict . JJR IN CD CD NNS VBP VBN VBN CC NNS IN NNS IN NNS VBN IN JJR IN CD NNS IN NN . The government of Afghanistan says reprimands of U.S. soldiers involved in burning the bodies of two dead Taleban insurgents is a very lenient punishment . DT NN IN NNP VBZ NNS IN NNP NNS VBN IN VBG DT NNS IN CD JJ NNP NNS VBZ DT RB JJ NN . The U.S. military said Saturday that the soldiers will face disciplinary action over the incident , but will not be prosecuted . DT NNP NN VBD NNP IN DT NNS MD VB JJ NN IN DT NN , CC MD RB VB VBN . It said an investigation concluded the troops burned the bodies for hygienic purposes , but that junior officers who ordered the cremation will be reprimanded for showing a lack of cultural and religious understanding . PRP VBD DT NN VBD DT NNS VBD DT NNS IN JJ NNS , CC IN JJ NNS WP VBD DT NN MD VB VBN IN VBG DT NN IN JJ CC JJ NN . The Afghan Foreign Ministry said that whatever the purpose and the reason , the burning of human bodies is unacceptable to Islam and local traditions , and by no means should be repeated . DT JJ NNP NNP VBD IN WDT DT NN CC DT NN , DT NN IN JJ NNS VBZ JJ TO NNP CC JJ NNS , CC IN DT NNS MD VB VBN . News of the incident surfaced last month when an Australian television channel aired a video purportedly showing the American soldiers burning the bodies of two militants they had killed near Kandahar . NN IN DT NN VBD JJ NN WRB DT JJ NN NN VBD DT NN RB VBG DT JJ NNS VBG DT NNS IN CD NNS PRP VBD VBN IN NNP . World oil prices rose in early trading Tuesday , ending a three-day slide . NNP NN NNS VBD IN JJ NN NNP , VBG DT JJ NN . The price of crude oil for future delivery gained 2.5 percent during trading in New York to more than $ 72 a barrel . DT NN IN JJ NN IN JJ NN VBD CD NN IN NN IN NNP NNP TO JJR IN $ CD DT NN . Oil industry analysts say the increase is due to renewed interest in oil , and other commodities , from investors who are worried about the declining value of the U.S. dollar . NN NN NNS VBP DT NN VBZ JJ TO JJ NN IN NN , CC JJ NNS , IN NNS WP VBP VBN IN DT VBG NN IN DT NNP NN . The U.S. dollar lost value compared to other currencies Tuesday after Russian President Dmitri Medvedev suggested the world should lessen its dependence on the dollar , which many countries use to pay off their debts . DT NNP NN VBD NN VBN TO JJ NNS NNP IN JJ NNP NNP NNP VBD DT NN MD VB PRP$ NN IN DT NN , WDT JJ NNS VBP TO VB RP PRP$ NNS . Oil prices have more than doubled since the beginning of this year as investors have grown increasing optimistic that the world will eventually pull out of recession , causing demand for oil to increase . NN NNS VBP JJR IN VBN IN DT NN IN DT NN IN NNS VBP VBN VBG JJ IN DT NN MD RB VB IN IN NN , VBG NN IN NN TO VB . Still , oil is trading far below the all-time high of $ 147 a barrel set last July . RB , NN VBZ VBG RB IN DT JJ NN IN $ CD DT NN VBN JJ NNP . Ukrainian President Viktor Yushchenko is warning parliament not to hold a planned opening of its fall session Tuesday , saying any decisions it makes will be illegitimate . JJ NNP NNP NNP VBZ VBG NN RB TO VB DT JJ NN IN PRP$ NN NN NNP , VBG DT NNS PRP VBZ MD VB JJ . Mr. Yushchenko said in a nationwide television address Monday that under the constitution , the parliament would have no authority . NNP NNP VBD IN DT JJ NN NN NNP IN IN DT NN , DT NN MD VB DT NN . He called the opposition members provocateurs and said their plan to hold an opening session is an attempt to derail parliamentary elections later this month . PRP VBD DT NN NNS NNS CC VBD PRP$ NN TO VB DT NN NN VBZ DT NN TO VB JJ NNS RB DT NN . Mr. Yushchenko dissolved parliament in March , accusing his chief political opponent , Prime Minister Viktor Yanukovych , of illegally enticing Yushchenko supporters to join the opposition . NNP NNP VBD NN IN NNP , VBG PRP$ JJ JJ NN , NNP NNP NNP NNP , IN RB VBG NNP NNS TO VB DT NN . The lawmakers refused to dissolve and many still say their parliament still exists . DT NNS VBD TO VB CC JJ RB VBP PRP$ NN RB VBZ . The president and prime minister agreed to hold early general elections on September 30 . DT NN CC JJ NN VBD TO VB JJ JJ NNS IN NNP CD . U.S. Senator Edward Kennedy , a Democratic Party leader who is suffering from brain cancer , has returned to Washington to work on the issue of health care reform . NNP NNP NNP NNP , DT JJ NNP NN WP VBZ VBG IN NN NN , VBZ VBN TO NNP TO VB IN DT NN IN NN NN NN . Senator Kennedy released a statement Monday , saying he would lay the groundwork for early action by Congress on health reform after President-elect Barack Obama takes office in January . NNP NNP VBD DT NN NNP , VBG PRP MD VB DT NN IN JJ NN IN NNP IN NN NN IN JJ NNP NNP VBZ NN IN NNP . Kennedy also said he was grateful for the prayers and good wishes he has received in recent months . NNP RB VBD PRP VBD JJ IN DT NNS CC JJ NNS PRP VBZ VBN IN JJ NNS . The Massachusetts senator , who was first elected in 1962 , underwent surgery in June for a malignant brain tumor . DT NNP NN , WP VBD JJ VBN IN CD , JJ NN IN NNP IN DT JJ NN NN . He made a brief appearance in the Senate in July , and delivered a speech supporting Mr. Obama at the Democratic National Convention in August . PRP VBD DT JJ NN IN DT NNP IN NNP , CC VBD DT NN VBG NNP NNP IN DT NNP NNP NNP IN NNP . Two of his brothers , President John F. Kennedy and Senator Robert Kennedy , were assassinated in the 1960s . CD IN PRP$ NNS , NNP NNP NNP NNP CC NNP NNP NNP , VBD VBN IN DT NNS . Another brother , Joseph Kennedy , was killed while serving in World War II . DT NN , NNP NNP , VBD VBN IN VBG IN NNP NNP NNP . Police in Denmark have arrested four Danish Muslims suspected of plotting a terror attack in Europe . NNS IN NNP VBP VBN CD JJ NNS VBN IN VBG DT NN NN IN NNP . The four , aged between 16 and 20 , were arrested in and around Copenhagen on Thursday and ordered held while police conduct an investigation . DT CD , VBN IN CD CC CD , VBD VBN IN CC IN NNP IN NNP CC VBN VBN IN NNS VBP DT NN . The arrests were made on a tip the Danish intelligence service PET had received from another country . DT NNS VBD VBN IN DT NN DT JJ NN NN NN VBD VBN IN DT NN . Authorities say the arrests are linked to an investigation in Bosnia , in which a Turk , a Swede and a Bosnian were arrested in Sarajevo on October 19 and 20 on suspicion of preparing a terrorist attack . NNS VBP DT NNS VBP VBN TO DT NN IN NNP , IN WDT DT NN , DT NN CC DT NN VBD VBN IN NNP IN NNP CD CC CD IN NN IN VBG DT JJ NN . Following the July 7 bus and subway bombings in London , Denmark , an American ally in Iraq , has also been identified as a terrorist target . VBG DT NNP CD NN CC NN NNS IN NNP , NNP , DT JJ NN IN NNP , VBZ RB VBN VBN IN DT JJ NN . Dozens of people in Vietnam staged a short anti-Japan protest outside the Japanese Embassy in Hanoi Sunday . NNS IN NNS IN NNP VBD DT JJ JJ NN IN DT JJ NNP IN NNP NNP . The demonstrators , wearing headbands and carrying banners in Chinese characters , stood outside the embassy and shouted slogans . DT NNS , VBG NNS CC VBG NNS IN JJ NNS , VBD IN DT NN CC VBD NNS . The protesters were believed to be Chinese nationals living in Vietnam . DT NNS VBD VBN TO VB JJ NNS VBG IN NNP . A heavy presence of Vietnamese police was on hand to prevent violence . DT JJ NN IN JJ NN VBD IN NN TO VB NN . Demonstrations are rare in Vietnam where the communist government keeps a tight lid on dissent . NNS VBP JJ IN NNP WRB DT JJ NN VBZ DT JJ NN IN NN . Today 's demonstration comes after days of violent protests in China over Japan 's wartime past and its bid for a permanent seat on the U.N. Security Council . NN POS NN VBZ IN NNS IN JJ NNS IN NNP IN NNP POS NN NN CC PRP$ NN IN DT JJ NN IN DT NNP NNP NNP . Insurgents in Iraq killed nine American troops Thursday in the latest violence in the run up to Iraq 's January 30th elections . NNS IN NNP VBD CD JJ NNS NNP IN DT JJS NN IN DT NN RP TO NNP POS NNP JJ NNS . Seven of the U.S. soldiers were killed when their vehicle hit an improvised explosive device in Baghdad during a routine patrol . CD IN DT NNP NNS VBD VBN WRB PRP$ NN VBD DT JJ JJ NN IN NNP IN DT JJ NN . To the west of the capital , in Al Anbar province , two U.S. Marines were killed while conducting security operations . IN DT JJS IN DT NN , IN NNP NNP NN , CD NNP NNS VBD VBN IN VBG NN NNS . The attacks came as Iraq 's interim prime minister , Iyad Allawi , extended emergency laws for another month . DT NNS VBD IN NNP POS JJ JJ NN , NNP NNP , VBD NN NNS IN DT NN . The laws , which have been in place for two months , give Iraq 's government the power to impose curfews and restrict movement between cities . DT NNS , WDT VBP VBN IN NN IN CD NNS , VBP NNP POS NN DT NN TO VB NNS CC VB NN IN NNS . Meanwhile , the French newspaper Liberation , says it has not heard from its Baghdad correspondent , Florence Aubenas , and her Iraqi interpreter in over 24 hours , raising concerns for their safety . RB , DT JJ NN NN , VBZ PRP VBZ RB VBN IN PRP$ NNP NN , NNP NNP , CC PRP$ JJ NN IN IN CD NNS , VBG NNS IN PRP$ NN . Pakistani officials say Sunni and Shi'ite militants are battling each other for a third day in the country 's North-West Frontier Province . JJ NNS VBP NNP CC NNP NNS VBP VBG DT NN IN DT JJ NN IN DT NN POS JJ NNP NNP . A Pakistani administrator in the tribal region , Sahibzada Mohammed Anis , says the confirmed death toll from the fighting is 15 , with scores of people wounded . DT JJ NN IN DT JJ NN , NNP NNP NNP , VBZ DT VBN NN NN IN DT NN VBZ CD , IN NNS IN NNS VBN . On Saturday , another official said 40 people had been killed . IN NNP , DT NN VBD CD NNS VBD VBN VBN . The administrator says tribal elders are trying to negotiate an end to the violence . DT NN VBZ JJ NNS VBP VBG TO VB DT NN TO DT NN . Heavy fighting between majority Sunnis and minority Shi'ites erupted Friday in and around the town of Parachinar in the semi-autonomous Kurram region . JJ NN IN NN NNS CC NN NNS VBD NNP IN CC IN DT NN IN NNP IN DT JJ NNP NN . Pakistani officials say the fighting in Parachinar subsided Saturday after the military imposed a curfew and government helicopters patrolled the area . JJ NNS VBP DT NN IN NNP VBD NNP IN DT NN VBD DT NN CC NN NNS VBD DT NN . But , they say battles continued Sunday in nearby villages . CC , PRP VBP NNS VBD NNP IN JJ NNS . The cause of the sectarian violence has not been independently confirmed , but residents say it began after one group held a demonstration denouncing the other sect . DT NN IN DT JJ NN VBZ RB VBN RB VBN , CC NNS VBP PRP VBD IN CD NN VBD DT NN VBG DT JJ NN . Colombian police say U.S. and Colombian drug enforcement agents have dismantled a major narcotics smuggling operation . JJ NNS VBP NNP CC JJ NN NN NNS VBP VBN DT JJ NNS VBG NN . Authorities say the drug ring had been smuggling huge amounts of heroin and cocaine into the United States from Latin America . NNS VBP DT NN NN VBD VBN VBG JJ NNS IN NN CC NN IN DT NNP NNPS IN NNP NNP . At least 27 people were arrested in the operation , most of them in Colombia . IN JJS CD NNS VBD VBN IN DT NN , JJS IN PRP IN NNP . Police say they also confiscated 61 kilograms of heroin and at least 129 kilograms of cocaine , worth more than seven million dollars . NNS VBP PRP RB VBD CD NNS IN NN CC IN JJS CD NNS IN NN , JJ JJR IN CD CD NNS . Colombia is the world 's largest producer of cocaine , most of which is shipped to the United States . NNP VBZ DT NN POS JJS NN IN NN , JJS IN WDT VBZ VBN TO DT NNP NNPS . Macedonia 's delegation says it is leaving the NATO summit in Bucharest early to protest the alliance 's failure to invite it to begin membership talks because of a dispute over the country 's name . NNP POS NN VBZ PRP VBZ VBG DT NNP NN IN NNP RB TO VB DT NN POS NN TO VB PRP TO VB NN NNS IN IN DT NN IN DT NN POS NN . Foreign Minister Antonio Milososki told reporters in the Romanian capital that the Macedonian delegation will leave shortly after a meeting with U.S. President George W. Bush . NNP NNP NNP NNP VBD NNS IN DT JJ NN IN DT JJ NN MD VB RB IN DT NN IN NNP NNP NNP NNP NNP . The Macedonian News Agency ( MIA ) reports that President Branko Crvenkovski and Prime Minister Nikola Gruevski have canceled all other meetings scheduled for later Thursday and Friday . DT NNP NNP NNP LRB NNP RRB VBZ IN NNP NNP NNP CC NNP NNP NNP NNP VBP VBN DT JJ NNS VBN IN RB NNP CC NNP . NATO leaders said Macedonia fulfilled requirements for a membership , but held off extending the invitation after Greece threatened a veto . NNP NNS VBD NNP VBD NNS IN DT NN , CC VBD RP VBG DT NN IN NNP VBD DT NN . Greece demands that Macedonia change its name , which is the same as the name of a northern Greek province . NNP VBZ IN NNP VB PRP$ NN , WDT VBZ DT JJ IN DT NN IN DT JJ JJ NN . Greece contends that the former Yugoslav republic 's refusal to change its name implies territorial claims , a charge Macedonia denies . NNP VBZ IN DT JJ JJ NN POS NN TO VB PRP$ NN VBZ JJ NNS , DT NN NNP VBZ . Iraqi police say a roadside bomb blast south of Baghdad has killed seven police officers . JJ NNS VBP DT NN NN NN NN IN NNP VBZ VBN CD NNS NNS . The policemen were in a convoy traveling on a road east of the city of Diwaniyah . DT NNS VBD IN DT NN VBG IN DT NN NN IN DT NN IN NNP . The region south of Baghdad is known for frequent clashes between rival Shi'ite groups and violence against U.S.-led forces . DT NN NN IN NNP VBZ VBN IN JJ NNS IN JJ NNP NNS CC NN IN JJ NNS . North of Baghdad , authorities say a suicide truck bomber hit a checkpoint operated by Kurdish peshmerga militiamen at Jalawla in Diyala province , killing one and wounding 10 . NNP IN NNP , NNS VBP DT NN NN NN VBD DT NN VBN IN NNP NN NNS IN NNP IN NNP NN , VBG CD CC VBG CD . Separately , the U.S. military says coalition forces detained 15 suspects in operations targeting al-Qaida in Iraq terrorists in central and northern parts of the country early Wednesday . RB , DT NNP NN VBZ NN NNS VBD CD NNS IN NNS VBG NNP IN NNP NNS IN JJ CC JJ NNS IN DT NN JJ NNP . Afghan police and U.S. troops in the eastern city of Jalalabad have opened fire to break up rioting by students angry at alleged desecration of the Koran at the U.S. jail in Guantanamo Bay , Cuba . JJ NNS CC NNP NNS IN DT JJ NN IN NNP VBP VBN NN TO VB RP NN IN NNS JJ IN JJ NN IN DT NNP IN DT NNP NN IN NNP NNP , NNP . Local health officials say at least three people were killed and some 60 others wounded -- some seriously . JJ NN NNS VBP IN JJS CD NNS VBD VBN CC DT CD NNS VBD : DT RB . Demonstrators chanting ' Death to America ' marched through streets Wednesday , smashing cars , damaging shops and throwing stones at U.S. troops . NNS VBG `` NN TO NNP `` VBD IN NNS NNP , VBG NNS , JJ NNS CC VBG NNS IN NNP NNS . Protests erupted after Newsweek magazine reported that interrogators at Guantanamo placed copies of the Muslim holy book on toilets to rattle terrorist suspects . NNS VBD IN NNP NN VBD IN NNS IN NNP VBD NNS IN DT NNP JJ NN IN NNS TO VB JJ NNS . The United States has condemned the alleged desecration of the Koran , saying such activity would be reprehensible and contrary to U.S. policy . DT NNP NNPS VBZ VBN DT JJ NN IN DT NNP , VBG JJ NN MD VB JJ CC JJ TO NNP NN . The U.S. military says any kind of violation of the religious rights of detainees will be treated very seriously . DT NNP NN VBZ DT NN IN NN IN DT JJ NNS IN NNS MD VB VBN RB RB . Iraqi authorities say two car bombs in Baghdad have killed at least 23 people . JJ NNS VBP CD NN NNS IN NNP VBP VBN IN JJS CD NNS . More than 80 people were wounded in the blasts , which went off in short succession . JJR IN CD NNS VBD VBN IN DT NNS , WDT VBD RP IN JJ NN . The two blasts went off within moments of each other , one at a busy intersection near a security ministry building in the north of the capital . DT CD NNS VBD RP IN NNS IN DT NN , CD IN DT JJ NN IN DT NN NN NN IN DT NN IN DT NN . The second car bomb exploded in western Baghdad , outside a mobile phone company and close by a popular restaurant . DT JJ NN NN VBD IN JJ NNP , IN DT JJ NN NN CC NN IN DT JJ NN . There were no immediate claims of responsibility . EX VBD DT JJ NNS IN NN . In a third incident Sunday , authorities said that at least one man was killed when a home-made bomb attached to his car exploded . IN DT JJ NN NNP , NNS VBD IN IN JJS CD NN VBD VBN WRB DT JJ NN VBN TO PRP$ NN VBD . The bombings are the deadliest since the U.S. officially changed the name of its mission in Iraq earlier this month from one of combat to advice and training , a move accompanied by a drawdown in U.S. forces . DT NNS VBP DT JJS IN DT NNP RB VBD DT NN IN PRP$ NN IN NNP RBR DT NN IN CD IN NN TO NN CC NN , DT NN VBN IN DT NN IN NNP NNS . A U.S. newspaper says the Bush administration has been unsuccessfully trying to find someone to oversee the ongoing wars in Iraq and Afghanistan . DT NNP NN VBZ DT NNP NN VBZ VBN RB VBG TO VB DT TO VB DT JJ NNS IN NNP CC NNP . The Washington Post says the White House wants to appoint a so-called ' czar ' to coordinate both the civilian and military efforts on the two battle fronts . DT NNP NNP VBZ DT NNP NNP VBZ TO VB DT JJ `` NN `` TO VB DT DT JJ CC JJ NNS IN DT CD NN NNS . The Postsays the person would report directly to President Bush , and would have the authority to issue directions to the State Department , Pentagon and other agencies . DT NNPS DT NN MD VB RB TO NNP NNP , CC MD VB DT NN TO VB NNS TO DT NNP NNP , NNP CC JJ NNS . The report says the White House has offered the job to at least three retired top-ranked generals , and all three have declined the post . DT NN VBZ DT NNP NNP VBZ VBN DT NN TO IN JJS CD JJ JJ NNS , CC DT CD VBP VBN DT NN . Former U.S. Marine General John J. ' Jack ' Sheehan , one of the generals , says Vice President Dick Cheney and others who still believe the Iraq war can be won , continue to hold more power within the administration than ' pragmatists looking for a way out of Iraq . ' JJ NNP NNP NNP NNP NNP `` NNP `` NNP , CD IN DT NNS , VBZ NNP NNP NNP NNP CC NNS WP RB VBP DT NNP NN MD VB VBN , VBP TO VB JJR NN IN DT NN IN `` NNS VBG IN DT NN IN IN NNP . `` Authorities in Belarus have detained several key members of the campaign staff of opposition presidential candidate Alexander Milinkevich . NNS IN NNP VBP VBN JJ JJ NNS IN DT NN NN IN NN JJ NN NNP NNP . The detentions came after the candidate held a rally outside a movie theater in the capital , Minsk , ahead of the country 's March 19 presidential election . DT NNS VBD IN DT NN VBD DT NN IN DT NN NN IN DT NN , NNP , RB IN DT NN POS NNP CD JJ NN . The opposition website , Charter97 identifies one of those detained as Vintsuk Vyachorka , leader of the Belarus Popular Front . DT NN NN , NNP VBZ CD IN DT VBN IN NNP NNP , NN IN DT NNP NNP NNP . The website says other campaign workers had no information about the detainees for several hours , but then learned they had been taken to a Minsk prison . DT NN VBZ JJ NN NNS VBD DT NN IN DT NNS IN JJ NNS , CC RB VBD PRP VBD VBN VBN TO DT NNP NN . The incident is the latest instance of harassment of candidates challenging President Alexander Lukashenko in the election . DT NN VBZ DT JJS NN IN NN IN NNS VBG NNP NNP NNP IN DT NN . Mr. Lukashenko has ruled the former Soviet republic since 1994 , and is seeking a third term . NNP NNP VBZ VBN DT JJ JJ NN IN CD , CC VBZ VBG DT JJ NN . The West has criticized him for his poor human rights record and for quashing political opposition . DT NNP VBZ VBN PRP IN PRP$ JJ JJ NNS NN CC IN VBG JJ NN . The United States has called him Europe 's last dictator . DT NNP NNP VBZ VBN PRP NNP POS JJ NN . A U.S. government oversight agency says Afghanistan 's reconstruction program has no coherent spending strategy to implement its goals . DT NNP NN NN NN VBZ NNP POS NN NN VBZ DT JJ NN NN TO VB PRP$ NNS . A report by the U.S. Congress 's Special Inspector General for Afghanistan Reconstruction released late Thursday says the U.S. has appropriated , but not fully spent , $ 32 billion for humanitarian aid in the country , while other nations have donated $ 25 billion . DT NN IN DT NNP NNP POS JJ NNP NNP IN NNP NNP VBD JJ NNP VBZ DT NNP VBZ VBN , CC RB RB VBN , $ CD CD IN JJ NN IN DT NN , IN JJ NNS VBP VBN $ CD CD . The report found that reconstruction efforts have been fragmented and lack a central plan to complete U.S. goals . DT NN VBD IN NN NNS VBP VBN VBN CC VBP DT JJ NN TO VB NNP NNS . Those goals include rebuilding Afghan infrastructure , re-establishing political institutions , providing services to the Afghan people , and maintaining security necessary for reconstruction projects . DT NNS VBP VBG JJ NN , JJ JJ NNS , VBG NNS TO DT JJ NNS , CC VBG NN JJ IN NN NNS . The report also says government officials in Afghanistan want a greater say in building plans . DT NN RB VBZ NN NNS IN NNP VBP DT JJR NN IN NN NNS . Congress created the Office of the Special Inspector General for Afghanistan Reconstruction under the authority of the National Defense Authorization Act for Fiscal Year 2008 . NNP VBD DT NNP IN DT NNP NNP NNP IN NNP NNP IN DT NN IN DT NNP NNP NNP NNP IN NNP NNP CD . The measure was signed into law one year ago . DT NN VBD VBN IN NN CD NN RB . Burmese activists have gathered outside the Russian Embassy in Malaysia to call on Moscow to end its support for building a nuclear research center in Burma . JJ NNS VBP VBN IN DT JJ NNP IN NNP TO VB IN NNP TO VB PRP$ NN IN VBG DT JJ NN NN IN NNP . Some 50 protesters took part in the demonstration Tuesday . DT CD NNS VBD NN IN DT NN NNP . In May , Russia announced that it had agreed to help build a nuclear research center in Burma . IN NNP , NNP VBD IN PRP VBD VBN TO VB VB DT JJ NN NN IN NNP . The United States has expressed concern about the deal , saying Burma does not have the regulatory or safety provisions to successfully handle that type of nuclear program . DT NNP NNPS VBZ VBN NN IN DT NN , VBG NNP VBZ RB VB DT JJ CC NN NNS TO RB VB DT NN IN JJ NN . Russia and China have become major suppliers of arms to Burma since the West imposed sanctions in 1988 over Burma 's poor human rights record . NNP CC NNP VBP VBN JJ NNS IN NNS TO NNP IN DT NNP VBD NNS IN CD IN NNP POS JJ JJ NNS NN . Former Czech President Vaclav Havel has delivered a letter to the Belarus Embassy in Prague , calling on Belarusian President Alexander Lukashenko to step down . JJ JJ NNP NNP NNP VBZ VBN DT NN TO DT NNP NNP IN NNP , VBG IN JJ NNP NNP NNP TO VB RB . Mr. Havel says he was denied entry to the building Tuesday and left the letter in the embassy 's mailbox . NNP NNP VBZ PRP VBD VBN NN TO DT NN NNP CC VBD DT NN IN DT NN POS NN . He said the letter was meant as an act of solidarity with those in Belarus struggling for more freedom . PRP VBD DT NN VBD VBN IN DT NN IN NN IN DT IN NNP VBG IN JJR NN . He added that the Czech people know the importance of such solidarity . PRP VBD IN DT JJ NNS VBP DT NN IN JJ NN . Mr. Havel also called on European Union countries to , in his words , resist evil from the very beginning and not wait for what he called ' catastrophic consequences . ' NNP NNP RB VBD IN NNP NNP NNS TO , IN PRP$ NNS , VB NN IN DT JJ NN CC RB VB IN WP PRP VBD `` JJ NNS . `` An international human rights group is urging NATO to stop transferring detainees to Afghan security forces because of reports they torture their prisoners . DT JJ JJ NNS NN VBZ VBG NNP TO VB VBG NNS TO JJ NN NNS IN IN NNS PRP VBP PRP$ NNS . Amnesty International says the NATO-led International Security Assistance Force could be exposing prisoners to mistreatment and abuse by placing them in the custody of the Afghan National Directorate of Security . NNP NNP VBZ DT JJ NNP NNP NNP NNP MD VB VBG NNS TO NN CC NN IN VBG PRP IN DT NN IN DT JJ NNP NNP IN NNP . The rights group wants ISAF to temporarily suspend all prisoner handovers to Afghan authorities until proper safeguards are in place . DT NNS NN VBZ NNP TO RB VB DT NN NNS TO JJ NNS IN JJ NNS VBP IN NN . The group says , in particular , ISAF troops from Belgium , Britain , Canada , Norway and the Netherlands could be in violation of an agreement they signed with the Afghan government on prison transfer and monitoring . DT NN VBZ , IN JJ , JJ NNS IN NNP , NNP , NNP , NNP CC DT NNP MD VB IN NN IN DT NN PRP VBD IN DT JJ NN IN NN NN CC NN . Amnesty says the agreement does not provide enough safeguards . NNP VBZ DT NN VBZ RB VB JJ NNS . Amnesty International called on those countries not to rely on bilateral agreements to protect prisoners from harsh treatment once they are transferred . NNP NNP VBD IN DT NNS RB TO VB IN JJ NNS TO VB NNS IN JJ NN IN PRP VBP VBN . The rights group is calling for a complete reform of the Afghan detention system . DT NNS NN VBZ VBG IN DT JJ NN IN DT JJ NN NN . Vietnamese health officials say a woman in the north of the country has died from bird flu as a new outbreak is reported in southern China . JJ NN NNS VBP DT NN IN DT NN IN DT NN VBZ VBN IN NN NN IN DT JJ NN VBZ VBN IN JJ NNP . The director of Vietnam 's preventive medicine department , Nguyen Huy Nga , said the 23-year-old teacher died Monday after testing positive for H5N1 strain of avian influenza . DT NN IN NNP POS JJ NN NN , NNP NNP NNP , VBD DT JJ NN VBD NNP IN VBG JJ IN NNP NN IN JJ NN . Her death brings the number of people in Vietnam killed by the virus to 50 , out of 105 total human infections . PRP$ NN VBZ DT NN IN NNS IN NNP VBN IN DT NN TO CD , IN IN CD JJ JJ NNS . In separate news , Chinese health officials Monday reported a new outbreak in the southern province of Guizhou . IN JJ NN , JJ NN NNS NNP VBD DT JJ NN IN DT JJ NN IN NNP . Authorities said nearly 4,000 poultry have died from the disease and a further 2,38,000 have been culled . NNS VBD RB CD NN VBP VBN IN DT NN CC DT JJ CD VBP VBN VBN . China earlier announced the death in Guangdong province of a 44-year-old woman - the country 's 19th fatality and the third this year . NNP RB VBD DT NN IN NNP NN IN DT JJ NN IN DT NN POS JJ NN CC DT NN DT NN . Wal-Mart said Friday it will pay the U.S. government $ 11 million to settle charges that it used illegal immigrants to clean its stores in the United States . NNP VBD NNP PRP MD VB DT NNP NN $ CD CD TO VB NNS IN PRP VBD JJ NNS TO VB PRP$ NNS IN DT NNP NNPS . Wal-Mart is the world 's biggest retailer , with $ 256 billion in sales , 1.5 million employees , and more than 5,000 stores in the United States and eight other nations . NNP VBZ DT NN POS JJS NN , IN $ CD CD IN NNS , CD CD NNS , CC JJR IN CD NNS IN DT NNP NNPS CC CD JJ NNS . News reports say since 1998 , federal authorities have found hundreds of cases of illegal immigrants working for contractors in Wal-Marts across the country . NNP NNS VBP IN CD , JJ NNS VBP VBN NNS IN NNS IN JJ NNS VBG IN NNS IN NNP IN DT NN . The company says it did not adequately check to see whether employees hired by cleaning contractors could work in the United States legally . DT NN VBZ PRP VBD RB RB VB TO VB IN NNS VBN IN VBG NNS MD VB IN DT NNP NNPS RB . The company vowed to do better in the future . DT NN VBD TO VB RB IN DT NN . Trade unions in Nigeria have begun a planned three-day nationwide strike over a salary dispute with the government . NNP NNS IN NNP VBP VBN DT JJ JJ JJ NN IN DT NN NN IN DT NN . The two unions want the government to raise the monthly minimum wage to $ 120 , a significant increase over the current $ 50 minimum salary . DT CD NNS VBP DT NN TO VB DT JJ NN NN TO $ CD , DT JJ NN IN DT JJ $ CD JJ NN . Witnesses say many state and government workers in Nigeria 's largest city , Lagos , and Abuja , the capital , are not on the job . NNS VBP JJ NN CC NN NNS IN NNP POS JJS NN , NNP , CC NNP , DT NN , VBP RB IN DT NN . The Nigeria Labor Congress and the Trade Union Congress decided to go ahead with the strike despite an emergency meeting with President Goodluck Jonathan Tuesday evening . DT NNP NNP NNP CC DT NNP NNP NNP VBD TO VB RB IN DT NN IN DT NN NN IN NNP NNP NNP NNP NN . But the union leaders plan to meet later Wednesday to discuss their next course of action . CC DT NN NNS VBP TO VB RB NNP TO VB PRP$ JJ NN IN NN . The two labor federations represent workers in most sectors of Nigeria 's economy . DT CD NN NNS VBP NNS IN JJS NNS IN NNP POS NN . Palestinian President Mahmud Abbas and the exiled political leader of the militant group Hamas have held a rare meeting in Cairo , their first since their parties formed a coalition government . JJ NNP NNP NNP CC DT VBN JJ NN IN DT JJ NN NNP VBP VBN DT JJ NN IN NNP , PRP$ JJ IN PRP$ NNS VBD DT NN NN . Mr. Abbas of the moderate Fatah movement and Hamas ' political chief Khaled Mashaal met Friday in Cairo . NNP NNP IN DT JJ NNP NN CC NNP POS JJ NN NNP NNP VBD NNP IN NNP . They had been expected to discuss an exchange of prisoners with Israel , the internal situation in the Palestinian territory , and an effort to lift international sanctions against the Palestinian government . PRP VBD VBN VBN TO VB DT NN IN NNS IN NNP , DT JJ NN IN DT JJ NN , CC DT NN TO VB JJ NNS IN DT JJ NN . Details of the meeting have not been released . NNS IN DT NN VBP RB VBN VBN . The rival Palestinian groups Fatah and Hamas formed a unity government in March . DT JJ JJ NNS NNP CC NNP VBD DT NN NN IN NNP . The two sides hoped to end a Western embargo against the Palestinian authority and to end months of factional fighting that killed more than 130 people . DT CD NNS VBD TO VB DT JJ NN IN DT JJ NN CC TO VB NNS IN JJ NN WDT VBD JJR IN CD NNS . A suicide bomber in the Russia 's Chechnya republic killed six people and wounded at least 10 others outside a theater in the capital of Grozny on Sunday . DT NN NN IN DT NNP POS NNP NN VBD CD NNS CC VBD IN JJS CD NNS IN DT NN IN DT NN IN NNP IN NNP . Four of the victims were police officers who stopped the bomber from getting inside the concert hall just before a show was to start . CD IN DT NNS VBD NNS NNS WP VBD DT NN IN VBG IN DT NN NN RB IN DT NN VBD TO VB . Other victims included a Turk and a Georgian . JJ NNS VBD DT NN CC DT NN . The bomber , who was also killed , has not yet been identified . DT NN , WP VBD RB VBN , VBZ RB RB VBN VBN . Chechen President Ramzan Kadyrov says the attack will not stop efforts to wipe out Chechen rebels . JJ NNP NNP NNP VBZ DT NN MD RB VB NNS TO VB RP JJ NNS . Russian forces have been fighting Islamic separatists in southern Russia for most of the last 15 years . JJ NNS VBP VBN VBG JJ NNS IN JJ NNP IN JJS IN DT JJ CD NNS . The state-run Russian company building Iran 's nuclear power station says the launch date has been postponed because of Iran 's payment delays . DT JJ JJ NN VBG NNP POS JJ NN NN VBZ DT NN NN VBZ VBN VBN IN IN NNP POS NN NNS . Officials at Atomstroyexport say it is impossible to launch the reactor in September . NNS IN NNP VBP PRP VBZ JJ TO VB DT NN IN NNP . They added there will be no delivery of nuclear fuel this month as earlier agreed . PRP VBD EX MD VB DT NN IN JJ NN DT NN IN JJR VBD . Russia has accused Iran of missing payments on the nuclear plant . NNP VBZ VBN NNP IN VBG NNS IN DT JJ NN . Iran has denied the claim . NNP VBZ VBN DT NN . Iranian and Russian officials met in Moscow last week , but failed to solve their financial dispute . JJ CC JJ NNS VBD IN NNP JJ NN , CC VBD TO VB PRP$ JJ NN . Russia 's Interfax news agency quotes a Russian foreign ministry spokesman , Andre Krivtsov , as saying Moscow hopes the two countries will find a mutual solution to their funding problem . NNP POS NNP NN NN VBZ DT JJ JJ NN NN , NNP NNP , IN VBG NNP VBZ DT CD NNS MD VB DT JJ NN TO PRP$ NN NN . The United Nations Security Council has expressed concern that Iran could use uranium enrichment technology to develop nuclear weapons . DT NNP NNP NNP NNP VBZ VBN NN IN NNP MD VB NN NN NN TO VB JJ NNS . Iran says its nuclear program is only for energy purposes . NNP VBZ PRP$ JJ NN VBZ RB IN NN NNS . A 15-member U.N. Security Council delegation is in Haiti to assess the work of peacekeepers trying to stabilize the country following last year 's ouster of President Jean-Bertrand Aristide . DT JJ NNP NNP NNP NN VBZ IN NNP TO VB DT NN IN NNS VBG TO VB DT NN VBG JJ NN POS NN IN NNP NNP NNP . Brazilian Ambassador Ronaldo Sardenberg is leading the delegation , which arrived in Port-au-Prince Wednesday for the four-day visit . JJ NN NNP NNP VBZ VBG DT NN , WDT VBD IN NNP NNP IN DT JJ NN . The fact-finding trip comes at a time when the Security Council is preparing to vote on extending the mandate of the U.N. peacekeeping force in the country , which expires at the end of May . DT JJ NN VBZ IN DT NN WRB DT NNP NNP VBZ VBG TO VB IN VBG DT NN IN DT NNP NN NN IN DT NN , WDT VBZ IN DT NN IN NNP . U.N. peacekeepers and the interim government have been struggling to contain violence in Haiti since Mr. Aristide was removed from power in February 2004 . NNP NNS CC DT JJ NN VBP VBN VBG TO VB NN IN NNP IN NNP NNP VBD VBN IN NN IN NNP CD . Mr. Sardenberg has described the situation in the country as ' dire . ' NNP NNP VBZ VBN DT NN IN DT NN IN `` JJ . `` Peruvian officials say they will not free a U.S. woman serving a 20-year sentence for terrorist collaboration , even if a regional human rights court orders her release . JJ NNS VBP PRP MD RB VB DT NNP NN VBG DT JJ NN IN JJ NN , RB IN DT JJ JJ NNS NN VBZ PRP$ NN . Foreign Minister Manuel Rodriguez said Saturday if the Inter-American Court of Human Rights orders Lori Berenson 's release , Peru would refuse . NNP NNP NNP NNP VBD NNP IN DT JJ NNP IN NNP NNPS NNS NNP NNP POS NN , NNP MD VB . The Costa Rica-based court is set to discuss the case this coming week . DT NNP JJ NN VBZ VBN TO VB DT NN DT JJ NN . Berenson was arrested in 1995 and accused of involvement in a failed attempt by the rebel Tupac Amaru Revolutionary Movement to seize Peru 's Congress . NNP VBD VBN IN CD CC VBN IN NN IN DT VBN NN IN DT NN NNP NNP NNP NNP TO VB NNP POS NNP . A military court initially convicted and sentenced Berenson to life in prison for treason . DT JJ NN RB VBN CC VBN NNP TO NN IN NN IN NN . That sentence was overturned and she was re-tried by a civilian court . DT NN VBD VBN CC PRP VBD VBN IN DT JJ NN . She was acquitted of being an active member of the rebel group but convicted of helping the guerrillas plan the attack on the Congress . PRP VBD VBN IN VBG DT JJ NN IN DT NN NN CC VBN IN VBG DT NNS VBP DT NN IN DT NNP . Berenson has maintained her innocence . NNP VBZ VBN PRP$ NN . Saudi state media say authorities have destroyed nearly 1,60,000 birds following the discovery of bird flu south of the capital , Riyadh . JJ NN NNS VBP NNS VBP VBN RB CD NNS VBG DT NN IN NN NN NN IN DT NN , NNP . The Saudi Press Agency reports Tuesday that the birds tested positive for the H5N1 strain of bird flu , which can be deadly to humans . DT NNP NNP NNP VBZ NNP IN DT NNS VBD JJ IN DT NNP NN IN NN NN , WDT MD VB JJ TO NNS . The outbreak was discovered on a farm in the al-Kharj region , about 80 kilometers south of the capital . DT NN VBD VBN IN DT NN IN DT JJ NN , IN CD NNS RB IN DT NN . Authorities destroyed thousands of birds in the region last November to contain another outbreak of the virus . NNS VBD NNS IN NNS IN DT NN JJ NNP TO VB DT NN IN DT NN . Various forms of bird flu are common in birds and rarely affect humans . JJ NNS IN NN NN VBP JJ IN NNS CC RB VBP NNS . The World Health Organization says the H5N1 strain of the virus has killed at least 223 people worldwide since 2003 . DT NNP NNP NNP VBZ DT NNP NN IN DT NN VBZ VBN IN JJS CD NNS JJ IN CD . Saudi Arabia has not reported any human cases of the disease . NNP NNP VBZ RB VBN DT JJ NNS IN DT NN . Victims generally contract the disease from sick or dead birds , but health authorities are concerned the virus could change into a form easily passed between humans . NNP RB NN DT NN IN JJ CC JJ NNS , CC NN NNS VBP VBN DT NN MD VB IN DT NN RB VBN IN NNS . Police in central Pakistan 's Punjab province say three suspected militants were killed Saturday when a bomb they were carrying on a bicycle accidentally exploded . NNS IN JJ NNP POS NNP NN VBP CD JJ NNS VBD VBN NNP WRB DT NN PRP VBD VBG IN DT NN RB VBD . The explosion happened in Cheecha Watni , a town about 100 kilometers from the city of Multan . DT NN VBD IN NNP NNP , DT NN IN CD NNS IN DT NN IN NNP . It is not immediately clear what sort of attack the men were planning . PRP VBZ RB RB JJ WP NN IN NN DT NNS VBD VBG . Police say at least two of the suspected militants were students at a local seminary , and had links to Sipah-e-Sahaba , an outlawed Sunni Muslim group . NNS VBP IN JJS CD IN DT JJ NNS VBD NNS IN DT JJ NN , CC VBD NNS TO NNP , DT JJ NNP NNP NN . Police have been on high alert in Pakistan after a series of suicide bomb attacks in recent weeks . NNS VBP VBN IN JJ NN IN NNP IN DT NN IN NN NN NNS IN JJ NNS . Last week , a suicide bombing killed at least 15 people in a courtroom in Baluchistan province . JJ NN , DT NN VBG VBN IN JJS CD NNS IN DT NN IN NNP NN . At least 36 suspects have been detained in connection with that attack . IN JJS CD NNS VBP VBN VBN IN NN IN DT NN . Baluchistan borders Afghanistan and Iran . NNP NNS NNP CC NNP . It is widely believed to be used by Taleban leaders for planning attacks against Afghan and U.S.-led forces in Afghanistan . PRP VBZ RB VBN TO VB VBN IN NNP NNS IN VBG NNS IN JJ CC JJ NNS IN NNP . Several bomb explosions in Afghanistan , blamed on Taleban insurgents , have killed four American troops and two Afghan policemen , and wounded two U.S. Embassy officials . JJ NN NNS IN NNP , VBN IN NNP NNS , VBP VBN CD JJ NNS CC CD JJ NNS , CC VBD CD NNP NNP NNS . A roadside bomb in southern Zabul province killed the four soldiers and wounded three others early Sunday . DT NN NN IN JJ NNP NN VBD DT CD NNS CC VBD CD NNS JJ NNP . A U.S. commander , Major-General Jason Kamiya , said the blast would not weaken the resolve of coalition forces . DT NNP NN , NNP NNP NNP , VBD DT NN MD RB VB DT NN IN NN NNS . In another part of the province , two Afghan policemen were killed in a similar blast . IN DT NN IN DT NN , CD JJ NNS VBD VBN IN DT JJ NN . Meanwhile , in the western outskirts of Kabul , a roadside bomb exploded near a convoy of U.S. Embassy vehicles , slightly wounding two officials . RB , IN DT JJ NNS IN NNP , DT NN NN VBD IN DT NN IN NNP NNP NNS , RB VBG CD NNS . In the southern province of Kandahar , gunmen on motorcycles killed a pro-government cleric , while in the eastern province of Kunar , rebels ambushed two tankers supplying fuel to U.S. military base . IN DT JJ NN IN NNP , NNS IN NNS VBD DT JJ NN , IN IN DT JJ NN IN NNP , NNS VBD CD NNS VBG NN TO NNP JJ NN . Palestinian political rivals Hamas and Fatah have called-off scheduled talks on forming a unity government . JJ JJ NNS NNP CC NNP VBP JJ VBN NNS IN VBG DT NN NN . In an apparent sign that deep differences remain , aides to President Mahmoud Abbas said he canceled Tuesday 's meeting with Hamas leaders in Gaza . IN DT JJ NN IN JJ NNS VBP , NNS TO NNP NNP NNP VBD PRP VBD NNP POS NN IN NNP NNS IN NNP . No new meeting date was announced . DT JJ NN NN VBD VBN . Earlier , Hamas said it is serious about reaching a deal on a unity government . RB , NNP VBD PRP VBZ JJ IN VBG DT NN IN DT NN NN . Mr. Abbas has said any unity government including Hamas would have to accept interim peace deals with Israel . NNP NNP VBZ VBN DT NN NN VBG NNP MD VB TO VB JJ NN NNS IN NNP . Hamas leaders say they want to share power with Fatah , but they will not accept language that explicitly recognizes Israel . NNP NNS VBP PRP VBP TO VB NN IN NNP , CC PRP MD RB VB NN WDT RB VBZ NNP . The militant group 's charter calls for the destruction of the Jewish state . DT JJ NN POS NN VBZ IN DT NN IN DT JJ NN . Hamas has said that it would instead support a long term truce with Israel . NNP VBZ VBN IN PRP MD RB VB DT JJ NN NN IN NNP . The Palestinian president has accused Hamas of violating an agreement reached earlier this month on the political platform for a unity government . DT JJ NN VBZ VBN NNP IN VBG DT NN VBN RBR DT NN IN DT JJ NN IN DT NN NN . Hamas denies the charge . NNP VBZ DT NN . A meeting between Israeli Prime Minister Benjamin Netanyahu and U.S. Middle East envoy George Mitchell has been postponed so the two sides have more time to prepare . DT NN IN JJ NNP NNP NNP NNP CC NNP NNP NNP NN NNP NNP VBZ VBN VBN IN DT CD NNS VBP JJR NN TO VB . The Israeli prime minister was due to meet with Mitchell in Paris , France , Thursday , but an Israeli official said his side is seeking to conduct ' more professional work ' on the issues before the meeting . DT JJ JJ NN VBD JJ TO VB IN NNP IN NNP , NNP , NNP , CC DT JJ NN VBD PRP$ NN VBZ VBG TO VB `` RBR JJ NN `` IN DT NNS IN DT NN . Israeli Defense Minister Ehud Barack is expected to meet Mitchell instead in Washington next week . JJ NNP NNP NNP NNP VBZ VBN TO VB NNP RB IN NNP JJ NN . Officials close to Mr. Netanyahu denied Israeli media reports that the meeting was called off because of a disagreement over Israeli settlement activity . NNS RB TO NNP NNP VBD JJ NNS NNS IN DT NN VBD VBN RP IN IN DT NN IN JJ NN NN . The United States has said Israel must halt settlement expansion in the occupied West Bank as part of a comprehensive peace plan . DT NNP NNP VBZ VBN NNP MD VB NN NN IN DT JJ NNP NNP IN NN IN DT JJ NN NN . Israel has resisted the notion , saying some degree of expansion must continue to support the natural growth of settler communities . NNP VBZ VBN DT NN , VBG DT NN IN NN MD VB TO VB DT JJ NN IN NN NNS . U.S. and Iraqi forces have ended a four-day operation , Spear , aimed at clearing insurgent bases and training camps in western Iraq . NNP CC JJ NNS VBP VBN DT JJ NN , NNP , VBN IN VBG JJ NNS CC NN NNS IN JJ NNP . Military officials say forces killed some 50 fighters and discovered more than a dozen car bombs in and around the town of Karabilah during the campaign . JJ NNS VBP NNS VBD DT CD NNS CC VBD JJR IN DT NN NN NNS IN CC IN DT NN IN NNP IN DT NN . U.S. officials also say a roadside bomb killed an American soldier in a separate incident in western Iraq . NNP NNS RB VBP DT NN NN VBD DT JJ NN IN DT JJ NN IN JJ NNP . In Baghdad , the new U.S. ambassador to Iraq , Zalmay Khalilzad , expressed horror at ongoing attacks by insurgents against Iraqi civilians . IN NNP , DT JJ NNP NN TO NNP , NNP NNP , VBD NN IN JJ NNS IN NNS IN JJ NNS . Mr. Khalilzad made the comment after presenting his credentials to President Jalal Talabani in a meeting Tuesday . NNP NNP VBD DT NN IN VBG PRP$ NNS TO NNP NNP NNP IN DT NN NNP . Meantime , a top U.S. military commander , General John Vines , says some U.S. forces may begin leaving the country after elections scheduled for later this year . RB , DT JJ NNP JJ NN , NNP NNP NNP , VBZ DT NNP NNS MD VB VBG DT NN IN NNS VBN IN RB DT NN . Iranian state television says a bus carrying pilgrims on their way to holy sites in Iraq has crashed into a warehouse in western Iran , killing at least 28 people . JJ NN NN VBZ DT NN VBG NNS IN PRP$ NN IN JJ NNS IN NNP VBZ VBN IN DT NN IN JJ NNP , VBG IN JJS CD NNS . Monday 's reports say nine others were injured when the bus crashed near Ilam , some 710 kilometers southwest of Tehran . NNP POS NNS VBP CD NNS VBD VBN WRB DT NN VBD IN NNP , DT CD NNS JJS IN NNP . Officials blamed high speed and mechanical problems for the accident . NNS VBD JJ NN CC JJ NNS IN DT NN . Iran has one of the worst road safety records in the world . NNP VBZ CD IN DT JJS NN NN NNS IN DT NN . Official statistics show that more than 26,000 people die in road accidents in Iran each year due to unsafe vehicles , disregard for traffic rules and inadequate emergency services . JJ NNS VBP IN JJR IN CD NNS VBP IN NN NNS IN NNP DT NN RB TO JJ NNS , VB IN NN NNS CC JJ NN NNS . Iraq 's government says Prime Minister Nouri al-Maliki will make his first official visit to Iran on Monday . NNP POS NN VBZ NNP NNP NNP NNP MD VB PRP$ JJ JJ NN TO NNP IN NNP . Officials say his two-day visit will focus on security issues and promoting bilateral relations . NNS VBP PRP$ JJ NN MD VB IN NN NNS CC VBG JJ NNS . Earlier this week , Iraqi Deputy Prime Minister Barham Saleh led a delegation of officials on a visit to Iran aimed at enhancing economic ties between the two nations . RBR DT NN , JJ NNP NNP NNP NNP NNP VBD DT NN IN NNS IN DT NN TO NNP VBN IN VBG JJ NNS IN DT CD NNS . Iraq and Iran fought a bloody war in the 1980s when then-Iraqi leader Saddam Hussein was in power . NNP CC NNP VBD DT JJ NN IN DT NNS WRB JJ NN NNP NNP VBD IN NN . The neighboring countries have tried to build closer ties in recent years . DT JJ NNS VBP VBN TO VB JJR NNS IN JJ NNS . The U.S. national security advisor says Pakistan , Afghanistan and the United States have to cooperate more closely if they are to stem the threat posed by terrorists operating in Pakistan 's border areas . DT NNP JJ NN NN VBZ NNP , NNP CC DT NNP NNPS VBP TO VB RBR RB IN PRP VBP TO VB DT NN VBN IN NNS VBG IN NNP POS NN NNS . Stephen Hadley made the comment at a news conference in Kabul , following a meeting with Afghan President Hamid Karzai . NNP NNP VBD DT NN IN DT NN NN IN NNP , VBG DT NN IN JJ NNP NNP NNP . Mr. Hadley said Washington is working very closely with both Pakistan and Afghanistan to counter the threat . NNP NNP VBD NNP VBZ VBG RB RB IN DT NNP CC NNP TO VB DT NN . But , he said , this is a very hard problem and there is no quick fix . CC , PRP VBD , DT VBZ DT RB JJ NN CC EX VBZ DT JJ NN . The U.S. official stressed the only way to successfully counter the threat is to learn to work effectively together . DT NNP NN VBD DT JJ NN TO RB VB DT NN VBZ TO VB TO VB RB RB . He said that although all three nations had made progress , they have a responsibility to do a lot more . PRP VBD IN IN DT CD NNS VBD VBN NN , PRP VBP DT NN TO VB DT NN RBR . Pakistan has agreed to allow Indian diplomats to visit a jailed Indian man who was sentenced to death for spying . NNP VBZ VBN TO VB JJ NNS TO VB DT JJ JJ NN WP VBD VBN TO NN IN VBG . A spokesman for Pakistan 's foreign ministry said Friday , that officials for the two countries will work out a date for the visit . DT NN IN NNP POS JJ NN VBD NNP , IN NNS IN DT CD NNS MD VB RP DT NN IN DT NN . India has been pressing its neighbor for access to the man , Sarabjit Singh , whose 1991 conviction on spying and involvement in a series of bombings was upheld last week by Pakistan 's Supreme Court . NNP VBZ VBN VBG PRP$ NN IN NN TO DT NN , NNP NNP , WP$ CD NN IN VBG CC NN IN DT NN IN NNS VBD VBN JJ NN IN NNP POS NNP NNP . Singh 's family denies the charges , saying he is a farmer who accidentally strayed onto Pakistani soil 15 years ago . NNP POS NN VBZ DT NNS , VBG PRP VBZ DT NN WP RB VBD IN JJ NN CD NNS RB . The Indian government has been pressing Pakistan to spare the man 's life . DT JJ NN VBZ VBN VBG NNP TO VB DT NN POS NN . President Bush has started the new year by visiting wounded troops at a military hospital in San Antonio , Texas . NNP NNP VBZ VBN DT JJ NN IN VBG JJ NNS IN DT JJ NN IN NNP NNP , NNP . The president traveled from his ranch in Crawford to the medical facility at Fort Sam Houston earlier today . DT NN VBD IN PRP$ NN IN NNP TO DT JJ NN IN NNP NNP NNP RB NN . A White House spokesman said he would award nine Purple Hearts to wounded soldiers . DT NNP NNP NN VBD PRP MD VB CD NNP NNS TO JJ NNS . Mr. Bush is expected to return to Washington later today , wrapping up his week-long Christmas holiday in Texas . NNP NNP VBZ VBN TO VB TO NNP RB NN , VBG RP PRP$ JJ NNP NN IN NNP . Mr. Bush faces several key issues at the start of the new year , including lobbying Congress to reapprove the Patriot Act , ushering his Supreme Court nominee Samuel Alito through the Senate confirmation process , and overseeing military deployments in Afghanistan and Iraq as some lawmakers call for troop withdrawals . NNP NNP VBZ JJ JJ NNS IN DT NN IN DT JJ NN , VBG VBG NNP TO VB DT NNP NNP , VBG PRP$ NNP NNP NN NNP NNP IN DT NNP NN NN , CC VBG JJ NNS IN NNP CC NNP IN DT NNS VBP IN NN NNS . Israel 's Defense Minister - harshly criticized for his performance during last summer 's war in Lebanon - says he will leave the defense ministry , probably after his Labor party holds a leadership election late this month . NNP POS NNP NNP : RB VBN IN PRP$ NN IN JJ NN POS NN IN NNP : VBZ PRP MD VB DT NN NN , RB IN PRP$ NN NN VBZ DT NN NN RB DT NN . Amir Peretz said in a Saturday interview on Israeli Television ( Channel 2 ) he intends to hand the defense ministry portfolio over to the Kadima party and ask for the finance ministry in exchange . NNP NNP VBD IN DT NNP NN IN JJ NNP LRB NNP CD RRB PRP VBZ TO VB DT NN NN NN IN TO DT NNP NN CC VB IN DT NN NN IN NN . Peretz and Israeli Prime Minister Ehud Olmert have been under pressure to resign since the release of a report that said the two men were responsible for serious failures in the war in Lebanon . NNP CC JJ NNP NNP NNP NNP VBP VBN IN NN TO VB IN DT NN IN DT NN WDT VBD DT CD NNS VBD JJ IN JJ NNS IN DT NN IN NNP . Many Israelis consider the war a failure because Israel did not defeat Hezbollah or get back the two soldiers whose kidnapping by the Islamic militant group triggered the war . JJ NNS VBP DT NN DT NN IN NNP VBD RB VB NNP CC VB RB DT CD NNS WP$ NN IN DT NNP NN NN VBD DT NN . Hundreds of protesters in Russia 's republic of Ingushetia have demanded the resignation of its president . NNS IN NNS IN NNP POS NN IN NNP VBP VBN DT NN IN PRP$ NN . A heavy security presence shadowed Monday 's rally in the city of Nazran as protesters called for the resignation of President Murat Zyazikov , a former KGB general who was elected in 2002 with significant Kremlin support . DT JJ NN NN VBD NNP POS NN IN DT NN IN NNP IN NNS VBN IN DT NN IN NNP NNP NNP , DT JJ NNP NN WP VBD VBN IN CD IN JJ NNP NN . Police in the predominantly Muslim republic reportedly arrested one of the protest organizers , Boris Arsamokov . NNS IN DT RB JJ NN RB VBN CD IN DT NN NNS , NNP NNP . The Associated Press reports that participants also demanded the Kremlin redraw the boundary between Ingushetia and North Ossetia to return territory that belonged to ethnic Ingush . DT NNP NNP VBZ IN NNS RB VBD DT NNP VB DT NN IN NNP CC NNP NNP TO VB NN WDT VBD TO JJ NNP . North Ossetia is a neighboring republic dominated by Orthodox Christians . NNP NNP VBZ DT JJ NN VBN IN NNP NNPS . Ingushetia also borders Chechnya , where separatists have fought pro-Moscow forces for more than five years . NNP RB NNS NNP , WRB NNS VBP VBN JJ NNS IN JJR IN CD NNS . Prosecutors at the trial of Saddam Hussein have presented a document they said is signed by Saddam approving the execution of 148 Shi'ite Muslim villagers . NNS IN DT NN IN NNP NNP VBP VBN DT NN PRP VBD VBZ VBN IN NNP VBG DT NN IN CD NNP NNP NNS . The prosecutors Tuesday said the June 1984 document confirmed the death sentences passed by a tribunal . DT NNS NNP VBD DT NNP CD NN VBD DT NN NNS VBN IN DT NN . Saddam and seven others are on trial for the killings in Dujail , which happened in a crackdown following an assassination attempt against Saddam . NNP CC CD NNS VBP IN NN IN DT NNS IN NNP , WDT VBD IN DT NN VBG DT NN NN IN NNP . Their trial resumed briefly Tuesday after a two week break with the defendants and their legal team present . PRP$ NN VBD RB NNP IN DT CD NN NN IN DT NNS CC PRP$ JJ NN NN . They had boycotted previous sessions . PRP VBD VBN JJ NNS . Chief Judge Raouf Abdel-Rahman announced the five-judge panel rejected a defense request to remove him and the chief prosecutor from the trial . NNP NNP NNP NNP VBD DT JJ NN VBD DT NN NN TO VB PRP CC DT JJ NN IN DT NN . Saddam 's head defense lawyer Khalil al-Dulaimi said he would appeal the decision and asked for a halt in the court 's proceedings . NNP POS NN NN NN NNP NNP VBD PRP MD VB DT NN CC VBD IN DT NN IN DT NN POS NNS . He then walked out of the court . PRP RB VBD IN IN DT NN . The trial has been adjourned until Wednesday . DT NN VBZ VBN VBN IN NNP . The defendants face hanging if convicted . DT NNS VBP VBG IN VBN . Thousands of people demonstrated in northern Japan Saturday in advance of next week 's summit of leaders of the world 's eight richest nations . NNS IN NNS VBN IN JJ NNP NNP IN NN IN JJ NN POS NN IN NNS IN DT NN POS CD JJS NNS . The protesters gathered in the city of Sapporo to demand the Group of Eight leaders take action on a number of issues , including soaring food prices . DT NNS VBD IN DT NN IN NNP TO VB DT NNP IN CD NNS VBP NN IN DT NN IN NNS , VBG VBG NN NNS . They also denounced the G8 itself for such ills as war , discrimination , poverty and global climate change . PRP RB VBD DT NNP PRP IN JJ NNS IN NN , NN , NN CC JJ NN NN . Foreign activists , farmers and non-governmental organizations made up the ranks of the protesters . JJ NNS , NNS CC JJ NNS VBD RP DT NNS IN DT NNS . Thousands of riot police were deployed along the march route . NNS IN NN NNS VBD VBN IN DT NN NN . Officials say at least four people were arrested . NNS VBP IN JJS CD NNS VBD VBN . Sapporo is the capital of Hokkaido Island . NNP VBZ DT NN IN NNP NNP . The G8 leaders will convene at a nearby luxury resort on Monday for a three-day summit . DT NNP NNS MD VB IN DT JJ NN NN IN NNP IN DT JJ NN . The G8 includes the United States , Japan , Russia , France , Britain , Canada , Italy and Germany . DT NNP VBZ DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , NNP CC NNP . BBC journalist Alan Johnston , released Wednesday by Palestinian kidnappers in the Gaza Strip , has received an award for human rights reporting from Amnesty International . NNP NN NNP NNP , VBN NNP IN JJ NNS IN DT NNP NNP , VBZ VBN DT NN IN JJ NNS VBG IN NNP NNP . Amnesty International 's director for Britain , Kate Allen , said the judges of the annual media awards were determined not to let Johnston 's kidnapping affect their judgment . NNP NNP POS NN IN NNP , NNP NNP , VBD DT NNS IN DT JJ NNS NNS VBD VBN RB TO VB NNP POS NN VBP PRP$ NN . She said they were impressed by his insight and commitment to telling stories of everyday life in Gaza . PRP VBD PRP VBD VBN IN PRP$ NN CC NN TO VBG NNS IN JJ NN IN NNP . The award was one of nine that Amnesty gave out during a ceremony in London Wednesday just hours after Johnston 's release . DT NN VBD CD IN CD IN NNP VBD RP IN DT NN IN NNP NNP RB NNS IN NNP POS NN . His father accepted the award for him , saying , ' It 's been quite a day . ' PRP$ NN VBD DT NN IN PRP , VBG , `` PRP VBZ VBN RB DT NN . `` Johnston was the only Western reporter based in Gaza when he was abducted in March . NNP VBD DT JJ JJ NN VBN IN NNP WRB PRP VBD VBN IN NNP . After his release , he compared his four months in captivity to being buried alive . ' IN PRP$ NN , PRP VBD PRP$ CD NNS IN NN TO VBG VBN JJ . `` The White House says it can not intervene in the New York City public transit strike , but it has encouraged the parties involved to resolve their differences . DT NNP NNP VBZ PRP MD RB VB IN DT NNP NNP NNP JJ NN NN , CC PRP VBZ VBN DT NNS VBN TO VB PRP$ NNS . A White House spokesman , Scott McClellan , told reporters Wednesday that federal mediators have offered to help resolve the conflict over city transit workers ' pay and pension issues . DT NNP NNP NN , NNP NNP , VBD NNS NNP IN JJ NNS VBP VBN TO VB VB DT NN IN NN NN NNS POS NN CC NN NNS . Meanwhile , New Yorkers commuted to work for the second day on foot , on bicycle , or crowded four-at-a-time into taxi cabs . RB , NNP NNPS VBD TO VB IN DT JJ NN IN NN , IN NN , CC JJ NN IN NN NNS . The city 's subway and buses shut down early Tuesday after talks deadlocked between the city and the Transport Workers Union . DT NN POS NN CC NNS VBD RP RB NNP IN NNS VBD IN DT NN CC DT NNP NNP NNP . Later that day , a judge imposed a fine against the union of $ 1 million for each day of the strike . RB DT NN , DT NN VBD DT NN IN DT NN IN $ CD CD IN DT NN IN DT NN . Merchants are concerned about plummeting sales just before the Christmas and New Year holidays - normally the busiest shopping days of the year . NNS VBP VBN IN VBG NNS RB IN DT NNP CC NNP NNP NNS IN RB DT JJS NN NNS IN DT NN . The United States says it is being forced to suspend food aid to North Korea because of Pyongyang 's decision to stop allowing the United Nations to distribute the food . DT NNP NNPS VBZ PRP VBZ VBG VBN TO VB NN NN TO NNP NNP IN IN NNP POS NN TO VB VBG DT NNP NNPS TO VB DT NN . State Department spokesman Adam Ereli said Thursday U.S. policy requires that international relief workers be able to monitor the distribution of its food . NNP NNP NN NNP NNP VBD NNP NNP NN VBZ IN JJ NN NNS VB JJ TO VB DT NN IN PRP$ NN . That safeguard will disappear when the U.N. World Food Program ( WFP ) stops distributing food in North Korea this month . DT NN MD VB WRB DT NNP NNP NNP NNP LRB NNP RRB VBZ VBG NN IN NNP NNP DT NN . Mr. Ereli said it is a common practice for North Korea to ' ignore the needs of its people ' and ' let them starve for inexplicable reasons . ' NNP NNP VBD PRP VBZ DT JJ NN IN NNP NNP TO `` VB DT NNS IN PRP$ NNS `` CC `` VB PRP VB IN JJ NNS . `` North Korea announced in August that it no longer wanted U.N. food aid because it said domestic food production had improved . NNP NNP VBD IN NNP IN PRP RB RBR VBD NNP NN NN IN PRP VBD JJ NN NN VBD VBN . The WFP said it would close all its food-processing plants in North Korea by the end of this month . DT NNP VBD PRP MD VB DT PRP$ JJ NNS IN NNP NNP IN DT NN IN DT NN . Danish police are holding seven people suspected of planning terrorist attacks in the Scandinavian country . JJ NNS VBP VBG CD NNS VBN IN VBG JJ NNS IN DT JJ NN . Authorities say security police launched a raid early Tuesday and detained nine suspects in Vollsmose , a mostly immigrant neighborhood in the city of Odense . NNS VBP NN NNS VBD DT NN JJ NNP CC VBD CD NNS IN NNP , DT RB JJ NN IN DT NN IN NNP . Police released two of the suspects . NNS VBD CD IN DT NNS . Justice Minister Lene Espersen said police seized materials used to make explosives , and she said most of the suspects are thought to be Danish citizens of foreign origin . NNP NNP NNP NNP VBD NNS VBD NNS VBN TO VB NNS , CC PRP VBD JJS IN DT NNS VBP VBN TO VB JJ NNS IN JJ NN . Espersen declined to disclose further details but she said evidence showed the group had been plotting to stage an attack somewhere in Denmark . NNP VBD TO VB JJ NNS CC PRP VBD NN VBD DT NN VBD VBN VBG TO VB DT NN RB IN NNP . Last month , authorities charged four suspects with trying to obtain explosives to carry out a terrorist attack . JJ NN , NNS VBD CD NNS IN VBG TO VB NNS TO VB RP DT JJ NN . Also in early August , a Moroccan-born Dane was charged with inciting Muslims to carry out terrorist acts . RB IN JJ NNP , DT JJ NN VBD VBN IN VBG NNS TO VB RP JJ NNS . Police in northwest Pakistan say suspected Taliban militants have blown up a primary school that educated girls . NNS IN JJ NNP VBP VBN NNP NNS VBP VBN RP DT JJ NN IN VBN NNS . Officials say there were no casualties in Tuesday 's blast because the school was closed for the Eid al-Fitr holiday marking the end of the Muslim holy month of Ramadan . NNS VBP EX VBD DT NNS IN NNP POS NN IN DT NN VBD VBN IN DT JJ JJ NN VBG DT NN IN DT NNP JJ NN IN NNP . Al-Qaida and Taliban-linked militants who oppose the education of women have destroyed hundreds of girls schools across the country . NNP CC JJ NNS WP VBP DT NN IN NNS VBP VBN NNS IN NNS NNS IN DT NN . On Monday , police killed a suicide bomber trying to assassinate a regional education minister , also in the northwest . IN NNP , NN VBD DT NN NN VBG TO VB DT JJ NN NN , RB IN DT NN . In other violence , Pakistani security forces say they have arrested 11 suspected militants , including three Afghanis , during security operations in Malakand and Swat districts . IN JJ NN , JJ NN NNS VBP PRP VBP VBN CD JJ NNS , VBG CD NNP , IN NN NNS IN NNP CC NNP NNS . In a statement released Tuesday , officials say they also found four inter-linked tunnels and bomb-proof bunkers during a separate search operation near Swat 's Biakand area . IN DT NN VBN NNP , NNS VBP PRP RB VBD CD JJ NNS CC JJ NNS IN DT JJ NN NN IN NNP POS NNP NN . NATO says two alliance soldiers have been killed and three others wounded in a firefight with Taliban insurgents in eastern Afghanistan . NNP VBZ CD NN NNS VBP VBN VBN CC CD NNS VBN IN DT NN IN NNP NNS IN JJ NNP . In a statement , the NATO-led International Security Assistance Force says the fighting erupted when insurgents ambushed a joint NATO-Afghan troop patrol in the Korangal Valley of Kunar province late Thursday . IN DT NN , DT JJ NNP NNP NNP NNP VBZ DT NN VBD WRB NNS VBD DT JJ JJ NN NN IN DT NNP NNP IN NNP NN JJ NNP . NATO did not identify the nationalities of the dead and wounded soldiers . NNP VBD RB VB DT NNS IN DT JJ CC JJ NNS . NATO and U.S. forces are battling a resurgent Taliban presence in Afghanistan . NNP CC NNP NNS VBP VBG DT JJ NNP NN IN NNP . The group increasingly has used suicide attacks and roadside bomb blasts since U.S.-led forces ousted it from power in the late 2001 . DT NN RB VBZ VBN NN NNS CC NN NN NNS IN JJ NNS VBD PRP IN NN IN DT JJ CD . Staff from Arabic television station al-Jazeera protested Thursday around the Middle East in the wake of a British news report that alleged President Bush considered bombing the channel 's headquarters last year . NN IN JJ NN NN NNP VBD NNP IN DT NNP NNP IN DT NN IN DT JJ NN NN WDT VBD NNP NNP VBD VBG DT NN POS NN JJ NN . Dozens of al-Jazeera reporters and staff members demonstrated outside the station 's headquarters in Doha , Qatar and in other cities . NNS IN NNP NNS CC NN NNS VBD IN DT NN POS NN IN NNP , NNP CC IN JJ NNS . They called for an investigation into the allegations raised in the Daily Mirror article , which was based on an allegedly leaked official memorandum . PRP VBD IN DT NN IN DT NNS VBN IN DT NNP NNP NN , WDT VBD VBN IN DT RB JJ NN NN . In Cairo , Beirut and Gaza City , al-Jazeera staffers were joined by colleagues from other Arab media . IN NNP , NNP CC NNP NNP , NNP NNS VBD VBN IN NNS IN JJ JJ NNS . The White House has dismissed the tabloid report as ' outlandish and inconceivable . ' DT NNP NNP VBZ VBN DT JJ NN IN `` JJ CC JJ . `` After its front-page story Tuesday , the Daily Mirror and two other British papers said Britain 's government threatened them with legal action if they publish further details of the top secret document . IN PRP$ JJ NN NNP , DT NNP NNP CC CD JJ JJ NNS VBD NNP POS NN VBD PRP IN JJ NN IN PRP VB JJ NNS IN DT JJ NN NN . The United States is temporarily closing its consulate in the Mexican border city of Nuevo Laredo because of escalating violence . DT NNP NNPS VBZ RB VBG PRP$ NN IN DT JJ NN NN IN NNP NNP IN IN VBG NN . In a statement from Mexico City Friday , Ambassador Tony Garza said the consulate will close for one week , beginning August 1 . IN DT NN IN NNP NNP NNP , NNP NNP NNP VBD DT NN MD VB IN CD NN , VBG NNP CD . He says Thursday 's battle on the streets of Nuevo Laredo forced the closure to assess the security situation for employees and travelers . PRP VBZ NNP POS NN IN DT NNS IN NNP NNP VBD DT NN TO VB DT NN NN IN NNS CC NNS . Rival gangs clashed with machine guns , grenades and a rocket launcher late Thursday . JJ NNS VBN IN NN NNS , NNS CC DT NN NN JJ NNP . No one was killed , but the neighborhood has been described as resembling a war zone . DT NN VBD VBN , CC DT NN VBZ VBN VBN IN VBG DT NN NN . The closure announcement comes days after the ambassador asked the U.S. State Department to extend its travel advisory warning Americans about attacks in Mexico . DT NN NN VBZ NNS IN DT NN VBD DT NNP NNP NNP TO VB PRP$ NN JJ NN NNS IN NNS IN NNP . More than 100 people have been killed in the town since June , including 18 policemen , as gangs compete for drug-smuggling routes into the United States . JJR IN CD NNS VBP VBN VBN IN DT NN IN NNP , VBG CD NNS , IN NNS VBP IN JJ NNS IN DT NNP NNPS . Pakistan has sentenced five people to death for plotting to kill President Pervez Musharraf two years ago . NNP VBZ VBN CD NNS TO NN IN VBG TO VB NNP NNP NNP CD NNS RB . Army spokesman Major General Shaukat Sultan said Friday that the sentences were given to one soldier and four civilians involved in the plot to ram an explosives-laden vehicle into Mr. Musharraf 's motorcade . NNP NN NNP NNP NNP NNP VBD NNP IN DT NNS VBD VBN TO CD NN CC CD NNS VBN IN DT NN TO VB DT JJ NN IN NNP NNP POS NN . The president was unhurt in the attack in Rawalpindi , but 15 others died . DT NN VBD JJ IN DT NN IN NNP , CC CD NNS VBD . Earlier this month , authorities hanged a soldier linked to that attack and an earlier plot against the president . RBR DT NN , NNS VBD DT NN VBN TO DT NN CC DT JJR NN IN DT NN . Mr. Musharraf has become a target for Islamic militants since joining the U.S.-led war on terrorism after the September 11 , 2001 attacks in the United States . NNP NNP VBZ VBN DT NN IN JJ NNS IN VBG DT JJ NN IN NN IN DT NNP CD , CD NNS IN DT NNP NNPS . Pakistani officials say the suspected mastermind of the plot uncovered in London last week to blow up U.S.-bound airplanes is hiding in a mountainous region of northeastern Afghanistan . JJ NNS VBP DT JJ NN IN DT NN NN IN NNP JJ NN TO VB RP JJ NNS VBZ VBG IN DT JJ NN IN JJ NNP . The officials said Friday they told the U.S. military that the suspect , an al-Qaida operative , is believed to be in Afghanistan 's Kunar province , which borders Pakistan . DT NNS VBD NNP PRP VBD DT NNP NN IN DT NN , DT NNP NN , VBZ VBN TO VB IN NNP POS NNP NN , WDT VBZ NNP . They have not disclosed his name . PRP VBP RB VBN PRP$ NN . They say the information was obtained by interrogators questioning British suspect Rashid Rauf , who was arrested in eastern Pakistan and is regarded as a key figure in the foiled plot . PRP VBP DT NN VBD VBN IN NNS VBG JJ NN NN NNP , WP VBD VBN IN JJ NNP CC VBZ VBN IN DT JJ NN IN DT VBN NN . Twenty-three people are in detention in Britain , and Pakistan is holding seven suspects in the plot . CD NNS VBP IN NN IN NNP , CC NNP VBZ VBG CD NNS IN DT NN . A flurry of reports Tuesday shows problems for the U.S. economy in the services , retail , factory , and housing sectors . DT NN IN NNS NNP VBZ NNS IN DT NNP NN IN DT NNS , JJ , NN , CC NN NNS . Services make up the vast majority of the world 's largest economy , but were hit hard in December as consumers cut spending and housing slumped . NNPS VBP RP DT JJ NN IN DT NN POS JJS NN , CC VBD VBN RB IN NNP IN NNS VBP NN CC NN VBD . However , the industry group the Institute for Supply Management that tracks the data says December 's figures showed the services sector shrinking at a slower rate than the prior month . RB , DT NN NN DT NNP IN NNP NNP WDT VBZ DT NN VBZ NNP POS NNS VBD DT NNS NN NN IN DT JJR NN IN DT JJ NN . Retail sales are also troubled . JJ NNS VBP RB VBN . Big discounts following the Christmas holiday , December 25 , had consumers shopping for bargains , but were not enough to help retailers salvage a disappointing holiday shopping season . JJ NNS VBG DT NNP NN , NNP CD , VBD NNS VBG IN NNS , CC VBD RB RB TO VB NNS VB DT JJ NN NN NN . An industry group , the International Council of Shopping Centers , says sales fell almost one percent last week , compared to the same time last year . DT NN NN , DT NNP NNP IN NNP NNP , VBZ NNS VBD RB CD NN JJ NN , VBN TO DT JJ NN JJ NN . Other reports Tuesday show U.S. factory orders falling sharply and pending home resales off sharply in November . JJ NNS NNP VBZ NNP NN NNS VBG RB CC VBG NN VBZ RP RB IN NNP . Janice Karpinski NNP NNP The U.S. Army has demoted the reserve officer who commanded the military police unit at Iraq 's Abu Ghraib in a highly publicized prisoner abuse scandal . DT NNP NNP VBZ VBN DT NN NN WP VBD DT JJ NN NN IN NNP POS NNP NNP IN DT RB JJ NN NN NN . The Army says Brigadier General Janice Karpinski was found guilty of dereliction of duty , and , upon President Bush 's approval , she was demoted to colonel . DT NNP VBZ NN NNP NNP NNP VBD VBN JJ IN NN IN NN , CC , IN NNP NNP POS NN , PRP VBD VBN IN NN . However , the Army says no action or lack of action by General Karpinski contributed specifically to the abuse of detainees at Abu Ghraib . RB , DT NNP VBZ DT NN CC NN IN NN IN NNP NNP VBD RB TO DT NN IN NNS IN NNP NNP . General Karpinski is the highest-ranking U.S. officer to be punished in the wake of the prison scandal . NNP NNP VBZ DT JJ NNP NN TO VB VBN IN DT NN IN DT NN NN . Earlier this week , a U.S. military judge threw out the guilty plea of Army Private First Class Lynndie England in connection with the scandal . RBR DT NN , DT NNP JJ NN VBD RP DT JJ NN IN NNP NNP NNP NNP NNP NNP IN NN IN DT NN . Her case will now be sent back to military authorities for further consideration . PRP$ NN MD RB VB VBN RB TO JJ NNS IN JJ NN . International human rights groups say gunmen in the Democratic Republic of Congo have killed a prominent rights activist in the east of the country . JJ JJ NNS NNS VBP NNS IN DT JJ NNP IN NNP VBP VBN DT JJ NNS NN IN DT NN IN DT NN . In a joint statement Monday , Amnesty International , Human Rights Watch , and Front Line called on Congo 's government to investigate the slaying of Pascal Kabungulu Kibembi . IN DT JJ NN NNP , NNP NNP , NNP NNP NNP , CC NNP NNP VBD IN NNP POS NN TO VB DT NN IN NNP NNP NNP . He was executive director of the human rights group Heirs of Justice , based in Congo 's South Kivu region . PRP VBD JJ NN IN DT JJ NNS NN NNP IN NNP , VBN IN NNP POS NNP NNP NN . The organizations say that on Sunday , three armed men in uniform broke into Mr. Kabungulu 's home in Bukavu , and shot him in front of his family . DT NNS VBP IN IN NNP , CD JJ NNS IN NN VBD IN NNP NNP POS NN IN NNP , CC VBD PRP IN NN IN PRP$ NN . The groups are urging the Congolese government to find and prosecute those responsible and to develop an effective plan to protect human rights workers . DT NNS VBP VBG DT JJ NN TO VB CC VB DT JJ CC TO VB DT JJ NN TO VB JJ NNS NNS . They say some rights activists have fled the country because of increased threats . PRP VBP DT NNS NNS VBP VBN DT NN IN IN VBN NNS . Witnesses say nearly 20 dead whales have washed up Wednesday on a beach in Dakar , Senegal . NNS VBP RB CD JJ NNS VBP VBN RP NNP IN DT NN IN NNP , NNP . Dakar journalist Ricci Shryock tells VOA national police are removing the carcasses in trucks . NNP NN NNP NNP VBZ NNP JJ NNS VBP VBG DT NNS IN NNS . She said the whales measure some 3.5 to 4.5 meters . PRP VBD DT NNS NN DT CD TO CD NNS . Local villagers say as many as 100 whales swam up to shore late Tuesday night . JJ NNS VBP RB JJ IN CD NNS VBD RP TO VB JJ NNP NN . Fisherman were able to tow some of the animals out to sea . NNP VBD JJ TO VB DT IN DT NNS IN TO NN . It is unclear why the animals swam close to shore . PRP VBZ JJ WRB DT NNS VBP RB TO VB . U.S. President Barack Obama called the heads of the nation 's largest banks to the White House for talks Friday , in the latest effort to find ways to bolster the battered U.S. economy . NNP NNP NNP NNP VBD DT NNS IN DT NN POS JJS NNS TO DT NNP NNP IN NNS NNP , IN DT JJS NN TO VB NNS TO VB DT JJ NNP NN . Earlier this week , the Obama administration proposed a plan to help troubled banks by using a government and private partnership to buy up to $ 1 trillion in bad loans and other ' toxic assets ' from them . RBR DT NN , DT NNP NN VBD DT NN TO VB JJ NNS IN VBG DT NN CC JJ NN TO VB RP TO $ CD CD IN JJ NNS CC JJ `` JJ NNS `` IN PRP . Thursday , Treasury Secretary Timothy Geithner urged Congress to approve the administration 's plan to expand the government 's powers to monitor large financial firms . NNP , NNP NNP NNP NNP VBD NNP TO VB DT NN POS NN TO VB DT NN POS NNS TO VB JJ JJ NNS . There may be some faint signs the effort is working . EX MD VB DT NN NNS DT NN VBZ VBG . Economic data published Friday shows consumer spending rose slightly and consumer sentiment improved a small amount in February . JJ NNS VBN NNP VBZ NN NN VBD RB CC NN NN VBD DT JJ NN IN NNP . Economists track consumer spending and their views of the economy because consumer demand drives two-thirds of U.S. economic activity . NNS VBP NN NN CC PRP$ NNS IN DT NN IN NN NN VBZ NNS IN NNP JJ NN . U.S. military officials say the death toll from Wednesday 's helicopter crash in southeastern Afghanistan has risen to 16 , including at least four American crew members . NNP JJ NNS VBP DT NN NN IN NNP POS NN NN IN JJ NNP VBZ VBN TO CD , VBG IN JJS CD JJ NN NNS . A U.S. statement says two other people listed on the flight manifest are missing . DT NNP NN VBZ CD JJ NNS VBN IN DT NN NN VBP VBG . The Chinook helicopter was returning to Bagram air base from Ghazni province , southwest of the capital , Kabul , when it went down near Ghazni city . DT NNP NN VBD VBG TO NNP NN NN IN NNP NN , NN IN DT NN , NNP , WRB PRP VBD RB IN NNP NN . The U.S. military suggests severe weather was to blame for what is the deadliest military crash in Afghanistan since the start of U.S.-led operations to oust the Taleban in late 2001 . DT NNP NN VBZ JJ NN VBD TO VB IN WP VBZ DT JJS JJ NN IN NNP IN DT NN IN JJ NNS TO VB DT NNP IN JJ CD . The European Union will start talks with Bosnia on Friday on an accord to move the country closer to joining the 25-nation bloc . DT NNP NNP MD VB NNS IN NNP IN NNP IN DT NN TO VB DT NN RBR TO VBG DT JJ NN . The EU Enlargement Commissioner Olli Rehn will travel to Bosnia to open talks on the Stabilization and Association Agreement . DT NNP NNP NNP NNP NNP MD VB TO NNP TO VB NNS IN DT NNP CC NNP NNP . EU foreign ministers say Bosnia 's progress on the agreement depends on its willingness to continue reforms and cooperate with the U.N. war crimes tribunal . NNP JJ NNS VBP NNP POS NN IN DT NN VBZ IN PRP$ NN TO VB NNS CC VB IN DT NNP NN NNS JJ . Two key Bosnian war crimes suspects , Bosnian Serb leader Radovan Karadzic and army commander Ratko Mladic , remain at large . CD JJ JJ NN NNS VBZ , JJ JJ NN NNP NNP CC NN NN NNP NNP , VBP IN JJ . The EU Monday also extended the mandate for the more than 6,000 peacekeeping troops in Bosnia through next year . DT NNP NNP RB VBD DT NN IN DT JJR IN CD VBG NNS IN NNP IN JJ NN . The EU decisions came as senior Bosnian and U.N. diplomats meet in Washington to mark the 10th anniversary of the Dayton Peace Accords , which ended the three-year war in Bosnia-Herzegovina . DT NNP NNS VBD IN JJ JJ CC NNP NNS VBP IN NNP TO VB DT JJ NN IN DT NNP NNP NNP , WDT VBD DT JJ NN IN NNP . Russian Defense Minister Sergei Ivanov has accused some NATO countries of illegally supplying Soviet-made arms to Georgia . JJ NNP NNP NNP NNP VBZ VBN DT NNP NNS IN RB VBG JJ NNS TO NNP . The Russian official Friday did not name the countries allegedly involved , but he said they were from among the seven formerly communist-ruled East European countries that joined the alliance in 2004 . DT JJ NN NNP VBD RB VB DT NNS RB VBN , CC PRP VBD PRP VBD IN IN DT CD RB JJ JJ JJ NNS WDT VBD DT NN IN CD . Ivanov made his comments following a meeting with defense ministers of the 26 NATO countries in the Slovenian seaside resort of Portoroz . NNP VBD PRP$ NNS VBG DT NN IN NN NNS IN DT CD NNP NNS IN DT JJ NN NN IN NNP . Georgian officials filed espionage charges against Russian military officers this week . JJ NNS VBD NN NNS IN JJ JJ NNS DT NN . Ivanov alleged the move was part of efforts to force Moscow to withdraw its troops from Georgia and clear the way for Georgian authorities to pursue a military solution in secessionist areas of the country . NNP VBD DT NN VBD NN IN NNS TO VB NNP TO VB PRP$ NNS IN NNP CC VB DT NN IN JJ NNS TO VB DT JJ NN IN JJ NNS IN DT NN . NATO Secretary-General Jaap de Hoop Scheffer called on both sides to de-escalate tensions . NNP NNP NNP IN NNP NNP VBD IN DT NNS TO VB NNS . Earlier this month , NATO angered Russia by approving intensified dialogue with Georgia . RBR DT NN , NNP VBD NNP IN VBG JJ NN IN NNP . Pakistan has released 17 former Guantanamo Bay detainees who had been freed from U.S. custody nine months ago and detained for further investigation on their return to Pakistan . NNP VBZ VBN CD JJ NNP NNP NNS WP VBD VBN VBN IN NNP NN CD NNS RB CC VBD IN JJ NN IN PRP$ NN TO NNP . The released men are part of a group of 35 Pakistani detainees who were cleared by U.S. authorities last September . DT VBN NNS VBP NN IN DT NN IN CD JJ NNS WP VBD VBN IN NNP NNS JJ NNP . A religious affairs adviser for the government in Punjab province says the men were finally released today after they promised not to take part in militant activities . DT JJ NNS NN IN DT NN IN NNP NN VBZ DT NNS VBD RB VBN NN IN PRP VBD RB TO VB NN IN JJ NNS . Hundreds of Pakistanis went to Afghanistan to fight alongside the Taleban militia against the United States . NNS IN NNS VBD TO NNP TO VB IN DT NNP NN IN DT NNP NNPS . After the Taleban regime was ousted in late 2001 , many Pakistanis were jailed in Afghanistan , and some were sent to Guantanamo . IN DT NNP NN VBD VBN IN JJ CD , JJ NNS VBD VBN IN NNP , CC DT VBD VBN TO NNP . United Nations Secretary General Kofi Annan says he believes another investigation will be necessary into last month 's assassination of former Lebanese prime minister Rafik Hariri . NNP NNP NNP NNP NNP NNP VBZ PRP VBZ DT NN MD VB JJ IN JJ NN POS NN IN JJ JJ JJ NN NNP NNP . In a speech Wednesday to Arab leaders meeting in Algiers , Mr. Annan said that within the next few days he expects to release a report on a fact-finding mission into the February 14th killing . IN DT NN NNP TO JJ NNS NN IN NNP , NNP NNP VBD IN IN DT JJ JJ NNS PRP VBZ TO VB DT NN IN DT JJ NN IN DT NNP JJ NN . But he added that another more comprehensive probe might be necessary . CC PRP VBD IN DT RBR JJ NN MD VB JJ . News reports from Lebanon say the U.N. fact-finding report is expected to accuse Lebanese authorities of negligence and evidence tampering . NNP NNS IN NNP VBP DT NNP JJ NN VBZ VBN TO VB JJ NNS IN NN CC NN NN . Lebanon 's pro-Syrian government has said it was investigating the massive bombing in Beirut that killed Mr. Hariri . NNP POS JJ NN VBZ VBN PRP VBD VBG DT JJ NN IN NNP WDT VBD NNP NNP . But there has been no official statement on the probe . CC EX VBZ VBN DT JJ NN IN DT NN . Meanwhile , Mr. Annan said he expected the withdrawal of Syrian troops from Lebanon to be completed before Lebanese parliamentary elections set for May . RB , NNP NNP VBD PRP VBD DT NN IN JJ NNS IN NNP TO VB VBN IN JJ JJ NNS VBN IN NNP . Russian Defense Minister Sergei Ivanov says the government is cutting its troops in Chechnya by 1,000 . JJ NNP NNP NNP NNP VBZ DT NN VBZ VBG PRP$ NNS IN NNP IN CD . Mr. Ivanov made the announcement Friday at a military installation in the southern Russian city of Rostov-on-Don . NNP NNP VBD DT NN NNP IN DT JJ NN IN DT JJ JJ NN IN NNP . He gave no reason for the action . PRP VBD DT NN IN DT NN . The Itar-Tass news agency says airborne troops and marine units in the mountainous regions of Chechnya will be withdrawn . DT JJ NN NN VBZ JJ NNS CC JJ NNS IN DT JJ NNS IN NNP MD VB VBN . Mr. Ivanov says the only forces that will remain next year in the war-torn breakaway republic will be an infantry division and Defense Ministry commando forces . NNP NNP VBZ DT JJ NNS WDT MD VB JJ NN IN DT JJ NN NN MD VB DT NN NN CC NNP NNP NN NNS . Russia has been fighting separatists in Chechnya for most of the past decade , in a conflict that has devastated the region . NNP VBZ VBN VBG NNS IN NNP IN JJS IN DT JJ NN , IN DT NN WDT VBZ VBN DT NN . President Vladimir Putin has repeatedly said the fighting is dying down , but the violence continues . NNP NNP NNP VBZ RB VBN DT NN VBZ VBG RP , CC DT NN VBZ . U.N. Secretary-General Kofi Annan has urged all Iraqis to refrain from acts of violence and put aside their differences , in the wake of Monday 's suicide car bombing in Hilla that killed at least 125 people . NNP NNP NNP NNP VBZ VBN DT NNS TO VB IN NNS IN NN CC VB RP PRP$ NNS , IN DT NN IN NNP POS NN NN NN IN NNP WDT VBD IN JJ CD NNS . A statement issued through his spokesman condemned the attack as a flagrant violation of international law that seeks to undermine the prospects of peace , democracy and prosperity . DT NN VBN IN PRP$ NN VBD DT NN IN DT JJ NN IN JJ NN WDT VBZ TO VB DT NNS IN NN , NN CC NN . The attack , the deadliest of its kind since the fall of Saddam Hussein 's regime in 2003 , wounded more than 100 other people . DT NN , DT JJS IN PRP$ NN IN DT NN IN NNP NNP POS NN IN CD , VBD RBR IN CD JJ NNS . Witnesses say the bomber drove a car into a crowd of people seeking medical checkups needed for government jobs . NNS VBP DT NN VBD DT NN IN DT NN IN NNS VBG JJ NNS VBN IN NN NNS . There has been no claim of responsibility . EX VBZ VBN DT NN IN NN . The White House condemned the attack . DT NNP NNP VBD DT NN . U.S. lawmaker Connie Mack says Arabic-language al-Jazeera television , which has allied with Latin America 's Telesur network , is nothing more than a mouthpiece for terrorists . NNP NN NNP NNP VBZ NNP NNP NN , WDT VBZ VBN IN NNP NNP POS NNP NN , VBZ DT JJR IN DT NN IN NNS . The Republican congressman from the southeastern U.S. state of Florida tells VOA he is very concerned about that alliance . DT JJ NN IN DT JJ NNP NN IN NNP VBZ NNP PRP VBZ RB JJ IN DT NN . Earlier , he said it would create a global network for terrorists and other enemies of freedom . RB , PRP VBD PRP MD VB DT JJ NN IN NNS CC JJ NNS IN NN . He is calling for Congress to pass a plan authorizing the U.S. government to begin radio and television broadcasts into Venezuela . PRP VBZ VBG IN NNP TO VB DT NN VBG DT NNP NN TO VB NN CC NN NNS IN NNP . Thursday , Venezuela 's Communications Ministry said Congressman Mack 's comments represent a veiled threat that the United States will attack Telesur 's headquarters in Caracas . NNP , NNP POS NNP NNP VBD NNP NNP POS NNS VBP DT VBN NN IN DT NNP NNPS MD VB NNP POS NN IN NNP . A spokesman for the State Department said Friday it is not up to the U.S. government to dictate what sort of business deals media organizations can make . DT NN IN DT NNP NNP VBD NNP PRP VBZ RB RB TO DT NNP NN TO VB WP NN IN NN NNS NNS NNS MD VB . President Bush will visit the U.S. Gulf Coast Sunday as the region continues to clean-up from Hurricane Katrina . NNP NNP MD VB DT NNP NNP NNP NNP IN DT NN VBZ TO VB IN NNP NNP . The visit will be Mr. Bush 's third trip to the area since the devastating storm hit nearly two weeks ago . DT NN MD VB NNP NNP POS JJ NN TO DT NN IN DT JJ NN VBD RB CD NNS RB . Cleanup and recovery efforts in New Orleans are showing signs of progress . NN CC NN NNS IN NNP NNP VBP VBG NNS IN NN . The U.S. Army Corps of Engineers now says it will take 40 days to pump the floodwaters out of the city , cutting its original estimate in half . DT NNP NNP NNP IN NNPS RB VBZ PRP MD VB CD NNS TO VB DT NNS IN IN DT NN , VBG PRP$ JJ NN IN NN . The city 's Louis Armstrong International Airport will reopen to passenger traffic on Tuesday . DT NN POS NNP NNP NNP NNP MD VB TO NN NN IN NNP . Meanwhile , the block-to-block search continues for those killed when Katrina hit landfall . RB , DT JJ NN VBZ IN DT VBN WRB NNP VBD NN . Officials now cautiously say the death toll may be far lower than the thousands originally feared . NNS RB RB VBP DT NN NN MD VB RB JJR IN DT NNS RB VBN . The death toll now stands at nearly 400 across the region , with 154 in New Orleans . DT NN NN RB VBZ IN RB CD IN DT NN , IN CD IN NNP NNP . Maoist rebels in Nepal have raided a western town , in one of their largest assaults since ending a unilateral ceasefire earlier this month . NNP NNS IN NNP VBP VBN DT JJ NN , IN CD IN PRP$ JJS NNS IN VBG DT JJ NN RBR DT NN . Security officials say at least six policemen were missing , but no casualties were reported when the rebels fired on a police station as well as banks and offices in the town of Dhangadi overnight . NN NNS VBP IN JJS CD NNS VBD VBG , CC DT NNS VBD VBN WRB DT NNS VBN IN DT NN NN RB RB IN NNS CC NNS IN DT NN IN NNP RB . The officials say Nepalese soldiers returned fire , and reclaimed control of the town after a prolonged gunbattle . DT NNS VBP JJ NNS VBD NN , CC VBD NN IN DT NN IN DT JJ NN . Maoist rebels have carried out a series of attacks in western Nepal since they canceled a four-month long truce on January second . NNP NNS VBP VBN RP DT NN IN NNS IN JJ NNP IN PRP VBD DT JJ JJ NN IN NNP NN . The guerillas say they resumed hostilities because Nepal 's royalist government refused to match the ceasefire . DT NNS VBP PRP VBD NNS IN NNP POS NN NN VBD TO VB DT NN . The Maoists have been fighting to overthrow Nepal 's monarchy since 1996 . DT NNS VBP VBN VBG TO VB NNP POS NN IN CD . At least 12,000 people have died in the fighting . IN JJS CD NNS VBP VBN IN DT NN . The foreign ministers of Japan and South Korea have discussed their strained relations in a meeting on the sidelines of an Asian summit in Malaysia 's capital , Kuala Lumpur . DT JJ NNS IN NNP CC NNP NNP VBP VBN PRP$ JJ NNS IN DT NN IN DT NNS IN DT JJ NN IN NNP POS NN , NNP NNP . During talks Saturday , Seoul 's Foreign Minister Ban Ki-moon told his Japanese counterpart , Taro Aso , that visits by Japan 's prime minister to a controversial war shrine are disrupting bilateral relations . IN NNS NNP , NNP POS NNP NNP NNP NNP VBD PRP$ JJ NN , NNP NNP , IN NNS IN NNP POS JJ NN TO DT JJ NN NN VBP VBG JJ NNS . The shrine honors Japan 's war dead , including convicted war criminals . DT NN VBZ NNP POS NN NN , VBG VBN NN NNS . Critics , including South Korea and China , say the shrine glorifies Japan 's wartime past . NNS , VBG NNP NNP CC NNP , VBP DT NN VBZ NNP POS NN NN . But Japanese Prime Minister Junichiro Koizumi says he visits the shrine to pray for peace . CC JJ NNP NNP NNP NNP VBZ PRP VBZ DT NN TO VB IN NN . Thursday , China ruled out holding a meeting with senior leaders from Japan and South Korea during the regional summit , which officially begins Monday . NNP , NNP VBD RP VBG DT NN IN JJ NNS IN NNP CC NNP NNP IN DT JJ NN , WDT RB VBZ NNP . The three nations have met on the sidelines of the Association of Southeast Asian Nations summit for the past six years . DT CD NNS VBP VBN IN DT NNS IN DT NNP IN NNP NNP NNP NN IN DT JJ CD NNS . NATO has acknowledged responsibility for killing 12 Afghan civilians during a major U.S.-led offensive against the Taliban in southern Afghanistan . NNP VBZ VBN NN IN VBG CD JJ NNS IN DT JJ JJ NN IN DT NNP IN JJ NNP . NATO says the civilians were killed when two rockets fired at insurgents missed their intended target . NNP VBZ DT NNS VBD VBN WRB CD NNS VBN IN NNS VBD PRP$ JJ NN . Afghan President Hamid Karzai expressed sadness at the incident . JJ NNP NNP NNP VBD NN IN DT NN . He has ordered an investigation into the deaths in the Nad Ali district . PRP VBZ VBN DT NN IN DT NNS IN DT NNP NNP NN . The large-scale military operation began early Saturday , concentrated on the farming community of Marjah in southern Helmand province . DT JJ JJ NN VBD JJ NNP , VBD IN DT JJ NN IN NNP IN JJ NNP NN . Some 15,000 U.S. , British and Afghan soldiers are involved in the offensive , designed to oust the Taliban from an area that has been an insurgent stronghold . DT CD NNP , JJ CC JJ NNS VBP VBN IN DT NN , VBN TO VB DT NNP IN DT NN WDT VBZ VBN DT JJ NN . Afghan officials said Sunday that at least 27 insurgents have been killed during the fighting . JJ NNS VBD NNP IN IN JJS CD NNS VBP VBN VBN IN DT NN . NATO says one American and one British soldier were killed on the first day of the offensive . NNP VBZ CD NNP CC CD JJ NN VBD VBN IN DT JJ NN IN DT NN . During an interview Sunday on CNN , U.S. National Security Advisor James Jones described the operation as going well . IN DT NN NNP IN NNP , NNP NNP NNP NNP NNP NNP VBD DT NN IN VBG RB . U.S. Secretary of State Condoleezza Rice says the Bush administration is still considering setting up a diplomatic mission in Iran . NNP NN IN NN NNP NNP VBZ DT NNP NN VBZ RB VBG VBG RP DT JJ NN IN NNP . Rice refuted an Associated Press report that the administration had decided to hand the issue to its successor . NNP VBD DT NNP NNP NN IN DT NN VBD VBN TO VB DT NN TO PRP$ NN . She told reporters that Washington continues to look at the idea . PRP VBD NNS IN NNP VBZ TO VB IN DT NN . On a flight from India to Kazakhstan for talks on other matters , Rice called the idea interesting . IN DT NN IN NNP TO NNP IN NNS IN JJ NNS , NNP VBD DT NN JJ . She did not comment further . PRP VBD RB VB RB . The United States and Iran are at odds over the Middle East country 's nuclear program . DT NNP NNPS CC NNP VBP IN NNS IN DT NNP NNP NN POS JJ NN . Iran has ignored U.N. resolutions demanding that it stop uranium enrichment . NNP VBZ VBN NNP NNS VBG IN PRP VB NN NN . U.S. and European governments fear that Iran is trying to build a nuclear bomb . NNP CC JJ NNS VBP IN NNP VBZ VBG TO VB DT JJ NN . Tehran denies that and says it wants only to produce low-grade fuel for nuclear energy . NNP VBZ DT CC VBZ PRP VBZ RB TO VB JJ NN IN JJ NN . The same enrichment process also could be used to produce highly enriched uranium for nuclear weapons . DT JJ NN NN RB MD VB VBN TO VB RB VBN NN IN JJ NNS . Sri Lanka 's military says rebels have ambushed a navy bus in the east of the country , wounding 12 sailors and sparking a gunbattle in which two civilians also died . NNP NNP POS JJ VBZ NNS VBP VBN DT NN NN IN DT NN IN DT NN , VBG CD NNS CC VBG DT NN IN WDT CD NNS RB VBD . Officials blame Tamil rebels for Tuesday 's attack in Trincomalee . NNS VBP NNP NNS IN NNP POS NN IN NNP . They say the rebels set off a fragmentation mine as the navy bus passed by , and then opened fire on the bus with small arms . PRP VBP DT NNS VBN RP DT NN NN IN DT NN NN VBN IN , CC RB VBD NN IN DT NN IN JJ NNS . Officials say the sailors shot back , and two civilians were killed in the crossfire . NNS VBP DT NNS VBD RB , CC CD NNS VBD VBN IN DT NN . Sri Lanka 's government says at least 69 security personnel have been killed by rebels since early December . NNP NNP POS NN VBZ IN JJS CD NN NNS VBP VBN VBN IN NNS IN JJ NNP . The violence has severely strained a ceasefire signed by both sides in 2002 . DT NN VBZ RB VBN DT NN VBN IN DT NNS IN CD . Russian officials say they will send a naval task force to the Caribbean later this year for possible joint exercises with Venezuelan forces . JJ NNS VBP PRP MD VB DT JJ NN NN TO DT NNP RB DT NN IN JJ JJ NNS IN JJ NNS . A Russian Foreign Ministry spokesman , Andrei Nesterenk , says the nuclear-powered battle cruiser Peter the Great will lead the naval mission , which will also include the destroyer Admiral Chabanenko and other vessels including a fuel tanker . DT JJ NNP NNP NN , NNP NNP , VBZ DT JJ NN NN NNP DT NNP MD VB DT JJ NN , WDT MD RB VB DT NN NNP NNP CC JJ NNS VBG DT NN NN . The spokesman said anti-submarine aircraft will also be sent to Venezuela , possibly in November . DT NN VBD JJ NN MD RB VB VBN TO NNP , RB IN NNP . The spokesman said the visit was planned long before the outbreak of the Georgian conflict and is not directed against any third country . DT NN VBD DT NN VBD VBN RB IN DT NN IN DT JJ NN CC VBZ RB VBN IN DT JJ NN . Russian authorities have accused the United States of rearming Georgia while using military vessels to deliver humanitarian aid to the Caucasus country . JJ NNS VBP VBN DT NNP NNPS IN VBG NNP IN VBG JJ NNS TO VB JJ NN TO DT NNP NN . U.S. officials have denied the charge Venezuela 's leftist President Hugo Chavez , a harsh critic of the U.S. government , has forged closer ties with Moscow , including arms purchases and other economic deals . NNP NNS VBP VBN DT NN NNP POS JJ NNP NNP NNP , DT JJ NN IN DT NNP NN , VBZ VBN JJR NNS IN NNP , VBG NNS NNS CC JJ JJ NNS . The U.S. military in Iraq says a roadside bomb has killed one of its troops south of the capital , Baghdad . DT NNP NN IN NNP VBZ DT NN NN VBZ VBN CD IN PRP$ NNS RB IN DT NN , NNP . The military says the soldier was killed Thursday when his vehicle hit the bomb during a combat patrol near Iskandariyah . DT NN VBZ DT NN VBD VBN NNP WRB PRP$ NN VBD DT NN IN DT NN NN IN NNP . The United States invaded Iraq in 2003 , citing concerns about alleged weapons of mass destruction programs . DT NNP NNPS VBD NNP IN CD , VBG NNS IN JJ NNS IN NN NN NNS . No such weapons were found . DT JJ NNS VBD VBN . Iraqi officials say the country 's deputy minister of electricity , Raad al-Harith , and seven of his bodyguards have been freed hours after their abduction in Baghdad . JJ NNS VBP DT NN POS JJ NN IN NN , NNP NNP , CC CD IN PRP$ NNS VBP VBN VBN NNS IN PRP$ NN IN NNP . The fate of 12 other bodyguards kidnapped with them is not known . DT NN IN CD JJ NNS VBN IN PRP VBZ RB VBN . Gunmen wearing camouflage uniforms intercepted the minister 's convoy early Tuesday . NNS VBG NN NNS VBD DT NN POS NN RB NNP . The abduction was the second high-profile kidnapping in Baghdad in less than a week . DT NN VBD DT JJ JJ NN IN NNP IN JJR IN DT NN . On Saturday , gunmen kidnapped a Sunni Arab legislator , Tayseer al-Mashhadani , and seven of her bodyguards . IN NNP , NNS VBD DT NNP NNP NN , NNP NNP , CC CD IN PRP$ NNS . Sunni lawmakers have since boycotted parliament and demanded her release . NNP NNS VBP IN VBN NN CC VBD PRP$ NN . Separately , the U.S. military says coalition forces detained three suspected al-Qaida in Iraq terrorists , including a senior member of the group , Monday during a raid near Tikrit . RB , DT NNP NN VBZ NN NNS VBD CD JJ NNP IN NNP NNS , VBG DT JJ NN IN DT NN , NNP IN DT NN IN NNP . The U.S. military also says Iraqi soldiers rescued three Red Crescent employees from kidnappers Monday near the Al-Nida Mosque in Baghdad . DT NNP NN RB VBZ JJ NNS VBD CD NNP NNP NNS IN NNS NNP IN DT NNP NNP IN NNP . The U.S. space agency NASA is counting down toward a nighttime launch of the space shuttle Endeavouron a 16-day mission to the International Space Station . DT NNP NN NN NNP VBZ VBG RP IN DT JJ NN IN DT NN NN NNP DT JJ NN TO DT NNP NNP NNP . The shuttle is scheduled to launch early Tuesday morning with seven astronauts and some high-tech freight on board . DT NN VBZ VBN TO VB JJ NNP NN IN CD NNS CC DT JJ NN IN NN . Endeavour will deliver the first module of a Japanese space laboratory and a Canadian robot designed to handle some of the jobs performed by spacewalking astronauts . NNP MD VB DT JJ NN IN DT JJ NN NN CC DT JJ NN VBN TO VB DT IN DT NNS VBN IN VBG NNS . The Japanese lab is called Kibo , a Japanese word for hope . DT JJ NN VBZ VBN NNP , DT JJ NN IN NN . If shuttle flights go according to schedule , its final module should be delivered next year to the space station . IN NN NNS VBP VBG TO NN , PRP$ JJ NN MD VB VBN JJ NN TO DT NN NN . The Canadian robot , called Dextre , can be operated by the crew inside the station or by flight controllers on the ground . DT JJ NN , VBN NNP , MD VB VBN IN DT NN IN DT NN CC IN NN NNS IN DT NN . Astronauts intend to perform five spacewalks during their stay at the space station . NNS VBP TO VB CD NNS IN PRP$ NN IN DT NN NN . The 16-day mission will be the longest shuttle mission to the space station to date . DT JJ NN MD VB DT JJS NN NN TO DT NN NN TO NN . Top Palestinian officials have arrived in Lebanon for the first visit by Palestinian leadership in more than two decades . JJ NN NNS VBP VBN IN NNP IN DT JJ NN IN JJ NN IN JJR IN CD NNS . The head of the Palestine Liberation Organization , Mahmoud Abbas , and Prime Minister Ahmed Qureia are due to meet with Lebanese President Emile Lahoud and other top officials Wednesday . DT NN IN DT NNP NNP NNP , NNP NNP , CC NNP NNP NNP NNP VBP JJ TO VB IN JJ NNP NNP NNP CC JJ JJ NNS NNP . Monday , Mr. Abbas was in Syria for landmark talks with Syrian President Bashar al-Assad to discuss plans for future peace efforts with Israel . NNP , NNP NNP VBD IN NNP IN NN NNS IN JJ NNP NNP NNP TO VB NNS IN JJ NN NNS IN NNP . The trips by Palestinian leaders to Lebanon and Syria are aimed at improving relations that were strained under Palestinian leader Yasser Arafat , who died last month . DT NNS IN JJ NNS TO NNP CC NNP VBP VBN IN VBG NNS WDT VBD VBN IN JJ NN NNP NNP , WP VBD JJ NN . Both countries opposed Mr. Arafat 's signing of the Oslo peace accords in 1993 , saying the agreement derailed a joint Arab approach to peace with Israel . DT NNS VBD NNP NNP POS NN IN DT NNP NN NNS IN CD , VBG DT NN VBD DT JJ JJ NN TO NN IN NNP . More than 100 countries with delegates at a global conference on racism have agreed on a declaration calling for an end to intolerance and xenophobia . JJR IN CD NNS IN NNS IN DT JJ NN IN NN VBP VBN IN DT NN VBG IN DT NN TO NN CC NN . The declaration , adopted Tuesday in Geneva , reaffirms a 2001 statement issued at the first United Nations conference on racism in Durban , South Africa . DT NN , VBN NNP IN NNP , VBZ DT CD NN VBN IN DT JJ NNP NNPS NN IN NN IN NNP , NNP NNP . The decision Tuesday by consensus came a day after Iranian President Mahmoud Ahmadinejad stirred controversy with an address in which he described Israel as ' cruel , repressive and racist . ' DT NN NNP IN NN VBD DT NN IN JJ NNP NNP NNP VBD NN IN DT NN IN WDT PRP VBD NNP IN `` JJ , JJ CC JJ . `` Mr. Ahmadinejad 's address sparked a walkout by delegates from 23 European Union nations . NNP NNP POS NN VBD DT NN IN NNS IN CD NNP NNP NNS . The United States and eight other Western countries boycotted the conference over fears that it would become a forum for anti-Semitism . DT NNP NNPS CC CD JJ JJ NNS VBD DT NN IN NNS IN PRP MD VB DT NN IN NN . U.N. and Western diplomats criticized the Iranian president 's remarks as outrageous , anti-Semitic and an incitement to hatred . NNP CC NNP NNS VBD DT JJ NN POS NNS IN JJ , JJ CC DT NN IN NN . U.N. Secretary-General Ban Ki-moon said the Iranian leader used the meeting ' to accuse , divide and even incite . ' NNP NNP NNP NNP VBD DT JJ NN VBD DT NN `` TO VB , VB CC RB VB . `` Israel says it has launched fresh airstrikes against Palestinian militant targets in the Gaza Strip . NNP VBZ PRP VBZ VBN JJ NNS IN JJ JJ NNS IN DT NNP NNP . Army officials say Israeli aircraft attacked at least eight roads and bridges Sunday leading to sites used by militants to launch rockets into Israeli territory . NN NNS VBP JJ NN VBD IN JJS CD NNS CC NNS NNP VBG TO NNS VBN IN NNS TO VB NNS IN JJ NN . It was not immediately clear if there were any casualties . PRP VBD RB RB JJ IN EX VBD DT NNS . On Saturday , Palestinian officials said a Palestinian militant was killed and three others wounded in an explosion in the Gaza Strip . IN NNP , JJ NNS VBD DT JJ NN VBD VBN CC CD NNS VBD IN DT NN IN DT NNP NNP . Security officials said Israeli aircraft fired a missile at a car carrying the militant ( said to be a member of the Abu Rish Brigades ) . NN NNS VBD JJ NN VBD DT NN IN DT NN VBG DT NN LRB VBN TO VB DT NN IN DT NNP NNP NNP RRB . Israel denied the report . NNP VBD DT NN . Officials in Pakistan say suspected tribal rebels blew up three natural gas pipelines Saturday in southwestern Baluchistan province . NNS IN NNP VBP JJ JJ NNS VBD RP CD JJ NN NNS NNP IN JJ NNP NN . Gas company officials say the attacks disrupted natural gas supplies to several districts , but caused no injuries . NNP NN NNS VBP DT NNS VBD JJ NN NNS TO JJ NNS , CC VBD DT NNS . No one immediately claimed responsibility for the bombings . DT NN RB VBD NN IN DT NNS . Elsewhere , Pakistani security forces say they attacked a militant hideout near the Afghan border , killing between 15 and 20 suspected militants . RB , JJ NN NNS VBP PRP VBD DT JJ NN IN DT JJ NN , VBG IN CD CC CD JJ NNS . A military statement said the operation began before dawn in the North Waziristan tribal region , where foreign militants and their local supporters are hiding . DT JJ NN VBD DT NN VBD IN NN IN DT NNP NNP JJ NN , WRB JJ NNS CC PRP$ JJ NNS VBP VBG . Pakistan is trying to clear its rugged , semi-autonomous border lands of militants , many of whom fled there after the overthrow of the Taleban in Afghanistan . NNP VBZ VBG TO VB PRP$ JJ , JJ NN NNS IN NNS , NN IN WP VBD RB IN DT NN IN DT NNP IN NNP . The White House says President George Bush has reaffirmed strong U.S.-Pakistani relations , in a phone call he made to Pakistan 's President Pervez Musharraf . DT NNP NNP VBZ NNP NNP NNP VBZ VBN JJ JJ NNS , IN DT NN NN PRP VBD TO NNP POS NNP NNP NNP . Friday 's conversation between the two leaders took place a day after Mr. Musharraf dismissed media speculation he is ready to resign . NNP POS NN IN DT CD NNS VBD NN DT NN IN NNP NNP VBD NNS NN PRP VBZ JJ TO VB . He also said there are no differences between him and the chief of the country 's powerful military , General Ashfaq Parvez Kayani . PRP RB VBD EX VBP DT NNS IN PRP CC DT NN IN DT NN POS JJ NN , NNP NNP NNP NNP . Mr. Musharraf was referring to a report in a Pakistani newspaper , The News Daily , that speculated he was about to quit following a meeting with the general on Wednesday . NNP NNP VBD VBG TO DT NN IN DT JJ NN , DT NNP NNP , WDT VBD PRP VBD IN TO VB VBG DT NN IN DT NN IN NNP . The military said the two men discussed routine matters . DT NN VBD DT CD NNS VBD JJ NNS . The landmark trial of a Congolese war crimes suspect has been temporarily adjourned after the first witness suddenly recanted his earlier testimony . DT NN NN IN DT JJ NN NNS VBP VBZ VBN RB VBN IN DT JJ NN RB VBD PRP$ JJR NN . The young man was testifying Wednesday against Thomas Lubanga , the first suspect to go on trial at the International Criminal Court in The Hague . DT JJ NN VBD VBG NNP IN NNP NNP , DT JJ NN TO VB IN NN IN DT NNP NNP NNP IN DT NNP . The witness , whose name was not released , initially said Lubanga 's men recruited him off a street and sent him to a military training camp . DT NN , WP$ NN VBD RB VBN , RB VBD NNP POS NNS VBD PRP RP DT NN CC VBD PRP TO DT JJ NN NN . But after a break , the witness told the court his earlier account was incorrect . CC IN DT NN , DT NN VBD DT NN PRP$ JJR NN VBD JJ . Prosecutor Fatou Bensouda requested a delay to investigate what caused the man to change his testimony , and to review measures designed to protect his safety . NNP NNP NNP VBD DT NN TO VB WP VBD DT NN TO VB PRP$ NN , CC TO VB NNS VBN TO VB PRP$ NN . Lubanga , a former Congolese militia leader , is accused of recruiting and using children under the age of 15 as soldiers during hostilities in the eastern Democratic Republic of Congo . NNP , DT JJ JJ NN NN , VBZ VBN IN NN CC VBG NNS IN DT NN IN CD IN NNS IN NNS IN DT JJ JJ NNP IN NNP . A published report says U.S. military officials in Iraq knew that American forces were abusing detainees throughout that country , more than a month before mistreatment at the Abu Ghraib prison was uncovered . DT JJ NN VBZ NNP JJ NNS IN NNP VBD IN JJ NNS VBD VBG NNS IN DT NN , JJR IN DT NN IN NN IN DT NNP NNP NN VBD VBN . The Washington Post newspaper Wednesday , says a confidential report about the abuse was given to Army generals in Iraq in December 2003 , before military investigators received photographs of the abuses at Abu Ghraib . DT NNP NNP NN NNP , VBZ DT JJ NN IN DT NN VBD VBN TO NNP NNS IN NNP IN NNP CD , IN JJ NNS VBD NNS IN DT NNS IN NNP NNP . That Abu Ghraib scandal became public several months later when news media published photographs of the abuse . DT NNP NNP NN VBD JJ JJ NNS RB WRB NN NNS VBN NNS IN DT NN . The Post says the confidential report was written by retired Colonel Stuart Herrington . DT NNP VBZ DT JJ NN VBD VBN IN JJ NNP NNP NNP . He disclosed that members of a special joint military and Central Intelligence Agency task force TF-121 were abusing detainees throughout Iraq and using a secret interrogation facility to hide their activities . PRP VBD IN NNS IN DT JJ JJ NN CC NNP NNP NNP NN NN NNP VBD VBG NNS IN NNP CC VBG DT JJ NN NN TO VB PRP$ NNS . A Pentagon official told the Post the Herrington report was taken very seriously , and that its findings were passed on to U.S. Central Command . DT NNP NN VBD DT NNP DT NNP NN VBD VBN RB RB , CC IN PRP$ NNS VBD VBN IN TO NNP NNP NNP . At least 15 more Iraqi police and national guardsmen have been killed , as insurgents press their campaign to disrupt upcoming national elections . IN JJS CD JJR JJ NN CC JJ NNS VBP VBN VBN , IN NNS VBP PRP$ NN TO VB JJ JJ NNS . A suicide car-bomb explosion in Baghdad near the headquarters of Prime Minister Iyad Allawi 's political party killed two police and a civilian and wounded more than 20 people . DT NN NN NN IN NNP IN DT NN IN NNP NNP NNP NNP POS JJ NN VBD CD NNS CC DT JJ CC VBD JJR IN CD NNS . North of the capital , U.S. authorities say a car bombing near a U.S. military base in Balad killed four Iraqi guardsmen and wounded 14 . NNP IN DT NN , NNP NNS VBP DT NN VBG IN DT NNP JJ NN IN NNP VBD CD JJ NNS CC VBD CD . In Tikrit , six guardsmen were reported killed by roadside bombs , and two more Iraqi officers were killed at a checkpoint in the nearby town of Baiji . IN NNP , CD NNS VBD VBN VBN IN NN NNS , CC CD JJR JJ NNS VBD VBN IN DT NN IN DT JJ NN IN NNP . Separately , officials say a policeman was killed in Mosul when he tried to move a decapitated body that was rigged with explosives . RB , NNS VBP DT NN VBD VBN IN NNP WRB PRP VBD TO VB DT JJ NN WDT VBD VBN IN NNS . Security officials say they expected an increase in insurgent attacks before January 30 elections . NN NNS VBP PRP VBD DT NN IN JJ NNS IN NNP CD NNS . Mexico 's Institutional Revolutionary Party has selected Roberto Madrazo as its candidate for the 2006 presidential election . NNP POS NNP NNP NNP VBZ VBN NNP NNP IN PRP$ NN IN DT CD JJ NN . Mr. Madrazo easily defeated challenger Everado Moreno during Sunday 's PRI primary election . NNP NNP RB VBD NN NNP NNP IN NNP POS NNP JJ NN . Mr. Madrazo is a former Tobasco state governor who headed the PRI until recently . NNP NNP VBZ DT JJ NNP NN NN WP VBD DT NNP IN RB . His nomination was virtually assured after his main challenger Arturo Montiel dropped out last month amid allegations of corruption . PRP$ NN VBD RB VBN IN PRP$ JJ NN NNP NNP VBD RP JJ NN IN NNS IN NN . The presidential primary is the party first since it was defeated by President Vicente Fox and his National Action Party in 2000 after the PRI held power for seven decades . DT JJ NN VBZ DT NN RB IN PRP VBD VBN IN NNP NNP NNP CC PRP$ NNP NNP NNP IN CD IN DT NNP VBD NN IN CD NNS . During that time , Mexican presidents handpicked their successors in the party . IN DT NN , JJ NNS VBD PRP$ NNS IN DT NN . With conservative president Fox not allowed to run again , Mr. Madrazo will face conservative Felipe Calderon and leftist Andres Manual Lopez Obrador in next July 's election . IN JJ NN NNP RB VBD TO VB RB , NNP NNP MD VB JJ NNP NNP CC JJ NNP NNP NNP NNP IN JJ NNP POS NN . Mr. Obrador is currently leading most opinion polls . NNP NNP VBZ RB VBG RBS NN NNS . U.S. Congressional officials say the White House intends to seek $ 40 billion in emergency funds to finance the next phase of recovery from Hurricane Katrina . NNP NNP NNS VBP DT NNP NNP VBZ TO VB $ CD CD IN NN NNS TO VB DT JJ NN IN NN IN NNP NNP . President Bush has already signed a $ 10.5 billion emergency package for hurricane victims . NNP NNP VBZ RB VBN DT $ CD CD NN NN IN NN NNS . But one U.S. lawmaker , Senate Democratic leader Harry Reid , says the hurricane could cost the federal government $ 150 billion . CC CD NNP NN , NNP JJ NN NNP NNP , VBZ DT NN MD VB DT JJ NN $ CD CD . Earlier , Mr. Bush said he plans to oversee an investigation into what went wrong with the government 's response to Hurricane Katrina . RB , NNP NNP VBD PRP VBZ TO VB DT NN IN WP VBD JJ IN DT NN POS NN TO NNP NNP . His administration has come under heavy criticism over the government 's relief efforts following the powerful storm . PRP$ NN VBZ VBN IN JJ NN IN DT NN POS NN NNS VBG DT JJ NN . Federal Emergency Management Agency Chief Michael Brown has also been the focus of widespread criticism . NNP NNP NNP NNP NNP NNP NNP VBZ RB VBN DT NN IN JJ NN . Some U.S. lawmakers have called for his removal , but the White House has rejected calls for top federal emergency officials to be replaced . DT NNP NNS VBP VBN IN PRP$ NN , CC DT NNP NNP VBZ VBN NNS IN JJ JJ NN NNS TO VB VBN . Iran 's supreme leader Ayatollah Ali Khamenei said Saturday the United States and Israel are his country 's main enemies . NNP POS JJ NN NNP NNP NNP VBD NNP DT NNP NNPS CC NNP VBP PRP$ NN POS JJ NNS . In a televised speech , Khamenei said hatred toward the U.S. is growing around the world . IN DT JJ NN , NNP VBD NN IN DT NNP VBZ VBG IN DT NN . His remarks come just three days after the United States rejected an Iranian suggestion to hold higher-level talks on the security situation in Iraq . PRP$ NNS VBP RB CD NNS IN DT NNP NNPS VBD DT JJ NN TO VB JJ NNS IN DT NN NN IN NNP . Iran suggested the talks as U.S. and Iranian ambassadors to Iraq met in Baghdad to discuss Iraq 's security . NNP VBD DT NNS IN NNP CC JJ NNS TO NNP VBD IN NNP TO VB NNP POS NN . The U.S. has accused Iran of supplying weapons and training to Shi'ite militias in Iraq . DT NNP VBZ VBN NNP IN VBG NNS CC NN IN NNP NNS IN NNP . Iran denies the charge . NNP VBZ DT NN . Khamenei 's comments came as he marked the birthday of Imam Ali , the first Imam of Shia Muslims . NNP POS NNS VBD IN PRP VBD DT NN IN NNP NNP , DT JJ NN IN NNP NNPS . The United States and Iran have had little official contact for 27 years . DT NNP NNPS CC NNP VBP VBN JJ JJ NN IN CD NNS . Washington broke off diplomatic relations in April 1980 several months after Iranian activists seized the U.S. embassy in Tehran and took its staff hostage . NNP VBD RP JJ NNS IN NNP CD JJ NNS IN JJ NNS VBD DT NNP NN IN NNP CC VBD PRP$ NN NN . The Palestinian militant group Islamic Jihad says it has ordered its gunmen in the Gaza Strip to stop firing rockets at Israeli targets while Israel prepares for and completes its Gaza evacuation . DT JJ JJ NN NNP NNP VBZ PRP VBZ VBN PRP$ NNS IN DT NNP NNP TO VB VBG NNS IN JJ NNS IN NNP VBZ IN CC VBZ PRP$ NNP NN . The group issued a statement Wednesday , a day after errant rocket fire into southern Israel killed a Palestinian child and wounded eight other Palestinians . DT NN VBD DT NN NNP , DT NN IN JJ NN NN IN JJ NNP VBD DT JJ NN CC VBD CD JJ NNS . The Jihad statement denied responsibility . DT NNP NN VBD NN . Meanwhile , thousands of Jewish settlers and their right-wing supporters are protesting for a second straight day in southern Israel against the mid-August Gaza evacuation . RB , NNS IN JJ NNS CC PRP$ JJ NNS VBP VBG IN DT JJ JJ NN IN JJ NNP IN DT JJ NNP NN . The protesters , encamped near the Israeli border town of Ofakim , have vowed to march to nearby Gaza later Wednesday , despite Israeli warnings that 15,000 police deployed in the area will stop them . DT NNS , VBN IN DT JJ NN NN IN NNP , VBP VBN TO VB TO JJ NNP RB NNP , IN JJ NNS IN CD NNS VBN IN DT NN MD VB PRP . Israel closed Gaza to all Israeli non-residents last month , and police and troops have blocked earlier attempts by protesters to enter the territory . NNP VBD NNP TO DT JJ NNS JJ NN , CC NNS CC NNS VBP VBN JJR NNS IN NNS TO VB DT NN . Australia 's cricket team has scored 376-7 by stumps on the first day of its second test match against India in Sydney . NNP POS NN NN VBZ VBN CD IN NNS IN DT JJ NN IN PRP$ JJ NN NN IN NNP IN NNP . After winning the toss and electing to bat first , Australia lost four wickets in rapid succession . IN VBG DT NN CC VBG TO VB RB , NNP VBD CD NNS IN JJ NN . However , Andrew Symonds was able to lift his team out of trouble with an unbeaten 137 runs , his second career test century . RB , NNP NNP VBD JJ TO VB PRP$ NN IN IN NN IN DT JJ CD NNS , PRP$ JJ NN NN NN . Indian bowler R. P. Singh was Apr-28 in 21 overs . JJ NN NNP NNP NNP VBD CD IN CD NNS . Harbhajan Singh finished Feb-88 . NNP NNP VBD CD . Symonds resurrected the home team 's innings with partnerships of 173 with Brad Hogg and 69 with Brett Lee . NNP VBD DT NN NN POS NNS IN NNS IN CD IN NNP NNP CC CD IN NNP NNP . Hogg was caught out for 79 runs while Lee was not out for 31 . NNP VBD VBN RP IN CD NNS IN NNP VBD RB RP IN CD . Australia won the first test of the series by 337 runs in Melbourne . NNP VBD DT JJ NN IN DT NN IN CD NNS IN NNP . The Aussies are hoping to win their 16th test match in a row . DT NNS VBP VBG TO VB PRP$ JJ NN NN IN DT NN . The third test starts in Perth on January 16th . DT JJ NN VBZ IN NNP IN NNP CD . Authorities in Indian Kashmir say at least 15 people died when a bus veered off a steep mountain road and plunged into a gorge . NNS IN JJ NNP VBP IN JJS CD NNS VBD WRB DT NN VBD RP DT JJ NN NN CC VBD IN DT NN . Reports from the area Wednesday say at least 15 other people on the bus were injured but survived the accident . NNS IN DT NN NNP VBP IN JJS CD JJ NNS IN DT NN VBD VBN CC VBD DT NN . Survivors ' accounts indicate the driver lost control of the bus on a sharp curve , and the vehicle plunged 250 meters down a mountainside . NNS POS NNS VBP DT NN VBD NN IN DT NN IN DT JJ NN , CC DT NN VBD CD NNS IN DT NN . Villagers and police used ropes to reach the wreck . NNS CC NNS VBD NNS TO VB DT NN . The bus had been traveling through the Tajouri district , nearly 200 kilometers northwest of Jammu city , Indian Kashmir 's winter capital . DT NN VBD VBN VBG IN DT NNP NN , RB CD NNS JJS IN NNP NN , NNP NNP POS NN NN . The United States is formally protesting China 's decision to deny a visa to U.S. Olympic gold medalist and Darfur anti-violence campaigner Joey Cheek . DT NNP NNPS VBZ RB VBG NNP POS NN TO VB DT NN TO NNP NNP NN NN CC NNP JJ NN NNP NNP . White House spokeswoman Dana Perino said Wednesday the U.S. is disturbed to learn that China has refused his visa . NNP NNP NN NNP NNP VBD NNP DT NNP VBZ VBN TO VB DT NNP VBZ VBN PRP$ NN . Cheek , a speedskater who competed in the 2006 Winter Olympics , had planned to go to Beijing to support Olympic athletes who are members of Team Darfur . NNP , DT NN WP VBD IN DT CD NNP NNPS , VBD VBN TO VB TO NNP TO VB NNP NNS WP VBP NNS IN NNP NNP . The group aims to call attention to the humanitarian crisis in Sudan 's Darfur region . DT NN VBZ TO VB NN TO DT JJ NN IN NNP POS NNP NN . China is a major investor in Sudan and has come under increasing pressure to help end the violence in Darfur . NNP VBZ DT JJ NN IN NNP CC VBZ VBN IN VBG NN TO VB VB DT NN IN NNP . International experts say more than 2,00,000 people have died and some 2.5 million have been displaced from their homes since Darfur rebel groups rose up against the Sudanese government in 2003 . JJ NNS VBP JJR IN CD NNS VBP VBN CC DT CD CD VBP VBN VBN IN PRP$ NNS IN NNP NN NNS VBD RP IN DT JJ NN IN CD . Sudan says Western governments and media have exaggerated the scale of the conflict . NNP VBZ JJ NNS CC NNS VBP VBN DT NN IN DT NN . Taliban militants have shot and killed a man for teaching English in eastern Afghanistan , sparking a gunbattle that left two militants and two policemen dead . NNP NNS VBP VBN CC VBN DT NN IN VBG NNP IN JJ NNP , VBG DT NN WDT VBD CD NNS CC CD NNS JJ . Provincial officials Thursday said the man was teaching English courses at a school in the eastern Paktia province when he was killed Wednesday . JJ NNS NNP VBD DT NN VBD VBG NNP NNS IN DT NN IN DT JJ NNP NN WRB PRP VBD VBN NNP . Police arrived on the scene and clashed with militants , resulting in casualties on both sides . NNS VBD IN DT NN CC VBN IN NNS , VBG IN NNS IN DT NNS . Taliban militants have destroyed a number of schools in Afghanistan and repeatedly target those seen as sympathetic to foreign governments . NNP NNS VBP VBN DT NN IN NNS IN NNP CC RB VB DT VBN IN JJ TO JJ NNS . Separately , U.S-led coalition troops Thursday said they killed several militants in an operation on Wednesday in the southern Helmand province . RB , JJ NN NNS NNP VBD PRP VBD JJ NNS IN DT NN IN NNP IN DT JJ NNP NN . This year has been the deadliest in Afghanistan since a U.S.-led invasion ousted the Taliban government in 2001 . DT NN VBZ VBN DT JJS IN NNP IN DT JJ NN VBD DT NNP NN IN CD . Taliban militants have established strongholds in the south and east , attacking U.S. and NATO troops and Afghan soldiers in ambushes and suicide bombings . NNP NNS VBP VBN NNS IN DT NN CC NN , VBG NNP CC NNP NNS CC JJ NNS IN NNS CC NN NNS . Polish prime minister-designate Donald Tusk says he wants to pull Polish troops out of Iraq next year . JJ JJ JJ NNP NNP VBZ PRP VBZ TO VB JJ NNS IN IN NNP JJ NN . In an interview Wednesday with a daily newspaper , Polska , Tusk is quoted as saying his new government would want to finish the mission of the 900 troops still in Iraq . IN DT NN NNP IN DT JJ NN , NNP , NNP VBZ VBN IN VBG PRP$ JJ NN MD VB TO VB DT NN IN DT CD NNS RB IN NNP . Tusk also said he wants to continue good relations with Washington , but needs more information before deciding whether to back U.S. plans to build part of a European missile defense system in Poland . NNP RB VBD PRP VBZ TO VB JJ NNS IN NNP , CC VBZ JJR NN IN VBG IN TO VB NNP NNS TO VB NN IN DT JJ NN NN NN IN NNP . He says he wants to know if housing 10 U.S. interceptor missiles in Poland increases or diminishes security . PRP VBZ PRP VBZ TO VB IN NN CD NNP NN NNS IN NNP VBZ CC VBZ NN . In Washington , a White House spokeswoman , Dana Perino , expressed appreciation for the cooperation of countries working with the U.S. led coalition in Iraq . IN NNP , DT NNP NNP NN , NNP NNP , VBD NN IN DT NN IN NNS VBG IN DT NNP VBD NN IN NNP . She said the United States understands the difficulties in continuing the troop presence , but stressed their importance in guaranteeing security . PRP VBD DT NNP NNPS VBZ DT NNS IN VBG DT NN NN , CC VBD PRP$ NN IN VBG NN . Signs are mounting that the dominant Fatah faction of Palestinian President Mahmoud Abbas may consider delaying key parliamentary elections scheduled for July . NNS VBP VBG IN DT JJ NNP NN IN JJ NNP NNP NNP MD VB VBG JJ JJ NNS VBN IN NNP . The issue has emerged one month after the militant Palestinian Islamic group Hamas announced that it would end a nearly decade-long boycott and participate in the July elections . DT NN VBZ VBN CD NN IN DT JJ JJ JJ NN NNP VBD IN PRP MD VB DT RB JJ NN CC VB IN DT NNP NNS . Palestinian lawmakers say the election may be delayed because a modified election law may not be adopted in time . JJ NNS VBP DT NN MD VB VBN IN DT VBN NN NN MD RB VB VBN IN NN . But other officials say parliamentary leaders want to delay the vote for fear Hamas , which has gained considerable public support , would undercut Fatah 's power in parliament . CC JJ NNS VBP JJ NNS VBP TO VB DT NN IN NN NNP , WDT VBZ VBN JJ JJ NN , MD VB NNP POS NN IN NN . Hamas emerged as a key player in Palestinian politics after winning an overwhelming victory in its Gaza Strip strongholds in January 's municipal elections . NNP VBD IN DT JJ NN IN JJ NNS IN VBG DT JJ NN IN PRP$ NNP NNP NNS IN NNP POS JJ NNS . Junoon means ' obsession ' in the Urdu language . NNP VBZ `` NN `` IN DT NNP NN . It is the name of one of Pakistan 's and perhaps South Asia 's most popular rock bands . PRP VBZ DT NN IN CD IN NNP POS CC RB NNP NNP POS RBS JJ NN NNS . The group is based in Karachi , and was formed in 1990 by guitarist , songwriter and medical doctor Salman Ahmad . DT NN VBZ VBN IN NNP , CC VBD VBN IN CD IN NN , NN CC JJ NN NNP NNP . Sometimes when Junoon performs in the United States , an American-based singer of Indian origin , known as Falu , opens for the group . RB WRB NNP VBZ IN DT NNP NNPS , DT JJ NN IN JJ NN , VBN IN NNP , VBZ IN DT NN . VOA 's Ravi Khanna brings us a glimpse of Falu 's life and music , based on an interview by VOA 's Ethnomusicologist , Brian Q. Silver . NNP POS NNP NNP VBZ PRP DT NN IN NNP POS NN CC NN , VBN IN DT NN IN NNP POS NNP , NNP NNP NNP . An international donor 's conference has opened in Beijing , where world health officials hope to raise $ 1.5 billion to help stop the spread of bird flu . DT JJ NN POS NN VBZ VBN IN NNP , WRB NN NN NNS VBP TO VB $ CD CD TO VB VB DT NN IN NN NN . Officials from about 90 countries are attending the two-day meeting sponsored by The World Bank , European Union , and China . NNS IN IN CD NNS VBP VBG DT JJ NN VBN IN DT NNP NNP , NNP NNP , CC NNP . United Nations bird flu official , Dr. David Nabarro , says the $ 1.5 billion is to help poor countries set up prevention programs . NNP NNP NN NN NN , NNP NNP NNP , VBZ DT $ CD CD VBZ TO VB JJ NNS VBD RP NN NNS . He says much more would be needed if bird flu becomes a global pandemic . PRP VBZ RB JJR MD VB VBN IN NN NN VBZ DT JJ NN . Health experts fear the deadly H5N1 strain could mutate into one that is easily spread among humans and create a worldwide catastrophe . NNP NNS VBP DT JJ NNP NN MD VB IN CD WDT VBZ RB VBN IN NNS CC VB DT JJ NN . Bird flu has killed more than 80 people in southeast Asia , China , and Turkey since 2003 . NN NN VBZ VBN JJR IN CD NNS IN JJ NNP , NNP , CC NNP IN CD . Russian President Dmitri Medvedev has arrived the Kazakhstan capital , Astana , on his first trip abroad since taking office earlier this month . JJ NNP NNP NNP VBZ VBN DT NNP NN , NNP , IN PRP$ JJ NN RB IN VBG NN RBR DT NN . Mr. Medvedev will also travel to China , arriving in Beijing on Saturday . NNP NNP MD RB VB TO NNP , VBG IN NNP IN NNP . Traditionally new Russian leaders visit European countries on their first official foreign trips . RB JJ JJ NNS VBP JJ NNS IN PRP$ JJ JJ JJ NNS . However , the visit to Asia highlights the importance that Russia places on energy resources in the region . RB , DT NN IN NNP VBZ DT NN IN NNP VBZ IN NN NNS IN DT NN . Mr. Medvedev is expected to discuss energy and space cooperation . NNP NNP VBZ VBN TO VB NN CC NN NN . Since the collapse of the Soviet Union , Moscow has tried to regain influence over the former Central Asian republics . IN DT NN IN DT NNP NNP , NNP VBZ VBN TO VB NN IN DT JJ NNP NNP NNS . Russia has competed with the West and China over access to oil and gas reserves in Central Asia . NNP VBZ VBN IN DT NNP CC NNP IN NN TO NN CC NN NNS IN NNP NNP . Mr. Medvedev is due to visit Germany in early June on his first official trip to a European country . NNP NNP VBZ JJ TO VB NNP IN JJ NNP IN PRP$ JJ JJ NN TO DT JJ NN . The African Union says gunmen in Sudan 's troubled Darfur region have killed another A.U. peacekeeper . DT NNP NNP VBZ NNS IN NNP POS JJ NNP NN VBP VBN DT NNP NN . An A.U. spokesman says the unidentified attackers shot the peacekeeper and stole his vehicle late Saturday near the entrance of an A.U. compound in Al-Fasher , the capital of North Darfur state . DT NNP NN VBZ DT JJ NNS VBD DT NN CC VB PRP$ NN JJ NNP IN DT NN IN DT NNP NN IN NNP , DT NN IN NNP NNP NN . The nationality of the dead peacekeeper was not disclosed . DT NN IN DT JJ NN VBD RB VBN . Seven A.U. troops have been killed in Darfur so far this month . CD NNP NNS VBP VBN VBN IN NNP RB RB DT NN . U.S. Deputy Secretary of State John Negroponte had visited the A.U. compound in Al-Fasher Saturday . NNP NNP NNP IN NNP NNP NNP VBD VBN DT NNP NN IN NNP NNP . He is in Sudan to try to persuade the government to permit the deployment of U.N. troops in Darfur . PRP VBZ IN NNP TO VB TO VB DT NN TO VB DT NN IN NNP NNS IN NNP . The 7,000 A.U. peacekeepers currently in Darfur are poorly-equipped and have failed to ease the violence obstructing humanitarian work in the region . DT CD NNP NNS RB IN NNP VBP JJ CC VBP VBN TO VB DT NN VBG JJ NN IN DT NN . A Rwandan peacekeeper with the A.U. force was shot dead last Tuesday , while gunmen killed five Senegalese peacekeepers on April 1 . DT JJ NN IN DT NNP NN VBD VBN JJ JJ NNP , IN NNS VBD CD JJ NNS IN NNP CD . The moderate faction of Indian Kashmir 's main political separatist alliance says it will urge Pakistani President Pervez Musharraf to include them in talks with India on the future of the divided region . DT JJ NN IN JJ NNP POS JJ JJ NN NN VBZ PRP MD VB JJ NNP NNP NNP TO VB PRP IN NNS IN NNP IN DT NN IN DT VBN NN . The chairman of the alliance , Mirwaiz Umar Farooq , says he intends to tell General Musharraf that the Kashmir dispute can not be solved without the inclusion of Kashmiris . DT NN IN DT NN , NNP NNP NNP , VBZ PRP VBZ TO VB NNP NNP IN DT NNP NN MD RB VB VBN IN DT NN IN NNP . The Pakistani leader is due to meet the separatists in New Delhi during a visit Sunday to watch an India-Pakistan cricket match . DT JJ NN VBZ JJ TO VB DT NNS IN NNP NNP IN DT NN NNP TO VB DT JJ NN NN . The two South Asian nuclear rivals have twice gone to war over Kashmir since they gained independence from Britain . DT CD NNP NNP JJ NNS VBP RB VBN TO NN IN NNP IN PRP VBD NN IN NNP . But their relations have improved since the launch of a peace process last year . CC PRP$ NNS VBP VBN IN DT NN IN DT NN NN JJ NN . The process received a boost last week when the two sides re-opened a historic bus route across the military line-of-control for the first time in nearly 60 years . DT NN VBD DT NN JJ NN WRB DT CD NNS VBD DT JJ NN NN IN DT JJ NN IN DT JJ NN IN RB CD NNS . Turkish Prime Minister Recep Tayyip Erdogan says the recent outbreak of bird flu in Turkey is under control , as health officials confirmed the country 's 15th human case of the H5N1 virus . JJ JJ NN NNP NNP NNP VBZ DT JJ NN IN NN NN IN NNP VBZ IN NN , IN NN NNS VBD DT NN POS JJ JJ NN IN DT NNP NN . Mr. Erdogan said agricultural officials continue to closely monitor the situation . NNP NNP VBD JJ NNS VBP TO RB VB DT NN . Agricultural workers say they have slaughtered some 3,00,000 birds and have stepped up an information campaign to inform people about the dangers posed by infected birds . JJ NNS VBP PRP VBP VBN DT CD NNS CC VBP VBN RP DT NN NN TO VB NNS IN DT NNS VBN IN JJ NNS . Some 70 people in Turkey are hospitalized with symptoms of avian influenza , but the Associated Press quotes health officials as saying most of them have tested negative for bird flu . DT CD NNS IN NNP VBP VBN IN NNS IN JJ NN , CC DT NNP NNP VBZ NN NNS IN VBG JJS IN PRP VBP VBN JJ IN NN NN . In Ukraine , health officials Tuesday confirmed new cases of H5N1 in birds at three poultry farms on the Crimean peninsula . IN NNP , NN NNS NNP VBD JJ NNS IN NNP IN NNS IN CD JJ NNS IN DT JJ NN . Bird flu has killed more than 70 people in Asia since 2003 , and at least two people in Turkey . NN NN VBZ VBN JJR IN CD NNS IN NNP IN CD , CC IN JJS CD NNS IN NNP . Democratic Party officials say U.S. Senator Christopher Dodd of the northeastern state of Connecticut will seek the 2008 Democratic presidential nomination . NNP NNP NNS VBP NNP NNP NNP NNP IN DT JJ NN IN NNP MD VB DT CD JJ JJ NN . The 62-year-old veteran lawmaker is expected to announce his candidacy Thursday on a nationally syndicated radio show . DT JJ NN NN VBZ VBN TO VB PRP$ NN NNP IN DT RB VBN NN NN . The son of a former U.S. senator , Dodd was elected to the House of Representatives in 1974 , and served three terms before his election to the Senate in 1980 . DT NN IN DT JJ NNP NN , NNP VBD VBN TO DT NNP IN NNPS IN CD , CC VBD CD NNS IN PRP$ NN TO DT NNP IN CD . He voted to authorize military action against Iraq in 2002 , but has since become a vocal critic of President Bush 's handling of the war . PRP VBD TO VB JJ NN IN NNP IN CD , CC VBZ IN VBN DT JJ NN IN NNP NNP POS NN IN DT NN . Dodd joins a growing field of official candidates , including former Senator John Edwards of North Carolina , Iowa Governor Tom Vilsack , and Representative Dennis Kucinich of Ohio . NNP VBZ DT VBG NN IN JJ NNS , VBG JJ NNP NNP NNP IN NNP NNP , NNP NNP NNP NNP , CC NNP NNP NNP IN NNP . Two other sitting senators , New York 's Hillary Rodham Clinton and Barack Obama of Illinois , are also considering seeking the nomination . CD JJ VBG NNS , NNP NNP POS NNP NNP NNP CC NNP NNP IN NNP , VBP RB VBG VBG DT NN . The U.S. military has released more than 400 male Iraqi prisoners , after an Iraqi-led review board found no reason to continue to keep them in custody . DT NNP NN VBZ VBN JJR IN CD JJ JJ NNS , IN DT JJ NN NN VBD DT NN TO VB TO VB PRP IN NN . The releases were announced Saturday . DT NNS VBD VBN NNP . A U.S. statement said that since August 2004 the cases of about 28,000 detainees have been examined and about half of them have been released . DT NNP NN VBD IN IN NNP CD DT NNS IN IN CD NNS VBP VBN VBN CC IN NN IN PRP VBP VBN VBN . Meanwhile , authorities say a U.S. soldier was killed Saturday by a roadside bomb in Baghdad . RB , NNS VBP DT NNP NN VBD VBN NNP IN DT NN NN IN NNP . Separately , at least three Iraq police were killed in another roadside explosion in the city . RB , IN JJS CD NNP NNS VBD VBN IN DT NN NN IN DT NN . Also , police say the bodies of two blindfolded and bound men were found in Baghdad - apparent victims of reprisal attacks by Shi'ite and Sunni extremists . RB , NNS VBP DT NNS IN CD VBN CC VBN NNS VBD VBN IN NNP : JJ NNS IN JJ NNS IN NNP CC NNP NNS . The Iraqi Interior Ministry is probing allegations that Shi'ite death squads are operating within Iraqi police ranks . DT JJ NNP NNP VBZ VBG NNS WDT NNP NN NNS VBP VBG IN JJ NN NNS . Russia 's upper house of parliament has approved President Vladimir Putin 's controversial plan to end direct elections to choose regional governors , and allow the Kremlin to appoint them instead . NNP POS JJ NN IN NN VBZ VBN NNP NNP NNP POS JJ NN TO VB JJ NNS TO VB JJ NNS , CC VB DT NNP TO VB PRP RB . The Federation Council adopted the measure Wednesday by 145 votes to one , with two abstentions . DT NNP NNP VBD DT NN NNP IN CD NNS TO CD , IN CD NNS . It now goes to the Kremlin to become law with Mr. Putin 's signature . PRP RB VBZ TO DT NNP TO VB NN IN NNP NNP POS NN . The president says such changes are necessary to block terrorists from trying to influence Russia 's local elections . DT NN VBZ JJ NNS VBP JJ TO VB NNS IN VBG TO VB NNP POS JJ NNS . But critics across the political spectrum say the plan is a step back from democracy . CC NNS IN DT JJ NN VBP DT NN VBZ DT NN RB IN NN . Under the new law , the Kremlin would select gubernatorial candidates , whose appointments would require confirmation by regional lawmakers . IN DT JJ NN , DT NNP MD VB JJ NNS , WP$ NNS MD VB NN IN JJ NNS . If a provincial parliament rejects a governor chosen by Moscow , the new law says Mr. Putin has the authority to dissolve that legislature . IN DT JJ NN VBZ DT NN VBN IN NNP , DT JJ NN VBZ NNP NNP VBZ DT NN TO VB DT NN . French President Jacques Chirac is preparing for a high-profile television appearance to try to boost uncertain prospects for French ratification of the European Union constitution . JJ NNP NNP NNP VBZ VBG IN DT JJ NN NN TO VB TO VB JJ NNS IN JJ NN IN DT NNP NNP NN . Mr. Chirac will open his public campaign for the constitution this Thursday evening in a televised debate with an audience of 80 young voters . NNP NNP MD VB PRP$ JJ NN IN DT NN DT NNP NN IN DT JJ NN IN DT NN IN CD JJ NNS . His appearance follows a string of opinion polls that have shown French voters planning to reject the constitution in a referendum on May 29 . PRP$ NN VBZ DT NN IN NN NNS WDT VBP VBN JJ NNS VBG TO VB DT NN IN DT NN IN NNP CD . Pollsters say opponents plan to vote against the constitution to highlight their fear of Turkish EU membership or to register their discontent with Mr. Chirac 's socio-economic policies . NNS VBP NNS VBP TO VB IN DT NN TO VB PRP$ NN IN JJ NNP NN CC TO VB PRP$ NN IN NNP NNP POS JJ NNS . Some critics say the constitution could cost French jobs and destroy the country 's social welfare system . DT NNS VBP DT NN MD VB JJ NNS CC VB DT NN POS JJ NN NN . The constitution , aimed at streamlining EU decision-making , requires ratification by all of the union 's 25 member states to take effect . DT NN , VBN IN VBG NNP NN , VBZ NN IN DT IN DT NN POS CD NN NNS TO VB NN . World oil prices soared to yet another record high in Thursday 's trading , increasing the threat of inflation and dimming prospects for global economic growth . NNP NN NNS VBD TO RB DT NN NN IN NNP POS NN , VBG DT NN IN NN CC VBG NNS IN JJ JJ NN . The price of crude oil for future delivery went as high as $ 145.85 a barrel in New York trading . DT NN IN JJ NN IN JJ NN VBD RB JJ IN $ CD DT NN IN NNP NNP NN . Analysts blamed the price hikes on a weak U.S. dollar , concerns about conflict in the Middle East , and lower crude oil inventories . NNS VBD DT NN NNS IN DT JJ NNP NN , NNS IN NN IN DT NNP NNP , CC JJR JJ NN NNS . Raising the price of oil boosts the cost of making many goods and increases the cost of delivering everything , so soaring energy costs are increasing the threat of inflation . VBG DT NN IN NN VBZ DT NN IN VBG JJ NNS CC VBZ DT NN IN VBG DT , RB VBG NN NNS VBP VBG DT NN IN NN . Thursday , the European Central Bank tried to fight inflation by raising interest rates a quarter of a point to 4.25 percent . NNP , DT NNP NNP NNP VBD TO VB NN IN VBG NN NNS DT NN IN DT NN TO CD NN . Increasing interest rates slows the economy by raising the cost of borrowing money to buy equipment to expand businesses or purchase homes . VBG NN NNS VBZ DT NN IN VBG DT NN IN VBG NN TO VB NN TO VB NNS CC NN NNS . Zimbabwe is preparing to nullify thousands of legal challenges by white farmers who had their land seized under the country 's controversial land reform program . NNP VBZ VBG TO VB NNS IN JJ NNS IN JJ NNS WP VBD PRP$ NN VBN IN DT NN POS JJ NN NN NN . A report in Zimbabwe 's Sunday Mail newspaper says authorities will file court papers Monday to officially end the litigation under a new constitutional amendment that nationalizes all seized farms and bans any legal challenges . DT NN IN NNP POS NNP NNP NN VBZ NNS MD VB NN NNS NNP TO RB VB DT NN IN DT JJ JJ NN WDT VBZ DT VBN NNS CC VBZ DT JJ NNS . An official in the attorney general 's office says 4,000 cases pending before the courts will be nullified . DT NN IN DT NN NN POS NN VBZ CD NNS VBG IN DT NNS MD VB VBN . President Robert Mugabe began the land seizures in 2000 and transferred ownership to landless blacks . NNP NNP NNP VBD DT NN NNS IN CD CC VBD NN TO JJ NNS . Mr. Mugabe says the land seizures were necessary to correct ownership imbalances created under British colonial rule . NNP NNP VBZ DT NN NNS VBD JJ TO VB NN NNS VBN IN JJ NN NN . But critics say the program has been a failure and has led to the collapse of Zimbabwe 's economy . CC NNS VBP DT NN VBZ VBN DT NN CC VBZ VBN TO DT NN IN NNP POS NN . A court in Venezuela has ordered four people detained for their alleged involvement in the assassination of a leading government prosecutor . DT NN IN NNP VBZ VBN CD NNS VBN IN PRP$ JJ NN IN DT NN IN DT JJ NN NN . Those ordered held by the court Friday include newspaper editor Patricia Poleo and businessman Nelson Mezerhane . DT VBN VBN IN DT NN NNP VBP NN NN NNP NNP CC NN NNP NNP . They are accused of plotting the assassination of Danilo Anderson , who was leading the prosecution of hundreds of people accused of backing a 2002 coup against President Hugo Chavez . PRP VBP VBN IN VBG DT NN IN NNP NNP , WP VBD VBG DT NN IN NNS IN NNS VBN IN VBG DT CD NN IN NNP NNP NNP . Mr. Anderson was killed by a car bomb last November . NNP NNP VBD VBN IN DT NN NN JJ NNP . Ms. Poleo and Mr. Mezerhane are accused of plotting the assassination with two others who have been detained - retired general Eugenio Anez Nunez and Salvador Romani , a Cuban dissident . NNP NNP CC NNP NNP VBP VBN IN VBG DT NN IN CD NNS WP VBP VBN VBN : JJ JJ NNP NNP NNP CC NNP NNP , DT JJ NN . Since Mr. Anderson 's killing last year , Venezuelan police have arrested at least two other suspects , while two others were killed in a gunfight with police . IN NNP NNP POS NN JJ NN , JJ NNS VBP VBN IN JJS CD JJ NNS , IN CD NNS VBD VBN IN DT NN IN NNS . Pakistani Prime Minister Yousuf Raza Gilani has arrived in the country 's southern port city of Karachi to try to quell unrest that has killed at least 85 people . JJ NNP NNP NNP NNP NNP VBZ VBN IN DT NN POS JJ JJ NN IN NNP TO VB TO VB NN WDT VBZ VBN IN JJS CD NNS . Monday 's assassination of provincial lawmaker Raza Haider triggered four days of riots , with protesters opening fire and burning vehicles and shops . NNP POS NN IN JJ NN NNP NNP VBD CD NNS IN NNS , IN NNS VBG NN CC NN NNS CC NNS . Haider was a member of the Muttahida Quami Movement or MQM , which is part of the ruling political coalition in both Sindh province and the federal government . NNP VBD DT NN IN DT NNP NNP NNP CC NNP , WDT VBZ NN IN DT VBG JJ NN IN DT NNP NN CC DT JJ NN . The party , which largely represents the Urdu-speaking community , and the Awami National Party or ANP , which represents ethnic Pashtuns , have blamed each other for the violence . DT NN , WDT RB VBZ DT JJ NN , CC DT NNP NNP NNP CC NNP , WDT VBZ JJ NNS , VBP VBN DT NN IN DT NN . Pakistan 's Interior Minister Rehman Malik has said Taliban-linked militants looking to fuel political tensions were behind Haider 's assassination . NNP POS NNP NNP NNP NNP VBZ VBN JJ NNS VBG TO VB JJ NNS VBD IN NNP POS NN . Malik met with representatives from both the MQM and ANP on Friday . NNP VBD IN NNS IN DT DT NNP CC NNP IN NNP . Political leaders were due to meet with Prime Minister Gilani later in the day . JJ NNS VBD JJ TO VB IN NNP NNP NNP RB IN DT NN . Pakistan and India have ushered in the new year by exchanging lists of their civilian nuclear facilities . NNP CC NNP VBP VBN IN DT JJ NN IN VBG NNS IN PRP$ JJ JJ NNS . Pakistan 's Foreign Ministry Tuesday said the two countries participated in the annual exchange , as part of a 1998 agreement prohibiting attacks on each other 's nuclear installations . NNP POS NNP NNP NNP VBD DT CD NNS VBD IN DT JJ NN , IN NN IN DT CD NN VBG NNS IN DT NN POS JJ NNS . The lists of nuclear facilities were handed over at India and Pakistan 's respective foreign ministries in New Delhi and Islamabad . DT NNS IN JJ NNS VBD VBN RP IN NNP CC NNP POS JJ JJ NNS IN NNP NNP CC NNP . India and Pakistan have fought three wars since partition in 1947 . NNP CC NNP VBP VBN CD NNS IN NN IN CD . But relations have improved since the two countries launched a slow moving peace process in 2004 to resolve their disputes , including the conflict over Kashmir . CC NNS VBP VBN IN DT CD NNS VBD DT JJ NN NN NN IN CD TO VB PRP$ NNS , VBG DT NN IN NNP . India and Pakistan both conducted nuclear weapons tests in 1998 . NNP CC NNP DT VBN JJ NNS NNS IN CD . The White House says President Bush will make an evening address to the nation on Monday , the fifth anniversary of the September 11 attacks on the United States . DT NNP NNP VBZ NNP NNP MD VB DT NN NN TO DT NN IN NNP , DT JJ NN IN DT NNP CD NNS IN DT NNP NNPS . It will be the latest in a series of speeches about terrorism that the President has made in the past two weeks . PRP MD VB DT JJS IN DT NN IN NNS IN NN IN DT NNP VBZ VBN IN DT JJ CD NNS . He has been highlighting what he calls the nation 's progress in the war on terrorism , ahead of key midterm elections in November . PRP VBZ VBN VBG WP PRP VBZ DT NN POS NN IN DT NN IN NN , RB IN JJ NN NNS IN NNP . A presidential spokesman said Friday that Mr. Bush 's speech will be non-political and will focus on what the September 11 attacks have meant to the nation . DT JJ NN VBD NNP IN NNP NNP POS NN MD VB JJ CC MD VB IN WP DT NNP CD NNS VBP VBN TO DT NN . On Sunday and Monday the president is scheduled to visit the sites of the attacks in New York City , Shanksville , Pennsylvania and the Pentagon in Washington . IN NNP CC NNP DT NN VBZ VBN TO VB DT NNS IN DT NNS IN NNP NNP NNP , NNP , NNP CC DT NNP IN NNP . Democrats accuse Mr. Bush of emphasizing anti-terror efforts lately to distract from the increasingly unpopular war in Iraq . NNPS VBP NNP NNP IN VBG JJ NNS RB TO VB IN DT RB JJ NN IN NNP . The foreign relations committee of Pakistan 's upper house of parliament has condemned what it called the Israeli ' aggression ' on Lebanon and urged the international community to pressure the Jewish state to halt the strikes . DT JJ NNS NN IN NNP POS JJ NN IN NN VBZ VBN WP PRP VBD DT JJ `` NN `` IN NNP CC VBD DT JJ NN TO VB DT JJ NN TO VB DT NNS . The demand came through a unanimously adopted resolution at a special session of the Senate committee held in Islamabad . DT NN VBD IN DT RB VBN NN IN DT JJ NN IN DT NNP NN VBN IN NNP . Pakistan has no diplomatic relations with Israel . NNP VBZ DT JJ NNS IN NNP . Some 800 Pakistani students staged demonstrations in the southern port city of Karachi to protest against the Israeli action . DT CD JJ NNS VBD NNS IN DT JJ JJ NN IN NNP TO VB IN DT JJ NN . In neighboring Bangladesh , Foreign Minister M. Morshed Khan urged Western countries ' to restrain Israel ' from such attacks and said many Western countries use a double standard in dealing with the Middle East . IN VBG NNP , NNP NNP NNP NNP NNP VBD JJ NNS `` TO VB NNP `` IN JJ NNS CC VBD JJ JJ NNS VBP DT JJ NN IN VBG IN DT NNP NNP . Japanese Prime Minister Junichiro Koizumi launched his political campaign Saturday for the snap general election he has called on September 11 . JJ NNP NNP NNP NNP VBD PRP$ JJ NN NNP IN DT NN JJ NN PRP VBZ VBN IN NNP CD . The prime minister says the focal point of the election will be his proposal for privatization of Japan 's national postal system , a sprawling business empire that includes savings institutions with three trillion dollars in assets . DT JJ NN VBZ DT JJ NN IN DT NN MD VB PRP$ NN IN NN IN NNP POS JJ JJ NN , DT VBG NN NN WDT VBZ NNS NNS IN CD CD NNS IN NNS . Mr. Koizumi dissolved Parliament and called a general election about two weeks ago after Japan 's upper house voted down postal reforms - with members of the ruling Liberal Democratic Party joining the majority . NNP NNP VBD NNP CC VBD DT JJ NN IN CD NNS IN IN NNP POS JJ NN VBD RP JJ NNS IN IN NNS IN DT NN NNP NNP NNP VBG DT NN . LDP leaders have withdrawn support for lawmakers who voted ' no ' on August 8 , and say they will not be allowed to run for re-election . NNP NNS VBP VBN NN IN NNS WP VBD `` DT `` IN NNP CD , CC VBP PRP MD RB VB VBN TO VB IN NN . A Yomiuri newspaper poll this week shows support for Mr. Koizumi has risen to 53.2 percent , up 5.5 percentage points since he dissolved Parliament . DT NNP NN NN DT NN VBZ NN IN NNP NNP VBZ VBN TO CD NN , IN CD NN NNS IN PRP VBD NNP . Presidents from most South American countries have gathered in Brazil for a meeting of the Mercosur trading group . NNS IN JJS JJ JJ NNS VBP VBN IN NNP IN DT NN IN DT NNP NN NN . The two-day meeting in Rio de Janeiro began Thursday . DT JJ NN IN NNP NNP NNP VBD NNP . One of the main issues under discussion is how to make Mercosur more responsive to the social concerns of the member countries . CD IN DT JJ NNS IN NN VBZ WRB TO VB NNP RBR JJ TO DT JJ NNS IN DT NN NNS . The push for a change of direction for the five-member alliance is coming from Venezuela 's leftist President Hugo Chavez . DT NN IN DT NN IN NN IN DT JJ NN VBZ VBG IN NNP POS JJ NNP NNP NNP . Ecuador and Bolivia , both also led by leftist governments , are seeking to join the group . NNP CC NNP , DT RB VBN IN JJ NNS , VBP VBG TO VB DT NN . Officials say the trade bloc now accounts for one trillion dollars in annual economic activity and includes 250 million people . NNS VBP DT NN NN RB VBZ IN CD CD NNS IN JJ JJ NN CC VBZ CD CD NNS . Argentina , Brazil , Paraguay and Uruguay formed Mercosur in 1991 . NNP , NNP , NNP CC NNP VBD NNP IN CD . Venezuela joined in July of last year . NNP VBD IN NNP IN JJ NN . Chile and Bolivia are associate members . NNP CC NNP VBP JJ NNS . Afghan officials say President Hamid Karzai is considering offering a government post to a powerful regional warlord , despite concerns over his role in alleged human rights abuses . JJ NNS VBP NNP NNP NNP VBZ VBG VBG DT NN NN TO DT JJ JJ NN , IN NNS IN PRP$ NN IN JJ JJ NNS NNS . A presidential spokesman Jawed Ludin told a news briefing in Kabul Tuesday that General Abdul Rashid Dostum held several meetings with the president to discuss a possible government position . DT JJ NN NNP NNP VBD DT NN NN IN NNP NNP IN NNP NNP NNP NNP VBD JJ NNS IN DT NN TO VB DT JJ NN NN . Asked about charges that General Dostum was guilty of human rights abuses and war crimes , the spokesman said it was a completely different issue . VBN IN NNS IN NNP NNP VBD JJ IN JJ NNS NNS CC NN NNS , DT NN VBD PRP VBD DT RB JJ NN . He stressed that everyone in Afghanistan has the right to fulfill their responsibilities and be given opportunity to do so . PRP VBD IN DT IN NNP VBZ DT NN TO VB PRP$ NNS CC VB VBN NN TO VB RB . General Dostum 's faction helped U.S.-led coalition forces oust the former Taleban regime in 2001 . NNP NNP POS NN VBD JJ NN NNS VB DT JJ NNP NN IN CD . He finished fourth in last year 's presidential elections and narrowly escaped an assassination attempt in January . PRP VBD JJ IN JJ NN POS JJ NNS CC RB VBD DT NN NN IN NNP . Economic activity is limited to providing services to military personnel and contractors located on the island . JJ NN VBZ VBN IN VBG NNS TO NN NNS CC NNS VBN IN DT NN . All food and manufactured goods must be imported . DT NN CC JJ NNS MD VB VBN . Financial services - banking , fund management , insurance - account for about 23 % of employment and about 55 % of total income in this tiny , prosperous Channel Island economy . NN NNS IN NN , NN NN , NN : VBP IN RB CD NN IN NN CC IN CD NN IN JJ NN IN DT JJ , JJ NNP NNP NN . Tourism , manufacturing , and horticulture , mainly tomatoes and cut flowers , have been declining . NN , NN , CC NN , RB NNS CC VBN NNS , VBP VBN VBG . Financial services , construction , retail , and the public sector have been growing . NN NNS , NN , JJ , CC DT JJ NN VBP VBN VBG . Light tax and death duties make Guernsey a popular tax haven . JJ NN CC NN NNS VBP NNP DT JJ NN NN . The evolving economic integration of the EU nations is changing the environment under which Guernsey operates . DT VBG JJ NN IN DT NNP NNS VBZ VBG DT NN IN WDT NNP VBZ . The Jamaican economy is heavily dependent on services , which now account for more than 60 % of GDP . DT JJ NN VBZ RB JJ IN NNS , WDT RB VBP IN JJR IN CD NN IN NN . The country continues to derive most of its foreign exchange from tourism , remittances , and bauxite / alumina . DT NN VBZ TO VB JJS IN PRP$ JJ NN IN NN , NNS , CC NN CC NN . Remittances account for nearly 15 % of GDP and exports of bauxite and alumina make up about 10 % . NNS VBP IN RB CD NN IN NN CC NNS IN NN CC NN VBP RP IN CD NN . The bauxite / alumina sector was most affected by the global downturn while the tourism industry was resilient , experiencing an increase of 4 % in tourist arrivals . DT JJ NN NN NN VBD RBS VBN IN DT JJ NN IN DT NN NN VBD JJ , VBG DT NN IN CD NN IN NN NNS . Tourism revenues account for roughly 10 % of GDP , and both arrivals and revenues grew in 2010 , up 4 % and 6 % respectively . NNP NNS VBP IN RB CD NN IN NN , CC DT NNS CC NNS VBD IN CD , RB CD NN CC CD NN RB . The Economic growth faces many challenges : high crime and corruption , large-scale unemployment and underemployment , and a debt-to-GDP ratio of more than 120 % . DT JJ NN VBZ JJ NNS IN JJ NN CC NN , JJ NN CC NN , CC DT JJ NN IN JJR IN CD NN . Jamaica 's onerous public debt burden - the fourth highest in the world on a per capita basis - is the result of government bailouts to ailing sectors of the economy , most notably to the financial sector in the mid-to-late 1990s . NNP POS JJ JJ NN NN IN DT JJ JJS IN DT NN IN DT IN NN NN : VBZ DT NN IN NN NNS TO JJ NNS IN DT NN , RBS RB TO DT JJ NN IN DT JJ NNS . In early 2010 , the Jamaican government created the Jamaica Debt Exchange ( JDX ) in order to retire high-priced domestic bonds and significantly reduce annual debt servicing . IN JJ CD , DT JJ NN VBD DT NNP NNP NNP LRB NNP RRB IN NN TO VB JJ JJ NNS CC RB VB JJ NN NN . The Government of Jamaica signed a $ 1.27 billion , 27-month Standby Agreement with the International Monetary Fund for balance of payment support in February 2010 . DT NN IN NNP VBD DT $ CD CD , JJ NNP NN IN DT NNP NNP NNP IN NN IN NN NN IN NNP CD . Other multilaterals have also provided millions of dollars in loans and grants . JJ NNS VBP RB VBN NNS IN NNS IN NNS CC NNS . Despite the improvement , debt servicing costs still hinder the government 's ability to spend on infrastructure and social programs , particularly as job losses rise in a shrinking economy . IN DT NN , NN NN NNS RB VB DT NN POS NN TO VB IN NN CC JJ NNS , RB IN NN NNS VBP IN DT VBG NN . The GOLDING administration faces the difficult prospect of having to achieve fiscal discipline in order to maintain debt payments , while simultaneously attacking a serious crime problem that is hampering economic growth . DT NNP NN VBZ DT JJ NN IN VBG TO VB JJ NN IN NN TO VB NN NNS , IN RB VBG DT JJ NN NN WDT VBZ VBG JJ NN . High unemployment exacerbates the crime problem , including gang violence that is fueled by the drug trade . JJ NN VBZ DT NN NN , VBG NN NN WDT VBZ VBN IN DT NN NN . Since the 1960s , South Korea has achieved an incredible record of growth and global integration to become a high-tech industrialized economy . IN DT NNS , NNP NNP VBZ VBN DT JJ NN IN NN CC JJ NN TO VB DT JJ JJ NN . Four decades ago , GDP per capita was comparable with levels in the poorer countries of Africa and Asia . CD NNS RB , NN IN NN VBD JJ IN NNS IN DT JJR NNS IN NNP CC NNP . In 2004 , South Korea joined the trillion dollar club of world economies , and currently is among the world 's 20 largest economies . IN CD , NNP NNP VBD DT CD NN NN IN NN NNS , CC RB VBZ IN DT NN POS CD JJS NNS . Initially , a system of close government and business ties , including directed credit and import restrictions , made this success possible . RB , DT NN IN JJ NN CC NN NNS , VBG VBN NN CC NN NNS , VBD DT NN JJ . The government promoted the import of raw materials and technology at the expense of consumer goods , and encouraged savings and investment over consumption . DT NN VBD DT NN IN JJ NNS CC NN IN DT NN IN NN NNS , CC VBD NNS CC NN IN NN . The Asian financial crisis of 1997 - 98 exposed longstanding weaknesses in South Korea 's development model including high debt / equity ratios and massive short-term foreign borrowing . DT JJ JJ NN IN CD IN CD JJ JJ NNS IN NNP NNP POS NN NN VBG JJ NN NN NN NNS CC JJ JJ JJ NN . GDP plunged by 6.9 % in 1998 , and then recovered by 9 % in 1999 - 2000 . NN VBD IN CD NN IN CD , CC RB VBN IN CD NN IN CD IN CD . Korea adopted numerous economic reforms following the crisis , including greater openness to foreign investment and imports . NNP VBD JJ JJ NNS VBG DT NN , VBG JJR NN TO JJ NN CC NNS . Growth moderated to about 4 - 5 % annually between 2003 and 2007 . NN VBD TO IN CD : CD NN RB IN CD CC CD . With the global economic downturn in late 2008 , South Korean GDP growth slowed to 0.2 % in 2009 . IN DT JJ JJ NN IN JJ CD , JJ JJ NN NN VBD TO CD NN IN CD . In the third quarter of 2009 , the economy began to recover , in large part due to export growth , low interest rates , and an expansionary fiscal policy , and growth exceeded 6 % in 2010 . IN DT JJ NN IN CD , DT NN VBD TO VB , IN JJ NN JJ TO VB NN , JJ NN NNS , CC DT JJ JJ NN , CC NN VBD CD NN IN CD . The South Korean economy 's long term challenges include a rapidly aging population , inflexible labor market , and overdependence on manufacturing exports to drive economic growth . DT JJ JJ NN POS JJ NN NNS VBP DT RB VBG NN , JJ NN NN , CC NN IN VBG NNS TO VB JJ NN . Officials in Afghanistan say Taleban , al-Qaida and hundreds of other inmates at a high-security prison in Kabul have taken control of a prison block after clashing with security guards . NNS IN NNP VBP NNP , NNP CC NNS IN JJ NNS IN DT JJ NN IN NNP VBP VBN NN IN DT NN NN IN VBG IN NN NNS . Prison officials say the riot erupted Saturday night after a group of prisoners refused to wear new prison uniforms intended to prevent inmates from mingling with visitors and possibly escaping . NN NNS VBP DT NN VBD NNP NN IN DT NN IN NNS VBD TO VB JJ NN VBZ VBN TO VB NNS IN VBG IN NNS CC RB VBG . Seven Taleban inmates used such a method to escape last month . CD NNP VBZ VBN PDT DT NN TO VB JJ NN . Officials say at least 1,300 prisoners were involved in the riot . NNS VBP IN JJS CD NNS VBD VBN IN DT NN . Shots were heard at the Pul-e-Charkhi prison Saturday and early Sunday . NNS VBD VBN IN DT NNP NN NNP CC JJ NNP . Authorities say no guards were hurt , but several prisoners were injured . NNS VBP DT NNS VBD VBN , CC JJ NNS VBD VBN . Pul-e-Charkhi prison is a huge facility built in the 1970s where thousands of Afghans opposing communist rule in the 1980s were tortured and killed . NNP NN VBZ DT JJ NN VBN IN DT NNS WRB NNS IN NNS VBG JJ NN IN DT NNS VBD VBN CC VBN . The prison now holds common criminals as well as al-Qaida and Taleban-linked militants . DT NN RB VBZ JJ NNS RB RB IN NNP CC JJ NNS . Witnesses in Somalia 's capital say an exchange of mortar fire has killed at least seven people and injured 12 others . NNS IN NNP POS NN VBP DT NN IN NN NN VBZ VBN IN JJS CD NNS CC VBN CD NNS . Residents say Wednesday 's fighting began when an African Union plane landed at Mogadishu 's main airport in defiance of a ban by the Islamist militant group al-Shabab . NNS VBP NNP POS NN VBD WRB DT NNP NNP NN VBD IN NNP POS JJ NN IN NN IN DT NN IN DT NNP JJ NN NNP . The insurgents fired mortars at the airport , triggering a counter-attack . DT NNS VBD NNS IN DT NN , VBG DT NN . It is not clear whether those shells came from African Union peacekeepers , Ethiopian troops , or Somali government forces . PRP VBZ RB JJ IN DT NNS VBD IN NNP NNP NNS , JJ NNS , CC JJ NN NNS . Al-Shabab warned last month that it would attack any planes landing or taking off from the airport . NNP VBD JJ NN IN PRP MD VB DT NNS NN CC VBG RP IN DT NN . The group said the flights benefit Ethiopia , which has thousands of troops in Somalia backing the interim government . DT NN VBD DT NNS VBP NNP , WDT VBZ NNS IN NNS IN NNP VBG DT JJ NN . The Somali government has urged airlines to use the airport despite the threat . DT JJ NN VBZ VBN NNS TO VB DT NN IN DT NN . On at least two other occasions , Islamists fired on the facility after planes successfully landed . IN IN JJS CD JJ NNS , NNS VBD IN DT NN IN NNS RB VBD . One of Iraq 's top Sunni political groups has agreed to support a new constitution in Saturday 's referendum , after reaching a deal with negotiators to consider future changes to the draft . CD IN NNP POS JJ NNP JJ NNS VBZ VBN TO VB DT JJ NN IN NNP POS NN , IN VBG DT NN IN NNS TO VB JJ NNS TO DT NN . Iraq 's Shi'ite and Kurdish-dominated parliament is to discuss the deal at a special session later Wednesday . NNP POS NNP CC JJ NN VBZ TO VB DT NN IN DT JJ NN RB NNP . Late Tuesday , Iraq 's main Sunni Arab political party ( the Iraqi Islamic Party ) announced its support for the draft constitution , after Shi'ite and Kurdish negotiators agreed to allow Parliament to consider amendments to the constitution . RB NNP , NNP POS JJ NNP NNP JJ NN LRB DT JJ NNP NNP RRB VBD PRP$ NN IN DT NN NN , IN NNP CC NNP NNS VBD TO VB NNP TO VB NNS TO DT NN . It is unclear if other Sunni groups not involved in negotiations will reverse their calls for voters to reject the constitution . PRP VBZ JJ IN JJ NNP NNS RB VBN IN NNS MD VB PRP$ NNS IN NNS TO VB DT NN . U.S. officials have also been pressing Sunnis to back the constitution in the hope it will weaken the insurgency and enable the withdrawal of foreign troops . NNP NNS VBP RB VBN VBG NNP TO VB DT NN IN DT NN PRP MD VB DT NN CC VB DT NN IN JJ NNS . In Baghdad today , Iraqi police say at least six people were injured when a suicide car bomber struck a government convoy . IN NNP NN , JJ NNS VBP IN JJS CD NNS VBD VBN WRB DT NN NN NN VBD DT NN NN . U.S. Senator Trent Lott has introduced a bill to re-establish the Federal Emergency Management Agency as an independent group reporting directly to the President . NNP NNP NNP NNP VBZ VBN DT NN TO VB DT NNP NNP NNP NNP IN DT JJ NN VBG RB TO DT NNP . The Republican from Mississippi says thousands of people in his state are still without enough help more than five months after Hurricane Katrina . DT NNP IN NNP VBZ NNS IN NNS IN PRP$ NN VBP RB IN JJ NN JJR IN CD NNS IN NNP NNP . He blamed the bureaucratic inefficiencies created when FEMA was placed under the Department of Homeland Security . PRP VBD DT JJ NNS VBN WRB NNP VBD VBN IN DT NNP IN NNP NNP . FEMA was merged into the department in a massive federal restructuring after the September 11 , 2001 terrorist attacks . NNP VBD VBN IN DT NN IN DT JJ JJ NN IN DT NNP CD , CD JJ NNS . Senator Lott says he questioned the wisdom of the move at the time . NNP NNP VBZ PRP VBD DT NN IN DT NN IN DT NN . Former FEMA Director James Lee Witt said Thursday that FEMA has become a disgrace since the merger . JJ NNP NNP NNP NNP NNP VBD NNP IN NNP VBZ VBN DT NN IN DT NN . Witt , who headed the agency during the Clinton administration , said the continued emphasis on terrorism has ' minimized and demoralized emergency management . ' NNP , WP VBD DT NN IN DT NNP NN , VBD DT VBN NN IN NN VBZ `` VBN CC VBN NN NN . `` Millions of striking workers brought parts of India to a standstill Tuesday as they protested price hikes and alleged anti-labor policies . NNS IN JJ NNS VBD NNS IN NNP TO DT NN NNP IN PRP VBD NN NNS CC VBN JJ NNS . Leftist trade unions called the nationwide day-long strike to express building anger and frustration over the rising cost of living and plans by government to disinvest from public sector companies . JJ NN NNS VBD DT JJ JJ NN TO VB NN NN CC NN IN DT VBG NN IN VBG CC NNS IN NN TO VB IN JJ NN NNS . The strikes , which only materialized in the eastern state of West Bengal and the southwestern state of Kerala , shut down schools , shops , banks and disrupted some airline flights . DT NNS , WDT RB VBD IN DT JJ NN IN NNP NNP CC DT JJ NN IN NNP , VBD RP NNS , NNS , NNS CC VBD DT NN NNS . About one million bank employees joined in the work stoppage . IN CD CD NN NNS VBD IN DT NN NN . Tuesday 's demonstrations come two months after main opposition parties led a one-day strike over fuel prices hikes , leaving some regions at a similar standstill . NNP POS NNS VBP CD NNS IN JJ NN NNS VBD DT JJ NN IN NN NNS NNS , VBG DT NNS IN DT JJ NN . Inflation in India has been nearing double digits in recent months . NN IN NNP VBZ VBN VBG JJ NNS IN JJ NNS . Bulgaria has extradited the nephew of former Turkish president Suleyman Demirel to Turkey , where he is wanted for massive fraud . NNP VBZ VBN DT NN IN JJ JJ NN NNP NNP TO NNP , WRB PRP VBZ VBN IN JJ NN . Yahya Murat Demirel and his wife , Aysegul Esenler , were arrested in the Black Sea port city of Bourgas on December 31 when they tried to enter Bulgaria illegally . NNP NNP NNP CC PRP$ NN , NNP NNP , VBD VBN IN DT NNP NNP JJ NN IN NNP IN NNP CD WRB PRP VBD TO VB NNP RB . Mr. Demirel had been forbidden by Turkish courts to leave the country , where he is on trial in connection with the collapse of Turkish Egebank , which he owned . NNP NNP VBD VBN VBN IN JJ NNS TO VB DT NN , WRB PRP VBZ IN NN IN NN IN DT NN IN JJ NNP , WDT PRP VBD . He and his wife were delivered to Turkish authorities Friday morning . PRP CC PRP$ NN VBD VBN IN JJ NNS NNP NN . Campaigning draws to a close Sunday in Egypt 's first multi-candidate presidential election . NN VBZ TO DT JJ NNP IN NNP POS JJ JJ JJ NN . Incumbent president Hosni Mubarak , who faces nine rivals , is expected to hold a final rally of his ruling National Democratic party today before Wednesday 's poll . JJ NN NNP NNP , WP VBZ CD NNS , VBZ VBN TO VB DT JJ NN IN PRP$ VBG NNP NNP NN NN IN NNP POS NN . Despite facing electoral opponents for the first time , President Mubarak is widely expected to win a fifth term . IN VBG JJ NNS IN DT JJ NN , NNP NNP VBZ RB VBN TO VB DT JJ NN . Ayman Nour , one of Mr. Mubarak 's most prominent opponents , addressed a crowd in the heart of Cairo late Saturday after touring the country . NNP NNP , CD IN NNP NNP POS JJS JJ NNS , VBD DT NN IN DT NN IN NNP JJ NNP IN VBG DT NN . Mr. Nour and his Ghad party have led the most aggressive campaign , linking the Mubarak government to years of oppression , economic crisis , and joblessness . NNP NNP CC PRP$ NNP NN VBP VBN DT RBS JJ NN , VBG DT NNP NN TO NNS IN NN , JJ NN , CC NN . In February , President Mubarak proposed holding contested presidential elections to replace a system where parliament nominated a single candidate for approval in a referendum . IN NNP , NNP NNP VBD VBG VBN JJ NNS TO VB DT NN WRB NN VBD DT JJ NN IN NN IN DT NN . The U.S. military says rescue teams have reached the wreckage of a helicopter that went down Tuesday in eastern Afghanistan , but there is still no word on the fate of the 17 U.S. troops on board . DT NNP NN VBZ NN NNS VBP VBN DT NN IN DT NN WDT VBD RB NNP IN JJ NNP , CC EX VBZ RB DT NN IN DT NN IN DT CD NNP NNS IN NN . A spokesman , Lt. Col. Jerry O'Hara , told reporters in Kabul Thursday that military rescuers are at the site and that recovery operations are continuing . DT NN , NNP NNP NNP NNP , VBD NNS IN NNP NNP IN JJ NNS VBP IN DT NN CC IN NN NNS VBP VBG . He did not elaborate . PRP VBD RB VB . Military officials say it appears the Chinook helicopter was brought down by hostile fire . JJ NNS VBP PRP VBZ DT NNP NN VBD VBN RP IN JJ NN . The helicopter crashed in remote mountainous terrain west of Kunar province 's capital , Asadabad , while transporting troops as part of an ongoing operation against suspected Taleban and al-Qaida terrorists . DT NN VBD IN JJ JJ NN NN IN NNP NN POS NN , NNP , IN VBG NNS IN NN IN DT JJ NN IN JJ NNP CC NNP NNS . Shortly after the crash , the Taleban said it shot down the aircraft . RB IN DT NN , DT NNP VBD PRP VBD IN DT NN . The Egyptian ambassador to Pakistan says no Pakistanis were involved in Saturday 's bombings in the Red Sea resort of Sharm el-Sheikh that killed nearly 90 people . DT JJ NN TO NNP VBZ DT NNS VBD VBN IN NNP POS NNS IN DT NNP NNP NN IN NNP NNP WDT VBD RB CD NNS . Ambassador Hussein Haridy said Tuesday that Egyptian authorities have not accused any Pakistani of involvement in those attacks . NNP NNP NNP VBD NNP IN JJ NNS VBP RB VBN DT NNS IN NN IN DT NNS . Monday , Egyptian police circulated photographs of several Pakistanis who had arrived in Sharm el-Sheikh earlier this month but later disappeared after leaving their passports at a hotel . NNP , JJ NN VBD NNS IN JJ NNS WP VBD VBN IN NNP NNP RBR DT NN CC RB VBD IN VBG PRP$ NNS IN DT NN . Also Monday , police clashed with Bedouin tribesmen as they searched for suspects in the mountains of Sinai 's interior . RB NNP , NN VBD IN NNP NNS IN PRP VBD IN NNS IN DT NNS IN NNP POS NN . And in Washington , President and Mrs. Bush visited the Egyptian embassy to express their condolences . CC IN NNP , NNP CC NNP NNP VBD DT JJ NN TO VB PRP$ NNS . An electric company in the sunny western U.S. state of California plans to begin installing solar panels on rooftops of commercial buildings to produce environmentally friendly energy . DT JJ NN IN DT JJ JJ NNP NN IN NNP VBZ TO VB VBG JJ NNS IN NNS IN JJ NNS TO VB RB JJ NN . VOA 's Paul Sisco has the story . NNP POS NNP NNP VBZ DT NN . Iran 's main reformist party is accusing President Mahmoud Ahmadinejad of hurting the nation 's poor . NNP POS JJ NN NN VBZ VBG NNP NNP NNP IN VBG DT NN POS NN . At an annual meeting of the Islamic Iran Participation Front Thursday , party leader Mohsen Mirdamadi attacked both the president 's foreign and economic policies . IN DT JJ NN IN DT NNP NNP NNP NNP NNP , NN NN NNP NNP VBD DT DT NN POS JJ CC JJ NNS . The party hopes to field former president Mohammad Khatami to challenge Mr. Ahmadinejad in next year 's presidential election . DT NN VBZ TO VB JJ NN NNP NNP TO VB NNP NNP IN JJ NN POS JJ NN . Mr. Khatami has not yet said if he will run . NNP NNP VBZ RB RB VBN IN PRP MD VB . Mr. Ahmadinejad said Wednesday Iran must base its budget on oil worth as little as $ 30 a barrel . NNP NNP VBD NNP NNP MD VB PRP$ NN IN NN NN RB RB IN $ CD DT NN . It is a drastic downward revision likely to lead to spending cuts . PRP VBZ DT JJ JJ NN JJ TO VB TO NN NNS . In recent months , when oil was nearly $ 150 a barrel , the president promised to spread the nation 's oil wealth . IN JJ NNS , WRB NN VBD RB $ CD DT NN , DT NN VBD TO VB DT NN POS NN NN . But with the plummeting price , and inflation at about 30 percent , he has had to postpone his economic reform plans . CC IN DT VBG NN , CC NN IN IN CD NN , PRP VBZ VBN TO VB PRP$ JJ NN NNS . Police in northwestern Pakistan say a suicide car bomber has killed four police officers and wounded at least eight other people . NNS IN JJ NNP VBP DT NN NN NN VBZ VBN CD NNS NNS CC VBN IN JJS CD JJ NNS . Local authorities say the attacker blew up his explosives-laden car early Wednesday on the outskirts of Peshawar , the capital of Khyber Pakhtoonkhaw province . JJ NNS VBP DT NN VBD RP PRP$ JJ NN JJ NNP IN DT NNS IN NNP , DT NN IN NNP NNP NN . The blast came a day after Pakistani security forces killed 11 militants in clashes in nearby Orakzai tribal region . DT NN VBD DT NN IN JJ NN NNS VBD CD NNS IN NNS IN JJ NNP JJ NN . Pakistan 's military launched an anti-Taliban offensive in Orakzai in March to target militants who are believed to have fled an earlier offensive in South Waziristan . NNP POS NN VBD DT JJ NN IN NNP IN NNP TO VB NNS WP VBP VBN TO VB VBN DT JJR NN IN NNP NNP . In other violence , gunmen killed a university professor in a drive-by shooting in Quetta , the capital of southwestern Baluchistan province . IN JJ NN , NNS VBD DT NN NN IN DT JJ NN IN NNP , DT NN IN JJ NNP NN . Kenyan police say they have asked U.S. officials from the FBI to help investigate the killing of three policemen . JJ NNS VBP PRP VBP VBN NNP NNS IN DT NNP TO VB VB DT NN IN CD NNS . Police commissioner Mathew Iteere said Saturday that he expects the FBI to join in the probe . NN NN NNP NNP VBD NNP IN PRP VBZ DT NNP TO VB IN DT NN . Kenyan police say they hope to draw on the FBI 's experience dealing with explosives and tracing the origins of arms . JJ NNS VBP PRP VBP TO VB IN DT NNP POS NN VBG IN NNS CC VBG DT NNS IN NNS . The three policemen were killed in two attacks in the capital , Nairobi , Friday . DT CD NNS VBD VBN IN CD NNS IN DT NN , NNP , NNP . One police officer was killed when a grenade was thrown into his vehicle . CD NN NN VBD VBN WRB DT NN VBD VBN IN PRP$ NN . The two other officers were killed in a gun attack when two men on a motorbike opened fire . DT CD JJ NNS VBD VBN IN DT NN NN WRB CD NNS IN DT NN VBD NN . Police say the two attackers were chased by police and shot and killed . NNS VBP DT CD NNS VBD VBN IN NN CC VBN CC VBN . Officials are trying to identify the attackers and determine the motive for the killings . NNS VBP VBG TO VB DT NNS CC VB DT NN IN DT NNS . The opposition in Kyrgyzstan has chosen a former prime minister as its candidate to challenge incumbent President Kurmanbek Bakiyev in upcoming elections . DT NN IN NNP VBZ VBN DT JJ JJ NN IN PRP$ NN TO VB JJ NNP NNP NNP IN VBG NNS . Social Democratic Party leader Almazbek Atambayev addressed supporters after he was named on Monday . NNP NNP NNP NN NNP NNP VBD NNS IN PRP VBD VBN IN NNP . He repeated opposition charges the government is trying to fix the polls , set for July 23 . PRP VBD NN NNS DT NN VBZ VBG TO VB DT NNS , VBN IN NNP CD . Atambayev has run for president twice before ; once in 2000 , and again five years later . NNP VBZ VBN IN NN RB RB ; RB IN CD , CC RB CD NNS RB . In 2007 , he served as prime minister to Mr. Bakiyev , but later broke with the president . IN CD , PRP VBD IN JJ NN TO NNP NNP , CC RB VBD IN DT NN . The opposition in Kyrgyzstan is fractured and has been hurt by the arrests of some of its members . DT NN IN NNP VBZ VBN CC VBZ VBN VBN IN DT NNS IN DT IN PRP$ NNS . It has accused the government of intimidation . PRP VBZ VBN DT NN IN NN . The president has strongly denied the allegations . DT NN VBZ RB VBN DT NNS . Israeli officials say they will allow 16 Palestinians who were expelled to the Gaza Strip to return home to the West Bank Friday , in the latest goodwill gesture to the Palestinians . JJ NNS VBP PRP MD VB CD NNS WP VBD VBN TO DT NNP NNP TO VB NN TO DT NNP NNP NNP , IN DT JJS NN NN TO DT NNS . The 16 are the first of an expected 55 to be allowed to return after the Israeli army expelled them for security reasons . DT CD VBP DT NN IN DT VBN CD TO VB VBN TO VB IN DT JJ NN VBD PRP IN NN NNS . Also Thursday , the Israeli army announced that Defense Minister Shaul Mofaz decided to stop the controversial practice of destroying the family homes of Palestinians suspected of carrying out suicide attacks against Israeli targets . RB NNP , DT JJ NN VBD IN NNP NNP NNP NNP VBD TO VB DT JJ NN IN VBG DT NN NNS IN NNS VBN IN VBG RP NN NNS IN JJ NNS . The army referred to a study that found the policy did little to deter militant attacks and that it spawned hatred towards Israel in the Palestinian territories . DT NN VBD TO DT NN WDT VBD DT NN VBD RB TO VB JJ NNS CC IN PRP VBD NN IN NNP IN DT JJ NNS . U.S. Senator Edward Kennedy is undergoing further tests at a hospital in the northeastern state of Massachusetts - two days after having a seizure . NNP NNP NNP NNP VBZ VBG JJ NNS IN DT NN IN DT JJ NN IN NNP IN CD NNS IN VBG DT NN . A spokeswoman for Kennedy Monday said it is not clear when his doctor will release information about his condition . DT NN IN NNP NNP VBD PRP VBZ RB JJ WRB PRP$ NN MD VB NN IN PRP$ NN . The 76-year-old Democrat is expected to stay in the hospital for the next couple of days . DT JJ NNP VBZ VBN TO VB IN DT NN IN DT JJ NN IN NNS . Associates of Kennedy said Sunday he was resting , eating and watching sports on television . NNP IN NNP VBD NNP PRP VBD VBG , VBG CC VBG NNS IN NN . Kennedy , who has had health problems in the past , was rushed to the hospital on Saturday after suffering a seizure . NNP , WP VBZ VBN NN NNS IN DT NN , VBD VBN TO DT NN IN NNP IN VBG DT NN . The Massachusetts lawmaker has served in the Senate for more than 45 years , and is the youngest brother of the late President John F. Kennedy , who was assassinated in 1963 . DT NNP NN VBZ VBN IN DT NNP IN JJR IN CD NNS , CC VBZ DT JJS NN IN DT JJ NNP NNP NNP NNP , WP VBD VBN IN CD . Danish naval officials said they have turned over five suspected Somali pirates to officials in the Netherlands . JJ JJ NNS VBD PRP VBP VBN RP CD JJ JJ NNS TO NNS IN DT NNP . A spokesman for the Danish Navy said Tuesday that the men have been handed over to a Dutch representative in Bahrain and are expected to be flown to the Netherlands to stand trial . DT NN IN DT JJ NNP VBD NNP IN DT NNS VBP VBN VBN IN TO DT JJ NN IN NNP CC VBP VBN TO VB VBN TO DT NNP TO VB NN . The navy said the men were captured January 2 after they allegedly attacked a Dutch cargo ship off the coast of Somalia . DT NN VBD DT NNS VBD VBN NNP CD IN PRP RB VBD DT JJ NN NN IN DT NN IN NNP . The Danish combat ship Absalon came to the scene and fired a flare at the pirates ' boat , which caught fire and began to sink . DT JJ NN NN NNP VBD TO DT NN CC VBD DT NN IN DT NNS POS NN , WDT VBD NN CC VBD TO VB . The alleged pirates were pulled from the sea and had been held prisoner on the Absalon since the incident . DT JJ NNS VBD VBN IN DT NN CC VBD VBN VBN NN IN DT NNP IN DT NN . The Danish ship is part of an international anti-piracy force patrolling the waters off Somalia . DT JJ NN VBZ NN IN DT JJ NN NN VBG DT NNS IN NNP . Somali pirates have hijacked three ships this year , after seizing more 40 vessels during 2008 . JJ NNS VBP VBN CD NNS DT NN , IN VBG JJR CD NNS IN CD . Arab diplomats are due to meet with Lebanese leaders in Beirut Monday to discuss an Arab League proposal to resolve the political crisis in the country . JJ NNS VBP JJ TO VB IN JJ NNS IN NNP NNP TO VB DT JJ NNP NN TO VB DT JJ NN IN DT NN . Sudanese presidential adviser Mustafa Ismail will meet government and opposition leaders after talks with Syrian officials in Damascus . JJ JJ NN NNP NNP MD VB NN CC NN NNS IN NNS IN JJ NNS IN NNP . Arab League Secretary-General Amr Moussa will join him in Beirut Tuesday . NNP NNP NNP NNP NNP MD VB PRP IN NNP NNP . Both men held separate talks in Beirut last week . DT NNS VBD JJ NNS IN NNP JJ NN . Hundreds of thousands of Hezbollah protesters and allies of the Shi'ite militant group attended a rally in central Beirut Sunday . NNS IN NNS IN NNP NNS CC NNS IN DT NNP JJ NN VBD DT NN IN JJ NNP NNP . The demonstrators were pressing demands for a national unity government that grants more power to Hezbollah and its allies . DT NNS VBD VBG NNS IN DT JJ NN NN WDT VBZ JJR NN TO NNP CC PRP$ NNS . Ismail told Arabiya television that all parties in Lebanon had agreed to Arab League mediation . NNP VBD NNP NN IN DT NNS IN NNP VBD VBN TO NNP NNP NN . The mediation proposal is reported to include a unity government , early national elections and passage of a U.N.-proposed international tribunal to try suspects in last year 's assassination of former Prime Minister Rafik al-Hariri . DT NN NN VBZ VBN TO VB DT NN NN , JJ JJ NNS CC NN IN DT JJ JJ NN TO VB NNS IN JJ NN POS NN IN JJ NNP NNP NNP NNP . South Africa 's public sector unions are threatening to strike during the World Cup because of a wage dispute . NNP NNP POS JJ NN NNS VBP VBG TO VB IN DT NNP NNP IN IN DT NN NN . The unions , which represent some 1.2 million workers , issued the threat on Thursday after rejecting the government 's latest wage offer . DT NNS , WDT VBP DT CD CD NNS , VBD DT NN IN NNP IN VBG DT NN POS JJS NN NN . A strike would put nurses and police officers off the job as South Africa hosts one of the world 's biggest sporting events . DT NN MD VB NNS CC NN NNS IN DT NN IN NNP NNP VBZ CD IN DT NN POS JJS VBG NNS . Manie de Clerq , head of the Public Servants Association , says a strike may also include immigration officials , who may be needed to help World Cup tourists . NNP NNP NNP , NN IN DT NNP NNP NNP , VBZ DT NN MD RB VB NN NNS , WP MD VB VBN TO VB NNP NNP NNS . Other South African unions have taken advantage of the World Cup to demand and receive significant pay increases . JJ JJ JJ NNS VBP VBN NN IN DT NNP NNP TO VB CC VB JJ NN NNS . Most recently , port and railroad workers received an 11 percent wage hike after a three-week strike . JJS RB , NN CC NN NNS VBD DT CD NN NN NN IN DT JJ NN . The public sector unions are demanding an 8.5 percent pay increase . DT JJ NN NNS VBP VBG DT CD NN NN NN . The government has offered 6.2 percent . DT NN VBZ VBN CD NN . Gunmen attacked a truck stop just outside of the Pakistani capital Wednesday , killing seven people and torching a convoy of tankers and trucks bound for NATO forces in Afghanistan . NNS VBD DT NN NN RB IN IN DT JJ NN NNP , VBG CD NNS CC VBG DT NN IN NNS CC NNS VBN IN NNP NNS IN NNP . Pakistani officials say 10 to 15 gunmen began shooting at the depot , just 10 kilometers from Islamabad , early Wednesday before setting about 60 containers on fire . JJ NNS VBP CD TO CD NNS VBD VBG IN DT NN , RB CD NNS IN NNP , JJ NNP IN VBG IN CD NNS IN NN . They say the attackers then fled in cars and on motorcycles . PRP VBP DT NNS RB VBD IN NNS CC IN NNS . Officials say some of the casualties were truck drivers . NNS VBP DT IN DT NNS VBD NN NNS . One driver says he was sitting inside his truck when the attack began and heard the gunmen saying ' kill the drivers ' and not to let anyone escape . CD NN VBZ PRP VBD VBG IN PRP$ NN WRB DT NN VBD CC VBD DT NNS VBG `` VBP DT NNS `` CC RB TO VB DT NN . Militants have attacked trucks carrying supplies for U.S. and NATO forces in the past , but this is the first attack to take place so close to Islamabad . NNS VBP VBN NNS VBG NNS IN NNP CC NNP NNS IN DT NN , CC DT VBZ DT JJ NN TO VB NN RB RB TO NNP . Officials are investigating and surveying the damage as the charred trucks sit jumbled together at the depot . NNS VBP VBG CC VBG DT NN IN DT JJ NNS VBP VBN RB IN DT NN . The Italian Foreign Ministry says a group of tourists , including 21 Italians , have been found in southeastern Niger a day after an attack by bandits . DT JJ NNP NNP VBZ DT NN IN NNS , VBG CD NNS , VBP VBN VBN IN JJ NNP DT NN IN DT NN IN NNS . Details of the incident are sketchy , but the ministry said in a statement Tuesday that the tourists may have been kidnapped in Niger near the border with Chad on Monday . NNS IN DT NN VBP JJ , CC DT NN VBD IN DT NN NNP IN DT NNS MD VB VBN VBN IN NNP IN DT NN IN NNP IN NNP . It added that the group may have been held for a ransom demand . PRP VBD IN DT NN MD VB VBN VBN IN DT NN NN . Earlier , the ministry said it was sending a diplomat to Niger from its mission in Ivory Coast in an effort to resolve the situation . RB , DT NN VBD PRP VBD VBG DT NN IN NNP IN PRP$ NN IN NNP NNP IN DT NN TO VB DT NN . Russian officials say drawings by an acclaimed Russian artist worth millions of dollars have vanished from a state archive . JJ NNS VBP NNS IN DT JJ JJ NN JJ NNS IN NNS VBP VBN IN DT NN NN . Authorities said Tuesday that about 2,000 drawings by avant-garde artist and architect Yakov Chernikhov are missing from the state archive of literature and art . NNS VBD NNP IN IN CD NNS IN JJ NN CC NN NNP NNP VBP VBG IN DT NN NN IN NN CC NN . Officials say 274 drawings have been found with antiques dealers and will be returned . NNS VBP CD NNS VBP VBN VBN IN NNS NNS CC MD VB VBN . This is the second major art theft announced in Russia in the past week . DT VBZ DT JJ JJ NN NN VBN IN NNP IN DT JJ NN . Last week , officials said more than 220 objects had been taken from St. Petersburg 's famed Hermitage museum . JJ NN , NNS VBD JJR IN CD NNS VBD VBN VBN IN NNP NNP POS JJ NN NN . At least three people have been detained in connection with that crime , including the husband and son of a museum curator . IN JJS CD NNS VBP VBN VBN IN NN IN DT NN , VBG DT NN CC NN IN DT NN NN . Authorities say several of the items have been recovered , including a gilded silver cross and a silver ladle found Tuesday outside the St. Petersburg headquarters of the Russian security service , the F.S.B . NNS VBP NN IN DT NNS VBP VBN VBN , VBG DT JJ NN NN CC DT NN NN VBN NNP IN DT NNP NNP NN IN DT JJ NN NN , DT NNP . Doctors at Jerusalem 's Hadassah Hospital have inserted a feeding tube into the stomach of Israeli Prime Minister Ariel Sharon . NNS IN NNP POS NNP NNP VBP VBN DT NN NN IN DT NN IN JJ NNP NNP NNP NNP . A hospital statement says Mr. Sharon remained in critical but stable condition after the procedure , called a gastrostomy . DT NN NN VBZ NNP NNP VBD IN JJ CC JJ NN IN DT NN , VBD DT NN . It did not say why the operation was necessary . PRP VBD RB VB WRB DT NN VBD JJ . One stroke expert says the procedure is recommended when patients are not expected to make a swift recovery . CD NN NN VBZ DT NN VBZ VBN WRB NNS VBP RB VBN TO VB DT JJ NN . Mr. Sharon suffered a massive stroke on January 4 . NNP NNP VBD DT JJ NN IN NNP CD . Surgical teams at the hospital operated twice on the prime minister to reduce swelling in the brain . JJ NNS IN DT NN VBD RB IN DT JJ NN TO VB VBG IN DT NN . Since then , attempts to bring Mr. Sharon out of a coma have been unsuccessful . IN RB , NNS TO VB NNP NNP IN IN DT NN VBP VBN JJ . Mr. Sharon did open his eyes briefly . NNP NNP VBD VB PRP$ NNS RB . Medical experts have said it is unlikely that the prime minister , if he does emerge from the coma , will be able to resume normal activities . JJ NNS VBP VBN PRP VBZ JJ IN DT JJ NN , IN PRP VBZ VB IN DT NN , MD VB JJ TO VB JJ NNS . Deputy prime minister Ehud Olmert is serving as acting prime minister . NNP JJ NN NNP NNP VBZ VBG IN JJ JJ NN . A Lebanese prosecutor has charged a retired general and three other people with spying for Israel . DT JJ NN VBZ VBN DT JJ JJ CC CD JJ NNS IN VBG IN NNP . Retired Brigadier General Abid al-Aalam , his wife , nephew and a fourth suspect were charged Thursday with providing information to Israel about military and civilian Lebanese and Syrian centers , with the aim of facilitating Israeli attacks . JJ NNP NNP NNP NNP , PRP$ NN , NN CC DT JJ NN VBD VBN NNP IN VBG NN TO NNP IN JJ CC JJ JJ CC JJ NNS , IN DT NN IN VBG JJ NNS . If convicted , the four could face the death penalty . IN VBN , DT CD MD VB DT NN NN . Aalam , his wife , Hayat Saloumi and nephew were arrested earlier this month on suspicion of espionage . NNP , PRP$ NN , NNP NNP CC NN VBD VBN RBR DT NN IN NN IN NN . The fourth suspect remains at large . DT JJ NN VBZ IN JJ . Judicial officials say Aalam also is charged with the illegal possession of weapons , and that he and his wife allegedly crossed into Israel without permission . JJ NNS VBP NNP RB VBZ VBN IN DT JJ NN IN NNS , CC IN PRP CC PRP$ NN RB VBD IN NNP IN NN . Israel and the Lebanese militant group Hezbollah fought a 34-day war in 2006 , which killed 1,200 Lebanese and nearly 160 Israelis . NNP CC DT JJ JJ NN NNP VBD DT JJ NN IN CD , WDT VBD CD JJ CC RB CD NNS . The United Nations says about 20,000 people have crossed into Uganda to escape fighting in the eastern Democratic Republic of Congo . DT NNP NNP VBZ IN CD NNS VBP VBN IN NNP TO VB VBG IN DT JJ JJ NNP IN NNP . A statement from the U.N. refugee agency Sunday says the refugees are camped at two locations and lack food , water , shelter and sanitation . DT NN IN DT NNP NN NN NNP VBZ DT NNS VBP VBN IN CD NNS CC VBP NN , NN , NN CC NN . The fighting erupted Thursday when forces loyal to renegade DRC Army General Laurent Nkunda occupied several towns and villages . DT NN VBD NNP WRB NNS JJ TO VB NNP NNP NNP NNP NNP VBD JJ NNS CC NNS . DRC government soldiers chased them out of some areas but clashes have continued , with U.N. peacekeepers aiding the government . NNP NN NNS VBD PRP IN IN DT NNS CC NNS VBP VBN , IN NNP NNS VBG DT NN . The fighting is around the town of Rutshuru in North Kivu province . DT NN VBZ IN DT NN IN NNP IN NNP NNP NN . U.N. and government troops have been trying to subdue various rebel and militia groups in the area in preparation for nationwide elections later this year . NNP CC NN NNS VBP VBN VBG TO VB JJ NN CC NN NNS IN DT NN IN NN IN JJ NNS RBR DT NN . A United Nations Human Rights Council investigation has criticized Israel 's military for attacking civilians in Lebanon during the conflict with Hezbollah earlier this year . DT NNP NNP NNP NNP NNP NN VBZ VBN NNP POS JJ IN VBG NNS IN NNP IN DT NN IN NNP RBR DT NN . In a report issued Tuesday , a team of rights experts said the civilian attacks were ' flagrant violations ' of human rights laws . IN DT NN VBN NNP , DT NN IN NNS NNS VBD DT JJ NNS VBD `` JJ NNS `` IN JJ NNS NNS . They also said Israel 's military engaged in a pattern of ' excessive , indiscriminate and disproportionate use of force ' in the month-long conflict . PRP RB VBD NNP POS JJ VBN IN DT NN IN `` JJ , JJ CC JJ NN IN NN `` IN DT JJ NN . The report also accused Hezbollah militants of using United Nations officials as human shields to launch attacks against Israeli forces in Lebanon . DT NN RB VBD NNP NNS IN VBG NNP NNP NNS IN JJ NNS TO VB NNS IN JJ NNS IN NNP . But the inquiry did not include a mandate to study Hezbollah actions in the conflict . CC DT NN VBD RB VB DT NN TO VB NNP NNS IN DT NN . Also Tuesday , the rights group Amnesty International urged U.N. officials to do an independent probe into alleged violations during the conflict . RB NNP , DT NNS NN NNP NNP VBD NNP NNS TO VB DT JJ NN IN JJ NNS IN DT NN . Italian car company Fiat says it is interested in taking over Opel , the German division of financially troubled U.S. carmaker General Motors . JJ NN NN NNP VBZ PRP VBZ JJ IN VBG RP NNP , DT JJ NN IN RB JJ NNP NN NNP NNPS . Fiat chief Luca Cordero di Montezemolo told Italy 's Corriere della Sera newspaper that Opel is an ' ideal partner . ' NNP NN NNP NNP NNP NNP VBD NNP POS NNP NN NNP NN IN NNP VBZ DT `` JJ NN . `` He said a takeover would be an ' extraordinary opportunity . ' PRP VBD DT NN MD VB DT `` JJ NN . `` Opel has been suffering through the world economic crisis along with many other global automakers . NNP VBZ VBN VBG IN DT NN JJ NN IN IN JJ JJ JJ NNS . But the German government says it has no plans to offer direct help to Opel . CC DT JJ NN VBZ PRP VBZ DT NNS TO VB JJ NN IN NNP . Fiat is involved in plans to buy another beleaguered U.S. car company , Chrysler , which entered into bankruptcy protection last week . NNP VBZ VBN IN NNS TO VB DT JJ NNP NN NN , NNP , WDT VBD IN NN NN JJ NN . U.S. military prosecutors have filed terror-related charges against an Afghan detainee accused of launching missiles toward U.S.-occupied areas in Afghanistan several years ago . NNP JJ NNS VBP VBN JJ NNS IN DT JJ NN VBN IN VBG NNS IN JJ NNS IN NNP JJ NNS RB . Mohamed Kamin , who is believed to be 30 years old , was charged Wednesday with one count of providing material support for terrorism . NNP NNP , WP VBZ VBN TO VB CD NNS JJ , VBD VBN NNP IN CD NN IN VBG JJ NN IN NN . The charge must be approved by the Defense Department before Kamin can be tried . DT NN MD VB VBN IN DT NNP NNP IN NNP MD VB VBN . Kamin allegedly trained at an al-Qaida camp . NNP RB VBN IN DT NNP NN . He is also accused of conducting surveillance on U.S. military bases . PRP VBZ RB VBN IN VBG NN IN NNP JJ NNS . He is the 14th detainee at the U.S. military base in Guantanamo Bay , Cuba , selected for prosecution under a special U.S. military war-crimes tribunal . PRP VBZ DT JJ NN IN DT NNP JJ NN IN NNP NNP , NNP , VBN IN NN IN DT JJ NNP JJ NNS JJ . The Guantanamo facility holds at least 275 terror suspects captured in Afghanistan and elsewhere . DT NNP NN VBZ IN JJS CD NN NNS VBN IN NNP CC RB . Cuba 's government says it will raise pension payments to retirees and increase the salaries of some government workers . NNP POS NN VBZ PRP MD VB NN NNS TO NNS CC VB DT NNS IN DT NN NNS . Sunday 's announcement says the pay hikes will target those workers who earn the least amount of money . NNP POS NN VBZ DT NN NNS MD VB DT NNS WP VBP DT JJS NN IN NN . A statement from the government says the increases will apply to pensioners and some employees who work in the Cuban court system . DT NN IN DT NN VBZ DT NNS MD VB TO NNS CC DT NNS WP VBP IN DT JJ NN NN . It says other workers will have to wait for pay increases because the country ' does n't have the necessary resources at the moment . ' PRP VBZ JJ NNS MD VB TO VB IN NN NNS IN DT NN `` VBZ RB VB DT JJ NNS IN DT NN . `` The move comes after much speculation that pay hikes were coming . DT NN VBZ IN JJ NN IN NN NNS VBD VBG . New Cuban President Raul Castro has spoken publicly about making changes to the government 's salary structure . JJ JJ NNP NNP NNP VBZ VBN RB IN VBG NNS TO DT NN POS NN NN . Since taking office , Mr. Castro has instituted a series of reforms , among them authorizing Cubans to buy mobile phones and computers . IN VBG NN , NNP NNP VBZ VBN DT NN IN NNS , IN PRP VBG NNS TO VB JJ NNS CC NNS . The White House says it is renewing a U.S. ban on trade with Burma because it says the actions and policies of Rangoon 's military government are hostile to U.S. interests . DT NNP NNP VBZ PRP VBZ VBG DT NNP NN IN NN IN NNP IN PRP VBZ DT NNS CC NNS IN NNP POS JJ NN VBP JJ TO NNP NNS . A White House statement Tuesday said the ban enacted in 1997 has been renewed for another year because Burma 's military government is committing large-scale repression of the Burmese democratic opposition . DT NNP NNP NN NNP VBD DT NN VBN IN CD VBZ VBN VBN IN DT NN IN NNP POS JJ NN VBZ VBG JJ NN IN DT JJ JJ NN . Also Tuesday , the State Department issued a warning to Americans traveling in Burma , telling them to use caution in public places because of the danger of more bombings like the three blasts that killed at least 20 people in Rangoon on May 7 . RB NNP , DT NNP NNP VBD DT NN TO NNS VBG IN NNP , VBG PRP TO VB NN IN JJ NNS IN IN DT NN IN JJR NNS IN DT CD NNS WDT VBD IN JJS CD NNS IN NNP IN NNP CD . Burmese authorities Tuesday doubled the reward for anyone giving information leading to the bombers ' arrests . JJ NNS NNP VBD DT NN IN DT VBG NN VBG TO DT NNS POS NNS . The new reward equals nearly $ 11,000 . DT JJ NN VBZ RB $ CD . A declassified letter from a U.S. congressional leader suggests the National Security Agency ( NSA ) may have begun domestic eavesdropping without specific permission from President Bush . DT JJ NN IN DT NNP JJ NN VBZ DT NNP NNP NNP LRB NNP RRB MD VB VBN JJ NN IN JJ NN IN NNP NNP . The letter from House Minority Leader Nancy Pelosi , dated October 2001 , asked General Michael Hayden , then NSA chief , if the president had specifically approved the expansion of NSA surveillance powers described in a House intelligence committee briefing . DT NN IN NNP NNP NNP NNP NNP , JJ NNP CD , VBD NNP NNP NNP , RB NNP NN , IN DT NN VBD RB VBN DT NN IN NNP NN NNS VBN IN DT NNP NN NN NN . General Hayden replied later that month that he used only ' his authorities ' to adjust NSA information-collecting and reporting policies . NNP NNP VBD RB DT NN IN PRP VBD RB `` PRP$ NNS `` TO VB NNP NN CC NN NNS . Parts of both letters were edited for security reasons . NNS IN DT NNS VBD VBN IN NN NNS . Newspaper reports revealed the domestic spying program last month . NNP NNS VBD DT JJ NN NN JJ NN . President Bush has said he ordered the agency , which normally monitors foreign communications , to begin domestic wiretapping in order to fight terrorism . NNP NNP VBZ VBN PRP VBD DT NN , WDT RB VBZ JJ NNS , TO VB JJ NN IN NN TO VB NN . Critics say the operation disregards U.S. privacy law . NNS VBP DT NN VBZ NNP NN NN . The Pakistani army says its troops pushed farther into a northwestern militant stronghold Sunday , a day after the military said it captured the hometown of a Taliban leader . DT JJ NN VBZ PRP$ NNS VBD RB IN DT JJ JJ NN NNP , DT NN IN DT NN VBD PRP VBD DT NN IN DT NNP NN . The military says helicopters provided air support as Pakistani ground troops pushed from the strategic town of Kotkai and moved deeper into South Waziristan along the Afghan border . DT JJ VBZ NNS VBD NN NN IN JJ NN NNS VBD IN DT JJ NN IN NNP CC VBD JJR IN NNP NNP IN DT JJ NN . Kotkai is the hometown of Taliban chief Hakimullah Mehsud . NNP VBZ DT NN IN NNP NN NNP NNP . Elsewhere , authorities say a suicide bomber killed one police officer east of the capital , Islamabad , on Sunday . RB , NNS VBP DT NN NN VBD CD NN NN NN IN DT NN , NNP , IN NNP . Officials say the bomber detonated his explosives when police stopped his car for a search . NNS VBP DT NN VBD PRP$ NNS WRB NNS VBD PRP$ NN IN DT NN . Police say they detained another man who had been in the car but left the vehicle before the bomb exploded . NNS VBP PRP VBD DT NN WP VBD VBN IN DT NN CC VBD DT NN IN DT NN VBD . Meanwhile , the Pakistani army has raised the death toll from Saturday 's helicopter crash in the Bajur tribal region . RB , DT JJ NN VBZ VBN DT NN NN IN NNP POS NN NN IN DT NNP JJ NN . It says six soldiers died in what officials are calling an accident . PRP VBZ CD NNS VBD IN WP NNS VBP VBG DT NN . A senior leader for the Palestinian militant group Hamas is in Egypt to resume talks on the future of Egypt 's border with the Hamas-controlled Gaza Strip . DT JJ NN IN DT JJ JJ NN NNP VBZ IN NNP TO VB NNS IN DT NN IN NNP POS NN IN DT JJ NNP NNP . Palestinian and Egyptian security sources say Mahmoud al-Zahar crossed into Egypt Thursday with a small delegation of Hamas officials . JJ CC JJ NN NNS VBP NNP NNP VBD IN NNP NNP IN DT JJ NN IN NNP NNS . They say the delegation will meet with Egyptian security officials in the Mediterranean coastal town of El~Arish for talks on the border situation . PRP VBP DT NN MD VB IN JJ NN NNS IN DT NNP JJ NN IN NNP IN NNS IN DT NN NN . Hundreds of thousands of Palestinians streamed into Egypt to buy food and supplies after Hamas militants blew up a section of the border wall last month in response to an Israeli blockade of Gaza . NNS IN NNS IN NNS VBD IN NNP TO VB NN CC NNS IN NNP NNS VBD RP DT NN IN DT NN NN JJ NN IN NN TO DT JJ NN IN NNP . Egyptian forces resealed the barrier February 3 . JJ NNS VBD DT NN NNP CD . Zahar met with Egyptian authorities in Cairo earlier this month to discuss ways to restore control at the Gaza border . NNP VBD IN JJ NNS IN NNP RBR DT NN TO VB NNS TO VB NN IN DT NNP NN . Egypt has since said it will no longer tolerate Palestinians trying to enter the country illegally through the border . NNP VBZ IN VBN PRP MD RB RB VB NNS VBG TO VB DT NN RB IN DT NN . Romania 's main opposition candidate has called for a repeat of Sunday 's first round of presidential and parliamentary elections , alleging widespread electoral fraud . NNP POS JJ NN NN VBZ VBN IN DT NN IN NNP POS JJ NN IN JJ CC JJ NNS , VBG JJ JJ NN . Among other allegations , centrist coalition leader Traian Basescu said Tuesday the ruling Social Democrats chartered dozens of buses to allow supporters to go from precinct to precinct and cast ballots several times . IN JJ NNS , JJ NN NN NNP NNP VBD NNP DT NN NNP NNPS VBD NNS IN NNS TO VB NNS TO VB IN NN TO VB CC VB NNS JJ NNS . With 90 percent of the votes counted , Prime Minister Adrian Nastase and his Social Democrats lead Mr. Basescu 's centrist alliance 36 percent to 31 percent in the parliamentary election . IN CD NN IN DT NNS VBN , NNP NNP NNP NNP CC PRP$ NNP NNPS VBP NNP NNP POS JJ NN CD NN TO CD NN IN DT JJ NN . The presidential election tally has Mr. Nastase ahead of Mr. Basescu 40 to 34 percent . DT JJ NN RB VBZ NNP NNP RB IN NNP NNP CD TO CD NN . The two candidates are scheduled to face each other in a runoff election on December 12 . DT CD NNS VBP VBN TO VB DT NN IN DT NN NN IN NNP CD . Pro Democratia , a Romanian civil rights group , says it will pull its election monitors from the second round of voting to protest reported irregularities . NNP NNP , DT JJ JJ NNS NN , VBZ PRP MD VB PRP$ NN NNS IN DT JJ NN IN NN TO VB VBN NNS . The death toll from Saturday 's roof collapse in southern Poland has risen to 65 as rescue workers pulled three more bodies from the wreckage . DT NN NN IN NNP POS NN NN IN JJ NNP VBZ VBN TO CD IN NN NNS VBD CD JJR NNS IN DT NN . Among the victims recovered Tuesday was a Hungarian , bringing to nine the number of foreigners who died in the accident . IN DT NNS VBN NNP VBD DT NN , VBG TO CD DT NN IN NNS WP VBD IN DT NN . The eight other foreigners were from Slovakia , the Czech Republic , Germany , the Netherlands and Belgium . DT CD JJ NNS VBD IN NNP , DT JJ NNP , NNP , DT NNP CC NNP . At least 160 other people were injured . IN JJS CD JJ NNS VBD VBN . About 500 people from across Europe were in a large exhibition hall in the Katowice area when the building 's snow-covered roof caved in . IN CD NNS IN IN NNP VBD IN DT JJ NN NN IN DT NNP NN WRB DT NN POS JJ NN VBN IN . A team of experts is trying to determine why the building collapsed . DT NN IN NNS VBZ VBG TO VB WRB DT NN VBD . Polish authorities blame the weight of the snow on the roof . JJ NNS VBP DT NN IN DT NN IN DT NN . President Bush has outlined the agenda for his second term in office and has asked for the support of all Americans , but Democrats have expressed reservations . NNP NNP VBZ VBN DT NN IN PRP$ JJ NN IN NN CC VBZ VBN IN DT NN IN DT NNS , CC NNPS VBP VBN NNS . In his weekly radio address Saturday , Mr. Bush promised to reach out to international allies to promote global development and progress , defeat terrorists and encourage democracy . IN PRP$ JJ NN NN NNP , NNP NNP VBD TO VB RP TO JJ NNS TO VB JJ NN CC NN , NN NNS CC VB NN . In this country , he pledged to introduce medical malpractice , education and tax code reform and to save the threatened U.S. Social Security system . IN DT NN , PRP VBD TO VB JJ NN , NN CC NN NN NN CC TO VB DT JJ NNP NNP NNP NN . Responding to the President 's remarks in her own radio address , House Democratic Leader Nancy Pelosi said Democrats stand ready to work with Mr. Bush . VBG TO DT NNP POS NNS IN PRP$ JJ NN NN , NNP NNP NNP NNP NNP VBD NNPS VBP JJ TO VB IN NNP NNP . But the minority leader said they will fight the President 's plans on Social Security if he proposes to privatize the system or cut benefits . CC DT NN NN VBD PRP MD VB DT NNP POS NNS IN NNP NNP IN PRP VBZ TO VB DT NN CC NN NNS . Ms. Pelosi proposed a nationwide transportation construction bill that she said would create 1.7 million new jobs . NNP NNP VBD DT JJ NN NN NN IN PRP VBD MD VB CD CD JJ NNS . An independent polling firm in Venezuela says President Hugo Chavez is gaining support for a February 15 referendum that would abolish term limits and allow him to seek re-election indefinitely . DT JJ NN NN IN NNP VBZ NNP NNP NNP VBZ VBG NN IN DT NNP CD NN WDT MD VB NN NNS CC VB PRP TO VB NN RB . The Datanalisis firm says a survey of 1,300 people indicates that more than 51 percent of voters support a constitutional amendment to end term limits for all elected officials . DT NNP NN VBZ DT NN IN CD NNS VBZ IN JJR IN CD NN IN NNS VBP DT JJ NN TO VB NN NNS IN DT VBN NNS . Last month , another Datanalisis poll put support for President Chavez 's proposal at below 40 percent . JJ NN , DT NNP NN VBD NN IN NNP NNP POS NN IN IN CD NN . The current constitution bans the president from running again when his term ends in 2012 . DT JJ NN VBZ DT NN IN VBG RB WRB PRP$ NN VBZ IN CD . In late 2007 , voters narrowly rejected a package of measures including one that would have eliminated presidential term limits . IN JJ CD , NNS RB VBD DT NN IN NNS VBG CD WDT MD VB VBN JJ NN NNS . In a speech at that time , Mr. Chavez said the defeat was only ' for now ' and that he would continue his battle to build socialism . IN DT NN IN DT NN , NNP NNP VBD DT NN VBD RB `` IN RB `` CC IN PRP MD VB PRP$ NN TO VB NN . Mr. Chavez was first elected in 1998 . NNP NNP VBD JJ VBN IN CD . He won approval for a new constitution the following year . PRP VBD NN IN DT JJ NN DT JJ NN . Georgian President Mikhail Saakashvili is expected in Kiev Friday to take part in a New Year 's Eve celebration rally with Ukraine 's apparent president-elect Viktor Yushchenko and his supporters . JJ NNP NNP NNP VBZ VBN IN NNP NNP TO VB NN IN DT NNP NNP POS NNP NN NN IN NNP POS JJ JJ NNP NNP CC PRP$ NNS . The two men , who have warm personal ties , will ring in the new year together , days after Ukraine 's Central Election Commission declared Mr. Yushchenko the winner of last Sunday 's runoff election . DT CD NNS , WP VBP JJ JJ NNS , MD VB IN DT JJ NN RB , NNS IN NNP POS NNP NNP NNP VBD NNP NNP DT NN IN JJ NNP POS NN NN . Mr. Saakashvili came to power in January after accusing his country 's government of electoral fraud and mounting a protest movement that forced then-Georgian leader Eduard Shevardnadze out of power . NNP NNP VBD TO NN IN NNP IN VBG PRP$ NN POS NN IN JJ NN CC VBG DT NN NN WDT VBD JJ NN NNP NNP IN IN NN . Mr. Yushchenko 's supporters have cited Mr. Saakashvili 's ' rose revolution ' as an inspiration for their own movement . NNP NNP POS NNS VBP VBN NNP NNP POS `` VBD NN `` IN DT NN IN PRP$ JJ NN . Meanwhile , Ukraine 's Central Election Commission has rejected complaints of election fraud filed by Kremlin-backed Prime Minister Viktor Yanukovych , who ran against Mr. Yushchenko . RB , NNP POS NNP NNP NNP VBZ VBN NNS IN NN NN VBN IN VBN NNP NNP NNP NNP , WP VBD IN NNP NNP . But a spokesman for the prime minister says he will not concede the election . CC DT NN IN DT JJ NN VBZ PRP MD RB VB DT NN . An influential Iranian cleric is calling on Muslim nations to help Lebanon 's Hezbollah guerrillas in their fight against Israel . DT JJ JJ NN VBZ VBG IN NNP NNS TO VB NNP POS NNP NNS IN PRP$ NN IN NNP . Ayatollah Ahmad Jannati , who heads the powerful Guardian Council , told the Iranian Students News Agency Tuesday that he wants Muslims worldwide to provide arms for Hezbollah , as well political and financial support for the militants . NNP NNP NNP , WP VBZ DT JJ NNP NNP , VBD DT JJ NNP NNP NNP NNP IN PRP VBZ NNPS VBP TO VB NNS IN NNP , RB RB JJ CC JJ NN IN DT NNS . Israel , the United States and allied Western states accuse Syria and Iran of supporting Hezbollah with arms and cash . NNP , DT NNP NNPS CC JJ JJ NNS VBP NNP CC NNP IN VBG NNP IN NNS CC NN . Iran says it provides only moral and diplomatic support for the Shi'ite Islamic group . NNP VBZ PRP VBZ RB JJ CC JJ NN IN DT NNP NNP NN . The Olympic torch relay has reached Turin in northern Italy , where the 20th Olympic Winter Games open Friday . DT JJ NN NN VBZ VBN NNP IN JJ NNP , WRB DT JJ NNP NNP NNPS VBP NNP . The Olympic flame was carried by more than 10,000 torchbearers in a 64-day journey that covered 11,300 kilometers . DT JJ NN VBD VBN IN JJR IN CD NNS IN DT JJ NN WDT VBD CD NNS . The flame was lit at Olympia in Greece two months ago . DT NN VBD VBN IN NNP IN NNP CD NNS RB . Shortly before midday local time Thursday , the torch entered Turin through the Piazza Massaua . RB IN NN JJ NN NNP , DT NN VBD NNP IN DT NNP NNP . It was received by the City Police Band before being carried to the city center . PRP VBD VBN IN DT NNP NNP NNP IN VBG VBN TO DT NN NN . Turin-born Livio Berruti , the 200-meter gold medalist at the 1960 Olympics , will light the cauldron in Piazza Palazzo di Citta . JJ NNP NNP , DT JJ NN NN IN DT CD NNPS , MD VB DT NN IN NNP NNP NNP NNP . But the identity of person who will light the Olympic cauldron on Friday remains a tightly guarded secret . CC DT NN IN NN WP MD VB DT NNP NN IN NNP VBZ DT RB VBN NN . The games end February 26 . DT NNS VBP NNP CD . Togo 's election commission says ruling party candidate Faure Gnassingbe is the winner of Sunday 's presidential election . NNP POS NN NN VBZ VBG NN NN NNP NNP VBZ DT NN IN NNP POS JJ NN . The commission chief ( Kissem Tchangai-Walla ) says Mr. Gnassingbe , son of the late longtime leader Gnassingbe Eyadema , won with just over 60 percent of votes cast . DT NN NN LRB NNP NNP RRB VBZ NNP NNP , NN IN DT JJ JJ NN NNP NNP , VBD IN RB IN CD NN IN NNS VBN . Minutes after the announcement , angry opposition youths poured onto the streets of Togo 's capital , Lome , setting up burning barricades , throwing rocks and attacking cars . NNS IN DT NN , JJ NN NNS VBD IN DT NNS IN NNP POS NN , NNP , VBG RP NN NNS , VBG NNS CC VBG NNS . Street violence and allegations of fraud on both sides marred Sunday 's election , which was organized under pressure by West African leaders after the military briefly installed Mr. Gnassingbe following his father 's death in February . NN NN CC NNS IN NN IN DT NNS VBD NNP POS NN , WDT VBD VBN IN NN IN JJ JJ NNS IN DT JJ RB VBD NNP NNP VBG PRP$ NN POS NN IN NNP . According to the electoral commission , opposition candidate Emmanual Akitani-Bob won just over 38 percent of the vote . VBG TO DT JJ NN , NN NN NNP NNP VBD RB IN CD NN IN DT NN . The third candidate , Harry Olympio , came in last with under one-percent ( 0.55 ) . DT JJ NN , NNP NNP , VBD IN JJ IN IN JJ LRB CD RRB . A convoy of dozens of trucks transporting a massive oil drilling machine arrived Friday at the site of the San Jose gold and copper mine in Chile , where 33 miners are trapped . DT NN IN NNS IN NNS VBG DT JJ NN NN NN VBD NNP IN DT NN IN DT NNP NNP NN CC NN NN IN NNP , WRB CD NNS VBP VBN . The drill is the third one being employed to try to rescue the miners , who have now been underground for 36 days . DT NN VBZ DT JJ CD VBG VBN TO VB TO VB DT NNS , WP VBP RB VBN JJ IN CD NNS . It has been labeled ' Plan C ' and it is hoped that it will speed the rescue effort . PRP VBZ VBN VBN `` NNP NNP `` CC PRP VBZ VBN IN PRP MD VB DT NN NN . However , freedom for the trapped miners is likely to still be months away . RB , NN IN DT JJ NNS VBZ JJ TO RB VB NNS RB . The 33 men were trapped by a mine cave-in on August 5 . DT CD NNS VBD VBN IN DT NN NN IN NNP CD . But it was not until August 22 that they were discovered alive . CC PRP VBD RB IN NNP CD IN PRP VBD VBN JJ . Rescuers have been sending food , medicine and relatives ' letters through a chute to where the miners are located , 700 meters below the surface . NNS VBP VBN VBG NN , NN CC NNS POS NNS IN DT NN IN WRB DT NNS VBP VBN , CD NNS IN DT NN . A White House report has called for changes in the government 's response to disasters such as Hurricane Katrina . DT NNP NNP NN VBZ VBN IN NNS IN DT NN POS NN TO NNS JJ IN NNP NNP . The report , by domestic security adviser Frances Townsend , says 11 reforms are urgently needed before the start of a new hurricane season in June . DT NN , IN JJ NN NN NNP NNP , VBZ CD NNS VBP RB VBN IN DT NN IN DT JJ NN NN IN NNP . President Bush discussed the report with his cabinet Thursday , saying the reforms will help the government be better prepared for future disasters . NNP NNP VBD DT NN IN PRP$ NN NNP , VBG DT NNS MD VB DT NN VB RB VBN IN JJ NNS . The changes include improved coordination with military officials during relief operations , a review of local evacuation plans and getting help more quickly to disaster victims . DT NNS VBP VBN NN IN JJ NNS IN NN NNS , DT NN IN JJ NN NNS CC VBG NN RBR RB TO NN NNS . The report also found flaws in the government 's response to Hurricane Katrina last year , such as failures in disaster management and planning . DT NN RB VBD NNS IN DT NN POS NN TO NNP NNP JJ NN , JJ IN NNS IN NN NN CC NN . Earlier this month , a congressional investigation blamed failures at all levels of government for the suffering and loss of life in the Gulf Coast storm . RBR DT NN , DT JJ NN VBD NNS IN DT NNS IN NN IN DT NN CC NN IN NN IN DT NNP NNP NN . Typhoon Longwang has hit mainland China after pounding Taiwan Sunday , where it left one person dead and disrupted flights and electricity . NN NNP VBZ VBN JJ NNP IN VBG NNP NNP , WRB PRP VBD CD NN JJ CC VBD NNS CC NN . Officials say it hit China 's Fujian province with strong winds and heavy rains . NNS VBP PRP VBD NNP POS JJ NN IN JJ NNS CC JJ NNS . More than 3,00,000 people were evacuated . JJR IN CD NNS VBD VBN . In Taiwan , a 60-year-old man died after he was hit by flying debris . IN NNP , DT JJ NN VBD IN PRP VBD VBN IN VBG NN . A woman is missing and feared dead after being washed away by flash floods in the central town of Hoping . DT NN VBZ VBG CC VBD JJ IN VBG VBN RB IN NN NNS IN DT JJ NN IN NNP . And 46 people were injured during the typhoon , most by flying debris . CC CD NNS VBD VBN IN DT NN , JJS IN VBG NN . European Union representatives are traveling to the Middle East Sunday in hopes of persuading Israeli and Palestinian leaders to move toward a humanitarian truce in the Gaza Strip . NNP NNP NNS VBP VBG TO DT NNP NNP NNP IN NNS IN VBG JJ CC JJ NNS TO VB IN DT JJ NN IN DT NNP NNP . The EU says it is sending Czech Foreign Minister Karel Schwarzenburg along with the EU 's external relations commissioner and Schwarzenburg 's French and Swedish counterparts . DT NNP VBZ PRP VBZ VBG JJ NNP NNP NNP NNP IN IN DT NNP POS JJ NNS NN CC NNP POS JJ CC JJ NNS . It says the team will visit Egypt today before meeting with Israel 's Prime Minister Ehud Olmert and President Shimon Peres in Jerusalem on Monday . PRP VBZ DT NN MD VB NNP NN IN VBG IN NNP POS NNP NNP NNP NNP CC NNP NNP NNP IN NNP IN NNP . The team will then go to the West Bank town of Ramallah and finish up its Middle East trip in Jordan on Tuesday . DT NN MD RB VB TO DT NNP NNP NN IN NNP CC VB RP PRP$ NNP NNP NN IN NNP IN NNP . The EU says French President Nicolas Sarkozy will also attend the meeting in Ramallah with Palestinian President Mahmoud Abbas . DT NNP VBZ JJ NNP NNP NNP MD RB VB DT NN IN NNP IN JJ NNP NNP NNP . Mr. Sarkozy also plans to visit Israel , Egypt , Syria and Lebanon this week . NNP NNP RB VBZ TO VB NNP , NNP , NNP CC NNP DT NN . The European Union is the biggest foreign aid donor to the Palestinian territories . DT NNP NNP VBZ DT JJS JJ NN NN TO DT JJ NNS . France 's interior minister says at least 10 French citizens are in Iraq ready to become suicide bombers . NNP POS JJ NN VBZ IN JJS CD JJ NNS VBP IN NNP JJ TO VB NN NNS . Nicolas Sarkozy told France-3 television Monday that French intelligence has lost track of at least 10 young Frenchmen who have gone to Iraq . NNP NNP VBD JJ NN NNP IN JJ NN VBZ VBN NN IN IN JJS CD JJ NNS WP VBP VBN TO NNP . He said 10 others have died in combat or suicide bombings or are prisoners of the U.S. led coalition . PRP VBD CD NNS VBP VBN IN NN CC NN NNS CC VBP NNS IN DT NNP VBD NN . France has no soldiers in Iraq . NNP VBZ DT NNS IN NNP . Mr. Sarkozy defended the government 's planned new anti-terrorism measures , saying the risk of an attack in France is very high . NNP NNP VBD DT NN POS JJ JJ NN NNS , VBG DT NN IN DT NN IN NNP VBZ RB JJ . The new measures include more video surveillance on the streets and public places , and increased monitoring of overseas travelers . DT JJ NNS VBP RBR NN NN IN DT NNS CC JJ NNS , CC VBN NN IN JJ NNS . Mr. Sarkozy said a French citizen who suddenly goes to Afghanistan for three months should account for his travels . NNP NNP VBD DT JJ NN WP RB VBZ TO NNP IN CD NNS MD VB IN PRP$ NNS . The United Nations has certified the list of registered voters in the Ivory Coast ahead of next month 's presidential elections . DT NNP NNP VBZ VBN DT NN IN JJ NNS IN DT NNP NNP RB IN JJ NN POS JJ NNS . On Friday , U.N. representative Choi Youn-jin called the voter list ' fair , solid and balanced ' . IN NNP , NNP NN NNP NNP VBD DT NN NN `` JJ , JJ CC JJ `` . The Ivory Coast presidential election is set for October 31 . DT NNP NNP JJ NN VBZ VBN IN NNP CD . The election has been postponed multiple times during the past five years due in part to disputes about the nationality of names listed on the official voters ' list . DT NN VBZ VBN VBN JJ NNS IN DT JJ CD NNS JJ IN NN TO NNS IN DT NN IN NNS VBN IN DT JJ NNS POS NN . The civil war that has spilt the country for most of the decade centers around land reform and grounds for citizenship , in a nation of migrant workers helping the world 's largest producer and exporter of cocoa beans . DT JJ NN WDT VBZ VBN DT NN IN JJS IN DT NN NNS IN NN NN CC NNS IN NN , IN DT NN IN JJ NNS VBG DT NN POS JJS NN CC NN IN NN NNS . The U.S. Environmental Protection Agency celebrated Earth Day this week in Washington ( 22 April ) by showcasing environmentally friendly new designs that could be the wave of the future . DT NNP NNP NNP NNP VBD NNP NNP DT NN IN NNP LRB CD NNP RRB IN VBG RB JJ JJ NNS WDT MD VB DT NN IN DT NN . Producer Zulima Palacio prepared this report . NN NNP NNP VBD DT NN . A prominent human rights group says Hamas militants committed war crimes when they launched rocket attacks against Israel . DT JJ JJ NNS NN VBZ NNP NNS VBN NN NNS WRB PRP VBD NN NNS IN NNP . A Human Rights Watch spokesman said Hamas rocket attacks that targeted Israeli citizens were ' unlawful and unjustifiable ' . DT NNP NNP NNP NN VBD NNP NN NNS WDT VBD JJ NNS VBD `` JJ CC JJ `` . A new report released by the group says Hamas militants fired rockets that placed about 8,00,000 Israeli civilians at risk and killed two Israeli girls . DT JJ NN VBN IN DT NN VBZ NNP NNS VBD NNS WDT VBD IN CD JJ NNS IN NN CC VBD CD JJ NNS . It also says militants that launched rockets from densely populated areas placed Gaza civilians at risk of Israeli counter strikes . PRP RB VBZ NNS WDT VBD NNS IN RB JJ NNS VBN NNP NNS IN NN IN JJ NN NNS . The report focuses on Hamas tactics used just before and during Israel 's three-week offensive in Gaza , from last November to mid-January . DT NN VBZ IN NNP NNS VBN RB RB CC IN NNP POS JJ NN IN NNP , IN JJ NNP TO NNP . Human Rights Watch and other rights groups have repeatedly accused Israel of committing war crimes . NNP NNP NNP CC JJ NNS NNS VBP RB VBN NNP IN VBG NN NNS . At least 1,300 Palestinians and 13 Israelis were killed during the Israeli offensive . IN JJS CD NNS CC CD NNS VBD VBN IN DT JJ NN . Some of the latest secret U.S. cables released by WikiLeaks say Saudi Arabia proposed deploying an Arab military force backed by the U.N. , U.S. and NATO to crush Hezbollah forces in Lebanon . DT IN DT JJS JJ NNP NNS VBN IN NNS VBP NNP NNP VBD VBG DT JJ JJ NN VBN IN DT NNP , NNP CC NNP TO VB NNP NNS IN NNP . According to the cables , Saudi Foreign Minister Saud al-Faisal said in May 2008 that what he called a ' security response ' was needed to prevent the militant group - and its patron , Iran - from taking power in the Lebanese capital , Beirut . VBG TO DT NNS , NNP NNP NNP NNP NNP VBD IN NNP CD IN WP PRP VBD DT `` NN NN `` VBD VBN TO VB DT JJ NN : CC PRP$ NN , NNP : IN VBG NN IN DT JJ NN , NNP . The exchange between al-Faisal and U.S. diplomat David Satterfield took place days after Hezbollah had briefly seized control of large sections of Beruit during fighting with pro-government supporters . DT NN IN JJ CC NNP NN NNP NNP VBD NN NNS IN NNP VBD RB VBN NN IN JJ NNS IN NNP IN VBG IN JJ NNS . Al-Faisal told Satterfield that only the Lebanese prime minister , Jordan , Egypt and the Arab League were aware of the plan . NNP VBD NNP IN RB DT JJ JJ NN , NNP , NNP CC DT NNP NNP VBD JJ IN DT NN . The U.S. responded by questioning the political and military feasibility of the plan . DT NNP VBD IN VBG DT JJ CC JJ NN IN DT NN . The U.S. space agency , NASA , is preparing to put a long-armed lander on the icy north pole of Mars to search for water and possible signs of life . DT NNP NN NN , NNP , VBZ VBG TO VB DT JJ NN IN DT NN NN NN IN NNP TO VB IN NN CC JJ NNS IN NN . Scientists working on the Phoenix Mars project said Thursday they plan to launch the $ 386 million spacecraft in August 2007 and land 10 months later . NNS VBG IN DT NNP NNP NN VBD NNP PRP VBP TO VB DT $ CD CD NN IN NNP CD CC NN CD NNS RB . The probe will use its long robotic arm to dig into the ice and terrain to gather soil samples near the arctic surface . DT NN MD VB PRP$ JJ JJ NN TO VB IN DT NN CC NN TO VB NN NNS IN DT JJ NN . Scientists say ice is interesting because if there is any life on Mars , it is most likely to be found near water . NNS VBP NN VBZ JJ IN IN EX VBZ DT NN IN NNP , PRP VBZ RBS JJ TO VB VBN IN NN . An earlier mission called Mars Odyssey first detected icy soil at the north pole of Mars in 2002 . DT JJR NN VBN NNP NNP RB VBD NN NN IN DT JJ NN IN NNP IN CD . The U.S. military in Iraq says coalition forces have captured a suspected terrorist with close ties to Iran 's elite Quds force . DT NNP NN IN NNP VBZ NN NNS VBP VBN DT JJ JJ IN JJ NNS TO NNP POS NN VBZ NN . A military statement Friday said the suspect was detained in a raid Thursday near Baqubah , and that he allegedly facilitated the transport of weapons and personnel from Iran to Iraq . DT JJ NN NNP VBD DT NN VBD VBN IN DT NN NNP IN NNP , CC IN PRP RB VBD DT NN IN NNS CC NNS IN NNP TO NNP . The statement said the suspect also is believed to have facilitated the flow of sophisticated roadside bombs into Iraq from Iran to be used against coalition forces . DT NN VBD DT NN RB VBZ VBN TO VB VBN DT NN IN JJ NN NNS IN NNP IN NNP TO VB VBN IN NN NNS . The bombs - known as explosively formed projectiles or EFPs - can penetrate armor . DT NNS : VBN IN RB VBN NNS CC NNS : MD VB NN . Iran has denied U.S. charges that it is providing weapons and training to Shi'ite militants in Iraq . NNP VBZ VBN NNP NNS IN PRP VBZ VBG NNS CC NN IN NNP NNS IN NNP . Iran and the U.S. discussed Iraq 's security situation in May , during the highest-level talks between the two countries in nearly 30 years . NNP CC DT NNP VBD NNP POS NN NN IN NNP , IN DT JJ NNS IN DT CD NNS IN RB CD NNS . Both sides have said they are ready for a second round of talks on Iraq . DT NNS VBP VBN PRP VBP JJ IN DT JJ NN IN NNS IN NNP . Venezuelan President Hugo Chavez has arrived in Syria for a three-day diplomatic visit . JJ NNP NNP NNP VBZ VBN IN NNP IN DT JJ JJ NN . Syrian state media say President Bashar al-Assad met Mr. Chavez Tuesday at the airport in Damascus . JJ NN NNS VBP NNP NNP NNP VBD NNP NNP NNP IN DT NN IN NNP . The two leaders are expected to hold talks on bilateral cooperation . DT CD NNS VBP VBN TO VB NNS IN JJ NN . The Venezuelan president has built close ties with Syria , Iran and other countries in the Middle East , while relations have grown tense with Israel . DT JJ NN VBZ VBN JJ NNS IN NNP , NNP CC JJ NNS IN DT NNP NNP , IN NNS VBP VBN NN IN NNP . Earlier this month , Israel recalled its ambassador to Venezuela after Mr. Chavez said that Israeli attacks against Hezbollah in Lebanon were ' genocide . ' RBR DT NN , NNP VBD PRP$ NN TO NNP IN NNP NNP VBD IN JJ NNS IN NNP IN NNP VBD `` NN . `` Previously , President Chavez withdrew Venezuela 's ambassador to Israel to show what he called his ' indignation ' over the Israeli military offensive in Lebanon . RB , NNP NNP VBD NNP POS NN TO NNP TO VB WP PRP VBD PRP$ `` NN `` IN DT JJ JJ NN IN NNP . The World Health Organization estimates that between five and 10 percent of us suffer from depression at any given time . DT NNP NNP NNP VBZ IN IN CD CC CD NN IN PRP VBP IN NN IN DT VBN NN . But fewer than a third of those with depression receive appropriate care . CC JJR IN DT NN IN DT IN NN VBP JJ NN . In the United States , more than 21 million people suffer from depression . IN DT NNP NNPS , JJR IN CD CD NNS VBP IN NN . For millions , no treatment works . IN NNS , DT NN VBZ . Now , doctors are trying an experimental technique that shows promise in treating some difficult cases of depression . RB , NNS VBP VBG DT JJ NN WDT VBZ NN IN VBG DT JJ NNS IN NN . VOA 's Carol Pearson reports . NNP POS NNP NNP VBZ . The agency that monitors daily images of the Arctic ice pack reports the ice in early September reached its minimum but did not retreat as much this year as last . DT NN WDT VBZ JJ NNS IN DT NNP NN NN VBZ DT NN IN JJ NNP VBD PRP$ NN CC VBD RB VB RB RB DT NN IN JJ . But scientists warn that in about the last decade , the world 's sea ice has melted faster than expected . CC NNS VBP IN IN IN DT JJ NN , DT NN POS NN NN VBZ VBN RBR IN VBN . The National Snow and Ice Data Center in Boulder , Colorado , which monitors the daily updates of NASA 's satellite images , says the northern winter ice now has begun to re-form . DT NNP NNP CC NNP NNP NNP IN NNP , NNP , WDT VBZ DT JJ NNS IN NNP POS NN NNS , VBZ DT JJ NN NN RB VBZ VBN TO VB . VOA 's Paul Sisco spoke with NASA Ice Science Project chief scientist Jay Zwally about this year 's near record summer melt . NNP POS NNP NNP VBD IN NNP NNP NNP NNP NN NN NNP NNP IN DT NN POS JJ NN NN NN . Venezuelan President Hugo Chavez is in Havana for talks with Cuban leader Fidel Castro . JJ NNP NNP NNP VBZ IN NNP IN NNS IN JJ NN NNP NNP . The two close allies met at the Palace of the Revolution Tuesday . DT CD JJ NNS VBD IN DT NNP IN DT NN NNP . Their agenda was not made public , but experts say they likely discussed Cuba 's energy needs . PRP$ NN VBD RB VBN JJ , CC NNS VBP PRP RB VBD NNP POS NN NNS . Venezuela provides about one-third of Cuba 's oil . NNP VBZ IN NN IN NNP POS NN . Mr. Castro has appeared in public in a wheelchair since an accidental fall in October . NNP NNP VBZ VBN IN NN IN DT NN IN DT JJ NN IN NNP . But he was shown standing next to Mr. Chavez in an official photo taken when he welcomed him at the Havana airport late Monday . CC PRP VBD VBN VBG JJ TO NNP NNP IN DT JJ NN VBN WRB PRP VBD PRP IN DT NNP NN JJ NNP . The two countries have close political , economic and cultural ties . DT CD NNS VBP JJ JJ , JJ CC JJ NNS . Havana has sent hundreds of health care workers and teachers to its South American ally . NNP VBZ VBN NNS IN NN NN NNS CC NNS TO PRP$ JJ JJ NN . Police in South Korea have arrested a man and six women who they say used the Internet to buy and sell human eggs , in violation of the country 's bioethics law . NNS IN NNP NNP VBP VBN DT NN CC CD NNS WP PRP VBP VBD DT NN TO VB CC VB JJ NNS , IN NN IN DT NN POS NNS NN . Seoul police arrested the man Saturday . NNP NN VBN DT NN NNP . They say he is in his late 20s and identified him only as Kim . PRP VBP PRP VBZ IN PRP$ JJ NNS CC VBD PRP RB IN NNP . Police say the women sold or bought the eggs , using web sites created by Mr. Kim to arrange the deals . NNS VBP DT NNS VBD CC VBD DT NNS , VBG NN NNS VBN IN NNP NNP TO VB DT NNS . Police said the deals involved thousands of dollars . NNS VBD DT NNS VBN NNS IN NNS . Under South Korean law , buyers and sellers of human eggs or sperm face up to three years in prison . IN JJ JJ NN , NNS CC NNS IN JJ NNS CC NN VBP RP TO CD NNS IN NN . The broker faces two years . DT NN VBZ CD NNS . An Indonesian newspaper is reporting that Indonesian police have arrested a man believed to have played a key role in September 's car bombing outside the Australian Embassy in Jakarta . DT JJ NN VBZ VBG IN JJ NNS VBP VBN DT NN VBN TO VB VBN DT JJ NN IN NNP POS NN VBG IN DT JJ NN IN NNP . Indonesia 's leading newspaper , Kompas , quotes police sources as saying Iwan Darmawan , also known as Rois , was arrested two weeks ago on Java island . NNP POS JJ NN , NNP , VBZ NN NNS IN VBG NNP NNP , RB VBN IN NNP , VBD VBN CD NNS RB IN NNP NN . The newspaper quoted the police sources as saying Mr. Darmawan is accused of having a key planning role in the September 9 embassy attack , which killed 10 people . DT NN VBD DT NN NNS IN VBG NNP NNP VBZ VBN IN VBG DT JJ NN NN IN DT NNP CD NN NN , WDT VBD CD NNS . He is also accused of being involved in the 2002 Bali bombings , as well as last year 's car bombing attack on a Jakarta luxury hotel . PRP VBZ RB VBN IN VBG VBN IN DT CD NNP NNS , RB RB IN JJ NN POS NN VBG NN IN DT NNP NN NN . Police have said two Malaysian militants , who remain at large , are the masterminds of the embassy attack . NNS VBP VBN CD JJ NNS , WP VBP IN JJ , VBP DT NNS IN DT NN NN . A Sri Lankan aid agency with ties to Tamil Tiger rebels says two of 10 reportedly kidnapped employees have returned to their families , but that eight others are still missing . DT NNP NNP NN NN IN NNS TO NNP NNP NNS VBZ CD IN CD RB VBN NNS VBP VBN TO PRP$ NNS , CC IN CD NNS VBP RB VBG . The Tamil Rehabilitation Organization says five aid workers disappeared Tuesday after leaving Batticaloa district by vehicle . DT NNP NNP NNP VBZ CD NN NNS VBD NNP IN VBG NNP NN IN NN . It says a day earlier , five other staff members traveling from the same district also were kidnapped . PRP VBZ DT NN RBR , CD JJ NN NNS VBG IN DT JJ NN RB VBD VBN . Agency officials say they are not sure exactly what happened because the two employees , both women , are too scared to talk . NNP NNS VBP PRP VBP RB JJ RB WP VBD IN DT CD NNS , DT NNS , VBP RB JJ TO VB . The rebels have accused Sri Lankan authorities of being behind the abductions . DT NNS VBP VBN NNP NNP NNS IN VBG IN DT NNS . The authorities say the claims are untrue . DT NNS VBP DT NNS VBP JJ . After the first reported kidnapping , the rebels threatened to pull out of upcoming peace talks in Switzerland unless the government does more to protect Tamils . IN DT JJ JJ NN , DT NNS VBD TO VB IN IN VBG NN NNS IN NNP IN DT NN VBZ JJR TO VB NNS . Here are prices of some key commodities traded in New York : RB VBP NNS IN DT JJ NNS VBN IN NNP NNP : Crude oil for June delivery rose $ 0.7 Thursday , closing at $ 50.83 cents a barrel . JJ NN IN NNP NN VBD $ CD NNP , VBG IN $ CD NNS DT NN . Coffee for May delivery fell a bit more than two cents to close at $ 1.224 per pound . NNP IN NNP NN VBD DT NN RBR IN CD NNS TO VB IN $ CD IN NN . Cocoa for May delivery fell $ 16 to close at $ 1452 per ton . NNP IN NNP NN VBD $ CD TO VB IN $ CD IN NN . Copper for May delivery settled at $ 1.459 per pound , unchanged from yesterday . NN IN NNP NN VBD IN $ CD IN NN , JJ IN NN . Israeli doctors say the condition of former Prime Minister Ariel Sharon has deteriorated more than six months after he fell into a coma . JJ NNS VBP DT NN IN JJ NNP NNP NNP NNP VBZ VBN JJR IN CD NNS IN PRP VBD IN DT NN . A spokesman for the hospital treating Mr. Sharon says over the past two days , doctors have identified a deterioration in his kidney function and changes in brain tissue . DT NN IN DT NN VBG NNP NNP VBZ IN DT JJ CD NNS , NNS VBP VBN DT NN IN PRP$ NN NN CC NNS IN NN NN . The hospital in Tel Aviv says doctors are carrying out more tests to determine the appropriate treatment for Mr. Sharon . DT NN IN NNP NNP VBZ NNS VBP VBG RP JJR NNS TO VB DT JJ NN IN NNP NNP . He went into the coma after suffering a massive brain hemorrhage January 4 . PRP VBD IN DT NN IN VBG DT JJ NN NN NNP CD . Ukrainian President Viktor Yushchenko has visited eastern Ukraine , the stronghold of his election rival , former Prime Minister Viktor Yanukovych . JJ NNP NNP NNP VBZ VBN JJ NNP , DT NN IN PRP$ NN NN , JJ NNP NNP NNP NNP . Happy supporters and hostile opponents greeted the Ukrainian leader as he arrived in Donetsk Thursday for a brief visit . JJ NNS CC JJ NNS VBD DT JJ NN IN PRP VBD IN NNP NNP IN DT JJ NN . Mr. Yushchenko said he was in the mining region for a friendly visit , decried the economic problems facing the area , and pledged to help improve the lives of citizens . NNP NNP VBD PRP VBD IN DT NN NN IN DT JJ NN , VBD DT JJ NNS VBG DT NN , CC VBD TO VB VB DT NNS IN NNS . He also introduced the region 's new governor , Vadym Chuprun . PRP RB VBD DT NN POS JJ NN , NNP NNP . Most area residents backed Mr. Yanukovych in last year 's presidential election . JJS NN NNS VBD NNP NNP IN JJ NN POS JJ NN . Some politicians even suggested autonomy for eastern Ukraine as the country dealt with months of political uncertainty before and after a flawed November presidential election . DT NNS RB VBD NN IN JJ NNP IN DT NN VBD IN NNS IN JJ NN IN CC IN DT JJ NNP JJ NN . Mr. Yushchenko went on to win a court-ordered re-vote in December , but was not officially declared the winner until January , while the Supreme Court reviewed election complaints from Mr. Yanukovych . NNP NNP VBD IN TO VB DT JJ NN IN NNP , CC VBD RB RB VBD DT NN IN NNP , IN DT NNP NNP VBN NN NNS IN NNP NNP . Turkey has warned France that ties between the two countries will suffer what it called ' irreparable damage ' if French lawmakers approve a measure making denial of the Armenian genocide 90 years ago a criminal offense . NNP VBZ VBN NNP IN NNS IN DT CD NNS MD VB WP PRP VBD `` JJ NN `` IN JJ NNS VBP DT NN VBG NN IN DT JJ NN CD NNS IN DT JJ NN . A Turkish Foreign Ministry spokesman , Namik Tan , told reporters in Ankara his country 's views on the issue are being conveyed to French officials . DT JJ NNP NNP NN , NNP NNP , VBD NNS IN NNP PRP$ NN POS NNS IN DT NN VBP VBG VBN TO JJ NNS . The proposed bill would provide fines and imprisonment for denying that Armenians in the Ottoman Empire were victims of genocide during World War One If adopted , the bill would follow a 2001 French parliament decision that the deaths of one and a half million Armenians amounted to genocide . DT JJ NN MD VB NNS CC NN IN VBG DT NNS IN DT NNP NNP VBD NNS IN NN IN NNP NNP CD IN VBN , DT NN MD VB DT CD JJ NN NN IN DT NNS IN CD CC DT NN CD NNS VBD IN NN . That vote infuriated Turkey , which acknowledges the deaths of hundreds of thousands of Armenians but insists that as many Turks also died in civil strife and a Russian-backed Armenian uprising against Ottoman rule . DT NN VBD NNP , WDT VBZ DT NNS IN NNS IN NNS IN NNS CC VBZ IN IN JJ NNS RB VBD IN JJ NN CC DT JJ JJ NN IN NNP NN . Hundreds of Cubans lined up outside the Spanish embassy in Havana Monday , hoping to apply for citizenship based on their Spanish ancestry . NNS IN NNS VBD RP IN DT JJ NN IN NNP NNP , VBG TO VB IN NN VBN IN PRP$ JJ NN . A law now in effect in Spain offers citizenship to the descendants of Spaniards who fled the country for political reasons . DT NN RB IN NN IN NNP VBZ NN TO DT NNS IN NNS WP VBD DT NN IN JJ NNS . The measure targets families who emigrated during and after the Spanish Civil War and the ensuing dictatorship of General Francisco Franco . DT NN VBZ NNS WP VBD IN CC IN DT JJ NNP NNP CC DT VBG NN IN NNP NNP NNP . Those accepted do not have to renounce their current citizenship . DT VBN VBP RB VB TO VB PRP$ JJ NN . But citizens of communist Cuba must get permission from the Havana government to travel to Spain if they are accepted for Spanish citizenship . CC NNS IN JJ NNP MD VB NN IN DT NNP NN TO VB TO NNP IN PRP VBP VBN IN JJ NN . Officials estimate that some 5,00,000 people living in Latin American countries such as Cuba , Argentina , Mexico , Venezuela , Chile and Uruguay are eligible for citizenship . NNS VBP IN DT CD NNS VBG IN JJ JJ NNS JJ IN NNP , NNP , NNP , NNP , NNP CC NNP VBP JJ IN NN . Argentina alone is expected to have some 3,00,000 eligible beneficiaries . NNP RB VBZ VBN TO VB DT CD JJ NNS . People in Bangladesh are bracing for a cyclone that will likely make landfall in the next few days . NNS IN NNP VBP VBG IN DT NN WDT MD RB VB NN IN DT JJ JJ NNS . Cyclone Nargis is about 1,000 kilometers from the southeastern port city of Chittagong . NNP NNP VBZ IN CD NNS IN DT JJ JJ NN IN NNP . Meteorologists are warning the storm could become a powerful Category Four cyclone . NNS VBP VBG DT NN MD VB DT JJ NNP NNP NN . Authorities are telling residents to stay alert and be prepared to evacuate . NNS VBP VBG NNS TO VB NN CC VB VBN TO VB . There is also concern the storm has the potential to damage a bumper rice crop , although the country 's Agriculture Ministry spokesman , Abdulla Al-Shahin , is denying reports officials have asked farmers to rush harvesting the rice . EX VBZ RB NN DT NN VBZ DT JJ TO VB DT NN NN NN , IN DT NN POS NNP NNP NN , NNP NNP , VBZ VBG NNS NNS VBP VBN NNS TO VB VBG DT NN . Farmers in Bangladesh have been in the fields harvesting the crop . NNP IN NNP VBP VBN IN DT NNS VBG DT NN . Completing the harvest could take another two weeks . VBG DT NN MD VB DT CD NNS . The country is still recovering from Cyclone Sidr , which hit last November , killing an estimated 3,500 people and leaving another two million homeless . DT NN VBZ RB VBG IN NNP NNP , WDT VBD JJ NNP , VBG DT JJ CD NNS CC VBG DT CD CD NN . The cyclone also destroyed roughly two million tons of rice . DT NN RB VBD RB CD CD NNS IN NN . China 's prime minister says his country is moving toward a more flexible foreign exchange rate , but that it will be done gradually . NNP POS JJ NN VBZ PRP$ NN VBZ VBG IN DT RBR JJ JJ NN NN , CC IN PRP MD VB VBN RB . Wen Jiabao spoke to reporters Wednesday after a meeting with European Union officials in The Hague , Netherlands . NNP NNP VBD TO NNS NNP IN DT NN IN NNP NNP NNS IN DT NNP , NNP . He said China plans to move away from its current system , which pegs the Chinese yuan to the U.S. dollar , and toward a free-floating exchange . PRP VBD NNP VBZ TO VB RB IN PRP$ JJ NN , WDT VBZ DT JJ NN TO DT NNP NN , CC IN DT JJ NN . But he said China will make the change on its own timetable , to preserve the nation 's economic stability . CC PRP VBD NNP MD VB DT NN IN PRP$ JJ NN , TO VB DT NN POS JJ NN . The United States and other nations have pressed China to end its fixed rate , saying it keeps the yuan 's value unfairly low , making Chinese goods cheaper than their competition in the global marketplace . DT NNP NNPS CC JJ NNS VBP VBN NNP TO VB PRP$ JJ NN , VBG PRP VBZ DT NN POS NN RB JJ , VBG JJ NNS JJR IN PRP$ NN IN DT JJ NN . The United Nations refugee agency says four armed men attacked one of its field offices in Darfur , shooting a guard in the leg . DT NNP NNP NN NN VBZ CD JJ NNS VBD CD IN PRP$ NN NNS IN NNP , VBG DT NN IN DT NN . Spokeswoman Jennifer Pagonis says no one else was hurt in the attack . NN NNP NNP VBZ DT NN RB VBD VBN IN DT NN . It occurred late Monday in Habila , in western Darfur . PRP VBD JJ NNP IN NNP , IN JJ NNP . She says the men stole communications equipment before leaving . PRP VBZ DT NNS VBP NNS NN IN VBG . It is unclear whether the attackers belonged to any of the rebel groups or government-backed militias active in the western Sudanese region . PRP VBZ JJ IN DT NNS VBD TO DT IN DT NN NNS CC JJ NNS JJ IN DT JJ JJ NN . Violence still plagues Darfur despite a recent peace agreement between the Sudanese government and Darfur rebel groups . NN RB VBZ NNP IN DT JJ NN NN IN DT JJ NN CC NNP NN NNS . Some rebels have refused to sign the accord . DT NNS VBP VBN TO VB DT NN . It is designed to end more than three years of fighting that has killed more than 1,80,000 people . PRP VBZ VBN TO VB JJR IN CD NNS IN VBG DT VBZ VBN JJR IN CD NNS . A new report from the International Monetary Fund urges officials in Latin America to help the poor cope with rising food prices to help fend off social unrest . DT JJ NN IN DT NNP NNP NNP VBZ NNS IN NNP NNP TO VB DT NN VB IN VBG NN NNS TO VB VB RP JJ NN . Friday 's IMF report also says the region has been helped by a boom in prices for the commodities that it sells , helping these nations weather an economic downturn in the United States , a key trading partner . NNP POS NNP NN RB VBZ DT NN VBZ VBN VBN IN DT NN IN NNS IN DT NNS IN PRP VBZ , VBG DT NNS VBP DT JJ NN IN DT NNP NNPS , DT JJ NN NN . But the report also predicts that commodity prices will decline and that Latin America 's economic growth rate will slow by two percent , to just 3.6 percent in 2009 . CC DT NN RB VBZ IN NN NNS MD VB CC IN NNP NNP POS JJ NN NN MD VB IN CD NN , TO RB CD NN IN CD . The slowing growth rate may help policy makers in the region continue their relatively successful recent efforts to contain inflation . DT VBG NN NN MD VB NN NNS IN DT NN VBP PRP$ RB JJ JJ NNS TO VB NN . Tropical Storm Beta , the record 23rd storm of the Atlantic hurricane season , has strengthened since developing in the southwestern Caribbean late Wednesday . JJ NN NN , DT NN CD NN IN DT NNP NN NN , VBZ VBN IN VBG IN DT JJ NNP JJ NNP . The U.S. National Hurricane Center says Beta is expected to dump up to 25 centimeters of rain across western Panama , Costa Rica , northeastern Honduras , Nicaragua , and the Colombian islands of San Andres and Providencia . DT NNP NNP NNP NNP VBZ NN VBZ VBN TO VB RP TO CD NNS IN NN IN JJ NNP , NNP NNP , JJ NNP , NNP , CC DT JJ NNS IN NNP NNP CC NNP . At last report the storm was located 115 kilometers south-southeast of San Andres Island and about 260 kilometers east of Bluefields , Nicaragua . IN JJ NN DT NN VBD VBN CD NNS NN IN NNP NNP NNP CC IN CD NNS NN IN NNP , NNP . Forecasters say Beta is expected to continue slowly drifting north , bringing its center near San Andres on Friday . NNS VBP NN VBZ VBN TO VB RB VBG RB , VBG PRP$ NN IN NNP NNP IN NNP . Colombia has issued a hurricane warning for San Andres and Providencia . NNP VBZ VBN DT NN NN IN NNP NNP CC NNP . A hurricane watch is in effect for Nicaragua 's entire Caribbean coast . DT NN NN VBZ IN NN IN NNP POS JJ JJ NN . Tropical Storm Beta is not expected to threaten the United States . JJ NN NNP VBZ RB VBN TO VB DT NNP NNPS . The National Football League playoffs continue Saturday when the Pittsburgh Steelers host the New York Jets and Atlanta takes on Saint Louis . DT NNP NNP NNP NNS VBP NNP WRB DT NNP NNPS VBP DT NNP NNP NNPS CC NNP VBZ IN NNP NNP . The Jets are coming off last week 's 20-17 overtime win over the San Diego Chargers . DT NNPS VBP VBG RB JJ NN POS CD NN NN IN DT NNP NNP NNPS . Pittsburgh had last week off , and beat the Jets , 17-Jun , the last time the two teams played in December . NNP VBD JJ NN RB , CC VBD DT NNPS , CD , DT JJ NN DT CD NNS VBD IN NNP . Meanwhile , the Atlanta Falcons host a Saint Louis Rams team that is coming off a 27-20 win over the Seattle Seahawks . RB , DT NNP NNPS VBP DT NNP NNP NNP NN WDT VBZ VBG RP DT CD NN IN DT NNP NNP . The Falcons had a first-round bye and beat the Rams in their only meeting this year , 34-17 , at the Georgia Dome . DT NNPS VBD DT JJ NN CC VB DT NNPS IN PRP$ JJ NN DT NN , CD , IN DT NNP NNP . The playoffs continue Sunday when the reigning Super Bowl champion New England Patriots host the Indianapolis Colts , and the Philadelphia Eagles take on Minnesota . DT NNS VBP NNP WRB DT VBG NNP NNP NN NNP NNP NNPS NN DT NNP NNP , CC DT NNP NNPS VBP IN NNP . The United States has welcomed Ukraine 's decision to invalidate the results of a disputed presidential runoff election . DT NNP NNP VBZ VBN NNP POS NN TO VB DT NNS IN DT JJ JJ NN NN . White House spokesman Scott McClellan called Friday 's court ruling an important step toward a peaceful , democratic resolution that reflects the will of the people . NNP NNP NN NNP NNP VBD NNP POS NN VBG DT JJ NN IN DT JJ , JJ NN WDT VBZ DT NN IN DT NNS . Meanwhile , two top European officials are returning to Ukraine to help mediate the dispute . RB , CD JJ JJ NNS VBP VBG TO VB TO VB VB DT NN . The Organization for Security and Cooperation in Europe says its secretary general , Jan Kubis , will make his third such visit to Ukraine in a week , beginning Friday . DT NNP IN NNP CC NNP IN NNP VBZ PRP$ NN NN , NNP NNP , MD VB PRP$ JJ JJ NN TO NNP IN DT NN , VBG NNP . The OSCE says Mr. Kubis will seek ways the 55-nation group can help resolve Ukraine 's political situation . DT NNP VBZ NNP NNP MD VB NNS DT JJ NN MD VB VB NNP POS JJ NN . Lithuanian President Valdas Adamkus will also visit , for the third time in 10 days . JJ NNP NNP NNP MD RB VB , IN DT JJ NN IN CD NNS . Earlier , Russia 's lower house of parliament accused Western European institutions of aggravating tensions over the election . RB , NNP POS JJR NN IN NN VBD JJ JJ NNS IN VBG NNS IN DT NN . The presidents of Venezuela , Bolivia , and Argentina met Friday in the southern Bolivian town of Tarija . DT NNS IN NNP , NNP , CC NNP VBD NNP IN DT JJ JJ NN IN NNP . Venezuela 's Hugo Chavez , Bolivia 's Evo Morales , and Argentina 's Nestor Kirchner signed agreements to share the costs of energy production . NNP POS NNP NNP , NNP POS NNP NNPS , CC NNP POS NNP NNP VBD NNS TO VB DT NNS IN NN NN . They agreed to fund the construction of a gas-separation plant near Bolivia 's border with Argentina . PRP VBD TO VB DT NN IN DT NN NN IN NNP POS NN IN NNP . Mr. Chavez has been campaigning for more integration of the energy industry in South America . NNP NNP VBZ VBN VBG IN JJR NN IN DT NN NN IN NNP NNP . Bolivia is his last stop on a four-nation tour meant to promote South American energy production . NNP VBZ PRP$ JJ NN IN DT JJ NN VBN TO VB JJ JJ NN NN . The four nations on Chavez 's tour include Argentina , Uruguay , Ecuador , and Bolivia . DT CD NNS IN NNP POS NN VBP NNP , NNP , NNP , CC NNP . He announced intentions to buy as much as one-billion-dollars worth of Argentine bonds and guaranteed Uruguay access to Venezuelan oil for decades . PRP VBD NNS TO VB RB JJ IN JJ NN IN JJ NNS CC VBN NNP NN TO JJ NN IN NNS . Mr. Chavez has been lobbying to join the South American trade block Mercosur , which is comprised of Argentina , Brazil , Paraguay , and Uruguay . NNP NNP VBZ VBN VBG TO VB DT NNP NNP NN NN NNP , WDT VBZ VBN IN NNP , NNP , NNP , CC NNP . The United States and Britain have called for international pressure against Syria after a U.N. report implicated Syrian officials in the killing of former Lebanese Prime Minister Rafik Hariri . DT NNP NNPS CC NNP VBP VBN IN JJ NN IN NNP IN DT NNP NN VBD JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP . U.S. Secretary of State Condoleezza Rice and British Foreign Secretary Jack Straw made the appeal in a joint interview with British radio on Sunday . NNP NNP IN NNP NNP NNP CC JJ NNP NNP NNP NNP VBD DT NN IN DT JJ NN IN JJ NN IN NNP . Ms. Rice said a firm response is needed . NNP NNP VBD DT NN NN VBZ VBN . The U.N. report also said that Syrian officials gave FALSE testimony to investigators in the case . DT NNP NN RB VBD IN JJ NNS VBD JJ NN TO NNS IN DT NN . Syrian officials have denied the allegations . JJ NNS VBP VBN DT NNS . And Sunday , a key Syrian political group - National Progressive Front - rejected the U.N. report , saying it was based on testimony from people lacking credibility . CC NNP , DT JJ JJ JJ NN : NNP NNP NNP : VBD DT NNP NN , VBG PRP VBD VBN IN NN IN NNS VBG NN . Syria 's official news agency reported President Bashar al-Assad sent a message to members of the U.N. Security Council , which is expected to consider sanctions over the killing . NNP POS JJ NN NN VBD NNP NNP NNP VBD DT NN TO NNS IN DT NNP NNP NNP , WDT VBZ VBN TO VB NNS IN DT NN . The U.S. House of Representatives has narrowly passed a plan to cut federal spending by nearly $ 40 billion over the next five years . DT NNP NNP IN NNP VBZ RB VBN DT NN TO VB JJ NN IN RB $ CD CD IN DT JJ CD NNS . The bill includes cuts in health care and other social welfare programs . DT NN VBZ NNS IN NN NN CC JJ JJ NN NNS . Lawmakers approved the measure by a vote of 212-to-206 . NNS VBD DT NN IN DT NN IN CD . During the overnight session , the house also passed a $ 453 billion dollar defense bill by a vote of 308-to-106 . IN DT JJ NN , DT NN RB VBD DT $ CD CD NN NN NN IN DT NN IN CD . It includes money for hurricane relief , bird flu preventive measures , oil drilling in Alaska 's Arctic wildlife refuge , and military operations in Iraq and Afghanistan . PRP VBZ NN IN NN NN , NN NN JJ NNS , NN NN IN NNP POS NNP NN NN , CC JJ NNS IN NNP CC NNP . Many Democrats complained they were forced to approve the oil drilling provision , which they oppose , because it was attached to the defense bill . JJ NNPS VBD PRP VBD VBN TO VB DT NN NN NN , WDT PRP VBP , IN PRP VBD VBN TO DT NN NN . The measures will be debated by the Senate this week . DT NNS MD VB VBN IN DT NNP DT NN . Lawmakers are trying to finish major pieces of legislation before a long holiday recess . NNS VBP VBG TO VB JJ NNS IN NN IN DT JJ NN NN . The chairman of Ghana 's independent electoral commission says there is one more constituency yet to be determined before declaring the winner of Sunday 's election run-off . DT NN IN NNP NNS JJ JJ NN VBZ EX VBZ CD JJR NN RB TO VB VBN IN VBG DT NN IN NNP POS NN NN . Chairman Kojo Afari Djan , however said the winner of the election would be determined Friday after voters in Tain constituency in the Brong Ahafo region cast their votes . NNP NNP NNP NNP , RB VBD DT NN IN DT NN MD VB VBN NNP IN NNS IN NNP NN IN DT NNP NNP NN VBD PRP$ NNS . This comes after both the ruling New Patriotic party ( NPP ) and main opposition National Democratic Congress ( NDC ) parties made allegations of fraud , which forced the electoral commission to suspend voting in that constituency . DT VBZ IN DT DT NN NNP NNP NN LRB NNP RRB CC JJ NN NNP NNP NNP LRB NNP RRB NNS VBD NNS IN NN , WDT VBD DT JJ NN TO VB NN IN DT NN . Tain is expected to be a stronghold of the opposition NDC . NNP VBZ VBN TO VB DT NN IN DT NN NNP . An Australian man has been jailed for more than five years for duping people into sending him millions of dollars in a global Internet scam . DT JJ NN VBZ VBN VBN IN JJR IN CD NNS IN VBG NNS IN VBG PRP NNS IN NNS IN DT JJ NN NN . Nick Marinellis pleaded guilty Monday in the New South Wales District Court to 10 counts of fraud for taking part in a hoax called the Nigerian Scam . NNP NNP VBD JJ NNP IN DT NNP NNP NNP NNP NNP TO CD NNS IN NN IN VBG NN IN DT NN VBN DT JJ NNP . The deception promises people millions from Nigerian bank accounts in return for an ' administration fee . ' DT NN VBZ NNS NNS IN JJ NN NNS IN NN IN DT `` NN NN . `` Prosecutors say Marinellis fleeced his victims of $ 3.8 million . NNS VBP NNP VBD PRP$ NNS IN $ CD CD . ConocoPhillips , the third-largest U.S.-based oil company , reports an 89 percent jump in profits to a record $ 3.8 billion for the third quarter . NNS , DT JJ JJ NN NN , VBZ DT CD NN NN IN NNS TO DT NN $ CD CD IN DT JJ NN . Earnings for the three-month period ending in September reflected strong prices for the company 's crude oil and natural gas . NNS IN DT JJ NN VBG IN NNP VBD JJ NNS IN DT NN POS JJ NN CC JJ NN . ConocoPhillips ' officials say their U.S. Gulf Coast operations were ' significantly ' hurt by hurricanes , but say repairs to refineries and other facilities are well under way . NNS POS NNS VBP PRP$ NNP NNP NNP NNS VBD `` RB `` VBN IN NNS , CC VBP NNS TO NNS CC JJ NNS VBP RB IN NN . They call the company 's operating performance ' good . ' PRP VBP DT NN POS NN NN `` JJ . `` Conoco is the first of the major U.S. oil companies to report third-quarter earnings . NNP VBZ DT NN IN DT JJ NNP NN NNS TO VB JJ NNS . ExxonMobil , the world 's largest publicly traded company , is scheduled to release results on Thursday . NNP , DT NN POS JJS RB VBN NN , VBZ VBN TO VB NNS IN NNP . Chevron , the number two producer , is set to report earnings on October 28 . NNP , DT NN CD NN , VBZ VBN TO VB NNS IN NNP CD . An investment analyst says those companies are also expected to report increased profits . DT NN NN VBZ DT NNS VBP RB VBN TO VB JJ NNS . Russia 's state-controlled natural gas monopoly Gazprom says it is seeking to more than double the gas price for neighboring Georgia , amid a simmering political crisis between the two sides . NNP POS JJ JJ NN NN NNP VBZ PRP VBZ VBG TO JJR IN VB DT NN NN IN VBG NNP , IN DT VBG JJ NN IN DT CD NNS . Gazprom officials said Thursday that it plans to charge Tbilisi $ 230 per 1,000 cubic meters of gas , up from $ 110 now . NNP NNS VBD NNP IN PRP VBZ TO VB NNP $ CD IN CD JJ NNS IN NN , RB IN $ CD RB . The announcement comes after Georgia 's Foreign Minister Gela Bezhuashvili held talks in Moscow Wednesday with Russian Foreign Minister Sergei Lavrov - the first high-level meeting between the countries since tensions increased over alleged spying . DT NN VBZ IN NNP POS NNP NNP NNP NNP VBD NNS IN NNP NNP IN JJ NNP NNP NNP NNP IN DT JJ JJ NN IN DT NNS IN NNS VBD IN JJ NN . Georgia arrested four Russian military officers on suspicion of spying in September , releasing them a few days later . NNP VBN CD JJ JJ NNS IN NN IN VBG IN NNP , VBG PRP DT JJ NNS RB . Moscow retaliated by cutting all transportation and postal links with Georgia . NNP VBD IN VBG DT NN CC JJ NNS IN NNP . Tensions between the two countries were already high because of the presence of Russian peacekeepers in the two breakaway Georgian regions of Abkhazia and South Ossetia . NNS IN DT CD NNS VBD RB JJ IN IN DT NN IN JJ NNS IN DT CD JJ JJ NNS IN NNP CC NNP NNP . The president of Iraq 's Kurdish autonomous region , Massoud Barzani , has rejected the Iraq Study Group 's recommendations on ways to stabilize the country . DT NN IN NNP POS NNP JJ NN , NNP NNP , VBZ VBN DT NNP NNP NNP POS NNS IN NNS TO VB DT NN . In a statement Friday , Barzani said the U.S. group 's report has some unrealistic and inappropriate recommendations . IN DT NN NNP , NNP VBD DT NNP NN POS NN VBZ DT JJ CC JJ NNS . He said , in his words , ' we are in no way abiding by the report . ' PRP VBD , IN PRP$ NNS , `` PRP VBP IN DT NN VBG IN DT NN . `` Barzani - a longtime U.S. ally - criticized the report 's authors for never visiting the Kurdish region of northern Iraq in their months-long fact finding mission . NNP IN DT JJ NNP NN : VBD DT NN POS NNS IN RB VBG DT JJ NN IN JJ NNP IN PRP$ JJ NN VBG NN . He particularly criticized the report 's recommendation on Kirkuk , an ethnically mixed city that is key to Northern Iraq 's oil industry . PRP RB VBD DT NN POS NN IN NNP , DT RB JJ NN WDT VBZ JJ TO NNP NNP POS NN NN . Iraq 's constitution calls for referendum on the issue before the end of 2007 , but the report calls for international arbitration to decide the city 's future because a referendum would be explosive . NNP POS NN VBZ IN NN IN DT NN IN DT NN IN CD , CC DT NN VBZ IN JJ NN TO VB DT NN POS NN IN DT NN MD VB JJ . Barzani says delaying the vote will have grave consequences . NNP VBZ VBG DT NN MD VB JJ NNS . The Organization of Petroleum Exporting Countries kept oil production targets unchanged at a meeting Friday in Vienna , rebuffing a request from President Bush to increase output . DT NNP IN NNP NNP NNPS VBD NN NN NNS JJ IN DT NN NNP IN NNP , VBG DT NN IN NNP NNP TO VB NN . Many members of OPEC have said current high oil prices are the result of speculation by investors , not a shortage of oil on the market . JJ NNS IN NNP VBP VBN JJ JJ NN NNS VBP DT NN IN NN IN NNS , RB DT NN IN NN IN DT NN . Oil producers are also concerned that economic problems in the United States could depress demand for energy , which would push down the price of oil . NN NNS VBP RB VBN IN JJ NNS IN DT NNP NNPS MD VB NN IN NN , WDT MD VB RP DT NN IN NN . OPEC pumps about 40 percent of the world 's oil , while the United States is the world 's largest economy and energy consumer . NNP VBZ IN CD NN IN DT NN POS NN , IN DT NNP NNPS VBZ DT NN POS JJS NN CC NN NN . An audit by a U.S. inspector says the U.S.-led authority that governed Iraq after the 2003 invasion failed to keep track of nearly $ 9 billion it transferred to Iraqi ministries . DT NN IN DT NNP NN VBZ DT JJ NN WDT VBD NNP IN DT CD NN VBD TO VB NN IN RB $ CD CD PRP VBD TO JJ NNS . The audit released Sunday by the U.S. Special Inspector General for Iraq Reconstruction says the Coalition Provisional Authority failed to establish control systems to verify how the money was spent , which opened it to corruption . DT NN VBN NNP IN DT NNP NNP NNP NNP IN NNP NNP VBZ DT NNP NNP NNP VBD TO VB NN NNS TO VB WRB DT NN VBD VBN , WDT VBD PRP TO NN . In some instances , money was used to pay what the report calls ' ghost ' employees , explaining that out of 8,206 guards on the payroll at one ministry , only 602 could be accounted for . IN DT NNS , NN VBD VBN TO VB WP DT NN VBZ `` NN `` NNS , VBG IN IN IN CD NNS IN DT NN IN CD NN , RB CD MD VB VBN IN . Former CPA chief Paul Bremer rejected the findings , saying the report assumes western-style accounting procedures could have been quickly set up during wartime . JJ NNP NN NNP NNP VBD DT NNS , VBG DT NN VBZ JJ NN NNS MD VB VBN RB VBN RP IN NN . Mr. Bremer says delaying payment to Iraqi public servants could have created additional security threats . NNP NNP VBZ VBG NN TO JJ JJ NNS MD VB VBN JJ NN NNS . The European Union 's second highest court has ruled the bloc has the right to freeze the assets of citizens the United Nations suspects of terrorist links . DT NNP NNP POS JJ JJS NN VBZ VBN DT NN VBZ DT NN TO VB DT NNS IN NNS DT NNP NNP NNS IN JJ NNS . The Luxembourg-based Court of First Instance says the EU has the right freeze the accounts of individuals in connection with the fight against international terrorism . DT JJ NN IN NNP NNP VBZ DT NNP VBZ DT NN VB DT NNS IN NNS IN NN IN DT NN IN JJ NN . It issued the ruling Wednesday in response to a case brought by at least three people whose assets were frozen because of suspected links to Osama bin Laden . PRP VBD DT NN NNP IN NN TO DT NN VBN IN IN JJS CD NNS WP$ NNS VBD VBN IN IN JJ NNS TO NNP NNP NNP . The court added that freezing assets does not violate universally recognized human rights . DT NN VBD IN VBG NNS VBZ RB VB RB VBN JJ NNS . The U.N. Security Council in 1999 called on nations to freeze the assets of groups and individuals with suspected links to Osama bin Laden 's al-Qaida network and Afghanistan 's ousted Taleban regime . DT NNP NNP NNP IN CD VBD IN NNS TO VB DT NNS IN NNS CC NNS IN JJ NNS TO NNP NNP NNP POS NNP NN CC NNP POS JJ NNP NN . Brazilians have soundly rejected a proposal to ban all gun sales in the country . NNS VBP RB VBN DT NN TO VB DT NN NNS IN DT NN . With over 90 percent of the vote counted , the electoral court says that 64 percent of those who went to the polls voted against the ban in Sunday 's referendum , while 36 percent favored it . IN IN CD NN IN DT NN VBN , DT JJ NN VBZ IN CD NN IN DT WP VBD TO DT NNS VBD IN DT NN IN NNP POS NN , IN CD NN VBD PRP . Over 36 thousand people were shot and killed in Brazil last year . IN CD CD NNS VBD VBN CC VBN IN NNP JJ NN . The United Nations ranks Brazil second in the world in gun deaths , behind only Venezuela . DT NNP NNPS VBZ NNP NN IN DT NN IN NN NNS , IN RB NNP . Supporters of the ban on gun sales said that people voted against it because they have no confidence in the government and its ability to provide security . NNS IN DT NN IN NN NNS VBD IN NNS VBD IN PRP IN PRP VBP DT NN IN DT NN CC PRP$ NN TO VB NN . In recent weeks opponents had waged a media campaign , arguing that average Brazilians need guns to protect themselves from drug gangs and thieves . IN JJ NNS NNS VBD VBN DT NNS NN , VBG IN JJ NNS VBP NNS TO VB PRP IN NN NNS CC NNS . Final results are expected Monday . JJ NNS VBP VBN NNP . Floods and landslides in the wake of Hurricane Stan have killed at least 617 people throughout Central America and Mexico . NNS CC NNS IN DT NN IN NNP NNP VBP VBN IN JJS CD NNS IN NNP NNP CC NNP . More than 500 people were killed in Guatemala , which sustained the worst blow from last week 's storm . JJR IN CD NNS VBD VBN IN NNP , WDT VBD DT JJS NN IN JJ NN POS NN . At least 1,400 other people are missing and presumed dead in the Guatemalan village of Panabaj . IN JJS CD JJ NNS VBP VBG CC VBN JJ IN DT JJ NN IN NNP . The Mayan Indian village was buried in a mudslide triggered by Stan 's torrential rains . DT JJ JJ NN VBD VBN IN DT NN VBN IN NNP POS JJ NNS . Rescue workers are digging through tons of mud and rock searching for victims , but the town may eventually be declared a mass burial site . NN NNS VBP VBG IN NNS IN NN CC NN VBG IN NNS , CC DT NN MD RB VB VBN DT NN NN NN . The remainder of the dead are scattered throughout El Salvador , Nicaragua and Mexico . DT NN IN DT NN VBP VBN IN NNP NNP , NNP CC NNP . Entire families are either dead or missing in some communities . NNP NNS VBP RB JJ CC JJ IN DT NNS . The disaster has left thousands of people homeless . DT NN VBZ VBN NNS IN NNS JJ . Rescue crews have been unable to reach some isolated communities because many bridges and roads were washed out in the storm . NN NNS VBP VBN JJ TO VB DT JJ NNS IN JJ NNS CC NNS VBD VBN RP IN DT NN . Germans could find out who their next leader will be after Monday 's coalition talks between Chancellor Gerhard Schroeder and conservative leader Angela Merkel . NNS MD VB RP WP PRP$ JJ NN MD VB IN NNP POS NN NNS IN NNP NNP NNP CC JJ NN NNP NNP . The two ended several hours of discussions Sunday without comment . DT CD VBD JJ NNS IN NNS NNP IN NN . But German news reports say a deal could be announced Monday in which Ms. Merkel would become the new chancellor while giving additional cabinet posts to the rival party . CC JJ NN NNS VBP DT NN MD VB VBN NNP IN WDT NNP NNP MD VB DT JJ NN IN VBG JJ NN NNS TO DT JJ NN . Ms. Merkel 's Christian Democrats won four more seats than Mr. Schroeder 's Social Democrats in last month 's parliamentary elections . NNP NNP POS NNP NNPS VBD CD JJR NNS IN NNP NNP POS NNP NNPS IN JJ NN POS JJ NNS . Neither party won a mandate , and Mr. Schroeder has so far refused to concede defeat . DT NN VBD DT NN , CC NNP NNP VBZ RB RB VBN TO VB NN . Even after a deal is struck , both parties say it would take weeks to form a new government . RB IN DT NN VBZ VBN , DT NNS VBP PRP MD VB NNS TO VB DT JJ NN . A public display of affection got Richard Gere in trouble with Indian moviegoers . DT JJ NN IN NN VBD NNP NNP IN NN IN JJ NNS . Irate fans burned the Hollywood actor in effigy April 16 , after he repeatedly kissed movie actress Shilpa Shetty during an AIDS awareness event in New Delhi . JJ NNS VBD DT NNP NN IN JJ NNP CD , IN PRP RB VBD NN NN NNP NNP IN DT NNP NN NN IN NNP NNP . The 58-year-old Gere was in India to participate in a safe sex campaign directed at truck drivers . DT JJ NNP VBD IN NNP TO VB IN DT JJ NN NN VBD IN NN NNS . Of all nations , India has the largest number of people living with HIV . IN DT NNS , NNP VBZ DT JJS NN IN NNS VBG IN NNP . During the ceremony , Gere repeatedly kissed Shetty 's hand and cheeks . IN DT NN , NNP RB VBD NNP POS NN CC NNS . Protesters say the actions , shown repeatedly on Indian television , violate standards of propriety . NNS VBP DT NNS , VBN RB IN JJ NN , VBP NNS IN NN . Thirty-one-year-old Shilpa Shetty attracted headlines earlier this year after winning Britain 's ' Celebrity Big Brother ' reality TV contest . JJ NNP NNP VBD NNS RBR DT NN IN VBG NNP POS `` NNP NNP NNP `` NN NN NN . Her spokesman Dale Bhagwagar said the media should concentrate on AIDS education rather than sensationalizing trivial incidents . PRP$ NN NNP NNP VBD DT NNS MD VB IN NNP NN RB IN VBG JJ NNS . Ukrainian President Viktor Yushchenko has marked his first 100 days in office with a vow to maintain the struggle against poverty as his main priority . JJ NNP NNP NNP VBZ VBN PRP$ JJ CD NNS IN NN IN DT NN TO VB DT NN IN NN IN PRP$ JJ NN . He made the comments in pre-recorded message marking the 100-day milestone . PRP VBD DT NNS IN JJ NN VBG DT JJ NN . Mr. Yushchenko was elected in a re-vote in December after the country 's Supreme Court threw out flawed November elections . NNP NNP VBD VBN IN DT JJ IN NNP IN DT NN POS NNP NNP VBD RP JJ NNP NNS . Tens of thousands of Yushchenko supporters had packed the streets of Kiev to demand the fresh election . NNS IN NNS IN NNP NNS VBD VBN DT NNS IN NNP TO VB DT JJ NN . During his time in office , pensions and some incomes have increased , and he has sought to expand integration with the West . IN PRP$ NN IN NN , NNS CC DT NNS VBP VBN , CC PRP VBZ VBN TO VB NN IN DT NNP . A recent public opinion poll from the Democratic Initiatives Foundation put his approval rating at 60 percent . DT JJ JJ NN NN IN DT JJ NNP NNP VBD PRP$ NN NN IN CD NN . But some in Ukraine have complained about the economy and inflation after a decision to revalue the national currency . CC DT IN NNP VBP VBN IN DT NN CC NN IN DT NN TO VB DT JJ NN . Members of the former government say they are victims of political persecution as the new administration pursues anti-corruption efforts . NNS IN DT JJ NN VBP PRP VBP NNS IN JJ NN IN DT JJ NN VBZ JJ NNS . U.S weather forecasters say hurricane warnings have been posted for Mexico 's Yucatan peninsula as Hurricane Wilma continues to churn slowly through the Caribbean . NNP NN NNS VBP NN NNS VBP VBN VBN IN NNP POS NNP NN IN NNP NNP VBZ TO VB RB IN DT NNP . A statement from the National Hurricane Center says Wilma is still a strong category 4 hurricane with winds near 250 kilometers per hour . DT NN IN DT NNP NNP NNP VBZ NNP VBZ RB DT JJ NN CD NN IN NNS IN CD NNS IN NN . It is centered 345 kilometers southeast of Cozumel , Mexico . PRP VBZ VBN CD NNS NN IN NNP , NNP . It warns that the storm could strengthen again later Thursday . PRP VBZ IN DT NN MD VB RB RB NNP . Meteorologists say that if Wilma comes ashore in the Yucatan , it will bring a storm surge of two to three meters above normal along with large , battering waves . NNS VBP IN IN NNP VBZ RB IN DT NNP , PRP MD VB DT NN NN IN CD CC CD NNS IN JJ IN IN JJ , VBG NNS . Forecasters say Wilma is moving west to northwest at 13 kilometers per hour . NNS VBP NNP VBZ VBG RB TO VB IN CD NNS IN NN . Computer models show it turning sharply toward the east and the Florida coast later this week . . NN NNS VBP PRP VBG RB IN DT NN CC DT NNP NN RB DT NN . . At least 10 people in Haiti were killed in mudslides caused by the storm . IN JJS CD NNS IN NNP VBD VBN IN NNS VBN IN DT NN . Police in Belarus have detained about 40 activists who tried to stage a protest outside the Russian embassy in Minsk . NNS IN NNP VBP VBN IN CD NNS WP VBD TO VB DT NN IN DT JJ NN IN NNP . Authorities blocked off access to the embassy before the planned protest and picked up the activists as they gathered . NNS VBD RP NN TO DT NN IN DT JJ NN CC VBD RP DT NNS IN PRP VBD . Those detained included United Civic Party leader Anatol Liabedzka . DT VBN VBD NNP NNP NNP NN NNP NNP . Opposition activists gather in various locations in Minsk on the 16th of each month to mark a day of solidarity with political prisoners . NN NNS VBP IN JJ NNS IN NNP IN DT CD IN DT NN TO VB DT NN IN NN IN JJ NNS . The date was chosen after a leading opposition activist , Anatoly Krasovsky , disappeared on September 16 , 1999 . DT NN VBD VBN IN DT VBG NN NN , NNP NNP , VBD IN NNP CD , CD . Activists say they chose the Russian embassy as the site of Sunday 's protest in hopes of bringing the situation in Belarus to the attention of the Group of Eight summit in the Russian city of St. Petersburg . NNS VBP PRP VBD DT JJ NN IN DT NN IN NNP POS NN IN NNS IN VBG DT NN IN NNP TO DT NN IN DT NNP IN NNP NN IN DT JJ NN IN NNP NNP . Activists in Belarus have repeatedly staged protests since the country 's March presidential election which western governments and opposition groups have described as fraudulent . NNS IN NNP VBP RB VBN NNS IN DT NN POS NNP JJ NN WDT JJ NNS CC NN NNS VBP VBN IN JJ . NATO foreign ministers meeting in Brussels have agreed the alliance will boost its training force for Iraqi security forces . NNP JJ NNS VBG IN NNP VBP VBN DT NN MD VB PRP$ NN NN IN JJ NN NNS . NATO Secretary-General Jaap de Hoop Scheffer says the number of personnel will increase from its current level of 60 to 300 officers . NNP NN NNP NNP NNP NNP VBZ DT NN IN NNS MD VB IN PRP$ JJ NN IN CD TO CD NNS . He says several countries , including Poland , Hungary and the Netherlands have volunteered to provide troops . PRP VBZ JJ NNS , VBG NNP , NNP CC DT NNP VBP VBN TO VB NNS . Other countries like France and Germany have refused to contribute , saying they do not want the alliance to be drawn into peacekeeping duties in Iraq . JJ NNS IN NNP CC NNP VBP VBN TO VB , VBG PRP VBP RB VB DT NN TO VB VBN IN VBG NNS IN NNP . The ministers also discussed expanding the 5,000 strong NATO-led peacekeeping force in Afghanistan . DT NNS RB VBD VBG DT CD JJ JJ NN NN IN NNP . At a separate meeting , the NATO ministers and their Russian counterpart , Sergei Lavrov , urged Ukrainians to work to ensure a free , fair and violence-free process in the upcoming run-off presidential election . IN DT JJ NN , DT NNP NNS CC PRP$ JJ NN , NNP NNP , VBD NNS TO VB TO VB DT JJ , JJ CC JJ NN IN DT JJ NN JJ NN . The NATO meeting was the last for U.S. Secretary of State Colin Powell , who is leaving the Bush administration . DT NNP NN VBD DT JJ IN NNP NNP IN NNP NNP NNP , WP VBZ VBG DT NNP NN . Britain 's American colonies broke with the mother country in 1776 and were recognized as the new nation of the United States of America following the Treaty of Paris in 1783 . NNP POS JJ NNS VBD IN DT NN NN IN CD CC VBD VBN IN DT JJ NN IN DT NNP NNPS IN NNP VBG DT NNP IN NNP IN CD . During the 19th and 20th centuries , 37 new states were added to the original 13 as the nation expanded across the North American continent and acquired a number of overseas possessions . IN DT JJ CC JJ NNS , CD JJ NNS VBD VBN TO DT JJ CD IN DT NN VBN IN DT NNP NNP NN CC VBD DT NN IN JJ NNS . The two most traumatic experiences in the nation 's history were the Civil War ( 1861 - 65 ) , in which a northern Union of states defeated a secessionist Confederacy of 11 southern slave states , and the Great Depression of the 1930s , an economic downturn during which about a quarter of the labor force lost its jobs . DT CD RBS JJ NNS IN DT NN POS NN VBD DT NNP NNP LRB CD IN CD RRB , IN WDT DT JJ NNP IN NNS VBD DT JJ NN IN CD JJ NN NNS , CC DT NNP NNP IN DT NNS , DT JJ NN IN WDT IN DT NN IN DT NN NN VBD PRP$ NNS . Buoyed by victories in World Wars I and II and the end of the Cold War in 1991 , the US remains the world 's most powerful nation state . VBN IN NNS IN NNP NNP NNP CC NNP CC DT NN IN DT NNP NNP IN CD , DT NNP VBZ DT NN POS RBS JJ NN NN . Over a span of more than five decades , the economy has achieved steady growth , low unemployment and inflation , and rapid advances in technology . IN DT NN IN JJR IN CD NNS , DT NN VBZ VBN JJ NN , JJ NN CC NN , CC JJ NNS IN NN . This desolate , arctic , mountainous island was named after a Dutch whaling captain who indisputably discovered it in 1614 ( earlier claims are inconclusive ) . DT NN , JJ , JJ NN VBD VBN IN DT JJ NN NN WP RB VBD PRP IN CD LRB JJR NNS VBP JJ RRB . Visited only occasionally by seal hunters and trappers over the following centuries , the island came under Norwegian sovereignty in 1929 . VBN RB RB IN NN NNS CC NNS IN DT VBG NNS , DT NN VBD IN JJ NN IN CD . The long dormant Beerenberg volcano resumed activity in 1970 ; the most recent eruption occurred in 1985 . DT JJ NN NNP NNP VBD NN IN CD ; DT RBS JJ NN VBD IN CD . It is the northernmost active volcano on earth . PRP VBZ DT JJ JJ NN IN NN . The Turks and Caicos economy is based on tourism , offshore financial services , and fishing . DT NNS CC NNPS NN VBZ VBN IN NN , JJ JJ NNS , CC NN . Most capital goods and food for domestic consumption are imported . JJS NN NNS CC NN IN JJ NN VBP VBN . The US is the leading source of tourists , accounting for more than three-quarters of the 1,75,000 visitors that arrived in 2004 . DT NNP VBZ DT VBG NN IN NNS , NN IN JJR IN NNS IN DT CD NNS WDT VBD IN CD . Major sources of government revenue also include fees from offshore financial activities and customs receipts . JJ NNS IN NN NN RB VBP NNS IN JJ JJ NNS CC NNS NNS . Bermuda was first settled in 1609 by shipwrecked English colonists headed for Virginia . NNP VBD JJ VBN IN CD IN JJ JJ NNS VBN IN NNP . Tourism to the island to escape North American winters first developed in Victorian times . NN TO DT NN TO VB JJ JJ NNS RB VBD IN JJ NNS . Tourism continues to be important to the island 's economy , although international business has overtaken it in recent years . NN VBZ TO VB JJ TO DT NN POS NN , IN JJ NN VBZ VBN PRP IN JJ NNS . Bermuda has developed into a highly successful offshore financial center . NNP VBZ VBN IN DT RB JJ JJ JJ NN . Although a referendum on independence from the UK was soundly defeated in 1995 , the present government has reopened debate on the issue . IN DT NN IN NN IN DT NNP VBD RB VBN IN CD , DT JJ NN VBZ VBN NN IN DT NN . Europeans began to set up trading posts in the area of Bangladesh in the 16th century ; eventually the British came to dominate the region and it became part of British India . NNS VBD TO VB RP NN NNS IN DT NN IN NNP IN DT JJ NN ; RB DT NNS VBD TO VB DT NN CC PRP VBD NN IN JJ NNP . In 1947 , West Pakistan and East Bengal ( both primarily Muslim ) separated from India ( largely Hindu ) and jointly became the new country of Pakistan . IN CD , NNP NNP CC NNP NNP LRB DT RB NNP RRB VBD IN NNP LRB RB NNP RRB CC RB VBD DT JJ NN IN NNP . East Bengal became East Pakistan in 1955 , but the awkward arrangement of a two-part country with its territorial units separated by 1,600 km left the Bengalis marginalized and dissatisfied . NNP NNP VBD NNP NNP IN CD , CC DT JJ NN IN DT JJ NN IN PRP$ JJ NNS VBN IN CD NN VBD DT NNS VBN CC VBN . East Pakistan seceded from its union with West Pakistan in 1971 and was renamed Bangladesh . NNP NNP VBD IN PRP$ NN IN NNP NNP IN CD CC VBD VBN NNP . A military-backed , emergency caretaker regime suspended parliamentary elections planned for January 2007 in an effort to reform the political system and root out corruption . DT JJ , NN NN NN VBD JJ NNS VBN IN NNP CD IN DT NN TO VB DT JJ NN CC VB RP NN . In contrast to the strikes and violent street rallies that had marked Bangladeshi politics in previous years , the parliamentary elections finally held in late December 2008 were mostly peaceful and Sheikh HASINA Wajed was elected prime minister . IN NN TO DT NNS CC JJ NN NNS WDT VBD VBN JJ NNS IN JJ NNS , DT JJ NNS RB VBN IN JJ NNP CD VBD RB JJ CC NNP NNP NNP VBD VBN JJ NN . About a third of this extremely poor country floods annually during the monsoon rainy season , hampering economic development . IN DT NN IN DT RB JJ NN NNS RB IN DT NN NN NN , VBG JJ NN . THE HARES harangued the assembly , and argued that all should be equal . DT NNS VBD DT NN , CC VBD IN DT MD VB JJ . The Lions made this reply : DT NNS VBD DT NN : ' Your words , O Hares ! are good ; but they lack both claws and teeth such as we have . ' `` PRP$ NNS , UH NNS . VBP JJ ; CC PRP VBP DT NNS CC NNS JJ IN PRP VBP . `` The U.S. military in Iraq says coalition forces have killed an estimated 70 terrorists in separate operations in areas of Al Anbar province west of Baghdad . DT NNP NN IN NNP VBZ NN NNS VBP VBN DT VBN CD NNS IN JJ NNS IN NNS IN NNP NNP NN NN IN NNP . A military statement says 20 insurgents were killed Sunday when U.S. troops called in aircraft to bomb a group of suspects preparing to plant roadside bombs near Ramadi . DT JJ NN VBZ CD NNS VBD VBN NNP WRB NNP NNS VBD IN NN TO VB DT NN IN NNS VBG TO VB NN NNS IN NNP . The military says another 50 insurgents were killed in clashes and air strikes in the region . DT NN VBZ DT CD NNS VBD VBN IN NNS CC NN NNS IN DT NN . Local residents say at least half of the dead were civilians . JJ NNS VBP IN JJS NN IN DT NN VBD NNS . Meanwhile , President Bush praised Iraqis for turning out in large numbers to vote in Saturday 's constitutional referendum , despite the threat of insurgent violence . RB , NNP NNP VBD NNS IN VBG RP IN JJ NNS TO VB IN NNP POS JJ NN , IN DT NN IN JJ NN . Mr. Bush also praised U.S. and Iraqi security forces for preventing violence at polling stations . NNP NNP RB VBD NNP CC JJ NN NNS IN VBG NN IN VBG NNS . As the vote count continues , Iraqi officials say initial results indicate that voters have approved the constitution , including in two key Sunni Arab dominated provinces ( Diyala and Nineva ) where analysts had expected residents to vote against the charter . IN DT NN NN VBZ , JJ NNS VBP JJ NNS VBP IN NNS VBP VBN DT NN , VBG IN CD JJ NNP NNP VBD NNS LRB NNP CC NNP RRB WRB NNS VBD VBN NNS TO VB IN DT NN . Maoist rebels in Nepal say they will stop military operations during the country 's most popular religious festival . NNP NNS IN NNP VBP PRP MD VB JJ NNS IN DT NN POS RBS JJ JJ NN . Rebel leader Pushpa Kamal Dahal , who is also known as Prachanda , said Friday the insurgents will halt attacks from October 20 - 28 in recognition of the festival of Dasain . NNP NN NNP NNP NNP , WP VBZ RB VBN IN NNP , VBD NNP DT NNS MD VB NNS IN NNP CD : CD IN NN IN DT NN IN NNP . The rebels have observed similar cease-fires in the past . DT NNS VBP VBN JJ NNS IN DT NN . The insurgency for a communist state to replace Nepal 's constitutional monarchy has killed more than 10,000 people since it began in 1996 . DT NN IN DT JJ NN TO VB NNP POS JJ NN VBZ VBN JJR IN CD NNS IN PRP VBD IN CD . Lebanon 's government has removed the country 's top prosecutor and fired three security chiefs , in a push to purge the new administration of pro-Syrian influence . NNP POS NN VBZ VBN DT NN POS JJ NN CC VBD CD NN NNS , IN DT NN TO VB DT JJ NN IN JJ NN . Prime Minister Najib Mikati 's cabinet also appointed a new police commander and a new head of military intelligence . NNP NNP NNP NNP POS NN RB VBD DT JJ NN NN CC DT JJ NN IN JJ NN . Thursday 's moves came as a United Nations team arrived in Lebanon to prepare for an international probe of the assassination of former Prime Minister Rafik Hariri . NNP POS NNS VBD IN DT NNP NNP NN VBD IN NNP TO VB IN DT JJ NN IN DT NN IN JJ NNP NNP NNP NNP . A second U.N. team is verifying that Syria 's military and intelligence withdrawal from the country on Tuesday is complete . DT JJ NNP NN VBZ VBG IN NNP POS JJ CC NN NN IN DT NN IN NNP VBZ JJ . Mr. Hariri was killed February 14 in a Beirut bombing that stunned Lebanon and reverberated in Western capitals . NNP NNP VBD VBN NNP CD IN DT NNP NN WDT VBD NNP CC VBN IN JJ NNS . The Lebanese opposition accused Beirut and its Syrian sponsors of complicity in the assassination , despite denials from both capitals . DT JJ NN VBN NNP CC PRP$ JJ NNS IN NN IN DT NN , IN NNS IN DT NNS . Two weeks later later , massive protests led to the downfall of Lebanon 's pro-Syrian Prime Minister Omar Karami and his government . CD NNS RB RB , JJ NNS VBD TO DT NN IN NNP POS JJ NNP NNP NNP NNP CC PRP$ NN . German Chancellor Angela Merkel is in India for talks on economic cooperation and climate change . JJ NNP NNP NNP VBZ IN NNP IN NNS IN JJ NN CC NN NN . Ms. Merkel arrived in New Delhi Monday , in her first visit to the country as chancellor . NNP NNP VBD IN NNP NNP NNP , IN PRP$ JJ NN TO DT NN IN NN . She is expected to meet Tuesday with Prime Minister Manmohan Singh and President Prabtibha Patil . PRP VBZ VBN TO VB NNP IN NNP NNP NNP NNP CC NNP NNP NNP . Ms. Merkel also has meetings scheduled with India 's vice president , parliamentary leader , and opposition leader . NNP NNP RB VBZ NNS VBN IN NNP POS NN NN , JJ NN , CC NN NN . The officials are expected to discuss political cooperation , efforts to slow global warming and trade ties . DT NNS VBP VBN TO VB JJ NN , NNS TO VB JJ NN CC NN NNS . The German leader said in a speech Friday that Germany should expand its ties with India , as it has with China , both nations which have seen their economies grow rapidly in recent years . DT JJ NN VBD IN DT NN NNP IN NNP MD VB PRP$ NNS IN NNP , IN PRP VBZ IN NNP , DT NNS WDT VBP VBN PRP$ NNS VBP RB IN JJ NNS . Trade between India and Germany amounts to about $ 15 billion a year . NNP IN NNP CC NNP VBZ TO IN $ CD CD DT NN . The United Nations refugee agency says many residents who fled the Iraqi city of Fallujah before a November U.S.-led offensive to crush insurgents , are waiting until after the January 30 elections to decide whether they will return . DT NNP NNP NN NN VBZ JJ NNS WP VBD DT JJ NN IN NNP IN DT NNP JJ NN TO VB NNS , VBP VBG IN IN DT NNP CD NNS TO VB IN PRP MD VB . About half of the city , which is home to more than a quarter-of-a-million people , has been re-opened for returning residents . IN NN IN DT NN , WDT VBZ NN TO JJR IN DT JJ NNS , VBZ VBN VBN IN VBG NNS . But the U.N. agency estimates that fewer than 10,000 have returned to stay . CC DT NNP NN VBZ IN JJR IN CD VBP VBN TO VB . Through interviews conducted by its local partners , the refugee agency says many Fallujans are reluctant to return because of the tense security situation and the lack of services , including hospitals , water and electricity . IN NNS VBN IN PRP$ JJ NNS , DT NN NN VBZ JJ NNPS VBP JJ TO VB IN IN DT JJ NN NN CC DT NN IN NNS , VBG NNS , NN CC NN . Many are waiting until after the parliamentary elections to see how the situation is affected . NN VBP VBG IN IN DT JJ NNS TO VB WRB DT NN VBZ VBN . Others have bought land outside Fallujah , indicating they do not plan to return to the devastated city . NNS VBP VBN NN IN NNP , VBG PRP VBP RB VB TO VB TO DT JJ NN . Pakistan President Pervez Musharraf has directed law enforcement agencies to launch a national crackdown against banned extremist organizations , targeting their weapons , finances and meeting places . NNP NNP NNP NNP VBZ VBN NN NN NNS TO VB DT JJ NN IN VBN NN NNS , VBG PRP$ NNS , NNS CC NN NNS . In a meeting of many top police officers from across the country on Friday , General Musharraf issued a stern directive . IN DT NN IN JJ JJ NNS NNS IN IN DT NN IN NNP , NNP NNP VBD DT JJ NN . He demanded that all hate material , including pamphlets , books , CDs and videos be removed from all Pakistani public markets by December . PRP VBD IN DT NN NN , VBG NNS , NNS , NNS CC NNS VB VBN IN DT JJ JJ NNS IN NNP . The president says the crackdown is intended to stop the ' extremist minority ' harming Pakistan 's interests and tarnishing the image of Islam . DT NN VBZ DT NN VBZ VBN TO VB DT `` NN NN `` VBG NNP POS NNS CC VBG DT NN IN NNP . Pakistan 's new campaign against extremism follows last week 's suicide bombings in London . NNP POS JJ NN IN NN VBZ JJ NN POS NN NNS IN NNP . Three of the four bombers are alleged to be Pakistani Britons . CD IN DT CD NNS VBP VBN TO VB JJ NNS . A series of car bombs in and around Baghdad has targeted mainly Iraqi security forces , killing one person and wounding at least 11 others . DT NN IN NN NNS IN CC IN NNP VBZ VBN RB JJ NN NNS , VBG CD NN CC VBG IN JJS CD NNS . Police said a roadside bomb in Taji , north of the city , killed a civilian and wounded five other people . NNS VBD DT NN NN IN NNP , NN IN DT NN , VBD DT JJ CC JJ CD JJ NNS . In Baghdad 's Adhamiya neighborhood , at least two bombs strapped to parked cars wounded six people . IN NNP POS NNP NN , IN JJS CD NNS VBD TO VB NNS VBN CD NNS . The attacks come as troops tightened security around Shi'ite mosques , shrines and political party offices ahead of a massive funeral procession for prominent Shi'ite leader Abdul Aziz al-Hakim . DT NNS VBP IN NNS VBD NN IN NNP NNS , NNS CC JJ NN NNS RB IN DT JJ NN NN IN JJ NNP NN NNP NNP NNP . Thousands of people are expected to mourn the leader of the Supreme Iraqi Islamic Council later this week before he is buried in the holy city Najaf . NNS IN NNS VBP VBN TO VB DT NN IN DT NNP JJ NNP NNP RB DT NN IN PRP VBZ VBN IN DT JJ NN NNP . Hakim died Wednesday in Tehran following a two-year battle with lung cancer . NNP VBD NNP IN NNP VBG DT JJ NN IN NN NN . The U.S. military in Iraq says three Marines have died of wounds sustained due to enemy action in western Al Anbar province . DT NNP NN IN NNP VBZ CD NNS VBP VBN IN NNS VBN JJ TO NN NN IN JJ NNP NNP NN . A statement issued Thursday said the Marines died Wednesday but did not provide further details . DT NN VBN NNP VBD DT NNPS VBD NNP CC VBD RB VB JJ NNS . Also Thursday , Iraqi witnesses said U.S. forces opened fire on a minibus in Baghdad , killing four people and wounding eight . RB NNP , JJ NNS VBD NNP NNS VBD NN IN DT NN IN NNP , VBG CD NNS CC VBG CD . They say the bus was carrying workers through the city 's Sadr City neighborhood . PRP VBP DT NN VBD VBG NNS IN DT NN POS NNP NNP NN . The U.S. military has not commented on the report . DT NNP NN VBZ RB VBN IN DT NN . And Iraqi officials say 100 people were killed in insurgent attacks and sectarian violence across the country Wednesday . CC JJ NNS VBP CD NNS VBD VBN IN JJ NNS CC JJ NN IN DT NN NNP . A U.N. report says more than 3,700 Iraqi civilians were killed in October - - the highest monthly toll since U.S. forces invaded the country in 2003 . DT NNP NN VBZ JJR IN CD JJ NNS VBD VBN IN NNP : : DT JJS JJ NN IN NNP NNS VBD DT NN IN CD . A new United Nations report says melting glaciers and ice sheets caused by global warming could disrupt drinking and agricultural water supplies for up to 40 percent of the world 's population . DT JJ NNP NNPS NN VBZ VBG NNS CC NN NNS VBN IN JJ NN MD VB NN CC JJ NN NNS IN RB TO CD NN IN DT NN POS NN . The report released Monday said the depletion of ice caps could also contribute to global warming because the ice sheets reflect the sun 's heat away from the Earth 's surface . DT NN VBN NNP VBD DT NN IN NN NNS MD RB VB TO JJ NN IN DT NN NNS VBP DT NN POS NN RB IN DT NNP POS NN . It also warns that such low-lying countries as Bangladesh and Indonesia could face severe flooding by melting glaciers and rising sea levels . PRP RB VBZ IN JJ JJ NNS IN NNP CC NNP MD VB JJ NN IN VBG NNS CC VBG NN NNS . Global warming will be a major topic at this week 's Group of Eight summit in Germany . JJ NN MD VB DT JJ NN IN DT NN POS NNP IN CD NN IN NNP . German Chancellor and summit host Angela Merkel says she will not compromise in getting the G8 nations to agree to cut greenhouse gas emissions that contribute to global warming . JJ NN CC NN NN NNP NNP VBZ PRP MD RB VB IN VBG DT NNP NNS TO VB TO VB NN NN NNS WDT VBP TO JJ NN . The United Nations Security Council on Thursday unanimously agreed to extend the U.N. mission in Afghanistan for another year . DT NNP NNP NNP NNP IN NNP RB VBD TO VB DT NNP NN IN NNP IN DT NN . The 15-member council 's approval focuses on improving U.N. coordination with the Afghan government and NATO-led forces fighting Taliban insurgents . DT JJ NN POS NN VBZ IN VBG NNP NN IN DT JJ NN CC JJ NNS VBG NNP NNS . The resolution also empowers the new U.N. special envoy in Afghanistan - Norwegian diplomat Kai Eide - to directly coordinate support provided by international donors to the Afghan government . DT NN RB VBZ DT JJ NNP JJ NN IN NNP IN JJ NN NNP NNP : TO RB VB NN VBN IN JJ NNS TO DT JJ NN . A lack of coordination among dozens of aid agencies has led to failed reconstruction projects . DT NN IN NN IN NNS IN NN NNS VBZ VBN TO VBN NN NNS . The United States and Britain hailed the adoption of the resolution . DT NNP NNPS CC NNP VBD DT NN IN DT NN . Meanwhile , violence in Afghanistan continues . RB , NN IN NNP VBZ . An exchange of gunfire between British troops and Afghan police in southern Helmand province Thursday left an Afghan policeman dead . DT NN IN NN IN JJ NNS CC JJ NNS IN JJ NNP NN NNP VBD DT JJ NN NN . Local officials say British soldiers opened fire on the policemen patrolling in Lashkar Gah , the provincial capital . JJ NNS VBP JJ NNS VBD NN IN DT JJ NN IN NNP NNP , DT JJ NN . The incident is under investigation . DT NN VBZ IN NN . Tens of thousands of flag-waving Lebanese mourners packed central Beirut Thursday for the funeral of outspoken Syrian critic Gebran Tueni . NNS IN NNS IN JJ JJ NNS VBD JJ NNP NNP IN DT NN IN JJ JJ NN NNP NNP . The 48-year-old publisher and parliamentarian was killed Monday in a Beirut car bombing . DT JJ NN CC NN VBD VBN NNP IN DT NNP NN NN . Banks , businesses and schools closed today , as a huge contingent of Lebanese police and soldiers deployed in Beirut 's Martyrs Square to ensure security for the funeral . NNS , NNS CC NNS VBD NN , IN DT JJ NN IN JJ NNS CC NNS VBN IN NNP POS NNP NNP TO VB NN IN DT NN . Mr. Tueni is the third anti-Syrian figure to be killed since the February 14 assassination of former Prime Minister Rafik Hariri . NNP NNP VBZ DT JJ JJ NN TO VB VBN IN DT NNP CD NN IN JJ NNP NNP NNP NNP . Mass protests triggered by the Hariri murder forced Syria to end its three-decade military presence in Lebanon . NN NNS VBN IN DT NNP NN VBD NNP TO VB PRP$ JJ JJ NN IN NNP . In similar scenes today , crowds denounced Damascus and demanded that Lebanon 's pro-Syrian President Emile Lahoud step down . IN JJ NNS NN , NNS VBD NNP CC VBD IN NNP POS JJ NNP NNP NNP VB RB . Syria has denied involvement in any of the killings . NNP VBZ VBN NN IN DT IN DT NNS . The U.S.-based toy giant , Mattel , has recalled about 1,55,000 of its toys in the United States because they contain small parts that pose a risk of choking for children . DT JJ NN NN , NNP , VBZ VBN IN CD IN PRP$ NNS IN DT NNP NNPS IN PRP VBP JJ NNS WDT VBP DT NN IN VBG IN NNS . A statement from the U.S. Consumer Product Safety Commission said Tuesday the recall involves a play kitchen learning toy made in Mexico and imported by Fisher-Price , a division of Mattel . DT NN IN DT NNP NNP NNP NNP NNP VBD NNP DT NN VBZ DT NN NN VBG NN VBN IN NNP CC VBN IN NNP , DT NN IN NNP . The commission said there have been 48 reports of small parts separating from the toy , including two reports of children gagging on pieces and one of a child who choked on a piece . DT NN VBD EX VBP VBN CD NNS IN JJ NNS VBG IN DT NN , VBG CD NNS IN NNS VBG IN NNS CC CD IN DT NN WP VBD IN DT NN . The European Commission has confirmed that Mattel also is recalling about 17,000 toys in Europe because of the same child safety concerns . DT JJ NNP VBZ VBN IN NNP RB VBZ VBG IN CD NNS IN NNP IN IN DT JJ NN NN NNS . Mattel has recalled tens of millions of Chinese-made toys in recent months because of what are described as design flaws and toxic levels of lead . NNP VBZ VBN NNS IN NNS IN JJ NNS IN JJ NNS IN IN WP VBP VBN IN NN NNS CC JJ NNS IN NN . Turkish authorities say 20 people have been wounded in a bomb blast at a resort in western Turkey . JJ NNS VBP CD NNS VBP VBN VBN IN DT NN NN IN DT NN IN JJ NNP . The explosion occurred Sunday in the Aegean coastal town Cesme , a popular tourist destination near the port city of Izmir . DT NN VBD NNP IN DT NNP JJ NN NNP , DT JJ NN NN IN DT JJ NN IN NNP . There has been no claim of responsibility for the blast . EX VBZ VBN DT NN IN NN IN DT NN . The regional governor said two foreigners were among the injured , but did not identify their nationalities . DT JJ NN VBD CD NNS VBD IN DT NN , CC VBD RB VB PRP$ NNS . In April , a bomb attack in the nearby resort town Ksusadasi left a police officer dead . IN NNP , DT NN NN IN DT JJ NN NN NNP VBD DT NN NN NN . A Kurdish separatist group claimed responsibility for that blast . DT NNP NN NN VBD NN IN DT NN . The Saudi branch of the al-Qaida terror network is promising more attacks on Saudi oil facilities , after failing in an attempt to bomb the world 's largest oil refinery , located on the kingdom 's Gulf coast . DT JJ NN IN DT NNP NN NN VBZ VBG JJR NNS IN JJ NN NNS , IN VBG IN DT NN TO VB DT NN POS JJS NN NN , VBN IN DT NN POS NNP NN . In a statement , al-Qaida in the Arabian Peninsula said their militants will not stop attacks until ' infidels ' ( Westerners ) have been eliminated from Saudi soil . IN DT NN , NNP IN DT NNP NNP VBD PRP$ NNS MD RB VB NNS IN `` NNS `` LRB NNS RRB VBP VBN VBN IN JJ NN . The Internet statement , posted Saturday , has not been authenticated . DT NNP NN , VBN NNP , VBZ RB VBN VBN . It identifies the two terrorists who died in Friday 's attack , and calls the assault on the Abqaiq facility a success . PRP VBZ DT CD NNS WP VBD IN NNP POS NN , CC VBZ DT NN IN DT NNP NN DT NN . Authorities say both of the attackers were on a Saudi list of 36 most-wanted militants . NNS VBP DT IN DT NNS VBD IN DT JJ NN IN CD JJ NNS . Saudi authorities say two security officers also died in Friday 's attack , and said the explosion did not affect operations at the plant . JJ NNS VBP CD NN NNS RB VBD IN NNP POS NN , CC VBD DT NN VBD RB VB NNS IN DT NN . A Lebanese lawmaker wounded in the February bombing in Beirut that killed former Prime Minister Rafik Hariri has died of his injuries . DT JJ NN VBN IN DT NNP NN IN NNP WDT VBD JJ NNP NNP NNP NNP VBZ VBN IN PRP$ NNS . Former Lebanese minister of economy Bassel Fleihan passed away Monday in a hospital in Paris . JJ JJ NN IN NN NNP NNP VBD RB NNP IN DT NN IN NNP . Mr. Fleihan was riding in the car with Mr. Hariri on February 14 when a huge bomb detonated outside their motorcade . NNP NNP VBD VBG IN DT NN IN NNP NNP IN NNP CD WRB DT JJ NN VBN IN PRP$ NN . The blast instantly killed the former prime minister . DT NN RB VBD DT JJ JJ NN . Mr. Fleihan , one of Mr. Hariri 's top aides , suffered severe burns over most of his body . NNP NNP , CD IN NNP NNP POS JJ NNS , VBD JJ NNS IN JJS IN PRP$ NN . Reports from Beirut say Mr. Fleihan is the 21st victim to die as a result of the bombing . NNS IN NNP VBP NNP NNP VBZ DT JJ NN TO VB IN DT NN IN DT NN . U.S. authorities have declared a public health emergency for the entire Gulf Coast region and warned of the possible spread of diseases in the aftermath of Hurricane Katrina . NNP NNS VBP VBN DT JJ NN NN IN DT JJ NNP NNP NN CC VBD IN DT JJ NN IN NNS IN DT NN IN NNP NNP . Health and Human Services Secretary Michael Leavitt warned of worsening sanitary and health conditions in the stricken areas , and said officials are gravely concerned about potential outbreaks of cholera , typhoid and other illnesses . NNP CC NNP NNP NNP NNP NNP VBD IN VBG JJ CC NN NNS IN DT JJ NNS , CC VBD NNS VBP RB VBN IN JJ NNS IN NN , NN CC JJ NNS . He called on residents to use caution when consuming food and not to drink standing water . PRP VBD IN NNS TO VB NN WRB VBG NN CC RB TO VB JJ NN . He told a news conference in Washington that authorities are setting up a network of up to 40 medical shelters that will have a total of up to 10,000 beds . PRP VBD DT NN NN IN NNP IN NNS VBP VBG RP DT NN IN RB TO CD JJ NNS WDT MD VB DT NN IN RB TO CD NNS . He said those who need further treatment will be moved to facilities elsewhere . PRP VBD DT WP VBP JJ NN MD VB VBN TO NNS RB . Homeland Security Chief Michael Chertoff said the situation in the region remains very dangerous . NNP NNP NNP NNP NNP VBD DT NN IN DT NN VBZ RB JJ . Officials have warned of unstable structures and have called on residents not to return to the affected areas . NNS VBP VBN IN JJ NNS CC VBP VBN RP NNS RB TO VB TO DT JJ NNS . An aid group says more than 54,000 North Koreans are dead or missing after widespread flooding . DT NN NN VBZ JJR IN CD NNP NNS VBP JJ CC JJ IN JJ NN . The South Korea-based Good Friends organization released that figure Wednesday and added that another 2.5 million people are believed to have been left homeless . DT NNP JJ JJ NNS NN VBN IN NN NNP CC VBD IN DT CD CD NNS VBP VBN TO VB VBN VBN NN . The new estimate is far higher than earlier death tolls . DT JJ NN VBZ RB JJR IN JJR NN NNS . The North Korean government has estimated the death toll in the hundreds . DT JJ JJ NN VBZ VBN DT NN NN IN DT NNS . Earlier this month , South Korea announced it will give an aid package worth more than $ 10 million to independent aid groups to help flood victims in North Korea . RBR DT NN , NNP NNP VBD PRP MD VB DT NN NN JJ JJR IN $ CD CD TO JJ NN NNS TO VB NN NNS IN NNP NNP . North Korean officials formally requested the help from South Korea , after initially turning down aid offers from foreign relief agencies . JJ JJ NNS RB VBD DT NN IN NNP NNP , IN RB VBG RP NN NNS IN JJ NN NNS . Seasonal rains have caused landslides and destroyed vital crops , raising concerns the impoverished country could face famine . JJ NNS VBP VBN NNS CC VBD JJ NNS , VBG NNS DT JJ NN MD VB NN . Tony Blair Russian officials say British Prime Minister Tony Blair will not attend the upcoming World War II commemorations in Moscow . NNP NNP JJ NNS VBP JJ NNP NNP NNP NNP MD RB VB DT JJ NNP NNP NNP NNS IN NNP . The Kremlin Friday said Mr. Blair expressed regret that intensive work on forming a new Cabinet would prevent him from attending the ceremonies Monday . DT NNP NNP VBD NNP NNP VBD NN IN JJ NN IN VBG DT JJ NNP MD VB PRP IN VBG DT NNS NNP . Mr. Blair 's Labor Party on Thursday won a third straight general election victory . NNP NNP POS NNP NNP IN NNP VBD DT JJ JJ JJ NN NN . The Kremlin says Mr. Blair announced the decision in a phone call to Russian President Vladimir Putin . DT NNP VBZ NNP NNP VBD DT NN IN DT NN NN TO JJ NNP NNP NNP . Dozens of world leaders , including President Bush , are to attend the events in Moscow . NNS IN NN NNS , VBG NNP NNP , VBP TO VB DT NNS IN NNP . Adolfo Aguilar Zinser , Mexico 's former ambassador to the United Nations , has died in an automobile accident in central Mexico . NNP NNP NNP , NNP POS JJ NN TO DT NNP NNP , VBZ VBN IN DT NN NN IN JJ NNP . Authorities in the state of Morelos say the 55-year-old ex-diplomat was driving on a highway Sunday when his vehicle hit a bus . NNS IN DT NN IN NNP VBP DT JJ NN VBD VBG IN DT NN NNP WRB PRP$ NN VBD DT NN . Mr. Aguilar Zinser was a vocal opponent of the U.S.-led invasion of Iraq during his tenure at the UN . Mexican President Vicente Fox removed Mr. Aguilar Zinser from the UN post after he accused the United States of treating Mexico with disdain . NNP NNP NNP VBD DT JJ NN IN DT JJ NN IN NNP IN PRP$ NN IN DT NNP . JJ NNP NNP NNP VBD NNP NNP NNP IN DT NNP NN IN PRP VBD DT NNP NNPS IN VBG NNP IN NN . Mr. Aguilar Zinser spent years as a leftist politician in the Mexican legislature . NNP NNP NNP VBD NNS IN DT JJ NN IN DT JJ NN . But he later joined forces with the conservative Fox , and played a key role in Mr. Fox 's historic election in 2000 . CC PRP RB VBD NNS IN DT JJ NNP , CC VBD DT JJ NN IN NNP NNP POS JJ NN IN CD . He served Mr. Fox as national security advisor before taking the UN post . PRP VBD NNP NNP IN JJ NN NN IN VBG DT NNP NN . Seismologists say a strong earthquake has struck off the coast of the South Pacific island nation , Vanuatu . NNS VBP DT JJ NN VBZ VBN RP DT NN IN DT NNP NNP NN NN , NNP . Officials at the Pacific Tsunami Warning Center in the U.S. state of Hawaii say there is no threat of a tsunami . NNS IN DT NNP NNP NNP NNP IN DT NNP NN IN NNP VBP EX VBZ DT NN IN DT NN . The U.S. Geological Survey says the 6.7 magnitude quake hit 75 kilometers southeast of the city of Lugansville on Vanuatu 's second largest island of Espiritu Santo . DT NNP NNP NNP VBZ DT CD NN NN VBD CD NNS NN IN DT NN IN NNP IN NNP POS JJ JJS NN IN NNP NNP . Scientists say the earthquake 's epicenter was 150 kilometer below the earth 's surface . NNS VBP DT NN POS NN VBD CD NN IN DT NN POS NN . There are no immediate reports of any injuries or major property damage . EX VBP DT JJ NNS IN DT NNS CC JJ NN NN . Vanuatu is an archipelago of some 80 islands located about 2,200 kilometers off the northeast coast of Australia . NNP VBZ DT NN IN DT CD NNS VBN IN CD NNS IN DT NN NN IN NNP . British police have questioned Prime Minister Tony Blair in their investigation of charges that his Labor Party awarded seats in the upper house of parliament in exchange for millions of dollars in political contributions . JJ NNS VBP VBN NNP NNP NNP NNP IN PRP$ NN IN NNS IN PRP$ NNP NNP VBD NNS IN DT JJ NN IN NN IN NN IN NNS IN NNS IN JJ NNS . A spokesman for the prime minister says the informal interview took place Thursday at his Downing Street office . DT NN IN DT JJ NN VBZ DT JJ NN VBD NN NNP IN PRP$ NNP NNP NN . He said Mr. Blair did not have a lawyer present and was treated as a witness rather than a suspect . PRP VBD NNP NNP VBD RB VB DT NN NN CC VBD VBN IN DT NN RB IN DT NN . The probe was launched after the Scottish National Party alleged that Mr. Blair had nominated wealthy businessmen for non-elected seats in the House of Lords in exchange for loans to his Labor Party . DT NN VBD VBN IN DT NNP NNP NNP VBD IN NNP NNP VBD VBN JJ NNS IN JJ NNS IN DT NNP IN NNPS IN NN IN NNS TO PRP$ NNP NNP . Earlier this year , authorities said they were probing questionable loans worth 26 million dollars that helped bankroll the Labor Party 's 2005 elections campaign . RBR DT NN , NNS VBD PRP VBD VBG JJ NNS JJ CD CD NNS WDT VBD VB DT NNP NNP POS CD NNS NN . Police arrested Labor 's chief fundraiser , Michael Levy , earlier this year in connection with the probe . NNS VBN NN POS NN NN , NNP NNP , RBR DT NN IN NN IN DT NN . They later released him on bail . PRP RB VBD PRP IN NN . Venezuelan President Hugo Chavez is expected Wednesday to present his proposals for constitutional reform to the National Assembly . JJ NNP NNP NNP VBZ VBN NNP TO VB PRP$ NNS IN JJ NN TO DT NNP NNP . Specific plans for the reforms have not been released , but Chavez has previously said he would like to end presidential term limits . JJ NNS IN DT NNS VBP RB VBN VBN , CC NNP VBZ RB VBN PRP MD VB TO VB JJ NN NNS . Currently the president may serve no more than two six-year terms . RB DT NN MD VB DT JJR IN CD JJ NNS . The National Assembly is expected to approve his changes , as it is controlled by Chavez supporters . DT NNP NNP VBZ VBN TO VB PRP$ NNS , IN PRP VBZ VBN IN NNP NNS . If the plan passes the legislature , Venezuelan citizens must vote in a referendum to accept or reject it . IN DT NN VBZ DT NN , JJ NNS MD VB IN DT NN TO VB CC VB PRP . Health officials in Bangladesh are launching a campaign to vaccinate at least 18 million children against polio after a nine-year-old girl was diagnosed with the disease earlier this year . NNP NNS IN NNP VBP VBG DT NN TO VB IN JJS CD CD NNS IN NN IN DT JJ NN VBD VBN IN DT NN RBR DT NN . The health ministry says the campaign will start Sunday and will focus on children under the age of five . DT NN NN VBZ DT NN MD VB NNP CC MD VB IN NNS IN DT NN IN CD . The government had thought it had eradicated polio , with no new cases reported since 2000 . DT NN VBD VBN PRP VBD VBN NN , IN DT JJ NNS VBN IN CD . But last month , polio was confirmed in a girl from the eastern district of Chandpur . CC JJ NN , NN VBD VBN IN DT NN IN DT JJ NN IN NNP . The girl was first stricken in January . DT NN VBD JJ NN IN NNP . The World Health Organization reports that a lab in India linked the virus carried by the girl to a strain found in India where polio is still common . DT NNP NNP NNP VBZ IN DT NN IN NNP VBD DT NN VBN IN DT NN TO DT NN VBN IN NNP WRB NN VBZ RB JJ . South Korea 's military says it is preparing for the possibility that North Korea may try to provoke a naval skirmish along their disputed sea border . NNP NNP POS JJ VBZ PRP VBZ VBG IN DT NN IN NNP NNP MD VB TO VB DT JJ NN IN PRP$ JJ NN NN . A Defense Ministry report to parliament Wednesday said the military is preparing for the possibility that the North may launch attacks on naval ships or seize South Korean fishing boats . DT NNP NNP NN TO NN NNP VBD DT NN VBZ VBG IN DT NN IN DT NNP MD VB NNS IN JJ NNS CC VB JJ JJ NN NNS . Relations have been steadily deteriorating in recent weeks as Pyongyang has sealed off its border . NNP VBP VBN RB VBG IN JJ NNS IN NNP VBZ VBN RP PRP$ NN . North Korea has also ordered the expulsion of hundreds of South Koreans working at a joint industrial estate in the North . NNP NNP VBZ RB VBN DT NN IN NNS IN NNP NNS VBG IN DT JJ JJ NN IN DT NNP . The North says its actions are in protest of what it calls ' South Korea 's confrontational policies . ' DT NNP VBZ PRP$ NNS VBP IN NN IN WP PRP VBZ `` NNP NNP POS JJ NNS . `` Ties have steadily worsened since conservative South Korean President Lee Myung-bak stepped into office in February . NNS VBP RB VBN IN JJ JJ JJ NNP NNP NNP VBD IN NN IN NNP . Mr. Lee campaigned on pledges to take a tougher stance on cross-border ties . NNP NNP VBD IN NNS TO VB DT JJR NN IN JJ NNS . His election marked the end of 10 years of liberal rule in South Korea . PRP$ NN VBD DT NN IN CD NNS IN JJ NN IN NNP NNP . Pope Benedict left Rome Saturday for Australia , where he will join hundreds of thousands of young people celebrating World Youth Day . NNP NNP VBD NNP NNP IN NNP , WRB PRP MD VB NNS IN NNS IN JJ NNS VBG NNP NNP NNP . The pope told reporters that he would use his 10-day pilgrimage to Australia to offer apologies to victims of sexual abuse by priests , as he did during his recent trip to the United States . DT NN VBD NNS IN PRP MD VB PRP$ JJ NN TO NNP TO VB NNS TO NNS IN JJ NN IN NNS , IN PRP VBD IN PRP$ JJ NN TO DT NNP NNPS . He called such abuse ' incompatible ' with behavior required of priests . PRP VBD JJ NN `` JJ `` IN NN VBN IN NNS . In a telegram to Italian President Giorgio Napolitano just before leaving , the pope said he was filled with a great desire to meet the youth of the entire world to exhort them to become courageous witnesses of the love of Christ . IN DT NN TO JJ NNP NNP NNP RB IN VBG , DT NN VBD PRP VBD VBN IN DT JJ NN TO VB DT NN IN DT JJ NN TO VB PRP TO VB JJ NNS IN DT NN IN NNP . The pope will arrive in Darwin , Australia on Sunday . DT NN MD VB IN NNP , NNP IN NNP . Pakistani intelligence officials say an air strike by a suspected U.S. drone ( unmanned aircraft ) has killed at least six people in a northwestern tribal region near the Afghan border . JJ NN NNS VBP DT NN NN IN DT JJ NNP NN LRB JJ NN RRB VBZ VBN IN JJS CD NNS IN DT JJ JJ NN IN DT JJ NN . Officials said the missile struck a house next to a Muslim school in South Waziristan , in an area believed to be a stronghold of al-Qaida militants . NNS VBD DT NN VBD DT NN IN TO DT NN NN IN NNP NNP , IN DT NN VBN TO VB DT NN IN NNP NNS . They said the identities of those killed in the strike were not immediately known . PRP VBD DT NNS IN DT VBN IN DT NN VBD RB RB VBN . There have been more than 30 missile strikes targeting alleged militants in Pakistan since August . EX VBP VBN JJR IN CD NN NNS VBG JJ NNS IN NNP IN NNP . They are believed to have been carried out by U.S. remote-controlled aircraft . PRP VBP VBN TO VB VBN VBN RP IN NNP JJ NN . U.S. authorities have refused to confirm or deny responsibility for the attacks . NNP NNS VBP VBN TO VB CC VB NN IN DT NNS . The Pakistani government has strongly condemned the air strikes , saying they undermine Pakistan 's counter-terrorism efforts . DT JJ NN VBZ RB VBN DT NN NNS , VBG PRP VBP NNP POS NN NNS . U.S. officials say Uzbekistan has given the United States formal notice that it must leave an airbase that is a key link for military and humanitarian supplies sent into Afghanistan . NNP NNS VBP NNP VBZ VBN DT NNP NNPS JJ NN IN PRP MD VB DT NN WDT VBZ DT JJ NN IN JJ CC JJ NNS VBN IN NNP . State Department spokeswoman Nancy Beck said Saturday Uzbekistan delivered a notice to the U.S. embassy in Tashkent late last week informing officials of the termination of the agreement to use the Karshi-Khanabad airbase . NNP NNP NN NNP NNP VBD NNP NNP VBD DT NN TO DT NNP NN IN NNP RB JJ NN VBG NNS IN DT NN IN DT NN TO VB DT NNP NN . The Central Asian nation asked the United States to remove all of its aircraft , personnel and equipment from the base within six months . DT JJ JJ NN VBD DT NNP NNPS TO VB DT IN PRP$ NN , NNS CC NN IN DT NN IN CD NNS . Uzbekistan did not give a reason for the move , but Ms. Beck said this was a bilateral agreement that could be terminated at any time by either nation . NNP VBD RB VB DT NN IN DT NN , CC NNP NNP VBD DT VBD DT JJ NN WDT MD VB VBN IN DT NN IN DT NN . Relations between Tashkent and Washington have been tense since May , when President Islam Karimov 's government killed hundreds of people while suppressing protest demonstrations in Andijan province , near the border with Kyrgyzstan . NN IN NNP CC NNP VBP VBN JJ IN NNP , WRB NNP NNP NNP POS NN VBD NNS IN NNS IN VBG NN NNS IN NNP NN , IN DT NN IN NNP . Indonesia 's health ministry says a 31-year-old woman has died of bird flu , raising the national death toll from the disease to 102 . NNP POS NN NN VBZ DT JJ NN VBZ VBN IN NN NN , VBG DT JJ NN NN IN DT NN TO CD . Officials say the woman died late Thursday , at a Jakarta hospital . NNS VBP DT NN VBD JJ NNP , IN DT NNP NN . She is at least the seventh person to die this year from the disease . PRP VBZ IN JJS DT JJ NN TO VB DT NN IN DT NN . They say the woman was from Tangerang , a city outside of Jakarta , and that she lived in a neighborhood with backyard farms and near a traditional market that sells poultry . PRP VBP DT NN VBD IN NNP , DT NN IN IN NNP , CC IN PRP VBD IN DT NN IN JJ NNS CC IN DT JJ NN WDT VBZ NN . Most cases in Indonesia involve contact with infected poultry . JJS NNS IN NNP VBP NN IN JJ NN . Bird flu has killed more people in Indonesia than any other country since it began spreading in Southeast Asia in late 2003 . NNP NNP VBZ VBN JJR NNS IN NNP IN DT JJ NN IN PRP VBD VBG IN NNP NNP IN JJ CD . The World Health Organization says 224 people around the world have died from the deadly H5N1 strain of bird flu since 2003 . DT NNP NNP NNP VBZ CD NNS IN DT NN VBP VBN IN DT JJ NNP NN IN NN NN IN CD . Health experts fear it will mutate into a form that could be easily spread among humans , triggering a global pandemic . NNP NNS VBP PRP MD VB IN DT NN WDT MD VB RB VBN IN NNS , VBG DT JJ NN . The boom in wind power is creating opportunities in some economically depressed areas of the United States . DT NN IN NN NN VBZ VBG NNS IN DT RB JJ NNS IN DT NNP NNPS . In the Great Plains states of the country , where wind is in plentiful supply , the growing number of wind energy projects is helping to supplement declining farm incomes and creating new jobs . IN DT NNP NNPS NNS IN DT NN , WRB NN VBZ IN JJ NN , DT VBG NN IN NN NN NNS VBZ VBG TO VB VBG NN NNS CC VBG JJ NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Pakistani security officials said a suspected U.S. drone ( unmanned ) aircraft has fired missiles at a site in the tribal region of northwestern Pakistan . JJ NN NNS VBD DT JJ NNP NN LRB JJ RRB NN VBZ VBN NNS IN DT NN IN DT JJ NN IN JJ NNP . Officials said the missiles struck a compound Saturday in South Waziristan , near the Afghan border , killing at least eight people . NNS VBD DT NNS VBD DT NN NNP IN NNP NNP , IN DT JJ NN , VBG IN JJS CD NNS . Their identities were not immediately known . PRP$ NNS VBD RB RB VBN . The region is seen as a stronghold of al-Qaida and Pakistani Taliban militants . DT NN VBZ VBN IN DT NN IN NNP CC JJ NNP NNS . Suspected U.S. drones have carried out at least 30 missile strikes on militant targets in northwest Pakistan over the past year . VBN NNP NNS VBP VBN RP IN JJS CD NN NNS IN JJ NNS IN JJ NNP IN DT JJ NN . The United States rarely discusses the strikes , which Pakistan has criticized as counterproductive and a violation of its sovereignty . DT NNP NNPS RB VBZ DT NNS , WDT NNP VBZ VBN IN JJ CC DT NN IN PRP$ NN . The latest missile attack comes as Pakistani security forces are battling extremist militants elsewhere in northwestern Pakistan , around the Swat valley . DT JJS NN NN VBZ IN JJ NN NNS VBP VBG NN NNS RB IN JJ NNP , IN DT NNP NN . New Orleans Mayor Ray Nagin says his city can only support half the population it did before Hurricane Katrina struck in August . NNP NNP NNP NNP NNP VBZ PRP$ NN MD RB VB PDT DT NN PRP VBD IN NNP NNP VBD IN NNP . In an interview with the Washington Post published Wednesday , Mayor Nagin says New Orleans ' shattered infrastructure can support about 2,50,000 residents over the next year . IN DT NN IN DT NNP NNP VBN NNP , NNP NNP VBZ NNP NNP POS JJ NN MD VB IN CD NNS IN DT JJ NN . That compares with nearly 5,00,000 people who lived in the city before the hurricane . DT VBZ IN RB CD NNS WP VBD IN DT NN IN DT NN . Mr. Nagin says more than 2,50,000 homes are uninhabitable and that some neighborhoods are still lacking basic services . NNP NNP VBZ JJR IN CD NNS VBP JJ CC IN DT NNS VBP RB VBG JJ NNS . Thousands of New Orleans residents who evacuated the city remain in temporary housing in other cities and states . NNS IN NNP NNP NNS WP VBD DT NN VBP IN JJ NN IN JJ NNS CC NNS . Mayor Nagin has vowed to resurrect the city , some 80 percent of which was flooded after Katrina . NNP NNP VBZ VBN TO VB DT NN , DT CD NN IN WDT VBD VBN IN NNP . Authorities in Turkey have released five people who had been detained since Saturday on suspicion of planning to attack Turkish Prime Minister Recep Tayyip Erdogan . NNS IN NNP VBP VBN CD NNS WP VBD VBN VBN IN NNP IN NN IN VBG TO VB JJ NNP NNP NNP NNP NNP . The Anatolia news agency said police rounded them up in the southern city of Adana , shortly before the prime minister visited the city for an election campaign rally . DT NNP NN NN VBD NN VBD PRP RP IN DT JJ NN IN NNP , RB IN DT JJ NN VBD DT NN IN DT NN NN NN . Judicial officials did not say why the five were released , and provided no details about the alleged plot . NNP NNS VBD RB VB WRB DT CD VBD VBN , CC VBD DT NNS IN DT JJ NN . The Pakistani government has summoned envoys of nine European countries to protest the publication of cartoons of the prophet Mohammed . DT JJ NN VBZ VBN NNS IN CD JJ NNS TO VB DT NN IN NNS IN DT NN VBN . On Saturday , diplomats from France , Germany , Italy , Spain , Switzerland , the Netherlands , Hungary , Norway and the Czech Republic were called to the Foreign Ministry in Islamabad to hear the protest from the world 's second-largest Muslim nation . IN NNP , NNS IN NNP , NNP , NNP , NNP , NNP , DT NNP , NNP , NNP CC DT JJ NNP VBD VBN TO DT NNP NNP IN NNP TO VB DT NN IN DT NN POS JJ NNP NN . A spokesperson said the diplomats were told that freedom of expression is not a license to disparage the values and beliefs of other people . DT NN VBD DT NNS VBD VBN IN NN IN NN VBZ RB DT NN TO VB DT NNS CC NNS IN JJ NNS . The cartoons , published in European newspapers , have enraged Muslims because Islamic tradition forbids any depiction of the prophet Mohammed to prevent idolatry . DT NNS , VBN IN JJ NNS , VBP VBN NNS IN JJ NN VBZ DT NN IN DT NN VBN TO VB NN . The diplomatic protest comes a day after Pakistan 's parliament denounced the publication of the cartoons . DT JJ NN VBZ DT NN IN NNP POS NN VBD DT NN IN DT NNS . A Russia envoy says North Korean leader Kim Jong-il has confirmed Pyongyang will not develop nuclear weapons and continues to support the six-party agreement reached last month . DT NNP NN VBZ JJ JJ NN NNP NNP VBZ VBN NNP MD RB VB JJ NNS CC VBZ TO VB DT JJ NN VBN JJ NN . Russia 's Interfax news agency says presidential envoy Konstantin Pulikovsky just returned from North Korea 's 60th anniversary celebrations for the founding of the country 's communist party . NNP POS NNP NN NN VBZ JJ NN NNP NNP RB VBD IN NNP NNP POS JJ NN NNS IN DT NN IN DT NN POS JJ NN . The agency quotes Mr. Pulikovsky as saying he met with the North Korean leader , and he clearly confirmed his country 's renunciation of nuclear weapons . DT NN VBZ NNP NNP IN VBG PRP VBD IN DT JJ JJ NN , CC PRP RB VBD PRP$ NN POS NN IN JJ NNS . The Russian envoy also reported the 63-year-old leader is in excellent health , saying ' he is lively and joyful . ' DT JJ NN RB VBD DT JJ NN VBZ IN JJ NN , VBG `` PRP VBZ JJ CC JJ . `` North Korea agreed last month during six-nation talks in Beijing to abandon its nuclear weapons program in return for economic aid , energy assistance and security assurances . NNP NNP VBD JJ NN IN JJ NNS IN NNP TO VB PRP$ JJ NNS NN IN NN IN JJ NN , NN NN CC NN NNS . The next round of talks is scheduled for November . DT JJ NN IN NNS VBZ VBN IN NNP . Israeli President Shimon Peres has strongly denied a report that he offered nuclear warheads to the white minority South African government in 1975 when he was the Israeli defense minister . JJ NNP NNP NNP VBZ RB VBN DT NN IN PRP VBD JJ NNS TO DT JJ NN JJ JJ NN IN CD WRB PRP VBD DT JJ NN NN . In a statement Monday , Mr. Peres said ' there exists no basis in reality for the claims published ' by the British newspaper , The Guardian . IN DT NN NNP , NNP NNP VBD `` EX VBZ DT NN IN NN IN DT NNS VBN `` IN DT JJ NN , DT NNP . Mr. Peres said The Guardian wrote its article based on the ' selective interpretation of South African documents and not on concrete facts . ' NNP NNP VBD DT NNP VBD PRP$ NN VBN IN DT `` JJ NN IN JJ JJ NNS CC RB IN JJ NNS . `` The report published Sunday quoted newly released South African documents about top secret meetings in which Mr. Peres allegedly offered the warheads to South African officials in 1975 . DT NN VBN NNP VBD RB VBN JJ JJ NNS IN JJ JJ NNS IN WDT NNP NNP RB VBD DT NNS TO JJ JJ NNS IN CD . Israel has never confirmed or denied the widely held belief that it has nuclear weapons . NNP VBZ RB VBN CC VBN DT RB VBN NN IN PRP VBZ JJ NNS . South Africa developed nuclear weapons during white minority rule , but dismantled its nuclear program in 1991 . NNP NNP VBD JJ NNS IN JJ NN NN , CC VBD PRP$ JJ NN IN CD . Democratic presidential candidate Barack Obama says if elected president he plans to make college affordable for everyone . JJ JJ NN NNP NNP VBZ IN VBN NN PRP VBZ TO VB NN JJ IN DT . Speaking to students at a community college in Michigan Tuesday , Obama discussed several initiatives he says he would implement including a $ 4,000 tax credit for students who can not afford college . VBG TO NNS IN DT NN NN IN NNP NNP , NNP VBD JJ NNS PRP VBZ PRP MD VB VBG DT $ CD NN NN IN NNS WP MD RB VB NN . He also said he would require student loans be provided by the federal government . PRP RB VBD PRP MD VB NN NNS VB VBN IN DT JJ NN . The Illinois senator said there would be requirements to receive the tax credit , including 100 hours of community service . DT NNP NN VBD EX MD VB NNS TO VB DT NN NN , VBG CD NNS IN NN NN . On Monday , former U.S. Vice President Al Gore endorsed Obama , saying in Detroit , Michigan , that Obama is the candidate to lead the country toward a better future . IN NNP , JJ NNP NNP NNP NNP NNP VBD NNP , VBG IN NNP , NNP , IN NNP VBZ DT NN TO VB DT NN IN DT JJR NN . The presumptive Republican presidential nominee , John McCain , is campaigning Tuesday in Texas , where the veteran Arizona lawmaker is to call for the lifting of a ban on offshore U.S. oil and natural gas exploration . DT JJ JJ JJ NN , NNP NNP , VBZ VBG NNP IN NNP , WRB DT NN NNP NN VBZ TO VB IN DT NN IN DT NN IN JJ NNP NN CC JJ NN NN . Iraqi officials say President Jalal Talabani has arrived in Jordan for medical treatment after falling ill from hard work in recent days . JJ NNS VBP NNP NNP NNP VBZ VBN IN NNP IN JJ NN IN VBG RB IN JJ NN IN JJ NNS . Iraqi sources say President Talabani experienced a drop in blood pressure , but the sources ruled out a possible heart attack . JJ NNS VBP NNP NNP VBD DT NN IN NN NN , CC DT NNS VBD RP DT JJ NN NN . His son , Qubad Talabani , told VOA Kurdish service that his father is suffering from exhaustion and dehydration . PRP$ NN , NNP NNP , VBD NNP NNP NN IN PRP$ NN VBZ VBG IN NN CC NN . Media reports quoting the officials say Mr. Talabani will be treated at a hospital in the Jordanian capital , Amman . NNS NNS VBG DT NNS VBP NNP NNP MD VB VBN IN DT NN IN DT JJ NN , NNP . A statement from Mr. Talabani 's office said there is no cause for concern . DT NN IN NNP NNP POS NN VBD EX VBZ DT NN IN NN . The Iraqi president is in his early 70s . DT JJ NN VBZ IN PRP$ JJ NNS . Israeli Prime Minister Ariel Sharon 's office says he and Palestinian leader Mahmoud Abbas spoke by telephone Sunday and agreed to meet in the near future . JJ NNP NNP NNP NNP POS NN VBZ PRP CC JJ NN NNP NNP VBD IN NN NNP CC VBD TO VB IN DT JJ NN . The two leaders were to have met today , but the meeting was canceled after a 10-day upsurge in violence . DT CD NNS VBD TO VB VBN NN , CC DT NN VBD VBN IN DT JJ NN IN NN . Earlier today , Israel suspended its Gaza offensive , following a lull in rocket attacks by Palestinian militants . RBR NN , NNP VBD PRP$ NNP NN , VBG DT NN IN NN NNS IN JJ NNS . The army said it will restart the operation if the rocket fire resumes . DT NN VBD PRP MD VB DT NN IN DT NN NN VBZ . In a separate development , Israel is warning vacationers to avoid Egypt 's Red Sea resorts over the upcoming Jewish holidays . IN DT JJ NN , NNP VBZ VBG NNS TO VB NNP POS NNP NNP NNS IN DT JJ JJ NNS . A government statement says Israeli tourists could be kidnapped by pro-Palestinian militants . DT NN NN VBZ JJ NNS MD VB VBN IN JJ NNS . Thousands of Israelis ignored a similar warning last year ahead of bombings that killed 34 people at two Sinai resort areas . NNS IN NNS VBD DT JJ NN JJ NN RB IN NNS WDT VBD CD NNS IN CD NNP NN NNS . Indonesia says it has captured one of the nation 's most wanted terrorist suspect , Abdullah Sonata . NNP VBZ PRP VBZ VBN CD IN DT NN POS RBS JJ JJ NN , NNP NNP . Authorities said two of his aides were arrested and another follower was killed during coordinated raids Wednesday on the main island of Java . NNS VBD CD IN PRP$ NNS VBD VBN CC DT NN VBD VBN IN VBN NNS NNP IN DT JJ NN IN NNP . Sonata , a follower of the deceased terror leader Noordin Mohammed Top , is accused of playing a key role in recruiting terrorists and setting up a training camp that was discovered last month in western Aceh province . NNP , DT NN IN DT JJ NN NN NNP NNP NNP , VBZ VBN IN VBG DT JJ NN IN VBG NNS CC VBG RP DT NN NN WDT VBD VBN JJ NN IN JJ NNP NN . Police said participants in the camp had been planning an armed attack on luxury hotels favored by tourists and an assault aimed at killing the president and foreign guests during independence celebrations in August . NNS VBD NNS IN DT NN VBD VBN VBG DT JJ NN IN NN NNS VBN IN NNS CC DT NN VBN IN VBG DT NN CC JJ NNS IN NN NNS IN NNP . A bomb hidden inside a backpack was also discovered during Wednesday 's raids , police said . DT NN VBN IN DT NN VBD RB VBN IN NNP POS NNS , NN VBD . A day earlier , a court sentenced two men to prison for assisting Noordin Top , who was killed during a police raid in Central Java last September . DT NN RB , DT NN VBN CD NNS TO NN IN VBG NNP NNP , WP VBD VBN IN DT NN NN IN NNP NNP JJ NNP . A New York-based media rights group is urging the Iraqi government to reverse a ban on journalists from the immediate aftermath of bomb attacks . DT NNP JJ NNS NNS NN VBZ VBG DT JJ NN TO VB DT NN IN NNS IN DT JJ NN IN NN NNS . The government announced earlier this month that reporters will not be allowed at a bombing site for one hour following an attack . DT NN VBD RBR DT NN IN NNS MD RB VB VBN IN DT VBG NN IN CD NN VBG DT NN . Reasons given for the ban include protecting reporters from secondary attacks and preserving evidence from attacks . NNS VBN IN DT NN VBP VBG NNS IN JJ NNS CC VBG NN IN NNS . However , the executive director of the Committee to Protect Journalists , Joel Simon , says the restriction appears to be an attempt to limit media coverage of unwelcome news . RB , DT NN NN IN DT NNP TO VB NNS , NNP NNP , VBZ DT NN VBZ TO VB DT NN TO VB NNS NN IN JJ NN . In a letter to Iraqi Prime Minister Nouri al-Maliki , Simon says there is no justification for news coverage to be obstructed . IN DT NN TO JJ NNP NNP NNP NNP , NNP VBZ EX VBZ DT NN IN NN NN TO VB VBN . He called on the prime minister to allow the press to carry out its reporting without hindrance . PRP VBD IN DT JJ NN TO VB DT NN TO VB RP PRP$ NN IN NN . The International Whaling Commission is meeting in the northern U.S. state of Alaska to decide whether to drop a moratorium on commercial whale hunting . DT NNP NNP NNP VBZ VBG IN DT JJ NNP NN IN NNP TO VB IN TO VB DT NN IN JJ NN NN . The ban was enacted in 1986 to help prevent several species of great whales from becoming extinct . DT NN VBD VBN IN CD TO VB VB JJ NNS IN JJ NNS IN VBG NN . Representatives from 75 member countries will debate the issue during their annual meeting , which ends Thursday . NNS IN CD NN NNS MD VB DT NN IN PRP$ JJ NN , WDT VBZ NNP . Pro-whaling nations such as Japan , Norway and Iceland argue that the ban can be lifted since whale populations have recovered . JJ NNS JJ IN NNP , NNP CC NNP VBP IN DT NN MD VB VBN IN NN NNS VBP VBN . Approval from 56 member nations would be needed to overturn the ban . NNP IN CD NN NNS MD VB VBN TO VB DT NN . Last year , IWC members voted 31-30 against a similar motion to repeal the ban . JJ NN , NNP NNS VBD CD IN DT JJ NN TO VB DT NN . Norway and Iceland are currently the only member nations to openly ignore the moratorium . NNP CC NNP VBP RB DT JJ NN NNS TO RB VB DT NN . Japan , which kills about 1,000 whales a year , says it hunts the animals strictly for scientific purposes , although the meat is sold to restaurants and shops . NNP , WDT VBZ IN CD NNS DT NN , VBZ PRP VBZ DT NNS RB IN JJ NNS , IN DT NN VBZ VBN TO NNS CC NNS . Indonesian prosecutors are seeking an eight-year jail term for the governor of tsunami-hit Aceh province , who is accused of misusing more than $ 1 million in government funds to buy a helicopter . JJ NNS VBP VBG DT JJ NN NN IN DT NN IN JJ NNP NN , WP VBZ VBN IN VBG JJR IN $ CD CD IN NN NNS TO VB DT NN . Prosecutors said Monday that Abdullah Puteh did not comply with state bidding regulations when he purchased a Russian helicopter for the province . NNS VBD NNP IN NNP NNP VBD RB VB IN NN NN NNS WRB PRP VBD DT JJ NN IN DT NN . The governor was arrested prior to last year 's tsunami . DT NN VBD VBN RB TO JJ NN POS NN . Mr. Puteh , who denies the allegations , also faces a fine of up to $ 1,07,000 if he is convicted . NNP NNP , WP VBZ DT NNS , RB VBZ DT NN IN RB TO $ CD IN PRP VBZ VBN . The case is seen as a key test of President Susilo Bambang Yudhoyono 's anti-corruption drive . DT NN VBZ VBN IN DT JJ NN IN NNP NNP NNP NNP POS JJ NN . Insurgents pressing a campaign of violence against Iraq 's Shi'ite Muslims struck again Saturday , detonating a car bomb at a market on the outskirts of Baghdad , killing at least 14 people . NNS VBG DT NN IN NN IN NNP POS NNP NNPS VBD RB NNP , VBG DT NN NN IN DT NN IN DT NNS IN NNP , VBG IN JJS CD NNS . Hospital and security officials say at least 10 other people were wounded in the early evening attack in a poor Shi'ite Nahrawan neighborhood . NN CC NN NNS VBP IN JJS CD JJ NNS VBD VBN IN DT JJ NN NN IN DT JJ NNP NNP NN . Since Wednesday , a wave of bombings and shootings in and around Baghdad has killed more than 200 people and injured some 600 others . IN NNP , DT NN IN NNS CC NNS IN CC IN NNP VBZ VBN JJR IN CD NNS CC VBD DT CD NNS . Meanwhile , the U.S. military reports it has captured two key al-Qaida leaders in the northern city of Mosul . RB , DT NNP NN VBZ PRP VBZ VBN CD NN NNP NNS IN DT JJ NN IN NNP . The military says the men - Taha Ibrahim Yasin Becher and Hamed Sa'eed Ismael Mustafa - directed the terrorist organization 's daily operations and were responsible for numerous attacks against Iraqi and coalition forces . DT NN VBZ DT NNS IN NNP NNP NNP NNP CC NNP NNP NNP NNP : VBD DT JJ NN POS JJ NNS CC VBD JJ IN JJ NNS IN JJ CC NN NNS . Israel 's justice ministry says it has ordered a criminal investigation into Prime Minister Ehud Olmert 's role in the sale of an Israeli bank two years ago . NNP POS NN NN VBZ PRP VBZ VBN DT JJ NN IN NNP NNP NNP NNP POS NN IN DT NN IN DT JJ NN CD NNS RB . Media reports say police will question Mr. Olmert about allegations that he tried to help two friends buy Bank Leumi , one of Israel 's largest financial institutions , which was going private . NNS NNS VBP NNS MD VB NNP NNP IN NNS IN PRP VBD TO VB CD NNS VBP NNP NNP , CD IN NNP POS JJS JJ NNS , WDT VBD VBG JJ . The friends were unsuccessful in their bids . DT NNS VBD JJ IN PRP$ NNS . Israeli media have said police might also want to question Mr. Olmert about another case involving appointments he made to a business authority when he was industry minister in 2004 . JJ NNS VBP VBN NN MD RB VB TO VB NNP NNP IN DT NN VBG NNS PRP VBD TO DT NN NN WRB PRP VBD NN NN IN CD . The investigation announced Tuesday is the latest involving the prime minister . DT NN VBN NNP VBZ DT JJS VBG DT JJ NN . The state comptroller has already investigated Mr. Olmert 's real estate dealings but has found no wrongdoing . DT NN NN VBZ RB VBN NNP NNP POS JJ NN NNS CC VBZ VBN DT NN . Recently Mr. Olmert 's personal secretary , Shula Zaken , was placed under house arrest as part of a corruption probe . RB NNP NNP POS JJ NN , NNP NNP , VBD VBN IN NN NN IN NN IN DT NN NN . A top U.S. official says the levee system that failed in New Orleans earlier this year will be rebuilt ' stronger and safer than ever before ' . DT JJ NNP NN VBZ DT NN NN WDT VBD IN NNP NNP RBR DT NN MD VB VBN `` JJR CC JJR IN RB IN `` . But the federal head of reconstruction efforts , Donald Powell Thursday stopped short of saying the new , reinforced levees would withstand a hurricane stronger than Katrina , which triggered the levee failure in August . CC DT JJ NN IN NN NNS , NNP NNP NNP VBD RB IN VBG DT JJ , JJ NNS MD VB DT NN JJR IN NNP , WDT VBD DT NN NN IN NNP . Katrina was a Category Three storm , on a scale that reaches a devastating Category Five . NNP VBD DT NNP CD NN , IN DT NN WDT VBZ DT JJ NNP CD . At the same White House news conference , New Orleans Mayor Ray Nagin said it is time for his city 's residents to return home . IN DT JJ NNP NNP NN NN , NNP NNP NNP NNP NNP VBD PRP VBZ NN IN PRP$ NN POS NNS TO VB NN . He said the city now has the three things needed to lure residents and businesses back - tax incentives , money for new housing and reconstruction , and the new levee system , set to be completed before the beginning of next year 's hurricane season . PRP VBD DT NN RB VBZ DT CD NNS VBN TO VB NNS CC NNS RB : NN NNS , NN IN JJ NN CC NN , CC DT JJ NN NN , VBN TO VB VBN IN DT NN IN JJ NN POS NN NN . Former Salvadoran President Francisco Flores has withdrawn his candidacy to head the Organization of America States , just days ahead of the scheduled vote . JJ JJ NNP NNP NNP VBZ VBN PRP$ NN TO VB DT NNP IN NNP NNPS , RB NNS RB IN DT VBN NN . Mr. Flores ' decision to step aside Friday leaves two candidates in Monday 's election -- Chilean Interior Minister Jose Miguel Insulza and Mexican Foreign Minister Luis Ernesto Derbez . NNP NNP POS NN TO VB RB NNP VBZ CD NNS IN NNP POS NN : JJ NNP NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP . Officials from 34 nations will meet in Washington to choose a new secretary-general . NNS IN CD NNS MD VB IN NNP TO VB DT JJ NN . Mr. Flores said he wanted to avoid splitting regional votes with Mexico 's candidate , Mr. Derbez . NNP NNP VBD PRP VBD TO VB VBG JJ NNS IN NNP POS NN , NNP NNP . The United States , which endorsed Mr. Flores ' candidacy , says it respects his decision . DT NNP NNPS , WDT VBD NNP NNP POS NN , VBZ PRP VBZ PRP$ NN . A State Department official says Washington will consult with its OAS partners to elect the best possible candidate . DT NNP NNP NN VBZ NNP MD VB IN PRP$ NNP NNS TO VB DT JJS JJ NN . The post became vacant in October , when former Costa Rican President Miguel Angel Rodriguez resigned to face corruption charges at home . DT NN VBD JJ IN NNP , WRB JJ NNP JJ NNP NNP NNP NNP VBD TO VB NN NNS IN NN . The top United Nations investigator into the murder of former Lebanese Prime Minister Rafik Hariri has presented his latest findings to Secretary-General Kofi Annan . DT JJ NNP NNPS NN IN DT NN IN JJ JJ NNP NNP NNP NNP VBZ VBN PRP$ JJS NNS TO JJ NNP NNP . The report from Detlev Mehlis is to be delivered to the U.N. Security Council Monday , and Mr. Mehlis will brief the council Tuesday . DT NN IN NNP NNP VBZ TO VB VBN TO DT NNP NNP NNP NNP , CC NNP NNP MD VB DT NN NNP . Mr. Mehlis has said the probe should continue and said he plans to request more interviews with Syrian officials . NNP NNP VBZ VBN DT NN MD VB CC VBD PRP VBZ TO VB JJR NNS IN JJ NNS . An earlier report from U.N. investigators implicated Lebanese and Syrian officials in Mr. Hariri 's death . DT JJR NN IN NNP NNS VBD JJ CC JJ NNS IN NNP NNP POS NN . Meanwhile , Syria 's President Bashar al-Assad told Russian television that he would punish any Syrians proven to have been involved in the February killing . RB , NNP POS NNP NNP NNP VBD JJ NN IN PRP MD VB DT NNS VBN TO VB VBN VBN IN DT NNP NN . He also warned against possible sanctions by the U.N. Security Council , which has sought to pressure Syria to cooperate with the U.N. probe . PRP RB VBD IN JJ NNS IN DT NNP NNP NNP , WDT VBZ VBN TO VB NNP TO VB IN DT NNP NN . The Colombian Army says it has killed the number two leader of the powerful rebel group Revolutionary Armed Forces of Colombia or FARC . DT JJ NNP VBZ PRP VBZ VBN DT NN CD NN IN DT JJ NN NN NNP NNP NNS IN NNP CC NNP . Defense Minister Juan Manuel Santos said Saturday that the army killed Raul Reyes , a top rebel commander who often served as a FARC spokesman . NNP NNP NNP NNP NNP VBD NNP IN DT NN VBD NNP NNP , DT JJ NN NN WP RB VBD IN DT NNP NN . Santos said Reyes was killed during a combat operation along the southern border with Ecuador . NNP VBD NNP VBD VBN IN DT NN NN IN DT JJ NN IN NNP . The death is a victory for Colombian President Alvaro Uribe who has been under increasing international pressure to ease the long-running conflict with the country 's main leftist rebel group . DT NN VBZ DT NN IN JJ NNP NNP NNP WP VBZ VBN IN VBG JJ NN TO VB DT JJ NN IN DT NN POS JJ JJ NN NN . FARC is believed to be holding about 750 prisoners in jungle hideouts . NNP VBZ VBN TO VB VBG IN CD NNS IN NN NNS . The government has been negotiating the swap of hostages , four of whom were released to Venezuelan authorities on Wednesday . DT NN VBZ VBN VBG DT NN IN NNS , CD IN WP VBD VBN TO JJ NNS IN NNP . The new leader of Israel 's main opposition Labor Party is threatening to back a plan to topple Prime Minister Ariel Sharon 's government and force early elections . DT JJ NN IN NNP POS JJ NN NNP NNP VBZ VBG TO VB DT NN TO VB NNP NNP NNP NNP POS NN CC NN JJ NNS . Amir Peretz says he wants to meet with Mr. Sharon by Wednesday when a bill will be introduced by a smaller opposition party , National Religious Party , calling for parliament to be dissolved . NNP NNP VBZ PRP VBZ TO VB IN NNP NNP IN NNP WRB DT NN MD VB VBN IN DT JJR NN NN , NNP NNP NNP , VBG IN NN TO VB VBN . Mr. Peretz says he will back the measure if he does not meet with Mr. Sharon before then . NNP NNP VBZ PRP MD VB DT NN IN PRP VBZ RB VB IN NNP NNP IN RB . Mr. Peretz made the comments after the prime minister postponed a meeting planned for Sunday . NNP NNP VBD DT NNS IN DT JJ NN VBD DT NN VBN IN NNP . Israel is not scheduled to hold parliamentary elections until next November , but Mr. Peretz is proposing they be held by March . NNP VBZ RB VBN TO VB JJ NNS IN JJ NNP , CC NNP NNP VBZ VBG PRP VB VBN IN NNP . He defeated Shimon Peres for the Labor Party leadership in elections Thursday , vowing to pull the party from Mr. Sharon 's fragile coalition government . PRP VBD NNP NNP IN DT NNP NNP NN IN NNS NNP , VBG TO VB DT NN IN NNP NNP POS JJ NN NN . Google , one of the Internet 's most successful companies , is gearing up to compete better with its popular rival , Facebook . NNP , CD IN DT NNP POS JJS JJ NNS , VBZ VBG RP TO VB RB IN PRP$ JJ NN , NNP . The Wall Street Journal reports Google is holding talks with makers of on-line games in the hope of boosting profits by offering a new service to its many customers . DT NNP NNP NNP VBZ NNP VBZ VBG NNS IN NNS IN JJ NNS IN DT NN IN VBG NNS IN VBG DT JJ NN TO PRP$ JJ NNS . Advertisers pay the Internet giants for the right to post advertising that reaches the hundreds of millions of people who use the services . NNS VBP DT NN NNS IN DT NN TO VB NN WDT VBZ DT NNS IN NNS IN NNS WP VBP DT NNS . The fast-growing on-line gaming sector of the industry could boost revenue by attracting larger audiences and holding them for a longer time . DT JJ JJ NN NN IN DT NN MD VB NN IN VBG JJR NNS CC VBG PRP IN DT JJR NN . Nigerian police are searching for 15 school children who were kidnapped in southeastern Nigeria by gunmen . JJ NNS VBP VBG IN CD NN NNS WP VBD VBN IN JJ NNP IN NNS . Police said Tuesday the kidnappers hijacked the school bus the children were riding in and have demanded a ransom of more than $ 1,00,000 . NNS VBD NNP DT NNS VBD DT NN NN DT NNS VBD VBG IN CC VB VBN DT NN IN JJR IN $ CD . They say the attack took place early Monday while the nursery and primary school children were being driven to the Abayi International School , in Abia state . PRP VBP DT NN VBD NN RB NNP IN DT NN CC JJ NN NNS VBD VBG VBN TO DT NNP NNP NNP , IN NNP NN . There have been a number of kidnappings for ransom in Abia state , near Nigeria 's oil-rich Niger Delta region . EX VBP VBN DT NN IN NNS IN NN IN NNP NN , IN NNP POS NN NNP NNP NN . Most of the kidnappings in the Niger Delta initially involved foreign oil workers , but more recently attackers have also targeted the children and relatives of wealthy Nigerians . JJS IN DT NNS IN DT NNP NNP RB VBD JJ NN NNS , CC RBR RB NNS VBP RB VBN DT NNS CC NNS IN JJ NNS . Most of those who are abducted are later released unharmed , usually after a ransom is paid . JJS IN DT WP VBP VBN VBP RB VBN JJ , RB IN DT NN VBZ VBN . An Ariane rocket has lifted off from Kourou , French Guiana , carrying seven satellites , including at least one that is to gather intelligence for France 's military . DT NNP NN VBZ VBN RP IN NNP , NNP NNP , VBG CD NNS , VBG IN JJS CD WDT VBZ TO VB NN IN NNP POS NN . The Helios 2A military satellite , launched from the European Space Agency 's center , is to gather both optical and infrared intelligence . DT NNP NNP JJ NN , VBN IN DT NNP NNP NNP POS NN , VBZ TO VB DT JJ CC JJ NN . The other satellites include the Parasol designed to study cloud formations in the upper atmosphere . DT JJ NNS VBP DT NNP VBD TO VB NN NNS IN DT JJ NN . Israeli Prime Minister Ariel Sharon has ordered his government to cut all contact with the Palestinian Authority after a militant attack late Thursday killed six Israeli civilians . JJ NNP NNP NNP NNP VBZ VBN PRP$ NN TO VB DT NN IN DT JJ NNP IN DT JJ NN RB NNP VBD CD JJ NNS . Mr. Sharon 's office said there would be no contact until newly elected Palestinian President Mahmoud Abbas reins in the militants and halts attacks . NNP NNP POS NN VBD EX MD VB DT NN IN RB VBN JJ NNP NNP NNP NNS IN DT NNS CC NNS NNS . All border crossings with Gaza were also closed . DT NN NNS IN NNP VBD RB VBN . Palestinian Cabinet minister Saeb Erekat called on Mr. Sharon to reconsider his decision , saying the best way to restart the peace process is to resume dialogue . JJ NNP NN NNP NNP VBD IN NNP NNP TO VB PRP$ NN , VBG DT JJS NN TO VB DT NN NN VBZ TO VB NN . Earlier Friday , Mr. Abbas , who is to be sworn-in Saturday , condemned both the militant attack , as well as deadly Israeli raids in the occupied territories , saying they do not benefit the peace process . RBR NNP , NNP NNP , WP VBZ TO VB JJ NNP , VBD DT DT JJ NN , RB RB IN JJ JJ NNS IN DT JJ NNS , VBG PRP VBP RB VB DT NN NN . The militant groups Hamas , the Popular Resistance Committee and al-Aqsa Martyrs Brigades all claimed responsibility for Thursday 's attack on the Karni crossing between Israel and the Gaza Strip . DT JJ NNS NNP , DT NNP NNP NNP CC NNP NNP NNP DT VBD NN IN NNP POS NN IN DT NNP VBG IN NNP CC DT NNP NNP . Russia says it withdrew its last troops based in Georgia Thursday , months ahead of schedule . NNP VBZ PRP VBD PRP$ JJ NNS VBN IN NNP NNP , NNS RB IN NN . A train carrying the last 150 Russian troops and military equipment left the Georgian city of Batumi on the Black Sea late Wednesday night and crossed into Armenia early Thursday . DT NN VBG DT JJ CD JJ NNS CC JJ NN VBD DT JJ NN IN NNP IN DT NNP NNP JJ NNP NN CC VBD IN NNP RB NNP . It marks the end of two centuries of Russia 's military presence in Georgia . PRP VBZ DT NN IN CD NNS IN NNP POS JJ NN IN NNP . However , Russia still maintains peacekeeping forces in Georgia 's breakaway regions of Abkhazia and South Ossetia . RB , NNP RB VBZ VBG NNS IN NNP POS JJ NNS IN NNP CC NNP NNP . Georgian President Mikhail Saakashvili has accused the Russian troops of supporting the separatists and wants the Russian peacekeepers replaced with United Nations forces . JJ NNP NNP NNP VBZ VBN DT JJ NNS IN VBG DT NNS CC VBZ DT JJ NNS VBN IN NNP NNP NNS . Russia has based troops at former Soviet bases in Georgia since 1991 and had promised to pull them all out by 2008 . NNP VBZ VBN NNS IN JJ JJ NNS IN NNP IN CD CC VBD VBN TO VB PRP DT RP IN CD . Investors got a mixed bag of U.S. economic information on Friday . NNS VBD DT JJ NN IN NNP JJ NN IN NNP . The huge General Electric corporation reported an 18 percent increase in profits in the last three months of 2004 . DT JJ NNP NNP NN VBD DT CD NN NN IN NNS IN DT JJ CD NNS IN CD . GE officials say strong industrial sales along with an ' excellent ' global economy helped them make nearly $ 5.4 billion during the period . NNP NNS VBP JJ JJ NNS IN IN DT `` JJ `` JJ NN VBD PRP VB RB $ CD CD IN DT NN . Measured by its value on the stock market , GE is the biggest U.S. corporation . VBN IN PRP$ NN IN DT NN NN , NNP VBZ DT JJS NNP NN . Researchers say U.S. consumers have a different view of the economy . NNS VBP NNP NNS VBP DT JJ NN IN DT NN . On Friday the University of Michigan said its index of consumer confidence declined 1.3 percent in early January , to a reading of 95.8 . IN NNP DT NNP IN NNP VBD PRP$ NN IN NN NN VBD CD NN IN JJ NNP , TO DT NN IN CD . Experts track consumer confidence for hints about future consumer spending , which drives much of the economic activity in the United States . NNS VBP NN NN IN NNS IN JJ NN NN , WDT VBZ NN IN DT JJ NN IN DT NNP NNPS . The senior leader of Hamas says the Palestinian militant group will not disarm or change its policies toward Israel , following its landslide election victory . DT JJ NN IN NNP VBZ DT JJ JJ NN MD RB VB CC VB PRP$ NNS IN NNP , VBG PRP$ NN NN NN . Speaking from his base in Damascus , Syria , Khaled Mashaal said Saturday Hamas and the Palestinian people will be as effective in politics and reform as in fighting Israel . VBG IN PRP$ NN IN NNP , NNP , NNP NNP VBD NNP NNP CC DT JJ NNS MD VB IN JJ IN NNS CC NN IN IN VBG NNP . He also rejected international threats to cut off Palestinian aid , saying the Palestinian people will not be blackmailed . PRP RB VBD JJ NNS TO VB RP JJ NN , VBG DT JJ NNS MD RB VB VBN . Hamas , which routed the Fatah party in parliamentary elections Wednesday , has claimed numerous suicide attacks against Israel in recent years and has vowed to destroy the Jewish state . NNP , WDT VBD DT NNP NN IN JJ NNS NNP , VBZ VBN JJ NN NNS IN NNP IN JJ NNS CC VBZ VBN TO VB DT JJ NN . Tensions remain high in the Palestinian territories Saturday with fresh calls for demonstrations by Fatah party activists . NNS VBP JJ IN DT JJ NNS NNP IN JJ NNS IN NNS IN NNP NN NNS . Witnesses say Fatah gunmen climbed the roof of the Palestinian parliament in Ramallah and fired shots in the air as supporters cheered below . NNS VBP NNP NNS VBD DT NN IN DT JJ NN IN NNP CC VBD NNS IN DT NN IN NNS VBD IN . Pope Benedict is urging nuclear-armed nations to get rid of their arsenals . NNP NNP VBZ VBG JJ NNS TO VB JJ IN PRP$ NNS . The pope issued the plea Saturday at the Vatican after Japan 's new ambassador to the Holy See presented his credentials to the pontiff . DT NN VBD DT NN NNP IN DT NNP IN NNP POS JJ NN TO DT NNP NNP VBD PRP$ NNS TO DT NN . Pope Benedict called nuclear weapons a source of tension and mistrust . NNP NNP VBD JJ NNS DT NN IN NN CC NN . He said the 65th anniversary of bombings of the Japanese cities of Hiroshima and Nagasaki should serve as a reminder of the horror nuclear weapons can cause . PRP VBD DT JJ NN IN NNS IN DT JJ NNS IN NNP CC NNP MD VB IN DT NN IN DT NN JJ NNS MD VB . The United States dropped atomic bombs on both cities in August of 1945 , killing more than 200 people . DT NNP NNPS VBD JJ NNS IN DT NNS IN NNP IN CD , VBG JJR IN CD NNS . Japan surrendered unconditionally shortly afterwards , ending World War Two . NNP VBD RB RB RB , VBG NNP NNP CD . Pope Benedict praised Japan for setting an example since the bombings , for always trying to find peaceful solutions to conflicts . NNP NNP VBD NNP IN VBG DT NN IN DT NNS , IN RB VBG TO VB JJ NNS TO NNS . Britain 's High Court has cleared the way for a Tunisian terror suspect to be extradited to Spain to face charges of helping the September 11 hijackers . NNP POS NNP NNP VBZ VBN DT NN IN DT JJ NN NN TO VB VBN TO NNP TO VB NNS IN VBG DT NNP CD NNS . Hedi Ben Yousseff Boudhiba is accused of belonging to an al-Qaida cell that provided FALSE passports and money to the planners of 2001 attacks on New York and Washington . NNP NNP NNP NNP VBZ VBN IN VBG TO DT NNP NN WDT VBD JJ NNS CC NN TO DT NNS IN CD NNS IN NNP NNP CC NNP . Boudhiba was arrested in Liverpool in August of 2004 as he tried to board a flight to Barcelona . NNP VBD VBN IN NNP IN NNP IN CD IN PRP VBD TO VB DT NN TO NNP . Britain agreed to extradite Boudhiba to Spain after he was indicted by a Spanish judge . NNP VBD TO VB NNP TO NNP IN PRP VBD VBN IN DT JJ NN . Lawyers for the 45-year-old Tunisian tried to block the move , arguing he is mentally disabled . NNS IN DT JJ NN VBD TO VB DT NN , VBG PRP VBZ RB VBN . But British Justice Janet Smith rejected Boudhiba 's appeal , saying she was confident Spanish authorities would determine if he is fit to stand trial . CC JJ NNP NNP NNP VBD NNP POS NN , VBG PRP VBD JJ JJ NNS MD VB IN PRP VBZ JJ TO VB NN . The Israeli military has proposed a plan to destroy up to 3,000 Palestinian homes in the southern Gaza Strip , in order to dig a huge trench meant to halt Palestinian weapons smuggling from nearby Egypt . DT JJ NN VBZ VBN DT NN TO VB RP TO CD JJ NNS IN DT JJ NNP NNP , IN NN TO VB DT JJ NN VBN TO VB JJ NNS VBG IN JJ NNP . Israel 's Maariv newspaper says the plan presented to the Israeli Attorney General proposes a trench along the five-kilometer border separating southern Gaza from Egypt . NNP POS NNP NN VBZ DT NN VBN TO DT JJ NNP NNP VBZ DT NN IN DT JJ NN VBG JJ NNP IN NNP . One scenario calls for a 10-meter wide trench that would destroy 200 homes . CD NN VBZ IN DT JJ JJ NN WDT MD VB CD NNS . A 20-meter wide proposal would eliminate 700 homes , while a 30-meter trench would destroy 3,000 homes . DT JJ JJ NN MD VB CD NNS , IN DT JJ NN MD VB CD NNS . Israel began soliciting bids last year for a 25-meter wide trench authorities hoped to have dug before Israel 's planned Gaza withdrawal later this year . NNP VBD VBG NNS JJ NN IN DT JJ JJ NN NNS VBD TO VB NN IN NNP POS JJ NNP NN RB DT NN . The Gaza Egypt border is rife with weapons smuggling and is the scene of frequent fighting between Israeli troops and Palestinians . DT NNP NNP NN VBZ JJ IN NNS VBG CC VBZ DT NN IN JJ NN IN JJ NNS CC NNS . Health workers have fanned out in northern and western Sudan to vaccinate more than five million children against the crippling effects of polio . NNP NNS VBP VBN RP IN JJ CC JJ NNP TO VB JJR IN CD CD NNS IN DT JJ NNS IN NN . United Nations officials say fighters in the western Darfur region laid down their weapons Monday at the start of the three-day campaign . NNP NNP NNS VBP NNS IN DT JJ NNP NN VBD RP PRP$ NNS NNP IN DT NN IN DT JJ NN . The United Nations is working with Sudan 's government and the World Health Organization to carry out the vaccinations , which will include southern Sudan and other areas in coming weeks . DT NNP NNPS VBZ VBG IN NNP POS NN CC DT NNP NNP NNP TO VB RP DT NNS , WDT MD VB JJ NNP CC JJ NNS IN VBG NNS . Officials say the massive program was needed after the virus was detected in more than 100 people , mostly in the Sudanese capital , Khartoum . NNS VBP DT JJ NN VBD VBN IN DT NN VBD VBN IN JJR IN CD NNS , RB IN DT JJ NN , NNP . A UNICEF spokeswoman told the Associated Press that the cases have been traced to Nigeria , where local officials in the northern state of Kano boycotted a vaccine drive in 2003 . DT NNP NN VBD DT NNP NNP IN DT NNS VBP VBN VBN TO NNP , WRB JJ NNS IN DT JJ NN IN NNP VBD DT NN NN IN CD . Kano officials later agreed to resume polio immunizations , using an alternate source of vaccine . NNP NNS RB VBD TO VB NN NNS , VBG DT JJ NN IN NN . Afghanistan 's lower house of parliament has approved a law that would grant amnesty to all Afghans accused of human rights abuses during the past 25 years of conflict in the country . NNP POS JJR NN IN NN VBZ VBN DT NN WDT MD VB JJ TO DT NNS VBN IN NN NNS NNS IN DT JJ CD NNS IN NN IN DT NN . The bill adopted Wednesday would rule out the prosecution of any political or militia group involved in the country 's wars . DT NN VBN NNP MD VB RP DT NN IN DT JJ CC JJ NN VBN IN DT NN POS NNS . Supporters of the law say it will promote reconciliation and peace in Afghanistan . NNS IN DT NN VBP PRP MD VB NN CC NN IN NNP . But , some Afghan lawmakers and government officials say there can not be peace if war criminals escape justice . CC , DT JJ NNS CC NN NNS VBP EX MD RB VB NN IN NN NNS NN NN . International rights groups have urged the Afghan government to hold trials for Afghans accused of rights abuses , including some who are members of parliament . JJ NNS NNS VBP VBN DT JJ NN TO VB NNS IN NNS VBN IN NNS NNS , VBG DT WP VBP NNS IN NN . The amnesty law must be approved by the upper house of parliament and signed by President Hamid Karzai to take effect . DT JJ NN MD VB VBN IN DT JJ NN IN NN CC VBN IN NNP NNP NNP TO VB NN . The body of Coretta Scott King - the widow of slain U.S. civil rights leader Martin Luther King Jr. - has arrived back in the city where she lived , Atlanta , in the southern state of Georgia . DT NN IN NNP NNP NNP IN DT NN IN JJ NNP JJ NNS NN NNP NNP NNP NNP : VBZ VBN RB IN DT NN WRB PRP VBD , NNP , IN DT JJ NN IN NNP . Police cars early Wednesday escorted a hearse carrying her body to a funeral home . NN NNS RB NNP VBD DT NN VBG PRP$ NN TO DT JJ NN . Local reports say funeral arrangements have not yet been made . JJ NNS VBP JJ NNS VBP RB RB VBN VBN . Mrs. King died early Tuesday at an alternative medicine clinic in Mexico . NNP NNP VBD JJ NNP IN DT JJ NN NN IN NNP . Doctors say the 78-year-old was battling ovarian cancer and ultimately died of respiratory failure . NNS VBP DT JJ VBD VBG JJ NN CC RB VBD IN JJ NN . The death of the woman known as the ' first lady of the civil rights movement ' brought expressions of sadness as well as tributes from civil rights advocates , politicians and religious leaders . DT NN IN DT NN VBN IN DT `` JJ NN IN DT JJ NNS NN `` VBD NNS IN NN RB RB IN NNS IN JJ NNS NNS , NNS CC JJ NNS . Mrs. King carried on her husband 's work after his assassination , creating the Martin Luther King Jr. Center For Non-Violent Social Change in Atlanta . NNP NNP VBD IN PRP$ NN POS NN IN PRP$ NN , VBG DT NNP NNP NNP NNP NNP IN NNP NNP NNP IN NNP . Ukraine 's parliament speaker and the European Union say fresh elections are needed to end the dispute over the former Soviet republic 's presidential runoff . NNP POS NN NN CC DT NNP NNP VBP JJ NNS VBP VBN TO VB DT NN IN DT JJ NNP NN POS JJ NN . The speaker , Volodymyr Lytvyn , made the suggestion Saturday , during an emergency session to debate the disputed election . DT NN , NNP NNP , VBD DT NN NNP , IN DT NN NN TO VB DT JJ NN . Meanwhile , the Dutch foreign minister , speaking on behalf of the EU presidency , also called for fresh elections in light of numerous allegations of fraud . RB , DT JJ JJ NN , VBG IN NN IN DT NNP NN , RB VBN IN JJ NNS IN NN IN JJ NNS IN NN . Also due to meet Saturday , is a multilateral committee tasked with resolving the political stalemate . RB JJ TO VB NNP , VBZ DT JJ NN VBN IN VBG DT JJ NN . It comprises representatives of both candidates : opposition challenger Viktor Yushchenko , and Moscow-backed Prime Minister Viktor Yanukovych . PRP VBZ NNS IN DT NNS IN NN NN NNP NNP , CC JJ NNP NNP NNP NNP . Mr. Yushchenko late Friday called for fresh elections to be held on December 12 . NNP NNP RB NNP VBD IN JJ NNS TO VB VBN IN NNP CD . Disputed official results indicate the pro-Western politician narrowly lost the runoff . JJ JJ NNS VBP DT JJ NN RB VBD DT NN . President Bush has called on Arab nations to help Palestinian leaders reach a peace agreement with Israel , and to work toward a larger reconciliation with the Jewish state . NNP NNP VBZ VBN IN JJ NNS TO VB JJ NNS VBP DT NN NN IN NNP , CC TO VB IN DT JJR NN IN DT JJ NN . Mr. Bush made the comments in his weekly radio address delivered from Kuwait Saturday during a tour of the region . NNP NNP VBD DT NNS IN PRP$ JJ NN NN VBN IN NNP NNP IN DT NN IN DT NN . He said the United States will do all it can to encourage negotiations , but he said the international community has a responsibility to support the peace effort as well . PRP VBD DT NNP NNPS MD VB DT PRP MD TO VB NNS , CC PRP VBD DT JJ NN VBZ DT NN TO VB DT NN NN RB RB . The president said he believes leaders can reach an agreement defining a Palestinian state this year , but he said the United States can not impose such a deal . DT NN VBD PRP VBZ NNS MD VB DT NN VBG DT JJ NN DT NN , CC PRP VBD DT NNP NNPS MD RB VB PDT DT NN . He said he will urge Arab leaders in the Gulf to do their part , during his visits to their nations over the next few days . PRP VBD PRP MD VB JJ NNS IN DT NNP TO VB PRP$ NN , IN PRP$ NNS TO PRP$ NNS IN DT JJ JJ NNS . Mr. Bush met with the Israeli and Palestinian leaders in Jerusalem and Ramallah earlier this week as part of his Mideast tour . NNP NNP VBD IN DT JJ CC JJ NNS IN NNP CC NNP RBR DT NN IN NN IN PRP$ JJ NN . George W. Bush NNP NNP NNP President Bush says he does not think the published photos Friday of a nearly-naked Saddam Hussein in his prison cell will spark more anti-American sentiment in Iraq . NNP NNP VBZ PRP VBZ RB VB DT VBN NNS NNP IN DT JJ NNP NNP IN PRP$ NN NN MD VB RBR JJ NN IN NNP . Questioned by reporters at the White House , Mr. Bush said a photo does not inspire murderers . VBN IN NNS IN DT NNP NNP , NNP NNP VBD DT NN VBZ RB VB NNS . He said the insurgents are motivated by a vision of the world that is , ' backward and barbaric ' and by a desire to thwart freedom in Iraq . PRP VBD DT NNS VBP VBN IN DT NN IN DT NN WDT VBZ , `` RB CC JJ `` CC IN DT NN TO VB NN IN NNP . The White House said the president was briefed earlier by senior aides about the incident and strongly supports what it said is ' the aggressive and thorough investigation that is already under way . ' DT NNP NNP VBD DT NN VBD VBN RB IN JJ NNS IN DT NN CC RB VBZ WP PRP VBD VBZ `` DT JJ CC JJ NN WDT VBZ RB IN NN . `` Pakistan 's former Prime Minister Benazir Bhutto says the participation of the country 's two main opposition parties will help ensure next month 's elections are free and fair . NNP POS JJ NNP NNP NNP NNP VBZ DT NN IN DT NN POS CD JJ NN NNS MD VB VB JJ NN POS NNS VBP JJ CC JJ . She told reporters Tuesday that the government will either allow a fair vote or it will so thoroughly manipulate the results that the rigging will be exposed . PRP VBD NNS NNP IN DT NN MD RB VB DT JJ NN CC PRP MD RB RB VB DT NNS IN DT NN MD VB VBN . Opposition leaders discussed boycotting the elections but failed to agree on a set of demands for taking part . NN NNS VBD VBG DT NNS CC VBD TO VB IN DT NN IN NNS IN VBG NN . Ms. Bhutto 's Pakistan People 's Party and former Prime Minister Nawaz Sharif 's Pakistan Muslim League Party , the largest opposition parties , have now said they will participate . NNP NNP POS NNP NNP POS NNP CC JJ NNP NNP NNP NNP POS NNP NNP NNP NNP , DT JJS NN NNS , VBP RB VBN PRP MD VB . On Monday , Mr. Sharif said Ms. Bhutto undermined a united opposition boycott of the polls by not supporting the reinstatement of deposed Supreme Court judges . IN NNP , NNP NNP VBD NNP NNP VBD DT JJ NN NN IN DT NNS IN RB VBG DT NN IN VBN NNP NNP NNS . European Union energy officials will hold an emergency meeting next week amid concerns that the Russian-Ukrainian dispute over natural gas prices could affect EU gas supplies . NNP NNP NN NNS MD VB DT NN NN JJ NN IN NNS IN DT JJ NN IN JJ NN NNS MD VB NNP NN NNS . An EU statement released Friday says the meeting is aimed at finding a common approach . DT NNP NN VBN NNP VBZ DT NN VBZ VBN IN VBG DT JJ NN . It also expresses the European Commission 's concern about the situation , but says the EU top executive body remains confident an agreement will be reached . PRP RB VBZ DT NNP NNP POS NN IN DT NN , CC VBZ DT NNP JJ NN NN VBZ JJ DT NN MD VB VBN . A Russian cut-off of supplies to Ukraine will reduce the amount of natural gas flowing through the main pipeline toward Europe . DT JJ NN IN NNS TO NNP MD VB DT NN IN JJ NN VBG IN DT JJ NN IN NNP . But the commission says there is no risk of a gas shortage in the short term . CC DT NN VBZ EX VBZ DT NN IN DT NN NN IN DT JJ NN . German officials say they are hoping for a quick resolution to the dispute . JJ NNS VBP PRP VBP VBG IN DT JJ NN TO DT NN . Government spokesman , Ulrich Wilhelm says officials have been in contact with both sides at a working level , but will not mediate . NNP NN , NNP NNP VBZ NNS VBP VBN IN NN IN DT NNS IN DT VBG NN , CC MD RB VB . Cuba 's state newspaper has published new photographs of ailing leader Fidel Castro , which show him greeting Venezuelan President Hugo Chavez . NNP POS NN NN VBZ VBN JJ NNS IN JJ NN NNP NNP , WDT VBP PRP VBG JJ NNP NNP NNP . The communist daily Granma said the two leaders met in Havana on Sunday , to mark Mr. Castro 's 80th birthday . DT JJ JJ NNP VBD DT CD NNS VBD IN NNP IN NNP , TO VB NNP NNP POS JJ NN . The photographs show the Cuban leader laying in bed , shaking hands with Mr. Chavez and receiving a portrait of Mr. Castro as a gift . DT NNS VBP DT JJ NN VBG IN NN , VBG NNS IN NNP NNP CC VBG DT NN IN NNP NNP IN DT NN . Mr. Castro has not been seen in public since he underwent surgery more than two weeks ago to stop intestinal bleeding . NNP NNP VBZ RB VBN VBN IN JJ IN PRP VBD NN RBR IN CD NNS IN TO VB JJ NN . Sunday , a communist youth newspaper Juventud Rebelde published a message from Mr. Castro , saying he will fight for his life . NNP , DT JJ NN NN NNP NNP VBD DT NN IN NNP NNP , VBG PRP MD VB IN PRP$ NN . He urged Cubans to be optimistic about his health , but warned of possible ' adverse news . ' Mr. Castro temporarily handed power to his brother , Raul , because of the surgery last month . PRP VBD NNS TO VB JJ IN PRP$ NN , CC VBD IN JJ `` JJ NN . `` NNP NNP RB VBD NN TO PRP$ NN , NNP , IN IN DT NN JJ NN . Zimbabwe 's President Robert Mugabe has freed three men who were jailed for murder and sabotage as they battled South Africa 's anti-apartheid African National Congress in 1988 . NNP POS NNP NNP NNP VBZ VBN CD NNS WP VBD VBN IN NN CC NN IN PRP VBD NNP NNP POS JJ NNP NNP NNP IN CD . Zimbabwean state media reports the president pardoned the Zimbabwean nationals on humanitarian grounds . JJ NN NNS VBZ DT NN VBD DT JJ NNS IN JJ NNS . The three ( Kevin Woods , Michael Smith and Phillip Conjwayo ) were sentenced for the murder of a Zimbabwean driver they hired to deliver a bomb to a house owned by the African National Congress . DT CD LRB NNP NNP , NNP NNP CC NNP NNP RRB VBD VBN IN DT NN IN DT JJ NN PRP VBD TO VB DT NN TO DT NN VBN IN DT NNP NNP NNP . The bomb detonated and killed the driver before he reached the destination . DT NN VBD CC VBD DT NN IN PRP VBD DT NN . South Africa 's apartheid government granted the men citizenship after the crime . NNP NNP POS NN NN VBD DT NNS NN IN DT NN . An Israeli airstrike has killed five Palestinian militants in the Gaza Strip . DT JJ NN VBZ VBN CD JJ NNS IN DT NNP NNP . Israeli military officials said on Saturday the five were preparing to launch a rocket attack against southern Israeli communities when they were hit . JJ NN NNS VBD IN NNP DT CD VBD VBG TO VB DT NN NN IN JJ JJ NNS WRB PRP VBD VBN . No other information was available on the militants ' identities . DT JJ NN VBD JJ IN DT NNS POS NNS . The militant Palestinian group Hamas controls the Gaza Strip where Israel has routinely targeted rocket launchers . DT JJ JJ NN NNP VBZ DT NNP NNP WRB NNP VBZ RB VBN NN NNS . Colombia 's second-largest rebel group has released a soldier it kidnapped last month , turning him over to the Red Cross on Thursday . NNP POS JJ NN NN VBZ VBN DT NN PRP VBD JJ NN , VBG PRP IN TO DT NNP NNP IN NNP . Red Cross officials say the hostage , identified by El~Tiempo newspaper as Anderson Mauricio Zapata , is in good health . NNP NNP NNS VBP DT NN , VBN IN NNP NN IN NNP NNP NNP , VBZ IN JJ NN . The Associated Press quotes the rebel group known as ELN as saying that the release is meant to contribute to peace talks with the government . DT NNP NNP VBZ DT NN NN VBN IN NNP IN VBG IN DT NN VBZ VBN TO VB TO NN NNS IN DT NN . In recent months , ELN delegates have held peace talks with the Colombian government , after decades of civil war pitting at least two rebel groups against the national army . IN JJ NNS , NNP NNS VBP VBN NN NNS IN DT JJ NN , IN NNS IN JJ NN VBG IN JJS CD JJ NNS IN DT JJ NN . The country 's largest rebel group , known as the FARC , has refused to participate in peace talks . DT NN POS JJS NN NN , VBN IN DT NNP , VBZ VBN TO VB IN NN NNS . The U.S. dollar fell to a seven-month low against the yen and near-record lows compared to the euro on Monday . DT NNP NN VBD TO DT JJ NN IN DT NN CC JJ NNS VBN TO DT NN IN NNP . Analysts say the huge gap between what the United States buys abroad and what it sells hurts the dollar 's value . NNS VBP DT JJ NN IN WP DT NNP NNPS VBZ RB CC WP PRP VBZ VBZ DT NN POS NN . The U.S. budget deficit also contributes to the dollar 's decline . DT NNP NN NN RB VBZ TO DT NN POS NN . On a visit to Ireland , U.S. Treasury Secretary John Snow said Washington supports a ' strong dollar ' but said the value is best set by open markets . IN DT NN TO NNP , NNP NNP NNP NNP NNP VBD NNP VBZ DT `` JJ NN `` CC VBD DT NN VBZ RB VBN IN JJ NNS . He was re-stating long-standing administration policy . PRP VBD JJ JJ NN NN . Economists say a weaker dollar makes goods exported from the United States less expensive and more attractive on foreign markets . NNS VBP DT JJR NN VBZ NNS VBN IN DT NNP NNPS RBR JJ CC RBR JJ IN JJ NNS . Iraqi authorities have imposed tight security in and around Baghdad and the holy city of Karbala where Shi'ite Muslim pilgrims are converging for a major religious ceremony . JJ NNS VBP VBN JJ NN IN CC IN NNP CC DT JJ NN IN NNP WRB NNP NNP NNS VBP VBG IN DT JJ JJ NN . Officials expect two million pilgrims to join the main Ashura observances Thursday , marking the 13th century martyrdom of Imam Hussein , one of Shi'ite Islam 's most revered leaders . NNS VBP CD CD NNS TO VB DT JJ NNP NNS NNP , VBG DT JJ NN NN IN NNP NNP , CD IN NNP NNP POS JJS JJ NNS . Government troops have sealed off Karbala to vehicles and are body-searching the arriving pilgrims . NN NNS VBP VBN RP NNP TO NNS CC VBP VBG DT VBG NNS . Police in Baghdad also imposed tight security in Kadhimiya district - another site of Shi'ite pilgrimage - and set up checkpoints around the city . NNS IN NNP RB VBD JJ NN IN NNP NN : DT NN IN NNP NN : CC VBN RP NNS IN DT NN . Despite the security , Iraq 's higher education minister survived a bomb attack in Baghdad that wounded three people . IN DT NN , NNP POS JJR NN NN VBD DT NN NN IN NNP IN VBD CD NNS . In the past , insurgents have attacked pilgrims during Ashura observances . IN DT NN , NNS VBP VBN NNS IN NNP NNS . In 2004 , about 170 people were killed . IN CD , IN CD NNS VBD VBN . Chinese officials say they may dam a major river to stop a toxic chemical slick from reaching Russia , and the city of Khabarovsk . JJ NNS VBP PRP MD VB DT JJ NN TO VB DT JJ NN NN IN VBG NNP , CC DT NN IN NNP . The China Daily reports water ministry officials are doing a site survey to study the feasibility of the temporary dam project suggested by Russia . DT NNP NNP VBZ NN NN NNS VBP VBG DT NN NN TO VB DT NN IN DT JJ NN NN VBN IN NNP . China has for weeks been evaluating methods to deal with 100 metric tons of highly poisonous benzene that flowed into the the Songhua River after a chemical plant explosion November 13 in the city of Jilin . NNP VBZ IN NNS VBN VBG NNS TO VB IN CD JJ NNS IN RB JJ NN WDT VBD IN DT DT NNP NNP IN DT NN NN NN NNP CD IN DT NN IN NNP . The slick could reach the Russian border as soon as Sunday . DT NN MD VB DT JJ NN RB RB IN NNP . It has already disrupted the normal flow of fresh water to millions of Chinese who live near the river . PRP VBZ RB VBN DT JJ NN IN JJ NN TO NNS IN NNS WP VBP IN DT NN . The governor of Colombia 's Arauca state has escaped unharmed from a bomb attack on his motorcade . DT NN IN NNP POS NNP NN VBZ VBN JJ IN DT NN NN IN PRP$ NN . A government spokesman says explosives planted under a bridge detonated Tuesday as Governor Julio Enrique Acosta Bernal 's motorcade passed through Arauca city , the provincial capital . DT NN NN VBZ NNS VBN IN DT NN VBN NNP IN NNP NNP NNP NNP NNP POS NN VBD IN NNP NN , DT JJ NN . The governor 's armored vehicle was heavily damaged but no one was seriously injured . DT NN POS JJ NN VBD RB VBN CC DT NN VBD RB VBN . Governor Acosta Bernal has survived eight attacks during his political career . NNP NNP NNP VBZ VBN CD NNS IN PRP$ JJ NN . Authorities in Arauca province say they suspect the latest attempt to kill him could have been staged by rebels from the FARC - the Revolutionary Armed forces of Colombia . NNS IN NNP NN VBP PRP VBP DT JJS NN TO VB PRP MD VB VBN VBN IN NNS IN DT NNP IN DT JJ JJ NNS IN NNP . Colombia 's main oil fields are located in Arauca state , near the border with Venezuela . NNP POS JJ NN NNS VBP VBN IN NNP NN , IN DT NN IN NNP . Frequent activity by rebels and other criminal gangs has forced the government to keep the area under virtual military control for the past three years . JJ NN IN NNS CC JJ JJ NNS VBZ VBN DT NN TO VB DT NN IN JJ JJ NN IN DT JJ CD NNS . The United States is sending an official observer mission to Sunday 's Palestinian election . DT NNP NNPS VBZ VBG DT JJ NN NN TO NNP POS JJ NN . The State Department says the delegation will be led by Senators John Sununu and Joseph Biden and will include prominent Palestinian-Americans . DT NNP NNP VBZ DT NN MD VB VBN IN NNP NNP NNP CC NNP NNP CC MD VB JJ NNS . The team plans to visit polling stations and meet with Israeli and Palestinian officials . DT NN VBZ TO VB VBG NNS CC VB IN JJ CC JJ NNS . The State Department says successful elections will require close cooperation between Israel and the Palestinians . DT NNP NNP VBZ JJ NNS MD VB JJ NN IN NNP CC DT NNS . Earlier Tuesday , Israeli tanks fired shells in northern Gaza , killing seven Palestinians , six of whom were members of the same family . RBR NNP , JJ NNS VBD NNS IN JJ NNP , VBG CD NNS , CD IN WP VBD NNS IN DT JJ NN . The Israeli military says the tanks fired at militants who had fired mortars into a nearby Jewish settlement . DT JJ NN VBZ DT NNS VBD IN NNS WP VBD VBN NNS IN DT JJ JJ NN . But witnesses say the victims were farmers and that militants had fled by the time the tank shells hit . CC NNS VBP DT NNS VBD NNS CC IN NNS VBD VBN IN DT NN DT NN NNS VBD . China says Venezuelan President Hugo Chavez is set to visit the country this month , amid signs the two nations are looking to increase their energy ties . NNP VBZ JJ NNP NNP NNP VBZ VBN TO VB DT NN DT NN , IN NNS DT CD NNS VBP VBG TO VB PRP$ NN NNS . In a statement Tuesday , the Chinese Foreign Ministry announced that Mr. Chavez will visit Beijing from August 22 to August 27 . IN DT NN NNP , DT JJ NNP NNP VBD IN NNP NNP MD VB NNP IN NNP CD TO NNP CD . The leaders are expected to discuss oil exports , as China seeks fresh energy supplies to fuel its rapid economic growth . DT NNS VBP VBN TO VB NN NNS , IN NNP VBZ JJ NN NNS TO VB PRP$ JJ JJ NN . Venezuela has some of the world 's largest oil reserves and is trying to increase its fuel shipments to China . NNP VBZ DT IN DT NN POS JJS NN NNS CC VBZ VBG TO VB PRP$ NN NNS TO NNP . Mr. Chavez has said he wants oil exports to China to reach 3,00,000 barrels a day . NNP NNP VBZ VBN PRP VBZ NN NNS TO NNP TO VB CD NNS DT NN . The Venezuelan leader 's visit to China will follow recent trips to Russia , Iran , Vietnam and Mali . DT JJ NN POS NN TO NNP MD VB JJ NNS TO NNP , NNP , NNP CC NNP . Indian authorities say separatist rebels have killed 16 Indian soldiers in an ambush in the country 's northeastern Tripura state . JJ NNS VBP JJ NNS VBP VBN CD JJ NNS IN DT NN IN DT NN POS JJ NNP NN . Police say the soldiers were guarding a road construction project near the town of Dangabari when they were ambushed Tuesday morning . NNS VBP DT NNS VBD VBG DT NN NN NN IN DT NN IN NNP WRB PRP VBD VBN NNP NN . Reports say some 50 rebels attacked the soldiers , killing 15 . NNS VBP DT CD NNS VBD DT NNS , VBG CD . Another soldier died of his wounds while being brought to a local hospital . DT NN VBD IN PRP$ NNS IN VBG VBN TO DT JJ NN . One rebel was killed in the firefight . CD NN VBD VBN IN DT NN . Police officials also say the rebels took weapons and ammunition from the dead soldiers . NN NNS RB VBP DT NNS VBD NNS CC NN IN DT JJ NNS . Authorities have blamed the National Liberation Front of Tripura - which is fighting for an independent homeland in the area - for the attack . NNS VBP VBN DT NNP NNP NNP IN NNP : WDT VBZ VBG IN DT JJ NN IN DT NN : IN DT NN . Russia and Moldova have reached a short term agreement on a new price for natural gas two weeks after Moscow cut supplies to the former Soviet state . NNP CC NNP VBP VBN DT JJ NN NN IN DT JJ NN IN JJ NN CD NNS IN NNP VBD NNS TO DT JJ JJ NN . Moldova will pay $ 110 per 1,000 cubic meters of natural gas over the next four months . NNP MD VB $ CD IN CD JJ NNS IN JJ NN IN DT JJ CD NNS . Talks on a fixed price will continue . NNS IN DT VBN NN MD VB . Moldova had been paying $ 80 for gas . NNP VBD VBN VBG $ CD IN NN . Russia 's state-owned natural gas company , Gazprom , wanted to double the price to bring Moldova in line with the world market . NNP POS JJ JJ NN NN , NNP , VBD TO VB DT NN TO VB NNP IN NN IN DT NN NN . Gazprom cut supplies to Moldova January 1 . NNP VBD NNS TO NNP NNP CD . Russia also cut supplies to Ukraine the same day . NNP RB VBD NNS IN NNP DT JJ NN . That dispute was settled three days later . DT NN VBD VBN CD NNS RB . Police in the western Indian state of Maharashtra say 26 women drowned after two boats capsized in the Wainganga River late Saturday . NNS IN DT JJ JJ NN IN NNP VBP CD NNS VBN IN CD NNS VBN IN DT NNP NNP JJ NNP . Local authorities say four women and two crew members managed to swim to safety , but that eight women are still missing . JJ NNS VBP CD NNS CC CD NN NNS VBD TO VB TO NN , CC IN CD NNS VBP RB VBG . Police say the women - poor farm laborers on their way home from work - started panicking after seeing a bolt of lightning . NNS VBP DT NNS IN JJ NN NNS IN PRP$ NN NN IN NN : VBD VBG IN VBG DT NN IN NN . Their panicked movements caused the boats to capsize . PRP$ JJ NNS VBD DT NNS TO VB . The accident happened in Bhandara district , some 925 kilometers northeast of the state capital , Mumbai . DT NN VBD IN NNP NN , DT CD NNS RB IN DT NN NN , NNP . President Bush has telephoned his Afghan counterpart Hamid Karzai to express his support for Sunday 's legislative elections . NNP NNP VBZ VBN PRP$ JJ NN NNP NNP TO VB PRP$ NN IN NNP POS JJ NNS . A White House spokesman says Mr. Karzai told President Bush that his nation was ready to vote , and that the people of Afghanistan were enthusiastic about the polls . DT NNP NNP NN VBZ NNP NNP VBD NNP NNP IN PRP$ NN VBD JJ TO VB , CC IN DT NNS IN NNP VBD JJ IN DT NNS . The Afghan leader also invited Mr. Bush to visit and address the new parliament once it convenes . DT JJ NN RB VBD NNP NNP TO VB CC VB DT JJ NN RB PRP VBZ . Meanwhile , the election campaign in Afghanistan has officially ended , with candidates making their final pitches . RB , DT NN NN IN NNP VBZ RB VBN , IN NNS VBG PRP$ JJ NNS . With campaigning forbidden 48 hours before the polls open , candidates scrambled to woo voters , while organizers raced to spread their message on how to cast the ballots . IN VBG JJ CD NNS IN DT NNS JJ , NNS VBD TO VB NNS , IN NNS VBD TO VB PRP$ NN IN WRB TO VB DT NNS . More than 12 million Afghans are registered to vote Sunday to elect a national parliament and local councils in all 34 provinces . JJR IN CD CD NNS VBP VBN TO VB NNP TO VB DT JJ NN CC JJ NNS IN DT CD NNS . Afghan officials say at least six suspected Taleban militants have been killed and 15 arrested , including one of the militia 's commanders , in separate incidents in southern Afghanistan . JJ NNS VBP IN JJS CD JJ NNP NNS VBP VBN VBN CC CD VBN , VBG CD IN DT NN POS NNS , IN JJ NNS IN JJ NNP . The six insurgents were killed Sunday as they fled after attacking a security post close to Tirin Kot , the capital of restive Uruzgan province . DT CD NNS VBD VBN NNP IN PRP VBD IN VBG DT NN NN NN TO NNP NNP , DT NN IN JJ NNP NN . The officials say the Afghan National Army and US-led forces also captured 9 suspected Taleban fighters , including local commander Mullah Janan , in a village near Tirin Kot , and six others were arrested in another district of Uruzgan province . DT NNS VBP DT JJ NNP NNP CC JJ NNS RB VBD CD JJ NNP NNS , VBG JJ NN NNP NNP , IN DT NN IN NNP NNP , CC CD NNS VBD VBN IN DT NN IN NNP NN . Meanwhile , in the Souray district of neighboring Zabul province , one suspected Taleban rebel was killed and one was wounded by a bomb they were planting on a road used by Afghan and US forces . RB , IN DT NNP NN IN JJ NNP NN , CD JJ NNP NN VBD VBN CC CD VBD VBN IN DT NN PRP VBD VBG IN DT NN VBN IN JJ CC NNP NNS . Violence has surged ahead of next month 's parliamentary elections in Afghanistan . NN VBZ VBN RB IN JJ NN POS JJ NNS IN NNP . The U.S. dollar hit record lows against the euro Tuesday . DT NNP NN VBD NN NNS IN DT NN NNP . It took more than one dollar and 48 cents to buy one euro . PRP VBD JJR IN CD NN CC CD NNS TO VB CD NN . The dollar has been battered by a series of problems , including continuing gloom in the key U.S. housing sector , and the slowing U.S. economy . DT NN VBZ VBN VBN IN DT NN IN NNS , VBG VBG NN IN DT JJ NNP NN NN , CC DT VBG NNP NN . Some speculators are selling dollars because they expect the U.S. central bank will try to stimulate the economy by cutting interest rates again soon . DT NNS VBP VBG NNS IN PRP VBP DT NNP JJ NN MD VB TO VB DT NN IN VBG NN NNS RB RB . Lower U.S. interest rates can cut the return on some investments . NNP NNP NN NNS MD VB DT NN IN DT NNS . The falling dollar is prompting some oil-rich nations around the Persian Gulf to consider ending the practice of linking the value of their currencies to that of the dollar and instead peg the value to a ' basket ' of other currencies . DT VBG NN VBZ VBG DT JJ NNS IN DT NNP NNP TO VB VBG DT NN IN VBG DT NN IN PRP$ NNS TO DT IN DT NN CC RB VB DT NN TO DT `` NN `` IN JJ NNS . Such a move would reduce demand for dollars , and further weaken the U.S. currency . JJ DT NN MD VB NN IN NNS , CC RB VB DT NNP NN . Afghan officials say suspected Taleban insurgents have killed two more pro-government Muslim clerics , just days after a bomb Friday killed a mullah in a mosque in the eastern Khost province . JJ NNS VBP VBN NNP NNS VBP VBN CD JJR JJ NN NNS , RB NNS IN DT NN NNP VBD DT NN IN DT NN IN DT JJ NNP NN . The officials say Mullah Mohammad Gul was gunned down late Sunday while walking home after prayers at a mosque in Lashkargah , the capital of southern Helmand province . DT NNS VBP NNP NNP NNP VBD VBN RP RB NNP IN VBG NN IN NNS IN DT NN IN NNP , DT NN IN JJ NNP NN . Hours later , unknown assailants broke into a home of the head of the religious council for eastern Kunar province , Noor Ahmad Jan , and shot him dead . NNS RB , JJ NNS VBD IN DT NN IN DT NN IN DT JJ NN IN JJ NNP NN , NNP NNP NNP , CC VBD PRP JJ . Following the Friday killing , at least 5,000 Afghans staged a peaceful protest in Khost , urging the government to provide better security for religious leaders . VBG DT NNP NN , IN JJS CD NNS VBD DT JJ NN IN NNP , VBG DT NN TO VB JJR NN IN JJ NNS . In the past , Taleban insurgents have killed several influential clerics who had denounced the militants and expressed support for President Hamid Karzai . IN DT NN , NNP NNS VBP VBN JJ JJ NNS WP VBD VBN DT NNS CC VBD NN IN NNP NNP NNP . The man who trained 1,000 white pigeons to be released over Hanoi on the city 's 1,000-year anniversary says more than half the birds have been killed - many to appear on Vietnamese dinner tables . DT NN WP JJ CD JJ NNS TO VB VBN IN NNP IN DT NN POS JJ NN VBZ JJR IN PDT DT NNS VBP VBN VBN : JJ TO VB IN JJ NN NNS . In recent interviews , Pham Tai Thu has expressed his disappointment at the loss of the birds , which he had hoped would thrive as a lasting symbol of peace . IN JJ NNS , NNP NNP NNP VBZ VBN PRP$ NN IN DT NN IN DT NNS , WDT PRP VBD VBN MD VB IN DT JJ NN IN NN . He said some of the birds have been poisoned or died of diseases , while others were captured and sold to restaurants . PRP VBD DT IN DT NNS VBP VBN VBN CC VBN IN NNS , IN NNS VBD VBN CC VBN TO NNS . Thu said he painstakingly raised the birds and trained them to return to the Hanoi Botanical Garden after their release during the city 's anniversary ceremonies in early October . NNP VBD PRP RB VBD DT NNS CC VBN PRP TO VB TO DT NNP NNP NNP IN PRP$ NN IN DT NN POS NN NNS IN JJ NNP . He said he had hoped they would create large flocks to represent the city 's emergence from decades of war . PRP VBD PRP VBD VBN PRP MD VB JJ NNS TO VB DT NN POS NN IN NNS IN NN . United Nations Secretary-General Kofi Annan is expected to ask for manpower and equipment for a peacekeeping force for Sudan when he meets with President Bush later Monday . NNP NNP NNP NNP NNP VBZ VBN TO VB IN NN CC NN IN DT NN NN IN NNP WRB PRP VBZ IN NNP NNP RB NNP . Mr. Annan is scheduled to meet with Mr. Bush at the White House to discuss a peacekeeping mission for Sudan 's war-torn Darfur region . NNP NNP VBZ VBN TO VB IN NNP NNP IN DT NNP NNP TO VB DT NN NN IN NNP POS JJ NNP NN . The peacekeeping force has been mandated by the U.N. Security Council to take over from an African Union force of seven thousand . DT NN NN VBZ VBN VBN IN DT NNP NNP NNP TO VB RP IN DT NNP NNP NN IN CD CD . Last week , Mr. Annan said the U.N. force will have to be bigger and better equipped , which , he said , will require the participation of big and powerful countries with highly trained troops - including the U.S. U.S. officials have said they hope to arrange a U.N. mission to Darfur by the end of this month . JJ NN , NNP NNP VBD DT NNP NN MD VB TO VB JJR CC RBR VBN , WDT , PRP VBD , MD VB DT NN IN JJ CC JJ NNS IN RB JJ NNS : VBG DT NNP NNP NNS VBP VBN PRP VBP TO VB DT NNP NN TO NNP IN DT NN IN DT NN . Fighting between rebel and government forces in Darfur has killed tens of thousands and displaced two million VBG IN NN CC NN NNS IN NNP VBZ VBN NNS IN NNS CC VBD CD CD A North Korean cargo ship has dropped anchor in the South Korean port of Ulsan , marking the first visit of its kind in more than two decades . DT JJ JJ NN NN VBZ VBN NN IN DT JJ JJ NN IN NNP , VBG DT JJ NN IN PRP$ NN IN JJR IN CD NNS . The ship will be loaded with fertilizer intended to help the North deal with perpetual food shortages . DT NN MD VB VBN IN NN VBN TO VB DT NNP NN IN JJ NN NNS . South Korea agreed to give 2,00,000 tons of fertilizer to the North after four days of bilateral talks concluded last week . NNP NNP VBD TO VB CD NNS IN NN TO DT NNP IN CD NNS IN JJ NNS VBD JJ NN . Two more North Korean vessels are expected to cross into South Korean waters later today and early Monday . CD JJR JJ JJ NNS VBP VBN TO VB IN JJ JJ NNS RB NN CC JJ NNP . South Korea began shipping fertilizer by land on Saturday when several trucks crossed the heavily fortified Demilitarized Zone between the two Koreas . NNP NNP VBD VBG NN IN NN IN NNP WRB JJ NNS VBD DT RB VBN VBN NNP IN DT CD NNS . Some of information for this report provided by AFP . DT IN NN IN DT NN VBN IN NNP . Fans of The Sopranos can now own a little piece of the much-honored TV series : bricks from mobster Tony Soprano 's fictional hangout , Satriale 's Pork Store . NNS IN DT NNS MD RB VB DT JJ NN IN DT JJ NN NN IN NNS IN NN NNP NNP POS JJ NN , NNP POS NNP NNP . Manny Costeira , who owns the Kearny , New Jersey building , is selling 2,000 white stone bricks online before the structure is demolished next month . NNP NNP , WP VBZ DT NNP , NNP NNP NN , VBZ VBG CD JJ NN NNS VBP IN DT NN VBZ VBN JJ NN . A condominum complex called The Soprano will be built on the site . DT NN NN VBN DT NNP MD VB VBN IN DT NN . Costeira said the bricks will sell for $ 25 to $ 50 apiece , and will include a serial number and certificate of authentication . NNP VBD DT NNS MD VB IN $ CD TO $ CD RB , CC MD VB DT JJ NN CC NN IN NN . Speaking to The Jersey Journal of Jersey City , Costeira said he 's received a few angry e-mails asking why he 's demolishing the joint where Tony and his pals often gathered . VBG TO DT NNP NNP IN NNP NNP , NNP VBD PRP VBZ VBN DT JJ JJ NNS VBG WRB PRP VBZ VBG DT NN WRB NNP CC PRP$ NNS RB VBD . The Sopranos aired its 86th and final episode on June 10 , 2007 . DT NNP VBD PRP$ JJ CC JJ NN IN NNP CD , CD . Pakistani security forces backed by helicopter gunships have pounded suspected militant hideouts near the border with Afghanistan . JJ NN NNS VBN IN NN NNS VBP VBN JJ JJ NNS IN DT NN IN NNP . The violence Friday is the latest in a series of attacks in the North Waziristan area , where the Pakistani military has been battling Taleban and al-Qaida militants . DT NN NNP VBZ DT JJS IN DT NN IN NNS IN DT NNP NNP NN , WRB DT JJ NN VBZ VBN VBG NNP CC NNP NNS . There has been no official word on casualties . EX VBZ VBN DT JJ NN IN NNS . This assault comes as local and military officials continue to search for 16 missing soldiers believed to be kidnapped by Taleban militants . DT NN VBZ IN JJ CC JJ NNS VBP TO VB IN CD JJ NNS VBN TO VB VBN IN NNP NNS . The men disappeared on Thursday while traveling to a military base in South Waziristan in Pakistan 's northwestern tribal region . DT NNS VBD IN NNP IN VBG TO DT JJ NN IN NNP NNP IN NNP POS JJ JJ NN . Also on Thursday , Pakistani security forces said at least 10 militants were killed during a military operation in North Waziristan . RB IN NNP , JJ NN NNS VBD IN JJS CD NNS VBD VBN IN DT JJ NN IN NNP NNP . A military spokesman says the militants were killed while fleeing the site of a roadside bombing that wounded five soldiers . DT JJ NN VBZ DT NNS VBD VBN IN VBG DT NN IN DT NN VBG IN VBD CD NNS . Iran has denied receiving a proposal from Moscow to build a joint uranium enrichment facility in Russia . NNP VBZ VBN VBG DT NN IN NNP TO VB DT JJ NN NN NN IN NNP . An Iranian Foreign Ministry spokesman , Hamid Reza Asefi , told a news conference Sunday that Tehran has received no such proposal , and would only consider proposals that recognize Iran 's right to enrich uranium on its own soil . DT JJ NNP NNP NN , NNP NNP NNP , VBD DT NN NN NNP IN NNP VBZ VBN DT JJ NN , CC MD RB VB NNS WDT VBP NNP POS NN TO VB NN IN PRP$ JJ NN . Russia said Saturday its embassy in Tehran presented Iranian authorities with a note saying its offer to set up a joint uranium enrichment facility in Russia remains valid . NNP VBD NNP PRP$ NN IN NNP VBD JJ NNS IN DT NN VBG PRP$ NN TO VB RP DT JJ NN NN NN IN NNP VBZ JJ . Under a deal signed earlier this year , Moscow agreed to supply enriched uranium fuel for Iran 's Bushehr reactor . IN DT NN VBN RBR DT NN , NNP VBD TO VB VBN NN NN IN NNP POS NNP NN . But Russia also demanded the return of spent fuel to ensure Tehran did not reprocess it into bomb-grade material . CC NNP RB VBD DT NN IN JJ NN TO VB NNP VBD RB VB PRP IN JJ NN . The United States and the European Union say Tehran is using its nuclear program to develop atomic weapons . DT NNP NNPS CC DT NNP NNP VBP NNP VBZ VBG PRP$ JJ NN TO VB JJ NNS . Iran says it is only for peaceful purposes . NNP VBZ PRP VBZ RB IN JJ NNS . Led by a group of military families , about 200 people have held a rally in Washington to show support for President Bush and the war in Iraq . VBN IN DT NN IN JJ NNS , IN CD NNS VBP VBN DT NN IN NNP TO VB NN IN NNP NNP CC DT NN IN NNP . The participants gathered on the National Mall Sunday carried banners and signs proclaiming support for the more than 130-thousand U.S. troops deployed in the war-torn country . DT NNS VBD IN DT NNP NNP NNP VBD NNS CC NNS VBG NN IN DT JJR IN JJ NNP NNS VBN IN DT JJ NN . Speakers hailed the efforts to bring democracy to Iraq and Afghanistan and denounced those who protest against it . NNS VBD DT NNS TO VB NN TO NNP CC NNP CC VBD DT WP VB IN PRP . The rally came a day after 100-thousand people gathered on the Mall , demanding the withdrawal of American troops from Iraq , in the largest such demonstration since the war began . DT NN VBD DT NN IN CD NNS VBD IN DT NNP , VBG DT NN IN JJ NNS IN NNP , IN DT JJS JJ NN IN DT NN VBD . Russia 's Economic Development and Trade Minister says leading state firms should stay in the private sector , weeks after a state-owned company gained control of a major private competitor . NNP POS NNP NNP CC NNP NNP VBZ VBG NN NNS MD VB IN DT JJ NN , NNS IN DT JJ NN VBD NN IN DT JJ JJ NN . In an interview with the Kommersant daily , Minister German Gref said state-owned Rosneft and its new unit Yuganskneftegas should be privatized , in case they become one state-owned company . IN DT NN IN DT NNP RB , NNP NNP NNP VBD JJ NNP CC PRP$ JJ NN NNP MD VB VBN , IN NN PRP VBP CD JJ NN . Rosneft gained control of privately-owned Yuganskneftegas last month after a government-ordered auction . NNP VBD NN IN JJ NNPS JJ NN IN DT JJ NN . Yuganskneftegas was a leading unit of oil giant Yukos , which was owned by oil tycoon and Kremlin critic Vladimir Khodorkovsky . NNP VBD DT VBG NN IN NN NN NNP , WDT VBD VBN IN NN NN CC NNP NN NNP NNP . The purchase has raised fear among liberal economists that the government is nationalizing Russia 's energy industry . DT NN VBZ VBN NN IN JJ NNS IN DT NN VBZ VBG NNP POS NN NN . Mr. Khodorkovsky is in prison on fraud charges . NNP NNP VBZ IN NN IN NN NNS . A Kenyan court has released nine Somali men accused of piracy , saying it has no jurisdiction to try their case . DT JJ NN VBZ VBN CD JJ NNS VBN IN NN , VBG PRP VBZ DT NN TO VB PRP$ NN . High Court Judge Mohammed Ibrahim ordered the men to be released and repatriated Tuesday after saying Kenyan courts could not deal with matters that take place outside of the country . NNP NNP NNP NNP NNP VBD DT NNS TO VB VBN CC VBN NNP IN VBG JJ NNS MD RB VB IN NNS WDT VBP NN IN IN DT NN . The nine men were captured by a German naval vessel in the Gulf of Aden in March 2009 after an attack on the German-owned freighter MV Courier . DT CD NNS VBD VBN IN DT JJ JJ NN IN DT NNP IN NNP IN NNP CD IN DT NN IN DT JJ NN NNP NNP . The ruling comes just days after a separate court released 17 suspected Somali pirates due to lack of evidence . DT NN VBZ RB NNS IN DT JJ NN VBD CD JJ JJ NNS JJ TO NN IN NN . More than 100 suspected Somali pirates are currently being held in Kenyan prisons . JJR IN CD JJ JJ NNS VBP RB VBG VBN IN JJ NNS . The death toll from a bomb blast in Indian Kashmir has risen to at least 14 people , after more people succumbed to their injuries . DT NN NN IN DT NN NN IN NNP NNP VBZ VBN TO IN JJS CD NNS , IN JJR NNS VBN TO PRP$ NNS . Security officials say the explosion , Monday , at a busy market in Pulwama , south of Srinagar , also wounded more than 70 others and damaged a school , a police station and several shops . NN NNS VBP DT NN , NNP , IN DT JJ NN IN NNP , NN IN NNP , RB VBD JJR IN CD NNS CC VBD DT NN , DT NN NN CC JJ NNS . The officials say three soldiers are among the dead . DT NNS VBP CD NNS VBP IN DT NN . Authorities say the bomb was planted aboard a truck carrying construction materials . NNS VBP DT NN VBD VBN IN DT NN VBG NN NNS . The charred remains of a man who they say detonated the explosion was recovered from the scene . DT JJ NNS IN DT NN WP PRP VBP VBN DT NN VBD VBN IN DT NN . Police fired tear gas to disperse mobs of angry and grief-stricken people who poured into the streets of Pulwama to denounce the attack . NNS VBD JJ NN TO VB NNS IN JJ CC JJ NNS WP VBD IN DT NNS IN NNP TO VB DT NN . No one has claimed responsibility for the bombing . DT NN VBZ VBN NN IN DT NN . But the French News Agency quotes a military official who blames Islamic militants for the blast . CC DT NNP NNP NNP VBZ DT JJ NN WP VBZ NNP NNS IN DT NN . Recent studies show that children who do not get enough sleep tend to have some emotional problems as well as weight gain later in life . JJ NNS VBP IN NNS WP VBP RB VB JJ NN VBZ TO VB DT JJ NNS RB RB IN NN NN RB IN NN . As VOA 's Melinda Smith reports , the research seems to blame the parents . IN NNP POS NNP NNP VBZ , DT NN VBZ TO VB DT NNS . Pakistani intelligence officials say three U.S. missile strikes have killed at least 11 suspected militants in the country 's North Wazirstan tribal region . JJ NN NNS VBP CD NNP NN NNS VBP VBN IN JJS CD JJ NNS IN DT NN POS JJ NNP JJ NN . The first drone strike Wednesday struck a vehicle near the town of Miran Shah , killing at least four militants . DT JJ NN NN NNP VBD DT NN IN DT NN IN NNP NNP , VBG IN JJS CD NNS . Hours later , officials said , a second attack killed three militants in the same region . NNS RB , NNS VBD , DT JJ NN VBD CD NNS IN DT JJ NN . And a third missile strike hit a vehicle in the Pai Khel area of North Waziristan , killing at least four suspected militants . CC DT JJ NN NN VBD DT NN IN DT NNP NNP NN IN NNP NNP , VBG IN JJS CD JJ NNS . The United States has increased its use of missiles launched from unmanned aircraft against Taliban and al-Qaida-linked militants . DT NNP NNPS VBZ VBN PRP$ NN IN NNS VBN IN JJ NN IN NNP CC JJ NNS . There have been at least 40 such strikes since September in northwestern Pakistan near the Afghan border . EX VBP VBN IN JJS CD JJ NNS IN NNP IN JJ NNP IN DT JJ NN . The U.S. does not publicly acknowledge the attacks , which often are criticized by Pakistani officials as a violation of their country 's sovereignty . DT NNP VBZ RB RB VB DT NNS , WDT RB VBP VBN IN JJ NNS IN DT NN IN PRP$ NN POS NN . The U.S. military says an F15 fighter jet crashed in eastern Afghanistan early Saturday , killing the two crew members on board . DT NNP NN VBZ DT NNP NN NN VBD IN JJ NNP JJ NNP , VBG DT CD NN NNS IN NN . A military statement says the plane went down during an operation in the region . DT JJ NN VBZ DT NN VBD RB IN DT NN IN DT NN . The military did not indicate why the plane went down , but the statement said the crash was not caused by ' hostile fire . ' DT JJ VBD RB VB WRB DT NN VBD RB , CC DT NN VBD DT NN VBD RB VBN IN `` JJ NN . `` Coalition forces are engaged in a major offensive in southern Afghanistan to drive Taliban militants out of their strongholds , and to maintain security ahead of a presidential election in August . NN NNS VBP VBN IN DT JJ NN IN JJ NNP TO VB NNP NNS IN IN PRP$ NNS , CC TO VB NN RB IN DT JJ NN IN NNP . On Friday , a roadside bomb killed 11 civilians , including five children , as they were traveling to a shrine in southern Afghanistan 's Kandahar province . IN NNP , DT NN NN VBD CD NNS , VBG CD NNS , IN PRP VBD VBG TO DT NN IN JJ NNP POS NNP NN . The attack happened in Spin Boldak district , a major cross border route between Afghanistan and Pakistan . DT NN VBD IN NNP NNP NN , DT JJ NN NN NN IN NNP CC NNP . Kenya 's president has announced that public hospitals and clinics will begin providing anti-retroviral drugs at no charge to AIDS patients . NNP POS NN VBZ VBN IN JJ NNS CC NNS MD VB VBG JJ NNS IN DT NN TO NNP NNS . In comments made Thursday , President Mwai Kibaki said his government will immediately waive the fees it has been charging for the drugs . IN NNS VBN NNP , NNP NNP NNP VBD PRP$ NN MD RB VB DT NNS PRP VBZ VBN VBG IN DT NNS . More than 2,00,000 Kenyans are eligible for the anti-retroviral drugs , but just a fraction are using the medications . JJR IN CD NNS VBP JJ IN DT JJ NNS , CC RB DT NN VBP VBG DT NNS . The fee of slightly more than one dollar for a treatment has been cited as a reason more people are not taking the medications . DT NN IN RB JJR IN CD NN IN DT NN VBZ VBN VBN IN DT NN JJR NNS VBP RB VBG DT NNS . The World Health Organization estimates some 1.2 million Kenyans are infected with HIV , the virus that causes AIDS . DT NNP NNP NNP VBZ DT CD CD NNS VBP VBN IN NNP , DT NN WDT VBZ NNP . An estimated six percent of Kenya 's adult population is infected , down from 14 percent a few years ago . DT VBN CD NN IN NNP POS NN NN VBZ JJ , RB IN CD NN DT JJ NNS RB . Palestinian and Israeli officials say two Palestinian militants have been killed in an Israeli missile attack in the Gaza Strip . JJ CC JJ NNS VBP CD JJ NNS VBP VBN VBN IN DT JJ NN NN IN DT NNP NNP . An Israeli army spokesman says troops saw members of the militant group Al Aqsa Martyrs ' Brigades firing a rocket toward Israel Saturday . DT JJ NN NN VBZ NNS VBD NNS IN DT JJ NN NNP NNP NNP POS NNS VBG DT NN IN NNP NNP . He said the militants were struck by an Israeli missile after leaving the launch site in a car . PRP VBD DT NNS VBD VBN IN DT JJ NN IN VBG DT NN NN IN DT NN . The strike came a day after Israeli aircraft fired missiles into a car in southern Gaza , killing six people , including a senior Palestinian militant and his child . DT NN VBD DT NN IN JJ NN VBD NNS IN DT NN IN JJ NNP , VBG CD NNS , VBG DT JJ JJ NN CC PRP$ NN . Israel says it has the right to strike at militants it says are planning attacks on the Jewish state . NNP VBZ PRP VBZ DT NN TO VB IN NNS PRP VBZ VBP VBG NNS IN DT JJ NN . In southern Gaza , Palestinian police say two people were killed today near Rafah in the collapse of a tunnel under the Gaza-Egypt border . IN JJ NNP , JJ NNS VBP CD NNS VBD VBN NN IN NNP IN DT NN IN DT NN IN DT JJ NN . China 's first private airline is expected to take to the skies this year . NNP POS JJ JJ NN VBZ VBN TO VB TO DT NNS DT NN . The official Xinhua news agency says Sunday Okay Airways is undergoing a final official review , and should be cleared to begin operations after Nov. 20 . DT JJ NNP NN NN VBZ NNP NNP NNP VBZ VBG DT JJ NN NN , CC MD VB VBN TO VB NNS IN NNP CD . Xinhua said the Beijing-based airline plans to lease six U.S.-made Boeing 737 aircraft for domestic cargo and passenger charter flights . NNP VBD DT JJ NN VBZ TO VB CD JJ NNP CD NN IN JJ NN CC NN NN NNS . Two other private airlines , United Eagle Airlines and Air Spring , reportedly hope to begin flying next year , once a review of their applications is completed by the Civil Aviation Administration of China . CD JJ JJ NNS , NNP NNP NNPS CC NNP NNP , RB VBP TO VB VBG JJ NN , RB DT NN IN PRP$ NNS VBZ VBN IN DT NNP NNP NNP IN NNP . With no direct taxation , the islands are a thriving offshore financial center . IN DT JJ NN , DT NNS VBP DT JJ JJ JJ NN . More than 93,000 companies were registered in the Cayman Islands as of 2008 , including almost 300 banks , 800 insurers , and 10,000 mutual funds . JJR IN CD NNS VBD VBN IN DT NNP NNP IN IN CD , VBG RB CD NNS , CD NNS , CC CD JJ NNS . A stock exchange was opened in 1997 . DT NN NN VBD VBN IN CD . Tourism is also a mainstay , accounting for about 70 % of GDP and 75 % of foreign currency earnings . NNP VBZ RB DT NN , NN IN RB CD NN IN NN CC CD NN IN JJ NN NNS . The tourist industry is aimed at the luxury market and caters mainly to visitors from North America . DT NN NN VBZ VBN IN DT NN NN CC NNS RB TO NNS IN NNP NNP . Total tourist arrivals exceeded 1.9 million in 2008 , with about half from the US . JJ NN NNS VBD CD CD IN CD , IN IN NN IN DT NNP . About 90 % of the islands ' food and consumer goods must be imported . RB CD NN IN DT NNS POS NN CC NN NNS MD VB VBN . The Caymanians enjoy a standard of living roughly equal to that of Switzerland . DT NNPS VBP DT NN IN VBG RB JJ TO DT IN NNP . At the close of World War I , the Czechs and Slovaks of the former Austro-Hungarian Empire merged to form Czechoslovakia . IN DT NN IN NNP NNP NNP , DT NNS CC NNS IN DT JJ JJ NN VBD TO VB NNP . During the interwar years , having rejected a federal system , the new country 's leaders were frequently preoccupied with meeting the demands of other ethnic minorities within the republic , most notably the Sudeten Germans and the Ruthenians ( Ukrainians ) . IN DT JJ NNS , VBG VBN DT JJ NN , DT JJ NN POS NNS VBD RB VBN IN VBG DT NNS IN JJ JJ NNS IN DT NN , RBS RB DT NNPS NNS CC DT NNPS LRB NNS RRB . On the eve of World War II , the Czech part of the country was forcibly annexed to the Third Reich , and the Slovaks declared independence as a fascist ally of Nazi Germany . IN DT NN IN NNP NNP NNP , DT JJ NN IN DT NN VBD RB VBN TO DT NNP NNP , CC DT NNS VBD NN IN DT JJ NN IN NNP NNP . After the war , a reunited but truncated Czechoslovakia ( less Ruthenia ) fell within the Soviet sphere of influence . IN DT NN , DT VBN CC VBN NNP LRB RBR NNP RRB VBD IN DT JJ NN IN NN . In 1968 , an invasion by Warsaw Pact troops ended the efforts of the country 's leaders to liberalize Communist Party rule and create ' socialism with a human face . ' IN CD , DT NN IN NNP NNP NNS VBD DT NNS IN DT NN POS NNS TO VB NNP NNP NN CC VB `` NN IN DT JJ NN . `` Anti-Soviet demonstrations the following year ushered in a period of harsh repression known as ' normalization . ' JJ NNS DT JJ NN VBD IN DT NN IN JJ NN VBN IN `` NN . `` With the collapse of Soviet-backed authority in 1989 , Czechoslovakia regained its freedom through a peaceful ' Velvet Revolution . ' IN DT NN IN JJ NN IN CD , NNP VBD PRP$ NN IN DT JJ `` NNP NNP . `` On 1 January 1993 , the country underwent a ' velvet divorce ' into its two national components , the Czech Republic and Slovakia . IN CD NNP CD , DT NN VBD DT `` NN NN `` IN PRP$ CD JJ NNS , DT JJ NNP CC NNP . The Czech Republic joined NATO in 1999 and the European Union in 2004 . DT JJ NNP VBD NNP IN CD CC DT NNP NNP IN CD . A unified Thai kingdom was established in the mid-14th century . DT JJ JJ NN VBD VBN IN DT JJ NN . Known as Siam until 1939 , Thailand is the only Southeast Asian country never to have been taken over by a European power . VBN IN NNP IN CD , NNP VBZ DT RB JJ JJ NN RB TO VB VBN VBN RP IN DT JJ NN . A bloodless revolution in 1932 led to a constitutional monarchy . DT JJ NN IN CD VBD TO DT JJ NN . In alliance with Japan during World War II , Thailand became a US treaty ally in 1954 after sending troops to Korea and fighting alongside the US in Vietnam . IN NN IN NNP IN NNP NNP NNP , NNP VBD DT NNP NN NN IN CD IN VBG NNS TO NNP CC VBG IN DT NNP IN NNP . A military coup in September 2006 ousted then Prime Minister THAKSIN Chinnawat . DT JJ NN IN NNP CD VBD RB NNP NNP NNP NNP . December 2007 elections saw the pro-THAKSIN People 's Power Party ( PPP ) emerge at the head of a coalition government that took office in February 2008 . NNP CD NNS VBD DT JJ NNS POS NNP NNP LRB NNP RRB VB IN DT NN IN DT NN NN WDT VBD NN IN NNP CD . The anti-THAKSIN People 's Alliance for Democracy ( PAD , aka yellow-shirts ) in May 2008 began street demonstrations against the new government , eventually occupying the prime minister 's office in August and Bangkok 's two international airports in November . DT NNP NNP POS NNP IN NNP LRB NNP , NN NNS RRB IN NNP CD VBD NN NNS IN DT JJ NN , RB VBG DT JJ NN POS NN IN NNP CC NNP POS CD JJ NNS IN NNP . After an early December 2008 court ruling that dissolved the ruling PPP and two other coalition parties for election violations , the Democrat Party formed a new coalition government and ABHISIT Wetchachiwa became prime minister . IN DT JJ NNP CD NN NN WDT VBD DT NN NNP CC CD JJ NN NNS IN NN NNS , DT NNP NNP VBD DT JJ NN NN CC NNP NNP VBD JJ NN . In October 2008 THAKSIN fled abroad in advance of an abuse of power conviction and has agitated his followers from abroad since then . IN NNP CD NNP VBD RB IN NN IN DT NN IN NN NN CC VBZ VBN PRP$ NNS IN RB IN RB . THAKSIN supporters under the banner of the United Front for Democracy Against Dictatorship ( UDD , aka red-shirts ) rioted in April 2009 , shutting down an ASEAN meeting in Pattaya . NNP NNS IN DT NN IN DT NNP NNP IN NNP NNP NNP LRB NNP , NN NNS RRB VBN IN NNP CD , VBG RP DT NNP NN IN NNP . Following a February 2010 court verdict confiscating half of THAKSIN 's frozen assets , the UDD staged large protests between March and May 2010 , and occupied several blocks of downtown Bangkok . VBG DT NNP CD NN NN VBG NN IN NNP POS JJ NNS , DT NNP VBD JJ NNS IN NNP CC NNP CD , CC VBD JJ NNS IN NN NNP . Clashes between security forces and protesters , elements of which were armed , resulted in at least 92 deaths and an estimated $ 1.5 billion in arson-related property losses . NNS IN NN NNS CC NNS , NNS IN WDT VBD VBN , VBD IN IN JJS CD NNS CC DT VBN $ CD CD IN JJ NN NNS . These protests exposed major cleavages in the Thai body politic that continue to hamper the current government . DT NNS VBD JJ NNS IN DT JJ NN NN WDT VBP TO VB DT JJ NN . The ABHISIT administration has announced a plan for a general election some time in 2011 ahead of its full term by the year-end . DT NNP NN VBZ VBN DT NN IN DT JJ NN DT NN IN CD RB IN PRP$ JJ NN IN DT NN . Since January 2004 , thousands have been killed as separatists in Thailand 's southern ethnic Malay-Muslim provinces increased the violence associated with their cause . IN NNP CD , NNS VBP VBN VBN IN NNS IN NNP POS JJ JJ JJ NNS VBD DT NN VBN IN PRP$ NN . This small , sub-Saharan economy suffers from anemic economic growth and depends heavily on both commercial and subsistence agriculture , which provides employment for 65 % of the labor force . DT JJ , JJ NN NNS IN JJ JJ NN CC VBZ RB IN DT JJ CC JJ NN , WDT VBZ NN IN CD NN IN DT NN NN . Some basic foodstuffs must still be imported . DT JJ NNS MD RB VB VBN . Cocoa , coffee , and cotton generate about 40 % of export earnings with cotton being the most important cash crop . NN , NN , CC NN VBP IN CD NN IN NN NNS IN NN VBG DT RBS JJ NN NN . Togo is the world 's fourth-largest producer of phosphate . NNP VBZ DT NN POS JJ NN IN NN . The government 's decade-long effort , supported by the World Bank and the IMF , to implement economic reform measures , encourage foreign investment , and bring revenues in line with expenditures has moved slowly . DT NN POS JJ NN , VBN IN DT NNP NNP CC DT NNP , TO VB JJ NN NNS , VB JJ NN , CC VB NNS IN NN IN NNS VBZ VBN RB . Progress depends on follow through on privatization , increased openness in government financial operations , progress toward legislative elections , and continued support from foreign donors . NN VBZ IN VB IN IN NN , JJ NN IN NN JJ NNS , NN IN JJ NNS , CC JJ NN IN JJ NNS . Togo is on track with its IMF Extended Credit Facility and reached a HIPC debt relief completion point in 2010 at which 95 % of the country 's debt was forgiven . NNP VBZ IN NN IN PRP$ NNP NNP NNP NNP CC VBD DT NNP NN NN NN NN IN CD IN WDT CD NN IN DT NN POS NN VBD VBN . Economic growth prospects remain marginal due to declining cotton production and underinvestment in phosphate mining . JJ NN NNS VBP JJ JJ TO VBG NN NN CC NN IN JJ NN . Latvia is a small , open economy with exports contributing significantly to its GDP . NNP VBZ DT JJ , JJ NN IN NNS VBG RB TO PRP$ NN . Due to its geographical location , transit services are highly-developed , along with timber and wood-processing , agriculture and food products , and manufacturing of machinery and electronic devices . JJ TO PRP$ JJ NN , NN NNS VBP JJ , IN IN NN CC NN , NN CC NN NNS , CC NN IN NN CC JJ NNS . The bulk of the country 's economic activity , however , is in the services sector . DT NN IN DT NN POS JJ NN , RB , VBZ IN DT NNS NN . Corruption continues to be an impediment to attracting FDI flows and Latvia 's low birth rate and decreasing population are major challenges to its long-term economic vitality . NN VBZ TO VB DT NN TO VBG NNP NNS CC NNP POS JJ NN NN CC VBG NN VBP JJ NNS TO PRP$ JJ JJ NN . Latvia 's economy experienced GDP growth of more than 10 % per year during 2006 - 7 , but entered a severe recession in 2008 as a result of an unsustainable current account deficit and large debt exposure amid the softening world economy . NNP POS NN VBD NN NN IN JJR IN CD NN IN NN IN CD : CD , CC VBD DT JJ NN IN CD IN DT NN IN DT JJ JJ NN NN CC JJ NN NN IN DT NN NN NN . GDP plunged 18 % in 2009 - the three Baltic states had the world 's worst declines that year . NN VBD CD NN IN CD IN DT CD JJ NNS VBD DT NN POS JJS NNS IN NN . Thanks to strong export growth in 2009 and 2010 , the economy experienced its first real quarterly GDP growth in over two years ( 2.9 % ) in the third quarter of 2010 . NNS TO JJ NN NN IN CD CC CD , DT NN VBD PRP$ JJ JJ JJ NN NN IN IN CD NNS LRB CD NN RRB IN DT JJ NN IN CD . The IMF , EU , and other international donors provided substantial financial assistance to Latvia as part of an agreement to defend the currency 's peg to the euro . DT NNP , NNP , CC JJ JJ NNS VBD JJ JJ NN TO NNP IN NN IN DT NN TO VB DT NN POS NN TO DT NN . This agreement calls for reduction of Latvia 's fiscal deficit to below 3 % of GDP by 2012 , in order to meet the Maastricht Treaty criteria for euro adoption . DT NN VBZ IN NN IN NNP POS JJ NN TO IN CD NN IN NN IN CD , IN NN TO VB DT NNP NNP NNS IN NN NN . DOMBROVSKIS ' government enacted major spending cuts to reduce the fiscal deficit to a maximum of 8.5 % of GDP in 2010 , and Latvia has approved a 2011 budget with a projected deficit of 5.4 % of GDP . NNP POS NN VBD JJ NN NNS TO VB DT JJ NN TO DT NN IN CD NN IN NN IN CD , CC NNP VBZ VBN DT CD NN IN DT VBN NN IN CD NN IN NN . The majority of companies , banks , and real estate have been privatized , although the state still holds sizable stakes in a few large enterprises . DT NN IN NNS , NNS , CC JJ NN VBP VBN VBN , IN DT NN RB VBZ JJ NNS IN DT JJ JJ NNS . Latvia officially joined the World Trade Organization in February , 1999 . NNP RB VBD DT NNP NNP NNP IN NNP , CD . EU membership , a top foreign policy goal , came in May 2004 . NNP NN , DT JJ JJ NN NN , VBD IN NNP CD . Latvia 's current major financial policy goal , entrance into the euro zone , is targeted for 2014 . NNP POS JJ JJ JJ NN NN , NN IN DT NN NN , VBZ VBN IN CD . WHEN MAN first saw the Camel , he was so frightened at his vast size that he ran away . WRB NN RB VBD DT NN , PRP VBD RB JJ IN PRP$ JJ NN IN PRP VBD RB . After a time , perceiving the meekness and gentleness of the beast 's temper , he summoned courage enough to approach him . IN DT NN , VBG DT NN CC NN IN DT NN POS NN , PRP VBD NN RB TO VB PRP . Soon afterwards , observing that he was an animal altogether deficient in spirit , he assumed such boldness as to put a bridle in his mouth , and to let a child drive him . RB RB , VBG IN PRP VBD DT NN RB JJ IN NN , PRP VBD JJ NN IN TO VB DT NN IN PRP$ NN , CC TO VB DT NN NN PRP . Use serves to overcome dread . NNP VBZ TO VB NN . A top Russian official says authorities have thwarted two separate attempted break-ins at Russian nuclear weapons installations . DT JJ JJ NN VBZ NNS VBP VBN CD JJ JJ NNS IN JJ JJ NNS NNS . Colonel General Igor Valynkin , who heads the department responsible for nuclear weapons safety , says lone perpetrators tried to illegally enter the facilities in the western part of the country in 2002 and 2003 . NNP NNP NNP NNP , WP VBZ DT NN JJ IN JJ NNS NN , VBZ JJ NNS VBD TO RB VB DT NNS IN DT JJ NN IN DT NN IN CD CC CD . The official told journalists in Moscow Wednesday that the biggest potential threat to Russia 's nuclear facilities is from Chechen terrorists . DT NN VBD NNS IN NNP NNP IN DT JJS JJ NN TO NNP POS JJ NNS VBZ IN JJ NNS . He says Russia is using U.S. and German funding to boost security at nuclear facilities . PRP VBZ NNP VBZ VBG NNP CC JJ NN TO VB NN IN JJ NNS . A new public opinions poll finds Japanese are strongly opposed to extending their country 's humanitarian mission to Iraq . DT JJ JJ NNS NN VBZ NNS VBP RB VBN TO VBG PRP$ NN POS JJ NN TO NNP . The poll published by the Mainichi newspaper Monday showed three out of four Japanese ( 77 percent ) are against the extension while only 18 percent support it . DT NN VBN IN DT NNP NN NNP VBD CD IN IN CD JJ LRB CD NN RRB VBP IN DT NN IN RB CD NN NN PRP . The survey also found that Prime Minister Junichiro Koizumi 's approval rating has climbed to 56 percent , a gain of five points , since shortly before general elections last month . DT NN RB VBD IN NNP NNP NNP NNP POS NN NN VBZ VBN TO CD NN , DT NN IN CD NNS , IN RB IN JJ NNS JJ NN . The gain came despite recent reports that the prime minister intends to extend Japan 's Iraqi mission . DT NN VBD IN JJ NNS IN DT JJ NN VBZ TO VB NNP POS JJ NN . A new survey says companies in Russia and China are among the most likely to pay bribes to win business opportunities abroad . DT JJ NN VBZ NNS IN NNP CC NNP VBP IN DT RBS JJ TO VB NNS TO VB NN NNS RB . The report was released Tuesday by a Berlin-based anti-corruption organization , Transparency International . DT NN VBD VBN NNP IN DT JJ NN NN , NNP NNP . It ranks 22 of the most influential economies based on interviews with business executives from around the world . PRP VBZ CD IN DT RBS JJ NNS VBN IN NNS IN NN NNS IN IN DT NN . Russian firms were rated most likely to engage in bribery , followed by Mexico , China and India . JJ NNS VBD VBN RBS JJ TO VB IN NN , VBN IN NNP , NNP CC NNP . Companies in Belgium and Canada were least likely to offer bribes . NNS IN NNP CC NNP VBD JJS JJ TO VB NNS . The United States was ranked near the middle of the list - tied with Singapore and France . DT NNP NNPS VBD VBN IN DT NN IN DT NN : VBN IN NNP CC NNP . The survey says companies looking for public works construction projects are most likely to try to gain influence with public officials . DT NN VBZ NNS VBG IN JJ NNS NN NNS VBP RBS JJ TO VB TO VB NN IN JJ NNS . Real estate and oil and gas companies are the next most serious offenders . JJ NN CC NN CC NN NNS VBP DT JJ RBS JJ NNS . Transparency International says it hopes the list encourages governments and companies to increase anti-corruption measures . NNP NNP VBZ PRP VBZ DT NN VBZ NNS CC NNS TO VB JJ NNS . President Bush will meet Monday with the Iraq Study Group , a bipartisan panel named by congress to make recommendations about U.S. policy in Iraq . NNP NNP MD VB NNP IN DT NNP NNP NNP , DT JJ NN VBN IN NN TO VB NNS IN NNP NN IN NNP . The Iraq Study Group is co-chaired by former secretary of state James Baker and former Democratic congressman Lee Hamilton . DT NNP NNP NNP VBZ VBN IN JJ NN IN NN NNP NNP CC JJ JJ NN NNP NNP . A White House spokesman said the group is not yet ready to present its final report to the president . DT NNP NNP NN VBD DT NN VBZ RB RB JJ TO VB PRP$ JJ NN TO DT NN . The meeting follows statements from senior Democrats , whose party won control of Congress last week , who said their priority will be a change of course in Iraq . DT NN VBZ NNS IN JJ NNPS , WP$ NN VBD NN IN NNP JJ NN , WP VBD PRP$ NN MD VB DT NN IN NN IN NNP . Senator Carl Levin called Sunday in a broadcast interview for a phased withdrawal of U.S. troops from Iraq , and party chairman Howard Dean said Americans have made it clear they do not want the U.S. to stay in Iraq forever . NNP NNP NNP VBD NNP IN DT NN NN IN DT VBN NN IN NNP NNS IN NNP , CC NN NN NNP NNP VBD NNS VBP VBN PRP JJ PRP VBP RB VB DT NNP TO VB IN NNP RB . But Mr. Dean acknowledged his party will need to work with the president on Iraq . CC NNP NNP VBD PRP$ NN MD VB TO VB IN DT NN IN NNP . Two Chinese nationals have died after their van was involved in an accident with an Olympic bus on Wednesday in Beijing . CD JJ NNS VBP VBN IN PRP$ NN VBD VBN IN DT NN IN DT JJ NN IN NNP IN NNP . The Olympic bus was carrying two Croatian rowers , their coach , and members of the Canadian and Australian delegations . DT NNP NN VBD VBG CD JJ NNS , PRP$ NN , CC NNS IN DT JJ CC JJ NNS . The rowers suffered minor injuries . DT NNS VBD JJ NNS . Two other passengers on the van were also injured . CD JJ NNS IN DT NN VBD RB VBN . A spokesman for the Beijing Organizing Committee said the van was at fault in the accident . DT NN IN DT NNP NNP NNP VBD DT NN VBD IN NN IN DT NN . Both vehicles were going to the site of the Olympic rowing events . DT NNS VBD VBG TO DT NN IN DT NNP VBG NNS . The Croatian rowers competed in their double skulls semifinal as scheduled but missed out on the finals with a fourth place finish . DT JJ NNS VBN IN PRP$ JJ NNS JJ IN VBN CC VBN RP IN DT NNS IN DT JJ NN NN . The Israeli government has decided to allow 8,000 Ethiopians who claim Jewish descent to enter the country . DT JJ NN VBZ VBN TO VB CD NNS WP VBP JJ NN TO VB DT NN . Israel 's Prime Minister Benjamin Netanyahu , in remarks to his Cabinet Sunday , spoke of a ' humanitarian crisis ' and a ' moral commitment ' to help members of a group known as the Falash Mura . NNP POS NNP NNP NNP NNP , IN NNS TO PRP$ NNP NNP , VBD IN DT `` JJ NN `` CC DT `` JJ NN `` TO VB NNS IN DT NN VBN IN DT NNP NNP . They are Ethiopians who say they were forced to convert to Christianity . PRP VBP NNS WP VBP PRP VBD VBN TO VB TO NNP . Mr. Netanyahu said the Falash Mura will be brought to Israel in stages over the next three years . NNP NNP VBD DT NNP NNP MD VB VBN TO NNP IN NNS IN DT JJ CD NNS . They will then need to convert before being granted Israeli citizenship . PRP MD RB VB TO VB IN VBG VBN JJ NN . Some 1,00,000 Ethiopian Jews now live in Israel . DT CD JJ NNPS RB VBP IN NNP . They came to the country during the 1980s and 1990s under the Law of Return , which provides Israeli citizenship to all Jews . PRP VBD TO DT NN IN DT NNS CC NNS IN DT NN IN NNP , WDT VBZ JJ NN TO DT NNPS . At least 27 wives of Israeli rabbis have signed a letter urging Jewish women to avoid dating Arab men , after dozens of rabbis signed a religious ruling that forbids renting homes to non-Jews . IN JJS CD NNS IN JJ NNS VBP VBN DT NN VBG JJ NNS TO VB VBG JJ NNS , IN NNS IN NNS VBD DT JJ NN WDT VBZ VBG NNS TO JJ . The letter warns Jewish women that they will suffer if they date Arab men . DT NN VBZ JJ NNS IN PRP MD VB IN PRP VBP JJ NNS . It also warns against working in places where Arabs are employed . PRP RB VBZ IN VBG IN NNS WRB NNS VBP VBN . It was distributed Tuesday by the Jewish group , Lehava . PRP VBD VBN NNP IN DT JJ NN , NNP . Earlier this month , dozens of Israeli rabbis signed the letter forbidding home rentals . RBR DT NN , NNS IN JJ NNS VBD DT NN VBG NN NNS . In their appeal , the clerics said ' different lifestyles from Jews ' could endanger lives . IN PRP$ NN , DT NNS VBD `` JJ NNS IN NNPS `` MD VB NNS . The letter fueled charges of racism and was condemned by some lawmakers and human rights activists . DT NN VBD NNS IN NN CC VBD VBN IN DT NNS CC JJ NNS NNS . The letters could raise tensions between Israel 's Jews and its Arab minority at a time when international efforts are underway to revive direct peace talks between Israel and the Palestinians . DT NNS MD VB NNS IN NNP POS NNPS CC PRP$ JJ NN IN DT NN WRB JJ NNS VBP JJ TO VB JJ NN NNS IN NNP CC DT NNS . The U.S. government says oil production in the Gulf of Mexico was nearly 80 percent below normal as of Saturday , five days after Hurricane Katrina tore through the region . DT NNP NN VBZ NN NN IN DT NNP IN NNP VBD RB CD NN IN JJ IN IN NNP , CD NNS IN NNP NNP VBD IN DT NN . A report from the U.S. Minerals Management Service said Katrina had cut oil production in the Gulf by about 1.18 million barrels of oil per day . DT NN IN DT NNP NNP NNP NNP VBD NNP VBD VBN NN NN IN DT NNP IN RB CD CD NNS IN NN IN NN . It said more than 280 offshore oil-drilling rigs and platforms remained evacuated . PRP VBD JJR IN CD JJ NN NNS CC NNS VBD VBN . The figures represent a slight improvement from Friday , when oil production in the Gulf was nearly 90 percent below normal . DT NNS VBP DT JJ NN IN NNP , WRB NN NN IN DT NNP VBD RB CD NN IN JJ . Katrina 's disruption to Gulf-area oil production and refineries has caused a spike in U.S. gasoline prices , and an increase in crude oil prices on world markets . NNP POS NN TO JJ NN NN CC NNS VBZ VBN DT NN IN NNP NN NNS , CC DT NN IN JJ NN NNS IN NN NNS . Nigeria 's main militant group says it has freed 19 Nigerian oil workers kidnapped by other gunmen nearly a month ago . NNP POS JJ JJ NN VBZ PRP VBZ VBN CD JJ NN NNS VBN IN JJ NNS RB DT NN RB . The Movement for the Emancipation of the Niger Delta , or MEND , says in a statement that it released the hostages Sunday in Nigeria 's Rivers state . DT NN IN DT NN IN DT NNP NNP , CC NNP , VBZ IN DT NN IN PRP VBD DT NNS NNP IN NNP POS NNS NN . MEND said it rescued the hostages in mid-September , a few days after they were abducted by local pirates . NNP VBD PRP VBD DT NNS IN NNP , DT JJ NNS IN PRP VBD VBN IN JJ NNS . The group said today it is still holding a Ukrainian and two British nationals captured with the other hostages . DT NN VBD NN PRP VBZ RB VBG DT JJ CC CD JJ NNS VBN IN DT JJ NNS . It says they can not be released because of ' security concerns . ' PRP VBZ PRP MD RB VB VBN IN IN `` NN NNS . `` The oil-producing Niger Delta has been the scene of violent unrest during the last three years , much of it focused against the oil industry . DT JJ NNP NNP VBZ VBN DT NN IN JJ NN IN DT JJ CD NNS , NN IN PRP VBD IN DT NN NN . Militants say they want impoverished local residents to get more of the region 's oil wealth . NNS VBP PRP VBP JJ JJ NNS TO VB JJR IN DT NN POS NN NN . Tamil Tiger rebels in Sri Lanka say they have halted an offensive on a government-held town in the eastern part of the country , and are pulling back to their former positions . NNP NNP NNS IN NNP NNP VBP PRP VBP VBN DT NN IN DT JJ NN IN DT JJ NN IN DT NN , CC VBP VBG RB TO PRP$ JJ NNS . The fighting , in the eastern Muslim town of Muttur in Trincomalee province , was described as the worst since a cease-fire was agreed to more than four years ago . DT NN , IN DT JJ NNP NN IN NNP IN NNP NN , VBD VBN IN DT JJS IN DT NN VBD VBN TO JJR IN CD NNS RB . Thousands of civilians fled clashes between soldiers and the rebels . NNS IN NNS VBD NNS IN NNS CC DT NNS . At least five people were killed by artillery fire as they tried to find a safe haven . IN JJS CD NNS VBD VBN IN NN NN IN PRP VBD TO VB DT JJ NN . Norwegian peace envoy Jon Hanssen-Bauer met with Nordic cease-fire monitors Friday ahead of a meeting with government leaders . JJ NN NN NNP NNP VBD IN JJ NN NNS NNP RB IN DT NN IN NN NNS . He plans to travel north to meet rebel leaders soon . PRP VBZ TO VB RB TO VB JJ NNS RB . German Chancellor Gerhard Schroeder has asked the Russian people to forgive the suffering Germany inflicted on them and others during World War II The German leader said no other country was required to pay as high a cost in the victory against Hitler 's Germany as the former Soviet Union . JJ NNP NNP NNP VBZ VBN DT JJ NNS TO VB DT NN NNP VBD IN PRP CC NNS IN NNP NNP NNP DT JJ NN VBD DT JJ NN VBD VBN TO VB IN JJ DT NN IN DT NN IN NNP POS NNP IN DT JJ NNP NNP . His comments came in an article in Sunday 's edition of the Russian newspaper . PRP$ NNS VBD IN DT NN IN NNP POS NN IN DT JJ NN . He noted the loss of more than 27 million lives and called the indescribable destruction in the former Soviet Union ' frightening results of World War II ' . PRP VBD DT NN IN JJR IN CD CD NNS CC VBD DT JJ NN IN DT JJ NNP NNP `` VBG NNS IN NNP NNP NNP `` . Mr. Schroeder said the reconciliation between between Germany and its eastern neighbors , despite the horrors of world war and the later Cold War , is one of the miracles of European history . NNP NNP VBD DT NN IN IN NNP CC PRP$ JJ NNS , IN DT NNS IN NN NN CC DT JJ NNP NNP , VBZ CD IN DT NNS IN JJ NN . The article appeared on the eve of ceremonies in Moscow marking the 60th anniversary of the end of World War II in Europe . DT NN VBD IN DT NN IN NNS IN NNP VBG DT JJ NN IN DT NN IN NNP NNP NNP IN NNP . Police in Lebanon have arrested a man under investigation by a U.N. commission probing the assassination of former Prime Minister Rafik Hariri . NNS IN NNP VBP VBN DT NN IN NN IN DT NNP NN VBG DT NN IN JJ NNP NNP NNP NNP . Officials in Beirut say Mahmoud Abdel-Al , a member of the pro-Syrian Al-Ahbash Sunni Muslim Orthodox group , was detained early Saturday based on an arrest warrant issued by Lebanese prosecutors . NNS IN NNP VBP NNP NNP , DT NN IN DT JJ JJ NNP NNP NNP NN , VBD VBN JJ NNP VBN IN DT NN NN VBN IN JJ NNS . A U.N. investigative report issued earlier this week said the man telephoned pro-Syrian President Emile Lahoud minutes before Mr. Hariri was killed . DT NNP JJ NN VBN RBR DT NN VBD DT NN VBD JJ NNP NNP NNP NNS IN NNP NNP VBD VBN . A spokesman for Mr. Lahoud has strongly denied the president had been in contact with Mr. Abdel-Al . DT NN IN NNP NNP VBZ RB VBN DT NN VBD VBN IN NN IN NNP NNP . Meanwhile , the son of Mr. Hariri , Saad Hariri , called for an international tribunal to punish those responsible for his father 's assassination . RB , DT NN IN NNP NNP , NNP NNP , VBD IN DT JJ NN TO VB DT JJ IN PRP$ NN POS NN . In Damascus , Syrian officials dismissed the credibility of the U.N. report , which named senior Syrian security officials and their Lebanese allies as suspects in Mr. Hariri 's death . IN NNP , JJ NNS VBD DT NN IN DT NNP NN , WDT VBD JJ JJ NN NNS CC PRP$ JJ NNS IN NNS IN NNP NNP POS NN . Iraqi security officials say unidentified gunmen have shot and killed the imam of a Sunni mosque and three other people in Baghdad . JJ NN NNS VBP JJ NNS VBP VBN CC VBN DT NN IN DT NNP NN CC CD JJ NNS IN NNP . Authorities say the attackers gunned down the Sunni cleric near his home in the western part of the city Wednesday . NNS VBP DT NNS VBD RP DT NNP NN IN PRP$ NN IN DT JJ NN IN DT NN NNP . Investigators say his guards were also shot . NNS VBP PRP$ NNS VBD RB VBN . North of Baghdad , gunmen killed an off-duty policeman and a civilian in central Mosul . NNP IN NNP , NNS VBD DT JJ NN CC DT JJ IN JJ NNP . A woman who was nearby was wounded in the attack . DT NN WP VBD RB VBD VBN IN DT NN . Also Wednesday , a roadside bomb wounded at least one person in the northern Iraqi city of Kirkuk . RB NNP , DT NN NN VBD IN JJS CD NN IN DT JJ JJ NN IN NNP . Pakistani police say a car bomb exploded in a parking lot of a bank in the northwestern city of Peshawar Saturday , wounding 12 people . JJ NNS VBP DT NN NN VBD IN DT NN NN IN DT NN IN DT JJ NN IN NNP NNP , VBG CD NNS . Authorities say the blast broke windows in the military-owned Askari bank and damaged several nearby businesses and vehicles . NNS VBP DT NN VBD NNS IN DT JJ NNP NN CC VBN JJ JJ NNS CC NNS . Pakistan is a key ally of the United States in its campaign against terror . NNP VBZ DT JJ NN IN DT NNP NNPS IN PRP$ NN IN NN . In recent years , Peshawar and many other parts of the Islamic nation have been hit by scores of bomb attacks , most blamed on outlawed militant groups . IN JJ NNS , NNP CC JJ JJ NNS IN DT JJ NN VBP VBN VBN IN NNS IN NN NNS , JJS VBN IN JJ JJ NNS . Bombings have also been frequent since an army operation in July that evicted militants from the radical Red Mosque in Islamabad . NNS VBP RB VBN JJ IN DT NN NN IN NNP WDT VBD NNS IN DT JJ NNP NNP IN NNP . Taiwan has unveiled two new surveillance aircraft purchased from the United States , designed to reinforce its defenses against rival China . NNP VBZ VBN CD JJ NN NN VBN IN DT NNP NNPS , VBN TO VB PRP$ NNS IN JJ NNP . Taiwanese President Chen Shui-bian showed off the new E2-K planes during a public ceremony Saturday at an air force base in the island 's southern Pingtung region . JJ NNP NNP NNP VBD IN DT JJ JJ NNS IN DT JJ NN NNP IN DT NN NN NN IN DT NN POS JJ NNP NN . Officials say the new planes will expand the range of surveillance radar and can also guide fighter planes to intercept incoming aircraft . NNS VBP DT JJ NNS MD VB DT NN IN NN NN CC MD RB VB NN NNS TO VB JJ NN . The new planes are part of effort by President Chen to balance Taiwan 's military strength with China 's . DT JJ NNS VBP NN IN NN IN NNP NNP TO VB NNP POS JJ NN IN NNP POS . But opposition lawmakers argue he is entering the island in an expensive arms race it can not win . CC NN NNS VBP PRP VBZ VBG DT NN IN DT JJ NNS NN PRP MD RB VB . Taiwan split from China amid a civil war in 1949 . NNP VBD IN NNP IN DT JJ NN IN CD . China considers the island part of its territory . NNP VBZ DT NN NN IN PRP$ NN . An Arabic-language television channel has broadcast a video of Pakistan 's ambassador to Afghanistan , in which he says he has been kidnapped by Taliban militants . DT JJ NN NN VBZ VBN DT NN IN NNP POS NN TO NNP , IN WDT PRP VBZ PRP VBZ VBN VBN IN NNP NNS . The video of Tariq Azizuddin aired Saturday on Al-Arabiya television . DT NN IN NNP NNP VBD NNP IN NNP NN . Azizuddin was surrounded by armed gunmen as he made his first public comments since disappearing in February . NNP VBD VBN IN JJ NNS IN PRP VBD PRP$ JJ JJ NNS IN VBG IN NNP . He said he and his driver and bodyguard are being held in comfortable conditions , although he said he suffers from high blood pressure and heart pain . PRP VBD PRP CC PRP$ NN CC NN VBP VBG VBN IN JJ NNS , IN PRP VBD PRP VBZ IN JJ NN NN CC NN NN . He said the three were kidnapped while driving through Pakistan 's Khyber tribal district on the way to the Afghan capital , Kabul . PRP VBD DT CD VBD VBN IN VBG IN NNP POS NNP NN NN IN DT NN TO DT JJ NN , NNP . Azizuddin urged the Pakistani government and Pakistan 's envoys in China and Iran to comply with the demands of his captors . NNP VBD DT JJ NN CC NNP POS NNS IN NNP CC NNP TO VB IN DT NNS IN PRP$ NNS . The ambassador did not say what those demands were . DT NN VBD RB VB WP DT NNS VBD . Britain 's Home Secretary Charles Clarke has expressed confidence in the way London 's police commissioner and the police force have handled the controversy over the killing of an innocent man they wrongly suspected of being a terrorist . NNP POS NNP NNP NNP NNP VBZ VBN NN IN DT NN NNP POS NN NN CC DT NN NN VBP VBN DT NN IN DT NN IN DT JJ NN PRP RB VBD IN VBG DT NN . Mr. Clarke told British Radio he is very happy with the way Commissioner Ian Blair and the police force are handling the inquiry into the July 22 incident in which officers mistakenly shot and killed Brazilian Jean Charles de Menezes . NNP NNP VBD JJ NN PRP VBZ RB JJ IN DT NN NNP NNP NNP CC DT NN NN VBP VBG DT NN IN DT NNP CD NN IN WDT NNS RB VBD CC VBD JJ NNP NNP NNP NNP . He urged people not to pass judgment on the officers until an independent commission concludes its investigation . PRP VBD NNS RB TO VB NN IN DT NNS IN DT JJ NN VBZ PRP$ NN . Earlier , police confirmed they had reviewed their policy of using deadly force against suspected terrorists , but said they are making only minor adjustments . RBR , NN VBD PRP VBD VBN PRP$ NN IN VBG JJ NN IN JJ NNS , CC VBD PRP VBP VBG RB JJ NNS . Friday , a spokesman for the family of Mr. de Menezes accused Commissioner Blair of trying to stop an official probe into the shooting and again called for his resignation . NNP , DT NN IN DT NN IN NNP NNP NNP VBD NNP NNP IN VBG TO VB DT JJ NN IN DT NN CC RB VBN IN PRP$ NN . Bangladesh fire officials say a five-story building has collapsed in the capital of Dhaka , killing at least 20 people . NNP NN NNS VBP DT JJ NN VBZ VBN IN DT NN IN NNP , VBG IN JJS CD NNS . Authorities said the building toppled late Tuesday , flattening surrounding homes . NNS VBD DT NN VBD JJ NNP , VBG VBG NNS . At least 25 people were injured when the building fell . IN JJS CD NNS VBD VBN WRB DT NN VBD . Police say it was poorly constructed . NNS VBP PRP VBD RB VBN . Rescue teams are continuing to search the rubble for bodies and survivors . NN NNS VBP VBG TO VB DT NN IN NNS CC NNS . Officials fear the death count could rise as several people are reported missing . NNS VBP DT NN NN MD VB IN JJ NNS VBP VBN VBG . Officials say many of the victims were sleeping in the surrounding homes -- poorly constructed shanties with tin roofs -- when the building collapsed . NNS VBP NN IN DT NNS VBD VBG IN DT VBG NNS : RB VBN NNS IN NN NNS : WRB DT NN VBD . Jackson Browne has become the newest inductee in the Songwriters Hall Of Fame . NNP NNP VBZ VBN DT JJS NN IN DT NNP NNP IN NNP . The 58-year-old singer / songwriter - who three years ago earned a slot in the Rock and Roll Hall Of Fame - joins Don Black , Michael Masser , Irving Burgie , Bobby Weinstein , and Teddy Randazzo in the Class of 2007 . DT JJ NN CC NN : WP CD NNS RB VBD DT NN IN DT NNP CC NNP NNP IN NNP : VBZ NNP NNP , NNP NNP , NNP NNP , NNP NNP , CC NNP NNP IN DT NN IN CD . Previous inductees include Bob Dylan , Elton John , and Paul Simon . JJ NNS VBP NNP NNP , NNP NNP , CC NNP NNP . Selected by a nominating committee , eligible songwriters need to have been active for 20 years , and to have compiled an extensive catalog of hits . VBN IN DT JJ NN , JJ NNS VBP TO VB VBN JJ IN CD NNS , CC TO VB VBN DT JJ NN IN NNS . This year 's induction ceremony takes place June 7 in New York City . DT NN POS NN NN VBZ NN NNP CD IN NNP NNP NNP . Pakistani officials say armed tribesmen have killed more than 40 foreign militants in the latest fighting along Pakistan 's western border with Afghanistan . JJ NNS VBP JJ NNS VBP VBN RBR IN CD JJ NNS IN DT JJS NN IN NNP POS JJ NN IN NNP . The officials say many Uzbeks were among those killed or captured Wednesday in Pakistan 's South Waziristan region . DT NNS VBP JJ NNS VBD IN DT VBN CC VBN NNP IN NNP POS NNP NNP NN . Local residents say more than 1,000 heavily-armed tribesmen have joined the offensive against the foreign fighters . JJ NNS VBP JJR IN CD JJ NNS VBP VBN DT NN IN DT JJ NNS . They say tribal elders called the men to battle Tuesday by beating traditional war drums in the main town of Wana . PRP VBP JJ NNS VBD DT NNS TO VB NNP IN VBG JJ NN NNS IN DT JJ NN IN NNP . Fighting between Pakistani tribesmen and foreign fighters erupted last month after militants tried to kill a pro-government tribal leader . VBG IN JJ NNS CC JJ NNS VBD JJ NN IN NNS VBD TO VB DT JJ JJ NN . The tribesmen had previously given refuge to the foreign militants , many of whom fled a U.S.-led offensive in Afghanistan in 2001 . DT NNS VBD RB VBN NN TO DT JJ NNS , NN IN WP VBD DT JJ NN IN NNP IN CD . Pakistan 's government says the new tribal offensive vindicates its strategy of relying on tribesmen to combat foreign militants , rather than the army . NNP POS NN VBZ DT JJ JJ NN VBZ PRP$ NN IN VBG IN NNS TO VB JJ NNS , RB IN DT NN . An Israeli newspaper says Prime Minister Ariel Sharon 's health problems were far more serious than his doctors publicly acknowledged after he suffered a first stroke last month Doctors treating Mr. Sharon after the December 18 stroke said he had a small hole in his heart since birth . DT JJ NN VBZ NNP NNP NNP NNP POS NN NNS VBD RB RBR JJ IN PRP$ NNS RB VBD IN PRP VBD DT JJ NN JJ NN NNS VBG NNP NNP IN DT NNP CD NN VBD PRP VBD DT JJ NN IN PRP$ NN IN NN . He was scheduled to undergo a surgical procedure this month to repair the defect but suffered a massive second stroke the day before . PRP VBD VBN TO VB DT JJ NN DT NN TO VB DT NN CC VBD DT JJ JJ NN DT NN RB . The Haaretz newspaper says its own investigation revealed that Mr. Sharon also suffered from a large aneurysm in the septum - a condition known to be a source of cerebral blood clots . DT NNP NN VBZ PRP$ JJ NN VBD IN NNP NNP RB VBD IN DT JJ NN IN DT NN IN DT NN VBN TO VB DT NN IN JJ NN NNS . The report says he also suffered from other heart ailments . DT NN VBZ PRP RB VBD IN JJ NN NNS . The 77-year-old Israeli leader remains comatose in a Jerusalem hospital since suffering a massive brain hemorrhage on January 4 . DT JJ JJ NN VBZ JJ IN DT NNP NN IN VBG DT JJ NN NN IN NNP CD . A U.S. Congressman is calling for a review of U.S. policy toward Cuban refugees after 15 Cubans were repatriated Monday . DT NNP NN VBZ VBG IN DT NN IN NNP NN IN JJ NNS IN CD NNS VBD VBN NNP . Lincoln Diaz-Balart , a Republican House member from Florida , says he is asking the White House to review the United States ' ' wet foot , dry foot ' policy toward illegal Cuban immigrants . NNP NNP , DT NNP NNP NN IN NNP , VBZ PRP VBZ VBG DT NNP NNP TO VB DT NNP NNPS POS `` JJ NN , JJ NN `` NN IN JJ JJ NNS . The policy allows Cuban refugees who reach U.S. soil to stay in the United States , but those intercepted at sea are sent back home . DT NN VBZ JJ NNS WP VBP NNP NN TO VB IN DT NNP NNPS , CC DT VBN IN NN VBP VBN RB NN . Diaz-Balart told the Miami Herald newspaper that the policy should be eliminated . NNP VBD DT NNP NNP NN IN DT NN MD VB VBN . And if not that , he said , every Cuban migrant picked up at sea should at least have legal representation . CC IN RB DT , PRP VBD , DT JJ NN VBN RP IN NN MD IN JJS VBP JJ NN . Monday , the Coast Guard repatriated 15 Cubans found standing on an old bridge piling between islands of the Florida Keys . NNP , DT NNP NNP VBD CD NNS VBN VBG IN DT JJ NN VBG IN NNS IN DT NNP NNPS . The government ruled the bridge , which is no longer in use , did not count as dry land . DT NN VBD DT NN , WDT VBZ RB RB IN NN , VBD RB VB IN JJ NN . The NATO-led force in Afghanistan says it has killed about 200 Taleban fighters in the first two days of a major military operation in southern Afghanistan . DT JJ NN IN NNP VBZ PRP VBZ VBN IN CD NNP NNS IN DT JJ CD NNS IN DT JJ JJ NN IN JJ NNP . Canada confirms that four of its soldiers in the NATO-led force have been killed in the operation , dubbed Medusa , which started early Saturday . NNP VBZ IN CD IN PRP$ NNS IN DT JJ NN VBP VBN VBN IN DT NN , VBD NNP , WDT VBD JJ NNP . Its aim is to flush out insurgents from the Panjwayi district of Kandahar province . PRP$ NN VBZ TO VB RP NNS IN DT NNP NN IN NNP NN . The NATO-led force says Afghan police captured more than 80 suspected Taleban fighters and a further 180 were seen fleeing the area . DT JJ NN VBZ JJ NNS VBD JJR IN CD JJ NNP NNS CC DT JJ CD VBD VBN VBG DT NN . A British reconnaissance plane that was flying in support of the operation crashed Saturday , killing all 14 British military personnel on board . DT JJ NN NN WDT VBD VBG IN NN IN DT NN VBD NNP , VBG DT CD JJ JJ NNS IN NN . British officials say the crash was due to a technical problem , not enemy fire . JJ NNS VBP DT NN VBD JJ TO DT JJ NN , RB NN NN . Russia and Venezuela have signed two energy cooperation pacts that promote closer ties between Russia 's state-run natural gas monopoly , Gazprom , and Venezuela 's state oil firm ( PDVSA ) . NNP CC NNP VBP VBN CD NN NN NNS WDT VBP JJR NNS IN NNP POS JJ JJ NN NN , NNP , CC NNP POS NN NN NN LRB NNP RRB . Russian President Dmitry Medvedev and his Venezuelan counterpart , Hugo Chavez , attended the signing ceremony Friday in the Russian city of Orenburg . JJ NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBD DT NN NN NNP IN DT JJ NN IN NNP . Russian energy officials recently announced they will expand their investment in Venezuela 's oil industry . JJ NN NNS RB VBD PRP MD VB PRP$ NN IN NNP POS NN NN . Russia also says it will lend Venezuela $ 1 billion to buy military hardware . NNP RB VBZ PRP MD VB NNP $ CD CD TO VB JJ NN . President Chavez is a harsh critic of the United States . NNP NNP VBZ DT JJ NN IN DT NNP NNPS . His visit to Russia comes as relations between Moscow and Washington have soured in the wake of last month 's conflict between Russia and U.S. ally Georgia . PRP$ NN TO NNP VBZ IN NNS IN NNP CC NNP VBP VBN IN DT NN IN JJ NN POS NN IN NNP CC NNP NN NNP . The Venezuelan leader was scheduled to hold talks with French leaders Friday as part of a trip that has so far taken him to Cuba , China and Russia . DT JJ NN VBD VBN TO VB NNS IN JJ NNS NNP IN NN IN DT NN WDT VBZ RB RB VBN PRP TO NNP , NNP CC NNP . The U.S. Army has dropped all criminal charges against an officer in connection with the beating deaths of two detainees in Afghanistan in 2002 . DT NNP NNP VBZ VBN DT JJ NNS IN DT NN IN NN IN DT NN NNS IN CD NNS IN NNP IN CD . An investigating officer has cleared Captain Christopher Beiring of dereliction of duty and making FALSE statements . DT VBG NN VBZ VBN NNP NNP NNP IN NN IN NN CC VBG JJ NNS . Captain Beiring commanded a reserve military police unit stationed at a U.S. detention center in Bagram where the prisoners died . NNP NNP VBD DT NN JJ NN NN VBD IN DT NNP NN NN IN NNP WRB DT NNS VBD . He says his unit did not receive enough training from the Army to properly handle the detainees . PRP VBZ PRP$ NN VBD RB VB JJ NN IN DT NNP TO RB VB DT NNS . The investigating officer now says Captain Beiring was ' sorely challenged at every step ' but did the best job he could . DT VBG NN RB VBZ NNP NNP VBD `` RB VBN IN DT NN `` CC VBD DT JJS NN PRP MD . Fourteen servicemen , including military interrogators , have been charged in the case . CD NNS , VBG JJ NNS , VBP VBN VBN IN DT NN . Captain Beiring was the only officer facing charges . NNP NNP VBD DT JJ NN VBG NNS . Three members of his unit and some interrogators have either been convicted or pleaded guilty to abuse , assault or other charges . CD NNS IN PRP$ NN CC DT NNS VBP RB VBN VBN CC VBN JJ TO NN , NN CC JJ NNS . The International Olympic Committee has voted to eliminate baseball and softball from the 2012 Summer Games in London . DT NNP NNP NNP VBZ VBN TO VB NN CC NN IN DT CD NNPS NNPS IN NNP . The sports were the only two of 28 that failed to win a majority of votes in a ballot of members at an IOC meeting Friday in Singapore . DT NNS VBD DT JJ CD IN CD WDT VBD TO VB DT NN IN NNS IN DT NN IN NNS IN DT NNP NN NNP IN NNP . The last time a sport was eliminated from the Olympics was in 1936 , when water polo was removed . DT JJ NN DT NN VBD VBN IN DT NNP VBD IN CD , WRB NN NN VBD VBN . The committee will now consider replacing baseball and softball with two sports from a waiting list . DT NN MD RB VB VBG NN CC NN IN CD NNS IN DT VBG NN . Up for consideration are karate , golf , squash , rugby and roller sports . IN IN NN VBP JJ , NN , NN , NN CC NN NNS . Meanwhile , the IOC announced that equestrian events for the 2008 Beijing Games will be held in Hong Kong . RB , DT NNP VBD IN JJ NNS IN DT CD NNP NNPS MD VB VBN IN NNP NNP . Organizers in Beijing had pushed for the move , saying a number of equine diseases are prevalent in the Chinese capital . NNS IN NNP VBD VBN IN DT NN , VBG DT NN IN JJ NNS VBP JJ IN DT JJ NN . Insurgents in Iraq Tuesday released a video tape that shows a U.S. citizen held hostage and saying his life is in danger . NNS IN NNP NNP VBD DT NN NN WDT VBZ DT NNP NN VBD NN CC VBG PRP$ NN VBZ IN NN . On the video , a man identifying himself as Roy Hallams said he is not seeking help from President Bush , but wants Arab leaders , especially Libyan leader Muammar Gadhafi , to help secure his release . IN DT NN , DT NN VBG PRP IN NNP NNP VBD PRP VBZ RB VBG NN IN NNP NNP , CC VBZ JJ NNS , RB JJ NN NNP NNP , TO VB VB PRP$ NN . The U.S. Embassy in Iraq said it had no immediate information on the man or the authenticity of the video . DT NNP NNP IN NNP VBD PRP VBD DT JJ NN IN DT NN CC DT NN IN DT NN . Meanwhile , eight Chinese laborers who were held hostage by militants in Iraq for five days last week are on their way home . RB , CD JJ NNS WP VBD VBN NN IN NNS IN NNP IN CD NNS JJ NN VBP IN PRP$ NN NN . The group flew out of Baghdad earlier Tuesday , accompanied by several Chinese diplomats . DT NN VBD IN IN NNP RBR NNP , VBN IN JJ JJ NNS . Insurgents said they released the men after Beijing promised to discourage its citizens from traveling to Iraq . NNS VBD PRP VBD DT NNS IN NNP VBD TO VB PRP$ NNS IN VBG TO NNP . Diamonds , and the women who wear them , have inspired generations of jewelers and fashion houses . NNS , CC DT NNS WP VBP PRP , VBP VBN NNS IN NNS CC NN NNS . And that is the theme of a new exhibition called Diamond Divas at the Antwerp World Diamond Center in Belgium . CC DT VBZ DT NN IN DT JJ NN VBD NNP NNP IN DT NNP NNP NNP NNP IN NNP . Some 80 percent of the world 's rough diamonds are bought and sold in Antwerp . DT CD NN IN DT NN POS JJ NNS VBP VBN CC VBN IN NNP . The exhibition pulls together 76 pieces of diamond jewelry worn by the rich and famous , royalty and Hollywood stars . DT NN VBZ RB CD NNS IN NN NN VBN IN DT JJ CC JJ , NN CC NNP NNS . Nina-Maria Potts reports . NNP NNP VBZ . Former U.S. Defense Secretary William Perry has called on the Bush administration to follow suggestions made by the Iraq Study Group on the best way to move forward in Iraq . JJ NNP NNP NNP NNP NNP VBZ VBN IN DT NNP NN TO VB NNS VBN IN DT NNP NNP NNP IN DT JJS NN TO VB RB IN NNP . In the Democrats ' weekly radio address Saturday , Perry said the U.S.-led coalition in Iraq failed to get support from Iraq 's regional neighbors and should not have disbanded the Iraqi army - leaving hundreds of thousands of young , armed men with nothing to do . IN DT NNPS POS JJ NN NN NNP , NNP VBD DT JJ NN IN NNP VBD TO VB NN IN NNP POS JJ NNS CC MD RB VB VBN DT JJ NN : VBG NNS IN NNS IN JJ , JJ NNS IN DT TO VB . Perry was defense secretary under former President Bill Clinton . NNP VBD NN NN IN JJ NNP NNP NNP . He echoed the Iraq Study Group 's call for a change in mission . PRP VBD DT NNP NNP NNP POS NN IN DT NN IN NN . He said the United States should free up and re-set its ground forces , accelerate the training of the Iraqi army and police force , and set a goal of having all rapid-reaction forces out of Iraq by 2008 . PRP VBD DT NNP NNPS MD VB RP CC VB PRP$ NN NNS , VB DT NN IN DT JJ NN CC NN NN , CC VBD DT NN IN VBG DT JJ NNS IN IN NNP IN CD . The Iraq Study Group is a bipartisan panel commissioned by President Bush . DT NNP NNP NNP VBZ DT JJ NN VBN IN NNP NNP . It released its findings earlier this month . PRP VBD PRP$ NNS RBR DT NN . The lion dance is one of China 's most distinctive cultural arts and dates back thousands of years . DT NN NN VBZ CD IN NNP POS JJS JJ JJ NNS CC NNS RB NNS IN NNS . It is performed throughout the year at important occasions and is believed to bring happiness , longevity and good luck . PRP VBZ VBN IN DT NN IN JJ NNS CC VBZ VBN TO VB NN , NN CC JJ NN . As Chinese people emigrated around the world , they carried their traditions with them . IN JJ NNS VBN IN DT NN , PRP VBD PRP$ NNS IN PRP . VOA 's Susy Tekunan recently visited a martial arts school in Washington where the lion dance is an important part of the curriculum . NNP POS NNP NNP RB VBD DT JJ NNS NN IN NNP WRB DT NN NN VBZ DT JJ NN IN DT NN . Jim Bertel narrates . NNP NNP VBZ . Iraq 's parliament has extended a state of emergency in the country for a month , giving security forces greater powers to subdue violence . NNP POS NN VBZ VBN DT NN IN NN IN DT NN IN DT NN , VBG NN NNS JJR NNS TO VB NN . Parliament approved the extension Tuesday while meeting for the first time after a recess lasting several months . NNP VBD DT NN NNP IN VBG IN DT JJ NN IN DT NN VBG JJ NNS . The vote came as Iraq 's president said Iraqi forces will be ready to take over the country 's security by the end of next year and predicted that British troops will be able to leave Iraq at that time . DT NN VBD IN NNP POS NN VBD JJ NNS MD VB JJ TO VB RP DT NN POS NN IN DT NN IN JJ NN CC VBD IN JJ NNS MD VB JJ TO VB NNP IN DT NN . Jalal Talabani spoke after meeting in Baghdad Tuesday with British Foreign Secretary Margaret Beckett . NNP NNP VBD IN NN IN NNP NNP IN JJ NNP NNP NNP NNP . And the U.S. military said three U.S. service members were killed Monday in Iraq 's troubled western province of Al Anbar . CC DT NNP NN VBD CD NNP NN NNS VBD VBN NNP IN NNP POS JJ JJ NN IN NNP NNP . Their deaths bring to at least 10 the number of coalition troops killed in recent days . PRP$ NNS VBP TO IN JJS CD DT NN IN NN NNS VBN IN JJ NNS . The French parliament has approved an anti-terrorism law that includes increasing the use of video surveillance . DT JJ NN VBZ VBN DT JJ NN WDT VBZ VBG DT NN IN NN NN . The new law permits increased video surveillance at mosques , department stores , subways and airports . DT JJ NN VBZ VBN NN NN IN NNS , NN NNS , NNS CC NNS . It also extends the detention period for terrorism suspects from four to up to six days . PRP RB VBZ DT NN NN IN NN NNS IN CD CC RB TO CD NNS . Civil rights groups and other critics of the measure say it will erode basic civil liberties . JJ NNS NNS CC JJ NNS IN DT NN VBP PRP MD VB JJ JJ NNS . France has been on high alert since July , when Islamist suicide bombers killed more than 50 people in attacks on the London transport system . NNP VBZ VBN IN JJ NN IN NNP , WRB NNP NN NNS VBD JJR IN CD NNS IN NNS IN DT NNP NN NN . American actors Angelina Jolie and Brad Pitt are donating $ 2 million to a wildlife sanctuary in Namibia , where they spent Christmas with their children . JJ NNS NNP NNP CC NNP NNP VBP VBG $ CD CD TO DT NN NN IN NNP , WRB PRP VBD NNP IN PRP$ NNS . The donation to the Naankuse Lodge and Wildlife Sanctuary was made through the couple 's Jolie-Pitt foundation in the name of their daughter , Shiloh , who was born in Namibia . DT NN TO DT NNP NNP CC NNP NNP VBD VBN IN DT NN POS JJ NN IN DT NN IN PRP$ NN , NNP , WP VBD VBN IN NNP . In a statement , Jolie said the couple wants their daughter to be ' very involved ' and to grow up with an understanding of the country of her birth . IN DT NN , NNP VBD DT NN VBZ PRP$ NN TO VB `` RB JJ `` CC TO VB RP IN DT NN IN DT NN IN PRP$ NN . Jolie said the owners of the sanctuary are old friends , who have impressed her with their ' hard work and dedication ' to the conservation of Namibia 's land and wildlife . NNP VBD DT NNS IN DT NN VBP JJ NNS , WP VBP VBN PRP IN PRP$ `` JJ NN CC NN `` TO DT NN IN NNP POS NN CC NN . Jolie and Pitt spent the Christmas holiday with their six children at the lodge , which looks after injured animals , including baboons and leopards . NNP CC NNP VBD DT NNP NN IN PRP$ CD NNS IN DT NN , WDT VBZ IN JJ NNS , VBG NNS CC NNS . In Israel , a key Labor Party lawmaker has said she will defect from the left-wing party to join Prime Minister Ariel Sharon 's new centrist party . IN NNP , DT JJ NNP NNP NN VBZ VBN PRP MD VB IN DT JJ NN TO VB NNP NNP NNP NNP POS JJ JJ NN . Tuesday 's announcement from Dalia Itzik has further fueled speculation that her close Labor ally , Shimon Peres , will also join forces with Prime Minister Sharon 's new Kadima party . NNP POS NN IN NNP NNP VBZ RB VBN NN IN PRP$ JJ NN NN , NNP NNP , MD RB VB NNS IN NNP NNP NNP POS JJ NNP NN . Mr. Peres is expected to announce his decision on Wednesday . NNP NNP VBZ VBN TO VB PRP$ NN IN NNP . Mr. Peres recently lost his party leadership post to Amir Peretz . NNP NNP RB VBD PRP$ NN NN NN TO NNP NNP . Mr. Peretz withdrew Labor from Mr. Sharon 's Likud-led coalition , forcing early elections scheduled for March . NNP NNP VBD NN IN NNP NNP POS JJ NN , VBG JJ NNS VBN IN NNP . Mr. Sharon quit Likud last week because he faced a revolt from right-wing deputies who opposed his decision to withdraw Israel from the Gaza Strip . NNP NNP VBD NNP JJ NN IN PRP VBD DT NN IN JJ NNS WP VBD PRP$ NN TO VB NNP IN DT NNP NNP . Mr. Peres supported Mr. Sharon 's disengagement plan . NNP NNP VBD NNP NNP POS NN NN . The United Nations Food and Agriculture Organization says climate change may hurt food production in tropical areas . DT NNP NNPS NNP CC NNP NNP VBZ NN NN MD VB NN NN IN JJ NNS . FAO Director-General Jacques Diouf told an audience in India Tuesday that crop yields will probably fall in the seasonally dry tropics as global average temperatures rise . NNP NNP NNP NNP VBD DT NN IN NNP NNP IN NN NNS MD RB VB IN DT RB JJ NNS IN JJ NN NNS NN . He said agriculture dependent on rain in semi-arid regions is particularly at risk . PRP VBD NN JJ IN NN IN JJ NNS VBZ RB IN NN . He also said India might lose nearly one-fifth of its rain-fed cereal production . PRP RB VBD NNP MD VB RB NN IN PRP$ JJ NN NN . Diouf said small temperature increases of one to three degrees Celsius could boost crop yields in most industrialized countries , which mostly have colder climates , but that higher temperatures would hurt food production at lower altitudes . NNP VBD JJ NN NNS IN CD CC CD NNS NNP MD VB NN NNS IN JJS JJ NNS , WDT RB VBP NN NNS , CC IN JJR NNS MD VB NN NN IN JJR NNS . Diouf called for a concentrated scientific effort to help adapt crops to the likely future conditions . NNP VBD IN DT JJ JJ NN TO VB VB NNS TO DT JJ NN NNS . As an example , he cited genetically modifying crops to be more tolerant of drought , extreme temperatures , soil acidity and salinity . IN DT NN , PRP VBD RB VBG NNS TO VB JJR NN IN NN , JJ NNS , NN NN CC NN . Top-ranked Roger Federer of Switzerland and second-ranked Andy Roddick of the United States will meet in the final of the Kooyong Classic exhibition tennis tournament in Melbourne . JJ NNP NNP IN NNP CC JJ NNP NNP IN DT NNP NNPS MD VB IN DT JJ IN DT NNP NNP NN NN NN IN NNP . It could be a possible preview of the Australian Open title match . PRP MD VB DT JJ NN IN DT JJ NNP NN NN . The year 's first grand slam event begins Monday , also in Melbourne . DT NN POS JJ JJ NN NN VBZ NNP , RB IN NNP . Federer advanced in this round-robin event by beating Tim Henman of Britain , 06-Apr , 06-Feb , in 61 minutes on Friday . NNP VBD IN DT JJ NN IN VBG NNP NNP IN NNP , CD , CD , IN CD NNS IN NNP . Roddick had advanced to the final on Thursday after compatriot Andre Agassi retired from their match in the first set with an injured hip . NNP VBD VBN TO DT JJ IN NNP IN NN NNP NNP VBD IN PRP$ NN IN DT JJ NN IN DT JJ NN . Agassi plans to make an unscheduled appearance against Britain 's Tim Henman following the Federer-Roddick final Saturday . NNP VBZ TO VB DT JJ NN IN NNP POS NNP NNP VBG DT JJ JJ NNP . Agassi wants to test the hip to see if he 'll be fit for next week 's Australian Open , an event he 's won four times . NNP VBZ TO VB DT NN TO VB IN PRP MD VB JJ IN JJ NN POS JJ NNP , DT NN PRP VBZ VBN CD NNS . President Bush is to discuss the situation in Iraq Wednesday , during a speech to National Guard troops in the western state of Idaho . NNP NNP VBZ TO VB DT NN IN NNP NNP , IN DT NN TO NNP NNP NNS IN DT JJ NN IN NNP . Mr. Bush is expected to talk about efforts to combat the insurgency , and progress being made on the drafting of a new Iraqi constitution . NNP NNP VBZ VBN TO VB IN NNS TO VB DT NN , CC NN VBG VBN IN DT NN IN DT JJ JJ NN . He will also meet with relatives of soldiers killed in Iraq and Afghanistan . PRP MD RB VB IN NNS IN NNS VBN IN NNP CC NNP . On Tuesday , Mr. Bush again rejected calls for the immediate withdrawal of U.S. troops from Iraq , and said that doing so is ' advocating a policy that would weaken the United States . ' IN NNP , NNP NNP RB VBD NNS IN DT JJ NN IN NNP NNS IN NNP , CC VBD IN VBG RB VBZ `` VBG DT NN WDT MD VB DT NNP NNPS . `` He made the comment in response to a reporter 's question about Cindy Sheehan , the woman who lost a son in Iraq and led a protest near the president 's Texas ranch demanding to see him . PRP VBD DT NN IN NN TO DT NN POS NN IN NNP NNP , DT NN WP VBD DT NN IN NNP CC VBD DT NN IN DT NN POS NNP NN VBG TO VB PRP . Israeli troops have killed three suspected Palestinian militants in the West Bank . JJ NNS VBP VBN CD JJ JJ NNS IN DT NNP NNP . Witnesses say Israeli forces entered the town of Nablus Thursday and opened fire on a building where militants were believed to be hiding . NNS VBP JJ NNS VBD DT NN IN NNP NNP CC VBD NN IN DT NN WRB NNS VBD VBN TO VB VBG . Israel says its troops were searching for wanted militants , and shot the three men as they tried to flee . NNP VBZ PRP$ NNS VBD VBG IN JJ NNS , CC VBD DT CD NNS IN PRP VBD TO VB . Hours later , militants in the Gaza Strip fired a rocket into an Israeli military base , injuring five soldiers . NNS RB , NNS IN DT NNP NNP VBD DT NN IN DT JJ JJ NN , VBG CD NNS . Israeli military officials say troops responded with artillery fire at fields used by militants to launch rockets at Israel . JJ JJ NNS VBP NNS VBD IN NN NN IN NNS VBN IN NNS TO VB NNS IN NNP . Palestinian medical officials say a Palestinian man was killed in the strike . JJ JJ NNS VBP DT JJ NN VBD VBN IN DT NN . Separately , an Israeli court Thursday sentenced an Israeli woman to three years in prison after she pleaded guilty to collaborating with Palestinian militants . RB , DT JJ NN NNP VBD DT JJ NN TO CD NNS IN NN IN PRP VBD JJ TO VBG IN JJ NNS . Venezuela 's vice president has defended North Korea 's nuclear missile tests , saying he sees a double standard in the West 's condemnation of the move . NNP POS JJ NN VBZ VBN NNP NNP POS JJ NN NNS , VBG PRP VBZ DT JJ NN IN DT NNP POS NN IN DT NN . Vice President Jose Vicente Rangel told reporters Thursday that North Korea is exercising the right of any country to conduct such tests . JJ NNP NNP NNP NNP VBD NNS NNP IN NNP NNP VBZ VBG DT NN IN DT NN TO VB JJ NNS . Venezuelan President Hugo Chavez , known for his criticism of Washington , had said that he may visit Pyongyang on his next Asian tour . JJ NNP NNP NNP , VBN IN PRP$ NN IN NNP , VBD VBN IN PRP MD VB NNP IN PRP$ JJ JJ NN . North Korea this week launched seven missiles , including a long-range Taepodong-2 believed to be able to reach the United States . NNP NNP DT NN VBD CD NNS , VBG DT JJ NNP VBN TO VB JJ TO VB DT NNP NNPS . The tests have prompted condemnation from countries worldwide , including the U.S. , Russia , Australia , Japan , South Korea and China . DT NNS VBP VBN NN IN NNS NN , VBG DT NNP , NNP , NNP , NNP , NNP NNP CC NNP . British scientists say an underground volcano that erupted more than 2,000 years ago may be partly responsible for Antarctica 's receding ice sheet . JJ NNS VBP DT JJ NN WDT VBD JJR IN CD NNS RB MD VB RB JJ IN NNP POS VBG NN NN . The scientists , writing Sunday in the journal Nature Geoscience , say the hidden volcano is still active , and its persistent heat may be contributing to a nearby glacier 's rapid melting . DT NNS , VBG NNP IN DT NN NNP NNP , VBP DT JJ NN VBZ RB JJ , CC PRP$ JJ NN MD VB VBG TO DT JJ NN POS JJ NN . The British team says the volcano erupted about 23 centuries ago , roughly in the year 325 B.C. , blowing a hole through hundreds of meters of ice and spewing a 12-kilometer-high plume of ash and steam . DT JJ NN VBZ DT NN VBD IN CD NNS RB , RB IN DT NN CD NNP , VBG DT NN IN NNS IN NNS IN NN CC VBG DT JJ NN IN NN CC NN . Radar images of volcanic debris trapped beneath the Antarctic ice sheet helped the scientists locate the volcano in Antarctica 's Hudson Mountains and date the eruption . NN NNS IN JJ NN VBN IN DT JJ NN NN VBD DT NNS VBP DT NN IN NNP POS NNP NNPS CC NN DT NN . Despite their discoveries , the British Antarctic experts say global warming and rising sea temperatures are still the biggest cause of the southern continent 's accelerating ice melt . IN PRP$ NNS , DT JJ JJ NNS VBP JJ NN CC VBG NN NNS VBP RB DT JJS NN IN DT JJ NN POS VBG NN NN . President Bush is scheduled to make another visit to the U.S. Gulf Coast region Tuesday to get an update on recovery efforts following Hurricane Katrina . NNP NNP VBZ VBN TO VB DT NN TO DT NNP NNP NNP NN NNP TO VB DT NN IN NN NNS VBG NNP NNP . Mr. Bush is to meet business and community leaders in storm hit Gulfport , Mississippi before traveling to New Orleans , Louisiana . NNP NNP VBZ TO VB NN CC NN NNS IN NN NN NNP , NNP IN VBG TO NNP NNP , NNP . There , he is to visit a business trying to recover from Katrina and get an on-the-ground briefing about Tropical Storm Rita . EX , PRP VBZ TO VB DT NN VBG TO VB IN NNP CC VB DT JJ NN IN JJ NN NNP . Forecasters are warning this latest storm could move into the Gulf of Mexico and possibly hit New Orleans later this week . NNS VBP VBG DT JJS NN MD VB IN DT NNP IN NNP CC RB VBD NNP NNP RB DT NN . Louisiana Governor Kathleen Blanco has urged residents in the state 's coastal regions to prepare for evacuation . NNP NNP NNP NNP VBZ VBN NNS IN DT NN POS JJ NNS TO VB IN NN . And New Orleans Mayor Ray Nagin has suspended the scheduled return of New Orleans citizens . CC NNP NNP NNP NNP NNP VBZ VBN DT JJ NN IN NNP NNP NNS . Later this week , President Bush is expected to visit several cities in Texas , Arkansas and Alabama that have taken in people left homeless by Katrina . RB DT NN , NNP NNP VBZ VBN TO VB JJ NNS IN NNP , NNP CC NNP WDT VBP VBN IN NNS VBN JJ IN NNP . Chinese officials say a chemical factory has illegally discharged waste water into a river in southern China , affecting the drinking supply of about 40,000 people . JJ NNS VBP DT NN NN VBZ RB VBN NN NN IN DT NN IN JJ NNP , VBG DT NN NN IN IN CD NNS . The official Xinhua news agency says an eight kilometer stretch of the Sancha River in Guangdong province has been tainted by the chemical discharge . DT JJ NNP NN NN VBZ DT CD NN NN IN DT NNP NNP IN NNP NN VBZ VBN VBN IN DT NN NN . It did not specify the type of chemical , but said large quantities of dead fish and poisoned livestock have been reported . PRP VBD RB VB DT NN IN NN , CC VBD JJ NNS IN JJ NN CC VBN NN VBP VBN VBN . Xinhua said the local government has ordered waterworks companies and residents to avoid using the river for its water supply , particularly in the town of Changqi . NNP VBD DT JJ NN VBZ VBN NN NNS CC NNS TO VB VBG DT NN IN PRP$ NN NN , RB IN DT NN IN NNP . The name of the chemical company responsible for the spill was not available . DT NN IN DT NN NN JJ IN DT NN VBD RB JJ . Turkish Prime Minister Recep Tayyip Erdogan has rejected a European Union request that his country move towards recognizing Cyprus before next week 's EU summit . JJ NNP NNP NNP NNP NNP VBZ VBN DT NNP NNP NN IN PRP$ NN VB IN VBG NNP IN JJ NN POS NNP NN . Turkish officials announced the development in Brussels following talks Friday between the Prime Minister and EU Commission President Jose Manuel Barroso . JJ NNS VBD DT NN IN NNP VBG NNS NNP IN DT NNP NNP CC NNP NNP NNP NNP NNP NNP . The two leaders spoke one week before a scheduled EU summit , at which European leaders are expected to approve membership negotiations with Turkey and to set a date for the talks . DT CD NNS VBD CD NN IN DT VBN NNP NN , IN WDT JJ NNS VBP VBN TO VB NN NNS IN NNP CC TO VB DT NN IN DT NNS . EU officials say that Turkey should recognize Cyprus , an EU member state . NNP NNS VBP IN NNP MD VB NNP , DT NNP NN NN . Ankara currently has diplomatic ties only with the Turkish-dominated part of the divided island . NNP RB VBZ JJ NNS RB IN DT JJ NN IN DT VBN NN . Also , Friday , Turkey again expressed concern at reports that the European Union wants to toughen entry requirements for Ankara , in the face of resistance of some states to Turkish EU membership . RB , NNP , NNP RB VBD NN IN NNS IN DT NNP NNP VBZ TO VB NN NNS IN NNP , IN DT NN IN NN IN DT NNS IN JJ NNP NN . Jubilant Palestinians and militant factions celebrating the Israeli pullout from the Gaza Strip are gathering in an abandoned Jewish settlement for a mass rally . NNP NNS CC JJ NNS VBG DT JJ NN IN DT NNP NNP VBP VBG IN DT JJ JJ NN IN DT JJ NN . Palestinian factions were expected , at least temporarily , to set aside their internal rivalries and join in a unified show of support at Neve Dekalim for the Palestinian Authority and its president , Mahmoud Abbas . JJ NNS VBD VBN , IN JJS RB , TO VB RP PRP$ JJ NNS CC VB IN DT JJ NN IN NN IN NNP NNP IN DT JJ NNP CC PRP$ NN , NNP NNP . However , leaders of three main militant factions -- Hamas , Islamic Jihad and the Democratic Front for the Liberation of Palestine -- warned Wednesday they will not submit to government plans to disarm their groups . RB , NNS IN CD JJ JJ NNS IN NNP , NNP NNP CC DT JJ NN IN DT NN IN NNP : VBD NNP PRP MD RB VB TO NN NNS TO VB PRP$ NNS . In other developments , the Palestinian Authority says it will close its side of the Gaza-Egyptian border this evening , to stop surging crowds of Palestinians from crossing into Egypt . IN JJ NNS , DT JJ NNP VBZ PRP MD VB PRP$ NN IN DT JJ NN DT NN , TO VB VBG NNS IN NNS IN VBG IN NNP . Egypt says it will seal its side as well , after clearing Gaza revelers from Egyptian territory . NNP VBZ PRP MD VB PRP$ NN IN RB , IN VBG NNP NNS IN JJ NN . Afghan presidential candidate Abdullah Abdullah says partial election results show blatant evidence of ' state-engineered ' vote fraud , such as polling districts in which every vote was cast for President Hamid Karzai . JJ JJ NN NNP NNP VBZ JJ NN NNS VBP JJ NN IN `` JJ `` NN NN , JJ IN VBG NNS IN WDT DT NN VBD VBN IN NNP NNP NNP . Mr. Abdullah Saturday urged the international community to intervene , saying that if Afghanistan 's next leader is chosen through a fraudulent vote , it could fuel instability in the country . NNP NNP NNP VBD DT JJ NN TO VB , VBG IN IN NNP POS JJ NN VBZ VBN IN DT JJ NN , PRP MD VB NN IN DT NN . Afghanistan 's election commission says it stands by the partial results it has released on its Web site . NNP POS NN NN VBZ PRP VBZ IN DT JJ NNS PRP VBZ VBN IN PRP$ NNP NN . Officials postponed the release of the next round of election results , which were due Saturday . NNS VBD DT NN IN DT JJ NN IN NN NNS , WDT VBD JJ NNP . It is not clear if they made that decision based on a request from Mr. Abdullah . PRP VBZ RB JJ IN PRP VBD DT NN VBN IN DT NN IN NNP NNP . The most recent figures , based on returns from 60 percent of the country 's polling stations show Mr. Karzai leading Mr. Abdullah with about 47 percent of the vote . DT RBS JJ NNS , VBN IN NNS IN CD NN IN DT NN POS NN NNS VBP NNP NNP VBG NNP NNP IN IN CD NN IN DT NN . Candidates need at least 50 percent of the vote to avoid a runoff . NNS VBP IN JJS CD NN IN DT NN TO VB DT NN . Britain 's former Northern Ireland Secretary , Mo Mowlam , who helped secure the province 's 1998 Good Friday peace accord , has died at the age of 55 . NNP POS JJ NNP NNP NNP , NNP NNP , WP VBD VB DT NN POS CD JJ NNP NN NN , VBZ VBN IN DT NN IN CD . A family spokesman says Ms. Mowlam died Friday morning at a hospice south of London in Canterbury . DT NN NN VBZ NNP NNP VBD NNP NN IN DT NN NN IN NNP IN NNP . Friends say radiotherapy treatments Ms. Mowlam underwent for a brain tumor had affected her balance . NNS VBP NN NNS NNP NNP VBN IN DT NN NN VBD VBN PRP$ NN . She recently fell , hit her head and never regained consciousness . PRP RB VBD , VBD PRP$ NN CC RB VBD NN . Ms. Mowlam , known for her lively and direct style , was elected to parliament in 1987 and became Northern Ireland Secretary in 1997 . NNP NNP , VBN IN PRP$ JJ CC JJ NN , VBD VBN TO NN IN CD CC VBD JJ NNP NNP IN CD . She withdrew from politics in 2001 . PRP VBD IN NNS IN CD . Both British Prime Minister Blair and his Irish counterpart Bertie Ahern paid tribute to Ms. Mowlam for her energetic efforts on behalf of peace in Northern Ireland . DT JJ NNP NNP NNP CC PRP$ JJ NN NNP NNP VBD NN TO NNP NNP IN PRP$ JJ NNS IN NN IN NN IN NNP NNP . The Good Friday peace accord halted decades of sectarian violence in the British province . DT JJ NNP NN NN VBD NNS IN JJ NN IN DT JJ NN . Israel 's ruling Likud party is urging a parliamentary referendum on Prime Minister Ariel Sharon 's controversial pullout plan from the Gaza Strip and parts of the West Bank . NNP POS NN NNP NN VBZ VBG DT JJ NN IN NNP NNP NNP NNP POS JJ NN NN IN DT NNP NNP CC NNS IN DT NNP NNP . Likud 's Central Committee voted overwhelmingly Thursday to call for a non-binding referendum on the disengagement plan . NNP POS NNP NNP VBD RB NNP TO VB IN DT JJ NN IN DT NN NN . Party members who are against the withdrawal say they will join forces with far-right legislators later this month when the state budget comes up for a vote . NNP NNS WP VBP IN DT NN VBP PRP MD VB NNS IN JJ NNS RB DT NN WRB DT NN NN VBZ RP IN DT NN . Failure to pass the budget would force snap elections and shelve the Gaza plan . NN TO VB DT NN MD VB JJ NNS CC VB DT NNP NN . Thursday 's vote follows a meeting Wednesday between Vice Prime Minister and Labor Party leader Shimon Peres and Palestinian Cabinet Minister Mohammed Dahlan . NNP POS NN VBZ DT NN NNP IN NNP NNP NNP CC NNP NNP NN NNP NNP CC JJ NNP NNP NNP NNP . Mr. Peres said one of the topics he discussed was a possible handover of businesses held by Jewish settlers in Gaza to Palestinians , when Israel pulls out of the territory . NNP NNP VBD CD IN DT NNS PRP VBD VBD DT JJ NN IN NNS VBN IN JJ NNS IN NNP TO NNS , WRB NNP VBZ IN IN DT NN . U.S. Marines in Iraq say two leaders of a militant group linked to wanted terrorist Abu Musab al-Zarqawi have been arrested . NNP NNPS IN NNP VBP CD NNS IN DT JJ NN VBN TO JJ JJ NNP NNP NNP VBP VBN VBN . The U.S. military , which announced the arrests Saturday , said Marines had captured the two cell leaders during raids in the city of Ramadi earlier this month . DT NNP NN , WDT VBD DT NNS NNP , VBD NNP VBD VBN DT CD NN NNS IN NNS IN DT NN IN NNP RBR DT NN . The two men are accused of executing 11 Iraqi National Guardsmen , as well as planting bombs and smuggling foreign militants into Iraq . DT CD NNS VBP VBN IN VBG CD JJ NNP NNP , RB RB IN VBG NNS CC VBG JJ NNS IN NNP . The arrests came as rescue workers in Baghdad uncovered seven more bodies from the rubble of a Christmas Eve suicide bombing in the city 's upscale Mansour district . DT NNS VBD IN NN NNS IN NNP VBD CD JJR NNS IN DT NN IN DT NNP NNP NN VBG IN DT NN POS JJ NNP NN . The attack left nine dead . DT NN VBD CD JJ . Meanwhile , police in Najaf say at least three civilians were killed in a car bomb attack . RB , NN IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN NN NN . Iraqi officials say bombs in Baghdad have wounded 15 people . JJ NNS VBP NNS IN NNP VBP VBN CD NNS . Authorities say a roadside bomb in central Baghdad 's Allawi district wounded six . NNS VBP DT NN NN IN JJ NNP POS NNP NN VBD CD . Another roadside bomb wounded four people in the Iraqi capital 's western Iskan district . DT NN NN VBD CD NNS IN DT JJ NN POS JJ NNP NN . Officials say a third bomb wounded three people in the southwestern Jihad district , and a fourth in western Baghdad 's Harithiya district wounded two . NNS VBP DT JJ NN VBD CD NNS IN DT JJ NNP NN , CC DT JJ IN JJ NNP POS NNP NN VBD CD . The violence comes just two days after Iraqi police said masked gunmen killed 14 people during a brazen daytime robbery at jewelry stores in the capital . DT NN VBZ RB CD NNS IN JJ NN VBD VBN NNS VBD CD NNS IN DT JJ NN NN IN NN NNS IN DT NN . The head of Iran 's civil aviation authority says 29 people were killed and several others injured in a plane crash in the northeastern city of Mashhad . DT NN IN NNP POS JJ NN NN VBZ CD NNS VBD VBN CC JJ NNS VBN IN DT NN NN IN DT JJ NN IN NNP . Speaking to Iranian state television , Nourollah Rezai Niaraki rejected earlier reports that as many 80 people died in the crash Friday . VBG TO JJ NN NN , NNP NNP NNP VBD JJR NNS IN IN JJ CD NNS VBD IN DT NN NNP . He said the plane carrying 148 passengers skidded off the runway during landing and crashed , sparking a fire . PRP VBD DT NN VBG CD NNS VBD RP DT NN IN NN CC VBD , VBG DT NN . Television reports showed fire crews dousing the plane , as smoke rose from a hole in the center of the fuselage . NN NNS VBD NN NNS VBG DT NN , IN NN VBD IN DT NN IN DT NN IN DT NN . The Russian-made Tupolev airliner from Iran Airtour was arriving in Mashhad from the southern city of Bandar Abbas . DT JJ NNP NN IN NNP NNP VBD VBG IN NNP IN DT JJ NN IN NNP NNP . The incident is the latest crash involving Iran 's aging fleet of aircraft . DT NN VBZ DT JJS NN VBG NNP POS VBG NN IN NN . A military jet went down in January , killing 11 people . DT JJ NN VBD RB IN NNP , VBG CD NNS . And a cargo plane crashed into a Tehran building in December , killing 115 people . CC DT NN NN VBD IN DT JJ NN IN NNP , VBG CD NNS . U.S. Secretary of State Condoleezza Rice is in the Middle East to urge that Israeli and Palestinian leaders work together on Israel 's withdrawal from the Gaza Strip . NNP NNP IN NNP NNP NNP VBZ IN DT NNP NNP TO VB IN JJ CC JJ NNS VBP RB IN NNP POS NN IN DT NNP NNP . Ms. Rice arrived in Israel Thursday , following an upsurge in Israeli-Palestinian violence . NNP NNP VBD IN NNP NNP , VBG DT NN IN JJ NN . She said both sides must resist efforts by terrorists to destroy what she called the ' moment of hope ' brought about by the Gaza withdrawal . PRP VBD DT NNS MD VB NNS IN NNS TO VB WP PRP VBD DT `` NN IN NN `` VBN RB IN DT NNP NN . Ahead of her arrival , Israeli Deputy Prime Minister Ehud Olmert said Israel is considering speeding up its Gaza Strip withdrawal plan , to avoid further protests by opponents of the pullout . NN IN PRP$ NN , JJ NNP NNP NNP NNP NNP VBD NNP VBZ VBG VBG RP PRP$ NNP NNP NN NN , TO VB JJ NNS IN NNS IN DT NN . On the Palestinian side , Prime Minister Ahmed Qureia said Palestinians will celebrate ' every single meter ' of land abandoned by Israel . IN DT JJ NN , NNP NNP NNP NNP VBD NNS MD VB `` DT JJ NN `` IN NN VBN IN NNP . But Israeli Prime Minister Ariel Sharon stressed that he plans to keep large settlement blocs in the West Bank under Israeli control . CC JJ NNP NNP NNP NNP VBD IN PRP VBZ TO VB JJ NN NNS IN DT NNP NNP IN JJ NN . Venezuelan President Hugo Chavez says he is close to arranging an initial meeting with Colombian rebels for talks on releasing scores of hostages . JJ NNP NNP NNP VBZ PRP VBZ JJ TO VBG DT JJ NN IN JJ NNS IN NNS IN VBG NNS IN NNS . Chavez says his efforts to mediate an exchange of hostages held by the Revolutionary Armed Forces of Colombia , or FARC , are going well and said he expects a meeting to take place in coming days . NNP VBZ PRP$ NNS TO VB DT NN IN NNS VBN IN DT NNP NNP NNS IN NNP , CC NNP , VBP VBG RB CC VBD PRP VBZ DT NN TO VB NN IN VBG NNS . Chavez made the comments Friday after meeting in Ballenas with Colombian President Alvaro Uribe . NNP VBD DT NNS NNP IN NN IN NNP IN JJ NNP NNP NNP . The Venezuelan leader has offered to meet with representatives of the FARC to discuss a proposed swap of some 45 hostages in rebel custody . DT JJ NN VBZ VBN TO VB IN NNS IN DT NNP TO VB DT VBN NN IN DT CD NNS IN JJ NN . They include soldiers , police officers , French-Colombian politician Ingrid Betancourt and three Americans . PRP VBP NNS , NN NNS , JJ NN NNP NNP CC CD NNS . Last month , Colombia rejected an initial request by Venezuela to create a demilitarized zone for the meeting . JJ NN , NNP VBD DT JJ NN IN NNP TO VB DT JJ NN IN DT NN . Colombia has one of the world 's highest kidnapping rates . NNP VBZ CD IN DT NN POS JJS NN NNS . The death toll from southern Asia 's tsunami rose to around 1,70,000 Monday as Sri Lanka added more than 7,000 victims to its tally . DT NN NN IN JJ NNP POS NN VBD TO IN CD NNP IN NNP NNP VBD JJR IN CD NNS TO PRP$ NN . The December 26 tsunami and underwater earthquake left 38,000 people dead on the island nation - the second highest casualty rate after Indonesia , where nearly 1,15,000 are confirmed dead . DT NNP CD NNS CC JJ NN VBD CD NNS JJ IN DT NN NN IN DT JJ JJS NN NN IN NNP , WRB RB CD VBP VBN JJ . Meanwhile , Indonesian and United Nations officials say they have no information regarding a possible terrorist attack on foreign aid workers in Indonesia 's devastated Aceh province . RB , JJ CC NNP NNP NNS VBP PRP VBP DT NN VBG DT JJ JJ NN IN JJ NN NNS IN NNP POS JJ NNP NN . Denmark 's Foreign Ministry Monday said ' imminent ' terrorist attacks were planned on relief workers in the region , but gave no details . NNP POS NNP NNP NNP VBD `` JJ `` JJ NNS VBD VBN IN NN NNS IN DT NN , CC VBD DT NNS . Muslim separatists in Indonesia 's Aceh region have been fighting for independence for more than three decades . NNP NNS IN NNP POS NNP NN VBP VBN VBG IN NN IN JJR IN CD NNS . They agreed to a temporary ceasefire shortly after the tsunami disaster . PRP VBD TO DT JJ NN RB IN DT NN NN . A closely-watched measure of future U.S. economic activity rose in November after five months of declining readings . DT JJ NN IN JJ NNP JJ NN VBD IN NNP IN CD NNS IN VBG NNS . The index of leading economic indicators was up two tenths of a percent ( at a reading of 115.2 ) . DT NN IN VBG JJ NNS VBD RB CD NNS IN DT NN LRB IN DT NN IN CD RRB . The index is assembled by a business research group called the Conference Board in New York . DT NN VBZ VBN IN DT NN NN NN VBN DT NNP NNP IN NNP NNP . These experts examine factors like manufacturing , interest rates , consumer expectations , and stock prices that are thought to give hints about economic performance three to six months in the future . DT NNS VB NNS IN NN , NN NNS , NN NNS , CC NN NNS WDT VBP VBN TO VB NNS IN JJ NN CD CC CD NNS IN DT NN . German Chancellor Gerhard Schroeder Monday repeated his call to end the European Union 's ban on arms sales to China . JJ NNP NNP NNP NNP VBD PRP$ NN TO VB DT NNP NNP POS NN IN NNS NNS TO NNP . As Mr. Schroeder visited Beijing , Chinese officials signed agreements to buy $ 1.3 billion worth of Airbus jetliners and hundreds of millions of dollars worth of other German-made goods , including locomotives . IN NNP NNP VBD NNP , JJ NNS VBD NNS TO VB $ CD CD NN IN NNP NNS CC NNS IN NNS IN NNS NN IN JJ JJ NNS , VBG NNS . Mr. Schroeder met Monday with Prime Minister Wen Jiabao . NNP NNP VBD NNP IN NNP NNP NNP NNP . The German chancellor opposes the European Union 's ban on weapons sales to China , imposed after the bloody 1989 crackdown on pro-democracy demonstrators in Beijing . DT JJ NN VBZ DT NNP NNP POS NN IN NNS NNS TO NNP , VBN IN DT JJ CD NN IN JJ NNS IN NNP . His stand has been criticized by opponents in Germany , and the European Parliament renewed the sanctions last month . PRP$ NN VBZ VBN VBN IN NNS IN NNP , CC DT NNP NNP VBD DT NNS JJ NN . Mr. Schroeder travels to Tokyo Wednesday for talks with top Japanese officials . NNP NNP VBZ TO NNP NNP IN NNS IN JJ JJ NNS . High-powered U.S. lobbyist Jack Abramoff has pleaded guilty to fraud and tax evasion charges , clearing the way for him to cooperate with a federal corruption probe that could implicate several top members of Congress . JJ NNP NN NNP NNP VBZ VBN JJ TO NN CC NN NN NNS , VBG DT NN IN PRP TO VB IN DT JJ NN NN WDT MD VB JJ JJ NNS IN NNP . Abramoff is implicated in two separate investigations . NNP VBZ VBN IN CD JJ NNS . He is accused of defrauding two lenders in Florida in a deal to buy a cruise line , and he is being investigated in Washington for offering trips and other gifts to lawmakers , including former House Majority Leader Tom DeLay . PRP VBZ VBN IN VBG CD NNS IN NNP IN DT NN TO VB DT NN NN , CC PRP VBZ VBG VBN IN NNP IN VBG NNS CC JJ NNS TO NNS , VBG JJ NNP NNP NNP NNP NNP . As part of his plea-bargain , he is expected to cooperate with federal investigators , meaning he could provide names of U.S. congressmen with whom he had illegal dealings . IN NN IN PRP$ JJ , PRP VBZ VBN TO VB IN JJ NNS , VBG PRP MD VB NNS IN NNP NNS IN WP PRP VBD JJ NNS . The Associated Press reports the federal probe is focusing on as many as 20 lawmakers and aides . DT NNP NNP VBZ DT JJ NN VBZ VBG RP RB JJ IN CD NNS CC NNS . A number of lawmakers have tried to cut ties with Abramoff in recent weeks by returning his campaign contributions . DT NN IN NNS VBP VBN TO VB NNS IN NNP IN JJ NNS IN VBG PRP$ NN NNS . Five Americans who were detained and deported by China earlier this week for holding a pro-Tibetan independence demonstration on the base of Mount Everest say they feared for their lives while in Chinese custody . CD NNS WP VBD VBN CC VBN IN NNP RBR DT NN IN VBG DT JJ NN NN IN DT NN IN NNP NNP VBP PRP VBD IN PRP$ NNS IN IN JJ NN . The five , including a Tibetan-American , arrived Friday in Nepal 's capital , Kathmandu . DT CD , VBG DT JJ , VBD NNP IN NNP POS NN , NNP . The activists told reporters there Saturday they were psychologically intimidated while in custody . DT NNS VBD NNS RB NNP PRP VBD RB VBN IN IN NN . Chinese authorities have not responded to the comments . JJ NNS VBP RB VBN TO DT NNS . The activists were detained Wednesday after unfurling banners at Mount Everest , calling for Tibetan independence and criticizing the 2008 Beijing Olympics . DT NNS VBD VBN NNP IN VBG NNS IN NNP NNP , VBG IN JJ NN CC VBG DT CD NNP NNPS . Beijing officials want to take the Olympic torch up Mount Everest , the world 's tallest mountain , which has one side in Tibet . NNP NNS VBP TO VB DT NNP VB RP NNP NNP , DT NN POS JJS NN , WDT VBZ CD NN IN NNP . Chinese troops occupied Tibet in the 1950s . JJ NNS VBD NNP IN DT NNS . Beijing continues to rule the region with a heavy hand . NNP VBZ TO VB DT NN IN DT JJ NN . A former minister in Iraq 's interim government says he is in talks with two Sunni insurgent groups , who are prepared to discuss ending their armed resistance to the U.S.-backed Iraqi government . DT JJ NN IN NNP POS JJ NN VBZ PRP VBZ IN NNS IN CD NNP JJ NNS , WP VBP VBN TO VB VBG PRP$ JJ NN TO DT JJ JJ NN . Ayham al-Sammarei tells VOA that he has been meeting with representatives from the Islamic Army in Iraq and the Mujaheddin Army , and trying to find a way for them to enter negotiations with the government . NNP NNP VBZ NNP IN PRP VBZ VBN VBG IN NNS IN DT NNP NNP IN NNP CC DT NNP NNP , CC VBG TO VB DT NN IN PRP TO VB NNS IN DT NN . He drew a distinction between these insurgent groups , which he said do not kill innocent people , and organizations like Abu Musab al-Zarqawi 's al-Qaeda in Iraq . PRP VBD DT NN IN DT JJ NNS , WDT PRP VBD VBP RB VB JJ NNS , CC NNS IN NNP NNP NNP POS NNP IN NNP . Mr. al-Sammarei says the insurgent groups willing to consider negotiations want to defend themselves and want foreign forces to leave Iraq . NNP NNP VBZ DT JJ NNS JJ TO VB NNS VBP TO VB PRP CC VBP JJ NNS TO VB NNP . The insurgency in Iraq is believed to be made up largely of the country 's Sunni Arab minority . DT NN IN NNP VBZ VBN TO VB VBN RP RB IN DT NN POS NNP NNP NN . Radical Iraqi Shi'ite cleric Moqtada al-Sadr says his recent call for ' open war ' is only against U.S. forces , not the Iraqi government . JJ JJ NNP NN NNP NNP VBZ PRP$ JJ NN IN `` JJ NN `` VBZ RB IN NNP NNS , RB DT JJ NN . In a statement Friday , Sadr urged his Mahdi Army militia to stop the bloodshed against fellow Iraqis . IN DT NN NNP , NNP VBD PRP$ NNP NNP NN TO VB DT NN IN JJ NNS . Militias loyal to Sadr have been battling coalition and Iraqi forces in Baghdad 's Sadr City district since late March . NNS JJ TO NNP VBP VBN VBG NN CC JJ NNS IN NNP POS NNP NNP NN IN JJ NNP . More than 300 people have been killed in those clashes . JJR IN CD NNS VBP VBN VBN IN DT NNS . Meanwhile , the U.N. secretary-general 's special representative for children and armed conflict concluded a five-day visit to Iraq Friday . RB , DT NNP NN POS JJ NN IN NNS CC JJ NN VBD DT JJ NN TO NNP NNP . She told reporters the trip convinced her that Iraq 's children are silent victims of the ongoing violence . PRP VBD NNS DT NN VBD PRP IN NNP POS NNS VBP JJ NNS IN DT JJ NN . Radhika Coomaraswamy also noted that Iraqi children are being recruited as suicide bombers by various militias and insurgent groups in Iraq . NNP NNP RB VBD IN JJ NNS VBP VBG VBN IN NN NNS IN JJ NNS CC JJ NNS IN NNP . Earlier Friday , the U.S. military said it detained more than 12 suspected terrorists , during operations targeting al-Qaida in Iraq forces . RBR NNP , DT NNP NN VBD PRP VBD JJR IN CD JJ NNS , IN NNS VBG NNP IN NNP NNS . Family and friends of international aid worker Margaret Hassan held a memorial service at London 's Westminster Cathedral Saturday . NN CC NNS IN JJ NN NN NNP NNP VBD DT JJ NN IN NNP POS NNP NNP NNP . The Roman Catholic Archbishop of Westminster , Cardinal Cormac Murphy-O'Connor , presided over the funeral mass . DT NNP NNP NNP IN NNP , NNP NNP NNP , VBD IN DT JJ NN . Unknown militants kidnapped Mrs. Hassan , the director of the Baghdad office of Care International , in October . JJ NNS VBD NNP NNP , DT NN IN DT NNP NN IN NNP NNP , IN NNP . A video released to the Arabic news channel Al-Jazeera in November showed the murder of a western woman , believed to be Mrs. Hassan . DT NN VBN TO DT NNP NN NN NNP IN NNP VBD DT NN IN DT JJ NN , VBN TO VB NNP NNP . Her body has never been recovered . PRP$ NN VBZ RB VBN VBN . But family members and British officials say they believe she is dead . CC NN NNS CC JJ NNS VBP PRP VBP PRP VBZ JJ . Mrs. Hassan was born in Ireland , but lived in Iraq for 30 years and was married to an Iraqi . NNP NNP VBD VBN IN NNP , CC VBD IN NNP IN CD NNS CC VBD VBN TO DT NN . Authorities in Haiti have rescued two American children and a Haitian foster child who were kidnapped in Port-au-Prince late last week . NNS IN NNP VBP VBN CD JJ NNS CC DT JJ JJ NN WP VBD VBN IN NN RB JJ NN . Police said the alleged kidnappers , dressed as policemen , snatched the children from their mother after she picked them up at school Friday . NNS VBD DT JJ NNS , VBN IN NNS , VBD DT NNS IN PRP$ NN IN PRP VBD PRP RP IN NN NNP . The children were rescued the next day during a police raid on an apartment in the Delmas area of the capital city . DT NNS VBD VBN DT JJ NN IN DT NN NN IN DT NN IN DT NNP NN IN DT NN NN . Authorities said they arrested seven suspects , including a former police officer . NNS VBD PRP VBN CD NNS , VBG DT JJ NN NN . The children 's parents , Christian missionaries from the U.S. state of Oklahoma , said while the children were missing they received a phone call asking for $ 3,50,000 in ransom . DT NNS POS NNS , JJ NNS IN DT NNP NN IN NNP , VBD IN DT NNS VBD VBG PRP VBD DT NN NN VBG IN $ CD IN NN . The kidnappings were the latest in a string of such incidents . DT NNS VBD DT JJS IN DT NN IN JJ NNS . Earlier this month , a U.S. grand jury indicted two Haitian men on charges of kidnapping a nine-year-old American girl in Port-au-Prince . RBR DT NN , DT NNP JJ NN VBD CD JJ NNS IN NNS IN VBG DT JJ JJ NN IN NN . She was rescued after a week in captivity . PRP VBD VBN IN DT NN IN NN . Lebanon 's government has banned public demonstrations on the eve of an opposition rally building on the public outcry over the assassination of former Prime Minister Rafik Hariri . NNP POS NN VBZ VBN JJ NNS IN DT NN IN DT NN NN NN IN DT JJ NN IN DT NN IN JJ NNP NNP NNP NNP . Opposition leaders say they will ignore the ban and hold a peaceful sit-in Monday . NN NNS VBP PRP MD VB DT NN CC VB DT JJ NN NNP . The opposition called the protest and a one-day strike to coincide with a special session of parliament that is to consider a no-confidence motion against the Beirut government . DT NN VBD DT NN CC DT JJ NN TO VB IN DT JJ NN IN NN WDT VBZ TO VB DT JJ NN IN DT NNP NN . Lebanon 's opposition blames the government and its backer Syria for the car bombing that killed Mr. Hariri and 14 others two weeks ago . NNP POS NN VBZ DT NN CC PRP$ NN NNP IN DT NN NN WDT VBD NNP NNP CC CD NNS CD NNS RB . Both Damascus and Beirut have denied involvement . DT NNP CC NNP VBP VBN NN . Meanwhile , top U.S. envoy David Satterfield is in Beirut to press U.S. demands that Syria withdraw all of its estimated 14,000 troops in Lebanon . RB , JJ NNP NN NNP NNP VBZ IN NNP TO VB NNP NNS IN NNP VB DT IN PRP$ VBN CD NNS IN NNP . The U.S. space agency , NASA , has marked the 20th anniversary of the Challengerspace shuttle tragedy that killed seven astronauts . DT NNP NN NN , NNP , VBZ VBN DT JJ NN IN DT NNP NN NN WDT VBD CD NNS . The ceremony was held Saturday at the Kennedy Space Center in Cape Canaveral , Florida , where the Challenger was launched January 28 , 1986 . DT NN VBD VBN NNP IN DT NNP NNP NNP IN NNP NNP , NNP , WRB DT NNP VBD VBN NNP CD , CD . The widow of the shuttle 's commander joined a top NASA official in laying a wreath at a memorial that bears the names of the seven astronauts and other fallen space explorers . DT NN IN DT NN POS NN VBD DT JJ NNP NN IN VBG DT NN IN DT NN WDT VBZ DT NNS IN DT CD NNS CC JJ JJ NN NNS . The Challenger exploded 73 seconds after taking off under clear blue skies in near freezing temperatures . DT NNP VBD CD NNS IN VBG RP IN JJ JJ NNS IN JJ JJ NNS . Those on board included Christa McAuliffe , who was to be the first school teacher in space . DT IN NN VBD NNP NNP , WP VBD TO VB DT JJ NN NN IN NN . The explosion , which was seen on live television and before an audience that included school children , was blamed on a failure of a seal in the shuttle 's solid rocket booster due to the cold weather . DT NN , WDT VBD VBN IN JJ NN CC IN DT NN WDT VBD NN NNS , VBD VBN IN DT NN IN DT NN IN DT NN POS JJ NN NN JJ TO DT JJ NN . The World Trade Organization has authorized seven countries to levy multi-million dollar sanctions on U.S. imports . DT NNP NNP NNP VBZ VBN CD NNS TO VB JJ NN NNS IN NNP NNS . A spokesman in Geneva Friday said the European Union , India , Japan , South Korea , Brazil , Mexico and Canada can begin imposing tariffs in 2005 . DT NN IN NNP NNP VBD DT NNP NNP , NNP , NNP , NNP NNP , NNP , NNP CC NNP MD VB VBG NNS IN CD . The sanctions are in response to a U.S. law known as the Byrd Amendment that the WTO ruled illegal in August . DT NNS VBP IN NN TO DT NNP NN VBN IN DT NNP NNP IN DT NNP VBD JJ IN NNP . The law levies fines on products exported to the United States below market prices , and then , turns around and gives the money to the injured U.S. companies . DT NN VBZ NNS IN NNS VBN TO DT NNP NNPS IN NN NNS , CC RB , VBZ RB CC VBZ DT NN TO DT JJ NNP NNS . The European Union says it hopes Washington will comply with WTO guidelines soon to avoid making use of the authorized sanctions . DT NNP NNP VBZ PRP VBZ NNP MD VB IN NNP NNS RB TO VB VBG NN IN DT JJ NNS . A U.S. official on Wednesday said the Bush Administration was working with Congress to make the law meet WTO criteria . DT NNP NN IN NNP VBD DT NNP NN VBD VBG IN NNP TO VB DT NN VB JJ NNS . German Chancellor Angela Merkel has called on the kidnappers of a German woman taken hostage in Iraq to release her immediately . JJ NNP NNP NNP VBZ VBN IN DT NNS IN DT JJ NN VBN NN IN NNP TO VB PRP RB . Ms. Merkel told the Bild am Sonntag newspaper the government is doing all it can to rescue Susanne Osthoff and her Iraqi driver , who disappeared nine days ago , on November 25 . NNP NNP VBD DT NNP VBP NNP NN DT NN VBZ VBG DT PRP MD TO VB NNP NNP CC PRP$ JJ NN , WP VBD CD NNS RB , IN NNP CD . The kidnappers said they would kill the woman if Germany does not end all support for the Iraqi government . DT NNS VBD PRP MD VB DT NN IN NNP VBZ RB VB DT NN IN DT JJ NN . The magazines Der Spiegel and Focus reported that the ultimatum expired in the early hours of Friday . DT NNS NNP NNP CC NNP VBD IN DT NN VBD IN DT JJ NNS IN NNP . German Foreign Minister Frank-Walter Steinmeier said on Saturday that Germany had not been able to establish contact with the kidnappers . JJ NNP NNP NNP NNP VBD IN NNP IN NNP VBD RB VBN JJ TO VB NN IN DT NNS . Turkish authorities said they detained a man in Istanbul last week on suspicion of plotting to kill visiting U.S. President Barack Obama . JJ NNS VBD PRP VBD DT NN IN NNP JJ NN IN NN IN VBG TO VB VBG NNP NNP NNP NNP . A Turkish official said Tuesday the man was deemed mentally disturbed and released shortly after he was taken into custody . DT JJ NN VBD NNP DT NN VBD VBN RB VBN CC VBN RB IN PRP VBD VBN IN NN . The arrest occurred Friday , two days before Mr. Obama even arrived in Turkey . DT NN VBD NNP , CD NNS IN NNP NNP RB VBD IN NNP . U.S. Secret Service spokesman Ed Donovan said Mr. Obama was never in any immediate danger . NNP NNP NNP NN NNP NNP VBD NNP NNP VBD RB IN DT JJ NN . He added that the president 's security team is following up with Turkish authorities about the case , as is standard practice . PRP VBD IN DT NN POS NN NN VBZ VBG RP IN JJ NNS IN DT NN , IN VBZ JJ NN . The White House does not comment about threats or the president 's security . DT NNP NNP VBZ RB VB IN NNS CC DT NN POS NN . A Saudi newspaper , al-Watan , has reported details that have not been confirmed by officials . DT JJ NN , NNP , VBZ VBN NNS WDT VBP RB VBN VBN IN NNS . It said a man of Syrian origin confessed to plotting to stab Mr. Obama . PRP VBD DT NN IN JJ NN VBD TO VBG TO VB NNP NNP . The newspaper said the man was carrying an Al-Jazeera identity card . DT NN VBD DT NN VBD VBG DT NNP NN NN . U.S. Secretary of State Condoleezza Rice says the United States has made mistakes in Iraq , but it was not a mistake to oust Saddam Hussein or to push for democracy in the Middle East . NNP NNP IN NNP NNP NNP VBZ DT NNP NNPS VBZ VBN NNS IN NNP , CC PRP VBD RB DT NN TO VB NNP NNP CC TO VB IN NN IN DT NNP NNP . In an interview Saturday with the British Broadcasting Company , Rice said ' the birth of democracy is sometimes difficult . ' IN DT NN NNP IN DT JJ NNP NN , NNP VBD `` DT NN IN NN VBZ RB JJ . `` Earlier she and British Foreign Secretary Jack Straw conferred with Muslim community leaders in Straw 's home city of Blackburn . RBR PRP CC JJ NNP NNP NNP NNP VBD IN NNP NN NNS IN NNP POS NN NN IN NNP . Rice also visited the nearby city of Liverpool . NNP RB VBD DT JJ NN IN NNP . The U.S. top diplomat is in Britain for two days at Straw 's invitation following his visit to Rice 's hometown last year . DT NNP JJ NN VBZ IN NNP IN CD NNS IN NNP POS NN VBG PRP$ NN TO NNP POS NN JJ NN . Hundreds of anti-war protesters have followed Rice throughout her stay . NNS IN JJ NNS VBP VBN NNP IN PRP$ NN . U.S.-led coalition forces in Afghanistan say air strikes have killed at least 12 militants allegedly involved in sneaking foreign fighters from Pakistan into Afghanistan . JJ NN NNS IN NNP VBP NN NNS VBP VBN IN JJS CD NNS RB VBN IN VBG JJ NNS IN NNP IN NNP . The coalition said in a statement Tuesday the overnight strikes hit a pair of bunkers in eastern Khost province . DT NN VBD IN DT NN NNP DT JJ NNS VBD DT NN IN NNS IN JJ NNP NN . The operation targeted insurgents linked to Taliban militant leader Siraj Haqqani , who is accused of carrying out many attacks in Afghanistan . DT NN VBD NNS VBN IN NNP NN NN NNP NNP , WP VBZ VBN IN VBG RP JJ NNS IN NNP . The exact number of militant casualties is still not clear . DT JJ NN IN JJ NNS VBZ RB RB JJ . Meanwhile , at a main border checkpoint in eastern Afghanistan , officials say a male suicide bomber disguised himself as a woman and attacked the Torkham crossing . RB , IN DT JJ NN NN IN JJ NNP , NNS VBP DT JJ NN NN VBN PRP IN DT NN CC VBD DT NNP VBG . Authorities say the burqa-clad bomber blew himself up at the women 's crossing point , killing a police officer and a child . NNS VBP DT JJ NN VBD PRP RP IN DT NNS POS VBG NN , VBG DT NN NN CC DT NN . They say the bombing also wounded at least 10 people . PRP VBP DT NN RB VBD IN JJS CD NNS . Torkham is one of the main border crossings between Pakistan and Afghanistan . NNP VBZ CD IN DT JJ NN NNS IN NNP CC NNP . Japan and the United States have signed an agreement to encourage cooperation on developing a missile defense system . NNP CC DT NNP NNPS VBP VBN DT NN TO VB NN IN VBG DT NN NN NN . Japanese Defense Minister Yoshinori Ono signed a memorandum of understanding Friday in Tokyo with U.S. Ambassador to Japan Howard Baker . JJ NNP NNP NNP NNP VBD DT NN IN NN NNP IN NNP IN NNP NNP TO NNP NNP NNP . Under the agreement , Japan and the United States will exchange information on research , deployment and operations of a missile shield . IN DT NN , NNP CC DT NNP NNP MD VB NN IN NN , NN CC NNS IN DT NN NN . The agreement comes one week after Japan adopted new defense policy guidelines that would allow the joint development of a missile defense system with the United States . DT NN VBZ CD NN IN NNP VBD JJ NN NN NNS WDT MD VB DT JJ NN IN DT NN NN NN IN DT NNP NNPS . The five-year defense outline allows the sale of missile defense components to the United States for production of a missile shield . DT JJ NN NN VBZ DT NN IN NN NN NNS TO DT NNP NNPS IN NN IN DT NN NN . Japan says other arms export cases will be considered on a case-by-case basis . NNP VBZ JJ NNS NN NNS MD VB VBN IN DT JJ NN . Ethiopians vote Sunday in a second round of elections for local government positions , despite an opposition boycott and criticism from a prominent international human rights group . NNS NN NNP IN DT JJ NN IN NNS IN JJ NN NNS , IN DT NN NN CC NN IN DT JJ JJ JJ NNS NN . The first round of voting was last Sunday . DT JJ NN IN NN VBD JJ NNP . Opposition leaders claim that most of their candidates were disqualified from running or intimidated into dropping out . NN NNS VBP IN JJS IN PRP$ NNS VBD VBN IN VBG CC VBN IN VBG RP . The ruling EPRDF party has denied those allegations , saying the electoral board registered every candidate who had the proper credentials . DT NN NNP NN VBZ VBN DT NNS , VBG DT JJ NN VBD DT NN WP VBD DT JJ NNS . The rights group Human Rights Watch agrees with the opposition 's view , calling the elections ' a rubber stamp ' for the ruling party 's domination of power . DT NNS NN NNP NNP NNP VBZ IN DT NN POS NN , VBG DT NNS `` DT NN NN `` IN DT VBG NN POS NN IN NN . Approximately four million seats in parliament , city councils and neighborhood councils are at stake in the elections . RB CD CD NNS IN NN , NN NNS CC NN NNS VBP IN NN IN DT NNS . Ethiopia has 26 million registered voters . NNP VBZ CD CD JJ NNS . The leader of the Church of England says the British Broadcasting Corporation should air an appeal for humanitarian aid for civilians in the Gaza Strip . DT NN IN DT NNP IN NNP VBZ DT NNP NNP NNP MD VB DT NN IN JJ NN IN NNS IN DT NNP NNP . The Archbishop of Canterbury , Rowan Williams , Sunday made his comments as more than 50 British lawmakers announced a petition urging the BBC to run the appeal . DT NN IN NNP , NNP NNP , NNP VBD PRP$ NNS IN JJR IN CD JJ NNS VBD DT NN VBG DT NNP TO VB DT NN . The UK 's national broadcaster says it rejected the appeal because it did not want to harm its image as an impartial news source . DT NNP POS JJ NN VBZ PRP VBD DT NN IN PRP VBD RB VB TO VB PRP$ NN IN DT JJ NN NN . The BBC also questioned whether the aid will reach those who need it . DT NNP RB VBD IN DT NN MD VB DT WP VBP PRP . The organization seeking to advertise its appeal , the Disasters Emergency Committee , is a grouping of 13 aid agencies that aid people in crisis . DT NN VBG TO VB PRP$ NN , DT NNP NNP NNP , VBZ DT NN IN CD NN NNS IN VBP NNS IN NN . The group says it is not political , and that it is seeking funds to help innocent people affected by the conflict in Gaza . DT NN VBZ PRP VBZ RB JJ , CC IN PRP VBZ VBG NNS TO VB JJ NNS VBN IN DT NN IN NNP . Authorities in France say they have arrested 13 Turkish Kurds on suspicion of helping to finance terrorism . NNS IN NNP VBP PRP VBP VBN CD JJ NNS IN NN IN VBG TO VB NN . Police say the Kurds are suspected of involvement in a money laundering network that funds the militant Kurdistan Workers Party , also known by the initials PKK . NNS VBP DT NNPS VBP VBN IN NN IN DT NN NN NN WDT VBZ DT JJ NNP NNP NNP , RB VBN IN DT NNS NNP . Turkey , the United States and the European Union classify the PKK as a terrorist organization . NNP , DT NNP NNPS CC DT NNP NNP VBP DT NNP IN DT JJ NN . Police say Monday 's arrests in the suburbs of the capital are part of an investigation that began last July when two Kurds were arrested in Paris trying to exchange 2,00,000 euros ( about $ 2,60,000 ) in cash into other currencies . NNS VBP NNP POS NNS IN DT NNS IN DT NN VBP NN IN DT NN WDT VBD JJ NNP WRB CD NNS VBD VBN IN NNP VBG TO VB CD NNS LRB IN $ CD RRB IN NN IN JJ NNS . The PKK has been fighting Turkey for autonomy since 1984 . DT NNP VBZ VBN VBG NNP IN NN IN CD . More than 37,000 people have been killed in the conflict . JJR IN CD NNS VBP VBN VBN IN DT NN . Monday 's arrests took place in the Paris suburbs of Yvelines , Hauts-de-Seine , Seine-Saint-Denis , and the Val d' Oise . NNP POS NNS VBD NN IN DT NNP NNS IN NNP , NNP , NNP , CC DT NNP NNP NNP . China says archaeologists have unearthed a 1,700-year-old complex of tombs in eastern China 's Zheijiang Province . NNP VBZ NNS VBP VBN DT JJ NN IN NNS IN JJ NNP POS NNP NNP . China 's official Xinhua news agency says the tombs were first discovered by a forklift operator at a construction site near the port city of Ningbo . NNP POS JJ NNP NN NN VBZ DT NNS VBD JJ VBN IN DT NN NN IN DT NN NN IN DT JJ NN IN NNP . The report says inscriptions in the tombs indicate they were built in 256-AD , and are the best-preserved ancient tombs ever discovered in the region . DT NN VBZ NNS IN DT NNS VBP PRP VBD VBN IN JJ , CC VBP DT JJ JJ NNS RB VBN IN DT NN . Xinhua says there are figures of fish , beasts , dragons and phoenixes are etched in the walls . NNP VBZ EX VBP NNS IN NN , NNS , NNS CC NNS VBP VBN IN DT NNS . Other objects discovered at the site include porcelain vessels , copper money and bronze mirrors . JJ NNS VBN IN DT NN VBP NN NNS , NN NN CC NN NNS . Avril Lavigne and her husband have bought a home in the upscale Los Angeles neighborhood of Bel-Air . NNP NNP CC PRP$ NN VBP VBN DT NN IN DT JJ NNP NNP NN IN NNP . The Los Angeles Times reports the 22-year-old pop-rock singer and her husband , Derek Whibley of the Canadian rock band Sum-41 , paid about $ 9.5 million for their new home . DT NNP NNP NNP VBZ DT JJ NN NN CC PRP$ NN , NNP NNP IN DT JJ NN NN NNP , VBD RB $ CD CD IN PRP$ JJ NN . Boasting eight bedrooms and 10 and one-half bathrooms , the three-story house also has an elevator , sauna , and garage space for 10 cars . VBG CD NNS CC CD CC JJ NNS , DT JJ NN RB VBZ DT NN , NN , CC NN NN IN CD NNS . Avril Lavigne , whose worldwide record sales top 26 million , was last year ranked the seventh most powerful Canadian in Hollywood by Canadian Business Magazine . NNP NNP , WP$ JJ NN NNS JJ CD CD , VBD JJ NN VBD DT JJ RBS JJ NN IN NNP IN NNP NNP NNP . Her third album , The Best Damn Thing , appears April 17 in the United States . PRP$ JJ NN , DT NNP NNP NNP , VBZ NNP CD IN DT NNP NNPS . The Islamic Militant Group Hamas has claimed victory in Wednesday 's Palestinian legislative elections . DT NNP NNP NNP NNP VBZ VBN NN IN NNP POS JJ JJ NNS . The claim has yet to be independently confirmed by the Palestinian electoral commission which is expected to issue official results later Thursday . DT NN VBZ RB TO VB RB VBN IN DT JJ JJ NN WDT VBZ VBN TO VB JJ NNS RB NNP . The Hamas victory claim comes from Ismail Haniyeh a senior Hamas leader in the Gaza Strip . DT NNP NN NN VBZ IN NNP NNP DT JJ NNP NN IN DT NNP NNP . Mr. Haniyeh says Hamas activists who observed the vote counting say Hamas has won more than 70 seats in the 132-seat legislature . NNP NNP VBZ NNP NNS WP VBD DT NN NN VBP NNP VBZ VBN JJR IN CD NNS IN DT JJ NN . Palestinian electoral officials have not confirmed the results , but an unnamed official from the Palestinian Authority says the results so far show Hamas winning . JJ JJ NNS VBP RB VBN DT NNS , CC DT JJ NN IN DT JJ NNP VBZ DT NNS RB RB VBP NNP VBG . Official preliminary results are expected to be released later Thursday . JJ JJ NNS VBP VBN TO VB VBN RB NNP . Israel , the United States and the European Union say they will not deal with any Palestinian government that includes Hamas unless the group disarms and agrees to recognize Israel , something Hamas officials say they will not do . NNP , DT NNP NNPS CC DT NNP NNP VBP PRP MD RB VB IN DT JJ NN WDT VBZ NNP IN DT NN VBZ CC VBZ TO VB NNP , DT NNP NNS VBP PRP MD RB VB . Thailand 's military government has selected the head of the country 's Constitution Drafting Council in what is seen as a first step toward restoring democracy after last year 's military coup . NNP POS JJ NN VBZ VBN DT NN IN DT NN POS NNP NNP NNP IN WP VBZ VBN IN DT JJ NN IN VBG NN IN JJ NN POS JJ NN . Following his election to the council Monday , political science professor Noranit Setabutr said a new draft constitution would be completed within 180 days . VBG PRP$ NN TO DT NN NNP , JJ NN NN NNP NNP VBD DT JJ NN NN MD VB VBN IN CD NNS . He said the new constitution must be acceptable to the Thai public and bring about democracy . PRP VBD DT JJ NN MD VB JJ TO DT JJ NN CC VB RB NN . Members of Thailand 's military overthrew the government of former Prime Minister Thaksin Shinawatra last September . NNS IN NNP POS JJ NN DT NN IN JJ NNP NNP NNP NNP JJ NNP . They accused him of exploiting the old constitution to amass more personal power than his office afforded him . PRP VBD PRP IN VBG DT JJ NN TO VB RBR JJ NN IN PRP$ NN VBD PRP . The coup leaders have promised to hold a general election under a new constitution within a year . DT NN NNS VBP VBN TO VB DT JJ NN IN DT JJ NN IN DT NN . Mr. Thaksin is living outside the country while he is being investigated for corruption and abuse of power at home . NNP NNP VBZ VBG IN DT NN IN PRP VBZ VBG VBN IN NN CC NN IN NN IN NN . Russian President Vladimir Putin says he believes Iran is cooperating sufficiently with the United Nations nuclear agency and U.N. sanctions will cause new problems . JJ NNP NNP NNP VBZ PRP VBZ NNP VBZ VBG RB IN DT NNP NNP JJ NN CC NNP NNS MD VB JJ NNS . Mr. Putin 's remarks were broadcast Sunday on American television , but the interview was conducted Friday . NNP NNP POS NNS VBD VBN NNP IN JJ NN , CC DT NN VBD VBN NNP . The Russian leader said Iran 's president told him he wanted continued negotiations with Britain , France and Germany . DT JJ NN VBD NNP POS NN VBD PRP PRP VBD VBN NNS IN NNP , NNP CC NNP . The three European countries , backed by the United States , have been trying to convince Iran to suspend its nuclear fuel enrichment program . DT CD JJ NNS , VBN IN DT NNP NNPS , VBP VBN VBG TO VB NNP TO VB PRP$ JJ NN NN NN . Russia is helping Iran build a new nuclear energy plant . NNP VBZ VBG NNP VB DT JJ JJ NN NN . Rescuers working at a flooded coal mine in central China have recovered the bodies of 39 miners following an accident more than two weeks ago . NNS VBG IN DT VBN NN NN IN JJ NNP VBP VBN DT NNS IN CD NNS VBG DT NN JJR IN CD NNS RB . The official Xinhua news agency said Saturday recovery teams are still searching for three miners missing and presumed dead . DT JJ NNP NN NN VBD NNP NN NNS VBP RB VBG IN CD NNS VBG CC VBN JJ . The miners have been trapped underground at the Sigou Coal Mine in Henan province since December 9 , when a nearby river overflowed its banks and water rushed into the shaft . DT NNS VBP VBN VBN RB IN DT NNP NNP NNP IN NNP NN IN NNP CD , WRB DT JJ NN VBD PRP$ NNS CC NN VBD IN DT NN . Xinhua says 10 mine officials have been detained and will face ' stern punishment ' for the accident . NNP VBZ CD NN NNS VBP VBN VBN CC MD VB `` JJ NN `` IN DT NN . China 's coal mines are the world 's deadliest , with more than 5,000 deaths reported every year in fires , floods and other disasters . NNP POS NN NNS VBP DT NN POS JJS , IN JJR IN CD NNS VBN DT NN IN NNS , NNS CC JJ NNS . The Venezuelan information ministry has dismissed criticism by the Organization of American States of proposed media legislation being debated in the Venezuelan Congress . DT JJ NN NN VBZ VBN NN IN DT NNP IN NNP NNPS IN VBN NNS NN VBG VBN IN DT JJ NNP . An information ministry spokesman Wednesday said the OAS , which said the proposal may restrict freedom of expression and political dissent , should stop meddling in Venezuela 's domestic political affairs . DT NN NN NN NNP VBD DT NNP , WDT VBD DT NN MD VB NN IN NN CC JJ NN , MD VB VBG IN NNP POS JJ JJ NNS . The proposed law bans vulgar language , depictions of alcohol and drug consumption , gambling , sex and violence during the daylight hours . DT JJ NN VBZ JJ NN , NNS IN NN CC NN NN , NN , NN CC NN IN DT JJ NNS . It allows the government to shut down stations that show violence , and to impose 18-day jail sentences for broadcasting FALSE information . PRP VBZ DT NN TO VB RP NNS WDT VBP NN , CC TO VB JJ NN NNS IN VBG JJ NN . The ministry said the bill is in rigorous compliance with press freedoms guaranteed under the constitution and international treaties . DT NN VBD DT NN VBZ IN JJ NN IN NN NNS VBN IN DT NN CC JJ NNS . The trial in Kosovo of six ethnic Albanians suspected of war crimes has opened in the town of Gniljane , southeast of the capital Pristina . DT NN IN NNP IN CD JJ NNS VBN IN NN NNS VBZ VBN IN DT NN IN NNP , NN IN DT NN NNP . U.N. police and NATO-led peacekeepers arrested former fighter with the Kosovo Liberation Army , Selim Krasniqi , and several of his associates last year in Prizren . NNP NNS CC JJ NNS VBN JJ NN IN DT NNP NNP NNP , NNP NNP , CC NN IN PRP$ NNS JJ NN IN NNP . Five of the accused appeared in court and one is being tried in absentia . CD IN DT VBN VBD IN NN CC CD VBZ VBG VBN IN NN . The defendants face charges of murder and other crimes against fellow ethnic Albanians during the conflict in Kosovo in the late 1990s . DT NNS VBP NNS IN NN CC JJ NNS IN JJ JJ NNS IN DT NN IN NNP IN DT JJ NNS . The proceedings got underway about a week after gunmen shot and killed a witness in the case . DT NNS VBD NN IN DT NN IN NNS VBD CC VBD DT NN IN DT NN . At the time of his arrest , Mr. Krasniqi was a commander of the Kosovo Protection Corps , a post-war civil defense group that deals with emergencies in Kosovo . IN DT NN IN PRP$ NN , NNP NNP VBD DT NN IN DT NNP NNP NNP , DT JJ JJ NN NN WDT VBZ IN NNS IN NNP . Authorities say gunmen have abducted a British oil worker from a drilling rig off the coast of Nigeria . NNS VBP NNS VBP VBN DT JJ NN NN IN DT NN NN IN DT NN IN NNP . A spokesman for the U.S.-based operator , Transocean , said the attackers Saturday boarded the ' Trident Eight ' rig and seized one of the workers . DT NN IN DT JJ NN , NNP , VBD DT NNS NNP VBD DT `` NNP CD `` NN CC VBD CD IN DT NNS . The spokesman said the other 23 people on the rig were left unharmed . DT NN VBD DT JJ CD NNS IN DT NN VBD VBN JJ . Such kidnappings are common in the region , where criminal gangs are active , and where militants have demanded that the government give more of the region 's oil wealth to impoverished locals . JJ NNS VBP JJ IN DT NN , WRB JJ NNS VBP JJ , CC WRB NNS VBP VBN IN DT NN VB JJR IN DT NN POS NN NN TO JJ NNS . Nearly 200 foreign workers have been abducted over the past year in the region . RB CD JJ NNS VBP VBN VBN IN DT JJ NN IN DT NN . Most have been released unharmed , often after a ransom was paid . JJS VBP VBN VBN JJ , RB IN DT NN VBD VBN . The attacks have forced the shutdown of oil facilities , crippling Nigeria 's oil industry . DT NNS VBP VBN DT NN IN NN NNS , VBG NNP POS NN NN . U.S. prosecutors have convicted five leaders of a now-defunct Muslim charity of channeling some $ 12 million to the Palestinian militant group Hamas . NNP NNS VBP VBN CD NNS IN DT JJ NN NN IN VBG DT $ CD CD TO DT JJ JJ NN NNP . A federal court in the southwestern city of Dallas , Texas Monday found the men guilty of 108 separate charges . DT JJ NN IN DT JJ NN IN NNP , NNP NNP VBD DT NNS NN IN CD JJ NNS . They were former leaders of the Holy Land Foundation , which organizers said collected money for poverty-stricken Palestinians affected by the conflict with Israel . PRP VBD JJ NNS IN DT NNP NNP NNP , WDT NNS VBD VBN NN IN JJ NNS VBN IN DT NN IN NNP . The group was the largest Muslim-run charity in the United States before it was shut down by the U.S. government in the wake of the September 11 , 2001 terrorist attacks . DT NN VBD DT JJS JJ NN IN DT NNP NNPS IN PRP VBD VBN RP IN DT NNP NN IN DT NN IN DT NNP CD , CD JJ NNS . This was the second attempt at a trial . DT VBD DT JJ NN IN DT NN . The first ended in October 2007 after the judge declared a mistrial . DT JJ VBN IN NNP CD IN DT NN VBD DT NN . The defendants in the case denied sending money to Hamas and said the charges were politically motivated . DT NNS IN DT NN VBD VBG NN TO NNP CC VBD DT NNS VBD RB JJ . The United States declared Hamas a terrorist organization in 1995 , making contributions to it illegal . DT NNP NNPS VBD NNP DT JJ NN IN CD , VBG NNS TO PRP JJ . The Indus Valley civilization , one of the oldest in the world and dating back at least 5,000 years , spread over much of what is presently Pakistan . DT NNP NNP NN , CD IN DT JJS IN DT NN CC VBG RB IN JJS CD NNS , NN IN NN IN WP VBZ RB NNP . During the second millennium B.C. , remnants of this culture fused with the migrating Indo-Aryan peoples . IN DT JJ NN NNP , NNS IN DT NN VBD IN DT VBG JJ NNS . The area underwent successive invasions in subsequent centuries from the Persians , Greeks , Scythians , Arabs ( who brought Islam ) , Afghans , and Turks . DT NN VBD JJ NNS IN JJ NNS IN DT NNS , NNS , NNS , NNS LRB WP VBD NNP RRB , NNS , CC NNS . The Mughal Empire flourished in the 16th and 17th centuries ; the British came to dominate the region in the 18th century . DT NNP NNP VBD IN DT JJ CC JJ NNS ; DT NNS VBD TO VB DT NN IN DT JJ NN . The separation in 1947 of British India into the Muslim state of Pakistan ( with West and East sections ) and largely Hindu India was never satisfactorily resolved , and India and Pakistan fought two wars - in 1947 - 48 and 1965 - over the disputed Kashmir territory . DT NN IN CD IN JJ NNP IN DT NNP NN IN NNP LRB IN NNP CC NNP NNS RRB CC RB NNP NNP VBD RB RB VBN , CC NNP CC NNP VBD CD NNS IN IN CD IN CD CC CD : IN DT JJ NNP NN . A third war between these countries in 1971 - in which India capitalized on Islamabad 's marginalization of Bengalis in Pakistani politics - resulted in East Pakistan becoming the separate nation of Bangladesh . DT JJ NN IN DT NNS IN CD : IN WDT NNP VBD IN NNP POS NN IN NNP IN JJ NNS : VBD IN NNP NNP VBG DT JJ NN IN NNP . In response to Indian nuclear weapons testing , Pakistan conducted its own tests in 1998 . IN NN TO JJ JJ NNS NN , NNP VBD PRP$ JJ NNS IN CD . India-Pakistan relations have been rocky since the November 2008 Mumbai attacks , but both countries are taking small steps to put relations back on track . JJ NNS VBP VBN JJ IN DT NNP CD NNP NNS , CC DT NNS VBP VBG JJ NNS TO VB NNS RB IN NN . In February 2008 , Pakistan held parliamentary elections and in September 2008 , after the resignation of former President MUSHARRAF , elected Asif Ali ZARDARI to the presidency . IN NNP CD , NNP VBD JJ NNS CC IN NNP CD , IN DT NN IN JJ NNP NNP , VBD NNP NNP NNP TO DT NN . Pakistani government and military leaders are struggling to control domestic insurgents , many of whom are located in the tribal areas adjacent to the border with Afghanistan . JJ NN CC JJ NNS VBP VBG TO VB JJ NNS , NN IN WP VBP VBN IN DT JJ NNS JJ TO DT NN IN NNP . New Caledonia has about 25 % of the world 's known nickel resources . NNP NNP VBZ RB CD NN IN DT NN POS VBN NN NNS . Only a small amount of the land is suitable for cultivation , and food accounts for about 20 % of imports . RB DT JJ NN IN DT NN VBZ JJ IN NN , CC NN VBZ IN RB CD NN IN NNS . In addition to nickel , substantial financial support from France - equal to more than 15 % of GDP - and tourism are keys to the health of the economy . IN NN TO NN , JJ JJ NN IN NNP IN JJ TO JJR IN CD NN IN NN : CC NN VBP NNS TO DT NN IN DT NN . Substantial new investment in the nickel industry , combined with the recovery of global nickel prices , brightens the economic outlook for the next several years . JJ JJ NN IN DT NN NN , VBN IN DT NN IN JJ NN NNS , VBZ DT JJ NN IN DT JJ JJ NNS . Prior to the global economic crisis , Costa Rica enjoyed stable economic growth . RB TO DT JJ JJ NN , NNP NNP VBD JJ JJ NN . The economy contracted 0.7 % in 2009 , but resumed growth at more than 3 % in 2010 . DT NN VBD CD NN IN CD , CC VBD NN IN JJR IN CD NN IN CD . While the traditional agricultural exports of bananas , coffee , sugar , and beef are still the backbone of commodity export trade , a variety of industrial and specialized agricultural products have broadened export trade in recent years . IN DT JJ JJ NNS IN NNS , NN , NN , CC NN VBP RB DT NN IN NN NN NN , DT NN IN JJ CC JJ JJ NNS VBP VBN NN NN IN JJ NNS . High value added goods and services , including microchips , have further bolstered exports . JJ NN JJ NNS CC NNS , VBG NNS , VBP RB VBN NNS . Tourism continues to bring in foreign exchange , as Costa Rica 's impressive biodiversity makes it a key destination for ecotourism . NN VBZ TO VB RP JJ NN , IN NNP NNP POS JJ NN VBZ PRP DT JJ NN IN NN . Foreign investors remain attracted by the country 's political stability and relatively high education levels , as well as the fiscal incentives offered in the free-trade zones ; and Costa Rica has attracted one of the highest levels of foreign direct investment per capita in Latin America . JJ NNS VBP VBN IN DT NN POS JJ NN CC RB JJ NN NNS , RB RB IN DT JJ NNS VBN IN DT JJ NNS ; CC NNP NNP VBZ VBN CD IN DT JJS NNS IN JJ JJ NN IN NN IN NNP NNP . However , many business impediments , such as high levels of bureaucracy , difficulty of enforcing contracts , and weak investor protection , remain . RB , JJ NN NNS , JJ IN JJ NNS IN NN , NN IN VBG NNS , CC JJ NN NN , VBP . Poverty has remained around 15-20 % for nearly 20 years , and the strong social safety net that had been put into place by the government has eroded due to increased financial constraints on government expenditures . NN VBZ VBN IN CD NN IN RB CD NNS , CC DT JJ JJ NN NN WDT VBD VBN VBN IN NN IN DT NN VBZ VBN JJ IN JJ JJ NNS IN NN NNS . Unlike the rest of Central America , Costa Rica is not highly dependent on remittances as they only represent about 2 % of GDP . IN DT NN IN NNP NNP , NNP NNP VBZ RB RB JJ IN NNS IN PRP RB VBP IN CD NN IN NN . Immigration from Nicaragua has increasingly become a concern for the government . NN IN NNP VBZ RB VBN DT NN IN DT NN . The estimated 3,00,000 - 5,00,000 Nicaraguans in Costa Rica legally and illegally are an important source of - mostly unskilled - labor , but also place heavy demands on the social welfare system . DT JJ CD IN CD NNS IN NNP NNP RB CC RB VBP DT JJ NN IN : RB JJ IN NN , CC RB NN JJ NNS IN DT JJ NN NN . The US-Central American-Dominican Republic Free Trade Agreement ( CAFTA-DR ) entered into force on 1 January 2009 , after significant delays within the Costa Rican legislature . DT JJ JJ NNP NNP NNP NNP LRB NNP RRB VBD IN NN IN CD NNP CD , IN JJ NNS IN DT JJ JJ NN . CAFTA-DR will likely lead to increased foreign direct investment in key sectors of the economy , including the insurance and telecommunications sectors recently opened to private investors . NNP MD RB VB IN JJ JJ JJ NN IN JJ NNS IN DT NN , VBG DT NN CC NN NNS RB VBD TO JJ NNS . President CHINCHILLA is likely to push for fiscal reform in the coming year , seeking to boost revenue , possibly through revised tax legislation , to fund an increase in security services and education . NNP NNP VBZ JJ TO VB IN JJ NN IN DT JJ NN , VBG TO VB NN , RB IN VBN NN NN , TO VB DT NN IN NN NNS CC NN . The Mongols gained fame in the 13th century when under Chinggis KHAAN they established a huge Eurasian empire through conquest . DT NNS VBD NN IN DT JJ NN WRB IN NNP NNP PRP VBD DT JJ JJ NN IN NN . After his death the empire was divided into several powerful Mongol states , but these broke apart in the 14th century . IN PRP$ NN DT NN VBD VBN IN JJ JJ JJ NNS , CC DT VBD RB IN DT JJ NN . The Mongols eventually retired to their original steppe homelands and in the late 17th century came under Chinese rule . DT NNS RB VBD TO PRP$ JJ NN NNS CC IN DT JJ JJ NN VBD IN JJ NN . Mongolia won its independence in 1921 with Soviet backing and a Communist regime was installed in 1924 . NNP VBD PRP$ NN IN CD IN JJ NN CC DT JJ NN VBD VBN IN CD . The modern country of Mongolia , however , represents only part of the Mongols ' historical homeland ; more ethnic Mongolians live in the Inner Mongolia Autonomous Region in the People 's Republic of China than in Mongolia . DT JJ NN IN NNP , RB , VBZ RB NN IN DT NNS POS JJ NN ; RBR JJ NNS VBP IN DT NNP NNP NNP NNP IN DT NNP POS NNP IN NNP IN IN NNP . Following a peaceful democratic revolution , the ex-Communist Mongolian People 's Revolutionary Party ( MPRP ) won elections in 1990 and 1992 , but was defeated by the Democratic Union Coalition ( DUC ) in the 1996 parliamentary election . VBG DT JJ JJ NN , DT NN JJ NNP POS NNP NNP LRB NNP RRB VBD NNS IN CD CC CD , CC VBD VBN IN DT NNP NNP NNP LRB NNP RRB IN DT CD JJ NN . The MPRP won an overwhelming majority in the 2000 parliamentary election , but the party lost seats in the 2004 election and shared power with democratic coalition parties from 2004 - 8 . DT NNP VBD DT JJ NN IN DT CD JJ NN , CC DT NN VBD NNS IN DT CD NN CC JJ NN IN JJ NN NNS IN CD IN CD . The MPRP regained a solid majority in the 2008 parliamentary elections but nevertheless formed a coalition government with the Democratic Party . DT NNP VBD DT JJ NN IN DT CD JJ NNS CC RB VBD DT NN NN IN DT NNP NNP . In 2010 the MPRP voted to retake the name of the Mongolian People 's Party ( MPP ) , a name it used in the early 1920s . IN CD DT NNP VBD TO VB DT NN IN DT JJ NNP POS NNP LRB NNP RRB , DT NN PRP VBD IN DT JJ NNS . The prime minister and most cabinet members are MPP members . DT JJ NN CC JJS NN NNS VBP NNP NNS . Senegal relies heavily on donor assistance . NNP VBZ RB IN NN NN . The country 's key export industries are phosphate mining , fertilizer production , and commercial fishing . DT NN POS JJ NN NNS VBP JJ NN , NN NN , CC JJ NN . The country is also working on iron ore and oil exploration projects . DT NN VBZ RB VBG IN NN NN CC NN NN NNS . In January 1994 , Senegal undertook a bold and ambitious economic reform program with the support of the international donor community . IN NNP CD , NNP VBD DT JJ CC JJ JJ NN NN IN DT NN IN DT JJ NN NN . Government price controls and subsidies have been steadily dismantled . NN NN NNS CC NNS VBP VBN RB VBN . After seeing its economy contract by 2.1 % in 1993 , Senegal made an important turnaround , thanks to the reform program , with real growth in GDP averaging over 5 % annually during 1995 - 2007 . IN VBG PRP$ NN NN IN CD NN IN CD , NNP VBD DT JJ NN , NNS TO DT NN NN , IN JJ NN IN NN NN IN CD NN RB IN CD IN CD . Annual inflation had been pushed down to the single digits . JJ NN VBD VBN VBN RB TO DT JJ NNS . The country was adversely affected by the global economic downturn in 2009 and GDP growth fell below 2 % . DT NN VBD RB VBN IN DT JJ JJ NN IN CD CC NN NN VBD IN CD NN . As a member of the West African Economic and Monetary Union ( WAEMU ) , Senegal is working toward greater regional integration with a unified external tariff and a more stable monetary policy . IN DT NN IN DT NNP NNP NNP CC NNP NNP LRB NNP RRB , NNP VBZ VBG IN JJR JJ NN IN DT JJ JJ NN CC DT RBR JJ JJ NN . High unemployment , however , continues to prompt illegal migrants to flee Senegal in search of better job opportunities in Europe . JJ NN , RB , VBZ TO VB JJ NNS TO VB NNP IN NN IN JJR NN NNS IN NNP . Under the IMF 's Highly Indebted Poor Countries ( HIPC ) debt relief program , Senegal benefited from eradication of two-thirds of its bilateral , multilateral , and private-sector debt . IN DT NNP POS NNP NNP NNP NNPS LRB NNP RRB NN NN NN , NNP VBD IN NN IN NNS IN PRP$ NN , JJ , CC JJ NN . In 2007 , Senegal and the IMF agreed to a new , non-disbursing , Policy Support Initiative program which was completed in 2010 . IN CD , NNP CC DT NNP VBD TO DT JJ , JJ , NNP NNP NNP NN WDT VBD VBN IN CD . Senegal received its first disbursement from the $ 540 million Millennium Challenge Account compact it signed in September 2009 for infrastructure and agriculture development . NNP VBD PRP$ JJ NN IN DT $ CD CD NNP NNP NNP NN PRP VBD IN NNP CD IN NN CC NN NN . In 2010 , the Senegalese people protested against frequent power cuts . IN CD , DT JJ NNS VBD IN JJ NN NNS . The government pledged to expand capacity by 2012 and to promote renewable energy but until Senegal has more capacity , more protests are likely and economic activity will be hindered . DT NN VBD TO VB NN IN CD CC TO VB JJ NN CC IN NNP VBZ JJR NN , JJR NNS VBP JJ CC JJ NN MD VB VBN . During the year , bakers protested government price controls on bread . IN DT NN , NNS VBD NN NN NNS IN NN . Foreign investment in Senegal is constrained by Senegal 's business environment , which has slipped in recent years , and by perceptions of corruption . JJ NN IN NNP VBZ VBN IN NNP POS NN NN , WDT VBZ VBN IN JJ NNS , CC IN NNS IN NN . A HART , hard pressed in the chase , hid himself beneath the large leaves of a Vine . DT NN , RB VBN IN DT NN , VBD PRP IN DT JJ NNS IN DT NN . The huntsmen , in their haste , overshot the place of his concealment . DT NNS , IN PRP$ NN , VBD DT NN IN PRP$ NN . Supposing all danger to have passed , the Hart began to nibble the tendrils of the Vine . VBG DT NN TO VB VBN , DT NN VBD TO VB DT NNS IN DT NN . One of the huntsmen , attracted by the rustling of the leaves , looked back , and seeing the Hart , shot an arrow from his bow and struck it . CD IN DT NNS , VBN IN DT NN IN DT NNS , VBD RB , CC VBG DT NN , VBD DT NN IN PRP$ NN CC VBD PRP . The Hart , at the point of death , groaned : DT NN , IN DT NN IN NN , VBD : ' I am rightly served , for I should not have maltreated the Vine that saved me . ' `` PRP VBP RB VBN , IN PRP MD RB VB VBN DT NN WDT VBD PRP . `` A FOWLER caught a Partridge and was about to kill it . DT NN VBD DT NN CC VBD IN TO VB PRP . The Partridge earnestly begged him to spare his life , saying , ' Pray , master , permit me to live and I will entice many Partridges to you in recompense for your mercy to me . ' DT NN RB VBD PRP TO VB PRP$ NN , VBG , `` NNP , NN , VB PRP TO VB CC PRP MD VB JJ NNS TO PRP IN NN IN PRP$ NN TO PRP . `` The Fowler replied , ' I shall now with less scruple take your life , because you are willing to save it at the cost of betraying your friends and relations . ' DT NN VBD , `` PRP MD RB IN JJR NN VB PRP$ NN , IN PRP VBP JJ TO VB PRP IN DT NN IN VBG PRP$ NNS CC NNS . `` A WOMAN possessed a Hen that gave her an egg every day . DT NN VBD DT NN WDT VBD PRP DT NN DT NN . She often pondered how she might obtain two eggs daily instead of one , and at last , to gain her purpose , determined to give the Hen a double allowance of barley . PRP RB VBD WRB PRP MD VB CD NNS RB RB IN CD , CC IN JJ , TO VB PRP$ NN , VBN TO VB DT NN DT JJ NN IN NN . From that day the Hen became fat and sleek , and never once laid another egg . IN DT NN DT NN VBD JJ CC JJ , CC RB RB VBD DT NN . From the past 10 years about 90 % of Ford trucks are still on the road , the other 10 % made it home . IN DT JJ CD NNS IN CD NN IN NN NNS VBP RB IN DT NN , DT JJ CD NN VBD PRP NN . I was signing the receipt for my credit card purchase when the clerk noticed I had never signed my name on the back of the credit card . PRP VBD VBG DT NN IN PRP$ NN NN NN WRB DT NN VBD PRP VBD RB VBN PRP$ NN IN DT NN IN DT NN NN . She informed me that she could not complete the transaction unless the card was signed . PRP VBD PRP IN PRP MD RB VB DT NN IN DT NN VBD VBN . When I asked why , she explained that it was necessary to compare the signature I had just signed on the receipt . WRB PRP VBD WRB , PRP VBD IN PRP VBD JJ TO VB DT NN PRP VBD RB VBN IN DT NN . So I signed the credit card in front of her . IN PRP VBD DT NN NN IN NN IN PRP . She carefully compared the signature to the one I had just signed on the receipt . PRP RB VBD DT NN TO DT CD PRP VBD RB VBN IN DT NN . As luck would have it , they matched . IN NN MD VB PRP , PRP VBD . Witnesses in Somalia say Ethiopia is moving tanks and other reinforcements into the area where Somalia 's Islamists have been battling pro-government troops . NNS IN NNP VBP NNP VBZ VBG NNS CC JJ NNS IN DT NN WRB NNP POS NNS VBP VBN VBG JJ NNS . The International Committee of the Red Cross says dozens of people have been killed and at least 200 wounded during four days of fighting in southern Somalia . DT NNP NNP IN DT NNP NNP VBZ NNS IN NNS VBP VBN VBN CC IN JJS CD VBN IN CD NNS IN VBG IN JJ NNP . The Islamists and the Ethiopian-backed government each claim to have killed hundreds of the other side 's troops U.N. Secretary-General Kofi Annan and the U.N. Security Council denounced the fighting in statements Friday . DT NNPS CC DT JJ NN DT NN TO VB VBN NNS IN DT JJ NN POS NNS NNP NNP NNP NNP CC DT NNP NNP NNP VBD DT NN IN NNS NNP . They urged Somalia 's interim government and Islamists to resume peace talks . PRP VBD NNP POS JJ NN CC NNS TO VB NN NNS . U.S. Secretary of State Condoleezza Rice stressed the importance of bringing East African peacekeepers into Somalia during a meeting with Uganda 's foreign minister , Sam Kutesa , Friday . NNP NNP IN NNP NNP NNP VBD DT NN IN VBG JJ JJ NNS IN NNP IN DT NN IN NNP POS JJ NN , NNP NNP , NNP . Uganda is the only country so far to agree to take part in the force . NNP VBZ DT JJ NN RB RB TO VB TO VB NN IN DT NN . The United Nations has passed a resolution supporting the proposed force . DT NNP NNP VBZ VBN DT NN VBG DT VBN NN . However , Somalia 's Islamists have denounced the measure and vowed to fight any foreign troops . RB , NNP POS NNS VBP VBN DT NN CC VBD TO VB DT JJ NNS . Islamist forces have seized much of southern and central Somalia since taking control of the capital , Mogadishu , in June . JJ NNS VBP VBN NN IN JJ CC JJ NNP IN VBG NN IN DT NN , NNP , IN NNP . This week 's fighting has taken place near the interim government 's headquarters in Baidoa . DT NN POS NN VBZ VBN NN IN DT JJ NN POS NN IN NNP . Somalia 's government has little power outside the town . NNP POS NN VBZ JJ NN IN DT NN . Islamist leaders had threatened to attack Ethiopian troops this week if they did not leave Somali territory . NNP NNS VBD VBN TO VB JJ NNS DT NN IN PRP VBD RB VB JJ NN . Ethiopia has an undetermined number of soldiers in Somalia to assist the interim government . NNP VBZ DT JJ NN IN NNS IN NNP TO VB DT JJ NN . Palestinian witnesses say an Israeli missile strike has killed at least two men traveling in a car in northern Gaza Strip . JJ NNS VBP DT JJ NN NN VBZ VBN IN JJS CD NNS VBG IN DT NN IN JJ NNP NNP . Witnesses said the men belonged to the militant group Islamic Jihad , adding the attack Monday seriously wounded a third militant traveling with them . NNS VBD DT NNS VBN TO DT JJ NN NNP NNP , VBG DT NN NNP RB VBD DT JJ NN VBG IN PRP . Israeli military officials said the target of the attack was a senior Islamic Jihad member . JJ NN NNS VBD DT NN IN DT NN VBD DT JJ JJ NN NN . Earlier , Palestinian President Mahmoud Abbas warned he may delay parliamentary elections set for this month if Israel blocks voting in East Jerusalem . RB , JJ NNP NNP NNP VBD PRP MD VB JJ NNS VBN IN DT NN IN NNP NNS VBG IN NNP NNP . Mr. Abbas has been under intense pressure to postpone the January 25 vote , especially from members of his own Fatah party . NNP NNP VBZ VBN IN JJ NN TO VB DT NNP CD NN , RB IN NNS IN PRP$ JJ NNP NN . Last month , Israeli officials said they may block voting in East Jerusalem if candidates from the Hamas militant group are allowed to take part in the balloting . JJ NN , JJ NNS VBD PRP MD VB VBG IN NNP NNP IN NNS IN DT NNP JJ NN VBP VBN TO VB NN IN DT NN . NATO officials in Afghanistan say insurgents have killed a coalition soldier in the southern part of the country . NNP NNS IN NNP VBP NNS VBP VBN DT NN NN IN DT JJ NN IN DT NN . A statement says the soldier was killed Sunday in Helmand province . DT NN VBZ DT NN VBD VBN NNP IN NNP NN . NATO did not provide details about the clash or give the soldier 's nationality . NNP VBD RB VB NNS IN DT NN CC VB DT NN POS NN . The statement said that in another incident , a soldier and six Afghan troops were wounded when mortars hit their base in neighboring Kandahar province early Sunday . DT NN VBD IN IN DT NN , DT NN CC CD JJ NNS VBD VBN WRB NNS VBP PRP$ NN IN JJ NNP NN JJ NNP . On Saturday , the head of the U.S. Central Command , General John Abizaid , said Taleban insurgents are still using neighboring Pakistan as a base for infiltration . IN NNP , DT NN IN DT NNP NNP NNP , NNP NNP NNP , VBD NNP NNS VBP RB VBG JJ NNP IN DT NN IN NN . But he completely rejected any suggestion that Islamabad is conspiring with the rebels . CC PRP RB VBD DT NN IN NNP VBZ VBG IN DT NNS . General Abizaid made the remarks during a brief visit to the main U.S. military base at Bagram north of the Afghan capital , Kabul , to asses operations . NNP NNP VBD DT NNS IN DT JJ NN TO DT JJ NNP JJ NN IN NNP NN IN DT JJ NN , NNP , TO VB NNS . A top Russian official says Moscow remains deeply concerned about U.S. plans for a missile defense system that Washington wants to deploy in central Europe . DT JJ JJ NN VBZ NNP VBZ RB JJ IN NNP NNS IN DT NN NN NN WDT NNP VBZ TO VB IN JJ NNP . Russian National Security Council chief Igor Ivanov said Tuesday he is not optimistic that the United States will address Russian concerns Thursday at a NATO-Russia Council meeting in Brussels . JJ NNP NNP NNP NN NNP NNP VBD NNP PRP VBZ RB JJ IN DT NNP NNPS MD VB JJ NNS NNP IN DT NNP NNP NN IN NNP . Ivanov 's skepticism contrasted sharply with that of senior U.S. envoy John Rood , who is in Moscow for talks on the controversial system . NNP POS NN VBD RB IN DT IN JJ NNP NN NNP NNP , WP VBZ IN NNP IN NNS IN DT JJ NN . Rood said today he believes progress had been made and that further talks will resolve the dispute . NNP VBD NN PRP VBZ NN VBD VBN VBN CC IN JJ NNS MD VB DT NN . Last month , Moscow warned that the U.S. missile shield Washington wants to deploy in Poland and the Czech Republic could start a new European arms race . JJ NN , NNP VBD IN DT NNP NN NN NNP VBZ TO VB IN NNP CC DT JJ NNP MD VB DT JJ JJ NNS NN . U.S. officials insist the shield is aimed at preventing attacks from what it calls rogue states like Iran and North Korea . NNP NNS VBP DT NN VBZ VBN IN VBG NNS IN WP PRP VBZ NN NNS IN NNP CC NNP NNP . A published report says all 425 domestic U.S. military bases are under review as the Defense Department considers a new round of base closures . DT JJ NN VBZ DT CD JJ NNP JJ NNS VBP IN NN IN DT NNP NNP VBZ DT JJ NN IN NN NNS . The New York Times reported Sunday that after more than two years of study , Pentagon analysts are putting the final touches on a list of recommendations to submit to Defense Secretary Donald Rumsfeld . DT NNP NNP NNP VBD NNP IN IN JJR IN CD NNS IN NN , NNP NNS VBP VBG DT JJ NNS IN DT NN IN NNS TO VB TO NNP NNP NNP NNP . In previous rounds , the Pentagon eliminated 97 bases and closed hundreds of smaller facilities , saving tens of billions of dollars . IN JJ NNS , DT NNP VBD CD NNS CC VBD NNS IN JJR NNS , VBG NNS IN NNS IN NNS . Military officials say the old Cold War network of defense facilities still has too much capacity for modern needs . JJ NNS VBP DT JJ NNP NNP NN IN NN NNS RB VBZ RB JJ NN IN JJ NNS . Mr. Rumsfeld is to give his list of proposed base closings to an independent commission for review in May . NNP NNP VBZ TO VB PRP$ NN IN VBN NN NNS TO DT JJ NN IN NN IN NNP . The newspaper reported that by early November , President Bush and Congress must accept or reject a final list submitted by the commission . DT NN VBD IN IN JJ NNP , NNP NNP CC NNP MD VB CC VB DT JJ NN VBN IN DT NN . An Afghan court has sentenced a women 's magazine editor to two years in prison for publishing anti-Islamic articles . DT JJ NN VBZ VBN DT NNS POS NN NN TO CD NNS IN NN IN VBG JJ NNS . Ali Mohaqiq Nasab was arrested on October 1 after his magazine , Haqooq-i-Zan , ( Women 's Rights ) argued that giving up Islam was not a crime that should be punished by death , as sanctioned by some interpretations of Islamic Sharia law . NNP NNP NNP VBD VBN IN NNP CD IN PRP$ NN , NNP , LRB NNP POS NNP RRB VBD IN VBG RP NNP VBD RB DT NN WDT MD VB VBN IN NN , IN VBN IN DT NNS IN NNP NNP NN . Other articles criticized the practice of punishing adultery with 100 lashes and argued that men and women should be considered as equals under Islamic law . JJ NNS VBD DT NN IN VBG NN IN CD NNS CC VBD IN NNS CC NNS MD VB VBN IN NNS IN NNP NN . On Saturday , Kabul 's Primary Court convicted Mohaqiq of blasphemy . IN NNP , NNP POS NNP NNP VBD NNP IN NN . The case was condemned by a number of Afghan and international media rights groups . DT NN VBD VBN IN DT NN IN JJ CC JJ NNS NNS NNS . Under a revised March 2004 media law , content deemed insulting to Islam is banned in Afghanistan . IN DT VBN NNP CD NNS NN , NN VBD VBG TO NNP VBZ VBN IN NNP . This is the annual World AIDS Day and the focus this year is women and girls living with the disease . DT VBZ DT JJ NNP NNP NNP CC DT NN DT NN VBZ NNS CC NNS VBG IN DT NN . In Geneva , the World Health Organization marked Wednesday by urging that nations take steps to ensure women and girls are given better access to AIDS prevention and treatment services . IN NNP , DT NNP NNP NNP VBD NNP IN VBG DT NNS VBP NNS TO VB NNS CC NNS VBP VBN JJR NN TO NNP NN CC NN NNS . The agency said 47 percent of those infected with the AIDS virus around the globe are female . DT NN VBD CD NN IN DT VBN IN DT NNP NN IN DT NN VBP JJ . The International Red Cross and Red Crescent Societies joined with other organizations in calling for improved responses to HIV - AIDS around the world . DT NNP NNP NNP CC NNP NNP NNPS VBD IN JJ NNS IN VBG IN JJ NNS TO NNP : NNP IN DT NN . Human Rights Watch urged countries to drop restrictions on information about condoms , which the U.S.-based organization says remain the single most effective device against sexually transmitted HIV . NNP NNP NNP VBD NNS TO VB NNS IN NN IN NNS , WDT DT JJ NN VBZ VB DT JJ RBS JJ NN IN RB JJ NNP . World AIDS Day is held each year to raise awareness of HIV - AIDS , which affects tens of millions of people . NNP NNP NNP VBZ VBN DT NN TO VB NN IN NNP IN NNP , WDT VBZ NNS IN NNS IN NNS . A Bosnian Serb officer indicted for his role in the 1995 Srebrenica massacre is flying to the Netherlands to surrender to the Hague war crimes tribunal . DT JJ JJ NN VBD IN PRP$ NN IN DT CD NNP NN VBZ VBG TO DT NNP TO VB TO DT NNP NN NNS JJ . Colonel Vujadin Popovic left Belgrade Thursday to face such charges as genocide and crimes against humanity . NNP NNP NNP VBD NNP NNP TO VB JJ NNS IN NN CC NNS IN NN . The charges focus on his role in the deaths of about eight thousand Muslim men and boys after Serb forces in Bosnia-Herzegovina captured the Muslim enclave of Srebrenica in 1995 . DT NNS VBP IN PRP$ NN IN DT NNS IN IN CD CD NNP NNS CC NNS IN JJ NNS IN NNP VBD DT NNP NN IN NNP IN CD . Meanwhile , the tribunal ordered the release , pending trial , of former Serbian President Milan Milutinovic , former Yugoslav Deputy Prime Minister Nikola Sainovic , General Dragoljub Ojdanic and General Vladimir Lazarevic . RB , DT NN VBD DT NN , VBG NN , IN JJ JJ NNP NNP NNP , JJ JJ NNP NNP NNP NNP NNP , NNP NNP NNP CC NNP NNP NNP . All four have been indicted in connection with repression against ethnic Albanians in Kosovo . DT CD VBP VBN VBN IN NN IN NN IN JJ NNS IN NNP . However , the court stayed the release of all but General Lazarevic to give prosecutors time to appeal the order . RB , DT NN VBD DT NN IN DT CC NNP NNP TO VB NNS NN TO VB DT NN . The leader of Sudan 's main southern rebel group has called on the government to apply a recently signed north-south peace deal to the separate conflict in Sudan 's western Darfur region . DT NN IN NNP POS JJ JJ NN NN VBZ VBN IN DT NN TO VB DT RB VBN JJ NN NN TO DT JJ NN IN NNP POS JJ NNP NN . John Garang said Saturday that the Darfur crisis can only be solved through dialogue . NNP NNP VBD NNP IN DT NNP NN MD RB VB VBN IN NN . He spoke on the sidelines of a federalism conference in Brussels PRP VBD IN DT NNS IN DT NN NN IN NNP Mr. Garang 's Sudan People 's Liberation Army ( SPLA ) signed a peace agreement with the government in January . NNP NNP POS NNP NNP POS NNP NNP LRB NNP RRB VBD DT NN NN IN DT NN IN NNP . The deal gives the south greater autonomy and the opportunity to vote on secession in six years . DT NN VBZ DT RB JJR NN CC DT NN TO VB IN NN IN CD NNS . Mr. Garang said he is sending about 70 SPLA representatives to the capital , Khartoum , in the first phase of implementing the peace deal . NNP NNP VBD PRP VBZ VBG IN CD NNP NNS TO DT NN , NNP , IN DT JJ NN IN VBG DT NN NN . A top U.S. official has warned against Brazil imposing sanctions on the United States in a dispute over cotton subsidies . DT JJ NNP NN VBZ VBN IN NNP VBG NNS IN DT NNP NNPS IN DT NN IN NN NNS . Deputy Secretary of State Robert Zoellick said in Brazil Thursday that there is always a danger in trade relations of things slipping out of control if one side decides to retaliate . NNP NNP IN NNP NNP NNP VBD IN NNP NNP IN EX VBZ RB DT NN IN NN NNS IN NNS VBG IN IN NN IN CD NN VBZ TO VB . He said the United States is working to resolve the dispute . PRP VBD DT NNP NNPS VBZ VBG TO VB DT NN . Earlier , Brazil asked the World Trade Organization for permission to impose $ 1 billion in sanctions on U.S. goods for the United States failing to comply with a WTO decision that calls for steep cuts in subsidies for U.S. cotton producers . RB , NNP VBD DT NNP NNP NNP IN NN TO VB $ CD CD IN NNS IN NNP NNS IN DT NNP NNPS VBG TO VB IN DT NNP NN WDT VBZ IN JJ NNS IN NNS IN NNP NN NNS . The request is to be discussed at a WTO meeting later this month . DT NN VBZ TO VB VBN IN DT NNP NN RB DT NN . The WTO ruled in March the subsidies must be changed to comply with global trade rules . DT NNP VBD IN NNP DT NNS MD VB VBN TO VB IN JJ NN NNS . Brazil says the subsidies artificially drive down world prices and hurt Brazilian producers . NNP VBZ DT NNS RB VBP RP NN NNS CC VBN JJ NNS . Italy 's government says an Italian journalist kidnapped in Afghanistan several days ago is still alive . NNP POS NN VBZ DT JJ NN VBN IN NNP JJ NNS RB VBZ RB JJ . A Foreign Ministry statement Saturday said officials have reason to believe missing journalist Daniele Mastrogiacomo is alive , but it did not offer details . DT NNP NNP NN NNP VBD NNS VBP NN TO VB JJ NN NNP NNP VBZ JJ , CC PRP VBD RB VB NNS . Italian officials had previously demanded that the Taleban provide proof that Mastrogiacomo had not been killed before any negotiations could begin . JJ NNS VBD RB VBN IN DT NNP VB NN IN NNP VBD RB VBN VBN IN DT NNS MD VB . The Taleban says it captured Mastrogiacomo in Helmand province on Monday . DT NNP VBZ PRP VBD NNP IN NNP NN IN NNP . Insurgents say the reporter has confessed to being a spy . NNS VBP DT NN VBZ VBN TO VBG DT NN . The journalist 's newspaper , La Repubblica , has categorically denied the charge . DT NN POS NN , NNP NNP , VBZ RB VBN DT NN . Earlier in the week , Italy 's lower house of parliament voted in favor of keeping the country 's military contingent in Afghanistan . RBR IN DT NN , NNP POS JJR NN IN NN VBD IN NN IN VBG DT NN POS JJ JJ IN NNP . The lower house Thursday approved a measure that refinances the mission . DT JJR NN NNP VBD DT NN WDT VBZ DT NN . It now goes to the Senate for final approval . PRP RB VBZ TO DT NNP IN JJ NN . The government has 1,800 troops in Afghanistan as part of a NATO force . DT NN VBZ CD NNS IN NNP IN NN IN DT NNP NN . Pakistan says up to 40 militants were killed during Wednesday 's fighting with security forces in the North Waziristan tribal region , not 16 as reported earlier . NNP VBZ RP TO CD NNS VBD VBN IN NNP POS NN IN NN NNS IN DT NNP NNP JJ NN , RB CD IN VBN RBR . Troops backed by helicopter gunships attacked militant hideouts near the Afghan border after a rebel rocket attack killed four soldiers . NNS VBN IN NN NNS VBD NN NNS IN DT JJ NN IN DT NN NN NN VBD CD NNS . A military spokesman , Major General Shaukat Sultan , said some 19 pro-Taleban militants were captured during the operation . DT JJ NN , NNP NNP NNP NNP , VBD DT CD JJ NNS VBD VBN IN DT NN . Pakistan 's President Pervez Musharraf has warned foreign militants using the Waziristan region as a hideout to leave or be killed . NNP POS NNP NNP NNP VBZ VBN JJ NNS VBG DT NNP NN IN DT NN TO VB CC VB VBN . He has also promised extra development funds for the region if local tribes stop harboring foreign militants . PRP VBZ RB VBN JJ NN NNS IN DT NN IN JJ NNS VBP VBG JJ NNS . Last month , Pakistani security forces killed about 200 militants and their local supporters in North Waziristan in a campaign to rid the area of insurgents . JJ NN , JJ NN NNS VBN IN CD NNS CC PRP$ JJ NNS IN NNP NNP IN DT NN TO VB DT NN IN NNS . Russia 's security service says it has prevented major terrorist attacks after finding a truck packed with a ton of explosives , and a cache of poison . NNP POS NN NN VBZ PRP VBZ VBN JJ JJ NNS IN VBG DT NN VBN IN DT NN IN NNS , CC DT NN IN NN . A federal forces spokesman says authorities detained two men after stopping the truck near Grozny . DT JJ NNS NN VBZ NNS VBD CD NNS IN VBG DT NN IN NNP . The Interfax news agency quotes him as saying the vehicle was fully prepared for an explosion . DT NNP NN NN VBZ PRP IN VBG DT NN VBD RB VBN IN DT NN . All one needed was a suicide attacker to switch on a detonator . DT CD VBN VBD DT NN NN TO VB IN DT NN . The Federal Security Service also reports discovery of a cache of a cyanide-based substance in the North Caucasus that officials say was to be used for a chemical attack . DT NNP NNP NNP RB VBZ NN IN DT NN IN DT JJ NN IN DT NNP NNP IN NNS VBP VBD TO VB VBN IN DT NN NN . Security in Russia is extremely tight ahead of the arrival of world leaders for ceremonies Monday marking the 60th anniversary of the end of World War II in Europe . NNP IN NNP VBZ RB JJ RB IN DT NN IN NN NNS IN NNS NNP VBG DT JJ NN IN DT NN IN NNP NNP NNP IN NNP . Monday is also the first anniversary of the assassination of Kremlin-backed Chechen President Akhmad Kadyrov in Grozny . NNP VBZ RB DT JJ NN IN DT NN IN JJ JJ NNP NNP NNP IN NNP . A Mexican court has refused to issue an arrest warrant for former President Luis Echeverria and seven others for the 1968 massacre of student protesters . DT JJ NN VBZ VBN TO VB DT NN NN IN JJ NNP NNP NNP CC CD NNS IN DT CD NN IN NN NNS . The ruling came late Wednesday and is the latest setback in the effort by President Vicente Fox 's government to prosecute past government atrocities . DT NN VBD JJ NNP CC VBZ DT JJS NN IN DT NN IN NNP NNP NNP POS NN TO VB JJ NN NNS . On Monday , federal prosecutors filed charges of genocide against Mr. Echeverria in connection with the 1968 incident in which soldiers and police fired on student protesters , killing as many as 30 . IN NNP , JJ NNS VBD NNS IN NN IN NNP NNP IN NN IN DT CD NN IN WDT NNS CC NNS VBD IN NN NNS , VBG RB JJ IN CD . Mr. Echeverria was Mexico 's interior minister at the time . NNP NNP VBD NNP POS JJ NN IN DT NN . Other judges in July dismissed genocide charges against Mr. Echeverria related to the 1971 killings of student protesters when he was Mexico 's president . JJ NNS IN NNP VBD NN NNS IN NNP NNP VBD TO DT CD NNS IN NN NNS WRB PRP VBD NNP POS NN . U.S. Secretary of State Hillary Clinton has said she will not serve a full eight years in her position if President Barack Obama is elected to a second term . NNP NNP IN NNP NNP NNP VBZ VBN PRP MD RB VB DT JJ CD NNS IN PRP$ NN IN NNP NNP NNP VBZ VBN TO DT JJ NN . In a nationally televised interview with PBS television 's Tavis Smiley Wednesday , Clinton she could not imagine serving a full eight years . IN DT RB VBN NN IN NNP NN POS NNP NNP NNP , NNP PRP MD RB VB VBG DT JJ CD NNS . She told her interviewer that , considering the demands of the job , she would find that extremely challenging . PRP VBD PRP$ NN IN , VBG DT NNS IN DT NN , PRP MD VB DT RB JJ . Clinton - who had been a candidate for president in 2008 - also ruled out a second presidential run . NNP : WP VBD VBN DT NN IN NN IN CD : RB VBD RP DT JJ JJ NN . She had said previously she would also not seek re-election to the New York Senate seat she held until 2009 when she took her current position . PRP VBD VBN RB PRP MD RB RB VB NN TO DT NNP NNP NNP NN PRP VBD IN CD WRB PRP VBD PRP$ JJ NN . She indicated she would like to return to private life Clinton had been first lady of the United States while her husband , Bill Clinton served as U.S. President from 1992 to 2000 . PRP VBD PRP MD VB TO VB TO JJ NN NNP VBD VBN JJ NN IN DT NNP NNPS IN PRP$ NN , NNP NNP VBD IN NNP NNP IN CD TO CD . Human rights group Amnesty International has criticized Eritrea over a mass arrest last week of thousands of youths suspected of evading military conscription . JJ NNS NN NNP NNP VBZ VBN NNP IN DT NN NN JJ NN IN NNS IN NNS VBN IN VBG JJ NN . The London-based group says the detainees are being held at the Adi Abeto army prison near Asmara , where they are at risk of torture and mistreatment . DT JJ NN VBZ DT NNS VBP VBG VBN IN DT NNP NNP NN NN IN NNP , WRB PRP VBP IN NN IN NN CC NN . It says Eritrean security forces indiscriminately arrested suspects at their homes , shops , offices and road blocks last Thursday . PRP VBZ JJ NN NNS RB VBN NNS IN PRP$ NNS , NNS , NNS CC NN NNS JJ NNP . Amnesty also accused Eritrean prison officials of opening fire on detainees at the Adi Abeto prison during an apparent escape attempt following the arrests . NNP RB VBD JJ NN NNS IN VBG NN IN NNS IN DT NNP NNP NN IN DT JJ NN NN VBG DT NNS . The country 's Minister of Information says two detainees were crushed by a wall that collapsed during the escape attempt . DT NN POS NNP IN NNP VBZ CD NNS VBD VBN IN DT NN WDT VBD IN DT NN NN . But Amnesty International cites sources as saying as many as 12 people were shot and killed by security forces . CC NNP NNP VBZ NNS IN VBG RB JJ IN CD NNS VBD VBN CC VBN IN NN NNS . Chinese President Hu Jintao has called on major economies to ensure trade and energy stability in order to promote a balanced world economy . JJ NNP NNP NNP VBZ VBN IN JJ NNS TO VB NN CC NN NN IN NN TO VB DT JJ NN NN . Mr. Hu spoke Saturday in Beijing , where he opened the start of a two-day meeting of top finance officials from 20 countries . NNP NNP VBD NNP IN NNP , WRB PRP VBD DT NN IN DT JJ NN IN JJ NN NNS IN CD NNS . He urged countries to create a ' sound trading environment for economic growth . ' PRP VBD NNS TO VB DT `` JJ NN NN IN JJ NN . `` He also said major powers should make concerted efforts to stabilize the global energy market . PRP RB VBD JJ NNS MD VB JJ NNS TO VB DT JJ NN NN . The so-called Group of 20 is made up of larger developing countries and rich nations , including the United States . DT JJ NNP IN CD VBZ VBN IN IN JJR VBG NNS CC JJ NNS , VBG DT NNP NNPS . The meeting is being held at a time of trade tensions between Beijing and Washington . DT NN VBZ VBG VBN IN DT NN IN NN NNS IN NNP CC NNP . Some critics accuse China of manipulating its currency to give Chinese exports an unfair price advantage on world markets . DT NNS VBP NNP IN VBG PRP$ NN TO VB JJ NNS DT JJ NN NN IN NN NNS . Iraqi police say a car bomb in central Baghdad has killed at least 21 people and wounded 66 others . JJ NNS VBP DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN CD NNS . The blast damaged the Abdel Qadir Gilani Mosque , one of Baghdad 's most revered Sunni shrines . DT NN VBD DT NNP NNP NNP NNP , CD IN NNP POS JJS JJ NNP NNS . The explosion also damaged several buildings and cars in the Sinak area of the capital . DT NN RB VBD JJ NNS CC NNS IN DT NNP NN IN DT NN . Another car bomb killed at least two people Monday in Baghdad 's Bab al-Muadham area . DT NN NN VBD IN JJS CD NNS NNP IN NNP POS NNP NNP NN . In Iraq Sunday , U.S. military troops rescued 42 Iraqis from an al-Qaida prison camp north of Baghdad . IN NNP NNP , NNP JJ NNS VBD CD NNS IN DT NNP NN NN NN IN NNP . Military officials say some of the freed captives showed signs of torture and mistreatment . JJ NNS VBP DT IN DT VBN NNS VBD NNS IN NN CC NN . President Bush meets at the White House Tuesday with Massoud Barzani , the president of Iraq 's Kurdish region . NNP NNP VBZ IN DT NNP NNP NNP IN NNP NNP , DT NN IN NNP POS JJ NN . The two men are scheduled to speak to reporters after their meeting . DT CD NNS VBP VBN TO VB TO NNS IN PRP$ NN . A White House spokesman praised Mr. Barzani Tuesday as a leader committed to building a free and democratic Iraq . DT NNP NNP NN VBD NNP NNP NNP IN DT NN VBN TO VBG DT JJ CC JJ NNP . Mr. Barzani , who is a former Kurdish rebel leader , was elected regional president by Kurdish lawmakers in June . NNP NNP , WP VBZ DT JJ NNP NN NN , VBD VBN JJ NN IN NNP NNS IN NNP . He has pledged to strengthen Iraqi national unity , and he took part in negotiations on Iraq 's new constitution . PRP VBZ VBN TO VB JJ JJ NN , CC PRP VBD NN IN NNS IN NNP POS JJ NN . Kurds in northern Iraq have enjoyed relative autonomy since the Persian Gulf War of 1991 . NNS IN JJ NNP VBP VBN JJ NN IN DT NNP NNP NNP IN CD . The Philippines is again calling on its citizens to avoid traveling to Iraq for work . DT NNPS VBZ RB VBG IN PRP$ NNS TO VB VBG TO NNP IN NN . Noting that two Filipinos were recently wounded during attacks on U.S. military bases in Iraq , a presidential spokesman said Tuesday that Manila has no plans to lift its ban on allowing Philippine workers into Iraq until there is peace and stability . VBG IN CD NNS VBD RB VBN IN NNS IN NNP JJ NNS IN NNP , DT JJ NN VBD NNP IN NNP VBZ DT NNS TO VB PRP$ NN IN VBG JJ NNS IN NNP IN EX VBZ NN CC NN . The Associated Press also reports that Philippine Foreign Undersecretary Jose Brillantes urged the estimated 6,000 Filipinos now working across the Middle East to take precautions against possible attacks in the region . DT NNP NNP RB VBZ IN JJ NNP NNP NNP NNP VBD DT VBN CD NNS RB VBG IN DT NNP NNP TO VB NNS IN JJ NNS IN DT NN . His comments follow Monday 's terror attack on the U.S. consulate in the Saudi Arabian city of Jeddah , in which five non-American consulate workers were killed , including a Philippine national . PRP$ NNS VBP NNP POS NN NN IN DT NNP NN IN DT JJ JJ NN IN NNP , IN WDT CD JJ NN NNS VBD VBN , VBG DT JJ NN . Air France says its flight schedule is returning to normal Tuesday after flight staff called off their five-day strike over pay and working conditions . NNP NNP VBZ PRP$ NN NN VBZ VBG TO JJ NNP IN NN NN VBD RP PRP$ JJ NN IN NN CC VBG NNS . Air France says it plans to operate all long-haul flights from Paris and 90 percent of its short and medium-haul routes . NNP NNP VBZ PRP VBZ TO VB DT JJ NNS IN NNP CC CD NN IN PRP$ JJ CC JJ NNS . Labor unions representing cabin crews voted Monday to end the walkout . NNP NNS VBG NN NNS VBD NNP TO VB DT NN . Air France flight attendants began the work stoppage last Thursday on the eve of French school holidays . NNP NNP NN NNS VBD DT NN NN JJ NNP IN DT NN IN JJ NN NNS . Hundreds of flights were canceled , stranding thousands of travelers . NNS IN NNS VBD VBN , VBG NNS IN NNS . Air France chief executive Jean-Cyril Spinetta has offered to hold immediate negotiations with the labor unions to avert further strike action . NNP NNP NN NN NNP NNP VBZ VBN TO VB JJ NNS IN DT NN NNS TO VB JJ NN NN . More than 20,000 people have rallied in Pakistan 's largest city , Karachi , to protest cartoons of the Prophet Muhammad . JJR IN CD NNS VBP VBN IN NNP POS JJS NN , NNP , TO VB NNS IN DT NNP NNP . Shouting anti-American and anti-European slogans , the demonstrators marched through the city on Sunday to denounce the cartoons , first published in Denmark . VBG JJ CC JJ NNS , DT NNS VBD IN DT NN IN NNP TO VB DT NNS , RB VBN IN NNP . Earlier , in the eastern city of Lahore , police fired teargas to put a stop to a rally organized by the six-party Muttahida Majlis-e-Amal alliance . RB , IN DT JJ NN IN NNP , NN VBD NNS TO VB DT NN TO DT NN VBN IN DT JJ NNP NNP NN . Police arrested the head of the alliance , Qazi Hussain Ahmed , and dozens of others including cricketer-turned-politician Imran Khan . NNS VBN DT NN IN DT NN , NNP NNP NNP , CC NNS IN NNS VBG JJ NNP NNP . Protests have been banned in Lahore , where two people died in earlier unrest . NNS VBP VBN VBN IN NNP , WRB CD NNS VBD IN JJR NN . Radical Islamic leaders said they would defy the ban and stage more protests . JJ JJ NNS VBD PRP MD VB DT NN CC NN JJR NNS . Demonstrations have been scheduled for Friday , the day before President Bush is due to visit Islamabad on his South Asia trip . NNS VBP VBN VBN IN NNP , DT NN IN NNP NNP VBZ JJ TO VB NNP IN PRP$ NNP NNP NN . Italy has taken over control of the NATO-led peacekeeping force in Afghanistan for the next six months from a Turkish commander . NNP VBZ VBN RP NN IN DT JJ NN NN IN NNP IN DT JJ CD NNS IN DT JJ NN . Italian Lieutenant-General Mauro Del Vechchio assumed command of the 8,000-strong International Security Assistance Force ( ISAF ) from Turkish Lieutenant-General Ethem Erdagi in Thursday ceremony in Kabul . JJ JJ NNP NNP NNP VBD NN IN DT JJ NNP NNP NNP NNP LRB NNP RRB IN JJ NNP NNP NNP IN NNP NN IN NNP . The commander of NATO forces in Northern Europe , General Gerhard Back , said ISAF will be ready to assume responsibility for security across all of Afghanistan by the end of next year . DT NN IN NNP NNS IN NNP NNP , NNP NNP NNP , VBD NNP MD VB JJ TO VB NN IN NN IN DT IN NNP IN DT NN IN JJ NN . ISAF already maintains security in Kabul and the country 's north and west . NNP RB VBZ NN IN NNP CC DT NN POS NN CC NN . It plans to increase its size and take over from the U.S.-led coalition in the volatile south early next year , before gradually moving into the east . PRP VBZ TO VB PRP$ NN CC VB RP IN DT JJ NN IN DT JJ NN RB JJ NN , IN RB VBG IN DT NN . NATO peacekeepers will also provide security for the Afghan parliamentary elections scheduled for September 18 . NNP NNS MD RB VB NN IN DT JJ JJ NNS VBN IN NNP CD . For more than 20 years , researchers have gone hunting with sharks and stalking prey with tigers from in front of their television monitors . IN JJR IN CD NNS , NNS VBP VBN NN IN NNS CC VBG NN IN NNS IN IN NN IN PRP$ NN NNS . National Geographic researchers have an ' animal eye view ' of the world through a video camera built to be attached to living things . NNP NNP NNS VBP DT `` NN NN NN `` IN DT NN IN DT NN NN VBN TO VB VBN TO VBG NNS . ' Crittercam , ' as they call it , has been mounted to animals of over 40 different species . `` NNP , `` IN PRP VBP PRP , VBZ VBN VBN TO NNS IN IN CD JJ NNS . Its creator recently sat down with VOA 's Paul Sisco . PRP$ NN RB VBD RP IN NNP POS NNP NNP . A powerful typhoon is approaching a group of islands in the Pacific Ocean south of Tokyo , and officials are warning of heavy rains , strong winds and high waves in the region . DT JJ NN VBZ VBG DT NN IN NNS IN DT NNP NNP NN IN NNP , CC NNS VBP VBG IN JJ NNS , JJ NNS CC JJ NNS IN DT NN . Typhoon Saola 's winds are blowing at more than 140 kilometers per hour . NNP NNP POS NNS VBP VBG IN JJR IN CD NNS IN NN . The storm was just off Hachijo Island , 300 kilometers south of Tokyo , Saturday afternoon , and heading north . DT NN VBD RB RB NNP NNP , CD NNS RB IN NNP , NNP NN , CC VBG RB . Japan 's Meteorological Agency says heavy rains will hit Tokyo later Saturday and Sunday as the typhoon passes just east of the city . NNP POS NNP NNP VBZ JJ NNS MD VB NNP RB NNP CC NNP IN DT NN VBZ RB NN IN DT NN . On average , two to three typhoons hit Japan 's main islands each year . IN NN , CD CC CD NNS VBD NNP POS JJ NNS DT NN . Typhoon Nabi , which ripped through western Japan earlier this month , killed more than 20 people . NNP NNP , WDT VBD IN JJ NNP RBR DT NN , VBD JJR IN CD NNS . Pakistani officials say unknown gunmen have opened fire on a bus carrying the Sri Lankan cricket team , killing at least five police officers and wounding six Sri Lankan players . JJ NNS VBP JJ NNS VBP VBN NN IN DT NN VBG DT NNP NNP NN NN , VBG IN JJS CD NNS NNS CC VBG CD NNP NNP NNS . Lahore police chief Habibur Rehman said at least 12 gunmen attacked the convoy near Lahore 's Gaddafi stadium Tuesday with rockets , hand grenades and automatic weapons . NNP NN NN NNP NNP VBD IN JJS CD NNS VBD DT NN IN NNP POS NNP NN NNP IN NNS , NN NNS CC JJ NNS . He called it a terrorist attack . PRP VBD PRP DT JJ NN . Pakistan TV showed footage of gunmen running through the streets and firing on vehicles . NNP NNP VBD NN IN NNS VBG IN DT NNS CC VBG IN NNS . Sri Lanka 's sports minister say at least five players and an assistant coach received minor injuries in the attack , including Kumar Sangakkara , Thilan Samaraweera and Tharanga Paranavithana . NNP NNP POS NNS NN VBP IN JJS CD NNS CC DT JJ NN VBD JJ NNS IN DT NN , VBG NNP NNP , NNP NNP CC NNP NNP . Security concerns have plagued Pakistan for many years , and some foreign sports teams have refused to play in the country . NN NNS VBP VBN NNP IN JJ NNS , CC DT JJ NNS NNS VBP VBN TO VB IN DT NN . U.S. Vice President Dick Cheney has criticized Senate Democrats who have accused the Bush administration of purposely misleading the American public on intelligence leading up to the war in Iraq . NNP NNP NNP NNP NNP VBZ VBN NNP NNPS WP VBP VBN DT NNP NN IN RB VBG DT JJ NN IN NN VBG RP TO DT NN IN NNP . In a speech near Washington Wednesday , Mr. Cheney called allegations the White House manipulated intelligence to make the case for war ' reprehensible . ' IN DT NN IN NNP NNP , NNP NNP VBD NNS DT NNP NNP VBD NN TO VB DT NN IN NN `` JJ . `` He said lawmakers had the same access to intelligence regarding Saddam Hussein 's weapons ' programs and many arrived at the same conclusion to go to war . PRP VBD NNS VBD DT JJ NN TO NN VBG NNP NNP POS NNS POS NNS CC NN VBD IN DT JJ NN TO VB TO NN . In a statement released after Mr. Cheney 's speech , Senate Minority Leader Harry Reid ( of Nevada ) accused the Bush administration of playing politics with the war in Iraq . IN DT NN VBN IN NNP NNP POS NN , NNP NNP NNP NNP NNP LRB IN NNP RRB VBD DT NNP NN IN VBG NNS IN DT NN IN NNP . He urged the White House to stop ' lashing out ' at its critics and instead give American troops a strategy for success in Iraq . PRP VBD DT NNP NNP TO VB `` VBG RP `` IN PRP$ NNS CC RB VB JJ NNS DT NN IN NN IN NNP . Thai Prime Minister Surayud Chulanont is blaming a series of deadly bombings in Bangkok on groups opposed to the military coup that put him in power . JJ JJ NN NNP NNP VBZ VBG DT NN IN JJ NNS IN NNP IN NNS VBN TO DT JJ NN WDT VBD PRP IN NN . Mr. Surayud said Monday intelligence agencies believe the New Year 's Eve blasts were carried out by people who lost power following September 's military takeover . NNP NNP VBD NNP NN NNS VBP DT NNP NNP POS NNP NNS VBD VBN RP IN NNS WP VBD NN VBG NNP POS JJ NN . Nine bombs ripped through the capital Sunday and early Monday , killing three people and wounding at least 38 others . CD NNS VBD IN DT NN NNP CC JJ NNP , VBG CD NNS CC VBG IN JJS CD NNS . Mr. Surayud did not name deposed prime minister Thaksin Shinawatra or his allies as possible culprits . NNP NNP VBD RB VB JJ JJ NN NNP NNP CC PRP$ NNS IN JJ NNS . He also downplayed the likelihood that an Islamist insurgency in the south has crept northward . PRP RB VBD DT NN IN DT NN NN IN DT NN VBZ VBN RB . Some 1,800 people have been killed in near-daily bombings in three southern provinces . DT CD NNS VBP VBN VBN IN JJ NNS IN CD JJ NNS . The Obama administration is to announce Tuesday a new plan for the detention of illegal immigrants awaiting deportation . DT NNP NN VBZ TO VB NNP DT JJ NN IN DT NN IN JJ NNS VBG NN . Under the new guidelines , the Immigration and Customs Enforcement agency will devise a system to determine which immigrants should be imprisoned and which should be housed in less restrictive facilities . IN DT JJ NNS , DT NNP CC NNP NNP NN MD VB DT NN TO VB WDT NNS MD VB VBN CC WDT MD VB VBN IN RBR JJ NNS . Under the current system , violent and non-violent illegal immigrants are being held in a makeshift network of local , state and federal jails . IN DT JJ NN , JJ CC JJ JJ NNS VBP VBG VBN IN DT JJ NN IN JJ , NN CC JJ NNS . Nearly 4,00,000 people are held in this system each year , at a cost of about $ 2 billion . RB CD NNS VBP VBN IN DT NN DT NN , IN DT NN IN IN $ CD CD . The new proposals would house non-violent immigrants such as women and children in former hotels , nursing homes and other sites . DT JJ NNS MD VB JJ NNS JJ IN NNS CC NNS IN JJ NNS , VBG NNS CC JJ NNS . The Obama administration is also considering building two new detention centers . DT NNP NN VBZ RB VBG VBG CD JJ NN NNS . Immigrant advocacy groups say many detainees have been denied access to basic medical care and other services under the current system . NNP NN NNS VBP JJ NNS VBP VBN VBN NN TO JJ JJ NN CC JJ NNS IN DT JJ NN . Turkish media say police have thwarted a bomb attack in Istanbul by arresting a man carrying a bag filled with explosives . JJ NNS VBP NNS VBP VBN DT NN NN IN NNP IN VBG DT NN VBG DT NN VBN IN NNS . Turkish news agencies say the man was detained Monday in central Istanbul 's Sisli district . JJ NN NNS VBP DT NN VBD VBN NNP IN JJ NNP POS NNP NN . They say his bag contained three and a half kilograms of plastic explosives . PRP VBP PRP$ NN VBD CD CC DT NN NNS IN JJ NNS . The reports say police later arrested at least one other suspect . DT NNS VBP NNS RB VBN IN JJS CD JJ NN . There was no word on the intended target or identity of the suspected bomber . EX VBD DT NN IN DT JJ NN CC NN IN DT JJ NN . Turkish militants affiliated to Kurdish , leftist and Islamist groups have carried out bombings in major Turkish cities and resort towns in the past . JJ NNS VBN IN JJ , JJ CC JJ NNS VBP VBN RP NNS IN JJ JJ NNS CC NN NNS IN DT NN . In May , a member of a militant leftist group blew himself up in Istanbul , killing six people and wounding many others . IN NNP , DT NN IN DT JJ JJ NN VBD PRP RP IN NNP , VBG CD NNS CC VBG JJ NNS . The United Nations is appealing for help for Niger , where it says floods have displaced nearly 2,00,000 people in recent weeks . DT NNP NNP VBZ VBG IN NN IN NNP , WRB PRP VBZ NNS VBP VBN RB CD NNS IN JJ NNS . The U.N. Office for the Coordination of Humanitarian Affairs says shelter materials and blankets are urgently needed . DT NNP NNP IN DT NN IN NNP NNP VBZ NN NNS CC NNS VBP RB VBN . Food and mosquito netting are also in short supply . NN CC NN NN VBP RB IN JJ NN . The floods are compounding the misery in Niger , which was already experiencing a severe drought and food shortages before the rains hit . DT NNS VBP VBG DT NN IN NNP , WDT VBD RB VBG DT JJ NN CC NN NNS IN DT NNS VBD . The floods washed away the few crops and vegetable gardens that were starting to sprout . DT NNS VBD RB DT JJ NNS CC JJ NNS WDT VBD VBG TO VB . A representative of the British-based charity Oxfam in Niger told VOA last week that people there are ' extremely desperate . ' DT NN IN DT JJ NN NNP IN NNP VBD NNP JJ NN IN NNS EX VBP `` RB JJ . `` The government of Venezuela has offered to send humanitarian aid and fuel to the United States in the wake of the devastation caused by Hurricane Katrina along the U.S. Gulf Coast . DT NN IN NNP VBZ VBN TO VB JJ NN CC NN TO DT NNP NNPS IN DT NN IN DT NN VBN IN NNP NNP IN DT NNP NNP NNP . The Foreign Ministry issued a statement Wednesday , saying Venezuela is ready to send a humanitarian aid task force to assist in relief efforts , if requested by the United States . DT NNP NNP VBD DT NN NNP , VBG NNP VBZ JJ TO VB DT JJ NN NN NN TO VB IN NN NNS , IN VBN IN DT NNP NNPS . Venezuela 's Citgo Petroleum Corporation also pledged $ 1 million towards relief efforts . NNP POS NNP NNP NNP RB VBD $ CD CD IN NN NNS . Citgo says the funds will be directed to appropriate relief organizations in the affected areas . NNP VBZ DT NNS MD VB VBN TO JJ NN NNS IN DT JJ NNS . Venezuela is the world 's fifth largest oil exporter and a major supplier to the United States , although relations have been tense between the two countries . NNP VBZ DT NN POS JJ JJS NN NN CC DT JJ NN TO DT NNP NNPS , IN NNS VBP VBN JJ IN DT CD NNS . The French news agency , Agence France Presse , says one of its photographers has been kidnapped in the Gaza Strip . DT JJ NN NN , NNP NNP NNP , VBZ CD IN PRP$ NNS VBZ VBN VBN IN DT NNP NNP . The agency has identified the photographer as 50 year old Jaime Razuri , a Peruvian national . DT NN VBZ VBN DT NN IN CD NN JJ NNP NNP , DT JJ NN . AFP says Razuri had just finished covering a story and had returned to the agency 's office in Gaza . NNP VBZ NNP VBD RB VBN VBG DT NN CC VBD VBN TO DT NN POS NN IN NNP . His translator says two gunmen abducted the photographer and fled in a Japanese car . PRP$ NN VBZ CD NNS VBD DT NN CC VBD IN DT JJ NN . Kidnappings are frequent in the Gaza Strip . NNS VBP JJ IN DT NNP NNP . Reporters without Borders , a Press watchdog , says Gaza is one of the riskiest places for journalists . NNS IN NNS , DT NNP NN , VBZ NNP VBZ CD IN DT JJS NNS IN NNS . In October , a Spanish photographer was kidnapped in the Gaza Strip . IN NNP , DT JJ NN VBD VBN IN DT NNP NNP . He was released unharmed after half-a-day in captivity . PRP VBD VBN JJ IN NN IN NN . Zoo officials in San Diego , California , say a giant panda was born at the San Diego Zoo on Tuesday , making it one of only about 10 giant pandas in the United States . NNP NNS IN NNP NNP , NNP , VBP DT JJ NN VBD VBN IN DT NNP NNP NNP IN NNP , VBG PRP CD IN RB IN CD JJ NNS IN DT NNP NNPS . The officials say the mother , a 13-year-old giant panda pregnant with twins , gave birth to one cub , but the other died in the womb . DT NNS VBP DT NN , DT JJ NN NN JJ IN NNS , VBD NN TO CD NN , CC DT NN VBD IN DT NN . It is the second panda birth in less than a month at a U.S. zoo . PRP VBZ DT JJ NN NN IN JJR IN DT NN IN DT NNP NN . The first was born three weeks ago at Washington 's National Zoo . DT NN VBD VBN CD NNS RB IN NNP POS NNP NNP . On Tuesday , veterinarians determined that cub is male . IN NNP , NNS VBD IN NN VBZ JJ . The cub 's parents are being loaned by China under a 10-year agreement . DT NN POS NNS VBP VBG VBN IN NNP IN DT JJ NN . Giant pandas are endangered with a total population of 1,600 , both in captivity and in the wild . JJ NNS VBP VBN IN DT JJ NN IN CD , DT IN NN CC IN DT NN . U.S. Senator John McCain has told Chinese officials they need to take a strong stand on North Korea in response to its rocket launch on Sunday . NNP NNP NNP NNP VBZ VBN JJ NNS PRP VBP TO VB DT JJ NN IN NNP NNP IN NN TO PRP$ NN NN IN NNP . McCain spoke to reporters in Beijing after meeting with top officials there , saying he urged the Chinese to support the international community in imposing sanctions on North Korea . NNP VBD TO NNS IN NNP IN VBG IN JJ NNS RB , VBG PRP VBD DT NNS TO VB DT JJ NN IN VBG NNS IN NNP NNP . The U.S. and its allies in Asia have said the recent rocket launch was a test of a ballistic missile , but North Korea denies the claim , saying it sent a satellite into space . DT NNP CC PRP$ NNS IN NNP VBP VBN DT JJ NN NN VBD DT NN IN DT JJ NN , CC NNP NNP VBZ DT NN , VBG PRP VBD DT NN IN NN . China , along with Russia , has called for ' restraint ' in handling the situation . NNP , IN IN NNP , VBZ VBN IN `` NN `` IN VBG DT NN . McCain also criticized the six-nation talks aimed at disarming North Korea 's nuclear program , saying they had not been very productive . NNP RB VBD DT JJ NNS VBN IN VBG NNP NNP POS JJ NN , VBG PRP VBD RB VBN RB JJ . McCain , along with two other U.S. Senators , is in East Asia on a tour that also includes Japan and Vietnam . NNP , IN IN CD JJ NNP NNS , VBZ IN NNP NNP IN DT NN WDT RB VBZ NNP CC NNP . Pakistan 's military says it has destroyed a training camp for suicide bombers in the Swat Valley . NNP POS NN VBZ PRP VBZ VBN DT NN NN IN NN NNS IN DT NNP NNP . The army said in a statement that reports from intelligence sources and local residents led them to the location in northwest Pakistan . DT NN VBD IN DT NN IN NNS IN NN NNS CC JJ NNS VBD PRP TO DT NN IN JJ NNP . They said six militants were killed in the operation and several others were wounded . PRP VBD CD NNS VBD VBN IN DT NN CC JJ NNS VBD VBN . Pakistan 's government has been fighting a Taliban insurgency in the northwest . NNP POS NN VBZ VBN VBG DT NNP NN IN DT NN . Friday Britain pledged $ 1 billion in aid to help stabilize Pakistan 's violent border regions and to address the underlying causes of extremism . NNP NNP VBD $ CD CD IN NN TO VB VB NNP POS JJ NN NNS CC TO VB DT JJ NNS IN NN . British Prime Minister Gordon Brown confirmed the pledge during a meeting in London with Pakistani President Asif Ali Zardari . JJ NNP NNP NNP NNP VBD DT NN IN DT NN IN NNP IN JJ NNP NNP NNP NNP . A spokesman for Mr. Zardari , Farhatullah Babar , also called for better access to European Union markets to help boost Pakistan 's economy . DT NN IN NNP NNP , NNP NNP , RB VBD IN JJR NN TO NNP NNP NNS TO VB VB NNP POS NN . Norway has barred its oil fund from investing in China 's Dongfeng Motor Group because the firm sell arms supplies to military-ruled Burma . NNP VBZ VBN PRP$ NN NN IN VBG IN NNP POS NNP NNP NNP IN DT NN VB NNS NNS TO JJ NNP . Norway 's finance ministry says the Chinese company sells military trucks to Burma . NNP POS NN NN VBZ DT JJ NN VBZ JJ NNS TO NNP . Finance Minster Kristin Halvorsen said Friday Norway can not finance companies that support the military dictatorship in Burma through military sales . NNP NNP NNP NNP VBD NNP NNP MD RB VB NNS WDT VBP DT JJ NN IN NNP IN JJ NNS . Norway 's oil fund , officially called the Government Pension Fund-Global , invests the country 's oil and gas wealth in foreign stocks and bonds . NNP POS NN NN , RB VBD DT NNP NNP NNP , VBZ DT NN POS NN CC NN NN IN JJ NNS CC NNS . The fund is meant to save money for the future when Norway 's oil supply runs dry . DT NN VBZ VBN TO VB NN IN DT NN WRB NNP POS NN NN VBZ JJ . The fund is currently worth around $ 300 billion . DT NN VBZ RB JJ IN $ CD CD . Norway is a major exporter of oil and natural gas . NNP VBZ DT JJ NN IN NN CC JJ NN . There are many reasons performers get into show business . EX VBP JJ NNS NNS VBP IN NN NN . Some want to be stars while others crave the creativity it offers . DT VBP TO VB NNS IN NNS VBP DT NN PRP VBZ . VOA 's Ernest Leong has the story of two comedians who , by their own admission , got into show business because they were too lazy to do anything else . NNP POS NNP NNP VBZ DT NN IN CD NNS WP , IN PRP$ JJ NN , VBD IN NN NN IN PRP VBD RB JJ TO VB DT RB . South Korea and nine Southeast Asian nations have signed a free-trade deal , with Thailand as the lone critic to the agreement because of a dispute over rice . NNP NNP CC CD JJ JJ NNS VBP VBN DT JJ NN , IN NNP IN DT JJ NN TO DT NN IN IN DT NN IN NN . Trade ministers from South Korea and the Association of Southeast Asian Nations , or ASEAN , signed the agreement Friday in Kuala Lumpur , just ahead of next week 's Southeast Asian economic summit there . NNP NNS IN NNP NNP CC DT NNP IN NNP NNP NNP , CC NNP , VBD DT NN NNP IN NNP NNP , RB RB IN JJ NN POS JJ JJ JJ NN RB . Details of the agreement were not immediately available . NNS IN DT NN VBD RB RB JJ . Bangkok declined to sign the deal because it objects to South Korea 's insistence on keeping rice out of the trade deal . NNP VBD TO VB DT NN IN PRP VBZ TO NNP NNP POS NN IN VBG NN IN IN DT NN NN . The two countries are expected to hold talks over the issue at a later date . DT CD NNS VBP VBN TO VB NNS IN DT NN IN DT JJ NN . Afghan authorities have ordered the slaughter of birds in areas where two cases of bird flu have been found . JJ NNS VBP VBN DT NN IN NNS IN NNS WRB CD NNS IN NN NN VBP VBN VBN . The U.N. 's Food and Agriculture Organization said Wednesday birds carrying the virus have been reported in the eastern provinces of Nangarhar and Kunar . DT NNP POS NNP CC NNP NNP VBD NNP NNS VBG DT NN VBP VBN VBN IN DT JJ NNS IN NNP CC NNP . Officials suspect the cases are the deadly H5N1 strain of bird flu but do not yet have confirmation . NNS VBP DT NNS VBP DT JJ NNP NN IN NN NN CC VBP RB RB VB NN . Last year , Afghanistan discovered cases of the H5N1 virus in birds , but not humans . JJ NN , NNP VBD NNS IN DT NNP NN IN NNS , CC RB NNS . The deadly strain of the bird flu virus has killed at least 160 people worldwide since 2003 . DT JJ NN IN DT NN NN NN VBZ VBN IN JJS CD NNS JJ IN CD . Somali gunmen have seized three foreign aid workers in northern Kenya . JJ NNS VBP VBN CD JJ NN NNS IN JJ NNP . The trio was kidnapped early Saturday morning in a raid in the border town of Mandera . DT NN VBD VBN JJ NNP NN IN DT NN IN DT NN NN IN NNP . The nationalities of the humanitarian workers and the organizations they work for are not immediately clear . DT NNS IN DT JJ NNS CC DT NNS PRP VBP IN VBP RB RB JJ . Two French military advisers were kidnapped in Somalia earlier this week . CD JJ JJ NNS VBD VBN IN NNP RBR DT NN . They are reportedly being held by the Islamist group al-Shabab . PRP VBP RB VBG VBN IN DT NNP NN NNP . The French Foreign Ministry says the kidnapped men were on an official mission to provide assistance to the Somali government . DT JJ NNP NNP VBZ DT VBN NNS VBD IN DT JJ NN TO VB NN TO DT JJ NN . It is not clear whether the French nationals were kidnapped for ransom or political reasons . PRP VBZ RB JJ IN DT JJ NNS VBD VBN IN NN CC JJ NNS . Somalia is chaotic after 18 years of internal strife , and foreigners are frequent kidnap targets . NNP VBZ JJ IN CD NNS IN JJ NN , CC NNS VBP JJ NN NNS . Kidnap victims usually are released unharmed , but in many cases only after a ransom is paid . NN NNS RB VBP VBN JJ , CC IN JJ NNS RB IN DT NN VBZ VBN . The U.S. women 's soccer ( football ) team has defeated Sweden , 1-0 , in an Olympic prep match in Skelleftea , Sweden . DT NNP NNS POS NN LRB NN RRB NN VBZ VBN NNP , CD , IN DT NNP NN NN IN NNP , NNP . Carli Lloyd of the United States scored with a deflected shot in the 29th minute . NNP NNP IN DT NNP NNPS VBD IN DT VBN NN IN DT JJ NN . Lloyd dribbled past three defenders and fired a low , left-footed shot that ricocheted past the Swedish goal keeper . NNP VBD JJ CD NNS CC VBD DT JJ , JJ NN WDT VBD IN DT JJ NN NN . The win was the second in four days for the U.S. women , who also beat Norway , 4-0 , July 2 . DT NN VBD DT JJ IN CD NNS IN DT NNP NNS , WP RB VBD NNP , CD , NNP CD . The win improved the Americans ' record against the Swedes to 16 wins in 25 matches . DT NN VBD DT NNS POS NN IN DT NNS TO CD NNS IN CD NNS . The match also was the first for Pia Sundhage as coach of the United States against her native country . DT NN RB VBD DT JJ IN NNP NNP IN NN IN DT NNP NNPS IN PRP$ JJ NN . She played for Sweden in two World Cups and one Olympics . PRP VBD IN NNP IN CD NNP NNP CC CD NNPS . The U.S. women next play Brazil July 13 . DT NNP NNS RB VBP NNP NNP CD . A Spanish judge has charged 29 people with the 2004 Madrid train bombings that killed 191 people , and ruled that al-Qaida was not involved . DT JJ NN VBZ VBN CD NNS IN DT CD NNP NN NNS WDT VBD CD NNS , CC VBD DT NNP VBD RB VBN . Judge Juan del Olmo charged five suspects with 191 counts of murder and more than 1,700 counts of attempted murder - the number of victims wounded . NNP NNP NNP NNP VBD CD NNS IN CD NNS IN NN CC JJR IN CD NNS IN JJ NN IN DT NN IN NNS VBN . The other suspects were charged with collaboration . DT JJ NNS VBD VBN IN NN . Most of the suspects are Moroccans or Spaniards . JJS IN DT NNS VBP NNS CC NNS . The murder charges could lead to prison sentences of thousands of years , but under Spanish law prisoners can be held for a maximum of 40 years . DT NN NNS MD VB TO NN NNS IN NNS IN NNS , CC IN JJ NN NNS MD VB VBN IN DT NN IN CD NNS . Judge del Olmo said the suspects were inspired by al-Qaida , but said there was no direct link to the terror group . NNP NNP NNP VBD DT NNS VBD VBN IN NNP , CC VBD EX VBD DT JJ NN TO DT NN NN . He also ruled out any connection to the Basque separatist group , ETA . PRP RB VBD RP DT NN TO DT NNP NN NN , NNP . The suspects are expected to go on trial sometime next year . DT NNS VBP VBN TO VB IN NN RB JJ NN . U.S.-led coalition forces in Afghanistan say they are investigating whether friendly fire killed an American and a Canadian soldier as they fought in a battle against Taleban rebels last week . JJ NN NNS IN NNP VBP PRP VBP VBG IN JJ NN VBD DT JJ CC DT JJ NN IN PRP VBD IN DT NN IN NNP NNS JJ NN . The fighting began last Wednesday when Taleban insurgents attacked a coalition military base in the southern province of Helmand . DT NN VBD JJ NNP WRB NNP NNS VBD DT NN JJ NN IN DT JJ NN IN NNP . It was one of the Taleban 's biggest assaults on coalition forces in months . PRP VBD CD IN DT NNP POS JJS NNS IN NN NNS IN NNS . Five coalition troops also were wounded in the battle , including an American , three Canadians and one Afghan . CD NN NNS RB VBD VBN IN DT NN , VBG DT NN , CD NNS CC CD NN . A coalition statement released today says a team of Americans , Canadians and Afghans will investigate the fighting , including whether any casualties resulted from friendly fire . DT NN NN VBN NN VBZ DT NN IN NNS , NNS CC NNS MD VB DT NN , VBG IN DT NNS VBD IN JJ NN . The U.S. military says coalition troops killed 32 Taleban insurgents in the battle . DT NNP NN VBZ NN NNS VBD CD NNP NNS IN DT NN . European Union foreign policy chief Javier Solana says EU officials will likely decide Tuesday to sharply cut the number of peacekeepers in Bosnia-Herzegovina . NNP NNP JJ NN NN NNP NNP VBZ NNP NNS MD RB VB NNP TO RB VB DT NN IN NNS IN NNP . Solana said Monday the security situation in Bosnia is much improved . NNP VBD NNP DT NN NN IN NNP VBZ RB VBN . EU officials will likely reduce the number of troops from the current 6,000 to 2,500 . NNP NNS MD RB VB DT NN IN NNS IN DT JJ CD TO CD . The ministers are also expected to formally decide today on whether to extend the Bosnian peacekeeping mission for another year . DT NNS VBP RB VBN TO RB VB NN IN IN TO VB DT JJ NN NN IN DT NN . The current mandate expires on June 30 . DT JJ NN VBZ IN NNP CD . NATO peacekeepers were deployed to Bosnia as part of the 1995 Dayton Peace Accords that ended the fighting in the former Yugoslavia . NNP NNS VBD VBN TO NNP IN NN IN DT CD NNP NNP NNP WDT VBD DT NN IN DT JJ NNP . NATO turned over peacekeeping duties to the European Union in 2004 . NNP VBD RP VBG NNS TO DT NNP NNP IN CD . Iranian police have detained a controversial Shi'ite cleric after clashing with his supporters outside his Tehran home . JJ NNS VBP VBN DT JJ NNP NN IN VBG IN PRP$ NNS IN PRP$ NNP NN . Security officials Sunday said the demonstration 's leaders and Ayatollah Mohammad Kazemeini Boroujerdi were arrested . NNP NNS NNP VBD DT NN POS NNS CC NNP NNP NNP NNP VBD VBN . A crowd of about 200 people had gathered around Boroujerdi 's house to call for the release of the cleric 's jailed followers . DT NN IN IN CD NNS VBD VBN IN NNP POS NN TO VB IN DT NN IN DT NN POS JJ NNS . They chanted religious slogans , and carried signs , including one saying they were ready to die to defend traditional religion . PRP VBD JJ NNS , CC VBD NNS , VBG CD VBG PRP VBD JJ TO VB TO VB JJ NN . Iranian officials said some of the protesters were armed with knives and acid . JJ NNS VBD DT IN DT NNS VBD VBN IN NNS CC NN . Boroujerdi has previously been arrested for advocating the separation of religion and politics in the Islamic state . NNP VBZ RB VBN VBN IN VBG DT NN IN NN CC NNS IN DT JJ NN . The cleric says he has written letters to international leaders including Pope Benedict asking for support . DT NN VBZ PRP VBZ VBN NNS TO JJ NNS VBG NNP NNP VBG IN NN . Iran has an elected president and parliament , but Islamic clerics select the nation 's supreme leader . NNP VBZ DT VBN NN CC NN , CC NNP NNS VBP DT NN POS JJ NN . Chinese authorities are offering generous rewards to anyone who provides information on security threats during the Olympic Games . JJ NNS VBP VBG JJ NNS TO DT WP VBZ NN IN NN NNS IN DT NNP NNPS . A report Friday by China 's state-run Xinhua news agency says individuals could receive as much as $ 73,000 for tips over the next several months , from July 10 to October 31 . DT NN NNP IN NNP POS JJ NNP NN NN VBZ NNS MD VB RB JJ IN $ CD IN NNS IN DT JJ JJ NNS , IN NNP CD TO NNP CD . Beijing authorities say rewards would be paid for substantial information on terrorist attacks and groups planning to sabotage the games , such as , they say , the Falun Gong . NNP NNS VBP NNS MD VB VBN IN JJ NN IN JJ NNS CC NNS VBG TO VB DT NNS , JJ IN , PRP VBP , DT NNP NNP . Rewards would also be paid for information regarding the deaths of individuals involved in the Olympics and foreigners . NNS MD RB VB VBN IN NN VBG DT NNS IN NNS VBN IN DT NNS CC NNS . The Chinese government announced this week that it has already broken up five alleged terrorist groups and arrested more than 80 people suspected of plotting to sabotage the Olympics . DT JJ NN VBD DT NN IN PRP VBZ RB VBN RP CD JJ JJ NNS CC VBN JJR IN CD NNS VBN IN VBG TO VB DT NNS . China says terrorism is the biggest threat to the Olympic Games . NNP VBZ NN VBZ DT JJS NN TO DT NNP NNPS . U.S. forecasters say Hurricane John has strengthened into a Category 3 storm as it churns off Mexico 's Pacific coast , with wind speeds of 185 kilometers per hour . NNP NNS VBP NNP NNP VBZ VBN IN DT NNP CD NN IN PRP VBZ RP NNP POS NNP NN , IN NN NNS IN CD NNS IN NN . The storm is on a track that parallels the Mexican coast . DT NN VBZ IN DT NN WDT VBZ DT JJ NN . Forecasters warned Tuesday that the system could strengthen within 24 hours , triggering dangerous flash floods and mudslides over areas of mountainous terrain . NNS VBD NNP IN DT NN MD VB IN CD NNS , VBG JJ NN NNS CC NNS IN NNS IN JJ NN . At mid afternoon local time , the storm was centered 280 kilometers south of the tourist resort of Acapulco . IN JJ NN JJ NN , DT NN VBD VBN CD NNS RB IN DT NN NN IN NNP . A tropical storm warning is in effect from Lagunas de Chacahua westward to Lazaro Cardenas . DT JJ NN NN VBZ IN NN IN NNP NNP NNP VBD TO NNP NNP . A tropical storm watch is posted from west of Lazaro Cardenas to Cabo Corrientes . DT JJ NN NN VBZ VBN IN NN IN NNP NNP TO NNP NNP . John is the sixth hurricane of this year 's Pacific season . NNP VBZ DT JJ NN IN DT NN POS NNP NN . Authorities in Guatemala say mudslides triggered by a series of torrential rains have killed at least 45 people and caused half a billion dollars in damage . NNS IN NNP VBP NNS VBN IN DT NN IN JJ NNS VBP VBN IN JJS CD NNS CC VBD PDT DT CD NNS IN NN . The death toll climbed Monday as Guatemalans held a national day of mourning to remember the dead , and President Alvaro Colom declared the situation a ' national tragedy . ' DT NN NN VBD NNP IN NNS VBD DT JJ NN IN VBG TO VB DT NN , CC NNP NNP NNP VBD DT NN DT `` JJ NN . `` Officials fear the death toll could go higher as rescuers search for additional victims . NNS VBP DT NN NN MD VB JJR IN NNS NN IN JJ NNS . At least 15 people are believed to be missing . IN JJS CD NNS VBP VBN TO VB VBG . Tropical weather systems in both the Pacific and the Gulf of Mexico have left hillsides throughout Guatemala and southern Mexico saturated with water . JJ NN NNS IN DT DT NNP CC DT NNP IN NNP VBP VBN NNS IN NNP CC JJ NNP VBD IN NN . Heavy flooding in the Mexican Gulf Coast state of Tabasco also forced thousands of people from their homes . JJ NN IN DT JJ NNP NNP NN IN NNP RB VBD NNS IN NNS IN PRP$ NNS . Authorities in the states of Chiapas , Oaxaca and Veracruz reported serious flooding as well . NNS IN DT NNS IN NNP , NNP CC NNP VBD JJ NN RB RB . A United Nations human rights envoy has expressed deep concern about the physical and mental health of some 60 imprisoned dissidents in Cuba . DT NNP NNPS JJ NNS NN VBZ VBN JJ NN IN DT JJ CC JJ NN IN DT CD VBN NNS IN NNP . Human rights expert Catherine Chanet told the U.N. Human Rights Council Tuesday that she remains concerned about detention conditions for a group of dissidents - journalists , writers , and activists - arrested in a crackdown in Cuba in 2003 . NN NNS NN NNP NNP VBD DT NNP NNP NNP NNP NNP IN PRP VBZ JJ IN NN NNS IN DT NN IN NNS IN NNS , NNS , CC NNS : VBN IN DT NN IN NNP IN CD . She also said Cuba 's refusal to cooperate has resulted in an impasse and she recommended ending yearly reports on Cuba 's human rights situation . PRP RB VBD NNP POS NN TO VB VBZ VBN IN DT NN CC PRP VBD VBG JJ NNS IN NNP POS JJ NNS NN . Chanet suggested moving to a proposed new system in which the Human Rights Council reviews the human rights situation of every nation in its membership , not just selected ones with poor past records . NNP VBD VBG TO DT VBN JJ NN IN WDT DT NNP NNP NNP VBZ DT JJ NNS NN IN DT NN IN PRP$ NN , RB RB VBN NNS IN JJ NN NNS . Cuba supports that move . NNP VBZ DT NN . In a speech Tuesday , the Cuban U.N. ambassador in Geneva said about the yearly reports : ' this farce is about to end . ' IN DT NN NNP , DT JJ NNP NN IN NNP VBD IN DT JJ NNS IN `` DT NN VBZ IN TO VB . `` Pakistani officials say they have killed two suspected Islamic militants and arrested another 12 in separate raids . JJ NNS VBP PRP VBP VBN CD JJ JJ NNS CC VBN DT CD IN JJ NNS . Police say they killed two foreign militants and arrested another 11 during a raid Saturday in a village in the remote North Waziristan region , which borders Afghanistan . NNS VBP PRP VBD CD JJ NNS CC VBD DT CD IN DT NN NNP IN DT NN IN DT JJ NNP NNP NN , WDT VBZ NNP . They say a shootout erupted after security forces surrounded the hideout of the suspected militants . PRP VBP DT NN VBD IN NN NNS VBN DT NN IN DT JJ NNS . The Pakistani armed forces have launched several operations in recent years to flush out suspected al-Qaida and Taleban fighters they believe have taken refuge in remote border regions . DT JJ JJ NNS VBP VBN JJ NNS IN JJ NNS TO VB RP JJ NNP CC NNP NNS PRP VBP VBP VBN NN IN JJ NN NNS . Earlier , police announced the arrest of Ramzan Mengal , a man they described as a senior member of the outlawed Sunni Muslim militant group , Lashkar-e-Jhangvi . RBR , NN VBD DT NN IN NNP NNP , DT NN PRP VBD IN DT JJ NN IN DT JJ NNP NNP JJ NN , NNP . They said they arrested him Friday in the southwestern city of Quetta in connection with attacks on Shi'ite Muslims that have claimed more than 100 lives . PRP VBD PRP VBN PRP NNP IN DT JJ NN IN NNP IN NN IN NNS IN NNP NNPS WDT VBP VBN RBR IN CD NNS . Kuwait has reported two cases of bird flu - the first report of the virus in the Persian Gulf region . NNP VBZ VBN CD NNS IN NN NN IN DT JJ NN IN DT NN IN DT NNP NNP NN . The head of the Public Agricultural Authority Sheikh Fahd Salem al-Sabah said Thursday the cases were discovered in two birds and that at least one was a migrating fowl . DT NN IN DT NNP NNP NNP NNP NNP NNP NNP VBD NNP DT NNS VBD VBN IN CD NNS CC IN IN JJS CD VBD DT JJ NN . It is not clear if the birds were carrying the deadly H5N1 strain of the virus . PRP VBZ RB JJ IN DT NNS VBD VBG DT JJ NNP NN IN DT NN . Meanwhile , China has reported two new outbreaks of bird flu among poultry in the northeastern province of Liaoning , bringing the total number of reported outbreaks in the country over the past month to six . RB , NNP VBZ VBN CD JJ NNS IN NN NN IN NN IN DT JJ NN IN NNP , VBG DT JJ NN IN VBN NNS IN DT NN IN DT JJ NN TO CD . Wednesday in Geneva , the World Bank said it plans to provide $ 1 billion to pandemic programs , while the World Organization for Animal Health and the Food and Agricultural Organization said another $ 500 million will be needed to fight the disease in animals . NNP IN NNP , DT NNP NNP VBD PRP VBZ TO VB $ CD CD TO JJ NNS , IN DT NNP NNP IN NNP NNP CC DT NN CC NNP NNP VBD DT $ CD CD MD VB VBN TO VB DT NN IN NNS . Russia has cited the importance of relations with the United States , but expressed some concern a day after President Bush criticized democracy in Russia . NNP VBZ VBN DT NN IN NNS IN DT NNP NNPS , CC VBD DT NN DT NN IN NNP NNP VBD NN IN NNP . Russia 's ambassador to the United States , Yuri Ushakov , says the two nations must make concerted efforts in the nuclear field , and also share goals in the energy sphere . NNP POS NN TO DT NNP NNPS , NNP NNP , VBZ DT CD NNS MD VB JJ NNS IN DT JJ NN , CC RB NN NNS IN DT NN NN . Writing in The Washington Post newspaper , Mr. Ushakov also said it is inadmissible to move in the direction of demonizing Russia . VBG IN DT NNP NNP NN , NNP NNP RB VBD PRP VBZ JJ TO VB IN DT NN IN VBG NNP . He also said Russia has been troubled by some U.S. actions , particularly in Iraq , but respectfully presents its view , rather than try to undermine America 's image or interests . PRP RB VBD NNP VBZ VBN VBN IN DT NNP NNS , RB IN NNP , CC RB VBZ PRP$ NN , RB IN VB TO VB NNP POS NN CC NNS . In Brussels Monday , President Bush urged Russia to renew a commitment to democracy and the rule of law . IN NNP NNP , NNP NNP VBD NNP TO VB DT NN TO NN CC DT NN IN NN . Russian Foreign Minister Sergei Lavrov described Mr. Bush 's comments as a call for a strategic partnership to fight terrorism and the spread of weapons of mass destruction . JJ NNP NNP NNP NNP VBD NNP NNP POS NNS IN DT NN IN DT JJ NN TO VB NN CC DT NN IN NNS IN NN NN . Iraqi officials say a powerful car bomb ripped through a busy Baghdad street Wednesday , killing at least 35 people and wounding more than 70 . JJ NNS VBP DT JJ NN NN VBD IN DT JJ NNP NN NNP , VBG IN JJS CD NNS CC VBG JJR IN CD . Authorities say the parked car exploded near several restaurants in the mainly Shi'ite neighborhood of Shula , in the capital 's northwest . NNS VBP DT JJ NN VBD IN JJ NNS IN DT RB JJ NN IN NNP , IN DT NN POS NN . Witnesses say many of the victims were dining at the restaurants and shopping at nearby stores when the attack took place . NNS VBP NN IN DT NNS VBD VBG IN DT NNS CC NN IN JJ NNS WRB DT NN VBD NN . Women and children were reported to be among those killed . NNS CC NNS VBD VBN TO VB IN DT VBN . The blast was the biggest bombing in Iraq since April 29th , when more than 50 people were killed in bombings in Shi'ite districts in Baghdad . DT NN VBD DT JJS NN IN NNP IN NNP CD , WRB JJR IN CD NNS VBD VBN IN NNS IN NNP NNS IN NNP . April was a deadly month in Iraq , with 355 Iraqis reported killed in attacks . NNP VBD DT JJ NN IN NNP , IN CD NNS VBN VBN IN NNS . The United States will decide in the coming weeks whether to take the North Korea nuclear issue to the United Nations , where sanctions could be imposed . DT NNP NNPS MD VB IN DT VBG NNS IN TO VB DT NNP NNP JJ NN TO DT NNP NNP , WRB NNS MD VB VBN . A senior U.S. defense official said Sunday that Washington is considering taking the matter to the world body because U.S. officials do not see any effort on the part of Pyongyang to cooperate . DT JJ NNP NN NN VBD NNP IN NNP VBZ VBG VBG DT NN TO DT NN NN IN NNP NNS VBP RB VB DT NN IN DT NN IN NNP TO VB . The official , speaking on the sidelines of a security conference in Singapore , described the North 's statements on the nuclear issue as ' a downward spiral of threats . ' DT NN , VBG IN DT NNS IN DT NN NN IN NNP , VBD DT NNP POS NNS IN DT JJ NN IN `` DT JJ NN IN NNS . `` The senior U.S. defense official made the comments to reporters on condition of anonymity . DT JJ NNP NN NN VBD DT NNS TO NNS IN NN IN NN . South Korean President Roh Moo-hyun will meet President Bush in Washington on Friday for talks on the nuclear issue . JJ JJ NNP NNP NNP MD VB NNP NNP IN NNP IN NNP IN NNS IN DT JJ NN . Pyongyang has threatened that any U.N. sanctions would be considered a declaration of war . NNP VBZ VBN IN DT NNP NNS MD VB VBN DT NN IN NN . The United States has claimed the final quarterfinal slot in the men 's Olympic ice hockey tournament at the Turin Games in Italy . DT NNP NNPS VBZ VBN DT JJ JJ NN IN DT NNS POS NNP NN NN NN IN DT NNP NNPS IN NNP . The U.S. team did not have to play Tuesday to advance because Kazakhstan defeated Latvia , 05-Feb . DT NNP NN VBD RB VB TO VB NNP TO VB IN NNP VBD NNP , CD . The Group-B result eliminated the slim chance for Latvia to overtake the United States at the end of first round play . DT NNP NN VBD DT JJ NN IN NNP TO VB DT NNP NNPS IN DT NN IN JJ NN NN . The Latvians needed to beat Kazakhstan and erase a huge 16-goal margin while hoping the United States would lose against Russia later in the day . DT NNS VBD TO VB NNP CC VB DT JJ JJ NN IN VBG DT NNP NNPS MD VB IN NNP RB IN DT NN . Switzerland rallied for a 03-Mar tie with Italy to clinch second place in Group-A behind Finland . NNP VBD IN DT JJ NN IN NNP TO VB JJ NN IN NNP IN NNP . All eight teams have been determined for the quarterfinal round beginning Wednesday . DT CD NNS VBP VBN VBN IN DT JJ NN VBG NNP . But results from the final games will decide how the teams are paired in the next round . CC NNS IN DT JJ NNS MD VB WRB DT NNS VBP VBN IN DT JJ NN . Canada and the Czech Republic are the other teams advancing from Group-A . NNP CC DT JJ NNP VBP DT JJ NNS VBG IN NNP . The United States joins Slovakia , Russia and Sweden from Group-B . DT NNP NNPS VBZ NNP , NNP CC NNP IN NNP . As America 's Hispanic population grows , music from Latin America has surged in popularity in the United States . IN NNP POS JJ NN VBZ , NN IN NNP NNP VBZ VBN IN NN IN DT NNP NNPS . Musicians - particularly those from Mexico - have struck a cord with US audiences . NNS : RB DT IN NNP : VBP VBN DT NN IN NNP NNS . But artists from Latin America 's largest nation , Brazil , say they are finding it much harder to break into the US market than their counterparts from other countries . CC NNS IN NNP NNP POS JJS NN , NNP , VBP PRP VBP VBG PRP RB RBR TO VB IN DT NNP NN IN PRP$ NNS IN JJ NNS . Steve Mort reports for VOA from Rio de Janeiro . NNP NNP VBZ IN NNP IN NNP NNP NNP . Israeli President Moshe Katsav has begun talks with political parties on forming a new coalition government . JJ NNP NNP NNP VBZ VBN NNS IN JJ NNS IN VBG DT JJ NN NN . Mr. Katsav is to meet Sunday with senior members of the Kadima Party , which won 29 seats in the 120-member parliament in legislative elections Wednesday . NNP NNP VBZ TO VB NNP IN JJ NNS IN DT NNP NNP , WDT VBD CD NNS IN DT JJ NN IN JJ NNS NNP . He also is expected to meet with leaders from the Labor Party , which came in second in the poll . PRP RB VBZ VBN TO VB IN NNS IN DT NNP NNP , WDT VBD IN JJ IN DT NN . Political observers say Kadima will recommend that its leader , Acting Prime Minister Ehud Olmert , be formally appointed prime minister and charged with forming a cabinet . JJ NNS VBP NNP MD VB IN PRP$ NN , VBG NNP NNP NNP NNP , VB RB VBN JJ NN CC VBN IN VBG DT NN . Kadima has already begun informal talks with potential coalition partners . NNP VBZ RB VBN JJ NNS IN JJ NN NNS . Mr. Olmert has said coalition partners must accept his plan for unilateral withdrawals from the West Bank . NNP NNP VBZ VBN NN NNS MD VB PRP$ NN IN JJ NNS IN DT NNP NNP . The U.S.-led coalition in Afghanistan says Afghan and coalition forces are initiating most of the engagements on Islamic militants in the country 's restive south . DT JJ NN IN NNP VBZ JJ CC NN NNS VBP VBG JJS IN DT NNS IN JJ NNS IN DT NN POS JJ NN . A U.S. military spokesman told a news conference in Kabul Wednesday the initiative is with the Afghan and foreign forces , not with the Taleban . DT NNP NN NN VBD DT NN NN IN NNP NNP DT NN VBZ IN DT JJ CC JJ NNS , RB IN DT NNP . His remarks come as guerillas are stepping up attacks in the south before NATO-led troops take over control of security in the region next month . PRP$ NNS VBP IN NNS VBP VBG RP NNS IN DT NN IN JJ NNS VBP RP NN IN NN IN DT NN JJ NN . Meanwhile the coalition forces say they killed five militants in Uruzgan province on Wednesday and 17 others in several other provinces since Sunday . RB DT NN NNS VBP PRP VBD CD NNS IN NNP NN IN NNP CC CD NNS IN JJ JJ NNS IN NNP . Also , a suspected suicide bomber was killed when the explosives strapped to his body detonated prematurely as he was trying to enter offices of a Turkish construction company in central Ghazni province . RB , DT JJ NN NN VBD VBN WRB DT NNS VBN TO PRP$ NN VBD RB IN PRP VBD VBG TO VB NNS IN DT JJ NN NN IN JJ NNP NN . Islamist rebels have attacked African Union peacekeepers for a second straight day in the Somali capital , Mogadishu , wounding at least one soldier . NNP NNS VBP VBN NNP NNP NNS IN DT JJ JJ NN IN DT JJ NN , NNP , VBG IN JJS CD NN . An AU spokesman says the soldier was hurt Monday when a roadside bomb exploded near an AU vehicle . DT NNP NN VBZ DT NN VBD VBN NNP WRB DT NN NN VBD IN DT NNP NN . On Sunday , another roadside bomb wounded two newly arrived AU peacekeepers from Burundi . IN NNP , DT NN NN VBD CD RB VBN NNP NNS IN NNP . Approximately two-thousand troops from Burundi and Uganda make up the AU peacekeeping mission , known as AMISOM . RB JJ NNS IN NNP CC NNP VBP RP DT NNP NN NN , VBN IN NNP . The force has been guarding key sites in Mogadishu as Somalia 's Ethiopian-backed government fights the Islamist insurgency . DT NN VBZ VBN VBG JJ NNS IN NNP IN NNP POS JJ NN VBZ DT NNP NN . The insurgency began in early 2007 , soon after Ethiopian forces helped the government oust an Islamist movement from power in Mogadishu and other Somali cities . DT NN VBD IN JJ CD , RB IN JJ NNS VBD DT NN VB DT JJ NN IN NN IN NNP CC JJ JJ NNS . Authorities in Iraq say nine people have been shot and killed in the northeast town of Baquba . NNS IN NNP VBP CD NNS VBP VBN VBN CC VBN IN DT NN NN IN NNP . The victims were boarding a minibus on their way to work Wednesday morning when they were gunned down . DT NNS VBD VBG DT NN IN PRP$ NN TO VB NNP NN WRB PRP VBD VBN RB . The attack comes as authorities are dealing with a new wave of kidnappings in Iraq . DT NN VBZ IN NNS VBP VBG IN DT JJ NN IN NNS IN NNP . Four Western aid workers , including an American , a Briton and two Canadians , were abducted Saturday in Baghdad . CD JJ NN NNS , VBG DT NN , DT NN CC CD NNS , VBD VBN NNP IN NNP . The four were seen in a videotape broadcast Tuesday by Arab broadcaster Al-Jazeera . DT CD VBD VBN IN DT NN NN NNP IN NNP NN NNP . The video was made by an insurgent group calling itself the Swords of Righteousness Brigade . DT NN VBD VBN IN DT JJ NN VBG PRP DT NNS IN NNP NNP . Meanwhile , Germany has called for the release of a kidnapped national , archaeologist Susanne Osthoff , and her driver who disappeared Friday . RB , NNP VBZ VBN IN DT NN IN DT VBN NN , NN NNP NNP , CC PRP$ NN WP VBD NNP . Officials believe the latest kidnappings are aimed at disrupting next month 's national parliamentary elections . NNS VBP DT JJS NNS VBP VBN IN VBG JJ NN POS JJ JJ NNS . A series of explosions shook the Iraqi capital Wednesday , while a high-ranking U.S. official visited the country . DT NN IN NNS VBD DT JJ NN NNP , IN DT JJ NNP NN VBD DT NN . Deputy Secretary of State Robert Zoellick visited the former insurgent stronghold of Fallujah to inspect reconstruction efforts there . NNP NNP IN NNP NNP NNP VBD DT JJ JJ NN IN NNP TO VB NN NNS RB . Later , he is to meet in Baghdad with Iraqi President Jalal Talabani and Prime Minister Ibrahim al-Jaafari . RB , PRP VBZ TO VB IN NNP IN JJ NNP NNP NNP CC NNP NNP NNP NNP . Meanwhile , near Kirkuk , nine policemen were killed while trying to defuse a bomb . RB , IN NNP , CD NNS VBD VBN IN VBG TO VB DT NN . In Baghdad , at least four people were injured in three separate explosions . IN NNP , IN JJS CD NNS VBD VBN IN CD JJ NNS . A U.S. military spokeswoman said a fourth blast hit a Defense Department convoy , killing five Iraqis and injuring four U.S. contractors . DT NNP JJ NN VBD DT JJ NN VBD DT NNP NNP NN , VBG CD NNS CC VBG CD NNP NNS . And al-Jazeera television aired a video it said shows an American contractor who was abducted Monday near Baghdad . CC NNP NN VBD DT NN PRP VBD VBZ DT JJ NN WP VBD VBN NNP IN NNP . The video showed the man urging U.S. officials to open a dialogue with insurgents in order to save his life . DT NN VBD DT NN VBG NNP NNS TO VB DT NN IN NNS IN NN TO VB PRP$ NN . Iraqi officials say near-simultaneous blasts in Baghdad have killed at least 22 people and wounded 25 others in central Baghdad . JJ NNS VBP JJ NNS IN NNP VBP VBN IN JJS CD NNS CC VBN CD NNS IN JJ NNP . Officials say the two attacks occurred near a cafe Thursday afternoon . NNS VBP DT CD NNS VBD IN DT NN NNP NN . Meanwhile , Muslim groups and the family of kidnapped American journalist Jill Carroll continue to appeal for her release . RB , NNP NNS CC DT NN IN VBN JJ NN NNP NNP VBP TO VB IN PRP$ NN . Iraqi officials said they have asked the U.S. military to release six of eight Iraqi women in detention , but they say it is not related to the demands of Carroll 's kidnappers . JJ NNS VBD PRP VBP VBN DT NNP NN TO VB CD IN CD JJ NNS IN NN , CC PRP VBP PRP VBZ RB VBN TO DT NNS IN NNP POS NNS . Reuters news agency quotes a Pentagon spokesman as saying officials do not expect to resolve the detained women 's status in the near future . NNP NN NN VBZ DT NNP NN IN VBG NNS VBP RB VB TO VB DT JJ NNS POS NN IN DT JJ NN . Also Thursday , an international team of election experts said it found only minor election violations in Iraq 's December poll . RB NNP , DT JJ NN IN NN NNS VBD PRP VBD RB JJ NN NNS IN NNP POS NNP NN . Iraq 's election commission is expected to issue final poll results in the next week . NNP POS NN NN VBZ VBN TO VB JJ NN NNS IN DT JJ NN . U.N officials say they have resolved a problem with skewed official exchange rates that led to U.N. losses of more than $ 1.5 million in the delivery of aid to survivors of Cyclone Nargis in Burma . NNP NNS VBP PRP VBP VBN DT NN IN JJ JJ NN NNS WDT VBD TO NNP NNS IN JJR IN $ CD CD IN DT NN IN NN TO NNS IN NNP NNP IN NNP . U.N. officials said Monday Burma 's military government had agreed to let outside donors pay local companies directly in dollars rather than via the official system involving foreign exchange certificates . NNP NNS VBD NNP NNP POS JJ NN VBD VBN TO VB JJ NNS VBP JJ NNS RB IN NNS RB IN IN DT NN NN VBG JJ NN NNS . Officials also said Burma will waive a 10 percent government transaction fee for all international humanitarian agencies . NNS RB VBD NNP MD VB DT CD NN NN NN NN IN DT JJ JJ NNS . The U.N. losses stemmed from Burma 's insistence that donors convert aid dollars into foreign exchange certificates with a value of $ 1 each . DT NNP NNS VBD IN NNP POS NN IN NNS VBP NN NNS IN JJ NN NNS IN DT NN IN $ CD DT . These certificates were then used to buy the local currency , the kyat . DT NNS VBD RB VBN TO VB DT JJ NN , DT NN . However , the exchange rate for the certificates is 20 percent lower than the market rate . RB , DT NN NN IN DT NNS VBZ CD NN JJR IN DT NN NN . French police have arrested a key Syrian witness in a United Nations probe of the assassination of former Lebanese Prime Minister Rafik Hariri . JJ NNS VBP VBN DT JJ JJ NN IN DT NNP NNP NN IN DT NN IN JJ JJ NNP NNP NNP NNP . Police say Muhammad al-Siddiq was arrested Sunday outside Paris , and is expected to be extradited to Beirut in the near future . NNS VBP NNP NNP VBD VBN NNP IN NNP , CC VBZ VBN TO VB VBN TO NNP IN DT JJ NN . Lebanese media reports say Mr. al-Siddiq has claimed to have participated in a meeting of Lebanese security officials who allegedly designed the assassination plan . JJ NNS NNS VBP NNP NNP VBZ VBN TO VB VBN IN DT NN IN JJ NN NNS WP RB VBD DT NN NN . Syrian officials claim he is unreliable . JJ NNS VBP PRP VBZ JJ . A report from the U.N.-appointed prosecutor probing the assassination is expected to implicate Syrian officials in the February 14 bombing that killed Mr. Hariri and 20 others in Beirut . DT NN IN DT JJ NN VBG DT NN VBZ VBN TO VB JJ NNS IN DT NNP CD NN WDT VBD NNP NNP CC CD NNS IN NNP . U.N. Secretary-General Kofi Annan says he will wait to read a report due next week from prosecutor Detlev Mehlis before deciding whether to extend the probe to December , as requested last week by Lebanese lawmakers . NNP NNP NNP NNP VBZ PRP MD VB TO VB DT NN JJ JJ NN IN NN NNP NNP IN VBG IN TO VB DT NN TO NNP , IN VBN JJ NN IN JJ NNS . The U.S.-led coalition in Afghanistan says at least 25 Taleban rebels have been killed during a joint military operation with Afghan troops in the south of the country . DT JJ NN IN NNP VBZ IN JJS CD NNP NNS VBP VBN VBN IN DT JJ NN NN IN JJ NNS IN DT NN IN DT NN . A statement released by the coalition Friday says the clash happened Thursday in Helmand province . DT NN VBN IN DT NN NNP VBZ DT NN VBD NNP IN NNP NN . Also Thursday , three NATO soldiers from Canada were killed in an attack by Taleban insurgents in southern Kandahar province . RB NNP , CD NNP NNS IN NNP VBD VBN IN DT NN IN NNP NNS IN JJ NNP NN . In a separate incident in the same province , a suicide attacker drove a bomb-laden car into a crowded market , killing at least 21 people and wounding 13 others . IN DT JJ NN IN DT JJ NN , DT NN NN VBD DT JJ NN IN DT JJ NN , VBG IN JJS CD NNS CC VBG CD NNS . Local officials say the suicide bomber was apparently targeting the NATO-led International Security Assistance Forces , but the casualties were all civilians . JJ NNS VBP DT NN NN VBD RB VBG DT JJ NNP NNP NNP NNPS , CC DT NNS VBD DT NNS . NATO took over security operations from U.S.-led coalition forces this week in six southern Afghan provinces . NNP VBD RP NN NNS IN JJ NN NNS DT NN IN CD JJ JJ NNS . The U.S.-led military coalition in Afghanistan says a car bomb has seriously wounded two coalition soldiers in the southern city of Kandahar . DT JJ JJ NN IN NNP VBZ DT NN NN VBZ RB VBN CD NN NNS IN DT JJ NN IN NNP . A coalition spokeswoman says a bomb was detonated by remote control inside a vehicle near a coalition patrol Monday . DT NN NN VBZ DT NN VBD VBN IN JJ NN IN DT NN IN DT NN NN NNP . She says the wounded soldiers were taken to a medical facility for treatment . PRP VBZ DT JJ NNS VBD VBN TO DT JJ NN IN NN . At least eight people , including two Canadian soldiers , were killed in a double suicide bombing in the same area Saturday . IN JJS CD NNS , VBG CD JJ NNS , VBD VBN IN DT JJ NN VBG IN DT JJ NN NNP . A purported Taleban spokesman ( Yousuf Ahmadi ) claimed responsibility for those attacks . DT JJ NNP NN LRB NNP NNP RRB VBD NN IN DT NNS . Meanwhile , police said Monday a man traveling in a taxi detonated a grenade at a border checkpoint in Khost province Sunday , killing himself and another person . RB , NNS VBD NNP DT NN VBG IN DT NN VBD DT NN IN DT NN NN IN NNP NN NNP , VBG PRP CC DT NN . Three others were wounded . CD NNS VBD VBN . The man set off the grenades after police stopped the taxi . DT NN VBD RP DT NNS IN NN VBD DT NN . Japan 's parliament has ratified a free trade agreement with Mexico . NNP POS NN VBZ VBN DT JJ NN NN IN NNP . The accord , which was signed last September by Japanese Prime Minister Junichiro Koizumi and Mexican President Vicente Fox , must still be ratified by Mexico 's legislature . DT NN , WDT VBD VBN JJ NNP IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP , MD RB VB VBN IN NNP POS NN . The trade accord promises to widen Japanese export opportunities in Mexico and the United States , and aims to reduce Mexican dependence on the United States for export sales . DT NN NN VBZ TO VB JJ NN NNS IN NNP CC DT NNP NNPS , CC VBZ TO VB JJ NN IN DT NNP NNPS IN NN NNS . About 90 percent of Mexico 's exports go to the United States . IN CD NN IN NNP POS NNS VBP TO DT NNP NNPS . Police in southwestern Afghanistan say suspected Taleban militants Saturday attacked a mine-clearing team , killing seven people . NNS IN JJ NNP VBP JJ NNP NNS NNP VBD DT JJ NN , VBG CD NNS . Authorities in western Farah province say gunmen ambushed the team as they traveled from southern Kandahar to the western province of Herat . NNS IN JJ NNP NN VBP NNS VBD DT NN IN PRP VBD IN JJ NNP TO DT JJ NN IN NNP . Police say a total of six security guards and de-miners who worked for a U.S.-based mine clearing company ( RONCO ) and an Afghan woman were killed . NNS VBP DT NN IN CD NN NNS CC NNS WP VBD IN DT JJ NN NN NN LRB NNP RRB CC DT JJ NN VBD VBN . Four other people were wounded in the shootout . CD JJ NNS VBD VBN IN DT NN . Taleban militants are waging a bloody insurgency in Afghanistan . NNP NNS VBP VBG DT JJ NN IN NNP . On Friday , Afghan President Hamid Karzai disclosed his government has held direct talks with Taleban militants . IN NNP , JJ NNP NNP NNP VBD PRP$ NN VBZ VBN JJ NNS IN NNP NNS . At a news conference in Kabul , Mr. Karzai said the talks have been going on for some time . IN DT NN NN IN NNP , NNP NNP VBD DT NNS VBP VBN VBG IN IN DT NN . Taleban representatives later denied the president 's claim . NNP NNS RB VBD DT NN POS NN . Iranian President Mahmoud Ahmadinejad says a power vacuum is emerging in Iraq and that his government is ready to fill the gap with the help of neighboring states . JJ NNP NNP NNP VBZ DT NN NN VBZ VBG IN NNP CC IN PRP$ NN VBZ JJ TO VB DT NN IN DT NN IN JJ NNS . Speaking Tuesday in Tehran , Mr. Ahmadinejad attributed the developing vacuum to what he called the rapidly declining political power of ' the occupiers , ' an apparent reference to the United States . VBG NNP IN NNP , NNP NNP VBD DT VBG NN TO WP PRP VBD DT RB VBG JJ NN IN `` DT NNS , `` DT JJ NN TO DT NNP NNPS . He did not elaborate on how Iran could fill such a power gap . PRP VBD RB VB IN WRB NNP MD VB JJ DT NN NN . Washington accuses Tehran of fueling violence in Iraq by training and supplying weapons to Shi'ite insurgents . NNP VBZ NNP IN VBG NN IN NNP IN VBG CC VBG NNS IN NNP NNS . Iran denies the charge and says it is doing its best to stabilize its neighbor . NNP VBZ DT NN CC VBZ PRP VBZ VBG PRP$ JJS TO VB PRP$ NN . Mr. Ahmadinejad also said he sees ' no possibility ' of a U.S. attack on Iran . NNP NNP RB VBD PRP VBZ `` DT NN `` IN DT NNP NN IN NNP . The United States has accused Iran of seeking a nuclear weapon , but says it favors diplomacy in ending the crisis . DT NNP NNPS VBZ VBN NNP IN VBG DT JJ NN , CC VBZ PRP VBZ NN IN VBG DT NN . Iran denies seeking atomic weapons and says its nuclear program is for peaceful purposes . NNP VBZ VBG JJ NNS CC VBZ PRP$ JJ NN VBZ IN JJ NNS . A group of elders from Burma 's Shan ethnic group has declared a Shan State independent from the military junta . DT NN IN NNS IN NNP POS NNP JJ NN VBZ VBN DT NNP NNP JJ IN DT JJ NN . In a speech from an undisclosed location on Sunday , His Royal Highness Prince Surkhanpha , director of the Brussels-based Euro Burma Office , cited Burma 's 1947 constitution for the move . IN DT NN IN DT JJ NN IN NNP , PRP$ NNP NNP NNP NNP , NN IN DT JJ NNP NNP NNP , VBD NNP POS CD NN IN DT NN . That constitution was nullified by a military coup in 1962 and replaced by another constitution in 1974 . DT NN VBD VBN IN DT JJ NN IN CD CC VBN IN DT NN IN CD . Prince Surkhanpha 's declaration of independence was accompanied by a foreign policy statement that declared Shan State a war zone and warned foreigners to avoid the region . NNP NNP POS NN IN NN VBD VBN IN DT JJ NN NN WDT VBD NNP NNP DT NN NN CC VBD NNS TO VB DT NN . The statement urged all Shan people living abroad to return home and serve their country , the Federated Shan States . DT NN VBD DT JJ NNS VBG RB TO VB NN CC VB PRP$ NN , DT NNP NNP NNPS . Reports circulating in the Burmese exile community say the prince 's declaration of independence has raised concern among many ethnic Shan living outside their homeland . NNS VBG IN DT JJ NN NN VBP DT NN POS NN IN NN VBZ VBN NN IN JJ JJ NNP VBG IN PRP$ NN . The U.S.-led coalition in Afghanistan says its forces have killed about 45 insurgents in the country 's south . DT JJ NN IN NNP VBZ PRP$ NNS VBP VBN IN CD NNS IN DT NN POS NN . The coalition says ground troops called in air support Wednesday after their patrol of foreign and Afghan troops was attacked by Taleban fighters in Uruzgan province . DT NN VBZ NN NNS VBN IN NN NN NNP IN PRP$ NN IN JJ CC JJ NNS VBD VBN IN NNP NNS IN NNP NN . A similar exchange on Tuesday killed about 12 Taleban fighters in the southern province of Zabul . DT JJ NN IN NNP VBD IN CD NNP NNS IN DT JJ NN IN NNP . In a separate incident , officials say a Bangladeshi aid worker was shot dead by unknown gunmen in the northeastern province of Badakshan . IN DT JJ NN , NNS VBP DT JJ NN NN VBD VBN JJ IN JJ NNS IN DT JJ NN IN NNP . Coalition and Afghan forces have been fighting the Taleban since 2001 , when a U.S.-led invasion drove the extremist Islamic group from power . NN CC JJ NNS VBP VBN VBG DT NNP IN CD , WRB DT JJ NN VBD DT NN JJ NN IN NN . Militant attacks in southern and eastern Afghanistan have escalated over the past 19 months , marking the bloodiest period since the beginning of the war . NN NNS IN JJ CC JJ NNP VBP VBN IN DT JJ CD NNS , VBG DT JJS NN IN DT NN IN DT NN . Russia 's nuclear power chief says his country plans to start up the Bushehr nuclear reactor in Iran this year . NNP POS JJ NN NN VBZ PRP$ NN VBZ TO VB RP DT NNP JJ NN IN NNP DT NN . Sergei Kiriyenko told Russian media Thursday that assuming nothing unexpected happens , the launch will go as planned before the end of 2009 . NNP NNP VBD JJ NNS NNP IN VBG DT JJ VBZ , DT NN MD VB RB VBN IN DT NN IN CD . He said there are no unresolved questions with his Iranian counterparts regarding the technical start-up . PRP VBD EX VBP DT JJ NNS IN PRP$ JJ NNS VBG DT JJ NN . Kiriyenko said he plans to travel to the Bushehr construction site later this month . NNP VBD PRP VBZ TO VB TO DT NNP NN NN RB DT NN . Russia began working on the project in 1995 , and says it has already delivered the fuel to get Iran 's first nuclear power plant running . NNP VBD VBG IN DT NN IN CD , CC VBZ PRP VBZ RB VBN DT NN TO VB NNP POS JJ JJ NN NN VBG . The plant 's opening has frequently been delayed . DT NN POS NN VBZ RB VBN VBN . In the past , Iranian officials have blamed the delays , in part , on foreign sanctions related to its disputed nuclear program . IN DT NN , JJ NNS VBP VBN DT NNS , IN NN , IN JJ NNS VBN TO PRP$ JJ JJ NN . Officials say Bushehr will be capable of producing about 1,000 megawatts of electricity a year . NNS VBP NNP MD VB JJ IN VBG IN CD NNS IN NN DT NN . British military authorities say Prince Harry , the third in line to Britain 's throne , will be deployed to Iraq with his military unit . JJ JJ NNS VBP NNP NNP , DT JJ IN NN TO NNP POS NN , MD VB VBN TO NNP IN PRP$ JJ NN . A Defense Ministry announcement says the prince , a second lieutenant in the Blues and Royals Regiment , will begin service in Iraq in the next few months as part of a British troop rotation . DT NNP NNP NN VBZ DT NN , DT JJ NN IN DT NNS CC NNS NN , MD VB NN IN NNP IN DT JJ JJ NNS IN NN IN DT JJ NN NN . The prince will become the latest member of Britain 's royal family to see front-line action since his uncle , Prince Andrew the Duke of York , served as a helicopter pilot during the 1982 Falklands War . DT NN MD VB DT JJS NN IN NNP POS JJ NN TO VB JJ NN IN PRP$ NN , NNP NNP DT NNP IN NNP , VBD IN DT NN NN IN DT CD NNP NNP . Prince Harry , formally known as Troop Commander Wales , has trained to lead 11 soldiers and four Scimitar tanks . NNP NNP , RB VBN IN NNP NNP NNP , VBZ VBN TO VB CD NNS CC CD NNP NNS . After graduating from Britain 's Sandhurst Military Academy last year , the prince has repeatedly expressed his wish to accompany his regiment to Iraq . IN VBG IN NNP POS NNP NNP NNP JJ NN , DT NN VBZ RB VBN PRP$ NN TO VB PRP$ NN TO NNP . U.S. President-elect Barack Obama is urging Congress to move quickly on a plan to deal with the financial crisis in the country and help struggling families . NNP NNP NNP NNP VBZ VBG NNP TO VB RB IN DT NN TO VB IN DT JJ NN IN DT NN CC VB VBG NNS . In Saturday 's Democratic weekly radio address , Mr. Obama said if Congress does not immediately pass an economic rescue plan , he will make it his first order of business as president . IN NNP POS JJ JJ NN NN , NNP NNP VBD IN NNP VBZ RB RB VB DT JJ NN NN , PRP MD VB PRP PRP$ JJ NN IN NN IN NN . He said the rescue package should create jobs , relieve financial pressure on families and revive the economy . PRP VBD DT NN NN MD VB NNS , VB JJ NN IN NNS CC VB DT NN . Mr. Obama expressed optimism that , with new policies and a spirit of service and sacrifice , the country can steer itself out of economic turmoil . NNP NNP VBD NN IN , IN JJ NNS CC DT NN IN NN CC NN , DT NN MD VB PRP IN IN JJ NN . He praised world leaders for coming to Washington to seek a solution to the global financial crisis , saying the matter requires a ' coordinated global response . ' PRP VBD NN NNS IN VBG TO NNP TO VB DT NN TO DT JJ JJ NN , VBG DT NN VBZ DT `` VBN JJ NN . `` On Friday , Mr. Obama announced a delegation is taking part in G-20 summit on his behalf . IN NNP , NNP NNP VBD DT NN VBZ VBG NN IN NNP NN IN PRP$ NN . Israeli warplanes have launched strikes in the northern Gaza Strip . JJ NNS VBP VBN NNS IN DT JJ NNP NNP . Palestinian witnesses say at least one Israeli missile struck a military compound , about 100 meters from the offices of Palestinian Authority President Mahmoud Abbas . JJ NNS VBP IN JJS CD JJ NN VBD DT JJ NN , IN CD NNS IN DT NNS IN JJ NNP NNP NNP NNP . The president was elsewhere when the attack occurred . DT NN VBD RB WRB DT NN VBD . Palestinian sources say two guards were wounded when a rocket landed in the compound near a helicopter pad used by Mr. Abbas . JJ NNS VBP CD NNS VBD VBN WRB DT NN VBD IN DT NN IN DT NN NN VBN IN NNP NNP . Israel says the strikes targeted opened areas used by Palestinian militants to fire rockets into southern Israel . NNP VBZ DT NNS VBD VBN NNS VBN IN JJ NNS TO VB NNS IN JJ NNP . Militants fired at least nine rockets into Israel Tuesday , including one that Israel says landed dangerously close to a huge fuel storage facility near the port city of Ashkelon . NNS VBD IN JJS CD NNS IN NNP NNP , VBG CD WDT NNP VBZ VBD RB RB TO DT JJ NN NN NN IN DT JJ NN IN NNP . Iran says it is investigating Afghan troops who shot at Iranian forces after crossing over the border . NNP VBZ PRP VBZ VBG JJ NNS WP VBD IN JJ NNS IN VBG IN DT NN . Iran 's ISNA news agency says Iranian border guards encountered the Afghan troops traveling by car , armed with rifles and a grenade launcher . NNP POS NNP NN NN VBZ JJ NN NNS VBD DT JJ NNS VBG IN NN , VBN IN NNS CC DT NN NN . Border police commander Hossein Zolfaghari said the six officers and one soldier were detained , and told officials they were looking for Taliban militants and crossed into Iran by accident . NN NN NN NNP NNP VBD DT CD NNS CC CD NN VBD VBN , CC VBD NNS PRP VBD VBG IN NNP NNS CC VBD IN NNP IN NN . Zolfaghari did not say when the arrests took place . NNP VBD RB VB WRB DT NNS VBD NN . Both Afghanistan and Iran have been battling insurgents and smugglers along their joint border . DT NNP CC NNP VBP VBN VBG NNS CC NNS IN PRP$ JJ NN . Earlier this month , Afghan officials said they seized at least 19 tons of explosives found in shipping containers imported from Iran . RBR DT NN , JJ NNS VBD PRP VBD IN JJS CD NNS IN NNS VBN IN NN NNS VBN IN NNP . Afghanistan has previously accused Iran of selling weapons to the Taliban , allegations Tehran denies . NNP VBZ RB VBN NNP IN VBG NNS TO DT NNP , NNS NNP VBZ . A Polish court has fined a magazine publisher $ 6,400 for insulting Pope John Paul . DT JJ NN VBZ VBN DT NN NN $ CD IN VBG NNP NNP NNP . The Warsaw court Tuesday found Jerzy Urban , who was a spokesman for Poland 's former communist government , guilty of violating a law that bans publicly insulting foreign heads of state . DT NNP NN NNP VBD NNP NNP , WP VBD DT NN IN NNP POS JJ JJ NN , JJ IN VBG DT NN WDT VBZ RB JJ JJ NNS IN NN . He printed an article in the weekly magazine NIE making fun of the pope 's age and frailty shortly before the Polish-born pontiff 's August 2002 visit to his homeland . PRP VBD DT NN IN DT JJ NN NNP VBG NN IN DT NN POS NN CC NN RB IN DT JJ NN POS NNP CD NN TO PRP$ NN . The court 's decision brought expressions of concern from Europe 's top security organization that Poland is curtailing the freedom of the press . DT NN POS NN VBD NNS IN NN IN NNP POS JJ NN NN IN NNP VBZ VBG DT NN IN DT NN . A spokesman for the Organization for Security and Cooperation in Europe said the European Court of Human Rights has ruled that increased protection for public officials is contrary to European law . DT NN IN DT NNP IN NNP CC NNP IN NNP VBD DT NNP NNP IN NNP NNP VBZ VBN IN JJ NN IN JJ NNS VBZ JJ TO JJ NN . He then called on Polish authorities to introduce legislation decriminalizing libel and defamation . PRP RB VBD RP JJ NNS TO VB NN VBG NN CC NN . British teenager Andy Murray has won his first tennis match under new coach Brad Gilbert , firing 13 aces to defeat Ramon Delgado of Paraguay , 06-Apr , 06-Mar , at the Legg Mason Tennis Classic in Washington . JJ NN NNP NNP VBZ VBN PRP$ JJ NN NN IN JJ NN NNP NNP , VBG CD NNS TO VB NNP NNP IN NNP , CD , CD , IN DT NNP NNP NNP NNP IN NNP . The 19-year-old player from Scotland won 26 of 37 first-serve points Wednesday to reach the third round of the hardcourt event . DT JJ NN IN NNP VBD CD IN CD JJ NNS NNP TO VB DT JJ NN IN DT NN NN . His match lasted just 88 minutes in sweltering 37-degree Celsius heat . PRP$ NN VBD RB CD NNS IN VBG JJ NNP NN . Murray will play again Thursday against either Spaniard Feliciano Lopez or Russian Teimuraz Gabashvili for a place in the quarterfinal round . NNP MD VB RB NNP IN DT NN NNP NNP CC JJ NNP NNP IN DT NN IN DT JJ NN . Russian seventh seed Dmitry Tursunov advanced when Edgardo Massa of Argentina retired with a right shoulder injury with the match even at 06-Mar , 01-Jun , 03-Mar . JJ JJ NN NNP NNP VBD WRB NNP NNP IN NNP VBD IN DT JJ NN NN IN DT NN RB IN CD , CD , CD . Denis Gremelmayr ousted fellow German Bjorn Phau , 06-Apr , 06-Mar . NNP NNP VBD JJ JJ NNP NNP , CD , CD . Bangladesh and India have begun two days of talks in Dhaka on sharing water resources . NNP CC NNP VBP VBN CD NNS IN NNS IN NNP IN NN NN NNS . Bangladeshi officials say the talks , led by the secretaries of each country 's water resources ministries , will focus on sharing waters from the Teesta and six other common rivers . JJ NNS VBP DT NNS , VBN IN DT NNS IN DT NN POS NN NNS NNS , MD VB IN NN NNS IN DT NNP CC CD JJ JJ NNS . They say the two sides will also discuss India 's controversial river-linking project aimed at diverting surplus water from rivers in its flood-prone northeast to dry western and southern parts of the country . PRP VBP DT CD NNS MD RB VB NNP POS JJ JJ NN VBN IN VBG JJ NN IN NNS IN PRP$ JJ NN TO VB JJ CC JJ NNS IN DT NN . Opponents believe the project would cause rivers in Bangladesh to dry up , affecting the country 's ecology and farming . NNS VBP DT NN MD VB NNS IN NNP TO VB RP , VBG DT NN POS NN CC NN . Bangladesh and India have 54 common rivers but have an agreement , signed in 1996 , only to share water resources from the Ganges River . NNP CC NNP VBP CD JJ NNS CC VBP DT NN , VBN IN CD , RB TO VB NN NNS IN DT NNP NNP . Hundreds of Pakistanis have demonstrated in the northwestern Bajaur tribal region against a purported U.S. airstrike last week that killed civilians . NNS IN NNS VBP VBN IN DT JJ NNP JJ NN IN DT JJ NNP NN JJ NN WDT VBD NNS . Sunday 's rally was held near the site of the January 13 attack , widely reported to have been carried out by a CIA drone aircraft . NNP POS NN VBD VBN IN DT NN IN DT NNP CD NN , RB VBN TO VB VBN VBN RP IN DT NNP NN NN . Demonstrators chanted slogans against the United States and burned effigies of President Bush . NNS VBD NNS IN DT NNP NNPS CC VBN NNS IN NNP NNP . The missile strike in the village of Damadola was apparently intended for , but missed , al-Qaida 's second-in-command , Ayman al-Zawahiri . DT NN NN IN DT NN IN NNP VBD RB VBN IN , CC VBD , NNP POS NN , NNP NNP . However , Pakistani officials say it killed at least three other top al-Qaida members , including a chemical weapons expert . RB , JJ NNS VBP PRP VBD IN JJS CD JJ JJ NNP NNS , VBG DT JJ NNS NN . The attack has caused friction between Islamabad and Washington . DT NN VBZ VBN NN IN NNP CC NNP . On Saturday , Pakistan 's Foreign Minister Khursheed Kasuri called for better cooperation between the two countries to avoid a repeat of the missile strike . IN NNP , NNP POS NNP NNP NNP NNP VBD IN JJR NN IN DT CD NNS TO VB DT NN IN DT NN NN . President Bush is in Russia for talks with President Vladimir Putin , ahead of the Group of Eight economic summit . NNP NNP VBZ IN NNP IN NNS IN NNP NNP NNP , RB IN DT NNP IN CD JJ NN . Mr. Bush and his wife Laura arrived in St. Petersburg Friday morning from Germany . NNP NNP CC PRP$ NN NNP VBD IN NNP NNP NNP NN IN NNP . In his talks with the President Putin , Mr. Bush has said he will discuss concerns about press freedom and democracy in Russia , but will not scold the Russian leader . IN PRP$ NNS IN DT NNP NNP , NNP NNP VBZ VBN PRP MD VB NNS IN NN NN CC NN IN NNP , CC MD RB VB DT JJ NN . The two leaders are also expected to discuss the nuclear crises in Iran and North Korea , and the escalating fighting in the Middle East . DT CD NNS VBP RB VBN TO VB DT JJ NNS IN NNP CC NNP NNP , CC DT VBG NN IN DT NNP NNP . The G-8 summit gets under way in St. Petersburg Saturday . DT NNP NN VBZ IN NN IN NNP NNP NNP . The two leaders are meeting as U.S. and Russian negotiators work to conclude a deal that would let the former communist state join the World Trade Organization . DT CD NNS VBP VBG IN NNP CC JJ NNS VBP TO VB DT NN WDT MD VB DT JJ JJ NN VB DT NNP NNP NNP . Presidents and officials from 12 South American countries have launched a plan to create a regional trade bloc modeled after the European Union . NNS CC NNS IN CD JJ JJ NNS VBP VBN DT NN TO VB DT JJ NN NN VBN IN DT NNP NNP . Representatives held a summit Wednesday in the city of Cuzco , Peru , to create the South American Community of Nations . NNS VBD DT NN NNP IN DT NN IN NNP , NNP , TO VB DT NNP NNP NNP IN NNP . The trade bloc will represent about 360 million people . DT NN NN MD VB RB CD CD NNS . It is expected to have a gross domestic product of around $ 1 trillion , with exports that top $ 180 billion . PRP VBZ VBN TO VB DT JJ JJ NN IN IN $ CD CD , IN NNS IN VBP $ CD CD . The new economic pact will merge the Mercosur trade bloc of Argentina , Uruguay , Paraguay and Brazil with the Andean Community of Bolivia , Colombia , Ecuador , Peru and Venezuela . DT JJ JJ NN MD VB DT NNP NN NN IN NNP , NNP , NNP CC NNP IN DT NNP NNP IN NNP , NNP , NNP , NNP CC NNP . Chile , Suriname and Guyana will also join . NNP , NNP CC NNP MD RB VB . The presidents of Argentina , Uruguay , Paraguay and Ecuador chose not to attend the summit , but instead sent representatives . DT NNS IN NNP , NNP , NNP CC NNP VBD RB TO VB DT NN , CC RB VBN NNS . The king of Swaziland has postponed national events to mark World AIDS Day , citing a conflict with a traditional royal ceremony . DT NN IN NNP VBZ VBN JJ NNS TO VB NNP NNP NNP , VBG DT NN IN DT JJ NN NN . Officials with King Mswati 's government say they did not want the events to compete with the incwala ceremony , which they announced will begin Thursday . NNS IN NNP NNP POS NN VBP PRP VBD RB VB DT NNS TO VB IN DT NN NN , WDT PRP VBD MD VB NNP . The Swazi Observer news agency quotes a government health official , Nhlanhla Nhlabatsi as saying events to mark World AIDS Day will now be held at the beginning of February . DT NNP NNP NN NN VBZ DT NN NN NN , NNP NNP IN VBG NNS TO VB NNP NNP NNP MD RB VB VBN IN DT NN IN NNP . But a group of non-governmental organizations fighting AIDS is defying the king 's order and will hold its scheduled dinner in Swaziland 's capital , Mbabane . CC DT NN IN JJ NNS VBG NNP VBZ VBG DT NN POS NN CC MD VB PRP$ VBN NN IN NNP POS NN , NNP . The United Nations says up to 40 percent of adults in the tiny southern Africa kingdom are infected with HIV , the virus that causes AIDS . DT NNP NNP VBZ RP TO CD NN IN NNS IN DT JJ JJ NNP NN VBP VBN IN NNP , DT NN WDT VBZ NNP . King Mswati has drawn criticism for his lavish lifestyle and multiple wives at a time of widespread suffering . NNP NNP VBZ VBN NN IN PRP$ JJ NN CC JJ NNS IN DT NN IN JJ NN . Iraq 's electoral commission has certified the results of the country 's January 30 elections and has allocated 140 seats to the main Shi'ite coalition , giving it a majority in the new parliament . NNP POS JJ NN VBZ VBN DT NNS IN DT NN POS NNP CD NNS CC VBZ VBN CD NNS TO DT JJ NNP NN , VBG PRP DT NN IN DT JJ NN . As expected , the United Iraqi Alliance was the big winner , sweeping 140 of the 275 seats in the interim National Assembly . IN VBN , DT NNP JJ NNP VBD DT JJ NN , VBG CD IN DT CD NNS IN DT JJ NNP NNP . Kurdish parties ran a distant second , taking 75 seats . JJ NNS VBD DT JJ NN , VBG CD NNS . Interim Prime Minister Iyad Allawi 's secular Shi'ite party was third , taking 40 seats . NNP NNP NNP NNP NNP POS JJ NNP NN VBD JJ , VBG CD NNS . Eight million Iraqis voted , but the country 's Sunnis mostly boycotted the election . CD CD NNS VBD , CC DT NN POS NNP RB VBD DT NN . The United Nation 's top official for the Iraq elections , Carlos Valenzuela , said in Baghdad Thursday that he hopes those who did not participate in the elections will join the political process in the next step of the transition . DT NNP NNP POS JJ NN IN DT NNP NNS , NNP NNP , VBD IN NNP NNP IN PRP VBZ DT WP VBD RB VB IN DT NNS MD VB DT JJ NN IN DT JJ NN IN DT NN . The National Assembly will be in power for 10 months and will draft a new constitution . DT NNP NNP MD VB IN NN IN CD NNS CC MD VB DT JJ NN . Israeli forces have begun handing over the town of Jericho to Palestinian security control - the first of five West Bank towns Israel has pledged to turn over . JJ NNS VBP VBN VBG IN DT NN IN NNP TO JJ NN NN IN DT NN IN CD NNP NNP NNS NNP VBZ VBN TO VB RP . Israeli and Palestinian security commanders met at a checkpoint just outside Jericho for Wednesday 's ceremonial handover . JJ CC JJ NN NNS VBD IN DT NN RB JJ NNP IN NNP POS JJ NN . After the ceremony , Israeli troops began turning over several other checkpoints around the town to Palestinian security forces . IN DT NN , JJ NNS VBD VBG IN JJ JJ NNS IN DT NN TO JJ NN NNS . In the coming days , Israel is to hand over the town of Tulkarem and , after that , Qalqiliya . IN DT JJ NNS , NNP VBZ TO VB IN DT NN IN NNP CC , IN DT , NNP . But no timetable has yet been set for Ramallah and Bethlehem . CC DT NN VBZ RB VBN VBN IN NNP CC NNP . Meanwhile , in Cairo , Egyptian and Palestinian officials and Palestinian militant leaders are discussing a proposal for a one-year stop to Palestinian attacks on Israeli targets . RB , IN NNP , JJ CC JJ NNS CC JJ JJ NNS VBP VBG DT NN IN DT JJ NN TO JJ NNS IN JJ NNS . Israeli Prime Minister Ariel Sharon says Palestinians must dismantle the militant groups in addition to agreeing to a cease-fire . JJ NNP NNP NNP NNP VBZ NNS MD VB DT JJ NNS IN NN TO VBG TO DT NN . The main political rival to Afghanistan 's President Hamid Karzai has formed a new national-level political party called New Afghanistan . DT JJ JJ NN TO NNP POS NNP NNP NNP VBZ VBN DT JJ JJ JJ NN VBN NNP NNP . Yunus Qanuni told reporters in Kabul his party will take part in the upcoming parliamentary elections in April . NNP NNP VBD NNS IN NNP PRP$ NN MD VB NN IN DT JJ JJ NNS IN NNP . He also said he will support any positive steps taken by the newly-formed Karzai government , but oppose it when it is wrong . PRP RB VBD PRP MD VB DT JJ NNS VBN IN DT JJ NNP NN , CC VBP PRP WRB PRP VBZ JJ . Mr. Karzai told reporters Friday that he has urged Mr. Qanuni to form a national party . NNP NNP VBD NNS NNP IN PRP VBZ VBN NNP NNP TO VB DT JJ NN . He said he does not want parties in his country to become ethnic or provincial . PRP VBD PRP VBZ RB VB NNS IN PRP$ NN TO VB JJ CC JJ . Mr. Qanuni said Mr. Karzai offered to make him defense minister , but he declined because that would have limited his political role . NNP NNP VBD NNP NNP VBD TO VB PRP NN NN , CC PRP VBD IN DT MD VB VBN PRP$ JJ NN . Mr. Qanuni lost to Mr. Karzai in the country 's first democratic presidential election in October . NNP NNP VBD TO NNP NNP IN DT NN POS JJ JJ JJ NN IN NNP . Rescuers in Djibouti have found at least 22 more bodies from the boat that capsized Thursday , bringing the death toll up to 94 . NNS IN NNP VBP VBN IN JJS CD JJR NNS IN DT NN IN VBZ NNP , VBG DT NN NN RP IN CD . The accident is thought to be the worst-ever disaster to occur in the tiny Horn of Africa country . DT NN VBZ VBN TO VB DT JJ NN TO VB IN DT JJ NNP IN NNP NN . The search continued Saturday for more people missing from the wooden boat , which flipped over just 100 meters from the dock in the port of Djibouti . DT NN VBD NNP IN JJR NNS VBG IN DT JJ NN , WDT VBD IN RB CD NNS IN DT NN IN DT NN IN NNP . The exact number of passengers remains unknown , but witnesses say the boat was severely overcrowded with at least 250 people . DT JJ NN IN NNS VBZ JJ , CC NNS VBP DT NN VBD RB VBN IN IN JJS CD NNS . Some passengers were rescued or swam to shore . DT NNS VBD VBN CC NN TO VB . The vessel was headed to a Muslim religious festival in the town of Tadjoura . DT NN VBD VBN TO DT NNP JJ NN IN DT NN IN NNP . The Lebanese army continues to shell Islamic militants holed up in a Palestinian refugee camp in northern Lebanon . DT JJ NN VBZ TO VB JJ NNS VBN RP IN DT JJ NN NN IN JJ NNP . Fighters are ignoring messages broadcast by the army over loudspeakers in the Nahr el-Bared camp , calling for them to surrender . NNS VBP VBG NNS VBN IN DT NN IN NNS IN DT NNP JJ NN , VBG IN PRP TO VB . In addition , occasional gunfire and explosions can be heard . IN NN , JJ NN CC NNS MD VB VBN . Nearly all the refugees have fled the camp , located near Tripoli , in the two months since the standoff began . RB PDT DT NNS VBP VBN DT NN , VBN IN NNP , IN DT CD NNS IN DT NN VBD . More than 200 people have been killed since fighting erupted between Lebanon 's army and the Fatah al-Islam militants at the camp May 20 . JJR IN CD NNS VBP VBN VBN IN VBG VBN IN NNP POS NN CC DT NNP NNP NNS IN DT NN NNP CD . The dead include more than 100 soldiers and at least 60 militants . DT NN VBP JJR IN CD NNS CC IN JJS CD NNS . The conflict at the refugee camp is the worst internal violence in Lebanon since the 1975-to-1990 civil war . DT NN IN DT NN NN VBZ DT JJS JJ NN IN NNP IN DT CD JJ NN . Israel has re-opened a key border crossing in the northern Gaza Strip , and says it will allow 1,000 Palestinian workers and hundreds of Gaza merchants to enter NNP VBZ VBN DT JJ NN VBG IN DT JJ NNP NNP , CC VBZ PRP MD VB CD JJ NNS CC NNS IN NNP NNS TO VB Israel on Thursday . NNP IN NNP . Wednesday 's announcement comes a day after an Israeli-Palestinian summit , where Palestinian leader Mahmoud Abbas declared an end to militant attacks on Israelis . NNP POS NN VBZ DT NN IN DT JJ NN , WRB JJ NN NNP NNP VBD DT NN TO JJ NNS IN NNS . Israel , in turn , promised to stop killing Palestinians anywhere . NNP , IN NN , VBD TO VB VBG NNS RB . The Erez crossing was closed last month after militants killed six Israeli civilians in northern Gaza . Meanwhile , Israeli Foreign Minister Silvan Shalom says he is launching a campaign to organize a national referendum on Israel 's Gaza withdrawal plan . DT NNP VBG VBD VBN JJ NN IN NNS VBD CD JJ NNS IN JJ NNP . RB , JJ NNP NNP NNP NNP VBZ PRP VBZ VBG DT NN TO VB DT JJ NN IN NNP POS NNP NN NN . The move places Mr. Shalom at odds with Prime Minister Ariel Sharon , who says he wants to expedite the pullback and insists a referendum is unnecessary . DT NN VBZ NNP NNP IN NNS IN NNP NNP NNP NNP , WP VBZ PRP VBZ TO VB DT NN CC VBZ DT NN VBZ JJ . Interior Minister Ophir Pines called the referendum push a move by withdrawal opponents to sabotage the plan . NNP NNP NNP NNP VBD DT NN NN DT NN IN NN NNS TO VB DT NN . Haiti 's electoral board has again postponed the country 's presidential and legislative elections , this time setting the poll for January 8 . NNP POS JJ NN VBZ RB VBN DT NN POS JJ CC JJ NNS , DT NN VBG DT NN IN NNP CD . This is the fourth time the board has pushed back the poll to replace the country 's interim administration with an elected body . DT VBZ DT JJ NN DT NN VBZ VBN RB DT NN TO VB DT NN POS JJ NN IN DT VBN NN . The vote was originally scheduled for October 9 . DT NN VBD RB VBN IN NNP CD . Election officials have attributed the postponements to poor organization and a lack of resources for the poll . NN NNS VBP VBN DT NNS TO JJ NN CC DT NN IN NNS IN DT NN . An official on the nine-member election council , Rosemond Pradel told the Associated Press the new delay is because the country is still not prepared for a vote . DT NN IN DT JJ NN NN , NNP NNP VBD DT NNP NNP DT JJ NN VBZ IN DT NN VBZ RB RB VBN IN DT NN . But he insisted the new poll date is final . CC PRP VBD DT JJ NN NN VBZ JJ . Haiti 's constitution requires that a new government be in place by February 7 . NNP POS NN VBZ IN DT JJ NN VB IN NN IN NNP CD . Leaders of Venezuela , Brazil , Colombia and Spain are to meet in the Venezuelan city of Puerto Ordaz Tuesday to discuss various issues , including trade and political alliances . NNS IN NNP , NNP , NNP CC NNP VBP TO VB IN DT JJ NN IN NNP NNP NNP TO VB JJ NNS , VBG NN CC JJ NNS . Venezuelan President Hugo Chavez , his Brazilian and Colombian counterparts , Luiz Inacio Lula da Silva and Alvaro Uribe , as well as Spanish Prime Minister Jose Luis Rodriguez Zapatero are also to discuss drug smuggling , terrorism and seeking a common position toward Colombian rebels . JJ NNP NNP NNP , PRP$ JJ CC JJ NNS , NNP NNP NNP NN NNP CC NNP NNP , RB RB IN JJ NNP NNP NNP NNP NNP NNP VBP RB TO VB NN NN , NN CC VBG DT JJ NN IN JJ NNS . The Associated Press reports the National Liberation Army , one of Colombia 's leftist rebel groups , issued a statement saying it rejects terrorism and that it hopes the governments involved in today 's talks will create a greater certainty for peace in the region . DT NNP NNP VBZ DT NNP NNP NNP , CD IN NNP POS JJ NN NNS , VBD DT NN VBG PRP VBZ NN CC IN PRP VBZ DT NNS VBN IN NN POS NNS MD VB DT JJR NN IN NN IN DT NN . CIA Director Porter Goss ' choice for the post of executive director of the intelligence agency has declined the appointment after accounts were published about his resignation from the CIA two decades ago . NNP NNP NNP NNP POS NN IN DT NN IN JJ NN IN DT NN NN VBZ VBN DT NN IN NNS VBD VBN IN PRP$ NN IN DT NNP CD NNS RB . Michael Kostiw said Monday he will still serve as a senior advisor to Mr. Goss , but feared the reports of his past indiscretion would ' be a distraction from the critical work ' of the agency . NNP NNP VBD NNP PRP MD RB VB IN DT JJ NN TO NNP NNP , CC VBD DT NNS IN PRP$ JJ NN MD `` VB DT NN IN DT JJ NN `` IN DT NN . As executive director , Mr. Kostiw would have been the agency 's day-to-day manager , overseeing budgetary and personnel decisions . IN NN NN , NNP NNP MD VB VBN DT NN POS JJ NN , VBG JJ CC JJ NNS . The Washington Post reported Sunday the former House of Representatives Intelligence Committee 's staff director for terrorism resigned from the CIA in 1982 after being put on leave for shoplifting . DT NNP NNP VBD NNP DT JJ NNP IN NNP NNP NNP POS NN NN IN NN VBD IN DT NNP IN CD IN VBG VBN IN NN IN NN . The paper reported that , in exchange for his quitting , the agency arranged for charges to be dropped and his police record to be cleared . DT NN VBD DT , IN NN IN PRP$ NN , DT NN VBD IN NNS TO VB VBN CC PRP$ NN NN TO VB VBN . The World Health Organization says 22 people injured in the earthquake in Pakistan have died of tetanus infections in the past few days . DT NNP NNP NNP VBZ CD NNS VBN IN DT NN IN NNP VBP VBN IN NN NNS IN DT JJ JJ NNS . A spokeswoman for the organization said Thursday the situation appears to be stabilizing . DT NN IN DT NN VBD NNP DT NN VBZ TO VB VBG . There have been 111 tetanus cases reported since the quake struck on October 8 , but just seven new cases in the past two days . EX VBP VBN CD NN NNS VBN IN DT NN VBD IN NNP CD , CC RB CD JJ NNS IN DT JJ CD NNS . U.N. officials are warning that more quake survivors could perish in coming months unless they get food and shelter before winter . NNP NNS VBP VBG IN JJR NN NNS MD VB IN VBG NNS IN PRP VBP NN CC NN IN NN . On Wednesday , a U.N. official said international donors pledged an additional $ 580 million for earthquake relief efforts . IN NNP , DT NNP NN VBD JJ NNS VBD DT JJ $ CD CD IN NN NN NNS . The death toll in Pakistan now stands at more than 54,000 people , and officials say rebuilding damaged areas will cost $ 5 billion . DT NN NN IN NNP RB VBZ IN JJR IN CD NNS , CC NNS VBP VBG VBN NNS MD VB $ CD CD . The World Bank has canceled more than seven million dollars in aid to Cambodia after finding evidence of fraud and corruption in three development projects . DT NNP NNP VBZ VBN JJR IN CD CD NNS IN NN TO NNP IN VBG NN IN NN CC NN IN CD NN NNS . In a statement released Sunday , the bank said the three suspended projects involved land management , infrastructure and water and sanitation projects . IN DT NN VBN NNP , DT NN VBD DT CD JJ NNS VBN NN NN , NN CC NN CC NN NNS . The World Bank said it would provide further details of its findings later this week , but could not do so now because it would jeopardize confidential communications from Cambodia . DT NNP NNP VBD PRP MD VB JJ NNS IN PRP$ NNS RB DT NN , CC MD RB VB RB RB IN PRP MD VB JJ NNS IN NNP . Corruption is endemic in Cambodia , a country impoverished after decades of conflict . NN VBZ JJ IN NNP , DT NN VBN IN NNS IN NN . There was no immediate response from the Cambodian government to the bank 's statement . EX VBD DT JJ NN IN DT JJ NN TO DT NN POS NN . An Egyptian court has convicted a former Iranian diplomat and an Egyptian man of spying for Iran . DT JJ NN VBZ VBN DT JJ JJ NN CC DT JJ NN IN VBG IN NNP . Iran 's foreign ministry spokesman called the verdict ' ridiculous . ' NNP POS JJ NN NN VBD DT NN `` JJ . `` The Iranian , Mohammed Reza Husseindoust , was sentenced in his absence to 25 years in prison . DT JJ , NNP NNP NNP , VBD VBN IN PRP$ NN TO CD NNS IN NN . The court ruled he tried to destablize Egypt and received information from the Egyptian defendant , Mahmoud Eid Dabous , about oil facilities at the Saudi port of Yanbu . DT NN VBD PRP VBD TO VB NNP CC VBD NN IN DT JJ NN , NNP NNP NNP , IN NN NNS IN DT JJ NN IN NNP . Several westerners were killed in May of 2004 in an attack on a petrochemical plant in Yanbu . JJ NNS VBD VBN IN NNP IN CD IN DT NN IN DT NN NN IN NNP . The attack was blamed on Islamist militants . DT NN VBD VBN IN NNP NNS . Dabous was sentenced to 10 years in prison on the espionage charge and another 25 years for plotting to assassinate Egyptian President Hosni Mubarak . NNP VBD VBN TO CD NNS IN NN IN DT NN NN CC DT CD NNS IN VBG TO VB JJ NNP NNP NNP . He denied the allegations and said his earlier confession was made under torture . PRP VBD DT NNS CC VBD PRP$ JJR NN VBD VBN IN NN . Iran has warned the United States not to attack its nuclear facilities . NNP VBZ VBN DT NNP NNPS RB TO VB PRP$ JJ NNS . At a news briefing Sunday , Iran 's foreign ministry spokesman Hamid Reza Asefi warned Washington ' not to play with fire ' by repeatedly threatening Tehran . IN DT NN NN NNP , NNP POS JJ NN NN NNP NNP NNP VBD NNP `` RB TO VB IN NN `` IN RB VBG NNP . The spokesman also rejected a European proposal aimed at restricting Tehran 's development of nuclear fuel . DT NN RB VBD DT JJ NN VBN IN VBG NNP POS NN IN JJ NN . Meanwhile , a U.S. newspaper , The Washington Post , report says the United States has been flying unmanned surveillance drones over Iran for almost a year to search for evidence of nuclear weapons programs and detect weaknesses in air defenses . RB , DT NNP NN , DT NNP NNP , NN VBZ DT NNP NNPS VBZ VBN VBG JJ NN NNS IN NNP IN RB DT NN TO VB IN NN IN JJ NNS NNS CC VB NNS IN NN NNS . In another development , U.N. Secretary-General Kofi Annan says relying on the Nuclear Non-Proliferation Treaty is not enough to prevent what he calls a ' cascade ' of countries acquiring nuclear weapons . IN DT NN , NNP NNP NNP NNP VBZ VBG IN DT NNP NNP NNP VBZ RB JJ TO VB WP PRP VBZ DT `` NN `` IN NNS VBG JJ NNS . Mr. Annan urges new joint action , including tougher inspection rules . NNP NNP VBZ JJ JJ NN , VBG JJR NN NNS . Afghanistan 's newly-elected President Hamid Karzai says he plans to abolish private militias , end the power of warlords and establish the rule of law . NNP POS JJ NNP NNP NNP VBZ PRP VBZ TO VB JJ NNS , VB DT NN IN NNS CC VB DT NN IN NN . He said private militias will not be tolerated at all , and former fighters who surrender their arms will be integrated into the national mainstream . PRP VBD JJ NNS MD RB VB VBN IN DT , CC JJ NNS WP VB PRP$ NNS MD VB VBN IN DT JJ NN . In an interview with CNN Television Tuesday , Mr. Karzai also said Afghanistan plans to do everything in its power to eliminate the poppy cultivation used to illegally produce heroin . IN DT NN IN NNP NNP NNP , NNP NNP RB VBD NNP VBZ TO VB DT IN PRP$ NN TO VB DT NN NN VBN TO RB VB NN . He said he would need the support of the international community to help farmers find alternative sources of income . PRP VBD PRP MD VB DT NN IN DT JJ NN TO VB NNS VB JJ NNS IN NN . Mr. Karzai was echoing remarks he made last week after authorities confirmed his victory in the October 9 election , the first direct and democratic presidential poll in Afghanistan . NNP NNP VBD VBG NNS PRP VBD JJ NN IN NNS VBD PRP$ NN IN DT NNP CD NN , DT JJ JJ CC JJ JJ NN IN NNP . New fighting in Somalia 's capital has killed at least three people and wounded at least 20 others . JJ NN IN NNP POS NN VBZ VBN IN JJS CD NNS CC VBN IN JJS CD NNS . A local journalist tells VOA 's Somali service that government forces attacked Islamist insurgents in parts of Mogadishu early Thursday . DT JJ NN VBZ NNP POS JJ NN IN NN NNS VBD NNP NNS IN NNS IN NNP JJ NNP . The fighting was centered in the Bakara market , a longtime insurgent stronghold , and the city 's Howlwadaag District . DT NN VBD VBN IN DT NNP NN , DT JJ JJ NN , CC DT NN POS NNP NNP . Government forces are reported to have captured an insurgent base in Howlwadaag . NN NNS VBP VBN TO VB VBN DT JJ NN IN NNP . The Somali government controls only small parts of Mogadishu after more than three years of fighting with Islamist militants . DT JJ NN VBZ RB JJ NNS IN NNP IN JJR IN CD NNS IN VBG IN NNP NNS . The groups al-Shabab and Hizbul Islam are trying to topple the government and turn Somalia into a strict Islamic state . DT NNS NNP CC NNP NNP VBP VBG TO VB DT NN CC VB NNP IN DT JJ JJ NN . The U.S. House of Representatives voted Friday to cut off aid to Saudi Arabia , accusing the close ally of religious intolerance and funding terrorist organizations . DT NNP NNP IN NNP VBD NNP TO VB RP NN TO NNP NNP , VBG DT JJ NN IN JJ NN CC NN JJ NNS . The ban is contained in an amendment slipped into a foreign aid funding bill for next year that has not yet been debated in the Senate . DT NN VBZ VBN IN DT NN VBD IN DT JJ NN NN NN IN JJ NN WDT VBZ RB RB VBN VBN IN DT NNP . Congress has passed bills in the past to stop the relatively small amount of U.S. aid to Saudi Arabia . NNP VBZ VBN NNS IN DT NN TO VB DT RB JJ NN IN NNP NN TO NNP NNP . But the Bush administration has found a way around the restrictions . CC DT NNP NN VBZ VBN DT NN IN DT NNS . The main backer of the amendment , Democratic Party representative Anthony Weiner from New York State , says cutting off aid sends ' a clear message to the Saudi Arabian government that they must be a TRUE ally in advancing peace in the Middle East . ' DT JJ NN IN DT NN , NNP NNP NN NNP NNP IN NNP NNP NNP , VBZ VBG RP NN VBZ `` DT JJ NN TO DT JJ JJ NN IN PRP MD VB DT JJ NN IN VBG NN IN DT NNP NNP . `` The Saudi Embassy in Washington has not commented on the proposed legislation . DT NNP NNP IN NNP VBZ RB VBN IN DT VBN NN . Congressional officials say the United States provided $ 2.5 million to Riyadh in 2005 and 2006 . JJ NNS VBP DT NNP NNPS VBD $ CD CD TO NNP IN CD CC CD . A former analyst at the U.S. Department of Defense has admitted to giving classified information to pro-Israel lobbyists and an Israeli embassy official . DT JJ NN IN DT NNP NNP IN NNP VBZ VBN TO VBG JJ NN TO JJ NNS CC DT JJ NN NN . In a federal court in Virginia Wednesday , Lawrence Franklin pleaded guilty to illegally possessing classified documents and to conspiracy . IN DT JJ NN IN NNP NNP , NNP NNP VBD JJ TO RB VBG JJ NNS CC TO NN . The 58-year-old former analyst says he provided information to an official at the Israeli embassy and to two members of a lobbying group called the American Israel Public Affairs Committee . DT JJ JJ NN VBZ PRP VBD NN TO DT NN IN DT JJ NN CC TO CD NNS IN DT NN NN VBD DT NNP NNP NNP NNP NNP . Franklin used to work as an Iran expert at the Pentagon . NNP VBD TO VB IN DT NNP NN IN DT NNP . Iran 's conservative-dominated parliament has voted to speed up debate of a bill that would force the government to scale back its cooperation with U.N. nuclear inspectors . NNP POS JJ NN VBZ VBN TO VB RP NN IN DT NN WDT MD VB DT NN TO VB RP PRP$ NN IN NNP JJ NNS . The official IRNA news agency says parliament passed the motion Wednesday , with 162 lawmakers voting in favor , 42 against and 15 abstaining . DT JJ NNP NN NN VBZ NN VBD DT NN NNP , IN CD NNS VBG IN NN , CD IN CC CD NN . The vote comes after last week 's International Atomic Energy Agency resolution , which puts Iran on notice that it could be referred to the U.N. Security Council if it fails to cooperate fully with IAEA inspectors . DT NN VBZ IN JJ NN POS NNP NNP NNP NNP NN , WDT VBZ NNP IN NN IN PRP MD VB VBN TO DT NNP NNP NNP IN PRP VBZ TO VB RB IN NNP NNS . Iran has threatened several retaliatory moves , including suspension of a protocol that allows unannounced IAEA inspections of Iranian nuclear facilities . NNP VBZ VBN JJ JJ NNS , VBG NN IN DT NN WDT VBZ JJ NNP NNS IN JJ JJ NNS . Tehran has also threatened to scale back trade ties with countries that supported the IAEA resolution . NNP VBZ RB VBN TO VB RP NN NNS IN NNS WDT VBD DT NNP NN . The United States and several western countries accuse Iran of secretly trying to develop atomic weapons . DT NNP NNPS CC JJ JJ NNS VBP NNP IN RB VBG TO VB JJ NNS . Iran denies the charge . NNP VBZ DT NN . The Dalai Lama says he is looking forward to giving up his political duties as head of the Tibetan exile movement some time next year . DT NNP NNP VBZ PRP VBZ VBG RB TO VBG RP PRP$ JJ NNS IN NN IN DT JJ NN NN DT NN JJ NN . A top aide on Tuesday confirmed the Buddhist spiritual leader 's plan , which he recently declared in a broadcast interview in India . DT JJ NN IN NNP VBD DT NNP JJ NN POS NN , WDT PRP RB VBD IN DT NN NN IN NNP . The Dalai Lama said he wants to discuss his intentions with the Tibetan parliament in exile , which convenes in March . DT NNP NNP VBD PRP VBZ TO VB PRP$ NNS IN DT JJ NN IN NN , WDT VBZ IN NNP . He said he has been in a state of semi-retirement since the movement first elected a political leader in 2001 . PRP VBD PRP VBZ VBN IN DT NN IN NN IN DT NN RB VBD DT JJ NN IN CD . The senior aide , Tenzin Taklha , stressed that the retirement would apply only to the Dalai Lama 's political role . DT JJ NN , NNP NNP , VBD IN DT NN MD VB RB TO DT NNP NNP POS JJ NN . He said the Nobel Peace Prize laureate would continue to serve as a spiritual leader of the Tibetan people . PRP VBD DT NNP NNP NNP NN MD VB TO VB IN DT JJ NN IN DT JJ NNS . Swiss police say a container of swine flu virus samples packed in dry ice burst late Monday as it was being shipped on a Swiss train from Zurich to Geneva . JJ NNS VBP DT NN IN NN NN NN NNS VBN IN JJ NN VBD RB NNP IN PRP VBD VBG VBN IN DT JJ NN IN NNP TO NNP . Authorities attribute the accident to bad packaging and say it posed no threat to humans . NNS VBP DT NN TO JJ NN CC VB PRP VBD DT NN TO NNS . Police said the container held vials of a strain of swine flu virus different from the H1N1 variety responsible for a worldwide alert and for the deaths of about 150 people in Mexico . NNS VBD DT NN VBD NNS IN DT NN IN NN NN NN JJ IN DT NNP NN JJ IN DT JJ NN CC IN DT NNS IN IN CD NNS IN NNP . The material was being transferred to Geneva as part of Swiss efforts to develop an effective test for detecting swine flu in humans . DT NN VBD VBG VBN TO NNP IN NN IN JJ NNS TO VB DT JJ NN IN VBG JJ NN IN NNS . Reuters news agency says police stopped the train ahead of its arrival in Lausanne . NNP NN NN VBZ NN VBD DT NN RB IN PRP$ NN IN NNP . Authorities report one person injured in the incident . NNS VBP CD NN VBN IN DT NN . Kenya 's justice minister says the government will start freezing the assets of those suspected of profiting from corruption . NNP POS NN NN VBZ DT NN MD VB VBG DT NNS IN DT VBN IN VBG IN NN . Martha Karua told reporters Wednesday that the assets include well-known buildings in Nairobi she said were built with looted government funds . NNP NNP VBD NNS NNP IN DT NNS VBP JJ NNS IN NNP PRP VBD VBD VBN IN JJ NN NNS . Karua did not name any targeted officials , but said her office is accelerating action on all corruption cases , including the so-called Anglo Leasing and Goldenberg scandals . NNP VBD RB VB DT JJ NNS , CC VBD PRP$ NN VBZ VBG NN IN DT NN NNS , VBG DT JJ NNP NNP CC NNP NNS . Kenya 's former ministers of finance , energy and education all resigned recently after being linked to the multi-million dollar scandals . NNP POS JJ NNS IN NN , NN CC NN DT VBD RB IN VBG VBN TO DT JJ NN NNS . The officials have denied any wrongdoing . DT NNS VBP VBN DT NN . On Wednesday , Kenya 's Anti-Corruption Commission interviewed former Transport Minister Chris Murungaru , who has been ordered to account for his wealth . IN NNP , NNP POS NNP NNP VBD JJ NNP NNP NNP NNP , WP VBZ VBN VBN TO VB IN PRP$ NN . Murungaru told reporters he will not comply with the order , and said the commission should present any evidence it has showing that he committed a crime . NNP VBD NNS PRP MD RB VB IN DT NN , CC VBD DT NN MD VB DT NN PRP VBZ VBG IN PRP VBD DT NN . The outgoing Palestinian parliament has given Palestinian leader Mahmoud Abbas new powers just days before the Islamic militant group Hamas comes to power . DT JJ JJ NN VBZ VBN JJ NN NNP NNP JJ NNS RB NNS IN DT NNP JJ NN NNP VBZ TO NN . The parliament , which is dominated by Mr. Abbas ' Fatah party , passed an amendment Monday allowing him to name judges to a court that can veto laws passed by the legislature . DT NN , WDT VBZ VBN IN NNP NNP POS NNP NN , VBD DT NN NNP VBG PRP TO VB NNS TO DT NN WDT MD VB NNS VBN IN DT NN . Hamas leaders called the measure ' illegitimate ' and vowed to overturn it when the group takes over the legislature Saturday . NNP NNS VBD DT NN `` JJ `` CC VBD TO VB PRP WRB DT NN VBZ IN DT NN NNP . Spokesmen for Hamas also say it has settled on a prime minister who belongs to the militant group . NNS IN NNP RB VBP PRP VBZ VBN IN DT JJ NN WP VBZ TO DT JJ NN . Earlier , Hamas said it preferred an independent for the post . RB , NNP VBD PRP VBD DT NN IN DT NN . The group says it hopes Fatah will join a new Palestinian government , but Fatah has said it will refuse . DT NN VBZ PRP VBZ NNP MD VB DT JJ JJ NN , CC NNP VBZ VBN PRP MD VB . A Democratic Congressman has called on young Americans to oppose President Bush 's plan to change the national retirement system , Social Security . DT JJ NN VBZ VBN IN JJ NNS TO VB NNP NNP POS NN TO VB DT JJ NN NN , NNP NNP . In the Democratic Party 's weekly radio address Saturday , House member Kendrick Meek of Florida said the changes would harm the middle-class , increase the deficit , and cut benefits for most workers . IN DT NNP NNP POS JJ NN NN NNP , NNP NN NNP NNP IN NNP VBD DT NNS MD VB DT NN , VB DT NN , CC VB NNS IN JJS NNS . He says today 's young Americans will be hurt the most as they reach retirement age . PRP VBZ NN POS JJ NNS MD VB VBN DT RBS IN PRP VBP NN NN . He says the president 's plan would force the country to borrow trillions of dollars from foreign nations . PRP VBZ DT NN POS NN MD VB DT NN TO VB NNS IN NNS IN JJ NNS . Cong. Meek says the private accounts the president has been promoting would be hit with what he called ' a large privatization tax . ' NN NNP VBZ DT JJ NNS DT NN VBZ VBN VBG MD VB VBN IN WP PRP VBD `` DT JJ NN NN . `` President Bush says those accounts would earn a higher rate of return . NNP NNP VBZ DT NNS MD VB DT JJR NN IN NN . Mr. Bush recently wrapped up a nationwide tour promoting his plans for Social Security . NNP NNP RB VBD RP DT JJ NN VBG PRP$ NNS IN NNP NNP . He called the changes needed to secure the system for future generations . PRP VBD DT NNS VBN TO VB DT NN IN JJ NNS . The Internet is often referred to as the Information Superhighway . DT NNP VBZ RB VBN TO IN DT NNP NNP . But there are often shady characters loitering at every exit . CC EX VBP RB JJ NNS VBG IN DT NN . As technology grows at increasing speed , ' cyber criminals ' are keeping law enforcement agencies very busy , as VOA 's Robert Raffaele explains . IN NN VBZ IN VBG NN , `` NN NNS `` VBP VBG NN NN NNS RB JJ , IN NNP POS NNP NNP VBZ . A top Iraqi Shi'ite leader is calling on the United States to let Iraqi forces take a more aggressive role against insurgents . DT JJ JJ NNP NN VBZ VBG IN DT NNP NNPS TO VB JJ NNS VBP DT RBR JJ NN IN NNS . In an interview published Sunday in the Washington Post , Abdul Aziz Hakim says U.S. troops are hampering efforts by Iraq 's fledgling security forces to hunt down insurgents . IN DT NN VBN NNP IN DT NNP NNP , NNP NNP NNP VBZ NNP NNS VBP VBG NNS IN NNP POS JJ NN NNS TO VB RP NNS . He said there were planned Iraqi military moves against insurgents that should have been implemented months ago . PRP VBD EX VBD VBN JJ JJ NNS IN NNS WDT MD VB VBN VBN NNS RB . And he said the rejection of those by U.S. generals has led to an expansion in terror attacks . CC PRP VBD DT NN IN DT IN NNP NNS VBZ VBN TO DT NN IN NN NNS . He did not provide details . PRP VBD RB VB NNS . Mr. Hakim also urged the United States to take stronger action against countries bordering Iraq who harbor insurgents and their supporters . NNP NNP RB VBD DT NNP NNPS TO VB JJR NN IN NNS VBG NNP WP VBP NNS CC PRP$ NNS . Mr. Hakim heads the Shi'ite dominated Supreme Council for the Revolution in Iraq , which has the largest representation in parliament . NNP NNP VBZ DT NNP VBD NNP NNP IN DT NN IN NNP , WDT VBZ DT JJS NN IN NN . The U.S. secretary of agriculture says he has taken immediate action to ensure that future beef exports meet Japanese requirements . DT NNP NN IN NN VBZ PRP VBZ VBN JJ NN TO VB IN JJ NN NNS VBP JJ NNS . Japan reimposed a complete ban on beef from the United States , after finding material it believes could transmit mad cow disease in a shipment that arrived Friday . NNP VBD DT JJ NN IN NN IN DT NNP NNPS , IN VBG NN PRP VBZ MD VB JJ NN NN IN DT NN WDT VBD NNP . The country had resumed importing beef from the United States in December after months of negotiations . DT NN VBD VBN VBG NN IN DT NNP NNPS IN NNP IN NNS IN NNS . U.S. Agriculture Secretary Mike Johanns says a team of inspectors will go to Japan to re-examine all beef from the U.S. Johanns says the plant that sent the shipment to Japan has been barred from future exporting , and that the inspector who passed the shipment will be disciplined . NNP NNP NNP NNP NNP VBZ DT NN IN NNS MD VB TO NNP TO VB DT NN IN DT NNP NNP VBZ DT NN WDT VBD DT NN TO NNP VBZ VBN VBN IN JJ NN , CC IN DT NN WP VBD DT NN MD VB VBN . A spokesman for the U.S. beef industry , J. Patrick Boyle , head of the American Meat Institute says the industry regrets the incident but continues to be confident in the safety of American beef . DT NN IN DT NNP NN NN , NNP NNP NNP , NN IN DT NNP NNP NNP VBZ DT NN VBZ DT NN CC VBZ TO VB JJ IN DT NN IN JJ NN . The Tajik people came under Russian rule in the 1860s and 1870s , but Russia 's hold on Central Asia weakened following the Revolution of 1917 . DT JJ NNS VBD IN JJ NN IN DT NNS CC NNS , CC NNP POS NN IN NNP NNP VBD VBG DT NN IN CD . Bolshevik control of the area was fiercely contested and not fully reestablished until 1925 . NNP NN IN DT NN VBD RB VBN CC RB RB VBN IN CD . Much of present-day Sughd province was transferred from the Uzbek SSR to the newly formed Tajik SSR in 1929 . NN IN JJ NNP NN VBD VBN IN DT JJ NNP TO DT RB VBN JJ NNP IN CD . Ethnic Uzbeks form a substantial minority in Tajikistan . JJ NNS VBP DT JJ NN IN NNP . Tajikistan became independent in 1991 following the breakup of the Soviet Union , and experienced a civil war between regional factions from 1992 - 97 . NNP VBD JJ IN CD VBG DT NN IN DT NNP NNP , CC VBD DT JJ NN IN JJ NNS IN CD IN CD . Tajikistan experienced several security incidents in 2010 , including a mass prison-break from a Dushanbe detention facility , the country 's first suicide car bombing in Khujand , and armed conflict between government forces and opposition militants in the Rasht Valley . NNP VBD JJ NN NNS IN CD , VBG DT NN NN IN DT NNP NN NN , DT NN POS JJ NN NN VBG IN NNP , CC JJ NN IN NN NNS CC NN NNS IN DT NNP NNP . The country remains the poorest in the former Soviet sphere . DT NN VBZ DT JJS IN DT JJ JJ NN . Attention by the international community since the beginning of the NATO intervention in Afghanistan has brought increased economic development and security assistance , which could create jobs and strengthen stability in the long term . NN IN DT JJ NN IN DT NN IN DT NNP NN IN NNP VBZ VBN VBN JJ NN CC NN NN , WDT MD VB NNS CC VB NN IN DT JJ NN . Tajikistan is seeking WTO membership and has joined NATO 's Partnership for Peace . NNP VBZ VBG NNP NN CC VBZ VBN NNP POS NNP IN NNP . Economic activity is limited to commercial fishing . JJ NN VBZ VBN TO JJ NN . The proximity to nearby oil- and gas-producing sedimentary basins suggests the potential for oil and gas deposits , but the region is largely unexplored . DT NN TO JJ NN CC JJ JJ NNS VBZ DT NN IN NN CC NN NNS , CC DT NN VBZ RB JJ . There are no reliable estimates of potential reserves . EX VBP DT JJ NNS IN JJ NNS . Commercial exploitation has yet to be developed . JJ NN VBZ RB TO VB VBN . Tourism is the number one foreign exchange earner in this small economy , followed by exports of marine products , citrus , cane sugar , bananas , and garments . NN VBZ DT NN CD JJ NN NN IN DT JJ NN , VBN IN NNS IN JJ NNS , NNS , NN NN , NNS , CC NNS . The government 's expansionary monetary and fiscal policies , initiated in September 1998 , led to GDP growth averaging nearly 4 % in 1999 - 2007 . DT NN POS JJ JJ CC JJ NNS , VBN IN NNP CD , VBD TO NN NN NN RB CD NN IN CD IN CD . Oil discoveries in 2006 bolstered this growth . NN NNS IN CD VBD DT NN . Exploration efforts have continued and production has increased a small amount . NN NNS VBP VBN CC NN VBZ VBN DT JJ NN . In February 2007 , the government restructured nearly all of its public external commercial debt , which helped reduce interest payments and relieved some of the country 's liquidity concerns . IN NNP CD , DT NN VBD RB DT IN PRP$ JJ JJ JJ NN , WDT VBD VB NN NNS CC VBD DT IN DT NN POS NN NNS . Growth slipped to 0 % in 2009 and 1.5 % in 2010 as a result of the global slowdown , natural disasters , and the drop in the price of oil . NN VBD TO CD NN IN CD CC CD NN IN CD IN DT NN IN DT JJ NN , JJ NNS , CC DT NN IN DT NN IN NN . With weak economic growth and a large public debt burden , fiscal spending is likely to be tight . IN JJ JJ NN CC DT JJ JJ NN NN , JJ NN VBZ JJ TO VB JJ . A key government objective remains the reduction of poverty and inequality with the help of international donors . DT JJ NN NN VBZ DT NN IN NN CC NN IN DT NN IN JJ NNS . Although Belize has the second highest per capita income in Central America , the average income figure masks a huge income disparity between rich and poor . IN NNP VBZ DT JJ JJS IN NN NN IN NNP NNP , DT JJ NN NN VBZ DT JJ NN NN IN JJ CC JJ . The 2010 Poverty Assessment shows that more than 4 out of 10 people live in poverty . DT CD NN NN VBZ IN JJR IN CD IN IN CD NNS VBP IN NN . The sizable trade deficit and heavy foreign debt burden continue to be major concerns . DT JJ NN NN CC JJ JJ NN NN VBP TO VB JJ NNS . A CAT fell in love with a handsome young man , and entreated Venus to change her into the form of a woman . DT NN VBD IN NN IN DT JJ JJ NN , CC VBD NNP TO VB PRP IN DT NN IN DT NN . Venus consented to her request and transformed her into a beautiful damsel , so that the youth saw her and loved her , and took her home as his bride . NNP VBD TO PRP$ NN CC VBD PRP IN DT JJ NN , RB IN DT NN VBD PRP CC VBD PRP , CC VBD PRP$ NN IN PRP$ NN . While the two were reclining in their chamber , Venus wishing to discover if the Cat in her change of shape had also altered her habits of life , let down a mouse in the middle of the room . IN DT CD VBD VBG IN PRP$ NN , NNP VBG TO VB IN DT NN IN PRP$ NN IN NN VBD RB VBN PRP$ NNS IN NN , VB RP DT NN IN DT NN IN DT NN . The Cat , quite forgetting her present condition , started up from the couch and pursued the mouse , wishing to eat it . DT NN , RB VBG PRP$ JJ NN , VBD RP IN DT NN CC VBD DT NN , VBG TO VB PRP . Venus was much disappointed and again caused her to return to her former shape . NNP VBD RB JJ CC RB VBD PRP TO VB TO PRP$ JJ NN . Nature exceeds nurture . NN VBZ NN . A Hart hotly pursued by the hounds fled for refuge into an ox-stall , and buried itself in a truss of hay , leaving nothing to be seen but the tips of his horns . DT NNP RB VBN IN DT NNS VBD IN NN IN DT NN , CC VBD PRP IN DT NN IN NN , VBG DT TO VB VBN CC DT NNS IN PRP$ NNS . Soon after the Hunters came up and asked if any one had seen the Hart . RB IN DT NNPS VBD RB CC VBN IN DT CD VBD VBN DT NNP . The stable boys , who had been resting after their dinner , looked round , but could see nothing , and the Hunters went away . DT JJ NNS , WP VBD VBN VBG IN PRP$ NN , VBD NN , CC MD VB DT , CC DT NNP VBD RB . Shortly afterwards the master came in , and looking round , saw that something unusual had taken place . RB RB DT NN VBD IN , CC VBG NN , VBD IN DT JJ VBD VBN NN . He pointed to the truss of hay and said : ' What are those two curious things sticking out of the hay ? ' PRP VBD TO DT NN IN NN CC VBD : `` WP VBP DT CD JJ NNS VBG IN IN DT NN . `` And when the stable boys came to look they discovered the Hart , and soon made an end of him . CC WRB DT JJ NNS VBD TO VB PRP VBD DT NNP , CC RB VBD DT NN IN PRP . He thus learnt that PRP RB VBP DT Nothing escapes the master 's eye . DT VBZ DT NN POS NN . The people who say they would rather push a Ford than drive a Chevy usually do . DT NNS WP VBP PRP MD RB VB DT NN IN VB DT NN RB VBP . U.S. officials say China is willing to send hundreds of engineers to Sudan 's troubled Darfur region as part of a planned United Nations-backed deployment of peacekeepers . NNP NNS VBP NNP VBZ JJ TO VB NNS IN NNS TO NNP POS JJ NNP NN IN NN IN DT JJ NNP NNP NN IN NNS . State Department spokesman Gonzalo Gallegos on Monday welcomed China 's decision , calling it a positive development . NNP NNP NN NNP NNP IN NNP VBD NNP POS NN , VBG PRP DT JJ NN . But he also called on Beijing to use its significant influence with Khartoum to agree to the full deployment of a hybrid U.N.-African Union force of more than 20-thousand troops as soon as possible . CC PRP RB VBD IN NNP TO VB PRP$ JJ NN IN NNP TO VB TO DT JJ NN IN DT JJ NNP NNP NN IN JJR IN JJ NNS RB RB IN JJ . Sudan has resisted international pressure to allow the peacekeepers , who would strengthen an existing African Union force in Darfur . NNP VBZ VBN JJ NN TO VB DT NNS , WP MD VB DT JJ NNP NNP NN IN NNP . Fighting between rebels and pro-government forces in Darfur has killed some 2,00,000 people since 2003 . VBG IN NNS CC JJ NNS IN NNP VBZ VBN DT CD NNS IN CD . More than two million others have been displaced . JJR IN CD CD NNS VBP VBN VBN . Sudan 's government is accused of arming militias known as Janjaweed that are blamed for most of the conflict . NNP POS NN VBZ VBN IN VBG NNS VBN IN NNP WDT VBP VBN IN JJS IN DT NN . World oil prices rose Monday as investors waited for results from a meeting between President Bush and Saudi Crown Prince Abdullah in Texas about oil supplies , prices and other issues . NNP NN NNS VBD NNP IN NNS VBD IN NNS IN DT NN IN NNP NNP CC NNP NNP NNP NNP IN NNP IN NN NNS , NNS CC JJ NNS . Saudi Arabia is the world 's largest crude oil supplier and the only member of the Organization of Petroleum Exporting Countries that could significantly increase oil output soon . NNP NNP VBZ DT NN POS JJS NN NN NN CC DT JJ NN IN DT NNP IN NNP NNP NNS WDT MD RB VB NN NN RB . The benchmark price of crude oil rose as high as 26 cents , to $ 55.65 a barrel on the New York Mercantile Exchange . DT JJ NN IN JJ NN VBD RB JJ IN CD NNS , TO $ CD DT NN IN DT NNP NNP NNP NNP . Analysts blame recent price hikes on a series of refinery breakdowns that make it more difficult to turn crude oil into gasoline to meet expected demand . NNS VBP JJ NN NNS IN DT NN IN NN NNS WDT VBP PRP RBR JJ TO VB JJ NN IN NN TO VB VBN NN . Crude oil prices hit a record high of $ 58.28 in early April , then declined for a while before the recent rebound . JJ NN NNS VBD DT NN NN IN $ CD IN JJ NNP , RB VBD IN DT NN IN DT JJ NN . The U.S. military says a man dressed in an Afghan army uniform has shot and killed two U.S. soldiers outside a top security prison near Kabul . DT NNP NN VBZ DT NN VBN IN DT JJ NN NN VBZ VBN CC VBN CD NNP NNS IN DT JJ NN NN IN NNP . Military spokesman , Major Sheldon Smith says the gunman wounded two other American soldiers in the shooting Sunday . NNP NN , NNP NNP NNP VBZ DT NN VBD CD JJ JJ NNS IN DT NN NNP . The spokesman says the gunman was shot dead by Afghan troops at the prison . DT NN VBZ DT NN VBD VBN JJ IN JJ NNS IN DT NN . The motive for the attack is unclear . DT NN IN DT NN VBZ JJ . Earlier , Afghan officials said a remote-controlled roadside bomb killed five policemen in Ghazni province in eastern Afghanistan . RB , JJ NNS VBD DT JJ NN NN VBD CD NNS IN NNP NN IN JJ NNP . Authorities also said a suicide bomber detonated explosives near police in the western province of Farah , killing only the bomber . NNS RB VBD DT NN NN VBD NNS IN NN IN DT JJ NN IN NNP , VBG RB DT NN . In the past year , Taleban insurgents have dramatically increased their attacks against Afghan authorities and U.S.-led coalition troops . IN DT JJ NN , NNP NNS VBP RB VBN PRP$ NNS IN JJ NNS CC JJ NN NNS . U.S.-led forces pushed the Taleban from power in late 2001 following the September 11 , 2001 terrorist attacks . JJ NNS VBD DT NNP IN NN IN JJ CD VBG DT NNP CD , CD JJ NNS . A fellow hunter who was accidentally shot and wounded by U.S. Vice President Dick Cheney is recovering in stable condition . DT JJ NN WP VBD RB VBN CC VBN IN NNP NNP NNP NNP NNP VBZ VBG IN JJ NN . A hospital spokesman in Corpus Christi , Texas said 78-year-old attorney Harry Whittington is alert and doing well . DT NN NN IN NNP NNP , NNP VBD JJ NN NNP NNP VBZ JJ CC VBG RB . The spokesman said Whittington will undergo more tests Monday , and it is not yet clear when he will be released from the hospital . DT NN VBD NNP MD VB JJR NNS NNP , CC PRP VBZ RB RB JJ WRB PRP MD VB VBN IN DT NN . The accident happened Saturday while he and the vice president were hunting quail in southern Texas . DT NN VBD NNP IN PRP CC DT NN NN VBD VBG NN IN JJ NNP . A witness to the shooting , Katharine Armstrong , said Cheney fired a shotgun at a flying bird without realizing his companion was in the line of fire . DT NN TO DT NN , NNP NNP , VBD NNP VBD DT NN IN DT VBG NN IN VBG PRP$ NN VBD IN DT NN IN NN . Whittington was hit with shotgun pellets in his right cheek , neck and chest Cheney visited Whittington in the hospital Sunday before returning to Washington . NNP VBD VBN IN JJ NNS IN PRP$ JJ NN , NN CC NN NNP VBD NNP IN DT NN NNP IN VBG TO NNP . The vice president is an avid hunter . DT NN NN VBZ DT JJ NN . The Palestinian militant group Islamic Jihad says an Israeli airstrike in the Gaza strip has killed three of its members , including a top commander . DT JJ JJ NN NNP NNP VBZ DT JJ NN IN DT NNP NN VBZ VBN CD IN PRP$ NNS , VBG DT JJ NN . The Israeli army confirmed the strike on a vehicle carrying the militants Thursday in Gaza City . DT JJ NN VBD DT NN IN DT NN VBG DT NNS NNP IN NNP NNP . Earlier Thursday in the southern Gaza Strip , Palestinian medical officials said Israeli forces killed a Hamas militant during a military operation . RB NNP IN DT JJ NNP NNP , JJ JJ NNS VBD JJ NNS VBD DT NNP NN IN DT JJ NN . The Israeli army said the operation was aimed at preventing terrorist threats . DT JJ NN VBD DT NN VBD VBN IN VBG JJ NNS . The area is a source for rocket fire into Israel . DT NN VBZ DT NN IN NN NN IN NNP . In the occupied West Bank , the Israeli military said a Palestinian man tried to stab a soldier near a Jewish settlement . IN DT JJ NNP NNP , DT JJ NN VBD DT JJ NN VBD TO VB DT NN IN DT JJ NN . It said another soldier hit the attacker in the head , seriously injuring him . PRP VBD DT NN VBD DT NN IN DT NN , RB VBG PRP . Palestinian witnesses say that during a scuffle an Israeli soldier shot the man , who later died of his wounds . JJ NNS VBP IN IN DT NN DT JJ NN VBD DT NN , WP RB VBD IN PRP$ NNS . An attempt to address America 's weight problem has run into trouble in New York . DT NN TO VB NNP POS NN NN VBZ VBN IN NN IN NNP NNP . Health officials are trying to increase the city 's consumption of fruits and vegetables , especially in less affluent neighborhoods where obesity rates are higher . NNP NNS VBP VBG TO VB DT NN POS NN IN NNS CC NNS , RB IN JJR JJ NNS WRB NN NNS VBP JJR . Given that more than half of New York adults are overweight or obese - and an estimated 7,00,000 suffer from diabetes - the argument is not over the need for action . VBN IN JJR IN NN IN NNP NNP NNS VBP JJ CC JJ : CC DT JJ CD VBP IN NNS IN DT NN VBZ RB IN DT NN IN NN . Instead , the issue is the way the city has gone about it . RB , DT NN VBZ DT NN DT NN VBZ VBN IN PRP . Paige Kollock has more . NNP NNP VBZ RBR . Thousands of demonstrators have gathered in Jerusalem to protest any renewal of a Jewish settlement freeze in the occupied West Bank or East Jerusalem . NNS IN NNS VBP VBN IN NNP TO VB DT NN IN DT JJ NN NN IN DT JJ NNP NNP CC NNP NNP . The protesters , who rallied late Thursday , also voiced support for a letter signed by dozens of Israeli rabbis this month that would forbid the rental of homes to non-Jews . DT NNS , WP VBD JJ NNP , RB VBD NN IN DT NN VBN IN NNS IN JJ NNS DT NN WDT MD VB DT NN IN NNS TO JJ . The protest comes in the wake of increased tensions between Israelis and Palestinians over settlement construction , a key issue in U.S.-mediated peace talks between the two sides . DT NN VBZ IN DT NN IN VBN NNS IN NNS CC NNS IN NN NN , DT JJ NN IN JJ NN NNS IN DT CD NNS . Direct talks between the two sides broke down after an Israeli freeze on West Bank settlement building expired in September . JJ NNS IN DT CD NNS VBD RP IN DT JJ NN IN NNP NNP NN NN VBD IN NNP . Palestinians oppose construction on land they want as part of a future state . NNS VBP NN IN NN PRP VBP IN NN IN DT JJ NN . Palestinians want a state that would include the West Bank , Gaza and East Jerusalem -- land captured by Israel in the 1967 Mideast war . NNS VBP DT NN WDT MD VB DT NNP NNP , NNP CC NNP NNP : NN VBN IN NNP IN DT CD JJ NN . Israel has not agreed to those conditions . NNP VBZ RB VBN TO DT NNS . A new poll indicates only a third of Americans believe their members of Congress are honest . DT JJ NN VBZ RB DT NN IN NNS VBP PRP$ NNS IN NNP VBP JJ . In a poll of 1,000 adults taken October 3 through 5 , the Associated Press reports , 45 percent of those surveyed gave Congress poor marks for honesty and ethics . IN DT NN IN CD NNS VBN NNP CD IN CD , DT NNP NNP VBZ , CD NN IN DT VBN VBD NNP JJ NNS IN NN CC NNS . One-third of the respondents said congressional ethics are good , and 21 percent said congressional ethics are neither good nor poor . NNP IN DT NNS VBD JJ NNS VBP JJ , CC CD NN VBD JJ NNS VBP RB JJ CC JJ . Only 35 percent said they approved of the way Congress does its job . RB CD NN VBD PRP VBD IN DT NN NNP VBZ PRP$ NN . That number is down from 44 percent in a similar poll taken in February . DT NN VBZ RB IN CD NN IN DT JJ NN VBN IN NNP . Two top Republican lawmakers are being investigated for ethics issues . CD JJ JJ NNS VBP VBG VBN IN NNS NNS . Senate Majority Leader Bill Frist is the subject of a federal probe for possible insider stock trading . NNP NNP NNP NNP NNP VBZ DT NN IN DT JJ NN IN JJ NN NN NN . Former House Majority Leader Tom Delay was charged in Texas earlier this month with violating campaign finance laws . JJ NNP NNP NNP NNP NNP VBD VBN IN NNP RBR DT NN IN VBG NN NN NNS . Venezuelan President Hugo Chavez has endorsed Nicaraguan presidential candidate Daniel Ortega to win his country 's November election . JJ NNP NNP NNP VBZ VBN JJ JJ NN NNP NNP TO VB PRP$ NN POS NNP NN . Both men appeared on President Chavez 's weekly television broadcast Sunday , where Mr. Chavez told Ortega , ' I hope you win . ' DT NNS VBD IN NNP NNP POS JJ NN NN NNP , WRB NNP NNP VBD NNP , `` PRP VBP PRP VBP . `` The endorsement comes on the heels of a recommendation from the U.S. State Department last week that Nicaraguans reject not only Ortega , but also former Nicaraguan President Arnoldo Aleman , who is also a presidential candidate . DT NN VBZ IN DT NNS IN DT NN IN DT NNP NNP NNP JJ NN IN NNS VBP RB RB NNP , CC RB JJ JJ NNP NNP NNP , WP VBZ RB DT JJ NN . A Department spokesman , Sean McCormack , said that both men are ' discredited figures from Nicaragua 's past . ' DT NNP NN , NNP NNP , VBD IN DT NNS VBP `` VBN NNS IN NNP POS NN . `` Ortega led the leftist Sandanista movement against Contra rebels supported by Washington in the 1980s . NNP VBD DT JJ NNP NN IN NNP NNS VBN IN NNP IN DT NNS . The State Department says the U.S. ambassador in Nicaragua is meeting with all parties that have expressed an interest in a ' democratic electoral process . ' DT NNP NNP VBZ DT NNP NN IN NNP VBZ VBG IN DT NNS WDT VBP VBN DT NN IN DT `` JJ JJ NN . `` French President Nicolas Sarkozy says European Union leaders have agreed on a common approach to reform the world financial system ahead of this month 's summit on the issue in Washington . JJ NNP NNP NNP VBZ NNP NNP NNS VBP VBN IN DT JJ NN TO VB DT NN JJ NN RB IN DT NN POS NN IN DT NN IN NNP . The French president , whose country holds the rotating EU presidency , told reporters the 27 leaders , meeting in Brussels , had agreed on the need for a fully coordinated political and economic response to the crisis . DT JJ NN , WP$ NN VBZ DT VBG NNP NN , VBD NNS DT CD NNS , NN IN NNP , VBD VBN IN DT NN IN DT RB VBN JJ CC JJ NN TO DT NN . Earlier , EU officials acknowledged some disagreement among union members about how involved governments should be in the financial reform . RB , NNP NNS VBD DT NN IN NN NNS IN WRB JJ NNS MD VB IN DT JJ NN . Members also questioned how much will be accomplished at the Washington summit as the nation prepares to welcome a new presidential administration . NNS RB VBD WRB RB MD VB VBN IN DT NNP NN IN DT NN VBZ TO VB DT JJ JJ NN . European Commission President Jose Manuel Barroso has said it will take unprecedented levels of global coordination to deal with the financial meltdown . JJ NNP NNP NNP NNP NNP VBZ VBN PRP MD VB JJ NNS IN JJ NN TO VB IN DT JJ NN . Leaders of wealthy nations and the heads of major developing economies gather in Washington November 15 to focus on the worldwide economic downturn . NNS IN JJ NNS CC DT NNS IN JJ VBG NNS VBP IN NNP NNP CD TO VB IN DT JJ JJ NN . Indonesian health authorities said Monday an elderly woman who died overnight is the country 's 54th fatal bird flu case . JJ NN NNS VBD NNP DT JJ NN WP VBD RB VBZ DT NN POS JJ JJ NN NN NN . The 67-year-old woman was from the town of Bandung in West Java . DT JJ NN VBD IN DT NN IN NNP IN NNP NNP . An 11-year-old boy died from bird flu in a Jakarta hospital Saturday night . DT JJ NN VBD IN NN NN IN DT NNP NN NNP NN . Indonesia has the highest number of bird flu-related deaths in the world . NNP VBZ DT JJS NN IN NN JJ NNS IN DT NN . The disease has killed at least 149 people worldwide over the past three years . DT NN VBZ VBN IN JJS CD NNS JJ IN DT JJ CD NNS . Most victims contract the virus from dead or sick birds . JJS NNS NN DT NN IN JJ CC JJ NNS . Typhoon Damrey , now a tropical storm , pounded northern and eastern Vietnam Tuesday , killing at least one person , injuring several others and causing widespread damage . NNP NNP , RB DT JJ NN , VBD JJ CC JJ NNP NNP , VBG IN JJS CD NN , VBG JJ NNS CC VBG JJ NN . Vietnamese authorities say Damrey came ashore early this morning in Thanh Hoa province , south of Hanoi , with heavy rain and winds around 100 kilometers per hour . JJ NNS VBP NNP VBD RB RB DT NN IN NNP NNP NN , NN IN NNP , IN JJ NN CC NNS IN CD NNS IN NN . Officials say some protective dikes along the eastern coastline were seriously damaged , and several provinces lost electricity . NNS VBP DT JJ NNS IN DT JJ NN VBD RB VBN , CC JJ NNS VBD NN . Hanoi Radio said the storm weakened as it moved towards Laos . NNP NNP VBD DT NN VBD IN PRP VBD IN NNP . Before hitting Vietnam , Damrey slammed into the southern Chinese provinces of Hainan and Guangdong on Monday . IN VBG NNP , NNP VBD IN DT JJ JJ NNS IN NNP CC NNP IN NNP . China ' state news agency , Xinhua , said the storm killed at least 16 people on Hainan and caused an island-wide blackout . NNP POS NN NN NN , NNP , VBD DT NN VBD IN JJS CD NNS IN NNP CC VBD DT JJ NN . Chinese officials said Damrey caused more than $ 1 billion in direct losses , mainly to agriculture . JJ NNS VBD NNP VBD JJR IN $ CD CD IN JJ NNS , RB TO NN . Iraqi officials say two car bombs in the Shi'ite holy city of Karbala have killed at least five people and wounded about 55 . JJ NNS VBP CD NN NNS IN DT NNP JJ NN IN NNP VBP VBN IN JJS CD NNS CC VBN IN CD . Police say the first bomb exploded Monday near the Imam Hussein shrine , a holy site for Shi'ite Muslims . NNS VBP DT JJ NN VBD NNP IN DT NNP NNP NN , DT JJ NN IN NNP NNPS . Officials say a second blast went off minutes later in the vicinity , near a provincial office . NNS VBP DT JJ NN VBD RP NNS RB IN DT NN , IN DT JJ NN . Dozens of demobilized soldiers have taken over the home of ousted Haitian President Jean-Bertrand Aristide in a Port-au-Prince suburb . NNS IN JJ NNS VBP VBN IN DT NN IN JJ JJ NNP NNP NNP IN DT JJ NN . A spokesman for the former soldiers says they plan to use the home as a base to improve security for people in the area . DT NN IN DT JJ NNS VBZ PRP VBP TO VB DT NN IN DT NN TO VB NN IN NNS IN DT NN . The action comes one day after U.N. peacekeepers stormed a stronghold of Mr. Aristide 's supporters to control areas that have been flashpoints of violence . DT NN VBZ CD NN IN NNP NNS VBD DT NN IN NNP NNP POS NNS TO VB NNS WDT VBP VBN NNS IN NN . Meanwhile , the top U.S. diplomat for Latin America , Roger Noriega , Wednesday called on governments and institutions to speed up disbursement of more than $ 1.3 billion pledged to Haiti at a World Bank conference in July . RB , DT JJ NNP NN IN NNP NNP , NNP NNP , NNP VBD IN NNS CC NNS TO VB RP NN IN JJR IN $ CD CD VBN TO NNP IN DT NNP NNP NN IN NNP . Mr. Noriega also stressed the need for Haiti 's interim leadership to provide security , prepare for elections , and defend the human rights of Haitians . NNP NNP RB VBD DT NN IN NNP POS JJ NN TO VB NN , VB IN NNS , CC VB DT JJ NNS IN NNS . The United Nations is appealing for more than $ 180 million next year to help refugees from Sudan 's Darfur region who have fled to neighboring Chad . DT NNP NNP VBZ VBG IN JJR IN $ CD CD JJ NN TO VB NNS IN NNP POS NNP NN WP VBP VBN TO VBG NNP . The U.N. Office for the Coordination of Humanitarian Affairs says that is a 10 percent increase over this year 's budget . DT NNP NNP IN DT NN IN NNP NNP VBZ DT VBZ DT CD NN NN IN DT NN POS NN . It says the money will be used to provide both refugees and the local population with food and water as well as basic services such as health and education . PRP VBZ DT NN MD VB VBN TO VB DT NNS CC DT JJ NN IN NN CC NN RB RB IN JJ NNS JJ IN NN CC NN . The United Nations estimates 2,00,000 Sudanese have fled to eastern Chad to escape attacks by pro-government Arab militia . DT NNP NNP VBZ CD NNS VBP VBN TO JJ NNP TO VB NNS IN JJ JJ NN . It says the large influx has led to growing tensions between the refugees and the local Chadian population , as the two groups increasingly compete for scarce food , water and land . PRP VBZ DT JJ NN VBZ VBN TO VBG NNS IN DT NNS CC DT JJ JJ NN , IN DT CD NNS RB VBP IN JJ NN , NN CC NN . Federal prosecutors in Germany say police have arrested an Iraqi man suspected of distributing video and audio messages recorded by al-Qaida leaders . NNP NNS IN NNP VBP NNS VBP VBN DT JJ NN VBN IN VBG NN CC NN NNS VBN IN NNP NNS . Prosecutors say the 36-year-old Iraqi , identified only as Ibrahim R. , was arrested Tuesday near the western city of Osnabrueck . NNS VBP DT JJ NN , VBN RB IN NNP NNP , VBD VBN NNP IN DT JJ NN IN NNP . He is accused of spreading via the Internet a series of audio and video messages from al-Qaida leaders , including Osama bin Laden and Ayman al-Zawahiri , the number-two leader in the terrorist network . PRP VBZ VBN IN VBG IN DT NNP DT NN IN NN CC NN NNS IN NNP NNS , VBG NNP NNP NNP CC NNP NNP , DT JJ NN IN DT NN NN . The man is facing charges including aiding and supporting a terrorist organization . DT NN VBZ VBG NNS VBG VBG CC VBG DT JJ NN . He will be brought before a judge on Wednesday . PRP MD VB VBN IN DT NN IN NNP . Video and audio message from Bin Laden and Zawahiri have repeatedly threatened western countries , including the United States , with violent attacks . NN CC NN NN IN NNP NNP CC NNP VBP RB VBN JJ NNS , VBG DT NNP NNPS , IN JJ NNS . U.S. officials have ordered a recall of 143 million pounds of beef produced by a California processor accused of violating food safety regulations , in the largest recall in U.S. history . NNP NNS VBP VBN DT NN IN CD CD NNS IN NN VBN IN DT NNP NN VBN IN VBG NN NN NNS , IN DT JJS NN IN NNP NN . The U.S. Department of Agriculture announced Sunday the recall of frozen beef produced during the past two years by the Westland / Hallmark Meat Company . DT NNP NNP IN NNP VBD NNP DT NN IN JJ NN VBN IN DT JJ CD NNS IN DT NNP NNP NNP NNP NN . Federal officials suspended operations at the plant last week after undercover video showed crippled and sick animals being shoved into the slaughterhouse by a worker on a forklift . NNP NNS VBD NNS IN DT NN JJ NN IN NN NN VBD JJ CC JJ NNS VBG VBN IN DT NN IN DT NN IN DT NN . Regulations call for the removal from the food supply of cattle that are unable to walk because they carry higher risk for a number of diseases , including Mad Cow disease . NNS VBP IN DT NN IN DT NN NN IN NNS WDT VBP JJ TO VB IN PRP VBP JJR NN IN DT NN IN NNS , VBG NNP NNP NN . The USDA said it is extremely unlikely any of the sick animals at the plant had Mad Cow disease . DT NNP VBD PRP VBZ RB JJ DT IN DT JJ NNS IN DT NN VBD VBN NNP NN . Hundreds of Pakistani investors rioted at the Karachi Stock Exchange Thursday demanding a halt in trading after share prices fell for the 15th straight session . NNS IN JJ NNS VBD IN DT NNP NNP NNP NNP VBG DT NN IN NN IN NN NNS VBD IN DT JJ JJ NN . The exchange 's security chief Mohammed Aslam said investors began smashing windows after the administration declined to suspend trading . DT NN POS NN NN NNP NNP VBD NNS VBD VBG NNS IN DT NN VBD TO VB NN . Similar protests also broke out in Lahore , where investors burned tires and blocked roads . JJ NNS RB VBD RP IN NNP , WRB NNS VBD NNS CC VBN NNS . The Karachi Stock Exchange index has fallen 14 percent since Monday . DT NNP NNP NNP NN VBZ VBN CD NN IN NNP . Angry investors blamed the government for the recent volatility , after regulators relaxed curbs on daily stock price movements . JJ NNS VBD DT NN IN DT JJ NN , IN NNS VBD NNS IN JJ NN NN NNS . Persistent concerns about economic and political instability have also contributed to a decline in Pakistani stocks . JJ NNS IN JJ CC JJ NN VBP RB VBN TO DT NN IN JJ NNS . Authorities in the western Indian state of Maharashtra say a passenger bus has plunged into a ravine , killing 21 people and injuring 40 others . NNS IN DT JJ JJ NN IN NNP VBP DT NN NN VBZ VBN IN DT NN , VBG CD NNS CC VBG CD NNS . The authorities say the accident happened in early afternoon Saturday near Vani town . DT NNS VBP DT NN VBD IN JJ NN NNP IN NNP NN . They say the injured were transferred to local hospitals and that an investigation is under way . PRP VBP DT NN VBD VBN TO JJ NNS CC IN DT NN VBZ IN NN . The accident comes one day after 53 people were killed when an overcrowded bus plunged into a deep gorge in Indian Kashmir . DT NN VBZ CD NN IN CD NNS VBD VBN WRB DT JJ NN VBD IN DT JJ NN IN JJ NNP . Also Saturday , in an unrelated development , a moderate earthquake struck near India 's Andaman Islands . RB NNP , IN DT JJ NN , DT JJ NN VBD IN NNP POS NNP NNP . The Hong Kong Observatory and the Indian Meteorological Department say the quake measured 5.8 on the Richter scale and was centered west of the islands . DT NNP NNP NNP CC DT JJ NNP NNP VBP DT NN VBD CD IN DT NNP NN CC VBD VBN JJS IN DT NNS . There were no immediate reports of damage or injuries . EX VBD DT JJ NNS IN NN CC NNS . Security officials in Iraq say a car bomb has killed at least two people and wounded five in central Baghdad . NN NNS IN NNP VBP DT NN NN VBZ VBN IN JJS CD NNS CC VBN CD IN JJ NNP . Monday 's bombing happened in the capital 's Karrada district . NNP POS NN VBD IN DT NN POS NNP NN . Also in Baghdad , the U.S. military says an American soldier was killed in an attack on his patrol . RB IN NNP , DT NNP NN VBZ DT JJ NN VBD VBN IN DT NN IN PRP$ NN . The military said the soldier was killed by small-arms fire on Sunday . DT NN VBD DT NN VBD VBN IN NNS NN IN NNP . In other violence Sunday , bomb attacks killed at least nine people and wounded about 70 . IN JJ NN NNP , NN NNS VBD IN JJS CD NNS CC VBD IN CD . Iraqi officials said a suicide truck bomber attacked a police checkpoint in the northern city of Kirkuk , killing three people . JJ NNS VBD DT NN NN NN VBD DT NN NN IN DT JJ NN IN NNP , VBG CD NNS . Another suicide truck bomber struck the northern city of Mosul , killing two people . DT NN NN NN VBD DT JJ NN IN NNP , VBG CD NNS . A roadside bomb blast hit a minibus in eastern Iraq 's Diyala province , killing three people . DT NN NN NN VBD DT NN IN JJ NNP POS NNP NN , VBG CD NNS . Liberian election officials have opened hearings into electoral fraud claims by presidential candidate George Weah , who trails by a large margin in the country 's run-off vote . JJ NN NNS VBP VBN NNS IN JJ NN NNS IN JJ NN NNP NNP , WP VBZ IN DT JJ NN IN DT NN POS NN NN . Mr. Weah has alleged there was cheating , including pre-marked ballots , in last week 's second round election pitting him against former Finance Minister Ellen Johnson-Sirleaf . NNP NNP VBZ VBN EX VBD NN , VBG JJ NNS , IN JJ NN POS JJ NN NN VBG PRP IN JJ NNP NNP NNP NNP . He has called for a re-run of the poll . PRP VBZ VBN IN DT NN IN DT NN . A final vote count earlier this week showed Mrs. Johnson-Sirleaf won 59 percent of the vote to 41 percent for Mr. Weah , a former soccer ( football ) star . DT JJ NN NN RBR DT NN VBD NNP NNP VBD CD NN IN DT NN TO CD NN IN NNP NNP , DT JJ NN LRB NN RRB NN . Election officials said the results are considered preliminary until an investigation is completed into Mr. Weah 's allegations . NNP NNS VBD DT NNS VBP VBN JJ IN DT NN VBZ VBN IN NNP NNP POS NNS . International observers say there was no evidence of widespread fraud . JJ NNS VBP EX VBD DT NN IN JJ NN . And leaders from several African countries praised the run-off as peaceful , transparent , free and fair . CC NNS IN JJ JJ NNS VBD DT NN IN JJ , JJ , JJ CC JJ . Final results are expected next week . JJ NNS VBP VBN JJ NN . Iraqi officials say a suicide bomber has killed three people and wounded at least 10 others in central Baghdad . JJ NNS VBP DT NN NN VBZ VBN CD NNS CC VBN IN JJS CD NNS IN JJ NNP . Officials say the bomber targeted a police unit Wednesday in the Karradah neighborhood . NNS VBP DT NN VBD DT NN NN NNP IN DT NNP NN . Also Wednesday , two Iraqi policemen were killed by a suicide bomber in the northern city , Mosul . RB NNP , CD JJ NNS VBD VBN IN DT NN NN IN DT JJ NN , NNP . Violence in Iraq has dropped sharply over the past year , but the security situation remains fragile . NN IN NNP VBZ VBN RB IN DT JJ NN , CC DT NN NN VBZ JJ . The U.S. military has been transferring security responsibilities to the Iraqi government , with U.S. forces scheduled to withdraw from the country by 2011 . DT NNP NN VBZ VBN VBG NN NNS TO DT JJ NN , IN NNP NNS VBN TO VB IN DT NN IN CD . Czech officials are accusing Russia of interfering in their internal affairs by threatening military action against a planned U.S. missile defense system on Czech soil . JJ NNS VBP VBG NNP IN VBG IN PRP$ JJ NNS IN VBG JJ NN IN DT JJ NNP NN NN NN IN JJ NN . The Czech Defense Ministry Thursday called Russia 's reaction to the defense shield pact inappropriate rhetoric . DT JJ NNP NNP NNP VBD NNP POS NN TO DT NN NN NN JJ NN . Russia has threatened to take military action if the United States deploys missile defense radar in the Czech Republic and interceptor missiles in Poland . NNP VBZ VBN TO VB JJ NN IN DT NNP NNPS VBZ NN NN NN IN DT JJ NNP CC JJ NNS IN NNP . Washington and Prague signed a deal this week . NNP CC NNP VBD DT NN DT NN . Talks with Poland are still under way . NNS IN NNP VBP RB IN NN . Washington says the system is aimed at averting a possible missile strike from Iran . NNP VBZ DT NN VBZ VBN IN VBG DT JJ NN NN IN NNP . Russia calls the system a threat to its security . NNP VBZ DT NN DT NN TO PRP$ NN . U.S. Defense Secretary Robert Gates says this week 's Iranian missile tests are evidence the missile defense shield is needed . NNP NNP NNP NNP NNP VBZ DT NN POS JJ NN NNS VBP NN DT NN NN NN VBZ VBN . President Bush has told Indian Prime Minister Manmohan Singh that he hopes the U.S. Congress will soon approve legislation on a civilian nuclear deal between the two nations . NNP NNP VBZ VBN JJ NNP NNP NNP NNP IN PRP VBZ DT NNP NNP MD RB VB NN IN DT JJ JJ NN IN DT CD NNS . Despite the support expressed by Mr. Bush during Thursday 's phone conversation , it is unclear whether the U.S. Senate will approve the measure . IN DT NN VBN IN NNP NNP IN NNP POS NN NN , PRP VBZ JJ IN DT NNP NNP MD VB DT NN . The deal would let India buy nuclear fuel and technology from the United States and other suppliers if New Delhi opens its civilian nuclear sites to U.N. inspection . DT NN MD VB NNP VB JJ NN CC NN IN DT NNP NNPS CC JJ NNS IN NNP NNP VBZ PRP$ JJ JJ NNS TO NNP NN . The Senate took up the measure Wednesday and discussion is expected to continue today . DT NNP VBD RP DT NN NNP CC NN VBZ VBN TO VB NN . The House of Representatives has already approved the deal . DT NNP IN NNP VBZ RB VBN DT NN . Prominent arms control experts have urged U.S. lawmakers to require that India stop producing nuclear fuel that could be used in weapons - before U.S.-India nuclear cooperation begins . NNP NNS NN NNS VBP VBN NNP NNS TO VB IN NNP VB VBG JJ NN WDT MD VB VBN IN NNS : IN NNP JJ NN VBZ . Thousands of Palestinians across the West Bank voted Thursday in the final phase of municipal elections . NNS IN NNS IN DT NNP NNP VBD NNP IN DT JJ NN IN JJ NNS . Initial estimates showed turnout was high in the first election since Israel 's withdrawal from parts of the West Bank and all of the Gaza Strip . JJ NNS VBD NN VBD JJ IN DT JJ NN IN NNP POS NN IN NNS IN DT NNP NNP CC DT IN DT NNP NNP . The ruling Fatah movement of Palestinian President Mahmoud Abbas is facing stiff opposition from candidates of the militant group Hamas . DT NN NNP NN IN JJ NNP NNP NNP VBZ VBG JJ NN IN NNS IN DT JJ NN NNP . Hamas has tried to portray Israel 's withdrawal as a militant victory . NNP VBZ VBN TO VB NNP POS NN IN DT NN NN . The vote could set the tone for Palestinian parliamentary elections in January . DT NN MD VB DT NN IN JJ JJ NNS IN NNP . Israel has said it will not help facilitate those elections if Hamas participates without first disarming . NNP VBZ VBN PRP MD RB VB VB DT NNS IN NNP VBZ IN JJ NN . In a separate development , President Abbas condemned the killing of three militants during an Israeli military raid Thursday in the West Bank . IN DT JJ NN , NNP NNP VBD DT NN IN CD NNS IN DT JJ JJ NN NNP IN DT NNP NNP . He called it an escalation that jeopardizes the peace process . PRP VBD PRP DT NN WDT VBZ DT NN NN . A top Democratic lawmaker has called on President Bush to fill the new vacancy on the Supreme Court with a moderate , mainstream justice . DT JJ JJ NN VBZ VBN IN NNP NNP TO VB DT JJ NN IN DT NNP NNP IN DT JJ , JJ NN . Senate Minority Leader Harry Reid of Nevada charged that President Bush 's far-right allies are spending millions of dollars to pressure him to appoint an extreme conservative . NNP NNP NNP NNP NNP IN NNP VBD IN NNP NNP POS JJ NNS VBP VBG NNS IN NNS TO VB PRP TO VB DT JJ NN . In the Democratic party 's weekly radio address Saturday , Mr. Reid said Justice Sandra Day O'Connor , who announced her retirement last week , was moderate and balanced the court . IN DT JJ NN POS JJ NN NN NNP , NNP NNP VBD NNP NNP NNP NNP , WP VBD PRP$ NN JJ NN , VBD JJ CC JJ DT NN . He called for her replacement to be someone who will build on consensus and unite the country . PRP VBD IN PRP$ NN TO VB DT WP MD VB IN NN CC VB DT NN . The Senate must approve Mr. Bush 's pick . DT NNP MD VB NNP NNP POS NN . Senator Reid also called for the perpetrators of the London bombings to be brought to justice , and called for increased efforts in protecting the United States . NNP NNP RB VBD IN DT NNS IN DT NNP NNS TO VB VBN TO NN , CC VBD IN VBN NNS IN VBG DT NNP NNPS . A United Nations worker from Burma was among the three people killed by Saturday 's bombing at an Internet cafe in Kabul , Afghanistan . DT NNP NNPS NN IN NNP VBD IN DT CD NNS VBN IN NNP POS NN IN DT NNP NN IN NNP , NNP . U.N. officials said Sunday the victim worked for the U.N. Office of Project Services , but did not release his name . NNP NNS VBD NNP DT NN VBD IN DT NNP NNP IN NNP NNPS , CC VBD RB VB PRP$ NN . The man had been living at a guest house connected to the Internet cafe . DT NN VBD VBN VBG IN DT NN NN VBN TO DT NNP NN . The other two men killed were Afghans , and authorities in Kabul suspect one of them was a suicide bomber . DT JJ CD NNS VBN VBD NNS , CC NNS IN NNP VBP CD IN PRP VBD DT NN NN . At least five other people were wounded . IN JJS CD JJ NNS VBD VBN . The blast destroyed the cafe , which was frequented by foreigners . DT NN VBD DT NN , WDT VBD VBN IN NNS . There has been no claim of responsibility . EX VBZ VBN DT NN IN NN . Israel has re-opened a key Gaza border crossing , ahead of an Israeli-Palestinian summit set for Tuesday in Egypt . NNP VBZ VBN DT JJ NNP NN VBG , RB IN DT JJ NN VBN IN NNP IN NNP . The Israeli army closed the Karni crossing , the main crossing for goods entering and leaving the Gaza Strip , after a militant attack there killed six Israeli civilians last month . DT JJ NN VBD DT NNP VBG , DT JJ VBG IN NNS VBG CC VBG DT NNP NNP , IN DT JJ NN RB VBD CD JJ NNS JJ NN . Hundreds of Palestinian trucks carrying produce and fresh-cut flowers were lined up at the crossing Monday awaiting the opening . NNS IN JJ NNS VBG NN CC JJ NNS VBD VBN RP IN DT VBG NNP VBG DT NN . Last week , Israel re-opened the Gaza-Egypt border crossing at Rafah , which was closed after another militant attack killed five Israeli soldiers in December . JJ NN , NNP VBD DT JJ NN VBG IN NNP , WDT VBD VBN IN DT JJ NN VBD CD JJ NNS IN NNP . Meanwhile , Israeli and Palestinian officials met Monday to make final arrangements for the summit in the Egyptian resort of Sharm al-Sheikh . RB , JJ CC JJ NNS VBD NNP TO VB JJ NNS IN DT NN IN DT JJ NN IN NNP NNP . Egyptian host President Hosni Mubarak and Jordan 's King Abdullah are also set to attend . JJ NN NNP NNP NNP CC NNP POS NNP NNP VBP RB VBN TO VB . Israeli Foreign Minister Avigdor Lieberman says his country has no plans to bomb Iran . JJ NNP NNP NNP NNP VBZ PRP$ NN VBZ DT NNS TO VB NNP . Lieberman told reporters in Moscow Wednesday that Israel does not ' need ' to carry out attacks on Iran and that Israel is a strong country and can defend itself . NNP VBD NNS IN NNP NNP IN NNP VBZ RB `` VB `` TO VB RP NNS IN NNP CC IN NNP VBZ DT JJ NN CC MD VB PRP . The Israeli foreign minister added that Iran is not just a problem for Israel but the entire Middle East and that Israel will not be the one to solve the problem . DT JJ JJ NN VBD IN NNP VBZ RB RB DT NN IN NNP CC DT JJ NNP NNP CC IN NNP MD RB VB DT CD TO VB DT NN . Lieberman made the comments during a visit to Russia . NNP VBD DT NNS IN DT NN TO NNP . Israel has repeatedly described Iran 's nuclear program as a threat to its existence . NNP VBZ RB VBN NNP POS JJ NN IN DT NN TO PRP$ NN . Israeli Prime Minister Benjamin Netanyahu raised concerns about Iran during his recent talks with U.S. officials in Washington . JJ NNP NNP NNP NNP VBD NNS IN NNP IN PRP$ JJ NNS IN NNP NNS IN NNP . Tens of thousands of anti-abortion activists are set to take part in Monday 's annual ' March on Washington ' to mark the 34th anniversary of a Supreme Court decision that legalized abortion . NNS IN NNS IN JJ NNS VBP VBN TO VB NN IN NNP POS JJ `` NNP IN NNP `` TO VB DT JJ NN IN DT NNP NNP NN WDT VBD NN . Similar marches and rallies are also taking place in cities and towns across the United States . JJ NNS CC NNS VBP RB VBG NN IN NNS CC NNS IN DT NNP NNPS . In Washington , D.C. , abortion opponents will march past the U.S. Capitol and end outside the Supreme Court . IN NNP , NNP , NN NNS MD VB IN DT NNP NN CC NN IN DT NNP NNP . President Bush is scheduled to address the demonstrators by telephone . NNP NNP VBZ VBN TO VB DT NNS IN NN . Senator Sam Brownback , a socially-conservative Republican who announced Saturday he is running for president in 2008 , is participating in the March for Life events . NNP NNP NNP , DT JJ NNP WP VBD NNP PRP VBZ VBG IN NN IN CD , VBZ VBG IN DT NNP IN NNP NNS . Activists on the other side of the issue who support abortion rights will also be holding smaller rallies in Washington and other cities . NNS IN DT JJ NN IN DT NN WP VBP NN NNS MD RB VB VBG JJR NNS IN NNP CC JJ NNS . The ' Roe versus Wade ' Supreme Court decision legalizing abortion was handed down on January 22 , 1973 . DT `` NNP IN NNP `` NNP NNP NN VBG NN VBD VBN RP IN NNP CD , CD . Iraqi authorities say a roadside bomb has killed a police general and his driver near the northern city of Kirkuk . JJ NNS VBP DT NN NN VBZ VBN DT NN NN CC PRP$ NN IN DT JJ NN IN NNP . The victim was Brigadier General Hatim Khalaf , head of the Kirkuk police operations room . DT NN VBD NNP NNP NNP NNP , NN IN DT NNP NN NNS NN . Also in northern Iraq , Kurdish officials say search teams have located a small plane that crashed three days ago near Sulaimaniyah . RB IN JJ NNP , NNP NNS VBP NN NNS VBP VBN DT JJ NN WDT VBD CD NNS RB IN NNP . They say all six people on board , including at least three German businessmen , were killed . PRP VBP DT CD NNS IN NN , VBG IN JJS CD JJ NNS , VBD VBN . The developments come a day after roadside bomb attacks in Baghdad killed an American soldier and three Iraqi policemen . DT NNS VBP DT NN IN NN NN NNS IN NNP VBD DT JJ NN CC CD JJ NNS . Separately , the U.S. military said Saturday it had freed more than 400 male Iraqi prisoners after an Iraqi-led review board recommended their release . RB , DT NNP NN VBD NNP PRP VBD VBN RBR IN CD JJ JJ NNS IN DT JJ NN NN VBD PRP$ NN . Russia and Iran have signed a landmark agreement for Moscow to supply Tehran with fuel for its first nuclear reactor . NNP CC NNP VBP VBN DT JJ NN IN NNP TO VB NNP IN NN IN PRP$ JJ JJ NN . The signing ceremony Sunday at Iran 's Bushehr nuclear power plant , which Russia helped build , had been delayed 24 hours as talks continued . DT NN NN NNP IN NNP POS NNP JJ NN NN , WDT NNP VBD VB , VBD VBN VBN CD NNS IN NNS VBD . European and U.S. officials have expressed concern that spent fuel from the reactor could be enriched and used to create nuclear weapons . JJ CC NNP NNS VBP VBN NN WDT JJ NN IN DT NN MD VB VBN CC VBN TO VB JJ NNS . Diplomats say there is evidence that Iran has known since the late 1980s how to enrich uranium . NNS VBP EX VBZ NN IN NNP VBZ VBN IN DT JJ NNS WRB TO VB NN . They say Iran obtained the information from a black market network operated by Pakistan 's Abdul Qadeer Khan . PRP VBP NNP VBD DT NN IN DT JJ NN NN VBN IN NNP POS NNP NNP NNP . Iran says the purpose of its nuclear program is the generation of electricity , not the development of nuclear weapons . NNP VBZ DT NN IN PRP$ JJ NN VBZ DT NN IN NN , RB DT NN IN JJ NNS . The new agreement calls for all spent nuclear fuel to be returned to Russia to ease concerns that Iran might reprocess it for use in nuclear weapons . DT JJ NN VBZ IN DT JJ JJ NN TO VB VBN TO NNP TO VB NNS IN NNP MD VB PRP IN NN IN JJ NNS . A Scottish court has denied bail to a Libyan man with terminal cancer who was convicted of the 1988 bombing of a U.S. airliner that killed 270 people . DT JJ NN VBZ VBN NN TO DT JJ NN IN NN NN WP VBD VBN IN DT CD NN IN DT NNP NN WDT VBD CD NNS . The former Libyan intelligence agent , Abdel Basset al-Megrahi , is currently serving a life sentence for being part of a group that planted a bomb on a Pan Am 747 that crashed over the Scottish town of Lockerbie . DT JJ JJ NN NN , NNP NNP NNP , VBZ RB VBG DT NN NN IN VBG NN IN DT NN WDT VBD DT NN IN DT NNP NNP CD WDT VBD IN DT JJ NN IN NNP . His lawyers argued he does not have long to live and deserves to be treated with compassion . PRP$ NNS VBD PRP VBZ RB VB RB TO VB CC VBZ TO VB VBN IN NN . The court turned down the man 's application for release saying he stands convicted of a serious atrocity . DT NN VBD RP DT NN POS NN IN NN VBG PRP VBZ VBN IN DT JJ NN . It added that his condition is stable and he is receiving full medical care . PRP VBD IN PRP$ NN VBZ JJ CC PRP VBZ VBG JJ JJ NN . An Iraqi soldier mans a checkpoint in the Saydiyah neighbourhood of south-west Baghdad in Iraq DT JJ NN VBZ DT NN IN DT NNP NN IN JJ NNP IN NNP Suicide bombings and ambushes by insurgents killed at least 21 people in Iraq Sunday as Iraqi security forces began a big security sweep in Baghdad . NN NNS CC NNS IN NNS VBN IN JJS CD NNS IN NNP NNP IN JJ NN NNS VBD DT JJ NN NN IN NNP . The operation is aimed at stopping insurgents who have killed more than 600 people in the last month . DT NN VBZ VBN IN VBG NNS WP VBP VBN JJR IN CD NNS IN DT JJ NN . Iraqi soldiers and police began setting up checkpoints on the southern and northern outskirts of the city early Sunday and later began street-to-street sweeps . JJ NNS CC NNS VBD VBG RP NNS IN DT JJ CC JJ NNS IN DT NN JJ NNP CC RB VBD JJ NNS . A suicide car bomber killed nine Iraqi soldiers at one of the checkpoints about 20 kilometers south of Baghdad . DT NN NN NN VBD CD JJ NNS IN CD IN DT NNS IN CD NNS RB IN NNP . Other attacks killed at least 12 Iraqi police or civilians in and around the capital . JJ NNS VBD IN JJS CD JJ NNS CC NNS IN CC IN DT NN . Oil prices in the United States dipped Tuesday after Saudi Arabia 's oil minister said there is no need for further OPEC production cuts . NN NNS IN DT NNP NNPS VBD NNP IN NNP NNP POS NN NN VBD EX VBZ DT NN IN JJ NNP NN NNS . Ali al-Naimi said in New Delhi that recent OPEC cuts are working well , and a meeting to discuss further cutbacks is unnecessary . NNP NNP VBD IN NNP NNP IN JJ NNP NNS VBP VBG RB , CC DT NN TO VB JJ NNS VBZ JJ . Oil prices fell below $ 52 a barrel , nearing a 19-month low . NN NNS VBD IN $ CD DT NN , VBG DT JJ NN . Prices have fallen steadily since the beginning of the year , as mild weather in the western hemisphere has lightened demand . NNS VBP VBN RB IN DT NN IN DT NN , IN JJ NN IN DT JJ NN VBZ VBN NN . The fall in prices comes despite the international oil cartel 's November production cut of one million barrels per day . DT NN IN NNS VBZ IN DT JJ NN NN POS NNP NN NN IN CD CD NNS IN NN . English football star David Beckham will be sidelined for around four weeks after suffering a right knee injury playing for Spanish side Real Madrid on Sunday . JJ NN NN NNP NNP MD VB VBN IN IN CD NNS IN VBG DT JJ NN NN VBG IN JJ NN NNP NNP IN NNP . The team announced Monday that the 31-year-old Beckham strained the internal lateral ligament in his right knee when he collided with advertising signs behind the goal after attempting a crossing pass into the goal area . DT NN VBD NNP IN DT JJ NNP VBD DT JJ NN NN IN PRP$ JJ NN WRB PRP VBD IN NN NNS IN DT NN IN VBG DT VBG NN IN DT NN NN . He continued playing after the collision , but was in obvious pain and limped off the field in the 69th minute . PRP VBD VBG IN DT NN , CC VBD IN JJ NN CC VBD RP DT NN IN DT JJ NN . On January 11 , Beckham signed a five-year , $ 250 million contract to join Major League Soccer 's Los Angeles Galaxy after his contract with Real Madrid expires June 30 . IN NNP CD , NNP VBD DT JJ , $ CD CD NN TO VB NNP NNP NNP POS NNP NNP NNP IN PRP$ NN IN NNP NNP VBZ NNP CD . The MLS has not commented on the injury . DT NNP VBZ RB VBN IN DT NN . President Bush is set to address the country later Wednesday on the national disaster caused by Hurricane Katrina . NNP NNP VBZ VBN TO VB DT NN RB NNP IN DT JJ NN VBN IN NNP NNP . Mr. Bush will speak from the White House Rose Garden at 2100 UTC ( 5 pm EDT ) . NNP NNP MD VB IN DT NNP NNP NNP NNP IN CD NNP LRB CD NN NNP RRB . During the flight from Mr. Bush 's ranch in Texas , the president 's plane , Air Force One , flew over the hurricane-damaged areas along the U.S. Gulf Coast . IN DT NN IN NNP NNP POS NN IN NNP , DT NN POS NN , NNP NNP CD , VBD IN DT JJ NNS IN DT NNP NNP NNP . While passing over the flooded city of New Orleans , White House spokesman Scott McClellan quoted Mr. Bush as saying ' It 's devastating . IN VBG RP DT VBN NN IN NNP NNP , NNP NNP NN NNP NNP VBD NNP NNP IN VBG `` PRP VBZ JJ . It 's got to be doubly devastating on the ground . ' PRP VBZ VBN TO VB RB VBG IN DT NN . `` White House spokesman Scott McClellan said the president will likely visit the affected region later this week . NNP NNP NN NNP NNP VBD DT NN MD RB VB DT JJ NN RB DT NN . The spokesman said Mr. Bush held a video conference with top advisers before leaving his Texas ranch . DT NN VBD NNP NNP VBD DT NN NN IN JJ NNS IN VBG PRP$ NNP NN . The discussion focused on saving lives and developing a long-term plan for dealing with displaced residents . DT NN VBD IN VBG NNS CC VBG DT JJ NN IN VBG IN JJ NNS . Lebanon 's parliament has postponed Monday 's scheduled presidential election , the latest in a series of delays during the country 's political crisis . NNP POS NN VBZ VBN NNP POS JJ JJ NN , DT JJS IN DT NN IN NNS IN DT NN POS JJ NN . Parliament Speaker Nabih Berri announced Saturday that the parliamentary voting session will be moved to February 26 . NN NN NNP NNP VBD NNP IN DT JJ NN NN MD VB VBN TO NNP CD . Lebanon has been without a head of state since late November when President Emile Lahoud 's term expired . NNP VBZ VBN IN DT NN IN NN IN JJ NNP WRB NNP NNP NNP POS NN VBD . The leadership vacuum is due to a standoff between the pro-Western governing coalition leader Saad al-Hariri and Syrian-backed opposition leader Michael Aoun . DT NN NN VBZ JJ TO DT NN IN DT JJ NN NN NN NNP NNP CC JJ NN NN NNP NNP . The two sides have agreed on an Arab League plan calling for the election of army General Michel Sulieman as president . DT CD NNS VBP VBN IN DT JJ NNP NN VBG IN DT NN IN NN NNP NNP NNP IN NN . But they differ on how to form a new national unity government . CC PRP VBP IN WRB TO VB DT JJ JJ NN NN . The opposition wants a third of the seats in the new Cabinet so it can have veto power . DT NN VBZ DT NN IN DT NNS IN DT JJ NNP IN PRP MD VB NN NN . Vera Dushevina of Russia has defeated Ivana Lisjak of Croatia , 07-Jun , 6-0 in a first-round match at the Gaz de France indoor women 's tennis tournament in Paris . NNP NNP IN NNP VBZ VBN NNP NNP IN NNP , CD , CD IN DT JJ NN IN DT NNP NNP NNP JJ NNS POS NN NN IN NNP . Dushevina , ranked 46th in the world , next meets Australian Open champion Amelie Mauresmo of France in the second round Wednesday . NNP , VBD CD IN DT NN , JJ VBZ JJ NNP NN NNP NNP IN NNP IN DT JJ NN NNP . The top-seeded Mauresmo has a first-round bye . DT JJ NNP VBZ DT JJ NN . Also with byes into the second round are second-seeded Mary Pierce of France , third-seeded Russian Nadia Petrova and fourth-seeded Patty Schnyder of Switzerland . RB IN NNS IN DT JJ NN VBP JJ NNP NNP IN NNP , JJ JJ NNP NNP CC JJ NNP NNP IN NNP . In other first round play , Virginie Razzano of France beat Kveta Peschke of the Czech Republic , 06-Jan , 06-Jan . IN JJ JJ NN NN , NNP NNP IN NNP VBD NNP NNP IN DT JJ NNP , CD , CD . Razzano next plays defending champion Dinara Safina of Russia . NNP JJ NNS VBG JJ NNP NNP IN NNP . Tsvetana Pironkova of Bulgaria needed three sets to beat Lucie Safarova of the Czech Republic , 06-Feb , 02-Jun , 6-0 . NNP NNP IN NNP VBD CD NNS TO VB NNP NNP IN DT JJ NNP , CD , CD , CD . The Organization of Petroleum Exporting Countries , OPEC , has lowered its 2006 estimate for world crude oil demand . DT NNP IN NNP NNP NNPS , NNP , VBZ VBN PRP$ CD NN IN NN JJ NN NN . OPEC 's monthly oil report for August now anticipates daily demand for oil will grow by 1.3 million barrels , slightly less than last month 's forecast . NNP POS JJ NN NN IN NNP RB VBZ JJ NN IN NN MD VB IN CD CD NNS , RB JJR IN JJ NN POS NN . The 11-nation oil cartel produces more than one third of the world 's crude oil supply . DT JJ NN NN VBZ JJR IN CD NN IN DT NN POS JJ NN NN . Analysts say OPEC 's downward adjustment stems , in part , from a slowing U.S. economy which is expected to have an important impact on the crude oil market . NNS VBP NNP POS JJ NN VBZ , IN NN , IN DT VBG NNP NN WDT VBZ VBN TO VB DT JJ NN IN DT JJ NN NN . U.S. crude oil prices fell by 20 cents Wednesday to about $ 73 per barrel . NNP JJ NN NNS VBD IN CD NNS NNP TO RB $ CD IN NN . The head of India 's ruling Congress Party , Sonia Gandhi , has begun her bid to return to parliament in her constituency in northern India , just days after she quit her seat in the legislature . DT NN IN NNP POS VBG NNP NNP , NNP NNP , VBZ VBN PRP$ NN TO VB TO NN IN PRP$ NN IN JJ NNP , RB NNS IN PRP VBD PRP$ NN IN DT NN . Gandhi stepped down as a member of the lower house and head of the government 's National Advisory Council last week , following charges that she violated the constitution by holding two paid positions . NNP VBD RP IN DT NN IN DT JJR NN CC NN IN DT NN POS NNP NNP NNP JJ NN , VBG NNS IN PRP VBD DT NN IN VBG CD VBN NNS . Gandhi told thousands of cheering supporters in the city of Rae Bareli she has to give a fitting response to people who brought the charges against her , and that fitting reply will be her re-election . NNP VBD NNS IN VBG NNS IN DT NN IN NNP NNP PRP VBZ TO VB DT JJ NN TO NNS WP VBD DT NNS IN PRP , CC IN JJ NN MD VB PRP$ NN . By-election dates are yet to be announced , but she is expected to easily win back the seat . NN NNS VBP RB TO VB VBN , CC PRP VBZ VBN TO RB VB RP DT NN . The Italian-born Gandhi is the widow of former Prime Minister Rajiv Gandhi , whose mother and grandfather also were prime ministers . DT JJ NNP VBZ DT NN IN JJ NNP NNP NNP NNP , WP$ NN CC NN RB VBD JJ NNS . China 's president is making a rare visit to Pyongyang for talks with North Korean leader Kim Jong-il . NNP POS NN VBZ VBG DT JJ NN TO NNP IN NNS IN JJ JJ NN NNP NNP . State-controlled media from both nations say Mr. Kim greeted Chinese President Hu Jintao on the airport tarmac Friday , as he arrived on a three-day visit . JJ NNS IN DT NNS VBP NNP NNP VBD JJ NNP NNP NNP IN DT NN NN NNP , IN PRP VBD IN DT JJ NN . On arrival , Mr. Hu delivered a statement saying ' the China-North Korea friendship is conducive to safeguarding peace and stability and promoting development and prosperity in the region ' . IN NN , NNP NNP VBD DT NN VBG `` DT JJ NNP NN VBZ JJ TO VBG NN CC NN CC VBG NN CC NN IN DT NN `` . Mr. Hu 's trip precedes the next round of six-nation talks on North Korea 's nuclear ambitions , set to take place in Beijing early next month . NNP NNP POS NN VBZ DT JJ NN IN JJ NNS IN NNP NNP POS JJ NNS , VBN TO VB NN IN NNP RB JJ NN . It is unclear if the nuclear issue is on the agenda during Mr. Hu 's current visit . PRP VBZ JJ IN DT JJ NN VBZ IN DT NN IN NNP NNP POS JJ NN . During last month 's six-nation talks , North Korea agreed to abandon its nuclear weapons program . IN JJ NN POS NN NNS , NNP NNP VBD TO VB PRP$ JJ NNS NN . But Pyongyang later said it first wants light-water nuclear reactors for civilian energy production . CC NNP RB VBD PRP RB VBZ JJ JJ NNS IN JJ NN NN . The European Union is condemning Ethiopia 's decision to expel two EU diplomats . DT NNP NNP VBZ VBG NNP POS NN TO VB CD NNP NNS . EU Development Commissioner Louis Michel told reporters in Brussels Friday that no reason has been given for the expulsion . NNP NNP NNP NNP NNP VBD NNS IN NNP NNP IN DT NN VBZ VBN VBN IN DT NN . He called the situation ' unacceptable ' and said he has asked the Ethiopian ambassador to provide an explanation . PRP VBD DT NN `` JJ `` CC VBD PRP VBZ VBN DT JJ NN TO VB DT NN . It is not clear if the diplomats have already been deported . PRP VBZ RB JJ IN DT NNS VBP RB VBN VBN . Ethiopian state-run television Thursday reported that police detained two foreign diplomats in the south , near the Kenyan border . JJ JJ NN NNP VBD IN NNS VBD CD JJ NNS IN DT NN , IN DT JJ NN . The report said the diplomats are accused of trying to smuggle alleged Ethiopian criminals into Kenya . DT NN VBD DT NNS VBP VBN IN VBG TO VB JJ JJ NNS IN NNP . The European Union is one of Ethiopia 's largest aid donors . DT NNP NNP VBZ CD IN NNP POS JJS NN NNS . However , EU officials have been critical of the government 's crackdown of opposition leaders and journalists . RB , NNP NNS VBP VBN JJ IN DT NN POS NN IN NN NNS CC NNS . Cancun , Mexico , is hosting both international leaders and vacationing college students this week , as the city slowly recovers from a brutal pounding by Hurricane Wilma . NNP , NNP , VBZ VBG DT JJ NNS CC VBG NN NNS DT NN , IN DT NN RB VBZ IN DT JJ NN IN NNP NNP . City officials say only about half of Cancun 's 27,000 hotel rooms are open this year , after Wilma battered the resort city last October . NNP NNS VBP RB IN NN IN NNP POS CD NN NNS VBP JJ DT NN , IN NNP VBD DT NN NN JJ NNP . Winds reached well past 200 kilometers per hour . NNS VBD RB JJ CD NNS IN NN . Hotel owners say the recovery is going slowly , as they try to meet demands to build stronger structures that can withstand another such storm . NN NNS VBP DT NN VBZ VBG RB , IN PRP VBP TO VB NNS TO VB JJR NNS WDT MD VB DT JJ NN . Meanwhile , the city has refurbished many beaches , re-planted vegetation , and repaired bike paths and walkways . RB , DT NN VBZ VBN JJ NNS , JJ NN , CC VBD NN NNS CC NNS . Local residents say the student crowds are smaller this year , but still plenty have come , determined to carry on Cancun 's tradition of spring-break revelry . JJ NNS VBP DT NN NNS VBP JJR DT NN , CC RB RB VBP VBN , VBN TO VB IN NNP POS NN IN JJ NN . The fate of at least 8,000 foreign tourists vacationing in Southeast Asia remains unknown , more than a week after a tsunami pounded coastlines and beach resorts in the region . DT NN IN IN JJS CD JJ NNS VBG IN NNP NNP VBZ JJ , JJR IN DT NN IN DT NN VBD NNS CC NN NNS IN DT NN . At least 350 deaths have been confirmed as foreigners . IN JJS CD NNS VBP VBN VBN IN NNS . But officials say that number will likely rise as the identity of victims is sorted out . CC NNS VBP IN NN MD RB VB IN DT NN IN NNS VBZ VBN RP . In Thailand alone , officials say nearly half of the 5,000 reported deaths were foreign visitors . IN NNP RB , NNS VBP RB NN IN DT CD VBD NNS VBD JJ NNS . Southern Asia was at the height of its tourist season when the tsunami hit . NNP NNP VBD IN DT NN IN PRP$ NN NN WRB DT NN VBD . Sweden and the United States are reporting the most missing citizens . NNP CC DT NNP NNPS VBP VBG DT RBS JJ NNS . U.S. Secretary of State Colin Powell says as many as 5,000 Americans are unaccounted for . NNP NNP IN NNP NNP NNP VBZ RB JJ IN CD NNS VBP JJ IN . He adds there is a ' distinct possibility ' that the U.S. death toll will increase from the 15 confirmed so far . PRP VBZ EX VBZ DT `` JJ NN `` IN DT NNP NN NN MD VB IN DT CD VBN RB RB . Swedish officials say nearly 3,000 are still missing . JJ NNS VBP RB CD VBP RB VBG . A relief ship has arrived in northern Sri Lanka to deliver supplies for people cut off by fighting between Tamil Tiger rebels and government forces . DT NN NN VBZ VBN IN JJ NNP NNP TO VB NNS IN NNS VBN RP IN VBG IN NNP NNP NNS CC NN NNS . The ship was filled with 1,500 tons of food , medicine and other supplies for civilians in the Jaffna peninsula . DT NN VBD VBN IN CD NNS IN NN , NN CC JJ NNS IN NNS IN DT NNP NN . International Committee of the Red Cross officials said both sides to the conflict have promised a safe passage for the ship . NNP NNP IN DT NNP NNP NNS VBD DT NNS TO DT NN VBP VBN DT JJ NN IN DT NN . A passenger ferry also was due to arrive in the north Friday to evacuate 150 foreigners caught in the fighting for nearly two weeks . DT NN NN RB VBD JJ TO VB IN DT NN NNP TO VB CD NNS VBN IN DT NN IN RB CD NNS . Meanwhile , Sri Lanka 's military said five rebels were killed late Thursday in a clash with troops in the northeastern Batticaloa area . RB , NNP NNP POS NN VBD CD NNS VBD VBN JJ NNP IN DT NN IN NNS IN DT JJ NNP NN . The United Nations says 1,70,000 people have fled their homes to escape the violence . DT NNP NNP VBZ CD NNS VBP VBN PRP$ NNS TO VB DT NN . The Internet site of a South Korean stem cell center overloaded Tuesday as it began accepting applications from people with Parkinson 's disease and spinal cord injuries who want to participate in research . DT NNP NN IN DT JJ JJ NN NN NN VBD NNP IN PRP VBD VBG NNS IN NNS IN NNP POS NN CC JJ NN NNS WP VBP TO VB IN NN . An official at the World Stem Cell Hub said the Web site slowed to a crawl , because there were too many access attempts for about three hours . DT NN IN DT NNP NNP NNP NNP VBD DT NNP NN VBD TO DT NN , IN EX VBD RB JJ NN NNS IN IN CD NNS . The official said normal operation resumed later . DT NN VBD JJ NN VBD RB . He said computer experts were on standby in case of sabotage by those who oppose stem cell research and cloning technology . PRP VBD NN NNS VBD IN NN IN NN IN NN IN DT WP VBP NN NN NN CC VBG NN . The South Korean stem cell bank opened October 19 with the aim of providing scientists around the world with embryonic stem cells . DT JJ JJ NN NN NN VBD NNP CD IN DT NN IN VBG NNS IN DT NN IN JJ NN NNS . These cells are seen as a potential source of replacement tissue for people with a variety of ailments . DT NNS VBP VBN IN DT JJ NN IN NN NN IN NNS IN DT NN IN NNS . Forensics experts in Indonesia now say that three of four unidentifiied victims of Saturday 's bomb blasts in Bali were Australian nationals . NNS NNS IN NNP RB VBP IN CD IN CD JJ NNS IN NNP POS NN NNS IN NNP VBD JJ NNS . A total of four Australians are now confirmed to have died in the apparent suicide bombings that killed 19 people in addition to the three bombers . DT NN IN CD NNS VBP RB VBN TO VB VBN IN DT JJ NN NNS WDT VBD CD NNS IN NN TO DT CD NNS . One Japanese national was also killed in the attacks . CD JJ NN VBD RB VBN IN DT NNS . The remaining victims were Indonesian . DT VBG NNS VBD JJ . One victim remains unidentified . CD NN VBZ JJ . Wednesday , Australian officials said Foreign Minister Alexander Downer would travel to Indonesia soon to lobby the Indonesian government to ban the al-Qaida linked Jemaah Islamiyah . NNP , JJ NNS VBD NNP NNP NNP NNP MD VB TO NNP RB TO VB DT JJ NN TO VB DT NNP VBN NNP NNP . The group is believed to be behind Saturday 's bombings , as well as the 2002 Bali bombings which killed 202 people , including 88 Australians . DT NN VBZ VBN TO VB IN NNP POS NNS , RB RB IN DT CD NNP NNS WDT VBD CD NNS , VBG CD NNS . Authorities have questioned 94 people in connection with the bombings . NNS VBP VBN CD NNS IN NN IN DT NNS . However , no arrests have been made , despite a massive manhunt . RB , DT NNS VBP VBN VBN , IN DT JJ NN . British police have charged five men in an alleged terrorist plot to kidnap and behead a Muslim British soldier . JJ NNS VBP VBN CD NNS IN DT JJ JJ NN TO VB CC VB DT NNP JJ NN . Prosecutors said Friday one suspect is charged with intention to kidnap and kill a member of the armed forces . NNS VBD NNP CD NN VBZ VBN IN NN TO VB CC VB DT NN IN DT JJ NNS . The other four suspects also face terrorism charges , including helping to equip and fund the alleged kidnapping plot . DT JJ CD NNS RB VBP NN NNS , VBG VBG TO VB CC VB DT JJ NN NN . Police arrested a total of nine men last week in Birmingham in what British media have described as a plan to kidnap a British Muslim soldier who had served in Afghanistan , torture and behead him , then post a video of the gruesome events on the Internet . NNS VBD DT NN IN CD NNS JJ NN IN NNP IN WP JJ NNS VBP VBN IN DT NN TO VB DT JJ NNP NN WP VBD VBN IN NNP , VB CC VB PRP , RB VB DT NN IN DT JJ NNS IN DT NN . Iraqi militants have used the same tactic . JJ NNS VBP VBN DT JJ NN . Three of the nine suspects have been released , and one other remains in custody and has not been charged . CD IN DT CD NNS VBP VBN VBN , CC CD JJ NNS IN NN CC VBZ RB VBN VBN . America has more than 1,000 art museums , 35 aviation museums , and even a museum dedicated to rock 'n roll music . NNP VBZ JJR IN CD NN NNS , CD NN NNS , CC RB DT NN VBN TO NN CC NN NN . Now a new kind of museum is opening its doors in downtown Manhattan . RB DT JJ NN IN NN VBZ VBG PRP$ NNS IN NN NNP . Its location near the former World Trade Center site is part of an effort to revitalize the neighborhood left economically depressed after the September 11 , 2001 terrorist attacks on the U.S. PRP$ NN IN DT JJ NNP NNP NNP NN VBZ NN IN DT NN TO VB DT NN VBN RB VBN IN DT NNP CD , CD JJ NNS IN DT NNP VOA 's Nathan King reports . NNP POS NNP NNP VBZ . Police in Mexico say a group of armed men raided a drug rehabilitation facility and opened fire , killing 19 people and wounding several others . NNS IN NNP VBP DT NN IN JJ NNS VBD DT NN NN NN CC VBD NN , VBG CD NNS CC VBG JJ NNS . Officials say the rampage took place late Thursday at the Faith and Life center in the northern city of Chihuahua . NNS VBP DT NN VBD NN JJ NNP IN DT NNP CC NNP NN IN DT JJ NN IN NNP . The French news agency quotes a police official on Friday as saying 30 gunmen were involved in the attack . DT JJ NN NN VBZ DT NN NN IN NNP IN VBG CD NNS VBD VBN IN DT NN . The report says the assailants fired large-caliber weapons at patients and employees before fleeing . DT NN VBZ DT NNS VBD JJ NNS IN NNS CC NNS IN VBG . The motive for the attack is unclear . DT NN IN DT NN VBZ JJ . Mexico 's Chihuahua state , where the city of Chihuahua is located , is home to major drug cartels , and drug-related violence is frequent . NNP POS NNP NN , WRB DT NN IN NNP VBZ VBN , VBZ NN TO JJ NN NNS , CC JJ NN VBZ JJ . Kenya 's National Commission on Human Rights says both government and opposition leaders planned acts of violence following the country 's disputed presidential election . NNP POS NNP NNP IN NNP NNP VBZ DT NN CC NN NNS VBD NNS IN NN VBG DT NN POS JJ JJ NN . Vice Chairperson Florence Jaoko says the commission 's investigation showed the violence was not spontaneous . NNP NNP NNP NNP VBZ DT NN POS NN VBD DT NN VBD RB JJ . The commission says it has collected nearly 1,000 statements recounting more than 4,500 episodes of violence . DT NN VBZ PRP VBZ VBN RB CD NNS VBG JJR IN CD NNS IN NN . Earlier this month , US-based Human Rights Watch accused Kenyan politicians , local leaders , and businessmen of organizing attacks on rival ethnic groups . RBR DT NN , JJ NNP NNP NNP VBD JJ NNS , JJ NNS , CC NNS IN VBG NNS IN JJ JJ NNS . It also accused Kenyan police of using excessive force in putting down protests - a charge the police rejected . PRP RB VBD JJ NNS IN VBG JJ NN IN VBG RP NNS IN DT NN DT NN VBD . More than 1,000 people were killed in riots and ethnic violence following the December 27 election . JJR IN CD NNS VBD VBN IN NNS CC JJ NN VBG DT NNP CD NN . The opposition accused President Mwai Kibaki of rigging the vote to stay in power . DT NN VBD NNP NNP NNP IN VBG DT NN TO VB IN NN . Former U.N. Secretary-General Kofi Annan helped broker a peace deal that included a power-sharing agreement between Mr. Kibaki and opposition leader Raila Odinga . JJ NNP NNP NNP NNP VBD NN DT NN NN WDT VBD DT JJ NN IN NNP NNP CC NN NN NNP NNP . The United Nation 's agricultural organization has praised Burma for its quick response to its latest bird flu outbreaks . DT NNP NNP POS JJ NN VBZ VBN NNP IN PRP$ JJ NN TO PRP$ JJS NN NN NNS . The U.N. Food and Agriculture Organization says Burma 's response to the outbreaks have been ' quick and effective . ' DT NNP NNP CC NNP NNP VBZ NNP POS NN TO DT NNS VBP VBN `` JJ CC JJ . `` It is providing $ 1.4 million in emergency assistance to help Burma fight the disease . PRP VBZ VBG $ CD CD IN NN NN TO VB NNP VB DT NN . Burma 's state-run newspaper The New Light of Myanmar reports that 66 pheasants and 60 quail died on two farms on the outskirts of the capital , Rangoon . NNP POS JJ NN DT NNP NNP IN NNP NNS IN CD NNS CC CD NN VBD IN CD NNS IN DT NNS IN DT NN , NNP . The cases are under investigation to determine whether the birds had the deadly H5N1 strain . DT NNS VBP IN NN TO VB IN DT NNS VBD DT JJ NNP NN . Since last month four townships in Rangoon have reported bird flu cases . IN JJ NN CD NNS IN NNP VBP VBN NN NN NNS . Meanwhile , Indonesian Health Minister Siti Fadilah Supari says the country wants a legal guarantee that bird flu samples it sends to the World Health Organization will not be used for commercial gain . RB , JJ NNP NNP NNP NNP NNP VBZ DT NN VBZ DT JJ NN WDT VBD NN NNS PRP VBZ TO DT NNP NNP NNP MD RB VB VBN IN JJ NN . Rebel fighters with the Shan State National Army in Burma have joined forces and merged with the Shan State Army , in an effort to reinvigorate their five-decade struggle for independence against Burma 's military government . NNP NNS IN DT NNP NNP NNP NNP IN NNP VBP VBN NNS CC VBD IN DT NNP NNP NNP , IN DT NN TO VB PRP$ JJ NN IN NN IN NNP POS JJ NN . The merger effectively breaks a 10-year cease-fire between the Shan State National Army and Rangoon . DT NN RB VBZ DT JJ NN IN DT NNP NNP NNP NNP CC NNP . Military leaders from the rebel groups agreed to join forces at a ceremony Saturday in Doi Talaeng , a remote Shan State Army base along the Burma-Thailand border . JJ NNS IN DT NN NNS VBD TO VB NNS IN DT NN NNP IN NNP NNP , DT JJ NNP NNP NNP NN IN DT NNP NN . They called on ethnic Shan people in Burma and overseas to stand united and fight the military . PRP VBD IN JJ JJ NNS IN NNP CC RB TO VB JJ CC VB DT NN . There was no immediate public comment from the government in Rangoon . EX VBD DT JJ JJ NN IN DT NN IN NNP . U.S. Secretary of State Condoleezza Rice has criticized Israeli plans to expand a controversial settlement in the West Bank . NNP NN IN NN NNP NNP VBZ VBN JJ NNS TO VB DT JJ NN IN DT NNP NNP . In an interview published Friday by a leading U.S. newspaper , Ms. Rice said Israeli plans to build additional homes in the Maaleh Adumin settlement could threaten peace with the Palestinians and is at odds with American policy . IN DT NN VBN NNP IN DT VBG NNP NN , NNP NNP VBD JJ NNS TO VB JJ NNS IN DT NNP NNP NN MD VB NN IN DT NNS CC VBZ IN NNS IN JJ NN . European Union Foreign Policy chief Javier Solana also expressed concern about the expansion plan , which he said conflicts with commitments Israel made under the internationally brokered 2003 peace plan . NNP NNP NNP NNP NN NNP NNP RB VBD NN IN DT NN NN , WDT PRP VBD NNS IN NNS NNP VBD IN DT RB VBN CD NN NN . Meanwhile , more than 10,000 Hamas sympathizers gathered in the West Bank towns of Ramallah and Nablus to mark this week 's one-year anniversary of the death of Hamas founder Sheik Ahmed Yassin . RB , JJR IN CD NNP NNS VBD IN DT NNP NNP NNS IN NNP CC NNP TO VB DT NN POS JJ NN IN DT NN IN NNP NN NNP NNP NNP . The 67-year-old quadriplegic was killed in an Israeli airstrike as he was leaving a mosque in Gaza City last March . DT JJ NN VBD VBN IN DT JJ NN IN PRP VBD VBG DT NN IN NNP NNP JJ NNP . The U.S. space agency NASA has displayed the first images from a new satellite that studies the sun . DT NNP NN NN NNP VBZ VBN DT JJ NNS IN DT JJ NN WDT VBZ DT NN . Researchers released the images and short video clips Wednesday in Washington . NNS VBD DT NNS CC JJ NN NNS NNP IN NNP . Scientists say they have already learned new things from the Solar Dynamics Observatory but they have yet to release any findings . NNS VBP PRP VBP RB VBN JJ NNS IN DT NNP NNP NNP CC PRP VBP RB TO VB DT NNS . The satellite was launched February 11 . DT NN VBD VBN NNP CD . NASA says the new images show never-before-seen details of material streaming outward and away from sunspots . NNP VBZ DT JJ NNS VBP JJ NNS IN NN VBG NN CC RB IN NNS . The new satellite is sending back images that have 10 times better resolution than high-definition television . DT JJ NN VBZ VBG RP NNS WDT VBP CD NNS JJR NN IN JJ NN . The satellite will also examine the sun 's magnetic field and study the role the sun plays in Earth 's atmosphere and climate . DT NN MD RB VB DT NN POS JJ NN CC NN DT NN DT NN VBZ IN NNP POS NN CC NN . A lawyer for imprisoned Russian oil tycoon Mikhail Khodorkovsky says his client has begun a hunger strike in solidarity with a colleague being held in solitary confinement . DT NN IN JJ JJ NN NN NNP NNP VBZ PRP$ NN VBZ VBN DT NN NN IN NN IN DT NN VBG VBN IN JJ NN . Lawyer Anton Drel says Khodorkovsky began his fast Friday after authorities placed his business partner , Platon Lebedev , in solitary confinement on charges of violating detention center rules and insulting the institution 's personnel . NNP NNP NNP VBZ NNP VBD PRP$ JJ NNP IN NNS VBD PRP$ NN NN , NNP NNP , IN JJ NN IN NNS IN VBG NN NN NNS CC VBG DT NN POS NNS . In May , a Moscow court sentenced the two men to nine years in prison on fraud and tax evasion charges . IN NNP , DT NNP NN VBD DT CD NNS TO CD NNS IN NN IN NN CC NN NN NNS . Critics of Russian President Vladimir Putin have called the case against Khodorkovsky , the one-time largest shareholder in the Russia 's giant Yukos oil firm , retribution for his support of the political opposition . NNS IN JJ NNP NNP NNP VBP VBN DT NN IN NNP , DT JJ JJS NN IN DT NNP POS JJ NNP NN NN , NN IN PRP$ NN IN DT JJ NN . The Kremlin has denied the charge . DT NNP VBZ VBN DT NN . Ugandan President Yoweri Museveni has offered protection to the leader of the Lord 's Resistance Army , if the rebel chief agrees to ' peacefully end terrorism . ' JJ NNP NNP NNP VBZ VBN NN TO DT NN IN DT NNP POS NNP NNP , IN DT NN NN VBZ TO `` RB NN NN . `` In a statement , Mr. Museveni promised the safety of Joseph Kony if his rebel group stops fighting by the end of July . IN DT NN , NNP NNP VBD DT NN IN NNP NNP IN PRP$ NN NN VBZ VBG IN DT NN IN NNP . The International Criminal Court has issued arrest warrants for Kony and other members of the LRA.. DT NNP NNP NNP VBZ VBN NN NNS IN NNP CC JJ NNS IN DT NNP LRA rebels are accused of kidnapping thousands of children and using them as fighters or sex slaves . NNP NNS VBP VBN IN VBG NNS IN NNS CC VBG PRP IN NNS CC NN NNS . Ugandan troops have been fighting the rebels for more than 20 years , forcing the rebels to set up bases in southern Sudan and eastern Democratic Republic of Congo . JJ NNS VBP VBN VBG DT NNS IN JJR IN CD NNS , VBG DT NNS TO VB RP NNS IN JJ JJ CC JJ JJ NNP IN NNP . Some 1.6 million Ugandans have abandoned their homes because of the fighting . DT CD CD NNS VBP VBN PRP$ NNS IN IN DT NN . The United Nations has called the situation in northern Uganda a forgotten humanitarian crisis . DT NNP NNP VBZ VBN DT NN IN JJ NNP DT VBN JJ NN . Palestinian leader Mahmoud Abbas has accepted the resignation of his top West Bank security chief , a sign that Mr. Abbas is responding to complaints about growing chaos among his security forces . JJ NN NNP NNP VBZ VBN DT NN IN PRP$ JJ NNP NNP NN NN , DT NN IN NNP NNP VBZ VBG TO NNS IN VBG NN IN PRP$ NN NNS . Ismail Jaber submitted his resignation Friday after gunmen loyal to him fired on Mr. Abbas ' Ramallah compound Wednesday , when Mr. Abbas was there . NNP NNP VBD PRP$ NN NNP IN NNS JJ TO PRP VBD IN NNP NNP POS NNP NN NNP , WRB NNP NNP VBD RB . The gunmen were defying a presidential request that they either disarm or join the security forces . DT NNS VBD VBG DT JJ NN IN PRP DT VBZ CC VB DT NN NNS . Mr. Abbas was elected president in January after Yasser Arafat 's death . NNP NNP VBD VBN NN IN NNP IN NNP NNP POS NN . He is struggling to reform his security forces . PRP VBZ VBG TO VB PRP$ NN NNS . The Palestinian news agency , WAFA , reports that he has decided to enforce a month-old law to streamline existing security forces . DT JJ NN NN , NNP , VBZ IN PRP VBZ VBN TO VB DT JJ NN TO VB VBG NN NNS . The United Nations says 5,00,000 people in Indonesia still lack permanent housing nearly one year after the devastating Indian Ocean tsunami . DT NNP NNP VBZ CD NNS IN NNP RB VBP JJ NN RB CD NN IN DT JJ NNP NNP NN . Officials with the U.N. Food and Agriculture Organization 's post-tsunami operations say many areas of the hard-hit western coast of Aceh remain a disaster area and sustainable recovery will be a five to 10-year effort . NNS IN DT NNP NNP CC NNP NNP POS JJ NNS VBP JJ NNS IN DT JJ JJ NN IN NNP VBP DT NN NN CC JJ NN MD VB DT CD TO JJ NN . Despite the massive building efforts still required , officials were upbeat about the overall progress , saying local economies are rebounding . IN DT JJ NN NNS RB VBN , NNS VBD JJ IN DT JJ NN , VBG JJ NNS VBP VBG . Also Thursday , the European Commission released an additional $ 24 million in aid for victims of the disaster , bringing the European Union 's total contribution to $ 148 million . RB NNP , DT JJ NNP VBD DT JJ $ CD CD IN NN IN NNS IN DT NN , VBG DT NNP NNP POS JJ NN TO $ CD CD . Officials stressed aid is still desperately needed for the hundreds of thousands of people living in temporary camps . NNS VBD NN VBZ RB RB VBN IN DT NNS IN NNS IN NNS VBG IN JJ NNS . A published report cites U.S. intelligence officials as saying insurgents in Iraq are receiving more direction from Iraqis now living in Syria than earlier believed . DT JJ NN VBZ NNP NN NNS IN VBG NNS IN NNP VBP VBG JJR NN IN NNS RB VBG IN NNP IN RB VBN . Wednesday 's Washington Post quotes unnamed officials saying former Saddam Hussein loyalists that have found sanctuary in Syria are collecting money from private sources in Saudi Arabia and Europe to help the insurgency . NNP POS NNP NNP VBZ JJ NNS VBG JJ NNP NNP NNS WDT VBP VBN JJ IN NNP VBP VBG NN IN JJ NNS IN NNP NNP CC NNP TO VB DT NN . U.S. officials say Washington has begun to press Damascus to arrest or expel certain Iraqis . NNP NNS VBP NNP VBZ VBN TO VB NNP TO VB CC VB JJ NNS . The newspaper also quoted Syria 's ambassador to the United States Imad Moustapha rejecting the allegations as unfounded . DT NN RB VBD NNP POS NN TO DT NNP NNPS NNP NNP VBG DT NNS IN JJ . In Iraq today , Britain 's Defense Secretary Geoff Hoon arrived in the southern city of Basra to visit British troops . IN NNP NN , NNP POS NNP NNP NNP NNP VBD IN DT JJ NN IN NNP TO VB JJ NNS . On Tuesday , Iraqi interim Prime Minister Iyad Allawi again insisted that elections should be held as scheduled next month , adding that the vote may be staggered over two weeks for security concerns . IN NNP , JJ JJ NNP NNP NNP NNP RB VBD IN NNS MD VB VBN IN VBN JJ NN , VBG IN DT NN MD VB VBN IN CD NNS IN NN NNS . A bomb attack on a major oil pipeline in northern Iraq has disrupted Iraqi crude oil exports sent through Turkey . DT NN NN IN DT JJ NN NN IN JJ NNP VBZ VBN JJ NN NN NNS VBN IN NNP . Civil defense workers are trying to put out a fire caused by the attack at al-Hadhar south of Mosul Thursday morning . JJ NN NNS VBP VBG TO VB RP DT NN VBN IN DT NN IN JJ NN IN NNP NNP NN . The bomb blew a hole in the pipeline . DT NN VBD DT NN IN DT NN . Iraqi officials say it will take several days to repair the damage and get oil flowing again . JJ NNS VBP PRP MD VB JJ NNS TO VB DT NN CC VB NN VBG RB . The pipeline runs from northern Iraq to Ceyhan , Turkey , and typically carries about 4,20,000 barrels of crude oil per day , a quarter of Iraq 's overall output . DT NN VBZ IN JJ NNP TO NNP , NNP , CC RB VBZ IN CD NNS IN JJ NN IN NN , DT NN IN NNP POS JJ NN . The pipeline was last attacked in December . DT NN VBD JJ VBN IN NNP . Leatherback turtles fascinate ocean researchers . NN NNS VBP NN NNS . The largest of sea turtles roams the world 's oceans , nesting and feeding in coastal regions . DT JJS IN NN NNS VBZ DT NN POS NNS , VBG CC VBG IN JJ NNS . Scientists say leatherbacks have been doing so for at least 65 million years . NNS VBP NNS VBP VBN VBG RB IN IN JJS CD CD NNS . But little else is known to researchers about this species , other than their numbers are dwindling . CC JJ NN VBZ VBN TO NNS IN DT NNS , JJ IN PRP$ NNS VBP VBG . Recently , U.S. National Oceanic and Atmospheric Administration scientists strapped a transmitter on one and were amazed by what they found . RB , NNP NNP NNP CC NNP NNP NNS VBD DT NN IN CD CC VBD VBN IN WP PRP VBD . Paul Sisco has more . NNP NNP VBZ RBR . The chief U.S. negotiator to talks in Beijing aimed at dismantling North Korea 's nuclear program says he expects to return home Monday , whether or not an agreement is reached . DT JJ NNP NN TO NNS IN NNP VBN IN VBG NNP NNP POS JJ NN VBZ PRP VBZ TO VB NN NNP , IN CC RB DT NN VBZ VBN . Assistant Secretary of State Christopher Hill says an amended draft submitted by China is the best hope so far for bringing all the sides together . NNP NNP IN NNP NNP NNP VBZ DT VBN NN VBN IN NNP VBZ DT JJS NN RB RB IN VBG PDT DT NNS RB . However , he says some phrases in the draft still need clarification . RB , PRP VBZ DT NNS IN DT NN RB VBP NN . Japan 's chief delegate to the talks says he believes there is still a chance of reaching an agreement in the six-party talks that also include the two Koreas and Russia . NNP POS NN NN TO DT NNS VBZ PRP VBZ EX VBZ RB DT NN IN VBG DT NN IN DT JJ NNS WDT RB VBP DT CD NNP CC NNP . The delegates met twice Sunday . DT NNS VBD RB NNP . North Korea is demanding that it be supplied with a light water nuclear reactor to generate electricity . NNP NNP VBZ VBG IN PRP VB VBN IN DT JJ NN JJ NN TO VB NN . Washington has rejected that demand , saying Pyongyang has broken nonproliferation promises in the past . NNP VBZ VBN IN NN , VBG NNP VBZ VBN JJ NNS IN DT NN . Suspected al-Qaida-linked militants have raided a village in the southern Philippines , killing at least 11 people . VBN JJ NNS VBP VBN DT NN IN DT JJ NNP , VBG IN JJS CD NNS . Military officials say Abu Sayyaf gunmen , backed by renegade Muslim separatists , attacked a civilian militia detachment early Saturday in the village of Tubigan , Basilan province , on Mindanao island . JJ NNS VBP NNP NNP NNS , VBN IN NN NNP NNS , VBD DT JJ NN NN JJ NNP IN DT NN IN NNP , NNP NN , IN NNP NN . Local officials said the villagers were asleep when about 70 attackers began spraying houses with automatic gunfire . JJ NNS VBD DT NNS VBD JJ WRB IN CD NNS VBD VBG NNS IN JJ NN . They also set houses on fire . PRP RB VBD NNS IN NN . Ten civilians were killed , including a one-year-old girl . CD NNS VBD VBN , VBG DT JJ NN . A member of the local militia also was killed . DT NN IN DT JJ NN RB VBD VBN . At least 17 people , including four children , were wounded by gunfire and blazes before the attackers fled . IN JJS CD NNS , VBG CD NNS , VBD VBN IN NN CC NNS IN DT NNS VBD . Authorities say troops are searching for the culprits . NNS VBP NNS VBP VBG IN DT NNS . They say the attack took place hours after a rescue operation freed two Chinese hostages held by Abu Sayyaf since November . PRP VBP DT NN VBD NN NNS IN DT NN NN VBD CD JJ NNS VBN IN NNP NNP IN NNP . Three Venezuelan opposition parties , including major opposition party , Democratic Action , have pulled out of Sunday 's parliamentary elections , saying the electoral council is biased . CD JJ NN NNS , VBG JJ NN NN , NNP NNP , VBP VBN IN IN NNP POS JJ NNS , VBG DT JJ NN VBZ VBN . Democratic Action leader Henry Ramos Tuesday said election officials favor President Hugo Chavez and can not be trusted to provide a fair vote . JJ NNP NN NNP NNP NNP VBD NN NNS VBP NNP NNP NNP CC MD RB VB VBN TO VB DT JJ NN . He denied accusations that the opposition is acting in the interests of the U.S. government . PRP VBD NNS IN DT NN VBZ VBG IN DT NNS IN DT NNP NN . The Project Venezuela and Copei parties also announced their withdrawal from the elections . DT NNP NNP CC NNP NNS RB VBD PRP$ NN IN DT NNS . Opposition leaders have proposed postponing the vote until they can be assured of a free and fair election . NN NNS VBP VBN VBG DT NN IN PRP MD VB VBN IN DT JJ CC JJ NN . Venezuelan Vice President Jose Vicente Rangel has denied the accusations and insists the elections will be fair . JJ NNP NNP NNP NNP NNP VBZ VBN DT NNS CC VBZ DT NNS MD VB JJ . Electoral officials said this week they will remove fingerprinting machines at polling stations , after opposition leaders suggested they could compromise voter privacy . NNP NNS VBD DT NN PRP MD VB JJ NNS IN VBG NNS , IN NN NNS VBD PRP MD VB NN NN . Indonesia 's health ministry says international tests have confirmed that a 30-year old man who died last month had contracted bird flu . NNP POS NN NN VBZ JJ NNS VBP VBN IN DT JJ JJ NN WP VBD JJ NN VBD VBN NN NN . An Indonesian health official , Joko Suyono , says samples from dead man tested positive for the virus at a Hong Kong laboratory affiliated with the World Health Organization . DT JJ NN NN , NNP NNP , VBZ NNS IN JJ NN VBN JJ IN DT NN IN DT NNP NNP NN VBN IN DT NNP NNP NNP . The man is the 25th Indonesian known to have died of bird flu since 2003 , the second highest death toll of any country after Vietnam . DT NN VBZ DT JJ NN VBN TO VB VBN IN NN NN IN CD , DT JJ JJS NN NN IN DT NN IN NNP . Officials say the victim was a resident of western Jakarta who had a history of contact with sick poultry . NNS VBP DT NN VBD DT NN IN JJ NNP WP VBD DT NN IN NN IN JJ NN . He died at a Jakarta hospital for bird flu patients April 26 . PRP VBD IN DT NNP NN IN NN NN NNS NNP CD . The Army of Ansar al-Sunna , one of Iraq 's most active terrorist groups , has claimed the assassination of a senior judge , as it intensifies its campaign to intimidate Iraqi voters just days before national elections . DT NNP IN NNP NNP , CD IN NNP POS RBS JJ JJ NNS , VBZ VBN DT NN IN DT JJ NN , IN PRP VBZ PRP$ NN TO VB JJ NNS RB NNS IN JJ NNS . In an Internet statement that has not been authenticated , the group says it killed the administrator of Iraq 's judges and vowed to do the same to what it called other infidels and apostates . IN DT NN NN WDT VBZ RB VBN VBN , DT NN VBZ PRP VBD DT NN IN NNP POS NNS CC VBD TO VB DT NN TO WP PRP VBD JJ NNS CC NNS . The judge , Qais Hashim Shameri , died in a hail of bullets Tuesday as he drove through Baghdad . DT NN , NNP NNP NNP , VBD IN DT NN IN NNS NNP IN PRP VBD IN NNP . Another person in the car was also killed . DT NN IN DT NN VBD RB VBN . Meanwhile , the U.S. military says five soldiers were killed in a vehicle accident north of the Iraqi capital Monday evening . RB , DT NNP NN VBZ CD NNS VBD VBN IN DT NN NN NN IN DT JJ NN NNP NN . A sixth soldier died Monday after being seriously wounded in a roadside blast in Baghdad . DT JJ NN VBD NNP IN VBG RB VBN IN DT NN NN IN NNP . The U.S. military says it has released about 1,000 prisoners from Abu Ghraib prison after Iraqi authorities requested they be set free . DT NNP NN VBZ PRP VBZ VBN IN CD NNS IN NNP NNP NN IN JJ NNS VBD PRP VB VBN JJ . In a statement released Saturday , the military said the release represented a major milestone in Iraq 's progress towards democracy and the rule of law . IN DT NN VBN NNP , DT NN VBD DT NN VBD DT JJ NN IN NNP POS NN IN NN CC DT NN IN NN . It said the prisoners had been brought to Abu Ghraib from detention facilities across Iraq , and had been released over the last four days . PRP VBD DT NNS VBD VBN VBN TO NNP NNP IN NN NNS IN NNP , CC VBD VBN VBN IN DT JJ CD NNS . A U.S. military spokesman said the released prisoners were not guilty of serious or violent crimes such as bombing , kidnapping , torture or murder and have renounced violence . DT NNP NN NN VBD DT VBN NNS VBD RB JJ IN JJ CC JJ NNS JJ IN NN , NN , NN CC NN CC VBP VBN NN . The move , the largest prisoner release to date , followed appeals by Sunni representatives for the United States to release thousands of prisoners who have been languishing in jail for months without being charged . DT NN , DT JJS NN NN TO NN , VBD NNS IN NNP NNS IN DT NNP NNPS TO VB NNS IN NNS WP VBP VBN VBG IN NN IN NNS IN VBG VBN . Israel has approved plans to build 3,500 new homes in the occupied West Bank , in a move Palestinians say sabotages efforts to rekindle the Mideast peace process . NNP VBZ VBN NNS TO VB CD JJ NNS IN DT JJ NNP NNP , IN DT NN NNS VBP NNS NNS TO VB DT JJ NN NN . The Israeli plan , approved by Prime Minister Ariel Sharon , appears to clash with the U.S.-backed ' Roadmap ' peace plan . DT JJ NN , VBN IN NNP NNP NNP NNP , VBZ TO VB IN DT JJ `` VB `` NN NN . That plan calls for a halt to settlement expansion on all Palestinian land captured by Israel in the 1967 war . DT NN VBZ IN DT NN TO NN NN IN DT JJ NN VBN IN NNP IN DT CD NN . There has been no U.S. comment on the move , which analysts say is aimed at linking the settlement of Maale Adumim to greater Jerusalem . EX VBZ VBN DT NNP NN IN DT NN , WDT NNS VBP VBZ VBN IN VBG DT NN IN NNP NNP TO JJR NNP . Israel claims Jerusalem as its eternal capital , while Palestinians want Arab East Jerusalem as the capital of a future state . NNP VBZ NNP IN PRP$ JJ NN , IN NNS VBP NNP NNP NNP IN DT NN IN DT JJ NN . Meanwhile , Israeli-Palestinian talks are expected to continue later today on the Israeli handover of security control in the West Bank town of Tulkarem . RB , JJ NNS VBP VBN TO VB RB NN IN DT JJ NN IN NN NN IN DT NNP NNP NN IN NNP . Palestinians assumed control of Jericho last week . NNS VBD NN IN NNP JJ NN . The United Nations says 250 members of Somalia 's transitional parliament are attending a training seminar to help them understand how federal government works . DT NNP NNP VBZ CD NNS IN NNP POS JJ NN VBP VBG DT NN NN TO VB PRP VB WRB JJ NN VBZ . U.N. officials say the six-day seminar in Somalia 's temporary capital of Baidoa this week will teach lawmakers about how power is lawfully shared between branches of government . NNP NNS VBP DT JJ NN IN NNP POS JJ NN IN NNP DT NN MD VB NNS IN WRB NN VBZ RB VBN IN NNS IN NN . The seminar is one of six U.N. projects backing reconciliation efforts in Somalia . DT NN VBZ CD IN CD NNP NNS VBG NN NNS IN NNP . Other projects include trying to prevent the return of large-scale conflict among militias , reviving the business climate and developing a legal system . JJ NNS VBP VBG TO VB DT NN IN JJ NN IN NNS , VBG DT NN NN CC VBG DT JJ NN . Somalia has been without a central government for 15 years and much of the country remains lawless , including the former capital Mogadishu . NNP VBZ VBN IN DT JJ NN IN CD NNS CC NN IN DT NN VBZ JJ , VBG DT JJ NN NNP . A U.N. development plan for Somalia calls for writing and holding a referendum on a new Constitution by 2009 . DT NNP NN NN IN NNP VBZ IN NN CC VBG DT NN IN DT JJ NNP IN CD . A U.S. diplomatic cable appearing on the Wikileaks website says Syria promoted violent protests against controversial cartoons of the Prophet Muhammad four years ago in which European embassies in Damascus were attacked . DT NNP JJ NN VBG IN DT NNP NN VBZ NNP VBD JJ NNS IN JJ NNS IN DT NNP NNP CD NNS RB IN WDT JJ NNS IN NNP VBD VBN . The cable quotes the U.S. embassy charge d'affaires Stephen Seche as saying Syrian Prime Minister Naji al-Otari asked mosque preachers to unleash fiery sermons on the eve of the protests . DT NN VBZ DT NNP NN NN VBZ NNP NNP IN VBG JJ NNP NNP NNP NNP VBD NN NNS TO VB JJ NNS IN DT NN IN DT NNS . The cartoons , including one of the Prophet with a turban resembling a bomb , first appeared in a Danish daily and set off protests throughout the Muslim world . DT NNS , VBG CD IN DT NNP IN DT NN VBG DT NN , RB VBD IN DT JJ JJ CC VBD RP NNS IN DT NNP NN . Many Muslims believe their faith forbids any images of the Prophet . JJ NNPS VBP PRP$ NN VBZ DT NNS IN DT NNP . The embassies of Denmark and Norway were torched in the Syrian protests . DT NNS IN NNP CC NNP VBD VBN IN DT JJ NNS . U.S. Secretary of State Condoleezza Rice accused Damascus at the time of inciting the violence . NNP NNP IN NNP NNP NNP VBD NNP IN DT NN IN VBG DT NN . Syria disputed the charges . NNP VBD DT NNS . The February 5 , 2006 cable says that Syrian officials seem ' to have miscalculated and lost control ' of the protests . DT NNP CD , CD NN VBZ IN JJ NNS VBP `` TO VB VBN CC VBN NN `` IN DT NNS . Turkish warplanes have bombed Kurdish rebel hideouts in northern Iraq . JJ NNS VBP VBN JJ NN NNS IN JJ NNP . The Turkish military said Thursday that it targeted 13 facilities belonging to the Kurdistan Workers ' Party ( PKK ) in the Zap region , near the Turkish border . DT JJ NN VBD NNP IN PRP VBD CD NNS VBG TO DT NNP NNP POS NNP LRB NNP RRB IN DT NNP NN , IN DT JJ NN . The military says it is still trying to determine if any rebels were killed . DT JJ VBZ PRP VBZ RB VBG TO VB IN DT NNS VBD VBN . Turkey has stepped up military operations this year against PKK rebels , both inside Turkey and in northern Iraq . NNP VBZ VBN RP JJ NNS DT NN IN NNP NNS , DT JJ NNP CC IN JJ NNP . Earlier this week , the PKK released three German tourists seized during an expedition to Turkey 's Mount Ararat July 8 . RBR DT NN , DT NNP VBD CD JJ NNS VBN IN DT NN TO NNP POS NNP NNP NNP CD . Turkish military officials say a total of 33 PKK fighters were killed during a five-day offensive that ended last week . JJ JJ NNS VBP DT NN IN CD NNP NNS VBD VBN IN DT JJ NN WDT VBD JJ NN . The PKK has been fighting for Kurdish autonomy in southeastern Turkey for nearly 25 years . DT NNP VBZ VBN VBG IN NNP NN IN JJ NNP IN RB CD NNS . The violence has killed more than 30,000 people . DT NN VBZ VBN JJR IN CD NNS . The European Union , the United States , Turkey and other countries classify the PKK as a terrorist organization . DT NNP NNP , DT NNP NNPS , NNP CC JJ NNS VBP DT NNP IN DT JJ NN . A land mine explosion in Nepal Saturday killed at least six bus passengers and injured several others . DT NN NN NN IN NNP NNP VBD IN JJS CD NN NNS CC VBN JJ NNS . Nepalese authorities say the land mine was hidden beneath a barricade blocking a road . JJ NNS VBP DT NN NN VBD VBN IN DT NN VBG DT NN . It exploded as passengers were working to dismantle the roadblock in a Kapilvastu district , 325 kilometers southwest of the capital , Kathmandu . PRP VBD IN NNS VBD VBG TO VB DT NN IN DT NNP NN , CD NNS JJS IN DT NN , NNP . The land mine is believed to have been planted by Maoist rebels , who fought with government troops in the same area on Friday , a battle that killed at least five soldiers and an unknown number of guerillas . DT NN NN VBZ VBN TO VB VBN VBN IN NNP NNS , WP VBD IN NN NNS IN DT JJ NN IN NNP , DT NN WDT VBD IN JJS CD NNS CC DT JJ NN IN NNS . Nepal 's Maoists have been fighting since 1996 to establish a communist republic in the Himalayan kingdom . NNP POS NNS VBP VBN VBG IN CD TO VB DT JJ NN IN DT NNP NN . Violence has continued unabated since King Gyanendra dismissed a coalition government and seized power six months ago . NN VBZ VBN JJ IN NNP NNP VBD DT NN NN CC VBD NN CD NNS RB . China 's foreign ministry is urging its citizens not travel to Iraq in the wake of the recent kidnapping of eight Chinese nationals by Iraqi insurgents . NNP POS JJ NN VBZ VBG PRP$ NNS RB VB TO NNP IN DT NN IN DT JJ NN IN CD JJ NNS IN JJ NNS . Arab TV channel Al-Jazeera broadcast a video showing the hostages Tuesday in which their abductors threatened to kill the men unless China ' clarifies its role in Iraq . ' JJ NN NN NNP VBD DT NN VBG DT NNS NNP IN WDT PRP$ NNS VBD TO VB DT NNS IN NNP `` VBZ PRP$ NN IN NNP . `` Chinese officials say the men are ordinary construction workers who went to Iraq on their own initiative . JJ NNS VBP DT NNS VBP JJ NN NNS WP VBD TO NNP IN PRP$ JJ NN . China 's foreign ministry says it is deeply concerned by the kidnapping , noting China has always shown friendship , sympathy and support towards the Iraqi people . NNP POS JJ NN VBZ PRP VBZ RB VBN IN DT NN , VBG NNP VBZ RB VBN NN , NN CC NN IN DT JJ NNS . Last April seven Chinese construction workers from Fujian province were kidnapped in Fallujah , but later released unharmed . JJ NNP CD JJ NN NNS IN JJ NN VBD VBN IN NNP , CC RB VBN JJ . A Turkish human rights group has asked a prosecutor to start legal proceedings against Israel 's defense minister for alleged crimes committed against Palestinians during Israel 's offensive in the Gaza Strip . DT JJ JJ NNS NN VBZ VBN DT NN TO VB JJ NNS IN NNP POS NN NN IN JJ NNS VBN IN NNS IN NNP POS NN IN DT NNP NNP . The Istanbul-based Mazlum-Der filed the petition on Friday , just two days before Israeli Defense Minister Ehud Barak is to visit Turkey in a bid to mend ties . DT JJ NN VBD DT NN IN NNP , RB CD NNS IN JJ NNP NNP NNP NNP VBZ TO VB NNP IN DT NN TO VB NNS . Turkey has been an important ally of Israel , but relations have been strained since the Gaza conflict year ago , which drew criticism from Turkish leaders . NNP VBZ VBN DT JJ NN IN NNP , CC NNS VBP VBN VBN IN DT NNP NN NN RB , WDT VBD NN IN JJ NNS . Turkey 's judiciary has thrown out similar complaints against Israeli officials in the past . NNP POS NN VBZ VBN RP JJ NNS IN JJ NNS IN DT NN . Israel launched the offensive in Gaza in December of 2008 to stop Palestinian militant rocket attacks on Israeli towns . NNP VBD DT NN IN NNP IN NNP IN CD TO VB JJ JJ NN NNS IN JJ NNS . The conflict killed more than 1,300 Palestinians and 13 Israelis . DT NN VBD JJR IN CD NNS CC CD NNS . Cuban President Fidel Castro has criticized a U.S. judge 's decision to release on bail a Cuban-born former U.S. intelligence operative . JJ NNP NNP NNP VBZ VBN DT NNP NN POS NN TO VB IN NN DT JJ JJ NNP NN NN . In an article in Cuba 's state-run newspaper Granma , Mr. Castro accused the White House of influencing the decision to free Luis Posada Carriles ahead of his May trial . IN DT NN IN NNP POS JJ NN NNP , NNP NNP VBD DT NNP NNP IN VBG DT NN TO VB NNP NNP NNP RB IN PRP$ NNP NN . Mr. Castro said President Bush has double-standards in his efforts to fight terrorism by harboring a wanted criminal . NNP NNP VBD NNP NNP VBZ NNS IN PRP$ NNS TO VB NN IN VBG DT JJ NN . Carriles faces immigration fraud charges in the U.S. state of Texas , but is also wanted by Venezuela for allegedly bombing a Cuban airliner . NNP VBZ NN NN NNS IN DT NNP NN IN NNP , CC VBZ RB VBN IN NNP IN RB VBG DT JJ NN . Seventy-three people were killed in the attack in 1976 . CD NNS VBD VBN IN DT NN IN CD . The article was the third in Granma attributed to Mr. Castro in two weeks . DT NN VBD DT JJ IN NNP VBD TO NNP NNP IN CD NNS . The Cuban leader has not been seen in public since July , when he underwent intestinal surgery . DT JJ NN VBZ RB VBN VBN IN JJ IN NNP , WRB PRP VBD JJ NN . France has announced that six major powers will meet on Tuesday to discuss possible sanctions on Iran over its nuclear program . NNP VBZ VBN IN CD JJ NNS MD VB IN NNP TO VB JJ NNS IN NNP IN PRP$ JJ NN . France 's foreign ministry spokesman Jean-Baptiste Mattei said senior diplomats from the five permanent members of the U.N. Security Council plus Germany will meet in Paris . NNP POS JJ NN NN NNP NNP VBD JJ NNS IN DT CD JJ NNS IN DT NNP NNP NNP CC NNP MD VB IN NNP . A European Union representative is expected to join the talks . DT NNP NNP NN VBZ VBN TO VB DT NNS . The major powers have been working for weeks on possible sanctions against Iran . DT JJ NNS VBP VBN VBG IN NNS IN JJ NNS IN NNP . France , Germany and Britain have circulated a draft Security Council sanctions resolution . NNP , NNP CC NNP VBP VBN DT NN NNP NNP NNS NN . But Russia and China favor less stringent sanctions . CC NNP CC NNP VBP RBR JJ NNS . Iran defied an August 31 U.N. deadline for suspending its nuclear enrichment program . NNP VBD DT NNP CD NNP NN IN VBG PRP$ JJ NN NN . Tehran says it has a right to develop nuclear technology for peaceful uses . NNP VBZ PRP VBZ DT NN TO VB JJ NN IN JJ NNS . The U.S. and its allies believe Iran is trying to develop a nuclear weapon . DT NNP CC PRP$ NNS VBP NNP VBZ VBG TO VB DT JJ NN . The Brazilian government says it will collaborate with any Palestinian government that wants peace and recognizes Israel 's right to exist . DT JJ NN VBZ PRP MD VB IN DT JJ NN WDT VBZ NN CC VBZ NNP POS NN TO VB . Brazilian Foreign Minister Celso Amorim made the comments Thursday in response to published reports that Hamas - the Islamic group that won last month 's Palestinian elections - would seek financial and political support from Brazil . JJ NNP NNP NNP NNP VBD DT NNS NNP IN NN TO VBN NNS IN NNP IN DT JJ NN WDT VBD JJ NN POS JJ NNS : MD VB JJ CC JJ NN IN NNP . But Amorim said Hamas has not contacted Brazil . CC NNP VBD NNP VBZ RB VBN NNP . The United States and other countries have warned that they will curtail funding to a Hamas-led Palestinian government unless the group renounces violence and acknowledges Israel 's right to exist . DT NNP NNPS CC JJ NNS VBP VBN IN PRP MD VB NN TO DT JJ JJ NN IN DT NN VBZ NN CC VBZ NNP POS NN TO VB . Hamas has said it will not be pressured into recognizing Israel by what it calls international threats of blackmail over aid . NNP VBZ VBN PRP MD RB VB VBN IN VBG NNP IN WP PRP VBZ JJ NNS IN NN IN NN . Iraqis took another historic step toward democracy Wednesday , as their first freely elected parliament in nearly a half-century convened for the first time . NNS VBD DT JJ NN IN NN NNP , IN PRP$ JJ RB VBN NN IN RB DT NN VBN IN DT JJ NN . In Washington , President Bush congratulated the Iraqi people and the 275-member interim National Assembly , saying it is a ' bright moment ' in Iraq 's democratic process . IN NNP , NNP NNP VBD DT JJ NNS CC DT JJ JJ NNP NNP , VBG PRP VBZ DT `` JJ NN `` IN NNP POS JJ NN . The assembly was sworn in at the Baghdad Convention Center inside the heavily protected Green Zone . DT NN VBD VBN IN IN DT NNP NNP NNP IN DT RB VBN NNP NNP . Its session was mostly ceremonial , as talks are still continuing on power-sharing in the new government . PRP$ NN VBD RB JJ , IN NNS VBP RB VBG IN NN IN DT JJ NN . Insurgents marked the day with several large explosions in Baghdad before and after the assembly session . NNS VBD DT NN IN JJ JJ NNS IN NNP IN CC IN DT NN NN . No casualties were reported . DT NNS VBD VBN . North of the capital , in Baquba , a car bomb exploded at a checkpoint , killing at least four Iraqi soldiers . NNP IN DT NN , IN NNP , DT NN NN VBD IN DT NN , VBG IN JJS CD JJ NNS . And the U.S. military said an American soldier was killed in a roadside bomb explosion south of Baghdad . CC DT NNP NN VBD DT JJ NN VBD VBN IN DT NN NN NN NN IN NNP . Leftist coca farmer Evo Morales has been inaugurated as Bolivia 's first indigenous president . JJ NN NN NNP NNP VBZ VBN VBN IN NNP POS JJ JJ NN . During his inaugural speech Sunday , Mr. Morales said Bolivia 's 500 year-long campaign of indigenous resistance has not been in vain . IN PRP$ JJ NN NNP , NNP NNP VBD NNP POS CD JJ NN IN JJ NN VBZ RB VBN IN NN . Indigenous Bolivians who listened to the speech said they were hopeful he would bring change for the better . JJ NNS WP VBD TO DT NN VBD PRP VBD JJ PRP MD VB NN IN DT JJR . The former congressman won a surprise majority in a single round of voting on December 18 . DT JJ NN VBD DT NN NN IN DT JJ NN IN VBG IN NNP CD . A number of heads of state were in the capital , La Paz , to witness Mr. Morales take the oath of office Sunday , including Chilean President Ricardo Lagos , Venezuela 's President Hugo Chavez and U.S. Assistant Secretary of State Thomas Shannon , the Bush administration 's top official for Latin America . DT NN IN NNS IN NN VBD IN DT NN , NNP NNP , TO VB NNP NNP VB DT NN IN NN NNP , VBG JJ NNP NNP NNP , NNP POS NNP NNP NNP CC NNP NNP NNP IN NNP NNP NNP , DT NNP NN POS JJ NN IN NNP NNP . The White House will ask Congress for an additional $ 70 billion in emergency funds to help pay for the operations in Iraq and Afghanistan . DT NNP NNP MD VB NNP IN DT JJ $ CD CD IN NN NNS TO VB VB IN DT NNS IN NNP CC NNP . The money comes on top of $ 50 billion approved late last year . DT NN VBZ IN NN IN $ CD CD VBN RB JJ NN . The funds are intended to keep military operations in those two countries going through this fiscal year , which ends in September . DT NNS VBP VBN TO VB JJ NNS IN DT CD NNS VBG IN DT JJ NN , WDT VBZ IN NNP . Since the September , 2001 terrorist attacks , the Defense Department has spent a total of $ 320 billion on campaigns in Iraq and Afghanistan , not counting this latest request . IN DT NNP , CD JJ NNS , DT NNP NNP VBZ VBN DT NN IN $ CD CD IN NNS IN NNP CC NNP , RB VBG DT JJS NN . The request follows Congress ' approval Wednesday of slashing $ 39 billion in health , education and other benefits , and as the Senate begins debating a Republican-proposed $ 70 billion tax reduction . DT NN VBZ NNP POS NN NNP IN VBG $ CD CD IN NN , NN CC JJ NNS , CC IN DT NNP VBZ VBG DT JJ $ CD CD NN NN . French President Jacques Chirac has pledged his country 's continued military support for the Afghan government . JJ NNP NNP NNP VBZ VBN PRP$ NN POS JJ JJ NN IN DT JJ NN . The announcement came Monday during his meeting in Paris with Afghan President Hamid Karzai , who arrived on Sunday for a three-day visit . DT NN VBD NNP IN PRP$ NN IN NNP IN JJ NNP NNP NNP , WP VBD IN NNP IN DT JJ NN . France currently has about 600 soldiers in the NATO-led international peace-keeping force in Afghanistan . NNP RB VBZ IN CD NNS IN DT JJ JJ NN NN IN NNP . The Afghan president says he eventually wants to see the NATO peace-keeping forces and the U.S.-led combat troops merged under the unified command of NATO . DT JJ NN VBZ PRP RB VBZ TO VB DT NNP NN NNS CC DT JJ NN NNS VBN IN DT JJ NN IN NNP . The UN Security Council unanimously adopted two resolutions DT NNP NNP NNP RB VBD CD NNS Thursday - one on the DRC and the other on Somalia . NNP : CD IN DT NNP CC DT JJ IN NNP . The Security Council has voted in favor of sending an additional 3,000 troops to DRC to beef up MONUC , the UN mission there . DT NNP NNP VBZ VBN IN NN IN VBG DT JJ CD NNS TO NNP TO VB RP NNP , DT NNP NN RB . It also approved giving the sanctions committee authority to impose sanctions against those who impede the peace process in Somalia , hinder humanitarian aid efforts and violate the arms embargo . PRP RB VBD VBG DT NNS NN NN TO VB NNS IN DT WP VBP DT NN NN IN NNP , VBP JJ NN NNS CC VBP DT NNS NN . The rising cost of food is becoming a big concern around the world . DT VBG NN IN NN VBZ VBG DT JJ NN IN DT NN . Many countries from Ghana to Mexico have started reducing tariffs and taxes on food . JJ NNS IN NNP TO NNP VBP VBN VBG NNS CC NNS IN NN . And the World Food Program has requested more than $ 700 million from the international community to help meet basic food needs in developing countries . CC DT NNP NNP NNP VBZ VBN JJR IN $ CD CD IN DT JJ NN TO VB VB JJ NN NNS IN VBG NNS . But even consumers in developed nations are having trouble with the high cost of food . CC RB NNS IN JJ NNS VBP VBG NN IN DT JJ NN IN NN . Experts say a few simple tips can help consumers anyplace maximize the money they spend on food . NNS VBP DT JJ JJ NNS MD VB NNS VB VB DT NN PRP VBP IN NN . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Before and during the Olympics , the issue of Tibet was frequently in the news . IN CC IN DT NNS , DT NN IN NNP VBD RB IN DT NN . In March , an anti-government demonstration in the Tibetan capital , Lhasa , turned into a riot . IN NNP , DT JJ NN IN DT JJ NN , NNP , VBD IN DT NN . It catapulted the Himalayan region into the headlines and led to protests that disrupted the Olympic torch relay . PRP VBD DT JJ NN IN DT NNS CC VBD TO NNS WDT VBD DT NNP NN NN . In the closing days of the Beijing Olympics , China showcased a new production of an old propaganda opera that presents an image of Sino-Tibetan harmony . IN DT NN NNS IN DT NNP NNPS , NNP VBD DT JJ NN IN DT JJ NN NN WDT VBZ DT NN IN JJ NN . Stephanie Ho reports from Beijing . NNP NNP VBZ IN NNP . Two top Palestinian militant leaders have been killed in an Israeli airstrike in the northern Gaza Strip . CD JJ JJ JJ NNS VBP VBN VBN IN DT JJ NN IN DT JJ NNP NNP . Authorities say Hassan Madhoun , a senior member of the al-Aqsa Martyrs Brigades , and top Hamas militant Fawzi Abu Kara were killed Tuesday , when an Israeli missile hit their car near the Jabalya refugee camp . NNS VBP NNP NNP , DT JJ NN IN DT NNP NNP NNP , CC JJ NNP NN NNP NNP NNP VBD VBN NNP , WRB DT JJ NN VBD PRP$ NN IN DT NNP NN NN . The Palestinian Authority says at least nine bystanders were wounded . DT JJ NNP VBZ IN JJS CD NNS VBD VBN . A short while after the attack , spokesmen for Hamas and al-Aqsa Martyrs Brigades vowed to retaliate . DT JJ NN IN DT NN , NNS IN NNP CC NNP NNP NNP VBD TO VB . Israel says the al-Aqsa militant was wanted in connection with a 2004 bombing that killed 10 people in the Israeli port of Ashdod . NNP VBZ DT NNP NN VBD VBN IN NN IN DT CD NN WDT VBD CD NNS IN DT JJ NN IN NNP . Israel has carried out numerous strikes in Gaza since a Palestinian suicide bomber killed five Israelis in central Israel October 26 . NNP VBZ VBN RP JJ NNS IN NNP IN DT JJ NN NN VBD CD NNS IN JJ NNP NNP CD . President Bush is on his way to Europe to meet with European leaders in an effort to rebuild relations damaged by the U.S.-led war in Iraq . NNP NNP VBZ IN PRP$ NN TO NNP TO VB IN JJ NNS IN DT NN TO VB NNS VBN IN DT JJ NN IN NNP . Brussels is the first stop on a five day , three nation tour that will also take Mr. Bush to Germany and Slovakia . NNP VBZ DT JJ NN IN DT CD NN , CD NN NN WDT MD RB VB NNP NNP TO NNP CC NNP . Belgian officials have mounted an unprecedented level of security for the U.S. president 's visit , which is drawing protesters . JJ NNS VBP VBN DT JJ NN IN NN IN DT NNP NN POS NN , WDT VBZ VBG NNS . Mr. Bush arrives late Sunday . NNP NNP VBZ JJ NNP . While in Brussels , the president is to meet with European Union and NATO leaders for talks expected to focus on trans-Atlantic ties , the Middle East , and Iran 's nuclear program . IN IN NNP , DT NN VBZ TO VB IN NNP NNP CC NNP NNS IN NNS VBN TO VB IN JJ NNS , DT NNP NNP , CC NNP POS JJ NN . He will also hold separate talks this week with Iraq war opponents , including French President Jacques Chirac , German Chancellor Gerhard Schroeder and Russian President Vladimir Putin . PRP MD RB VB JJ NNS DT NN IN NNP NN NNS , VBG JJ NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP . President Bush is also due to meet with Iraq war allies , including British Prime Minister Tony Blair . NNP NNP VBZ RB JJ TO VB IN NNP NN NNS , VBG NNP NNP NNP NNP NNP . Botswana has maintained one of the world 's highest economic growth rates since independence in 1966 , though growth fell below 5 % in 2007 - 8 , and turned sharply negative in 2009 , with industry falling nearly 30 % . NNP VBZ VBN CD IN DT NN POS JJS JJ NN NNS IN NN IN CD , IN NN VBD IN CD NN IN CD : CD , CC VBD RB JJ IN CD , IN NN VBG RB CD NN . Through fiscal discipline and sound management , Botswana transformed itself from one of the poorest countries in the world to a middle-income country with a per capita GDP of $ 13,100 in 2010 . IN JJ NN CC NN NN , NNP VBD PRP IN CD IN DT JJS NNS IN DT NN TO DT JJ NN IN DT IN NN NN IN $ CD IN CD . Two major investment services rank Botswana as the best credit risk in Africa . CD JJ NN NNS VBP NNP IN DT JJS NN NN IN NNP . Diamond mining has fueled much of the expansion and currently accounts for more than one-third of GDP , 70-80 % of export earnings , and about half of the government 's revenues . NNP NN VBZ VBN NN IN DT NN CC RB NNS IN JJR IN NN IN NN , CD NN IN NN NNS , CC IN NN IN DT NN POS NNS . Botswana 's heavy reliance on a single luxury export was a critical factor in the sharp economic contraction of 2009 . NNP POS JJ NN IN DT JJ NN NN VBD DT JJ NN IN DT JJ JJ NN IN CD . Tourism , financial services , subsistence farming , and cattle raising are other key sectors . NNP , JJ NNS , NN NN , CC NNS VBG VBP JJ JJ NNS . Although unemployment was 7.5 % in 2007 according to official reports , unofficial estimates place it closer to 40 % . IN NN VBD CD NN IN CD VBG TO JJ NNS , JJ NNS VBP PRP RBR TO CD NN . The prevalence of HIV / AIDS is second highest in the world and threatens Botswana 's impressive economic gains . DT NN IN NNP NNP NNP VBZ JJ JJS IN DT NN CC VBZ NNP POS JJ JJ NNS . An expected leveling off in diamond mining production within the next two decades overshadows long-term prospects . DT VBN NN RB IN NN NN NN IN DT JJ CD NNS VBZ JJ NNS . Kyrgyzstan is a poor , mountainous country with a dominant agricultural sector . NNP VBZ DT JJ , JJ NN IN DT JJ JJ NN . Cotton , tobacco , wool , and meat are the main agricultural products , although only tobacco and cotton are exported in any quantity . NN , NN , NN , CC NN VBP DT JJ JJ NNS , IN JJ NN CC NN VBP VBN IN DT NN . Industrial exports include gold , mercury , uranium , natural gas , and electricity . JJ NNS VBP NN , NN , NN , JJ NN , CC NN . The economy depends heavily on gold exports - mainly from output at the Kumtor gold mine . DT NN VBZ RB IN NN NNS : RB IN NN IN DT NNP NN NN . Following independence , Kyrgyzstan was progressive in carrying out market reforms , such as an improved regulatory system and land reform . VBG NN , NNP VBD JJ IN VBG RP NN NNS , JJ IN DT JJ JJ NN CC NN NN . Kyrgyzstan was the first Commonwealth of Independent States ( CIS ) country to be accepted into the World Trade Organization . NNP VBD DT JJ NN IN NNP NNP LRB NNP RRB NN TO VB VBN IN DT NNP NNP NNP . Much of the government 's stock in enterprises has been sold . NN IN DT NN POS NN IN NNS VBZ VBN VBN . Drops in production had been severe after the breakup of the Soviet Union in December 1991 , but by mid-1995 , production began to recover and exports began to increase . NNS IN NN VBD VBN JJ IN DT NN IN DT NNP NNP IN NNP CD , CC IN CD , NN VBD TO VB CC NNS VBD TO VB . In 2005 , the BAKIEV government and international financial institutions initiated a comprehensive medium-term poverty reduction and economic growth strategy . IN CD , DT NNP NN CC JJ JJ NNS VBD DT JJ JJ NN NN CC JJ NN NN . Bishkek agreed to pursue much needed tax reform and , in 2006 , became eligible for the heavily indebted poor countries ( HIPC ) initiative . NNP VBD TO VB RB VBN NN NN CC , IN CD , VBD JJ IN DT RB JJ JJ NNS LRB NNP RRB NN . The government made steady strides in controlling its substantial fiscal deficit , nearly closing the gap between revenues and expenditures in 2006 , before boosting expenditures more than 20 % in 2007 - 8 . DT NN VBD JJ NNS IN VBG PRP$ JJ JJ NN , RB VBG DT NN IN NNS CC NNS IN CD , IN VBG NNS RBR IN CD NN IN CD : CD . GDP grew about 8 % annually in 2007 - 8 , partly due to higher gold prices internationally , but slowed to 2.3 % in 2009 . NN VBD IN CD NN RB IN CD : CD , RB JJ TO JJR NN NNS RB , CC VBD TO CD NN IN CD . The overthrow of President BAKIEV in April , 2010 and subsequent ethnic clashes left hundreds dead and damaged infrastructure . DT NN IN NNP NNP IN NNP , CD CC JJ JJ NNS VBD NNS JJ CC JJ NN . Shrinking trade and agricultural production , as well as political instability , caused GDP to contract about 3.5 % in 2010 . VBG NN CC JJ NN , RB RB IN JJ NN , VBD NN TO VB IN CD NN IN CD . The fiscal deficit widened to 11 % of GDP , reflecting significant increases in crisis-related spending , including both rehabilitation of damaged infrastructure and bank recapitalization . DT JJ NN VBD TO CD NN IN NN , VBG JJ NNS IN JJ NN , VBG DT NN IN JJ NN CC NN NN . Progress in reconstruction , fighting corruption , restructuring domestic industry , and attracting foreign aid and investment are key to future growth . NN IN NN , VBG NN , VBG JJ NN , CC VBG JJ NN CC NN VBP JJ TO JJ NN . This island economy suffers from a poor natural resource base , including serious water shortages exacerbated by cycles of long-term drought and poor soil for agriculture on several of the islands . DT NN NN VBZ IN DT JJ JJ NN NN , VBG JJ NN NNS VBN IN NNS IN JJ NN CC JJ NN IN NN IN NN IN DT NNS . The economy is service oriented with commerce , transport , tourism , and public services accounting for about three-fourths of GDP . DT NN VBZ NN VBN IN NN , NN , NN , CC JJ NNS NN IN IN NNS IN NN . Although about 40 % of the population lives in rural areas , the share of food production in GDP is low . IN RB CD NN IN DT NN VBZ IN JJ NNS , DT NN IN NN NN IN NN VBZ JJ . About 82 % of food must be imported . IN CD NN IN NN MD VB VBN . The fishing potential , mostly lobster and tuna , is not fully exploited . DT NN NN , RB NN CC NN , VBZ RB RB VBN . Cape Verde annually runs a high trade deficit financed by foreign aid and remittances from its large pool of emigrants ; remittances supplement GDP by more than 20 % . NNP NNP RB VBZ DT JJ NN NN VBN IN JJ NN CC NNS IN PRP$ JJ NN IN NNS ; VBZ NN NN IN JJR IN CD NN . Despite the lack of resources , sound economic management has produced steadily improving incomes . IN DT NN IN NNS , JJ JJ NN VBZ VBN RB VBG NNS . Continued economic reforms are aimed at developing the private sector and attracting foreign investment to diversify the economy . JJ JJ NNS VBP VBN IN VBG DT JJ NN CC VBG JJ NN TO VB DT NN . Future prospects depend heavily on the maintenance of aid flows , the encouragement of tourism , remittances , and the momentum of the government 's development program . JJ NNS VBP RB IN DT NN IN NN NNS , DT NN IN NN , NNS , CC DT NN IN DT NN POS NN NN . Cape Verde became a member of the WTO in July 2008 . NNP NNP VBD DT NN IN DT NNP IN NNP CD . The islands , which have large bird and seal populations , lie approximately 1,000 km east of the Falkland Islands and have been under British administration since 1908 - except for a brief period in 1982 when Argentina occupied them . DT NNS , WDT VBP JJ NN CC NN NNS , VBP RB CD NN NN IN DT NNP NNP CC VBP VBN IN JJ NN IN CD : IN IN DT JJ NN IN CD WRB NNP VBD PRP . Grytviken , on South Georgia , was a 19th and early 20th century whaling station . NNP , IN NNP NNP , VBD DT JJ CC JJ JJ NN VBG NN . Famed explorer Ernest SHACKLETON stopped there in 1914 en route to his ill-fated attempt to cross Antarctica on foot . NNP NNP NNP NNP VBD RB IN CD IN NN TO PRP$ JJ NN TO VB NNP IN NN . He returned some 20 months later with a few companions in a small boat and arranged a successful rescue for the rest of his crew , stranded off the Antarctic Peninsula . PRP VBD DT CD NNS RB IN DT JJ NNS IN DT JJ NN CC VBD DT JJ NN IN DT NN IN PRP$ NN , VBD RP DT NNP NNP . He died in 1922 on a subsequent expedition and is buried in Grytviken . PRP VBD IN CD IN DT JJ NN CC VBZ VBN IN NNP . Today , the station houses scientists from the British Antarctic Survey . NN , DT NN VBZ NNS IN DT JJ NNP NN . Recognizing the importance of preserving the marine stocks in adjacent waters , the UK , in 1993 , extended the exclusive fishing zone from 12 nm to 200 nm around each island . VBG DT NN IN VBG DT JJ NNS IN JJ NNS , DT NNP , IN CD , VBD DT JJ NN NN IN CD NN TO CD NN IN DT NN . A CAT , hearing that the Birds in a certain aviary were ailing dressed himself up as a physician , and , taking his cane and a bag of instruments becoming his profession , went to call on them . DT NN , VBG IN DT NNS IN DT JJ NN VBD VBG VBD PRP RP IN DT NN , CC , VBG PRP$ NN CC DT NN IN NNS VBG PRP$ NN , VBD TO VB IN PRP . He knocked at the door and inquired of the inmates how they all did , saying that if they were ill , he would be happy to prescribe for them and cure them . PRP VBD IN DT NN CC VBN IN DT NNS WRB PRP DT VBD , VBG IN IN PRP VBD RB , PRP MD VB JJ TO VB IN PRP CC VB PRP . They replied , ' We are all very well , and shall continue so , if you will only be good enough to go away , and leave us as we are . ' PRP VBD , `` PRP VBP DT RB RB , CC MD VB RB , IN PRP MD RB VB JJ RB TO VB RB , CC VB PRP IN PRP VBP . `` A NIGHTINGALE , sitting aloft upon an oak and singing according to his wont , was seen by a Hawk who , being in need of food , swooped down and seized him . DT NNP , VBG RB IN DT NN CC VBG VBG TO PRP$ NN , VBD VBN IN DT NN WP , VBG IN NN IN NN , VBD RB CC VBD PRP . The Nightingale , about to lose his life , earnestly begged the Hawk to let him go , saying that he was not big enough to satisfy the hunger of a Hawk who , if he wanted food , ought to pursue the larger birds . DT NNP , IN TO VB PRP$ NN , RB VBD DT NN TO VB PRP VB , VBG IN PRP VBD RB JJ RB TO VB DT NN IN DT NN WP , IN PRP VBD NN , MD TO VB DT JJR NNS . The Hawk , interrupting him , said : ' I should indeed have lost my senses if I should let go food ready in my hand , for the sake of pursuing birds which are not yet even within sight . ' DT NNP , VBG PRP , VBD : `` PRP MD RB VB VBN PRP$ NNS IN PRP MD VB VB NN JJ IN PRP$ NN , IN DT NN IN VBG NNS WDT VBP RB RB RB IN NN . `` A Peacock once placed a petition before Juno desiring to have the voice of a nightingale in addition to his other attractions ; but Juno refused his request . DT NN RB VBD DT NN IN NNP VBG TO VB DT NN IN DT NN IN NN TO PRP$ JJ NNS ; CC NNP VBD PRP$ NN . When he persisted , and pointed out that he was her favourite bird , she said : WRB PRP VBD , CC VBD RP IN PRP VBD PRP$ JJ NN , PRP VBD : ' Be content with your lot ; one can not be first in everything . ' `` VB NN IN PRP$ NN ; PRP MD RB VB JJ IN DT . `` A STATE Official carrying off the Dome of the Capitol met the Ghost of his predecessor , who had come out of his political grave to warn him that God saw him . DT NN NN VBG RP DT NN IN DT NNP VBD DT NN IN PRP$ NN , WP VBD VBN IN IN PRP$ JJ NN TO VB PRP IN NNP VBD PRP . As the place of meeting was lonely and the time midnight , the State Official set down the Dome of the Capitol , and commanded the supposed traveller to throw up his hands . IN DT NN IN NN VBD JJ CC DT NN NN , DT NNP NNP VBD RP DT NN IN DT NNP , CC VBD DT VBN NN TO VB RP PRP$ NNS . The DT Ghost replied that he had not eaten them , and while he was explaining the situation another State Official silently added the dome to his own collection . NNP VBD IN PRP VBD RB VBN PRP , CC IN PRP VBD VBG DT NN DT NNP NNP RB VBD DT NN TO PRP$ JJ NN . The United States ' top law enforcement official says the recent terrorist bombings in Britain and Egypt could be the work of al-Qaida . DT NNP NNPS POS JJ NN NN NN VBZ DT JJ JJ NNS IN NNP CC NNP MD VB DT NN IN NNP . Attorney General Alberto Gonzales cautioned that officials are still investigating the bombings , which together killed some 140 people . NNP NNP NNP NNP VBD IN NNS VBP RB VBG DT NNS , WDT RB VBD DT CD NNS . But in an interview with CNN television , Mr. Gonzales said the July 7 attack on London 's transit system and the July 23 bombing at Egypt 's Sharm-el-Sheik resort both have the appearance of al-Qaida involvement . CC IN DT NN IN NNP NN , NNP NNP VBD DT NNP CD NN IN NNP POS NN NN CC DT NNP CD VBG IN NNP POS JJ NN DT VBP DT NN IN NNP NN . Groups that say they are affiliated with al-Qaida have claimed responsibility for the attacks . NNS WDT VBP PRP VBP VBN IN NNP VBP VBN NN IN DT NNS . Sunday 's Washington Post cites intelligence officials and terrorism experts as saying that Osama bin Laden or his aides may have sponsored the two operations from afar . NNP POS NNP NNP VBZ NN NNS CC NN NNS IN VBG IN NNP NNP NNP CC PRP$ NNS MD VB VBN DT CD NNS IN NN . The officials say the attacks fit into al-Qaida 's pattern of conducting multiple bombings against civilian targets that are designed to scare Westerners and shake the economy . DT NNS VBP DT NNS VBP IN NNP POS NN IN VBG JJ NNS IN JJ NNS WDT VBP VBN TO VB NNS CC VB DT NN . Christians around the world are observing Good Friday , which commemorates the crucifixion of Jesus . NNS IN DT NN VBP VBG JJ NNP , WDT VBZ DT NN IN NNP . Many Christians attend services Friday to pray and reflect on the execution of Jesus near Jerusalem nearly 2,000 years ago . JJ NNPS NN NNS NNP TO VB CC VB IN DT NN IN NNP IN NNP RB CD NNS RB . Christians believe Jesus returned to life on what is now observed as Easter Sunday . NNS VBP NNP VBD TO NN IN WP VBZ RB VBN IN NNP NNP . Pope John Paul II - the leader of one billion Roman Catholics - has been limited in Holy Week activities this year as he recovers from a throat operation last month . NNP NNP NNP NNP IN DT NN IN CD CD NNP NNPS : VBZ VBN VBN IN NNP NNP NNS DT NN IN PRP VBZ IN DT NN NN JJ NN . He will not lead public ceremonies today as he has in the past . PRP MD RB VB JJ NNS NN IN PRP VBZ IN DT NN . President Bush , a devout Protestant Christian , issued his Easter greeting Friday , saying the teachings of Jesus ' continue to comfort and strengthen Christians around the world . ' NNP NNP , DT NN NNP NNP , VBD PRP$ NNP NN NNP , VBG DT NNS IN NNP `` VB TO NN CC VB NNS IN DT NN . `` Orthodox Christians commemorate the occasion next month . NNP NNPS VBP DT NN JJ NN . Delegates to an international conference on Afghanistan are using the second day of the London meeting to discuss the nation 's post-war problems with security , reconstruction and opium-traffickers . NNS TO DT JJ NN IN NNP VBP VBG DT JJ NN IN DT NNP NN TO VB DT NN POS JJ NNS IN NN , NN CC NNS . On Tuesday , the conference unveiled a five-year plan that includes wiping out illegal armed groups by 2007 - and establishing a respected national army and justice system by 2010 . IN NNP , DT NN VBD DT JJ NN WDT VBZ VBG RP JJ JJ NNS IN CD : CC VBG DT JJ JJ NN CC NN NN IN CD . Afghan President Hamid Karzai told the conference that eliminating insurgents and the opium production that supports them will be a difficult task . JJ NNP NNP NNP VBD DT NN IN VBG NNS CC DT NN NN WDT VBZ PRP MD VB DT JJ NN . He said it will take at least a decade to develop alternative sources of income for farmers and to totally eliminate poppy production . PRP VBD PRP MD VB IN JJS DT NN TO VB JJ NNS IN NN IN NNS CC TO RB VB NN NN . Donor countries have pledged almost $ 5 billion in aid so far , with the United States promising $ 1.1 billion for the war-torn country . NNP NNS VBP VBN RB $ CD CD IN NN RB RB , IN DT NNP NNPS VBG $ CD CD IN DT JJ NN . Military officials in Nepal say Maoist rebels have abducted at least 220 villagers from several remote mountainous districts in the western part of the country . JJ NNS IN NNP VBP NNP NNS VBP VBN IN JJS CD NNS IN JJ JJ JJ NNS IN DT JJ NN IN DT NN . The officials say that on July 31 , the rebels took away more than 150 women from four villages in the Bajura district , and 70 people from several villages in neighboring Accham district . DT NNS VBP IN IN NNP CD , DT NNS VBD RB JJR IN CD NNS IN CD NNS IN DT NNP NN , CC CD NNS IN JJ NNS IN JJ NNP NN . The condition and whereabouts of the villagers are unknown and the motive remains unclear . DT NN CC NNS IN DT NNS VBP JJ CC DT NN VBZ JJ . But Maoist rebels are known to take hundreds of villagers to their rallies and possibly try to recruit them to fight government troops . CC NNP NNS VBP VBN TO VB NNS IN NNS TO PRP$ NNS CC RB VB TO VB PRP TO VB NN NNS . The rebels have been fighting since 1996 to replace the constitutional monarchy in the world 's only Hindu kingdom with a communist state . DT NNS VBP VBN VBG IN CD TO VB DT JJ NN IN DT NN POS JJ NNP NN IN DT JJ NN . More than 11,000 people have been killed in the conflict . JJR IN CD NNS VBP VBN VBN IN DT NN . Afghan police say unidentified gunmen in northwestern Pakistan have kidnapped an Afghan government advisor as he visited relatives in a border town . JJ NNS VBP JJ NNS IN JJ NNP VBP VBN DT JJ NN NN IN PRP VBD NNS IN DT NN NN . Authorities say an adviser to the Afghan Ministry of Rural Development , Akhtar Kohistani , was abducted from his in-laws ' house or wife 's relatives ' house in Chitral , Pakistan , late Sunday . NNS VBP DT NN TO DT JJ NNP IN NNP NNP , NNP NNP , VBD VBN IN PRP$ NNS POS NN CC NN POS NNS POS NN IN NNP , NNP , JJ NNP . No group has claimed responsibility for the abduction . DT NN VBZ VBN NN IN DT NN . The kidnapping is the second of a prominent Afghan in Pakistan in the past four days . DT NN VBZ DT NN IN DT JJ NN IN NNP IN DT JJ CD NNS . On Friday , the brother of Afghanistan 's finance minister was kidnapped in northwest Pakistan as he visited family members . IN NNP , DT NN IN NNP POS NN NN VBD VBN IN JJ NNP IN PRP VBD NN NNS . Officials say the businessman Zia ul-Haq Ahadi was abducted by unidentified assailants in a residential area of Peshawar . NNS VBP DT NN NNP NNP NNP VBD VBN IN JJ NNS IN DT JJ NN IN NNP . And , in September , Afghanistan 's top diplomat to Pakistan was kidnapped in the same neighborhood . CC , IN NNP , NNP POS JJ NN TO NNP VBD VBN IN DT JJ NN . He has yet to be released , and authorities are searching for him . PRP VBZ RB TO VB VBN , CC NNS VBP VBG IN PRP . U.N. Secretary-General Kofi Annan says the United Nations is determined to get food to Niger , where severe food shortages have left an estimated three million people in need of aid . NNP NNP NNP NNP VBZ DT NNP NNPS VBZ VBN TO VB NN TO NNP , WRB JJ NN NNS VBP VBN DT VBN CD CD NNS IN NN IN NN . Mr. Annan said during a visit to Niger , that his agency will work with the government and the international community to ensure all those in need get help . NNP NNP VBD IN DT NN TO NNP , IN PRP$ NN MD VB IN DT NN CC DT JJ NN TO VB DT DT IN NN VBP NN . The U.N. chief is wrapping up a two-day trip aimed at drawing international attention to Niger 's food crisis caused by drought and locusts . DT NNP NN VBZ VBG RP DT JJ NN VBN IN VBG JJ NN TO NNP POS NN NN VBN IN NN CC NNS . Wednesday , he met with U.N. officials and aid groups in the capital , Niamey . NNP , PRP VBD IN NNP NNS CC NN NNS IN DT NN , NNP . Tuesday , he visited the southern town of Zinder , one of the hardest-hit parts of the country . NNP , PRP VBD DT JJ NN IN NNP , CD IN DT JJ NNS IN DT NN . The U.N. has been criticized for its slow response to the crisis . DT NNP VBZ VBN VBN IN PRP$ JJ NN TO DT NN . It began appealing for aid last year but was largely ignored until recently . PRP VBD VBG IN NN JJ NN CC VBD RB VBN IN RB . Iraqi authorities say the bodies of 18 young Shi'ite men have been found near the northern city of Mosul , where they were headed to work at a U.S. military base . JJ NNS VBP DT NNS IN CD JJ NNP NNS VBP VBN VBN IN DT JJ NN IN NNP , WRB PRP VBD VBN TO VB IN DT NNP JJ NN . Police say the men , who were all from Baghdad , were found bound and shot execution-style . NNS VBP DT NNS , WP VBD DT IN NNP , VBD VBN VBN CC VBN JJ . Their bodies were discovered Wednesday , but police say the men were killed nearly a month ago . PRP$ NNS VBD VBN NNP , CC NNS VBP DT NNS VBD VBN RB DT NN RB . Following a November U.S.-led offensive against insurgents in Fallujah , many fighters fled to Mosul . VBG DT NNP JJ NN IN NNS IN NNP , JJ NNS VBD TO NNP . Violence there has escalated in recent weeks , with dozens of dead bodies turning up . NN RB VBZ VBN IN JJ NNS , IN NNS IN JJ NNS VBG RP . Also Thursday , a U.S. Marine was killed in western al-Anbar province . RB NNP , DT NNP NN VBD VBN IN JJ NNP NN . Meanwhile , in Jordan , Iraq 's neighbors are holding a conference that is expected to endorse the January 30 elections and urge Iraqis to defy boycott calls from some Sunni groups concerned about escalating violence . RB , IN NNP , NNP POS NNS VBP VBG DT NN WDT VBZ VBN TO VB DT NNP CD NNS CC VB NNS TO VB NN NNS IN DT NNP NNS VBD IN VBG NN . The White House said Vice President Joe Biden will travel to Bosnia and Herzegovina , Serbia and Kosovo later this month . DT NNP NNP VBD NNP NNP NNP NNP MD VB TO NNP CC NNP , NNP CC NNP RB DT NN . In a statement Friday , Mr. Biden 's office said the vice president will meet with the political leadership in all three countries , as well as U.S. officials and military personnel stationed in the region . IN DT NN NNP , NNP NNP POS NN VBD DT NN NN MD VB IN DT JJ NN IN DT CD NNS , RB RB IN NNP NNS CC JJ NNS VBN IN DT NN . It said the vice president 's trip will take place the week of May 18 , and that further details will be released at a later date . PRP VBD DT NN NN POS NN MD VB NN DT NN IN NNP CD , CC IN JJ NNS MD VB VBN IN DT JJ NN . Leaders from around the world are in Warsaw to celebrate the 90th anniversary of Poland 's independence . NNS IN IN DT NN VBP IN NNP TO VB DT JJ NN IN NNP POS NN . German Chancellor Angela Merkel took part in commemorations at the Tomb of Poland 's Unknown Soldier . JJ NNP NNP NNP VBD NN IN NNS IN DT NNP IN NNP POS JJ NN . Afghan President Hamid Karzai , Georgian President Mikheil Saakashvili and Ukrainian President Viktor Yushchenko are among the dignitaries who are joining Polish President Lech Kaczynski at a gala ceremony this Tuesday evening . JJ NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP VBP IN DT NNS WP VBP VBG JJ NNP NNP NNP IN DT NN NN DT NNP NN . The Polish president has come under sharp criticism for failing to invite former president and Solidarity movement leader Lech Walesa to the formal Independence Day celebrations . DT JJ NN VBZ VBN IN JJ NN IN VBG TO VB JJ NN CC NNP NN NN NNP NNP TO DT JJ NNP NNP NNS . As Europe celebrates Armistice Day , marking the end of World War One , Poland also celebrates the re-establishment of its independence 123 years after Russia , Prussia and Austria divided and occupied the country in 1795 . IN NNP VBZ NNP NNP , VBG DT NN IN NNP NNP CD , NNP RB VBZ DT NN IN PRP$ NN CD NNS IN NNP , NNP CC NNP VBD CC VBD DT NN IN CD . Iran 's new president , Mahmoud Ahmadinejad , declared at his swearing-in ceremony Saturday that the Iranian nation can not be intimidated . NNP POS JJ NN , NNP NNP , VBD IN PRP$ NN NN NNP IN DT JJ NN MD RB VB VBN . Without directly mentioning the controversy surrounding his country 's pursuit of nuclear technology , Mr. Ahmadinejad told parliament that Iran would respect international norms , but would never surrender to what he called ' illegal requests . ' IN RB VBG DT NN VBG PRP$ NN POS NN IN JJ NN , NNP NNP VBD NN IN NNP MD VB JJ NNS , CC MD RB VB TO WP PRP VBD `` JJ NNS . `` In a nation where 70 percent of the population is under age 30 , Mr. Ahmadinejad pledged to tackle unemployment . IN DT NN WRB CD NN IN DT NN VBZ IN NN CD , NNP NNP VBD TO VB NN . He also vowed to defend Iran 's independence and said , ' if religion is weakened , our identity will be weakened too . ' PRP RB VBD TO VB NNP POS NN CC VBD , `` IN NN VBZ VBN , PRP$ NN MD VB VBN RB . `` A former revolutionary guard and Tehran mayor , the 49-year-old president is a religious conservative . DT JJ NN NN CC JJ NN , DT JJ NN VBZ DT JJ NN . His arrival in office brings to a close President Mohammad Khatami 's largely unsuccessful eight-year attempt to liberalize the government . PRP$ NN IN NN VBZ TO DT JJ NNP NNP NNP POS RB JJ JJ NN TO VB DT NN . President Ahmadinejad has two weeks to announce his Cabinet . NNP NNP VBZ CD NNS TO VB PRP$ NNP . Medical professionals in India protesting against a caste quota have been joined by professionals from other fields , as demonstrations continue in the capital . JJ NNS IN NNP VBG IN DT NN NN VBP VBN VBN IN NNS IN JJ NNS , IN NNS VBP IN DT NN . Thousands of professionals marched in New Delhi Saturday , denouncing a government plan to reserve more college seats for lower castes . NNS IN NNS VBD IN NNP NNP NNP , VBG DT NN NN TO VB JJR NN NNS IN JJR NNS . In addition to attending rallies , doctors and medical students who work in public healthcare facilities are on strike . IN NN TO VBG NNS , NNS CC JJ NNS WP VBP IN JJ NN NNS VBP IN NN . The work stoppage has lasted for about a week . DT NN NN VBZ VBN IN IN DT NN . It is forcing thousands of hospital patients to go without treatment or to seek treatment at costly , private hospitals . PRP VBZ VBG NNS IN NN NNS TO VB IN NN CC TO VB NN IN JJ , JJ NNS . The government plans to more than double the percentage of places reserved for lower caste students in state-funded medical , engineering and other professional colleges . DT NN VBZ TO JJR IN VB DT NN IN NNS VBN IN JJR NN NNS IN JJ JJ , NN CC JJ JJ NNS . Critics say the change will reduce the number of slots for students competing on merit and will hurt educational and professional standards . NNS VBP DT NN MD VB DT NN IN NNS IN NNS VBG IN NN CC MD VB JJ CC JJ NNS . U.S Open women 's tennis champion Kim Clijsters of Belgium has defeated French player Nathalie Dechy to reach the finals of the FORTIS Championships in Luxembourg . NNP NNP NNS POS NN NN NNP NNP IN NNP VBZ VBN JJ NN NNP NNP TO VB DT NNS IN DT NNS NNS IN NNP . Clijsters reached the final in straight sets , 06-Mar , 06-Jan . NNP VBD DT JJ IN JJ NNS , CD , CD . Sunday , the Belgian world number three takes on Germany 's Anna-Lena Groenefeld , a three-set winner over seventh seed Dinara Safina of Russia ( 06-Apr , 05-Jul , 06-Apr ) . NNP , DT JJ NN NN CD VBZ IN NNP POS NNP NNP , DT JJ NN IN JJ NN NNP NNP IN NNP LRB CD , CD , CD RRB . Clijsters has won 25 of her last 26 matches this season . NNP VBZ VBN CD IN PRP$ JJ CD NNS DT NN . She has played Groenefeld once before - earlier this year in Stanford , California - and beat the German player in straight sets . PRP VBZ VBN NNP RB IN : RBR DT NN IN NNP , NNP : CC VB DT JJ NN IN JJ NNS . The African Union says a Senegalese soldier was killed Friday when unknown gunmen ambushed an AU patrol near the Sudan-Chad border . DT NNP NNP VBZ DT JJ NN VBD VBN NNP WRB JJ NNS VBD DT NNP NN IN DT JJ NN . Khartoum and Sudanese rebels are blaming each other for the attack , which targeted a group of Senegalese soldiers patrolling the Darfur region . NNP CC JJ NNS VBP VBG DT NN IN DT NN , WDT VBD DT NN IN JJ NNS VBG DT NNP NN . Ten other soldiers wounded in the attack were evacuated to a local hospital for treatment . CD JJ NNS VBN IN DT NN VBD VBN TO DT JJ NN IN NN . The assailants stole an AU vehicle , using it to flee the scene . DT NNS VBD DT NNP NN , VBG PRP TO VB DT NN . The incident comes just days after cross-border raids on three Chadian border villages killed nine civilians . DT NN VBZ RB NNS IN JJ NNS IN CD JJ NN NNS VBD CD NNS . Chad 's government has repeatedly accused Sudan of supporting rebel activity along the border . NNP POS NN VBZ RB VBN NNP IN VBG JJ NN IN DT NN . Sudan has denied any involvement with the rebels . NNP VBZ VBN DT NN IN DT NNS . Tensions have risen between the two nations since Sudanese rebels attacked the Chadian town of Adre last month . NNS VBP VBN IN DT CD NNS IN JJ NNS VBD DT JJ NN IN NNP JJ NN . After the attack , Chad said a ' state of belligerence ' existed between it and Khartoum . IN DT NN , NNP VBD DT `` NN IN NN `` VBD IN PRP CC NNP . Britain 's Prince Charles and his wife Camilla have arrived at the White House , where they will have lunch with President and Mrs. Bush Wednesday , on their first U.S. visit since they were married in April . NNP POS NNP NNP CC PRP$ NN NNP VBP VBN IN DT NNP NNP , WRB PRP MD VB NN IN NNP CC NNP NNP NNP , IN PRP$ JJ NNP NN IN PRP VBD VBN IN NNP . The Prince of Wales and the Duchess of Cornwall will also be the guests of honor at a state dinner at the White House later in the day . DT NNP IN NNP CC DT NN IN NNP MD RB VB DT NNS IN NN IN DT NN NN IN DT NNP NNP RB IN DT NN . From Washington , they will travel to New Orleans to meet with victims of Hurricane Katrina . IN NNP , PRP MD VB TO NNP NNP TO VB IN NNS IN NNP NNP . The royal couple spent the first day of their weeklong trip Tuesday in New York City , where they visited the site of the World Trade Center and dedicated a memorial to the 67 British victims of the September 11 , 2001 terrorist attacks . DT JJ NN VBD DT JJ NN IN PRP$ JJ NN NNP IN NNP NNP NNP , WRB PRP VBD DT NN IN DT NNP NNP NNP CC VBD DT NN TO DT CD JJ NNS IN DT NNP CD , CD JJ NNS . A leading U.S. senator predicts that January will be a month of ' historic transformation ' in the Middle East . DT VBG NNP NN VBZ IN NNP MD VB DT NN IN `` JJ NN `` IN DT NNP NNP . In an interview with ABC television Sunday , Senator Joe Lieberman said this month will be remembered as the time Iraqis and Palestinians held elections and started becoming democratic nations . IN DT NN IN NNP NN NNP , NNP NNP NNP VBD DT NN MD VB VBN IN DT NN NNS CC NNS VBD NNS CC VBD VBG JJ NNS . Mr. Lieberman , who just returned from a trip to Iraq , said he came away encouraged that Iraqis will be able to hold elections despite ongoing violence . NNP NNP , WP RB VBD IN DT NN TO NNP , VBD PRP VBD RB VBN IN NNS MD VB JJ TO VB NNS IN JJ NN . The Democratic senator called the violence ' only a small part ' of Iraq 's reality , and said insurgents fighting U.S. and Iraqi security forces do not have popular support . DT JJ NN VBD DT NN `` RB DT JJ NN `` IN NNP POS NN , CC VBD NNS VBG NNP CC JJ NN NNS VBP RB VB JJ NN . He said it would be a mistake to postpone Iraqi elections despite calls from some Sunni Muslim politicians to do so . PRP VBD PRP MD VB DT NN TO VB JJ NNS IN NNS IN DT NNP NNP NNS TO VB RB . Iraq 's elections are set for January 30 . NNP POS NNS VBP VBN IN NNP CD . Palestinians choose a new president on January 9 . NNS VBP DT JJ NN IN NNP CD . Defending champion Andy Roddick of the United States and Croatia 's Ivo Karlovic have advanced to the finals of the Stella Artois grass-court tennis tournament in London . VBG NN NNP NNP IN DT NNP NNPS CC NNP POS NNP NNP VBP VBN TO DT NNS IN DT NNP NNP NN NN NN IN NNP . Roddick , the second seed , defeated fourth-seeded Radek Stepanek of the Czech Republic in three sets 06-Mar , 02-Jun , 06-Feb . NNP , DT JJ NN , VBD JJ NNP NNP IN DT JJ NNP IN CD NNS CD , CD , CD . After breaking Stepanek 's serve early in the first set Saturday , Roddick hit a slump in the second set before getting back on track for the victory . IN VBG NNP POS NN RB IN DT JJ NN NNP , NNP VBD DT NN IN DT JJ NN IN VBG RP IN NN IN DT NN . The 22-year-old Roddick faces Karlovic , who scored a straight-set win over sixth-seeded Thomas Johansson of Sweden 06-Apr , 07-Jun . DT JJ NNP VBZ NNP , WP VBD DT JJ NN IN JJ NNP NNP IN NNP CD , CD . The two meters , eight centimeter tall Karlovic fired 19 aces on his first serve in the one hour , 24 minute match . DT CD NNS , CD NN JJ NNP VBD CD NNS IN PRP$ NN VBP IN DT CD NN , CD NN NN . Roddick and Karlovic have never met one another before in ATP Tour play . NNP CC NNP VBP RB VBN CD DT IN IN NNP NNP NN . The tournament is a key warmup for Wimbledon -- the third Grand Slam event of the season . DT NN VBZ DT JJ NN IN NNP : DT JJ NNP NNP NN IN DT NN . Israeli troops have killed three Palestinian militants in separate incidents in the occupied West Bank and the Hamas-controlled Gaza Strip . JJ NNS VBP VBN CD JJ NNS IN JJ NNS IN DT JJ NNP NNP CC DT JJ NNP NNP . Israel 's military says troops entered the West Bank city of Tulkarm Sunday in search of two wanted militants . NNP POS JJ VBZ NNS VBD DT NNP NNP NN IN NNP NNP IN NN IN CD JJ NNS . It says soldiers opened fire at the men as they tried to flee , killing one and wounding the other . PRP VBZ NNS VBD NN IN DT NNS IN PRP VBD TO VB , VBG CD CC VBG DT JJ . Palestinian officials say the dead militant was loyal to the Fatah movement of Palestinian President Mahmoud Abbas . JJ NNS VBP DT JJ NN VBD JJ TO DT NNP NN IN JJ NNP NNP NNP . The wounded man was taken to an Israeli hospital for treatment . DT JJ NN VBD VBN TO DT JJ NN IN NN . Earlier in the day , Palestinian medics said Israeli troops operating in central Gaza killed two Palestinian militants during an exchange of fire . RBR IN DT NN , JJ NNS VBD JJ NNS VBG IN JJ NNP VBD CD JJ NNS IN DT NN IN NN . Palestinian officials identified one of the militants as an Islamic Jihad member , and the other as a member of the Popular Resistance Committees . JJ NNS VBD CD IN DT NNS IN DT JJ NN NN , CC DT JJ IN DT NN IN DT NNP NNP NNS . A Philippine army general says search teams have found the body of a U.S. Peace Corps volunteer who went missing 10 days ago . DT JJ NN NN VBZ NN NNS VBP VBN DT NN IN DT NNP NNP NNP NN WP VBD VBG CD NNS RB . Major General Rodrigo Maclang said Wednesday rescuers found Julia Campbell 's body partially buried near the northern mountain town of Batad . NNP NNP NNP NNP VBD NNP NNS VBD NNP NNP POS NN RB VBN IN DT JJ NN NN IN NNP . He said her feet were sticking out of the ground . PRP VBD PRP$ NNS VBD VBG IN IN DT NN . Police have not said how the 40-year-old died , but said they are conducting a criminal investigating into her death . NNS VBP RB VBN WRB DT JJ VBD , CC VBD PRP VBP VBG DT JJ VBG IN PRP$ NN . Authorities have dismissed the possibility that she had been kidnapped by communist guerrillas . NNS VBP VBN DT NN IN PRP VBD VBN VBN IN JJ NNS . Campbell was last seen April 8th , when she began a hike near the town of Banaue in Ifugao province , north of Manila . NNP VBD JJ VBN NNP CD , WRB PRP VBD DT NN IN DT NN IN NNP IN NNP NN , NN IN NNP . She had been teaching English in the town of Legaspi for the past two years . PRP VBD VBN VBG NNP IN DT NN IN NNP IN DT JJ CD NNS . She also worked as journalist , with articles published in The New York Times newspaper , Starmagazine and a number of media Web sites . PRP RB VBD IN NN , IN NNS VBN IN DT NNP NNP NNP NN , NNP CC DT NN IN NNS NNP NNS . King Abdullah II of Jordan has vowed ' zero tolerance ' toward terrorists , as his government says al-Qaida in Iraq was behind Wednesday 's triple suicide attacks that killed 57 people . NNP NNP NNP IN NNP VBZ VBN `` CD NN `` IN NNS , IN PRP$ NN VBZ NNP IN NNP VBD IN NNP POS JJ NN NNS WDT VBD CD NNS . The king told the official Petra news agency Saturday that Jordan would not tolerate anyone who distorts Islam to promote violence , and he vowed to bring the perpetrators of the attacks to justice . DT NN VBD DT JJ NNP NN NN NNP IN NNP MD RB VB DT WP VBZ NNP TO VB NN , CC PRP VBD TO VB DT NNS IN DT NNS TO NN . Earlier , Deputy Prime Minister Marwan al-Muasher told reporters that three non-Jordanians carried out the Amman hotel bombings . RB , NN JJ NN NNP NNP VBD NNS IN CD NNS VBD IN DT NNP NN NNS . He says no women appear to have been involved in the attacks , disputing a claim attributed to al-Qaida in Iraq that a woman was among four attackers . PRP VBZ DT NNS VBP TO VB VBN VBN IN DT NNS , VBG DT NN VBN TO NNP IN NNP IN DT NN VBD IN CD NNS . Amid reports that the suicide bombers were Iraqis , the king reassured the country 's large Iraqi population that Jordan would continue to be a safehaven for them . IN NNS IN DT NN NNS VBD NNS , DT NN VBD DT NN POS JJ JJ NN IN NNP MD VB TO VB DT NN IN PRP . The U.S. military says four Iraqi civilians were killed and 19 people , including two American soldiers , were wounded when a car bomb exploded near a U.S. military convoy in the northern town of Baiji Tuesday . DT NNP NN VBZ CD JJ NNS VBD VBN CC CD NNS , VBG CD JJ NNS , VBD VBN WRB DT NN NN VBD IN DT NNP JJ NN IN DT JJ NN IN NNP NNP . In a separate attack -- also in Baiji -- insurgents fired a rocket-propelled grenade at a U.S. tank , wounding one soldier . IN DT JJ NN : RB IN NNP : NNS VBD DT JJ NN IN DT NNP NN , VBG CD NN . Insurgents have recently stepped up their violent campaign - particularly in Iraq 's Sunni dominated regions - to derail the country 's January 30 election . NNS VBP RB VBN RP PRP$ JJ NN : RB IN NNP POS NNP VBD NNS : TO VB DT NN POS NNP CD NN . Major Sunni Muslim and Kurdish parties have called for a six-month delay in the vote . NNP NNP NNP CC NNP NNS VBP VBN IN DT JJ NN IN DT NN . But parties representing Iraq 's Shi'ite majority say the election should go ahead as planned . CC NNS VBG NNP POS NNP NN VBP DT NN MD VB RB RB VBN . U.S. Secretary of State Colin Powell says the election is a way for Iraqis to take a stand against the insurgents . NNP NNP IN NNP NNP NNP VBZ DT NN VBZ DT NN IN NNS TO VB DT NN IN DT NNS . Officials in Iraq say at least 10 Iraqis have been killed and several others wounded in separate insurgent attacks across the country . NNS IN NNP VBP IN JJS CD NNS VBP VBN VBN CC JJ NNS VBD IN JJ JJ NNS IN DT NN . Security officials say gunmen ambushed a police patrol Saturday , in the Baghdad area , killing two officers and wounding at least two others . NN NNS VBP NNS VBD DT NN NN NNP , IN DT NNP NN , VBG CD NNS CC VBG IN JJS CD NNS . Another policeman was killed in a separate attack north of Baghdad . DT NN VBD VBN IN DT JJ NN NN IN NNP . At least seven civilians were killed in other attacks elsewhere . IN JJS CD NNS VBD VBN IN JJ NNS RB . Separately , the U.S. military says one American Marine was killed in combat Saturday in western al-Anbar province . RB , DT NNP NN VBZ CD NNP NNP VBD VBN IN NN NNP IN JJ NNP NN . And at least six coalition soldiers were hurt in other attacks in northern Iraq . CC IN JJS CD NN NNS VBD VBN IN JJ NNS IN JJ NNP . Meanwhile , there are reports of fighting between U.S. forces and insurgents in the flashpoint city of Fallujah , where U.S. and Iraqi forces launched a full-scale offensive last month to dislodge guerrilla fighters . RB , EX VBP NNS IN VBG IN NNP NNS CC NNS IN DT NN NN IN NNP , WRB NNP CC JJ NNS VBD DT JJ NN JJ NN TO VB NN NNS . Kenyan police have arrested several journalists and activists who were protesting a new media bill passed by parliament that would impose strict controls on the press . JJ NNS VBP VBN JJ NNS CC NNS WP VBD VBG DT JJ NNS NN VBN IN NN WDT MD VB JJ NNS IN DT NN . Reports from the Kenyan capital , Nairobi , say the police broke up Friday 's protest , which took place shortly before President Mwai Kibaki was scheduled to speak at a celebration marking Kenya 's independence day . NNS IN DT JJ NN , NNP , VBP DT NN VBD IN NNP POS NN , WDT VBD NN RB IN NNP NNP NNP VBD VBN TO VB IN DT NN VBG NNP POS NN NN . The media bill was passed Wednesday and has been sent to President Kibaki for his signature . DT NNS NN VBD VBN NNP CC VBZ VBN VBN TO NNP NNP IN PRP$ NN . The measure would set heavy fines and prison sentences for perceived press offenses , would allow government ministers to dictate content on broadcast media and would allow the seizure of equipment . DT NN MD VB JJ NNS CC NN NNS IN VBN NN NNS , MD VB NN NNS TO VB NN IN NN NNS CC MD VB DT NN IN NN . Kenyan and international media advocacy groups are urging Mr. Kibaki not to sign the bill . JJ CC JJ NNS NN NNS VBP VBG NNP NNP RB TO VB DT NN . The chairman of the Kenya Media Council , Wachira Waruru , called the measure a blow against freedom of the press . DT NN IN DT NNP NNP NNP , NNP NNP , VBD DT NN DT NN IN NN IN DT NN . Ukraine 's parliament has adopted a bill describing the famine of the 1930s as genocide . NNP POS NN VBZ VBN DT NN VBG DT NN IN DT NNS IN NN . Lawmakers Tuesday backed the measure , which calls the event genocide against the Ukrainian people . NNS NNP VBD DT NN , WDT VBZ DT NN NN IN DT JJ NNS . An earlier draft had called it genocide against the Ukrainian nation . DT JJR NN VBD VBN PRP NN IN DT JJ NN . Ukraine was under Soviet leadership at the time of the famine in 1932 - 33 . NNP VBD IN JJ NN IN DT NN IN DT NN IN CD IN CD . The famine killed as many as 10 million people in what was then Soviet Ukraine . DT NN VBD RB JJ IN CD CD NNS IN WP VBD RB JJ NNP . Many analysts say the famine was not from natural causes , but instead was the result of government policies under Soviet dictator Josef Stalin . JJ NNS VBP DT NN VBD RB IN JJ NNS , CC RB VBD DT NN IN NN NNS IN JJ NN NNP NNP . Ukrainian President Viktor Yushchenko supported the bill . JJ NNP NNP NNP VBD DT NN . On Saturday , he spoke in the capital , Kiev , to mark the 73rd anniversary of the tragedy , known in Ukraine as the Holodomor . IN NNP , PRP VBD IN DT NN , NNP , TO VB DT JJ NN IN DT NN , VBN IN NNP IN DT NNP . China denies it is failing to keep the Olympic Games and politics separate after a Communist party official criticized the Dalai Lama at a torch relay ceremony in Tibet . NNP VBZ PRP VBZ VBG TO VB DT NNP NNPS CC NNS JJ IN DT JJ NN NN VBD DT NNP NNP IN DT NN NN NN IN NNP . The Chinese foreign ministry Thursday said the official 's comments did not contradict China 's opposition to politicizing the Olympics . DT JJ JJ NN NNP VBD DT NN POS NNS VBD RB VB NNP POS NN TO VBG DT NNS . The ministry said the comments were meant to create a stable environment for the Olympics . DT NN VBD DT NNS VBD VBN TO VB DT JJ NN IN DT NNS . Earlier Thursday , the International Olympic Committee urged the Beijing Organizing Committee for the Olympic games to make sure such situations do not happen again . RBR NNP , DT NNP NNP NNP VBD DT NNP NNP NNP IN DT NNP NNS TO VB JJ JJ NNS VBP RB VB RB . The IOC said it regrets that the political statements were made during the closing torch relay ceremony Saturday in Tibet 's capital , Lhasa . DT NNP VBD PRP VBZ IN DT JJ NNS VBD VBN IN DT NN NN NN NN NNP IN NNP POS NN , NNP . Anti-Chinese government riots that erupted in Lhasa in March sparked a harsh crackdown by Chinese troops . JJ NN NNS WDT VBD IN NNP IN NNP VBD DT JJ NN IN JJ NNS . The crackdown led to chaotic demonstrations at several stops on the international leg of the torch relay for the Beijing Olympics that begin in August . DT NN VBD TO JJ NNS IN JJ NNS IN DT JJ NN IN DT NN NN IN DT NNP NNS WDT VBP IN NNP . New Zealand 's cricket team has scored a morale-boosting win over Bangladesh in the first of three one-day internationals in New Zealand . NNP NNP POS NN NN VBZ VBN DT JJ NN IN NNP IN DT NN IN CD JJ NNS IN NNP NNP . Despite Bangladesh 's highest total ever in a limited-overs match , the Kiwis were able to win the match by six wickets in Auckland . IN NNP POS JJS JJ RB IN DT JJ NN , DT NNS VBD JJ TO VB DT NN IN CD NNS IN NNP . Opening batsman Jamie How led all scorers with 88 runs as New Zealand reached 203-4 in 42.1 overs . VBG NN NNP NNP VBD DT NNS IN CD NNS IN NNP NNP VBD CD IN CD NNS . The score was in response to Bangladesh 's total of 201 all out in 46.3 overs . DT NN VBD IN NN TO NNP POS NN IN CD DT RP IN CD NNS . Mohammad Ashraful led the visitors with 70 runs , including 10 fours and one six on the short boundaries of the Eden Park ground . NNP NNP VBD DT NNS IN CD NNS , VBG CD NNS CC CD CD IN DT JJ NNS IN DT NNP NNP NN . The win was encouraging for New Zealand , which has suffered disappointing losses in its recent tours of South Africa and Australia . DT NN VBD VBG IN NNP NNP , WDT VBZ VBN JJ NNS IN PRP$ JJ NNS IN NNP NNP CC NNP . The second one-day international against Bangladesh is Friday in Napier . DT JJ JJ JJ IN NNP VBZ NNP IN NNP . Insurgents have struck again in Iraq , this time assassinating a senior government official , as they try to derail next month 's national elections . NNS VBP VBN RB IN NNP , DT NN VBG DT JJ NN NN , IN PRP VBP TO VB JJ NN POS JJ NNS . Police say unidentified gunmen killed the director of the Communications Ministry in a drive-by shooting as he headed to work Thursday , in Baghdad . NNS VBP JJ NNS VBD DT NN IN DT NNP NNP IN DT JJ NN IN PRP VBD TO VB NNP , IN NNP . Meanwhile , the death toll from a bomb attack in the Shi'ite holy city of Karbala Wednesday , climbed to 10 dead and at least 30 wounded . RB , DT NN NN IN DT NN NN IN DT NNP JJ NN IN NNP NNP , VBD TO CD JJ CC IN JJS CD VBD . And Italy 's government says it is investigating reports that one of its nationals may have been kidnapped and killed in Iraq . CC NNP POS NN VBZ PRP VBZ VBG NNS IN CD IN PRP$ NNS MD VB VBN VBN CC VBN IN NNP . In a separate development , attorneys for ousted leader Saddam Hussein say he met Thursday , for the first time since his capture last year with a defense lawyer . IN DT JJ NN , NNS IN JJ NN NNP NNP VBP PRP VBD NNP , IN DT JJ NN IN PRP$ NN JJ NN IN DT NN NN . Investigative hearings of Saddam 's top lieutenants are to begin very soon , but the former dictator is likely to be among the last tried . JJ NNS IN NNP POS JJ NNS VBP TO VB RB RB , CC DT JJ NN VBZ JJ TO VB IN DT JJ JJ . The Polish Defense Ministry says seven soldiers serving with the NATO-led mission in Afghanistan have been detained for the killing of civilians in the eastern part of the country . DT JJ NNP NNP VBZ CD NNS VBG IN DT JJ NN IN NNP VBP VBN VBN IN DT NN IN NNS IN DT JJ NN IN DT NN . In a statement released Tuesday , Polish military prosecutors say the soldiers were detained for violating international law , specifically the Hague and Geneva Conventions . IN DT NN VBN NNP , JJ JJ NNS VBP DT NNS VBD VBN IN VBG JJ NN , RB DT NNP CC NNP NNS . The Afghan civilians were killed during a firefight between the Polish troops and militants on August 16 . DT JJ NNS VBD VBN IN DT NN IN DT JJ NNS CC NNS IN NNP CD . Poland currently has 1,200 troops serving in Afghanistan . NNP RB VBZ CD NNS VBG IN NNP . Also Tuesday , Afghan President Hamid Karzai said corruption and embezzlement among government officials is on the rise . RB NNP , JJ NNP NNP NNP VBD NN CC NN IN NN NNS VBZ IN DT NN . He says officials should work with the Afghan people to serve the country without deceiving or exploiting it . PRP VBZ NNS MD VB IN DT JJ NNS TO VB DT NN IN VBG CC VBG PRP . Mr. Karzai 's comments came during a speech to village elders in the capital , Kabul . NNP NNP POS NNS VBD IN DT NN TO NN NNS IN DT NN , NNP . Witnesses say a top Palestinian bombmaker for the militant Islamic Jihad group was killed late Sunday in an Israeli missile strike in Gaza City . NNS VBP DT JJ NN NN IN DT JJ NNP NNP NN VBD VBN JJ NNP IN DT JJ NN NN IN NNP NNP . A second missile struck another car nearby , killing the head of a Palestinian squad linked to rocket attacks in southern Israel . DT JJ NN VBD DT NN RB , VBG DT NN IN DT JJ NN VBN TO NN NNS IN JJ NNP . Friday , Islamic Jihad claimed responsibility for firing rockets that wounded an Israeli infant and two adults in southern Israel . NNP , NNP NNP VBD NN IN VBG NNS WDT VBD DT JJ NN CC CD NNS IN JJ NNP . Separately , Israeli helicopters fired missiles early Sunday at a building occupied by militants from the al-Aqsa Martyrs Brigades . RB , JJ NNS VBD NNS JJ NNP IN DT NN VBN IN NNS IN DT NNP NNP NNP . Medics said three members of the group were killed . NNP VBD CD NNS IN DT NN VBD VBN . In other developments , Israel has agreed to release $ 54 million of Palestinian tax revenues it withheld after the militant group Hamas won Palestinian legislative elections last month . IN JJ NNS , NNP VBZ VBN TO VB $ CD CD IN JJ NN NNS PRP VBD IN DT JJ NN NNP VBD JJ JJ NNS JJ NN . Israel says the monthly transfers will be suspended if a Hamas-led government is formed , as expected . NNP VBZ DT JJ NNS MD VB VBN IN DT JJ NN VBZ VBN , IN VBN . Fighting has resumed in Uganda after the collapse of a cease-fire agreement designed to open the way to formal peace talks . NN VBZ VBN IN NNP IN DT NN IN DT NN NN VBN TO VB DT NN TO JJ NN NNS . The Ugandan military says rebels from the Lord 's Resistance Army ambushed an army vehicle early Saturday , near the northern town of Gulu . DT JJ NN VBZ NNS IN DT NNP POS NN NNP VBD DT NN NN JJ NNP , IN DT JJ NN IN NNP . Ugandan President Yoweri Museveni ordered the army to resume attacks against rebel forces after a temporary cease-fire ran out Friday night . JJ NNP NNP NNP VBD DT NN TO VB NNS IN JJ NNS IN DT JJ NN VBD RB NNP NN . But the president also left open the possibility of future negotiations . CC DT NN RB VBD RP DT NN IN JJ NNS . Both sides were expected to sign a wide-ranging truce on Friday , following a series of meetings this week . DT NNS VBD VBN TO VB DT JJ NN IN NNP , VBG DT NN IN NNS DT NN . But the deal was delayed after rebels asked for more time to study the proposal . CC DT NN VBD VBN IN NNS VBD IN JJR NN TO VB DT NN . The Lord 's Resistance Army has been fighting to overthrow the Ugandan government since 1987 , displacing more than one million people in the north . DT NNP POS NN NNP VBZ VBN VBG TO VB DT JJ NN IN CD , VBG JJR IN CD CD NNS IN DT NN . The rebels routinely attack civilians and kidnap children for forced labor as soldiers and sex slaves . DT NNS RB VBP NNS CC NN NNS IN VBN NN IN NNS CC NN NNS . Jurors in the Phil Spector murder trial were on June 5 shown a handgun found at the feet of an actress slain in the music producer 's mansion . NNS IN DT NNP NNP NN NN VBD IN NNP CD VBN DT NN VBN IN DT NNS IN DT NN NN IN DT NN NN POS NN . Los Angeles County sheriff 's detective Mark Lilienfeld displayed the Colt Cobra revolver , still covered in dried blood . NNP NNP NNP NN POS NN NNP NNP VBD DT NNP NNP NN , RB VBN IN JJ NN . It was not registered and had never definitively been linked to the 67-year-old Spector , who denies shooting Lana Clarkson in February , 2003 . PRP VBD RB VBN CC VBD RB RB VBN VBN TO DT JJ NN , WP VBZ VBG NNP NNP IN NNP , CD . He maintains the 40-year-old actress shot herself , and his defense attorneys are likely to argue the handgun belonged to Clarkson . PRP VBZ DT JJ NN VBD PRP , CC PRP$ NN NNS VBP JJ TO VB DT NN VBD TO NNP . Lilienfeld also displayed photographs of a holster which fit the handgun , found in a bureau near Clarkson 's body . NNP RB VBD NNS IN DT NN WDT VBP DT NN , VBD IN DT NN IN NNP POS NN . He testified about Spector 's small arsenal of firearms , including ammunition of the same type which killed Clarkson . PRP VBD IN NNP POS JJ NN IN NNS , VBG NN IN DT JJ NN WDT VBD NNP . Phil Spector rose to fame in the 1960s , crafting a series of classic pop singles using his ' Wall of Sound ' production technique . NNP NNP VBD TO NN IN DT NNS , VBG DT NN IN JJ NN VBZ VBG PRP$ `` NNP IN NNP `` NN NN . Former world number one and Wimbledon tennis champion Maria Sharapova of Russia has withdrawn from next month 's Australian women 's hard court championships because of a shoulder injury . JJ NN NN CD CC NNP NN NN NNP NNP IN NNP VBZ VBN IN JJ NN POS JJ NNS POS JJ NN NNS IN IN DT NN NN . Sharapova said in a statement that the shoulder strain forced her pullout from the January second to seventh event in Gold Coast . NNP VBD IN DT NN IN DT NN NN VBD PRP$ NN IN DT NNP JJ TO JJ NN IN NNP NNP . The Russian star said she is not sure she will be ready to play in the Australian Open , the first major tournament of 2006 . DT JJ NN VBD PRP VBZ RB JJ PRP MD VB JJ TO VB IN DT JJ NNP , DT JJ JJ NN IN CD . Sharapova reached the semi-finals in three of the four major tournaments in 2005 and won three tournaments on the WTA tour . NNP VBD DT NNS IN CD IN DT CD JJ NNS IN CD CC VBD CD NNS IN DT NNP NN . Her injury hindered her performance in the second half of the season . PRP$ NN VBD PRP$ NN IN DT JJ NN IN DT NN . The Aussie women 's hard court tournament will also mark the return of another former world number one player - Martina Hingis of Switzerland will play in the event and plans to play in the Australian Open beginning January 16 . DT JJ NNS POS JJ NN NN MD RB VB DT NN IN DT JJ NN NN CD NN IN NNP NNP IN NNP MD VB IN DT NN CC VBZ TO VB IN DT JJ NN VBG NNP CD . Romanian authorities are reporting new cases of bird flu in remote villages in the southwestern part of the country . JJ NNS VBP VBG JJ NNS IN NN NN IN JJ NNS IN DT JJ NN IN DT NN . Officials say they have ordered the slaughter of more than 8,000 chickens , after determining that they were victims of an H5-type of bird flu . NNS VBP PRP VBP VBN DT NN IN JJR IN CD NNS , IN VBG IN PRP VBD NNS IN DT NN IN NN NN . They say samples are being sent to a laboratory to determine if the infected birds contracted the highly dangerous H5N1 strain that has killed more than 60 people in Asia since 2003 . PRP VBP NNS VBP VBG VBN TO DT NN TO VB IN DT JJ NNS VBD DT RB JJ NNP NN WDT VBZ VBN JJR IN CD NNS IN NNP IN CD . Romania is located on a major flyway for migrating wild birds , and it was the first country on the European mainland to detect a case of the deadly strain . NNP VBZ VBN IN DT JJ NN IN VBG JJ NNS , CC PRP VBD DT JJ NN IN DT JJ NN TO VB DT NN IN DT JJ NN . Meanwhile , the European Parliament has approved measures to deal with a possible crisis . RB , DT NNP NNP VBZ VBN NNS TO VB IN DT JJ NN . These include creation of an improved early warning system and a coordinated emergency plan in the event of a pandemic . DT VBP NN IN DT VBN JJ NN NN CC DT JJ NN NN IN DT NN IN DT NN . Iran says it is determined to resume uranium enrichment whether talks with the European Union over its nuclear program succeed or fail . NNP VBZ PRP VBZ VBN TO VB NN NN IN NNS IN DT NNP NNP IN PRP$ JJ NN VB CC VB . Iranian Foreign Ministry spokesman Hamid Reza Asefi told a weekly news conference in Tehran Sunday the government will continue to suspend uranium enrichment during the talks . JJ NNP NNP NN NNP NNP NNP VBD DT JJ NN NN IN NNP NNP DT NN MD VB TO VB NN NN IN DT NNS . But he says Iran will not allow negotiations to go on for what it would consider an unreasonable period of time . CC PRP VBZ NNP MD RB VB NNS TO VB IN IN WP PRP MD VB DT JJ NN IN NN . Iranian officials have made similar comments before . JJ NNS VBP VBN JJ NNS IN . Iranian and EU negotiators are due to resume talks in London on April 29 . JJ CC NNP NNS VBP JJ TO VB NNS IN NNP IN NNP CD . Last November , Tehran agreed to suspend uranium enrichment while it negotiated a settlement to its nuclear dispute with the European Union . JJ NNP , NNP VBD TO VB NN NN IN PRP VBD DT NN TO PRP$ JJ NN IN DT NNP NNP . Europe and the United States are concerned that Tehran is secretly trying to manufacture nuclear weapons . NNP CC DT NNP NNPS VBP VBN IN NNP VBZ RB VBG TO VB JJ NNS . Tehran says its nuclear facilities will only be used to generate electricity . NNP VBZ PRP$ JJ NNS MD RB VB VBN TO VB NN . Funerals were held Tuesday for 17 people killed by a drunken tractor driver in Yuanshi county , a rural part of China 's northern Hebei province . NNS VBD VBN NNP IN CD NNS VBN IN DT JJ NN NN IN NNP NN , DT JJ NN IN NNP POS JJ NNP NN . Local officials say 38-year-old Li Xianliang went on a killing rampage Sunday after arguing with his supervisor about money while drinking . JJ NNS VBP JJ NNP NNP VBD IN DT NN NN NNP IN VBG IN PRP$ NN IN NN IN NN . Li allegedly killed his boss and later drove an earth-moving vehicle down a village road , tearing through buildings and crushing cars along the way . NNP RB VBD PRP$ NN CC RB VBD DT JJ NN IN DT NN NN , VBG IN NNS CC VBG NNS IN DT NN . The Associated Press said desperate villagers tried to stop the driver by jumping on his vehicle . DT NNP NNP VBD JJ NNS VBD TO VB DT NN IN VBG IN PRP$ NN . It said a villager finally managed to stab him . PRP VBD DT NN RB VBD TO VB PRP . Li was later subdued and taken into police custody . NNP VBD RB VBN CC VBN IN NN NN . The Chinese government has been dealing with a growing number of killing sprees , often committed by men angered about their working conditions or family relations . DT JJ NN VBZ VBN VBG IN DT VBG NN IN NN NNS , RB VBN IN NNS VBN IN PRP$ VBG NNS CC NN NNS . Some of the victims have included children . DT IN DT NNS VBP VBN NNS . Courts usually hand out death sentences to the perpetrators . NNS RB VB RP NN NNS TO DT NNS . The U.N. food program says Kenya has allowed about 60 of its trucks to cross into Somalia after a wait of several weeks . DT NNP NN NN VBZ NNP VBZ VBN IN CD IN PRP$ NNS TO VB IN NNP IN DT NN IN JJ NNS . The World Food Program said Friday the trucks were allowed to cross the border this week following appeals from the international community . DT NNP NNP NNP VBD NNP DT NNS VBD VBN TO VB DT NN DT NN VBG NNS IN DT JJ NN . The agency says there are still about 80 food trucks on the border and it hopes they will be allowed to cross soon . DT NN VBZ EX VBP RB IN CD NN NNS IN DT NN CC PRP VBZ PRP MD VB VBN TO VB RB . Kenya closed its border with Somalia in January during fighting that pitted Islamic militia against Somali government troops and their Ethiopian allies . NNP VBD PRP$ NN IN NNP IN NNP IN VBG IN VBD JJ NN IN JJ NN NNS CC PRP$ JJ NNS . However , the World Food Program says it was able to send food trucks into Somalia until recently . RB , DT NNP NNP NNP VBZ PRP VBD JJ TO VB NN NNS IN NNP IN RB . The food that just crossed the border is intended for tens of thousands of people in Somalia 's Gedo region , where malnutrition rates are at emergency levels . DT NN WDT RB VBD DT NN VBZ VBN IN NNS IN NNS IN NNS IN NNP POS NNP NN , WRB NN NNS VBP IN NN NNS . Piracy in Somalia 's waters has restricted the movement of relief vessels and forced aid agencies to use overland routes . NNP IN NNP POS NNS VBZ VBN DT NN IN NN NNS CC JJ NN NNS TO VB JJ NNS . Malawi 's parliament has passed laws paving the way for the possible impeachment of President Bingu wa Mutharika . NNP POS NN VBZ VBN NNS VBG DT NN IN DT JJ NN IN NNP NNP NNP NNP . A majority of lawmakers passed the legislation Tuesday outlining how to carry out impeachment proceedings . DT NN IN NNS VBD DT NN NNP VBG WRB TO VB RP NN NNS . Malawi 's constitution allows for impeachment , but until now no laws existed for how this could be done . NNP POS NN VBZ IN NN , CC IN RB DT NNS VBD IN WRB DT MD VB VBN . Mr. Mutharika 's opponents , led by members of the opposition United Democratic Front ( UDF ) , accuse the president of ignoring the constitution to set up his own party , and of misusing public funds . NNP NNP POS NNS , VBN IN NNS IN DT NN NNP NNP NNP LRB NNP RRB , VBP DT NN IN VBG DT NN TO VB RP PRP$ JJ NN , CC IN VBG JJ NNS . President Mutharika quit the UDF party earlier this year after launching a major crackdown on corruption that targeted several high level officials of the party . NNP NNP VBD DT NNP NN RBR DT NN IN VBG DT JJ NN IN NN WDT VBD JJ JJ NN NNS IN DT NN . Meanwhile Tuesday , anti-corruption officials announced they have summoned former President Bakili Muluzi to answer questions about alleged graft during his time in office . RB NNP , JJ NNS VBD PRP VBP VBN JJ NNP NNP NNP TO VB NNS IN JJ NN IN PRP$ NN IN NN . India 's cricket team has scored 365-5 by the close of play on the first day of its third and final test match against Pakistan in Bangalore . NNP POS NN NN VBZ VBN CD IN DT NN IN NN IN DT JJ NN IN PRP$ JJ CC JJ NN NN IN NNP IN NNP . Yuvraj Singh and Sourav Ganguly both had centuries for the home side , with Singh blasting a career-best 169 runs while Ganguly had an unbeaten 125 . NNP NNP CC NNP NNP DT VBD NNS IN DT NN NN , IN NNP VBG DT JJ CD NNS IN NNP VBD DT JJ CD . Singh had 28 fours and a six in his time at the crease , while Ganguly hammered 20 fours . NNP VBD CD NNS CC DT CD IN PRP$ NN IN DT NN , IN RB VBN CD NNS . Pakistani bowler Yasir Araft took three wickets while allowing 98 runs in 22 overs . JJ NN NNP NNP VBD CD NNS IN VBG CD NNS IN CD NNS . India last won a home series against Pakistan in 1979 , but leads this series 1-0 after winning the first test by six wickets . NNP JJ VBD DT NN NN IN NNP IN CD , CC VBZ DT NN CD IN VBG DT JJ NN IN CD NNS . The second test was a draw . DT JJ NN VBD DT NN . Witnesses in Baghdad say a bomb blast outside the Iraqi national journalists ' union has wounded the union 's leader and at least three other people . NNS IN NNP VBP DT NN NN IN DT JJ JJ NNS POS NN VBZ VBN DT NN POS NN CC IN JJS CD JJ NNS . Witnesses say the bomb exploded in central Baghdad Saturday as the union leader was saying goodbye to three guests . NNS VBP DT NN VBD IN JJ NNP NNP IN DT NN NN VBD VBG NN TO CD NNS . No one has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . Gunmen shot and fatally wounded the union 's former leader , Shihab al-Tamimi , in February . NNS VBD CC RB VBD DT NN POS JJ NN , NNP NNP , IN NNP . The official died of his wounds four days after being ambushed in Baghdad . DT NN VBD IN PRP$ NNS CD NNS IN VBG VBN IN NNP . The international Committee to Protect Journalists says Iraq has become the world 's most dangerous country for journalists since the U.S.-led invasion in 2003 . DT JJ NN TO VB NNS VBZ NNP VBZ VBN DT NN POS RBS JJ NN IN NNS IN DT JJ NN IN CD . The United States invaded Iraq citing concerns about alleged weapons of mass destruction programs . DT NNP NNPS VBD NNP VBG NNS IN JJ NNS IN NN NN NNS . No such weapons were found . DT JJ NNS VBD VBN . El Salvador is preparing to send another contingent of 380 soldiers to Iraq . NNP NNP VBZ VBG TO VB DT NN IN CD NNS TO NNP . Salvadoran President Antonio Saca said the troops will be participating in humanitarian activities such as building water systems and other infrastructure projects . JJ NNP NNP NNP VBD DT NNS MD VB VBG IN JJ NNS JJ IN NN NN NNS CC JJ NN NNS . The French news agency , AFP , reports the latest troops will relieve an earlier contingent stationed about 100 kilometers south of Baghdad . DT JJ NN NN , NNP , VBZ DT JJS NNS MD VB DT JJR NN VBN IN CD NNS RB IN NNP . El Salvador is the only Latin American country which still has troops in Iraq . NNP NNP VBZ DT RB JJ JJ NN WDT RB VBZ NNS IN NNP . China has named Donald Tsang Hong Kong 's acting Chief Executive after accepting the resignation of Tung Chee-hwa , the territory 's leader . NNP VBZ VBN NNP NNP NNP NNP POS VBG NNP NNP IN VBG DT NN IN NNP NNP , DT NN POS NN . Mr. Tsang , previously Hong Kong 's second-ranking official , told a news conference Saturday he will not reshuffle the cabinet and will serve only until another leader is elected on July 10 . NNP NNP , RB NNP NNP POS JJ NN , VBD DT NN NN NNP PRP MD RB VB DT NN CC MD VB RB IN DT NN VBZ VBN IN NNP CD . The next Chief Executive will complete the five-year term to which Mr. Tung was elected in 2002 by a Chinese-sanctioned electoral college . DT JJ NNP NNP MD VB DT JJ NN TO WDT NNP NNP VBD VBN IN CD IN DT JJ JJ NN . Mr. Tung , who is 67 , announced his resignation on Thursday , citing health reasons . NNP NNP , WP VBZ CD , VBD PRP$ NN IN NNP , VBG NN NNS . He rejected suggestions that China forced his resignation . PRP VBD NNS IN NNP VBD PRP$ NN . But in December , Chinese President Hu Jintao publicly reprimanded Mr. Tung for his performance , fueling rumors that China was considering a leadership change . CC IN NNP , JJ NNP NNP NNP RB VBD NNP NNP IN PRP$ NN , VBG NNS IN NNP VBD VBG DT NN NN . On Saturday , Mr. Tung was named one of several vice chairmen of a high-ranking Chinese advisory body . IN NNP , NNP NNP VBD VBN CD IN JJ NN NNS IN DT JJ JJ JJ NN . Researchers say it is safe for children to get the vaccine for measles , mumps and rubella without a risk of developing autism . NNS VBP PRP VBZ JJ IN NNS TO VB DT NN IN NNS , NNS CC NN IN DT NN IN VBG NN . Ten years ago , another study concluded there might be a connection . CD NNS RB , DT NN VBD EX MD VB DT NN . That study was later retracted , but the fear lived on . DT NN VBD RB VBN , CC DT NN VBD IN . Now new research provides strong evidence against any association . RB JJ NN VBZ JJ NN IN DT NN . VOA 's Carol Pearson has more . NNP POS NNP NNP VBZ RBR . Niger 's electoral commission says it is delaying the country 's upcoming presidential election by nearly a month . NNP POS JJ NN VBZ PRP VBZ VBG DT NN POS JJ JJ NN IN RB DT NN . The commission said Tuesday that the election to restore civilian rule after a military coup earlier this year will now be on January 31 , 2011 instead of January 3 . DT NN VBD NNP IN DT NN TO VB JJ NN IN DT JJ NN RBR DT NN MD RB VB IN NNP CD , CD IN IN NNP CD . It is the second postponement for Niger 's presidential election . PRP VBZ DT JJ NN IN NNP POS JJ NN . In May a spokesman for the military junta set the election for December 26 , but election officials said they needed more time to prepare . IN NNP DT NN IN DT JJ NN VBD DT NN IN NNP CD , CC NN NNS VBD PRP VBD JJR NN TO VB . The military junta came into power in February , after ousting unpopular president Mamadou Tandja , who had refused to leave officer when his term expired last year . DT JJ NN VBD IN NN IN NNP , IN VBG JJ NN NNP NNP , WP VBD VBN TO VB NN WRB PRP$ NN VBD JJ NN . The Sri Lankan military reports new exchanges of artillery and mortar fire with Tamil Tiger rebels trying to break through government lines to capture Jaffna town and the northern Jaffna peninsula . DT NNP JJ JJ VBZ JJ NNS IN NN CC NN NN IN NNP NNP NNS VBG TO VB IN NN NNS TO VB NNP NN CC DT JJ NNP NN . A Defense Ministry spokesman Major Upali Rajapakse said Sunday the rebels began an offensive nine days ago in an attempt to recapture the Tamil-majority area they lost in 1995 . DT NNP NNP NN NNP NNP NNP VBD NNP DT NNS VBD DT JJ CD NNS RB IN DT NN TO VB DT JJ NN PRP VBD IN CD . He said the military has successfully resisted the push . PRP VBD DT NN VBZ RB VBN DT NN . Hundreds of rebels , government troops and civilians have been killed in the latest fighting . NNS IN NNS , NN NNS CC NNS VBP VBN VBN IN DT JJS NN . The military says more than 80 rebels were killed since Friday , but there was no immediate reaction from the Tigers . DT JJ VBZ JJR IN CD NNS VBD VBN IN NNP , CC EX VBD DT JJ NN IN DT NNP . The United Nations has appealed to the warring sides to allow aid workers to deliver supplies . DT NNP NNP VBZ VBN TO DT VBG NNS TO VB NN NNS TO VB NNS . The U.N. says refugees cut off by the fighting are running short of food and water . DT NNP VBZ NNS VBN RP IN DT NN VBP VBG RB IN NN CC NN . A leader of the Palestinian militant group Hamas has suggested the possibility of future negotiations with Israel through a third party . DT NN IN DT JJ JJ NN NNP VBZ VBN DT NN IN JJ NNS IN NNP IN DT JJ NN . Mahmoud al-Zahar Monday said ' negotiation is not a taboo . ' NNP NNP NNP VBD `` NN VBZ RB DT NN . `` The comments come two days before Palestinian parliamentary elections , as surveys show almost even support for Hamas and Fatah , the political movement of Palestinian Prime Minister Mahmoud Abbas . DT NNS VBP CD NNS IN JJ JJ NNS , IN NNS VBP RB RB NN IN NNP CC NNP , DT JJ NN IN JJ NNP NNP NNP NNP . Hamas is dedicated to the destruction of Israel and its military wing has been involved in scores of attacks . NNP VBZ VBN TO DT NN IN NNP CC PRP$ JJ NN VBZ VBN VBN IN NNS IN NNS . Meanwhile , Israeli military officials say their troops will avoid entering Palestinian towns during the next few days so as not to interfere with the elections - unless it is necessary to foil attacks on Israelis . RB , JJ JJ NNS VBP PRP$ NNS MD VB VBG JJ NNS IN DT JJ JJ NNS RB IN RB TO VB IN DT NNS IN IN PRP VBZ JJ TO VB NNS IN NNS . Israeli troops arrested 24 Palestinians , including members of Hamas and Islamic Jihad , in raids overnight . JJ NNS VBN CD NNS , VBG NNS IN NNP CC NNP NNP , IN NNS RB . German prosecutors say a second suspect in a failed plot to blow up German trains has turned himself in to authorities in Lebanon . JJ NNS VBP DT JJ NN IN DT JJ NN TO VB RP JJ NNS VBZ VBN PRP IN TO NNS IN NNP . Germany 's federal prosecutor says Jihad Hamad , 19 , surrendered to police in the northwestern Lebanese coastal city of Tripoli . NNP POS JJ NN VBZ NNP NNP , CD , VBD TO VB IN DT JJ JJ JJ NN IN NNP . German authorities say the suspect is one of two Lebanese men accused of planting suitcase bombs on trains in Cologne July 31 . JJ NNS VBP DT NN VBZ CD IN CD JJ NNS VBN IN VBG NN NNS IN NNS IN NNP NNP CD . The devices failed to explode . DT NNS VBD TO VB . German police arrested the first suspect Youssef Mohamad el Hajdib , 21 , on Saturday . JJ NN VBD DT JJ NN NNP NNP NNP NNP , CD , IN NNP . He was detained in the German city of Kiel , as he apparently was trying to flee the country . PRP VBD VBN IN DT JJ NN IN NNP , IN PRP RB VBD VBG TO VB DT NN . German prosecutors say they will arrange to Jihad Hamad extradited to Germany . JJ NNS VBP PRP MD VB TO NNP NNP VBD TO NNP . Both men are accused of belonging to a terrorist organization . DT NNS VBP VBN IN VBG TO DT JJ NN . The International Committee of the Red Cross is calling on Israel to allow Palestinians from the Gaza Strip to resume visits with relatives held in Israeli jails . DT NNP NNP IN DT NNP NNP VBZ VBG IN NNP TO VB NNS IN DT NNP NNP TO VB NNS IN NNS VBN IN JJ NNS . In a statement Monday , the Red Cross says Israel suspended the visits last year after Hamas militants took control of the Gaza Strip . IN DT NN NNP , DT NNP NNP VBZ NNP VBD DT NNS JJ NN IN NNP NNS VBD NN IN DT NNP NNP . The Red Cross had been organizing the visits since 1967 . DT NNP NNP VBD VBN VBG DT NNS IN CD . The organization says that because the visits have been stopped , the families of more than 900 detainees have been deprived of direct contact with their detained relatives for nearly a year . DT NN VBZ IN IN DT NNS VBP VBN VBN , DT NNS IN JJR IN CD NNS VBP VBN VBN IN JJ NN IN PRP$ VBN NNS IN RB DT NN . Red Cross officials say the detainees depend on the visits not only for psychological support but for material assistance such as clothing and blankets . NNP NNP NNS VBP DT NNS VBP IN DT NNS RB RB IN JJ NN CC IN NN NN JJ IN NN CC NNS . The Red Cross says that while it understands Israel 's security concerns , it strongly believes those concerns alone can not justify a complete suspension of family visits to detainees . DT NNP NNP VBZ IN IN PRP VBZ NNP POS NN NNS , PRP RB VBZ DT NNS RB MD RB VB DT JJ NN IN NN NNS TO NNS . Four Palestinians were killed and at least 18 wounded in a violent feud between rival clans in the Gaza Strip . CD NNS VBD VBN CC IN JJS CD VBN IN DT JJ NN IN JJ NNS IN DT NNP NNP . A Hamas security force commander was shot to death Saturday in the early morning hours in the Khan Yunis refugee camp . DT NNP NN NN NN VBD VBN TO NN NNP IN DT JJ NN NNS IN DT NNP NNP NN NN . The Hamas military wing accused a rival clan in the Gaza Strip of ties to the killing . DT NNP JJ NN VBD DT JJ NN IN DT NNP NNP IN NNS TO DT NN . The attack triggered a gunbattle that killed two members of the rival Fatah family and one bystander . DT NN VBD DT NN WDT VBD CD NNS IN DT JJ NNP NN CC CD NN . News reports say both factions say the killing was motivated by a family feud , and was not connected to the power struggle between President Mahmoud Abbas ' Fatah faction and the ruling Hamas party . NNP NNS VBP DT NNS VBP DT NN VBD VBN IN DT NN NN , CC VBD RB VBN TO DT NN NN IN NNP NNP NNP POS NNP NN CC DT NN NNP NN . The Hamas-led government condemned the violence , saying the Palestinian government is committed to a power-sharing agreement reached with the Fatah faction of President Mahmoud Abbas ealier this month . DT JJ NN VBD DT NN , VBG DT JJ NN VBZ VBN TO DT JJ NN VBN IN DT NNP NN IN NNP NNP NNP NN DT NN . Palestinian leaders are currently lobbying European countries to promote the unity government and end international sanctions . JJ NNS VBP RB VBG JJ NNS TO VB DT NN NN CC NN JJ NNS . Italy says it will campaign at the United Nations for a global ban on the death penalty after images of the hanging of Iraq 's former dictator shocked people worldwide . NNP VBZ PRP MD NN IN DT NNP NNPS IN DT JJ NN IN DT NN NN IN NNS IN DT NN IN NNP POS JJ NN VBD NNS JJ . Prime Minister Romano Prodi said Tuesday that his government will use Italy 's new seat in the U.N. Security Council to push for a ' universal moratorium ' on capital punishment . NNP NNP NNP NNP VBD NNP IN PRP$ NN MD VB NNP POS JJ NN IN DT NNP NNP NNP TO VB IN DT `` JJ NN `` IN NN NN . Italy joined the council on January 1 for a two-year term . NNP VBD DT NN IN NNP CD IN DT JJ NN . Italian politicians of all political affiliations expressed disgust at Saddam Hussein 's execution . JJ NNS IN DT JJ NNS VBD NN IN NNP NNP POS NN . Iraq 's government reacted by accusing Italy of hypocrisy . NNP POS NN VBD IN VBG NNP IN NN . It cited Italy 's 1945 public execution of fascist leader Benito Mussolini . PRP VBD NNP POS CD JJ NN IN JJ NN NNP NNP . Partisans killed the dictator and hanged him upside down in a Milan square . NNPS VBD DT NN CC VBD PRP RB RB IN DT NNP NN . More than 80 U.N. member countries signed a non-binding declaration against the death penalty in December . JJR IN CD NNP NN NNS VBD DT JJ NN IN DT NN NN IN NNP . Italy and all other European Union countries do not permit capital punishment . NNP CC DT JJ NNP NNP NNS VBP RB VB NN NN . Skier Marco Buechel of Liechtenstein has won his first World Cup downhill title on a snow-shortened course in Val Gardena , Italy . NN NNP NNP IN NNP VBZ VBN PRP$ JJ NNP NNP NN NN IN DT JJ NN IN NNP NNP , NNP . Buechel finished the race in one minute , 27.99 seconds , just 0.02 ahead of Austrian Michael Walchhofer ( 1.28.01 ) . NNP VBD DT NN IN CD NN , CD NNS , RB CD RB IN JJ NNP NNP LRB CD RRB . Erik Guay of Canada finished third , 0.2 behind Buechel ( 1.28.19 ) . NNP NNP IN NNP VBD JJ , CD IN NNP LRB CD RRB . It was Buechel 's second World Cup win ever - he also won a super-giant slalom in Germany two years ago . PRP VBD NNP POS JJ NNP NNP VBP RB : PRP RB VBD DT JJ NN IN NNP CD NNS RB . American Olympic hopeful Bode Miller of the United States finished eighth and recaptured the overall standings lead . JJ NNP NN NNP NNP IN DT NNP NNPS VBD JJ CC VBD DT JJ NNS VBP . Miller now has 442 points with Walchhofer second ( 420 points ) and Norway 's Aksel Lund Svindal third ( 417 ) . NNP RB VBZ CD NNS IN NNP JJ LRB CD NNS RRB CC NNP POS NNP NNP NNP JJ LRB CD RRB . Snow and strong winds delayed the start of the race by more than one hour . NN CC JJ NNS VBD DT NN IN DT NN IN JJR IN CD NN . The course was also shortened by more than one kilometer and several jumps were removed . DT NN VBD RB VBN IN JJR IN CD NN CC JJ NNS VBD VBN . Britain 's Prime Minister Tony Blair says there were British fatalities in the crash of a C-130 military cargo plane in Iraq Sunday . NNP POS NNP NNP NNP NNP VBZ EX VBD JJ NNS IN DT NN IN DT JJ JJ NN NN IN NNP NNP . In televised remarks , he paid tribute to those killed , but gave no further details or numbers . IN JJ NNS , PRP VBD NN TO DT VBN , CC VBD DT JJ NNS CC NNS . A British officer said the military would not release any details about the crew until families had been contacted . DT JJ NN VBD DT NN MD RB VB DT NNS IN DT NN IN NNS VBD VBN VBN . Rescue teams have been sent to the crash site north of Baghdad . NN NNS VBP VBN VBN TO DT NN NN NN IN NNP . The C-130 aircraft was traveling from the Iraqi capital to Balad when it went down . DT NN NN VBD VBG IN DT JJ NN TO NNP WRB PRP VBD RB . There was no word on the cause of the crash or how many people were on board , but news reports say wreckage from the plane was spread over a large area . EX VBD DT NN IN DT NN IN DT NN CC WRB JJ NNS VBD IN NN , CC NN NNS VBP NN IN DT NN VBD VBN IN DT JJ NN . The C-130 Hercules is a widely-used aircraft that can be configured to carry heavy payloads or as many as 128 troops . DT NNP NNP VBZ DT JJ NN WDT MD VB VBN TO VB JJ NNS CC RB JJ IN CD NNS . The U.S. military says coalition forces in Afghanistan have killed 22 militants in a series of clashes throughout the country . DT NNP NN VBZ NN NNS IN NNP VBP VBN CD NNS IN DT NN IN NNS IN DT NN . Officials said the coalition 's ground and air assaults took place Monday in southern and eastern Afghanistan . NNS VBD DT NN POS NN CC NN NNS VBD NN NNP IN JJ CC JJ NNP . They said one operation targeted a Taliban network in Kapisa province , killing 18 insurgents and one Taliban commander . PRP VBD CD NN VBD DT NNP NN IN NNP NN , VBG CD NNS CC CD NNP NN . The military also said they killed another Taliban commander and two insurgents in two raids in the Kandahar and Zabul provinces . DT NN RB VBD PRP VBD DT NNP NN CC CD NNS IN CD NNS IN DT NNP CC NNP NNS . Officials did not mention any casualties among coalition troops . NNS VBD RB VB DT NNS IN NN NNS . Violence has risen in Afghanistan as militants have made a comeback after their initial defeat following the U.S.-led invasion in 2001 . NN VBZ VBN IN NNP IN NNS VBP VBN DT NN IN PRP$ JJ NN VBG DT JJ NN IN CD . Mexican President Vicente Fox has tightened security within his administration after authorities discovered that details of his travel plans had been leaked to drug traffickers . JJ NNP NNP NNP VBZ VBN NN IN PRP$ NN IN NNS VBD IN NNS IN PRP$ NN NNS VBD VBN VBN TO NN NNS . Monday 's announcement comes a week after Mexican federal authorities detained Nahum Acosta , the official responsible for organizing Mr. Fox 's visits around the country . NNP POS NN VBZ DT NN IN JJ JJ NNS VBD NNP NNP , DT NN JJ IN VBG NNP NNP POS NNS IN DT NN . Mexican newspapers report he was caught on video meeting with a leading drug trafficker in Mexico City . JJ NNS VBP PRP VBD VBN IN NN NN IN DT VBG NN NN IN NNP NNP . The developments have raised concern because drug traffickers often kill government officials . DT NNS VBP VBN NN IN NN NNS RB VBP NN NNS . But so far there is no evidence of an assassination plot against President Fox . CC RB RB EX VBZ DT NN IN DT NN NN IN NNP NNP . The Mexican president promised Monday to continue his fight against organized crime , repeating a vow to give drug traffickers ' the mother of all battles . ' DT JJ NN VBD NNP TO VB PRP$ NN IN JJ NN , VBG DT NN TO VB NN NNS `` DT NN IN DT NNS . `` Swedish officials say an Iraqi-born Swedish citizen held hostage in Iraq since January has been freed . JJ NNS VBP DT JJ JJ NN VBD NN IN NNP IN NNP VBZ VBN VBN . The officials gave no details of Minas al-Yousifi 's release , and would not comment on whether a ransom had been paid . DT NNS VBD DT NNS IN NNP NNP POS NN , CC MD RB VB IN IN DT NN VBD VBN VBN . Mr. al-Yousifi was kidnapped in the northern city of Mosul on January 28 by a group calling itself the Iraqi Vengeance Brigade . NNP NNP VBD VBN IN DT JJ NN IN NNP IN NNP CD IN DT NN VBG PRP DT JJ NNP NNP . His captors released two videos in which he pleaded for his release . PRP$ NNS VBD CD NNS IN WDT PRP VBD IN PRP$ NN . Mr. al-Yousifi lived in Sweden for 20 years , before returning to Iraq after Saddam Hussein 's ouster two years ago to lead Iraq 's Christian Democratic party . NNP NNP VBD IN NNP IN CD NNS , IN VBG TO NNP IN NNP NNP POS NN CD NNS RB TO VB NNP POS JJ JJ NN . Pope Benedict XVI said the current global financial crisis is the result of individuals seeking short-term monetary gains at the expense of the common good . NNP NNP NNP VBD DT JJ JJ JJ NN VBZ DT NN IN NNS VBG JJ JJ NNS IN DT NN IN DT JJ NN . In his annual message published Thursday ahead of the Roman Catholic Church 's annual World Day of Peace on January 1 , the pope said the world is seeing a greater gap between the rich and poor . IN PRP$ JJ NN VBN NNP RB IN DT NNP NNP NNP POS JJ NNP NNP IN NNP IN NNP CD , DT NN VBD DT NN VBZ VBG DT JJR NN IN DT JJ CC JJ . He said the international financial system must be a stimulus for long-term growth and job development . PRP VBD DT JJ JJ NN MD VB DT NN IN JJ NN CC NN NN . Pope Benedict also condemned international campaigns to reduce birth rates in poorer countries . NNP NNP RB VBD JJ NNS TO VB NN NNS IN JJR NNS . He said methods such as abortion do not fight poverty or help a country 's development but actually constitute ' the destruction of the poorest of all human beings . ' PRP VBD NNS JJ IN NN VBP RB VB NN CC VB DT NN POS NN CC RB VBP `` DT NN IN DT JJS IN DT JJ NNS . `` Five former members of a Serbian paramilitary unit , the Scorpions , have gone on trial in Belgrade on charges they played a role in the massacre of up to eight thousand Muslims after the 1995 Serb capture of Srebrenica . CD JJ NNS IN DT JJ JJ NN , DT NNS , VBP VBN IN NN IN NNP IN NNS PRP VBD DT NN IN DT NN IN RB TO CD CD NNS IN DT CD JJ NN IN NNP . The first of the accused to testify , Scorpions commander Slobodan Medic , denied any knowledge of the crime . DT NN IN DT VBN TO VB , NNPS VBP NNP NNP , VBD DT NN IN DT NN . But he confirmed his unit was in the area and said could not control all his men 's actions . CC PRP VBD PRP$ NN VBD IN DT NN CC VBD MD RB VB DT PRP$ NNS POS NNS . Serbian authorities arrested him and the four others , Aleksandar Medic , Branislav Medic , Pera Petrasevic and Aleksandar Vukov , after prosecutors at The Hague tribunal showed a videotape in June at the trial of former Yugoslav President Slobodan Milosevic . JJ NNS VBN PRP CC DT CD NNS , NNP NNP , NNP NNP , NNP NNP CC NNP NNP , IN NNS IN DT NNP NN VBD DT NN IN NNP IN DT NN IN JJ JJ NNP NNP NNP . A sixth suspect is on trial in Csatia on similar charges . DT JJ NN VBZ IN NN IN NNP IN JJ NNS . The tape shows the defendants executing six men captured in Srebrenica , an enclave in eastern Bosnia-Herzegovina which the United Nations had declared a Muslim safe area . DT NN VBZ DT NNS VBG CD NNS VBN IN NNP , DT NN IN JJ NNP WDT DT NNP NNPS VBD VBN DT NNP JJ NN . Two years ago , war broke out along Israel 's border with Lebanon . CD NNS RB , NN VBD RP IN NNP POS NN IN NNP . The conflict known as the Second Lebanon War started after Hezbollah guerrillas attacked an Israeli patrol and seized two Israeli soldiers . DT NN VBN IN DT JJ NNP NNP VBD IN NNP NNS VBD DT JJ NN CC VBD CD JJ NNS . On July 14 , Hezbollah returned the bodies of the two Israeli soldiers in a prisoner exchange with the Jewish state . IN NNP CD , NNP VBD DT NNS IN DT CD JJ NNS IN DT NN NN IN DT JJ NN . No Israeli town was more affected by the war than Metullah , the closest Israeli town to Lebanon . DT JJ NN VBD RBR VBN IN DT NN IN NNP , DT JJS JJ NN TO NNP . Jim Teeple recently visited the town where many residents say they want a lasting peace with Lebanon . NNP NNP RB VBD DT NN WRB JJ NNS VBP PRP VBP DT JJ NN IN NNP . Pakistani forces with helicopter gunships Monday continued to pound Islamic rebel positions in the semi-autonomous tribal region bordering Afghanistan , and the military says 19 pro-Taleban militants were killed . JJ NNS IN NN NNS NNP VBD TO VB JJ NN NNS IN DT JJ JJ NN VBG NNP , CC DT NN VBZ CD JJ NNS VBD VBN . The government says with the latest fighting , a total of more than 120 rebels have been killed in three days of fierce clashes in the remote North Waziristan area . DT NN VBZ IN DT JJS NN , DT NN IN JJR IN CD NNS VBP VBN VBN IN CD NNS IN JJ NNS IN DT JJ NNP NNP NN . The military says five government soldiers were also killed in the fighting that began Saturday when militants attacked a security outpost in the region 's main town of Miranshah and seized several government buildings . DT JJ VBZ CD NN NNS VBD RB VBN IN DT NN WDT VBD NNP WRB NNS VBD DT NN NN IN DT NN POS JJ NN IN NNP CC VBD JJ NN NNS . The army imposed a curfew in the town after re-taking the buildings . DT NN VBD DT NN IN DT NN IN VBG DT NNS . The fighting came days after Pakistani security forces attacked a militants ' camp used to train terrorists . DT NN VBD NNS IN JJ NN NNS VBD DT NNS POS NN VBD TO VB NNS . More than 40 foreign fighters and tribal militants were killed in that raid near the Afghan border . JJR IN CD JJ NNS CC JJ NNS VBD VBN IN DT NN IN DT JJ NN . Immigrants and supporters of immigrants ' rights in the United States are planning a new round of demonstrations against immigration reform Monday . NNS CC NNS IN NNS POS NNS IN DT NNP NNPS VBP VBG DT JJ NN IN NNS IN NN NN NNP . Organizers of a march in the state of Arizona , which borders Mexico , say they expect as many as 1,00,000 demonstrators in the city of Phoenix as they march to the state capitol building . NNS IN DT NN IN DT NN IN NNP , WDT NNS NNP , VBP PRP VBP RB JJ IN CD NNS IN DT NN IN NNP IN PRP VBP TO DT NN NN NN . Similar marches are planned across the nation , in the latest of a series of such protests . JJ NNS VBP VBN IN DT NN , IN DT JJS IN DT NN IN JJ NNS . The protesters are concerned about legislation passed by the U.S. House of Representatives that would make it a felony to be an illegal immigrant . DT NNS VBP VBN IN NN VBN IN DT NNP NNP IN NNP WDT MD VB PRP DT NN TO VB DT JJ NN . The legislation would also punish employers who hire illegal immigrants . DT NN MD RB VB NNS WP VBP JJ NNS . Afghan officials say they have found the beheaded bodies of three policemen who disappeared Friday . JJ NNS VBP PRP VBP VBN DT JJ NNS IN CD NNS WP VBD NNP . They say the policemen disappeared in Helmund Province . PRP VBP DT NNS VBD IN NNP NNP . Authorities blamed Taleban fighters for the killings . NNS VBD NNP NNS IN DT NNS . In central Afghanistan , police killed four militants in a clash in Ghazni Province . IN JJ NNP , NN VBD CD NNS IN DT NN IN NNP NNP . Officials say a firefight erupted after militants set off a bomb near a police vehicle , wounding four officers . NNS VBP DT NN VBN IN NNS VBD RP DT NN IN DT NN NN , VBG CD NNS . Officials in Afghanistan say almost 400 people , mostly insurgents , have been killed in an upsurge of violence since mid-May . NNS IN NNP VBP RB CD NNS , RB NNS , VBP VBN VBN IN DT NN IN NN IN NN . Iraqi police say at least three civilians were killed and nine wounded Saturday when a roadside bomb struck a vehicle south of Baghdad . JJ NNS VBP IN JJS CD NNS VBD VBN CC CD VBD NNP WRB DT NN NN VBD DT NN NN IN NNP . A police official said the attack occurred early Saturday in Iskandariyah , 60 kilometers south of Baghdad . DT NN NN VBD DT NN VBD JJ NNP IN NNP , CD NNS RB IN NNP . In central Iraq , the U.S. military says coalition forces captured two wanted individuals and three suspected terrorists Saturday during an operation northwest of Muqdadiyah . IN JJ NNP , DT NNP NN VBZ NN NNS VBD CD JJ NNS CC CD JJ NNS NNP IN DT NN NN IN NNP . U.S.-led forces also detained six suspected militants during another operation Saturday in Bayji , targeting an associate of al-Qaida in Iraq senior leaders . JJ NNS RB VBD CD JJ NNS IN DT NN NNP IN NNP , VBG DT NN IN NNP IN NNP JJ NNS . The military says the targeted person is suspected of a logistics network responsible for supplying weapons and supplies to foreign terrorists . DT JJ VBZ DT JJ NN VBZ VBN IN DT NNS NN JJ IN VBG NNS CC NNS TO JJ NNS . He is also believed to have many contacts within the southern belt terrorist network , which facilitates the movement of foreign terrorists and suicide bombers . PRP VBZ RB VBN TO VB JJ NNS IN DT JJ NN JJ NN , WDT VBZ DT NN IN JJ NNS CC NN NNS . Afghan officials say at least 29 suspected Taleban insurgents have been killed in clashes with NATO and Afghan forces in two southern provinces . JJ NNS VBP IN JJS CD JJ NNP NNS VBP VBN VBN IN NNS IN NNP CC JJ NNS IN CD JJ NNS . Authorities in Zabul province say 18 Taleban rebels and one Afghan soldier were killed Wednesday when a group of Taleban attacked an army post . NNS IN NNP NN VBP CD NNP NNS CC CD JJ NN VBD VBN NNP WRB DT NN IN NNP VBD DT NN NN . In a separate incident in neighboring Kandahar province , NATO forces killed 11 Taleban militants who NATO says were planning an ambush . IN DT JJ NN IN JJ NNP NN , NNP NNS VBD CD NNP NNS WP NNP VBZ VBD VBG DT NN . Separately , a Canadian soldier who was wounded in a suicide car-bomb attack Tuesday in Kandahar city died from his wounds . RB , DT JJ NN WP VBD VBN IN DT NN NN NN NNP IN NNP NN VBD IN PRP$ NNS . Three other NATO soldiers were wounded . CD JJ NNP NNS VBD VBN . NATO officials say its troops killed one Afghan civilian and wounded another hours after the suicide bombing . NNP NNS VBP PRP$ NNS VBD CD JJ JJ CC VBD DT NNS IN DT NN NN . Troops fired on the two civilians riding a motorcycle then they did not heed calls to stop . NNP VBD IN DT CD NNS VBG DT NN RB PRP VBD RB VB NNS TO VB . And , Afghan officials say two roadside bombs planted by suspected Taleban militants , also in Kandahar , killed three civilians and wounded one . CC , JJ NNS VBP CD NN NNS VBN IN JJ NNP NNS , RB IN NNP , VBD CD NNS CC VBD CD . President Bush is expected to head to Mongolia in the next few hours for the last stop of his Asian trip that also took him to Japan , South Korea , and China . NNP NNP VBZ VBN TO VB TO NNP IN DT JJ JJ NNS IN DT JJ NN IN PRP$ JJ NN WDT RB VBD PRP TO NNP , NNP NNP , CC NNP . Mr. Bush is scheduled to use his visit - the first by a U.S. president - to thank Mongolia for sending 120 troops to Iraq . NNP NNP VBZ VBN TO VB PRP$ NN IN DT JJ IN DT NNP NN : TO VB NNP IN VBG CD NNS TO NNP . Mr. Bush met with Chinese President Hu Jintao in Beijing to discuss reducing China 's trade surplus with the United States . NNP NNP VBD IN JJ NNP NNP NNP IN NNP TO VB VBG NNP POS NN NN IN DT NNP NNPS . Following their talks , Mr. Hu pledged to reduce the trade imbalance through steps including currency reforms and increased protection of intellectual property rights - but he did not provide a timetable for doing so . VBG PRP$ NNS , NNP NNP VBD TO VB DT NN NN IN NNS VBG NN NNS CC JJ NN IN JJ NN NNS : CC PRP VBD RB VB DT NN IN VBG RB . President Bush also urged Beijing to allow greater ' social , political and religious freedoms . ' NNP NNP RB VBD NNP TO VB JJR `` JJ , JJ CC JJ NNS . `` Mr. Hu stressed that Chinese people can exercise their rights through elections . NNP NNP VBD IN JJ NNS MD VB PRP$ NNS IN NNS . Wal-Mart , the world 's biggest retailer , has won another round in its struggle to keep its U.S. workforce from joining labor unions . NNP , DT NN POS JJS NN , VBZ VBN DT NN IN PRP$ NN TO VB PRP$ NNP NN IN VBG NN NNS . Friday , workers voted 17-Jan to reject union representation at a tire store operated by Wal-Mart in Loveland , in the western state of Colorado . NNP , NNS VBD CD TO VB NN NN IN DT NN NN VBN IN NNP IN NNP , IN DT JJ NN IN NNP . Wal-Mart recently said it will close a Canadian store that voted for union representation and fire the store 's 190 member staff . NNP RB VBD PRP MD VB DT JJ NN WDT VBD IN NN NN CC NN DT NN POS CD NN NN . Earlier , the company eliminated meat-cutting jobs from its entire grocery operation after some butchers voted to bring in a union . RB , DT NN VBD JJ NNS IN PRP$ JJ NN NN IN DT NNS VBD TO VB RP DT NN . Wal-Mart has 1.2 million employees who operate 3,500 stores in the United States , Canada , China , Mexico , Brazil , Germany , the United Kingdom , and South Korea . NNP VBZ CD CD NNS WP VBP CD NNS IN DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , DT NNP NNP , CC NNP NNP . The United Food & Commercial Workers Union says it will continue efforts to unionize Wal-Mart . DT NNP NNP CC NNP NNP NNP VBZ PRP MD VB NNS TO VB NNP . U.S. Vice President Dick Cheney accidentally shot and wounded a fellow hunter while hunting quail in southern Texas . NNP NNP NNP NNP NNP RB VBD CC VBD DT JJ NN IN VBG NN IN JJ NNP . A witness to the shooting , Katharine Armstrong , said Mr. Cheney fired a shotgun late Saturday at a flying bird without realizing the other hunter was in the line of fire . DT NN TO DT NN , NNP NNP , VBD NNP NNP VBD DT NN JJ NNP IN DT VBG NN IN VBG DT JJ NN VBD IN DT NN IN NN . The injured man , 78-year-old attorney Harry Whittington , was taken to a hospital in Corpus Christi , Texas , where he was in stable condition . DT JJ NN , JJ NN NNP NNP , VBD VBN TO DT NN IN NNP NNP , NNP , WRB PRP VBD IN JJ NN . He was hit with shotgun pellets in his right cheek , neck and chest . PRP VBD VBN IN JJ NNS IN PRP$ JJ NN , NN CC NN . Mr. Cheney visited Whittington in the hospital Sunday before his scheduled return to Washington . NNP NNP VBD NNP IN DT NN NNP IN PRP$ JJ NN TO NNP . The vice president , an avid hunter , was hunting on a large ranch , a place where he has hunted before . DT NN NN , DT JJ NN , VBD VBG IN DT JJ NN , DT NN WRB PRP VBZ VBN RB . Ukrainian authorities say 19 people , including two children , are dead and at least 24 are missing after an explosion at an apartment building in the Crimean resort town of Yevpatoria . JJ NNS VBP CD NNS , VBG CD NNS , VBP JJ CC IN JJS CD VBP VBG IN DT NN IN DT NN NN IN DT JJ NN NN IN NNP . Rescue teams are digging through rubble Thursday to find survivors from the blast that tore through the five-story building late Wednesday . NN NNS VBP VBG IN NN NNP TO VB NNS IN DT NN WDT VBD IN DT JJ NN JJ NNP . They say 21 people have been rescued so far . PRP VBP CD NNS VBP VBN VBN RB RB . Ukraine 's Prime Minister Yulia Tymoshenko and President Viktor Yushchenko headed to Yevpatoria Thursday to meet with rescue officials . NNP POS NNP NNP NNP NNP CC NNP NNP NNP VBD TO NNP NNP TO VB IN NN NNS . Russian President Dmitri Medvedev has offered to send naval personnel from Russia 's Black Sea fleet to help with the search efforts . JJ NNP NNP NNP VBZ VBN TO VB JJ NNS IN NNP POS NNP NNP NN TO VB IN DT NN NNS . Authorities are working to establish the cause of the explosion . NNS VBP VBG TO VB DT NN IN DT NN . Preliminary reports say it could have been caused by oxygen or acetylene cylinders that may have been stored in the building 's basement . JJ NNS VBP PRP MD VB VBN VBN IN NN CC NN NNS WDT MD VB VBN VBN IN DT NN POS NN . Gas explosions are common in Ukrainian apartment buildings , especially during the winter when residents turn up the heat . NN NNS VBP JJ IN JJ NN NNS , RB IN DT NN WRB NNS VBP RP DT NN . From tsunami-ravaged Sri Lanka to the European Union , countries from virtually every continent have begun sending millions of dollars to the American Red Cross to help the victims of Hurricane Katrina . IN JJ NNP NNP TO DT NNP NNP , NNS IN RB DT NN VBP VBN VBG NNS IN NNS TO DT NNP NNP NNP TO VB DT NNS IN NNP NNP . In Washington Tuesday , State Department spokesman Sean McCormack said more than 90 nations have pledged financial assistance to those affected by the hurricane . IN NNP NNP , NNP NNP NN NNP NNP VBD JJR IN CD NNS VBP VBN JJ NN TO DT VBN IN DT NN . He said numerous nations , including Australia , China , India , and Kuwait , have sent large cash donations to the Red Cross . PRP VBD JJ NNS , VBG NNP , NNP , NNP , CC NNP , VBP VBN JJ NN NNS TO DT NNP NNP . Kosovo 's prime minister , Bajram Kosumi , saying his people will never forget how much America has helped the war-torn province , has donated $ 5,00,000 . NNP POS JJ NN , NNP NNP , VBG PRP$ NNS MD RB VB WRB JJ NNP VBZ VBN DT JJ NN , VBZ VBN $ CD . Bangladesh , a poor country that is frequently hit by monsoons , pledged $ 1 million in disaster aid . NNP , DT JJ NN WDT VBZ RB VBN IN NNS , VBD $ CD CD IN NN NN . Mr. McCormack said the American people can ' take great heart ' at the outpouring of assistance . NNP NNP VBD DT JJ NNS MD `` VB JJ NN `` IN DT NN IN NN . South Korea says it will strengthen background checks on North Koreans seeking asylum in the South . NNP NNP VBZ PRP MD VB NN NNS IN NNP NNS VBG NN IN DT NNP . South Korean Deputy Unification Minister Rhee Bong-jo says the measures are intended to prevent criminals or ethnic Koreans pretending to be from the North from entering the country . NNP JJ NNP NNP NNP NNP NNP VBZ DT NNS VBP VBN TO VB NNS CC JJ NNS VBG TO VB IN DT NNP IN VBG DT NN . Mr. Rhee also said South Korea plans to cut financial subsidies to North Korean defectors starting next year . NNP NNP RB VBD NNP NNP VBZ TO VB JJ NNS TO JJ JJ NNS VBG JJ NN . Defectors currently receive a payment of $ 26,500 on arrival . NNS RB VBP DT NN IN $ CD IN NN . Mr. Rhee says Seoul plans to increase subsidies for job training for the defectors in an effort to help them adjust . NNP NNP VBZ NNP VBZ TO VB NNS IN NN NN IN DT NNS IN DT NN TO VB PRP VB . South Korea says at least 1,850 North Koreans have defected to the South this year . NNP NNP VBZ IN JJS CD NNP NNS VBP VBN TO DT NNP DT NN . A mild earthquake shook the capital of the United States Friday , though there were no immediate reports of injuries or damage . DT JJ NN VBD DT NN IN DT NNP NNPS NNP , IN EX VBD DT JJ NNS IN NNS CC NN . The U.S. Geological Survey reported the quake measured 3.6 in magnitude , the largest quake in the Washington area in decades . DT NNP NNP NNP VBD DT NN VBN CD IN NN , DT JJS NN IN DT NNP NN IN NNS . Officials said the quake 's epicenter was located just north of the nation 's capital in Maryland . NNS VBD DT NN POS NN VBD VBN RB RB IN DT NN POS NN IN NNP . Asked at a press conference whether he felt the tremor , U.S. President Barack Obama laughed and said he did not . VBN IN DT NN NN IN PRP VBD DT NN , NNP NNP NNP NNP VBD CC VBD PRP VBD RB . But other residents in the area reported feeling a rumbling for several seconds . CC JJ NNS IN DT NN VBD VBG DT NN IN JJ NNS . A spokeswoman for the U.S. Geological Survey said the minor earthquake was the largest recorded within 50 kilometers of Washington since a database was created to track such activity in 1974 . DT NN IN DT NNP NNP NNP VBD DT JJ NN VBD DT JJS VBN IN CD NNS IN NNP IN DT NN VBD VBN TO VB JJ NN IN CD . Police acting on a tip have arrested at least 17 people and seized a major cache of weapons near the Sri Lankan capital , Colombo . NNS VBG IN DT NN VBP VBN IN JJS CD NNS CC VBN DT JJ NN IN NNS IN DT NNP NNP NN , NNP . Authorities say the weapons confiscated by police Saturday included grenades and other explosives . NNS VBP DT NNS VBN IN NN NNP VBD NNS CC JJ NNS . Officials say the suspects were planning a major attack on the capital . NNS VBP DT NNS VBD VBG DT JJ NN IN DT NN . The find comes on the same day a bomb blast killed six soldiers and wounded several in the northern Jaffna peninsula . DT NN VBZ IN DT JJ NN DT NN NN VBD CD NNS CC VBD JJ IN DT JJ NNP NN . The improvised device exploded as soldiers cleaned up the area after a failed attempt by Tamil Tiger rebels to capture the peninsula . DT JJ NN VBD IN NNS VBD RP DT NN IN DT VBN NN IN NNP NNP NNS TO VB DT NN . Meanwhile , the Tamil Tigers released a policeman who had been held for nearly a year after he strayed into rebel territory while pursuing a pedophile . RB , DT NNP NNP VBD DT NN WP VBD VBN VBN IN RB DT NN IN PRP VBD IN JJ NN IN VBG DT NN . His release followed a request from Ulf Henricsson , the outgoing head of the team monitoring the 2002 ceasefire between the government and rebels . PRP$ NN VBD DT NN IN NNP NNP , DT JJ NN IN DT NN VBG DT CD NN IN DT NN CC NNS . An Iraqi court has sentenced 11 men to death for the massive truck bombings in Baghdad last August that killed more than 100 people . DT JJ NN VBZ VBN CD NNS TO NN IN DT JJ NN NNS IN NNP JJ NNP WDT VBD JJR IN CD NNS . The court convicted the men of planning and implementing the August 19 attacks on the Iraqi Ministries of Finance and Foreign Affairs . DT NN VBD DT NNS IN NN CC VBG DT NNP CD NNS IN DT JJ NNPS IN NNP CC NNP NNP . The attacks left more than 500 others wounded . DT NNS VBD JJR IN CD NNS VBN . On Wednesday , a suicide bomber blew up a truck near a police station in Iraq 's western Anbar province , killing at least seven people and wounding six others . IN NNP , DT NN NN VBD RP DT NN IN DT NN NN IN NNP POS JJ NNP NN , VBG IN JJS CD NNS CC VBG CD NNS . The attack happened in Saqlawiyah , a town north of Fallujah . DT NN VBD IN NNP , DT NN NN IN NNP . Officials say at least two police officers and a young girl were among those killed . NNS VBP IN JJS CD NNS NNS CC DT JJ NN VBD IN DT VBN . Iraq is preparing for nationwide parliamentary elections in March , and officials have warned that insurgents trying to disrupt the vote could launch attacks as the election nears . NNP VBZ VBG IN JJ JJ NNS IN NNP , CC NNS VBP VBN IN NNS VBG TO VB DT NN MD VB NNS IN DT NN VBZ . American rappers Snoop Dogg and Sean ' Diddy ' Combs have canceled a tour of Britain after Snoop Dogg was denied a visa to enter the country . JJ NNS NNP NNP CC NNP `` NNP `` NNPS VBP VBN DT NN IN NNP IN NNP NNP VBD VBN DT NN TO VB DT NN . Record company officials said the rappers are ' disappointed and devastated ' after five concerts across Britain were called off . NNP NN NNS VBD DT NNS VBP `` VBN CC VBN `` IN CD NNS IN NNP VBD VBN RP . In April 2006 , Snoop Dogg , whose real name is Calvin Broadus , and five other men were arrested in a brawl at London 's Heathrow Airport . IN NNP CD , NNP NNP , WP$ JJ NN VBZ NNP NNP , CC CD JJ NNS VBD VBN IN DT NN IN NNP POS NNP NNP . They spent a night in jail . PRP VBD DT NN IN NN . The British Home Office would not comment on the present case , but it said the government can refuse entry to foreign citizens if there are concerns about their presence . DT NNP NNP NNP MD RB VB IN DT JJ NN , CC PRP VBD DT NN MD VB NN TO JJ NNS IN EX VBP NNS IN PRP$ NN . South Korea is resuming its rice aid to North Korea Saturday after nearly a one-year suspension , now that Pyongyang is moving to dismantle its nuclear program . NNP NNP VBZ VBG PRP$ NN NN TO NNP NNP NNP IN RB DT JJ NN , RB IN NNP VBZ VBG TO VB PRP$ JJ NN . A ship with 3,000 tons of rice is to arrive in the North at the eastern port of Nampo - the first batch of 4,00,000 tons promised by South Korea . DT NN IN CD NNS IN NN VBZ TO VB IN DT NNP IN DT JJ NN IN NNP IN DT JJ NN IN CD NNS VBN IN NNP NNP . Seoul suspended its regular rice aid after North Korea conducted missile tests last July . NNP VBD PRP$ JJ NN NN IN NNP NNP VBD NN NNS JJ NNP . A nuclear test followed in October . DT JJ NN VBD IN NNP . South Korea resumed shipments of fertilizer and other emergency aid to the North in late March , but decided to withhold rice aid until Pyongyang began to carry out its February pledge to shut down its main nuclear reactor . NNP NNP VBD NNS IN NN CC JJ NN NN TO DT NNP IN JJ NNP , CC VBD TO VB NN NN IN NNP VBD TO VB RP PRP$ NNP NN TO VB RP PRP$ JJ JJ NN . North Korea has relied heavily on international aid , particularly from South Korea , since the North 's economy was devastated by natural disasters and mismanagement in the mid-1990s . NNP NNP VBZ VBN RB IN JJ NN , RB IN NNP NNP , IN DT NNP POS NN VBD VBN IN JJ NNS CC NN IN DT NNS . The European Commission Sunday confirmed that the deadly H5N1 strain was found in a dead bird . DT JJ NNP NNP VBD IN DT JJ NNP NN VBD VBN IN DT JJ NN . Turkish Cypriot authorities say they have quarantined a 10 kilometer area around the village where the dead bird was found and killed a large number of birds to stop the spread . JJ JJ NNS VBP PRP VBP VBN DT CD NN NN IN DT NN WRB DT JJ NN VBD VBN CC VBN DT JJ NN IN NNS TO VB DT NN . Authorities in the Greek Cypriot south say they have taken all steps to prevent the virus from spreading across the border . NNS IN DT JJ JJ RB VBP PRP VBP VBN DT NNS TO VB DT NN IN VBG IN DT NN . Also Sunday , Hong Kong officials say they found an infected bird near the border with mainland China . RB NNP , NNP NNP NNS VBP PRP VBD DT JJ NN IN DT NN IN NN NNP . Bird flu has killed at least 81 people in East Asia and Turkey since 2003 . NN NN VBZ VBN IN JJS CD NNS IN NNP NNP CC NNP IN CD . The governor of Iraq 's southern Basra province says there will be no cooperation with British forces unless Britain apologizes for Monday 's jail raid that was aimed at freeing two undercover British soldiers . DT NN IN NNP POS JJ NNP NN VBZ EX MD VB DT NN IN JJ NNS IN NNP VBZ IN NNP POS NN NN WDT VBD VBN IN VBG CD JJ JJ NNS . Mohammed al-Waili said the provincial council voted Wednesday to stop all cooperation until Britain meets three demands - apologize for the action , guarantee that it will not happen again and provide compensation for the damage . NNP NNP VBD DT JJ NN VBD NNP TO VB DT NN IN NNP VBZ CD NNS IN NN IN DT NN , NN IN PRP MD RB VB RB CC VB NN IN DT NN . Also Wednesday , hundreds of Iraqis demonstrated in Basra city against the British troop presence . RB NNP , NNS IN NNS VBD IN NNP NN IN DT JJ NN NN . British troops raided the Basra jail , after they became concerned that two of their undercover soldiers had been arrested and handed over to a Shi'ite militia . JJ NNS VBD DT NNP NN , IN PRP VBD VBN IN CD IN PRP$ NN NNS VBD VBN VBN CC VBN RP TO DT NNP NN . Iraqi Prime Minister Ibrahim al-Jaafari has said the raid will not undermine relations with Britain , although it has angered his government . JJ NNP NNP NNP NNP VBZ VBN DT NN MD RB VB NNS IN NNP , IN PRP VBZ VBN PRP$ NN . He said he has ordered an investigation . PRP VBD PRP VBZ VBN DT NN . Pakistani security forces say they have arrested a tribal militant commander suspected of involvement in the killing of three Chinese engineers in the southwestern province of Baluchistan . JJ NN NNS VBP PRP VBP VBN DT JJ JJ NN VBN IN NN IN DT NN IN CD JJ NNS IN DT JJ NN IN NNP . Security officials say the suspect is a local leader of the Baluchistan Liberation Army and wanted in other attacks in addition to the February killings of the Chinese workers in the town of Hub . NN NNS VBP DT NN VBZ DT JJ NN IN DT NNP NNP NNP CC VBN IN JJ NNS IN NN TO DT NNP NNS IN DT JJ NNS IN DT NN IN NNP . On Tuesday in Baluchistan , unidentified gunmen killed a local politician and his bodyguard and injured a third man . IN NNP IN NNP , JJ NNS VBD DT JJ NN CC PRP$ NN CC VBD DT JJ NN . Police say Abdul Samad Achakzai and his bodyguard were killed when gunmen fired on their car as it drove through Kojak pass , northwest of Quetta , the capital of Baluchistan province . NNS VBP NNP NNP NNP CC PRP$ NN VBD VBN WRB NNS VBD IN PRP$ NN IN PRP VBD IN NNP NN , NN IN NNP , DT NN IN NNP NN . The third man , identified as Sulaiman Shah , was seriously wounded . DT JJ NN , VBN IN NNP NNP , VBD RB VBN . Police say Achakzai was one of the leaders of a Pashtun ethnic political group , Pashtoonkhwa Milli Awami , that is linked to a local tribal feud . NNS VBP NNP VBD CD IN DT NNS IN DT NNP JJ JJ NN , NNP NNP NNP , WDT VBZ VBN TO DT JJ NN NN . A suicide attack in southern Afghanistan has killed five policemen and wounded at least three others . DT NN NN IN JJ NNP VBZ VBN CD NNS CC VBN IN JJS CD NNS . Tuesday 's bombing in the Spin Boldak district of Kandahar province near the Pakistani border targeted the convoy of a border police commander , who survived the attack . NNP POS NN IN DT NNP NNP NN IN NNP NN IN DT JJ NN VBD DT NN IN DT NN NN NN , WP VBD DT NN . Officials say the attacker was riding a motorcycle when he detonated his explosives outside of the police headquarters . NNS VBP DT NN VBD VBG DT NN WRB PRP VBD PRP$ NNS IN IN DT NN NN . In other news , NATO reports a Canadian soldier with its International Security Assistance Force was killed and four others wounded in the Panjwayi district of Kandahar on Monday . IN JJ NN , NNP VBZ DT JJ NN IN PRP$ NNP NNP NNP NNP VBD VBN CC CD NNS VBN IN DT NNP NN IN NNP IN NNP . Elsewhere , a head-on collision of two buses killed at least 32 people Monday on the main road linking the capital , Kabul , and Kandahar city . RB , DT JJ NN IN CD NNS VBD IN JJS CD NNS NNP IN DT JJ NN VBG DT NN , NNP , CC NNP NN . At least 35 other people were injured . IN JJS CD JJ NNS VBD VBN . China 's ministry of health says 34 people have died from a disease , caused by streptococcus suis bacteria , carried by pigs . NNP POS NN IN NN VBZ CD NNS VBP VBN IN DT NN , VBN IN JJ NNS NNS , VBN IN NNS . On Saturday , the ministry released new figures saying 174 cases of the illness , commonly called swine flu , have been identified . IN NNP , DT NN VBD JJ NNS VBG CD NNS IN DT NN , RB VBN NN NN , VBP VBN VBN . That is an increase of 22 over Friday 's figure . DT VBZ DT NN IN CD IN NNP POS NN . There were three additional deaths in the same period . EX VBD CD JJ NNS IN DT JJ NN . China 's official news agency Xinhua reports that one of the new cases came from Guangdong province near Hong Kong . NNP POS JJ NN NN NNP VBZ IN CD IN DT JJ NNS VBD IN NNP NN IN NNP NNP . That would be the first case outside Sichuan province , where the outbreak began . DT MD VB DT JJ NN IN NNP NN , WRB DT NN VBD . Xinhua says a slaughterhouse worker in Guangdong was treated and released from the hospital . NNP VBZ DT NN NN IN NNP VBD VBN CC VBN IN DT NN . Those infected have handled infected pigs or infected pork . DT VBN VBP VBN JJ NNS CC JJ NN . China says there has been no human-to-human transmission of the disease . NNP VBZ EX VBZ VBN DT JJ NN IN DT NN . Police in Nepal have arrested at least 120 anti-government activists across the country who defied a ban on protests to show their anger at King Gyanendra 's seizure of absolute power last month . NNS IN NNP VBP VBN IN JJS CD JJ NNS IN DT NN WP VBD DT NN IN NNS TO VB PRP$ NN IN NNP NNP POS NN IN JJ NN JJ NN . In the capital , Kathmandu , police detained more than 40 protesters who gathered near the Central Secretariat building , shouting slogans such as ' Down with autocracy , we want democracy . ' IN DT NN , NNP , NN VBD JJR IN CD NNS WP VBD IN DT NNP NNP NN , VBG NNS JJ IN `` IN IN NN , PRP VBP NN . `` The rest of the people were detained in similar demonstrations in nine other cities across the Himalayan kingdom . DT NN IN DT NNS VBD VBN IN JJ NNS IN CD JJ NNS IN DT NNP NN . Monday 's protest in the capital was the largest since February first , when the king dismissed the government , declared a state of emergency and suspended civil liberties . NNP POS NN IN DT NN VBD DT JJS IN NNP RB , WRB DT NN VBD DT NN , VBD DT NN IN NN CC VBN JJ NNS . He said he did so to defeat an escalating Maoist insurgency that has claimed more than 10,000 lives since 1996 . PRP VBD PRP VBD RB TO VB DT VBG NN NN WDT VBZ VBN JJR IN CD NNS IN CD . A new government report recently released shows the nation 's poverty rate was virtually unchanged in 2007 . DT JJ NN NN RB VBN VBZ DT NN POS NN NN VBD RB JJ IN CD . The U.S. Census Bureau 's annual report also shows the number of Americans without health insurance fell last year - the first annual decline since the Bush administration took office . DT NNP NNP NNP POS JJ NN RB VBZ DT NN IN NNS IN NN NN VBD JJ NN IN DT JJ JJ NN IN DT NNP NN VBD NN . But some economists have criticized the report , saying it paints an inaccurate picture of the U.S. economy today . CC DT NNS VBP VBN DT NN , VBG PRP VBZ DT JJ NN IN DT NNP NN NN . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Angolan health officials say the death toll in the country from the Marburg fever has reached 203 out of 221 registered cases . JJ NN NNS VBP DT NN NN IN DT NN IN DT NNP NN VBZ VBN CD IN IN CD JJ NNS . Officials said Monday the hardest hit area is the northern province of Uige where 184 people have died from the disease that first appeared last October . NNS VBD NNP DT RBS VBN NN VBZ DT JJ NN IN NNP WRB CD NNS VBP VBN IN DT NN WDT RB VBD JJ NNP . Meanwhile , medics treating Marburg fever patients are recommending closing down a hospital in Uige province because they say it needs to be disinfected . RB , NNS VBG NNP NN NNS VBP VBG VBG RP DT NN IN NNP NN IN PRP VBP PRP VBZ TO VB VBN . Doctors Without Borders , a global relief organization , says this step is necessary to reduce infection risks in the hospital where victims of the fatal virus are being held in isolation . NNS IN NNS , DT JJ NN NN , VBZ DT NN VBZ JJ TO VB NN NNS IN DT NN WRB NNS IN DT JJ NN VBP VBG VBN IN NN . The Ebola-like hemorrhagic fever spreads through contact with bodily fluids , and can kill rapidly . DT JJ JJ NN NNS IN NN IN RB NNS , CC MD VB RB . The World Health Organization has sent in teams to remove bodies and trace contacts with infected patients . DT NNP NNP NNP VBZ VBN IN NNS TO VB NNS CC NN NNS IN JJ NNS . Israel 's deputy prime minister says Israel has frozen plans to expand its largest West Bank settlement near Jerusalem . NNP POS JJ JJ NN VBZ NNP VBZ VBN NNS TO VB PRP$ JJS NNP NNP NN IN NNP . Deputy Prime Minister Ehud Olmert told the Jerusalem Post that Israel still wants to build some 3,500 new homes in the Maaleh Adumim settlement , but will only move forward on the project with U.S. consent . NNP NNP NNP NNP NNP VBD DT NNP NNP IN NNP RB VBZ TO VB DT CD JJ NNS IN DT NNP NNP NN , CC MD RB VB RB IN DT NN IN NNP NN . The expansion would have cut off east Jerusalem , claimed by the Palestinians as a future capital , from the West Bank . DT NN MD VB VBN RP JJ NNP , VBN IN DT NNS IN DT JJ NN , IN DT NNP NNP . The United States had criticized the move , saying it would violate the internationally-backed road map peace plan that requires Israel to halt settlement growth . DT NNP NNPS VBD VBN DT NN , VBG PRP MD VB DT JJ NN NN NN NN WDT VBZ NNP TO VB NN NN . U.S. officials in Venezuela say supporters of President Hugo Chavez burned a U.S. flag , set tires on fire and surrounded a building that the American ambassador was visiting Wednesday , temporarily trapping him inside . NNP NNS IN NNP VBP NNS IN NNP NNP NNP VBD DT NNP NN , VBN NNS IN NN CC VBN DT NN IN DT JJ NN VBD VBG NNP , RB VBG PRP RB . Officials say Ambassador William Brownfield was stranded for at least two hours as the demonstrators gathered outside , chanting anti-U.S. slogans . NNS VBP NNP NNP NNP VBD VBN IN IN JJS CD NNS IN DT NNS VBD RB , VBG JJ NNS . No injuries were reported during the protest . DT NNS VBD VBN IN DT NN . The incident took place days after a Venezuelan newspaper printed an interview with Ambassador Brownfield , who said Washington is concerned over Venezuela 's growing ties with Iran . DT NN VBD NN NNS IN DT JJ NN VBD DT NN IN NNP NNP , WP VBD NNP VBZ VBN IN NNP POS VBG NNS IN NNP . Venezuela 's government often clashes with the United States . NNP POS NN RB VBZ IN DT NNP NNPS . President Chavez recently criticized President Bush , following a White House report which called Mr. Chavez a demagogue . NNP NNP RB VBD NNP NNP , VBG DT NNP NNP NN WDT VBD NNP NNP DT NN . Although relations between the two countries are tense , Venezuela is still a key supplier of oil to the U.S. market . IN NNS IN DT CD NNS VBP JJ , NNP VBZ RB DT JJ NN IN NN TO DT NNP NN . Anglican Archbishop Desmond Tutu is mourning the loss of the Roman Catholic leader , while saying the next pope should come from Africa . NNP NNP NNP NNP VBZ VBG DT NN IN DT NNP NNP NN , IN VBG DT JJ NN MD VB IN NNP . The South African Nobel Peace Prize winner said Sunday he hopes cardinals will elect an African when they meet this month at the Vatican . DT NNP NNP NNP NNP NNP NN VBD NNP PRP VBZ NNS MD VB DT JJ WRB PRP VBP DT NN IN DT NNP . Also today , the head of Ethiopia 's Orthodox church , Abune Paulos , praised John Paul as a great man who spoke of peace among religions . RB NN , DT NN IN NNP POS NNP NN , NNP NNP , VBD NNP NNP IN DT JJ NN WP VBD IN NN IN NNS . Nigeria 's President Olusegun Obasanjo expressed his condolences , noting the late pontiff promoted religious tolerance and democracy in the West African nation . NNP POS NNP NNP NNP VBD PRP$ NNS , VBG DT JJ NN VBD JJ NN CC NN IN DT JJ JJ NN . And African Union Chairman , Alpha Oumar Konare , said the pope was a great advocate for Africa and a moral authority for the world . CC NNP NNP NNP , NNP NNP NNP , VBD DT NN VBD DT JJ NN IN NNP CC DT JJ NN IN DT NN . South Korean news media say North Korea Saturday aired a pirate recording of the opening World Cup match between host South Africa and Mexico . JJ JJ NN NNS VBP NNP NNP NNP VBD DT NN NN IN DT VBG NNP NNP NN IN NN NNP NNP CC NNP . Yonhap news agency quotes South Korean Broadcaster SBS as saying the North Korean Central Broadcasting Service showed a recording of Friday 's game , despite its lack of broadcasting rights . NNP NN NN VBZ JJ JJ NN NNP IN VBG DT JJ JJ NNP NNP NNP VBD DT NN IN NNP POS NN , IN PRP$ NN IN NN NNS . An official is quoted as saying SBS has World Cup broadcasting rights for the whole Korean peninsula . DT NN VBZ VBN IN VBG NNP VBZ NNP NNP NN NNS IN DT JJ JJ NN . The official said SBS will decide on measures after determining how North Korea obtained the footage . DT NN VBD NNP MD VB IN NNS IN VBG WRB NNP NNP VBD DT NN . Meanwhile , South Koreans nationwide celebrated the victory of their team in their opening World Cup game against Greece . RB , NNP NNS JJ VBD DT NN IN PRP$ NN IN PRP$ NN NNP NNP NN IN NNP . Despite rainy weather , fans crowded parks , squares and stadiums across the country to watch the game on giant screens and celebrate their team 's ( 2-0 ) win . IN JJ NN , NNS VBD NNS , NNS CC NNS IN DT NN TO VB DT NN IN JJ NNS CC VB PRP$ NN POS LRB CD RRB NN . Cuba 's health ministry says U.S. filmmaker Michael Moore 's new movie , ' Sicko , ' will be good publicity for the Cuban health care system . NNP POS NN NN VBZ NNP NN NNP NNP POS JJ NN , `` NNP , `` MD VB JJ NN IN DT JJ NN NN NN . Health Minister Jose Ramon Balaguer told reporters in Havana Friday that Moore 's movie , screened recently at the Cannes film festival , will show the world the humaneness of the Cuban health care system . NN NN NNP NNP NNP VBD NNS IN NNP NNP IN NNP POS NN , VBD RB IN DT NNP NN NN , MD VB DT NN DT NN IN DT JJ NN NN NN . Moore 's documentary , scheduled for U.S. release June 29 , is about problems in the U.S. health care system . NNP POS NN , VBN IN NNP NN NNP CD , VBZ IN NNS IN DT NNP NN NN NN . In it , Moore takes three rescue workers from the September 11th , 2001 terrorist attacks to Cuba for health care , while accusing the United States of failing to respond to their needs . IN PRP , NNP VBZ CD NN NNS IN DT NNP CD , CD JJ NNS TO NNP IN NN NN , IN VBG DT NNP NNPS IN VBG TO VB TO PRP$ NNS . Cuba 's universal health care , the product of a communist government , is considered comparable to those of much wealthier nations . NNP POS JJ NN NN , DT NN IN DT JJ NN , VBZ VBN JJ TO DT IN JJ JJR NNS . Moore is under investigation by the U.S. government for possible violation of the U.S. trade embargo on Cuba . NNP VBZ IN NN IN DT NNP NN IN JJ NN IN DT NNP NN NN IN NNP . President Bush has called for a diplomatic solution to the Iran nuclear crisis . NNP NNP VBZ VBN IN DT JJ NN TO DT NNP JJ NN . At the White House Friday , Mr. Bush said Iran must not be allowed to possess a nuclear weapon . IN DT NNP NNP NNP , NNP NNP VBD NNP MD RB VB VBN TO VB DT JJ NN . He said it is logical that a country that has rejected diplomatic options would be referred to the United Nations Security Council . PRP VBD PRP VBZ JJ IN DT NN WDT VBZ VBN JJ NNS MD VB VBN TO DT NNP NNP NNP NNP . Mr. Bush made those comments after talks with German Chancellor Angela Merkel , who said the international community should not be intimidated by Iran . NNP NNP VBD DT NNS IN NNS IN JJ NNP NNP NNP , WP VBD DT JJ NN MD RB VB VBN IN NNP . Iran has threatened to end cooperation with the United Nations nuclear agency if Tehran 's nuclear program is taken to the Security Council for possible sanctions . NNP VBZ VBN TO VB NN IN DT NNP NNP JJ NN IN NNP POS JJ NN VBZ VBN TO DT NNP NNP IN JJ NNS . Iran announced earlier this week it was resuming nuclear fuel research . NNP VBD RBR DT NN PRP VBD VBG JJ NN NN . China 's U.N. ambassador said today that referring the matter to the United Nations might complicate the issue . NNP POS NNP NN VBD NN IN VBG DT NN TO DT NNP NNP MD VB DT NN . Russia has urged Iran to resume its moratorium on nuclear activities and cooperate with the U.N. nuclear agency . NNP VBZ VBN NNP TO VB PRP$ NN IN JJ NNS CC VB IN DT NNP JJ NN . Russia has urged Iran to heed a U.N. Security Council resolution giving Tehran until the end of the month to suspend its sensitive nuclear activities . NNP VBZ VBN NNP TO VB DT NNP NNP NNP NN VBG NNP IN DT NN IN DT NN TO VB PRP$ JJ JJ NNS . In a statement Thursday , Russia 's Foreign Ministry said no further measures by the Security Council will be required if Iran heeds the call . IN DT NN NNP , NNP POS NNP NNP VBD DT JJ NNS IN DT NNP NNP MD VB VBN IN NNP VBZ DT NN . Russia , a permanent Security Council member , has resisted Western efforts to sanction Iran for its refusal to comply with nuclear demands . NNP , DT JJ NN NNP NN , VBZ VBN JJ NNS TO VB NNP IN PRP$ NN TO VB IN JJ NNS . The U.N. resolution , passed earlier this week , demands Iran stop enriching uranium by August 31st or face possible sanctions . DT NNP NN , VBN RBR DT NN , VBZ NNP VB VBG NN IN NNP CD CC VB JJ NNS . The Security Council acted after Iran failed to respond to an international incentives package Tehran would get by suspending enrichment activities . DT NNP NNP VBD IN NNP VBD TO VB TO DT JJ NNS NN NNP MD VB IN VBG NN NNS . Iranian President Mahmoud Ahmadinejad said Thursday Iran is still considering the incentives package . JJ NNP NNP NNP VBD NNP NNP VBZ RB VBG DT NNS NN . The United States and its Western allies believe Iran is trying to develop nuclear weapons . DT NNP NNPS CC PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS . Tehran says its nuclear program is only for peaceful purposes . NNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS . Indian Prime Minister Manmohan Singh begins a two-day visit to Afghanistan on Sunday , the first by an Indian premier in nearly three decades . JJ NNP NNP NNP NNP VBZ DT JJ NN TO NNP IN NNP , DT JJ IN DT JJ NN IN RB CD NNS . Besides holding talks with Afghan President Hamid Karzai and Foreign Minister Abdullah , Mr. Singh is scheduled to take part in a groundbreaking ceremony for a new Afghan parliament building being built with Indian help . IN VBG NNS IN JJ NNP NNP NNP CC NNP NNP NNP , NNP NNP VBZ VBN TO VB NN IN DT VBG NN IN DT JJ JJ NN NN VBG VBN IN JJ NN . India is also involved in training Afghan armed forces and police , building roads , schools , hospitals , power lines , digging wells and supporting trade and services . NNP VBZ RB VBN IN VBG JJ JJ NNS CC NNS , VBG NNS , NNS , NNS , NN NNS , VBG NNS CC VBG NN CC NNS . Wednesday , the two countries signed a Memorandum of Understanding under which India will upgrade all radio and television stations in Afghanistan . NNP , DT CD NNS VBD DT NN IN NN IN WDT NNP MD VB DT NN CC NN NNS IN NNP . Although India and Afghanistan share close historic and cultural links , the turmoil in the central Asian nation had not allowed an Indian prime minister to visit Kabul since a trip in 1976 by Indira Gandhi . IN NNP CC NNP VBP RB JJ CC JJ NNS , DT NN IN DT JJ JJ NN VBD RB VBN DT JJ JJ NN TO VB NNP IN DT NN IN CD IN NNP NNP . National Basketball Association center Yao Ming is raising money for victims of the May 12 earthquake in his native China , by holding a raffle for a trip to the Beijing Olympics next month . NNP NNP NNP NN NNP NNP VBZ VBG NN IN NNS IN DT NNP CD NN IN PRP$ JJ NNP , IN VBG DT NN IN DT NN TO DT NNP NNPS JJ NN . Tickets for the raffle cost $ 2 ( US ) and can be purchased with a credit card on a special Internet site ( https://www.celebritiesforcharity.org/raffles/netraffle_main.cfm ) . NNS IN DT NN VBD $ CD LRB NNP RRB CC MD VB VBN IN DT NN NN IN DT JJ NN NN LRB NNP RRB . The winner will be announced July 21 , and will receive round-trip airfare from a U.S. city to Beijing , a seven-day hotel stay in Beijing , two tickets to the China-USA basketball game , $ 1500 dollars in cash , and a guided tour of the Great Wall of China . DT NN MD VB VBN NNP CD , CC MD VB JJ NN IN DT NNP NN TO NNP , DT JJ NN NN IN NNP , CD NNS TO DT NNP NN NN , $ CD NNS IN NN , CC DT JJ NN IN DT NNP NNP IN NNP . Yao created a personal foundation in late June , saying its first projects would help children left homeless by the earthquake in Sichuan province . NNP VBD DT JJ NN IN JJ NNP , VBG PRP$ JJ NNS MD VB NNS VBN JJ IN DT NN IN NNP NN . Nigerian President Olusegun Obasanjo has urged rich nations to give more aid to Africa as leaders from the Group of Eight gathered in Scotland for a summit focused on lifting the continent out of poverty . JJ NNP NNP NNP VBZ VBN JJ NNS TO VB JJR NN TO NNP IN NNS IN DT NNP IN CD VBD IN NNP IN DT NN VBN IN VBG DT NN IN IN NN . Mr. Obasanjo told a London meeting of the Business Action for Africa that the continent is hopeful about decisions that will be made by G8 leaders on better trade access and increased aid to Africa . NNP NNP VBD DT NNP NN IN DT NNP NNP IN NNP IN DT NN VBZ JJ IN NNS WDT MD VB VBN IN NNP NNS IN JJR NN NN CC JJ NN TO NNP . He also welcomed a plan to wipe out $ 40 billion worth of debt owed by 18 of the world 's poorest nations . PRP RB VBD DT NN TO VB RP $ CD CD NN IN NN VBN IN CD IN DT NN POS JJS NNS . Mr. Obasanjo said African nations are committed to democracy , good governance and ending corruption . NNP NNP VBD JJ NNS VBP VBN TO NN , JJ NN CC VBG NN . Before heading to Scotland for the summit , President Bush and Danish Prime Minister Anders Fogh Rasmussen said increased aid to Africa must be tied to good governance and efforts to fight corruption . IN VBG TO NNP IN DT NN , NNP NNP CC JJ NNP NNP NNP NNP NNP VBD VBN NN TO NNP MD VB VBN TO JJ NN CC NNS TO VB NN . Increasing numbers of costumed urchins are sent to parties rather than door to door VBG NNS IN JJ NNS VBP VBN TO NNS RB IN NN TO NN Some religious families object to the holiday entirely , saying that it celebrates evil and the devil . DT JJ NNS VBP TO DT NN RB , VBG IN PRP VBZ JJ CC DT NN . Increasing numbers of porch lights are left off in some neighborhoods , too - signaling that the household will not welcome trick-or-treaters - because the residents are annoyed by gravelly voiced beggars in frightening costumes who continue to come knocking , well into their teens . VBG NNS IN NN NNS VBP VBN RP IN DT NNS , RB : VBG IN DT NN MD RB VB NNS : IN DT NNS VBP VBN IN RB VBN NNS IN JJ NNS WP VBP TO VB VBG , RB IN PRP$ NNS . And in a tight economy , some residents no longer want to go to the time , trouble , and expense of buying candy and decorating their houses for Halloween . CC IN DT JJ NN , DT NNS RB RB VB TO VB TO DT NN , NN , CC NN IN VBG NN CC VBG PRP$ NNS IN NNP . The upshot is that come dusk this Sunday night across America , little ghouls and make-believe starlets will be about . DT NN VBZ IN VBN NN DT NNP NN IN NNP , JJ NNS CC JJ NNS MD VB RB . Likely , though , not as many as last Halloween . RB , RB , RB RB JJ IN JJ NNP . The United States has transferred two detainees from its military prison at Guantanamo Bay , Cuba , to other countries . DT NNP NNPS VBZ VBN CD NNS IN PRP$ JJ NN IN NNP NNP , NNP , TO JJ NNS . The Defense Department said Monday that Abdul Aziz Naji has been sent back to his native Algeria , while Abd-al-Nisr Mohammed Khantumani was resettled in Cape Verde . DT NNP NNP VBD NNP IN NNP NNP NNP VBZ VBN VBN RB TO PRP$ JJ NNP , IN NNP NNP NNP VBD VBN IN NNP NNP . A statement said the U.S. coordinated with the two countries ' governments to ensure a secure transfer . DT NN VBD DT NNP VBD IN DT CD NNS POS NNS TO VB DT JJ NN . The Guantanamo prison houses alleged terrorists , many held for years without trial . DT NNP NN NNS VBN NNS , JJ JJ IN NNS IN NN . The facility has been widely criticized by human rights groups . DT NN VBZ VBN RB VBN IN JJ NNS NNS . President Barack Obama ordered the facility to be shut down within a year after he took office in January 2009 . NNP NNP NNP VBD DT NN TO VB VBN RP IN DT NN IN PRP VBD NN IN NNP CD . However , the deadline passed amid difficulty in finding places to put the detainees . RB , DT NN VBD IN NN IN VBG NNS TO VB DT NNS . More than 40 other countries have accepted at least one prisoner . JJR IN CD JJ NNS VBP VBN IN JJS CD NN . The U.S. says 178 detainees remain at the facility . DT NNP VBZ CD NNS VBP IN DT NN . Zambia 's economy has experienced strong growth in recent years , with real GDP growth in 2005 - 10 about 6 % per year . NNP POS NN VBZ VBN JJ NN IN JJ NNS , IN JJ NN NN IN CD IN CD RB CD NN IN NN . Privatization of government-owned copper mines in the 1990s relieved the government from covering mammoth losses generated by the industry and greatly increased copper mining output and profitability to spur economic growth . NN IN JJ NN NNS IN DT NNS VBD DT NN IN VBG JJ NNS VBN IN DT NN CC RB VBN NN NN NN CC NN TO VB JJ NN . Copper output has increased steadily since 2004 , due to higher copper prices and foreign investment . NN NN VBZ VBN RB IN CD , JJ TO JJR NN NNS CC JJ NN . In 2005 , Zambia qualified for debt relief under the Highly Indebted Poor Country Initiative , consisting of approximately USD 6 billion in debt relief . IN CD , NNP VBD IN NN NN IN DT NNP NNP NNP NNP NNP , VBG IN RB NNP CD CD IN NN NN . Poverty remains a significant problem in Zambia , despite a stronger economy . NN VBZ DT JJ NN IN NNP , IN DT JJR NN . Zambia 's dependency on copper makes it vulnerable to depressed commodity prices , but record high copper prices and a bumper maize crop in 2010 helped Zambia rebound quickly from the world economic slowdown that began in 2008 . NNP POS NN IN NN VBZ PRP JJ TO JJ NN NNS , CC NN JJ NN NNS CC DT NN NN NN IN CD VBD NNP VB RB IN DT NN JJ NN WDT VBD IN CD . A high birth rate , relatively high HIV / AIDS burden , and market distorting agricultural policies have meant that Zambia 's economic growth has not dramatically decreased the stubbornly high poverty rates . DT JJ NN NN , RB JJ NNP NNP NNP NN , CC NN NN JJ NNS VBP VBN IN NNP POS JJ NN VBZ RB RB VBN DT RB JJ NN NNS . Slovakia 's roots can be traced to the 9th century state of Great Moravia . NNP POS NNS MD VB VBN TO DT JJ NN NN IN NNP NNP . Subsequently , the Slovaks became part of the Hungarian Kingdom , where they remained for the next 1,000 years . RB , DT NNS VBD NN IN DT NNP NNP , WRB PRP VBD IN DT JJ CD NNS . Following the formation of the dual Austro-Hungarian monarchy in 1867 , language and education policies favoring the use of Hungarian ( Magyarization ) resulted in a strengthening of Slovak nationalism and a cultivation of cultural ties with the closely related Czechs , who were themselves ruled by the Austrians . VBG DT NN IN DT JJ JJ NN IN CD , NN CC NN NNS VBG DT NN IN NNP LRB NNP RRB VBD IN DT NN IN JJ NN CC DT NN IN JJ NNS IN DT RB JJ NNS , WP VBD PRP VBN IN DT NNS . After the dissolution of the Austro-Hungarian Empire at the close of World War I , the Slovaks joined the Czechs to form Czechoslovakia . IN DT NN IN DT JJ NN IN DT NN IN NNP NNP NNP , DT NNS VBD DT NNS TO VB NNP . Following the chaos of World War II , Czechoslovakia became a Communist nation within Soviet-dominated Eastern Europe . VBG DT NN IN NNP NNP NNP , NNP VBD DT JJ NN IN JJ NNP NNP . Soviet influence collapsed in 1989 and Czechoslovakia once more became free . JJ NN VBD IN CD CC NNP RB JJR VBD JJ . The Slovaks and the Czechs agreed to separate peacefully on 1 January 1993 . DT NNS CC DT NNS VBD TO VB RB IN CD NNP CD . Slovakia joined both NATO and the EU in the spring of 2004 and the euro area on 1 January 2009 . NNP VBD DT NNP CC DT NNP IN DT NN IN CD CC DT NN NN IN CD NNP CD . The French Territory of the Afars and the Issas became Djibouti in 1977 . DT JJ NN IN DT NNPS CC DT NNPS VBD NNP IN CD . Hassan Gouled APTIDON installed an authoritarian one-party state and proceeded to serve as president until 1999 . NNP NNP NNP VBD DT JJ JJ NN CC VBD TO VB IN NN IN CD . Unrest among the Afars minority during the 1990s led to a civil war that ended in 2001 following the conclusion of a peace accord between Afar rebels and the Issa-dominated government . NNP IN DT NNPS NN IN DT NNS VBD TO DT JJ NN WDT VBD IN CD VBG DT NN IN DT NN NN IN NNP NNS CC DT JJ NN . In 1999 , Djibouti 's first multi-party presidential elections resulted in the election of Ismail Omar GUELLEH ; he was re-elected to a second term in 2005 . IN CD , NNP POS JJ JJ JJ NNS VBD IN DT NN IN NNP NNP NNP ; PRP VBD VBN TO DT JJ NN IN CD . Djibouti occupies a strategic geographic location at the mouth of the Red Sea and serves as an important transshipment location for goods entering and leaving the east African highlands . NNP VBZ DT JJ JJ NN IN DT NN IN DT NNP NNP CC VBZ IN DT JJ NN NN IN NNS VBG CC VBG DT JJ JJ NNS . The present leadership favors close ties to France , which maintains a significant military presence in the country , but also has strong ties with the US . DT JJ NN VBZ JJ NNS TO NNP , WDT VBZ DT JJ JJ NN IN DT NN , CC RB VBZ JJ NNS IN DT NNP . Djibouti hosts the only US military base in sub-Saharan Africa . NNP VBZ DT JJ NNP JJ NN IN JJ NNP . THE PIGEONS , terrified by the appearance of a Kite , called upon the Hawk to defend them . DT NNS , VBN IN DT NN IN DT NN , VBD IN DT NN TO VB PRP . He at once consented . PRP IN RB VBN . When they had admitted him into the cote , they found that he made more havoc and slew a larger number of them in one day than the Kite could pounce upon in a whole year . WRB PRP VBD VBN PRP IN DT NN , PRP VBD IN PRP VBD JJR NN CC NN DT JJR NN IN PRP IN CD NN IN DT NN MD VB IN IN DT JJ NN . Avoid a remedy that is worse than the disease . VB DT NN WDT VBZ JJR IN DT NN . THE members of the School Board in Doosnoswair being suspected of appointing female teachers for an improper consideration , the people elected a Board composed wholly of women . DT NNS IN DT NNP NNP IN NNP VBG VBN IN VBG JJ NNS IN DT JJ NN , DT NNS VBD DT NN VBN RB IN NNS . In a few years the scandal was at an end ; there were no female teachers in the Department . IN DT JJ NNS DT NN VBD IN DT NN ; EX VBD DT JJ NNS IN DT NN . A January 1994 Reuters News Service story on Manuel Oliveira 's ice cream shop in Merida , Venezuela , reported on his 567 flavors , including onion , chili , beer , eggplant , smoked trout , spaghetti parmesan , chicken with rice , and spinach . DT NNP CD NNP NNP NNP NN IN NNP NNP POS NN NN NN IN NNP , NNP , VBD IN PRP$ CD NNS , VBG NN , NN , NN , NN , VBD NN , NNS NN , NN IN NN , CC NN . He said some flavors fail ; he once abandoned avocado ice cream , and tossed out 99 pounds of it , because it was n't smooth enough . PRP VBD DT NNS VBP ; PRP RB VBD NN NN NN , CC VBD RP CD NNS IN PRP , IN PRP VBD RB JJ RB . According to a news report , a certain private school in Victoria , BC , recently was faced with a unique problem . VBG TO DT NN NN , DT JJ JJ NN IN NNP , NNP , RB VBD VBN IN DT JJ NN . A number of grade 12 girls were beginning to use lipstick and would put it on in the bathroom . DT NN IN NN CD NNS VBD VBG TO VB NN CC MD VB PRP IN IN DT NN . That was fine , but after they put on their lipstick they would press their lips to the mirror leaving dozens of little lip prints . DT VBD JJ , CC IN PRP VBD IN PRP$ NN PRP MD VB PRP$ NNS TO DT NN VBG NNS IN JJ JJ NNS . Every night , the maintenance man would remove them and the next day , The girls would put them back . DT NN , DT NN NN MD VB PRP CC DT JJ NN , DT NNS MD VB PRP RB . Finally the principal decided that something had to be done . RB DT NN VBD IN DT VBD TO VB VBN . She called all the girls to the bathroom and met them there with the maintenance man . PRP VBD PDT DT NNS TO DT NN CC VBD PRP RB IN DT NN NN . She explained that all these lip prints were causing a major problem for the custodian who had to clean the mirrors every night . PRP VBD IN DT DT JJ NNS VBD VBG DT JJ NN IN DT NN WP VBD TO VB DT NNS DT NN . To demonstrate how difficult it had been to clean the mirrors , she asked the maintenance man to show the girls how much effort was required . TO VB WRB JJ PRP VBD VBN TO VB DT NNS , PRP VBD DT NN NN TO VB DT NNS WRB JJ NN VBD VBN . He took out a long-handled squeegee , dipped it in the toilet , and cleaned the mirror with it . PRP VBD RP DT JJ NN , VBD PRP IN DT NN , CC VBD DT NN IN PRP . Since then , there have been no lip prints on the mirror . IN RB , EX VBP VBN DT JJ NNS IN DT NN . There are teachers , and then there are educators ... EX VBP NNS , CC RB EX VBP NNS : I am not a believer in seances , but I went to one just to see what they are like . PRP VBP RB DT NN IN NNS , CC PRP VBD TO CD RB TO VB WP PRP VBP IN . The psychic was doing his thing and grinning from ear to ear . DT NN VBD VBG PRP$ NN CC VBG IN JJ TO VB . I assumed his merriment was due to the fact that he was fooling a gullible public and gave him a poke in the nose . PRP VBD PRP$ NN VBD JJ TO DT NN IN PRP VBD VBG DT JJ NN CC VBD PRP DT NN IN DT NN . You can probably guess the rest ... PRP MD RB VB DT NN : I was arrested for striking a happy medium ... PRP VBD VBN IN VBG DT JJ NN : Ethiopia Saturday released 32 supporters of the political opposition who had been detained since post-election violence in 2005 . NNP NNP VBD CD NNS IN DT JJ NN WP VBD VBN VBN IN JJ NN IN CD . Their release comes after Ethiopia pardoned another 38 opposition members last month . PRP$ NN VBZ IN NNP VBD DT CD NN NNS JJ NN . That group had received life sentences in court the week before their pardons . DT NN VBD VBN NN NNS IN NN DT NN IN PRP$ NNS . None of the 32 freed Saturday had been charged in court with any crimes . NN IN DT CD VBN NNP VBD VBN VBN IN NN IN DT NNS . All had been rounded up after protests over the 2005 elections turned violent . DT VBD VBN VBN RP IN NNS IN DT CD NNS VBD JJ . The opposition made its largest gains ever in those elections . DT NN VBD PRP$ JJS NNS RB IN DT NNS . Opposition groups claimed the elections were rigged to keep Prime Minister Meles Zenawi in power . NN NNS VBD DT NNS VBD VBN TO VB NNP NNP NNP NNP IN NN . Ethiopian security forces killed at least 193 people while stopping the protests . JJ NN NNS VBN IN JJS CD NNS IN VBG DT NNS . World oil prices hit a new record in Wednesday 's trading , hitting $ 99.29 a barrel before easing downward . NNP NN NNS VBD DT JJ NN IN NNP POS NN , VBG $ CD DT NN IN VBG JJ . That is 67 cents above the previous record , which was set on November 7 . DT VBZ CD NNS IN DT JJ NN , WDT VBD VBN IN NNP CD . Traders say the soaring prices stem from the declining value of the U.S. dollar and worries about the supply of oil in the Northern Hemisphere as winter approaches . NNS VBP DT VBG NNS VBP IN DT VBG NN IN DT NNP NN CC NNS IN DT NN IN NN IN DT NNP NNP IN NN NNS . A U.S. Energy Department report Wednesday says the amount of oil available in the United States declined slightly last week by a bit more than one million barrels , to a total of nearly 314 million barrels . DT NNP NNP NNP NN NNP VBZ DT NN IN NN JJ IN DT NNP NNPS VBD RB JJ NN IN DT NN RBR IN CD CD NNS , TO DT NN IN RB CD CD NNS . French Foreign Minister Philippe Douste-Blazy is in Moscow for talks with top Russian officials expected to focus on Iran 's nuclear program . JJ NNP NNP NNP NNP VBZ IN NNP IN NNS IN JJ JJ NNS VBN TO VB IN NNP POS JJ NN . France , along with Britain and Germany , called for an emergency session of the International Atomic Energy Agency on February 2 , to hear the European case for referring Iran to the United Nations Security Council . NNP , IN IN NNP CC NNP , VBD IN DT NN NN IN DT NNP NNP NNP NNP IN NNP CD , TO VB DT JJ NN IN VBG NNP TO DT NNP NNP NNP NNP . The Security Council can impose sanctions , if it finds Iran has violated international treaties with its nuclear program . DT NNP NNP MD VB NNS , IN PRP VBZ NNP VBZ VBN JJ NNS IN PRP$ JJ NN . The call for the I.A.E.A . session came after Tehran broke a two-year moratorium on nuclear research earlier this month . DT NN IN DT NNP . NN VBD IN NNP VBD DT JJ NN IN JJ NN RBR DT NN . The United States has accused Iran of using its research to develop nuclear weapons . DT NNP NNPS VBZ VBN NNP IN VBG PRP$ NN TO VB JJ NNS . Tehran insists its nuclear intentions are peaceful . NNP VBZ PRP$ JJ NNS VBP JJ . China Thursday called for ' restraint and patience ' to resolve the nuclear crisis . NNP NNP VBD IN `` NN CC NN `` TO VB DT JJ NN . Residents of the U.S. state of Florida are stocking up on gasoline , water and other supplies as Tropical Storm Katrina moves toward the area . NNS IN DT NNP NN IN NNP VBP VBG RP IN NN , NN CC JJ NNS IN JJ NN NNP VBZ IN DT NN . Forecasters expect the storm to bring heavy rainfall and possible flooding to much of southern and central Florida when it makes landfall later Thursday . NNS VBP DT NN TO VB JJ NN CC JJ NN TO NN IN JJ CC JJ NNP WRB PRP VBZ NN RB NNP . Hurricane and tropical storm warnings have been posted for many areas as the storm moves westward , away from the Bahamas and toward Florida 's southeast coast . NNP CC JJ NN NNS VBP VBN VBN IN JJ NNS IN DT NN VBZ RB , RB IN DT NNPS CC IN NNP POS NN NN . The U.S. National Hurricane Center says Katrina may gain strength and become a category one hurricane before reaching land . DT NNP NNP NNP NNP VBZ NNP MD VB NN CC VB DT NN CD NN IN VBG NN . At last report , the storm was packing winds of 85 kilometers per hour . IN JJ NN , DT NN VBD VBG NNS IN CD NNS IN NN . A tropical storm warning remains in effect for the northwest Bahamas . DT JJ NN NN VBZ IN NN IN DT JJS NNPS . Parts of Florida are still recovering from the four hurricanes that hit the state last year . NNS IN NNP VBP RB VBG IN DT CD NNS WDT VBD DT NN JJ NN . The U.S. military in Iraq says American warplanes have bombed two bridges in western al-Anbar province , to stop insurgents from using them to move fighters and equipment to other cities for attacks . DT NNP NN IN NNP VBZ JJ NNS VBP VBN CD NNS IN JJ NNP NN , TO VB NNS IN VBG PRP TO VB NNS CC NN TO JJ NNS IN NNS . The air strikes Tuesday near the Syrian border did not destroy the Euphrates River bridges , but made them inoperable . DT NN VBZ NNP IN DT JJ NN VBD RB VB DT NNP NNP NNS , CC VBD PRP JJ . No casualties were reported . DT NNS VBD VBN . Coalition troops also raided a nearby safehouse , killing two foreign fighters and detaining three others . NN NNS RB VBD DT JJ NN , VBG CD JJ NNS CC VBG CD NNS . The building was later destroyed . DT NN VBD RB VBN . Elsewhere , in the southern Shi'ite holy city of Najaf , U.S. forces handed over military control of the city to Iraqi forces . RB , IN DT JJ NNP JJ NN IN NNP , NNP NNS VBN IN JJ NN IN DT NN TO JJ NNS . In other developments , the U.S. military reports two American soldiers were killed and two wounded Tuesday in a bomb blast in Baghdad . IN JJ NNS , DT NNP NN VBZ CD JJ NNS VBD VBN CC CD VBD NNP IN DT NN NN IN NNP . Two more soldiers were killed Monday in Tal Afar and Ramadi . CD JJR NNS VBD VBN NNP IN NNP NNP CC NNP . Britain says finance ministers from the Group of Seven industrial nations have expressed a willingness to cancel up to 100 percent of the debt of the world 's poorest nations . NNP VBZ NN NNS IN DT NNP IN CD JJ NNS VBP VBN DT NN TO VB RP TO CD NN IN DT NN IN DT NN POS JJS NNS . Britain 's Treasury chief Gordon Brown said at the close of the G7 summit in London Saturday , that debt relief would be decided on a case-by-case basis . NNP POS NNP NN NNP NNP VBD IN DT NN IN DT NNP NN IN NNP NNP , DT NN NN MD VB VBN IN DT JJ NN . Britain had also pushed for the G7 to support London 's plan to double international aid to the developing world . NNP VBD RB VBN IN DT NNP TO VB NNP POS NN TO VB JJ NN TO DT VBG NN . But the United State rejected that proposal . CC DT NNP NNP VBD IN NN . U.S. Treasury Undersecretary John Taylor told BBC radio the plan did not fit into the U.S. budget process . NNP NNP NNP NNP NNP VBD NNP NN DT NN VBD RB VB IN DT NNP NN NN . Britain 's International Development Secretary Hilary Benn promised to push ahead with the plan , saying a solution will be found by 2006 with or without the United States . NNP POS NNP NNP NNP NNP NNP VBD TO VB RB IN DT NN , VBG DT NN MD VB VBN IN CD IN CC IN DT NNP NNPS . U.S. Undersecretary of State Nicholas Burns has expressed doubt that Washington and New Delhi will finalize a nuclear deal before President Bush visits India next week . NNP NNP IN NNP NNP NNP VBZ VBN NN IN NNP CC NNP NNP MD VB DT JJ NN IN NNP NNP VBZ NNP JJ NN . Burns made the comment following talks with Indian Foreign Secretary Shyam Saran in New Delhi Wednesday . NNP VBD DT NN VBG NNS IN JJ NNP NNP NNP NNP IN NNP NNP NNP . He said both sides want to complete the negotiations , but added there are differences that need to be worked out . PRP VBD DT NNS VBP TO VB DT NNS , CC VBD EX VBP NNS WDT VBP TO VB VBN RP . He did not elaborate . PRP VBD RB VB . Under the deal , India would gain access to long-denied U.S. nuclear technology in exchange for including some of its reactors on a list of civilian facilities that would be subject to international inspections . IN DT NN , NNP MD VB NN TO JJ NNP JJ NN IN NN IN VBG DT IN PRP$ NNS IN DT NN IN JJ NNS WDT MD VB JJ TO JJ NNS . Burns and Saran are to continue talks on Friday . NNP CC NNP VBP TO VB NNS IN NNP . Some U.S. legislators oppose the deal . DT NNP NNS VBP DT NN . They say it could undermine the Nuclear Non-Proliferation Treaty . PRP VBP PRP MD VB DT NNP NNP NNP . India has not signed the treaty . NNP VBZ RB VBN DT NN . A top U.N. official says indirect talks between the Ugandan government and northern rebels have provided the best chance for peace in 18 years of conflict . DT JJ NNP NN VBZ JJ NNS IN DT JJ NN CC JJ NNS VBP VBN DT JJS NN IN NN IN CD NNS IN NN . U.N. Emergency Relief Coordinator Jan Egeland praised the Ugandan government Tuesday for its renewed efforts to seek dialogue . NNP NNP NNP NNP NNP NNP VBD DT JJ NN NNP IN PRP$ JJ NNS TO VB NN . Mr. Egeland says the conflict has forced up to 90 percent of the population in some areas of northern Uganda from their homes , adding that hundreds of thousands of lives are at stake . NNP NNP VBZ DT NN VBZ VBN RP TO CD NN IN DT NN IN DT NNS IN JJ NNP IN PRP$ NNS , VBG IN NNS IN NNS IN NNS VBP IN NN . Rebels from the Lord 's Resistance Army are notorious for attacking civilians and kidnapping children for use as soldiers or sex slaves . NNS IN DT NNP POS NN NNP VBP JJ IN VBG NNS CC VBG NNS IN NN IN NNS CC NN NNS . Over the last few weeks , the rebels and the Ugandan government declared a temporary cease-fire and held talks through mediators . IN DT JJ JJ NNS , DT NNS CC DT JJ NN VBD DT JJ NN CC VBD NNS IN NNS . The government says it is extending the truce for another week in the hopes of starting formal peace talks by then . DT NN VBZ PRP VBZ VBG DT NN IN DT NN IN DT NNS IN VBG JJ NN NNS IN RB . An Ethiopian judge has ordered a group of 131 detained opposition leaders , journalists and others to remain in custody after most boycotted a bail hearing . DT JJ NN VBZ VBN DT NN IN CD JJ NN NNS , NNS CC NNS TO VB IN NN IN JJS VBD DT NN NN . Most lawyers for the group boycotted Wednesday 's Ethiopian High Court hearing , saying prison authorities have not allowed them to meet with their clients . JJS NNS IN DT NN VBD NNP POS JJ NNP NNP NN , VBG NN NNS VBP RB VBN PRP TO VB IN PRP$ NNS . The detained have been charged with treason and genocide for their alleged involvement in election protests that turned violent . DT VBN VBP VBN VBN IN NN CC NN IN PRP$ JJ NN IN NN NNS WDT VBD JJ . The judge says he will rule on the bail requests next week . DT NN VBZ PRP MD VB IN DT NN NNS JJ NN . The accused include five journalists with the Voice of America 's Amharic-language service in Washington . DT VBN VBP CD NNS IN DT NNP IN NNP POS JJ NN IN NNP . They were charged in absentia with plotting to overthrow the Ethiopian government . PRP VBD VBN IN NN IN VBG TO VB DT JJ NN . Ethiopia 's information minister told VOA English to Africa Service that the journalists have incited violence through their reports and he accused them of working with the opposition . NNP POS NN NN VBD NNP NNP TO NNP NNP IN DT NNS VBP VBN NN IN PRP$ NNS CC PRP VBD PRP IN VBG IN DT NN . VOA officials reject the charges , and say they are an attempt to intimidate VOA journalists . NNP NNS VBP DT NNS , CC VBP PRP VBP DT NN TO VB NNP NNS . Vice President Dick Cheney says a premature withdrawal of U.S. forces from Iraq would be a victory for the terrorists and a blow to American national security . NNP NNP NNP NNP VBZ DT JJ NN IN NNP NNS IN NNP MD VB DT NN IN DT NNS CC DT NN TO JJ JJ NN . In a speech in Washington Monday , Mr. Cheney responded to critics , including Democratic Congressman John Murtha , who say the U.S. military 's presence in Iraq has increased terrorism and instability in the Middle East . IN DT NN IN NNP NNP , NNP NNP VBD TO NNS , VBG JJ NNP NNP NNP , WP VBP DT NNP NN POS NN IN NNP VBZ VBN NN CC NN IN DT NNP NNP . Congressman Murtha 's call last week for U.S. troops to get out of Iraq sparked intense debate and drew stinging criticism from Republican legislators and White House officials . NN NNP POS NN JJ NN IN NNP NNS TO VB IN IN NNP VBD JJ NN CC VBD VBG NN IN JJ NNS CC NNP NNP NNS . Mr. Cheney Monday called Mr. Murtha ' a good man and a patriot . ' NNP NNP NNP VBD NNP NNP `` DT JJ NN CC DT NN . `` But the vice president stood by his remarks that it is ' dishonest and reprehensible ' for some U.S. senators to say President Bush purposely misled the American people into the Iraq war . CC DT NN NN VBN IN PRP$ NNS IN PRP VBZ `` JJ CC JJ `` IN DT NNP NNS TO VB NNP NNP RB VBD DT JJ NNS IN DT NNP NN . Poland 's foreign minister says the European Union ( EU ) will not start entry talks with Croatia unless that country hands over a top fugitive war crimes suspect to The Hague tribunal . NNP POS JJ NN VBZ DT NNP NNP LRB NNP RRB MD RB VB NN NNS IN NNP IN DT NN VBZ RB DT JJ JJ NN NNS VBP TO DT NNP NN . Adam Rotfeld told reporters a March 17 date has been set for the talks . NNP NNP VBD NNS DT NNP CD NN VBZ VBN VBN IN DT NNS . But he warned that unless Croatia surrenders General Ante Gotovina , the European Union will simply not open the discussions . CC PRP VBD IN IN NNP VBZ NNP NNP NNP , DT NNP NNP MD RB RB VB DT NNS . The Polish minister , whose country gained EU membership last May , made his comments after talks in Warsaw with the tribunal 's chief prosecutor , Carla del Ponte . DT JJ NN , WP$ NN VBD NNP NN JJ NNP , VBD PRP$ NNS IN NNS IN NNP IN DT NN POS NN NN , NNP NNP NNP . The prosecutor confirmed that she had sent a letter to the European Union , criticizing Croatia for failing to arrest General Gotovina . DT NN VBD IN PRP VBD VBN DT NN TO DT NNP NNP , VBG NNP IN VBG TO VB NNP NNP . The Hague court indicted the general for his role in the deaths of civilians during a 1995 Croatian army sweep through a Serb-held area of the country . DT NNP NN VBD DT NN IN PRP$ NN IN DT NNS IN NNS IN DT CD JJ NN NN IN DT JJ NN IN DT NN . Turkish authorities say a suicide bomber was behind Tuesday 's blast that killed six other people in Ankara . JJ NNS VBP DT NN NN VBD IN NNP POS NN WDT VBD CD JJ NNS IN NNP . Ankara Governor Kemal Onal said Wednesday the bomber had a police record and used explosives similar to those used by Kurdish militants . NNP NNP NNP NNP VBD NNP DT NN VBD DT NN NN CC VBN NNS JJ TO DT VBN IN NNP NNS . There has been no claim of responsibility for the blast . EX VBZ VBN DT NN IN NN IN DT NN . Turkish Prime Minister Recep Tayyip Erdogan described the bombing as a ruthless terrorist attack . JJ NNP NNP NNP NNP NNP VBD DT NN IN DT JJ JJ NN . The Pakistani embassy says eight Pakistanis were among the more than 90 people wounded in the blast in a commercial district , Ulus . DT JJ NN VBZ CD NNS VBD IN DT JJR IN CD NNS VBN IN DT NN IN DT JJ NN , NNP . The Pakistanis were in Ankara for an international defense industry fair . DT NNS VBD IN NNP IN DT JJ NN NN NN . The rebel Kurdistan Workers Party ( PKK ) has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 . DT NN NNP NNP NNP LRB NNP RRB VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD . The European Union has decided to tighten sanctions on Burma after the military government failed to meet EU demands for progress on democracy and human rights . DT NNP NNP VBZ VBN TO VB NNS IN NNP IN DT JJ NN VBD TO VB NNP NNS IN NN IN NN CC JJ NNS . EU foreign ministers meeting in Luxembourg Monday voted to widen a visa blacklist on members of Burma 's military junta and place stricter controls on investment . NNP JJ NNS VBG IN NNP NNP VBD TO VB DT NN NN IN NNS IN NNP POS JJ NN CC NN NN NNS IN NN . EU officials had threatened the move ahead of the Asia-Europe summit in Hanoi last week , after Burma ignored demands for the the release of democracy leader Aung San Suu Kyi and the lifting of restrictions on her pro-democracy party . NNP NNS VBD VBN DT NN RB IN DT JJ NN IN NNP JJ NN , IN NNP VBD NNS IN DT DT NN IN NN NN NNP NNP NNP NNP CC DT NN IN NNS IN PRP$ JJ NN . Sunday Burma 's state-owned media said Western nations can not use sanctions to impose democracy . NNP NNP POS JJ NNS VBD JJ NNS MD RB VB NNS TO VB NN . U.S. officials say a group of U.S. congressmen was denied entry into Venezuela Monday after landing at the country 's main airport near Caracas . NNP NNS VBP DT NN IN NNP NNS VBD VBN NN IN NNP NNP IN NN IN DT NN POS JJ NN IN NNP . The delegation was led by Illinois Republican Henry Hyde , chairman of the House International Relations Committee . DT NN VBD VBN IN NNP NNP NNP NNP , NN IN DT NNP NNP NNPS NNP . They had arrived in the country for a scheduled visit . PRP VBD VBN IN DT NN IN DT JJ NN . A U.S embassy official said the visit was canceled after Venezuelan officials kept the delegation 's military jet on the tarmac for a least an hour without allowing the lawmakers to disembark . DT NNP NN NN VBD DT NN VBD VBN IN JJ NNS VBD DT NN POS JJ NN IN DT NN IN DT JJS DT NN IN VBG DT NNS TO VB . Caracas airport official Jose Cabello denies this , saying the group made no attempt to contact Venezuelan authorities . NNP NN NN NNP NNP VBZ DT , VBG DT NN VBD DT NN TO VB JJ NNS . Relations between Washington and Caracas have been strained ever since populist President Hugo Chavez came to office in 1999 . NNP IN NNP CC NNP VBP VBN VBN RB IN JJ NNP NNP NNP VBD TO NN IN CD . Mr. Chavez has repeatedly accused the Bush administration of planning to invade Venezuela . NNP NNP VBZ RB VBN DT NNP NN IN VBG TO VB NNP . Washington denies any such plans , and warns that Mr. Chavez is becoming an authoritarian threat to Venezuela 's democracy and regional stability . NNP VBZ DT JJ NNS , CC VBZ IN NNP NNP VBZ VBG DT JJ NN TO NNP POS NN CC JJ NN . Early results from Haiti 's presidential election indicate front-runner candidate Rene Preval has a commanding lead , and may be able to avoid a run-off election . RB NNS IN NNP POS JJ NN VBP JJ NN NNP NNP VBZ DT JJ NN , CC MD VB JJ TO VB DT JJ NN . Officials say Preval , a former president , has won about 61 percent of the votes counted from Tuesday 's election . NNS VBP NNP , DT JJ NN , VBZ VBN IN CD NN IN DT NNS VBN IN NNP POS NN . Another former president , Leslie Manigat , is a distant second with 13 percent . DT JJ NN , NNP NNP , VBZ DT JJ NN IN CD NN . If the trend continues , Preval would have a clear majority of votes and avoid a run-off election next month . IN DT NN VBZ , NNP MD VB DT JJ NN IN NNS CC VB DT JJ NN JJ NN . Vote counting is said to be proceeding slowly as ballots trickle in to the capital , Port-au-Prince , by helicopter , truck and mule . JJ NN VBZ VBN TO VB VBG RB IN NNS VBP IN TO DT NN , NN , IN NN , NN CC NN . Brazil 's President Luiz Inacio Lula da Silva says Brazilian peacekeeping forces will remain in Haiti until a new government is formed and can maintain security . NNP POS NNP NNP NNP NNP NNP NNP VBZ JJ NN NNS MD VB IN NNP IN DT JJ NN VBZ VBN CC MD VB NN . Brazil is the leader of the U.N. stabilization force in Haiti . NNP VBZ DT NN IN DT NNP NN NN IN NNP . U.S. and Iraqi government forces have captured scores of suspected insurgents and seized an enormous stockpile of weapons and explosives during anti-insurgent operations in Iraq . NNP CC JJ NN NNS VBP VBN NNS IN JJ NNS CC VBD DT JJ NN IN NNS CC NNS IN JJ NNS IN NNP . The U.S. military says 81 suspected rebels were rounded up Thursday in raids around Youssifiyeh , south of the capital , Baghdad . DT NNP NN VBZ CD JJ NNS VBD VBN RP NNP IN NNS IN NNP , NN IN DT NN , NNP . Iraqi officials say Abu Saeed , a top lieutenant of wanted terrorist Abu Musab al-Zarqawi , was captured in Mosul . JJ NNS VBP NNP NNP , DT JJ NN IN JJ JJ NNP NNP NNP , VBD VBN IN NNP . Military officials also say U.S. and Iraqi troops uncovered what they called the largest cache of weapons found so far , in a mosque in Fallujah . JJ NNS RB VBP NNP CC JJ NNS VBD WP PRP VBD DT JJS NN IN NNS VBN RB RB , IN DT NN IN NNP . The discovery came as Iraqi troops searching for suspected terrorist hideouts in Fallujah uncovered what appeared to be a chemical bomb factory . DT NN VBD IN JJ NNS VBG IN JJ JJ NNS IN NNP VBD WP VBD TO VB DT NN NN NN . Iraqi officials say the laboratory may have been used to make toxic substances and contained pamphlets on manufacturing anthrax . JJ NNS VBP DT NN MD VB VBN VBN TO VB JJ NNS CC VBD NNS IN NN NN . The head of the Palestinian mission in Peru has told protesters in Lima that the kidnapping of a Peruvian photographer in the Gaza Strip is damaging the ' just fight ' of the Palestinian people . DT NN IN DT JJ NN IN NNP VBZ VBN NNS IN NNP IN DT NN IN DT JJ NN IN DT NNP NNP VBZ VBG DT `` RB VB `` IN DT JJ NNS . Walid Abdel Rahim spoke to protesters on Friday outside the Palestinian mission . NNP NNP NNP VBD TO NNS IN NNP IN DT JJ NN . He condemned the kidnapping of Jaime Razuri . PRP VBD DT NN IN NNP NNP . The protesters called for Razuri 's release . DT NNS VBD IN NNP POS NN . The crowd included Razuri 's family and international journalists . DT NN VBD NNP POS NN CC JJ NNS . Razuri is an employee of the French news agency . NNP VBZ DT NN IN DT JJ NN NN . Gunmen seized him on Monday outside the news agency 's offices in Gaza City . NNS VBD PRP IN NNP IN DT NN NN POS NNS IN NNP NNP . No group has claimed responsibility for the kidnapping . DT NN VBZ VBN NN IN DT NN . Kidnappings are frequent in the Gaza Strip , but hostages are usually released within hours . NNS VBP JJ IN DT NNP NNP , CC NNS VBP RB VBN IN NNS . Chinese authorities have banned the use of foreign words and phrases - especially English - in Chinese newspapers , books and websites . JJ NNS VBP VBN DT NN IN JJ NNS CC NNS ; RB JJ ; IN JJ NNS , NNS CC NNS . The ban , reported Wednesday , was issued by the General Administration of Press and Publication , the governing body for written publications . DT NN , VBD NNP , VBD VBN IN DT NNP NNP IN NNP CC NNP , DT NN NN IN JJ NNS . It says the increasing use of English and half-English phrases is damaging the purity of the Chinese language and disrupting the nation 's ' harmonious and healthy cultural environment . ' PRP VBZ DT VBG NN IN NNP CC JJ NNS VBZ VBG DT NN IN DT JJ NN CC VBG DT NN POS `` JJ CC JJ JJ NN . `` The ruling body leaves some room for English words and abbreviations to be used if they are immediately followed by a Chinese translation or explanation . DT NN NN VBZ DT NN IN JJ NNS CC NNS TO VB VBN IN PRP VBP RB VBN IN DT JJ NN CC NN . It says translations should be consistent with basic translation principles and practices . PRP VBZ NNS MD VB JJ IN JJ NN NNS CC NNS . The announcement includes a warning that violations will be punished as provided for by the law . DT NN VBZ DT NN IN NNS MD VB VBN IN VBN IN IN DT NN . Israeli Defense Minister Ehud Barak has canceled a visit to Paris where he was to take part in an international military exhibition , and meet with the French defense and foreign ministers . JJ NNP NNP NNP NNP VBZ VBN DT NN TO NNP WRB PRP VBD TO VB NN IN DT JJ JJ NN , CC VB IN DT JJ NN CC JJ NNS . Israel 's defense ministry said Sunday that Barak has decided to remain in Israel until a panel of experts is formed to investigate the raid on a Gaza-bound flotilla . NNP POS NN NN VBD NNP IN NNP VBZ VBN TO VB IN NNP IN DT NN IN NNS VBZ VBN TO VB DT NN IN DT JJ NN . Earlier this month , Israel drew international criticism after its soldiers killed nine pro-Palestinian activists who were part of a flotilla that was trying to break a blockade and deliver aid directly to Gaza . RBR DT NN , NNP VBD JJ NN IN PRP$ NNS VBD CD JJ NNS WP VBD NN IN DT NN WDT VBD VBG TO VB DT NN CC VB NN RB TO NNP . French activists said they plan on filing a lawsuit against Barak in France , as well as with the International Criminal Court in the Netherlands . JJ NNS VBD PRP VBP IN VBG DT NN IN NNP IN NNP , RB RB IN IN DT NNP NNP NNP IN DT NNP . Barak told Israel 's parliament last week that an internal inquiry will aim to establish whether Israel 's raid on the ship , and its Gaza blockade , are in keeping with international law . NNP VBD NNP POS NN JJ NN IN DT JJ NN MD VB TO VB IN NNP POS NN IN DT NN , CC PRP$ NNP NN , VBP IN VBG IN JJ NN . A surgeon in Miami used his skill in transplanting organs to save the life of a woman who had been told her cancer was inoperable . DT NN IN NNP VBD PRP$ NN IN VBG NNS TO VB DT NN IN DT NN WP VBD VBN VBN PRP$ NN VBD JJ . In this breakthrough surgery , doctors narrowed the scope of what is now considered inoperable . IN DT NN NN , NNS VBD DT NN IN WP VBZ RB VBN JJ . VOA 's Carol Pearson reports . NNP POS NNP NNP VBZ . A suicide bomber blew himself up near a NATO base in eastern Afghanistan Tuesday , killing 10 civilians and wounding 14 others . DT NN NN VBD PRP RP IN DT NNP NN IN JJ NNP NNP , VBG CD NNS CC VBG CD NNS . An Afghan official , provincial governor Arsala Jamal , says the bomber set off his explosives in a crowd of laborers waiting to get inside a NATO military base in the city of Khost . DT JJ NN , JJ NN NNP NNP , VBZ DT NN VBD RP PRP$ NNS IN DT NN IN NNS VBG TO VB IN DT NNP JJ NN IN DT NN IN NNP . There were no NATO or U.S. casualities . EX VBD DT NNP CC NNP NNS . In a separate incident in the south , suspected Taleban militants ambushed a police patrol in Kandahar , killing at least eight policemen . IN DT JJ NN IN DT NN , JJ NNP NNS VBD DT NN NN IN NNP , VBG IN JJS CD NNS . Attacks by Taleban militants against NATO , U.S. and Afghan forces increased dramatically in Afghanistan last year . NNS IN NNP NNS IN NNP , NNP CC JJ NNS VBD RB IN NNP JJ NN . U.S. and Afghan officials have warned they expect an increase in Taleban attacks in the coming months in what has been called a ' spring offensive . ' NNP CC JJ NNS VBP VBN PRP VBP DT NN IN NNP NNS IN DT VBG NNS IN WP VBZ VBN VBN DT `` NN NN . `` Palestinian officials have confirmed that elections to replace president Yasser Arafat will be held on January 9 . JJ NNS VBP VBN IN NNS TO VB NN NNP NNP MD VB VBN IN NNP CD . Caretaker President Rawhi Fattouh said Sunday the nominating period for candidates will begin November 20 , and run for 12 days . NN NNP NNP NNP VBD NNP DT JJ NN IN NNS MD VB NNP CD , CC VB IN CD NNS . The announcement of the vote comes three days after Mr. Arafat died in a Paris hospital . DT NN IN DT NN VBZ CD NNS IN NNP NNP VBD IN DT NNP NN . He did not appoint a successor . PRP VBD RB VB DT NN . The new chairman of the Palestine Liberation Organization , Mahmoud Abbas , will travel to Gaza today to meet with Mr. Arafat 's mourners and various Palestinian factions . DT JJ NN IN DT NNP NNP NNP , NNP NNP , MD VB TO NNP NN TO VB IN NNP NNP POS NNS CC JJ JJ NNS . The former prime minister is widely expected to be chosen as the presidential candidate of the mainstream Fatah faction . DT JJ JJ NN VBZ RB VBN TO VB VBN IN DT JJ NN IN DT NN NNP NN . Meanwhile , Israeli Prime Minister Ariel Sharon said today he will not rule out the possibility of allowing Palestinians living in disputed east Jerusalem to vote in the upcoming election . RB , JJ NNP NNP NNP NNP VBD NN PRP MD RB VB RP DT NN IN VBG NNS VBG IN JJ JJ NNP TO VB IN DT JJ NN . Some Israelis fear allowing Palestinians in Jerusalem to vote would strengthen their claim on the city . DT NNS VBP VBG NNS IN NNP TO VB MD VB PRP$ NN IN DT NN . Beijing 's subway could reach 561 kilometers in 14 years - making it the longest subway system in the world . NNP POS NN MD VB CD NNS IN CD NNS IN VBG PRP DT JJS NN NN IN DT NN . The official China Daily newspaper reports Monday that a plan has been drawn up to expand the subway network to 19 lines where it will reach all major corners of China 's capital city . DT JJ NNP NNP NN VBZ NNP IN DT NN VBZ VBN VBN RP TO VB DT NN NN TO CD NNS WRB PRP MD VB DT JJ NNS IN NNP POS NN NN . Each of the system 's current four lines carries 1.5 million people every day . DT IN DT NN POS JJ CD NNS VBZ CD CD NNS DT NN . The paper says the expansion plan is still subject to government approval , but if adopted it calls for three lines to be completed in time for the 2008 Olympics . DT NN VBZ DT NN NN VBZ RB JJ TO NN NN , CC IN VBN PRP VBZ IN CD NNS TO VB VBN IN NN IN DT CD NNS . Currently , London has the longest subway line in the world . RB , NNP VBZ DT JJS NN NN IN DT NN . It is 407 kilometers in length , has 12 lines and carries three million passengers a day . PRP VBZ CD NNS IN NN , VBZ CD NNS CC VBZ CD CD NNS DT NN . Niger has appealed for international help in battling an outbreak of the deadly H5N1 strain of bird flu . NNP VBZ VBN IN JJ NN IN VBG DT NN IN DT JJ NNP NN IN NN NN . Officials Wednesday , said they need supplies like vaccines for unaffected poultry and protective suits for people destroying birds infected with the virus . NNS NNP , VBD PRP VBP NNS IN NNS IN JJ NN CC JJ NNS IN NNS VBG NNS VBN IN DT NN . The World Animal Health Organization said Monday it had found the H5N1 strain among domestic ducks in southern Niger . DT NNP NNP NNP NNP VBD NNP PRP VBD VBN DT NNP NN IN JJ NNS IN JJ NNP . That outbreak was near the border with Nigeria , where H5N1 also was recently found . DT NN VBD IN DT NN IN NNP , WRB NNP RB VBD RB VBN . Authorities are trying to stop the movement of poultry in the region and have placed affected farms under heightened surveillance . NNS VBP VBG TO VB DT NN IN NN IN DT NN CC VB VBN JJ NNS IN JJ NN . Niger 's government says it will compensate farmers $ 1.8 ( 1,000 CFA francs ) for every bird destroyed when the culling process begins . NNP POS NN VBZ PRP MD VB NNS $ CD LRB CD NNP NNS RRB IN DT NN VBN WRB DT NN NN VBZ . The U.N. war crimes tribunal in The Hague has convicted two Bosnian Serb army officers of complicity in the 1995 massacre of thousands of Muslims . DT NNP NN NNS JJ IN DT NNP VBZ VBN CD JJ JJ NN NNS IN NN IN DT CD NN IN NNS IN NNPS . Colonel Vidoje Blagojevic was found guilty of aiding and abetting genocide in the deaths of more than 7,000 unarmed Muslim men and boys at Srebrenica in Bosnia-Herzegovina . NNP NNP NNP VBD VBN JJ IN VBG CC VBG NN IN DT NNS IN JJR IN CD JJ NN NNS CC NNS IN NNP IN NNP . He was sentenced to 18 years in prison . PRP VBD VBN TO CD NNS IN NN . Major Dragan Jokic was found guilty of aiding and abetting murder , and of extermination and persecution , and was sentenced to nine years . NNP NNP NNP VBD VBN JJ IN VBG CC VBG NN , CC IN NN CC NN , CC VBD VBN TO CD NNS . Both men had pleaded not guilty . DT NNS VBD VBN RB JJ . The 1995 massacre occurred after Serbs captured Srebrenica , which the United Nations had declared a safe area . DT CD NN VBD IN NNS VBD NNP , WDT DT NNP NNPS VBD VBN DT JJ NN . Bosnian Serb authorities acknowledged for the first time last year that there had been a massacre . JJ JJ NNS VBD IN DT JJ NN JJ NN IN EX VBD VBN DT NN . The British Defense Ministry says a British soldier serving with the NATO force in Afghanistan has been shot dead in southern Helmand province . DT NNP NNP NNP VBZ DT JJ NN VBG IN DT NNP NN IN NNP VBZ VBN VBN JJ IN JJ NNP NN . A NATO statement says the soldier was killed Sunday during an attack against insurgents in the Musa Qala district . DT NNP NN VBZ DT NN VBD VBN NNP IN DT NN IN NNS IN DT NNP NNP NN . In other violence , in the same province , Afghan authorities say 17 Taleban insurgents have been killed Saturday . IN JJ NN , IN DT JJ NN , JJ NNS VBP CD NNP NNS VBP VBN VBN NNP . Local officials say three insurgents were killed in a clash in the mountainous Garmser district . JJ NNS VBP CD NNS VBD VBN IN DT NN IN DT JJ NNP NN . Hours later , during a search operation in the same district , troops killed 14 more insurgents . NNS RB , IN DT NN NN IN DT JJ NN , NNS VBD CD JJR NNS . In neighboring Kandahar province , an American soldier was wounded when a suicide bomber blew up his explosives-laden car near a military convoy on the main highway to Kabul . IN JJ NNP NN , DT JJ NN VBD VBN WRB DT NN NN VBD RP PRP$ JJ NN IN DT JJ NN IN DT JJ NN TO NNP . And , armed men attacked a police post overnight in the Murghab district of western Badghis province , killing at least two Afghan border police . CC , JJ NNS VBD DT NN NN RB IN DT NNP NN IN JJ NNP NN , VBG IN JJS CD JJ NN NN . NATO has expressed concern at the recent government crackdown in Uzbekistan and warned Tashkent that its ties with the alliance depended on its commitment to basic human rights . NNP VBZ VBN NN IN DT JJ NN NN IN NNP CC VBD NNP IN PRP$ NNS IN DT NN VBD IN PRP$ NN TO JJ JJ NNS . A NATO statement , issued Tuesday in Brussels , said the alliance condemns the reported use of excessive force against protesters and supports the United Nations ' call for an independent inquiry into the events earlier this month . DT NNP NN , VBN NNP IN NNP , VBD DT NN VBZ DT JJ NN IN JJ NN IN NNS CC VBZ DT NNP NNPS POS NN IN DT JJ NN IN DT NNS RBR DT NN . Witnesses , human rights groups and Uzbek political opposition activists say the crackdown in the eastern part of the country killed up to 1,000 people . NNS , JJ NNS NNS CC JJ JJ NN NNS VBP DT NN IN DT JJ NN IN DT NN VBD RP TO CD NNS . But Tashkent puts the death toll at 169 , including 32 soldiers . CC NNP VBZ DT NN NN IN CD , VBG CD NNS . In another development , China today declared its support for the Uzbek government of President Islam Karimov , saying whatever happened in the country is an internal affair . IN DT NN , NNP NN VBD PRP$ NN IN DT JJ NN IN NNP NNP NNP , VBG WDT VBD IN DT NN VBZ DT JJ NN . President Karimov is to visit Beijing Wednesday . NNP NNP VBZ TO VB NNP NNP . Rescue efforts continue along the southern coast of Indonesia 's Java Island - struck by a tsunami this week . NN NNS VBP IN DT JJ NN IN NNP POS NNP NNP : VBN IN DT NN DT NN . Almost 400 people have been confirmed dead and the death toll is expected to rise . RB CD NNS VBP VBN VBN JJ CC DT NN NN VBZ VBN TO VB . Tens of thousands of people have been displaced or evacuated . NNS IN NNS IN NNS VBP VBN VBN CC VBN . I 'm here in the mosque of a small coastal town of Pangandaran , where bodies keep arriving since a tsunami swept ashore on Monday . PRP VBP RB IN DT NN IN DT JJ JJ NN IN NNP , WRB NNS VBP VBG IN DT NN VBD RB IN NNP . Families here are mourning the loss of people and preparing bodies for Islamic burial . NNS RB VBP VBG DT NN IN NNS CC VBG NNS IN JJ NN . The atmosphere here is still chaotic - filled with sirens and rumbling relief trucks . DT NN RB VBZ RB JJ IN VBN IN NNS CC VBG NN NNS . Search and rescue teams say they continue to look for victims and expect the death toll to climb still further . NN CC NN NNS VBP PRP VBP TO VB IN NNS CC VBP DT NN NN TO VB RB RBR . This morning teams pulled several more bodies from the debris and rubble . DT NN NNS VBD JJ JJR NNS IN DT NN CC NN . Many residents are bracing for more bad news in the days to come . JJ NNS VBP VBG IN JJR JJ NN IN DT NNS TO VB . The Democratic Party used its weekly radio address to criticize President Bush 's Iraq war strategy and to blame Senate Republicans for stifling debate on Iraq . DT JJ NNP VBD PRP$ JJ NN NN TO VB NNP NNP POS NNP NN NN CC TO VB NNP NNPS IN VBG NN IN NNP . Senator John Kerry from the state of Massachusetts Saturday said the president 's proposal to send 21,000 additional troops to Iraq is , in his words , ' nothing more than the escalation of a misguided war . ' NNP NNP NNP IN DT NN IN NNP NNP VBD DT NN POS NN TO VB CD JJ NNS TO NNP VBZ , IN PRP$ NNS , `` DT JJR IN DT NN IN DT JJ NN . `` Kerry , who is a Vietnam War veteran , also criticized Republicans for blocking a Senate resolution backed by Democrats last week that opposes president Bush 's plan to send additional troops . NNP , WP VBZ DT NNP NNP NN , RB VBD NNS IN VBG DT NNP NN VBN IN NNPS JJ NN WDT VBZ NN NNP POS NN TO VB JJ NNS . Kerry also urged Congress to take stronger action to end the war and said the United States must pressure Iraqi politicians to meet benchmarks . NNP RB VBD NNP TO VB JJR NN TO VB DT NN CC VBD DT NNP NNPS MD VB JJ NNS TO VB NNS . In a separate radio address earlier Saturday , President Bush urged Congress to approve his energy proposals . IN DT JJ NN NN JJR NNP , NNP NNP VBD NNP TO VB PRP$ NN NNS . The International Criminal Court at The Hague is expected to launch a formal investigation into possible war crimes in Sudan 's western Darfur region . DT NNP NNP NNP IN DT NNP VBZ VBN TO VB DT JJ NN IN JJ NN NNS IN NNP POS JJ NNP NN . Sources familiar with the case say prosecutors plan to announce details of the probe Monday . NNS JJ IN DT NN VBP NNS VBP TO VB NNS IN DT NN NNP . The inquiry is expected to be the biggest investigation in the ICC 's nearly three-year history . DT NN VBZ VBN TO VB DT JJS NN IN DT NNP POS RB JJ NN . Officials at the United Nations have said 1,80,000 people in Darfur have been killed in more than two years of fighting between rebel groups and government-backed Arab militias , known as the Janjaweed . NNS IN DT NNP NNPS VBP VBN CD NNS IN NNP VBP VBN VBN IN JJR IN CD NNS IN VBG IN NN NNS CC JJ JJ NNS , VBN IN DT NNP . Two-million other people have been displaced in the conflict . JJ JJ NNS VBP VBN VBN IN DT NN . The United Nations referred the case to the ICC after the United States , which opposes the court , backed away from using its veto in the U.N. Security Council . DT NNP NNPS VBD DT NN TO DT NNP IN DT NNP NNPS , WDT VBZ DT NN , VBD RB IN VBG PRP$ NN IN DT NNP NNP NNP . The United States has confirmed that two U.S. officials met with North Korean diplomats in New York last week . DT NNP NNPS VBZ VBN IN CD NNP NNS VBD IN JJ JJ NNS IN NNP NNP JJ NN . A spokesman for the U.S. embassy in Tokyo Thursday said the working-level meeting was used to convey U.S. policy , not to negotiate . DT NN IN DT NNP NN IN NNP NNP VBD DT JJ NN VBD VBN TO VB NNP NN , RB TO VB . He did not elaborate on what the two sides discussed . PRP VBD RB VB IN WP DT CD NNS VBD . But Washington has been urging North Korea to return to six party talks on its nuclear program . CC NNP VBZ VBN VBG NNP NNP TO VB TO CD NN NNS IN PRP$ JJ NN . The talks have been stalled since last September , and North Korea has boycotted efforts to arrange a new meeting . DT NNS VBP VBN VBN IN JJ NNP , CC NNP NNP VBZ VBN NNS TO VB DT JJ NN . Former U.S. President Jimmy Carter says he is ' extremely disappointed ' with Tony Blair for what he says is the British prime minister 's failure to constrain President Bush 's policies toward Iraq . JJ NNP NNP NNP NNP VBZ PRP VBZ `` RB JJ `` IN NNP NNP IN WP PRP VBZ VBZ DT JJ JJ NN POS NN TO VB NNP NNP POS NNS IN NNP . Mr. Carter , an outspoken critic of the 2003 U.S.-led Iraq invasion , was quoted Sunday in Britain 's Sunday Telegraph newspaper . NNP NNP , DT JJ NN IN DT CD JJ NNP NN , VBD VBN NNP IN NNP POS NNP NNP NN . He said he thought that Mr. Blair could have had a moderating influence on Washington , ' and he has not . ' PRP VBD PRP VBD IN NNP NNP MD VB VBN DT JJ NN IN NNP , `` CC PRP VBZ RB . `` Mr. Blair has been President Bush 's closest international ally on Iraq , and Britain has the second largest contingent of troops in the country . NNP NNP VBZ VBN NNP NNP POS JJS JJ NN IN NNP , CC NNP VBZ DT JJ JJS JJ IN NNS IN DT NN . Mr. Carter said people in many countries he has visited equate U.S. policy with British interests , and said that U.S. popularity in moderate countries like Egypt and Jordan is currently less than five percent . NNP NNP VBD NNS IN JJ NNS PRP VBZ VBN JJ NNP NN IN JJ NNS , CC VBD IN NNP NN IN JJ NNS IN NNP CC NNP VBZ RB JJR IN CD NN . The 81-year-old Mr. Carter , the 39th U.S. president , served from 1977 to 1981 . DT JJ NNP NNP , DT JJ NNP NN , VBD IN CD TO CD . The U.S. military in Afghanistan says two Marines have been wounded during an ambush by suspected Taleban fighters north of Jalalabad . DT NNP NN IN NNP VBZ CD NNS VBP VBN VBN IN DT NN IN JJ NNP NNS NN IN NNP . A U.S. statement says the Marines came under fire Saturday evening while conducting a routine security patrol , and the assailants retreated . DT NNP NN VBZ DT NNPS VBD IN NN NNP NN IN VBG DT JJ NN NN , CC DT NNS VBD . Both Marines received shrapnel wounds to the shoulder and were treated at the scene before continuing with their mission . DT NNPS VBD NN NNS TO DT NN CC VBD VBN IN DT NN IN VBG IN PRP$ NN . U.S. and Afghan government troops clash regularly with insurgents in southern and eastern Afghanistan bordering Pakistan . NNP CC JJ NN NNS VB RB IN NNS IN JJ CC JJ NNP VBG NNP . Violence has declined during the winter . NN VBZ VBN IN DT NN . But Taleban officials have vowed that attacks will intensify when the weather improves . CC NNP NNS VBP VBN DT NNS MD VB WRB DT NN VBZ . Benin 's Constitutional Court says the two leading candidates from a recent presidential vote will compete in a run-off later this month . NNP POS NNP NNP VBZ DT CD VBG NNS IN DT JJ JJ NN MD VB IN DT NN RBR DT NN . The court issued final vote results Wednesday , showing that former banker Yayi Boni won 36 percent of the ballots while former Prime Minister Adrien Houngbedji got 24 percent . DT NN VBD JJ NN NNS NNP , VBG IN JJ NN NNP NNP VBD CD NN IN DT NNS IN JJ NNP NNP NNP NNP VBD CD NN . Court officials say a date for the run-off vote is not yet decided , but it likely will take place in the coming weeks . NNP NNS VBP DT NN IN DT NN NN VBZ RB RB VBN , CC PRP RB MD VB NN IN DT JJ NNS . Authorities noted there were some problems in the voting , but said they did not affect the validity of the results . NNS VBD EX VBD DT NNS IN DT NN , CC VBD PRP VBD RB VB DT NN IN DT NNS . More than three million voters took part in the March 5 ballot . JJR IN CD CD NNS VBD NN IN DT NNP CD NN . The winner of the upcoming run-off vote will replace 72-year-old President Mathieu Kerekou , who was barred by age limits from seeking re-election . DT NN IN DT JJ NN NN MD VB JJ NNP NNP NNP , WP VBD VBN IN NN NNS IN VBG NN . Iran is dismissing a newspaper report that says U.S. intelligence officials have thousands of pages of documents proving Tehran is trying to build a nuclear bomb . NNP VBZ VBG DT NN NN WDT VBZ NNP NN NNS VBP NNS IN NNS IN NNS VBG NNP VBZ VBG TO VB DT JJ NN . An Iranian Foreign Ministry spokesman , Hamid Reza Asefi , describes the allegations as laughable . DT JJ NNP NNP NN , NNP NNP NNP , VBZ DT NNS IN JJ . The New York Times reports Sunday the documents were on a stolen Iranian laptop computer obtained from a longtime contact in Iran , and were shown to officials of the International Atomic Energy Agency in July . DT NNP NNP NNP VBZ NNP DT NNS VBD IN DT JJ JJ NN NN VBD IN DT JJ NN IN NNP , CC VBD VBN TO NNS IN DT NNP NNP NNP NNP IN NNP . The United States accuses Iran of trying to build nuclear weapons , and wants the IAEA to refer Tehran to the U.N. Security Council for possible sanctions . DT NNP NNPS VBZ NNP IN VBG TO VB JJ NNS , CC VBZ DT NNP TO VB NNP TO DT NNP NNP NNP IN JJ NNS . The IAEA board will consider the request during its November 24 meeting . DT NNP NN MD VB DT NN IN PRP$ NNP CD NN . The Iranian spokesman says the new allegation is an attempt by Washington to affect the board 's decision . DT JJ NN VBZ DT JJ NN VBZ DT NN IN NNP TO VB DT NN POS NN . The United States is sending an FBI agent to Azerbaijan to help find those responsible for the killing of magazine editor Elmar Husseinov , whose work was critical of the Azeri government . DT NNP NNPS VBZ VBG DT NNP NN TO NNP TO VB VB DT JJ IN DT NN IN NN NN NNP NNP , WP$ NN VBD JJ IN DT JJ NN . The U.S. Embassy said the agent is arriving in Baku Friday at the request of Azerbaijan 's government . DT NNP NNP VBD DT NN VBZ VBG IN NNP NNP IN DT NN IN NNP POS NN . President Ilham Aliyev ordered a swift investigation , calling the attack a serious provocation against the state and authority . NNP NNP NNP VBD DT JJ NN , VBG DT NN DT JJ NN IN DT NN CC NN . Earlier , the country 's top opposition leader called for demonstrations in response to Wednesday 's killing . RB , DT NN POS JJ NN NN VBD IN NNS IN NN TO NNP POS NN . Mr. Husseinov was the editor of the weekly Monitor . NNP NNP VBD DT NN IN DT JJ NN . He had previously been jailed and fined for his work . PRP VBD RB VBN VBN CC VBN IN PRP$ NN . The Committee to Protect Journalists said the killing appeared to have been well-planned and orchestrated -- while the Paris-based Reporters Without Borders called it part of a campaign of violence against journalists in Azerbaijan . DT NNP TO VB NNS VBD DT NN VBD TO VB VBN JJ CC JJ : IN DT JJ NNS IN NNS VBD PRP NN IN DT NN IN NN IN NNS IN NNP . A Chilean court has stripped former dictator Augusto Pinochet of his legal immunity , clearing the way for him to be tried in connection with the deaths of two political prisoners . DT JJ NN VBZ VBN JJ NN NNP NNP IN PRP$ JJ NN , VBG DT NN IN PRP TO VB VBN IN NN IN DT NNS IN CD JJ NNS . Justices voted 17 to 6 Wednesday to remove the immunity Pinochet enjoys as a former president . NNS VBD CD TO CD NNP TO VB DT NN NNP VBZ IN DT JJ NN . The 90-year-old can now be tried for his role in two murders committed by soldiers several weeks after Pinochet claimed power through a bloody coup . DT NN MD RB VB VBN IN PRP$ NN IN CD NNS VBN IN NNS JJ NNS IN NNP VBD NN IN DT JJ NN . Chilean judges also upheld a previous ruling allowing Pinochet to be released from house arrest if he posted bail , set at about $ 19,000 . JJ NNS RB VBD DT JJ NN VBG NNP TO VB VBN IN NN NN IN PRP VBD NN , VBN IN IN $ CD . General Pinochet ruled Chile from 1973 to 1990 . NNP NNP VBD NNP IN CD IN CD . China 's state media say Beijing plans to launch a lunar orbiter later this year . NNP POS NN NNS VBP NNP VBZ TO VB DT NN NN RB DT NN . The Xinhua news agency quotes China 's space agency chief , Sun Laiyan , as saying the launch is the first step towards a lunar probe . DT NNP NN NN VBZ NNP POS NN NN NN , NNP NNP , IN VBG DT NN VBZ DT JJ NN IN DT NN NN . Sun said the lunar exploration program has been divided into three steps : orbiting the moon , landing on the lunar surface and coming back to Earth with moon samples . NNP VBD DT NN NN NN VBZ VBN VBN IN CD NNS IN VBG DT NN , NN IN DT NN NN CC VBG RB TO NNP IN NN NNS . Xinhua says a moon rover mission is scheduled for around 2012 . NNP VBZ DT NN NN NN VBZ VBN IN RB CD . Sun , who spoke at Beijing Jiaotong University , says China will also continue research on manned space missions , including a space walk and experiments tp link passing spacecraft . NNP , WP VBD IN NNP NNP NNP , VBZ NNP MD RB VB NN IN JJ NN NNS , VBG DT NN NN CC NNS JJ NN VBG NN . In 2003 , China became the third country - after the former Soviet Union and the United States - to launch a man into space . IN CD , NNP VBD DT JJ NN : IN DT JJ NNP NNP CC DT NNP NNPS : TO VB DT NN IN NN . Officials in Pakistan say 28 people have died in the aftermath of heavy rainstorms over the past two days . NNS IN NNP VBP CD NNS VBP VBN IN DT NN IN JJ NNS IN DT JJ CD NNS . Health Minister Syed Sardar Ahmed says the majority of deaths took place in the port city of Karachi . NNP NNP NNP NNP NNP VBZ DT NN IN NNS VBD NN IN DT JJ NN IN NNP . Ahmed says eight people died of electrocution and another 18 because of roof and wall collapses . NNP VBZ CD NNS VBD IN NN CC DT CD IN IN NN CC NN NNS . In Bangladesh , officials say drowning and disease killed at least 16 people Friday . IN NNP , NNS VBP VBG CC NN VBN IN JJS CD NNS NNP . Thousands more have been admitted to hospitals for severe diarrhea . NNS RBR VBP VBN VBN TO NNS IN JJ NN . Nearly 2,000 people have died in India , Bangladesh and Nepal since the monsoon rains began in mid-June , the vast majority in India . RB CD NNS VBP VBN IN NNP , NNP CC NNP IN DT NN NNS VBD IN NNP , DT JJ NN IN NNP . Earlier this week , the United Nations warned of disease outbreaks in the region as rescue workers struggled to deliver food and water to an estimated 30 million people displaced by floods from the rain . RBR DT NN , DT NNP NNPS VBD IN NN NNS IN DT NN IN NN NNS VBD TO VB NN CC NN TO DT VBN CD CD NNS VBN IN NNS IN DT NN . The U.S. military says an American soldier has been killed in central Iraq . DT NNP NN VBZ DT JJ NN VBZ VBN VBN IN JJ NNP . A military statement released Friday said the soldier was shot dead while conducting combat operations Wednesday near the city of Iskandariyah , some 50 kilometers south of the capital , Baghdad . DT JJ NN VBN NNP VBD DT NN VBD VBN JJ IN VBG NN NNS NNP IN DT NN IN NNP , DT CD NNS RB IN DT NN , NNP . Separately , Iraqi police say unidentified gunmen attacked two Sunni Mosques as worshippers attended Friday prayers near the mainly Shi'ite southern city of Basra . RB , JJ NNS VBP JJ NNS VBD CD NNP NNPS IN NNS VBD NNP NNS IN DT RB JJ JJ NN IN NNP . At least one person was killed and several others wounded in the attacks . IN JJS CD NN VBD VBN CC JJ NNS VBD IN DT NNS . Meanwhile , thousands of Shi'ite Muslims rallied Friday in Basra in a show of support for Iraq 's new constitution and the Shi'ite-dominated government . RB , NNS IN NNP NNPS VBD NNP IN NNP IN DT NN IN NN IN NNP POS JJ NN CC DT JJ NN . Anti-constitution rallies were also reported in the city of Ramadi , west of Baghdad . JJ NNS VBD RB VBN IN DT NN IN NNP , NN IN NNP . A referendum on the constitution is scheduled for October 15 . DT NN IN DT NN VBZ VBN IN NNP CD . Political leaders from across Iraq are meeting in Baghdad to try to remove obstacles blocking agreement on a new constitution . JJ NNS IN IN NNP VBP VBG IN NNP TO VB TO VB NNS VBG NN IN DT JJ NN . President Jalal Talabani hosted Kurdish , Shi'ite and Sunni delegates Sunday and said an accord can be reached in time for parliament to approve the charter by an August 15 deadline . NNP NNP NNP VBD NNP , NNP CC NNP VBZ NNP CC VBD DT NN MD VB VBN IN NN IN NN TO VB DT NN IN DT NNP CD NN . Delegates remain deeply divided over key issues including federalism , national identity , and the role of Islam . NNS VBP RB VBN IN JJ NNS VBG NN , JJ NN , CC DT NN IN NNP . Earlier in the day , a suicide truck bomber killed at least five people outside a police station in Tikrit . RBR IN DT NN , DT NN NN NN VBD IN JJS CD NNS IN DT NN NN IN NNP . In Baghdad , at least five Iraqis were killed in drive-by shootings . IN NNP , IN JJS CD NNS VBD VBN IN JJ NNS . To the south , at least one person was killed and more than 40 were injured when hundreds of townspeople protesting poor public services clashed with police . TO DT NN , IN JJS CD NN VBD VBN CC JJR IN CD VBD VBN WRB NNS IN NN VBG JJ JJ NNS VBD IN NNS . Russia 's state-run natural gas company , Gazprom , says it has begun talks on purchasing gas from Azerbaijan . NNP POS JJ JJ NN NN , NNP , VBZ PRP VBZ VBN NNS IN VBG NN IN NNP . Gazprom Chief Executive Alexei Miller signed a memorandum of understanding in Moscow Friday with the president of the Azeri State Oil Company , Rovnag Abdullayev , to begin talks on importing gas from 2010 . NNP NNP NNP NNP NNP VBD DT NN IN NN IN NNP NNP IN DT NN IN DT JJ NNP NNP NNP , NNP NNP , TO VB NNS IN VBG NN IN CD . Azeri gas would flow to Russia via a 200-kilometer pipeline running along the Caspian coast from Azerbaijan 's capital , Baku , to the Russian town of Novo-Filya . JJ NN MD VB TO NNP IN DT JJ NN VBG IN DT JJ NN IN NNP POS NN , NNP , TO DT JJ NN IN NNP . The move could have negative implications for the EU-backed Nabucco pipeline project , designed to bring Caspian Sea gas to Europe while bypassing Russia . DT NN MD VB JJ NNS IN DT JJ NNP NN NN , VBN TO VB NNP NNP NN TO NNP IN VBG NNP . Last week , the European Union pledged more than $ 265 million for the project as part of a larger energy plan but it lacks both viable sources of gas and agreement between consortium members . JJ NN , DT NNP NNP VBD JJR IN $ CD CD IN DT NN IN NN IN DT JJR NN NN CC PRP VBZ DT JJ NNS IN NN CC NN IN NN NNS . Four British soldiers are facing manslaughter charges for allegedly forcing an Iraqi teenager into a canal in southern Iraq where he drowned in 2003 . CD JJ NNS VBP VBG NN NNS IN RB VBG DT JJ NN IN DT NN IN JJ NNP WRB PRP VBD IN CD . A prosecutor told the court martial Tuesday in Colchester , England that the soldiers ordered the boy and three other suspected looters into the Shabat al-Basra canal to teach them a lesson . DT NN VBD DT NN NN NNP IN NNP , NNP IN DT NNS VBD DT NN CC CD JJ JJ NNS IN DT NNP NNP NN TO VB PRP DT NN . He accused them of failing to help the boy , Ahmad Jabbar Kareem after seeing that he was in ' obvious distress , ' and said they later fled the scene . PRP VBD PRP IN VBG TO VB DT NN , NNP NNP NNP IN VBG IN PRP VBD IN `` JJ NN , `` CC VBD PRP RB VBD DT NN . One of the suspected looters told authorities that the soldiers threw rocks at them after they were forced into the water . CD IN DT JJ NNS VBD NNS IN DT NNS VBD NNS IN PRP IN PRP VBD VBN IN DT NN . The four British soldiers have pleaded not guilty . DT CD JJ NNS VBP VBN RB JJ . The international aid organization Oxfam says Asia 's overall recovery from last year 's tsunami is moving ahead , but rebuilding efforts have been uneven . DT JJ NN NN NNP VBZ NNP POS JJ NN IN JJ NN POS NN VBZ VBG RB , CC NN NNS VBP VBN JJ . An Oxfam study Monday says one of the most persistent problems has been providing permanent shelter to those who lost everything last year in the devastating earthquake and mammoth ocean waves that hit coastal areas of Indonesia , Sri Lanka , Thailand , India and other countries . DT NNP NN NNP VBZ CD IN DT RBS JJ NNS VBZ VBN VBG JJ NN TO DT WP VBD DT JJ NN IN DT JJ NN CC JJ NN NNS WDT VBD JJ NNS IN NNP , NNP NNP , NNP , NNP CC JJ NNS . The report adds that 60 percent of all those whose jobs were swept away by the tsunami last December 26 have now returned to work . DT NN VBZ IN CD NN IN DT DT WP$ NNS VBD VBN RB IN DT NN JJ NNP CD VBP RB VBN TO VB . Jeremy Hobbs , Oxfam 's executive director , says the most impressive aspects of the tsunami recovery have been the resilience of the tsunami victims and the generous response by ordinary people worldwide to appeals for help . NNP NNP , NNP POS NN NN , VBZ DT RBS JJ NNS IN DT NN NN VBP VBN DT NN IN DT NN NNS CC DT JJ NN IN JJ NNS JJ TO NNS IN NN . Russian authorities say the blast from a bomb planted on train tracks in the southern Dagestan republic has killed one person and wounded four others . JJ NNS VBP DT NN IN DT NN VBN IN NN NNS IN DT JJ NNP NN VBZ VBN CD NN CC VBD CD NNS . The commuter train was heading from a town in western Dagestan , Khasavyurt , to the regional capital , Makhachkala , early Sunday when the explosion occurred . DT NN NN VBD VBG IN DT NN IN JJ NNP , NNP , TO DT JJ NN , NNP , JJ NNP WRB DT NN VBD . Russian media say police believe the bomb was detonated by remote control . JJ NNS VBP NNS VBP DT NN VBD VBN IN JJ NN . Dagestan authorities are calling the bombing an act of terrorism , and the Russian news agency Itar-Tass quotes officials as saying the attack was aimed at harming civilians . NNP NNS VBP VBG DT VBG DT NN IN NN , CC DT JJ NN NN JJ NNS NNS IN VBG DT NN VBD VBN IN VBG NNS . There is no immediate claim of responsibility , but police say they suspect Muslim extremists carried out the bombing . EX VBZ DT JJ NN IN NN , CC NNS VBP PRP VBP NNP NNS VBD IN DT NN . A new Russian study found that violence by Muslim separatist militants from Chechnya is spilling over to neighboring Caucasus republics such as Dagestan , where the report says terrorist attacks have more than doubled to 70 since last year . DT JJ JJ NN VBD IN NN IN NNP JJ NNS IN NNP VBZ VBG IN TO JJ NNP NNS JJ IN NNP , WRB DT NN VBZ JJ NNS VBP JJR IN VBD TO CD IN JJ NN . The organizing committee for the Beijing Olympics says the torch relay for the 2008 Games will go on as planned in China 's Sichuan province next month . DT NN NN IN DT NNP NNP VBZ DT NN NN IN DT CD NNPS MD VB IN RB VBN IN NNP POS JJ NN JJ NN . Speaking in Beijing Tuesday , a spokesman for the committee said the earthquake in Sichuan will not affect the relay because the quake-stricken areas are not along the route . VBG IN NNP NNP , DT NN IN DT NN VBD DT NN IN NNP MD RB VB DT NN IN DT JJ NNS VBP RB IN DT NN . The epicenter of Monday 's 7.9 magnitude earthquake was in Sichuan , and most of the confirmed deaths from the quake are in the province . DT NN IN NNP POS CD NN NN VBD IN NNP , CC JJS IN DT VBN NNS IN DT NN VBP IN DT NN . The Olympic torch relay continued Tuesday in the Chinese city of Longyan , in the eastern province of Fujian . DT NNP NN NN VBD NNP IN DT JJ NN IN NNP , IN DT JJ NN IN NNP . The torch is expected to reach Sichuan province next month , touring seven cities between June 15 to June 18 . DT NN VBZ VBN TO VB JJ NN JJ NN , VBG CD NNS IN NNP CD TO NNP CD . On Wednesday , the torch will head to Jiangxi Province , to the west of Fujian . IN NNP , DT NN MD VB TO NNP NNP , TO DT NN IN NNP . Pakistan 's military says it has killed 30 militants in an air strike on a Taliban hideout near the Afghan border . NNP POS NN VBZ PRP VBZ VBN CD NNS IN DT NN NN IN DT NNP NN IN DT JJ NN . The military said in a statement that the rebel hideout in the Shawal mountains was targeted Saturday after authorities received a tip that insurgents were hiding there . DT NN VBD IN DT NN IN DT NN NN IN DT NNP NNS VBD VBN NNP IN NNS VBD DT NN IN NNS VBD VBG RB . Shawal is in South Waziristan , a restive tribal area bordering Afghanistan , where the military in October launched an air and ground offensive to flush out Taliban militants NNP VBZ IN NNP NNP , DT JJ JJ NN VBG NNP , WRB DT NN IN NNP VBD DT NN CC NN NN TO VB RP NNP NNS In another development Saturday , suicide bombers have attacked two police stations in northwest Pakistan . IN DT NN NNP , NN NNS VBP VBN CD NNS NNS IN JJ NNP . The attacks in Mensehra and Balakot killed a police chief and wounded several other police officers . DT NNS IN NNP CC NNP VBD DT NN NN CC VBD JJ JJ NNS NNS . Officials say one of the suicide bombers blew himself up , while another was shot dead by police . NNS VBP CD IN DT NN NNS VBD PRP RP , IN DT VBD VBN JJ IN NN . A third escaped . DT NN VBD . The French news agency is reporting that bomb disposal personnel defused explosives strapped to the dead attacker 's body . DT JJ NN NN VBZ VBG IN NN NN NNS VBD NNS VBN TO DT JJ NN POS NN . U.S. prosecutors say an Oregon teenager of Somali descent has been arrested in an alleged terrorist plot to car-bomb a Christmas tree lighting event in the northwestern city of Portland , Oregon Friday night . NNP NNS VBP DT NNP NN IN JJ NN VBZ VBN VBN IN DT JJ JJ NN TO VB DT NNP NN NN NN IN DT JJ NN IN NNP , NNP NNP NN . Authorities say 19-year-old Mohamed Osman Mohamud was taken into custody by agents from the Federal Bureau of Investigation after he dialed a cell phone intending to detonate a bomb , but instead rang for the FBI in a sting operation . NNS VBP JJ NNP NNP NNP VBD VBN IN NN IN NNS IN DT NNP NNP IN NNP IN PRP VBD DT NN NN VBG TO VB DT NN , CC RB NN IN DT NNP IN DT NN NN . Mohamud had earlier been given phony explosives by undercover officers , who first learned of his alleged plot last year . NNP VBD RB VBN VBN JJ NNS IN NN NNS , WP RB VBD IN PRP$ JJ NN JJ NN . Prosecutors say Mohamud unwittingly unveiled his plan to undercover officers by e-mail several months ago , while believing he was contacting an accomplice in Pakistan . NNS VBP NNP RB VBD PRP$ NN TO VB NNS IN JJ JJ NNS RB , IN VBG PRP VBD VBG DT NN IN NNP . Mohamud will appear in federal court in Portland Monday on a criminal complaint of attempting to use weapons of mass destruction . NNP MD VB IN JJ NN IN NNP NNP IN DT JJ NN IN VBG TO VB NNS IN NN NN . Insurgents in Iraq have attacked the Abu Ghraib prison , outside Baghdad , injuring at least 18 American soldiers and 12 detainees . NNS IN NNP VBP VBN DT NNP NNP NN , IN NNP , VBG IN JJS CD JJ NNS CC CD NNS . The U.S. military says that between 40 and 60 insurgents detonated two car bombs and then launched rocket-propelled grenades , followed by small arms fire outside the prison Saturday evening . DT NNP NN VBZ IN IN CD CC CD NNS VBD CD NN NNS CC RB VBD JJ NNS , VBN IN JJ NNS NN IN DT NN NNP NN . Coalition forces repelled their attack and the prison is reported to be secured . NN NNS VBD PRP$ NN CC DT NN VBZ VBN TO VB VBN . It is not known whether there were insurgent casualties . PRP VBZ RB VBN IN EX VBD JJ NNS . Abu Ghraib houses more than 2,000 detainees . NNP NNP NNS RBR IN CD NNS . It is notorious for a prisoner abuse scandal that resulted in charges against several U.S. soldiers . PRP VBZ JJ IN DT NN NN NN WDT VBD IN NNS IN JJ NNP NNS . Earlier today , a car bomb explosion killed five people near Baquba . RBR NN , DT NN NN NN VBD CD NNS IN NNP . And in political news , the Iraqi National Assembly is scheduled to meet Sunday to elect a speaker . CC IN JJ NN , DT JJ NNP NNP VBZ VBN TO VB NNP TO VB DT NN . But politicians say Shi'ite and Sunni leaders are still not able to agree on a Sunni candidate for the post . CC NNS VBP NNP CC NNP NNS VBP RB RB JJ TO VB IN DT NNP NN IN DT NN . Hundreds of thousands of Shi'ite pilgrims gathered in Iraq 's holy city of Karbala for a religious festival . NNS IN NNS IN NNP NNS VBD IN NNP POS JJ NN IN NNP IN DT JJ NN . Iraqi authorities expect the number of pilgrims to top one million . JJ NNS VBP DT NN IN NNS TO VB CD CD . Heavy security is in place across the city during the festival commemorating the birth of ninth-century Imam al-Mahdi al-Muntadar . JJ NN VBZ IN NN IN DT NN IN DT NN VBG DT NN IN JJ NNP NNP NNP . In other developments Saturday , bomb attacks in Baghdad killed at least two people . IN JJ NNS NNP , NN NNS IN NNP VBD IN JJS CD NNS . And , a gunman killed an employee of Iraq 's government-run newspaper in the capital . CC , DT NN VBD DT NN IN NNP POS JJ NN IN DT NN . Iraqi officials also announced Prime Minister Nouri al-Maliki is heading to Iran Monday . JJ NNS RB VBD NNP NNP NNP NNP VBZ VBG TO NNP NNP . Officials say his two-day visit will focus on security and bilateral issues . NNS VBP PRP$ JJ NN MD VB IN NN CC JJ NNS . On Friday , insurgents firing mortar rounds killed at least three Shi'ite pilgrims in a procession near Karbala . IN NNP , NNS VBG NN NNS VBD IN JJS CD NNP NNS IN DT NN IN NNP . Officials say at least six more pilgrims were wounded . NNS VBP IN JJS CD JJR NNS VBD VBN . In other violence , a roadside bomb in Baghdad killed at least two people . IN JJ NN , DT NN NN IN NNP VBD IN JJS CD NNS . Unidentified gunmen on Mexico 's Gulf coast have shot to death the news director of one of the most influential newspapers in Veracruz , the second shooting attack on Mexican journalists in one week . JJ NNS IN NNP POS NNP NN VBP VBN TO NN DT NN NN IN CD IN DT RBS JJ NNS IN NNP , DT JJ NN NN IN JJ NNS IN CD NN . Authorities Saturday say four assailants on Friday gunned down Raul Gibb Guerrero , director of the La Opinion newspaper , while he was driving his vehicle in northern Veracruz . NNS NNP VBP CD NNS IN NNP VBD RP NNP NNP NNP , NN IN DT NNP NNP NN , IN PRP VBD VBG PRP$ NN IN JJ NNP . Earlier this week , radio reporter Guadalupe Garcia Escamilla was shot several times in Nuevo Laredo , near Mexico 's border with the United States . RBR DT NN , NN NN NNP NNP NNP VBD VBN JJ NNS IN NNP NNP , IN NNP POS NN IN DT NNP NNPS . Ms. Garcia was last reported to be in serious condition . NNP NNP VBD JJ VBN TO VB IN JJ NN . The two attacks come amid reports of a missing journalist in northern Mexico . DT CD NNS VBP IN NNS IN DT JJ NN IN JJ NNP . The media watchdog group , Reporters Without Borders , has called on authorities to investigate the disappearance of Alfredo Jimenez Mota , who was last seen April 2 . DT NNS NN NN , NNS IN NNS , VBZ VBN IN NNS TO VB DT NN IN NNP NNP NNP , WP VBD JJ VBN NNP CD . A South Korean human rights group says a senior North Korean scientist and the head of a military hospital have defected and are seeking asylum in South Korea . DT JJ JJ JJ NNS NN VBZ DT JJ JJ JJ NN CC DT NN IN DT JJ NN VBP VBN CC VBP VBG NN IN NNP NNP . The Citizen 's Coalition for Human Rights of Abductees and North Korean Refugees says the two defected separately . DT NNP POS NN IN NNP NNP IN NNP CC NNP JJ NNP VBZ DT CD VBN RB . The scientist is said to have left North Korea in March . DT NN VBZ VBN TO VB VBN NNP NNP IN NNP . The rights group says the defectors are living in a Southeast Asian country it did not identify , and are applying for asylum to go to South Korea . DT NNS NN VBZ DT NNS VBP VBG IN DT JJ JJ NN PRP VBD RB VB , CC VBP VBG IN NN TO VB TO NNP NNP . Officials in Seoul have not commented publicly on the matter . NNS IN NNP VBP RB VBN RB IN DT NN . Human rights groups believe hundreds of thousands of North Koreans have fled the country since the end of the Korean War in 1953 to escape poverty and persecution . JJ NNS NNS VBP NNS IN NNS IN NNP NNS VBP VBN DT NN IN DT NN IN DT JJ NNP IN CD TO VB NN CC NN . The majority cross the border into neighboring China . DT NN VBP DT NN IN VBG NNP . The head of Ukraine 's parliamentary commission investigating the poisoning of opposition leader Viktor Yushchenko has called for an emergency meeting Tuesday . DT NN IN NNP POS JJ NN VBG DT NN IN NN NN NNP NNP VBZ VBN IN DT NN NN NNP . Reports from the region say Volodymyr Syvkovych told journalists in Kiev that medical tests showing that Mr. Yushchenko was deliberately poisoned have given the commission grounds to reopen the investigation . NNS IN DT NN VBP NNP NNP VBD NNS IN NNP IN JJ NNS VBG IN NNP NNP VBD RB VBN VBP VBN DT NN NNS TO VB DT NN . Prosecutors in Ukraine are conducting a separate investigation . NNS IN NNP VBP VBG DT JJ NN . Mr. Syvkovych urged doctors who conducted the tests in Vienna to hand over the test results to prosecutors and his commission . NNP NNP VBD NNS WP VBD DT NNS IN NNP TO VB IN DT NN NNS TO NNS CC PRP$ NN . He also called on Mr. Yushchenko to testify before the parliamentary commission . PRP RB VBD IN NNP NNP TO VB IN DT JJ NN . On Monday , Ukrainian Prime Minister Viktor Yanukovych accused Washington of financing his rival 's presidential campaign . IN NNP , JJ NNP NNP NNP NNP VBD NNP IN VBG PRP$ NN POS JJ NN . But , U.S. officials said they have no favored candidate , and that aid sent to Ukraine is only for promoting free elections and democracy . CC , NNP NNS VBD PRP VBP DT JJ NN , CC IN NN VBN TO NNP VBZ RB IN VBG JJ NNS CC NN . Sri Lankan military officials say at least 10 soldiers were killed and several others wounded when an army bus hit a landmine Tuesday in the northern Jaffna peninsula . NNP NNP JJ NNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBD WRB DT NN NN VBD DT NN NNP IN DT JJ NNP NN . Authorities say they suspect Tamil Tiger rebels carried out the attack . NNS VBP PRP VBP NNP NNP NNS VBD IN DT NN . More than 30 government troops have been killed in eastern and northern Sri Lanka in a series of attacks blamed on the rebels since the beginning of this month . JJR IN CD NN NNS VBP VBN VBN IN JJ CC JJ NNP NNP IN DT NN IN NNS VBN IN DT NNS IN DT NN IN DT NN . The upsurge of violence comes amid threats that Tamil rebels may resume their violent struggle for an independent Tamil homeland if the government fails to agree to a peace settlement over the next 12 months . DT NN IN NN VBZ IN NNS WDT NNP NNS MD VB PRP$ JJ NN IN DT JJ NN NN IN DT NN VBZ TO VB TO DT NN NN IN DT JJ CD NNS . Sri Lankan President Mahinda Rajapakshe travels to New Delhi Tuesday , for talks with Indian leaders about his efforts to reach a lasting peace in the island nation . NNP NNP NNP NNP NNP VBZ TO NNP NNP NNP , IN NNS IN JJ NNS IN PRP$ NNS TO VB DT JJ NN IN DT NN NN . Officials in Burma say a new outbreak of bird flu has been detected among chickens in an eastern district near the Chinese border . NNS IN NNP VBP DT JJ NN IN NN NN VBZ VBN VBN IN NNS IN DT JJ NN IN DT JJ NN . The state-run New Light of Myanmar newspaper said Saturday that the outbreak was found at a farm in Kentung township in eastern Shan state on November 18 , after a farmer reported an unusual number of deaths in his chickens . DT JJ NNP NNP IN NNP NN VBD NNP IN DT NN VBD VBN IN DT NN IN NNP NN IN JJ NNP NN IN NNP CD , IN DT NN VBD DT JJ NN IN NNS IN PRP$ NNS . Officials culled an unknown number of birds at the farm . NNS VBD DT JJ NN IN NNS IN DT NN . A statement from the Myanmar Livestock and Veterinary Department urged people to prevent the entry of poultry and birds from neighboring countries into Burma . DT NN IN DT NNP NNP CC NNP NNP VBD NNS TO VB DT NN IN NN CC NNS IN VBG NNS IN NNP . Russia and North Korea have pledged to boost cooperation on international issues , following a meeting of the countries ' foreign ministers in Moscow . NNP CC NNP NNP VBP VBN TO VB NN IN JJ NNS , VBG DT NN IN DT NNS POS JJ NNS IN NNP . Russian Foreign Minister Sergei Lavrov held talks with his North Korean counterpart , Pak Ui Chun , in the Russian capital Wednesday . JJ NNP NNP NNP NNP VBD NNS IN PRP$ JJ JJ NN , NNP NNP NNP , IN DT JJ NN NNP . Pak 's visit to Moscow coincided with the 60th anniversary of relations between Russia and North Korea . NNP POS NN TO NNP VBD IN DT JJ NN IN NNS IN NNP CC NNP NNP . The foreign ministers were expected to discuss North Korea 's nuclear disarmament process . DT JJ NNS VBD VBN TO VB NNP NNP POS JJ NN NN . Russia is one of five foreign powers working with North Korea on the dismantling of its nuclear weapons program . NNP VBZ CD IN CD JJ NNS VBG IN NNP NNP IN DT NN IN PRP$ JJ NNS NN . Pyongyang readmitted United Nations inspectors to its main nuclear complex this week and pledged to stop its nuclear activities . NNP VBD NNP NNP VBZ TO PRP$ JJ JJ NN DT NN CC VBD TO VB PRP$ JJ NNS . On Saturday , Washington removed North Korea from a list of states sponsoring terrorism , saying Pyongyang had agreed to all of its nuclear inspection demands . IN NNP , NNP VBD NNP NNP IN DT NN IN NNS VBG NN , VBG NNP VBD VBN TO DT IN PRP$ JJ NN NNS . Nuclear negotiators say the action will help get the six-nation nuclear talks back on track . JJ NNS VBP DT NN MD VB VB DT JJ JJ NNS RB IN NN . Afghan authorities in the western province of Herat say demolition experts have destroyed a huge amount of arms and ammunition left over from decades of fighting . JJ NNS IN DT JJ NN IN NNP VBP NN NNS VBP VBN DT JJ NN IN NNS CC NN VBD RP IN NNS IN NN . The authorities say more than 17,000 land mines and other unexploded ordinance collected from militia units in Herat were detonated Thursday in a controlled explosion . DT NNS VBP JJR IN CD NN NNS CC JJ JJ NN VBN IN NN NNS IN NNP VBD VBN NNP IN DT JJ NN . Afghanistan remains one of the most heavily mined countries in the world . NNP VBZ CD IN DT RBS RB VBN NNS IN DT NN . Millions of explosives were laid during the Soviet occupation in the 1980s and the brutal civil war , which followed . NNS IN NNS VBD VBN IN DT JJ NN IN DT NNS CC DT JJ JJ NN , WDT VBD . Afghan officials say that land mines or unexploded bombs still kill or disable hundreds of Afghans every year . JJ NNS VBP IN NN NNS CC JJ NNS RB VBP CC VBP NNS IN NNS DT NN . Several people were killed in a bombing Friday , in northwest Pakistan 's restive Swat Valley . JJ NNS VBD VBN IN DT NN NNP , IN JJ NNP POS JJ NNP NNP . A former provincial minister Asfandyar Amerzeb was among those killed when a remote control bomb exploded as his car passed . DT JJ JJ NN NNP NNP VBD IN DT VBN WRB DT JJ NN NN VBD IN PRP$ NN VBN . It is not clear if it this is the same incident that claimed lives of supporters of Pakistani President Pervez Musharraf 's party , as reported earlier . PRP VBZ RB JJ IN PRP DT VBZ DT JJ NN WDT VBD NNS IN NNS IN JJ NNP NNP NNP POS NN , IN VBN RBR . Pakistani troops have been battling militants in Swat since July , when a radical cleric called for a holy war against the government . JJ NNS VBP VBN VBG NNS IN NNP IN NNP , WRB DT JJ NN VBD IN DT JJ NN IN DT NN . Soldiers recently ejected militants from territory they had seized in the area . NNS RB VBD NNS IN NN PRP VBD VBN IN DT NN . Reports from Afghanistan say at least three policemen died in bomb attacks Saturday . NNS IN NNP VBP IN JJS CD NNS VBD IN NN NNS NNP . Officials say a roadside bomb in southern Ghazni province killed at least two officers , destroyed a police vehicle , and wounded several other people . NNS VBP DT NN NN IN JJ NNP NN VBD IN JJS CD NNS , VBD DT NN NN , CC VBD JJ JJ NNS . A similar explosion took place in western Farah province , where one policeman died and at least one other was wounded . DT JJ NN VBD NN IN JJ NNP NN , WRB CD NN VBD CC IN JJS CD NN VBD VBN . No one has claimed responsibility for either attack , but Afghan officials blame Taliban forces . DT NN VBZ VBN NN IN DT NN , CC JJ NNS VBP NNP NNS . These were the latest in a series of attacks on Afghan police , who are sometimes seen as less well-trained than other security forces . DT VBD DT JJS IN DT NN IN NNS IN JJ NNS , WP VBP RB VBN IN JJR JJ IN JJ NN NNS . Spider-Man 3 smashed U.S. box office records last weekend , netting $ 148 million in its first three days of release . JJ CD VBD NNP NN NN NNS JJ NN , VBG $ CD CD IN PRP$ JJ CD NNS IN NN . The tally beats the previous record of $ 135.6 million , set last summer by Pirates Of The Caribbean : Dead Man 's Chest . DT NN VBZ DT JJ NN IN $ CD CD , VBN JJ NN IN NNP IN DT NNP IN NNP NNP POS NNP . The web-slinging hero has also proven irresistable overseas , grossing $ 375 million globally . DT JJ NN VBZ RB VBN JJ RB , VBG $ CD CD RB . This represents a profit of $ 117 million , allowing for the film 's production budget of $ 258 million . DT VBZ DT NN IN $ CD CD , VBG IN DT NN POS NN NN IN $ CD CD . Further records may fall in the next 10 days , with no major competition in sight until the May 18 premiere of the animated comedy Shrek The Third . JJ NNS MD VB IN DT JJ CD NNS , IN DT JJ NN IN NN IN DT NNP CD NN IN DT JJ NN NNP NNP NNP . The previous U.S. champion , Disturbia , ranked a distant second last weekend with $ 5.7 million in box office grosses . DT JJ NNP NN , NNP , VBD DT JJ NN JJ NN IN $ CD CD IN NN NN NNS . The figure raises its three-week total to $ 59.9 million . DT NN VBZ PRP$ JJ NN TO $ CD CD . Lebanese soldiers patrolled the streets of a Beirut neighborhood Wednesday , a day after three people were killed in clashes between rival Shi'ite and Sunni Muslims . JJ NNS VBD DT NNS IN DT NNP NN NNP , DT NN IN CD NNS VBD VBN IN NNS IN JJ NNP CC NNP NNPS . Broken glass and spent bullet casings littered the streets of Bourj Abi Haidar following violence that started as a fight between two men . JJ NN CC JJ NN NNS VBD DT NNS IN NNP NNP NNP VBG NN WDT VBD IN DT NN IN CD NNS . Officials say a confrontation between a supporter of the Shi'ite militant group Hezbollah and another man from the conservative Sunni Muslim group al-Ahbash escalated into a four-hour shootout . NNS VBP DT NN IN DT NN IN DT NNP JJ NN NNP CC DT NN IN DT JJ NNP NNP NN JJ VBN IN DT JJ NN . The two groups later issued a joint statement saying the flare-up was a one-time incident resulting from a ' personal dispute ' and was not political . DT CD NNS RB VBD DT JJ NN VBG DT NN VBD DT JJ NN VBG IN DT `` JJ NN `` CC VBD RB JJ . Participants fired machine guns and rocket-propelled grenades before Lebanese soldiers intervened and cordoned off the area . NNS VBD NN NNS CC JJ NNS IN JJ NNS VBD CC VBD RP DT NN . Officials say three people were wounded in the clashes , and that two of the dead have been identified as Mohammad Fawaz , a Hezbollah security official , and his aide . NNS VBP CD NNS VBD VBN IN DT NNS , CC IN CD IN DT NN VBP VBN VBN IN NNP NNP , DT NNP NN NN , CC PRP$ NN . The government of Peru has requested that Chile arrest former Peruvian President Alberto Fujimori , who arrived in Chile unexpectedly Sunday . DT NN IN NNP VBZ VBN IN NNP VB JJ JJ NNP NNP NNP , WP VBD IN NNP RB NNP . A spokesman for the Chilean government , Osvaldo Puccio , says the matter has been turned over to the courts to decide . DT NN IN DT JJ NN , NNP NNP , VBZ DT NN VBZ VBN VBN RP TO DT NNS TO VB . The international arrest warrants for Mr. Fujimori are not valid in Chile . DT JJ NN NNS IN NNP NNP VBP RB JJ IN NNP . Mr. Fujimori , who fled to Japan in 2000 , is wanted in Peru on charges of corruption and human rights abuses related to the death squad murders of 25 people . NNP NNP , WP VBD TO NNP IN CD , VBZ VBN IN NNP IN NNS IN NN CC JJ NNS NNS VBN TO DT NN NN NNS IN CD NNS . In a media statement he said he will stay in Chile temporarily while launching his candidacy for Peruvian president in next April 's elections . IN DT NNS NN PRP VBD PRP MD VB IN NNP RB IN VBG PRP$ NN IN JJ NN IN JJ NNP POS NNS . His visit comes at a time when Peru and Chile are at odds over maritime boundaries . PRP$ NN VBZ IN DT NN WRB NNP CC NNP VBP IN NNS IN NN NNS . Peru Friday passed a law attempting to reclaim sea territory from Chile . NNP NNP VBD DT NN VBG TO VB NN NN IN NNP . Palestine Liberation Organization chairman Mahmoud Abbas has again urged Palestinians to end their armed uprising against Israel . NNP NNP NNP NN NNP NNP VBZ RB VBN NNS TO VB PRP$ JJ NN IN NNP . His published comments in an Arabic newspaper Tuesday came as militants killed one Thai farm laborer and wounded two others in a mortar attack on a Jewish settlement in Gaza . PRP$ JJ NNS IN DT JJ NN NNP VBD IN NNS VBD CD JJ NN NN CC VBD CD NNS IN DT NN NN IN DT JJ NN IN NNP . Mr. Abbas said the Palestinian uprising is the legitimate right of Palestinians to protest Israeli occupation through popular and social means . NNP NNP VBD DT JJ NN VBZ DT JJ NN IN NNS TO VB JJ NN IN JJ CC JJ NNS . But he said the use of weapons in that struggle has been damaging and it should stop . CC PRP VBD DT NN IN NNS IN DT NN VBZ VBN JJ CC PRP MD VB . His comments follow accusations from Israeli Prime Minister Ariel Sharon that Palestinian leaders are not doing enough to rein in militant groups . PRP$ NNS VBP NNS IN JJ NNP NNP NNP NNP IN JJ NNS VBP RB VBG RB TO VB IN JJ NNS . On Sunday , Palestinian militants detonated more than a ton of explosives in a tunnel beneath an Israeli army post , killing five soldiers . IN NNP , JJ NNS VBD JJR IN DT NN IN NNS IN DT NN IN DT JJ NN NN , VBG CD NNS . Israeli forces later demolished several buildings in the Gaza Strip . JJ NNS RB VBD JJ NNS IN DT NNP NNP . The U.S. Treasury Department has designated 11 companies as fronts for an Iranian bank that Washington says helps spread weapons of mass destruction . DT NNP NNP NNP VBZ VBN CD NNS IN NNS IN DT JJ NN IN NNP VBZ VBZ VB NNS IN NN NN . The Treasury said Tuesday U.S. citizens are prohibited from any transactions involving the companies , which are located in Iran , the Cayman Islands and Dubai . DT NNP VBD NNP NNP NNS VBP VBN IN DT NNS VBG DT NNS , WDT VBP VBN IN NNP , DT NNP NNP CC NNP . The United States accuses the companies of funneling money for Bank Melli , which U.S. officials call a ' known proliferator ' of weapons of mass destruction . DT NNP NNPS VBZ DT NNS IN VBG NN IN NNP NNP , WDT NNP NNS VBP DT `` VBN NN `` IN NNS IN NN NN . The United States has supported three rounds of United Nations sanctions on Iran for its disputed nuclear program . DT NNP NNPS VBZ VBN CD NNS IN NNP NNPS NNS IN NNP IN PRP$ JJ JJ NN . It also has taken unilateral action against various Iranian entities . PRP RB VBZ VBN JJ NN IN JJ JJ NNS . Iraqi police say three bombs have exploded in a market north of Baghdad . JJ NNS VBP CD NNS VBP VBN IN DT NN NN IN NNP . The bombs detonated moments apart Saturday near shops in Baquba , 65 kilometers north of the capital , wounding at least 10 people . DT NNS VBD NNS RB NNP IN NNS IN NNP , CD NNS RB IN DT NN , VBG IN JJS CD NNS . Baquba is known for its religious and ethnic mix , and has been the scene of frequent violence . NNP VBZ VBN IN PRP$ JJ CC JJ NN , CC VBZ VBN DT NN IN JJ NN . In another development today , Iraqi officials say police have detained at least 68 suspected insurgents in raids across the country . IN DT NN NN , JJ NNS VBP NNS VBP VBN IN JJS CD JJ NNS IN NNS IN DT NN . Police in India say tribal separatist rebels have shot and killed eight Bengali-speaking villagers in the far northeastern state of Tripura . NNS IN NNP VBP JJ JJ NNS VBP VBN CC VBN CD JJ NNS IN DT RB JJ NN IN NNP . The attack occurred Sunday morning in a village east of Agartala , Tripura 's capital city . DT NN VBD NNP NN IN DT NN NN IN NNP , NNP POS NN NN . Three women were among those killed . CD NNS VBD IN DT VBN . Two people were seriously injured . CD NNS VBD RB VBN . Authorities say the raid was carried out by militants from the National Liberation Front of Tripura , who have been fighting for an independent tribal homeland for decades . NNS VBP DT NN VBD VBN RP IN NNS IN DT NNP NNP NNP IN NNP , WP VBP VBN VBG IN DT JJ JJ NN IN NNS . Tribal people once dominated the region , but now say they have been reduced to a minority after years of settlement by Bengali-speaking migrants , mainly from neighboring Bangladesh . NNP NNS RB VBD DT NN , CC RB VBP PRP VBP VBN VBN TO DT NN IN NNS IN NN IN JJ NNS , RB IN VBG NNP . U.S. Secretary of State Condoleezza Rice leaves on her first diplomatic mission to Asia Monday , where she will focus on persuading North Korea to return to six-party disarmament talks . NNP NNP IN NNP NNP NNP VBZ IN PRP$ JJ JJ NN TO NNP NNP , WRB PRP MD VB IN VBG NNP NNP TO VB TO JJ NN NNS . Ms. Rice will travel to India , Pakistan , Afghanistan , Japan , South Korea and China before returning to Washington on March 21 . NNP NNP MD VB TO NNP , NNP , NNP , NNP , NNP NNP CC NNP IN VBG TO NNP IN NNP CD . Discussions with her Asian counterparts are also expected to cover Indian-Pakistani relations , Afghan reconstruction and the escalating tensions between mainland China and Taiwan . NNS IN PRP$ JJ NNS VBP RB VBN TO VB JJ NNS , JJ NN CC DT VBG NNS IN JJ NNP CC NNP . North Korea 's nuclear weapons program will be the focus of her meetings in Tokyo , Seoul and Beijing . NNP NNP POS JJ NNS NN MD VB DT NN IN PRP$ NNS IN NNP , NNP CC NNP . Pyongyang last month claimed to possess nuclear weapons . NNP JJ NN VBD TO VB JJ NNS . Ms. Rice has already traveled to Europe , the Middle East and Mexico since being confirmed as secretary of state in January . NNP NNP VBZ RB VBN TO NNP , DT NNP NNP CC NNP IN VBG VBN IN NN IN NN IN NNP . World rally driving champion Sebastien Loeb of France is in the lead after the first day of the Monte Carlo Rally , the season-opening event on the World Rally Championship circuit . NNP NN VBG NN NNP NNP IN NNP VBZ IN DT NN IN DT JJ NN IN DT NNP NNP NNP , DT JJ NN IN DT NNP NNP NNP NN . The two-time defending Monte Carlo champion drove his Citroen Xsara WRC to a total time of one hour , 18.46.09 . DT JJ VBG NNP NNP NN VBD PRP$ NNP NNP NNP TO DT JJ NN IN CD NN , CD . Teammate Francois Duval of Belgium is second overall , 32.7 seconds behind Loeb . NN NNP NNP IN NNP VBZ JJ JJ , CD NNS IN NNP . Former world champion Marcus Gronholm of Finland is third overall in a Peugeot , more than one minute behind the French driver . JJ NN NN NNP NNP IN NNP VBZ JJ NN IN DT NNP , JJR IN CD NN IN DT JJ NN . Norwegian Petter Solberg in a Subaru is fourth . JJ NNP NNP IN DT NNP VBZ JJ . Loeb has won 10 rallies in his career , and last season became the first French driver since Didier Auriol to win the World title . NNP VBZ VBN CD NNS IN PRP$ NN , CC JJ NN VBD DT JJ JJ NN IN NNP NNP TO VB DT NNP NN . The Monte Carlo Rally continues through Sunday . DT NNP NNP NNP VBZ IN NNP . The U.S. economy added 1,12,000 new jobs in November , which is about half what experts had expected . DT NNP NN VBD CD JJ NNS IN NNP , WDT VBZ IN NN WP NNS VBD VBN . Friday 's closely watched report from the U.S. Labor Department also said the unemployment rate dropped slightly to 5.4 percent . NNP POS RB VBN NN IN DT NNP NNP NNP RB VBD DT NN NN VBD RB TO CD NN . Analysts said high oil prices and disappointing holiday sales have made companies reluctant to take on new workers . NNS VBD JJ NN NNS CC JJ NN NNS VBP VBN NNS JJ TO VB RP JJ NNS . Economists say it takes the creation of between 1,00,000 and 1,50,000 new jobs each month to employ new entrants into the U.S. workforce every month . NNS VBP PRP VBZ DT NN IN IN CD CC CD JJ NNS DT NN TO VB JJ NNS IN DT NNP NN DT NN . Poland says recent U.S. proposals to strengthen the Polish military in return for hosting a missile defense system fall short of its demands . NNP VBZ JJ NNP NNS TO VB DT JJ NN IN NN IN VBG DT NN NN NN VB RB IN PRP$ NNS . Polish Prime Minister Donald Tusk told reporters in Warsaw Tuesday that the U.S. proposals have not reached a level that is satisfactory to Poland . JJ NNP NNP NNP NNP VBD NNS IN NNP NNP IN DT NNP NNS VBP RB VBN DT NN WDT VBZ JJ TO NNP . U.S. and Polish negotiators discussed the initiative last week . NNP CC JJ NNS VBD DT NN JJ NN . The United States wants to install 10 land-based interceptor missile silos in Poland and associated radar bases in the Czech Republic . DT NNP NNPS VBZ TO VB CD JJ NN NN NNS IN NNP CC VBN NN NNS IN DT JJ NNP . Washington says the anti-missile system is intended to defend the United States and NATO allies against potential ballistic missile attacks by what it calls ' rogue states , ' notably Iran . NNP VBZ DT JJ NN VBZ VBN TO VB DT NNP NNPS CC NNP NNS IN JJ JJ NN NNS IN WP PRP VBZ `` NN NNS , `` RB NNP . Russia has blasted the U.S. plan as a threat to Russian security . NNP VBZ VBN DT NNP NN IN DT NN TO JJ NN . The U.S. Justice Department has opened a civil rights investigation into the beating of a 64-year-old black man in flood-ravaged New Orleans . DT NNP NNP NNP VBZ VBN DT JJ NNS NN IN DT NN IN DT JJ JJ NN IN JJ NNP NNP . The probe announced Monday was launched following the release of a videotape showing two uniformed New Orleans police officers punching Robert Davis in the face and body as he was being arrested for public drunkenness . DT NN VBN NNP VBD VBN VBG DT NN IN DT NN VBG CD JJ NNP NNP NN NNS VBG NNP NNP IN DT NN CC NN IN PRP VBD VBG VBN IN JJ NN . Another officer is shown shoving and screaming at a news producer who was documenting the confrontation . DT NN VBZ VBN VBG CC VBG IN DT NN NN WP VBD VBG DT NN . Mr. Davis says he does not drink alcohol and was just out looking for cigarettes . NNP NNP VBZ PRP VBZ RB VB NN CC VBD RB RB VBG IN NNS . He told CNN television that the incident started after he called one of the police officers unprofessional for interrupting his talk with an officer on horseback . PRP VBD NNP NN IN DT NN VBD IN PRP VBD CD IN DT NN NNS JJ IN VBG PRP$ NN IN DT NN IN NN . Mr. Davis 's attorney says his client does not believe race was a factor in the Saturday night incident . NNP NNP POS NN VBZ PRP$ NN VBZ RB VB NN VBD DT NN IN DT NNP NN NN . The three white police officers seen in the video have pleaded not guilty to battery charges . DT CD JJ NN NNS VBN IN DT NN VBP VBN RB JJ TO NN NNS . A key economic report says the global economy will be worse than first estimated this year , while a separate study says 2010 will be better than expected . DT JJ JJ NN VBZ DT JJ NN MD VB JJR IN RB VBN DT NN , IN DT JJ NN VBZ CD MD VB JJR IN VBN . Thursday 's World Bank study says the global economy will shrink almost three percent this year , which is significantly worse than earlier estimates . NNP POS NNP NNP NN VBZ DT JJ NN MD VB RB CD NN DT NN , WDT VBZ RB JJR IN JJR NNS . Bank experts say the downturn is likely to hit poor nations hard , even though financial markets in wealthy nations are stabilizing . NNP NNS VBP DT NN VBZ JJ TO VB JJ NNS RB , RB IN JJ NNS IN JJ NNS VBP VBG . At the same time , news reports say the International Monetary Fund is raising its estimate of global economic growth for 2010 . IN DT JJ NN , NN NNS VBP DT NNP NNP NNP VBZ VBG PRP$ NN IN JJ JJ NN IN CD . The reports on Bloomberg and Reuters quote unnamed sources saying the IMF is raising next year 's growth prediction to hit 2.4 percent . DT NNS IN NNP CC NNP VBP JJ NNS VBG DT NNP VBZ VBG JJ NN POS NN NN TO VB CD NN . That is a half a percent higher than earlier studies predicted . DT VBZ DT NN DT NN JJR IN JJR NNS VBD . The predictions come just ahead of a meeting of G8 finance ministers in Italy where the economic crisis tops the agenda . DT NNS VBP RB RB IN DT NN IN NNP NN NNS IN NNP WRB DT JJ NN VBZ DT NN . Russian President Vladimir Putin and Venezuelan President Hugo Chavez discussed trade and economic issues - as well as arms sales - during a meeting in Moscow Friday . JJ NNP NNP NNP CC JJ NNP NNP NNP VBD NN CC JJ NNS : RB RB IN NNS NNS : IN DT NN IN NNP NNP . Mr. Putin and Mr. Chavez signed an agreement announcing Venezuela 's support of Russia 's bid to join the World Trade Organization . NNP NNP CC NNP NNP VBD DT NN VBG NNP POS NN IN NNP POS NN TO VB DT NNP NNP NNP . The two leaders also discussed a joint energy production project . DT CD NNS RB VBD DT JJ NN NN NN . Officials from Russian 's Lukoil company and Venezuela 's state-owned PDVSA oil company signed a memorandum of understanding on a joint oil exploration venture in Venezuela . NNS IN JJ POS NNP NN CC NNP POS JJ NNP NN NN VBD DT NN IN NN IN DT JJ NN NN NN IN NNP . Mr. Chavez said Caracas will buy 40 military helicopters and 1,00,000 submachine guns from Moscow . NNP NNP VBD NNP MD VB CD JJ NNS CC CD JJ NNS IN NNP . Eminem and his ex-wife Kim Mathers have agreed not to publicly criticize each other . NNP CC PRP$ JJ NNP NNP VBP VBN RB TO RB VB DT NN . The estranged couple say the March 26 decision arises from their desire not to hurt their 11-year-old daughter , Hailie . DT VBN NN VBP DT NNP CD NN NNS IN PRP$ NN RB TO VB PRP$ JJ NN , NNP . Mathers , who has twice married and divorced the 34-year-old rap star , has frequently criticized her ex-husband 's lack of compassion and fidelity . NNP , WP VBZ RB VBN CC VBN DT JJ NN NN , VBZ RB VBN PRP$ NN POS NN IN NN CC NN . In return , Eminem has often assailed Kim in his lyrics . IN NN , NNP VBZ RB VBN NNP IN PRP$ NNS . The couple wed in 1999 , divorced in 2001 , remarried in January 2006 , and separated three months later . DT NN VBD IN CD , VBN IN CD , VBN IN NNP CD , CC VBD CD NNS RB . Their second divorce was finalized in December . PRP$ JJ NN VBD VBN IN NNP . Bolivia 's president says energy companies affected by his nationalization of natural gas will not be compensated if they recouped their investments . NNP POS NN VBZ NN NNS VBN IN PRP$ NN IN JJ NN MD RB VB VBN IN PRP VBD PRP$ NNS . Speaking on the sidelines of the EU-Latin American summit , Evo Morales also urged Colombia , Peru and Ecuador not to ratify trade deals with the United States . VBG IN DT NNS IN DT JJ JJ NN , NNP NNP RB VBD NNP , NNP CC NNP RB TO VB NN NNS IN DT NNP NNPS . Latin American and European leaders are in Vienna , Austria , for a summit aimed at strengthening cooperation between the continents . JJ JJ CC JJ NNS VBP IN NNP , NNP , IN DT NN VBN IN VBG NN IN DT NNS . Bolivia 's move to nationalize energy resources was expected to be discussed . NNP POS NN TO VB NN NNS VBD VBN TO VB VBN . The EU Commission for External Relations and Neighborhood Policy , Benita Ferrero-Waldner issued a statement Wednesday saying Europe will do everything it can to clear the way for closer trade partnerships . DT NNP NNP IN NNP NNP CC NNP NNP , NNP NNP VBD DT NN NNP VBG NNP MD VB DT PRP MD TO VB DT NN IN JJR NN NNS . But she said Latin American nations must overcome obstacles on their side . CC PRP VBD JJ JJ NNS MD VB NNS IN PRP$ NN . New allegations of prisoner abuse by U.S. forces in Iraq and Afghanistan have been revealed in Army documents released by the American Civil Liberties Union . JJ NNS IN NN NN IN NNP NNS IN NNP CC NNP VBP VBN VBN IN NNP NNS VBN IN DT NNP NNP NNP NNP . The documents show photographs of U.S. soldiers in Afghanistan posing with hooded and bound detainees during mock executions . DT NNS VBP NNS IN NNP NNS IN NNP VBG IN VBN CC VBN NNS IN JJ NNS . The photos were taken at a base in southern Afghanistan ( Fire Base Tycze ) between December 2003 and February 2004 . DT NNS VBD VBN IN DT NN IN JJ NNP LRB NNP NNP NNP RRB IN NNP CD CC NNP CD . Some members of the infantry regiment said they took the pictures for fun and destroyed some of them after the Abu Ghraib prison scandal in Iraq to avoid another public outrage . DT NNS IN DT NN NN VBD PRP VBD DT NNS IN NN CC VBD DT IN PRP IN DT NNP NNP NN NN IN NNP TO VB DT JJ NN . The Afghanistan incident triggered an Army investigation . DT NNP NN VBD DT NNP NN . Army records show that several soldiers were charged with dereliction of duty , but more serious charges were not substantiated . NN NNS VBP IN JJ NNS VBD VBN IN NN IN NN , CC RBR JJ NNS VBD RB VBN . The American Civil Liberties Union says the new documents suggest that abuse of prisoners in Iraq and Afghanistan may be widespread . DT NNP NNP NNPS NNP VBZ DT JJ NNS VBP IN NN IN NNS IN NNP CC NNP MD VB JJ . The group had requested information about U.S.-held detainees . DT NN VBD VBN NN IN JJ NNS . Afghan election officials have finished counting ballots from last month 's legislative elections and are to release some provisional results Thursday . JJ NN NNS VBP VBN VBG NNS IN JJ NN POS JJ NNS CC VBP TO VB DT JJ NNS NNP . A spokesman for the joint U.N.-Afghan election commission says the physical count is complete , except for some ballots that are subject to audit . DT NN IN DT JJ JJ NN NN VBZ DT JJ NN VBZ JJ , IN IN DT NNS WDT VBP JJ TO NN . Vote counts are to be released in phases over the coming days , as officials investigate reports of vote fraud . NN NNS VBP TO VB VBN IN NNS IN DT JJ NNS , IN NNS VB NNS IN NN NN . Final results are due by October 22 . JJ NNS VBP JJ IN NNP CD . Unofficial tallies show that warlords and opponents of President Hamid Karzai have fared relatively well , and women lawmakers could hold the balance of power in the new national assembly . JJ NNS VBP IN NNS CC NNS IN NNP NNP NNP VBP VBN RB RB , CC NNS NNS MD VB DT NN IN NN IN DT JJ JJ NN . Meanwhile , a suspected suicide bomber has blown up a pick-up truck near a Canadian military convoy in southern Afghanistan , killing himself and a child . RB , DT JJ NN NN VBZ VBN RP DT NN NN IN DT JJ JJ NN IN JJ NNP , VBG PRP CC DT NN . Three Canadian soldiers were wounded . CD JJ NNS VBD VBN . French Prime Minister Dominique de Villepin says smoking will be banned in most public places in his country in February . JJ NNP NNP NNP NNP NNP VBZ NN MD VB VBN IN JJS JJ NNS IN PRP$ NN IN NNP . Speaking Sunday to French media , the prime minister said the ban will be extended to cover bars , restaurants , hotels and discotheques in January of 2008 . VBG NNP TO JJ NNS , DT JJ NN VBD DT NN MD VB VBN TO VB NNS , NNS , NNS CC NNS IN NNP IN CD . In a parliamentary report last week , French lawmakers called for a total ban effective next September . IN DT JJ NN JJ NN , JJ NNS VBD IN DT JJ NN JJ JJ NNP . The only exceptions would be commercial establishments that provide sealed smoking areas with separate ventilation systems . DT JJ NNS MD VB JJ NNS WDT VBP JJ NN NNS IN JJ NN NNS . The French news agency quotes Mr. de Villepin as saying an estimated 5,000 people die in France every year from the effects of passive smoking . DT JJ NN NN VBZ NNP NNP NNP IN VBG DT VBN CD NNS VBP IN NNP DT NN IN DT NNS IN JJ NN . He said those figures present a ' totally unacceptable situation ' in terms of public health . PRP VBD DT NNS VBP DT `` RB JJ NN `` IN NNS IN JJ NN . France is the latest European country to sharply curtail smoking in public places . NNP VBZ DT JJS JJ NN TO RB VB NN IN JJ NNS . Britain , Italy , Sweden , Ukraine and Spain are considering similar measures . NNP , NNP , NNP , NNP CC NNP VBP VBG JJ NNS . Japan 's Foreign Ministry says Russian authorities have seized four Japanese fishing boats in disputed waters off Russia 's far east on suspicion of illegal fishing . NNP POS NNP NNP VBZ JJ NNS VBP VBN CD JJ NN NNS IN JJ NNS IN NNP POS RB JJ IN NN IN JJ NN . The ministry said Saturday that the boats were intercepted and searched by Russian officials off Kamchatka peninsula , and have been taken to the Russian port of Petropavlosk-Kamchatskii . DT NN VBD NNP IN DT NNS VBD JJ CC VBD IN JJ NNS IN NNP NN , CC VBP VBN VBN TO DT JJ NN IN NNP . Earlier this year , a Russian border patrol fired on a Japanese fishing boat in the disputed waters , killing a fisherman before seizing the vessel and the remaining three crew members . RBR DT NN , DT JJ NN NN VBD IN DT JJ NN NN IN DT JJ NNS , VBG DT NN IN VBG DT NN CC DT VBG CD NN NNS . The incident increased already tense relations over the four Kuril islands , which were seized by Soviet troops at the end of World War II , and are still claimed by Japan . DT NN VBD RB JJ NNS IN DT CD NNP NNS , WDT VBD VBN IN JJ NNS IN DT NN IN NNP NNP NNP , CC VBP RB VBN IN NNP . The dispute over the islands has prevented the two countries from signing a peace treaty officially ending the war . DT NN IN DT NNS VBZ VBN DT CD NNS IN VBG DT NN NN RB VBG DT NN . Indiana Jones is returning - and Cate Blanchett may be along for the ride . NNP NNP VBZ VBG : CC NNP NNP MD VB IN IN DT NN . The award-winning actress is reportedly negotiating a role in the fourth installment of the Indiana Jones series . DT JJ NN VBZ RB VBG DT NN IN DT JJ NN IN DT NNP NNP NN . Harrison Ford has already signed on to portray the fedora-wearing adventurer . NNP NNP VBZ RB VBN IN TO VB DT JJ NN . Cate Blanchett won a 2005 Best Supporting Actress Academy Award for The Aviator , and this year received a supporting nomination for her role in Notes On A Scandal . NNP NNP VBD DT CD JJS VBG NNP NNP NNP IN DT NNP , CC DT NN VBD DT JJ NN IN PRP$ NN IN NNP IN DT NNP . Steven Spielberg will direct the film , scheduled to begin shooting in June in Los Angeles and undisclosed international locations . NNP NNP MD VB DT NN , VBN TO VB VBG IN NNP IN NNP NNP CC JJ JJ NNS . Paramount Pictures will release Indy 4 worldwide on May 22 , 2008 . NNP NNP MD VB NNP CD NN IN NNP CD , CD . The United States has appealed to China to restore military ties , despite friction about U.S. arms sales to Taiwan . DT NNP NNPS VBZ VBN TO NNP TO VB JJ NNS , IN NN IN NNP NNS NNS TO NNP . Speaking to reporters at a security conference in Singapore Saturday , U.S. Defense Secretary Robert Gates said China 's decision to break off military-to-military contacts earlier this year could undercut regional stability . VBG TO NNS IN DT NN NN IN NNP NNP , NNP NNP NNP NNP NNP VBD NNP POS NN TO VB RP JJ NNS RBR DT NN MD VB JJ NN . Gates said it is clear interruptions in the U.S. military relationship with China will not change Washington 's policy toward Taiwan . NNP VBD PRP VBZ JJ NNS IN DT NNP JJ NN IN NNP MD RB VB NNP POS NN IN NNP . Beijing broke off military-to-military contacts after the Obama administration notified Congress in January of a plan to sell Taiwan up to $ 6.4 billion worth of arms . NNP VBD RP JJ NNS IN DT NNP NN VBD NNP IN NNP IN DT NN TO VB NNP IN TO $ CD CD NN IN NNS . China also refused a proposed visit by Gates during his trip to Asia . NNP RB VBD DT VBN NN IN NNP IN PRP$ NN TO NNP . Gates said the arms sales are not a threat , because Washington does not support independence for Taiwan . NNP VBD DT NNS NNS VBP RB DT NN , IN NNP VBZ RB VB NN IN NNP . The island nation has been able to attract foreign business and investment , especially in its offshore banking and tourism industries , with a surge in foreign direct investment in 2006 , attributed to the construction of several tourism projects . DT NN NN VBZ VBN JJ TO VB JJ NN CC NN , RB IN PRP$ JJ NN CC NN NNS , IN DT NN IN JJ JJ NN IN CD , VBN TO DT NN IN JJ NN NNS . Although crops such as bananas , mangos , and avocados continue to be grown for export , tourism provides Saint Lucia 's main source of income and the industry is the island 's biggest employer . IN NNS JJ IN NNS , NNS , CC NNS VBP TO VB VBN IN NN , NN VBZ NNP NNP POS JJ NN IN NN CC DT NN VBZ DT NN POS JJS NN . Tourism is the main source of foreign exchange , although tourism sector revenues declined with the global economic downturn as US and European travel dropped in 2009 . NNP VBZ DT JJ NN IN JJ NN , IN NN NN NNS VBD IN DT JJ JJ NN IN NNP CC JJ NN VBD IN CD . The manufacturing sector is the most diverse in the Eastern Caribbean area , and the government is trying to revitalize the banana industry , although recent hurricanes have caused exports to contract . DT NN NN VBZ DT RBS JJ IN DT NNP NNP NN , CC DT NN VBZ VBG TO VB DT NN NN , IN JJ NNS VBP VBN NNS TO NN . Saint Lucia is vulnerable to a variety of external shocks including volatile tourism receipts , natural disasters , and dependence on foreign oil . NNP NNP VBZ JJ TO DT NN IN JJ NNS VBG JJ NN NNS , JJ NNS , CC NN IN JJ NN . The public debt-to-GDP ratio is about 77 % and high debt servicing obligations constrain the KING administration 's ability to respond to adverse external shocks . DT JJ NN NN VBZ IN CD NN CC JJ NN VBG NNS VBP DT NNP NN POS NN TO VB TO JJ JJ NNS . Economic fundamentals remain solid , even though unemployment needs to be reduced . JJ NNS VBP JJ , RB IN NN VBZ TO VB VBN . Although the regional hub for trade and finance in East Africa , Kenya has been hampered by corruption and by reliance upon several primary goods whose prices have remained low . IN DT JJ NN IN NN CC NN IN NNP NNP , NNP VBZ VBN VBN IN NN CC IN NN IN JJ JJ NNS WP$ NNS VBP VBN JJ . In 1997 , the IMF suspended Kenya 's Enhanced Structural Adjustment Program due to the government 's failure to maintain reforms and curb corruption . IN CD , DT NNP VBD NNP POS NNP NNP NNP NNP JJ TO DT NN POS NN TO VB NNS CC VB NN . The IMF , which had resumed loans in 2000 to help Kenya through a drought , again halted lending in 2001 when the government failed to institute several anticorruption measures . DT NNP , WDT VBD VBN NNS IN CD TO VB NNP IN DT NN , RB VBD NN IN CD WRB DT NN VBD TO VB JJ NN NNS . In the key December 2002 elections , Daniel Arap MOI 's 24-year-old reign ended , and a new opposition government took on the formidable economic problems facing the nation . IN DT JJ NNP CD NNS , NNP NNP NNP POS JJ NN VBN , CC DT JJ NN NN VBD IN DT JJ JJ NNS VBG DT NN . After some early progress in rooting out corruption and encouraging donor support , the KIBAKI government was rocked by high-level graft scandals in 2005 and 2006 . IN DT JJ NN IN VBG RP NN CC JJ NN NN , DT NNP NN VBD VBN IN JJ NN NNS IN CD CC CD . In 2006 , the World Bank and IMF delayed loans pending action by the government on corruption . IN CD , DT NNP NNP CC NNP VBD NNS VBG NN IN DT NN IN NN . The international financial institutions and donors have since resumed lending , despite little action on the government 's part to deal with corruption . DT JJ JJ NNS CC NNS VBP IN VBN NN , IN JJ NN IN DT NN POS NN TO VB IN NN . Post-election violence in early 2008 , coupled with the effects of the global financial crisis on remittance and exports , reduced GDP growth to 1.7 in 2008 , but the economy rebounded in 2009 - 10 . NN NN IN JJ CD , VBN IN DT NNS IN DT JJ JJ NN IN NN CC NNS , VBD NN NN TO CD IN CD , CC DT NN VBD IN CD IN CD . Originally settled by Arawak Indians , Curacao was seized by the Dutch in 1634 along with the neighboring island of Bonaire . RB VBN IN NNP NNS , NNP VBD VBN IN DT NNS IN CD IN IN DT JJ NN IN NNP . Once the center of the Caribbean slave trade , Curacao was hard hit by the abolition of slavery in 1863 . RB DT NN IN DT NNP NN NN , NNP VBD RB VBN IN DT NN IN NN IN CD . Its prosperity ( and that of neighboring Aruba ) was restored in the early 20th century with the construction of the Isla Refineria to service the newly discovered Venezuelan oil fields . PRP$ NN LRB CC IN IN JJ NNP RRB VBD VBN IN DT JJ JJ NN IN DT NN IN DT NNP NNP TO VB DT RB VBN JJ NN NNS . In 1954 , Curacao and several other Dutch Caribbean possessions were reorganized as the Netherlands Antilles , part of the Kingdom of the Netherlands . IN CD , NNP CC JJ JJ JJ NNP NNS VBD VBN IN DT NNP NNPS , NN IN DT NNP IN DT NNP . In referenda in 2005 and 2009 , the citizens of Curacao voted to become a self-governing country within the Kingdom of the Netherlands . IN NN IN CD CC CD , DT NNS IN NNP VBD TO VB DT JJ NN IN DT NNP IN DT NNP . The change in status became effective in October of 2010 with the dissolution of the Netherlands Antilles . DT NN IN NN VBD JJ IN NNP IN CD IN DT NN IN DT NNP NNPS . Bulgaria , a former Communist country that entered the EU on 1 January 2007 , averaged more than 6 % annual growth from 2004 to 2008 , driven by significant amounts of foreign direct investment and consumption . NNP , DT JJ JJ NN WDT VBD DT NNP IN CD NNP CD , VBD JJR IN CD NN JJ NN IN CD TO CD , VBN IN JJ NNS IN JJ JJ NN CC NN . Successive governments have demonstrated a commitment to economic reforms and responsible fiscal planning , but the global downturn sharply reduced domestic demand , exports , capital inflows , and industrial production . JJ NNS VBP VBN DT NN TO JJ NNS CC JJ JJ NN , CC DT JJ NN RB VBN JJ NN , NNS , NN NNS , CC JJ NN . GDP contracted by approximately 5 % in 2009 , and stagnated in 2010 , despite a significant recovery in exports . NN VBD IN RB CD NN IN CD , CC VBD IN CD , IN DT JJ NN IN NNS . The economy is expected to grow modestly in 2011 , however . DT NN VBZ VBN TO VB RB IN CD , RB . Corruption in the public administration , a weak judiciary , and the presence of organized crime remain significant challenges . NN IN DT JJ NN , DT JJ NN , CC DT NN IN JJ NN VBP JJ NNS . A CHARCOAL-BURNER carried on his trade in his own house . DT NN VBD IN PRP$ NN IN PRP$ JJ NN . One day he met a friend , a Fuller , and entreated him to come and live with him , saying that they should be far better neighbors and that their housekeeping expenses would be lessened . CD NN PRP VBD DT NN , DT NN , CC VBD PRP TO VB CC VB IN PRP , VBG IN PRP MD VB RB JJR NNS CC IN PRP$ NN NNS MD VB VBN . The Fuller replied , ' The arrangement is impossible as far as I am concerned , for whatever I should whiten , you would immediately blacken again with your charcoal . ' DT NN VBD , `` DT NN VBZ JJ RB RB IN PRP VBP JJ , IN WDT PRP MD VB , PRP MD RB VB RB IN PRP$ NN . `` Like will draw like . NN MD VB NN . A HEIFER saw an Ox hard at work harnessed to a plow , and tormented him with reflections on his unhappy fate in being compelled to labor . DT NN VBD DT NNP JJ IN NN VBD TO DT NN , CC VBD PRP IN NNS IN PRP$ JJ NN IN VBG VBN TO NN . Shortly afterwards , at the harvest festival , the owner released the Ox from his yoke , but bound the Heifer with cords and led him away to the altar to be slain in honor of the occasion . RB RB , IN DT NN NN , DT NN VBD DT NNP IN PRP$ NN , CC VBN DT NNP IN NNS CC VBD PRP RB TO DT NN TO VB VBN IN NN IN DT NN . The Ox saw what was being done , and said with a smile to the Heifer : ' For this you were allowed to live in idleness , because you were presently to be sacrificed . ' DT NNP VBD WP VBD VBG VBN , CC VBD IN DT NN TO DT NNP : `` IN DT PRP VBD VBN TO VB IN NN , IN PRP VBD RB TO VB VBN . `` A PEASANT had in his garden an Apple-Tree which bore no fruit but only served as a harbor for the sparrows and grasshoppers . DT NN VBD IN PRP$ NN DT NN WDT VBD DT NN CC RB VBD IN DT NN IN DT NNS CC NNS . He resolved to cut it down , and taking his axe in his hand , made a bold stroke at its roots . PRP VBD TO VB PRP RB , CC VBG PRP$ NN IN PRP$ NN , VBD DT JJ NN IN PRP$ NNS . The grasshoppers and sparrows entreated him not to cut down the tree that sheltered them , but to spare it , and they would sing to him and lighten his labors . DT NNS CC NNS VBD PRP RB TO VB RP DT NN WDT VBD PRP , CC TO VB PRP , CC PRP MD VB TO PRP CC VB PRP$ NNS . He paid no attention to their request , but gave the tree a second and a third blow with his axe . PRP VBD DT NN TO PRP$ NN , CC VBD DT NN DT JJ CC DT JJ NN IN PRP$ NN . When he reached the hollow of the tree , he found a hive full of honey . WRB PRP VBD DT NN IN DT NN , PRP VBD DT JJ JJ IN NN . Having tasted the honeycomb , he threw down his axe , and looking on the tree as sacred , took great care of it . VBG VBN DT NN , PRP VBD RP PRP$ NN , CC VBG IN DT NN IN JJ , VBD JJ NN IN PRP . Self-interest alone moves some men . NNP RB VBZ DT NNS . A DOG passing over a stream on a plank saw his reflection in the water . DT NN VBG IN DT NN IN DT NN VBD PRP$ NN IN DT NN . ' You ugly brute ! ' he cried ; ' how dare you look at me in that insolent way . ' `` PRP RB JJ . `` PRP VBD ; `` WRB JJ PRP VBP IN PRP IN DT JJ NN . `` He made a grab in the water , and , getting hold of what he supposed was the other dog 's lip , lifted out a fine piece of meat which a butcher 's boy had dropped into the stream . PRP VBD DT NN IN DT NN , CC , VBG NN IN WP PRP VBD VBD DT JJ NN POS NN , VBD RP DT JJ NN IN NN WDT DT NN POS NN VBD VBN IN DT NN . An Ass once found a Lion 's skin which the hunters had left out in the sun to dry . DT NN RB VBD DT NN POS NN WDT DT NNS VBD VBN RP IN DT NN TO VB . He put it on and went towards his native village . PRP VBD PRP IN CC VBD IN PRP$ JJ NN . All fled at his approach , both men and animals , and he was a proud Ass that day . DT VBD IN PRP$ NN , DT NNS CC NNS , CC PRP VBD DT JJ NN DT NN . In his delight he lifted up his voice and brayed , but then every one knew him , and his owner came up and gave him a sound cudgelling for the fright he had caused . IN PRP$ NN PRP VBD RP PRP$ NN CC VBD , CC RB DT CD VBD PRP , CC PRP$ NN VBD RB CC VBD PRP DT NN VBG IN DT NN PRP VBD VBN . And shortly afterwards a Fox came up to him and said : ' Ah , I knew you by your voice . ' CC RB VBZ DT NNP VBD RP TO PRP CC VBD : `` UH , PRP VBD PRP IN PRP$ NN . `` Fine clothes may disguise , but silly words will disclose a fool . JJ NNS MD VB , CC JJ NNS MD VB DT NN . An engineer thinks that his equations are an approximation to reality . DT NN VBZ IN PRP$ NNS VBP DT NN TO NN . A physicist thinks reality is an approximation to his equations . DT NN VBZ NN VBZ DT NN TO PRP$ NNS . A mathematician does n't care . DT NN VBZ RB VB . There were 11 people - ten men and one woman - hanging onto a rope that came down from a helicopter . EX VBD CD NNS : JJ NNS CC CD NN IN VBG IN DT NN WDT VBD RP IN DT NN . They all decided that one person should get off , because if they did n't , the rope would break and everyone would die . PRP DT VBD IN CD NN MD VB RP , IN IN PRP VBD RB , DT NN MD VB CC DT MD VB . No one could decide who should go , so finally , the woman gave a really touching speech saying how she would give up her life to save the others , because women were used to giving up things for their husbands and children , giving in to men , and not receiving anything in return . DT NN MD VB WP MD VB , RB RB , DT NN VBD DT RB JJ NN VBG WRB PRP MD VB RP PRP$ NN TO VB DT NNS , IN NNS VBD VBN TO VBG RP NNS IN PRP$ NNS CC NNS , VBG IN TO NNS , CC RB VBG DT IN NN . When she finished speaking , all the men started clapping . WRB PRP VBD NN , PDT DT NNS VBD VBG . Palestinian militants have fired rockets at Israel after Israeli troops killed a senior Islamic Jihad commander . JJ NNS VBP VBN NNS IN NNP IN JJ NNS VBD DT JJ JJ NN NN . The rockets caused no casualties . DT NNS VBD DT NNS . A short time later Israeli forces fired artillery at the area in Gaza the militants used to launch the rockets . DT JJ NN RB JJ NNS VBD NN IN DT NN IN NNP DT NNS VBN TO VB DT NNS . Islamic Jihad had vowed to avenge the killing earlier Monday of Luay Saadi and his deputy in the West Bank . NNP NNP VBD VBN TO VB DT NN JJR NNP IN NNP NNP CC PRP$ NN IN DT NNP NNP . Israel says Mr. Saadi was behind several attacks that have killed at least 10 Israelis since February . NNP VBZ NNP NNP VBD IN JJ NNS WDT VBP VBN IN JJS CD NNS IN NNP . Meanwhile , the Palestinian Authority says it plans to immediately disarm members of another militant group in the West Bank , the al-Aqsa Martyrs Brigade . RB , DT JJ NNP VBZ PRP VBZ TO RB VB NNS IN DT JJ NN IN DT NNP NNP , DT NNP NNP NNP . The chief of police in the West Bank , Taher Zaid , says most members of the militant group will be trained to join Palestinian security forces . DT NN IN NN IN DT NNP NNP , NNP NNP , VBZ JJS NNS IN DT JJ NN MD VB VBN TO VB JJ NN NNS . But leading al-Aqsa commanders say they doubt their men will turn in their weapons until Israel leaves the West Bank . CC VBG JJ NNS VBP PRP VBP PRP$ NNS MD VB IN PRP$ NNS IN NNP VBZ DT NNP NNP . French President Jacques Chirac has offered his support for Croatia 's aspirations for European Union membership . JJ NNP NNP NNP VBZ VBN PRP$ NN IN NNP POS NNS IN NNP NNP NN . Mr. Chirac told visiting Croatian Prime Minister Ivo Sander that the schedule for membership talks should be respected . NNP NNP VBD VBG JJ NNP NNP NNP NNP IN DT NN IN NN NNS MD VB VBN . Croatia 's EU membership negotiations began in October after an eight-month delay due to the country 's failure to capture a top suspect wanted by the United Nations war crimes tribunal . NNP POS NNP NN NNS VBD IN NNP IN DT JJ NN JJ TO DT NN POS NN TO VB DT JJ NN VBN IN DT NNP NNPS NN NNS JJ . Mr. Chirac says Croatia 's rapid economic development and progress in reforms justified the start of the country 's membership negotiations with the bloc . NNP NNP VBZ NNP POS JJ JJ NN CC NN IN NNS VBN DT NN IN DT NN POS NN NNS IN DT NN . Italian police have arrested 36 people during protests in Rome ahead of the summit of leaders of the world 's eight major industrial countries . JJ NNS VBP VBN CD NNS IN NNS IN NNP RB IN DT NN IN NNS IN DT NN POS CD JJ JJ NNS . Hooded demonstrators clashed with police and set fires on streets near one of the capital 's universities Tuesday . JJ NNS VBN IN NNS CC VBN NNS IN NNS IN CD IN DT NN POS NNS NNP . Police said citizens of France , Germany and Poland were among those arrested . NNP VBD NNS IN NNP , NNP CC NNP VBD IN DT VBN . Separately Tuesday , police in the town of L'Aquila seized clubs from five French protesters close to where the summit is being held . RB NNP , NN IN DT NN IN NNP VBD NNS IN CD JJ NNS RB TO WRB DT NN VBZ VBG VBN . They were not arrested . PRP VBD RB VBN . About 15,000 police officers have been deployed to L'Aquila to provide security during the three-day gathering , beginning Wednesday . IN CD NNS NNS VBP VBN VBN TO NNP TO VB NN IN DT JJ NN , VBG NNP . The G8 summit was originally scheduled to take place on an island , La Maddalena , off the Sardinian coast . DT NNP NN VBD RB VBN TO VB NN IN DT NN , NNP NNP , IN DT JJ NN . Officials moved it to L'Aquila after an April earthquake shook the area and killed almost 300 people . NNS VBD PRP TO NNP IN DT NNP NN VBD DT NN CC VBD RB CD NNS . Italian officials said the transfer was aimed at giving the area an economic boost . JJ NNS VBD DT NN VBD VBN IN VBG DT NN DT JJ NN . Al-Qaida 's deputy leader has criticized the West for publishing cartoons depicting the Prophet Muhammad as a terrorist . NNP POS NN NN VBZ VBN DT NNP IN VBG NNS VBG DT NNP NNP IN DT NN . In a video broadcast Saturday on the Arab television channel al-Jazeera , Ayman al-Zawahri called the cartoons an insult and urged an economic boycott against nations where they have been published . IN DT NN NN NNP IN DT JJ NN NN NNP , NNP NNP VBD DT NNS DT NN CC VBD DT JJ NN IN NNS WRB PRP VBP VBN VBN . He also called on Hamas , which won Palestinian elections in January , to reject peace deals between the Palestinian Authority and Israel . PRP RB VBD IN NNP , WDT VBD JJ NNS IN NNP , TO VB NN NNS IN DT JJ NNP CC NNP . The videotape was the second by al-Zawahri aired by al-Jazeera in six weeks . DT NN VBD DT JJ IN NNP VBN IN NNP IN CD NNS . A tape that aired in January called on President Bush to admit defeat in Iraq and Afghanistan . DT NN WDT VBD IN NNP VBD IN NNP NNP TO VB NN IN NNP CC NNP . Mexican President Felipe Calderon is appealing for clean drinking water , canned food and other emergency aid for the storm-damaged Gulf state of Veracruz . JJ NNP NNP NNP VBZ VBG IN JJ NN NN , VBN NN CC JJ NN NN IN DT JJ NNP NN IN NNP . Hurricane Karl tore across the Mexico 's Yucatan peninsula late last week as a strong Category 3 storm , killing at least 14 people and leaving thousands homeless . NNP NNP VBD IN DT NNP POS NNP NN RB JJ NN IN DT JJ NNP CD NN , VBG IN JJ CD NNS CC VBG NNS JJ . The president visited Veracruz Monday , touring flooded villages and meeting with civil defense officials and storm victims . DT NN VBD NNP NNP , VBG VBN NNS CC NN IN JJ NN NNS CC NN NNS . Looting has been reported in flood-stricken areas . NN VBZ VBN VBN IN JJ NNS . Local newspapers and television have shown pictures of people running from stores with bags of food and cases of beer . JJ NNS CC NN VBP VBN NNS IN NNS VBG IN NNS IN NNS IN NN CC NNS IN NN . Police have arrested 11 people . NNS VBP VBN CD NNS . A leftist Colombian guerrilla leader has been killed in a clash with military troops in the South American country . DT JJ JJ NN NN VBZ VBN VBN IN DT NN IN JJ NNS IN DT JJ JJ NN . Officials say Humberto Valbuena , a unit commander for the Revolutionary Armed Forces of Colombia , or FARC , was killed Monday in the remote jungles of Caqueta state . NNS VBP NNP NNP , DT NN NN IN DT JJ JJ NNS IN NNP , CC NNP , VBD VBN NNP IN DT JJ NNS IN NNP NN . At least three other rebels were killed in the clash . IN JJS CD JJ NNS VBD VBN IN DT NN . Colombia 's long-running conflict pits FARC and a smaller leftist rebel group against government forces and right-wing paramilitary fighters . NNP POS JJ NN NNS NNP CC DT JJR JJ NN NN IN NN NNS CC JJ JJ NNS . Thousands of people are killed annually in the conflict . NNS IN NNS VBP VBN RB IN DT NN . Fire has destroyed a historic church in Chicago , Illinois , that has been called the birthplace of gospel music . NN VBZ VBN DT JJ NN IN NNP , NNP , WDT VBZ VBN VBN DT NN IN NN NN . Firefighters were called Friday afternoon to Pilgrim Baptist Church . NNS VBD VBN NNP NN TO NNP NNP NNP . A neighbor said construction workers were on the church 's roof when the fire started , but a fire department spokesman said authorities did not know how the blaze started . DT NN VBD NN NNS VBD IN DT NN POS NN WRB DT NN VBD , CC DT NN NN NN VBD NNS VBD RB VB WRB DT NN VBD . There were no immediate reports of injuries . EX VBD DT JJ NNS IN NNS . The building was constructed in 1890 as a synagogue . DT NN VBD VBN IN CD IN DT NN . Pilgrim Baptist Church took it over in 1922 . NNP NNP NNP VBD PRP RP IN CD . Under the leadership of its choir director , Thomas Dorsey , the church was a center for the development of gospel music . IN DT NN IN PRP$ NN NN , NNP NNP , DT NN VBD DT NN IN DT NN IN NN NN . Among the artists who sang at the church was Mahalia Jackson . IN DT NNS WP VBD IN DT NN VBD NNP NNP . Iraqi officials say two bomb attacks in the capital Saturday have killed at least eight people . JJ NNS VBP CD NN NNS IN DT NN NNP VBP VBN IN JJS CD NNS . The first bomb struck a crowded market , killing at least three people . DT JJ NN VBD DT JJ NN , VBG IN JJS CD NNS . Police say the device was meant to target police . NNS VBP DT NN VBD VBN TO VB NNS . Hours later , a car bomb in downtown Baghdad killed five people . NNS RB , DT NN NN IN NN NNP VBD CD NNS . Also Saturday , the U.S. military announced that an American soldier was killed by a bomb Friday during a patrol west of Kirkuk . RB NNP , DT NNP NN VBD IN DT JJ NN VBD VBN IN DT NN NNP IN DT JJ NN IN NNP . It said one soldier was wounded . PRP VBD CD NN VBD VBN . The U.S. military says it has carried out a series of raids following Wednesday 's killing of terrorist leader Abu Musab al-Zarqawi , in hopes of dismantling his al-Qaida in Iraq network . DT NNP NN VBZ PRP VBZ VBN RP DT NN IN NNS VBG NNP POS NN IN JJ NN NNP NNP NNP , IN NNS IN VBG PRP$ NNP IN NNP NN . The Jordanian-born Zarqawi was said to have personally taken part in beheadings of hostages and other killings . DT JJ NNP VBD VBN TO VB RB VBN NN IN NNS IN NNS CC JJ NNS . He was killed when the U.S. military dropped two 227-kilogram bombs on his safe house near Baquba , northeast of Baghdad . PRP VBD VBN WRB DT NNP NN VBD CD JJ NNS IN PRP$ JJ NN IN NNP , NN IN NNP . Wall Street enjoyed an upswing Thursday , despite mixed economic news concerning consumer spending and jobless claims . NNP NNP VBD DT NN NNP , IN JJ JJ NN VBG NN NN CC JJ NNS . The Dow Jones Industrial Average gained nearly 190 points to close at 13010 . DT NNP NNP NNP NNP VBD RB CD NNS TO VB IN CD . The surge in the stock markets comes as investors await a key report . DT NN IN DT NN NNS VBZ IN NNS VBP DT JJ NN . VOA 's Robert Raffaele has more . NNP POS NNP NNP VBZ RBR . India 's new Foreign Minister Pranab Mukherjee and his Pakistani counterpart , Khursheed Kasuri , will meet on Monday in New Delhi to review the stalled peace process between the two nuclear rivals . NNP POS JJ NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , MD VB IN NNP IN NNP NNP TO VB DT VBN NN NN IN DT CD JJ NNS . Mukherjee told reporters Friday that Kasuri will be in India over the weekend on a private visit and that the meeting had been fixed for Monday . NNP VBD NNS NNP IN NNP MD VB IN NNP IN DT NN IN DT JJ NN CC IN DT NN VBD VBN VBN IN NNP . India suspended the almost three-year-old peace process following a July terrorist attack on Mumbai 's train network that killed nearly 200 people and wounded 800 others . NNP VBD DT RB JJ NN NN VBG DT NNP JJ NN IN NNP POS NN NN WDT VBD RB CD NNS CC VBD CD NNS . New Delhi accused Pakistan 's spy agency of involvement in the attack , but Islamabad denied any involvement and demanded evidence . NNP NNP VBD NNP POS NN NN IN NN IN DT NN , CC NNP VBD DT NN CC VBD NN . Last week , the two sides agreed to set up a three-member panel to share information about counter-terrorism activities and a pact to reduce risks of nuclear accidents . JJ NN , DT CD NNS VBD TO VB RP DT JJ NN TO VB NN IN NN NNS CC DT NN TO VB NNS IN JJ NNS . Israel has charged three Arabs with spying for Syria and planning to kidnap a Syrian pilot who defected to Israel . NNP VBZ VBN CD NNS IN VBG IN NNP CC VBG TO VB DT JJ NN WP VBD TO NNP . Two of the men are from a northern Druze village , Majdal Shams , in the Golan Heights , near the Syrian border . CD IN DT NNS VBP IN DT JJ NNP NN , NNP NNP , IN DT NNP NNP , IN DT JJ NN . The other is an Israeli citizen . DT NN VBZ DT JJ NN . An indictment says the men passed details and photographs of Israeli army installations to a Syrian agent . DT NN VBZ DT NNS VBD NNS CC NNS IN JJ NN NNS TO DT JJ NN . It also says they gathered information on a Syrian pilot who defected to Israel in 1989 . PRP RB VBZ PRP VBD NN IN DT JJ NN WP VBD TO NNP IN CD . Prosecutors allege the men drew up a plan to kidnap the pilot . NNS VBP DT NNS VBD RP DT NN TO VB DT NN . Israeli media say Druze residents recently rioted when investigators searched one of the suspects ' home . JJ NNS VBP NNP NNS RB VBD WRB NNS VBD CD IN DT NNS POS NN . Police in Sri Lanka say 300 prisoners took advantage of Sunday 's massive earthquake to make their escape from a high-security jail . NNS IN NNP NNP VBP CD NNS VBD NN IN NNP POS JJ NN TO VB PRP$ NN IN DT JJ NN . Authorities say the inmates fled after a tidal wave caused by the quake destroyed their prison , a 16th century Dutch-built fort in a southern coastal town Matara . NNS VBP DT NNS VBD IN DT JJ NN VBN IN DT NN VBD PRP$ NN , DT JJ NN JJ NN IN DT JJ JJ NN NNP . Reuters news agency reports a similar prison break in Indonesia 's Aceh province . NNP NN NN VBZ DT JJ NN NN IN NNP POS NNP NN . Police there say 200 prisoners fled after a tsunami destroyed the walls of the facility . NNS RB VBP CD NNS VBD IN DT NN VBD DT NNS IN DT NN . The leaders of Nigeria and the Congo Republic emerged from all-night talks with Sudan 's rebel leaders Sunday , with no real progress made on resolving the conflict in Darfur . DT NNS IN NNP CC DT NNP NNP VBD IN JJ NNS IN NNP POS NN NNS NNP , IN DT JJ NN VBN IN VBG DT NN IN NNP . After meeting all night in the Nigerian capital Abuja , President Olusegun Obasanjo and Congo Republic 's President Denis Sassou Nguesso pledged to hold further talks with the Sudanese groups . IN VBG DT NN IN DT JJ NN NNP , NNP NNP NNP CC NNP NNP POS NNP NNP NNP NNP VBD TO VB JJ NNS IN DT JJ NNS . The talks are aimed at ending more than three years of civil war before the April 30 deadline set by the African Union for a peace settlement . DT NNS VBP VBN IN VBG JJR IN CD NNS IN JJ NN IN DT NNP CD NN VBN IN DT NNP NNP IN DT NN NN . Peace talks between Sudan 's government and rebel groups have gone on for more than 18 months without any breakthroughs . NN NNS IN NNP POS NN CC NN NNS VBP VBN IN IN JJR IN CD NNS IN DT NNS . The fighting , involving rebels , government forces and Khartoum-backed Janjaweed militias in Darfur , has killed about 1,80,000 people and has left another two million homeless . DT NN , VBG NNS , NN NNS CC JJ NNP NNS IN NNP , VBZ VBN IN CD NNS CC VBZ VBN DT CD CD NN . Sheriff 's investigators have conducted a search of Michael Jackson 's Neverland Ranch in California . NNP POS NNS VBP VBN DT NN IN NNP NNP POS NNP NNP IN NNP . California authorities filed child molestation charges against the pop music star in December 2003 . NNP NNS VBD NN NN NNS IN DT NN NN NN IN NNP CD . The charges involve an unidentified child under the age of 14 . DT NNS VBP DT JJ NN IN DT NN IN CD . A sheriff 's spokesman confirmed Friday 's search , but declined to give any further details . DT NN POS NN VBD NNP POS NN , CC VBD TO VB DT JJ NNS . Jackson 's Neverland Ranch is a theme-park-like estate about 160 kilometers northwest of Los Angeles . NNP POS NNP NNP VBZ DT JJ NN IN CD NNS JJS IN NNP NNP . Michael Jackson has pleaded not guilty to child molestation , conspiracy and administering an intoxicating agent . NNP NNP VBZ VBN RB JJ TO NN NN , NN CC VBG DT JJ NN . His trial is scheduled to being January 31 . PRP$ NN VBZ VBN TO VBG NNP CD . Iraq 's two main political coalitions broke off talks Monday aimed at ending a five-month-long political deadlock . NNP POS CD JJ JJ NNS VBD RP NNS NNP VBN IN VBG DT JJ JJ NN . A spokeswoman for the Sunni-backed Iraqiya alliance , Maysoon al-Damaluji , said the group ended negotiations . DT NN IN DT JJ NNP NN , NNP NNP , VBD DT NN VBD NNS . She claimed the Shi'ite-dominated State of Law alliance labeled them as a Sunni bloc rather than cross-sectarian . PRP VBD DT JJ NN IN NNP NN VBD PRP IN DT NNP NN RB IN JJ . The fight over ethnic political standing comes as a group of activist organizations filed a lawsuit Monday against parliament speaker Fouad Massum . DT NN IN JJ JJ NN VBZ IN DT NN IN NN NNS VBD DT NN NNP IN NN NN NNP NNP . The groups are accusing him of violating the constitution by ordering the newly elected parliament , which convened 14 Jun , to remain in an open-ended session until a political agreement is reached . DT NNS VBP VBG PRP IN VBG DT NN IN VBG DT RB VBN NN , WDT VBD CD NN , TO VB IN DT JJ NN IN DT JJ NN VBZ VBN . Former Prime Minister Ayad Allawi 's Iraqiya alliance won the poll with 91 seats in the 7 March vote , while Prime Minister Nouri al-Maliki 's State of Law alliance captured 89 . JJ JJ NN NNP NNP POS NNP NN VBD DT NN IN CD NNS IN DT CD NNP NN , IN NNP NNP NNP NNP POS NN IN NN NN VBD CD . Both groups were far short of the 163-seat majority needed to govern . DT NNS VBD RB JJ IN DT JJ NN VBN TO VB . Millions of Americans could lose their homes this year and next as the rate of foreclosures across the United States rises to the highest in decades . NNS IN NNS MD VB PRP$ NNS DT NN CC JJ IN DT NN IN NNS IN DT NNP NNPS VBZ TO DT JJS IN NNS . The foreclosure crisis has worsened despite ongoing efforts by some lenders and the government to help borrowers manage their mortgage payments . DT NN NN VBZ VBN IN JJ NNS IN DT NNS CC DT NN TO VB NNS VB PRP$ NN NNS . VOA 's Chris Simkins reports on how one homeowner in [ the southern US state of ] Virginia is fighting to keep his home . NNP POS NNP NNPS VBZ IN WRB CD NN IN LRB DT JJ NNP NN IN RRB NNP VBZ VBG TO VB PRP$ NN . Israeli police say Prime Minister Ehud Olmert will be questioned by police this week for a second time in a corruption investigation against him . JJ NNS VBP NNP NNP NNP NNP MD VB VBN IN NN DT NN IN DT JJ NN IN DT NN NN IN PRP . Police spokesman Micky Rosenfeld said Tuesday that the anti-fraud unit will question Mr. Olmert Friday . NNS NN NNP NNP VBD NNP IN DT JJ NN MD VB NNP NNP NNP . Police asked the prime minister questions for more than an hour on May 2 . NNS VBD DT JJ NN NNS IN JJR IN DT NN IN NNP CD . Prosecutors accuse Mr. Olmert of taking hundreds of thousands of dollars in cash from U.S. businessman Morris Talansky before he became prime minister . NNS VBP NNP NNP IN VBG NNS IN NNS IN NNS IN NN IN NNP NN NNP NNP IN PRP VBD JJ NN . Police are trying to determine whether Mr. Olmert gave any favors to the businessman for the payments . NNS VBP VBG TO VB IN NNP NNP VBD DT NNS TO DT NN IN DT NNS . Mr. Olmert and the businessman say the funds were legal contributions to the Israeli leader 's election campaigns . NNP NNP CC DT NN VBP DT NNS VBD JJ NNS TO DT JJ NN POS NN NNS . The prime minister says he will resign if indicted . DT JJ NN VBZ PRP MD VB IN VBN . North Korean leader Kim Jong-il has met with a high-ranking Chinese delegation that delivered a message of congratulations from Chinese President President Hu Jintao . JJ JJ NN NNP NNP VBZ VBN IN DT JJ JJ NN WDT VBD DT NN IN NNS IN JJ NNP NNP NNP NNP . The North 's state media reported Sunday that the Chinese delegation was led by Deputy Prime Minister Wu Yi . DT NNP POS NN NNS VBD NNP IN DT JJ NN VBD VBN IN NNP NNP NNP NNP NNP . China 's state media said she expressed the Chinese president 's congratulatory wishes on the 60th anniversary of the founding of the North 's Workers ' Party of Korea . NNP POS NN NNS VBD PRP VBD DT JJ NN POS JJ NNS IN DT JJ NN IN DT NN IN DT NNP POS NNS POS NN IN NNP . Xinhua said the Chinese delegation is in the North for a three-day goodwill visit . NNP VBD DT JJ NN VBZ IN DT NNP IN DT JJ NN NN . Neither Chinese nor North Korean media mentioned the nuclear crisis in their reports . DT JJ CC JJ JJ NNS VBD DT JJ NN IN PRP$ NNS . North Korea agreed last month during six-nation talks in Beijing to abandon its nuclear weapons program in return for economic aid , energy assistance and security assurances . NNP NNP VBD JJ NN IN JJ NNS IN NNP TO VB PRP$ JJ NNS NN IN NN IN JJ NN , NN NN CC NN NNS . But Pyongyang later said it first wants light-water nuclear reactors for civilian energy production . CC NNP RB VBD PRP RB VBZ JJ JJ NNS IN JJ NN NN . The fifth round of six-nation talks is scheduled for early next month in Beijing . DT JJ NN IN JJ NNS VBZ VBN IN JJ JJ NN IN NNP . South Africa 's president says his government will look into new reports on Zimbabwe 's elections , which detail serious irregularities . NNP NNP POS NN VBZ PRP$ NN MD VB IN JJ NNS IN NNP POS NNS , WDT VBP JJ NNS . Thabo Mbeki told parliament Thursday the government would study the reports from both Zimbabwe 's main opposition party ( MDC ) and the independent Zimbabwe Electoral Support Network . NNP NNP VBD NN NNP DT NN MD VB DT NNS IN DT NNP POS JJ NN NN LRB NNP RRB CC DT JJ NNP NNP NNP NNP . He says his government will then address whatever issues are raised . PRP VBZ PRP$ NN MD RB VB WDT NNS VBP VBN . On Wednesday , Mr. Mbeki 's government said it was satisfied Zimbabwe 's parliamentary elections , won by the ruling party , reflected the will of the people . IN NNP , NNP NNP POS NN VBD PRP VBD JJ NNP POS JJ NNS , VBN IN DT NN NN , VBD DT NN IN DT NNS . Observers from South Africa endorsed the poll following the March 31 election . NNS IN NNP NNP VBD DT NN VBG DT NNP CD NN . And a delegation of monitors from the Southern African Development Community also said the vote was credible . CC DT NN IN NNS IN DT JJ NNP NNP NNP RB VBD DT NN VBD JJ . The United States and Britain have said the elections were not free or fair . DT NNP NNPS CC NNP VBP VBN DT NNS VBD RB JJ CC JJ . Hurricane Gustav is moving across the Caribbean toward southwestern Haiti , where it is expected to make landfall later Tuesday . NNP NNP VBZ VBG IN DT NNP IN JJ NNP , WRB PRP VBZ VBN TO VB NN RB NNP . U.S. forecasters say the storm 's winds strengthened on Tuesday morning to nearly 150 kilometers per hour . NNP NNS VBP DT NN POS NNS VBD IN NNP NN TO RB CD NNS IN NN . Gustav is expected to produce up to 38 centimeters of rain in some areas , possibly causing dangerous flash floods and mudslides . NNP VBZ VBN TO VB RP TO CD NNS IN NN IN DT NNS , RB VBG JJ NN NNS CC NNS . The National Hurricane Center in Miami upgraded Gustav to a hurricane early Tuesday . DT NNP NNP NNP IN NNP VBD NNP TO DT NN RB NNP . A hurricane warning is in effect for parts of Haiti and the Dominican Republic , where Tropical Storm Fay claimed an estimated 50 lives less than two weeks ago . DT NN NN VBZ IN NN IN NNS IN NNP CC DT NNP NNP , WRB JJ NN NNP VBD DT VBN CD NNS JJR IN CD NNS RB . Fay has weakened a tropical depression , causing heavy rains in the eastern United States . NNP VBZ VBN DT JJ NN , VBG JJ NNS IN DT JJ NNP NNPS . Forecasters expect Hurricane Gustav to pass just south or east of Cuba on Wednesday . NNS VBP NNP NNP TO VB RB RB CC RB IN NNP IN NNP . Cuba and Jamaica have issued hurricane watches . NNP CC NNP VBP VBN NN NNS . The head of Iran 's nuclear agency says the Islamic Republic must be allowed to produce nuclear fuel domestically . DT NN IN NNP POS JJ NN VBZ DT NNP NNP MD VB VBN TO VB JJ NN RB . Gholamreza Aghazadeh 's remark to reporters Saturday in Tehran effectively rules out a compromise proposal diplomats say the Europeans were considering offering Iran . NNP NNP POS NN TO NNS NNP IN NNP RB VBZ RP DT NN NN NNS VBP DT NNS VBD VBG VBG NNP . He spoke in Tehran after meeting with Russian envoy Igor Ivanov . PRP VBD IN NNP IN VBG IN JJ NN NNP NNP . The proposal , which the United States has denied being a part of , would permit Tehran to carry out an early stage of nuclear fuel production , but move uranium enrichment to Russia . DT NN , WDT DT NNP NNP VBZ VBN VBG DT NN IN , MD VB NNP TO VB RP DT JJ NN IN JJ NN NN , CC VB NN NN TO NNP . Both Russian and Iranian officials have refused to confirm whether Mr. Ivanov presented any new proposal to Iran . DT JJ CC JJ NNS VBP VBN TO VB IN NNP NNP VBD DT JJ NN TO NNP . Western nations are concerned that Iran wants to enrich uranium to high levels for use as fuel for nuclear weapons . JJ NNS VBP VBN IN NNP VBZ TO VB NN TO JJ NNS IN NN IN NN IN JJ NNS . Iran denies this , saying it seeks only to produce electricity . NNP VBZ DT , VBG PRP VBZ RB TO VB NN . Officials of The Hague war crimes tribunal have questioned a prominent Kosovo politician about his role as a leader of ethnic Albanian guerrilla forces during the conflict in the Serbian province NNS IN DT NNP NN NNS JJ VBP VBN DT JJ NNP NN IN PRP$ NN IN DT NN IN JJ JJ NN NNS IN DT NN IN DT JJ NN Officials say Ramush Haradinaj spent about 90 minutes with investigators who questioned him in Pristina at the headquarters of the United Nations administration . NNS VBP NNP NNP VBD IN CD NNS IN NNS WP VBD PRP IN NNP IN DT NN IN DT NNP NNP NN . No details of the questioning have been released . DT NNS IN DT VBG VBP VBN VBN . Mr. Haradinaj was a top leader of the ethnic Albanian Kosovo Liberation Army during the conflict of the late 1990s . NNP NNP VBD DT JJ NN IN DT JJ JJ NNP NNP NNP IN DT NN IN DT JJ NNS . He later moved into local politics , founding the Alliance for the Future of Kosovo , a party that came in third in last month 's Kosovo assembly elections . PRP RB VBD IN JJ NNS , VBG DT NNP IN DT NN IN NNP , DT NN WDT VBD IN JJ IN JJ NN POS NNP NN NNS . Serbian authorities have accused him of responsibility for numerous murders in and other atrocities during the Kosovo conflict . JJ NNS VBP VBN PRP IN NN IN JJ NNS IN CC JJ NNS IN DT NNP NN . Hundreds of mourners gathered in an eastern Sri Lankan city to pay final respects to a top Tamil Tiger rebel , who was gunned down earlier this week . NNS IN NNS VBN IN DT JJ NNP NNP NN TO VB JJ NNS TO DT JJ NNP NNP NN , WP VBD VBN RB RBR DT NN . The government intensified security in the city of Batticaloa to avert any outbreak of violence during Thursday 's funeral ceremony . DT NN VBD NN IN DT NN IN NNP TO VB DT NN IN NN IN NNP POS NN NN . Regional Tamil Tiger political chief , E. Kousalyan along with five aides were killed in an ambush Monday night on a jungle road near Batticaloa . NNP NNP NNP JJ NN , NNP NNP IN IN CD NNS VBD VBN IN DT JJ NNP NN IN DT NN NN IN NNP . The rebels blame government-backed paramilitary forces for the attack and warned that it could disrupt post-tsunami reconstruction and efforts to resume peace talks . DT NNS VBP JJ JJ NNS IN DT NN CC VBD IN PRP MD VB JJ NN CC NNS TO VB NN NNS . The Sri Lankan government denied any involvement , condemned the killings and urged all sides to work for the peace process . DT NNP NNP NN VBD DT NN , VBD DT NNS CC VBD DT NNS TO VB IN DT NN NN . Venezuela has signed a $ 1.3 billion agreement with China to purchase 18 oil tankers to facilitate the south American country 's expanding Asian market . NNP VBZ VBN DT $ CD CD NN IN NNP TO VB CD NN NNS TO VB DT JJ JJ NN POS VBG JJ NN . A spokesman for Venezuela 's state-run oil company says the agreement also calls for China to help build shipyards in Venezuela and train its workers . DT NN IN NNP POS JJ NN NN VBZ DT NN RB VBZ IN NNP TO VB VB NNS IN NNP CC VB PRP$ NNS . The oil company says it hopes to expand its total fleet of tankers to at least 42 ships Venezuelan officials say the nation currently sells about 15 percent of its oil and other petroleum products to China and would like to increase that to about 45 percent by 2012 . DT NN NN VBZ PRP VBZ TO VB PRP$ JJ NN IN NNS TO IN JJS CD NNS JJ NNS VBP DT NN RB VBZ IN CD NN IN PRP$ NN CC JJ NN NNS TO NNP CC MD VB TO VB DT TO IN CD NN IN CD . Venezuela is among the world 's largest oil exporters . NNP VBZ IN DT NN POS JJS NN NNS . Venezuelan President Hugo Chavez has said he wants to increase trade with China - and rely less on the United States as a customer for its oil . JJ NNP NNP NNP VBZ VBN PRP VBZ TO VB NN IN NNP : CC VBP RBR IN DT NNP NNPS IN DT NN IN PRP$ NN . Iran has rejected as ' unfounded ' U.S. accusations linking President-elect Mahmoud Ahmadinejad to the 1979 take-over of the U.S. embassy in Tehran . NNP VBZ VBN IN `` JJ `` NNP NNS VBG NNP NNP NNP TO DT CD NN IN DT NNP NN IN NNP . A foreign ministry spokesman said late Friday that Mr. Ahmadinejad played no role in the embassy seizure . DT JJ NN NN VBD JJ NNP IN NNP NNP VBD DT NN IN DT JJ NN . He added that U.S. comments just days before Mr. Ahmadinejad takes office stem from what he termed ' U.S. disillusionment with Iran 's independent policies . ' PRP VBD IN NNP NNS RB NNS IN NNP NNP VBZ NN VBD IN WP PRP VBD `` NNP NN IN NNP POS JJ NNS . `` On Thursday , a White House spokesman said officials believe Mr. Ahmadinejad was a leader in the student movement that organized the embassy takeover . IN NNP , DT NNP NNP NN VBD NNS VBP NNP NNP VBD DT NN IN DT NN NN WDT VBD DT JJ NN . Some former U.S. hostages insist the president-elect was one of the actual hostage-takers , but a CIA analysis of an old photo at the U.S. embassy has concluded the man pictured holding hostages is not Mr. Ahmadinejad . DT JJ NNP NNS VBP DT NN VBD CD IN DT JJ NNS , CC DT NNP NN IN DT JJ NN IN DT NNP NN VBZ VBN DT NN VBD VBG NNS VBZ RB NNP NNP . One of Russia 's most popular fashion designers has opened her first clothing store in the U.S. CD IN NNP POS RBS JJ NN NNS VBZ VBN PRP$ JJ NN NN IN DT NNP Teenager Kira Plastinina 's designs are already a hit in her homeland and now she is hoping to find success in America 's fashion capital New York City . NN NNP NNP POS NNS VBP RB DT NN IN PRP$ NN CC RB PRP VBZ VBG TO VB NN IN NNP POS NN NN NNP NNP NNP . VOA 's Elena Mikhailova introduces us to the young lady who is creating a stir in the fashion industry . NNP POS NNP NNP VBZ PRP TO DT JJ NN WP VBZ VBG DT NN IN DT NN NN . A court in Houston , Texas in the southwestern United States , has convicted three U.S. citizens of involvement in a human trafficking ring responsible for the deaths of 19 people in 2003 . DT NN IN NNP , NNP IN DT JJ NNP NNPS , VBZ VBN CD NNP NNS IN NN IN DT JJ NN NN JJ IN DT NNS IN CD NNS IN CD . Victor Sanchez Rodriguez was found guilty of 17 of the 20 smuggling charges against him . NNP NNP NNP VBD VBN JJ IN CD IN DT CD NN NNS IN PRP . His wife , Emma Rodriguez , was convicted of 14 smuggling counts , and her half-sister , Rosa Sarrata Gonzalez , was convicted of one smuggling count . PRP$ NN , NNP NNP , VBD VBN IN CD NN NNS , CC PRP$ NN , NNP NNP NNP , VBD VBN IN CD NN NN . The three were participants in an operation carrying more than 70 illegal immigrants in a tractor-trailer rig from southern Texas , near the border with Mexico , to Houston . DT CD VBD NNS IN DT NN VBG JJR IN CD JJ NNS IN DT NN NN IN JJ NNP , IN DT NN IN NNP , TO NNP . Seventeen people died during the trip of dehydration , overheating and suffocation . CD NNS VBD IN DT NN IN NN , NN CC NN . Two more died later . CD JJR VBD RB . Eleven other people have been indicted in the case . CD JJ NNS VBP VBN VBN IN DT NN . The Houston Chronicle reports sentencing is set for May . DT NNP NNP VBZ NN VBZ VBN IN NNP . Syria 's President Bashar al-Assad says Syria and Israel can live side-by-side in peace , accepting each other 's existence . NNP POS NNP NNP NNP VBZ NNP CC NNP MD VB JJ IN NN , VBG DT NN POS NN . In an interview broadcast Monday by the British Broadcasting Corporation , Mr. Assad said he is ready to hold talks with Israel but that an impartial arbiter is needed to mediate between the two sides . IN DT NN NN NNP IN DT NNP NNP NNP , NNP NNP VBD PRP VBZ JJ TO VB NNS IN NNP CC IN DT JJ NN VBZ VBN TO VB IN DT CD NNS . The Syrian leader expressed doubts the United States is prepared to play this role , saying Washington lacks both the will and the vision to pursue peace in the Middle East . DT JJ NN VBD NNS DT NNP NNPS VBZ VBN TO VB DT NN , VBG NNP VBZ DT DT NN CC DT NN TO VB NN IN DT NNP NNP . Mr. Assad 's remarks are in sharp contrast with comments he made Sunday , when he said Israel has given up on the Middle East peace process , forcing Syria to remain prepared for war . NNP NNP POS NNS VBP IN JJ NN IN NNS PRP VBD NNP , WRB PRP VBD NNP VBZ VBN RP IN DT NNP NNP NN NN , VBG NNP TO VB JJ IN NN . Israeli officials denied having plans to attack Syria , and called Mr. Assad 's comments a cause for concern . JJ NNS VBD VBG NNS TO VB NNP , CC VBD NNP NNP POS NNS DT NN IN NN . Libyan leader Moammar Gadhafi says the West has not properly compensated Libya for dismantling its weapons of mass destruction programs , so countries like Iran and North Korea will not follow Libya 's example . JJ NN NNP NNP VBZ DT NNP VBZ RB RB VBN NNP IN VBG PRP$ NNS IN NN NN NNS , RB NNS IN NNP CC NNP NNP MD RB VB NNP POS NN . Colonel Gadhafi made the remark in an interview with the BBC Friday , the day Libya marked the 30th anniversary of the establishment of the country 's Jamahiriyah , or ' State of the Masses , ' the political system created by Gadhafi that in theory allows the people to exercise power through popular committees . NNP NNP VBD DT NN IN DT NN IN DT NNP NNP , DT NN NNP VBD DT JJ NN IN DT NN IN DT NN POS NN , CC `` NN IN DT NNS , `` DT JJ NN VBN IN NNP IN IN NN VBZ DT NNS TO VB NN IN JJ NNS . In a speech marking the anniversary , the Libyan leader said his country opened up to the outside world after years of isolation and sanctions . IN DT NN VBG DT NN , DT JJ NN VBD PRP$ NN VBD RP TO DT JJ NN IN NNS IN NN CC NNS . Colonel Gadhafi was for decades considered an international pariah for his alleged backing of terrorism and pursuing nuclear weapons . NNP NNP VBD IN NNS VBN DT JJ NN IN PRP$ JJ NN IN NN CC VBG JJ NNS . But he later rejected terrorism and in 2003 abandoned Libya 's nuclear weapons program , which led to the normalization of ties with the West . CC PRP RB VBD NN CC IN CD VBD NNP POS JJ NNS NN , WDT VBD TO DT NN IN NNS IN DT NNP . President Bush has left the Summit of the Americas in Mar del Plata , Argentina , as discussions over the summit 's final statement continue hours longer than planned . NNP NNP VBZ VBN DT NN IN DT NNPS IN NNP NNP NNP , NNP , IN NNS IN DT NN POS JJ NN VBP NNS RB IN VBN . Mr. Bush left Saturday for his next stop in Brazil , having stayed three hours extra as the talks dragged on . NNP NNP VBD NNP IN PRP$ JJ NN IN NNP , VBG VBN CD NNS JJ IN DT NNS VBN IN . Members of the U.S. delegation have stayed behind in Mar del Plata to continue negotiations . NNS IN DT NNP NN VBP VBN IN IN NNP NNP NNP TO VB NNS . The summit 's final statement is expected to discuss poverty and employment . DT NN POS JJ NN VBZ VBN TO VB NN CC NN . But delegates have clashed over inclusion of a call to renew talks on an inter-American free trade region supported by Mr. Bush . CC NNS VBP VBN IN NN IN DT NN TO VB NNS IN DT JJ JJ NN NN VBN IN NNP NNP . On the streets of Mar del Plata , city workers are cleaning up debris from anti-Bush protests that turned violent Friday . IN DT NNS IN NNP NNP NNP , NN NNS VBP VBG RP NN IN JJ NNS WDT VBD JJ NNP . Police arrested more than 60 people , but said there were no major injuries . NNS VBD JJR IN CD NNS , CC VBD EX VBD DT JJ NNS . India 's former foreign minister accused of skimming money from the Iraqi oil-for-food program has resigned from the cabinet , saying he does not want to give the opposition an excuse to stall parliament . NNP POS JJ JJ NN VBN IN VBG NN IN DT JJ NN NN VBZ VBN IN DT NN , VBG PRP VBZ RB VB TO VB DT NN DT NN TO VB NN . Natwar Singh 's decision came after a weeklong blocking of parliamentary proceedings by the opposition , demanding that he step down . NNP NNP POS NN VBD IN DT NN VBG IN JJ NNS IN DT NN , VBG IN PRP VB RB . Mr. Singh , a minister without portfolio , announced his resignation Tuesday , a day after he met party chief Sonia Gandhi and spoke by telephone to Prime Minister Manmohan Singh , who is in Moscow . NNP NNP , DT NN IN NN , VBD PRP$ NN NNP , DT NN IN PRP VBD NN NN NNP NNP CC VBD IN NN TO NNP NNP NNP NNP , WP VBZ IN NNP . He said he is resigning even though he is innocent . PRP VBD PRP VBZ VBG RB IN PRP VBZ JJ . Natwar Singh was dropped as foreign minister last month over allegations he and the Congress party profited from the United Nations program aimed at helping Iraqi civilians cope with the impact of international sanctions against the regime of Saddam Hussein . NNP NNP VBD VBN IN JJ NN JJ NN IN NNS PRP CC DT NNP NN VBD IN DT NNP NNPS NN VBN IN VBG JJ NNS VB IN DT NN IN JJ NNS IN DT NN IN NNP NNP . Opposition leaders in Ivory Coast have rejected an African Union recommendation that President Laurent Gbagbo remain in power after his mandate expires later this month . NN NNS IN NNP NNP VBP VBN DT NNP NNP NN IN NNP NNP NNP VBP IN NN IN PRP$ NN VBZ RB DT NN . Members of Ivory Coast 's opposition bloc , known as the G7 , are demanding a transitional government to replace Mr. Gbagbo . NNS IN NNP NNP POS NN NN , VBN IN DT NNP , VBP VBG DT JJ NN TO VB NNP NNP . Last week , the African Union announced its recommendation that President Gbagbo stay in office for another 12 months after his mandate expires at the end of October . JJ NN , DT NNP NNP VBD PRP$ NN IN NNP NNP NN IN NN IN DT CD NNS IN PRP$ NN VBZ IN DT NN IN NNP . Mr. Gbagbo says he has the constitutional right to stay in power if elections can not be organized . NNP NNP VBZ PRP VBZ DT JJ NN TO VB IN NN IN NNS MD RB VB VBN . Under a recent peace deal , elections were set for October 30 . IN DT JJ NN NN , NNS VBD VBN IN NNP CD . They were postponed after the government and rebels failed to implement key steps to organize the vote . PRP VBD VBN IN DT NN CC NNS VBD TO VB JJ NNS TO VB DT NN . Despite several accords , Ivory Coast remains divided between rebels in the north and the southern-based government . IN JJ NNS , NNP NNP VBZ VBN IN NNS IN DT NN CC DT JJ NN . The Spanish football club Sevilla has won its first European football title by beating Middlesbrough of England , 4-0 , in the UEFA Cup final in Eindhoven , the Netherlands . DT JJ NN NN NNP VBZ VBN PRP$ JJ JJ NN NN IN VBG NNP IN NNP , CD , IN DT NNP NNP JJ IN NNP , DT NNP . Enzo Maresca scored two goals for the Spaniards , in the 78th and 84th minutes . NNP NNP VBD CD NNS IN DT NNS , IN DT CD CC CD NNS . Luis Fabiano opened the scoring in the 27th minute , sending the ball in off the post after taking a cross from Daniel . NNP NNP VBD DT VBG IN DT JJ NN , VBG DT NN IN IN DT NN IN VBG DT NN IN NNP . Frederic Kanoute scored the fourth goal when he tapped in a rebound just one minute from time . NNP NNP VBD DT JJ NN WRB PRP VBD IN DT NN RB CD NN IN NN . Middlesbrough could not find the offense it needed to rebound from the deficit . NNP MD RB VB DT NN PRP VBD TO VB IN DT NN . The match was the first of two Anglo-Spanish finals . DT NN VBD DT NN IN CD JJ NNS . Barcelona faces Arsenal next Wednesday in the Champions ' League final at the Stade de France outside Paris . NNP VBZ JJ JJ NNP IN DT NNS POS NNP JJ IN DT NNP IN NNP IN NNP . Ukraine 's new leaders have stopped short of rejecting membership in a new Moscow-led economic bloc of four ex-Soviet republics , but say the plan could hurt their European Union aspirations . NNP POS JJ NNS VBP VBN JJ IN VBG NN IN DT JJ JJ JJ NN IN CD JJ NNS , CC VBP DT NN MD VB PRP$ JJ NNP NNS . After meetings Monday with Russia 's visiting foreign minister , Sergei Lavrov , Ukraine 's President Viktor Yuschenko and foreign minister , Boris Tarsyuk , made clear the importance of strategic relations with their giant eastern neighbor . IN NNS NNP IN NNP POS VBG JJ NN , NNP NNP , NNP POS NNP NNP NNP CC JJ NN , NNP NNP , VBD JJ DT NN IN JJ NNS IN PRP$ JJ JJ NN . But they also emphasized their commitment to Ukraine 's becoming a full member of the EU and of NATO . CC PRP RB VBD PRP$ NN TO NNP POS VBG DT JJ NN IN DT NNP CC IN NNP . Mr. Yushchenko 's predecessor , Leonid Kuchma , agreed to Ukraine 's joining the new bloc , which includes Russia , Belarus and Kazakhstan , but Kiev 's participation is now in doubt under its new pro-Western president . NNP NNP POS NN , NNP NNP , VBD TO NNP POS VBG DT JJ NN , WDT VBZ NNP , NNP CC NNP , CC NNP POS NN VBZ RB IN NN IN PRP$ JJ JJ NN . Mr. Yuschenko is to meet EU leaders in Brussels this week . NNP NNP VBZ TO VB NNP NNS IN NNP DT NN . EU officials say they are not ready to offer Ukraine membership , but have proposed a plan to strengthen ties . NNP NNS VBP PRP VBP RB JJ TO VB NNP NN , CC VBP VBN DT NN TO VB NNS . Croatia is entering the final stage of its bid to join the European Union , resuming talks Wednesday that had been stalled over a border dispute with Slovenia . NNP VBZ VBG DT JJ NN IN PRP$ NN TO VB DT NNP NNP , VBG NNS NNP WDT VBD VBN VBN IN DT NN NN IN NNP . The two sides opened negotiations on the last three of 35 chapters in the application process Wednesday . DT CD NNS VBD NNS IN DT JJ CD IN CD NNS IN DT NN NN NNP . The final talks cover competition law , judicial reform and foreign policy . DT JJ NNS VBP NN NN , JJ NN CC JJ NN . Croatia 's accession talks were interrupted in late 2008 when EU member Slovenia blocked further negotiations until a decades-long maritime border deal was in place granting Slovenia direct access to the Adriatic Sea . NNP POS NN NNS VBD VBN IN JJ CD WRB NNP NN NNP VBD JJ NNS IN DT JJ NN NN NN VBD IN NN VBG NNP JJ NN TO DT NNP NNP . The obstacle was removed earlier this month when Slovenians passed a referendum to let an international panel settle the issue , which could force Croatia to give up some territory . DT NN VBD VBN RBR DT NN WRB NNS VBD DT NN TO VB DT JJ NN VB DT NN , WDT MD VB NNP TO VB RP DT NN . Croatian authorities have said an EU accession treaty could be signed in early 2011 . JJ NNS VBP VBN DT NNP NN NN MD VB VBN IN JJ CD . The maritime border dispute began when Croatia and Slovenia gained independence during the 1991 breakup of the former Yugoslavia . DT JJ NN NN VBD WRB NNP CC NNP VBD NN IN DT CD NN IN DT JJ NNP . U.S. and Iraqi forces have launched the second operation targeting insurgents in western Anbar province in the past two days . NNP CC JJ NNS VBP VBN DT JJ NN VBG NNS IN JJ NNP NN IN DT JJ CD NNS . About 1,000 troops began Operation Dagger Saturday in a remote lake region northwest of Baghdad . IN CD NNS VBD NNP NNP NNP IN DT JJ NN NN NN IN NNP . Debris from US airstrike targeting insurgents in Karabilah , June 12 , 2005 U.S. military officials say the operation is aimed at finding hidden weapon stashes and insurgent camps . NNP IN NNP NN VBG NNS IN NNP , NNP CD , CD NNP JJ NNS VBP DT NN VBZ VBN IN VBG JJ NN NNS CC JJ NNS . This the same area where U.S. and Iraqi forces killed a large number of insurgents in March . DT DT JJ NN WRB NNP CC JJ NNS VBD DT JJ NN IN NNS IN NNP . Earlier , military officials said about 50 insurgents have been killed 100 captured near the town of Karabilah in a separate operation launched Friday . RB , JJ NNS VBD IN CD NNS VBP VBN VBN CD VBN IN DT NN IN NNP IN DT JJ NN VBN NNP . Troops found four Iraqi hostages beaten and chained to a wall in a bunker . NNP VBD CD JJ NNS VBN CC VBN TO DT NN IN DT NN . Authorities in Morocco and Turkey have arrested two men blamed for unleashing a computer worm that disrupted networks across the United States last week . NNS IN NNP CC NNP VBP VBN CD NNS VBN IN VBG DT NN NN WDT VBD NNS IN DT NNP NNPS JJ NN . The U.S. Federal Bureau of Investigation said Friday it had received news of the arrests of 18-year-old Farid Essebar in Morocco and 21-year-old Atilla Ekici in Turkey . DT NNP NNP NNP IN NNP VBD NNP PRP VBD VBN NN IN DT NNS IN JJ NNP NNP IN NNP CC JJ NNP NNP IN NNP . An FBI official says Mr. Essebar is suspecting of creating the worm and selling it to Mr. Ekici . DT NNP NN VBZ NNP NNP VBZ VBG IN VBG DT NN CC VBG PRP TO NNP NNP . The two are also blamed for a similar computer attack earlier this year . DT CD VBP RB VBN IN DT JJ NN NN RBR DT NN . The worm shut down computers at several U.S. media companies and other firms last week . DT NN VBD RP NNS IN JJ NNP NNS NNS CC JJ NNS JJ NN . U.S. officials said they worked closely with authorities in the two countries and the maker of the affected computer systems , Microsoft , to locate the men . NNP NNS VBD PRP VBD RB IN NNS IN DT CD NNS CC DT NN IN DT JJ NN NNS , NNP , TO VB DT NNS . The FBI says the two suspects face prosecution in their native countries . DT NNP VBZ DT CD NNS VBP NN IN PRP$ JJ NNS . The U.S. military in Afghanistan says a mortar attack at a base in eastern Paktika province has killed two U.S. military personnel , with eight others wounded . DT NNP NN IN NNP VBZ DT NN NN IN DT NN IN JJ NNP NN VBZ VBN CD NNP JJ NNS , IN CD NNS VBD . A military statement says the mortar landed in the base near Shkin , near the Pakistani border , as the victims were preparing to unload supplies from a Chinook helicopter . DT JJ NN VBZ DT NN VBD IN DT NN IN NNP , IN DT JJ NN , IN DT NNS VBD VBG TO VB NNS IN DT NNP NN . Also Wednesday , U.S.-led coalition forces arrested five suspected Taleban insurgents in connection with an attack on an oil tanker that killed two Pakistanis . RB NNP , JJ NN NNS VBD CD JJ NNP NNS IN NN IN DT NN IN DT NN NN WDT VBD CD NNS . Police in the Afghan border town of Spin Boldak said the five suspects were apprehended one day after the two Pakistani nationals were killed in the same area . NNS IN DT JJ NN NN IN NNP NNP VBD DT CD NNS VBD VBN CD NN IN DT CD JJ NNS VBD VBN IN DT JJ NN . The Taleban and their militant allies have stepped up attacks in recent months , often hitting soft targets associated with coalition forces and the Afghan government of President Hamid Karzai . DT NNP CC PRP$ JJ NNS VBP VBN RP NNS IN JJ NNS , RB VBG JJ NNS VBN IN NN NNS CC DT JJ NN IN NNP NNP NNP . Candidates for upcoming Palestinian legislative elections began signing up Saturday . NNS IN VBG JJ JJ NNS VBD VBG RP NNP . The race is likely to see the ruling Fatah party face a strong challenge from the Islamic group , Hamas . DT NN VBZ JJ TO VB DT NN NNP NN VBP DT JJ NN IN DT NNP NN , NNP . Voting primaries this past week for Prime Minister Mahmoud Abbas ' Fatah party were beset with disruptions from gunmen , some with links to Fatah . NN NNS DT JJ NN IN NNP NNP NNP NNP POS NNP NN VBD VBN IN NNS IN NNS , DT IN NNS TO NNP . Fatah 's younger generation is challenging the old guard , many of whom are seen as tainted by corruption . NNP POS JJR NN VBZ VBG DT JJ NN , NN IN WP VBP VBN IN VBN IN NN . Israel and the United States are worried Hamas will do well in the January poll , threatening the peace process . NNP CC DT NNP NNPS VBP VBN NNP MD VB RB IN DT NNP NN , VBG DT NN NN . In a separate development , Mr. Abbas met Pope Benedict XVI at the Vatican Saturday , and invited the pontiff to visit Jerusalem , considered the holy land by followers of Judaism , Christianity and Islam . IN DT JJ NN , NNP NNP VBD NNP NNP NNP IN DT NNP NNP , CC VBD DT NN TO VB NNP , VBD DT JJ NN IN NNS IN NNP , NNP CC NNP . Elsewhere , Palestinian officials say Israeli troops shot dead two Palestinians in separate incidents in the Gaza Strip . RB , JJ NNS VBP JJ NNS VBD JJ CD NNS IN JJ NNS IN DT NNP NNP . Hundreds of Libyan opposition members have concluded a two-day conference in London to discuss strategies for ousting Moammar Gadhafi from power . NNS IN JJ NN NNS VBP VBN DT JJ NN IN NNP TO VB NNS IN VBG NNP NNP IN NN . The opposition leaders are calling on the United Nations to push for regime change in Libya and for the restoration of Libya 's constitution . DT NN NNS VBP VBG IN DT NNP NNPS TO VB IN NN NN IN NNP CC IN DT NN IN NNP POS NN . The leaders said Sunday they intend to form a provisional government that would last no longer than one year , then launch a democratic constitutional government built on cultural pluralism and a rotating presidency . DT NNS VBD NNP PRP VBP TO VB DT JJ NN WDT MD VB RB JJR IN CD NN , RB VB DT JJ JJ NN VBN IN JJ NN CC DT VBG NN . The United States re-established limited diplomatic ties with Libya last year after Colonel Gadhafi announced Tripoli would abandon its chemical and nuclear weapons programs . DT NNP NNPS VBD JJ JJ NNS IN NNP JJ NN IN NNP NNP VBD NNP MD VB PRP$ NN CC JJ NNS NNS . Colonel Gadhafi seized power during a 1969 political coup . NNP NNP VBD NN IN DT CD JJ NN . The United States Army has charged the former head of the interrogation center at Abu Ghraib prison in Iraq for his alleged involvement in the abuse of detainees . DT NNP NNP NNP VBZ VBN DT JJ NN IN DT NN NN IN NNP NNP NN IN NNP IN PRP$ JJ NN IN DT NN IN NNS . The Army announced Friday that Lt. Col. Steven L. Jordan would face 12 counts , including cruelty and maltreatment , dereliction of duty , and interfering with the abuse investigation . DT NNP VBD NNP IN NNP NNP NNP NNP NNP MD VB CD NNS , VBG NN CC NN , NN IN NN , CC VBG IN DT NN NN . Colonel Jordan is the highest-ranking officer to face criminal charges stemming from Abu Ghraib . NNP NNP VBZ DT JJ NN TO VB JJ NNS VBG IN NNP NNP . He ran the interrogation center at the prison in late 2003 , a time when U.S. military leaders wanted information from detainees to combat the rising Iraqi insurgency . PRP VBD DT NN NN IN DT NN IN JJ CD , DT NN WRB NNP JJ NNS VBD NN IN NNS TO VB DT VBG JJ NN . So far , only a handful of low-ranking soldiers have been prosecuted for abuses at Abu Ghraib . RB RB , RB DT NN IN JJ NNS VBP VBN VBN IN NNS IN NNP NNP . Officers above Jordan 's rank have been reprimanded and relieved of command , but none has faced criminal charges . NNS IN NNP POS NN VBP VBN VBN CC VBN IN NN , CC NN VBZ VBN JJ NNS . A U.S. senator is asking Americans whether a current proposal to overhaul the American health-care system would actually make things better . DT NNP NN VBZ VBG NNS IN DT JJ NN TO VB DT JJ NN NN MD RB VB NNS JJR . Speaking in the weekly Republican address Saturday , Senator Mike Johanns from the state of Nebraska said the proposal could negatively impact ' each and every ' American . VBG IN DT JJ NNP NN NNP , NNP NNP NNP IN DT NN IN NNP VBD DT NN MD RB VB `` DT CC DT `` NN . President Barack Obama , from the majority Democratic Party , is pushing for a bill to be passed by the end of the year . NNP NNP NNP , IN DT NN NNP NNP , VBZ VBG IN DT NN TO VB VBN IN DT NN IN DT NN . He says health care costs are spiraling out of control and making it difficult for small businesses to compete . PRP VBZ NN NN NNS VBP VBG IN IN NN CC VBG PRP JJ IN JJ NNS TO VB . He says too many Americans are not insured or go bankrupt to pay for health care . PRP VBZ RB JJ NNS VBP RB VBN CC VB JJ TO VB IN NN NN . Proposals to reform the system are currently under discussion in both the Senate and the House of Representatives . NNS TO VB DT NN VBP RB IN NN IN DT DT NNP CC DT NNP IN NNPS . Republicans say the proposals are too expensive and will not improve the current system . NNS VBP DT NNS VBP RB JJ CC MD RB VB DT JJ NN . Negotiators from the Sudanese government and two Darfur rebel groups are expected in Nigeria 's capital , Abuja , for a new round of peace talks to begin on Thursday . NNS IN DT JJ NN CC CD NNP NN NNS VBP VBN IN NNP POS NN , NNP , IN DT JJ NN IN NN NNS TO VB IN NNP . The African Union will mediate the talks , aimed at ending a two-and-a-half-year conflict in Sudan 's western Darfur region . DT NNP NNP MD VB DT NNS , VBN IN VBG DT JJ NN IN NNP POS JJ NNP NN . Several previous rounds have failed . JJ JJ NNS VBP VBN . The last talks in June stalled over rebel demands that Chad not be allowed to help mediate the negotiations . DT JJ NNS IN NNP VBD IN NN NNS WDT VBP RB VB VBN TO VB VB DT NNS . A ceasefire agreement has also been repeatedly violated . DT JJ NN VBZ RB VBN RB VBN . Last week , the United Nations said there have been many reports in Darfur of banditry , looting , alleged attacks on villages and continued fighting . JJ NN , DT NNP NNPS VBD EX VBP VBN JJ NNS IN NNP IN NN , VBG , JJ NNS IN NNS CC JJ NN . The conflict pits rebels of African descent against pro-government Arab militiamen . DT NN VBZ NNS IN JJ NN IN JJ JJ NNS . An estimated 1,80,000 people have been killed and 2 million others have been displaced . DT VBN CD NNS VBP VBN VBN CC CD CD NNS VBP VBN VBN . Former U.S. President Bill Clinton used a speech in Taiwan to stress the need for nations to depend more on one another . JJ NNP NNP NNP NNP VBD DT NN IN NNP TO VB DT NN IN NNS TO VB RBR IN CD DT . Mr. Clinton arrived in Taipei late Sunday for a one-day visit that had prompted concern from China . NNP NNP VBD IN NNP JJ NNP IN DT JJ NN WDT VBD VBN NN IN NNP . In his speech at the city 's International Convention Center , the former president urged China and Taiwan to resolve their differences and work together peacefully . IN PRP$ NN IN DT NN POS NNP NNP NNP , DT JJ NN VBD NNP CC NNP TO VB PRP$ NNS CC VB RB RB . Before his arrival , Mr. Clinton told a Hong Kong newspaper group he supports Beijing 's one-China policy , which claims Taiwan as part of China . IN PRP$ NN , NNP NNP VBD DT NNP NNP NN NN PRP VBZ NNP POS NNP NN , WDT VBZ NNP IN NN IN NNP . The United States observes the policy and has no official diplomatic ties with Taiwan . DT NNP NNPS VBZ DT NN CC VBZ DT JJ JJ NNS IN NNP . Later Sunday , Mr. Clinton had dinner with President Chen Shui-bian . RB NNP , NNP NNP VBD NN IN NNP NNP NNP . On Monday he was expected to attend a book-signing for his autobiography , ' My Life , ' which he recently promoted in China and Japan . IN NNP PRP VBD VBN TO VB DT NN IN PRP$ NN , `` PRP$ NN , `` WDT PRP RB VBD IN NNP CC NNP . Pakistan has reiterated its support for resolving the row over Iran 's controversial nuclear program through dialogue , saying it opposes the use of force against its western neighbor . NNP VBZ VBN PRP$ NN IN VBG DT NN IN NNP POS JJ JJ NN IN NN , VBG PRP VBZ DT NN IN NN IN PRP$ JJ NN . Pakistani Foreign Minister Khursheed Mehmood Kasuri says he hopes talks between Iran and the European Union will lead to , in his words , ' an amicable solution . ' JJ JJ NNP NNP NNP NNP VBZ PRP VBZ NNS IN NNP CC DT NNP NNP MD VB TO , IN PRP$ NNS , `` DT JJ NN . `` He spoke during a meeting with his visiting Iranian counterpart , Manouchehr Mottaki . PRP VBD IN DT NN IN PRP$ VBG JJ NN , NNP NNP . Talks between Iran and EU negotiators aimed at persuading Tehran to stop enriching uranium collapsed in August but will resume later this month . NNS IN NNP CC NNP NNS VBN IN VBG NNP TO VB VBG NN VBD IN NNP CC MD VB RB DT NN . Pakistan has been one of few nations to defend Iran 's nuclear program from international criticism , saying all nations have a right to nuclear power . NNP VBZ VBN CD IN JJ NNS TO VB NNP POS JJ NN IN JJ NN , VBG DT NNS VBP DT NN TO JJ NN . Mr. Mottaki , who arrived in Pakistan Wednesday for a two-day visit , says he and Mr. Kasuri also discussed expanding economic cooperation and a proposed gas pipeline project . NNP NNP , WP VBD IN NNP NNP IN DT JJ NN , VBZ PRP CC NNP NNP RB VBD VBG JJ NN CC DT VBN NN NN NN . President Bush is to visit the western U.S. state of Arizona Monday to give a speech on illegal immigration . NNP NNP VBZ TO VB DT JJ NNP NN IN NNP NNP TO VB DT NN IN JJ NN . White House officials say Mr. Bush 's speech in Tucson will focus on border security , enforcement and a temporary worker program . NNP NNP NNS VBP NNP NNP POS NN IN NNP MD VB IN NN NN , NN CC DT JJ NN NN . He will travel to El~Paso , Texas on Tuesday to discuss the same issues . PRP MD VB TO NNP , NNP IN NNP TO VB DT JJ NNS . In January , the president proposed a temporary worker program that would match foreign workers with U.S. employers when no Americans can be found to fill the jobs . IN NNP , DT NN VBD DT JJ NN NN WDT MD VB JJ NNS IN NNP NNS WRB DT NNS MD VB VBN TO VB DT NNS . The immigrants would be allowed to work in the United States for up to six years . DT NNS MD VB VBN TO VB IN DT NNP NNPS IN RP TO CD NNS . Supporters of the proposal say it will create incentives for legal immigration and boost the economy . NNS IN DT NN VBP PRP MD VB NNS IN JJ NN CC VB DT NN . Critics of the program say it is a form of amnesty for people who enter the country illegally . NNS IN DT NN VBP PRP VBZ DT NN IN NN IN NNS WP VBP DT NN RB . World oil prices eased downward Friday but U.S. retail gasoline prices hit fresh record highs , which cut travel on the Independence Day holiday . NNP NN NNS VBD JJ NNP CC NNP JJ NN NNS VBD JJ NN NNS , WDT VBD NN IN DT NNP NNP NN . A barrel of oil for future delivery cost $ 144 in electronic trading in New York , a decline of about $ 2 from Thursday 's record high price . DT NN IN NN IN JJ NN VBD $ CD IN JJ NN IN NNP NNP , DT NN IN IN $ CD IN NNP POS NN JJ NN . A majority of analysts interviewed by the Bloomberg financial news service say oil prices are likely to rise next week because of concerns that Mideast tensions will continue and the dollar might weaken . DT NN IN NNS VBN IN DT NNP JJ NN NN VBP NN NNS VBP JJ TO VB JJ NN IN IN NNS IN JJ NNS MD VB CC DT NN MD VB . Oil is priced in dollars , so a lower value tends to raise the price of oil . NN VBZ VBN IN NNS , IN DT JJR NN VBZ TO VB DT NN IN NN . Soaring oil prices have pushed U.S. retail gasoline prices to a series of record highs . VBG NN NNS VBP VBN NNP JJ NN NNS TO DT NN IN NN NNS . The latest survey puts the average price at nearly $ 1.08 a liter ( $ 4.1 a gallon ) . DT JJS NN VBZ DT JJ NN IN RB $ CD DT NN LRB $ CD DT NN RRB . That is an increase of 30 cents a liter in the past year . DT VBZ DT NN IN CD NNS DT NN IN DT JJ NN . The death toll from violence in Sudan following the death of former rebel leader and Vice President John Garang has surpassed 100 . DT NN NN IN NN IN NNP VBG DT NN IN JJ JJ NN CC NNP NNP NNP NNP VBZ VBN CD . The International Committee of the Red Cross says 84 people have been killed in the capital city of Khartoum since Monday , when southern Sudanese began rioting after learning of Mr. Garang 's death in a helicopter crash Saturday . DT NNP NNP IN DT NNP NNP VBZ CD NNS VBP VBN VBN IN DT NN NN IN NNP IN NNP , WRB JJ NNS VBD VBG IN VBG IN NNP NNP POS NN IN DT NN NN NNP . Another 18 people have been killed in the southern city of Juba , Mr. Garang 's home base . DT CD NNS VBP VBN VBN IN DT JJ NN IN NNP , NNP NNP POS NN NN . The violence has forced scores of northern Muslim Arabs to flee Juba . DT NN VBZ VBN NNS IN JJ NNP NNS TO VB NNP . Mr. Garang led the mostly Christian and animist south in a 21-year-old civil war against the Muslim-dominated north . NNP NNP VBD DT RB JJ CC JJ NN IN DT JJ JJ NN IN DT JJ NN . He was sworn in as vice president just three weeks ago under a peace accord reached earlier this year . PRP VBD VBN IN IN NN NN RB CD NNS RB IN DT NN NN VBN RBR DT NN . The United States is urging Khartoum to increase efforts to end the violence . DT NNP NNPS VBZ VBG NNP TO VB NNS TO VB DT NN . Israeli Prime Minister-designate Tzipi Livni says she will form a new coalition government by Sunday or call for elections . JJ JJ NN NNP NNP VBZ PRP MD VB DT JJ NN NN IN NNP CC VB IN NNS . Livni announced the decision Thursday following talks with her centrist Kadima party . NNP VBD DT NN NNP VBG NNS IN PRP$ NN NNP NN . On Monday , President Shimon Peres granted Livni 's request for a two-week extension to negotiate a deal that would keep the existing ruling coalition intact . IN NNP , NNP NNP NNP VBD NNP POS NN IN DT JJ NN TO VB DT NN WDT MD VB DT VBG NN NN JJ . Livni reached a deal with the dovish Labor Party . NNP VBD DT NN IN DT JJ NNP NNP . But she has been unable to strike an agreement to keep the ultra-Orthodox Shas party on board , a move many observers , including political correspondent Gil Hoffman , say is key . CC PRP VBZ VBN JJ TO VB DT NN TO VB DT JJ NNP NN IN NN , DT NN JJ NNS , VBG JJ NN NNP NNP , VBP VBZ JJ . Polls indicate that if early elections are held , then Kadima would likely lose out to the hardline Likud party , denying Livni the chance to become Israel 's first female prime minister in more than 30 years . NNS VBP IN IN JJ NNS VBP VBN , RB NNP MD RB VB RP TO DT JJ NNP NN , VBG NNP DT NN TO VB NNP POS JJ JJ JJ NN IN JJR IN CD NNS . A Ukrainian court has temporarily suspended the results of this month 's presidential election pending review of an appeal filed by the losing candidate . DT JJ NN VBZ RB VBN DT NNS IN DT NN POS JJ NN VBG NN IN DT NN VBN IN DT JJ NN . The Supreme Administrative Court released a statement Wednesday saying the Central Election Commission ruling that declared Viktor Yanukovych the winner had been put on hold . DT NNP NNP NNP VBD DT NN NNP VBG DT NNP NNP NNP NN WDT VBD NNP NNP DT NN VBD VBN VBN IN NN . Defeated Ukrainian presidential candidate Yulia Tymoshenko has filed a lawsuit seeking to overturn the results of the February 7 vote . JJ JJ JJ NN NNP NNP VBZ VBN DT NN VBG TO VB DT NNS IN DT NNP CD NN . Ms. Tymoshenko , Ukraine 's current prime minister , says the election was rigged . NNP NNP , NNP POS JJ JJ NN , VBZ DT NN VBD VBN . She has refused to concede defeat . PRP VBZ VBN TO VB NN . The prime minister claims vote-rigging robbed her of 1 million votes in the runoff election . DT JJ NN VBZ NN VBD PRP IN CD CD NNS IN DT NN NN . Final results show her losing by nearly 8,88,000 votes . JJ NNS VBP PRP VBG IN RB CD NNS . Tuesday , Ukraine 's parliament set February 25 for the swearing in of President-elect Yanukovych . NNP , NNP POS NN VBD NNP CD IN DT NN IN IN JJ NNP . A majority of 238 lawmakers in the 450-seat parliament endorsed the date Tuesday . DT NN IN CD NNS IN DT JJ NN VBD DT NN NNP . But factions loyal to Ms. Tymoshenko boycotted the vote . CC NNS JJ TO NNP NNP VBD DT NN . U.S. stock markets are up about one percent following Friday 's congressional approval of a controversial measure to aid the battered financial sector . NNP NN NNS VBP RB IN CD NN VBG NNP POS JJ NN IN DT JJ NN TO VB DT JJ JJ NN . European markets gained between two and three percent by the close of trading . JJ NNS VBD IN CD CC CD NN IN DT NN IN NN . It was a different story in Asia , where Japan 's benchmark Nikkei index fell two percent , and Hong Kong 's Hang Seng index was down nearly three percent . PRP VBD DT JJ NN IN NNP , WRB NNP POS JJ NNP NN VBD CD NN , CC NNP NNP POS NNP NNP NN VBD RB RB CD NN . Georgia 's breakaway region of Abkhazia remains tense - a day after supporters of presidential candidate Sergei Bagapsh seized regional government offices . NNP POS JJ NN IN NNP VBZ JJ IN DT NN IN NNS IN JJ NN NNP NNP VBD JJ NN NNS . Crowds stormed the buildings in the capital , Sukhumi , Friday . NNS VBD DT NNS IN DT NN , NNP , NNP . Several people were injured , and one woman died of a gunshot wound . JJ NNS VBD VBN , CC CD NN VBD IN DT NN NN . Mr. Bagapsh blames the shooting on guards , while Abkhaz officials say Mr. Bagapsh 's supporters were responsible . NNP NNP VBZ DT NN IN NNS , IN NNP NNS VBP NNP NNP POS NNS VBD JJ . The region 's high court last month declared Mr. Bagapsh the winner of a disputed October presidential election , but then reversed itself and ordered a new vote . DT NN POS JJ NN JJ NN VBD NNP NNP DT NN IN DT JJ NNP JJ NN , CC RB VBD PRP CC VBD DT JJ NN . His supporters have rejected fresh elections . PRP$ NNS VBP VBN JJ NNS . Russia said Friday it will act if necessary to protect its interests . NNP VBD NNP PRP MD VB IN JJ TO VB PRP$ NNS . Tbilisi then accused Moscow of interfering in Georgia 's internal affairs - a charge Moscow rejects . NNP RB VBD NNP IN VBG IN NNP POS JJ NNS IN DT NN NNP VBZ . Abkhaz President Vladislav Ardzinba described the events Friday in the pro-Russian enclave as an attempted coup . NNP NNP NNP NNP VBD DT NNS NNP IN DT JJ NN IN DT VBN NN . Abkhazia broke away from Georgia in the 1990s . NNP VBD RB IN NNP IN DT NNS . The top U.S. envoy to the International Atomic Energy Agency says momentum is growing among IAEA delegates to report Iran to the United Nations Security Council for its suspect nuclear activities . DT JJ NNP NN TO DT NNP NNP NNP NNP VBZ NN VBZ VBG IN NNP VBZ TO VB NNP TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NNS . U.S. Ambassador Gregory Schulte told IAEA diplomats meeting in Vienna that the time has come to act against Iran . NNP NNP NNP NNP VBD NNP NNS NN IN NNP IN DT NN VBZ VBN TO VB IN NNP . Washington and the European Union accuse Tehran of secret efforts to develop atomic weapons . NNP CC DT NNP NNP VBP NNP IN JJ NNS TO VB JJ NNS . Iran denies the charges . NNP VBZ DT NNS . The Security Council can impose sanctions if it finds Tehran has not complied with the Nuclear Non-Proliferation Treaty . DT NNP NNP MD VB NNS IN PRP VBZ NNP VBZ RB VBN IN DT NNP NNP NNP . Western efforts to rally support for referral from the 35-member IAEA board is opposed by Russia , China and a host of non-aligned member-nations that want European-Iranian negotiations to continue . JJ NNS TO VB NN IN NN IN DT JJ NNP NN VBZ VBN IN NNP , NNP CC DT NN IN JJ NNS WDT VBP JJ NNS TO VB . Earlier Wednesday , Iranian Vice President Gholamreza Aghazadeh said Tehran has no intention of abandoning the non-proliferation treaty , despite warnings Tuesday by a top Iranian negotiator . RBR NNP , JJ NNP NNP NNP NNP VBD NNP VBZ DT NN IN VBG DT JJ NN , IN NNS NNP IN DT JJ JJ NN . The United Nations Security Council has decided to send a special mission to Serbia 's breakaway Kosovo province before voting on its future status . DT NNP NNP NNP NNP VBZ VBN TO VB DT JJ NN TO NNP POS JJ NNP NN IN VBG IN PRP$ JJ NN . British Ambassador John Perry , who is the current president of the council , said representatives of 15 member nations will visit Kosovo later this month . NNP NNP NNP NNP , WP VBZ DT JJ NN IN DT NN , VBD NNS IN CD NN NNS MD VB NNP RB DT NN . Perry said Belgium 's ambassador , Johan Verbeke , will head the U.N. delegation to Pristina . NNP VBD NNP POS NN , NNP NNP , MD VB DT NNP NN TO NNP . Russian U.N. envoy Vitaly Churkin last month proposed the mission before the council considers mediator Martti Ahtisaari 's proposal for Kosovo . JJ NNP NN NNP NNP JJ NN VBD DT NN IN DT NN VBZ NN NNP NNP POS NN IN NNP . The Ahtisaari plan envisions internationally supervised independence for the Serbian province , which Belgrade adamantly rejects . DT NNP NN VBZ RB JJ NN IN DT JJ NN , WDT NNP RB VBZ . Kosovo has been under U.N. administration since 1999 , after NATO air raids halted Belgrade 's crackdown on ethnic Albanian separatists . NNP VBZ VBN IN NNP NN IN CD , IN NNP NN NNS VBD NNP POS NN IN JJ JJ NNS . A U.S. newspaper reports the Bush administration has been monitoring telephone conversations between Iranian diplomats and the head of the International Atomic Energy Agency , Mohamed ElBaradei . DT NNP NN VBZ DT NNP NN VBZ VBN VBG NN NNS IN JJ NNS CC DT NN IN DT NNP NNP NNP NNP , NNP NNP . The Washington Post quotes three officials , speaking on condition of anonymity , as saying the White House is looking for material to strengthen its argument that the 62-year-old Mr. ElBaradei should be retired . DT NNP NNP VBZ CD NNS , VBG IN NN IN NN , IN VBG DT NNP NNP VBZ VBG IN NN TO VB PRP$ NN IN DT JJ NNP NNP MD VB VBN . There has been no comment from the White House , but as a rule the administration does not comment on intelligence matters . EX VBZ VBN DT NN IN DT NNP NNP , CC IN DT NN DT NN VBZ RB VB IN NN NNS . The newspaper says some U.S. officials believe the phone intercepts may show Mr. ElBaradei has been soft on the Iranians , while others believe the transcripts show only standard diplomacy . DT NN VBZ DT NNP NNS VBP DT NN NNS MD VB NNP NNP VBZ VBN JJ IN DT NNS , IN NNS VBP DT NNS VBP RB JJ NN . The Post quotes an IAEA spokesman as saying the U.N. agency ' always assumed ' eavesdropping occurs . DT NNP VBZ DT NNP NN IN VBG DT NNP NN `` RB VBD `` NN VBZ . China says it has received assurances from a senior official of Iraq 's interim government that authorities in Baghdad will make every possible effort to free eight Chinese construction workers abducted by insurgents in Iraq . NNP VBZ PRP VBZ VBN NNS IN DT JJ NN IN NNP POS JJ NN IN NNS IN NNP MD VB DT JJ NN TO VB CD JJ NN NNS VBN IN NNS IN NNP . Chinese state media say Iraq 's Deputy President Rowsch Nuri Shaways expressed regret over the kidnappings during talks with Chinese officials in Beijing . JJ NN NNS VBP NNP POS NNP NNP NNP NNP NNP VBD NN IN DT NNS IN NNS IN JJ NNS IN NNP . Arab television channel Al-Jazeera broadcast a video showing the hostages Tuesday , in which their abductors threatened to kill the men unless China ' clarifies its role in Iraq . ' JJ NN NN NNP VBD DT NN VBG DT NNS NNP , IN WDT PRP$ NNS VBD TO VB DT NNS IN NNP `` VBZ PRP$ NN IN NNP . `` Chinese officials say the men are workers who went to Iraq on their own initiative . JJ NNS VBP DT NNS VBP NNS WP VBD TO NNP IN PRP$ JJ NN . The official Xinhua news agency said China is working with mediators to win the release of the hostages . DT JJ NNP NN NN VBD NNP VBZ VBG IN NNS TO VB DT NN IN DT NNS . Afghanistan 's attorney general has asked the country 's Supreme Court to annul results from the recent parliamentary elections , because of extensive fraud and corruption . NNP POS NN NN VBZ VBN DT NN POS NNP NNP TO VB NNS IN DT JJ JJ NNS , IN IN JJ NN CC NN . A spokesman for Attorney General Mohammad Ishaq Alako , Deputy Attorney General Rahmatullah Nazari , says a letter has been sent to the Supreme Court asking it to annul the results and issue sentences against 14 top officials who organized the vote and oversaw fraud investigations . DT NN IN NNP NNP NNP NNP NNP , NNP NNP NNP NNP NNP , VBZ DT NN VBZ VBN VBN TO DT NNP NNP VBG PRP TO VB DT NNS CC NN NNS IN CD JJ NNS WP VBD DT NN CC VB NN NNS . Both the Electoral Complaints Commission and the country 's Independent Election Commission have rejected the call as unlawful , saying no individual or organization has the authority to invalidate election results . DT DT NNP NNPS NNP CC DT NN POS NNP NNP NNP VBP VBN DT NN IN JJ , VBG DT NN CC NN VBZ DT NN TO VB NN NNS . The election commission disqualified nearly one quarter of the votes cast in the election , and disqualified 24 winning candidates after receiving more than 5,000 complaints of irregularities . DT NN NN VBD RB CD NN IN DT NNS VBN IN DT NN , CC VBD CD NN NNS IN VBG JJR IN CD NNS IN NNS . President Bush has praised relations with Afghanistan , India , and Pakistan in a radio address to the United States while he is traveling in South Asia . NNP NNP VBZ VBN NNS IN NNP , NNP , CC NNP IN DT NN NN TO DT NNP NNPS IN PRP VBZ VBG IN NNP NNP . Mr. Bush said he witnessed an ' incredible transformation ' in Afghanistan , from a country ruled by the cruel Taleban regime to one in which women have more freedom , children are going to school , and terror camps have been shut down . NNP NNP VBD PRP VBD DT `` JJ NN `` IN NNP , IN DT NN VBN IN DT JJ NNP NN TO CD IN WDT NNS VBP JJR NN , NNS VBP VBG IN NN , CC NN NNS VBP VBN VBN RP . Mr. Bush also praised an agreement made with India during his trip , to share civilian nuclear energy technology in exchange for India bringing its nuclear programs in line with the International Atomic Energy Agency ( IAEA ) . NNP NNP RB VBD DT NN VBN IN NNP IN PRP$ NN , TO VB JJ JJ NN NN IN NN IN NNP VBG PRP$ JJ NNS IN NN IN DT NNP NNP NNP NNP LRB NNP RRB . And he said Pakistan 's President Pervez Musharraf made the right decision to fight terror after September 11 , 2001 , despite several attempts on his life . CC PRP VBD NNP POS NNP NNP NNP VBD DT JJ NN TO VB NN IN NNP CD , CD , IN JJ NNS IN PRP$ NN . Mr. Bush said his trip is helping to lay the foundations of peace and prosperity for generations to come . NNP NNP VBD PRP$ NN VBZ VBG TO VB DT NNS IN NN CC NN IN NNS TO VB . Blades Of Glory continues to keep the competition on ice . NNP NNP NNP VBZ TO VB DT NN IN NN . The skating comedy retained the U.S. box office championship , taking in $ 23 million over the Easter weekend . DT VBG NN VBD DT NNP NN NN NN , VBG IN $ CD CD IN DT NNP NN . Its 10-day total now stands at $ 68.4 million . PRP$ JJ NN RB VBZ IN $ CD CD . Occupying second place was Disney 's animated comedy Meet The Robinsons , at $ 17 million . VBG JJ NN VBD NNP POS JJ NN NNP NNP NNP , IN $ CD CD . Ice Cube 's family comedy Are We Done Yet ? opened in third place , taking in $ 15 million . NNP NNP POS NN NN VBP PRP VB RB . VBD IN JJ NN , VBG IN $ CD CD . Quentin Tarantino and Robert Rodriguez ' Grindhouse , a much-publicized homage to 1970s exploitation movies , debuted a disappointing fourth with $ 11.6 million . NNP NNP CC NNP NNP POS NNP , DT JJ NN TO NNS NN NNS , VBD DT JJ JJ IN $ CD CD . Media tracker Paul Dergarabedian says the film 's three-hour running time limited its total screenings . NN NN NNP NNP VBZ DT NN POS JJ JJ NN VBN PRP$ JJ NNS . In Afghanistan , a huge explosion in a convoy hauling munitions and weapons to a remote location for destruction has killed two German soldiers and at least five Afghans . IN NNP , DT JJ NN IN DT NN VBG NNS CC NNS TO DT JJ NN IN NN VBZ VBN CD JJ NNS CC IN JJS CD NNS . Afghan officials say the explosion in the northern province of Takhar Saturday was accidental . JJ NNS VBP DT NN IN DT JJ NN IN NNP NNP VBD JJ . They say a third German soldier and a sixth Afghan were wounded . PRP VBP DT JJ JJ NN CC DT JJ NN VBD VBN . The Associated Press quotes Afghan President Hamid Karzai as saying he was deeply saddened by the incident . DT NNP NNP VBZ JJ NNP NNP NNP IN VBG PRP VBD RB VBN IN DT NN . The German soldiers were part of the NATO-led International Security Assistance Force in Afghanistan . DT JJ NNS VBD NN IN DT JJ NNP NNP NNP NNP IN NNP . The German detachment of about two thousand troops provides security and collects weapons and ammunition from disarmed militias for disposal . DT JJ NN IN IN CD CD NNS VBZ NN CC VBZ NNS CC NN IN JJ NNS IN NN . ISAF has about 8,000 troops in Afghanistan . NNP VBZ IN CD NNS IN NNP . Pakistani police reported more deaths Saturday from poisoned bootleg liquor in the port city of Karachi , raising the death toll to at least 40 . JJ NN VBD JJR NNS NNP IN VBN NN NN IN DT JJ NN IN NNP , VBG DT NN NN TO IN JJS CD . Several people are still being treated at a local hospital after consuming the toxic batch of liquor late Thursday . JJ NNS VBP RB VBG VBN IN DT JJ NN IN VBG DT JJ NN IN NN JJ NNP . Liquor is banned for Muslims in Pakistan , although a few shops are allowed to sell alcohol to non-Muslims . NNP VBZ VBN IN NNPS IN NNP , IN DT JJ NNS VBP VBN TO VB NN TO JJ . But some Muslims drink alcohol , resorting to black-market supplies smuggled from abroad or homemade liquor that is sometimes tainted . CC DT NNPS VBP NN , VBG TO JJ NNS VBN IN RB CC JJ NN WDT VBZ RB VBN . Police say they have arrested several men in a series of raids for illegally preparing and selling the homemade alcohol . NNS VBP PRP VBP VBN JJ NNS IN DT NN IN NNS IN RB VBG CC VBG DT JJ NN . In October of last year , at least 12 people died after drinking contaminated liquor in the eastern city of Multan . IN NNP IN JJ NN , IN JJS CD NNS VBD IN VBG JJ NN IN DT JJ NN IN NNP . A former U.S. Senate majority leader says he never agreed to let the Bush administration eavesdrop , without court approval , on phone calls that cross U.S. borders . DT JJ NNP NNP NN NN VBZ PRP RB VBD TO VB DT NNP NN VB , IN NN NN , IN NN NNS WDT VBP NNP NNS . Democrat Tom Daschle contradicts President Bush , who says Congress granted him the authority in legislation authorizing the use of force against al-Qaida after the September 11 , 2001 terror attacks . NN NNP NNP VBZ NNP NNP , WP VBZ NNP VBD PRP DT NN IN NN VBG DT NN IN NN IN NNP IN DT NNP CD , CD NN NNS . In an opinion piece in the Washington Post Friday , Mr. Daschle says lawmakers granted the president extra powers to pursue al Qaida , but specifically turned down a White House request to use those powers inside the United States . IN DT NN NN IN DT NNP NNP NNP , NNP NNP VBZ NNS VBD DT NN JJ NNS TO VB NNP NNP , CC RB VBD RP DT NNP NNP NN TO VB DT NNS IN DT NNP NNPS . President Bush last week confirmed he secretly authorized the National Security Agency to eavesdrop in the United States . NNP NNP JJ NN VBD PRP RB VBD DT NNP NNP NNP TO VB IN DT NNP NNPS . He called it a vital tool for national security that was within his legal power . PRP VBD PRP DT JJ NN IN JJ NN WDT VBD IN PRP$ JJ NN . Iran 's elite security forces are warning opposition supporters not to hold anti-government demonstrations during a government-sponsored rally on Friday . NNP POS JJ NN NNS VBP VBG NN NNS RB TO VB JJ NNS IN DT JJ NN IN NNP . Opposition activists have called for protests coinciding with the Quds Day rallies , the annual event that expresses support for Palestinians and condemns Israel . NN NNS VBP VBN IN NNS VBG IN DT NNP NNP NNS , DT JJ NN IN VBZ NN IN NNS CC VBZ NNP . Opposition leader Mir Hossein Mousavi has said he plans to attend and activists have encouraged people to capitalize on the large gatherings to protest the disputed re-election of President Mahmoud Ahmadinejad . NNP NN NNP NNP NNP VBZ VBN PRP VBZ TO VB CC NNS VBP VBN NNS TO VB IN DT JJ NNS TO VB DT JJ NN IN NNP NNP NNP . On Thursday , Iranian state media published a message from the elite Revolutionary Guards promising to crack down on any protests during the rallies . IN NNP , JJ NN NNS VBN DT NN IN DT JJ JJ NNS VBG TO VB RP IN DT NNS IN DT NNS . Following Iran 's disputed June 12 elections , rights groups said hundreds of people were detained in clashes with security forces during post-election , anti-government demonstrations . VBG NNP POS JJ NNP CD NNS , NNS NNS VBD NNS IN NNS VBD VBN IN NNS IN NN NNS IN NN , JJ NNS . Since then , authorities have held public trials of the accused and tried to marginalize moderate officials within the government . IN RB , NNS VBP VBN JJ NNS IN DT VBN CC VBN TO VB JJ NNS IN DT NN . The United Nations is praising the use of military helicopters to drop food and rescue survivors in tsunami-ravaged Indonesia , saying the aircraft are ' worth their weight in gold . ' DT NNP NNP VBZ VBG DT NN IN JJ NNS TO VB NN CC NN NNS IN JJ NNP , VBG DT NN VBP `` IN PRP$ NN IN NN . `` U.N. relief coordinator Jan Egeland said Sunday , U.S. , Indonesian and Australian military helicopters are ferrying out food and supplies to remote areas of western Aceh province that ground crews can not reach . NNP NN NN NNP NNP VBD NNP , NNP , JJ CC JJ JJ NNS VBP VBG RP NN CC NNS TO VB NNS IN JJ NNP NN IN NN NNS MD RB VB . Mr. Egeland said the latest figures show 1.8 million people are in need of food assistance - with the need greatest in Indonesia , Sri Lanka , the Maldives and India . NNP NNP VBD DT JJS NNS VBP CD CD NNS VBP IN NN IN NN NN : IN DT NN JJS IN NNP , NNP NNP , DT NNP CC NNP . He said last week 's tsunami and the massive underwater earthquake that triggered it has affected millions in Asia and Africa . PRP VBD JJ NN POS NN CC DT JJ NN NN WDT VBD PRP VBZ VBN NNS IN NNP CC NNP . Some 1,27,000 people are known dead . DT CD NNS VBP VBN JJ . Aid is being rushed to the region , but the U.N. official stressed that bottlenecks and a lack of infrastructure remain a challenge . NNP VBZ VBG VBN TO DT NN , CC DT NNP NN VBD IN NNS CC DT NN IN NN VBP DT NN . Lebanese politicians are condemning Friday 's bomb blast in a Christian neighborhood of Beirut as an attempt to sow sectarian strife in the formerly war-torn country . JJ NNS VBP VBG NNP POS NN NN IN DT JJ NN IN NNP IN DT NN TO VB JJ NN IN DT RB JJ NN . In Beirut , a string of officials voiced their anger , while at the United Nations summit in New York , Prime Minister Fouad Siniora said the Lebanese people are resolute in preventing such attempts from destroying their spirit . IN NNP , DT NN IN NNS VBD PRP$ NN , IN IN DT NNP NNP NN IN NNP NNP , NNP NNP NNP NNP VBD DT JJ NNS VBP JJ IN VBG JJ NNS IN VBG PRP$ NN . One person was killed and more than 20 others injured in the bomb blast late Friday , which took place on a residential street . CD NN VBD VBN CC JJR IN CD NNS VBN IN DT NN NN JJ NNP , WDT VBD NN IN DT JJ NN . Lebanon has suffered a series of bombings since the massive explosion in February that killed former Prime Minister Rafik Hariri and 20 other people . NNP VBZ VBN DT NN IN NNS IN DT JJ NN IN NNP WDT VBD JJ NNP NNP NNP NNP CC CD JJ NNS . Syria is widely accused of involvement in his killing , and Friday 's explosion comes days before U.N. investigator Detlev Mehlis is to return to Damascus to interview several Syrian officials about the assassination . NNP VBZ RB VBN IN NN IN PRP$ NN , CC NNP POS NN VBZ NNS IN NNP NN NNP NNP VBZ TO VB TO NNP TO VB JJ JJ NNS IN DT NN . Israeli officials say Prime Minister Ariel Sharon will undergo a medical procedure Thursday to close a tiny hole in his heart discovered during treatment for a minor stroke suffered last month . JJ NNS VBP NNP NNP NNP NNP MD VB DT JJ NN NNP TO VB DT JJ NN IN PRP$ NN VBN IN NN IN DT JJ NN VBN JJ NN . Doctors describe the tiny hole as a minor birth defect and say it is in the partition between the upper chambers of Mr. Sharon 's heart . NNS VBP DT JJ NN IN DT JJ NN NN CC VB PRP VBZ IN DT NN IN DT JJ NNS IN NNP NNP POS NN . The procedure , known as cardiac catheterization , involves inserting a catheter through a blood vessel into the heart , where an umbrella-like device will plug the hole . DT NN , VBN IN JJ NN , VBZ VBG DT NN IN DT NN NN IN DT NN , WRB DT JJ NN MD VB DT NN . Doctors say they expect Mr. Sharon will make a full recovery . NNS VBP PRP VBP NNP NNP MD VB DT JJ NN . Mr. Sharon returned to work on December 25 , one week after his emergency hospitalization . NNP NNP VBD TO VB IN NNP CD , CD NN IN PRP$ NN NN . Doctors say the stroke has not caused any permanent damage . NNS VBP DT NN VBZ RB VBN DT JJ NN . The designers of the first private manned rocket to burst into space have received a $ 10 million prize created to promote space tourism . DT NNS IN DT JJ JJ VBN NN TO VB IN NN VBP VBN DT $ CD CD NN VBN TO VB NN NN . SpaceShipOne designer Burt Rutan accepted the Ansari X Prize money and a trophy on behalf of his team Saturday during an awards ceremony in the U.S. state of Missouri . NNP NN NNP NNP VBD DT NNP NNP NNP NN CC DT NN IN NN IN PRP$ NN NNP IN DT NNS NN IN DT NNP NN IN NNP . To win the money , SpaceShipOne had to blast off into space twice in a two-week period and fly at least 100 kilometers above Earth . TO VB DT NN , NNP VBD TO VB RP IN NN RB IN DT JJ NN CC VB IN JJS CD NNS IN NNP . The spacecraft made its flights in late September and early October , lifting off from California 's Mojave desert . DT NN VBD PRP$ NNS IN JJ NNP CC JJ NNP , VBG RP IN NNP POS NNP NN . The vehicle had to carry a pilot and weight equivalent to two passengers . DT NN VBD TO VB DT NN CC NN NN TO CD NNS . SpaceShipOne was financed with more than $ 20 million from Paul Allen , a co-founder of the Microsoft Corporation . NNP VBD VBN IN JJR IN $ CD CD IN NNP NNP , DT NN IN DT NNP NNP . North Korea says flooding caused by last week 's typhoon , Wipha , has destroyed 14,000 homes and 1,09,000 hectares of crops . NNP NNP VBZ NN VBN IN JJ NN POS NN , NNP , VBZ VBN CD NNS CC CD NNS IN NNS . The state news agency KCNA reported the damage Monday . DT NN NN NN NNP VBD DT NN NNP . It says the floods also destroyed or damaged 8,000 public buildings and washed out roads , bridges and railways . PRP VBZ DT NNS RB VBD CC VBD CD JJ NNS CC VBD RP NNS , NNS CC NNS . The report did not mention any deaths or injuries . DT NN VBD RB VB DT NNS CC NNS . Most of the heavy rains and flooding occurred in the southwestern part of the country , including the capital , Pyongyang . JJS IN DT JJ NNS CC NN VBD IN DT JJ NN IN DT NN , VBG DT NN , NNP . Last month , severe flooding in North Korea left 600 people dead or missing , and displaced more than 1,00,000 others . JJ NN , JJ NN IN NNP NNP VBD CD NNS JJ CC JJ , CC VBD JJR IN CD NNS . A strong earthquake under the ocean off Indonesia 's Sumatra and Nias islands has caused some panic but no damage or injuries . DT JJ NN IN DT NN IN NNP POS NNP CC NNP NNS VBZ VBN DT NN CC DT NN CC NNS . The U.S. Geological Survey gave a preliminary estimate of the strength of the Tuesday morning quake at 6.7 on the Richter scale , and said the epicenter was close to the island of Nias . DT NNP NNP NNP VBD DT JJ NN IN DT NN IN DT NNP NN NN IN CD IN DT NNP NN , CC VBD DT NN VBD RB TO DT NN IN NNP . The quake did not cause a tsunami . DT NN VBD RB VB DT NN . An earthquake in late March killed more than 900 people on Nias . DT NN IN JJ NNP VBD JJR IN CD NNS IN NNP . Both Sumatra and Nias have experienced countless earthquakes since a massive tsunami-producing quake on December 26 . DT NNP CC NNP VBP VBN JJ NNS IN DT JJ JJ NN IN NNP CD . The latest official death toll from that tragedy stands at some 1,76,000 people killed - 1,28,000 of them in Indonesia . DT JJS NN NN NN IN DT NN VBZ IN DT CD NNS VBN IN CD IN PRP IN NNP . Nearly 50,000 people are still listed as missing , but most of them are feared dead . RB CD NNS VBP RB VBN IN VBG , CC JJS IN PRP VBP VBN JJ . The U.S. rap star Snoop Dogg and five of his associates have been arrested in Britain after a disturbance at London 's Heathrow Airport . DT NNP NN NN NNP NNP CC CD IN PRP$ NNS VBP VBN VBN IN NNP IN DT NN IN NNP POS NNP NNP . Police told British media that the musician , who was born with the name Calvin Broadus , and members of his entourage were being held on charges of ' violent disorder and affray . ' NNS VBD JJ NNS IN DT NN , WP VBD VBN IN DT NN NNP NNP , CC NNS IN PRP$ NN VBD VBG VBN IN NNS IN `` JJ NN CC NN . `` The group was waiting for a flight to South Africa , where Snoop Dogg was to perform in a concert Thursday , when it was denied access to a first-class lounge at the airport . DT NN VBD VBG IN DT NN TO NNP NNP , WRB NNP NNP VBD TO VB IN DT NN NNP , WRB PRP VBD VBN NN TO DT JJ NN IN DT NN . Police said members of the group later threw bottles of whisky in a duty-free store and scuffled with police . NNS VBD NNS IN DT NN RB VBD NNS IN NN IN DT JJ NN CC VBD IN NN . Snoop Dogg is a former member of a street gang the Crips , from Southern California , and many of his songs reflect the gritty life on the streets . NNP NNP VBZ DT JJ NN IN DT NN NN DT NNS , IN NNP NNP , CC NN IN PRP$ NNS VBP DT JJ NN IN DT NNS . Afghan President Hamid Karzai says he has fired two ' high-ranking ' Afghan officials who were spying for other countries , and warns he would not spare anyone who engages in such activity . JJ NNP NNP NNP VBZ PRP VBZ VBN CD `` JJ `` JJ NNS WP VBD VBG IN JJ NNS , CC VBZ PRP MD RB VB DT WP VBZ IN JJ NN . Mr. Karzai made the disclosure at a lunch meeting with newly sworn-in parliament members , and did not name the dismissed officials nor indicate when he took the action He also did not name the other countries involved . NNP NNP VBD DT NN IN DT NN NN IN RB JJ NN NNS , CC VBD RB VB DT VBN NNS CC VBP WRB PRP VBD DT NN PRP RB VBD RB VB DT JJ NNS VBN . Mr. Karzai said he had strong evidence against the two officials . NNP NNP VBD PRP VBD JJ NN IN DT CD NNS . But he said even if he had minor evidence , he would have punished them . CC PRP VBD RB IN PRP VBD JJ NN , PRP MD VB VBN PRP . He said anyone found spying for foreign countries will be shown on television , and put on trial . PRP VBD DT VBD VBG IN JJ NNS MD VB VBN IN NN , CC VBD IN NN . Mr. Karzai has led Afghanistan since the Taleban were ousted in late 2001 . NNP NNP VBZ VBN NNP IN DT NNP VBD VBN IN JJ CD . He won a presidential election in October 2004 . PRP VBD DT JJ NN IN NNP CD . And now the Taleban are waging an insurgency against his administration . CC RB DT NNP VBP VBG DT NN IN PRP$ NN . For the last four weeks a team led by former UN Secretary-General Kofi Annan has been trying to broker a deal between the Kenyan government of President Mwai Kibaki and the opposition led by Raila Odinga . IN DT JJ CD NNS DT NN VBN IN JJ NNP NNP NNP NNP VBZ VBN VBG TO NN DT NN IN DT JJ NN IN NNP NNP NNP CC DT NN VBN IN NNP NNP . The negotiations have concentrated on a power sharing agreement and a transitional arrangement leading to new elections . DT NNS VBP VBN IN DT NN NN NN CC DT JJ NN VBG TO JJ NNS . A recent report by the international crisis group says three complimentary sets of issues must be addressed to finalize a detailed power sharing agreement . DT JJ NN IN DT JJ NN NN VBZ CD JJ NNS IN NNS MD VB VBN TO VB DT JJ NN NN NN . Francois Grignon is director of the Africa program of the ICG . NNP NNP VBZ NN IN DT NNP NN IN DT NNP . In a telephone interview to discuss the issues at stake , he told VOA reporter Akwei Thompson the opposition would demonstrate a stronger political will to tackle the task of legal and constitutional reform needed during the transition period because ... ' the electoral dispute left them out , the losers ... . ' IN DT NN NN TO VB DT NNS IN NN , PRP VBD NNP NN NNP NNP DT NN MD VB DT JJR JJ NN TO VB DT NN IN JJ CC JJ NN VBN IN DT NN NN IN , `` DT JJ NN VBD PRP RP , DT NNS , . `` President Bush has signed legislation that will require screening of all air and sea cargo , and will provide more money to cities deemed to be at high risk of a terrorist attack . NNP NNP VBZ VBN NN WDT MD VB NN IN DT NN CC NN NN , CC MD VB JJR NN TO NNS VBN TO VB IN JJ NN IN DT JJ NN . After signing the bill Friday and meeting with his advisers on counter-terrorism , Mr. Bush said his homeland security and counter-terrorism teams are doing everything they can to protect the country from what he called a ' dangerous enemy . ' IN VBG DT NN NNP CC NN IN PRP$ NNS IN NN , NNP NNP VBD PRP$ NN NN CC NN NNS VBP VBG DT PRP MD TO VB DT NN IN WP PRP VBD DT `` JJ NN . `` The new measures carry out some recommendations made by the independent commission that investigated the September 11 , 2001 attacks on the United States . DT JJ NNS VBP RP DT NNS VBN IN DT JJ NN WDT VBD DT NNP CD , CD NNS IN DT NNP NNPS . Those include a grant of $ 4 billion to be given to high-risk cities to upgrade transit security . DT VBP DT NN IN $ CD CD TO VB VBN TO JJ NNS TO VB NN NN . They also mandate screening of all U.S.-bound cargo on planes and ships within the next five years . PRP RB VB NN IN DT JJ NN IN NNS CC NNS IN DT JJ CD NNS . Burmese democracy advocate Aung San Suu Kyi is calling on citizens in her country to work toward national reconciliation in the new year . JJ NN NN NNP NNP NNP NNP VBZ VBG IN NNS IN PRP$ NN TO VB IN JJ NN IN DT JJ NN . In a statement Friday , she asked the Burmese people to ' struggle together with new strengths , new force and new words ' in 2011 . IN DT NN NNP , PRP VBD DT JJ NNS TO `` NN RB IN JJ NNS , JJ NN CC JJ NNS `` IN CD . The 65-year-old advocate for democratic reforms in Burma was released after more than seven years of house arrest on November 13 . DT JJ NN IN JJ NNS IN NNP VBD VBN IN JJR IN CD NNS IN NN NN IN NNP CD . That was just days after the country 's military rulers claimed an overwhelming victory in Burma 's widely criticized first election in two decades . DT VBD RB NNS IN DT NN POS JJ NNS VBD DT JJ NN IN NNP POS RB VBN JJ NN IN CD NNS . She said in the statement that Burmese people need to establish political and social networks to achieve ' national reconciliation as well as a truly united spirit . ' PRP VBD IN DT NN IN JJ NNS VBP TO VB JJ CC JJ NNS TO VB `` JJ NN RB RB IN DT RB JJ NN . `` The United States on Thursday again called for Burma 's leaders to free the more than 2,200 political prisoners in the country and engage in talks to promote democracy . DT NNP NNPS IN NNP RB VBD IN NNP POS NNS TO VB DT JJR IN CD JJ NNS IN DT NN CC VB IN NNS TO VB NN . Former U.S. President Bill Clinton has assembled world leaders , activists and academics in New York to address the issues of poverty , global warning and conflict . JJ NNP NNP NNP NNP VBZ VBN NN NNS , NNS CC NNS IN NNP NNP TO VB DT NNS IN NN , JJ NN CC NN . Opening Thursday , the Clinton Global Initiative 's conference coincides with the Millennium summit of the United Nations General Assembly . VBG NNP , DT NNP NNP NNP POS NN NNS IN DT NNP NN IN DT NNP NNP NNP NNP . Mr. Clinton says the focus of the three-day conference is to secure concrete pledges from leaders to address significant problems , not to simply talk about them . NNP NNP VBZ DT NN IN DT JJ NN VBZ TO VB JJ NNS IN NNS TO VB JJ NNS , RB TO RB VB IN PRP . Organizers say the conference is different from other forums because participants are required to pledge to address issues in concrete ways and to report back on their progress . NNS VBP DT NN VBZ JJ IN JJ NNS IN NNS VBP VBN TO NN TO VB NNS IN JJ NNS CC TO VB RB IN PRP$ NN . Expected attendees or speakers include British Prime Minister Tony Blair , U.N. Secretary General Kofi Annan and Israel 's Deputy Prime Minister Shimon Peres . VBN NNS CC NNS VBP JJ NNP NNP NNP NNP , NNP NNP NNP NNP NNP CC NNP POS NNP NNP NNP NNP NNP . Peruvian election officials say the narrow gap between two candidates vying for the second spot on the ballot for the country 's run-off presidential election has tightened further . JJ NN NNS VBP DT JJ NN IN CD NNS VBG IN DT JJ NN IN DT NN IN DT NN POS JJ JJ NN VBZ VBN RB . Officials said Sunday former center-left president Alan Garcia leads pro-business congresswoman Lourdes Flores by less than 96,000 votes , with nearly 90 percent of the votes counted . NNS VBD NNP JJ NN NN NNP NNP VBZ JJ NN NNP NNP IN JJR IN CD NNS , IN RB CD NN IN DT NNS VBN . Garcia led Flores by nearly 1,10,000 votes on Saturday . NNP VBD NNP IN RB CD NNS IN NNP . The surge by Flores is attributed to heavy support among Peruvians living abroad whose votes are apparently starting to impact the election tally . DT NN IN NNP VBZ VBN TO JJ NN IN NNS VBG RB WP$ NNS VBP RB VBG TO VB DT NN RB . Since no candidate received half of the vote in the April 9 election , a presidential run-off will be held 30 days after the final results are announced . IN DT NN VBD NN IN DT NN IN DT NNP CD NN , DT JJ NN MD VB VBN CD NNS IN DT JJ NNS VBP VBN . Either Garcia or Flores will take on nationalist Ollanta Humala , who took 31 percent of the vote . CC NNP CC NNP MD VB RP NN NNP NNP , WP VBD CD NN IN DT NN . Chilean authorities have freed on bail the wife and four adult children of former dictator Augusto Pinochet , a day after they were detained on tax evasion charges . JJ NNS VBP VBN IN NN DT NN CC CD JJ NNS IN JJ NN NNP NNP , DT NN IN PRP VBD VBN IN NN NN NNS . Lucia Hiriart and her children were arrested Monday as part of an investigation into millions of dollars kept in bank accounts abroad . NNP NNP CC PRP$ NNS VBD VBN NNP IN NN IN DT NN IN NNS IN NNS VBN IN NN NNS RB . A fifth child , daughter Lucia , is also charged , but her whereabouts are unknown . DT JJ NN , NN NNP , VBZ RB VBN , CC PRP$ NNS VBP JJ . If located , she will be prohibited from leaving the country . IN VBN , PRP MD VB VBN IN VBG DT NN . General Pinochet has been indicted for tax fraud for allegedly hiding $ 27 million in foreign bank accounts . NNP NNP VBZ VBN VBN IN NN NN IN RB VBG $ CD CD IN JJ NN NNS . The former dictator also faces human rights charges related to his rule in the mid-1970s . DT JJ NN RB VBZ JJ NNS NNS VBN TO PRP$ NN IN DT NNS . His lawyers say he is not healthy enough to stand trial , but court-ordered doctors say he is fit enough to do so . PRP$ NNS VBP PRP VBZ RB JJ RB TO VB NN , CC JJ NNS VBP PRP VBZ JJ RB TO VB RB . Rebel sources in Mexico say a female leader of the Zapatista rebel movement has died . NN NNS IN NNP VBP DT JJ NN IN DT NNP NN NN VBZ VBN . Zapatista leader Subcomandante Marcos Friday announced the death of Comandante Ramona , saying Mexico had lost a fighter and the Zapatistas had lost a piece of their heart . NNP NN NNP NNP NNP VBD DT NN IN NNP NNP , VBG NNP VBD VBN DT NN CC DT NNP VBD VBN DT NN IN PRP$ NN . The announcement came during a stop in Chiapas , six days into the leader 's nationwide tour . DT NN VBD IN DT NN IN NNP , CD NNS IN DT NN POS JJ NN . The nature of Comandante Ramona 's death was not immediately clear , but it was rumored that she had cancer or a kidney disease . DT NN IN NNP NNP POS NN VBD RB RB JJ , CC PRP VBD VBN IN PRP VBD NN CC DT NN NN . She had once received a kidney transplant . PRP VBD RB VBN DT NN NN . The mysterious female leader was a Tzotzil Indian and a promoter of women 's rights . DT JJ JJ NN VBD DT NNP NN CC DT NN IN NNS POS NNS . She was a longtime member of the Zapatista movement and appeared in public wearing a black ski mask . PRP VBD DT JJ NN IN DT NNP NN CC VBD IN JJ VBG DT JJ NN NN . On January 1 , Subcomandante Marcos emerged from his jungle hideout to begin a six-month nationwide tour in a bid to influence this year 's presidential elections . IN NNP CD , NNP NNP VBD IN PRP$ NN NN TO VB DT JJ JJ NN IN DT NN TO VB DT NN POS JJ NNS . Representatives of the Washington-based Council on American-Islamic Relations have appealed for the release of kidnapped American journalist Jill Carroll . NNS IN DT JJ NNP IN NNP NNPS VBP VBN IN DT NN IN VBN JJ NN NNP NNP . In Baghdad Saturday , an official with the influential Islamic group called on Carroll 's abductors to release her unharmed . IN NNP NNP , DT NN IN DT JJ NNP NN VBD IN NNP POS NNS TO VB PRP$ JJ . In an earlier statement , the group said the 28-year-old journalist has a well-documented record of objective reporting and respect for both the Iraqi people and Arab-Islamic culture . IN DT JJR NN , DT NN VBD DT JJ NN VBZ DT JJ NN IN JJ NN CC NN IN DT DT JJ NNS CC JJ NN . There still is no word on the journalist 's fate , following a threat by her kidnappers to execute her Friday unless all eight female detainees in American custody in Iraq were released . EX RB VBZ DT NN IN DT NN POS NN , VBG DT NN IN PRP$ NNS TO VB PRP$ NNP IN DT CD JJ NNS IN JJ NN IN NNP VBD VBN . Meanwhile , a militant group has kidnapped the son of a senior Iraqi Defense Ministry official . RB , DT JJ NN VBZ VBN DT NN IN DT JJ JJ NNP NNP NN . In a videotape shown on al-Arabiya ( Saturday ) , kidnappers threatened to kill the son of Brigadier-General Sabah Abd al-Karim unless Iraqi security forces stop cooperating with U.S.-led coalition troops in Iraq . IN DT NN VBN IN NNP LRB NNP RRB , NNS VBD TO VB DT NN IN JJ NNP NNP NNP IN JJ NN NNS VBP VBG IN JJ NN NNS IN NNP . Leading Muslim groups attending an anti-terrorism conference in northern India have denounced terrorism as ' un-Islamic . ' VBG NN NNS VBG DT JJ NN IN JJ NNP VBP VBN NN IN `` JJ . `` The declaration was made by thousands of scholars and clerics Monday at the country 's top Islamic seminary - the 150-year-old Darul-Uloom Deoband in Uttar Pradesh . DT NN VBD VBN IN NNS IN NNS CC NNS NNP IN DT NN POS JJ NNP JJ IN DT JJ NN NN IN NNP NNP . Their statement said any terrorist activity targeting innocent people contradicts Islam 's concept of peace . PRP$ NN VBD DT JJ NN VBG JJ NNS VBZ NNP POS NN IN NN . It described Islam as a religion of mercy , and it condemned all kinds of oppression , violence and terrorism . PRP VBD NNP IN DT NN IN NN , CC PRP VBD DT NNS IN NN , NN CC NN . However , the statement also called on the Indian government to ensure that members of the Muslim community are not harassed . RB , DT NN RB VBD IN DT JJ NN TO VB IN NNS IN DT NNP NN VBP RB VBN . It said that whenever there is a terrorist attack , attempts are made to link the attack to Muslims who have studied in madrassas or religious schools . PRP VBD IN WRB EX VBZ DT JJ NN , NNS VBP VBN TO VB DT NN TO NNS WP VBP VBN IN NNS CC JJ NNS . The declaration also said many innocent Muslims are spending their lives behind bars , having been falsely accused of involvement in acts of terror . DT NN RB VBD JJ JJ NNS VBP VBG PRP$ NNS IN NNS , VBG VBN RB VBN IN NN IN NNS IN NN . Microsoft founder Bill Gates and the government of Norway have pledged more than $ 1 billion for a campaign to vaccinate most of the world 's poorest children . NNP NN NNP NNP CC DT NN IN NNP VBP VBN JJR IN $ CD CD IN DT NN TO VB JJS IN DT NN POS JJS NNS . Donors say they hope the $ 750 million grant from the Bill and Melinda Gates Foundation and a pledge from Norway for $ 290 million spurs other foundations and governments to invest in The Global Alliance for Vaccines and Immunization . NNS VBP PRP VBP DT $ CD CD NN IN DT NNP CC NNP NNP NNP CC DT NN IN NNP IN $ CD CD NNS JJ NNS CC NNS TO VB IN DT NNP NNP IN NNP CC NNP . The alliance hopes to immunize 90 percent of the world 's children by 2015 . DT NN VBZ TO VB CD NN IN DT NN POS NNS IN CD . The group estimates it will cost $ 8 to $ 12 billion . DT NN VBZ PRP MD VB $ CD TO $ CD CD . The World Health Organization estimates two million people die each year from diseases that are easily prevented by basic vaccines . DT NNP NNP NNP VBZ CD CD NNS VBP DT NN IN NNS WDT VBP RB VBN IN JJ NNS . Spain has begun a trial for 24 suspected al-Qaida members , including three accused of helping plan the September 11 , 2001 terrorist attacks in the United States . NNP VBZ VBN DT NN IN CD JJ NNP NNS , VBG CD VBN IN VBG NN DT NNP CD , CD JJ NNS IN DT NNP NNPS . The defendants appeared in a Madrid court Friday , behind bulletproof glass . DT NNS VBD IN DT NNP NN NNP , IN JJ NN . More than 100 armed police are providing security at a remodeled courtroom , specially-built for trials with multiple defendants . JJR IN CD JJ NNS VBP VBG NN IN DT JJ NN , NN IN NNS IN JJ NNS . Among the accused is the suspected leader of the Spanish al-Qaida cell - Syrian-born Imad Eddin Barakat Yarkas . IN DT VBN VBZ DT JJ NN IN DT JJ NNP NN : JJ NNP NNP NNP NNP . He allegedly organized a meeting of terror suspects in Spain during which details of the September 11 attacks were finalized . PRP RB VBD DT NN IN NN NNS IN NNP IN WDT NNS IN DT NNP CD NNS VBD VBN . Prosecutors are asking that the leader of the group be sentenced to more than 60,000 years in prison if convicted . NNS VBP VBG IN DT NN IN DT NN VB VBN TO JJR IN CD NNS IN NN IN VBN . European Union observers are preparing to monitor Palestinian parliamentary elections in the West Bank and Gaza Strip , despite recent kidnappings of foreigners . NNP NNP NNS VBP VBG TO VB JJ JJ NNS IN DT NNP NNP CC NNP NNP , IN JJ NNS IN NNS . Chief EU observer Veronique De Keyser says her group is making regular security assessments and taking all necessary precautions . NNP NNP NNP NNP NNP NNP VBZ PRP$ NN VBZ VBG JJ NN NNS CC VBG DT JJ NNS . She says the EU 's commitment must be met , adding that it would a ' bad sign ' not to send monitors to Gaza , where several foreign aid workers were kidnapped and released unharmed in recent weeks . PRP VBZ DT NNP POS NN MD VB VBN , VBG IN PRP MD DT `` JJ NN `` RB TO VB NNS TO NNP , WRB JJ JJ NN NNS VBD VBN CC VBN JJ IN JJ NNS . Ms. De Keyser spoke to reporters in Jerusalem Monday as more than 30 EU observers headed to Palestinian cities and towns . NNP NNP NNP VBD TO NNS IN NNP NNP IN JJR IN CD NNP NNS VBD TO JJ NNS CC NNS . Campaigning for the January 25 elections begins Tuesday . VBG IN DT NNP CD NNS VBZ NNP . But several senior Palestinian leaders are calling for a delay in the vote , citing dire law-and-order conditions and Israel 's refusal to permit voting in East Jerusalem . CC JJ JJ JJ NNS VBP VBG IN DT NN IN DT NN , VBG JJ NN NNS CC NNP POS NN TO VB NN IN NNP NNP . An international delegation that monitored the elections in Liberia is calling on all concerned to act responsibly to ensure the post-war peace process stays on track . DT JJ NN WDT VBD DT NNS IN NNP VBZ VBG IN DT VBN TO VB RB TO VB DT JJ NN NN VBZ IN NN . The delegation , led by former U.S. President Jimmy Carter and former Benin President Nicephore Soglo , also urged the international community to continue its assistance . DT NN , VBN IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP , RB VBD DT JJ NN TO VB PRP$ NN . It added that extensive voter education will be needed if a runoff election is required . PRP VBD IN JJ NN NN MD VB VBN IN DT NN NN VBZ VBN . The delegation said a major problem in Tuesday 's poll was widespread lack of voter understanding of the process of casting ballots . DT NN VBD DT JJ NN IN NNP POS NN VBD JJ NN IN NN NN IN DT NN IN VBG NNS . It also cited voter ignorance of the nature of choice among the candidates . PRP RB VBD NN NN IN DT NN IN NN IN DT NNS . The joint delegation from the former U.S. president 's Carter Center and the National Democratic Institute includes representatives from 14 nations in Africa , Europe and North America . DT JJ NN IN DT JJ NNP NN POS NNP NNP CC DT NNP NNP NNP VBZ NNS IN CD NNS IN NNP , NNP CC NNP NNP . Afghan President Hamid Karzai has again called for reconciliation talks with Taleban militants . JJ NNP NNP NNP VBZ RB VBN IN NN NNS IN NNP NNS . In remarks to people gathered at the main Shi'ite mosque in Kabul Monday , Mr. Karzai referred to what he called ' the enemy who wants our destruction and sheds our blood . ' IN NNS TO NNS VBN IN DT JJ NNP NN IN NNP NNP , NNP NNP VBD TO WP PRP VBD `` DT NN WP VBZ PRP$ NN CC VBZ PRP$ NN . `` He did not refer to the Taleban by name . PRP VBD RB VB TO DT NNP IN NN . The Afghan leader has made similar offers of talks before , but Taleban leaders have rebuffed them . DT JJ NN VBZ VBN JJ NNS IN NNS IN , CC NNP NNS VBP VBN PRP . Last year saw a dramatic increase in Taleban militant attacks against U.S. , NATO and Afghan forces in Afghanistan . JJ NN VBD DT JJ NN IN NNP JJ NNS IN NNP , NNP CC JJ NNS IN NNP . At least four thousand people were killed in insurgency-related violence . IN JJS CD CD NNS VBD VBN IN JJ NN . U.S. and NATO military leaders in the country are warning of a new Taleban offensive in the coming months , as the snows thaw and mountain roads become more accessible . NNP CC NNP JJ NNS IN DT NN VBP VBG IN DT JJ NNP NN IN DT JJ NNS , IN DT NNS NN CC NN NNS VBP RBR JJ . French police detained nine people Monday in the Paris region and nearby Normandy in a crackdown on a group suspected of planning terror attacks in France . JJ NNS VBD CD NNS NNP IN DT NNP NN CC JJ NN IN DT NN IN DT NN VBN IN VBG NN NNS IN NNP . At least seven of the suspects are believed to have links to an Algerian insurgency movement , the Salafist Group for Call and Combat , known as the GSPC , which has declared allegiance to al-Qaida . IN JJS CD IN DT NNS VBP VBN TO VB NNS TO DT JJ NN NN , DT NNP NNP IN NNP CC NNP , VBN IN DT NNP , WDT VBZ VBN NN TO NNP . A detainee is escorted to interrogation by US military guards at Camp X-Ray at Guantanamo Bay US Naval Base DT NN VBZ VBN TO NN IN NNP JJ NNS IN NNP NNP IN NNP NNP NNP NNP NNP The Pentagon says seven detainees at the U.S. military prison at Guantanamo Bay , Cuba have been released to their home countries . DT NNP VBZ CD NNS IN DT NNP JJ NN IN NNP NNP , NNP VBP VBN VBN TO PRP$ NN NNS . A statement said Wednesday that three of the detainees were released after a tribunal determined that they were not enemy combatants . DT NN VBD NNP IN CD IN DT NNS VBD VBN IN DT NN VBN IN PRP VBD RB NN NNS . One was sent back to Sudan , another to Saudi Arabia and the third to Jordan . CD VBD VBN RB TO NNP , DT TO NNP NNP CC DT JJ TO NNP . Four others cleared under different types of administrative review were released to Saudi Arabia and Afghanistan . CD NNS VBN IN JJ NNS IN JJ NN VBD VBN TO NNP NNP CC NNP . An eighth detainee , a Moroccan , has been transferred to Spain , where he is accused of having links to an al-Qaida cell . DT JJ NN , DT NN , VBZ VBN VBN TO NNP , WRB PRP VBZ VBN IN VBG NNS TO DT NNP NN . Yemen is a low income country that is highly dependent on declining oil resources for revenue . NNP VBZ DT JJ NN NN WDT VBZ RB JJ IN VBG NN NNS IN NN . Petroleum accounts for roughly 25 % of GDP and 70 % of government revenue . NN NNS IN RB CD NN IN NN CC CD NN IN NN NN . Yemen has tried to counter the effects of its declining oil resources by diversifying its economy through an economic reform program initiated in 2006 that is designed to bolster non-oil sectors of the economy and foreign investment . NNP VBZ VBN TO VB DT NNS IN PRP$ VBG NN NNS IN VBG PRP$ NN IN DT JJ NN NN VBN IN CD WDT VBZ VBN TO VB JJ NNS IN DT NN CC JJ NN . In October 2009 , Yemen exported its first liquefied natural gas as part of this diversification effort . IN NNP CD , NNP VBD PRP$ JJ JJ JJ NN IN NN IN DT NN NN . In January 2010 , the international community established the Friends of Yemen group that aims to support Yemen 's efforts towards economic and political reform , and in August 2010 the IMF approved a three-year $ 370 million program to further this effort . IN NNP CD , DT JJ NN VBD DT NNS IN NNP NN WDT VBZ TO VB NNP POS NNS IN JJ CC JJ NN , CC IN NNP CD DT NNP VBD DT JJ $ CD CD NN TO RBR DT NN . Despite these ambitious endeavors , Yemen continues to face difficult long term challenges , including declining water resources and a high population growth rate . IN DT JJ NNS , NNP VBZ TO VB JJ JJ NN NNS , VBG VBG NN NNS CC DT JJ NN NN NN . Singapore was founded as a British trading colony in 1819 . NNP VBD VBN IN DT JJ NN NN IN CD . It joined the Malaysian Federation in 1963 but separated two years later and became independent . PRP VBD DT NNP NNP IN CD CC VBD CD NNS RB CC VBD JJ . Singapore subsequently became one of the world 's most prosperous countries with strong international trading links ( its port is one of the world 's busiest in terms of tonnage handled ) and with per capita GDP equal to that of the leading nations of Western Europe . NNP RB VBD CD IN DT NN POS RBS JJ NNS IN JJ JJ NN NNS LRB PRP$ NN VBZ CD IN DT NN POS JJS IN NNS IN NN VBN RRB CC IN IN NN NN JJ TO DT IN DT VBG NNS IN NNP NNP . Ruled by the Al Thani family since the mid-1800s , Qatar transformed itself from a poor British protectorate noted mainly for pearling into an independent state with significant oil and natural gas revenues . VBN IN DT NNP NNP NN IN DT NNS , NNP VBD PRP IN DT JJ JJ NN VBN RB IN VBG IN DT JJ NN IN JJ NN CC JJ NN NNS . During the late 1980s and early 1990s , the Qatari economy was crippled by a continuous siphoning off of petroleum revenues by the Amir , who had ruled the country since 1972 . IN DT JJ NNS CC JJ NNS , DT NNP NN VBD VBN IN DT JJ NN IN IN NN NNS IN DT NNP , WP VBD VBN DT NN IN CD . His son , the current Amir HAMAD bin Khalifa Al Thani , overthrew him in a bloodless coup in 1995 . PRP$ NN , DT JJ NNP NNP NNP NNP NNP NNP , VBD PRP IN DT JJ NN IN CD . In 2001 , Qatar resolved its longstanding border disputes with both Bahrain and Saudi Arabia . IN CD , NNP VBD PRP$ JJ NN NNS IN DT NNP CC NNP NNP . As of 2007 , oil and natural gas revenues had enabled Qatar to attain the second-highest per capita income in the world . IN IN CD , NN CC JJ NN NNS VBD VBN NNP TO VB DT NN IN NN NN IN DT NN . Subsistence agriculture , together with forestry , remains the backbone of the economy of the Central African Republic ( CAR ) , with about 60 % of the population living in outlying areas . NNP NN , RB IN NN , VBZ DT NN IN DT NN IN DT NNP NNP NNP LRB NNP RRB , IN RB CD NN IN DT NN NN IN JJ NNS . The agricultural sector generates more than half of GDP . DT JJ NN VBZ JJR IN NN IN NN . Timber has accounted for about 16 % of export earnings and the diamond industry , for 40 % . NNP VBZ VBN IN RB CD NN IN NN NNS CC DT NN NN , IN CD NN . Important constraints to economic development include the CAR 's landlocked position , a poor transportation system , a largely unskilled work force , and a legacy of misdirected macroeconomic policies . JJ NNS TO JJ NN VBP DT NNP POS JJ NN , DT JJ NN NN , DT RB JJ NN NN , CC DT NN IN VBN JJ NNS . Factional fighting between the government and its opponents remains a drag on economic revitalization . JJ NN IN DT NN CC PRP$ NNS VBZ DT NN IN JJ NN . Distribution of income is extraordinarily unequal . NN IN NN VBZ RB JJ . Grants from France and the international community can only partially meet humanitarian needs . NNS IN NNP CC DT JJ NN MD RB RB VB JJ NNS . A PEASANT found an Eagle captured in a trap , and much admiring the bird , set him free . DT NN VBD DT NNP VBD IN DT NN , CC RB VBG DT NN , VBD PRP JJ . The Eagle did not prove ungrateful to his deliverer , for seeing the Peasant sitting under a wall which was not safe , he flew toward him and with his talons snatched a bundle from his head . DT NNP VBD RB VB JJ TO PRP$ NN , IN VBG DT NN VBG IN DT NN WDT VBD RB JJ , PRP VBD IN PRP CC IN PRP$ NNS VBD DT NN IN PRP$ NN . When the Peasant rose in pursuit , the Eagle let the bundle fall again . WRB DT NN VBD IN NN , DT NNP VB DT NN NN RB . Taking it up , the man returned to the same place , to find that the wall under which he had been sitting had fallen to pieces ; and he marveled at the service rendered him by the Eagle . VBG PRP RP , DT NN VBD TO DT JJ NN , TO VB IN DT NN IN WDT PRP VBD VBN VBG VBD VBN TO NNS ; CC PRP VBD IN DT NN VBD PRP IN DT NNP . THE ASS and the Fox , having entered into partnership together for their mutual protection , went out into the forest to hunt . DT NN CC DT NN , VBG VBN IN NN RB IN PRP$ JJ NN , VBD RB IN DT NN TO VB . They had not proceeded far when they met a Lion . PRP VBD RB VBN RB WRB PRP VBD DT NN . The Fox , seeing imminent danger , approached the Lion and promised to contrive for him the capture of the Ass if the Lion would pledge his word not to harm the Fox . DT NN , VBG JJ NN , VBD DT NN CC VBD TO VB IN PRP DT NN IN DT NN IN DT NN MD VB PRP$ NN RB TO VB DT NN . Then , upon assuring the Ass that he would not be injured , the Fox led him to a deep pit and arranged that he should fall into it . RB , IN VBG DT NN IN PRP MD RB VB VBN , DT NN VBD PRP TO DT JJ NN CC VBD IN PRP MD VB IN PRP . The Lion , seeing that the Ass was secured , immediately clutched the Fox , and attacked the Ass at his leisure . DT NN , VBG IN DT NNP VBD VBN , RB VBD DT NN , CC VBD DT NN IN PRP$ NN . Never trust your enemy RB VB PRP$ NN Old mathematicians never die ; they just lose some of their functions . JJ NNS RB VBP ; PRP RB VBP DT IN PRP$ NNS . Nostalgia is like a grammar lesson . NN VBZ IN DT NN NN . You find the present tense and the past perfect . PRP VBP DT JJ NN CC DT JJ NN . My grandfather worked in a blacksmith shop when he was a boy , and he used to tell me how he had toughened himself up so he could stand the rigors of blacksmithing . PRP$ NN VBD IN DT NN NN WRB PRP VBD DT NN , CC PRP VBD TO VB PRP WRB PRP VBD VBN PRP RP IN PRP MD VB DT NNS IN VBG . He said he would stand outside behind the house and , with a 5 pound potato sack in each hand , extend his arms straight out to his sides and hold them there as long as he could . PRP VBD PRP MD VB IN IN DT NN CC , IN DT CD NN NN NN IN DT NN , VB PRP$ NNS RB IN TO PRP$ NNS CC VB PRP EX RB RB IN PRP MD . After a while he tried 10 pound potato sacks , then 20 pound potato sacks and finally he got to where he could lift a 50 pound potato sack in each hand and hold his arms straight out for five full minutes ! Eventually , he even started putting potatoes in the sacks . IN DT IN PRP VBD CD NN NN NNS , RB CD NN NN NNS CC RB PRP VBD TO WRB PRP MD VB DT CD NN NN NN IN DT NN CC VB PRP$ NNS RB IN IN CD JJ NNS . RB , PRP RB VBD VBG NNS IN DT NNS . Advance copies of the United Nations ' internal audit of its oil-for-food program reportedly show that U.N. officials wasted money and overlooked massive overcharges by contractors . NNP NNS IN DT NNP NNPS POS JJ NN IN PRP$ NN NN RB VBP IN NNP NNS VBD NN CC VBD JJ NNS IN NNS . News reports published Sunday in the United States say the audits , part of an extensive independent report to be released on Monday , criticize a former top aide to Secretary-General Kofi Annan , Benon Sevan , and the U.N. office he headed that ran the oil-for-food program . NNP VBZ VBN NNP IN DT NNP NNPS VBP DT NN , NN IN DT JJ JJ NN TO VB VBN IN NNP , VB DT JJ JJ NN TO JJ NNP NNP , NNP NNP , CC DT NNP NN PRP VBD IN VBD DT NN NN . However , the advance portions of the audit described by The New York Times and Associated Press do not reveal any systematic corruption or bribery . RB , DT NN NNS IN DT NN VBN IN DT NNP NNP NNP CC NNP NNP VBP RB VB DT JJ NN CC NN . Mr. Annan named an independent panel to investigate the program following allegations that billions of dollars were diverted by some members of the former Saddam Hussein regime and other corrupt officials . NNP NNP VBD DT JJ NN TO VB DT NN VBG NNS IN NNS IN NNS VBD VBN IN DT NNS IN DT JJ NNP NNP NN CC JJ JJ NNS . The program was created in 1996 to help the people of Iraq after the first Gulf War . DT NN VBD VBN IN CD TO VB DT NNS IN NNP IN DT JJ NNP NNP . Former U.S. central bank chief Paul Volcker heads the independent commission . JJ NNP JJ NN NN NNP NNP VBZ DT JJ NN . He said last week that no clear-cut evidence of wrongdoing has been found . PRP VBD JJ NN IN DT JJ NN IN NN VBZ VBN VBN . Sri Lanka 's military says it has launched airstrikes on rebel sites in northern parts of the country , following rebel artillery attacks . NNP NNP POS NN VBZ PRP VBZ VBN NNS IN NN NNS IN JJ NNS IN DT NN , VBG JJ NN NNS . Officials Saturday said at least 11 soldiers were killed and 53 others were wounded in the fighting on the Jaffna peninsula . NNS NNP VBD IN JJS CD NNS VBD VBN CC CD NNS VBD VBN IN DT NN IN DT NNP NN . They said Tamil Tiger rebels provoked the fighting by opening fire with artillery strikes against Sri Lankan troops . PRP VBD NNP NNP NNS VBD DT NN IN VBG NN IN NN NNS IN NNP NNP NNS . Government officials also said they sent a naval ship to the peninsula to evacuate nearly 800 civilians trapped in the area . NN NNS RB VBD PRP VBD DT JJ NN TO DT NN TO VB RB CD NNS VBN IN DT NN . Thousands of people have been stranded in northern Sri Lanka since rebels launched new attacks last month . NNS IN NNS VBP VBN VBN IN JJ NNP NNP IN NNS VBD JJ NNS JJ NN . The Tamil Tiger rebels have been fighting for a separate homeland in the north and east since the early 1980s . DT NNP NNP NNS VBP VBN VBG IN DT JJ NN IN DT NN CC NN IN DT JJ NNS . Tens of thousands of people have died in the violence . NNS IN NNS IN NNS VBP VBN IN DT NN . The White House will become a pink house on Thursday , as it is bathed in pink lighting to call attention to the fight against breast cancer . DT NNP NNP MD VB DT JJ NN IN NNP , IN PRP VBZ VBN IN JJ NN TO VB NN TO DT NN IN NN NN . U.S. President Barack Obama announced on the social networking site Twitter that the executive mansion will be lit in pink Thursday evening in recognition of October as National Breast Cancer Awareness Month . NNP NNP NNP NNP VBD IN DT JJ NN NN NNP IN DT NN NN MD VB VBN IN JJ NNP NN IN NN IN NNP IN NNP NNP NNP NNP NNP . Earlier this month , Mr. Obama signed a proclamation for breast cancer awareness month . RBR DT NN , NNP NNP VBD DT NN IN NN NN NN NN . It is one of numerous public efforts in October in the U.S. aimed at fighting the disease . PRP VBZ CD IN JJ JJ NNS IN NNP IN DT NNP VBN IN VBG DT NN . Last year , a large pink ribbon was hung outside the White House . JJ NN , DT JJ JJ NN VBD VBN IN DT NNP NNP . The American Cancer Society says there are about 40,000 breast cancer deaths annually in the U.S. DT NNP NNP NNP VBZ EX VBP IN CD NN NN NNS RB IN DT NNP The World Health Organization says breast cancer claims 5,19,000 lives worldwide each year . DT NNP NNP NNP VBZ NN NN VBZ CD NNS JJ DT NN . Someone in the world dies in a traffic accident , on average , every 30 seconds . DT IN DT NN VBZ IN DT NN NN , IN NN , DT CD NNS . That is the conclusion of the international group Make Roads Safe , a worldwide effort to make road safety a global priority . DT VBZ DT NN IN DT JJ NN VBZ NNP NNP , DT JJ NN TO VB NN NN DT JJ NN . On 31 March 2008 , the United Nations plans to take up the issue of global road safety amid calls for a U.N. conference to tackle the rising toll of road deaths and injuries . IN CD NNP CD , DT NNP NNPS VBZ TO VB RP DT NN IN JJ NN NN IN NNS IN DT NNP NN TO VB DT VBG NN IN NN NNS CC NNS . VOA 's Tetiana Koprowicz has more on efforts to improve road safety in the U.S. NNP POS NNP NNP VBZ RBR IN NNS TO VB NN NN IN DT NNP A British diplomat has met again with Palestinian Prime Minister Ismail Haniyeh to discuss the case of kidnapped BBC journalist Alan Johnston . DT JJ NN VBZ VBN RB IN JJ NNP NNP NNP NNP TO VB DT NN IN VBN NNP NN NNP NNP . British consul Richard Makepeace met in Gaza Tuesday with Mr. Haniyeh , of the Islamic militant group Hamas . JJ NN NNP NNP VBD IN NNP NNP IN NNP NNP , IN DT NNP JJ NN NNP . The two also held talks on the kidnapping last month despite a British boycott of Palestinian officials from Hamas . DT CD RB VBD NNS IN DT NN JJ NN IN DT JJ NN IN JJ NNS IN NNP . British officials say the talks do not represent a change in British policy , and are only focused on the case of Johnston , who was kidnapped in Gaza on March 12 . JJ NNS VBP DT NNS VBP RB VB DT NN IN JJ NN , CC VBP RB VBN IN DT NN IN NNP , WP VBD VBN IN NNP IN NNP CD . It is not clear who the kidnappers are . PRP VBZ RB JJ WP DT NNS VBP . An aide to Mr. Haniyeh said the Palestinian government hopes for a resolution of the case soon . DT NN TO NNP NNP VBD DT JJ NN NNS IN DT NN IN DT NN RB . Johnston was the only Western reporter permanently based in the Gaza Strip at the time of his abduction . NNP VBD DT JJ JJ NN RB VBN IN DT NNP NNP IN DT NN IN PRP$ NN . The United States and Israel have agreed to work together on developing a new missile defense system that would counter both long-range ballistic missiles as well as short-range rockets . DT NNP NNPS CC NNP VBP VBN TO VB RB IN VBG DT JJ NN NN NN WDT MD VB DT JJ JJ NNS RB RB IN JJ NNS . U.S Defense Secretary Robert Gates and his Israeli counterpart , Ehud Barak , agreed during talks Tuesday at the Pentagon to form a committee to work on the proposed system . NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBD IN NNS NNP IN DT NNP TO VB DT NN TO VB IN DT VBN NN . A Pentagon spokesman , Geoff Morrell , said Israel wants to be able to counter missile attacks possibly from Iran as well as rockets fired from Palestinian territories . DT NNP NN , NNP NNP , VBD NNP VBZ TO VB JJ TO VB NN NNS RB IN NNP RB RB IN NNS VBD IN JJ NNS . Israel has been facing regular rocket fire from Palestinian militants in the Gaza Strip since withdrawing from the territory in 2005 . NNP VBZ VBN VBG JJ NN NN IN JJ NNS IN DT NNP NNP IN VBG IN DT NN IN CD . Venezuelan President Hugo Chavez says he is ' putting on the brakes ' on his socialist revolution after voters rejected his plans to reform the constitution . JJ NNP NNP NNP VBZ PRP VBZ `` VBG IN DT NNS `` IN PRP$ JJ NN IN NNS VBD PRP$ NNS TO VB DT NN . Mr. Chavez said on his weekly broadcast Sunday it would be a mistake at this time to try to quicken the pace of his plans to turn Venezuela into a socialist haven . NNP NNP VBD IN PRP$ JJ NN NNP PRP MD VB DT NN IN DT NN TO VB TO VB DT NN IN PRP$ NNS TO VB NNP IN DT JJ NN . He said he will evaluate the results of the referendum before deciding how to proceed with his pro-socialist plans . PRP VBD PRP MD VB DT NNS IN DT NN IN VBG WRB TO VB IN PRP$ JJ NNS . He also said he will focus on regional elections later this year as one way to consolidate Socialist party power . PRP RB VBD PRP MD VB IN JJ NNS RB DT NN IN CD NN TO VB JJ NN NN . Venezuelan voters last month turned down the constitutional reform package which included making Mr. Chavez president for life . JJ NNS JJ NN VBD RP DT JJ NN NN WDT VBD VBG NNP NNP NN IN NN . A human rights group says Belarus has launched criminal probes against at least 18 leading opposition figures over their alleged involvement in post-election riots . DT JJ NNS NN VBZ NNP VBZ VBN JJ NNS IN IN JJS CD VBG NN NNS IN PRP$ JJ NN IN JJ NNS . The organization Vesna said Wednesday that those accused -- including seven of the nine candidates who ran against the country 's authoritarian leader -- face up to 15 years in prison if convicted . DT NN NNP VBD NNP IN DT VBN : VBG CD IN DT CD NNS WP VBD IN DT NN POS JJ NN : VB RP TO CD NNS IN NN IN VBN . Overall , Belarusian authorities jailed more than 600 people in the wake of Sunday 's protests against the re-election of President Alexander Lukashenko . RB , JJ NNS VBD JJR IN CD NNS IN DT NN IN NNP POS NNS IN DT NN IN NNP NNP NNP . In the election , Mr. Lukashenko won a fourth consecutive term , capturing 80 percent of the vote . IN DT NN , NNP NNP VBD DT JJ JJ NN , VBG CD NN IN DT NN . No other candidate won more than three percent . DT JJ NN VBD JJR IN CD NN . More than 30,000 demonstrators took to the streets after polls closed to protest what they said was a fraudulent election . JJR IN CD NNS VBD TO DT NNS IN NNS VBD TO VB WP PRP VBD VBD DT JJ NN . European observers and U.S. officials also have strongly criticized the election process . JJ NNS CC NNP NNS RB VBP RB VBN DT NN NN . U.S. Secretary of State nominee Condoleezza Rice is facing a second and final day of confirmation hearings Wednesday , after a first day that focused heavily on Iraq and repairing alliances strained by the conflict . NNP NNP IN NNP NN NNP NNP VBZ VBG DT JJ CC JJ NN IN NN NNS NNP , IN DT JJ NN WDT VBD RB IN NNP CC VBG NNS VBN IN DT NN . The Senate Foreign Relations Committee is expected to question Ms. Rice for several more hours Wednesday before voting on her nomination to succeed Secretary of State Colin Powell . DT NNP NNP NNP NNP VBZ VBN TO VB NNP NNP IN JJ JJR NNS NNP IN VBG IN PRP$ NN TO VB NNP IN NNP NNP NNP . A full Senate vote is expected Thursday . DT JJ NNP NN VBZ VBN NNP . Ms. Rice spent more than nine hours testifying Tuesday , handling tough questions about the direction of the war on terror and the Bush administration 's decision to invade Iraq . NNP NNP VBD JJR IN CD NNS VBG NNP , VBG JJ NNS IN DT NN IN DT NN IN NN CC DT NNP NN POS NN TO VB NNP . She steadfastly maintained that she believes progress is being made in Iraq , but she declined to give a timetable for the return home of U.S. troops . PRP RB VBD IN PRP VBZ NN VBZ VBG VBN IN NNP , CC PRP VBD TO VB DT NN IN DT NN NN IN NNP NNS . She said President Bush 's foreign policy goals in the next four years include ' spreading freedom and democracy ' around the globe , as well as alliance building . PRP VBD NNP NNP POS JJ NN NNS IN DT JJ CD NNS VBP `` VBG NN CC NN `` IN DT NN , RB RB IN NN NN . At least 13 people were killed in Indian Kashmir Wednesday in a series of violent incidents involving Indian security forces and militants . IN JJS CD NNS VBD VBN IN JJ NNP NNP IN DT NN IN JJ NNS VBG JJ NN NNS CC NNS . Indian officials say several gunbattles erupted when police and soldiers raided suspected rebel hideouts in the Udhampur and Poonch districts . JJ NNS VBP JJ NNS VBD WRB NNS CC NNS VBD JJ NN NNS IN DT NNP CC NNP NNS . They say seven militants were killed in the clashes , along with two Indian security personnel . PRP VBP CD NNS VBD VBN IN DT NNS , IN IN CD JJ NN NNS . In another incident , India 's military says four youths were killed in crossfire as Indian troops battled militants in the Kupwara district of northern Kashmir . IN DT NN , NNP POS NN VBZ CD NNS VBD VBN IN NN IN JJ NNS VBD NNS IN DT NNP NN IN JJ NNP . The civilian deaths triggered protests by residents of Kupwara against the security forces . DT JJ NNS VBD NNS IN NNS IN NNP IN DT NN NNS . Indian Prime Minister Manmohan Singh is to hold talks with Kashmiri political leaders on Saturday to try to stop the violence . JJ NN NN NNP NNP VBZ TO VB NNS IN JJ JJ NNS IN NNP TO VB TO VB DT NN . But several prominent Kashmiri separatists have said they will not attend the talks . CC JJ JJ JJ NNS VBP VBN PRP MD RB VB DT NNS . The American fast food chain KFC is famous around the world for its fried chicken . DT JJ JJ NN NN NNP VBZ JJ IN DT NN IN PRP$ JJ NN . KFC stands for Kentucky Fried Chicken and founded by Harlan David Sanders , better know to patrons as Colonel Sanders . NNP VBZ IN NNP NNP NNP CC VBN IN NNP NNP NNP , RB VBP TO NNS IN NNP NNP . In Kabul , Afghanistan , another KFC restaurant is doing a brisk business . IN NNP , NNP , DT NNP NN VBZ VBG DT JJ NN . But this KFC is short for Kabul Fried Chicken and serves kabobs and pizza alongside the chicken . CC DT NNP VBZ JJ IN NNP NNP NNP CC VBZ NNS CC NN IN DT NN . Rahimgul Sarawan reports from Kabul that while this KFC was inspired by Colonel Sanders , that is where the association ends . NNP NNP VBZ IN NNP IN IN DT NNP VBD VBN IN NNP NNP , WDT VBZ WRB DT NN VBZ . Brian Allen narrates . NNP NNP VBZ . Israel 's government is set to approve a plan that aims to turn the country into a space superpower . NNP POS NN VBZ VBN TO VB DT NN WDT VBZ TO VB DT NN IN DT NN NN . The Jerusalem Post reported Friday that Prime Minister Benjamin Netanyahu is expected to approve plans designed to increase sales of locally made space platforms to nearly $ 8 billion a year . DT NNP NNP VBD NNP IN NNP NNP NNP NNP VBZ VBN TO VB NNS VBN TO VB NNS IN RB VBN NN NNS TO RB $ CD CD DT NN . The newspaper said the multi-year plan also includes increased spending on space research and development , focusing on mini-satellites as Israel 's primary market . DT NN VBD DT JJ NN RB VBZ JJ NN IN NN NN CC NN , VBG IN NNS IN NNP POS JJ NN . The report quotes the head of the Defense Ministry 's Space Division as saying Israel has the capability to carve out at least 5 percent of the international space market , estimated to total $ 250 billion a year . DT NN VBZ DT NN IN DT NNP NNP POS NNP NNP IN VBG NNP VBZ DT NN TO VB RP IN JJS CD NN IN DT JJ NN NN , VBN TO VB $ CD CD DT NN . The report said Israel is in talks with several countries and defense companies about the possibility of space collaboration . DT NN VBD NNP VBZ IN NNS IN JJ NNS CC NN NNS IN DT NN IN NN NN . Foreign direct investment in China fell slightly in the first five months of the year . JJ JJ NN IN NNP VBD RB IN DT JJ CD NNS IN DT NN . The ministry of commerce reported Monday that foreign direct investment from January to May slipped 0.8 percent from the same period last year , to $ 22.4 billion . DT NN IN NN VBD NNP IN JJ JJ NN IN NNP TO NNP VBD CD NN IN DT JJ NN JJ NN , TO $ CD CD . Contracted investment , which gives an indication of future inflows , grew 14.88 percent in the same period , to $ 64.97 billion . VBN NN , WDT VBZ DT NN IN JJ NNS , VBD CD NN IN DT JJ NN , TO $ CD CD . Although foreign companies continue to build up investments in China , the pace of growth has been slowing . IN JJ NNS VBP TO VB RP NNS IN NNP , DT NN IN NN VBZ VBN VBG . Investments soared in late 2003 through 2004 after slowing during the outbreak of severe acute respiratory syndrome in the spring of 2003 . NNP VBD IN JJ CD IN CD IN VBG IN DT NN IN JJ JJ JJ NN IN DT NN IN CD . The U.S.-led coalition said in a statement Tuesday that its forces killed 43 militants in southern Afghanistan . DT JJ NN VBD IN DT NN NNP IN PRP$ NNS VBN CD NNS IN JJ NNP . The Afghan and U.S.-led troops battled the militants Sunday in Qalat district of Zabul province . DT JJ CC JJ NNS VBD DT NNS NNP IN NNP NN IN NNP NN . The statement said a joint patrol was ambushed with sniper fire , machine guns and heavy weapons from militants in multiple locations . DT NN VBD DT JJ NN VBD VBN IN NN NN , NN NNS CC JJ NNS IN NNS IN JJ NNS . The coalition said its forces fired back with small arms and rocket propelled grenades . DT NN VBD PRP$ NNS VBD RB IN JJ NNS CC NN VBD NNS . They also called in air support . PRP RB VBD IN NN NN . The statement said no Afghan or U.S.-led troops were killed or wounded in the attack . DT NN VBD DT JJ CC JJ NNS VBD VBN CC VBN IN DT NN . Nepal 's Maoist rebels have called off a traffic ban on major roads leading into the capital , Kathmandu , that disrupted supplies to the city for nearly a week . NNP POS NNP NNS VBP VBN RP DT NN NN IN JJ NNS VBG IN DT NN , NNP , WDT VBD NNS TO DT NN IN RB DT NN . The ban was called off Wednesday , after pleas from human rights groups and a mass demonstration this week by city residents demanding an end to the increasingly bloody conflict between Maoist rebels and security forces . DT NN VBD VBN RP NNP , IN NNS IN JJ NNS NNS CC DT NN NN DT NN IN NN NNS VBG DT NN TO DT RB JJ NN IN NNP NNS CC NN NNS . The rebels imposed the ban last week to protest the alleged killings of rebel activists in government custody and to press for information about those who are missing . DT NNS VBD DT NN JJ NN TO VB DT JJ NNS IN JJ NNS IN NN NN CC TO VB IN NN IN DT WP VBP VBG . Violence has escalated ahead of a January 13 deadline set by Prime Minister Sher Bahadur Deuba for the Maoists to resume peace talks . NN VBZ VBN RB IN DT NNP CD NN VBN IN NNP NNP NNP NNP NNP IN DT NNS TO VB NN NNS . The rebels have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state . DT NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN . More than 10,000 people have been killed in the violence . JJR IN CD NNS VBP VBN VBN IN DT NN . U.S. Congressman Tom DeLay predicts he will be cleared of a criminal conspiracy charge , and that he will soon be reinstated as majority leader in the House of Representatives . NNP NNP NNP NNP VBZ PRP MD VB VBN IN DT JJ NN NN , CC IN PRP MD RB VB VBN IN NN NN IN DT NNP IN NNPS . The Republican congressman was speaking on the television program ' Fox News Sunday , ' where he called the indictment against him ' manufactured ' and ' frivolous . ' DT JJ NN VBD VBG IN DT NN NN `` NNP NNP NNP , `` WRB PRP VBD DT NN IN PRP `` VBN `` CC `` JJ . `` But another Republican lawmaker says he is no longer comfortable with Mr. Delay as majority leader . CC DT JJ NN VBZ PRP VBZ RB RBR JJ IN NNP NNP IN NN NN . Speaking on CNN Sunday , Congressman Christopher Shays cited continual acts of Mr. Delay 's that in his words , ' border and sometimes go beyond ' what is ethical . VBG IN NNP NNP , NNP NNP NNP VBD JJ NNS IN NNP NNP POS WDT IN PRP$ NNS , `` NN CC RB VB IN `` WP VBZ JJ . Mr. DeLay stepped down as majority leader Thursday , after a grand jury in his home state of Texas indicted him for violating a state campaign-finance law . NNP NNP VBD RP IN NN NN NNP , IN DT JJ NN IN PRP$ NN NN IN NNP VBD PRP IN VBG DT NN NN NN . The allegation centers on the misuse of corporate donations . DT NN NNS IN DT NN IN JJ NNS . Last month , a United Nations conference in Rome discussed the world 's rising food prices . JJ NN , DT NNP NNP NN IN NNP VBD DT NN POS VBG NN NNS . The group called for trade barriers to be reduced and food export bans to be lifted . DT NN VBD IN NN NNS TO VB VBN CC NN NN NNS TO VB VBN . The cost of major food commodities has doubled over the past two years with rice , corn and wheat at record highs . DT NN IN JJ NN NNS VBZ VBN IN DT JJ CD NNS IN NN , NN CC NN IN NN NNS . The Philippines and Haiti , among other countries , have been hard-hit . DT NNPS CC NNP , IN JJ NNS , VBP VBN JJ . Some Filipino and Haitian immigrants in the United States are sending food to their families back home . DT JJ CC JJ NNS IN DT NNP NNPS VBP VBG NN TO PRP$ NNS RB NN . VOA 's Deborah Block has the story . NNP POS NNP NNP VBZ DT NN . Israeli officials said they plan to make it harder for the Arabic television network al-Jazeera to operate in Israel and the West Bank . JJ NNS VBD PRP VBP TO VB PRP RBR IN DT JJ NN NN NNP TO VB IN NNP CC DT NNP NNP . Media reports said Israel will not renew the work visas of some Israeli-based al-Jazeera employees , and that the network 's reporters will have less access to news conferences and briefings . NNS NNS VBD NNP MD RB VB DT NN NNS IN DT JJ NNP NNS , CC IN DT NN POS NNS MD VB JJR NN TO NN NNS CC NNS . Israeli officials tied the move to the decision last month by Qatar , which owns al-Jazeera , to suspend relations with Israel to protest its offensive in the Gaza Strip . JJ NNS VBD DT NN TO DT NN JJ NN IN NNP , WDT VBZ NNP , TO VB NNS IN NNP TO VB PRP$ NN IN DT NNP NNP . An Israeli official said Qatar created obstacles by closing Israel 's trade office in Doha . DT JJ NN VBD NNP VBD NNS IN VBG NNP POS NN NN IN NNP . Qatar had been the only Gulf Arab state to have trade ties with Israel . NNP VBD VBN DT JJ NNP NNP NN TO VB NN NNS IN NNP . Thousands of voters in Indian Kashmir went to the polls Tuesday in the first municipal elections in 27 years . NNS IN NNS IN NNP NNP VBD TO DT NNS NNP IN DT JJ JJ NNS IN CD NNS . The voters turned out in large numbers in some areas despite threats of attacks by rebel groups , and calls for a boycott of the vote by Muslim separatist politicians . DT NNS VBD RP IN JJ NNS IN DT NNS IN NNS IN NNS IN NN NNS , CC VBZ IN DT NN IN DT NN IN NNP JJ NNS . Although no attacks were reported , there was sporadic violence . IN DT NNS VBD VBN , EX VBD JJ NN . In Srinagar , anti-election demonstrators burnt tires and pelted riot police with stones . IN NNP , JJ NNS VBP NNS CC VBN NN NNS IN NNS . The poll to chose town councils in Indian Kashmir is being held in four stages . DT NN TO VB NN NNS IN JJ NNP VBZ VBG VBN IN CD NNS . It started on January 29 and the last stage will be held on February 10 . PRP VBD IN NNP CD CC DT JJ NN MD VB VBN IN NNP CD . Three candidates were killed by suspected Muslim separatists during the election campaign . CD NNS VBD VBN IN JJ NNP NNS IN DT NN NN . Iraqi police say a string of bomb attacks in Baghdad killed at least 27 people and wounded scores more Thursday . JJ NNS VBP DT NN IN NN NNS IN NNP VBD IN JJS CD NNS CC VBD NNS RBR NNP . Police say a car bomb in eastern Baghdad killed at least five people , while seven died in another car bombing in a largely Shi'ite neighborhood in northwestern Baghdad . NNS VBP DT NN NN IN JJ NNP VBD IN JJS CD NNS , IN CD VBD IN DT NN VBG IN DT RB JJ NN IN JJ NNP . Hours earlier , two bombs went off in an eastern part of the capital . NNS RB , CD NNS VBD RP IN DT JJ NN IN DT NN . One bomb killed 13 people at a crowded market . CD NN VBD CD NNS IN DT JJ NN . The other bomb killed two people near a police patrol . DT JJ NN VBD CD NNS IN DT NN NN . The explosions are the latest in the almost daily bomb blasts and other attacks in Baghdad and across Iraq . DT NNS VBP DT JJS IN DT RB JJ NN NNS CC JJ NNS IN NNP CC IN NNP . On Wednesday , insurgents killed at least 10 people , including six police officers and a Sunni Arab cleric . IN NNP , NNS VBD IN JJS CD NNS , VBG CD NNS NNS CC DT NNP NNP NN . Afghan and U.S. officials say a clash between Taleban insurgents and Afghan soldiers backed by U.S. troops in southern Helmand province has left one American soldier and seven insurgents dead . JJ CC NNP NNS VBP DT NN IN NNP NNS CC JJ NNS VBN IN NNP NNS IN JJ NNP NN VBZ VBN CD JJ NN CC CD NNS JJ . A military statement says another U.S. service member and an Afghan soldier were wounded in Saturday 's fierce fighting in the province 's Sangin district . DT JJ NN VBZ DT NNP NN NN CC DT JJ NN VBD VBN IN NNP POS JJ NN IN DT NN POS NNP NN . The statement says fighting erupted after Afghan and U.S. troops backed by planes and helicopter gunships attacked enemy positions , dropping 11 bombs . DT NN VBZ VBG VBN IN JJ CC NNP NNS VBN IN NNS CC NN NNS VBD NN NNS , VBG CD NNS . Helmand province has been a hotbed of insurgent activity since U.S.-led forces ousted the hard-line Islamist Taleban rulers of Afghanistan in late 2001 , following the September 11th terrorist attacks in the United States . NNP NN VBZ VBN DT NN IN JJ NN IN JJ NNS VBD DT JJ NNP NNP NNS IN NNP IN JJ CD , VBG DT NNP CD JJ NNS IN DT NNP NNPS . Russia 's lower house of parliament , the Duma , has ratified treaties with the Georgian breakaway regions of South Ossetia and Abkhazia . NNP POS JJR NN IN NN , DT NNP , VBZ VBN NNS IN DT JJ NN NNS IN NNP NNP CC NNP . The widely-expected endorsements clear the way for Moscow to keep thousands of troops in the pro-Russian territories . DT JJ NNS VBP DT NN IN NNP TO VB NNS IN NNS IN DT JJ NNS . Duma lawmakers voted unanimously Wednesday for the so-called friendship and mutual assistance treaties , which formalize economic , diplomatic and military ties . NNP NNS VBD RB NNP IN DT JJ NN CC JJ NN NNS , WDT VBP JJ , JJ CC JJ NNS . Moscow recognized the two regions as independent countries in August , shortly after Russian forces swept into Georgia to counter a Georgian military effort to reclaim South Ossetia by force . NNP VBD DT CD NNS IN JJ NNS IN NNP , RB IN JJ NNS VBD IN NNP TO VB DT JJ JJ NN TO VB NNP NNP IN NN . The invasion drew strong condemnations from the West , where some governments threatened to respond with sanctions on Moscow . DT NN VBD JJ NNS IN DT NNP , WRB DT NNS VBD TO VB IN NNS IN NNP . Moscow says it will station 7,600 troops in the territories . NNP VBZ PRP MD NN CD NNS IN DT NNS . Earlier this week , Russian Foreign Minister Sergei Lavrov said Moscow opposes the deployment of European Union monitors in the region . RBR DT NN , JJ NNP NNP NNP NNP VBD NNP VBZ DT NN IN NNP NNP VBZ IN DT NN . He said Russian forces will assume responsibility for security in the territories . PRP VBD JJ NNS MD VB NN IN NN IN DT NNS . Adult stem cell therapy has successfully treated leukemia and other cancers for years , in the form of bone marrow transplants . JJ NN NN NN VBZ RB VBN NN CC JJ NNS IN NNS , IN DT NN IN NN NN NNS . A new study in the Journal of the American Medical Association [ JAMA ] finds treatment with adult stem cells is also helping patients with autoimmune diseases and heart conditions . DT JJ NN IN DT NNP IN DT NNP NNP NNP LRB NNP RRB VBZ NN IN JJ NN NNS VBZ RB VBG NNS IN JJ NNS CC NN NNS . VOA 's Alex Villarreal reports . NNP POS NNP NNP VBZ . The party of Israeli Prime Minister Ariel Sharon votes Thursday , on forming a new coalition government to advance plans for an Israeli withdrawal from the Gaza Strip . DT NN IN JJ NNP NNP NNP NNP VBZ NNP , IN VBG DT JJ NN NN TO VB NNS IN DT JJ NN IN DT NNP NNP . Mr. Sharon asked members to approve the union with the rival Labor Party , saying it will help the government gain enough votes to approve the pullout . NNP NNP VBD NNS TO VB DT NN IN DT JJ NNP NNP , VBG PRP MD VB DT NN NN RB VBZ TO VB DT NN . Meanwhile , Israeli military officials say troops killed five Palestinians in separate incidents overnight near the Gaza Strip 's border with Egypt . RB , JJ JJ NNS VBP NNS VBD CD NNS IN JJ NNS JJ IN DT NNP NNP POS NN IN NNP . Israeli soldiers opened fire on a group of people moving in a forbidden area near Rafah , killing three of them . JJ NNS VBD NN IN DT NN IN NNS VBG IN DT JJ NN IN NNP , VBG CD IN PRP . Military officials say the troops suspected the men were arms smugglers or terrorists planning an attack . JJ NNS VBP DT NNS VBD DT NNS VBD NNS NNS CC NNS VBG DT NN . Israeli forces also shot and killed one Palestinian and injured two others spotted in a separate area near the Gaza border . JJ NNS RB VBD CC VBD CD JJ CC JJ CD NNS VBN IN DT JJ NN IN DT NNP NN . One of those injured later died at a hospital . CD IN DT VBN RB VBD IN DT NN . A group led by terrorist Abu Musab al-Zarqawi has claimed responsibility for Monday 's assassination of Baghdad 's deputy police chief . DT NN VBN IN JJ NNP NNP NNP VBZ VBN NN IN NNP POS NN IN NNP POS NN NN NN . The group , calling itself the ' al-Qaida Organization of Holy War in Iraq , ' made the claim on an Islamist web site , just hours after gunmen shot down Brigadier Amer Nayef and his police officer son . DT NN , VBG PRP DT `` NNP NNP IN NNP NNP IN NNP , `` VBD DT NN IN DT JJ NN NN , RB NNS IN NNS VBD RP NNP NNP NNP CC PRP$ NN NN NN . Iraqi officials say the two men were killed as they left their home in Baghdad 's southern Dora district . JJ NNS VBP DT CD NNS VBD VBN IN PRP VBD PRP$ NN IN NNP POS JJ NNP NN . The assassination comes six days after insurgents gunned down Baghdad 's provincial governor and six of his bodyguards as they rode to work . DT NN VBZ CD NNS IN NNS VBD RP NNP POS JJ NN CC CD IN PRP$ NNS IN PRP VBP TO VB . Elsewhere in the capital , U.S. authorities say two U.S. soldiers were killed and four others wounded when their armored vehicle struck a roadside bomb . RB IN DT NN , NNP NNS VBP CD NNP NNS VBD VBN CC CD NNS VBN WRB PRP$ JJ NN VBD DT NN NN . Separately , authorities say a suicide car bomber rammed a car into a police station in southern Baghdad , killing at least three people . RB , NNS VBP DT NN NN NN VBD DT NN IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS . U.N. Secretary-General Kofi Annan says Iraq 's forthcoming election marks the beginning of a new phase , in which responsible dialogue among Shi'ites , Sunni Arabs and Kurds will make the difference between success and failure in the war-torn country . NNP NNP NNP NNP VBZ NNP POS JJ NN VBZ DT NN IN DT JJ NN , IN WDT JJ NN IN NNS , NNP NNS CC NNPS MD VB DT NN IN NN CC NN IN DT JJ NN . In a report to the Security Council Friday , Mr. Annan says increasing sectarian violence and ongoing human rights violations pose key challenges as voters prepare to go to the polls Thursday . IN DT NN TO DT NNP NNP NNP , NNP NNP VBZ VBG JJ NN CC JJ JJ NNS NNS VBP JJ NNS IN NNS VBP TO VB TO DT NNS NNP . He says the most positive development in the past three months has been the determination of Sunni Arabs to get involved in the political process . PRP VBZ DT RBS JJ NN IN DT JJ CD NNS VBZ VBN DT NN IN NNP NNS TO VB VBN IN DT JJ NN . In the quarterly report on Iraq to the Security Council , Mr. Annan warns , however , the country remains beset with formidable security , political and economic challenges . IN DT JJ NN IN NNP TO DT NNP NNP , NNP NNP VBZ , RB , DT NN VBZ JJ IN JJ NN , JJ CC JJ NNS . Meanwhile , Sunni Arab clerics pleaded Friday for the lives of four Western hostages . RB , NNP NNP NNS VBD NNP IN DT NNS IN CD JJ NNS . Their kidnappers have said they will kill the men Saturday unless all Iraqi prisoners are freed . PRP$ NNS VBP VBN PRP MD VB DT NNS NNP IN DT JJ NNS VBP VBN . Egyptian authorities say a construction company bus driver is in custody after he opened fire on a busload of workers , killing six and wounding others , near Cairo . JJ NNS VBP DT NN NN NN NN VBZ IN NN IN PRP VBD NN IN DT NN IN NNS , VBG CD CC VBG NNS , IN NNP . Egyptian construction firm Arab Contractors says Mahmoud Sweilam , a 20-year veteran of the company , surrendered after the deadly rampage early Tuesday . JJ NN NN NNP NNP VBZ NNP NNP , DT JJ NN IN DT NN , VBD IN DT JJ NN RB NNP . Authorities say Sweilam was driving more than 20 company employees to their work site when he suddenly stopped the bus and began shooting at them with an automatic rifle . NNS VBP NNP VBD VBG JJR IN CD NN NNS TO PRP$ NN NN WRB PRP RB VBD DT NN CC VBD VBG IN PRP IN DT JJ NN . Police are still investigating a motive for the attack . NNS VBP RB VBG DT NN IN DT NN . U.S. private employers added 71,000 jobs in July , indicating the U.S. labor market and the economy at large are slow to recover from recession . NNP JJ NNS VBD CD NNS IN NNP , VBG DT NNP NN NN CC DT NN IN JJ VBP JJ TO VB IN NN . A report Friday from the Labor Department shows the unemployment rate stayed unchanged at 9.5 percent . DT NN NNP IN DT NNP NNP VBZ DT NN NN VBD JJ IN CD NN . Economists closely watch the private payrolls figure , because private companies do the bulk of hiring in the United States . NNS RB VBP DT JJ NNS NN , IN JJ NNS VBP DT NN IN VBG IN DT NNP NNPS . Employment is also a big indicator of consumer spending , as those who are unemployed or worried about job stability tend to spend less . NN VBZ RB DT JJ NN IN NN NN , IN DT WP VBP JJ CC JJ IN NN NN VBZ TO VB JJR . The country lost jobs overall in July , due in large part to cuts at the U.S. Census Bureau . DT NN VBD NNS JJ IN NNP , JJ IN JJ NN TO NNS IN DT NNP NNP NNP . The government agency cut about 1,44,000 temporary employees who were hired for only a couple of months to conduct the once-a-decade population count . DT NN NN VBD IN CD JJ NNS WP VBD VBN IN RB DT NN IN NNS TO VB DT JJ NN NN . Venezuela 's president has invited Haiti to join a program offering inexpensive oil to Caribbean nations . NNP POS NN VBZ VBN NNP TO VB DT NN NN JJ NN TO NNP NNS . The offer came during a visit Monday to Caracas by Haiti 's President-Elect Rene Preval . DT NN VBD IN DT NN NNP TO NNP IN NNP POS JJ NNP NNP . Mr. Preval met with Venezuelan president Hugo Chavez . NNP NNP VBD IN JJ NN NNP NNP . They discussed Haiti 's inclusion in Venezuela 's Petrocaribe program which offers generous payment options to Caribbean countries for the purchase of Venezuelan oil . PRP VBD NNP POS NN IN NNP POS NNP NN WDT VBZ JJ NN NNS TO JJ NNS IN DT NN IN JJ NN . During the meeting , Mr. Chavez said Venezuela would also donate diesel fuel for use by schools and hospitals in Haiti . IN DT NN , NNP NNP VBD NNP MD RB VB NN NN IN NN IN NNS CC NNS IN NNP . Mr. Preval was elected in February following a campaign of promises to improve social conditions and education for Haitians . NNP NNP VBD VBN IN NNP VBG DT NN IN NNS TO VB JJ NNS CC NN IN NNS . He will be inaugurated on May 14 . PRP MD VB VBN IN NNP CD . Police in Nepal armed with batons dispersed a protest Tuesday by Tibetan refugees and monks in front of the Chinese Embassy . NNS IN NNP VBN IN NNS VBD DT NN NNP IN JJ NNS CC NNS IN NN IN DT JJ NN . About 100 protesters in Kathmandu were loaded into trucks and vans and sent to detention centers . IN CD NNS IN NNP VBD VBN IN NNS CC NNS CC VBN TO NN NNS . There have been almost daily demonstrations in Nepal against China since March 10 , when protests began in Tibet 's capital , Lhasa . EX VBP VBN RB JJ NNS IN NNP IN NNP IN NNP CD , WRB NNS VBD IN NNP POS NN , NNP . At least 400 protesters were detained in Nepal Monday . IN JJS CD NNS VBD VBN IN NNP NNP . The U.N. human rights office in Nepal has said it is deeply concerned at the arbitrary arrests and detentions . DT NNP JJ NNS NN IN NNP VBZ VBN PRP VBZ RB VBN IN DT JJ NNS CC NNS . Nepal 's border with China in the Himalayas is a key route for Tibetans fleeing Chinese rule in the region . NNP POS NN IN NNP IN DT NNP VBZ DT JJ NN IN NNS VBG JJ NN IN DT NN . Iraqi police say a car bomb has killed at least 21 people at a Baghdad market . JJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT NNP NN . They say 25 others were wounded in the blast in a mostly Shi'ite Muslim part of Dora - a neighborhood in southern Baghdad . PRP VBP CD NNS VBD VBN IN DT NN IN DT RB JJ NNP NN IN NNP IN DT NN IN JJ NNP . Elsewhere in the capital Tuesday , a roadside bomb killed an Iraqi policeman , but an Iraqi Cabinet minister , Suhaila Abed Jaafar , minister of displacement and migration escaped unhurt from another bomb blast . RB IN DT NN NNP , DT NN NN VBD DT JJ NN , CC DT JJ NNP NN , NNP NNP NNP , NN IN NN CC NN VBD NN IN DT NN NN . The attacks came as Britain 's Foreign Secretary Jack Straw met in Baghdad with President Jalal Talabani about the slow progress in forming a new Iraqi government . DT NNS VBD IN NNP POS NNP NNP NNP NNP VBD IN NNP IN NNP NNP NNP IN DT JJ NN IN VBG DT JJ JJ NN . Straw stressed the government should not be dominated by one religious group . NNP VBD DT NN MD RB VB VBN IN CD JJ NN . But Iraq 's Prime Minister Ibrahim al-Jaafari said choosing a government is an internal affair . CC NNP POS NNP NNP NNP NNP VBD VBG DT NN VBZ DT JJ NN . Meanwhile , Jordanian officials have announced the release of a Jordanian embassy driver who had been held hostage in Iraq since December . RB , JJ NNS VBP VBN DT NN IN DT JJ NN NN WP VBD VBN VBN NN IN NNP IN NNP . Two important new studies show tightly managing blood sugar helps diabetics avoid many of the complications of the disease including kidney problems and heart disease . CD JJ JJ NNS VBP RB VBG NN NN VBZ NNS VB NN IN DT NNS IN DT NN VBG NN NNS CC NN NN . One study focused on Type Two diabetes . CD NN VBD IN NNP CD NNS . The other , funded by the Juvenile Diabetes Foundation , gives hope to those with Type One . DT JJ , VBN IN DT NNP NNP NNP , VBZ NN TO DT IN NNP CD . VOA 's Carol Pearson reports . NNP POS NNP NNP VBZ . Forensic experts in eastern Bosnia-Herzegovina have begun exhuming a mass grave believed to contain the bodies of 36 Muslims , including women and children , killed during the Balkan conflict . JJ NNS IN JJ NNP VBP VBN VBG DT NN NN VBN TO VB DT NNS IN CD NNS , VBG NNS CC NNS , VBN IN DT JJ NN . Eyewitnesses say Bosnian Serb forces killed the victims then took the bodies to a garage in the village of Snagovo , near Zvornik , and set the building on fire . NNS VBP JJ JJ NNS VBD DT NNS RB VBD DT NNS TO DT NN IN DT NN IN NNP , IN NNP , CC VBD DT NN IN NN . The corpses were later buried in a mass grave . DT NNS VBD RB VBN IN DT NN NN . Bosnian authorities have already exhumed two other mass graves in the village , finding about 300 skeletons . JJ NNS VBP RB VBN CD JJ NN NNS IN DT NN , VBG IN CD NNS . They are believed to be the remains of some of the 8,000 Muslim men and boys massacred after Serb forces captured the enclave of Srebrenica in 1995 . PRP VBP VBN TO VB DT NNS IN DT IN DT CD NNP NNS CC NNS VBD IN JJ NNS VBD DT NN IN NNP IN CD . Iranian news media report that armed bandits have taken 30 people hostage in the southeast of the country . JJ NN NNS VBP IN JJ NNS VBP VBN CD NNS NN IN DT NN IN DT NN . The reports say the bandits blocked a road and opened fire on vehicles before abducting the victims Sunday . DT NNS VBP DT NNS VBD DT NN CC VBD NN IN NNS IN VBG DT NNS NNP . The incident took place in Sistan-Baluchestan . DT NN VBD NN IN NNP . Few other details were immediately available . JJ JJ NNS VBD RB JJ . Thousands of motorcycle riders are in Washington for a parade known as ' Rolling Thunder , ' which comes a day before the Memorial Day holiday honoring U.S. military personnel killed in battle . NNS IN NN NNS VBP IN NNP IN DT NN VBN IN `` NNP NNP , `` WDT VBZ DT NN IN DT NNP NNP NN VBG NNP JJ NNS VBN IN NN . The bikers are visiting the Vietnam Veterans memorial Sunday and are then gathering at the Lincoln memorial where there will be speakers . DT NNS VBP VBG DT NNP NNP JJ NNP CC VBP RB VBG IN DT NNP NN WRB EX MD VB NNS . A musical tribute to Veterans also is to be held today , which will include pop group Paul Revere and The Raiders and singer Nancy Sinatra . DT JJ NN TO NNP RB VBZ TO VB VBN NN , WDT MD VB NN NN NNP NNP CC DT NNS CC NN NNP NNP . The ' Rolling Thunder ' event specifically honors missing U.S. soldiers and prisoners of war . DT `` NNP NNP `` NN RB VBZ VBG NNP NNS CC NNS IN NN . Top-seeded Lleyton Hewitt of Australia and number-two Dominik Hrbaty of Slovakia have advanced to the second round of the International men 's hardcourt tennis championships in Adelaide , Australia . JJ NNP NNP IN NNP CC JJ NNP NNP IN NNP VBP VBN TO DT JJ NN IN DT JJ NNS POS NN NN NNS IN NNP , NNP . Hewitt dropped the opening set Tuesday before bouncing back to beat Jan Hernych of the Czech Republic , 04-Jun , 06-Feb , 06-Apr . NNP VBD DT NN NN NNP IN VBG RB TO VB NNP NNP IN DT JJ NNP , CD , CD , CD . The second-seeded Hrbaty had an easier time , topping Rameez Junaid of Australia , 06-Mar , 07-May . DT JJ NNP VBD DT JJR NN , VBG NNP NNP IN NNP , CD , CD . In other matches involving seeded players , number-five James Blake of the United States defeated Alberto Martin of Spain , 06-Mar , 06-Mar . IN JJ NNS VBG JJ NNS , JJ NNP NNP IN DT NNP NNPS VBD NNP NNP IN NNP , CD , CD . But eighth-seeded Juan Ignacio Chela of Argentina was upset , losing to Ivo Karlovic of Croatia , 06-Mar , 03-Jun , 06-Jan . CC JJ NNP NNP NNP IN NNP VBD VBN , VBG TO NNP NNP IN NNP , CD , CD , CD . Unseeded players advancing included Australia 's Mark Philippoussis , Florian Mayer of Germany , Britain 's Andy Murray , Andreas Seppi of Italy , Frenchman Florent Serra , Jarkko Nieminen of Finland and Danish player Kenneth Carlsen . JJ NNS VBG VBD NNP POS NNP NNP , NNP NNP IN NNP , NNP POS NNP NNP , NNP NNP IN NNP , NN NNP NNP , NNP NNP IN NNP CC JJ NN NNP NNP . The global human rights organization , Amnesty International says that HIV and AIDS are devastating poor women and children in South Africa . DT JJ JJ NNS NN , NNP NNP VBZ IN NNP CC NNP VBP VBG JJ NNS CC NNS IN NNP NNP . In a report released in London , Amnesty says that poverty , gender inequality and unemployment remain major contributing factors . IN DT NN VBN IN NNP , NNP VBZ IN NN , NN NN CC NN VBP JJ JJ NNS . Pop Singer Annie Lennox is highlighting the issue with her new charity tune called ' Sing . ' NN NN NNP NNP VBZ VBG DT NN IN PRP$ JJ NN NN VBD `` VBG . `` On a recent trip to Africa , she says she learned how the disease affects women -- especially pregnant mothers and their unborn children -- much more than it does men . IN DT JJ NN TO NNP , PRP VBZ PRP VBD WRB DT NN VBZ NNS : RB JJ NNS CC PRP$ JJ NNS : RB JJR IN PRP VBZ NNS . VOA 's Mandy Clark reports . NNP POS NNP NNP VBZ . Police have made a drug raid on athletes for the first time in the history of the Olympic games . NNS VBP VBN DT NN NN IN NNS IN DT JJ NN IN DT NN IN DT NNP NNS . Italian authorities late Saturday and early Sunday morning seized materials in a surprise sweep through the living quarters of the Austrian biathlon and cross country teams . JJ NNS JJ NNP CC JJ NNP NN VBD NNS IN DT NN NN IN DT VBG NNS IN DT JJ NN CC NN NN NNS . While Italian police searched the residences , the International Olympic Committee conducted unannounced , out-of-competition drug tests on at least six Austrian cross-country skiers and four biathletes . IN JJ NNS VBD DT NNS , DT NNP NNP NNP VBD JJ , JJ NN NNS IN IN JJS CD JJ JJ NNS CC CD NNS . The involvement of Italian police is consistent with the country 's anti-doping laws , which treat doping as a criminal offense . DT NN IN JJ NN VBZ JJ IN DT NN POS JJ NNS , WDT VBP NN IN DT JJ NN . The probe began when the World Anti-Doping Agency discovered blood-doping equipment in Austria connected to Walter Mayer . DT NN VBD WRB DT NNP NNP NNP VBD JJ NN IN NNP VBN TO NNP NNP . He was banned by the IOC from the Turin Olympics and the 2010 Vancouver Games for suspicion of performing blood transfusions at the 2002 Salt Lake City Games . PRP VBD VBN IN DT NNP IN DT NNP NNPS CC DT CD NNP NNPS IN NN IN VBG NN NNS IN DT CD NNP NNP NNP NNPS . But Mayer remains the head coach of both the Austrian cross country and the biathlon teams . CC NNP VBZ DT NN NN IN DT DT JJ NN NN CC DT NN NNS . A new U.N. report says the existence of armed militias in Lebanon is incompatible with restoring the country 's sovereignty and territorial integrity after three decades of Syrian domination . DT JJ NNP NN VBZ DT NN IN JJ NNS IN NNP VBZ JJ IN VBG DT NN POS NN CC JJ NN IN CD NNS IN JJ NN . Special U.N. envoy Terje Roed-Larsen said in his report that Lebanon 's inability to exert control over some areas or to rein in militias is stalling its progress toward full sovereignty . JJ NNP NN NNP NNP VBD IN PRP$ NN IN NNP POS NN TO VB NN IN DT NNS CC TO VB IN NNS VBZ VBG PRP$ NN IN JJ NN . Mr. Roed-Larsen is the special envoy in charge of implementing Security Council resolution 1559 , which calls for the withdrawal of foreign troops from Lebanon and the disarming of all militias , such as Hezbollah . NNP NNP VBZ DT JJ NN IN NN IN VBG NNP NNP NN CD , WDT VBZ IN DT NN IN JJ NNS IN NNP CC DT NN IN DT NNS , JJ IN NNP . The report was delivered Wednesday in New York , as Lebanese troops deployed near Palestinian militant camps in the hills near the Syrian border . DT NN VBD VBN NNP IN NNP NNP , IN JJ NNS VBN IN JJ JJ NNS IN DT NNS IN DT JJ NN . Soldiers used loud speakers to call on the militants to leave the base and surrender those responsible for the killing Tuesday of a Lebanese army contractor . NNS VBD JJ NNS TO VB IN DT NNS TO VB DT NN CC VB DT JJ IN DT NN NNP IN DT JJ NN NN . An Indian court has sentenced a Pakistani man to death for the militant attack on New Delhi 's famous 17th century Red Fort five years ago . DT JJ NN VBZ VBN DT JJ NN TO NN IN DT JJ NN IN NNP NNP POS JJ JJ NN NNP NNP CD NNS RB . Muhammad Arif was handed the death sentence Monday for his role in the December 2000 attack that killed three people . NNP NNP VBD VBN DT NN NN NNP IN PRP$ NN IN DT NNP CD NN WDT VBD CD NNS . The victims - a soldier and two civilians - died when Arif and five other militants sneaked into the complex and opened fire . DT NNS IN DT NN CC CD NNS : VBD WRB NNP CC CD JJ NNS VBD IN DT NN CC VBD NN . The Red Fort was a 17th century palace for Muslim Mughal emperor Shah Jehan . DT NNP NNP VBD DT JJ NN NN IN NNP NNP NN NNP NNP . The fort is now a symbol of India 's independence . DT NN VBZ RB DT NN IN NNP POS NN . Many speeches and official pronouncements are given at its gates . JJ NNS CC JJ NNS VBP VBN IN PRP$ NNS . The United States has formally extended sanctions against Burma 's military government for another year . DT NNP NNPS VBZ RB VBN NNS IN NNP POS JJ NN IN DT NN . President Barack Obama informed Congress of the decision Friday , saying Burma poses a continuing threat to U.S. national security and foreign policy . NNP NNP NNP VBD NNP IN DT NN NNP , VBG NNP VBZ DT VBG NN TO NNP JJ NN CC JJ NN . He added that Burma 's actions and policies are hostile to U.S. interests . PRP VBD IN NNP POS NNS CC NNS VBP JJ TO NNP NNS . The existing sanctions on Burma must be renewed annually . DT VBG NNS IN NNP MD VB VBN RB . They were set to expire next week . PRP VBD VBN TO VB JJ NN . Despite the sanctions , President Obama has been making an effort to engage the isolated country . IN DT NNS , NNP NNP VBZ VBN VBG DT NN TO VB DT JJ NN . Earlier this week , U.S. Assistant Secretary of State Kurt Campbell visited Burma for a two-day trip , during which he met with leaders of the military junta and detained opposition leader Aung San Suu Kyi . RBR DT NN , NNP NNP NNP IN NNP NNP NNP VBD NNP IN DT JJ NN , IN WDT PRP VBD IN NNS IN DT JJ NN CC JJ NN NN NNP NNP NNP NNP . The United States has strongly criticized Burma for upcoming election plans that effectively exclude Aung San Suu Kyi and her National League for Democracy party . DT NNP NNP VBZ RB VBN NNP IN VBG NN NNS WDT RB VBP NNP NNP NNP NNP CC PRP$ NNP NNP IN NNP NN . The United States has stopped accepting requests for H1-B specialty work visas because its quota of 65,000 visas for 2006 has been reached . DT NNP NNPS VBZ VBN VBG NNS IN JJ NN NN NNS IN PRP$ NN IN CD NNS IN CD VBZ VBN VBN . The government 's immigration services agency said Friday , any further visa requests that are received will have to wait until late next year . DT NN POS NN NNS NN VBD NNP , DT JJ NN NNS WDT VBP VBN MD VB TO VB IN JJ JJ NN . The specialty work visa program allows American companies to hire skilled workers from abroad with advanced skills , including scientists , engineers , or computer programmers . DT NN NN NN NN VBZ JJ NNS TO VB JJ NNS IN RB IN JJ NNS , VBG NNS , NNS , CC NN NNS . The 65,000 visas granted annually normally can be extended for up to six years . DT CD NNS VBN RB RB MD VB VBN IN RB TO CD NNS . Congress decides how many visas are to be issued . NNP VBZ WRB JJ NNS VBP TO VB VBN . In addition to 65,000 regular H1-B visas , It also has approved an additional 20,000 work permits each year for foreigners who hold an advanced degree ( master 's or doctorate ) from an American college or university . IN NN TO CD JJ JJ NNS , PRP RB VBZ VBN DT JJ CD NN VBZ DT NN IN NNS WP VBP DT JJ NN LRB NN POS CC JJ RRB IN DT JJ NN CC NN . Taiwan President Chen Shui-bian has called for a ban on the use of weapons of mass destruction across the Taiwan Strait . NNP NNP NNP NNP VBZ VBN IN DT NN IN DT NN IN NNS IN NN NN IN DT NNP NNP . Mr. Chen said Wednesday that Taiwan is willing to guarantee that it will not use such weapons , and called on China to do the same . NNP NNP VBD NNP IN NNP VBZ JJ TO VB IN PRP MD RB VB JJ NNS , CC VBD IN NNP TO VB DT NN . Mr. Chen also made a new appeal to China to hold talks with the island , saying the two sides should work together to create a code of conduct across the strait . NNP NNP RB VBD DT JJ NN TO NNP TO VB NNS IN DT NN , VBG DT CD NNS MD VB RB TO VB DT NN IN NN IN DT NN . China has rejected past overtures made by Mr. Chen , and has refused to speak with the Taiwanese leader until he agrees that Taiwan is an inseparable part of China . NNP VBZ VBN JJ NNS VBN IN NNP NNP , CC VBZ VBN TO VB IN DT JJ NN IN PRP VBZ IN NNP VBZ DT JJ NN IN NNP . China has threatened to seize Taiwan by force if it makes moves toward independence . NNP VBZ VBN TO VB NNP IN NN IN PRP VBZ NNS IN NN . Diplomats at the U.N. nuclear agency say the United States and its European allies have agreed to suspend their push to refer Iran to the Security Council for possible sanctions over its nuclear activities . NNS IN DT NNP JJ NN VBP DT NNP NNPS CC PRP$ JJ NNS VBP VBN TO VB PRP$ NN TO VB NNP TO DT NNP NNP IN JJ NNS IN PRP$ JJ NNS . The diplomats , speaking on condition of anonymity , said U.S. and European officials agreed to the delay to give Russia more time to persuade Iran to compromise on its nuclear activities . DT NNS , VBG IN NN IN NN , VBD NNP CC JJ NNS VBD TO DT NN TO VB NNP JJR NN TO VB NNP TO VB IN PRP$ JJ NNS . They spoke Monday , ahead of this week 's meeting of the board of governors of the International Atomic Energy Agency in Vienna . PRP VBD NNP , RB IN DT NN POS NN IN DT NN IN NNS IN DT NNP NNP NNP NNP IN NNP . The West accuses Iran of seeking to build nuclear weapons - a charge Iran denies . DT NNP VBZ NNP IN VBG TO VB JJ NNS IN DT NN NNP VBZ . Meanwhile , British Foreign Secretary Jack Straw says Iran must meet its obligations and allow international inspectors to visit its nuclear facilities . RB , NNP NNP NNP NNP NNP VBZ NNP MD VB PRP$ NNS CC VB JJ NNS TO VB PRP$ JJ NNS . On Sunday , the Iranian parliament voted to bar such visits if Iran is referred to the Security Council . IN NNP , DT JJ NN VBD TO VB JJ NNS IN NNP VBZ VBN TO DT NNP NNP . Israeli soldiers raided a West Bank refugee camp , Friday , sparking a shootout that killed two Palestinian militants and badly wounded another . JJ NNS VBD DT NNP NNP NN NN , NNP , VBG DT NN WDT VBD CD JJ NNS CC RB VBD DT . An Israeli military spokeswoman says Palestinians fired at troops who entered the Balata refugee camp at Nablus to arrest militants in the pre-dawn operation . DT JJ JJ NN VBZ NNS VBD IN NNS WP VBD DT NNP NN NN IN NNP TO VB NNS IN DT JJ NN . The fighting , part of a week-long Israeli offensive against militants , came a day after Palestinian authorities in the Gaza Strip began enforcing a ban on public displays of weapons in a key step toward imposing order . DT NN , NN IN DT JJ JJ NN IN NNS , VBD DT NN IN JJ NNS IN DT NNP NNP VBD VBG DT NN IN JJ NNS IN NNS IN DT JJ NN IN VBG NN . Friday 's bloodshed came hours after Palestinians finished voting in local elections in the West Bank widely seen as a test of the political clout for the militant group Hamas ahead of a parliamentary ballot in January . NNP POS NN VBD NNS IN NNS VBD NN IN JJ NNS IN DT NNP NNP RB VBN IN DT NN IN DT JJ NN IN DT JJ NN NNP RB IN DT JJ NN IN NNP . Unofficial results show the ruling Fatah party of Palestinian President Mahmoud Abbas won control of at least 61 of the 104 local councils , and Hamas took 28 . JJ NNS VBP DT NN NNP NN IN JJ NNP NNP NNP VBD NN IN IN JJS CD IN DT CD JJ NNS , CC NNP VBD CD . U.S. military officials says they have completed a major sweep of western Iraq aimed at suppressing militant attacks in the lead-up to next week 's constitutional referendum . NNP JJ NNS VBZ PRP VBP VBN DT JJ NN IN JJ NNP VBN IN VBG JJ NNS IN DT JJ TO JJ NN POS JJ NN . A spokesman in Baghdad Friday said U.S.-led troops killed 50 insurgents during the six-day operation along the Syrian border . DT NN IN NNP NNP VBD JJ NNS VBD CD NNS IN DT JJ NN IN DT JJ NN . He also said six U.S. Marines were killed by two separate roadside bombs in the area of operations . PRP RB VBD CD NNP NNS VBD VBN IN CD JJ NN NNS IN DT NN IN NNS . The end of the military offensive comes just over one week before Iraqis go to the polls to vote on the country 's new constitution . DT NN IN DT JJ NN VBZ RB IN CD NN IN NNS VBP TO DT NNS TO VB IN DT NN POS JJ NN . Shi'ite and Kurdish leaders support the constitution , while many Sunnis have denounced it . NNP CC NNP NNS VBP DT NN , IN JJ NNPS VBP VBN PRP . Meanwhile , Iraqi President Jalal Talabani told a British television network , Sky News , Iraqi forces will not be ready to replace U.S.-led troops for two years . RB , JJ NNP NNP NNP VBD DT JJ NN NN , NNP NNP , JJ NNS MD RB VB JJ TO VB JJ NNS IN CD NNS . But he said coalition withdrawal depends on a resolution from the U.N. Security Council and negotiations between the Iraqi government and coalition forces . CC PRP VBD NN NN VBZ IN DT NN IN DT NNP NNP NNP CC NNS IN DT JJ NN CC NN NNS . The World Health Organization says AIDS is spreading rapidly through China and estimates 10 million people may be infected with the virus by 2010 . DT NNP NNP NNP VBZ NNP VBZ VBG RB IN NNP CC VBZ CD CD NNS MD VB VBN IN DT NN IN CD . The WHO says the disease has spread to all of China 's provinces and autonomous regions - with injected drug use the main route of transmission . DT NNP VBZ DT NN VBZ VBN TO DT IN NNP POS NNS CC JJ NNS : IN VBN NN NN DT JJ NN IN NN . It says a similar situation exists in Malaysia and Vietnam . PRP VBZ DT JJ NN VBZ IN NNP CC NNP . The warnings came in a statement Tuesday from the organization 's regional director , Shigeru Omi . DT NNS VBD IN DT NN NNP IN DT NN POS JJ NN , NNP NNP . Mr. Omi called for stronger political will by Asian governments to stop the spread of the disease . NNP NNP VBD IN JJR JJ NN IN JJ NNS TO VB DT NN IN DT NN . Based on the WHO 's records for Asia , Cambodia has the highest percentage of people infected with HIV - at 1.9 percent of the population . VBN IN DT NNP POS NNS IN NNP , NNP VBZ DT JJS NN IN NNS VBN IN NNP : IN CD NN IN DT NN . Of all the people enjoying a so-called white Christmas Saturday , none appreciate it more than the folks of Victoria , Texas . IN PDT DT NNS VBG DT JJ JJ NNP NNP , NN VBP PRP RBR IN DT NNS IN NNP , NNP . The usually balmy town near the Gulf of Mexico was hit with an unprecedented 30 centimeters of snow overnight . DT RB JJ NN IN DT NNP IN NNP VBD VBN IN DT JJ CD NNS IN NN JJ . The U.S. National Weather Service says until today , Victoria had not seen a measurable snowfall since 1973 . DT NNP NNP NNP NNP VBZ IN NN , NNP VBD RB VBN DT JJ NN IN CD . The last time the town of 60,000 enjoyed a white Christmas was in 1917 , 86 years ago . DT JJ NN DT NN IN CD VBD DT JJ NNP VBD IN CD , CD NNS RB . Residents will only have about 24 hours to build a snowman , as Sunday 's forecast calls for the return of sunny skies and high temperatures well above freezing . NNS MD RB VB RB CD NNS TO VB DT NN , IN NNP POS NN VBZ IN DT NN IN JJ NNS CC JJ NNS RB IN VBG . Iraqi officials say insurgents carried out two separate suicide car bombings Thursday , killing at least eight people . JJ NNS VBP NNS VBD RP CD JJ NN NN NNS NNP , VBG IN JJS CD NNS . South of Kirkuk ( in Tuz Khormato ) , five people were killed and 16 injured when a suicide bomber detonated his vehicle near an Iraqi army checkpoint . NNP IN NNP LRB IN NNP NNP RRB , CD NNS VBD VBN CC CD NN WRB DT NN NN VBD PRP$ NN IN DT JJ NN NN . A second suicide bomber struck in the city of Samarra , killing at least three people when his car blew up near a joint U.S. - Iraqi patrol . DT JJ NN NN VBD IN DT NN IN NNP , VBG IN JJS CD NNS WRB PRP$ NN VBD RP IN DT JJ NNP : JJ NN . The attacks come as hundreds of thousands of Shi'ite Muslim pilgrims gather under tight security in the city of Karbala to mark Arbaeen . DT NNS VBP IN NNS IN NNS IN NNP NNP NNS VBP IN JJ NN IN DT NN IN NNP TO VB NNP . Many pilgrims have walked to the Shi'ite holy city from towns across Iraq to mark the end of the 40-day mourning period for Imam Hussein , who was killed in a battle nearly 14 centuries ago . JJ NNS VBP VBD TO DT NNP JJ NN IN NNS IN NNP TO VB DT NN IN DT JJ NN NN IN NNP NNP , WP VBD VBN IN DT NN RB CD NNS RB . Hussein was the grandson of the Prophet Mohammad , and is revered by Shi'ites . NNP VBD DT NN IN DT NNP NNP , CC VBZ VBN IN NNS . Egyptian officials say rain and sandstorms that battered the country for several days have killed at least 31 people . JJ NNS VBP NN CC NNS WDT VBD DT NN IN JJ NNS VBP VBN IN JJS CD NNS . The hardest-hit areas were in northern Egypt , where the storms brought heavy rains and wind . DT JJ NNS VBD IN JJ NNP , WRB DT NNS VBD JJ NNS CC NN . At least 13 of the deaths came in a six-story factory building collapse in the northern port city of Alexandria . IN JJS CD IN DT NNS VBD IN DT JJ NN NN NN IN DT JJ JJ NN IN NNP . Building collapses blamed on poor construction and failure to follow building rules are relatively frequent in Egypt . NN NNS VBN IN JJ NN CC NN TO VB NN NNS VBP RB JJ IN NNP . Officials said Monday they had reopened ports on the Red Sea , which had been closed because of the storms . NNS VBD NNP PRP VBD VBN NNS IN DT NNP NNP , WDT VBD VBN VBN IN IN DT NNS . Officials also blamed the weather for poor visibility that led to traffic accidents . NNS RB VBD DT NN IN JJ NN WDT VBD TO NN NNS . The international airport in the western U.S. city of Denver , Colorado , is expected to begin limited operations Friday , after two days of being shut down during the busiest travel days of the holiday season . DT JJ NN IN DT JJ NNP NN IN NNP , NNP , VBZ VBN TO VB JJ NNS NNP , IN CD NNS IN VBG VBN RP IN DT JJS NN NNS IN DT NN NN . Thousands of people were stranded at the airport Wednesday when snowstorms hit the U.S. central plains region . NNS IN NNS VBD VBN IN DT NN NNP WRB NNS VBD DT NNP JJ NNS NN . Some areas were buried under as much as 61 centimeters of snow . DT NNS VBD VBN IN RB JJ IN CD NNS IN NN . In Colorado - a mountainous state where heavy snow is common - the storm shut down not just the airport but several major highways and postal delivery . IN NNP IN DT JJ NN WRB JJ NN VBZ JJ IN DT NN VBD RP RB RB DT NN CC JJ JJ NNS CC JJ NN . Airport authorities say they will open two runways Friday after they are swept clear of snow . NNP NNS VBP PRP MD VB CD NNS NNP IN PRP VBP VBN JJ IN NN . But they are warning passengers to expect further delays as the airlines now deal with a two-day backlog of passengers . CC PRP VBP VBG NNS TO VB JJ NNS IN DT NNS RB VBP IN DT JJ NN IN NNS . Many travelers are rushing to get to the homes of friends and family before Christmas Day on Monday December 25 . JJ NNS VBP VBG TO VB TO DT NNS IN NNS CC NN IN NNP NNP IN NNP NNP CD . The U.S. State Department has expressed its sympathy and solidarity with Poland over the death this week of its first post-communist Foreign Minister , Krzysztof Skubiszewski . DT NNP NNP NNP VBZ VBN PRP$ NN CC NN IN NNP IN DT NN DT NN IN PRP$ JJ JJ NNP NNP , NNP NNP . State Department spokesman P.J. Crowley says Skubiszewski paved the way for Poland 's eventual membership in NATO and the strong alliance between Poland and the United States . NNP NNP NN NNP NNP VBZ NNP VBD DT NN IN NNP POS JJ NN IN NNP CC DT JJ NN IN NNP CC DT NNP NNPS . He called Skubiszewski a great statesman and visionary . PRP VBD NNP DT JJ NN CC NN . Skubiszewski died Monday at age 83 . NNP VBD NNP IN NN CD . No cause of death was announced . DT NN IN NN VBD VBN . He was Poland 's first foreign minister after the fall of communism in 1989 . PRP VBD NNP POS JJ JJ NN IN DT NN IN NN IN CD . He held the post until 1993 . PRP VBD DT NN IN CD . Skubiszewski opened talks with NATO and worked towards reconciliation with Germany . NNP VBD NNS IN NNP CC VBD IN NN IN NNP . Scientists at the National Geographic Society 's headquarters in Washington have revealed early details of an extraordinary archaeological find . NNS IN DT NNP NNP NNP POS NN IN NNP VBP VBN JJ NNS IN DT JJ JJ NN . Two graveyards discovered in Northern Niger are providing important insight into life in the African Sahara when it was green and lush . CD NNS VBN IN NNP NNP VBP VBG JJ NN IN NN IN DT JJ NNP WRB PRP VBD JJ CC JJ . Paul Sisco reports . NNP NNP VBZ . The Ugandan military says it attacked a hideout of rebel leader Joseph Kony in southern Sudan this week , killing four of his bodyguards . DT JJ NN VBZ PRP VBD DT NN IN JJ NN NNP NNP IN JJ NNP DT NN , VBG CD IN PRP$ NNS . A military spokesman , Lieutenant Chris Magezi , says soldiers clashed with rebels commanded by Kony southwest of Juba on Tuesday . DT JJ NN , NNP NNP NNP , VBZ NNS VBN IN NNS VBN IN NNP NN IN NNP IN NNP . The spokesman says one Ugandan soldier was wounded in the battle . DT NN VBZ CD JJ NN VBD VBN IN DT NN . He says Kony and his fighters are now fleeing a Ugandan offensive , heading toward the Democratic Republic of Congo . PRP VBZ NNP CC PRP$ NNS VBP RB VBG DT JJ NN , VBG IN DT JJ NNP IN NNP . Sudan allows Ugandan forces to pursue Kony and other leaders of the rebel Lord 's Resistance Army on its territory . NNP VBZ JJ NNS TO VB NNP CC JJ NNS IN DT NN NNP POS NNP NNP IN PRP$ NN . The International Criminal Court has issued arrest warrants for Kony and four other LRA leaders . DT NNP NNP NNP VBZ VBN NN NNS IN NNP CC CD JJ NNP NNS . The group is notorious for its brutality and use of child soldiers in northern Uganda . DT NN VBZ JJ IN PRP$ NN CC NN IN NN NNS IN JJ NNP . The group 's 20-year uprising has displaced more than 1.5 million people . DT NN POS JJ NN VBZ VBN JJR IN CD CD NNS . Russian police have detained at least 30 anti-government protesters in Moscow , including a prize-winning 82-year-old human rights activist . JJ NNS VBP VBN IN JJS CD JJ NNS IN NNP , VBG DT JJ JJ JJ NNS NN . Opposition demonstrators gathered in central Moscow 's Triumfalnaya square Thursday in support of their constitutional right to freedom of assembly . NN NNS VBD IN JJ NNP POS NNP NN NNP IN NN IN PRP$ JJ NN TO NN IN NN . They shouted slogans against Russian Prime Minister Vladimir Putin , saying he has reversed democratic reform . PRP VBD NNS IN JJ NNP NNP NNP NNP , VBG PRP VBZ VBN JJ NN . News reports from Moscow say 82-year-old Russian dissident Lyudmila Alexeyeva was among those arrested . NNP NNS IN NNP VBP JJ JJ NN NNP NNP VBD IN DT VBN . She is one of this year 's recipients of the European Parliament 's Sakharov prize for freedom of thought . PRP VBZ CD IN DT NN POS NNS IN DT NNP NNP POS NNP NN IN NN IN NN . She is a founding member of the Moscow Helsinki group , one of Russia 's oldest human rights organizations . PRP VBZ DT JJ NN IN DT NNP NNP NN , CD IN NNP POS JJS JJ NNS NNS . A White House statement issued Thursday says the Obama administration is dismayed that Russian authorities prevented citizens from exercising their right to assemble peacefully . DT NNP NNP NN VBN NNP VBZ DT NNP NN VBZ JJ IN JJ NNS VBD NNS IN VBG PRP$ NN TO VB RB . The statement says freedom of speech and assembly are universal rights that all governments should recognize and defend . DT NN VBZ NN IN NN CC NN VBP JJ NNS IN DT NNS MD VB CC VB . At least 10 civilians died Thursday when Pakistani troops fired shells aimed at militants who are trying to impose strict Islamic law in northwestern Swat valley . IN JJS CD NNS VBD NNP WRB JJ NNS VBD NNS VBN IN NNS WP VBP VBG TO VB JJ JJ NN IN JJ NNP NN . Local police say at least one home was destroyed in Allahabad village during the incident . JJ NNS VBP IN JJS CD NN VBD VBN IN NNP NN IN DT NN . At least nine other people were wounded . IN JJS CD JJ NNS VBD VBN . Pakistani troops have been trying to eject fighters loyal to cleric Maulana Fazlullah , who have taken control of some police checkpoints and towns in Swat . JJ NNS VBP VBN VBG TO VB NNS JJ TO NN NNP NNP , WP VBP VBN NN IN DT NN NNS CC NNS IN NNP . Closer to the border with Afghanistan , five Pakistani soldiers in a truck were killed today by a roadside bomb that went off in North Waziristan . NNP TO DT NN IN NNP , CD JJ NNS IN DT NN VBD VBN NN IN DT NN NN WDT VBD RP IN NNP NNP . Earlier this week , the Pakistani army reported gains in its battle against Islamists in Swat , saying troops had recaptured a strategic mountain peak . RBR DT NN , DT JJ NN VBD NNS IN PRP$ NN IN NNS IN NNP , VBG NNS VBD VBN DT JJ NN NN . The army also said it had shut down the FM radio station used by Fazlullah to call for strict Islamic law and a holy war against the Pakistani government . DT NN RB VBD PRP VBD VBN RP DT NNP NN NN VBN IN NNP TO VB IN JJ JJ NN CC DT JJ NN IN DT JJ NN . Hundreds of people angry over the rising cost of food demonstrated in eastern Afghanistan Tuesday . NNS IN NNS JJ IN DT VBG NN IN NN VBN IN JJ NNP NNP . Protesters blocked a key road connecting the town of Jalalabad to the capital , Kabul . NNP VBD DT JJ NN VBG DT NN IN NNP TO DT NN , NNP . They demanded action from the government to bring down skyrocketing prices . PRP VBD NN IN DT NN TO VB RP VBG NNS . Earlier , the Afghan government announced it is setting aside $ 50 million to buy wheat from other countries , including Kazakhstan and neighboring Pakistan . RB , DT JJ NN VBD PRP VBZ VBG RB $ CD CD TO VB NN IN JJ NNS , VBG NNP CC JJ NNP . Many demonstrators expressed anger with Pakistan - upon which Afghans are heavily reliant for food imports . JJ NNS VBD NN IN NNP : IN WDT NNS VBP RB JJ IN NN NNS . Pakistan has recently slowed its exports due to its own concerns about rising food prices . NNP VBZ RB VBN PRP$ NNS JJ TO PRP$ JJ NNS IN VBG NN NNS . Elsewhere , in the western Afghan province of Herat , authorities say they believe militants have abducted two foreign employees of a U.S. security company . RB , IN DT JJ JJ NN IN NNP , NNS VBP PRP VBP NNS VBP VBN CD JJ NNS IN DT NNP NN NN . Police say an Indian and a Nepalese worker disappeared Monday evening while traveling in the Adraskan district . NNS VBP DT JJ CC DT JJ NN VBD NNP NN IN VBG IN DT NNP NN . Their driver also is missing . PRP$ NN RB VBZ VBG . A U.S. soldier charged in the Abu Ghraib prisoner abuse scandal in Iraq has pleaded guilty to one count of dereliction of duty . DT NNP NN VBN IN DT NNP NNP NN NN NN IN NNP VBZ VBN JJ TO CD NN IN NN IN NN . Military officials announced Tuesday that Army Specialist Megan Ambuhl entered her plea last Saturday at a summary court-martial in Baghdad . JJ NNS VBD NNP IN NNP NNP NNP NNP VBD PRP$ NN JJ NNP IN DT NN JJ IN NNP . Army officials also say she was demoted to private and docked half a month 's pay . NNP NNS RB VBP PRP VBD VBN TO JJ CC JJ NN DT NN POS NN . The 30-year-old woman is the third soldier from a military police company in Maryland to plead guilty to charges stemming from the scandal . DT JJ NN VBZ DT JJ NN IN DT JJ NN NN IN NNP TO VB JJ TO NNS VBG IN DT NN . Officials say she failed to prevent or report the abuse by other U.S. soldiers . NNS VBP PRP VBD TO VB CC VB DT NN IN JJ NNP NNS . She could have faced at least seven years in prison on other charges . PRP MD VB VBN IN JJS CD NNS IN NN IN JJ NNS . The scandal erupted in April when photographs of U.S. soldiers taunting and humiliating naked Iraqi prisoners became public , sparking worldwide condemnation . DT NN VBD IN NNP WRB NNS IN NNP NNS VBG CC VBG JJ JJ NNS VBD JJ , VBG JJ NN . Burundi 's army says it killed at least 17 National Liberation Forces rebel fighters in recent clashes . NNP POS NN VBZ PRP VBD IN JJS CD NNP NNP NNP NN NNS IN JJ NNS . At least one soldier and a civilian also were killed in fighting that began late Friday in a village west of the capital , Bujumbura IN JJS CD NN CC DT NN RB VBD VBN IN VBG IN VBD RB NNP IN DT NN NN IN DT NN , NNP The government says FNL rebels were robbing the village when the army intervened to stop them . DT NN VBZ NNP NNS VBD VBG DT NN WRB DT NN VBD TO VB PRP . The FNL signed a peace agreement with the government in July 2006 , but the accord was broken about a year later . DT NNP VBD DT NN NN IN DT NN IN NNP CD , CC DT NN VBD VBN IN DT NN RB . The U.S. military in Iraq says American troops have detained six suspects in connection with last week 's assassination of Baghdad provincial governor Ali al-Haidari . DT NNP NN IN NNP VBZ JJ NNS VBP VBN CD NNS IN NN IN JJ NN POS NN IN NNP JJ NN NNP NNP . Acting on a tip from residents , soldiers seized the suspects early Tuesday in a house in the same western Baghdad neighborhood where the governor was gunned down . VBG IN DT NN IN NNS , NNS VBD DT NNS RB NNP IN DT NN IN DT JJ JJ NNP NN WRB DT NN VBD VBN RB . Meanwhile , near the northern city of Mosul , two Iraqi National Guards were killed and two wounded in a car bomb attack Wednesday . RB , IN DT JJ NN IN NNP , CD JJ NNP NNPS VBD VBN CC CD VBN IN DT NN NN NN NNP . A similar attack in the area Tuesday killed three other guardsmen . DT JJ NN IN DT NN NNP VBD CD JJ NNS . Iraqi officials , police and national guards have been prime targets of insurgents who are seeking to further destabilize the country before the January 30 elections . JJ NNS , NN CC JJ NNS VBP VBN JJ NNS IN NNS WP VBP VBG TO RBR VB DT NN IN DT NNP CD NNS . Despite the violence , interim Prime Minister Iyad Allawi and President Bush have said the vote for a national assembly must go ahead . IN DT NN , JJ NNP NNP NNP NNP CC NNP NNP VBP VBN DT NN IN DT JJ NN MD VB RB . A British court has remanded into custody the first suspect formally charged in connection with the failed July 21 bombings on the London transport system . DT JJ NN VBZ VBN IN NN DT JJ NN RB VBN IN NN IN DT VBN NNP CD NNS IN DT NNP NN NN . Ismael Abdurahman , who appeared in a London court Thursday , is accused of withholding information that may have helped police find those involved in terrorism . NNP NNP , WP VBD IN DT NNP NN NNP , VBZ VBN IN VBG NN WDT MD VB VBN NNS VBP DT VBN IN NN . Meanwhile , thousands of British police are patrolling the streets of London , four weeks after the July 7 bomb attacks on the city 's transit system that killed 56 people , including four suicide bombers . RB , NNS IN JJ NNS VBP VBG DT NNS IN NNP , CD NNS IN DT NNP CD NN NNS IN DT NN POS NN NN WDT VBD CD NNS , VBG CD NN NNS . In another development , an Italian court has scheduled an August 17 extradition hearing for one of the suspects in the July 21 failed London bombings . IN DT NN , DT JJ NN VBZ VBN DT NNP CD NN NN IN CD IN DT NNS IN DT NNP CD VBN NNP NNS . British authorities have alleged that Hamdi Issac , also known as Osman Hussein , fled to Italy after he and three other men tried to set off bombs . JJ NNS VBP VBN IN NNP NNP , RB VBN IN NNP NNP , VBD TO NNP IN PRP CC CD JJ NNS VBD TO VB RP NNS . Mr. Issac , a British citizen of Ethiopian descent , was arrested last Friday . NNP NNP , DT JJ NN IN JJ NN , VBD VBN JJ NNP . Afghan warlord Abdul Rashid Dostum has narrowly escaped an assassination attempt that wounded 20 other people . JJ NN NNP NNP NNP VBZ RB VBN DT NN NN WDT VBD CD JJ NNS . Officials say a suicide bomber blew himself up near the general outside a northern mosque where the warlord had been praying for the Eid al-Adha Muslim festival . NNS VBP DT NN NN VBD PRP RP IN DT NN IN DT JJ NN WRB DT NN VBD VBN VBG IN DT NNP NNP NNP NN . General Dostum says he believes al-Qaida was behind the attack . NNP NNP VBZ PRP VBZ NNP VBD IN DT NN . But the Associated Press quotes a Taleban leader saying the Taleban carried out the attack . CC DT NNP NNP VBZ DT NNP NN VBG DT NNP VBD IN DT NN . Meanwhile a statement purportedly from Taleban leader Mullah Omar dismissed reports that the radical Islamic movement 's fighters were willing to lay down arms in exchange for amnesty . RB DT NN RB IN NNP NN NNP NNP VBD NNS IN DT JJ NNP NN POS NNS VBD JJ TO VB RP NNS IN NN IN NN . A statement to news agencies says the Taleban will not enter into a dialogue with the Afghan government as long as foreign soldiers remain in Afghanistan . DT NN TO NN NNS VBZ DT NNP MD RB VB IN DT NN IN DT JJ NN RB RB IN JJ NNS VBP IN NNP . A defiant Iranian president says the U.N. nuclear watchdog agency can issue as many resolutions as it likes , but says it can not prevent Iranian progress . DT JJ JJ NN VBZ DT NNP JJ NN NN MD VB IN JJ NNS IN PRP VBZ , CC VBZ PRP MD RB VB JJ NN . Mahmoud Ahmadinejad spoke Sunday , one day after the International Atomic Energy Agency voted overwhelmingly to report Iran to the U.N. Security Council over its suspect nuclear program . NNP NNP VBD NNP , CD NN IN DT NNP NNP NNP NNP VBD RB TO VB NNP TO DT NNP NNP NNP IN PRP$ JJ JJ NN . Iran insists its nuclear program is peaceful , but Western governments accuse Tehran of seeking to build an atomic bomb . NNP VBZ PRP$ JJ NN VBZ JJ , CC JJ NNS VBP NNP IN VBG TO VB DT JJ NN . In comments reported by the Iranian news agency , the Iranian president pointed to the West and said ' it is you who have atomic weapons and should be disarmed . ' IN NNS VBN IN DT JJ NN NN , DT JJ NN VBD TO DT NNP CC VBD `` PRP VBZ PRP WP VBP JJ NNS CC MD VB VBN . `` He said Iran has no need for a nuclear arsenal . PRP VBD NNP VBZ DT NN IN DT JJ NN . Earlier , the Iranian Foreign Ministry confirmed that Tehran has stopped all cooperation with the IAEA and will go forward with plans to enrich uranium - a process that can be used either to make an atomic bomb or to generate electricity . RB , DT JJ NNP NNP VBD IN NNP VBZ VBN DT NN IN DT NNP CC MD VB RB IN NNS TO VB NN IN DT NN WDT MD VB VBN DT TO VB DT JJ NN CC TO VB NN . NATO says an explosion in Afghanistan 's eastern province of Ghazni has killed two soldiers and a civilian interpreter . NNP VBZ DT NN IN NNP POS JJ NN IN NNP VBZ VBN CD NNS CC DT JJ NN . In a statement released Wednesday , NATO officials say the soldiers and the interpreter were on patrol Tuesday when they were hit by the blast . IN DT NN VBN NNP , NNP NNS VBP DT NNS CC DT NN VBD IN NN NNP WRB PRP VBD VBN IN DT NN . NATO says a third soldier was wounded . NNP VBZ DT JJ NN VBD VBN . NATO did not release the nationalities of the soldiers . NNP VBD RB VB DT NNS IN DT NNS . Meanwhile , German officials Wednesday announced the arrest of two men they say were planning an attack on a NATO base in the northern Afghan city of Mazar-i-Sharif . RB , JJ NNS NNP VBD DT NN IN CD NNS PRP VBP VBD VBG DT NN IN DT NNP NN IN DT JJ JJ NN IN NNP . Officials say Afghan authorities stopped the men - from Pakistan and Tajikistan - last week in a car stuffed with explosives . NNS VBP JJ NNS VBD DT NNS : IN NNP CC NNP : JJ NN IN DT NN VBN IN NNS . Thousands of Afghans have staged a peaceful protest against the killing of a prominent pro-government Muslim cleric in a mosque bomb blast . NNS IN NNS VBP VBN DT JJ NN IN DT NN IN DT JJ NN NN NN IN DT NN NN NN . At least 5,000 people Sunday took to the streets in the eastern Afghan province of Khost , where Mullah Ahmad Khan was killed Friday during midday prayers . IN JJS CD NNS NNP VBD TO DT NNS IN DT JJ JJ NN IN NNP , WRB NNP NNP NNP VBD VBN NNP IN NN NNS . At least 15 worshippers were wounded in the blast . IN JJS CD NNS VBD VBN IN DT NN . The protesters urged the government to provide better security for religious leaders . DT NNS VBD DT NN TO VB JJR NN IN JJ NNS . No one has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . But authorities blame Taleban insurgents who have in the past killed several influential clerics who had denounced the militants and expressed support for President Hamid Karzai . CC NNS VBP NNP NNS WP VBP IN DT NN VBD JJ JJ NNS WP VBD VBN DT NNS CC VBD NN IN NNP NNP NNP . President Bush is to meet his Russian counterpart , Vladimir Putin , in Washington later this month for talks on bilateral and global issues . NNP NNP VBZ TO VB PRP$ JJ NN , NNP NNP , IN NNP RB DT NN IN NNS IN NN CC JJ NNS . The White House said Friday the two leaders will discuss ways to deepen the U.S.-Russian partnership to face current challenges and opportunities . DT NNP NNP VBD NNP DT CD NNS MD VB NNS TO VB DT JJ NN TO VB JJ NNS CC NNS . The September 16th meeting will follow a summit of leaders of the United Nations Security Council , focusing on ways to combat terrorism . DT NNP JJ NN MD VB DT NN IN NNS IN DT NNP NNP NNP NNP , VBG IN NNS TO VB NN . Mr. Putin and Mr. Bush have stressed they have a close relationship , despite some differences over international policy . NNP NNP CC NNP NNP VBP VBN PRP VBP DT JJ NN , IN DT NNS IN JJ NN . Moscow has been critical of the war in Iraq , and the United States has called on Russia to do more to promote human rights in the former Soviet Union . NNP VBZ VBN JJ IN DT NN IN NNP , CC DT NNP NNP VBZ VBN IN NNP TO VB JJR TO VB JJ NNS IN DT JJ NNP NNP . A series of rebel attacks in Iraq have killed some 25 people as U.S. officials pledge to investigate recent ' friendly fire ' killings . DT NN IN JJ NNS IN NNP VBP VBN DT CD NNS IN NNP NNS NN TO VB JJ `` JJ NN `` NNS . A suicide attack killed at least 15 people and wounded nearly two dozen more north of Baghdad . DT NN NN VBD IN JJS CD NNS CC VBD RB CD NN JJR NN IN NNP . Nearby in Baquba , rebel attacks on Iraqi soldiers and police killed at least 10 people . RB IN NNP , JJ NNS IN JJ NNS CC NNS VBD IN JJS CD NNS . Also Monday , Iraqi officials issued new photos of wanted Jordanian terrorist Abu Musab al Zarqawi , showing him with short hair and a closely cropped beard . RB NNP , JJ NNS VBD JJ NNS IN JJ JJ JJ NNP NNP NNP NNP , VBG PRP IN JJ NN CC DT RB VBN NN . His group reportedly claimed responsibility for several of Monday 's attacks . PRP$ NN RB VBD NN IN NN IN NNP POS NNS . Also today , Bulgaria 's defense minister Nikolai Svinarov says an investigation shows U.S. troops were probably responsible for the shooting death of a Bulgarian soldier last Friday . RB NN , NNP POS NN NN NNP NNP VBZ DT NN VBZ NNP NNS VBD RB JJ IN DT NN NN IN DT JJ NN JJ NNP . That same day , U.S. troops shot dead an Italian intelligence agent at a checkpoint . DT JJ NN , NNP NNS VBD JJ DT JJ NN NN IN DT NN . U.S. officials have ordered investigations into both incidents . NNP NNS VBP VBN NNS IN DT NNS . The U.S. Senate is to vote later Thursday , on an immigration reform bill that would toughen border security and give millions of illegals a chance to become American citizens . DT NNP NNP VBZ TO VB RB NNP , IN DT NN NN NN WDT MD VB NN NN CC VB NNS IN NNS DT NN TO VB JJ NNS . On Wednesday , the Senate voted to limit debate on the controversial legislation . IN NNP , DT NNP VBD TO VB NN IN DT JJ NN . Two other provisions in the bill would create a so-called guest worker program and would deport illegal immigrants who have been in the country for fewer than five years . CD JJ NNS IN DT NN MD VB DT JJ NN NN NN CC MD VB JJ NNS WP VBP VBN IN DT NN IN JJR IN CD NNS . If the Senate passes the legislation , it will have to be reconciled with a bill passed by the House of Representatives last December . IN DT NNP VBZ DT NN , PRP MD VB TO VB VBN IN DT NN VBN IN DT NNP IN NNPS JJ NNP . That bill emphasized border security and would make it a felony to be in the United States illegally . DT NN VBD NN NN CC MD VB PRP DT NN TO VB IN DT NNP NNPS RB . The issue has sparked widespread demonstrations across the United States . DT NN VBZ VBN JJ NNS IN DT NNP NNPS . An international development group is working to raise $ 2 billion in aid to help rebuild and reform Haiti 's education system . DT JJ NN NN VBZ VBG TO VB $ CD CD IN NN TO VB VB CC VB NNP POS NN NN . The Inter-American Development Bank is leading a proposed five-year effort to train teachers , improve facilities and adopt a national curriculum . DT NNP NNP NNP VBZ VBG DT VBN JJ NN TO VB NNS , VB NNS CC VB DT JJ NN . More than 4,000 schools were damaged or destroyed during the earthquake in January that killed more than 2,00,000 people . JJR IN CD NNS VBD VBN CC VBN IN DT NN IN NNP WDT VBD JJR IN CD NNS . The IDB says that before the earthquake , only half of Haiti 's children of primary school age were enrolled in classes . DT NNP VBZ IN IN DT NN , RB NN IN NNP POS NNS IN JJ NN NN VBD VBN IN NNS . Haitian President Rene Preval announced the plan Saturday along with IDB President Luis Alberto Moreno . JJ NNP NNP NNP VBD DT NN NNP IN IN NNP NNP NNP NNP NNP . President Bush says the United States needs better intelligence efforts to make gains in its global war on terrorism . NNP NNP VBZ DT NNP NNPS VBZ JJR NN NNS TO VB NNS IN PRP$ JJ NN IN NN . In an interview with CNN , the president said Tuesday that human intelligence efforts need to be improved . IN DT NN IN NNP , DT NN VBD NNP IN JJ NN NNS VBP TO VB VBN . He said the ability to read the enemy 's mail and hear its phone calls would make a difference in fighting terrorism . PRP VBD DT NN TO VB DT NN POS NN CC VB PRP$ NN NNS MD VB DT NN IN VBG NN . Mr. Bush said a commission has been formed to determine how best to improve human intelligence gathering . NNP NNP VBD DT NN VBZ VBN VBN TO VB WRB JJS TO VB JJ NN NN . During the interview , President Bush said the United States has not done as good a job in promoting American values as propagandists have in depicting America as a hateful place . IN DT NN , NNP NNP VBD DT NNP NNPS VBZ RB VBN IN JJ DT NN IN VBG JJ NNS IN NNS VBP IN VBG NNP IN DT JJ NN . Mr. Bush also acknowledged he has made difficult decisions , including the one to invade Iraq , that have hindered American diplomacy in the Middle East . NNP NNP RB VBD PRP VBZ VBN JJ NNS , VBG DT CD TO VB NNP , WDT VBP VBN JJ NN IN DT NNP NNP . But , the president predicted that a free country will emerge in Iraq , proving the merit of his policies there . CC , DT NN VBD IN DT JJ NN MD VB IN NNP , VBG DT NN IN PRP$ NNS RB . The Los Angeles Times is reporting that the Bush Administration has forged a strong intelligence partnership with Sudan , and the African nation has become an ally in the U.S.-led war on terror . DT NNP NNP NNP VBZ VBG IN DT NNP NNP VBZ VBN DT JJ NN NN IN NNP , CC DT JJ NN VBZ VBN DT NN IN DT JJ NN IN NN . The newspaper cites U.S. government sources as saying Khartoum has provided access to terror suspects and has shared intelligence data with the United States , even though it remains on the U.S. list of state sponsors of terrorism . DT NN VBZ NNP NN NNS IN VBG NNP VBZ VBN NN TO NN NNS CC VBZ VBN NN NNS IN DT NNP NNPS , RB IN PRP VBZ IN DT NNP NN IN NN NNS IN NN . The report says the Central Intelligence Agency has flown Sudan 's intelligence chief to Washington as recently as last week . DT NN VBZ DT NNP NNP NNP VBZ VBN NNP POS NN NN TO NNP RB RB IN JJ NN . In exchange for its collaboration , the Times says Sudan is seeking to be removed from the list of state sponsors of terrorism and for Washington to lift economic sanctions . IN NN IN PRP$ NN , DT NNP VBZ NNP VBZ VBG TO VB VBN IN DT NN IN NN NNS IN NN CC IN NNP TO VB JJ NNS . A decade ago , Osama bin Laden and his al-Qaida network were based in Sudan . DT NN RB , NNP NNP NNP CC PRP$ NNP NN VBD VBN IN NNP . A new report from the International Monetary Fund says global economic growth will slow more than one percent this year . DT JJ NN IN DT NNP NNP NNP VBZ JJ JJ NN MD VB JJR IN CD NN DT NN . The IMF study says global growth will decline to 3.7 percent in 2008 and stay at about the same level the following year . DT NNP NN VBZ JJ NN MD VB TO CD NN IN CD CC VB IN IN DT JJ NN DT JJ NN . The economists blame the slowdown on problems in advanced economies , particularly the United States . DT NNS VBP DT NN IN NNS IN JJ NNS , RB DT NNP NNPS . But they say developing nations are weathering this economic down-turn better than they have similar incidents in the past because they are better integrated into the world economy . CC PRP VBP VBG NNS VBP VBG DT JJ NN JJR IN PRP VBP JJ NNS IN DT NN IN PRP VBP RB VBN IN DT NN NN . Many developing nations have benefited from major price increases for the commodities they export , and have worked to diversify their economies to ease the ups and downs that affect commodity markets . JJ VBG NNS VBP VBN IN JJ NN NNS IN DT NNS PRP VBP , CC VBP VBN TO VB PRP$ NNS TO VB DT NNS CC NNS WDT VBP NN NNS . Hong Kong 's charter carrier , CR Airways , has purchased 40 Boeing planes in a deal worth more than $ 3 billion . NNP NNP POS NN NN , NNP NNP , VBZ VBN CD NNP NNS IN DT NN NN JJR IN $ CD CD . The carrier Tuesday said it bought 30 Boeing 737-800 airliners and 10 Boeing 787s in order to expand its services in China and Asia . DT NN NNP VBD PRP VBD CD NNP NNP NNS CC CD NNP NNPS IN NN TO VB PRP$ NNS IN NNP CC NNP . The deal is the latest in a series of recent boosts for the American manufacturer . DT NN VBZ DT JJS IN DT NN IN JJ NNS IN DT JJ NN . Earlier this month , Hong Kong flag carrier Cathay Pacific bought more than 30 Boeing aircraft in a nearly $ 3-billion deal . RBR DT NN , NNP NNP NN NN NNP NNP VBD JJR IN CD NNP NN IN DT RB $ CD NN . And in November , China said it plans to buy 70 Boeing 737 airliners in a deal worth $ 4 billion . CC IN NNP , NNP VBD PRP VBZ TO VB CD NNP CD NNS IN DT NN JJ $ CD CD . Police in northern Iraq say security forces have killed at least two people and wounded several others who were protesting a rise in fuel prices and lack of basic services in the city . NNS IN JJ NNP VBP NN NNS VBP VBN IN JJS CD NNS CC VBD JJ NNS WP VBD VBG DT NN IN NN NNS CC NN IN JJ NNS IN DT NN . Authorities say Sunday 's riot broke out in a mainly Kurdish district of Kirkuk , as angry protesters set fire to several gas stations and an oil company building in the city . NNS VBP NNP POS NN VBD RP IN DT RB JJ NN IN NNP , IN JJ NNS VBN NN TO JJ NN NNS CC DT NN NN NN IN DT NN . Police later imposed a curfew . NNS RB VBD DT NN . In Baghdad , a bomb blast near one of Iraq 's largest oil refineries triggered a pipeline fire that threatened to worsen the country 's oil crisis . IN NNP , DT NN NN IN CD IN NNP POS JJS NN NNS VBD DT NN NN WDT VBD TO VB DT NN POS NN NN . The bombing was the second in recent days . DT NN VBD DT JJ IN JJ NNS . Meanwhile , Iraqi police say at least 11 car bombs - most of them in Baghdad - exploded Sunday , wounding at least 20 people . RB , JJ NNS VBP IN JJS CD NN NNS IN JJS IN PRP IN NNP : VBD NNP , VBG IN JJS CD NNS . Sudanese officials say they are readying trials against suspects accused of rape and murder in the western Darfur region . JJ NNS VBP PRP VBP VBG NNS IN NNS VBN IN NN CC NN IN DT JJ NNP NN . Authorities say the trials may include government officials and security forces in the troubled area . NNS VBP DT NNS MD VB NN NNS CC NN NNS IN DT JJ NN . Sudan 's Justice Minister , Ali Mohamed Osman Yassin , told Reuters news agency Monday that 15 police and security agents have been detained for alleged abuses . NNP POS NNP NNP , NNP NNP NNP NNP , VBD NNP NN NN NNP IN CD NNS CC NN NNS VBP VBN VBN IN JJ NNS . He vowed to continue an investigation into human rights violations and crimes against humanity in Darfur . PRP VBD TO VB DT NN IN JJ NNS NNS CC NNS IN NN IN NNP . The United States and other countries have been pressing Sudan 's government to end violence in Darfur and punish those responsible . DT NNP NNPS CC JJ NNS VBP VBN VBG NNP POS NN TO VB NN IN NNP CC VB DT JJ . The U.N. Security Council this week is to consider a French proposal to send Darfur suspects to the International Criminal Court . DT NNP NNP NNP DT NN VBZ TO VB DT JJ NN TO VB NNP NNS TO DT NNP NNP NNP . Sudan 's foreign minister , Mustapha Osman Ismail , says his country would refuse the measure , if passed . NNP POS JJ NN , NNP NNP NNP , VBZ PRP$ NN MD VB DT NN , IN VBN . A manuscript of composer Ludwig van Beethoven 's ' Gross Fuge ' has sold at a London auction house for $ 1.9 million . DT NN IN NN NNP NNP NNP POS `` NNP NNP `` VBZ VBN IN DT NNP NN NN IN $ CD CD . Sotheby auctioneers say an anonymous buyer purchased the manuscript , which was discovered in a library at the Palmer Theological Seminary in Philadelphia . NNP NNS VBP DT JJ NN VBD DT NN , WDT VBD VBN IN DT NN IN DT NNP NNP NNP IN NNP . The 80-page document , first performed in 1826 , is a piano duet version of Beethoven 's string quartet in B flat . DT JJ NN , RB VBN IN CD , VBZ DT NN NN NN IN NNP POS NN NN IN NNP JJ . It is written in brown and black ink and includes annotations in pencil and red crayon . PRP VBZ VBN IN JJ CC JJ NN CC VBZ NNS IN NN CC JJ NN . The head of Sotheby 's manuscript department says the rediscovery of the document will allow a complete reassessment of what he called ' extraordinary music . ' DT NN IN NNP POS NN NN VBZ DT NN IN DT NN MD VB DT JJ NN IN WP PRP VBD `` JJ NN . `` Beethoven , who continued to work as he slowly went deaf , wrote the work in the years prior to his death in 1827 . NNP , WP VBD TO VB IN PRP RB VBD NN , VBD DT NN IN DT NNS RB TO PRP$ NN IN CD . Iraqi authorities say they have foiled an insurgent plot to bomb the trial of Saddam Hussein , which resumes in Baghdad Monday . JJ NNS VBP PRP VBP VBN DT JJ NN TO VB DT NN IN NNP NNP , WDT VBZ IN NNP NNP . They say the attackers from the 1920 Revolution Brigades planned to fire rockets at the court building . PRP VBP DT NNS IN DT CD NN NNS VBN TO VB NNS IN DT NN NN . Few other details were released . JJ JJ NNS VBD VBN . The alleged attack plot was the latest security issue to plague the trial , including the assassination of two defense lawyers . DT JJ NN NN VBD DT JJS NN NN TO VB DT NN , VBG DT NN IN CD NN NNS . During Monday 's session , the first of 10 witnesses is expected to testify . IN NNP POS NN , DT NN IN CD NNS VBZ VBN TO VB . Saddam and seven members of his former regime are charged with the torture and killing of more than 140 people in the mainly Shi'ite Muslim town of Dujail following a 1982 attempt on his life there . NNP CC CD NNS IN PRP$ JJ NN VBP VBN IN DT NN CC NN IN JJR IN CD NNS IN DT RB NNP NNP NN IN NNP VBG DT CD NN IN PRP$ NN RB . Australian Prime Minister John Howard has confirmed that U.S. intelligence agencies had restricted his country 's access to classified material on the war in Iraq , forcing him to repeatedly appeal to President Bush for access . JJ NNP NNP NNP NNP VBZ VBN IN NNP NN NNS VBD VBN PRP$ NN POS NN TO JJ NN IN DT NN IN NNP , VBG PRP TO RB VB TO NNP NNP IN NN . Mr. Howard says , prior to 2005 , the U.S. Defense Department had restricted Australian military access to vital information on Iraq . NNP NNP VBZ , RB TO CD , DT NNP NNP NNP VBD VBN JJ JJ NN TO JJ NN IN NNP . Mr. Bush signed an order in July 2004 granting Australia and Britain special access to intelligence for use in planning combat and counter-terrorism operations . NNP NNP VBD DT NN IN NNP CD VBG NNP CC NNP JJ NN TO NN IN NN IN NN NN CC NN NNS . But Mr. Howard said U.S. agencies initially resisted the order because of their reluctance to share information . CC NNP NNP VBD NNP NNS RB VBD DT NN IN IN PRP$ NN TO VB NN . The Australian leader says the U.S. intelligence restrictions were lifted last year , after he again appealed to Mr. Bush to deliver on his commitments . DT JJ NN VBZ DT NNP NN NNS VBD VBN JJ NN , IN PRP RB VBD TO NNP NNP TO VB IN PRP$ NNS . The Iranian government has closed an official newspaper because of a cartoon the paper ran last Friday . DT JJ NN VBZ VBN DT JJ NN IN IN DT NN DT NN VBD JJ NNP . State television quotes the country 's chief prosecutor Saeed Mortazavi Tuesday as saying the paper 's cartoonist Mana Neyestani and one of its editors have been detained . NN NN VBZ DT NN POS JJ NN NNP NNP NNP IN VBG DT NN POS NN NNP NNP CC CD IN PRP$ NNS VBP VBN VBN . The cartoon , which poked fun at ethnic Azeris , sparked riots in the northwestern city of Tabriz , the capital of Eastern Azerbaijan province . DT NN , WDT VBD NN IN JJ NNS , VBD NNS IN DT JJ NN IN NNP , DT NN IN NNP NNP NN . The cartoon portrayed an Azeri as a cockroach who was speaking Azeri . DT NN VBD DT NN IN DT NN WP VBD VBG NNP . On Monday , rioting Azeris pelted government buildings with stones . IN NNP , VBG NNS JJ NN NNS IN NNS . Police used tear gas to disperse them . NNS VBD JJ NN TO VB PRP . About 25 percent of Iran 's population is Azeri . IN CD NN IN NNP POS NN VBZ NN . Azeris speak a language close to Turkish . NNS VBP DT NN RB IN NNP . The Indonesian government and rebels from Aceh province plan to sign a formal peace deal on August 15 . DT JJ NN CC NNS IN NNP NN NN TO VB DT JJ NN NN IN NNP CD . The agreement will bring an end to a nearly three-decade war between the Free Aceh Movement and the government in Jakarta . DT NN MD VB DT NN TO DT RB JJ NN IN DT NNP NNP NNP CC DT NN IN NNP . A joint statement following peace talks in Helsinki , Finland , Sunday says the agreement will bring ' a peaceful , comprehensive , and sustainable ' solution to the conflict in Aceh , which has cost some 12,000 lives since 1976 . DT JJ NN VBG NN NNS IN NNP , NNP , NNP VBZ DT NN MD VB `` DT JJ , JJ , CC JJ `` NN TO DT NN IN NNP , WDT VBZ VBN DT CD NNS IN CD . Though details of the agreement have not been released , the two sides say it covers political participation , human rights , an amnesty , and security arrangements in the province . IN NNS IN DT NN VBP RB VBN VBN , DT CD NNS VBP PRP VBZ JJ NN , JJ NNS , DT NN , CC NN NNS IN DT NN . Peace efforts gained momentum this year following the December tsunami that devastated Indonesia 's Sumatra island , where Aceh is located . NN NNS VBD NN DT NN VBG DT NNP NN WDT VBD NNP POS NNP NN , WRB NNP VBZ VBN . Iraqi police said a suicide car bomber has killed 10 people in Kirkuk . JJ NNS VBD DT NN NN NN VBZ VBN CD NNS IN NNP . Police said the attacker appeared to target a group of police officers protecting the northern city 's oil infrastructure . NNS VBD DT NN VBD TO VB DT NN IN NN NNS VBG DT JJ NN POS NN NN . Officials said 22 other people were injured in Wednesday 's attack . NNS VBD CD JJ NNS VBD VBN IN NNP POS NN . Tensions remain high in Kirkuk , whose status has yet to be resolved . NNS VBP JJ IN NNP , WP$ NN VBZ RB TO VB VBN . Iraqi Kurds , Arabs , and Turkmen lay competing claims to the oil-rich city . JJ NNPS , NNS , CC NNP VBD VBG NNS TO DT JJ NN . Violence has dropped across much of the country , but al-Qaida in Iraq maintains a foothold in areas across the north . NN VBZ VBN IN NN IN DT NN , CC NNP IN NNP VBZ DT NN IN NNS IN DT NN . The European Union has opened membership talks with Croatia after the United Nations ' chief war crimes prosecutor said the Balkan country is now cooperating with the International Criminal Tribunal for the former Yugoslavia . DT NNP NNP VBZ VBN NN NNS IN NNP IN DT NNP NNP POS JJ NN NNS NN VBD DT NNP NN VBZ RB VBG IN DT NNP NNP NNP IN DT JJ NNP . British Foreign Secretary Jack Straw led a brief ceremony early Tuesday formally opening the talks . JJ NNP NNP NNP NNP VBD DT JJ NN RB NNP RB VBG DT NNS . Croatian Prime Minister Ivo Sanader attended the event . JJ NNP NNP NNP NNP VBD DT NN . The European Union postponed membership talks with Croatia in March when U.N. war crimes prosecutor Carla del Ponte said Zagreb was not doing enough to find indicted war crimes suspect General Ante Gotovina . DT NNP NNP VBD NN NNS IN NNP IN NNP WRB NNP NN NNS NN NNP NNP NNP VBD NNP VBD RB VBG RB TO VB VBN NN NNS VBP NNP NNP NNP . Ms. del Ponte said Monday Croatia is now fully cooperating with the tribunal , but the EU ministers warn talks could be called off again if Zagreb does not continue its compliance with the Hague court . NNP NNP NNP VBD NNP NNP VBZ RB RB VBG IN DT NN , CC DT NNP NNS VBP NNS MD VB VBN RP RB IN NNP VBZ RB VB PRP$ NN IN DT NNP NN . Croatia hopes to join the European Union in 2009 . NNP VBZ TO VB DT NNP NNP IN CD . The United Nations Security Council has called on Lebanon to expand its security presence in the south , following the withdrawal of Syrian troops . DT NNP NNP NNP NNP VBZ VBN IN NNP TO VB PRP$ NN NN IN DT NN , VBG DT NN IN JJ NNS . In a resolution passed to Friday , the Council said Lebanese troops must show they can maintain security in the country , especially along the southern boundary with Israel . IN DT NN VBN TO NNP , DT NNP VBD JJ NNS MD VB PRP MD VB NN IN DT NN , RB IN DT JJ NN IN NNP . The measure condemned violence between Israeli troops and Hezbollah militants in the area , including a June incident that killed three people . DT NN VBD NN IN JJ NNS CC NNP NNS IN DT NN , VBG DT NNP NN WDT VBD CD NNS . The Security Council also agreed to extend until January a U.N. mission in Lebanon , which includes some two thousand peacekeepers . DT NNP NNP RB VBD TO VB IN NNP DT NNP NN IN NNP , WDT VBZ DT CD CD NNS . That U.N. force was created in 1978 to confirm Israel 's withdrawal from Lebanon , after Israeli troops invaded the country in search of Palestinian militants . DT NNP NN VBD VBN IN CD TO VB NNP POS NN IN NNP , IN JJ NNS VBD DT NN IN NN IN JJ NNS . Pacific First Financial Corp. said shareholders approved its acquisition by Royal Trustco Ltd. of Toronto for $ 27 a share , or $ 212 mi llion . NNP CD NNP NNP VBD NNS VBD PRP$ NN IN NNP NNP NNP IN NNP IN $ CD DT NN , CC $ CD NN NN . The thrift holding company said it expects to obtain regulatory approval and complete the transaction by year-end . DT NN VBG NN VBD PRP VBZ TO VB JJ NN CC VB DT NN IN NN . The United Kingdom has historically played a leading role in developing parliamentary democracy and in advancing literature and science . DT NNP NNP VBZ RB VBN DT JJ NN IN VBG JJ NN CC IN VBG NN CC NN . At its zenith in the 19th century , the British Empire stretched over one-fourth of the earth 's surface . IN PRP$ NN IN DT JJ NN , DT NNP NNP VBD IN NN IN DT NN POS NN . The first half of the 20th century saw the UK 's strength seriously depleted in two world wars and the Irish republic withdraw from the union . DT JJ NN IN DT JJ NN VBD DT NNP POS NN RB VBD IN CD NN NNS CC DT JJ NN VB IN DT NN . The second half witnessed the dismantling of the Empire and the UK rebuilding itself into a modern and prosperous European nation . DT JJ NN VBD DT NN IN DT NN CC DT NNP NN PRP IN DT JJ CC JJ JJ NN . As one of five permanent members of the UN Security Council , a founding member of NATO , and of the Commonwealth , the UK pursues a global approach to foreign policy . IN CD IN CD JJ NNS IN DT NNP NNP NNP , DT NN NN IN NNP , CC IN DT NNP , DT NNP VBZ DT JJ NN TO JJ NN . The UK is also an active member of the EU , although it chose to remain outside the Economic and Monetary Union . DT NNP VBZ RB DT JJ NN IN DT NNP , IN PRP VBD TO VB IN DT NNP CC NNP NNP . The Scottish Parliament , the National Assembly for Wales , and the Northern Ireland Assembly were established in 1999 . DT NNP NNP , DT NNP NNP IN NNP , CC DT NNP NNP NNP VBD VBN IN CD . The latter was suspended until May 2007 due to wrangling over the peace process , but devolution was fully completed in March 2010 . DT NN VBD VBN IN NNP CD JJ TO VBG IN DT NN NN , CC NN VBD RB VBN IN NNP CD . Although explored by the Spanish early in the 16th century , initial attempts at colonizing Costa Rica proved unsuccessful due to a combination of factors , including : disease from mosquito-infested swamps , brutal heat , resistance by natives , and pirate raids . IN VBN IN DT JJ JJ IN DT JJ NN , JJ NNS IN VBG NNP NNP VBD JJ JJ TO DT NN IN NNS , VBG IN NN IN JJ NNS , JJ NN , NN IN NNS , CC VB NNS . It was not until 1563 that a permanent settlement of Cartago was established in the cooler , fertile central highlands . PRP VBD RB IN CD IN DT JJ NN IN NNP VBD VBN IN DT NN , JJ JJ NNS . The area remained a colony for some two and a half centuries . DT NN VBD DT NN IN DT CD CC DT NN NNS . In 1821 , Costa Rica became one of several Central American provinces that jointly declared their independence from Spain . IN CD , NNP NNP VBD CD IN JJ JJ JJ NNS WDT RB VBD PRP$ NN IN NNP . Two years later it joined the United Provinces of Central America , but this federation disintegrated in 1838 , at which time Costa Rica proclaimed its sovereignty and independence . CD NNS RB PRP VBD DT NNP NNPS IN NNP NNP , CC DT NN VBD IN CD , IN WDT NN NNP NNP VBD PRP$ NN CC NN . Since the late 19th century , only two brief periods of violence have marred the country 's democratic development . IN DT JJ JJ NN , RB CD JJ NNS IN NN VBP VBN DT NN POS JJ NN . In 1949 , Costa Rica dissolved its armed forces . IN CD , NNP NNP VBD PRP$ JJ NNS . Although it still maintains a large agricultural sector , Costa Rica has expanded its economy to include strong technology and tourism industries . IN PRP RB VBZ DT JJ JJ NN , NNP NNP VBZ VBN PRP$ NN TO VB JJ NN CC NN NNS . The standard of living is relatively high . DT NN IN NN VBZ RB JJ . Land ownership is widespread . NNP NN VBZ JJ . Subsistence fishing and commercial trawling occur within refuge waters . NN NN CC JJ NN VBP IN NN NNS . The economy is dominated by the mining industry , with exports of alumina , gold , and oil accounting for about 85 % of exports and 25 % of government revenues , making the economy highly vulnerable to mineral price volatility . DT NN VBZ VBN IN DT NN NN , IN NNS IN NN , NN , CC NN NN IN RB CD NN IN NNS CC CD NN IN NN NNS , VBG DT NN RB JJ TO NN NN NN . In 2000 , the government of Ronald VENETIAAN , returned to office and inherited an economy with inflation of over 100 % and a growing fiscal deficit . IN CD , DT NN IN NNP NNP , VBD TO NN CC VBD DT NN IN NN IN IN CD NN CC DT VBG JJ NN . He quickly implemented an austerity program , raised taxes , attempted to control spending , and tamed inflation . PRP RB VBD DT NN NN , VBD NNS , VBN TO VB NN , CC VBN NN . Economic growth reached about 7 % in 2008 , owing to sizeable foreign investment in mining and oil . JJ NN VBD IN CD NN IN CD , VBG TO JJ JJ NN IN NN CC NN . Suriname has received aid for projects in the bauxite and gold mining sectors from Netherlands , Belgium , and the European Development Fund . NNP VBZ VBN NN IN NNS IN DT NN CC NN NN NNS IN NNP , NNP , CC DT NNP NNP NNP . The economy slowed in 2009 , however , as investment waned and the country earned less from its commodity exports when global prices for most commodities fell . DT NN VBD IN CD , RB , IN NN VBD CC DT NN VBD RBR IN PRP$ NN NNS WRB JJ NNS IN JJS NNS VBD . Trade picked up , boosting Suriname 's economic growth in 2010 , but the government 's budget remained strained , with increased social spending during the election . NNP VBD RP , VBG NNP POS JJ NN IN CD , CC DT NN POS NN VBD JJ , IN VBN JJ NN IN DT NN . In January 2011 , the government devalued the currency by 20 % and raised taxes to reduce the budget deficit . IN NNP CD , DT NN VBD DT NN IN CD NN CC VBD NNS TO VB DT NN NN . Suriname 's economic prospects for the medium term will depend on continued commitment to responsible monetary and fiscal policies and to the introduction of structural reforms to liberalize markets and promote competition . NNP POS JJ NNS IN DT JJ NN MD VB IN JJ NN TO JJ JJ CC JJ NNS CC TO DT NN IN JJ NNS TO VB NNS CC VB NN . Carib Indians inhabited Grenada when COLUMBUS discovered the island in 1498 , but it remained uncolonized for more than a century . NNP NNS VBD NNP WRB NNP VBD DT NN IN CD , CC PRP VBD JJ IN JJR IN DT NN . The French settled Grenada in the 17th century , established sugar estates , and imported large numbers of African slaves . DT NNS VBD NNP IN DT JJ NN , VBN NN NNS , CC VBN JJ NNS IN JJ NNS . Britain took the island in 1762 and vigorously expanded sugar production . NNP VBD DT NN IN CD CC RB VBN NN NN . In the 19th century , cacao eventually surpassed sugar as the main export crop ; in the 20th century , nutmeg became the leading export . IN DT JJ NN , NN RB VBD NN IN DT JJ NN NN ; IN DT JJ NN , NN VBD DT VBG NN . In 1967 , Britain gave Grenada autonomy over its internal affairs . IN CD , NNP VBD NNP NN IN PRP$ JJ NNS . Full independence was attained in 1974 making Grenada one of the smallest independent countries in the Western Hemisphere . NNP NN VBD VBN IN CD VBG NNP CD IN DT JJS JJ NNS IN DT JJ NNP . Grenada was seized by a Marxist military council on 19 October 1983 . NNP VBD VBN IN DT JJ JJ NN IN CD NNP CD . Six days later the island was invaded by US forces and those of six other Caribbean nations , which quickly captured the ringleaders and their hundreds of Cuban advisers . CD NNS RB DT NN VBD VBN IN NNP NNS CC DT IN CD JJ JJ NNS , WDT RB VBD DT NNS CC PRP$ NNS IN JJ NNS . Free elections were reinstituted the following year and have continued since that time . JJ NNS VBD VBN DT JJ NN CC VBP VBN IN DT NN . Hurricane Ivan struck Grenada in September of 2004 causing severe damage . NNP NNP VBD NNP IN NNP IN CD VBG JJ NN . A PHILOSOPHER witnessed from the shore the shipwreck of a vessel , of which the crew and passengers were all drowned . DT NN VBD IN DT NN DT NN IN DT NN , IN WDT DT NN CC NNS VBD DT VBN . He inveighed against the injustice of Providence , which would for the sake of one criminal perchance sailing in the ship allow so many innocent persons to perish . PRP VBD IN DT NN IN NNP , WDT MD IN DT NN IN CD JJ NN NN IN DT NN VBP RB JJ JJ NNS TO VB . As he was indulging in these reflections , he found himself surrounded by a whole army of Ants , near whose nest he was standing . IN PRP VBD VBG IN DT NNS , PRP VBD PRP VBN IN DT JJ NN IN NNS , IN WP$ NNS PRP VBD VBG . One of them climbed up and stung him , and he immediately trampled them all to death with his foot . CD IN PRP VBD RB CC VBG PRP , CC PRP RB VBD PRP DT TO NN IN PRP$ NN . Mercury presented himself , and striking the Philosopher with his wand , said , ' And are you indeed to make yourself a judge of the dealings of Providence , who hast thyself in a similar manner treated these poor Ants ? ' NNP VBD PRP , CC VBG DT NN IN PRP$ NN , VBD , `` CC VBP PRP RB TO VB PRP DT NN IN DT NNS IN NNP , WP VBP PRP IN DT JJ NN VBD DT JJ NNS . `` Israeli troops have detained a top member of the Palestinian militant group Hamas during a raid on an apartment building in the West Bank city of Tulkarem . JJ NNS VBP VBN DT JJ NN IN DT JJ JJ NN NNP IN DT NN IN DT NN NN IN DT NNP NNP NN IN NNP . Rami al-Tayyah has been wanted by Israel since 2002 in connection with the recruitment of militants and the establishment of Hamas cells suspected of carrying out shootings and bomb attacks against Israeli citizens . NNP NNP VBZ VBN VBN IN NNP IN CD IN NN IN DT NN IN NNS CC DT NN IN NNP NNS VBN IN VBG RP NNS CC NN NNS IN JJ NNS . Also Saturday , Palestinian Prime Minister Ahmed Qureia accused Israel of hampering efforts to restart peace efforts following the death of Yasser Arafat . RB NNP , JJ NNP NNP NNP NNP VBD NNP IN VBG NNS TO VB NN NNS VBG DT NN IN NNP NNP . Mr. Qureia told his cabinet that Israel 's continued military aggression sends a clear message that it does not want to allow things to quiet down and bring the peace process back on track . NNP NNP VBD PRP$ NN IN NNP POS JJ JJ NN VBZ DT JJ NN IN PRP VBZ RB VB TO VB NNS TO VB RB CC VB DT NN NN RB IN NN . Mr. Qureia 's criticism came as German Foreign Minister Joschka Fischer arrived in the region for talks with Israeli and Palestinian leaders . NNP NNP POS NN VBD IN JJ NNP NNP NNP NNP VBD IN DT NN IN NNS IN JJ CC JJ NNS . Authorities in the northern Iraqi city of Mosul say two Christian churches have been the target of nearly simultaneous bomb attacks . NNS IN DT JJ JJ NN IN NNP VBP CD JJ NNS VBP VBN DT NN IN RB JJ NN NNS . Witnesses say gunmen stormed the Armenian and Chaldean churches Tuesday , planting explosives that detonated , setting the buildings on fire . NNS VBP NNS VBD DT JJ CC JJ NNS NNP , VBG NNS WDT VBD , VBG DT NNS IN NN . No casualties have been confirmed . DT NNS VBP VBN VBN . Iraq 's minority Christian community has been the target of attacks before , most recently last month when three people were killed in a bomb attack on a Baghdad church . NNP POS NN JJ NN VBZ VBN DT NN IN NNS IN , RBS RB JJ NN WRB CD NNS VBD VBN IN DT NN NN IN DT NNP NN . Meanwhile , the U.S. military says an American soldier was killed Tuesday while on patrol in Baghdad . RB , DT NNP NN VBZ DT JJ NN VBD VBN NNP IN IN NN IN NNP . Afghan President Hamid Karzai has urged Afghan and coalition forces to use ' extreme caution ' as they root out Islamic militants . JJ NNP NNP NNP VBZ VBN JJ CC NN NNS TO VB `` JJ NN `` IN PRP VBP RP JJ NNS . In a statement Sunday , Mr. Karzai expressed concern over civilian deaths in recent weeks as a result of counter-terror operations in civilian areas . IN DT NN NNP , NNP NNP VBD NN IN JJ NNS IN JJ NNS IN DT NN IN NN NNS IN JJ NNS . He said that while his government is committed to combating terrorism , it is also responsible for safety of the Afghan people . PRP VBD IN IN PRP$ NN VBZ VBN TO VBG NN , PRP VBZ RB JJ IN NN IN DT JJ NNS . The statement comes two days after three civilians , including a woman and a child , were killed in a U.S. air strike against a suspected militant hideout . DT NN VBZ CD NNS IN CD NNS , VBG DT NN CC DT NN , VBD VBN IN DT NNP NN NN IN DT JJ JJ NN . Four suspected militants were also killed in the incident in central Uruzgan province . CD JJ NNS VBD RB VBN IN DT NN IN JJ NNP NN . Two more children were wounded and taken to a U.S. base in the southern city of Kandahar for treatment . CD JJR NNS VBD VBN CC VBN TO DT NNP NN IN DT JJ NN IN NNP IN NN . When talking about paintings and contemporary art , names such as Pablo Picasso , Georgia O'Keeffe , Vincent Van Gogh and others often come to mind . WRB VBG IN NNS CC JJ NN , NNS JJ IN NNP NNP , NNP NNP , NNP NNP NNP CC NNS RB VBP TO NN . But , as we are about to show you , there is a whole body of artwork on Africa , by European and African artists that is largely unknown . CC , IN PRP VBP IN TO VB PRP , EX VBZ DT JJ NN IN NN IN NNP , IN JJ CC JJ NNS WDT VBZ RB JJ . Primimoda Gallery , located in the heart of Washington , is where you will find this art . NNP NNP , VBN IN DT NN IN NNP , VBZ WRB PRP MD VB DT NN . Ndimyake Mwakalyelye tells us more . NNP NNP VBZ PRP RBR . The world 's biggest maker of computer chips is investing more than $ 1 billion in India over the next five years . DT NN POS JJS NN IN NN NNS VBZ VBG JJR IN $ CD CD IN NNP IN DT JJ CD NNS . The investment was announced Monday by Intel Chairman . DT NN VBD VBN NNP IN NNP NNP . Much of the money will go to expand Intel 's research and development center in Bangalore . NN IN DT NN MD VB TO VB NNP POS NN CC NN NN IN NNP . That operation already employs 2,800 people . DT NN RB VBZ CD NNS . Intel officials say around $ 250 million is going into a fund to stimulate local technology innovation , particularly in technology oriented service companies that target overseas markets . NNP NNS VBP IN $ CD CD VBZ VBG IN DT NN TO VB JJ NN NN , RB IN NN JJ NN NNS WDT VBP JJ NNS . Intel has been operating in India for a decade , and has already invested about $ 700 million there . NNP VBZ VBN VBG IN NNP IN DT NN , CC VBZ RB VBN IN $ CD CD RB . Mr. Barrett says India is one of the world 's ' leading technology centers ' and he expects this investment to help the country grow further . NNP NNP VBZ NNP VBZ CD IN DT NN POS `` VBG NN NNS `` CC PRP VBZ DT NN TO VB DT NN VB RBR . The United States will host Croatia in the opening round of the 2005 Davis Cup tennis tournament . DT NNP NNPS MD VB NNP IN DT NN NN IN DT CD NNP NNP NN NN . The U.S. Tennis Association announced Thursday the games will be played on the hardcourts at Carson , California near Los Angeles . DT NNP NNP NNP VBD NNP DT NNS MD VB VBN IN DT NNS IN NNP , NNP IN NNP NNP . The three-day tie ( series ) beginning on March 4 could be the start of a title defense for the American squad . DT JJ NN LRB NN RRB VBG IN NNP CD MD VB DT NN IN DT NN NN IN DT JJ NN . The United States faces host Spain starting Friday in the Davis Cup final on clay at Seville . DT NNP NNPS VBZ NN NNP VBG NNP IN DT NNP NNP JJ IN NN IN NNP . The United States is trying to win its first Davis Cup crown since 1995 . DT NNP NNPS VBZ VBG TO VB PRP$ JJ NNP NNP NN IN CD . In the only previous Davis Cup match between the countries , Croatia defeated the US squad , 04-Jan , in a 2003 first-round tie at Zagreb . IN DT JJ JJ NNP NNP NN IN DT NNS , NNP VBD DT NNP NN , CD , IN DT CD JJ NN IN NNP . The winner will face either Romania or Belarus in the second round next July . DT NN MD VB DT NNP CC NNP IN DT JJ NN IN NNP . At least five policemen have been killed in a militant attack on a security camp in Indian-controlled Kashmir . IN JJS CD NNS VBP VBN VBN IN DT JJ NN IN DT NN NN IN JJ NNP . Local authorities say the attack occurred early Friday , in the border town of Sopore , about 50 kilometers north of Srinagar . JJ NNS VBP DT NN VBD JJ NNP , IN DT NN NN IN NNP , IN CD NNS RB IN NNP . Police say the militants hurled grenades and fired indiscriminately as they stormed the camp . NNS VBP DT NNS VBD NNS CC VBD RB IN PRP VBD DT NN . It was not immediately clear how many rebels were involved in the attack . PRP VBD RB RB JJ WRB JJ NNS VBD VBN IN DT NN . The Pakistan-based rebel group Al-Mansoorain claimed responsibility for the attack . DT JJ NN NN NNP VBD NN IN DT NN . Al-Mansoorain is one of more than a dozen Islamic militant groups fighting security forces in India 's portion of Kashmir for the region 's independence or for its merger with Pakistan . NNP VBZ CD IN JJR IN DT NN JJ JJ NNS VBG NN NNS IN NNP POS NN IN NNP IN DT NN POS NN CC IN PRP$ NN IN NNP . A European Space Agency probe has completed a three-year mission to test deep space technologies by making a controlled crash on the moon . DT NNP NNP NNP NN VBZ VBN DT JJ NN TO VB JJ NN NNS IN VBG DT JJ NN IN DT NN . The SMART-1 probe hit the lunar surface at 542 UTC Sunday on a volcanic plain called the Lake of Excellence at a speed of about 7,200 kilometers per hour . DT JJ NN VBD DT NN NN IN CD NNP NNP IN DT JJ NN VBD DT NNP IN NNP IN DT NN IN IN CD NNS IN NN . It had orbited the moon for the past 14 months . PRP VBD VBN DT NN IN DT JJ CD NNS . Mission manager Gerhard Schwehm calls Europe 's first mission to the moon ' a great success . ' NNP NN NNP NNP VBZ NNP POS JJ NN TO DT NN `` DT JJ NN . `` The probe 's main mission was to test a solar-electric propulsion system the European Space Agency hopes to use for future interplanetary missions . DT NN POS JJ NN VBD TO VB DT JJ NN NN DT NNP NNP NNP VBZ TO VB IN JJ JJ NNS . SMART-1 also carried miniaturized scientific instruments to examine the lunar surface . NNP RB VBD VBN JJ NNS TO VB DT NN NN . SMART stands for Small Mission for Advanced Research and Technology . NNP VBZ IN JJ NNP IN NNP NNP CC NNP . The craft was launched in September of 2003 , and began orbiting the moon in November of 2004 . DT NN VBD VBN IN NNP IN CD , CC VBD VBG DT NN IN NNP IN CD . Witnesses in Somalia say gunmen have killed the head of an orphanage near the capital , Mogadishu . NNS IN NNP VBP NNS VBP VBN DT NN IN DT NN IN DT NN , NNP . Abdikadir Yusuf Kariye was shot dead by unidentified assailants late Wednesday in the town of Lafoole . NNP NNP NNP VBD VBN JJ IN JJ NNS JJ NNP IN DT NN IN NNP . Reuters news agency reports that Kariye 's orphanage is home to 370 children . NNP NN NN VBZ IN NNP POS NN VBZ NN TO CD NNS . There has been no claim of responsibility for the killing . EX VBZ VBN DT NN IN NN IN DT NN . Attacks on aid workers in Somalia have forced some relief agencies to suspend their operations , endangering hundreds of thousands of people who rely on food aid and medical aid . NNS IN NN NNS IN NNP VBP VBN DT NN NNS TO VB PRP$ NNS , VBG NNS IN NNS IN NNS WP VBP IN NN NN CC JJ NN . The United Nations has warned of a possible humanitarian catastrophe in Somalia , which has not had a functioning central government in 17 years . DT NNP NNP VBZ VBN IN DT JJ JJ NN IN NNP , WDT VBZ RB VBN DT VBG JJ NN IN CD NNS . U.S. lawmakers say they plan legislation that would fund efforts to help Iranians receive and send information despite government restrictions . NNP NNS VBP PRP VBP NN WDT MD VB NNS TO VB NNS VB CC VB NN IN NN NNS . Independent Senator Joe Lieberman said Thursday that the bill intends to help the Iranian people stay ' one step ahead of the Iranian regime . ' NNP NNP NNP NNP VBD NNP IN DT NN VBZ TO VB DT JJ NNS VBP `` CD NN RB IN DT JJ NN . `` Lieberman introduced the bill with Republican Senators John McCain and Lindsey Graham . NNP VBD DT NN IN NNP NNP NNP NNP CC NNP NNP . McCain said the proposed legislation would authorize funds to ensure Iranians have the software and other tools to evade government censorship and surveillance online . NNP VBD DT VBN NN MD VB NNS TO VB NNS VBP DT NN CC JJ NNS TO VB NN NN CC NN NN . The legislation would also authorize VOA 's Persian service to make permanent an additional hour of programming that was added to cover the post-election violence . DT NN MD RB VB NNP POS JJ NN TO VB JJ DT JJ NN IN NN WDT VBD VBN TO VB DT JJ NN . More funding would also be provided to the U.S. government-sponsored Radio Farda to boost the broadcaster 's short-wave radio and satellite capacity . JJR NN MD RB VB VBN TO DT NNP JJ NN NNP TO VB DT NN POS JJ NN CC NN NN . Cambodian authorities have detained a fifth suspect in the 12-year-old kidnapping and murder case of two men who were clearing land mines . JJ NNS VBP VBN DT JJ NN IN DT JJ NN CC NN NN IN CD NNS WP VBD VBG NN NNS . Former Khmer Rouge fighters abducted Christopher Howes of Bristol , England , and his interpreter Huon Huot along with other members of a team removing land mines near Cambodia 's Angor Wat temple in 1996 . JJ NNP NNP NNS VBD NNP NNP IN NNP , NNP , CC PRP$ NN NNP NNP IN IN JJ NNS IN DT NN VBG NN NNS IN NNP POS NNP NNP NN IN CD . Most of the team was released , but evidence later showed Howes and Huot were executed in rebel-held territory . JJS IN DT NN VBD VBN , CC NN RB VBD NNP CC NNP VBD VBN IN JJ NN . Cambodian authorities took 52-year-old Puth Lim into custody and charged him in the case Friday . JJ NNS VBD JJ NNP NNP IN NN CC VBD PRP IN DT NN NNP . Five other former Khmer Rouge fighters also face charges which could carry a life sentence if convicted . CD JJ JJ NNP NNP NNS RB VBP NNS WDT MD VB DT NN NN IN VBN . Following years of debate and delay , Germany has dedicated a national memorial to the six million Jews killed by the Nazis during World War II . VBG NNS IN NN CC NN , NNP VBZ VBN DT JJ NN TO DT CD CD NNPS VBN IN DT NNPS IN NNP NNP NNP . Dignitaries and survivors of the Nazi death camps dedicated the ' Memorial to the Murdered Jews of Europe ' Tuesday in Berlin . NNS CC NNS IN DT NNP NN NNS VBD DT `` NNP TO DT JJ NNPS IN NNP `` NNP IN NNP . The speaker of Germany 's lower house of parliament , Wolfgang Thierse , said the memorial will keep the memory of Holocaust victims and of Nazi crimes alive . DT NN IN NNP POS JJR NN IN NN , NNP NNP , VBD DT NN MD VB DT NN IN NNP NNS CC IN JJ NNS JJ . The two-hectare memorial , designed by New York architect Peter Eisenman , consists of 2,711 unadorned concrete slabs and an underground research center Experts say the memorial evokes the rigid discipline and order of the Nazi killing machine . DT JJ NN , VBN IN NNP NNP NN NNP NNP , VBZ IN CD JJ JJ NNS CC DT JJ NN NN NNS VBP DT JJ NNS DT JJ NN CC NN IN DT JJ NN NN . First proposed in the late 1980s , the memorial was only recently completed because of arguments over its size , design and whether it should honor non-Jewish Holocaust victims . RB VBN IN DT JJ NNS , DT NN VBD RB RB VBN IN IN NNS IN PRP$ NN , NN CC IN PRP MD VB JJ NN NNS . It will open to the public on Thursday . PRP MD VB TO DT NN IN NNP . A Norwegian aid group says it will shut down operations in Sudan 's Darfur region because of government interference . DT JJ NN NN VBZ PRP MD VB RP NNS IN NNP POS NNP NN IN IN NN NN . The Norwegian Refugee Council says Sudan has suspended the group for a total of 210 days since mid-2004 . DT JJ NNP NNP VBZ NNP VBZ VBN DT NN IN DT NN IN CD NNS IN NN . The group 's secretary-general , Tomas Archer , says his workers can not operate when authorities suspend the group continuously and do not respond to repeated requests for dialogue . DT NN POS JJ , NNP NNP , VBZ PRP$ NNS MD RB VB WRB NNS VBP DT NN RB CC VBP RB VB TO JJ NNS IN NN . The N.R.C. provides assistance at three large camps for internally displaced Sudanese . DT NNP VBZ NN IN CD JJ NNS IN RB JJ NN . The group says its departure will affect 3,00,000 people in South Darfur . DT NN VBZ PRP$ NN MD VB CD NNS IN NNP NNP . Sudanese officials are often suspicious of foreign aid agencies working in Darfur and they target groups that criticize government actions and policies . JJ NNS VBP RB JJ IN JJ NN NNS VBG IN NNP CC PRP VBP NNS WDT VBP NN NNS CC NNS . Sudan continues to resist international pressure to allow a U.N. peacekeeping forces into the volatile region . NNP VBZ TO VB JJ NN TO VB DT NNP NN NNS IN DT JJ NN . More than three years of fighting between rebels and government-backed militias has killed an estimated 2,00,000 people and displaced over two million since early 2003 . JJR IN CD NNS IN VBG IN NNS CC JJ NNS VBZ VBN DT JJ CD NNS CC VBD IN CD CD IN JJ CD . Haiti 's chief elections official has fled the country after receiving threats following this month 's presidential elections . NNP POS JJ NNS NN VBZ VBN DT NN IN VBG NNS VBG DT NN POS JJ NNS . Officials say Jacques Bernard flew to the United States on Sunday , a day after his farmhouse was ransacked . NNS VBP NNP NNP VBD TO DT NNP NNPS IN NNP , DT NN IN PRP$ NN VBD VBN . Bernard was accused by some people who supported candidate Rene Preval of manipulating the vote count to prevent Preval from claiming an outright victory and avoid a runoff vote . NNP VBD VBN IN DT NNS WP VBD NN NNP NNP IN VBG DT NN NN TO VB NNP IN VBG DT JJ NN CC VB DT NN NN . Preval was declared the winner last week in an internationally-brokered decision to divide 85,000 blank ballots proportionately among the candidates . NNP VBD VBN DT NN JJ NN IN DT JJ NN TO VB CD JJ NNS RB IN DT NNS . A boat accident in Bangladesh has killed at least 37 people , most of them women and children . DT NN NN IN NNP VBZ VBN IN JJS CD NNS , JJS IN PRP NNS CC NNS . Authorities say many of the male passengers were able to swim ashore . NNS VBP NN IN DT NN NNS VBD JJ TO VB RB . Local officials say the boat capsized on the Surma river in northeastern Bangladesh late Saturday after colliding with a cargo ship . JJ NNS VBP DT NN VBN IN DT NNP NN IN JJ NNP JJ NNP IN VBG IN DT NN NN . Officials say at least 80 people were on board the boat . NNS VBP IN JJS CD NNS VBD IN NN DT NN . Officials say the area where the boat went down , in the Sunamganj district about 240 kilometers northeast of Dhaka , is in one of the most remote parts of the country , making it difficult for additional help to reach the site . NNS VBP DT NN WRB DT NN VBD RB , IN DT NNP NN IN CD NNS RB IN NNP , VBZ IN CD IN DT RBS JJ NNS IN DT NN , VBG PRP JJ IN JJ NN TO VB DT NN . Bangladesh has more than 200 rivers . NNP VBZ JJR IN CD NNS . Boat accidents are common due to lax safety regulations . NNP NNS VBP JJ JJ TO JJ NN NNS . The Cayman Islands are under a tropical storm warning and a hurricane watch , as a new tropical depression is taking shape in the northwest Caribbean Sea . DT NNP NNP VBP IN DT JJ NN NN CC DT NN NN , IN DT JJ JJ NN VBZ VBG NN IN DT JJ NNP NNP . The U.S. National Hurricane Center says the system could strengthen into Tropical Storm Wilma later Sunday . DT NNP NNP NNP NNP VBZ DT NN MD VB IN JJ NN NNP RB NNP . Wilma would be the 21st named storm of the Atlantic hurricane season , tying a record set in 1933 . NNP MD VB DT CD VBN NN IN DT NNP NN NN , VBG DT NN VBN IN CD . At daybreak , the depression was centered 325 kilometers southeast of Grand Cayman Island and had sustained winds of 55 kilometers per hour . IN NN , DT NN VBD VBN CD NNS NN IN NNP NNP NNP CC VBD VBN NNS IN CD NNS IN NN . The hurricane center says the storm will likely bring heavy rains to the Caymans and Jamaica . DT NN NN VBZ DT NN MD RB VB JJ NNS TO DT NNPS CC NNP . Long-range forecasts show the storm possibly moving into the Gulf of Mexico next week . JJ NNS VBP DT NN RB VBG IN DT NNP IN NNP JJ NN . Several U.S. cities along the Gulf coast are still reeling from Hurricane Katrina . JJ NNP NNS IN DT NNP NN VBP RB VBG IN NNP NNP . Sri Lankan officials say suspected Tamil Tiger rebels have detonated a mine in northern Sri Lanka , killing two sailors and wounding another . NNP NNP NNS VBP VBN NNP NNP NNS VBP VBN DT NN IN JJ NNP NNP , VBG CD NNS CC VBG DT . Officials say the attack occurred Saturday , on the northern Jaffna peninsula . NNS VBP DT NN VBD NNP , IN DT JJ NNP NN . In a separate incident Saturday , unidentified attackers in the eastern town of Batticaloa hurled a grenade into the parking area of a compound occupied by truce monitors , damaging vehicles but causing no injuries . IN DT JJ NN NNP , JJ NNS IN DT JJ NN IN NNP VBD DT NN IN DT NN NN IN DT NN VBN IN NN NNS , VBG NNS CC VBG DT NNS . A spokeswoman for the monitoring mission says the attack was the first targeting the monitors since a 2002 cease-fire . DT NN IN DT NN NN VBZ DT NN VBD DT JJ VBG DT NNS IN DT CD NN . The unarmed monitors are all from Scandinavian countries . DT JJ NNS VBP DT IN JJ NNS . The explosion came hours after the monitors reprimanded Tamil Tiger rebels and government forces for an increase in violence . DT NN VBD NNS IN DT NNS VBD NNP NNP NNS CC NN NNS IN DT NN IN NN . Sri Lanka 's government says at least 69 members of its security forces have been killed by rebels since early December . NNP NNP POS NN VBZ IN JJS CD NNS IN PRP$ NN NNS VBP VBN VBN IN NNS IN JJ NNP . Forensic experts have concluded work on a mass grave in northwestern Bosnia-Herzegovina , exhuming 454 bodies . JJ NNS VBP VBN NN IN DT NN NN IN JJ NNP , VBG CD NNS . An official , Esad Bajramovic , of the Commission on Missing Persons in Bosnia 's Muslim-Croat Federation says documents found in the village of Kevljani near the town of Prijedor indicate the victims were Muslim and Croat residents of the area . DT NN , NNP NNP , IN DT NNP IN VBG NNS IN NNP POS NNP NNP VBZ NNS VBN IN DT NN IN NNP IN DT NN IN NNP VBP DT NNS VBD NNP CC JJ NNS IN DT NN . He says many of the victims are believed to have been inmates of the notorious Serb-run Omarska and Keraterm prison camps in the Prijedor area . PRP VBZ NN IN DT NNS VBP VBN TO VB VBN NNS IN DT JJ NNP NNP CC NNP NN NNS IN DT NNP NN . The victims are believed to have been buried in other areas then moved to Kevljani . DT NNS VBP VBN TO VB VBN VBN IN JJ NNS RB VBD TO NNP . United Nations forensic experts have recovered more than 16,000 bodies from more than 300 mass graves in Bosnia . NNP NNP JJ NNS VBP VBN JJR IN CD NNS IN JJR IN CD NN NNS IN NNP . More than 2,00,000 people were killed in the Bosnian conflict of the early 1990s . JJR IN CD NNS VBD VBN IN DT JJ NN IN DT JJ NNS . Officials in Indian Kashmir say at least two soldiers and six suspected militants have been killed during a clash in the Himalayan region . NNS IN JJ NNP VBP IN JJS CD NNS CC CD JJ NNS VBP VBN VBN IN DT NN IN DT JJ NN . Officials say at least one soldier was also wounded in Saturday 's clash 220 kilometers north of Jammu , the winter capital of Indian Kashmir . NNS VBP IN JJS CD NN VBD RB VBN IN NNP POS NN CD NNS RB IN NNP , DT NN NN IN NNP NNP . Authorities say the suspected militants were trying to sneak into the Indian-controlled portion of Kashmir when the fighting began . NNS VBP DT JJ NNS VBD VBG TO VB IN DT JJ NN IN NNP WRB DT NN VBD . Kashmiri militant groups have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan . JJ JJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP . The insurgency has killed tens of thousands of people . DT NN VBZ VBN NNS IN NNS IN NNS . Iran says it has agreed with Russia to increase the number of countries joining a plan for Tehran to carry out sensitive nuclear fuel work in Russia . NNP VBZ PRP VBZ VBN IN NNP TO VB DT NN IN NNS VBG DT NN IN NNP TO VB RP JJ JJ NN NN IN NNP . Speaking to reporters Saturday in Tehran , Iranian Foreign Minister Manouchehr Mottaki said possible locations for uranium enrichment are still under review . VBG TO NNS NNP IN NNP , JJ NNP NNP NNP NNP VBD JJ NNS IN NN NN VBP RB IN NN . Moscow 's idea to have Iran enrich uranium in facilities in Russia where the work can be closely monitored is seen as a way out of a growing crisis over Tehran 's nuclear ambitions . NNP POS NN TO VB NNP NNP NN IN NNS IN NNP WRB DT NN MD VB RB VBN VBZ VBN IN DT NN IN IN DT VBG NN IN NNP POS JJ NNS . The United States , China and the European Union support the proposal . DT NNP NNPS , NNP CC DT NNP NNP NN DT NN . Meanwhile , the chief of Iran 's Revolutionary Guards , General Yahya Rahim Safavi , said Saturday his country would use ballistic missiles to defend itself if attacked . RB , DT NN IN NNP POS NNP NNPS , NNP NNP NNP NNP , VBD NNP PRP$ NN MD VB JJ NNS TO VB PRP IN VBN . President Bush told the CBS television network Friday he is open to all possible options for dealing with Iran , including military intervention . NNP NNP VBD DT NNP NN NN NNP PRP VBZ JJ TO DT JJ NNS IN VBG IN NNP , VBG JJ NN . But he said that would be the last option . CC PRP VBD DT MD VB DT JJ NN . President Bush has sent holiday greetings to all Muslims as they celebrate the Eid al-Adha religious festival . NNP NNP VBZ VBN NN NNS TO DT NNS IN PRP VBP DT NNP NNP JJ NN . In a statement issued Friday , Mr. Bush said Eid al-Adha is an important occasion to give thanks for blessings and to remember Abraham 's trust in a loving God . IN DT NN VBN NNP , NNP NNP VBD NNP NNP VBZ DT JJ NN TO VB NNS IN NNS CC TO VB NNP POS NN IN DT JJ NNP . Eid al-Adha , the festival of sacrifice , commemorates the willingness of the prophet Abraham to sacrifice his son in obedience to God . NNP NNP , DT NN IN NN , VBZ DT NN IN DT NN NNP TO VB PRP$ NN IN NN TO NNP . According to scripture , Allah did not require Abraham to go through with the sacrifice . VBG TO NN , NNP VBD RB VB NNP TO VB IN IN DT NN . Mr. Bush said Muslims would celebrate with friends and family , exchanging gifts and greetings , and engaging in worship through sacrifice and charity . NNP NNP VBD NNP MD VB IN NNS CC NN , VBG NNS CC NNS , CC VBG IN NN IN NN CC NN . The president said America is a more hopeful nation because of the talents , generosity and compassion of Muslim citizens . DT NN VBD NNP VBZ DT RBR JJ NN IN IN DT NNS , NN CC NN IN NNP NNS . Lawmakers on Cyprus have ratified the European Union treaty , despite opposition from the communist party of President Dimitris Christofias . NNS IN NNP VBP VBN DT NNP NNP NN , IN NN IN DT JJ NN IN NNP NNP NNP . The Mediterranean island-nation Thursday became the 20th EU state to ratify the treaty , after 31 lawmakers out of 49 present in Nicosia voted in favor . DT NNP NN NNP VBD DT JJ NNP NN TO VB DT NN , IN CD NNS IN IN CD JJ IN NNP VBD IN NN . The charter is aimed at streamlining EU bureaucracy and making it easier for the European Commission to enact policy . DT NN VBZ VBN IN VBG NNP NN CC VBG PRP JJR IN DT JJ NNP TO VB NN . The Cyprus vote comes less than a month after Irish voters rejected the treaty in a referendum . DT NNP NN VBZ JJR IN DT NN IN JJ NNS VBD DT NN IN DT NN . All 27 nations must ratify the treaty for it to take effect . DT CD NNS MD VB DT NN IN PRP TO VB NN . Advocates say it remains unclear whether the charter can be salvaged after the Irish defeat . NNS VBP PRP VBZ JJ IN DT NN MD VB VBN IN DT JJ NN . The head of the United Nations refugee agency says relief efforts in earthquake-ravaged Pakistan should concentrate now on creating conditions for people to be able to withstand the harsh Himalayan winter . DT NN IN DT NNP NNP NN NN VBZ NN NNS IN JJ NNP MD VB RB IN VBG NNS IN NNS TO VB JJ TO VB DT JJ NNP NN . U.N. High Commissioner for Refugees Antonio Guterres made the remark Thursday during his visit to Pakistan 's quake zone . NNP NNP NNP IN NNP NNP NNP VBD DT NN NNP IN PRP$ NN TO NNP POS NN NN . The visit is aimed at reviewing relief operations and meeting with local leaders . DT NN VBZ VBN IN VBG NN NNS CC NN IN JJ NNS . He said billions of dollars in aid pledges by donors must materialize before cold and hunger claim more lives . PRP VBD NNS IN NNS IN NN NNS IN NNS MD VB IN NN CC NN VBP JJR NNS . While touring the devastated capital of Pakistani Kashmir , Muzaffarabad , Mr. Guterres also noted the time has come to repay the country for generously hosting millions of Afghan refugees . IN VBG DT JJ NN IN JJ NNP , NNP , NNP NNP RB VBD DT NN VBZ VBN TO VB DT NN IN RB VBG NNS IN JJ NNS . His visit comes a day after Australian Prime Minister John Howard toured quake-hit areas and pledged nearly U.S. $ 37 miillion in additional relief . PRP$ NN VBZ DT NN IN JJ NNP NNP NNP NNP VBD JJ NNS CC VBD RB NNP $ CD NN IN JJ NN . An exhibition is opening at the Imperial War Museum in London , marking the centenary of the birth of writer Ian Fleming , the man who created the world 's most famous secret agent , James Bond . DT NN VBZ VBG IN DT NNP NNP NNP IN NNP , VBG DT NN IN DT NN IN NN NNP NNP , DT NN WP VBD DT NN POS RBS JJ NN NN , NNP NNP . Paul Burge has the story on the exhibit , titled ' For Your Eyes Only . ' NNP NNP VBZ DT NN IN DT NN , VBN `` IN PRP$ NNS RB . `` U.S. troops in Fallujah have found a safe house which they say contains evidence linked to wanted militant Abu Musab al-Zarqawi . NNP NNS IN NNP VBP VBN DT JJ NN WDT PRP VBP VBZ NN VBN TO JJ NN NNP NNP NNP . U.S. Lieutenant General John Sattler Thursday did not confirm the find , but he said coalition troops had found a number of insurgent headquarters in the city . NNP NNP NNP NNP NNP NNP VBD RB VB DT NN , CC PRP VBD NN NNS VBD VBN DT NN IN JJ NN IN DT NN . Embedded reporters in Fallujah say troops searching the safe house property found photographs , notes , ammunition and letters thought to be from al-Zarqawi . JJ NNS IN NNP VBP NNS VBG DT JJ NN NN VBD NNS , NNS , NN CC NNS VBN TO VB IN NNP . Videotape shot by an American news crew also showed a mural pledging allegiance to the al Qaida terrorist network . NN VBN IN DT JJ NN NN RB VBD DT NN VBG NN TO DT NNP NNP NN NN . Several bodies lay outside the house , and soldiers found an American-made truck wired with explosives nearby . DT NNS VBD IN DT NN , CC NNS VBD DT JJ NN VBN IN NNS RB . U.S. and Iraqi officials have said the terrorist leader probably fled Fallujah ahead of the recent assault . NNP CC JJ NNS VBP VBN DT JJ NN RB VBD NNP RB IN DT JJ NN . The U.S. military in Afghanistan says fighting in two southern provinces has left four suspected militants dead and two Afghan police wounded . DT NNP NN IN NNP VBZ VBG IN CD JJ NNS VBZ VBN CD JJ NNS JJ CC CD JJ NNS VBD . A U.S. military spokesman Lieutenant Colonel Jerry O'Hara says three insurgents were killed and two Afghan police officers wounded during a clash Friday in the Deh Rawood district of Uruzgan province . DT NNP JJ NN NNP NNP NNP NNP VBZ CD NNS VBD VBN CC CD JJ NN NNS VBD IN DT NN NNP IN DT NNP NNP NN IN NNP NN . One fighter was captured , along with a light machine gun and a rocket-propelled grenade . CD NN VBD VBN , IN IN DT JJ NN NN CC DT JJ NN . The spokesman said that , on the same day , south of Kabul , one militant was killed when a group of insurgents attacked a U.S. and Afghan military convoy . DT NN VBD IN , IN DT JJ NN , RB IN NNP , CD NN VBD VBN WRB DT NN IN NNS VBD DT NNP CC JJ JJ NN . There has been an upsurge of violence in Afghanistan ahead of the September 18 parliamentary elections . EX VBZ VBN DT NN IN NN IN NNP RB IN DT NNP CD JJ NNS . Hundreds of people have died in militant-related violence so far this year . NNS IN NNS VBP VBN IN JJ NN RB RB DT NN . Former Darfur rebels said Friday they rescued a kidnapped Chinese worker in Sudan 's Darfur region . JJ NNP NNS VBD NNP PRP VBD DT VBN JJ NN IN NNP POS NNP NN . Reuters news agency reports the engineer was in good health . NNP NN NN VBZ DT NN VBD IN JJ NN . A Sudanese army spokesman said Wednesday he had information the engineer had been taken hostage in neighboring Chad . DT JJ NN NN VBD NNP PRP VBD NN DT NN VBD VBN VBN NN IN JJ NNP . Last month three Russian pilots were kidnapped in Sudan 's Darfur region at gunpoint and held for two days . JJ NN CD JJ NNS VBD VBN IN NNP POS NNP NN IN NN CC VBN IN CD NNS . They were released one day after an American aid worker was freed in Darfur after being held captive for more than 100 days . PRP VBD VBN CD NN IN DT JJ NN NN VBD VBN IN NNP IN VBG VBN JJ IN JJR IN CD NNS . India has announced plans to pay an additional $ 160 million to victims of a 1984 anti-Sikh riot , in which more than 3,000 Sikhs were killed . NNP VBZ VBN NNS TO VB DT JJ $ CD CD TO NNS IN DT CD JJ NN , IN WDT JJR IN CD NNS VBD VBN . The Indian government said Thursday the families of those killed will receive a total of nearly $ 7,800 , while those injured in the riots will receive a total of $ 2,800 . DT JJ NN VBD NNP DT NNS IN DT VBN MD VB DT NN IN RB $ CD , IN DT VBN IN DT NNS MD VB DT NN IN $ CD . The decision to increase the funds given to riot victims came after a report released in August said some Congress party leaders may have helped incite the riots . DT NN TO VB DT NNS VBN TO NN NNS VBD IN DT NN VBN IN NNP VBD DT NNP NN NNS MD VB VBN VB DT NNS . The riots were sparked by the 1984 assassination of Prime Minister Indira Gandhi , by Sikh members of her security team . DT NNS VBD VBN IN DT CD NN IN NNP NNP NNP NNP , IN NNP NNS IN PRP$ NN NN . Victims and their families say the compensation is not enough , and have demanded any politician who helped incite the riot be brought to justice . NNS CC PRP$ NNS VBP DT NN VBZ RB RB , CC VBP VBN DT NN WP VBD VB DT NN VB VBN TO NN . The new head of the Palestinian Fatah movement has threatened to expel popular leader Marwan Barghouti unless he withdraws from the Palestinian presidential race . DT JJ NN IN DT JJ NNP NN VBZ VBN TO VB JJ NN NNP NNP IN PRP VBZ IN DT JJ JJ NN . Barghouti is seen as the only serious challenger to the official Fatah candidate , former prime minister Mahmoud Abbas . NNP VBZ VBN IN DT RB JJ NN TO DT JJ NNP NN , JJ JJ NN NNP NNP . Fatah chief Faruq Qaddumi says any member who goes against the group 's decisions should resign and have his membership cancelled . NNP NN NNP NNP VBZ DT NN WP VBZ IN DT NN POS NNS MD VB CC VB PRP$ NN VBD . The 45-year-old Barghouti is currently serving five life terms in an Israeli prison for planning suicide attacks . DT JJ NNP VBZ RB VBG CD NN NNS IN DT JJ NN IN VBG NN NNS . Mr. Barghouti , who has denied involvement in the attacks , filed papers for the January 9th presidential race last Wednesday . NNP NNP , WP VBZ VBN NN IN DT NNS , VBN NNS IN DT NNP CD JJ NN JJ NNP . The winner of the race will succeed the late Yasser Arafat and lead the Palestinians as world powers try to revive the Middle East peace process . DT NN IN DT NN MD VB DT JJ NNP NNP CC VB DT NNS IN NN NNS VBP TO VB DT NNP NNP NN NN . Israel says it will not negotiate with Syria as long as Damascus supports terrorist groups , brushing off a Syrian offer of peace talks . NNP VBZ PRP MD RB VB IN NNP RB RB IN NNP VBZ JJ NNS , VBG RP DT JJ NN IN NN NNS . A spokeswoman for Israeli Prime Minister Ehud Olmert Tuesday also criticized Syria for pro-Hezbollah statements made by its foreign minister , Walid Moualem during the month-long Israel-Hezbollah war . DT NN IN JJ NNP NNP NNP NNP NNP RB VBD NNP IN JJ NNS VBN IN PRP$ JJ NN , NNP NNP IN DT JJ JJ NN . Syria and Iran are believed to be key suppliers of weapons and money to Hezbollah . NNP CC NNP VBP VBN TO VB JJ NNS IN NNS CC NN TO NNP . In an interview broadcast Monday , Syrian President Bashar al-Assad said he is ready to hold talks with Israel but that an impartial arbiter should mediate between the two sides . IN DT NN NN NNP , JJ NNP NNP NNP VBD PRP VBZ JJ TO VB NNS IN NNP CC IN DT JJ NN MD VB IN DT CD NNS . The Syrian leader said he doubts the U.S. can play that role . DT JJ NN VBD PRP VBZ DT NNP MD VB DT NN . He said Washington lacks the will and the vision to pursue peace in the Middle East . PRP VBD NNP VBZ DT NN CC DT NN TO VB NN IN DT NNP NNP . Talks between Syria and Israel broke down in 2000 . NNS IN NNP CC NNP VBD RP IN CD . Syria has demanded that Israel return the entire Golan Heights . NNP VBZ VBN IN NNP VB DT JJ NNP NNP . Israel seized the Golan Heights in the 1967 Six-Day War . NNP VBD DT NNP NNPS IN DT CD NNP NNP . Military officials in Iraq say a U.S. soldier was killed and nine others wounded Saturday when Iraqi insurgents attacked an Army patrol in central Baghdad . JJ NNS IN NNP VBP DT NNP NN VBD VBN CC CD NNS VBD NNP WRB JJ NNS VBD DT NNP NN IN JJ NNP . The U.S. military says the unit came under what it called a coordinated attack of roadside bombs , small arms fire and rocket-propelled grenades . DT NNP NN VBZ DT NN VBD IN WP PRP VBD DT JJ NN IN NN NNS , JJ NNS NN CC JJ NNS . Earlier , Iraqi insurgents attacked a police station in the Azamiyah district in northwest Baghdad , killing at least three policemen . RB , JJ NNS VBD DT NN NN IN DT NNP NN IN JJ NNP , VBG IN JJS CD NNS . Clashes also broke out between gunmen and Iraqi security forces in Baghdad 's Amiriyah district . NNS RB VBD RP IN NNS CC JJ NN NNS IN NNP POS NNP NN . Saturday 's violence came a day after Iraqi forces and U.S. soldiers raided a Sunni Muslim mosque in Baghdad known for its anti-American agitation and support for the former regime of Saddam Hussein . NNP POS NN VBD DT NN IN JJ NNS CC NNP NNS VBD DT NNP NNP NN IN NNP VBN IN PRP$ JJ NN CC NN IN DT JJ NN IN NNP NNP . Two people were killed during Friday 's raid and several others were arrested . CD NNS VBD VBN IN NNP POS NN CC JJ NNS VBD VBN . The United Nations ' top communications agency has called on Iran to stop jamming international satellite broadcasts . DT NNP NNPS POS JJ NNS NN VBZ VBN IN NNP TO VB VBG JJ NN NNS . The International Telecommunication Union said Friday interfering with foreign satellite signals is forbidden . DT NNP NNP NNP VBD NNP VBG IN JJ NN NNS VBZ VBN . The agency stopped short of blaming the Iranian government , but indicated the source of the jamming was coming from Iranian soil . DT NN VBD RB IN VBG DT JJ NN , CC VBD DT NN IN DT NN VBD VBG IN JJ NN . The ITU released the statement after receiving complaints from France on behalf of satellite provider Eutelsat . DT NNP VBD DT NN IN VBG NNS IN NNP IN NN IN NN NN NNP . Eutelsat claims Iran blocked Persian broadcasts by the Voice of America and the BBC after June of last year , when a disputed presidential election in Iran sparked mass anti-government protests . NNP NNS NNP VBD NNP NNS IN DT NNP IN NNP CC DT NNP IN NNP IN JJ NN , WRB DT JJ JJ NN IN NNP VBD JJ JJ NNS . The European Union has also condemned the satellite jamming . DT NNP NNP VBZ RB VBN DT NN NN . The U.N. agency does not have a means to force Iran to stop the satellite disruptions . DT NNP NN VBZ RB VB DT NN TO VB NNP TO VB DT NN NNS . U.N. health officials and health ministers from several African countries are due to meet Wednesday in Geneva to discuss ways to stem rising polio numbers . NNP NN NNS CC NN NNS IN JJ JJ NNS VBP JJ TO VB NNP IN NNP TO VB NNS TO VB VBG NN NNS . Ministers from Nigeria , Niger , Egypt , Burkina Faso , Ivory Coast , Sudan , the Central African Republic and Chad are due to take part in the talks . NNS IN NNP , NNP , NNP , NNP NNP , NNP NNP , NNP , DT NNP NNP NNP CC NNP VBP JJ TO VB NN IN DT NNS . The World Health Organization says the worldwide number of polio cases rose by more than 30 percent last year , to more than 1,170 . DT NNP NNP NNP VBZ DT JJ NN IN NN NNS VBD IN JJR IN CD NN JJ NN , TO JJR IN CD . The majority of cases were in Nigeria , India and Pakistan . DT NN IN NNS VBD IN NNP , NNP CC NNP . WHO efforts to eradicate the disease worldwide by the end of this year have been hampered by a months-long vaccine boycott in northern Nigeria , after opponents there said the vaccine was contaminated with infertility agents . WP NNS TO VB DT NN NN IN DT NN IN DT NN VBP VBN VBN IN DT JJ NN NN IN JJ NNP , IN NNS RB VBD DT NN VBD VBN IN NN NNS . Polio attacks the nervous system , causing paralysis and sometimes death . NNP VBZ DT JJ NN , VBG NN CC RB NN . One computer company is working to add solar power to its portable devices , while another is developing a touch screen for the next version of its widely used software . CD NN NN VBZ VBG TO VB JJ NN TO PRP$ JJ NNS , IN DT VBZ VBG DT NN NN IN DT JJ NN IN PRP$ RB VBN NN . Macrumors.com , a website that closely watches developments at the Apple computer company , says the firm has asked for a patent on adding a solar panel to generate electricity for its portable phones and computers . NNP , DT NN WDT RB VBZ NNS IN DT NNP NN NN , VBZ DT NN VBZ VBN IN DT NN IN VBG DT JJ NN TO VB NN IN PRP$ JJ NNS CC NNS . What is new is the idea of putting the solar panel beneath the devices ' display screens and touch screens , saving space . WP VBZ JJ VBZ DT NN IN VBG DT JJ NN IN DT NNS POS NN NNS CC NN NNS , VBG NN . Apple 's competitor , Microsoft , is developing a touch screen for the next version of its Windows software . NNP POS NN , NNP , VBZ VBG DT NN NN IN DT JJ NN IN PRP$ NNP NN . The touch screen could take over some of the work now done by a keyboard or computer mouse . DT NN NN MD VB RP DT IN DT NN RB VBN IN DT NN CC NN NN . The White House says President Bush will meet with his counterparts from Liberia and the Democratic Republic of Congo in Washington later this month . DT NNP NNP VBZ NNP NNP MD VB IN PRP$ NNS IN NNP CC DT JJ NNP IN NNP IN NNP RB DT NN . A pair of statements released Friday said Liberian President Ellen Johnson Sirleaf will visit the White House October 18 , followed by Congolese President Joseph Kabila eight days later . DT NN IN NNS VBN NNP VBD JJ NNP NNP NNP NNP MD VB DT NNP NNP NNP CD , VBN IN JJ NNP NNP NNP CD NNS RB . The White House says Mr. Bush and Mrs. Sirleaf plan to discuss cooperation in the areas of education , reconstruction , trade , security and debt relief . DT NNP NNP VBZ NNP NNP CC NNP NNP VBP TO VB NN IN DT NNS IN NN , NN , NN , NN CC NN NN . It says Mr. Bush and Mr. Kabila will focus on increasing cooperation on security sector reform and economic reconstruction in eastern Congo . PRP VBZ NNP NNP CC NNP NNP MD VB IN VBG NN IN NN NN NN CC JJ NN IN JJ NNP . The Bush administration has been largely supportive of both countries ' governments since elections that brought Mrs. Sirleaf to power in 2005 and confirmed Mr. Kabila as Congo 's president last year . DT NNP NN VBZ VBN RB JJ IN DT NNS POS NNS IN NNS WDT VBD NNP NNP TO NN IN CD CC VBD NNP NNP IN NNP POS NN JJ NN . Both countries are emerging from bloody civil wars that ruined much of their infrastructure . DT NNS VBP VBG IN JJ JJ NNS WDT VBD NN IN PRP$ NN . Iraqi officials say bombings in two parts of the country have killed at least 13 people , including seven in an attack against a senior Iraqi Kurdish official . JJ NNS VBP NNS IN CD NNS IN DT NN VBP VBN IN JJS CD NNS , VBG CD IN DT NN IN DT JJ JJ NNP NN . Police say a roadside bomb in eastern Diyala province Sunday hit a convoy carrying Mohammed Ramadan , a senior member of Iraq 's Patriotic Union of Kurdistan party . NNS VBP DT NN NN IN JJ NNP NN NNP VBD DT NN VBG NNP NNP , DT JJ NN IN NNP POS NNP NNP IN NNP NN . Authorities say the blast killed five members of Ramadan 's family and two of his guards . NNS VBP DT NN VBD CD NNS IN NNP POS NN CC CD IN PRP$ NNS . The bomb wounded at least four other people , including Ramadan . DT NN VBD IN JJS CD JJ NNS , VBG NNP . Separately today , police say a car bomb attack killed six people and wounded 14 others in northern Baghdad . RB NN , NNS VBP DT NN NN NN VBD CD NNS CC VBD CD NNS IN JJ NNP . Authorities say three policemen were among those wounded in the attack on a police patrol in the capital 's Shaab neighborhood . NNS VBP CD NNS VBD IN DT VBN IN DT NN IN DT NN NN IN DT NN POS NNP NN . The United States and France have again called for the withdrawal of Syrian troops from Lebanon . DT NNP NNPS CC NNP VBP RB VBN IN DT NN IN JJ NNS IN NNP . Speaking in London at a conference on Palestinian reforms , Secretary of State Condoleezza Rice and France 's foreign minister Michel Barnier called on Syria to implement the United Nations Security Council resolution aimed at ending foreign interference in Lebanon . VBG IN NNP IN DT NN IN JJ NNS , NNP IN NNP NNP NNP CC NNP POS JJ NN NNP NNP VBD IN NNP TO VB DT NNP NNP NNP NNP NN VBN IN VBG JJ NN IN NNP . Ms. Rice said France and the United States are discussing ways to help Beirut ensure that its next elections are free and fair . NNP NNP VBD NNP CC DT NNP NNPS VBP VBG NNS TO VB NNP VB IN PRP$ JJ NNS VBP JJ CC JJ . She also said the two countries are considering options aimed at stabilizing Lebanon if Syrian troops withdraw . PRP RB VBD DT CD NNS VBP VBG NNS VBN IN VBG NNP IN JJ NNS VB . Lebanon 's pro-Syrian government resigned Monday following mass protests and a no-confidence motion in parliament over the killing of former Prime Minister Rafik Hariri . NNP POS JJ NN VBD NNP VBG JJ NNS CC DT JJ NN IN NN IN DT NN IN JJ NNP NNP NNP NNP . Both the Syrian and the Lebanese governments have denied involvement in the February 14 attack that sparked anti-Syrian demonstrations . DT DT JJ CC DT JJ NNS VBP VBN NN IN DT NNP CD NN WDT VBD JJ NNS . Lebanon 's opposition leaders say protests will continue until Syria withdraws its 14,000 troops . NNP POS NN NNS VBP NNS MD VB IN NNP VBZ PRP$ CD NNS . Indonesia 's military has started the final phase of troop withdrawals from Aceh province , as part of a peace accord to end a 30-year-long separatist insurgency . NNP POS NN VBZ VBN DT JJ NN IN NN NNS IN NNP NN , IN NN IN DT NN NN TO VB DT JJ NN NN . An army spokesman said Tuesday 1,600 troops were being withdrawn , and more would follow next week . DT NN NN VBD NNP CD NNS VBD VBG VBN , CC RBR MD VB JJ NN . Indonesia began the pullout a day after rebels from the Free Aceh Movement surrendered their final batch of weapons . NNP VBD DT NN DT NN IN NNS IN DT NNP NNP NNP VBD PRP$ JJ NN IN NNS . The peace agreement calls for Indonesian soldiers to leave Aceh , in parallel with militants handing over weapons to international monitors . DT NN NN VBZ IN JJ NNS TO VB NNP , IN NN IN NNS VBG IN NNS TO JJ NNS . Under the deal , only 14,000 Indonesian soldiers are allowed to remain in Aceh after the military completes its last withdrawal . IN DT NN , RB CD JJ NNS VBP VBN TO VB IN NNP IN DT JJ NNS PRP$ JJ NN . Indonesia and the rebels signed the truce in August in a bid to help Aceh recover from last December 's devastating tsunami . NNP CC DT NNS VBD DT NN IN NNP IN DT NN TO VB NNP VB IN JJ NNP POS JJ NN . Palestinian President Mahmoud Abbas and Prime Minister Ismail Haniyeh have appealed for an end to the fighting between Hamas militiamen and the president 's Fatah faction . JJ NNP NNP NNP CC NNP NNP NNP NNP VBP VBN IN DT NN TO DT NN IN NNP NNS CC DT NN POS NNP NN . At least eight people were killed and scores more wounded in the fighting which broke out Sunday in the Gaza Strip and Ramallah . IN JJS CD NNS VBD VBN CC NNS JJR VBN IN DT NN WDT VBD RP NNP IN DT NNP NNP CC NNP . The clashes were triggered when Hamas security forces tried to stop protests by policemen demanding the payment of overdue salaries from the Hamas-led government . DT NNS VBD VBN WRB NNP NN NNS VBD TO VB NNS IN NNS VBG DT NN IN JJ NNS IN DT JJ NN . Demonstrators set fire to the Palestinian cabinet building in Ramallah . NNS VBD NN TO DT JJ NN NN IN NNP . Members of the armed wing of the President 's Fatah faction kidnapped a Hamas minister . NNS IN DT JJ NN IN DT NNP POS NNP NN VBD DT NNP NN . In a televised speech , President Abbas called on Fatah and Hamas forces to end the conflict and return to their positions . IN DT JJ NN , NNP NNP VBD IN NNP CC NNP NNS TO VB DT NN CC NN TO PRP$ NNS . The Interior Ministry responded by ordering Hamas-led security forces to redeploy to positions held before the confrontation . DT NNP NNP VBD IN VBG JJ NN NNS TO VB TO NNS VBN IN DT NN . Askar Akayev Kyrgyzstan 's parliament has failed to gather enough lawmakers to formally accept President Askar Akayev 's resignation , technically leaving the deposed leader in power . NNP NNP NNP POS NN VBZ VBN TO VB JJ NNS TO RB VB NNP NNP NNP POS NN , RB VBG DT VBN NN IN NN . The letter of resignation was to have been presented to the 75-member legislature Tuesday . DT NN IN NN VBD TO VB VBN VBN TO DT JJ NN NNP . Deputies also planned to watch a resignation speech videotaped by Mr. Akayev in Moscow , but the parliamentary delegation that traveled to the Russian capital failed to show up . NNS RB VBD TO VB DT NN NN VBN IN NNP NNP IN NNP , CC DT JJ NN WDT VBD TO DT JJ NN VBD TO VB RP . Officials say the parliament session has been rescheduled for Wednesday . NNS VBP DT NN NN VBZ VBN VBN IN NNP . In a sign of how unstable Kyrgyzstan remains , a top anti-corruption officer was gunned down early Tuesday outside his house in the southern city of Osh . IN DT NN IN WRB JJ NNP VBZ , DT JJ JJ NN VBD VBN RB RB NNP IN PRP$ NN IN DT JJ NN IN NNP . A top U.S. diplomat is in Pakistan for talks with the country 's leaders on the fight against terrorism and the situation in neighboring Afghanistan . DT JJ NNP NN VBZ IN NNP IN NNS IN DT NN POS NNS IN DT NN IN NN CC DT NN IN VBG NNP . U.S. Assistant Secretary of State for South Asia Richard Boucher arrived in the Pakistani capital , Islamabad , Wednesday for two days of meetings . NNP NNP NNP IN NNP IN NNP NNP NNP NNP VBD IN DT JJ NN , NNP , NNP IN CD NNS IN NNS . Boucher is meeting with Foreign Minister Khurshid Kasuri , President Pervez Musharraf and other key members of government . NNP VBZ VBG IN NNP NNP NNP NNP , NNP NNP NNP CC JJ JJ NNS IN NN . Talks are also expected to focus on recent political developments in Pakistan . NNS VBP RB VBN TO VB IN JJ JJ NNS IN NNP . President Musharraf is trying to maintain cooperation with Washington in the fight against terrorism while managing opposition to his government by Islamist hardliners . NNP NNP VBZ VBG TO VB NN IN NNP IN DT NN IN NN IN VBG NN TO PRP$ NN IN NNP NNS . The European Union has imposed more sanctions on Burma . DT NNP NNP VBZ VBN JJR NNS IN NNP . The new sanctions , adopted at an EU foreign ministers ' meeting in Brussels , include an embargo on the import of timber , gems and metals from Burma . DT JJ NNS , VBN IN DT NNP JJ NNS POS NN IN NNP , VBP DT NN IN DT NN IN NN , NNS CC NNS IN NNP . They also extend a list of Burmese leaders and their relatives subject to a travel ban and assets freeze . PRP RB VBP DT NN IN JJ NNS CC PRP$ NNS JJ TO DT NN NN CC NNS NN . The EU foreign ministers urged Burma 's military government to enter into a ' meaningful dialogue ' that will lead to democracy . DT NNP JJ NNS VBD NNP POS JJ NN TO VB IN DT `` JJ NN `` WDT MD VB TO NN . They also called for the lifting of all restrictions on detained opposition leader Aung San Suu Kyi . PRP RB VBD IN DT NN IN DT NNS IN JJ NN NN NNP NNP NNP NNP . Officials in Sierra Leone say at least 200 people are missing and feared drowned after a boat capsized off the coast of the west African nation . NNS IN NNP NNP VBP IN JJS CD NNS VBP VBG CC VBD VBN IN DT NN VBN IN DT NN IN DT JJ JJ NN . Eight people have been confirmed dead and 37 have been rescued as officials continue to search for survivors . CD NNS VBP VBN VBN JJ CC CD VBP VBN VBN IN NNS VBP TO VB IN NNS . Transportation authorities have been unable to determine the exact number of passengers . NNP NNS VBP VBN JJ TO VB DT JJ NN IN NNS . Police said the boat , carrying a large number of schoolchildren , turned over late Wednesday in a heavy storm south of the capital , Freetown . NNS VBD DT NN , VBG DT JJ NN IN NNS , VBD RP JJ NNP IN DT JJ NN NN IN DT NN , NNP . Authorities have not said what caused the accident . NNS VBP RB VBN WP VBD DT NN . However , maritime accidents are not uncommon in Sierra Leone where boats are often overloaded and safety standards are frequently lacking or ignored . RB , NN NNS VBP RB JJ IN NNP NNP WRB NNS VBP RB VBN CC NN NNS VBP RB VBG CC VBN . Doctors treating Ukrainian opposition leader Viktor Yushchenko have confirmed he was poisoned with TCDD , the most harmful type of dioxin . NNS VBG JJ NN NN NNP NNP VBP VBN PRP VBD VBN IN NNP , DT RBS JJ NN IN NN . TCDD was a key contaminant in Agent Orange , the substance that caused numerous health problems during the Vietnam War . NNP VBD DT JJ NN IN NNP NNP , DT NN WDT VBD JJ NN NNS IN DT NNP NNP . The doctors in Vienna say the level was about 6,000 times higher than normal . DT NNS IN NNP VBP DT NN VBD RB CD NNS JJR IN JJ . In an interview Thursday with the Associated Press , Mr. Yushchenko said he was poisoned at a September dinner with top Ukrainian security officials . IN DT NN NNP IN DT NNP NNP , NNP NNP VBD PRP VBD VBN IN DT NNP NN IN JJ JJ NN NNS . This came as Mr. Yushchenko and Prime Minister Viktor Yanukovych were in the midst of a heated presidential election campaign . DT VBD IN NNP NNP CC NNP NNP NNP NNP VBD IN DT NN IN DT JJ JJ NN NN . The two face off in a December 26 election . DT CD NN IN IN DT NNP CD NN . The Associated Press also interviewed Mr. Yanukovych , who said he does not want to be associated with authorities Mr. Yushchenko say poisoned him . DT NNP NNP RB VBD NNP NNP , WP VBD PRP VBZ RB VB TO VB VBN IN NNS NNP NNP VBP VBN PRP . Mr. Yanukovych was declared winner of a flawed November election , but the Supreme Court overturned the results and ordered this month 's re-run . NNP NNP VBD VBN NN IN DT JJ NNP NN , CC DT NNP NNP VBD DT NNS CC VBD DT NN POS NN . Tradition has it that the Vatican Post Office issues a special stamp upon the death of a pope . NN VBZ PRP IN DT NNP NNP NNP VBZ DT JJ NN IN DT NN IN DT NN . Officials in Vatican City Saturday said the so-called ' vacant see ' stamp will carry an image only of two crossed keys . NNS IN NNP NNP NNP VBD DT JJ `` JJ VBP `` NN MD VB DT NN RB IN CD JJ NNS . The traditional image on Vatican stamps issued while a pope is alive contains both the keys as well as other papal symbols . DT JJ NN IN NNP NNS VBN IN DT NN VBZ JJ VBZ DT DT NNS RB RB IN JJ JJ NNS . These special stamps are only valid during the so-called ' interregnum , ' or between the time of a pope 's death and when a new one is elected by a conclave of cardinals . DT JJ NNS VBP RB JJ IN DT JJ `` NN , `` CC IN DT NN IN DT NN POS NN CC WRB DT JJ CD VBZ VBN IN DT NN IN NNS . The last time the Vatican issued a vacant see stamp was in 1978 , when Pope John Paul I died . DT JJ NN DT NNP VBD DT JJ VB NN VBD IN CD , WRB NNP NNP NNP NNP VBD . The U.S. Central Intelligence Agency says al-Qaida is fully capable of building and detonating a radioactive dirty bomb in the United States and other Western nations . DT NNP NNP NNP NNP VBZ NNP VBZ RB JJ IN NN CC VBG DT JJ NN NN IN DT NNP NNPS CC JJ JJ NNS . In its annual report on proliferation threats released to lawmakers Tuesday , the CIA said al-Qaida 's stated desire to carry out attacks using chemical , biological or nuclear materials is one of the agency 's highest concerns . IN PRP$ JJ NN IN NN NNS VBN TO NNS NNP , DT NNP VBD NNP POS JJ NN TO VB RP NNS VBG NN , JJ CC JJ NNS VBZ CD IN DT NN POS JJS NNS . The CIA said any attack would probably be on a small scale , using improvised delivery devices and easily obtainable toxins or radiological substances . DT NNP VBD DT NN MD RB VB IN DT JJ NN , VBG JJ NN NNS CC RB JJ NNS CC JJ NNS . It warned that multiple , simultaneous attacks could kill hundreds of people and cause widespread panic . PRP VBD IN NN , JJ NNS MD VB NNS IN NNS CC VB JJ NN . The report also says the CIA remains convinced Iran is pursuing a clandestine nuclear weapons program , and North Korea may have a nuclear-capable missile able to reach the United States . DT NN RB VBZ DT NNP VBZ JJ NNP VBZ VBG DT JJ JJ NNS NN , CC NNP NNP MD VB DT JJ NN JJ TO VB DT NNP NNPS . Egyptian officials say they have postponed reconciliation talks scheduled next week with Palestinian factions . JJ NNS VBP PRP VBP VBN NN NNS VBN JJ NN IN JJ NNS . Authorities did not say when the Egyptian-sponsored talks would be held . NNS VBD RB VB WRB DT JJ NNS MD VB VBN . Earlier Saturday , Hamas officials said they plan to boycott the talks with rival Fatah . RBR NNP , NNP NNS VBD PRP VBP TO VB DT NNS IN JJ NNP . Officials said Palestinian President and Fatah leader Mahmoud Abbas continues to crack down on Hamas in the Fatah-controlled West Bank . NNS VBD JJ NNP CC NNP NN NNP NNP VBZ TO VB RP IN NNP IN DT JJ NNP NNP . Late last month , Mr. Abbas deployed hundreds of security officers to the West Bank city of Hebron . RB JJ NN , NNP NNP VBD NNS IN NN NNS TO DT NNP NNP NN IN NNP . Egypt invited Hamas and Fatah , along with smaller Palestinian factions , to a meeting in Cairo on November ninth to settle the conflict between the two larger groups . NNP VBD NNP CC NNP , IN IN JJR JJ NNS , TO DT NN IN NNP IN NNP NN TO VB DT NN IN DT CD JJR NNS . The factions have been divided since Hamas militants drove Fatah fighters out of Gaza in June 2007 and seized control of the territory . DT NNS VBP VBN VBN IN NNP NNS VBD NNP NNS IN IN NNP IN NNP CD CC VBD NN IN DT NN . Hong Kong says it had a record-setting 268 new cases of HIV infection in 2004 . NNP NNP VBZ PRP VBD DT JJ CD JJ NNS IN NNP NN IN CD . Dr. S. S. Lee , a consultant for the territory 's Health Department , says increased traffic between Hong Kong and China is partly to blame for the rise in HIV cases . NNP NNP NNP NNP , DT NN IN DT NN POS NNP NNP , VBZ VBN NN IN NNP NNP CC NNP VBZ RB TO VB IN DT NN IN NNP NNS . China is one of many east Asian nations with a growing AIDS crisis . NNP VBZ CD IN JJ JJ JJ NNS IN DT VBG NNP NN . Dr. Lee says the majority of the new HIV cases came from sexual transmission , while a smaller number contracted the virus from contaminated needles . NNP NNP VBZ DT NN IN DT JJ NNP NNS VBD IN JJ NN , IN DT JJR NN VBD DT NN IN VBN NNS . However , the number of AIDS cases dropped from 56 in 2003 to 49 last year . RB , DT NN IN NNP NNS VBD IN CD IN CD TO CD JJ NN . Dr. Lee says an estimated 3,000 people in Hong Kong either have HIV or AIDS . NNP NNP VBZ DT JJ CD NNS IN NNP NNP CC VBP NNP CC NNP . Twelve mine clearing workers are missing in eastern Afghanistan . CD NN NN NNS VBP VBG IN JJ NNP . Authorities said Thursday that the workers of a local demining company disappeared while traveling through Paktia province . NNS VBD NNP IN DT NNS IN DT JJ NN NN VBD IN VBG IN NNP NN . The Reuters news agency quotes a Paktia official as saying insurgents abducted the 12 deminers . DT NNP NN NN VBZ DT NNP NN IN VBG NNS VBD DT CD NNS . In southern Afghanistan , NATO said two soldiers were killed and several others wounded by two separate bomb attacks Thursday . IN JJ NNP , NNP VBD CD NNS VBD VBN CC JJ NNS VBN IN CD JJ NN NNS NNP . It gave no other details . PRP VBD DT JJ NNS . On Wednesday , Afghan and U.S.-led coalition troops killed more than 40 Taleban fighters during a 12-hour battle in southern Kandahar province . IN NNP , JJ CC JJ NN NNS VBD JJR IN CD NNP NNS IN DT JJ NN IN JJ NNP NN . The military says nearly 200 Taleban insurgents have been killed in fighting in the area in the past two weeks . DT JJ VBZ RB CD NNP NNS VBP VBN VBN IN VBG IN DT NN IN DT JJ CD NNS . The Taleban were ousted from power in Afghanistan by a U.S.-led offensive in late 2001 . DT NNP VBD VBN IN NN IN NNP IN DT JJ NN IN JJ CD . However , Taleban fighters have regrouped in recent months to mount an increasingly bloody insurgency aimed at the U.S.-backed government in Kabul . RB , NNP NNS VBP VBN IN JJ NNS TO VB DT RB JJ NN VBN IN DT JJ NN IN NNP . American figure skater Michelle Kwan has pulled out of the Olympic Winter Games in Turin , Italy , dashing the superstar 's hopes to win the one prize that has eluded her over a long and prestigious career - an Olympic gold medal . JJ NN NN NNP NNP VBZ VBN IN IN DT NNP NNP NNPS IN NNP , NNP , VBG DT NN POS NNS TO VB DT CD NN WDT VBZ VBN PRP IN DT JJ CC JJ NN IN DT NNP NN NN . Kwan withdrew from the games early Sunday due to a hip muscle injury and recurring groin strain . NNP VBD IN DT NNS JJ NNP JJ TO DT NN NN NN CC VBG JJ NN . Kwan says taking herself off the team is the most difficult decision she has ever had to make . NNP VBZ VBG PRP RP DT NN VBZ DT RBS JJ NN PRP VBZ RB VBN TO VB . The 25-year-old California native received a bye onto the Olympic team after missing the U.S. championships because of the groin injury . DT JJ NNP NN VBD DT NN IN DT NNP NN IN VBG DT NNP NNS IN IN DT NN NN . Kwan has five world championships , nine U.S. titles , and silver and bronze Olympic medals . NNP VBZ CD NN NNS , CD NNP NNS , CC NN CC NN NNP NNS . Medals will be awarded in eight Olympic events Sunday , including the highly anticipated men 's Alpine skiing downhill race . NNS MD VB VBN IN CD NNP NNS NNP , VBG DT RB VBN NNS POS NNP NN NN NN . Norway leads the overall medal count with four , followed by Germany with two . NNP VBZ DT JJ JJ NN IN CD , VBN IN NNP IN CD . Israeli security officials say they re-arrested nuclear-whistle blower Mordechai Vanunu early Thursday . JJ NN NNS VBP PRP VBD JJ NN NNP NNP RB NNP . Officials say Vanunu is suspected of giving unauthorized information to foreigners . NNS VBP NNP VBZ VBN IN VBG JJ NN TO NNS . He was set free in April , after serving 18 years in prison for divulging classified information about Israel 's nuclear program to the London Sunday Times . PRP VBD VBN JJ IN NNP , IN VBG CD NNS IN NN IN VBG JJ NN IN NNP POS JJ NN TO DT NNP NNP NNP . Under conditions of his release , Vanunu is still barred from leaving the country or discussing Israel 's nuclear program . IN NNS IN PRP$ NN , NNP VBZ RB VBN IN VBG DT NN CC VBG NNP POS JJ NN . His contacts with foreigners also are restricted . PRP$ NNS IN NNS RB VBP VBN . Egyptian officials say more than 40 people have died in a series of bomb attacks in a Red Sea resort area . JJ NNS VBP JJR IN CD NNS VBP VBN IN DT NN IN NN NNS IN DT NNP NNP NN NN . Police say the seven blasts early Saturday included as many as four car bombs , and injured more than 100 people . NNS VBP DT CD NNS JJ NNP VBD RB JJ IN CD NN NNS , CC VBD JJR IN CD NNS . Witnesses say one hotel , Ghazala Gardens , in the town of Sharm el-Sheik was heavily damaged by the attacks , which also targeted a tourist bazaar in the Naama Bay area . NNS VBP CD NN , NNP NNP , IN DT NN IN NNP NNP VBD RB VBN IN DT NNS , WDT RB VBD DT NN NN IN DT NNP NNP NN . Officials say one blast killed 17 people gathered at an outdoor cafe . NNS VBP CD NN VBD CD NNS VBN IN DT JJ NN . The attacks come as hotels are packed with tourists , including many foreigners , during the busy summer vacation season . DT NNS VBP IN NNS VBP VBN IN NNS , VBG JJ NNS , IN DT JJ NN NN NN . Last October , 34 people died in explosions in nearby resort areas . JJ NNP , CD NNS VBD IN NNS IN JJ NN NNS . Egyptian officials blamed the attacks on violence related to the Israeli-Palestinian conflict . JJ NNS VBD DT NNS IN NN VBN TO DT JJ NN . Terrorist mastermind Abu Musab al-Zarqawi has apparently surfaced in an audiotape on the Internet , seeking to further divide Iraq 's Sunnis and Shi'ites 10 days before national elections . NN NN NNP NNP NNP VBZ RB VBN IN DT NN IN DT NNP , VBG TO JJ VB NNP POS NNP CC NNP CD NNS IN JJ NNS . The 75-minute-long statement took aim at the country 's ascendant Shi'ites , who are expected to win a majority of seats in the transitional assembly . DT JJ NN VBD NN IN DT NN POS JJ NNS , WP VBP VBN TO VB DT NN IN NNS IN DT JJ NN . In the tape , Zarqawi accuses their highest religious authority , Grand Ayatollah Ali al-Sistani , of approving November 's U.S.-led invasion to crush insurgents hiding in the Sunni stronghold of Fallujah . IN DT NN , NNP VBZ PRP$ JJS JJ NN , NNP NNP NNP NNP , IN VBG NNP POS JJ NN TO VB NNS VBG IN DT NNP NN IN NNP . He also accuses Shi'ites of killing innocents in Fallujah , and claims they fought alongside 800 Israeli soldiers as well as Jordanian troops . PRP RB VBZ NNS IN VBG NNS IN NNP , CC NNS PRP VBD IN CD JJ NNS RB RB IN JJ NNS . The authenticity of the tape has not been established . DT NN IN DT NN VBZ RB VBN VBN . Many of Fallujah 's residents fled ahead of November 's offensive . NN IN NNP POS NNS VBD RB IN NNP POS NN . The U.S. military said Thursday that the city is now completely reopened and a little more than half of its residents have returned . DT NNP NN VBD NNP IN DT NN VBZ RB RB VBN CC DT RB JJR IN NN IN PRP$ NNS VBP VBN . Ceremonies in the U.S. have marked the anniversary of the September 11 terrorist attacks with moments of silence and the reading of victims ' names . NNS IN DT NNP VBP VBN DT NN IN DT NNP CD JJ NNS IN NNS IN NN CC DT NN IN NNS POS NNS . Bells tolled and bagpipes played in New York at the moment eight years ago when the first of two hijacked airliners slammed into the World Trade Center . NNP VBD CC NNS VBD IN NNP NNP IN DT NN CD NNS RB WRB DT NN IN CD JJ NNS VBD IN DT NNP NNP NNP . President Barack Obama took part in a ceremony on the South Lawn of the White House , while Vice President Joe Biden spoke at the service in New York . NNP NNP NNP VBD NN IN DT NN IN DT NNP NNP IN DT NNP NNP , IN NNP NNP NNP NNP VBD IN DT NN IN NNP NNP . Nearly 3,000 people died on September 11 , 2001 , in a coordinated al-Qaeda attack involving four hijacked planes . RB CD NNS VBD IN NNP CD , CD , IN DT JJ NN NN VBG CD JJ NNS . One of them crashed into the Pentagon , where Mr. Obama plans to attend a wreathlaying on Friday . CD IN PRP VBD IN DT NNP , WRB NNP NNP VBZ TO VB DT NN IN NNP . Services are also planned in Shanksville , Pennsylvania , the crash site of United Airlines Flight 93 . NNPS VBP RB VBN IN NNP , NNP , DT NN NN IN NNP NNPS NN CD . That aircraft went down after passengers fought hijackers and presumably stopped the plane from hitting its intended target . DT NN VBD RB IN NNS VBD NNS CC RB VBD DT NN IN VBG PRP$ JJ NN . Witnesses in Nepal say police have opened fire on a protest rally against King Gyanendra in the west of the country , wounding at least one person . NNS IN NNP VBP NNS VBP VBN NN IN DT NN NN IN NNP NNP IN DT NN IN DT NN , VBG IN JJS CD NN . They say the incident took place Thursday in the town of Pokhara , as police tried to disperse the demonstrators . PRP VBP DT NN VBD NN NNP IN DT NN IN NNP , IN NN VBD TO VB DT NNS . The protest coincided with a nationwide strike called by opposition parties to protest the king 's plan for municipal elections . DT NN VBD IN DT JJ NN VBN IN NN NNS TO VB DT NN POS NN IN JJ NNS . The streets of the capital , Kathmandu , were deserted , and schools and businesses were closed around the country . DT NNS IN DT NN , NNP , VBD VBN , CC NNS CC NNS VBD VBN IN DT NN . Riot police were patrolling to prevent the violence that has accompanied previous strikes . NN NNS VBD VBG TO VB DT NN WDT VBZ VBN JJ NNS . The strike is aimed at stopping candidates from registering for February 8 elections , a process that began today . DT NN VBZ VBN IN VBG NNS IN VBG IN NNP CD NNS , DT NN WDT VBD NN . Only a few candidates filed their nominations in Kathmandu in the first few hours . RB DT JJ NNS VBD PRP$ NNS IN NNP IN DT JJ JJ NNS . The alliance of seven opposition groups says it will boycott the vote , because it would legitimize the king 's absolute rule . DT NN IN CD NN NNS VBZ PRP MD VB DT NN , IN PRP MD VB DT NN POS JJ NN . A Russian newspaper says Russia is planning to sell up to nine submarines to Venezuela . DT JJ NN VBZ NNP VBZ VBG TO VB RP TO CD NNS TO NNP . The Kommersant reports Thursday that Venezuelan President Hugo Chavez is expected to sign the deal during a trip to Moscow , which starts June 29 . DT NN VBZ NNP IN JJ NNP NNP NNP VBZ VBN TO VB DT NN IN DT NN TO NNP , WDT VBZ NNP CD . The contract would include five older , 636-type diesel submarines and the future delivery of four state-of-the-art 677 Amur submarines . DT NN MD VB CD JJR , JJ NN NNS CC DT JJ NN IN CD JJ CD NNP NNS . Russia has also supplied similar submarines to China . NNP VBZ RB VBN JJ NNS TO NNP . In recent years , Venezuela has become a major buyer of Russian arms , a development that has prompted expressions of concern by the United States . IN JJ NNS , NNP VBZ VBN DT JJ NN IN JJ NNS , DT NN WDT VBZ VBN NNS IN NN IN DT NNP NNPS . Previous Russian arms deals have supplied Venezuela with Kalashnikov rifles , jets , helicopters , and other weaponry . JJ JJ NNS NNS VBP VBN NNP IN NNP NNS , NNS , NNS , CC JJ NN . Venezuela 's president is a fierce critic of the Bush administration and says it supported the coup against him in April 2002 . NNP POS NN VBZ DT JJ NN IN DT NNP NN CC VBZ PRP VBD DT NN IN PRP IN NNP CD . U.S. officials have denied the charge . NNP NNS VBP VBN DT NN . U.S. Vice President Dick Cheney has arrived in Saudi Arabia for talks on issues including how to stop the sectarian violence in Iraq . NNP NNP NNP NNP NNP VBZ VBN IN NNP NNP IN NNS IN NNS VBG WRB TO VB DT JJ NN IN NNP . Cheney is expected to ask Saudi officials to use their influence with Iraq 's Sunni Arab minority to help stabilize the country . NNP VBZ VBN TO VB JJ NNS TO VB PRP$ NN IN NNP POS NNP NNP NN TO VB VB DT NN . U.S. officials say the Saudi government has been a strong ally in the region . NNP NNS VBP DT JJ NN VBZ VBN DT JJ NN IN DT NN . The vice president 's talks with King Abdullah also will include the Israeli-Palestinian conflict and the situation in Lebanon . DT NN NN POS NNS IN NNP NNP RB MD VB DT JJ NN CC DT NN IN NNP . On Wednesday , President Bush is to open talks about Iraqi security with Iraq 's Prime Minister Nouri al-Maliki in Jordan . IN NNP , NNP NNP VBZ TO VB NNS IN JJ NN IN NNP POS NNP NNP NNP NNP IN NNP . The Bush administration is reviewing its strategy in Iraq in hopes of stopping the rise in sectarian violence and continued attacks on coalition forces . DT NNP NN VBZ VBG PRP$ NN IN NNP IN NNS IN VBG DT NN IN JJ NN CC JJ NNS IN NN NNS . A new law comes into effect in Brazil Sunday , allowing the country 's air force to shoot down planes suspected of smuggling drugs . DT JJ NN VBZ IN NN IN NNP NNP , VBG DT NN POS NN NN TO VB RP NNS VBN IN VBG NNS . Drug traffickers frequently fly over Brazil while smuggling drugs from neighboring Colombia . NN NNS RB VBP IN NNP IN VBG NNS IN VBG NNP . Bogota also has a similar shoot-down policy . NNP RB VBZ DT JJ JJ NN . Brazilian officials say air force pilots must follow an eight-step procedure before shooting at a suspected drug plane . JJ NNS VBP NN NN NNS MD VB DT JJ NN IN VBG IN DT JJ NN NN . Critics say that despite those steps , the chance of human error remains and innocent people could be killed . NNS VBP IN IN DT NNS , DT NN IN JJ NN VBZ CC JJ NNS MD VB VBN . Such a mistake occurred in Peru in 2001 , and an American missionary and her child were killed . JJ DT NN VBD IN NNP IN CD , CC DT JJ NN CC PRP$ NN VBD VBN . Israel has formally turned over the West Bank city of Jericho to Palestinian forces . NNP VBZ RB VBN IN DT NNP NNP NN IN NNP TO JJ NNS . Israeli troops took down their national flag and dismantled a key checkpoint as Palestinian forces took up positions inside the city . JJ NNS VBD RP PRP$ JJ NN CC VBD DT JJ NN IN JJ NNS VBD RP NNS IN DT NN . Top commanders from both sides resolved a last-minute hitch over paperwork and signed an agreement to formalize the transfer . JJ NNS IN DT NNS VBD DT JJ NN IN NN CC VBD DT NN TO VB DT NN . Israel still controls two checkpoints outside Jericho , but troops have relaxed security procedures to ease travel to the city . NNP RB VBZ CD NNS IN NNP , CC NNS VBP VBN NN NNS TO VB NN TO DT NN . Jericho is the first of five towns ( with Tulkarem , Qalqiliya , Ramallah , Bethlehem ) that Israel plans to turn over to Palestinian control . NNP VBZ DT NN IN CD NNS LRB IN NNP , NNP , NNP , NNP RRB IN NNP VBZ TO VB RP TO JJ NN . Meanwhile , Israeli television reported that Jewish extremists plan to take over a disputed holy site in Jerusalem to try to sabotage Israel 's planned withdrawal from Gaza . RB , JJ NN VBD IN JJ NNS VBP TO VB RP DT JJ JJ NN IN NNP TO VB TO VB NNP POS VBN NN IN NNP . Also Wednesday in Cairo , Egyptian and Palestinian officials and Palestinian militant leaders are discussing a proposed one-year halt to Palestinian attacks on Israeli targets . RB NNP IN NNP , JJ CC JJ NNS CC JJ JJ NNS VBP VBG DT VBN JJ NN TO JJ NNS IN JJ NNS . Afghan officials say three police officers have been killed in two different suicide bombings Tuesday . JJ NNS VBP CD NNS NNS VBP VBN VBN IN CD JJ NN NNS NNP . Authorities say one officer was killed when a bomber rammed a police car in the southern province of Paktika , near the border with Pakistan . NNS VBP CD NN VBD VBN WRB DT NN VBD DT NN NN IN DT JJ NN IN NNP , IN DT NN IN NNP . They say the other bombing took place in the relatively quiet province of Kunduz , when a bomber detonated his car while being followed by police . PRP VBP DT JJ NN VBD NN IN DT RB JJ NN IN NNP , WRB DT NN VBD PRP$ NN IN VBG VBN IN NNS . That blast killed two policemen . DT NN VBD CD NNS . Separately , government officials said unidentified gunmen kidnapped two workers from the ministry of rural development . RB , NN NNS VBD JJ NNS VBD CD NNS IN DT NN IN JJ NN . That abduction occurred Monday in the western province of Nimroz . DT NN VBD NNP IN DT JJ NN IN NNP . A Seoul-based human rights group says North Korea has executed 70 defectors who were captured in China and repatriated . DT JJ JJ NNS NN VBZ NNP NNP VBZ VBN CD NNS WP VBD VBN IN NNP CC VBN . The private Commission to Help North Korean Refugees cited informants in the North as saying the executions were carried out to set an example for others thinking about fleeing . DT JJ NN TO VB JJ JJ NNS VBD NNS IN DT NNP IN VBG DT NNS VBD VBN IN TO VB DT NN IN NNS VBG IN NN . The group said in a statement Friday that eight or nine defectors were executed last month in public to discourage other people from fleeing to China . DT NN VBD IN DT NN NNP IN CD CC CD NNS VBD VBN JJ NN IN JJ TO VB JJ NNS IN VBG TO NNP . South Korean officials have not confirmed the report . JJ JJ NNS VBP RB VBN DT NN . China is North Korea 's only important ally and by treaty returns North Koreans , who Beijing regards as illegal immigrants and not as refugees . NNP VBZ NNP NNP POS RB JJ NN CC IN NN VBZ JJ NNS , WP NNP VBZ IN JJ NNS CC RB IN NNS . More than 1,00,000 North Koreans are believed to be hiding in China . JJR IN CD NNP NNS VBP VBN TO VB VBG IN NNP . NATO says its forces carried out a precision airstrike Saturday targeting a Taleban militant in southern Afghanistan . NNP VBZ PRP$ NNS VBD RP DT NN NN NNP VBG DT NNP NN IN JJ NNP . In a statement , NATO said the mission targeted the vehicle of a suspected terrorist who is allegedly linked to the transport of anti-aircraft weapons . IN DT NN , NNP VBD DT NN VBD DT NN IN DT JJ JJ WP VBZ RB VBN TO DT NN IN JJ NNS . Details about casualties related to the strike in Helmand province were not released . NNS IN NNS VBN TO DT NN IN NNP NN VBD RB VBN . The strike took place during the first week of NATO 's offensive against Taleban militants in southern Afghanistan . DT NN VBD NN IN DT JJ NN IN NNP POS NN IN NNP NNS IN JJ NNP . Also Saturday , authorities in eastern Afghanistan say four Afghan security officers were killed in a roadside bomb blast . RB NNP , NNS IN JJ NNP VBP CD JJ NN NNS VBD VBN IN DT NN NN NN . Officials say the attack occurred in Khost province , near the Pakistani border . NNS VBP DT NN VBD IN NNP NN , IN DT JJ NN . In southern Afghanistan Friday , a remote-controlled bomb ripped through the vehicle of pro-government tribal elder Mullah Naqib . IN JJ NNP NNP , DT JJ NN VBD IN DT NN IN JJ JJ NN NNP NNP . Naqib and some of his family members and guards were wounded in the blast and at least two others were killed . NNP CC DT IN PRP$ NN NNS CC NNS VBD VBN IN DT NN CC IN JJS CD NNS VBD VBN . Russian President Vladimir Putin has arrived in the Hague for the EuropeanUnion-Russian Summit Thursday where the disputed Ukrainian presidential election is expected to top the agenda . JJ NNP NNP NNP VBZ VBN IN DT NN IN DT JJ NNP NNP WRB DT JJ JJ JJ NN VBZ VBN TO VB DT NN . EU Commission President Jose Manuel Barroso has said the 25-member bloc will make it clear to the Russian President that the EU is not ' satisfied ' with Ukraine 's disputed election . NNP NNP NNP NNP NNP NNP VBZ VBN DT JJ NN MD VB PRP JJ TO DT JJ NNP IN DT NNP VBZ RB `` VBN `` IN NNP POS JJ NN . Prime Minister Viktor Yanukovych -- who was backed by Mr. Putin -- has been declared the winner of Sunday 's voting , but the EU is rejecting the results because of allegations of widespread voting fraud . NNP NNP NNP NNP : WP VBD VBN IN NNP NNP : VBZ VBN VBN DT NN IN NNP POS NN , CC DT NNP VBZ VBG DT NNS IN IN NNS IN JJ NN NN . On other issues , EU leaders say they will call on Russia to sign and ratify border agreements with Estonia and Latvia , and urge it to seek a political settlement in war-torn Chechnya . IN JJ NNS , NNP NNS VBP PRP MD VB IN NNP TO VB CC VB NN NNS IN NNP CC NNP , CC VB PRP TO VB DT JJ NN IN JJ NNP . Palestinian President Mahmoud Abbas has fired three top security officials after militants broke the ceasefire he reached with Israel and fired mortars at Jewish settlements in the Gaza Strip . JJ NNP NNP NNP VBZ VBN CD JJ NN NNS IN NNS VBD DT NN PRP VBD IN NNP CC VBD NNS IN JJ NNS IN DT NNP NNP . Mr. Abbas dismissed the men , including security chief Abdel Razek Majaidie , hours after Hamas militants fired the mortars . NNP NNP VBD DT NNS , VBG NN NN NNP NNP NNP , NNS IN NNP NNS VBD DT NNS . No one was wounded in the shelling , which Hamas said was a response to Israeli gunfire that killed a Palestinian man Wednesday in Gaza . DT NN VBD VBN IN DT NN , WDT NNP VBD VBD DT NN TO JJ NN WDT VBD DT JJ NN NNP IN NNP . Despite the violence , Israeli and Palestinian officials met late Thursday to discuss security issues . IN DT NN , JJ CC JJ NNS VBD JJ NNP TO VB NN NNS . Meanwhile , a deadly shootout was also reported at a Palestinian jail in Gaza City . RB , DT JJ NN VBD RB VBN IN DT JJ NN IN NNP NNP . Palestinian sources say at least three people described as Israeli collaborators were killed when dozens of masked gunmen stormed a jailhouse and set free several prisoners . JJ NNS VBP IN JJS CD NNS VBN IN JJ NNS VBD VBN WRB NNS IN VBN NNS VBD DT NN CC VBD JJ JJ NNS . Germany , France and Lithuania are the latest European countries to congratulate Viktor Yushchenko on his victory in the Ukrainian presidential election . NNP , NNP CC NNP VBP DT JJS JJ NNS TO VB NNP NNP IN PRP$ NN IN DT JJ JJ NN . In a letter to Mr. Yushchenko Tuesday , German Chancellor Gerhard Schroeder expressed optimism that Ukraine will continue what he called its transition toward the rule of law and a market economy . IN DT NN TO NNP NNP NNP , JJ NNP NNP NNP VBD NN IN NNP MD VB WP PRP VBD PRP$ NN IN DT NN IN NN CC DT NN NN . Lithuanian President Viktor Adamkus congratulated Mr. Yushchenko in a telephone conversation . JJ NNP NNP NNP VBD NNP NNP IN DT NN NN . In Paris , the foreign ministry said France and its European Union partners are determined to support democracy and modernization in Ukraine . IN NNP , DT JJ NN VBD NNP CC PRP$ NNP NNP NNS VBP VBN TO VB NN CC NN IN NNP . Meanwhile , Russia has questioned the objectivity of monitors for the Organization for Security and Cooperation in Europe . RB , NNP VBZ VBN DT NN IN NNS IN DT NNP IN NNP CC NNP IN NNP . That organization characterized last month 's presidential election re-run as flawed , while saying that Sunday 's poll vastly improved upon the last vote . DT NN VBD JJ NN POS JJ NN NN IN JJ , IN VBG IN NNP POS NN RB VBD IN DT JJ NN . Russia backed Mr. Yushchenko 's opponent . NNP VBD NNP NNP POS NN . U.S. weather forecasters say Tropical Storm Ernesto has formed over the Caribbean and is heading toward Jamaica and the Cayman Islands . NNP NN NNS VBP NNP NNP NNP VBZ VBN IN DT NNP CC VBZ VBG IN NNP CC DT NNP NNP . The National Hurricane Center thinks the storm could strengthen in coming days and is on track to enter the Gulf of Mexico next week . DT NNP NNP NNP VBZ DT NN MD VB IN VBG NNS CC VBZ IN NN TO VB DT NNP IN NNP JJ NN . The center is urging Jamaica and the Cayman Islands to monitor the threats posed by Ernesto , the fifth named storm of the season . DT NN VBZ VBG NNP CC DT NNP NNP TO VB DT NNS VBN IN NNP , DT NN VBN NN IN DT NN . Earlier Friday , Tropical Storm Debby weakened over the Atlantic . RBR NNP , NNP NNP NNP VBD IN DT NNP . The National Hurricane Center in Miami says Debby is about 2,200 kilometers northwest of the Cape Verde Islands , with winds near 65 kilometers per hour . DT NNP NNP NNP IN NNP VBZ NNP VBZ IN CD NNS JJS IN DT NNP NNP NNP , IN NNS IN CD NNS IN NN . It says no significant change in strength is expected over the next day . PRP VBZ DT JJ NN IN NN VBZ VBN IN DT JJ NN . Ethiopian security forces say they have foiled what they describe as a terrorist plot by a group linked to the country 's main opposition party . JJ NN NNS VBP PRP VBP VBN WP PRP VBP IN DT JJ NN IN DT NN VBN TO DT NN POS JJ NN NN . A statement released through state media says authorities arrested a group that was planning attacks in the capital , Addis Ababa . DT NN VBN IN NN NNS VBZ NNS VBN DT NN WDT VBD VBG NNS IN DT NN , NNP NNP . The statement says the group planned to target government officials and institutions . DT NN VBZ DT NN VBD TO VB NN NNS CC NNS . Ethiopian authorities say they also seized bombs , explosives and small arms related to the plot . JJ NNS VBP PRP RB VBD NNS , NNS CC JJ NNS VBN TO DT NN . The statement did not say how many people were arrested or explain how the alleged group is linked to the opposition Coalition for Unity and Democracy . DT NN VBD RB VB WRB JJ NNS VBD VBN CC VB WRB DT JJ NN VBZ VBN TO DT NN NN IN NN CC NN . Leaders of the party were not available for comment . NNS IN DT NN VBD RB JJ IN NN . Ethiopian Prime Minister Meles Zenawi has repeatedly accused the opposition of conspiring to incite violence and seeking to overthrow him . JJ NNP NNP NNP NNP VBZ RB VBN DT NN IN VBG TO VB NN CC VBG TO VB PRP . The government has charged at least 129 opposition leaders , journalists and others with treason and planning to commit genocide . DT NN VBZ VBN IN JJS CD NN NNS , NNS CC NNS IN NN CC NN TO VB NN . United Nations Secretary-General Kofi Annan has ordered disciplinary action against senior U.N. officials who worked on the oil-for-food program in Iraq . NNP NNP NNP NNP NNP VBZ VBN JJ NN IN JJ NNP NNS WP VBD IN DT NN NN IN NNP . Mr. Annan said in a statement Thursday a report about alleged corruption in the U.N. program has turned up ' extremely troubling evidence of wrongdoing , ' and he pledged that no one involved would be shielded from prosecution . NNP NNP VBD IN DT NN NNP DT NN IN JJ NN IN DT NNP NN VBZ VBN RP `` RB JJ NN IN NN , `` CC PRP VBD IN DT NN VBN MD VB VBN IN NN . The independent report , released Thursday , concluded that the head of the oil-for-food program , Benon Sevan , seriously undermined the integrity of the United Nations by his conduct . DT JJ NN , VBN NNP , VBD IN DT NN IN DT NN NN , NNP NNP , RB VBD DT NN IN DT NNP NNP IN PRP$ NN . U.N. disciplinary proceedings have begun against Mr. Sevan and another senior official , Joseph Stephanides . NNP JJ NNS VBP VBN IN NNP NNP CC DT JJ NN , NNP NNP . Both Mr. Sevan and Mr. Stephanides are Cypriot nationals . DT NNP NNP CC NNP NNP VBP JJ NNS . Critics say billions of dollars were siphoned away from the oil-for-food program , which was devised after the first Gulf War in an attempt to help Iraq 's impoverished civilian population . NNS VBP NNS IN NNS VBD VBN RB IN DT NN NN , WDT VBD VBN IN DT JJ NNP NNP IN DT NN TO VB NNP POS JJ JJ NN . Rebels and government forces in Ivory Coast began withdrawing heavy weapons from the front line Thursday , complying with a new peace deal to end tensions in the divided nation . NNS CC NN NNS IN NNP NNP VBD VBG JJ NNS IN DT NN NN NNP , VBG IN DT JJ NN NN TO VB NNS IN DT VBN NN . The pullback , expected to last four days , includes all guns larger than 20 millimeters and short-range weaponry equal to or larger than 60 millimeters , including mortars . DT NN , VBN TO VB CD NNS , VBZ DT NNS JJR IN CD NNS CC JJ NN JJ IN CC JJR IN CD NNS , VBG NNS . Anti-tank weapons will remain in place . JJ NNS MD VB IN NN . One rebel fighter told VOA he was happy to see the repeatedly postponed disarmament process begin , adding that he hopes to become a police officer once the two-year-old conflict is finally over . CD NN NN VBD NNP PRP VBD JJ TO VB DT RB VBN NN NN VB , VBG IN PRP VBZ TO VB DT NN NN IN DT JJ NN VBZ RB IN . Several peace deals have failed to take hold in Ivory Coast . JJ NN NNS VBP VBN TO VB NN IN NNP NNP . Rebels still hold huge swaths of territory in northern and western Ivory Coast , with the government firmly in control of the south . NNS RB VBP JJ NNS IN NN IN JJ CC JJ NNP NNP , IN DT NN RB IN NN IN DT NN . News reports from Uzbekistan say sporadic gunfire has continued in areas along the Kyrgyz border , following Friday 's military crackdown against protesters in the city of Andijan . NN NNS IN NNP VBP JJ NN VBZ VBN IN NNS IN DT JJ NN , VBG NNP POS JJ NN IN NNS IN DT NN IN NNP . The Associated Press quoted residents as saying several soldiers and civilians were killed when clashes erupted Sunday in two border villages , Teshiktosh and Karasu . DT NNP NNP VBD NNS IN VBG JJ NNS CC NNS VBD VBN WRB NNS VBD NNP IN CD NN NNS , NNP CC NNP . Earlier reports said as many as 500 people were killed when security forces fired into a crowd of demonstrators in Andijan on Friday . RBR NNS VBD RB JJ IN CD NNS VBD VBN WRB NN NNS VBD IN DT NN IN NNS IN NNP IN NNP . But Uzbek President Islam Karimov said the death toll was much lower . CC JJ NNP NNP NNP VBD DT NN NN VBD RB JJR . He blamed the bloodshed on Islamic radicals trying to overthrow the government . PRP VBD DT NN IN NNP NNS VBG TO VB DT NN . Several countries , including the United States , have called for restraint . JJ NNS , VBG DT NNP NNPS , VBP VBN IN NN . British Foreign Secretary Jack Straw called the Andijan crackdown a clear abuse of human rights . JJ NNP NNP NNP NNP VBD DT NNP NN DT JJ NN IN JJ NNS . Pope John Paul II has included prayers for the victims of the Asian tsunami in his New Year 's Day Mass marking the Roman Catholic Church 's annual World Day of Peace . NNP NNP NNP NNP VBZ VBN NNS IN DT NNS IN DT JJ NN IN PRP$ NNP NNP POS NNP NNP VBG DT NNP NNP NNP POS JJ NNP NNP IN NNP . Thousands of pilgrims attended the Pope 's outdoor Mass Saturday at the Vatican . NNS IN NNS VBD DT NNP POS JJ NNP NNP IN DT NNP . John Paul II also led a Mass for the tsunami victims in his private chapel overnight . NNP NNP NNP RB VBD DT NNP IN DT NN NNS IN PRP$ JJ NN RB . In his peace message , the pontiff called for greater cooperation among the world 's religions , and for promotion of peace through dialogue , justice and forgiveness . IN PRP$ NN NN , DT NN VBD IN JJR NN IN DT NN POS NNS , CC IN NN IN NN IN NN , NN CC NN . He urged the world 's one billion Roman Catholics to , ' win the fight over evil with the armies of love . ' PRP VBD DT NN POS CD CD NNP NNPS TO , `` VBP DT NN IN NN IN DT NNS IN NN . `` The European Union opened membership talks with Turkey early Tuesday , after settling last-minute objections by Austria . DT NNP NNP VBD NN NNS IN NNP RB NNP , IN VBG JJ NNS IN NNP . EU foreign ministers ended 30 hours of heated emergency meetings late Monday in Luxembourg with Austrian officials withdrawing Vienna 's demand that the EU retain the option of offering Turkey a limited partnership . NNP JJ NNS VBD CD NNS IN JJ NN NNS JJ NNP IN NNP IN JJ NNS VBG NNP POS NN IN DT NNP VBP DT NN IN VBG NNP DT JJ NN . Turkey had rejected the option . NNP VBD VBN DT NN . Austria 's cooperation paved the way for all 25 EU member-states to agree on a negotiating framework for the membership process , which is expected to take about 10 years . NNP POS NN VBD DT NN IN DT CD NNP NNS TO VB IN DT NN NN IN DT NN NN , WDT VBZ VBN TO VB RB CD NNS . A brief ceremony to officially open the talks took place shortly after midnight Tuesday in Luxembourg . DT JJ NN TO RB VB DT NNS VBD NN RB IN NN NNP IN NNP . Talks had been scheduled to open Monday . NNS VBD VBN VBN TO VB NNP . If accepted , Turkey would be the first country with a majority Muslim population to join the European Union . IN VBN , NNP MD VB DT JJ NN IN DT NN NN NN TO VB DT NNP NNP . It has been an associate member of the bloc since 1963 . PRP VBZ VBN DT JJ NN IN DT NN IN CD . Egyptian President Hosni Mubarak has called for both his supporters and opponents to work with him as he embarks on his fifth presidential term . JJ NNP NNP NNP VBZ VBN IN DT PRP$ NNS CC NNS TO VB IN PRP IN PRP VBZ IN PRP$ JJ JJ NN . He took the oath of office Tuesday before parliament and several foreign dignitaries , including Libyan leader Moammar Gadhafi . PRP VBD DT NN IN NN NNP IN NN CC JJ JJ NNS , VBG JJ NN NNP NNP . In a nationally televised speech , the 77-year-old leader pledged to continue a nascent program of political and economic reforms , and to improve the living standard of Egypt 's majority poor during his term , which runs through 2011 . IN DT RB VBN NN , DT JJ NN VBD TO VB DT JJ NN IN JJ CC JJ NNS , CC TO VB DT JJ NN IN NNP POS NN NN IN PRP$ NN , WDT VBZ IN CD . He also promised November 's legislative elections will be ' free and fair , ' after criticisms that September 's first multi-candidate presidential race was rife with voting irregularities . PRP RB VBD NNP POS JJ NNS MD VB `` JJ CC JJ , `` IN NNS IN NNP POS JJ JJ JJ NN VBD JJ IN VBG NNS . Mr. Mubarak beat nine challengers , winning more than 88 percent of the vote . NNP NNP VBD CD NNS , VBG JJR IN CD NN IN DT NN . Japan says it wants safety guarantees for its players and fans when its national soccer ( football ) team travels to North Korea for a World Cup qualifying match in June . NNP VBZ PRP VBZ NN NNS IN PRP$ NNS CC NNS WRB PRP$ JJ NN LRB NN RRB NN VBZ TO NNP NNP IN DT NNP NNP VBG NN IN NNP . Japan 's Chief Cabinet Secretary Hiroyuki Hosoda says it is a necessary precondition for any international match that players can play safely and spectators can be protected . NNP POS NNP NNP NNP NNP NNP VBZ PRP VBZ DT JJ NN IN DT JJ NN IN NNS MD VB RB CC NNS MD VB VBN . Japanese concerns were raised by scenes of mob violence at a match in Pyongyang between Iran and North Korea on Wednesday . JJ NNS VBD VBN IN NNS IN NN NN IN DT NN IN NNP IN NNP CC NNP NNP IN NNP . The game was televised and cameras showed the North Korean spectators throwing bottles , cans and seats at players and officials on the field . DT NN VBD VBN CC NNS VBD DT JJ JJ NNS VBG NNS , NNS CC NNS IN NNS CC NNS IN DT NN . Riot police had to clear a path for the victorious Iranian players to reach their team bus . NN NNS VBD TO VB DT NN IN DT JJ JJ NNS TO VB PRP$ NN NN . The violence at the game was a rare occurrence in the tightly controlled North Korean state . DT NN IN DT NN VBD DT JJ NN IN DT RB VBN JJ JJ NN . A published report says the United States has been flying drones over Iran for almost a year , looking for evidence of nuclear weapons programs and detect weaknesses in air defenses . DT JJ NN VBZ DT NNP NNPS VBZ VBN VBG NNS IN NNP IN RB DT NN , VBG IN NN IN JJ NNS NNS CC VB NNS IN NN NNS . In Sunday 's editions , The Washington Post quotes three U.S. officials as saying the U.S. military has been launching the unmanned surveillance flights from Iraq . IN NNP POS NNS , DT NNP NNP VBZ CD NNP NNS IN VBG DT NNP NN VBZ VBN VBG DT JJ NN NNS IN NNP . There has been no U.S. comment on the report . EX VBZ VBN DT NNP NN IN DT NN . An Iranian spokesman Sunday again warned the United States not to attack its nuclear facilities . DT JJ NN NNP RB VBD DT NNP NNPS RB TO VB PRP$ JJ NNS . He also rejected a European proposal aimed at restricting Tehran 's development of nuclear fuel . PRP RB VBD DT JJ NN VBN IN VBG NNP POS NN IN JJ NN . Iran has said in the past it would stop plans to build a heavy water nuclear reactor , which can be used to make nuclear weapons-grade material as well as for nuclear energy . NNP VBZ VBN IN DT NN PRP MD VB NNS TO VB DT JJ NN JJ NN , WDT MD VB VBN TO VB JJ JJ NN RB RB IN IN JJ NN . But Sunday in Tehran , a foreign ministry spokesman said Iran will go forward with the heavy water reactor and will not replace it under any circumstances . CC NNP IN NNP , DT JJ NN NN VBD NNP MD VB RB IN DT JJ NN NN CC MD RB VB PRP IN DT NNS . North Korea says its Catholic community has organized religious services in memory of Pope John Paul . NNP NNP VBZ PRP$ JJ NN VBZ VBN JJ NNS IN NN IN NNP NNP NNP . The official news agency , KCNA , on Tuesday quotes Samuel Jang Jae On , described as head of the country 's Catholic association , as saying North Korean Catholics are deeply saddened by the pontiff 's passing . DT JJ NN NN , NNP , IN NNP VBZ NNP NNP NNP NNP , VBD IN NN IN DT NN POS JJ NN , IN VBG JJ JJ NNS VBP RB VBN IN DT NN POS NN . The agency says Mr. Jang sent the Vatican a message of condolence . DT NN VBZ NNP NNP VBD DT NNP DT NN IN NN . North Korea is widely described as one of the world 's most repressive political regimes . NNP NNP VBZ RB VBN IN CD IN DT NN POS RBS JJ JJ NNS . It is not clear how many Catholics live in the Communist nation and to what extent they can practice their religion . PRP VBZ RB JJ WRB JJ NNPS VBP IN DT JJ NN CC TO WP NN PRP MD VB PRP$ NN . Thousands of protesters have demonstrated outside a Philippine army camp , where U.S. soldiers and Philippine troops have begun joint military exercises . NNS IN NNS VBP VBN IN DT JJ NN NN , WRB NNP NNS CC JJ NNS VBP VBN JJ JJ NNS . Demonstrators in the town of Carmen on the southern island of Mindanao chanted anti-U.S. slogans Tuesday and demanded that American troops leave the area . NNS IN DT NN IN NNP IN DT JJ NN IN NNP VBD JJ NNS NNP CC VBD IN JJ NNS VBP DT NN . U.S. soldiers will also take part in the Philippines ' annual war games , to be held next month on Jolo island in the southern Philippines . NNP NNS MD RB VB NN IN DT NNPS POS JJ NN NNS , TO VB VBN JJ NN IN NNP NN IN DT JJ NNP . Jolo is where the al-Qaida-linked militant group Abu Sayyaf has carried out bombings , kidnappings and killings of foreigners in recent years . NNP VBZ WRB DT JJ JJ NN NNP NNP VBZ VBN RP NNS , NNS CC NNS IN NNS IN JJ NNS . Philippine law prohibits American troops from joining any combat operations with Philippine forces . JJ NN VBZ JJ NNS IN VBG DT NN NNS IN JJ NNS . Security for the war games will be tight , to protect the soldiers from attacks by rebels . NN IN DT NN NNS MD VB JJ , TO VB DT NNS IN NNS IN NNS . In addition to military training , troops will carry out humanitarian missions to try to boost support among Jolo 's residents . IN NN TO JJ NN , NNS MD VB RP JJ NNS TO VB TO VB NN IN NNP POS NNS . The U.N. World Food Program is giving emergency assistance to the Cuban government . DT NNP NNP NNP NNP VBZ VBG NN NN TO DT JJ NN . The WFP announced Tuesday that it will help feed about two million people at a cost of nearly $ 6 million . DT NNP VBD NNP IN PRP MD VB VB IN CD CD NNS IN DT NN IN RB $ CD CD . The aid package is intended to help Cuba recover from last month 's devastation from Hurricanes Gustav and Ike . DT NN NN VBZ VBN TO VB NNP VB IN JJ NN POS NN IN NNP NNP CC NNP . During the next six months , WFP will provide food rations , including rice , beans , vegetable oil , canned fish and more . IN DT JJ CD NNS , NNP MD VB NN NNS , VBG NN , NNS , JJ NN , VBN NN CC JJR . The WFP will also supply temporary food storage warehouses and liquid gas stoves to people who lost their cooking facilities in the storms . DT NNP MD RB VB JJ NN NN NNS CC JJ NN NNS TO NNS WP VBD PRP$ NN NNS IN DT NNS . Sweden 's Nobel Foundation begins announcing winners of the annual Nobel Prize awards on Monday in Oslo , Norway . NNP POS NNP NNP VBZ VBG NNS IN DT JJ NNP NNP NNS IN NNP IN NNP , NNP . Prizes for medicine , physics , chemistry and literature will be announced before the prestigious Peace Prize is revealed Friday . NNS IN NN , NNS , NN CC NN MD VB VBN IN DT JJ NNP NNP VBZ VBN NNP . A separate prize for economics will be announced October 10 . DT JJ NN IN NNS MD VB VBN NNP CD . It was instituted in 1968 by the Bank of Sweden in memory of the founder of the Nobel Prize , Swedish philanthropist Alfred Nobel . PRP VBD VBN IN CD IN DT NNP IN NNP IN NN IN DT NN IN DT NNP NNP , JJ NN NNP NNP . Winners receive their awards , including a check worth $ 1.3 million , at a banquet on December 10 . NNS VBP PRP$ NNS , VBG DT NN JJ $ CD CD , IN DT NN IN NNP CD . That is the anniversary of Mr. Nobel 's death in 1896 . DT VBZ DT NN IN NNP NNP POS NN IN CD . According to his will , a five-member committee elected by the Norwegian parliament chooses the Peace Prize laureate , while Swedish scientific and literary groups choose the other winners . VBG TO PRP$ NN , DT JJ NN VBN IN DT JJ NN VBZ DT NNP NNP NN , IN JJ JJ CC JJ NNS VBP DT JJ NNS . The first Nobel Prizes were given in 1901 . DT JJ NNP NNPS VBD VBN IN CD . Insurgents in Iraq fired a barrage of mortar rounds into central Baghdad NNS IN NNP VBD DT NN IN NN NNS IN JJ NNP Thursday , killing at least one person and wounding several others . NNP , VBG IN JJS CD NN CC VBG JJ NNS . Police say some of the mortars landed in the Green Zone -- the heavily fortified enclave that houses Iraqi government offices and several foreign embassies . NNS VBP DT IN DT NNS VBD IN DT NNP NNP IN DT RB VBN NN WDT VBZ JJ NN NNS CC JJ JJ NNS . Last week , a mortar attack on the Green Zone killed four employees of a British security company . JJ NN , DT NN NN IN DT NNP NNP VBD CD NNS IN DT JJ NN NN . Meanwhile , the U.S. military is planning to temporarily increase the number of American troops in Iraq to bolster security ahead of Iraq 's January election . RB , DT NNP NN VBZ VBG TO RB VB DT NN IN JJ NNS IN NNP TO VB NN RB IN NNP POS NNP NN . The Defense Department said Wednesday the size of U.S. forces in Iraq will increase to 1,50,000 from its current level of 1,38,000 . DT NNP NNP VBD NNP DT NN IN NNP NNS IN NNP MD VB TO CD IN PRP$ JJ NN IN CD . Iraq 's interim government has rejected calls from some Sunni parties to postpone the vote because of security concerns . NNP POS JJ NN VBZ VBN NNS IN DT NNP NNS TO VB DT NN IN IN NN NNS . Brazilian lawmakers have approved legislation that will give the government more control over developing offshore oil fields . JJ NNS VBP VBN NN WDT MD VB DT NN JJR NN IN VBG JJ NN NNS . The lower house of the Brazilian congress passed the bill Wednesday , sending it to outgoing President Luiz Inacio Lula da Silva for his signature . DT JJR NN IN DT JJ NN VBD DT NN NNP , VBG PRP TO VBG NNP NNP NNP NNP NNP NNP IN PRP$ NN . The measure allows the state-owned oil company , known as Petrobras , to be the sole operator of unexplored offshore oil fields , as well as a 30 percent stake in any joint ventures . DT NN VBZ DT JJ NN NN , VBN IN NNP , TO VB DT JJ NN IN JJ JJ NN NNS , RB RB IN DT CD NN NN IN DT JJ NNS . Brazil has discovered potentially large oil reserves off the country 's southeastern coast , some of them thousands of meters below the sea floor . NNP VBZ VBN RB JJ NN NNS IN DT NN POS JJ NN , DT IN PRP NNS IN NNS IN DT NN NN . Some estimates say the fields may contain more than 50 billion barrels of oil . DT NNS VBP DT NNS MD VB JJR IN CD CD NNS IN NN . Brazilian lawmakers also approved a provision that will allow non-oil producing states to receive more oil revenues . JJ NNS RB VBD DT NN WDT MD VB JJ VBG NNS TO VB JJR NN NNS . A new U.S. opinion survey shows eight out of 10 Americans believe the country is going in the wrong direction . DT JJ NNP NN NN VBZ CD IN IN CD NNS VBP DT NN VBZ VBG IN DT JJ NN . The Washington Post-ABC News poll also indicates Democrats hold a 21 percentage point advantage over Republicans as the party better equipped to handle the country 's problems . DT NNP NNP NNP NN RB VBZ NNPS VBP DT CD NN NN NN IN NNPS IN DT NN RB VBN TO VB DT NN POS NNS . In a hypothetical general election match-up , Democratic Party candidate Senator Barack Obama leads presumed Republican nominee John McCain by 51-to-44 percent . IN DT JJ JJ NN NN , JJ NNP NN NNP NNP NNP VBZ JJ JJ NN NNP NNP IN CD NN . As the Democratic Party nears the end of its presidential primaries , the national poll shows Obama has a 12-point advantage over Senator Hillary Clinton as the party 's choice for its nomination . IN DT NNP NNP VBZ DT NN IN PRP$ JJ NNS , DT JJ NN VBZ NNP VBZ DT JJ NN IN NNP NNP NNP IN DT NN POS NN IN PRP$ NN . The poll says Americans cite the economy and employment as their top voting issue , followed by the Iraq war , healthcare and fuel prices . DT NN VBZ NNS VBP DT NN CC NN IN PRP$ JJ NN NN , VBN IN DT NNP NN , NN CC NN NNS . The poll of more than 1,100 adults , conducted from May 8 - 11 , has a margin of error of plus or minus three percentage points . DT NN IN JJR IN CD NNS , VBN IN NNP CD IN CD , VBZ DT NN IN NN IN JJ CC JJ CD NN NNS . Cuban President Raul Castro is visiting Venezuela on his first international trip as leader of the communist nation . JJ NNP NNP NNP VBZ VBG NNP IN PRP$ JJ JJ NN IN NN IN DT JJ NN . Venezuela 's socialist president , Hugo Chavez , welcomed Mr. Castro Saturday at the Caracas airport . NNP POS JJ NN , NNP NNP , VBD NNP NNP NNP IN DT NNP NN . This is President Castro 's first official foreign trip since February , when the 77-year-old took charge from his ailing older brother , Fidel Castro . DT VBZ NNP NNP POS JJ JJ JJ NN IN NNP , WRB DT JJ VBD NN IN PRP$ VBG JJR NN , NNP NNP . The two leaders will visit the tomb of South American independence icon Simon Bolivar today and later hold talks on a variety of issues . DT CD NNS MD VB DT NN IN JJ JJ NN NN NNP NNP NN CC RB VB NNS IN DT NN IN NNS . Venezuela and Cuba have increased cooperation on energy and oil production . NNP CC NNP VBP VBN NN IN NN CC NN NN . Venezuela is a critical trade partner for the Caribbean island nation , which imports nearly 1,00,000 barrels of oil per day from Venezuela . NNP VBZ DT JJ NN NN IN DT JJ NN NN , WDT VBZ RB CD NNS IN NN IN NN IN NNP . Today 's visit comes ahead of a summit in Brazil next week , where Latin American and Caribbean leaders will gather for talks . NN POS NN VBZ RB IN DT NN IN NNP JJ NN , WRB JJ JJ CC JJ NNS MD VB IN NNS . The nuclear cooperation pact between India and the United States has sparked a mixed reaction in Washington and abroad . DT JJ NN NN IN NNP CC DT NNP NNPS VBZ VBN DT JJ NN IN NNP CC RB . International Atomic Energy Agency Director General Mohamed ElBaradei praised the agreement , saying it would bring India closer as an important partner in the non-proliferation group of countries . NNP NNP NNP NNP NNP NNP NNP NNP VBD DT NN , VBG PRP MD VB NNP RBR IN DT JJ NN IN DT JJ NN IN NNS . But some U.S. lawmakers criticized the deal , saying the agreement that could give India access to U.S. civilian nuclear technology would undermine the Nuclear Non-Proliferation Treaty . CC DT NNP NNS VBD DT NN , VBG DT NN WDT MD VB NNP NN TO NNP JJ JJ NN MD VB DT NNP NNP NNP . India has not signed the treaty , which restricts the sharing of some nuclear technology with non-member nations , and drew widespread international criticism for conducting nuclear weapons tests as recently as 1998 . NNP VBZ RB VBN DT NN , WDT VBZ DT NN IN DT JJ NN IN JJ NNS , CC VBD JJ JJ NN IN VBG JJ NNS NNS RB RB IN CD . Full details of the nuclear cooperation pact have not been released , but the agreement must still be approved by Congress before taking effect . NNP NNS IN DT JJ NN NN VBP RB VBN VBN , CC DT NN MD RB VB VBN IN NNP IN VBG NN . President Bush acknowledged Thursday that hard work still needs to be done to gain the necessary approval in Congress . NNP NNP VBD NNP IN JJ NN RB VBZ TO VB VBN TO VB DT JJ NN IN NNP . A Sudanese analyst says the late rebel leader John Garang was a symbol of the struggle for greater federalism in the country . DT JJ NN VBZ DT JJ NN NN NNP NNP VBD DT NN IN DT NN IN JJR NN IN DT NN . Lecturer John Gai Yoh of the University of South Africa ( UNISA ) in Pretoria credits the leader of the Sudanese Liberation Movement with creating a campaign that included allies beyond his base in the south . NN NNP NNP NNP IN DT NNP IN NNP NNP LRB NNP RRB IN NNP VBZ DT NN IN DT JJ NNP NNP IN VBG DT NN WDT VBD NNS IN PRP$ NN IN DT NN . Mr. Yoh notes that his vision materialized with the comprehensive peace agreement signed last January between the former SPLA rebels and the government in Khartoum . NNP NNP VBZ IN PRP$ NN VBD IN DT JJ NN NN VBN JJ NNP IN DT JJ NNP NNS CC DT NN IN NNP . Analyst John Gai Yoh predicts that the SPLA will continue to democratize : it has created a new SPLA parliament for the south and has named a new five-man military panel to lead the movement . NN NNP NNP NNP VBZ IN DT NNP MD VB TO VB IN PRP VBZ VBN DT JJ NNP NN IN DT NN CC VBZ VBN DT JJ JJ JJ NN TO VB DT NN . The United Nations has given its annual Franklin Delano Roosevelt International Disability Award to Poland , recognizing the country 's efforts to integrate the disabled into Polish society . DT NNP NNP VBZ VBN PRP$ JJ NNP NNP NNP NNP NNP NNP TO NNP , VBG DT NN POS NNS TO VB DT NN IN JJ NN . President Lech Kaczynski accepted the award at a ceremony Monday at U.N. headquarters in New York . NNP NNP NNP VBD DT NN IN DT NN NNP IN NNP NN IN NNP NNP . He said his country 's struggle for freedom includes a commitment to the rights of those with disabilities . PRP VBD PRP$ NN POS NN IN NN VBZ DT NN TO DT NNS IN DT IN NNS . He said their rights are guaranteed by the Polish constitution . PRP VBD PRP$ NNS VBP VBN IN DT JJ NN . Mr. Kaczynski promised that Poland will adopt a new U.N. convention to protect the disabled . NNP NNP VBD IN NNP MD VB DT JJ NNP NN TO VB DT NN . The award is named for U.S. President Franklin Roosevelt , whose legs were paralyzed from polio . DT NN VBZ VBN IN NNP NNP NNP NNP , WP$ NNS VBD VBN IN NN . Mr. Roosevelt was president from 1933 until 1945 . NNP NNP VBD NN IN CD IN CD . An Ethiopian government spokesman denies that a reported rebel attack said to have killed 140 soldiers ever took place . DT JJ NN NN VBZ IN DT VBN NN NN VBN TO VB VBN CD NNS RB VBD NN . The spokesman , Zemedkun Tekle , issued the denial Sunday after media reports said the Ogaden National Liberation Front had claimed to have carried out the deadly attack Saturday in southeastern Ethiopia near Wardheer . DT NN , NNP NNP , VBD DT JJ NNP IN NNS NNS VBD DT NNP NNP NNP NNP VBD VBN TO VB VBN RP DT JJ NN NNP IN JJ NNP IN NNP . A purported statement from the group received by some news organizations said about a thousand rebels took part in the attack and seized ammunition along with military hardware . DT JJ NN IN DT NN VBN IN DT NN NNS VBD IN DT CD NNS VBD NN IN DT NN CC VBD NN IN IN JJ NN . The government spokesman says there was no attack , and that the rebel group is not in a position to carry out such an attack . DT NN NN VBZ EX VBD DT NN , CC IN DT NN NN VBZ RB IN DT NN TO VB RP JJ DT NN . Rebels have been fighting for more autonomy for ethnic Somalis in the eastern region of Ogaden bordering Somalia . NNS VBP VBN VBG IN JJR NN IN JJ NNS IN DT JJ NN IN NNP VBG NNP . Kuwaiti television reports the kidnappers in Iraq of American journalist Jill Carroll are threatening to kill her if their demands are not met by February 26 . JJ NN VBZ DT NNS IN NNP IN JJ NN NNP NNP VBP VBG TO VB PRP IN PRP$ NNS VBP RB VBN IN NNP CD . Al-Rai television Friday quoted sources close to the kidnappers as saying the abductors have set the deadline . NNP NN NNP VBD NNS RB TO DT NNS IN VBG DT NNS VBP VBN DT NN . The militants holding Carroll previously had demanded that all Iraqi women prisoners be freed . DT NNS VBG NNP RB VBD VBN IN DT JJ NNS NNS VB VBN . Earlier Friday , at least eight people died and more than 20 were wounded in a Baghdad car bombing near a Sunni Muslim mosque . RBR NNP , IN JJS CD NNS VBD CC JJR IN CD VBD VBN IN DT NNP NN VBG IN DT NNP NNP NN . Officials in Iraq also certified results of the December 15 elections , confirming the near majority of parliament seats won by Shi'ite religious parties . NNS IN NNP RB VBD NNS IN DT NNP CD NNS , VBG DT JJ NN IN NN NNS VBN IN NNP JJ NNS . According to the results , the dominant Shi'ite coalition , the United Iraqi Alliance , won 128 seats in the 275-member parliament . VBG TO DT NNS , DT JJ NNP NN , DT NNP JJ NNP , VBD CD NNS IN DT JJ NN . Palestinian security officials say masked Palestinian police briefly stormed a government building in the Gaza Strip in anger over not receiving their salaries from the Hamas-led government . JJ NN NNS VBP VBN JJ NN RB VBD DT NN NN IN DT NNP NNP IN NN IN RB VBG PRP$ NNS IN DT JJ NN . Security officials say about 50 police officers sealed off the main road Saturday in the central Gaza town of Khan Younis . NN NNS VBP IN CD NN NNS VBD RP DT JJ NN NNP IN DT JJ NNP NN IN NNP NNP . They say the masked police surrounded a municipal government building , taking positions on the roof and firing in the air . PRP VBP DT VBN NN VBD DT JJ NN NN , VBG NNS IN DT NN CC NN IN DT NN . The protest is seen as a sign of discontent with the new Hamas-led government , which took office late last month . DT NN VBZ VBN IN DT NN IN NN IN DT JJ JJ NN , WDT VBD NN RB JJ NN . The cash-strapped Palestinian Authority has not been able to pay salaries to some 1,40,000 government employees since March . DT JJ JJ NNP VBZ RB VBN JJ TO VB NNS TO DT CD NN NNS IN NNP . Western nations have cut off aid to the Palestinian government , demanding that Hamas renounce violence and recognize Israel . JJ NNS VBP VBN RP NN TO DT JJ NN , VBG IN NNP VB NN CC VB NNP . The White House said President Bush has approved duty-free treatment for imports of certain types of watches that are n't produced in ' significant quantities ' in the U.S. , the Virgin Islands and other U.S. possessions . DT NNP NNP VBD NNP NNP VBZ VBN JJ NN IN NNS IN JJ NNS IN NNS WDT VBP RB VBN IN `` JJ NNS `` IN DT NNP , DT NNP NNP CC JJ NNP NNS . The action came in response to a petition filed by Timex Inc. for changes in the U.S. Generalized System of Preferences for imports from developing nations . DT NN VBD IN NN TO DT NN VBN IN NNP NNP IN NNS IN DT NNP NNP NNP IN NNPS IN NNS IN VBG NNS . Previously , watch imports were denied such duty-free treatment . RB , NN NNS VBD VBN JJ JJ NN . Timex had requested duty-free treatment for many types of watches , covered by 58 different U.S. tariff classifications . NNP VBD VBN JJ NN IN JJ NNS IN NNS , VBN IN CD JJ NNP NN NNS . The White House said Mr. Bush decided to grant duty-free status for 18 categories , but turned down such treatment for other types of watches ' because of the potential for material injury to watch producers located in the U.S. and the Virgin Islands . ' DT NNP NNP VBD NNP NNP VBD TO VB JJ NN IN CD NNS , CC VBD RB JJ NN IN JJ NNS IN NNS `` IN IN DT NN IN NN NN TO VB NNS VBN IN DT NNP CC DT NNP NNP . `` Timex is a major U.S. producer and seller of watches , including low-priced battery-operated watches assembled in the Philippines and other developing nations covered by the U.S. tariff preferences . NNP VBZ DT JJ NNP NN CC NN IN NNS , VBG JJ JJ NNS VBN IN DT NNPS CC JJ NN NNS VBN IN DT NNP NN NNS . U.S. trade officials said the Philippines and Thailand would be the main beneficiaries of the president 's action . NNP NN NNS VBD DT NNPS CC NNP MD VB DT JJ NNS IN DT NN POS NN . Imports of the types of watches that now will be eligible for duty-free treatment totaled about $ 37.3 million in 1988 , a relatively small share of the $ 1.5 billion in U.S. watch imports that year , according to an aide to U.S. Trade Representative Carla Hills . NNS IN DT NNS IN NNS WDT RB MD VB JJ IN JJ NN VBD IN $ CD CD IN CD , DT RB JJ NN IN DT $ CD CD IN NNP VB NNS WDT NN , VBG TO DT NN TO NNP NNP NNP NNP NNP . Although known to Arab and Malay sailors as early as the 10th century , Mauritius was first explored by the Portuguese in the 16th century and subsequently settled by the Dutch - who named it in honor of Prince Maurits van NASSAU - in the 17th century . IN VBN TO JJ CC JJ NNS RB RB IN DT JJ NN , NNP VBD JJ VBN IN DT NNS IN DT JJ NN CC RB VBN IN DT NNS : WP VBD PRP IN NN IN NNP NNP NNP NNP : IN DT JJ NN . The French assumed control in 1715 , developing the island into an important naval base overseeing Indian Ocean trade , and establishing a plantation economy of sugar cane . DT NNS VBD NN IN CD , VBG DT NN IN DT JJ JJ NN VBG NNP NNP NN , CC VBG DT NN NN IN NN NN . The British captured the island in 1810 , during the Napoleonic Wars . DT NNS VBD DT NN IN CD , IN DT NNP NNP . Mauritius remained a strategically important British naval base , and later an air station , playing an important role during World War II for anti-submarine and convoy operations , as well as the collection of signals intelligence . NNP VBD DT RB JJ JJ JJ NN , CC RB DT NN NN , VBG DT JJ NN IN NNP NNP NNP IN JJ CC JJ NNS , RB RB IN DT NN IN NNS NN . Independence from the UK was attained in 1968 . NN IN DT NNP VBD VBN IN CD . A stable democracy with regular free elections and a positive human rights record , the country has attracted considerable foreign investment and has earned one of Africa 's highest per capita incomes . DT JJ NN IN JJ JJ NNS CC DT JJ JJ NNS NN , DT NN VBZ VBN JJ JJ NN CC VBZ VBN CD IN NNP POS JJS IN NN NNS . Recent poor weather , declining sugar prices , and declining textile and apparel production , have slowed economic growth , leading to some protests over standards of living in the Creole community . JJ JJ NN , VBG NN NNS , CC VBG NN CC NN NN , VBP VBN JJ NN , VBG TO DT NNS IN NNS IN VBG IN DT NNP NN . Morocco 's market economy benefits from the country 's relatively low labor costs and proximity to Europe , which aid key areas of the economy such as agriculture , light manufacturing , tourism , and remittances . NNP POS NN NN VBZ IN DT NN POS RB JJ NN NNS CC NN TO NNP , WDT VBP NN NNS IN DT NN JJ IN NN , JJ NN , NN , CC NNS . Morocco is also the world 's largest exporter of phosphate , which has long provided a source of export earnings and economic stability . NNP VBZ RB DT NN POS JJS NN IN NN , WDT VBZ RB VBN DT NN IN NN NNS CC JJ NN . Economic policies pursued since 2003 by King MOHAMMED VI have brought macroeconomic stability to the country with generally low inflation , improved financial performance , and steady progress in developing the service and industrial sectors . JJ NNS VBN IN CD IN NNP NNP NNP VBP VBN JJ NN TO DT NN IN RB JJ NN , VBD JJ NN , CC JJ NN IN VBG DT NN CC JJ NNS . In 2006 , Morocco entered a Free Trade Agreement ( FTA ) with the US , and in 2008 entered into an advanced status in its 2000 Association Agreement with the EU . IN CD , NNP VBD DT NNP NNP NNP LRB NNP RRB IN DT NNP , CC IN CD VBD IN DT JJ NN IN PRP$ CD NNP NN IN DT NNP . However , poverty , illiteracy , and unemployment rates remain high . RB , NN , NN , CC NN NNS VBP JJ . In response to these challenges , King MOHAMMED in 2005 launched a National Initiative for Human Development , a $ 2 billion program aimed at alleviating poverty and underdevelopment by expanding electricity to rural areas and replacing urban slums with public and subsidized housing , among other policies . IN NN TO DT NNS , NNP NNP IN CD VBD DT NNP NNP IN NNP NNP , DT $ CD CD NN VBN IN VBG NN CC NN IN VBG NN TO JJ NNS CC VBG JJ NNS IN JJ CC JJ NN , IN JJ NNS . Morocco 's trade and budget deficits widened in 2010 , and reducing government spending and adapting to sluggish economic growth in Europe will be challenges in 2011 . NNP POS NN CC NN NNS VBD IN CD , CC VBG NN NN CC VBG TO JJ JJ NN IN NNP MD VB NNS IN CD . Morocco 's long-term challenges include improving education and job prospects for young Moroccans , closing the disparity in wealth between the rich and the poor , confronting corruption , and expanding and diversifying exports beyond phosphates and low-value-added products . NNP POS JJ NNS VBP VBG NN CC NN NNS IN JJ NNS , VBG DT NN IN NN IN DT JJ CC DT NN , VBG NN , CC VBG CC VBG NNS IN NNS CC JJ NNS . Albania , a formerly closed , centrally-planned state , is making the difficult transition to a more modern open-market economy . NNP , DT RB JJ , JJ NN , VBZ VBG DT JJ NN TO DT RBR JJ JJ NN . Macroeconomic growth averaged around 6 % between 2004 - 8 , but declined to about 3 % in 2009 - 10 . JJ NN VBD IN CD NN IN CD : CD , CC VBD TO IN CD NN IN CD IN CD . Inflation is low and stable . NN VBZ JJ CC JJ . The government has taken measures to curb violent crime , and recently adopted a fiscal reform package aimed at reducing the large gray economy and attracting foreign investment . DT NN VBZ VBN NNS TO VB JJ NN , CC RB VBD DT JJ NN NN VBN IN VBG DT JJ JJ NN CC VBG JJ NN . Remittances , a significant catalyst for economic growth have declined from Dec-15 % of GDP to 9 % of GDP in 2009 , mostly from Albanians residing in Greece and Italy ; this helps offset the towering trade deficit . NNS , DT JJ NN IN JJ NN VBP VBN IN CD NN IN NN TO CD NN IN NN IN CD , RB IN NNS VBG IN NNP CC NNP ; DT VBZ VB DT VBG NN NN . The agricultural sector , which accounts for almost half of employment but only about one-fifth of GDP , is limited primarily to small family operations and subsistence farming because of lack of modern equipment , unclear property rights , and the prevalence of small , inefficient plots of land . DT JJ NN , WDT VBZ IN RB NN IN NN CC RB IN NN IN NN , VBZ VBN RB TO JJ NN NNS CC NN NN IN IN NN IN JJ NN , JJ NN NNS , CC DT NN IN JJ , JJ NNS IN NN . Energy shortages because of a reliance on hydropower , and antiquated and inadequate infrastructure contribute to Albania 's poor business environment and lack of success in attracting new foreign investment needed to expand the country 's export base . NN NNS IN IN DT NN IN NN , CC JJ CC JJ NN VBP TO NNP POS JJ NN NN CC NN IN NN IN VBG JJ JJ NN VBN TO VB DT NN POS NN NN . FDI is among the lowest in the region , but the government has embarked on an ambitious program to improve the business climate through fiscal and legislative reforms . NNP VBZ IN DT JJS IN DT NN , CC DT NN VBZ VBN IN DT JJ NN TO VB DT NN NN IN JJ CC JJ NNS . The completion of a new thermal power plant near Vlore has helped diversify generation capacity , and plans to upgrade transmission lines between Albania and Montenegro and Kosovo would help relieve the energy shortages . DT NN IN DT JJ JJ NN NN IN NNP VBZ VBN VB NN NN , CC VBZ TO VB NN NNS IN NNP CC NNP CC NNP MD VB VB DT NN NNS . Also , with help from EU funds , the government is taking steps to improve the poor national road and rail network , a long-standing barrier to sustained economic growth . RB , IN NN IN NNP NNS , DT NN VBZ VBG NNS TO VB DT JJ JJ NN CC NN NN , DT JJ NN TO JJ JJ NN . Economic activity consists primarily of subsistence farming and fishing . JJ NN VBZ RB IN NN NN CC NN . The islands have few mineral deposits worth exploiting , except for high-grade phosphate . DT NNS VBP JJ NN NNS JJ VBG , IN IN JJ NN . The potential for a tourist industry exists , but the remote location , a lack of adequate facilities , and limited air connections hinder development . DT NN IN DT NN NN VBZ , CC DT JJ NN , DT NN IN JJ NNS , CC JJ NN NNS VB NN . Under the original terms of the Compact of Free Association , the US provided $ 1.3 billion in grant aid during the period 1986 - 2001 ; the level of aid has been subsequently reduced . IN DT JJ NNS IN DT NN IN NNP NNP , DT NNP VBD $ CD CD IN NN NN IN DT NN CD IN CD ; DT NN IN NN VBZ VBN RB VBN . The Amended Compact of Free Association with the US guarantees the Federated States of Micronesia ( FSM ) millions of dollars in annual aid through 2023 , and establishes a Trust Fund into which the US and the FSM make annual contributions in order to provide annual payouts to the FSM in perpetuity after 2023 . DT JJ NN IN NNP NNP IN DT NNP VBZ DT NNP NNPS IN NNP LRB NNP RRB NNS IN NNS IN JJ NN IN CD , CC VBZ DT NNP NNP IN WDT DT NNP CC DT NNP VBP JJ NNS IN NN TO VB JJ NNS TO DT NNP IN NN IN CD . The country 's medium-term economic outlook appears fragile due not only to the reduction in US assistance but also to the current slow growth of the private sector . DT NN POS JJ JJ NN VBZ JJ JJ RB RB TO DT NN IN NNP NN CC RB TO DT JJ JJ NN IN DT JJ NN . The discovery and exploitation of large oil and gas reserves have contributed to dramatic economic growth but fluctuating oil prices have produced huge swings in GDP growth in recent years . DT NN CC NN IN JJ NN CC NN NNS VBP VBN TO JJ JJ NN CC JJ NN NNS VBP VBN JJ NNS IN NN NN IN JJ NNS . Forestry and farming are also minor components of GDP . NN CC NN VBP RB JJ NNS IN NN . Subsistence farming is the dominate form of livelihood . NNP NN VBZ DT JJ NN IN NN . Although pre-independence Equatorial Guinea counted on cocoa production for hard currency earnings , the neglect of the rural economy under successive regimes has diminished potential for agriculture-led growth ( the government has stated its intention to reinvest some oil revenue into agriculture ) . IN JJ NNP NNP VBD IN NN NN IN JJ NN NNS , DT NN IN DT JJ NN IN JJ NNS VBZ VBN JJ IN JJ NN LRB DT NN VBZ VBN PRP$ NN TO VB DT NN NN IN NN RRB . A number of aid programs sponsored by the World Bank and the IMF have been cut off since 1993 because of corruption and mismanagement . DT NN IN NN NNS VBN IN DT NNP NNP CC DT NNP VBP VBN VBN RP IN CD IN IN NN CC NN . The government has been widely criticized for its lack of transparency and misuse of oil revenues ; however , in 2010 , under Equatorial Guinea 's candidacy in the Extractive Industries Transparency Initiative , the government published oil revenue figures for the first time . DT NN VBZ VBN RB VBN IN PRP$ NN IN NN CC NN IN NN NNS ; RB , IN CD , IN NNP NNP POS NN IN DT NNP NNP NNP NNP , DT NN VBN NN NN NNS IN DT JJ NN . Undeveloped natural resources include gold , zinc , diamonds , columbite-tantalite , and other base metals . JJ JJ NNS VBP NN , NN , NNS , JJ , CC JJ JJ NNS . Growth remained strong in 2008 , when oil production peaked , but slowed in 2009 - 10 , as the price of oil and the production level fell . NN VBD JJ IN CD , WRB NN NN VBD , CC VBD IN CD IN CD , IN DT NN IN NN CC DT NN NN VBD . A BOSS who had gone to Canada was taunted by a Citizen of Montreal with having fled to avoid prosecution . DT NN WP VBD VBN TO NNP VBD VBN IN DT NN IN NNP IN VBG VBN TO VB NN . ' You do me a grave injustice , ' said the Boss , parting with a pair of tears . `` PRP VBP PRP DT JJ NN , `` VBD DT NN , VBG IN DT NN IN NNS . ' I came to Canada solely because of its political attractions ; its Government is the most corrupt in the world . ' `` PRP VBD TO NNP RB IN IN PRP$ JJ NNS ; PRP$ NN VBZ DT RBS JJ IN DT NN . `` ' Pray forgive me , ' said the Citizen of Montreal . `` VBP VB PRP , `` VBD DT NN IN NNP . They fell upon each other 's neck , and at the conclusion of that touching rite the Boss had two watches . PRP VBD IN DT NN POS NN , CC IN DT NN IN DT JJ NN DT NNP VBD CD NNS . There are less than three months until the election , an election that will decide the next President of the United States . EX VBP JJR IN CD NNS IN DT NN , DT NN WDT MD VB DT JJ NNP IN DT NNP NNPS . The man elected will be the president of all Americans , not just the Democrats or the Republicans . DT NN VBN MD VB DT NN IN DT NNS , RB RB DT NNPS CC DT NNPS . To show our solidarity as Americans , let 's all get together and show each other our support for the candidate of our choice . TO VB PRP$ NN IN NNS , VB PRP DT VBP RB CC VB DT JJ PRP$ NN IN DT NN IN PRP$ NN . It 's time that we all came together , Democrats and Republicans alike . PRP VBZ NN IN PRP DT VBD RB , NNPS CC NNPS RB . If you support the policies and character of President George W. Bush , please drive with your headlights on during the day . IN PRP VBP DT NNS CC NN IN NNP NNP NNP NNP , VBP NN IN PRP$ NNS IN IN DT NN . If you support John Kerry , please drive with your headlights off at night . IN PRP VBP NNP NNP , RB VB IN PRP$ NNS RP IN NN . A topologist is a person who does n't know the difference between a coffee cup and a doughnut . DT NN VBZ DT NN WP VBZ RB VB DT NN IN DT NN NN CC DT NN . Lawyers get a lot of unjust criticism . NNS VBP DT NN IN JJ NN . I would remind you that it is not right to condemn a whole profession just because of 3,50,000 bad apples . PRP MD VB PRP IN PRP VBZ RB JJ TO VB DT JJ NN RB IN IN CD JJ NNS . I was very lonely when I was a child . PRP VBD RB JJ WRB PRP VBD DT NN . I only had two imaginary friends ... PRP RB VBD CD JJ NNS : And they would only play with each other . CC PRP MD RB VB IN DT NN . The Russian and European space agencies have announced a deal to build a manned spacecraft for near-earth orbits and trips to the moon . DT JJ CC JJ NN NNS VBP VBN DT NN TO VB DT JJ NN IN JJ NNS CC NNS TO DT NN . Russian news agency reports quote a spokesman for the Russian agency Roskosmos as saying engineers want to test a 20-ton capsule by 2015 . JJ NN NN NNS VBP DT NN IN DT JJ NN NNP IN VBG NNS VBP TO VB DT JJ NN IN CD . A first launch is planned for 2018 at a launch center in Siberia . DT JJ NN VBZ VBN IN CD IN DT NN NN IN NNP . Under the pact , Russia will build the capsule , while European engineers build the service module and the engine block . IN DT NN , NNP MD VB DT NN , IN JJ NNS VBP DT NN NN CC DT NN NN . The new craft is to be phased in as the replacement for Russia 's Soyuz spacecraft , which has come under increased scrutiny this year , after two consecutive rough landings on return from the International Space Station . DT JJ NN VBZ TO VB VBN IN IN DT NN IN NNP POS NNP NN , WDT VBZ VBN IN VBN NN DT NN , IN CD JJ JJ NNS IN NN IN DT NNP NNP NNP . A human-rights group in Niger says the government is to blame for cancellation of a ceremony that was to grant 7,000 slaves their freedom . DT JJ NN IN NNP VBZ DT NN VBZ TO VB IN NN IN DT NN WDT VBD TO VB CD NNS PRP$ NN . The group Timidria had planned to release the slaves in the Ates region near Niger 's western border with Mali on Saturday , but the event was called off when none of the slaves showed up . DT NN NNP VBD VBN TO VB DT NNS IN DT NNP NN IN NNP POS JJ NN IN NNP IN NNP , CC DT NN VBD VBN RP WRB NN IN DT NNS VBD RP . The rights group says the government intimidated slaves to keep them from attending the ceremony - a charge the government denies . DT NNS NN VBZ DT NN VBD NNS TO VB PRP IN VBG DT NN IN DT NN DT NN VBZ . Niger officially banned slavery in 2003 , but human-rights groups say 43,000 people are still in bondage in the West African nation . NNP RB VBD NN IN CD , CC JJ NNS VBP CD NNS VBP RB IN NN IN DT JJ JJ NN . They are among the 2,00,000 people enslaved along centuries-old Arab-African Saharan trade routes . PRP VBP IN DT CD NNS VBN IN JJ JJ JJ NN NNS . Generations of Africans have been born in slavery , many under the ownership of one family . NNS IN NNS VBP VBN VBN IN NN , JJ IN DT NN IN CD NN . Embattled Ivory Coast President Laurent Gbagbo has said he wants to talk with his rival , Alassane Ouattara . JJ NNP NNP NNP NNP NNP VBZ VBN PRP VBZ TO VB IN PRP$ NN , NNP NNP . Mr. Gbagbo has been isolated by the international community , including the United States , after refusing to yield the presidency although he had fewer votes than Mr. Ouattara in last month 's poll . NNP NNP VBZ VBN VBN IN DT JJ NN , VBG DT NNP NNPS , IN VBG TO VB DT NN IN PRP VBD JJR NNS IN NNP NNP IN JJ NN POS NN . Both men have taken the oath of office and begun organizing competing governments . DT NNS VBP VBN DT NN IN NN CC VBN VBG VBG NNS . Earlier this week , the African Union dispatched former South African president Thabo Mbeki to seek a solution , but after two days of talks , the situation was not resolved . RBR DT NN , DT NNP NNP VBD JJ NNP NNP NN NNP NNP TO VB DT NN , CC IN CD NNS IN NNS , DT NN VBD RB VBN . The Ivory Coast 's presidential election , its first in 10 years , was meant to restore stability to the West African country , which was split into rebel- and government-controlled areas during a 2002 civil war . DT NNP NNP POS JJ NN , PRP$ JJ IN CD NNS , VBD VBN TO VB NN TO DT JJ JJ NN , WDT VBD VBN IN JJ CC JJ NNS IN DT CD JJ NN . Officials in Afghanistan say a suicide bomber has killed four Afghan employees of a U.S.-owned private security firm and wounded one other in southern Kandahar province . NNS IN NNP VBP DT NN NN VBZ VBN CD JJ NNS IN DT JJ JJ NN NN CC VBD CD JJ IN JJ NNP NN . Authorities said Sunday the bomber rode a motorbike next to a vehicle owned by the company , U.S. Protection and Investigations , and detonated his explosives . NNS VBD NNP DT NN VBD DT NN IN TO DT NN VBN IN DT NN , NNP NNP CC NNPS , CC VBD PRP$ NNS . Three guards and the vehicle 's driver were killed , and another guard was wounded . CD NNS CC DT NN POS NN VBD VBN , CC DT NN VBD VBN . On Saturday , a suicide bomber killed seven police officers and a civilian in eastern Afghanistan 's Khost province , near the Pakistan border . IN NNP , DT NN NN VBD CD NNS NNS CC DT NN IN JJ NNP POS NNP NN , IN DT NNP NN . The Taleban is reported to have taken responsibility for the blast . DT NNP VBZ VBN TO VB VBN NN IN DT NN . NATO forces in Afghanistan are preparing for another upsurge in violence this year , having already launched an operation in the south to preempt an anticipated offensive by Taleban fighters . NNP NNS IN NNP VBP VBG IN DT NN IN NN DT NN , VBG RB VBN DT NN IN DT NN TO VB DT JJ NN IN NNP NNS . Turkish police have detained more than 80 people and used tear gas to prevent thousands of leftist protesters from marching to Istanbul 's Taksim square to hold a May Day rally . JJ NNS VBP VBN RBR IN CD NNS CC VBN JJ NN TO VB NNS IN JJ NNS IN VBG TO NNP POS NNP NN TO VB DT NNP NNP NN . Authorities declared the square off-limits to protesters , but allowed a small number of trade union leaders to lay flowers at the square to mark the day . NNS VBD DT JJ NNS TO NNS , CC VBD DT JJ NN IN NN NN NNS TO VB NNS IN DT NN TO VB DT NN . Officials had shut down schools in the area for the day for fear of violence . NNS VBD VBN RP NNS IN DT NN IN DT NN IN NN IN NN . Members of leftist groups often clash with police during May Day observances in Turkey . NNS IN JJ NNS RB VB IN NNS IN NNP NNP NNS IN NNP . In 1977 , a May Day rally at Taksim square turned violent when unidentified gunmen opened fire on a crowd of demonstrators . IN CD , DT NNP NNP NN IN NNP NN VBD JJ WRB JJ NNS VBD NN IN DT NN IN NNS . Thirty-seven people were killed in that incident . CD NNS VBD VBN IN DT NN . The race for Iraq 's new prime minister narrowed Tuesday , when one of two top Shi'ite parties withdrew its candidate from consideration . DT NN IN NNP POS JJ JJ NN VBD NNP , WRB CD IN CD JJ NNP NNS VBD PRP$ NN IN NN . Interim Finance Minister Adel Abdul-Mahdi , who had been the candidate of the Supreme Council for the Islamic Revolution in Iraq , withdrew his name from contention . NNP NNP NNP NNP NNP , WP VBD VBN DT NN IN DT NNP NNP IN DT NNP NNP IN NNP , VBD PRP$ NN IN NN . This leaves the head of the Islamic Dawa Party , Ibrahim al-Jaafari , as the likely front-runner . DT VBZ DT NN IN DT NNP NNP NNP , NNP NNP , IN DT JJ NN . Both parties belong to the United Iraqi Alliance , which won about 48 percent of the vote for the National Assembly . DT NNS VBP TO DT NNP JJ NNP , WDT VBD IN CD NN IN DT NN IN DT NNP NNP . Meanwhile , Iraq 's Electoral Commission says it has received at least three complaints from political groups challenging the election results . RB , NNP POS NNP NNP VBZ PRP VBZ VBN IN JJS CD NNS IN JJ NNS VBG DT NN NNS . A final , certified vote tally is expected Wednesday . DT JJ , JJ NN RB VBZ VBN NNP . And Turkish shipping magnate Kahraman Sadikoglu , who was abducted in southern Iraq in December , has been freed after reports said his family paid a ransom to his kidnappers . CC JJ NN NN NNP NNP , WP VBD VBN IN JJ NNP IN NNP , VBZ VBN VBN IN NNS VBD PRP$ NN VBD DT NN TO PRP$ NNS . A Council of Europe panel says Turkey has passed important legislation protecting minority rights , but has not adequately enforced the new laws . DT NNP IN NNP NN VBZ NNP VBZ VBN JJ NN VBG NN NNS , CC VBZ RB RB VBN DT JJ NNS . In a report , the European Commission against Racism and Intolerance says that despite the new legislation , Turkey 's constitution and its civil , criminal and administrative laws continue to have gaps in addressing racism . IN DT NN , DT JJ NNP IN NNP CC NNP VBZ IN IN DT JJ NN , NNP POS NN CC PRP$ JJ , JJ CC JJ NNS VBP TO VB NNS IN VBG NN . The report , issued Tuesday in Strasbourg , says Kurds and other minorities still face adversity in Turkey , particularly from ongoing violence in the southeast where Kurdish separatists have been active in recent decades . DT NN , VBN NNP IN NNP , VBZ NNP CC JJ NNS RB VBP NN IN NNP , RB IN JJ NN IN DT NN WRB NNP NNS VBP VBN JJ IN JJ NNS . Turkey 's move to push through legal and economic reforms is considered an essential part of its bid to join the European Union . NNP POS NN TO VB IN JJ CC JJ NNS VBZ VBN DT JJ NN IN PRP$ NN TO VB DT NNP NNP . The Council of Europe is a 46-nation group that brings together lawmakers from democratic European countries to review major issues facing the continent . DT NNP IN NNP VBZ DT JJ NN WDT VBZ RB NNS IN JJ JJ NNS TO VB JJ NNS VBG DT NN . Armenia has launched an aerial tramway line that it says is the world 's longest . NNP VBZ VBN DT JJ NN NN IN PRP VBZ VBZ DT NN POS JJS . President Serzh Sarkisian attended the opening of the tramway Saturday , in the country 's southern mountains near Armenia 's border with Iran . NNP NNP NNP VBD DT NN IN DT NN NNP , IN DT NN POS JJ NNS IN NNP POS NN IN NNP . The 5.7-kilometer engineering feat spans the Vorotan River gorge , linking a village off the main highway to the 9th century Tatev Monastery . DT JJ NN NN VBZ DT NNP NNP NN , VBG DT NN IN DT JJ NN TO DT JJ NN NNP NNP . The monastery is one of the country 's oldest and most prominent monasteries and is a major tourist attraction . DT NN VBZ CD IN DT NN POS JJS CC RBS JJ NNS CC VBZ DT JJ NN NN . The head of Cuba 's parliament has offered to support Iran in its fight to develop nuclear energy within Iranian borders . DT NN IN NNP POS NN VBZ VBN TO VB NNP IN PRP$ NN TO VB JJ NN IN JJ NNS . Ricardo Alarcon voiced solidarity Thursday in a meeting with the visiting speaker of Iran 's parliament , Gholam Ali Haddad Adel . NNP NNP VBD NN NNP IN DT NN IN DT VBG NN IN NNP POS NN , NNP NNP NNP NNP . Iran resumed enrichment of uranium for nuclear fuel earlier this week , despite international pressure against the move . NNP VBD NN IN NN IN JJ NN RBR DT NN , IN JJ NN IN DT NN . Haddad Adel is on a two-day visit to Cuba after spending Wednesday in Venezuela , where he thanked the government for its support on nuclear issues . NNP NNP VBZ IN DT JJ NN TO NNP IN VBG NNP IN NNP , WRB PRP VBD DT NN IN PRP$ NN IN JJ NNS . Meanwhile , Indiana Representative Dan Burton , in an interview with Voice of America Thursday , expressed concern over the close ties between Iran and the two countries . RB , NNP NNP NNP NNP , IN DT NN IN NNP IN NNP NNP , VBD NN IN DT JJ NNS IN NNP CC DT CD NNS . He said if it appears that there is coordination between terrorist states and leftist organizations in Central America , the United States will intervene . PRP VBD IN PRP VBZ IN EX VBZ NN IN JJ NNS CC JJ NNS IN NNP NNP , DT NNP NNPS MD VB . Representative Burton said such a relationship would endanger the United States and other countries in the hemisphere . NNP NNP VBD PDT DT NN MD VB DT NNP NNPS CC JJ NNS IN DT NN . European Union foreign ministers hold emergency talks in Luxembourg Sunday in efforts to break a deadlock on Turkey , which is scheduled to begin membership negotiations with the bloc one day later . NNP NNP JJ NNS VBP NN NNS IN NNP NNP IN NNS TO VB DT NN IN NNP , WDT VBZ VBN TO VB NN NNS IN DT NN CD NN RB . The ministers called the meeting after Austria insisted that EU talks with Turkey should include an alternative to giving the country full membership . DT NNS VBD DT NN IN NNP VBD IN NNP NNS IN NNP MD VB DT NN TO VBG DT NN JJ NN . Austria says most Austrians object to full EU membership for Turkey and suggested offering Turkey privileged partnership instead . NNP VBZ RBS NNS VBP TO JJ NNP NN IN NNP CC VBD VBG NNP JJ NN RB . But Turkey calls that unacceptable and says it will not take part in Monday 's talks unless it is clear that the goal is full membership . CC NNP VBZ IN JJ CC VBZ PRP MD RB VB NN IN NNP POS NNS IN PRP VBZ JJ IN DT NN VBZ JJ NN . EU diplomats are working on proposals to soften Austrian opposition . NNP NNS VBP VBG IN NNS TO VB JJ NN . One would be a commitment to begin membership talks with Austria 's neighbor Croatia in the near future . CD MD VB DT NN TO VB NN NNS IN NNP POS NN NNP IN DT JJ NN . EU ministers had delayed the talks because of Croatian failure to cooperate fully with The Hague war crimes tribunal . NNP NNS VBD VBN DT NNS IN IN JJ NN TO VB RB IN DT NNP NN NNS JJ . Pakistani military authorities say they have arrested a key Taliban commander who is accused of slaughtering military personnel . JJ JJ NNS VBP PRP VBP VBN DT JJ NNP NN WP VBZ VBN IN VBG JJ NNS . Security forces said Wednesday they captured Taliban commander Sher Mohammad Qasab in the Swat Valley . NNP NNS VBD NNP PRP VBD NNP NN NNP NNP NNP IN DT NNP NNP . Qasab is known for his brutality among locals in the valley . NNP VBZ VBN IN PRP$ NN IN NNS IN DT NN . A military spokesman said Qasab was wounded and three of his sons died during an exchange of fire before his arrest . DT JJ NN VBD NNP VBD VBN CC CD IN PRP$ NNS VBD IN DT NN IN NN IN PRP$ NN . Pakistani forces have arrested key Taliban commanders recently in the valley , including Muslim Khan , the central spokesman for the militants . JJ NNS VBP VBN JJ NNP NNS RB IN DT NN , VBG NNP NNP , DT JJ NN IN DT NNS . Authorities say the arrests have weakened the Taliban and are helping security forces conduct successful raids against other militants in the area . NNS VBP DT NNS VBP VBN DT NNP CC VBP VBG NN NNS VBP JJ NNS IN JJ NNS IN DT NN . The top U.S. diplomat says China should make significant economic reforms so it does not continue to be a ' problem for the international economy . ' DT JJ NNP NN VBZ NNP MD VB JJ JJ NNS IN PRP VBZ RB VB TO VB DT `` NN IN DT JJ NN . `` In a New York Times newspaper interview , published Friday , Secretary of State Condoleezza Rice says Washington also worries about China 's military buildup , human rights practices and religious restrictions . IN DT NNP NNP NNP NN NN , VBN NNP , NNP IN NNP NNP NNP VBZ NNP RB VBZ IN NNP POS JJ NN , JJ NNS NNS CC JJ NNS . It is a change of tone for Ms. Rice , who generally casts Sino-American relations in a positive light . PRP VBZ DT NN IN NN IN NNP NNP , WP RB VBZ JJ NNS IN DT JJ NN . Her comments come just a month before Chinese President Hu Jintao makes his first visit to Washington since taking office in 2003 . PRP$ NNS VBP RB DT NN IN JJ NNP NNP NNP VBZ PRP$ JJ NN TO NNP IN VBG NN IN CD . He will arrive amid Washington 's complaints that China manipulates the value of its currency to make its products unfairly cheap on world markets . PRP MD VB IN NNP POS NNS IN NNP VBZ DT NN IN PRP$ NN TO VB PRP$ NNS RB JJ IN NN NNS . Beijing recently changed the value of its currency slightly , but U.S. critics say the change is not large enough to make trade fair . NNP RB VBD DT NN IN PRP$ NN RB , CC NNP NNS VBP DT NN VBZ RB JJ RB TO VB NN NN . Chad 's national assembly has authorized President Idriss Deby to renew a state of emergency imposed after a rebel attack on the capital , N'Djamena , early this month . NNP POS JJ NN VBZ VBN NNP NNP NNP TO VB DT NN IN NN VBN IN DT NN NN IN DT NN , NNP , RB DT NN . The parliament voted Friday to extend the emergency measure for another 15 days , until March 15 . DT NN VBD NNP TO VB DT NN NN IN DT CD NNS , IN NNP CD . Mr. Deby declared exceptional powers for his government on February 15 after rebels attacked the capital in an effort to oust the president . NNP NNP VBD JJ NNS IN PRP$ NN IN NNP CD IN NNS VBD DT NN IN DT NN TO VB DT NN . President Deby said the measures were necessary to maintain order in the country . NNP NNP VBD DT NNS VBD JJ TO VB NN IN DT NN . The emergency decree authorizes a midnight-to-dawn curfew and allows the government to ban meetings , control the movement of people and vehicles , and censor what is published in the media . DT NN NN VBZ DT JJ NN CC VBZ DT NN TO VB NNS , VB DT NN IN NNS CC NNS , CC NN WP VBZ VBN IN DT NNS . Nepal 's parliament has unanimously approved a resolution to curtail King Gyanendra 's powers . NNP POS NN VBZ RB VBN DT NN TO VB NNP NNP POS NNS . Details of the declaration have not yet been released , but the resolution is expected to remove the king 's command over the 90,000 member army , as well as his right to make decisions on major issues . NNS IN DT NN VBP RB RB VBN VBN , CC DT NN VBZ VBN TO VB DT NN POS NN IN DT CD NN NN , RB RB IN PRP$ NN TO VB NNS IN JJ NNS . Those powers are to be given to parliament . DT NNS VBP TO VB VBN TO NN . Earlier Thursday , Prime Minister Girija Prasad Koirala told parliament members that the proclamation represents the feelings of all people in Nepal . RBR NNP , NNP NNP NNP NNP NNP VBD NN NNS IN DT NN VBZ DT NNS IN DT NNS IN NNP . Curtailing the king 's powers was a key demand during last month 's pro-democracy protests , which forced King Gyanendra to give up total control of the government and reinstate parliament . VBG DT NN POS NNS VBD DT JJ NN IN JJ NN POS JJ NNS , WDT VBD NNP NNP TO VB RP JJ NN IN DT NN CC VB NN . Nepal 's interim cabinet banned rallies today near the parliament and other key government buildings in Kathmandu . NNP POS JJ NN VBD NNS NN IN DT NN CC JJ JJ NN NNS IN NNP . Two days ago , there were demonstrations against the delay in curbing the king 's powers . CD NNS RB , EX VBD NNS IN DT NN IN VBG DT NN POS NNS . Iraqi defense lawyers representing Saddam Hussein before a special tribunal say they have suspended all contact with the court until their safety is guaranteed . JJ NN NNS VBG NNP NNP IN DT JJ NN VBP PRP VBP VBN DT NN IN DT NN IN PRP$ NN VBZ VBN . In a statement , the lawyers cited the kidnapping and murder last week of their colleague Saadoun al-Janabi who represented one of Saddam 's co-defendants . IN DT NN , DT NNS VBD DT NN CC NN JJ NN IN PRP$ NN NNP NNP WP VBD CD IN NNP POS NNS . They said the deteriorating security situation also makes it impossible to have a fair and open trial . PRP VBD DT JJ NN NN RB VBZ PRP JJ TO VB DT JJ CC JJ NN . They have demanded U.N. protection , as well as the hiring of 15 bodyguards for each lawyer , and an independent international investigation into their colleague 's murder . PRP VBP VBN NNP NN , RB RB IN DT NN IN CD NNS IN DT NN , CC DT JJ JJ NN IN PRP$ NN POS NN . Saddam Hussein and seven associates entered ' not guilty ' pleas at the opening of their trial last Wednesday for the 1982 murders of 143 Shi'ite men in the town of Dujail . NNP NNP CC CD NNS VBN `` RB JJ `` NNS IN DT NN IN PRP$ NN JJ NNP IN DT CD NNS IN CD NNP NNS IN DT NN IN NNP . The trial was adjourned until November 28 . DT NN VBD VBN IN NNP CD . Israeli police have lifted an alert in Tel Aviv , hours after warning of a possible attack . JJ NNS VBP VBN DT NN IN NNP NNP , NNS IN NN IN DT JJ NN . Security officials set up barricades at entry points into the city earlier Tuesday to check for suspicious vehicles , causing heavy traffic jams . NN NNS VBD RP NNS IN NN NNS IN DT NN RB NNP TO VB IN JJ NNS , VBG JJ NN NNS . No further details have been released . DT JJ NNS VBP VBN VBN . An election official in Haiti says the country may have to postpone elections scheduled for November . DT NN NN IN NNP VBZ DT NN MD VB TO VB NNS VBN IN NNP . Patrick Fequiere says authorities need more time to prepare ballots , distribute voter identification cards and set up polling places . NNP NNP VBZ NNS VBP JJR NN TO VB NNS , VB NN NN NNS CC VBN RP VBG NNS . The election council member 's comments come three days after U.S. Secretary of State Condoleezza Rice urged Haitian officials to speed up preparations for the November 20 vote . DT NN NN NN POS NNS VBP CD NNS IN NNP NNP IN NNP NNP NNP VBD JJ NNS TO VB RP NNS IN DT NNP CD NN . The nine-member council has approved about 30 presidential candidates for the first round of balloting . DT JJ NN VBZ VBN IN CD JJ NNS IN DT JJ NN IN NN . The country will also hold legislative elections . DT NN MD RB VB JJ NNS . The vote will be Haiti 's first since former president Jean-Betrand Aristide fled the country during a 2004 uprising . DT NN MD VB NNP POS JJ IN JJ NN NNP NNP VBD DT NN IN DT CD NN . About 7,000 U.N. peacekeepers have been deployed to calm widespread violence in Haiti . IN CD NNP NNS VBP VBN VBN TO VB JJ NN IN NNP . Israel has allowed the first commercial shipment of shoes and clothing into the Gaza Strip in almost two years . NNP VBZ VBN DT JJ JJ NN IN NNS CC NN IN DT NNP NNP IN RB CD NNS . Smaller shipments have been allowed to enter Gaza through international aid groups , but Sunday 's shipments are the first to reach private traders . JJR NNS VBP VBN VBN TO VB NNP IN JJ NN NNS , CC NNP POS NNS VBP DT JJ TO VB JJ NNS . Smugglers have skirted the blockade by bringing in goods though a tunnel under the Egypt-Gaza border . NNS VBP VBN DT NN IN VBG IN NNS IN DT NN IN DT NNP NN . British-based human rights group Amnesty International called for an end to the blockade in January , saying it is ' suffocating ' Gaza 's 1.4 million residents . JJ JJ NNS NN NNP NNP VBD IN DT NN TO DT NN IN NNP , VBG PRP VBZ `` VBG `` NNP POS CD CD NNS . An Israeli military offensive into Gaza in December 2008 to stop cross-border rocket attacks by Hamas militants killed at least 1,300 Palestinians and 13 Israelis . DT JJ JJ NN IN NNP IN NNP CD TO VB JJ NN NNS IN NNP NNS VBD IN JJS CD NNS CC CD NNS . Ivorian officials say 11 people in a major cocoa-growing region have been killed in an attack believed to have been triggered by a land dispute . JJ NNS VBP CD NNS IN DT JJ JJ NN VBP VBN VBN IN DT NN VBN TO VB VBN VBN IN DT NN NN . Officials say the incident happened Thursday when the assailants attacked their victims in the village of Siegouekou . NNS VBP DT NN VBD NNP WRB DT NNS VBD PRP$ NNS IN DT NN IN NNP . A senior presidential source tells the Reuters news agency that the assailants smashed down doors with guns and knives , cut the throats of some people and fired at point blank range on others . DT JJ JJ NN VBZ DT NNP NN NN IN DT NNS VBD RP NNS IN NNS CC NNS , VBD DT NNS IN DT NNS CC VBD IN NN JJ NN IN NNS . Clashes involving rival ethnic groups over precious cocoa land are common in the area . NNS VBG JJ JJ NNS IN JJ NN NN VBP JJ IN DT NN . Ivory Coast is the world 's leading producer of cocoa , the key ingredient in chocolate . NNP NNP VBZ DT NN POS VBG NN IN NN , DT JJ NN IN NN . Oil refineries , drilling platforms and pipelines largely escaped damage from Hurricane Rita , sending prices down to about $ 64 a barrel in Monday morning trading . NN NNS , NN NNS CC NNS RB VBD NN IN NNP NNP , VBG NNS RB TO IN $ CD DT NN IN NNP NN NN . The falling prices were unlike the dramatic spike that followed Hurricane Katrina , but that has not eased worries among industry analysts and politicians about the tight oil supply . DT VBG NNS VBD IN DT JJ NN WDT VBD NNP NNP , CC DT VBZ RB VBN NNS IN NN NNS CC NNS IN DT JJ NN NN . Nearly all the major refineries along the Gulf of Mexico were shut down before or during Hurricane Rita , cutting total U.S. oil production by nearly 30 percent . RB PDT DT JJ NNS IN DT NNP IN NNP VBD VBN RP IN CC IN NNP NNP , VBG JJ NNP NN NN IN RB CD NN . With little excess refining capacity , analysts say oil prices remain vulnerable to even minor disruptions in the global supply . IN JJ JJ NN NN , NNS VBP NN NNS VBP JJ TO RB JJ NNS IN DT JJ NN . The U.S. Energy Department Monday will brief President Bush on damage to Gulf oil facilities and the status of the nation 's energy industry . DT NNP NNP NNP NNP MD VB NNP NNP IN NN TO NNP NN NNS CC DT NN IN DT NN POS NN NN . Reports from Sudan say dozens of people were killed when a plane veered off a runway at Khartoum 's airport and burst into flames . NNS IN NNP VBP NNS IN NNS VBD VBN WRB DT NN VBD RP DT NN IN NNP POS NN CC VBD IN NNS . About 200 passengers were thought to be aboard the Sudan Airways plane when it landed in bad weather late Tuesday . RB CD NNS VBD VBN TO VB IN DT NNP NNPS NN WRB PRP VBD IN JJ NN JJ NNP . There are conflicting reports about the number of fatalities , but state-run television in Sudan says about 100 people died in the accident . EX VBP VBG NNS IN DT NN IN NNS , CC JJ NN IN NNP VBZ IN CD NNS VBD IN DT NN . Emergency services rushed to the scene and by late Tuesday had brought the fire under control . NN NNS VBD TO DT NN CC IN JJ NNP VBD VBN DT NN IN NN . The flight originated in Damascus , Syria , and made a stopover in Amman , Jordan , before flying to Khartoum . DT NN VBD IN NNP , NNP , CC VBD DT NN IN NNP , NNP , IN VBG TO NNP . Sudan has a poor aviation record . NNP VBZ DT JJ NN NN . In May , a plane crashed in a remote area of southern Sudan , killing 23 people , including key members of the southern Sudanese government . IN NNP , DT NN VBN IN DT JJ NN IN JJ NNP , VBG CD NNS , VBG JJ NNS IN DT JJ JJ NN . In July 2003 , a Sudan Airways plane crashed soon after takeoff near Port Sudan , killing 115 people . IN NNP CD , DT NNP NNP NN VBD RB IN NN IN NNP NNP , VBG CD NNS . Ukraine 's Deputy Prime Minister Mykola Azarov says U.S. plans to build a missile defense system in central Europe are a threat to Ukraine . NNP POS NNP NNP NNP NNP NNP VBZ NNP NNS TO VB DT NN NN NN IN JJ NNP VBP DT NN TO NNP . Azarov said Monday that such a system close to the Ukrainian border would be a target of attack and threaten to suck Ukraine into a conflict . NNP VBD NNP IN PDT DT NN JJ TO DT JJ NN MD VB DT NN IN NN CC VB TO VB NNP IN DT NN . Washington says it wants to build missile defense sites in Poland and the Czech Republic to counter a possible threat by North Korean and Iranian long-range missiles . NNP VBZ PRP VBZ TO VB NN NN NNS IN NNP CC DT JJ NNP TO VB DT JJ NN IN JJ JJ CC JJ JJ NNS . Russia has also called the plans a mistake and has noted that neither North Korea nor Iran have such missiles . NNP VBZ RB VBN DT NNS DT NN CC VBZ VBN IN DT NNP NNP CC NNP VBP JJ NNS . The Pentagon has acknowledged that Iran does not currently possess long-range missiles , but says it is important to stay one step ahead . DT NNP VBZ VBN IN NNP VBZ RB RB VB JJ NNS , CC VBZ PRP VBZ JJ TO VB CD NN RB . The African Union has extended the mandate for its Darfur peacekeeping mission until the end of the year as it waits to assemble a combined force with the United Nations . DT NNP NNP VBZ VBN DT NN IN PRP$ NNP NN NN IN DT NN IN DT NN IN PRP VBZ TO VB DT VBN NN IN DT NNP NNPS . The African Union said in a statement Friday that it hopes efforts to deploy the hybrid force will be speeded up . DT NNP NNP VBD IN DT NN NNP IN PRP VBZ NNS TO VB DT JJ NN MD VB VBN RP . Sudan agreed this month to the joint African Union - United Nations force of around 20,000 peacekeepers after months of international pressure and threats of tougher U.N. sanctions . NNP VBD DT NN TO DT JJ NNP NNP : NNP NNP NN IN IN CD NNS IN NNS IN JJ NN CC NNS IN JJR NNP NNS . The African Union already has about 7,000 peacekeepers in Darfur , but they have not been able to stop the region 's violence . DT NNP NNP RB VBZ IN CD NNS IN NNP , CC PRP VBP RB VBN JJ TO VB DT NN POS NN . Sudanese government-backed Arab militias are accused of committing atrocities in battling Darfur rebels . JJ VBN JJ NNS VBP VBN IN VBG NNS IN VBG NNP NNS . Four years of fighting in Darfur has left more than 2,00,000 people dead and more than two million displaced . CD NNS IN VBG IN NNP VBZ VBN JJR IN CD NNS JJ CC JJR IN CD CD VBD . A U.S. Defense Department spokesman says Uzbekistan has restricted American military flights from its soil in recent weeks . DT NNP NNP NNP NN VBZ NNP VBZ VBN JJ JJ NNS IN PRP$ NN IN JJ NNS . But the spokesman refused to link the change directly to U.S. criticism of the Uzbek government 's violent crackdown on anti-government protesters last month . CC DT NN VBD TO VB DT NN RB TO NNP NN IN DT JJ NN POS JJ NN IN JJ NNS JJ NN . He said Uzbekistan has stopped allowing U.S. nighttime flights from its air base at Karshi-Khanabad , which American forces use to support operations and supply humanitarian aid to neighboring Afghanistan . PRP VBD NNP VBZ VBN VBG NNP JJ NNS IN PRP$ NN NN IN NNP , WDT JJ NNS VBP TO VB NNS CC NN JJ NN TO VBG NNP . He said the U.S. military has been working around the restrictions . PRP VBD DT NNP NN VBZ VBN VBG IN DT NNS . Uzbekistan opened the airfield to U.S. forces in the aftermath of the September 11 , 2001 , terror attacks in the United States . NNP VBD DT NN TO NNP NNS IN DT NN IN DT NNP CD , CD , NN NNS IN DT NNP NNPS . Washington in recent weeks has been criticizing the Uzbek government for not allowing an international probe into its handling of last month 's uprising in the eastern city of Andijan . NNP IN JJ NNS VBZ VBN VBG DT JJ NN IN RB VBG DT JJ NN IN PRP$ NN IN JJ NN POS NN IN DT JJ NN IN NNP . Philippine officials , fearing the spread of disease , are urging people to quickly bury hundreds of victims killed in two storms this week . JJ NNS , VBG DT NN IN NN , VBP VBG NNS TO RB VB NNS IN NNS VBN IN CD NNS DT NN . The military says at least 1,000 people are dead or missing from floods and mudslides caused by the typhoons , which hit provinces in the northeast of the country . DT NN VBZ IN JJS CD NNS VBP JJ CC VBG IN NNS CC NNS VBN IN DT NNS , WDT VBD NNS IN DT NN IN DT NN . Officials are assessing the damage from the latest and most powerful storm , Typhoon Nanmadol , which slammed into the coast Thursday packing sustained winds of 185 kilometers per hour . NNS VBP VBG DT NN IN DT JJS CC RBS JJ NN , NNP NNP , WDT VBD IN DT NN NNP NN VBD NNS IN CD NNS IN NN . Nanmadol is the fourth storm to hit the Philippines in less than two weeks . NNP VBZ DT JJ NN TO VB DT NNPS IN JJR IN CD NNS . In a televised statement Friday President Gloria Arroyo said , ' We need one great heave to deliver the relief supplies , find the missing , rescue the isolated , feed the hungry and shelter the homeless . ' IN DT JJ NN NNP NNP NNP NNP VBD , `` PRP VBP CD JJ NN TO VB DT NN NNS , VB DT JJ , VB DT JJ , VB DT NN CC NN DT NN . `` Lebanese security officials say Syria has pulled two-thousand more troops out of Lebanon 's eastern Bekaa Valley . JJ NN NNS VBP NNP VBZ VBN JJ JJR NNS IN IN NNP POS JJ NNP NNP . Officials in Beirut today Monday say the latest withdrawal brings the Syrian military presence down to about eight-thousand troops , the lowest level since they entered Lebanon nearly three decades ago . NNS IN NNP NN NNP VBP DT JJS NN VBZ DT JJ JJ NN IN TO IN JJ NNS , DT JJS NN IN PRP VBD NNP RB CD NNS RB . Lebanese officials say the Syrian-Lebanese Military Commission will meet next week to set a timetable for the complete withdrawal of all remaining Syrian forces . JJ NNS VBP DT JJ NNP NNP MD VB JJ NN TO VB DT NN IN DT JJ NN IN DT VBG JJ NNS . Also Monday , a senior Lebanese Foreign Ministry official is en route to New York to attend a U.N. Security Council meeting . RB NNP , DT JJ JJ NNP NNP NN VBZ IN NN TO NNP NNP TO VB DT NNP NNP NNP NN . Council members are expected to call for an international investigation of last month 's assassination of former Prime Minister Rafik al-Hariri . NNP NNS VBP VBN TO VB IN DT JJ NN IN JJ NN POS NN IN JJ NNP NNP NNP NNP . In other developments , Lebanon 's main opposition leader Walid Jumblatt says he has no current plans to press for disarmament of the militant group Hezbollah . IN JJ NNS , NNP POS JJ NN NN NNP NNP VBZ PRP VBZ DT JJ NNS TO VB IN NN IN DT JJ NN NNP . Cameroon says its security forces have freed six hostages kidnapped two weeks ago off the country 's coast . NNP VBZ PRP$ NN NNS VBP VBN CD NNS VBN CD NNS IN IN DT NN POS NN . Communications Minister Issa Tchiroma says the six were freed Thursday and handed over to representatives of their respective diplomatic missions on Friday following medical examinations . NNS NN NNP NNP VBZ DT CD VBD VBN NNP CC VBN RP TO NNS IN PRP$ JJ JJ NNS IN NNP VBG JJ NNS . Tchiroma refused to give any additional details on the operation . NNP VBD TO VB DT JJ NNS IN DT NN . Rebels from Cameroon 's Bakassi Peninsula claimed responsibility for the kidnappings . NNS IN NNP POS NNP NNP VBD NN IN DT NNS . It is not clear whether the rebels are from a group called Bakassi Freedom Fighters or a splinter group known as Africa Marine Commando . PRP VBZ RB JJ IN DT NNS VBP IN DT NN VBN NNP NNP NNPS CC DT NN NN VBN IN NNP NNP NNP . The hostages - four Ukrainians , one Croatian and one Philippine national - were kidnapped from vessels off the coast of Cameroon on September 12 . DT NNS IN CD NNS , CD NN CC CD JJ NN : VBD VBN IN NNS IN DT NN IN NNP IN NNP CD . A preliminary medical study has indicated that an ingredient in chocolate may improve the circulation of blood in the brain and heart . DT JJ JJ NN VBZ VBN IN DT NN IN NN MD VB DT NN IN NN IN DT NN CC NN . Scientists at the American Association for the Advancement of Science discussed the findings Sunday at a convention in San Francisco , California . NNS IN DT NNP NNP IN DT NNP IN NNP VBD DT NNS NNP IN DT NN IN NNP NNP , NNP . They said flavinols , an anti-oxidant found in cocoa beans , can increase blood flow to the brain . PRP VBD NNS , DT JJ VBN IN NN NNS , MD VB NN NN TO DT NN . But researchers caution us not to start eating chocolate for its health benefits . CC NNS VBP PRP RB TO VB VBG NN IN PRP$ NN NNS . They say the flavinols are removed from most chocolate because they have a bitter taste . PRP VBP DT NNS VBP VBN IN JJS NN IN PRP VBP DT JJ NN . Scientists say larger-scale testing is needed to back up the early research . NNS VBP JJ NN VBZ VBN TO VB RP DT JJ NN . They also say eating high-calorie foods - like chocolate - can lead to health problems . PRP RB VBP VBG JJ NNS : IN NN : MD VB TO NN NNS . Protesters attempt to block A9 motorway near Gleneagles , Scotland Police and protesters have clashed in Scotland , as leaders of the world 's leading industrial nations gather for the Group of Eight summit at the Gleneagles resort . NNS VBP TO VB NNP NN IN NNP , NNP NNP CC NNS VBP VBN IN NNP , IN NNS IN DT NN POS VBG JJ NNS VBP IN DT NNP IN CD NN IN DT NNP NN . Scottish officials Wednesday said about 60 people have been arrested and eight officers injured after hooded protesters smashed windows and hurled rocks and other objects at officers in the town of Stirling . JJ NNS NNP VBD IN CD NNS VBP VBN VBN CC CD NNS VBN IN JJ NNS VBD NNS CC JJ NNS CC JJ NNS IN NNS IN DT NN IN NNP . They say demonstrators have blocked roads leading to Gleneagles , as well as access to a nearby railway station . PRP VBP NNS VBP VBN NNS VBG TO NNP , RB RB IN NN TO DT JJ NN NN . Meanwhile , Scottish police now say they will allow protesters to march to the edge of the G-8 summit site . RB , JJ NN RB VBP PRP MD VB NNS TO VB TO DT NN IN DT NNP NN NN . Earlier in the day , they canceled the planned demonstration following outbreaks of violence in cities surrounding the resort . RBR IN DT NN , PRP VBD DT JJ NN VBG NNS IN NN IN NNS VBG DT NN . More than 10,000 police have been deployed in the area around Gleneagles . JJR IN CD NNS VBP VBN VBN IN DT NN IN NNP . French Foreign Minister Bernard Kouchner has urged China to use its influence with Burma 's military government to help end the political and social turmoil in the Southeast Asian country . JJ NNP NNP NNP NNP VBZ VBN NNP TO VB PRP$ NN IN NNP POS JJ NN TO VB VB DT JJ CC JJ NN IN DT JJ JJ NN . Speaking with the French press agency ( AFP ) Wednesday in Thailand ahead of a visit to Beijing , Kouchner said China is pivotal to strengthening United Nations efforts to bring about reform in Burma . VBG IN DT JJ NN NN LRB NNP RRB NNP IN NNP RB IN DT NN TO NNP , NNP VBD NNP VBZ JJ TO VBG NNP NNPS NNS TO VB RB NN IN NNP . He said China must push the military junta in Rangoon to open real dialogue with the democratic opposition . PRP VBD NNP MD VB DT JJ NN IN NNP TO VB JJ NN IN DT JJ NN . China -- a major supplier of weapons to Burma -- has been criticized by some diplomats for not taking a tougher stand toward Burma 's military leaders after the September crackdown on pro-democracy protests . NNP IN DT JJ NN IN NNS TO NNP : VBZ VBN VBN IN DT NNS IN RB VBG DT JJR NN IN NNP POS JJ NNS IN DT NNP NN IN JJ NNS . Kouchner said it was largely due to Beijing 's influence that U.N. envoy Ibrahim Gambari was able to travel to Burma at the end of last month . NNP VBD PRP VBD RB JJ TO NNP POS NN IN NNP NNP NNP NNP VBD JJ TO VB TO NNP IN DT NN IN JJ NN . The U.S. military says an American soldier has been killed and two others wounded in fighting with Taleban rebels in southern Afghanistan . DT NNP NN VBZ DT JJ NN VBZ VBN VBN CC CD NNS VBD IN VBG IN NNP NNS IN JJ NNP . Seven militants were reported captured Tuesday during the fighting in Uruzgan province , the scene of a spate of suicide bombings in recent months . CD NNS VBD VBN VBN NNP IN DT NN IN NNP NN , DT NN IN DT NN IN NN NNS IN JJ NNS . In Kabul Tuesday , Afghan authorities say police fired into a crowd of rioting prison inmates , killing one and wounding at least three others . IN NNP NNP , JJ NNS VBP NNS VBD IN DT NN IN VBG NN NNS , VBG CD CC VBG IN JJS CD NNS . Officials say the gunfire erupted as hundreds of prisoners tried a mass escape after government talks with the inmates broke down . NNS VBP DT NN VBD IN NNS IN NNS VBD DT NN NN IN NN NNS IN DT NNS VBD RP . Late Tuesday , a man claiming to be an American journalist inmate told Western journalists by cell phone that rioting Taleban inmates were threatening to kill him . RB NNP , DT NN VBG TO VB DT JJ NN NN VBD JJ NNS IN NN NN WDT VBG NNP NNS VBD VBG TO VB PRP . Free-lance journalist Edward Caraballo was jailed in 2004 along with two other Americans found guilty of running a private prison and torturing Afghan suspects . JJ NN NNP NNP VBD VBN IN CD IN IN CD JJ NNS VBN JJ IN VBG DT JJ NN CC VBG JJ NNS . Iran says it will hold talks with the United States next week on security in Iraq . NNP VBZ PRP MD VB NNS IN DT NNP NNPS JJ NN IN NN IN NNP . Iran 's official IRNA news agency quoted Foreign Ministry spokesman Mohammad Ali Hosseini Sunday as saying Tehran agreed to the talks in order to lessen the pain of the Iraqi people , support the Iraqi government and establish security and peace in Iraq . NNP POS JJ NNP NN NN VBN NNP NNP NN NNP NNP NNP NNP IN VBG NNP VBD IN DT NNS IN NN TO VB DT NN IN DT JJ NNS , VB DT JJ NN CC VB NN CC NN IN NNP . The report said Iran received a request for the talks through the Swiss Embassy in Tehran , which often acts as an intermediary for the U.S. in the country . DT NN VBD NNP VBD DT NN IN DT NNS IN DT JJ NN IN NNP , WDT RB VBZ IN DT NN IN DT NNP IN DT NN . A spokeswoman for U.S. Vice President Dick Cheney , who is in the region , said the United States is willing to discuss Iraq with Iranian officials . DT NN IN NNP NNP NNP NNP NNP , WP VBZ IN DT NN , VBD DT NNP NNPS VBZ JJ TO VB NNP IN JJ NNS . U.S. officials have said they want to see Iran and Syria increase control over their borders , and stop supporting militias and insurgents in Iraq . NNP NNS VBP VBN PRP VBP TO VB NNP CC NNP VB NN IN PRP$ NNS , CC VB VBG NNS CC NNS IN NNP . The Iranian spokesman said the time and date of the talks would be made public this week . DT JJ NN VBD DT NN CC NN IN DT NNS MD VB VBN JJ DT NN . Israel and Western nations are expressing concern over Hamas ' apparent victory in Palestinian parliamentary elections and warning they will not deal with the militant group unless it abandons violence . NNP CC JJ NNS VBP VBG NN IN NNP POS JJ NN IN JJ JJ NNS CC VBG PRP MD RB VB IN DT JJ NN IN PRP VBZ NN . Israel 's acting prime minister , Ehud Olmert , is discussing the development with senior cabinet officials . NNP POS JJ JJ NN , NNP NNP , VBZ VBG DT NN IN JJ NN NNS . He has said Israel will not work with a Hamas-led government . PRP VBZ VBN NNP MD RB VB IN DT JJ NN . U.N. Secretary-General Kofi Annan says any group that participates in a democratic process should disarm . NNP NNP NNP NNP VBZ DT NN WDT VBZ IN DT JJ NN MD VB . Britain also called on Hamas to reject violence and acknowledge Israel 's right to exist . NNP RB VBD IN NNP TO VB NN CC VB NNP POS NN TO VB . Other European countries , including France , have expressed concern over Hamas ' apparent election victory . JJ JJ NNS , VBG NNP , VBP VBN NN IN NNP POS JJ NN NN . And a spokesman for Palestinian leader Mahmoud Abbas says U.S. Secretary of State Condoleezza Rice called to stress that the Bush administration will continue to support Mr. Abbas and his policies . CC DT NN IN JJ NN NNP NNP VBZ NNP NNP IN NNP NNP NNP VBD TO VB IN DT NNP NN MD VB TO VB NNP NNP CC PRP$ NNS . Amnesty International says sexual violence against women in Haiti is increasing one year after a deadly earthquake forced hundreds of thousands of people into makeshift shelters with little or no security . NNP NNP VBZ JJ NN IN NNS IN NNP VBZ VBG CD NN IN DT JJ NN VBD NNS IN NNS IN NNS IN NN NNS IN JJ CC DT NN . Amnesty said in a report Thursday the offenses are primarily committed by armed men roaming tent camps at night . NNP VBD IN DT NN NNP DT NNS VBP RB VBN IN JJ NNS VBG JJ NNS IN NN . The rights group says more than 250 rapes occurred in camps in the first 150 days after last January 's earthquake . DT NNS NN VBZ JJR IN CD NNS VBD IN NNS IN DT JJ CD NNS IN JJ NNP POS NN . Amnesty is urging the newly elected government to include the topic of sexual violence in its plan to address the humanitarian crisis . NNP VBZ VBG DT RB VBN NN TO VB DT NN IN JJ NN IN PRP$ NN TO VB DT JJ NN . The group says women should have input in developing an action plan . DT NN VBZ NNS MD VB NN IN VBG DT NN NN . The rights group says immediate assistance should include security in the camps and help for police investigating cases . DT NNS NN VBZ JJ NN MD VB NN IN DT NNS CC NN IN NNS VBG NNS . The U.S. State Department has informed its diplomats that some will be required to serve in Iraq because of a lack of volunteers willing to work there . DT NNP NNP NNP VBZ VBN PRP$ NNS IN DT MD VB VBN TO VB IN NNP IN IN DT NN IN NNS JJ TO VB RB . The department sent a cable Friday to all diplomats , saying that 200 to 300 people will be notified Monday that they are prime candidates for postings in Iraq . DT NN VBD DT NN NNP TO DT NNS , VBG IN CD TO CD NNS MD VB VBN NNP IN PRP VBP JJ NNS IN NNS IN NNP . Harry Thomas , the director-general of the U.S. Foreign Service , said those notified would have 10 days to accept or reject the position . NNP NNP , DT NN IN DT NNP NNP NNP , VBD DT VBN MD VB CD NNS TO VB CC VB DT NN . Thomas said those who refuse face the possibility of dismissal . NNP VBD DT WP VBP VBP DT NN IN NN . He said diplomats sent to Iraq will receive extra pay and vacation time . PRP VBD NNS VBN TO NNP MD VB JJ NN CC NN NN . There are precedents for the directed assignments . EX VBP NNS IN DT VBN NNS . In 1969 , an entire class of diplomats was sent to Vietnam . IN CD , DT JJ NN IN NNS VBD VBN TO NNP . During the 1970s and 1980s , some were required to work at embassies in Africa . IN DT NNS CC NNS , DT VBD VBN TO VB IN NNS IN NNP . Pakistani President Pervez Musharraf has expressed hope to leaders at the Non-Aligned Movement ( NAM ) summit that talks with his Indian counterpart could ease Kashmir border tensions . JJ NNP NNP NNP VBZ VBN NN TO NNS IN DT JJ NN LRB NNP RRB NN IN NNS IN PRP$ JJ NN MD VB NNP NN NNS . General Musharraf and Indian Prime Minister Manmohan Singh are expected to meet Saturday on the sidelines of the summit in Havana , Cuba . NNP NNP CC JJ NNP NNP NNP NNP VBP VBN TO VB NNP IN DT NNS IN DT NN IN NNP , NNP . Unlike Pakistan 's president , Mr. Singh did not speak directly about the Kashmir issue during his speech at the summit Friday . IN NNP POS NN , NNP NNP VBD RB VB RB IN DT NNP NN IN PRP$ NN IN DT NN NNP . However , he urged N.A.M. leaders to renew their group 's efforts against terrorism . RB , PRP VBD NNP NNS TO VB PRP$ NN POS NNS IN NN . Both India and Pakistan claim ownership of Kashmir . DT NNP CC NNP VBP NN IN NNP . The countries agreed on a ceasefire in 2003 . DT NNS VBD IN DT NN IN CD . Kashmir is suffering from a 17-year insurgency that has killed more than 45,000 people . NNP VBZ VBG IN DT JJ NN WDT VBZ VBN JJR IN CD NNS . A number of rebel groups are fighting for independence from India or a merger with Muslim-majority Pakistan . DT NN IN NN NNS VBP VBG IN NN IN NNP CC DT NN IN NNP NNP . South Africa 's government says it will move away from coal and promote use of wind and nuclear energy in an effort to fight global warming . NNP NNP POS NN VBZ PRP MD VB RB IN NN CC VB NN IN NN CC JJ NN IN DT NN TO VB JJ NN . Environment Minister Marthinus van Schalkwyk told a news conference Monday that options being considered include mandatory energy efficiency targets and a possible tax on carbon dioxide emissions . NN NN NNP NNP NNP VBD DT NN NN NNP IN NNS VBG VBN VBP JJ NN NN NNS CC DT JJ NN IN NN NN NNS . South Africa generates most of its electricity using coal , a major source of the so-called greenhouse gases blamed for climate change . NNP NNP VBZ JJS IN PRP$ NN VBG NN , DT JJ NN IN DT JJ NN NNS VBN IN NN NN . Van Schalkwyk said no new coal-fired power stations would be approved unless they use technology that captures and stores carbon emissions . NNP NNP VBD DT JJ JJ NN NNS MD VB VBN IN PRP VBP NN IN NNS CC NNS NN NNS . He said if action is taken now , South Africa 's greenhouse gas emissions should stabilize by 2025 and then begin to decline . PRP VBD IN NN VBZ VBN RB , NNP NNP POS NN NN NNS MD VB IN CD CC RB VB TO VB . He said the Cabinet 's decisions show the government and the country are committed to a ' low carbon economy . ' PRP VBD DT NNP POS NNS VBP DT NN CC DT NN VBP VBN TO DT `` JJ NN NN . `` Opposition leaders in Pakistan say police have detained at least 150 activists across the country before planned protests on Monday against the removal of the country 's top judge . NN NNS IN NNP VBP NNS VBP VBN IN JJS CD NNS IN DT NN IN JJ NNS IN NNP IN DT NN IN DT NN POS JJ NN . Authorities give conflicting accounts of the detentions . NNS VBP VBG NNS IN DT NNS . Some local police and government officials say they detained activists to prevent further protests , while others say they know nothing about the detentions . DT JJ NNS CC NN NNS VBP PRP VBD NNS TO VB JJ NNS , IN NNS VBP PRP VBP DT IN DT NNS . Pakistan has been shaken by demonstrations since President Pervez Musharraf removed Chief Justice Iftikhar Mohammed Chaudhry from office on March 9 . NNP VBZ VBN VBN IN NNS IN NNP NNP NNP VBD NNP NNP NNP NNP NNP IN NN IN NNP CD . Mr. Musharraf says he suspended Chaudhry because of complaints that he had abused his authority . NNP NNP VBZ PRP VBD NNP IN IN NNS IN PRP VBD VBN PRP$ NN . Chaudhry denies the allegations . NNP VBZ DT NNS . Lawyers and opposition parties say the president is trying to interfere with the independence of the judiciary . NNS CC NN NNS VBP DT NN VBZ VBG TO VB IN DT NN IN DT NN . Mr. Musharraf swore in senior judge Rana Bhagwandas as acting chief justice on Saturday . NNP NNP VBD IN JJ NN NNP NNP IN VBG NN NN IN NNP . The French government has confirmed the presence of the deadly H5N1 strain of the bird flu among domestic poultry in the southeastern part of the country . DT JJ NN VBZ VBN DT NN IN DT JJ NNP NN IN DT NN NN IN JJ NN IN DT JJ NN IN DT NN . It is the first outbreak among domestic waterfowl in the European Union . PRP VBZ DT JJ NN IN JJ NN IN DT NNP NNP . The French agriculture ministry said late Friday that lab tests have verified that the deadly strain killed a turkey on a farm near Lyons . DT JJ NN NN VBD JJ NNP IN NN NNS VBP VBN IN DT JJ NN VBD DT NN IN DT NN IN NNP . The farm has been sealed off and more than 11,000 birds have been slaughtered since the illness struck Thursday . DT NN VBZ VBN VBN RB CC JJR IN CD NNS VBP VBN VBN IN DT NN VBD NNP . Previously the deadly H5N1 form of the virus has been found only in wild birds in France and other EU countries . RB DT JJ NNP NN IN DT NN VBZ VBN VBN RB IN JJ NNS IN NNP CC JJ NNP NNS . The Japanese government on Friday banned the import French poultry products . DT JJ NN IN NNP VBD DT NN JJ NN NNS . Separately , European Union health ministers met in Vienna Friday to discuss a public campaign to ease fears and raise awareness . RB , NNP NNP NN NNS VBD IN NNP NNP TO VB DT JJ NN TO VB NNS CC VB NN . A persistent knee problem has forced Australian Open tennis champion Marat Safin of Russia to withdraw from the Hopman Cup mixed-team tennis tournament in Perth , Australia . DT JJ NN NN VBZ VBN JJ NNP NN NN NNP NNP IN NNP TO VB IN DT NNP NNP JJ NN NN IN NNP , NNP . Safin has struggled with tendonitis in his right knee . NNP VBZ VBN IN NNS IN PRP$ JJ NN . After missing the Paris Masters tournament and season-ending Masters Cup in Shanghai in November , Safin says his priority is to get ready to defend his Australian Open title rather than play in the Hopman event . IN VBG DT NNP NNP NN CC JJ NNP NNP IN NNP IN NNP , NNP VBZ PRP$ NN VBZ TO VB JJ TO VB PRP$ JJ NNP NN RB IN VB IN DT NNP NN . The Hopman Cup starts Friday with a qualifying match between China and the Netherlands . DT NNP NNP VBZ NNP IN DT VBG NN IN NNP CC DT NNP . Safin has been replaced on the Russian team by 20-year-old Teimuraz Gabashvili , who will partner Svetlana Kuznetsova . NNP VBZ VBN VBN IN DT JJ NN IN JJ NNP NNP , WP MD VB NNP NNP . Russia is in Group-A with the United States , Sweden and Serbia-Montenegro , and will not play until next Tuesday . NNP VBZ IN NNP IN DT NNP NNPS , NNP CC NNP , CC MD RB VB IN JJ NNP . Russian President Vladimir Putin has called for a timetable for the withdrawal of foreign military forces from Iraq . JJ NNP NNP NNP VBZ VBN IN DT NN IN DT NN IN JJ JJ NNS IN NNP . At a joint news conference with Jordan 's King Abdullah Thursday , the Russian leader said many Iraqis perceive the foreign troops as an occupying force . IN DT JJ NN NN IN NNP POS NNP NNP NNP , DT JJ NN VBD JJ NNS VBP DT JJ NNS IN DT JJ NN . He said a phased pull-out of coalition forces would help defuse the violence in Iraq and would help convince a considerable number of those involved in the Iraqi insurgency to join efforts for building a new political system in the war-torn country . PRP VBD DT VBN NN IN NN NNS MD VB VB DT NN IN NNP CC MD VB VB DT JJ NN IN DT VBN IN DT JJ NN TO VB NNS IN VBG DT JJ JJ NN IN DT JJ NN . Mr. Putin also called for an international conference on Iraq to be held by the end of this year , saying it will give an added impulse to normalizing the situation in Iraq . NNP NNP RB VBD IN DT JJ NN IN NNP TO VB VBN IN DT NN IN DT NN , VBG PRP MD VB DT JJ NN TO VBG DT NN IN NNP . Mr. Putin and King Abdullah were meeting at the Russian president 's summer residence near Russia 's Black Sea resort of Sochi . NNP NNP CC NNP NNP VBD VBG IN DT JJ NN POS NN NN IN NNP POS NNP NNP NN IN NNP . A hijacker seized a Sudanese passenger plane Wednesday and forced the pilot to fly to the Chadian capital , N'Djamena , before surrendering to authorities there . DT NN VBD DT JJ NN NN NNP CC VBD DT NN TO VB TO DT JJ NN , NNP , IN VBG TO NNS RB . No one was injured . DT NN VBD VBN . Officials say the plane , carrying 103 passengers , was hijacked this morning after it took off from Khartoum for Sudan 's western city of Al-Fasher . NNS VBP DT NN , VBG CD NNS , VBD VBN DT NN IN PRP VBD RP IN NNP IN NNP POS JJ NN IN NNP . Chadian forces surrounded the plane shortly after it landed in N'Djamena . JJ NNS VBN DT NN RB IN PRP VBD IN NNP . Officials say the hijacker was armed with a pistol and wanted the plane to be flown to Britain , where he wanted asylum . NNS VBP DT NN VBD VBN IN DT NN CC VBD DT NN TO VB VBN TO NNP , WRB PRP VBD NN . When told there was not enough fuel , he agreed to go to neighboring Chad . WRB VBN EX VBD RB JJ NN , PRP VBD TO VB TO JJ NNP . Indonesian police say they have arrested a suspected Islamist militant alleged to be a top aide to Malaysian extremist Noordin Mohammad Top . JJ NNS VBP PRP VBP VBN DT JJ NN NN VBN TO VB DT JJ NN TO JJ NN NNP NNP NNP . Local media say anti-terror security forces captured Subur Sugiarto on a bus in Central Java on Wednesday . JJ NNS VBP JJ NN NNS VBN NNP NNP IN DT NN IN NNP NNP IN NNP . Several police sources said Subur Sugiarto was part of Top 's inner circle of accomplices . JJ NN NNS VBD NNP NNP VBD NN IN NNP POS JJ NN IN NNS . Top is a senior member of Jemaah Islamiah , an Islamist militant group seen as the Southeast Asian arm of al-Qaida . NNP VBZ DT JJ NN IN NNP NNP , DT NNP JJ NN VBN IN DT JJ JJ NN IN NNP . He is blamed for helping mastermind a string of bombings in recent years in Indonesia , including the 2002 Bali nightclub attacks that killed 202 people . PRP VBZ VBN IN VBG VB DT NN IN NNS IN JJ NNS IN NNP , VBG DT CD NNP NN NNS WDT VBD CD NNS . Palestinian medical officials say an Israeli aircraft has fired rockets at a car traveling in the southern Gaza Strip , killing a senior Palestinian militant and wounding at least 10 other people . JJ JJ NNS VBP DT JJ NN VBZ VBN NNS IN DT NN VBG IN DT JJ NNP NNP , VBG DT JJ JJ NN CC VBG IN JJS CD JJ NNS . Palestinian medics say three of the wounded are in critical condition . JJ NNS VBP CD IN DT VBN VBP IN JJ NN . An Israeli army statement said aircraft had targeted a senior militant accused of involvement in sniper fire and other attacks against Israeli troops . DT JJ NN NN VBD NN VBD VBN DT JJ NN VBN IN NN IN NN NN CC JJ NNS IN JJ NNS . Israel repeatedly warned earlier this week that it would launch strikes against Palestinian targets to avenge a suicide bombing Monday inside Israel . NNP RB VBD RBR DT NN IN PRP MD VB NNS IN JJ NNS TO VB DT NN VBG NNP IN NNP . The Palestinian militant Islamic Jihad organization claimed responsibility for Monday 's blast , which killed five Israelis in Netanya . DT JJ NN NNP NNP NN VBD NN IN NNP POS NN , WDT VBD CD NNS IN NNP . Earlier this week , Israeli Defense Minister Shaul Mofaz ordered the army to resume its practice of targeting senior militants for assassination . RBR DT NN , JJ NN NN NNP NNP VBD DT NN TO VB PRP$ NN IN VBG JJ NNS IN NN . The Israeli military says it has arrested a senior commander of the Palestinian faction Hamas after he spent more than a decade on the run . DT JJ NN VBZ PRP VBZ VBN DT JJ NN IN DT JJ NN NNP IN PRP VBD JJR IN DT NN IN DT NN . Israeli troops and the Shin Bet security service caught Maher Uda overnight Saturday near the West Bank town of Ramallah . JJ NNS CC DT NNP NNP NN NN VBN NNP NNP JJ NNP IN DT NNP NNP NN IN NNP . Uda has been on Israel 's most wanted list since the 1990s . NNP VBZ VBN IN NNP POS RBS JJ NN IN DT NNS . He is considered a founding member of the Hamas military branch in the West Bank . PRP VBZ VBN DT NN NN IN DT NNP JJ NN IN DT NNP NNP . Israel blames him for the deaths of at least 70 Israelis . NNP VBZ PRP IN DT NNS IN IN JJS CD NNS . Hamas has accused Palestinian security forces of helping Israel detain Uda . NNP VBZ VBN JJ NN NNS IN VBG NNP VB NNP . The Palestinian Authority has not commented on the case . DT JJ NNP VBZ RB VBN IN DT NN . The Palestinian Authority runs the West Bank , while Hamas has control over the Gaza Strip . DT JJ NNP VBZ DT NNP NNP , IN NNP VBZ NN IN DT NNP NNP . The Palestinian Islamist group took control of Gaza in 2007 , after battling forces loyal to Palestinian President Mahmoud Abbas . DT JJ NN NN VBD NN IN NNP IN CD , IN VBG NNS JJ TO JJ NNP NNP NNP . The United States says it is providing nearly $ 19 million in emergency aid for Ethiopia 's volatile Ogaden region . DT NNP NNPS VBZ PRP VBZ VBG RB $ CD CD IN NN NN IN NNP POS JJ NNP NN . The State Department said Friday Washington is working with the Ethiopian government , international partners and non-governmental organizations in responding to concerns over humanitarian conditions in the eastern region . DT NNP NNP VBD NNP NNP VBZ VBG IN DT JJ NN , JJ NNS CC JJ NNS IN VBG TO NNS IN JJ NNS IN DT JJ NN . The U.S. says most of the $ 18.7 million will help provide food assistance through the United Nations World Food Program . DT NNP VBZ JJS IN DT $ CD CD MD VB VB NN NN IN DT NNP NNP NNP NNP NNP . Some funds also will help pay for health , nutrition , and livelihood programs . DT NNS RB MD VB VB IN NN , NN , CC NN NNS . Years of drought , flooding , civil conflict , disease and food shortages have left residents in Ogaden vulnerable to poverty and famine . NNS IN NN , NN , JJ NN , NN CC NN NNS VBP VBN NNS IN NNP NN TO NN CC NN . Ethiopia 's Ogaden , also known as the Somali region , is an oil-rich , but poor area that is ethnically Somali . NNP POS NNP , RB VBN IN DT JJ NN , VBZ DT NN , CC JJ NN WDT VBZ RB JJ . It has long sought autonomy from Addis Ababa . PRP VBZ RB VBN NN IN NNP NNP . Former Yugoslav President Slobodan Milosevic has asked The Hague tribunal to subpoena British Prime Minister Tony Blair and former U.S. President Bill Clinton as defense witnesses in his war crimes case . JJ JJ NNP NNP NNP VBZ VBN DT NNP NN TO VB JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP IN NN NNS IN PRP$ NN NNS NN . Mr. Milosevic said he has sent letters to embassies of a number of western countries requesting the testimony . NNP NNP VBD PRP VBZ VBN NNS TO NNS IN DT NN IN JJ NNS VBG DT NN . But he said their responses indicate the officials are not willing to appear . CC PRP VBD PRP$ NNS VBP DT NNS VBP RB JJ TO VB . The judges instructed Mr. Milosevic to present his request in writing . DT NNS VBD NNP NNP TO VB PRP$ NN IN NN . His witness list also includes former U.S , Secretary of State Madeleine Albright , German Chancellor Gerhard Schroeder and German Defense Minister Rudolf Scharping . PRP$ NN NN RB VBZ JJ NNP , NNP IN NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP NNP . Mr. Milosevic 's request came as he resumed conducting his own case after the court reversed an order forcing him to accept appointed counsel because of concerns about his failing health . NNP NNP POS NN VBD IN PRP VBD VBG PRP$ JJ NN IN DT NN VBD DT NN VBG PRP TO VB JJ NN IN IN NNS IN PRP$ VBG NN . Mr. Milosevic faces more than 60 counts of war crimes in the Balkan conflicts of the 1990s . NNP NNP VBZ JJR IN CD NNS IN NN NNS IN DT JJ NNS IN DT NNS . Ethiopia 's foreign ministry says authorities have pardoned nearly 18,000 prisoners to mark the occasion of the country 's third millennium . NNP POS JJ NN VBZ NNS VBP VBN RB CD NNS TO VB DT NN IN DT NN POS JJ NN . In a statement Friday the ministry says the federal and regional governments pardoned 17,765 prisoners after reviewing recommendations made by national and regional pardon boards . IN DT NN NNP DT NN VBZ DT JJ CC JJ NNS VBN CD NNS IN VBG NNS VBN IN JJ CC JJ NN NNS . It said the pardons were issued September 11 , on the eve of the nation 's new year and millennium celebration . PRP VBD DT NNS VBD VBN NNP CD , IN DT NN IN DT NN POS JJ NN CC NN NN . Ethiopia celebrated the new millennium on September 12 - seven years after the rest of most of the world . NNP VBD DT JJ NN IN NNP CD : CD NNS IN DT NN IN JJS IN DT NN . Ethiopia follows the Julian calendar , instead of the more common Gregorian calendar . NNP VBZ DT JJ NN , RB IN DT RBR JJ JJ NN . It is not the first time the nation has issued pardons at the new year . PRP VBZ RB DT JJ NN DT NN VBZ VBN NNS IN DT JJ NN . Last year , at this time , Ethiopia pardoned more than 14,000 prisoners . JJ NN , IN DT NN , NNP VBD JJR IN CD NNS . The ministry suggested more pardons could be coming , saying that the pardon boards in the Afar and Somali regions are still examining applications . DT NN VBD JJR NNS MD VB VBG , VBG IN DT NN NNS IN DT NNP CC JJ NNS VBP RB VBG NNS . A U.N. official in Afghanistan says the H5N1 strain of bird flu has been found in a fourth Afghan province , and says that indicates the virus is slowly spreading around the country . DT NNP NN IN NNP VBZ DT NNP NN IN NN NN VBZ VBN VBN IN DT JJ JJ NN , CC VBZ IN VBZ DT NN VBZ RB VBG IN DT NN . The spokesman for the U.N. 's Food and Agriculture Organization , Assadullah Azhari , says laboratory tests in Italy detected the virus in samples from dead chickens found in Kapisa province , northeast of the capital , Kabul . DT NN IN DT NNP POS NNP CC NNP NNP , NNP NNP , VBZ NN NNS IN NNP VBD DT NN IN NNS IN JJ NNS VBN IN NNP NN , NN IN DT NN , NNP . The H5N1 strain of bird flu has already been found in the capital , Kabul , and the eastern provinces of Logar and Nangarhar . DT NNP NN IN NN NN VBZ RB VBN VBN IN DT NN , NNP , CC DT JJ NNS IN NNP CC NNP . The U.N. official says there are strong suspicions the virus has reached two other provinces , Laghman and Parwan , but says further testing is needed . DT NNP NN VBZ EX VBP JJ NNS DT NN VBZ VBN CD JJ NNS , NNP CC NNP , CC VBZ JJ NN VBZ VBN . The official says the FAO is supporting efforts by Afghan authorities to strengthen nationwide surveillance of suspected bird flu outbreaks . DT NN VBZ DT NNP VBZ VBG NNS IN JJ NNS TO VB JJ NN IN JJ NN NN NNS . No human cases of bird flu have been reported in Afghanistan . DT JJ NNS IN NN NN VBP VBN VBN IN NNP . Republican presidential candidate John McCain has accused former Defense Secretary Donald Rumsfeld of mismanaging the war in Iraq . JJ JJ NN NNP NNP VBZ VBN JJ NNP NNP NNP NNP IN VBG DT NN IN NNP . At a campaign stop Monday in South Carolina , McCain , a supporter of the war in Iraq , said Rumsfeld will be remembered as one of the worst defense secretaries in history . IN DT NN NN NNP IN NNP NNP , NNP , DT NN IN DT NN IN NNP , VBD NNP MD VB VBN IN CD IN DT JJS NN NNS IN NN . McCain said the United States has paid a heavy price for the mismanagement of the war . NNP VBD DT NNP NNPS VBZ VBN DT JJ NN IN DT NN IN DT NN . McCain is a member of President Bush 's Republican party . NNP VBZ DT NN IN NNP NNP POS JJ NN . He is seeking the party 's nomination to run for president in 2008 . PRP VBZ VBG DT NN POS NN TO VB IN NN IN CD . At Rumsfeld 's farewell ceremony in December , President Bush praised Rumsfeld 's strategic vision , deep devotion to the military , and love for the United States . IN NNP POS JJ NN IN NNP , NNP NNP VBD NNP POS JJ NN , JJ NN TO DT NN , CC NN IN DT NNP NNPS . At the same event , Vice President Dick Cheney said Rumsfeld was the finest defense secretary the nation ever had . IN DT JJ NN , NNP NNP NNP NNP VBD NNP VBD DT JJS NN NN DT NN RB VBD . Australian Prime Minister John Howard says a hasty pullout of foreign troops from Iraq would represent a defeat for the West . JJ NNP NNP NNP NNP VBZ DT JJ NN IN JJ NNS IN NNP MD VB DT NN IN DT NNP . In an interview on Australian television , Mr. Howard says such a defeat would undermine Australia 's security and the authority of the United States as a world superpower . IN DT NN IN JJ NN , NNP NNP VBZ PDT DT NN MD VB NNP POS NN CC DT NN IN DT NNP NNPS IN DT NN NN . He says anyone who believes withdrawing from Iraq will strengthen the West ' has taken leave of their senses ' . PRP VBZ DT WP VBZ VBG IN NNP MD VB DT NN `` VBZ VBN NN IN PRP$ NNS `` . Australia has about 1,300 troops in Iraq as part of the U.S.-led coalition . NNP VBZ IN CD NNS IN NNP IN NN IN DT JJ NN . Mr. Howard warned against pulling Australian troops out while other coalition forces remain . NNP NNP VBD IN VBG JJ NNS IN IN JJ NN NNS VBP . He says doing so would cause long-term damage to Australia 's alliance with the U.S. Mr. Howard reiterated his support for the U.S. position that foreign forces should only leave Iraq when the Iraqis can look after security themselves . PRP VBZ VBG RB MD VB JJ NN TO NNP POS NN IN DT NNP NNP NNP VBD PRP$ NN IN DT NNP NN IN JJ NNS MD RB VB NNP WRB DT NNS MD VB IN NN PRP . Former U.S. Secretary of State Colin Powell has criticized the Hurricane Katrina relief effort . JJ NNP NNP IN NNP NNP NNP VBZ VBN DT NNP NNP NN NN . In a taped ABC television interview to air late Friday , Mr. Powell expressed his opinion that ' there have been a lot of failures at a lot of levels - [ of ] local , state and federal [ government ] . ' IN DT VBN NNP NN NN TO VB JJ NNP , NNP NNP VBD PRP$ NN IN `` EX VBP VBN DT NN IN NNS IN DT NN IN NNS IN LRB IN RRB JJ , NN CC JJ LRB NN RRB . `` The former top U.S. diplomat said ' there was more than enough warning over time about the dangers to New Orleans , ' but not enough was done . DT JJ JJ NNP NN VBD `` EX VBD JJR IN JJ NN IN NN IN DT NNS TO NNP NNP , `` CC RB RB VBD VBN . Mr. Powell , who was the highest ranking black official during President Bush 's first term , says he does not believe race was a factor in the slow response to the hurricane . NNP NNP , WP VBD DT JJS JJ JJ NN IN NNP NNP POS JJ NN , VBZ PRP VBZ RB VB NN VBD DT NN IN DT JJ NN TO DT NN . Mr. Powell says many of those unable to evacuate New Orleans before Katrina struck were trapped by poverty , which disproportionately affects blacks . NNP NNP VBZ NN IN DT JJ TO VB NNP NNP IN NNP VBD VBD VBN IN NN , WDT RB VBZ NNS . New studies by British and French researchers show quick treatment for minor strokes can dramatically cut the risk of major strokes later . JJ NNS IN JJ CC JJ NNS VBP JJ NN IN JJ NNS MD RB VB DT NN IN JJ NNS RB . The research , published in the journals Lancetand Lancet Neurology , found that patients treated within 24 hours for so-called mini-strokes cut the later risk of a major stroke by about 80 percent . DT NN , VBN IN DT NNS NNP NNP NNP , VBD IN NNS VBD IN CD NNS IN JJ NNS VBD DT JJ NN IN DT JJ NN IN IN CD NN . Oxford researcher Peter Rothwell says the vast majority of British stroke patients wait several weeks before reporting mini-stroke symptoms to health care professionals . NNP NN NNP NNP VBZ DT JJ NN IN JJ NN NNS VBP JJ NNS IN VBG NN NNS IN NN NN NNS . The second study by French researchers also found that the early , aggressive treatment of mini-strokes brought similar benefits . DT JJ NN IN JJ NNS RB VBD IN DT JJ , JJ NN IN NNS VBD JJ NNS . Strokes occur when blood flow to the brain is blocked . NNS VBP WRB NN NN TO DT NN VBZ VBN . Such events kill brain tissue and are one of the leading causes of death or permanent disability worldwide . JJ NNS VBP NN NN CC VBP CD IN DT VBG NNS IN NN CC JJ NN NN . Symptoms include facial numbness , slurred speech , partial paralysis and sudden headaches . NNS VBP JJ NN , VBD NN , JJ NN CC JJ NNS . Treatments include blood thinning drugs and anti-cholesterol medications . NNS VBP NN VBG NNS CC JJ NNS . Crude oil prices fell Wednesday after a U.S. government report showed an increase in inventories , reflecting decreased demand . JJ NN NNS VBD NNP IN DT NNP NN NN VBD DT NN IN NNS , VBG JJ NN . The price of a barrel of oil for future delivery fell 35 cents [ about one percent ] to $ 38.68 a barrel during trading in New York . DT NN IN DT NN IN NN IN JJ NN VBD CD NNS LRB IN CD NN RRB IN $ CD DT NN IN NN IN NNP NNP . The fall in prices followed a U.S. Energy Department report showing crude oil supplies in the U.S. rose last week by 5,49,000 barrels , or about two-tenths of one percent . DT NN IN NNS VBD DT NNP NNP NNP NN VBG JJ NN NNS IN DT NNP VBD JJ NN IN CD NNS , CC IN NNS IN CD NN . Iraqi police say a U.S. airstrike on a home in northern Iraq late Monday killed a number of people from the same family , but there are conflicting reports about the incident . JJ NNS VBP DT NNP NN IN DT NN IN JJ NNP JJ NNP VBD DT NN IN NNS IN DT JJ NN , CC EX VBP VBG NNS IN DT NN . Residents in the town of Bayji say at least seven bodies were pulled from the rubble . NNS IN DT NN IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN . Locals say there may be several more people inside . NNS VBP EX MD VB JJ JJR NNS RB . U.S. military officials have not commented on the Iraqi police report . NNP JJ NNS VBP RB VBN IN DT JJ NN NN . But the military issued a statement saying three men who were observed planting roadside bombs in Bayji later went to a nearby building , which was fired on by U.S. aircraft using precision-guided munitions . CC DT JJ VBD DT NN VBG CD NNS WP VBD VBN VBG NN NNS IN NNP RB VBD TO DT JJ NN , WDT VBD VBN IN IN NNP NN VBG JJ NNS . Separately , Iraq 's election commission and international observers are now in Baghdad to review fraud allegations from last month 's parliamentary vote . RB , NNP POS NN NN CC JJ NNS VBP RB IN NNP TO VB NN NNS IN JJ NN POS JJ NN . Final election results are not expected until after the visiting experts complete their work . JJ NN NNS VBP RB VBN IN IN DT VBG NNS VB PRP$ NN . Lebanon 's pro-Syrian President Emile Lahoud visited the home of slain former prime minister Rafik Hariri Friday , to express his condolences to the late politician 's family . NNP POS JJ NNP NNP NNP VBD DT NN IN NN JJ JJ NN NNP NNP NNP , TO VB PRP$ NNS TO DT JJ NN POS NN . Mr. Lahoud made no public comments after the visit . NNP NNP VBD DT JJ NNS IN DT NN . Mr. Lahoud and Cabinet members were told by Hariri 's family not to attend Wednesday 's funeral in Beirut , which attracted more than 2,00,000 mourners . NNP NNP CC NNP NNS VBD VBN IN NNP POS NN RB TO VB NNP POS NN IN NNP , WDT VBD JJR IN CD NNS . The Hariri family and Lebanese opposition politicians accuse Syria , the main power broker in Lebanon , of involvement in Monday 's car bomb attack that killed Mr. Hariri . DT NNP NN CC JJ NN NNS VBP NNP , DT JJ NN NN IN NNP , IN NN IN NNP POS NN NN NN WDT VBD NNP NNP . Damascus has denied any role in the assassination . NNP VBZ VBN DT NN IN DT NN . Meanwhile , Lebanese officials say they are searching for several men who flew from Beirut to Australia shortly after the attack . RB , JJ NNS VBP PRP VBP VBG IN JJ NNS WP VBD IN NNP TO NNP RB IN DT NN . The French News Agency quotes Lebanon 's Justice Minister as saying traces of explosives were found on their aircraft 's seats . DT NNP NNP NNP VBZ NNP POS NNP NNP IN VBG NNS IN NNS VBD VBN IN PRP$ NN POS NNS . Oil prices went as high as $ 103.05 a barrel in Friday 's trading - the highest price ever recorded - before easing slightly . NN NNS VBD RB JJ IN $ CD DT NN IN NNP POS NN IN DT JJS NN RB VBN : IN VBG RB . It is the latest in a string of record-highs set in recent days as a weakening U.S. dollar and the threat of inflation makes tangible assets like oil and other commodities more attractive to investors . PRP VBZ DT JJS IN DT NN IN NNS VBN IN JJ NNS IN DT NN NNP NN CC DT NN IN NN VBZ JJ NNS IN NN CC JJ NNS RBR JJ TO NNS . Speculators interpreted recent comments by the head of the U.S. central bank Ben Bernanke as pointing to further interest rate cuts . NNS VBD JJ NNS IN DT NN IN DT NNP JJ NN NNP NNP IN VBG TO JJ NN NN NNS . Interest rate reductions are intended to boost U.S. economic growth , but can also further weaken the dollar . NN NN NNS VBP VBN TO VB NNP JJ NN , CC MD RB RB VB DT NN . Members of the Organization of Petroleum Exporting Countries are scheduled to consider oil supply and price policies at a meeting on March 5 . NNS IN DT NNP IN NNP NNP NNPS VBP VBN TO VB NN NN CC NN NNS IN DT NN IN NNP CD . The nations making up the OPEC cartel pump about 40 percent of the world 's oil . DT NNS VBG RP DT NNP NN NN IN CD NN IN DT NN POS NN . Haiti 's interim Prime Minister Gerard Latortue says he has no plans to send a special envoy to South Africa to meet with ousted Haitian President Jean-Bertrand Aristide . NNP POS NNP NNP NNP NNP NNP VBZ PRP VBZ DT NNS TO VB DT JJ NN TO NNP NNP TO VB IN JJ JJ NNP NNP NNP . Earlier reports said Mr. Latortue was sending a representative to talk with Mr. Aristide and South African President Thabo Mbeki . RBR NNS VBD NNP NNP VBD VBG DT NN TO VB IN NNP NNP CC NNP NNP NNP NNP NNP . Mr. Aristide has been living in exile in South Africa since he was forced from power last February . NNP NNP VBZ VBN VBG IN NN IN NNP NNP IN PRP VBD VBN IN NN JJ NNP . The reports said the envoy would try to convince Mr. Aristide to persuade his followers to stop fighting his foes and help stabilize Haiti before elections planned this year . DT NNS VBD DT NN MD VB TO VB NNP NNP TO VB PRP$ NNS TO VB VBG PRP$ NNS CC VB VB NNP IN NNS VBN DT NN . More than 200 people have died in the violence since September . JJR IN CD NNS VBP VBN IN DT NN IN NNP . United Nations Secretary-General Kofi Annan has warned governments around the world not to ignore international agreements prohibiting torture . NNP NNP NNP NNP NNP VBZ VBN NNS IN DT NN RB TO VB JJ NNS VBG NN . In a statement issued for International Human Rights Day Saturday , Mr. Annan said there has been a disturbing trend of nations claiming exceptions to prohibitions on torture , based on their own national security perceptions . IN DT NN VBN IN NNP NNP NNP NNP NNP , NNP NNP VBD EX VBZ VBN DT JJ NN IN NNS VBG NNS TO NNS IN NN , VBN IN PRP$ JJ JJ NN NNS . The U.N. chief said torture can never be a tool to fight terror , but rather is an instrument of terror . DT NNP NN VBD NN MD RB VB DT NN TO VB NN , CC RB VBZ DT NN IN NN . In a separate statement , 33 U.N. human rights experts expressed alarm at attempts by many countries to circumvent international human rights laws by giving new names to practices such as torture . IN DT JJ NN , CD NNP JJ NNS NNS VBD NN IN NNS IN JJ NNS TO JJ JJ JJ NNS NNS IN VBG JJ NNS TO NNS JJ IN NN . The experts called on governments to respect human rights standards and to not ignore them when they become , in the statement 's wording , ' inconvenient . ' DT NNS VBD IN NNS TO VB JJ NNS NNS CC TO RB VB PRP WRB PRP VBP , IN DT NN POS NN , `` JJ . `` Meteorologists say the storm known as Rita has strengthened into a category 1 hurricane . NNS VBP DT NN VBN IN NNP VBZ VBN IN DT NN CD NN . The U.S. National Hurricane Center says Rita is packing winds of about 120 kilometers per hour as it moves west , past the Bahamas and toward the Florida Keys . DT NNP NNP NNP NNP VBZ NNP VBZ VBG NNS IN IN CD NNS IN NN IN PRP VBZ NN , IN DT NNPS CC IN DT NNP NNPS . The storm reportedly caused little damage in the Bahamas . DT NN RB VBD JJ NN IN DT NNPS . However , thousands of tourists and residents have fled the Keys , a low-lying chain of islands off Florida 's southern coast . RB , NNS IN NNS CC NNS VBP VBN DT NNP , DT JJ NN IN NNS IN NNP POS JJ NN . Hurricane warnings remain in effect for the Keys and parts of western Cuba , including Havana . NNP NNS VBP IN NN IN DT NNS CC NNS IN JJ NNP , VBG NNP . Forecasters expect Rita to enter the Gulf of Mexico by Wednesday , and say it is possible that Rita will strike areas along the U.S. Gulf Coast devastated three weeks ago by Hurricane Katrina . NNS VBP NNP TO VB DT NNP IN NNP IN NNP , CC VB PRP VBZ JJ IN NNP MD VB NNS IN DT NNP NNP NNP VBD CD NNS RB IN NNP NNP . The Palestinian militant group , Hamas , says Syria has detained four Arabs allegedly recruited by Israel to kill Damascus-based Hamas political leader Khaled Meshaal . DT JJ JJ NN , NNP , VBZ NNP VBZ VBN CD NNS RB VBN IN NNP TO VB JJ NNP JJ NN NNP NNP . Speaking Tuesday in Lebanon , a Hamas spokesman said the four detainees are members of an Arab security service from an unidentified Middle East country . VBG NNP IN NNP , DT NNP NN VBD DT CD NNS VBP NNS IN DT JJ NN NN IN DT JJ NNP NNP NN . The Syrian government has not commented . DT JJ NN VBZ RB VBN . Khaled Meshaal is widely viewed as Hamas ' overall leader , since Israel assassinated two other top Hamas figures earlier this year . NNP NNP VBZ RB VBN IN NNP POS JJ NN , IN NNP VBD CD JJ JJ NNP NNS RBR DT NN . The latest Hamas charges come more than a month after Israel promised to restart an assassination campaign targeting Palestinian militants at home and abroad . DT JJS NNP NNS VBP JJR IN DT NN IN NNP VBD TO VB DT NN NN VBG JJ NNS IN NN CC RB . Israel announced the new assassination push days after Hamas suicide bombers struck two buses in southern Israel , killing 16 people . NNP VBD DT JJ NN NN NNS IN NNP NN NNS VBD CD NNS IN JJ NNP , VBG CD NNS . Iran 's chief nuclear negotiator says Tehran has only agreed to a temporary freeze of some nuclear activities , and will never completely give up the right to produce nuclear fuel for peaceful purposes . NNP POS JJ JJ NN VBZ NNP VBZ RB VBN TO DT JJ NN IN DT JJ NNS , CC MD RB RB VB RP DT NN TO VB JJ NN IN JJ NNS . Hassan Rohani told reporters Tuesday in Tehran that Iran will only suspend uranium enrichment for the length of international negotiations on the country 's nuclear program , which he says should take months , not years . NNP NNP VBD NNS NNP IN NNP IN NNP MD RB VB NN NN IN DT NN IN JJ NNS IN DT NN POS JJ NN , WDT PRP VBZ MD VB NNS , RB NNS . A U.S. State Department spokesman Richard Boucher said Monday the world must ' remain vigilant ' about Iran 's nuclear ambitions . DT NNP NNP NNP NN NNP NNP VBD NNP DT NN MD `` VBP JJ `` IN NNP POS JJ NNS . He said if Iran fails to uphold the terms of Monday 's European-brokered resolution , the International Atomic Energy Agency should immediately refer Tehran to the U.N. Security Council for the possible imposition of sanctions . PRP VBD IN NNP VBZ TO VB DT NNS IN NNP POS JJ NN , DT NNP NNP NNP NNP MD RB VB NNP TO DT NNP NNP NNP IN DT JJ NN IN NNS . Washington has accused Tehran of violating the Nuclear Non-Proliferation Treaty with a secret nuclear weapons development program . NNP VBZ VBN NNP IN VBG DT NNP NNP NNP IN DT JJ JJ NNS NN NN . Iran has repeatedly denied the charges . NNP VBZ RB VBN DT NNS . Russian police confirm that a shrapnel-packed bomb exploded Sunday in a McDonald 's restaurant in St. Petersburg , injuring six people . JJ NNS VBP IN DT JJ NN VBD NNP IN DT NNP POS NN IN NNP NNP , VBG CD NNS . The blast shattered windows and caused the ceiling to collapse . DT NN VBD NNS CC VBD DT NN TO NN . None of the injuries was serious . NN IN DT NNS VBD JJ . Investigators say the bomb was left under a table at the fast food restaurant along Nevsky Prospekt , St. Petersburg 's main street . NNS VBP DT NN VBD VBN IN DT NN IN DT JJ NN NN IN NNP NNP , NNP NNP POS JJ NN . Authorities have not said if the attack was terrorist-related . NNS VBP RB VBN IN DT NN VBD JJ . A car bombing of a Moscow McDonald 's by Muslim extremists in 2002 killed one person and wounded seven . DT NN NN IN DT NNP NNP POS IN NNP NNS IN CD VBD CD NN CC VBD CD . The U.S. military has confirmed that it shot down an unmanned Iranian aircraft over Iraq last month . DT NNP NN VBZ VBN IN PRP VBD RP DT JJ JJ NN IN NNP JJ NN . A military spokesman Monday said U.S. forces tracked the drone in Iraqi airspace for one hour and ten minutes before shooting it down , about 100 kilometers north of Baghdad . DT JJ NN NNP VBD NNP NNS VBD DT NN IN JJ NN IN CD NN CC CD NNS IN VBG PRP RP , IN CD NNS RB IN NNP . The spokesman added that ' this was not an accident on the part of the Iranians . ' DT NN VBD IN `` DT VBD RB DT NN IN DT NN IN DT NNS . `` The incident was first reported by Wired.com earlier this month but , at the time , the U.S. military declined comment . DT NN VBD JJ VBN IN NNP RBR DT NN CC , IN DT NN , DT NNP NN VBD NN . Washington has previously accused Iran of meddling in the affairs of neighboring Iraq , where the U.S. has had troops since it invaded the country in 2003 . NNP VBZ RB VBN NNP IN VBG IN DT NNS IN VBG NNP , WRB DT NNP VBZ VBN NNS IN PRP VBD DT NN IN CD . The Palestinian militant group Hamas Thursday banned men from working in hair salons or beauty parlors that cater to women , part of a campaign to enforce a stricter interpretation of Muslim law . DT JJ JJ NN NNP NNP VBD NNS IN VBG IN NN NNS CC NN NNS WDT VBP TO NNS , NN IN DT NN TO VB DT JJR NN IN NNP NN . Hamas officials said any man who continues to cut women 's hair will be arrested and tried in court . NNP NNS VBD DT NN WP VBZ TO VB NNS POS NN MD VB VBN CC VBN IN NN . Islamic extremists in Gaza have been waging a campaign against cafes and shops that sell or play music deemed unsuitable , as well as against Christian institutions . JJ NNS IN NNP VBP VBN VBG DT NN IN NNS CC NNS WDT VBP CC VBP NN VBN JJ , RB RB IN IN JJ NNS . They have called on Hamas to impose a more fundamentalist brand of Islam . PRP VBP VBN IN NNP TO VB DT RBR JJ NN IN NNP . One hairdresser who is impacted by the ban - Barakat al-Ghoul - told the Associated Press he fears he will no longer be able to make a living . CD NN WP VBZ VBN IN DT NN IN NNP NNP : VBD DT NNP NNP PRP VBZ PRP MD RB RB VB JJ TO VB DT NN . Al-Ghoul said he had been cutting women 's hair for 26 years . NNP VBD PRP VBD VBN VBG NNS POS NN IN CD NNS . He insisted he did not violate Islamic law because he only cuts hair and does not do makeup . PRP VBD PRP VBD RB VB JJ NN IN PRP RB VBZ NN CC VBZ RB VB NN . The head of the U.N. nulcear agency says Iran has agreed to allow inspectors access to a military site that the United States alleges is linked to a secret nuclear weapons program . DT NN IN DT NNP NN NN VBZ NNP VBZ VBN TO VB NNS NN TO DT JJ NN IN DT NNP NNPS VBZ VBZ VBN TO DT JJ JJ NNS NN . Mohamed ElBaradei , the chief of the International Atomic Energy Agency , said in Vienna Wednesday U.N. inspectors could be expected to visit the Parchin military complex ' within days or weeks . ' NNP NNP , DT NN IN DT NNP NNP NNP NNP , VBD IN NNP NNP NNP NNS MD VB VBN TO VB DT NNP JJ NN `` IN NNS CC NNS . `` The IAEA has been pressing Iran for months for access to the military site , located about 30 kilometers southeast of Tehran . DT NNP VBZ VBN VBG NNP IN NNS IN NN TO DT JJ NN , VBN IN CD NNS NN IN NNP . The United States says it suspects the Iranian military may be involved in nuclear arms research at the specially secured complex . DT NNP NNPS VBZ PRP VBZ DT JJ NN MD VB VBN IN JJ NNS NN IN DT RB VBN NN . Iran insists that its nuclear activity is for peaceful purposes and that its military is not involved . NNP VBZ IN PRP$ JJ NN VBZ IN JJ NNS CC IN PRP$ NN VBZ RB VBN . Italy says an Italian photographer kidnapped in Afghanistan last month has been freed . NNP VBZ DT JJ NN VBN IN NNP JJ NN VBZ VBN VBN . Italy 's Defense Ministry said Gabriele Torsello was released Friday . NNP POS NNP NNP VBD NNP NNP VBD VBN NNP . It gave no details . PRP VBD DT NNS . Torsello and his interpreter disappeared between October 12 and 14 . NNP CC PRP$ NN VBD IN NNP CD CC CD . Torsello 's kidnappers had said they would kill him if Italy 's 18,00 troops were not withdrawn from Afghanistan . NNP POS NNS VBD VBN PRP MD VB PRP IN NNP POS CD NNS VBD RB VBN IN NNP . In western Herat province , suspected militants with machine guns killed six policemen on patrol . IN JJ NNP NN , VBN NNS IN NN NNS VBD CD NNS IN NN . The district police chief was among those killed , and three police were wounded . DT NN NN NN VBD IN DT VBN , CC CD NNS VBD VBN . A U.S. newspaper reports that Washington is asking China to pressure North Korea on its alleged nuclear weapons program . DT NNP NN VBZ IN NNP VBZ VBG NNP TO VB NNP NNP IN PRP$ JJ JJ NNS NN . A story in Wednesday 's New York Times says two members of President Bush 's National Security Council recently met with Chinese President Hu Jintao in Beijing . DT NN IN NNP POS NNP NNP NNP VBZ CD NNS IN NNP NNP POS NNP NNP NNP RB VBD IN JJ NNP NNP NNP IN NNP . The report says the officials discussed new evidence that Pyongyang may have sold to Libya a form of uranium used in nuclear weapons . DT NN VBZ DT NNS VBD JJ NN IN NNP MD VB VBN TO NNP DT NN IN NN VBN IN JJ NNS . The Times quotes Asian officials who say China has promised to send a delegation to North Korea . DT NNP VBZ JJ NNS WP VBP NNP VBZ VBN TO VB DT NN TO NNP NNP . But the officials say China also advised President Bush against making the kind of public statements about the North Korean situation as he did about Iraq 's alleged threat before the U.S.-led invasion in 2003 . CC DT NNS VBP NNP RB VBD NNP NNP IN VBG DT NN IN JJ NNS IN DT JJ JJ NN IN PRP VBD IN NNP POS JJ NN IN DT JJ NN IN CD . Iran 's President Mahmoud Ahmadinejad has ordered state-run broadcasters to stop playing Western and so-called ' indecent ' music . NNP POS NNP NNP NNP VBZ VBN JJ NNS TO VB VBG JJ CC JJ `` JJ `` NN . Iranian media reported Monday that he asked the agency in charge of television and radio broadcasts , the Islamic Republic of Iran Broadcasting , to implement the change within six months . JJ NNS VBD NNP IN PRP VBD DT NN IN NN IN NN CC NN NNS , DT NNP NNP IN NNP NNP , TO VB DT NN IN CD NNS . Mr. Ahmadinejad also called for the government to supervise the content of foreign-made television shows and films . NNP NNP RB VBD IN DT NN TO VB DT NN IN JJ NN NNS CC NNS . Mr. Ahmadinejad was elected earlier this year on a hard-line platform that called for a return to conservative principles . NNP NNP VBD VBN RBR DT NN IN DT JJ NN WDT VBD IN DT NN TO JJ NNS . Music performances and education in Iran had been sharply limited after Islamic clerics seized power in Iran in 1979 . JJ NNS CC NN IN NNP VBD VBN RB VBN IN NNP NNS VBD NN IN NNP IN CD . Many of those limits have been relaxed in recent years . NN IN DT NNS VBP VBN VBN IN JJ NNS . Australia 's foreign minister has met with the Solomon Islands ' newly elected prime minister , Snyder Rini , following violent protests on the island nation this week that were sparked by his appointment . NNP POS JJ NN VBZ VBN IN DT NNP NNP POS RB VBN JJ NN , NNP NNP , VBG JJ NNS IN DT NN NN DT NN WDT VBD VBN IN PRP$ NN . Speaking Saturday in the capital , Honiara , visiting Foreign Minister Alexander Downer said he told Mr. Rini that economic reform is going to be central to the survival of the country . VBG NNP IN DT NN , NNP , VBG NNP NNP NNP NNP VBD PRP VBD NNP NNP IN JJ NN VBZ VBG TO VB JJ TO DT NN IN DT NN . Downer said he also addressed corruption issues with Mr. Rini . NNP VBD PRP RB VBD NN NNS IN NNP NNP . Riots erupted Tuesday in Honiara after Mr. Rini was appointed prime minister . NNS VBD NNP IN NNP IN NNP NNP VBD VBN JJ NN . Opponents accuse him of being under the influence of ethnic-Chinese businessmen . NNS VBP PRP IN VBG IN DT NN IN JJ NNS . Mr. Rini denies the allegations and has refused demands that he resign . NNP NNP VBZ DT NNS CC VBZ VBN NNS IN PRP VB . Honiara is reported to be quiet Saturday , with Australian troops patrolling the streets . NNP VBZ VBN TO VB JJ NNP , IN JJ NNS VBG DT NNS . Friday , Australia said it will send 110 additional troops to the Solomon Islands . NNP , NNP VBD PRP MD VB CD JJ NNS TO DT NNP NNP . Afghan authorities say NATO and Afghan troops have retrieved the flight recorder from the wreckage of an Afghan airliner , ten days after the plane crashed into a mountain near Kabul . JJ NNS VBP NNP CC JJ NNS VBP VBN DT NN NN IN DT NN IN DT JJ NN , JJ NNS IN DT NN VBD IN DT NN IN NNP . An Afghan Defense Ministry spokesman says the flight recorder , also known as ' black box , ' is now in the hands of the investigating commission . DT JJ NNP NNP NN VBZ DT NN NN , RB VBN IN `` JJ NN , `` VBZ RB IN DT NNS IN DT VBG NN . A break in bad winter weather earlier Sunday allowed troops and investigators to reach the crash site for the first time since the Boeing 737 hit the mountain during a blizzard . DT NN IN JJ NN NN JJR NNP VBD NNS CC NNS TO VB DT NN NN IN DT JJ NN IN DT NNP CD VBD DT NN IN DT NN . None of the 104 people on board survived the crash , making it Afghanistan 's worst civil aviation disaster . NN IN DT CD NNS IN NN VBD DT NN , VBG PRP NNP POS JJS JJ NN NN . Authorities estimate the recovery of the remains will take weeks . NNS VBP DT NN IN DT NNS MD VB NNS . Mexican police say gunmen shot 13 recovering drug addicts inside a rehabilitation center , killing at least 10 of them . JJ NNS VBP NNS VBD CD VBG NN NNS IN DT NN NN , VBG IN JJS CD IN PRP . Witnesses say the armed men burst into the center , lined up the clients and opened fire on them . NNS VBP DT JJ NNS VBD IN DT NN , VBD RP DT NNS CC VBD NN IN PRP . The attack took place Sunday in the city of Tijuana , near the U.S. border . DT NN VBD NN NNP IN DT NN IN NNP , IN DT NNP NN . Police did not immediately identify a motive . NNS VBD RB RB VB DT NN . But authorities suspect the killings may be linked to drug gangs . CC NNS VBP DT NNS MD VB VBN TO NN NNS . Mexican security forces have been engaged in a brutal struggle against the country 's violent drug cartels since President Felipe Calderon took office in 2006 . JJ NN NNS VBP VBN VBN IN DT JJ NN IN DT NN POS JJ NN NNS IN NNP NNP NNP VBD NN IN CD . Nearly 30,000 people have been killed since the campaign began . RB CD NNS VBP VBN VBN IN DT NN VBD . Last week , Mexican security forces seized 105 tons of marijuana in Tijuana , the largest Mexican drug bust in recent years . JJ NN , JJ NN NNS VBN CD NNS IN NN IN NNP , DT JJS JJ NN NN IN JJ NNS . The United Nations ' top humanitarian official is in Somalia to urge the interim government to allow humanitarian aid to reach the country 's people . DT NNP NNPS POS JJ JJ NN VBZ IN NNP TO VB DT JJ NN TO VB JJ NN TO VB DT NN POS NNS . John Holmes , who arrived in the Somali capital of Mogadishu Saturday , is the highest-ranking U.N. official to visit the Horn of Africa nation in more than a decade . NNP NNP , WP VBD IN DT JJ NN IN NNP NNP , VBZ DT JJ NNP NN TO VB DT NNP IN NNP NN IN JJR IN DT NN . Earlier Saturday , four people were killed when a bomb exploded nearly 400 meters from the U.N. compound in southern Mogadishu . RBR NNP , CD NNS VBD VBN WRB DT NN VBD RB CD NNS IN DT NNP NN IN JJ NNP . The trip by Holmes is taking place in the aftermath of heavy fighting between allied Somali-Ethiopian forces and Islamists in Mogadishu that killed hundreds of Somalis and forced up to 4,00,000 others to escape to makeshift camps on the city 's outskirts . DT NN IN NNP VBZ VBG NN IN DT NN IN JJ NN IN JJ JJ NNS CC NNS IN NNP WDT VBD NNS IN NNS CC VBD RP TO CD NNS TO VB TO VB NNS IN DT NN POS NNS . Many of them are living in squalid conditions , with little food , water or shelter . NN IN PRP VBP VBG IN JJ NNS , IN JJ NN , NN CC NN . United Nations Secretary-General Kofi Annan is calling on NATO and the European Union to do more to help end violence in Sudan 's Darfur region . NNP NNP NNP NNP NNP VBZ VBG IN NNP CC DT NNP NNP TO VB JJR TO VB VB NN IN NNP POS NNP NN . Speaking at the Munich Security Conference , Mr. Annan said NATO and the EU have the capacity to protect the people who are dying every day in western Sudan . VBG IN DT NNP NNP NNP , NNP NNP VBD NNP CC DT NNP VBP DT NN TO VB DT NNS WP VBP VBG DT NN IN JJ NNP . He said more international forces are needed to help stop fighting and to provide for secure humanitarian operations . PRP VBD RBR JJ NNS VBP VBN TO VB VB VBG CC TO VB IN JJ JJ NNS . Mr. Annan says an African Union mission of about 3,000 troops and observers in the region can not do the job alone . NNP NNP VBZ DT NNP NNP NN IN IN CD NNS CC NNS IN DT NN MD RB VB DT NN RB . Earlier this month , a U.N. panel found that civilians in Darfur have been brutalized in a campaign that may amount to crimes against humanity . RBR DT NN , DT NNP NN VBD IN NNS IN NNP VBP VBN VBN IN DT NN WDT MD VB TO NNS IN NN . Sudanese troops and pro-government forces have been fighting rebels , who launched an uprising two years ago . JJ NNS CC JJ NNS VBP VBN VBG NNS , WP VBD DT NN CD NNS RB . A leading international human rights group says it is ' deeply concerned ' for the safety of Iranian Nobel Laureate Shirin Ebadi , who has refused an order to appear before Iran 's hard-line Revolutionary Court . DT VBG JJ JJ NNS NN VBZ PRP VBZ `` RB JJ `` IN DT NN IN JJ NNP NNP NNP NNP , WP VBZ VBN DT NN TO VB IN NNP POS JJ NNP NNP . Human Rights Watch called the court summons a ' blatant attempt ' by Iran 's government to ' silence one of the few remaining voices of human rights ' in the Islamic Republic . NNP NNP NNP VBD DT NN VBZ DT `` JJ NN `` IN NNP POS NN TO `` NN CD IN DT JJ VBG NNS IN JJ NNS `` IN DT NNP NNP . In Tehran Sunday , a Foreign Ministry spokesman said the human rights lawyer was the subject of a private complaint . IN NNP NNP , DT NNP NNP NN VBD DT JJ NNS NN VBD DT NN IN DT JJ NN . However , Ms. Ebadi , in comments to Reuters news agency , cast doubt on the use of the Revolutionary Court for such complaints , noting that the tribunal handles national security matters . RB , NNP NNP , IN NNS TO NNP NN NN , VBD NN IN DT NN IN DT NNP NNP IN JJ NNS , VBG IN DT NN VBZ JJ NN NNS . Saturday , Ms. Ebadi said she would not honor the court summons , because it failed to state the charges against her . NNP , NNP NNP VBD PRP MD RB VB DT NN NNS , IN PRP VBD TO VB DT NNS IN PRP . Failure to appear could land her in prison . NN TO VB MD VB PRP IN NN . A U.S. commission has voted to shut down five Army bases , as part of the Pentagon 's plan to restructure hundreds of domestic military installations . DT NNP NN VBZ VBN TO VB RP CD NNP NNS , IN NN IN DT NNP POS NN TO VB NNS IN JJ JJ NNS . The independent Base Closure and Realignment Commission Wednesday approved the closure of facilities in Georgia , New Jersey and Virginia as commissioners began their final deliberations . DT JJ NNP NNP CC NNP NNP NNP VBD DT NN IN NNS IN NNP , NNP NNP CC NNP IN NNS VBD PRP$ JJ NNS . Fort McPherson in Georgia was one of the approved closures . NNP NNP IN NNP VBD CD IN DT VBN NNS . In May , the Pentagon recommended the closure of military installations from Maine to Hawaii . IN NNP , DT NNP VBD DT NN IN JJ NNS IN NNP TO NNP . Defense Secretary Donald Rumsfeld said the plan would save $ 49 billion over 20 years and make it easier to deploy forces quickly . NNP NNP NNP NNP VBD DT NN MD VB $ CD CD IN CD NNS CC VB PRP JJR TO VB NNS RB . President Bush must certify a final list of base closures recommended by the commission and submit the list to Congress for approval . NNP NNP MD VB DT JJ NN IN NN NNS VBN IN DT NN CC VB DT NN TO NNP IN NN . Authorities in volatile northwest Pakistan say six members of a family were killed when a grenade exploded in their vehicle Sunday . NNS IN JJ NN NNP VBP CD NNS IN DT NN VBD VBN WRB DT NN VBN IN PRP$ NN NNP . Officials in the North Waziristan tribal region say a husband , a wife and their four children were killed instantly by the blast . NNS IN DT NNP NNP JJ NN VBP DT NN , DT NN CC PRP$ CD NNS VBD VBN RB IN DT NN . Four other people were wounded . CD JJ NNS VBD VBN . Officials say they do not know whether the family was transporting the grenade or if it was planted in their vehicle . NNS VBP PRP VBP RB VB IN DT NN VBD VBG DT NN CC IN PRP VBD VBN IN PRP$ NN . On Saturday , 12 children in northwest Pakistan were killed when they mistook a bomb for a toy and began playing with it . IN NNP , CD NNS IN JJ NNP VBD VBN WRB PRP VBP DT NN IN DT NN CC VBD VBG IN PRP . A local police official , Said Zaman , said the children found the football-shaped bomb near their school in northwest Pakistan 's Lower Dir district . DT JJ NN NN , NNP NNP , VBD DT NNS VBD DT JJ NN IN PRP$ NN IN JJ NNP POS NNP NNP NN . It is not clear whether the bomb was placed there accidentally or deliberately . PRP VBZ RB JJ IN DT NN VBD VBN EX RB CC RB . Security officials in Afghanistan say a roadside bomb has ripped through a taxi outside the capital , killing at least one civilian and wounding four others . NN NNS IN NNP VBP DT NN NN VBZ VBN IN DT NN IN DT NN , VBG IN JJS CD JJ CC VBG CD NNS . Tuesday 's explosion occurred on a major road in eastern Kabul . NNP POS NN VBD IN DT JJ NN IN JJ NNP . It is not clear who planted the bomb . PRP VBZ RB JJ WP VBD DT NN . Separately , the U.S.-led coalition in Afghanistan said one of its soldiers was killed Monday in a fight with militants in Pech district of Kunar province . RB , DT JJ NN IN NNP VBD CD IN PRP$ NNS VBD VBN NNP IN DT NN IN NNS IN NNP NN IN NNP NN . The soldier 's nationality was not released . DT NN POS NN VBD RB VBN . The coalition also reports seven militants were killed in Paktika province Monday in clashes with U.S.-led troops , one of whom was slightly wounded . DT NN RB VBZ CD NNS VBD VBN IN NNP NN NNP IN NNS IN JJ NNS , CD IN WP VBD RB VBN . A statement published in Pakistan , meanwhile , reports the death last week of Younus Khalis , leader of a pro-Taleban faction in Afghanistan who had been in hiding since 2003 , when he declared a holy war against foreign forces in Afghanistan . DT NN VBN IN NNP , RB , VBZ DT NN JJ NN IN NNP NNP , NN IN DT JJ NN IN NNP WP VBD VBN IN VBG IN CD , WRB PRP VBD DT JJ NN IN JJ NNS IN NNP . Italy 's interior minister says authorities have thwarted planned terrorist attacks ahead of the country 's upcoming parliamentary elections . NNP POS JJ NN VBZ NNS VBP VBN VBN JJ NNS RB IN DT NN POS JJ JJ NNS . Giuseppe Pisanu told reporters on the sidelines of a campaign rally in Cagliari , Sardinia , that the plot targeted the Milan subway and a basilica in Bologna . NNP NNP VBD NNS IN DT NNS IN DT NN NN IN NNP , NNP , IN DT NN VBD DT NNP NN CC DT NN IN NNP . He said it involved seven people and that three of them have been expelled from Italy , two are under arrest , one is under surveillance , and another is still at large . PRP VBD PRP VBD CD NNS CC IN CD IN PRP VBP VBN VBN IN NNP , CD VBP IN NN , CD VBZ IN NN , CC DT VBZ RB IN JJ . Pisanu said the group planned to attack the San Petronio basilica in Bologna . NNP VBD DT NN VBD TO VB DT NNP NNP NN IN NNP . It features a fresco that Muslim groups have said is insulting to the Prophet Muhammad . PRP VBZ DT NN IN NNP NNS VBP VBN VBZ VBG TO DT NNP NNP . Pisanu 's remarks come as Italians are preparing for national elections on Sunday and Monday . NNP POS NNS VBP IN NNS VBP VBG IN JJ NNS IN NNP CC NNP . Russian President Vladimir Putin has ordered his administration to study foreign and domestic criticism of a bill to strictly regulate non-governmental organizations . JJ NNP NNP NNP VBZ VBN PRP$ NN TO VB JJ CC JJ NN IN DT NN TO RB VB JJ NNS . Mr. Putin offered no specific suggestions , but ordered submission of amendments to the controversial bill within five days . NNP NNP VBD DT JJ NNS , CC VBD NN IN NNS TO DT JJ NN IN CD NNS . As presently written , the bill would subject Russian branches of foreign organizations to various restrictions and to the oversight of Russian authorities . IN RB VBN , DT NN MD VB JJ NNS IN JJ NNS TO JJ NNS CC TO DT NN IN JJ NNS . Human rights groups have condemned the measure , calling it a reflection of the Kremlin 's crackdown on civil society institutions . JJ NNS NNS VBP VBN DT NN , VBG PRP DT NN IN DT NNP POS NN IN JJ NN NNS . President Putin said Monday that such a bill is necessary to combat the threats of terrorism and what he called ' misanthropic ideologies . ' NNP NNP VBD NNP IN PDT DT NN VBZ JJ TO VB DT NNS IN NN CC WP PRP VBD `` JJ NNS . `` But , he said , a civil society is crucial , and Russia can not afford to curtail that development . CC , PRP VBD , DT JJ NN VBZ JJ , CC NNP MD RB VB TO VB DT NN . A Netherlands court has opened a pretrial hearing in the case of a Dutch businessman charged with complicity in genocide by selling chemical weapons ingredients to ousted Iraqi dictator Saddam Hussein . DT NNP NN VBZ VBN DT JJ NN IN DT NN IN DT JJ NN VBN IN NN IN NN IN VBG NN NNS NNS TO JJ JJ NN NNP NNP . Frans van Anraat appeared Friday in a Rotterdam courtroom . NNP NNP NNP VBD NNP IN DT NNP NN . The 62-year-old defendant is accused of exporting tons of chemicals that Iraq used to make weapons over a four-year period beginning in 1984 . DT JJ NN VBZ VBN IN VBG NNS IN NNS IN NNP VBD TO VB NNS IN DT JJ NN VBG IN CD . Prosecutors say Saddam used the weapons in the 1988 attack on the Kurdish town of Halabja that killed 5,000 people . NNS VBP NNP VBD DT NNS IN DT CD NN IN DT JJ NN IN NNP WDT VBD CD NNS . Some survivors of the attack attended Friday 's hearing . DT NNS IN DT NN VBD NNP POS NN . A prosecutor told the court Mr. van Anraat continued to sell Iraq chemicals even after the Halabja attack . DT NN VBD DT NN NNP NNP NNP VBD TO VB NNP NNS RB IN DT NNP NN . But the defendant denies any wrongdoing . CC DT NN VBZ DT NN . Mr. van Anraat fled to Iraq in 1989 . NNP NNP NNP VBD TO NNP IN CD . He returned to the Netherlands after the U.S.-led invasion of Iraq in 2003 . PRP VBD TO DT NNP IN DT JJ NN IN NNP IN CD . Another hearing is expected in June , and the trial in November . DT NN VBZ VBN IN NNP , CC DT NN IN NNP . A 13-year-old Cambodian girl has died from bird flu , bringing to seven the number of people in the country who have died from the virus . DT JJ JJ NN VBZ VBN IN NN NN , VBG TO CD DT NN IN NNS IN DT NN WP VBP VBN IN DT NN . The World Health Organization and Cambodian Health Ministry have confirmed that the girl was infected with the H5N1 strain of bird flu . DT NNP NNP NNP CC JJ NNP NNP VBP VBN IN DT NN VBD VBN IN DT NNP NN IN NN NN . Elsewhere , Indonesia said it has confirmed another human bird flu fatality in the country . RB , NNP VBD PRP VBZ VBN DT JJ NN NN NN IN DT NN . Officials there say the 15-year-old girl 's death brings to 73 the number of people in Indonesia who have died from the H5N1 strain . NNS RB VBP DT JJ NN POS NN VBZ TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NNP NN . The WHO has not confirmed those results , and has so far confirmed only 63 people dying from bird flu in Indonesia . DT NNP VBZ RB VBN DT NNS , CC VBZ RB RB VBN RB CD NNS VBG IN NN NN IN NNP . The country has more bird flu deaths than any other nation . DT NN VBZ RBR JJ NN NNS IN DT JJ NN . WHO officials say 171 people have died from the virus worldwide since the outbreak began in 2003 , mostly in Asian countries . NNP NNS VBP CD NNS VBP VBN IN DT NN NN IN DT NN VBD IN CD , RB IN JJ NNS . Suicide bomb blasts have killed at least 12 people at a military recruitment center in central Baghdad . NN NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN NN IN JJ NNP . More than 36 others were wounded in the strike , which witnesses say was carried out by at least two attackers . JJR IN CD NNS VBD VBN IN DT NN , WDT NNS VBP VBD VBN RP IN IN JJS CD NNS . Witnesses describe a scene of devastation in the area around the blast site , and hospital officials say they were treating numerous wounded . NNS VBP DT NN IN NN IN DT NN IN DT NN NN , CC NN NNS VBP PRP VBD VBG JJ VBN . The strike took place at the same recruitment center where a suicide attack killed at least 59 people last month . DT NN VBD NN IN DT JJ NN NN WRB DT NN NN VBD IN JJS CD NNS JJ NN . Insurgents have stepped up their attacks in recent weeks , coinciding with a drawdown in U.S. troops . NNS VBP VBN RP PRP$ NNS IN JJ NNS , VBG IN DT NN IN NNP NNS . As of September first , the United States says it is no longer engaged in combat operations , renaming the mission one of advice and assistance to Iraqi forces . IN IN NNP RB , DT NNP NNPS VBZ PRP VBZ RB RB VBN IN NN NNS , VBG DT NN CD IN NN CC NN TO JJ NNS . The Iraqi government last week placed the country on highest alert . DT JJ NN JJ NN VBD DT NN IN JJS NN . An influential Sunni Arab politician says U.S. forces stormed his Baghdad home early Thursday , arresting four of his bodyguards . DT JJ NNP NNP NN VBZ NNP NNS VBD PRP$ NNP NN RB NNP , VBG CD IN PRP$ NNS . Adnan al-Dulaimi told reporters he was shocked by the raid . NNP NNP VBD NNS PRP VBD VBN IN DT NN . He said he is a voice for national reconciliation and against sectarianism . PRP VBD PRP VBZ DT NN IN JJ NN CC IN NN . A U.S. military spokesman in Baghdad told VOA he could not confirm whether U.S. forces raided Mr. al-Dulaimi 's home . DT NNP JJ NN IN NNP VBD NNP PRP MD RB VB IN NNP NNS VBD NNP NNP POS NN . Mr. al-Dulaimi heads the Conference for Iraq 's People , a leading political organization representing Iraq 's minority Sunni Arabs . NNP NNP VBZ DT NN IN NNP POS NNS , DT VBG JJ NN VBG NNP POS NN NNP NNS . That group is urging Sunni Arabs to vote against the new constitution in next month 's national referendum . DT NN VBZ VBG NNP NNS TO VB IN DT JJ NN IN JJ NN POS JJ NN . It says if the document is approved , Sunni Arabs may be marginalized if Iraq is divided into Shi'ite , Kurdish and Sunni Arab regions . PRP VBZ IN DT NN VBZ VBN , NNP NNS MD VB VBN IN NNP VBZ VBN IN NNP , NNP CC NNP NNP NNS . Venezuelan and Chinese officials have signed agreements on oil , agriculture and technology during meetings in Caracas Saturday . JJ CC JJ NNS VBP VBN NNS IN NN , NN CC NN IN NNS IN NNP NNP . Chinese Vice President Zeng Qinghong and Venezuelan President Hugo Chavez signed 17 bilateral agreements and also discussed cooperation in mining , oil and gas projects , as well as technological partnership . JJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBD CD JJ NNS CC RB VBD NN IN NN , NN CC NN NNS , RB RB IN JJ NN . Last month , Mr. Chavez visited China , where he signed agreements with Chinese President Hu Jintao dealing with economic cooperation and joint oil field exploration . JJ NN , NNP NNP VBD NNP , WRB PRP VBD NNS IN JJ NNP NNP NNP VBG IN JJ NN CC JJ NN NN NN . Venezuela is the world 's fifth-largest oil exporter . NNP VBZ DT NN POS JJ NN NN . China , which faces a significant energy shortfall , is looking to strengthen energy cooperation with oil-exporting countries . NNP , WDT VBZ DT JJ NN NN , VBZ VBG TO VB NN NN IN JJ NNS . Venezuela is the third stop in Mr. Zeng 's five-nation tour of Latin America and the Caribbean . NNP VBZ DT JJ NN IN NNP NNP POS JJ NN IN NNP NNP CC DT NNP . He plans to leave Venezuela Sunday for visits to Trinidad and Tobago and Jamaica . PRP VBZ TO VB NNP NNP IN NNS TO NNP CC NNP CC NNP . The U.S. military in Iraq says an insurgent , two women and a child have been killed in a clash between U.S. forces and militants north of Baghdad . DT NNP NN IN NNP VBZ DT NN , CD NNS CC DT NN VBP VBN VBN IN DT NN IN NNP NNS CC NNS NN IN NNP . However , police and residents say 11 people were killed in the raid on a house near Balad , and the Associated Press says its photographs show 11 bodies wrapped in blankets arriving at a hospital in Tikrit . RB , NNS CC NNS VBP CD NNS VBD VBN IN DT NN IN DT NN IN NNP , CC DT NNP NNP VBZ PRP$ NNS VBP CD NNS VBN IN NNS VBG IN DT NN IN NNP . U.S. officials could not immediately reconcile the discrepancy . NNP NNS MD RB RB VB DT NN . But a military spokesman said one al-Qaida suspect was killed and another was captured in the operation . CC DT JJ NN VBD CD NNP NN VBD VBN CC DT VBD VBN IN DT NN . Elsewhere , police in Baghdad say two Shi'ite pilgrims were killed as they walked on a roadway toward Karbala for annual festivities marking a key religious celebration that ends Monday . RB , NNS IN NNP VBP CD NNP NNS VBD VBN IN PRP VBD IN DT NN IN NNP IN JJ NNS VBG DT JJ JJ NN WDT VBZ NNP . Separately , police in Baquba say at least four people died in two bombings . RB , NNS IN NNP VBP IN JJS CD NNS VBD IN CD NNS . In one incident , police say a suicide bomber on a bicycle missed a police patrol and killed two civilians . IN CD NN , NNS VBP DT NN NN IN DT NN VBD DT NN NN CC VBD CD NNS . The United Nations is beginning a formal inquiry Wednesday into the assassination of former Pakistani Prime Minister Benazir Bhutto . DT NNP NNPS VBZ VBG DT JJ NN NNP IN DT NN IN JJ JJ NNP NNP NNP NNP . A Pakistani investigation last year concluded that Taliban militants were likely responsible for Ms. Bhutto 's death in December 2007 . DT JJ NN JJ NN VBD IN NNP NNS VBD JJ JJ IN NNP NNP POS NN IN NNP CD . But her political party has suggested that Ms. Bhutto 's political opponents may have played a role in the plot . CC PRP$ JJ NN VBZ VBN IN NNP NNP POS JJ NNS MD VB VBN DT NN IN DT NN . U.N. Secretary-General Ban Ki-Moon announced the creation of the fact-finding commission after meeting with Ms. Bhutto 's widower , Pakistani President Asif Ali Zardari , in Islamabad last February . NNP NNP NNP NNP VBD DT NN IN DT JJ NN IN VBG IN NNP NNP POS NN , JJ NNP NNP NNP NNP , IN NNP JJ NNP . Ms. Bhutto was killed in a bomb attack after addressing an election rally near the Pakistani capital . NNP NNP VBD VBN IN DT NN NN IN VBG DT NN NN IN DT JJ NN . Eight cross-country skiers - including a former gold medalist - have been suspended for having high red blood cell counts at the Turin Olympics . CD JJ NNS : VBG DT JJ NN NN : VBP VBN VBN IN VBG JJ JJ NN NN NNS IN DT NNP NNPS . The eight were suspended for health reasons and not for doping . DT CD VBD VBN IN NN NNS CC RB IN NN . They include 2002 gold medalist Evi Sachenbacher of Germany . PRP VBP CD JJ NN NNP NNP IN NNP . A high red blood cell count can occur naturally , but can also result from taking endurance-boosting drugs such as EPO . DT JJ JJ NN NN NN MD VB RB , CC MD RB VB IN VBG JJ NNS JJ IN NNP . Two Americans - Kikkan Randall and Leif Zimmermann - are among the eight . CD NNS : NNP NNP CC NNP NNP : VBP IN DT CD . The International Ski Federation says the suspensions are not punishments , but to protect the athletes ' health . DT NNP NNP NNP VBZ DT NNS VBP RB NNS , CC TO VB DT NNS POS NN . The U.S. Ski Federation says the suspensions are retroactive to Wednesday when the tests were conducted . DT NNP NNP NNP VBZ DT NNS VBP JJ TO NNP WRB DT NNS VBD VBN . The only cross-country events that fall within the five-day suspension are the men 's and women 's pursuit races Sunday . DT JJ JJ NNS WDT VBP IN DT JJ NN VBP DT NNS POS CC NNS POS NN NNS NNP . A top U.S. intelligence officer in Baghdad has reportedly warned that Iraq 's security situation is likely to get worse in the coming months . DT JJ NNP NN NN IN NNP VBZ RB VBN IN NNP POS NN NN VBZ JJ TO VB JJR IN DT JJ NNS . The report from the New York Times newspaper cites government officials who say they have seen a cable the officer sent to superiors at the U.S. Central Intelligence Agency ( CIA ) last month . DT NN IN DT NNP NNP NNP NN VBZ NN NNS WP VBP PRP VBP VBN DT NN DT NN VBD TO NNS IN DT NNP NNP NNP NNP LRB NNP RRB JJ NN . The officer warned of more violence and sectarian clashes unless the Iraqi government can assert its authority and rebuild the economy . DT NN VBD IN JJR NN CC JJ NNS IN DT JJ NN MD VB PRP$ NN CC VB DT NN . The newspaper says the officer had just finished a year-long tour as the CIA 's station chief in Baghdad . DT NN VBZ DT NN VBD RB VBN DT JJ NN IN DT NNP POS NN NN IN NNP . The Bush administration and the military continue to present a more optimistic view of Iraqi security . DT NNP NN CC DT NN VBP TO VB DT RBR JJ NN IN JJ NN . Monday , the Defense Department said the recent offensive in Fallujah had ' scattered the enemy , ' and said the Iraqi security forces continue to expand . NNP , DT NNP NNP VBD DT JJ NN IN NNP VBD `` VBN DT NN , `` CC VBD DT JJ NN NNS VBP TO VB . Americans Robert H. Grubbs and Richard R. Schrock and France 's Yves Chauvin have won this year 's Nobel Prize in Chemistry . NNS NNP NNP NNP CC NNP NNP NNP CC NNP POS NNP NNP VBP VBN DT NN POS NNP NNP IN NNP . The award was announced Wednesday , morning at the Royal Swedish Academy of Sciences in Stockholm . DT NN VBD VBN NNP , NN IN DT NNP JJ NNP IN NNPS IN NNP . The trio was cited for their work that led the way in the manufacturing of better drugs and environmentally-friendly plastics . DT NN VBD VBN IN PRP$ NN WDT VBD DT NN IN DT NN IN JJR NNS CC JJ NNS . Mr. Chauvin began work in 1971 in the field of metathesis , which studies how molecules are broken down and then rearranged . NNP NNP VBD NN IN CD IN DT NN IN NN , WDT VBZ WRB NNS VBP VBN RB CC RB VBD . Mr. Schrock and Mr. Grubbs later developed more efficient and stable catalysts to reproduce the reaction . NNP NNP CC NNP NNP RB VBD RBR JJ CC JJ NNS TO VB DT NN . All three men will share the $ 1.3 million cash award , which they will receive during a formal ceremony on December 10 . DT CD NNS MD VB DT $ CD CD NN NN , WDT PRP MD VB IN DT JJ NN IN NNP CD . Pakistan 's political opposition stormed out of parliament Friday over government statements that a top Pakistani nuclear scientist provided Iran with centrifuges . NNP POS JJ NN VBD IN IN NN NNP IN NN NNS IN DT JJ JJ JJ NN VBN NNP IN NNS . Pakistan 's Information Minister acknowledged for the first time Thursday that Abdul Qadeer Khan sold centrifuges to Iran that can be used to process uranium for nuclear weapons . NNP POS NNP NNP VBD IN DT JJ NN NNP IN NNP NNP NNP VBD NNS TO NNP WDT MD VB VBN TO VB NN IN JJ NNS . Opposition lawmakers called the remarks irresponsible and stormed out after the parliament 's chairman refused to hold a debate on the issue . NNP NNS VBD DT NNS JJ CC VBD RP IN DT NN POS NN VBD TO VB DT NN IN DT NN . Mr. Khan , known as the father of Pakistan 's nuclear bomb , has been under virtual house arrest after coming under investigation for passing nuclear secrets to Iran , North Korea and Libya . NNP NNP , VBN IN DT NN IN NNP POS JJ NN , VBZ VBN IN JJ NN NN IN VBG IN NN IN VBG JJ NNS TO NNP , NNP NNP CC NNP . The West African regional group known as ECOWAS is set to hold an emergency summit Wednesday in Niger to discuss the situation in Togo . DT JJ JJ JJ NN VBN IN NNP VBZ VBN TO VB DT NN NN NNP IN NNP TO VB DT NN IN NNP . International criticism of Togolese authorities continued Tuesday over the choice of Faure Gnassingbe as the country 's new president after the military installed him hours after his father 's death Saturday . JJ NN IN NNP NNS VBD NNP IN DT NN IN NNP NNP IN DT NN POS JJ NN IN DT JJ JJ PRP NNS IN PRP$ NN POS NN NNP . Reacting to the criticism , Togo 's parliament amended the constitution on Sunday to allow Mr. Gnassingbe to serve out his father 's , Gnassingbe Eyadema 's term ending in 2008 . VBG TO DT NN , NNP POS NN VBD DT NN IN NNP TO VB NNP NNP TO VB RP PRP$ NN POS , NNP NNP POS NN VBG IN CD . The constitution had called for naming the speaker of parliament as interim president until elections are held in two months . DT NN VBD VBN IN VBG DT NN IN NN IN JJ NN IN NNS VBP VBN IN CD NNS . The African Union 's Peace and Security Council Tuesday branded Mr. Gnassingbe 's seizure of power ' a blatant and unacceptable violation of the Togolese constitution . ' DT NNP NNP POS NNP CC NNP NNP NNP VBD NNP NNP POS NN IN NN `` DT JJ CC JJ NN IN DT NNP NN . `` The United States , Britain and France are calling for new elections . DT NNP NNPS , NNP CC NNP VBP VBG IN JJ NNS . English football star David Beckham has arrived at the training ground of Premier League team Tottenham Hotspur in preparation of his month-long training stint with the club . JJ NN NN NNP NNP VBZ VBN IN DT NN NN IN NNP NNP NN NNP NNP IN NN IN PRP$ JJ NN NN IN DT NN . The 35-year-old Beckham arrived at the team 's facility east of London on Monday . DT JJ NNP VBD IN DT NN POS NN NN IN NNP IN NNP . Tottenham had hoped to reach an agreement with Major League Soccer 's Los Angeles Galaxy to have Beckham for a two-month playing loan . NNP VBD VBN TO VB DT NN IN NNP NNP NNP POS NNP NNP NNP TO VB NNP IN DT JJ NN NN . But talks broke down when the MLS club insisted that Beckham report with his Los Angeles teammates on February 10 to prepare for the 2011 season . CC NNS VBD RP WRB DT NNP NN VBD IN NNP VB IN PRP$ NNP NNP NNS IN NNP CD TO VB IN DT CD NN . The Galaxy had been reluctant to allow Beckham to spend the offseason playing in Europe after he tore his Achilles ' tendon playing for Italy 's AC Milan last March and missed much of the MLS season . DT NNP VBD VBN JJ TO VB NNP TO VB DT NN NN IN NNP IN PRP VBD PRP$ NNP POS NN VBG IN NNP POS NNP NNP JJ NNP CC VBD NN IN DT NNP NN . However , Hotspurs manager Harry Redknapp is still hopeful the loan agreement can be worked out . RB , NNP NN NNP NNP VBZ RB JJ DT NN NN MD VB VBN RP . An international press freedom advocacy group is calling for the unconditional release of Burmese journalist U Win Tin who is about to spend his 76th birthday in prison . DT JJ NN NN NN NN VBZ VBG IN DT JJ NN IN JJ NN NNP NNP NNP WP VBZ IN TO VB PRP$ JJ NN IN NN . The Paris-based group Reporters Without Borders issued a joint statement Friday , along with the Burma Media Association saying U Win Tin has been deprived of basic human rights . DT JJ NN NNS IN NNS VBD DT JJ NN NNP , IN IN DT NNP NNP NNP VBG NNP NNP NNP VBZ VBN VBN IN JJ JJ NNS . They say he is not allowed to write and has been denied proper medical care for chronic health ailments . PRP VBP PRP VBZ RB VBN TO VB CC VBZ VBN VBN JJ JJ NN IN JJ NN NNS . The statement says that since the beginning of the year , he has been denied visits from the International Committee of the Red Cross . DT NN VBZ IN IN DT NN IN DT NN , PRP VBZ VBN VBN NNS IN DT NNP NNP IN DT NNP NNP . U Win Tin was arrested in 1989 and is serving a 20-year sentence for writing anti-government propaganda . NNP NNP NNP VBD VBN IN CD CC VBZ VBG DT JJ NN IN VBG JJ NN . He will turn 76 March 12 . PRP MD VB CD NNP CD . Pakistani officials say militants in northwest Pakistan have bombed a tanker truck carrying fuel to NATO forces in Afghanistan , destroying the tanker and a nearby van . JJ NNS VBP NNS IN JJ NNP VBP VBN DT NN NN VBG NN TO NNP NNS IN NNP , VBG DT NN CC DT JJ NN . Officials say the bomb was attached to the tanker and exploded Wednesday as the vehicle traveled through the Khyber tribal area toward the Afghan border . NNS VBP DT NN VBD VBN TO DT NN CC VBD NNP IN DT NN VBD IN DT NNP JJ NN IN DT JJ NN . The number of casualties is not clear . DT NN IN NNS VBZ RB JJ . At least four people were reported wounded by the explosion and there are reports of at least one death . IN JJS CD NNS VBD VBN VBN IN DT NN CC EX VBP NNS IN IN JJS CD NN . Taliban militants regularly attack NATO supply vehicles that pass through Pakistan . NNP NNS RB VBP NNP NN NNS WDT VBP IN NNP . NATO and U.S.-led forces battling insurgents in landlocked Afghanistan are dependent on Pakistan for supplies , with at least 75 percent passing through that country . NNP CC JJ NNS VBG NNS IN JJ NNP VBP JJ IN NNP IN NNS , IN IN JJS CD NN NN IN DT NN . A U.S. federal inspector says more than 96-million dollars earmarked for projects to rebuild Iraq can not be accounted for . DT NNP JJ NN VBZ JJR IN CD NNS VBN IN NNS TO VB NNP MD RB VB VBN IN . The report by Special Inspector General for Iraq Reconstruction Stuart Bowen has prompted a criminal investigation into the missing money . DT NN IN NNP NNP NNP IN NNP NNP NNP NNP VBZ VBN DT JJ NN IN DT VBG NN . Mr. Bowen 's report , released Thursday , describes how tens of millions of dollars were dispersed for Iraq construction projects with little or no documentation during 2003 and 2004 . NNP NNP POS NN , VBN NNP , VBZ WRB NNS IN NNS IN NNS VBD VBN IN NNP NN NNS IN JJ CC DT NN IN CD CC CD . The report says that while incompetence or haste may account for some problems , there are indications of fraud . DT NN VBZ IN IN NN CC NN MD VB IN DT NNS , EX VBP NNS IN NN . The inspector general notes the money in question was not U.S. taxpayer dollars but rather Iraqi money designated for reconstruction projects . DT NN JJ NNS DT NN IN NN VBD RB NNP NN NNS CC RB JJ NN VBN IN NN NNS . U.S. officials responding to the report have attributed the accounting problems to the difficulties of working in a war-time environment . NNP NNS VBG TO DT NN VBP VBN DT NN NNS TO DT NNS IN VBG IN DT JJ NN . Ukrainian opposition supporters have ended their two-week-long blockade of government buildings and streets in Kiev , but some protesters vow to stay until a runoff election is held . JJ NN NNS VBP VBN PRP$ JJ NN IN NN NNS CC NNS IN NNP , CC DT NNS VBP TO VB IN DT NN NN VBZ VBN . Opposition presidential candidate Viktor Yushchenko told demonstrators to go home , after parliament approved new anti-fraud laws for a court ordered December 26 repeat of the runoff vote . NNP JJ NN NNP NNP VBD NNS TO VB NN , IN NN VBD JJ JJ NNS IN DT NN VBN NNP CD NN IN DT NN NN . President Bush Thursday congratulated Presidents Aleksander Kwasniewski of Poland and Valdas Adamkus of Lithuania for helping mediate an end to the political crisis . NNP NNP NNP VBD NNS NNP NNP IN NNP CC NNP NNP IN NNP IN VBG VB DT NN TO DT JJ NN . Also Thursday , Russia and NATO agreed to work to ensure free and fair elections in Ukraine . RB NNP , NNP CC NNP VBD TO VB TO VB JJ CC JJ NNS IN NNP . Prime Minister Viktor Yanukovych was declared the winner of the flawed November election . NNP NNP NNP NNP VBD VBN DT NN IN DT JJ NNP NN . He calls the new election laws illegal and say they will do nothing to stop fraud . PRP VBZ DT JJ NN NNS JJ CC VBP PRP MD VB DT TO VB NN . Tropical Storm Alpha made landfall early Sunday in the Dominican Republic . JJ NN NNP VBD NN JJ NNP IN DT NNP NNP . The U.S. National Hurricane Center says the storm came ashore near the city of Barahona , with maximum sustained winds close to 85 kilometers per hour . DT NNP NNP NNP NNP VBZ DT NN VBD RB IN DT NN IN NNP , IN NN VBN NNS RB TO CD NNS IN NN . The center says Alpha is expected to weaken rapidly but not before bringing heavy rain and possible flooding to the Dominican Republic and neighboring Haiti . DT NN VBZ NNP VBZ VBN TO VB RB CC RB IN VBG JJ NN CC JJ NN TO DT NNP NNP CC JJ NNP . Alpha is the 22nd named storm of the Atlantic hurricane season , breaking the previous record set in 1933 . NNP VBZ DT CD VBN NN IN DT NNP NN NN , VBG DT JJ NN VBN IN CD . Forecasters have run through this year 's list of names and have turned to the Greek alphabet . NNS VBP VBN IN DT NN POS NN IN NNS CC VBP VBN TO DT JJ NN . Tropical storm warnings remain in effect for the Dominican Republic , Haiti , the Turks and Caicos Islands , and the southeastern Bahamas . JJ NN NNS VBP IN NN IN DT NNP NNP , NNP , DT NNS CC NNP NNP , CC DT JJ NNPS . Electricity consumption is on the rise across Europe , but high oil prices and a reluctance in some countries to ' go nuclear ' is creating an energy gap . NN NN VBZ IN DT NN IN NNP , CC JJ NN NNS CC DT NN IN DT NNS TO `` VB NN `` VBZ VBG DT NN NN . So some power companies are switching back to ' coal ' - but this time , proponents say coal is cleaning up its act . RB DT NN NNS VBP VBG RB TO `` NN `` : CC DT NN , NNS VBP NN VBZ VBG RP PRP$ NN . A new generation of ' clean coal ' power stations is due to open across the continent during the next five years . DT JJ NN IN `` JJ NN `` NN NNS VBZ JJ TO VB IN DT NN IN DT JJ CD NNS . But one of the first to come on line has been met with stiff opposition in the United Kingdom . CC CD IN DT JJ TO VB IN NN VBZ VBN VBN IN JJ NN IN DT NNP NNP . Paul Burge reports for VOA from London . NNP NNP VBZ IN NNP IN NNP . The Israeli army says its soldiers patrolling the border with Egypt have mistakenly shot and wounded an Egyptian security officer . DT JJ NN VBZ PRP$ NNS VBG DT NN IN NNP VBP RB VBN CC VBN DT JJ NN NN . A military spokeswoman Monday said Israeli troops on patrol outside the city of Eilat saw what they considered a suspicious , armed person at the border . DT JJ NN NNP VBD JJ NNS IN NN IN DT NN IN NNP VBD WP PRP VBD DT JJ , JJ NN IN DT NN . She said the troops fired at the man after he cocked his weapon . PRP VBD DT NNS VBD IN DT NN IN PRP VBD PRP$ NN . The Israeli army says the soldiers only then realized the man , who was wounded in the chest , was an Egyptian security officer . DT JJ NN VBZ DT NNS RB RB VBD DT NN , WP VBD VBN IN DT NN , VBD DT JJ NN NN . A joint Israeli-Egyptian team is investigating the incident . DT JJ JJ NN VBZ VBG DT NN . Shootings between Israeli and Egyptian forces along the border region have been rare since the two countries signed a peace treaty in 1979 . NNS IN JJ CC JJ NNS IN DT NN NN VBP VBN JJ IN DT CD NNS VBD DT NN NN IN CD . Two British lawmakers have called for an inquiry into claims that a British-based security firm operating in Iraq withheld intelligence from British troops . CD JJ NNS VBP VBN IN DT NN IN NNS IN DT JJ NN NN VBG IN NNP VBD NN IN JJ NNS . The Guardian newspaper says the lawmakers want the Foreign and Commonwealth Office to investigate whether the firm ArmorGroup directed an employee to withhold information from British forces . DT NNP NN VBZ DT NNS VBP DT NNP CC NNP NNP TO VB IN DT NN NNP VBD DT NN TO VB NN IN JJ NNS . The probe demand follows a Guardian report that a former British policeman working in 2004 and 2005 for the security firm in southern Iraq was told not to share intelligence gained during visits to local Iraqi police stations . DT NN NN VBZ DT NNP NN IN DT JJ JJ NN VBG IN CD CC CD IN DT NN NN IN JJ NNP VBD VBN RB TO VB NN VBD IN NNS TO JJ JJ NN NNS . The report says ArmorGroup has ' vigorously ' denied the claims . DT NN VBZ NNP VBZ `` RB `` VBN DT NNS . Magna International Inc. 's chief financial officer , James McAlpine , resigned and its chairman , Frank Stronach , is stepping in to help turn the automotive-parts manufacturer around , the company said . NNP NNP NNP POS JJ JJ NN , NNP NNP , VBD CC PRP$ NN , NNP NNP , VBZ VBG IN TO VB VB DT NNS NN IN , DT NN VBD . Mr. Stronach will direct an effort to reduce overhead and curb capital spending ' until a more satisfactory level of profit is achieved and maintained , ' Magna said . NNP NNP MD VB DT NN TO VB NN CC VB NN NN `` IN DT RBR JJ NN IN NN VBZ VBN CC VBN , `` NNP VBD . Stephen Akerfeldt , currently vice president finance , will succeed Mr. McAlpine . NNP NNP , RB NN NN NN , MD VB NNP NNP . An ambitious expansion has left Magna with excess capacity and a heavy debt load as the automotive industry enters a downturn . DT JJ NN VBZ VBN NNP IN JJ NN CC DT JJ NN NN IN DT JJ NN VBZ DT NN . The company has reported declines in operating profit in each of the past three years , despite steady sales growth . DT NN VBZ VBN NNS IN NN NN IN DT IN DT JJ CD NNS , IN JJ NNS NN . Magna recently cut its quarterly dividend in half and the company 's Class A shares are wallowing far below their 52-week high of 16.125 Canadian dollars ( US $ 13.73 ) . NNP RB VBP PRP$ JJ NN IN NN CC DT NN POS NNP NNP NNS VBP VBG RB IN PRP$ JJ NN IN CD JJ NNS LRB NNP $ CD RRB . On the Toronto Stock Exchange yesterday , Magna shares closed up 37.5 Canadian cents to C $ 9.625 . IN DT NNP NNP NNP NN , NNP NNS VBD RB CD JJ NNS TO NNP $ CD . Mr. Stronach , founder and controlling shareholder of Magna , resigned as chief executive officer last year to seek , unsuccessfully , a seat in Canada 's Parliament . NNP NNP , NN CC VBG NN IN NNP , VBD IN JJ NN NN JJ NN TO VB , RB , DT NN IN NNP POS NNP . Analysts said Mr. Stronach wants to resume a more influential role in running the company . NNS VBD NNP NNP VBZ TO VB DT RBR JJ NN IN VBG DT NN . They expect him to cut costs throughout the organization . PRP VBP PRP TO VB NNS IN DT NN . The company said Mr. Stronach will personally direct the restructuring , assisted by Manfred Gingl , president and chief executive . DT NN VBD NNP NNP MD RB VB DT NN , VBN IN NNP NNP , NN CC JJ NN . Neither they nor Mr. McAlpine could be reached for comment . DT PRP CC NNP NNP MD VB VBN IN NN . Magna said Mr. McAlpine resigned to pursue a consulting career , with Magna as one of his clients . NNP VBD NNP NNP VBD TO VB DT NN NN , IN NNP IN CD IN PRP$ NNS . Resistance by native Caribs prevented colonization on Saint Vincent until 1719 . NN IN JJ NNS VBD NN IN NNP NNP IN CD . Disputed between France and the United Kingdom for most of the 18th century , the island was ceded to the latter in 1783 . VBN IN NNP CC DT NNP NNP IN JJS IN DT JJ NN , DT NN VBD VBN TO DT NN IN CD . Between 1960 and 1962 , Saint Vincent and the Grenadines was a separate administrative unit of the Federation of the West Indies . IN CD CC CD , NNP NNP CC DT NNP VBD DT JJ JJ NN IN DT NNP IN DT NNP NNPS . Autonomy was granted in 1969 and independence in 1979 . NNP VBD VBN IN CD CC NN IN CD . The Slovene lands were part of the Austro-Hungarian Empire until the latter 's dissolution at the end of World War I . DT JJ NNS VBD NN IN DT JJ NN IN DT NN POS NN IN DT NN IN NNP NNP NNP . In 1918 , the Slovenes joined the Serbs and Croats in forming a new multinational state , which was named Yugoslavia in 1929 . IN CD , DT NNS VBD DT NNS CC NNS IN VBG DT JJ JJ NN , WDT VBD VBN NNP IN CD . After World War II , Slovenia became a republic of the renewed Yugoslavia , which though Communist , distanced itself from Moscow 's rule . IN NNP NNP NNP , NNP VBD DT NN IN DT VBN NNP , WDT IN NNP , VBD PRP IN NNP POS NN . Dissatisfied with the exercise of power by the majority Serbs , the Slovenes succeeded in establishing their independence in 1991 after a short 10-day war . VBN IN DT NN IN NN IN DT NN NNS , DT NNS VBD IN VBG PRP$ NN IN CD IN DT JJ JJ NN . Historical ties to Western Europe , a strong economy , and a stable democracy have assisted in Slovenia 's transformation to a modern state . JJ NNS TO NNP NNP , DT JJ NN , CC DT JJ NN VBP VBN IN NNP POS NN TO DT JJ NN . Slovenia acceded to both NATO and the EU in the spring of 2004 ; it joined the eurozone in 2007 . NNP VBD TO DT NNP CC DT NNP IN DT NN IN CD ; PRP VBD DT NN IN CD . The use of the name Montenegro began in the 15th century when the Crnojevic dynasty began to rule the Serbian principality of Zeta ; over subsequent centuries Montenegro was able to maintain its independence from the Ottoman Empire . DT NN IN DT NN NNP VBD IN DT JJ NN WRB DT NNP NN VBD TO VB DT JJ NN IN NNP ; IN JJ NNS NNP VBD JJ TO VB PRP$ NN IN DT NNP NNP . From the 16th to 19th centuries , Montenegro became a theocracy ruled by a series of bishop princes ; in 1852 , it was transformed into a secular principality . IN DT JJ TO JJ NNS , NNP VBD DT NN VBN IN DT NN IN NN NNS ; IN CD , PRP VBD VBN IN DT JJ NN . After World War I , Montenegro was absorbed by the Kingdom of Serbs , Croats , and Slovenes , which became the Kingdom of Yugoslavia in 1929 ; at the conclusion of World War II , it became a constituent republic of the Socialist Federal Republic of Yugoslavia . IN NNP NNP NNP , NNP VBD VBN IN DT NNP IN NNS , NNS , CC NNS , WDT VBD DT NNP IN NNP IN CD ; IN DT NN IN NNP NNP NNP , PRP VBD DT JJ NN IN DT NNP NNP NNP IN NNP . When the latter dissolved in 1992 , Montenegro federated with Serbia , first as the Federal Republic of Yugoslavia and , after 2003 , in a looser union of Serbia and Montenegro . WRB DT NN VBN IN CD , NNP VBD IN NNP , RB IN DT NNP NNP IN NNP CC , IN CD , IN DT JJR NN IN NNP CC NNP . In May 2006 , Montenegro invoked its right under the Constitutional Charter of Serbia and Montenegro to hold a referendum on independence from the state union . IN NNP CD , NNP VBD PRP$ NN IN DT JJ NN IN NNP CC NNP TO VB DT NN IN NN IN DT NN NN . The vote for severing ties with Serbia exceeded 55 % - the threshold set by the EU - allowing Montenegro to formally declare its independence on 3 June 2006 . DT NN IN VBG NNS IN NNP VBD CD NN IN DT NN VBN IN DT NNP : VBG NNP TO RB VB PRP$ NN IN CD NNP CD . Basutoland was renamed the Kingdom of Lesotho upon independence from the UK in 1966 . NNP VBD VBN DT NNP IN NNP IN NN IN DT NNP IN CD . The Basuto National Party ruled for the first two decades . DT NNP NNP NNP VBD IN DT JJ CD NNS . King MOSHOESHOE was exiled in 1990 , but returned to Lesotho in 1992 and was reinstated in 1995 and subsequently succeeded by his son , King LETSIE III , in 1996 . NNP NNP VBD VBN IN CD , CC VBD TO NNP IN CD CC VBD VBN IN CD CC RB VBN IN PRP$ NN , NNP NNP NNP , IN CD . Constitutional government was restored in 1993 after seven years of military rule . JJ NN VBD VBN IN CD IN CD NNS IN JJ NN . In 1998 , violent protests and a military mutiny following a contentious election prompted a brief but bloody intervention by South African and Botswana military forces under the aegis of the Southern African Development Community . IN CD , JJ NNS CC DT JJ NN VBG DT JJ NN VBD DT JJ CC JJ NN IN NNP NNP CC NNP JJ NNS IN DT NN IN DT JJ NNP NNP NNP . Subsequent constitutional reforms restored relative political stability . JJ JJ NNS VBD JJ JJ NN . Peaceful parliamentary elections were held in 2002 , but the National Assembly elections of February 2007 were hotly contested and aggrieved parties continue to dispute how the electoral law was applied to award proportional seats in the Assembly . JJ JJ NNS VBD VBN IN CD , CC DT NNP NNP NNS IN NNP CD VBD RB VBN CC VBN NNS VBP TO VB WRB DT JJ NN VBD VBN TO NN JJ NNS IN DT NN . Tourism , petroleum refining , and offshore finance are the mainstays of this small economy , which is closely tied to the outside world . NN , NN NN , CC JJ NN VBP DT NNS IN DT JJ NN , WDT VBZ RB VBN TO DT JJ NN . Although GDP grew slightly during the past decade , the island enjoys a high per capita income and a well-developed infrastructure compared with other countries in the region . IN NN VBD RB IN DT JJ NN , DT NN VBZ DT JJ IN NN NN CC DT JJ NN VBN IN JJ NNS IN DT NN . Curacao has an excellent natural harbor that can accommodate large oil tankers . NNP VBZ DT JJ JJ NN WDT MD VB JJ NN NNS . The Venezuelan state oil company leases the single refinery on the island from the government ; most of the oil for the refinery is imported from Venezuela ; most of the refined products are exported to the US . DT JJ NN NN NN VBZ DT JJ NN IN DT NN IN DT NN ; JJS IN DT NN IN DT NN VBZ VBN IN NNP ; JJS IN DT JJ NNS VBP VBN TO DT NNP . Almost all consumer and capital goods are imported , with the US , Brazil , Italy , and Mexico being the major suppliers . RB DT NN CC NN NNS VBP VBN , IN DT NNP , NNP , NNP , CC NNP VBG DT JJ NNS . The government is attempting to diversify its industry and trade and has signed an Association Agreement with the EU to expand business there . DT NN VBZ VBG TO VB PRP$ NN CC NN CC VBZ VBN DT NNP NN IN DT NNP TO VB NN RB . Poor soils and inadequate water supplies hamper the development of agriculture . JJ NNS CC JJ NN NNS VBP DT NN IN NN . Budgetary problems complicate reform of the health and pension systems for an aging population . JJ NNS VBZ NN IN DT NN CC NN NNS IN DT VBG NN . A quarrel had arisen between the Horse and the Stag , so the Horse came to a Hunter to ask his help to take revenge on the Stag . DT NN VBD VBN IN DT NN CC DT NN , IN DT NN VBD TO DT NN TO VB PRP$ NN TO VB NN IN DT NN . The Hunter agreed , but said : ' If you desire to conquer the Stag , you must permit me to place this piece of iron between your jaws , so that I may guide you with these reins , and allow this saddle to be placed upon your back so that I may keep steady upon you as we follow after the enemy . ' DT NN VBD , CC VBD : `` IN PRP VBP TO VB DT NNP , PRP MD VB PRP TO VB DT NN IN NN IN PRP$ NNS , RB IN PRP MD VB PRP IN DT NNS , CC VB DT NN TO VB VBN IN PRP$ NN RB IN PRP MD VB JJ IN PRP IN PRP VBP IN DT NN . `` The Horse agreed to the conditions , and the Hunter soon saddled and bridled him . DT NN VBD TO DT NNS , CC DT NN RB VBD CC VBD PRP . Then with the aid of the Hunter the Horse soon overcame the Stag , and said to the Hunter : ' Now , get off , and remove those things from my mouth and back . ' RB IN DT NN IN DT NN DT NN RB VBD DT NNP , CC VBD TO DT NN : `` RB , VB RP , CC VB DT NNS IN PRP$ NN CC RB . `` ' Not so fast , friend , ' said the Hunter . `` RB RB JJ , NN , `` VBD DT NN . ' I have now got you under bit and spur , and prefer to keep you as you are at present . ' `` PRP VBP RB VBN PRP IN NN CC NN , CC VB TO VB PRP IN PRP VBP IN JJ . `` If you allow men to use you for your own purposes , they will use you for theirs . IN PRP VBP NNS TO VB PRP IN PRP$ JJ NNS , PRP MD VB PRP IN NN . THE POMEGRANATE and Apple-Tree disputed as to which was the most beautiful . DT NN CC NN VBD IN TO WDT VBD DT RBS JJ . When their strife was at its height , a Bramble from the neighboring hedge lifted up its voice , and said in a boastful tone : ' Pray , my dear friends , in my presence at least cease from such vain disputings . ' WRB PRP$ NN VBD IN PRP$ NN , DT NN IN DT JJ NN VBD RP PRP$ NN , CC VBD IN DT JJ NN IN `` NNP , PRP$ JJ NNS , IN PRP$ NN IN JJS VB IN JJ JJ NNS . `` ' ARE the industries of this country in a flourishing condition ? ' asked a Traveller from a Foreign Land of the first man he met in America . `` VBP DT NNS IN DT NN IN DT JJ NN . `` VBD DT NN IN DT JJ NN IN DT JJ NN PRP VBD IN NNP . ' Splendid ! ' said the Man . `` JJ . `` VBD DT NN . ' I have more orders than I can fill . ' `` PRP VBP JJR NNS IN PRP MD VB . `` ' What is your business ? ' the Traveller from a Foreign Land inquired . `` WP VBZ PRP$ NN . `` DT NN IN DT NNP NNP VBD . The Man replied , ' I make boxing-gloves for the tongues of pugilists . ' DT NN VBD , `` PRP VBP NNS IN DT NNS IN NNS . `` A statistician is someone who is good with numbers but lacks the personality to be an accountant DT NN VBZ DT WP VBZ JJ IN NNS CC VBZ DT NN TO VB DT NN The band at Ellsworth Air Force Base , South Dakota , was required to play for all generals who arrived on base . DT NN IN NNP NNP NNP NNP , NNP NNP , VBD VBN TO VB IN DT NNS WP VBD IN NN . One morning , when the commanding officer heard on the radio that a General Frost was expected just after noon , he sent the band scrambling to the flight line with instruments . CD NN , WRB DT JJ NN VBN IN DT NN IN DT NNP NNP VBD VBN RB IN NN , PRP VBD DT NN VBG TO DT NN NN IN NNS . One of the musicians had also heard the radio announcement . CD IN DT NNS VBD RB VBN DT NN NN . He took the C.O . aside for a whispered conference . PRP VBD DT NNP . RB IN DT JJ NN . When they returned , the officer told us the performance was canceled . WRB PRP VBD , DT NN VBD PRP DT NN VBD VBN . There was no arriving general . EX VBD DT VBG NN . We had almost played for the weather forecast . PRP VBD RB VBN IN DT NN NN . A gauge of future U.S. economic activity shows the recession is likely to continue another three to six months before recovery begins . DT NN IN JJ NNP JJ NN VBZ DT NN VBZ JJ TO VB DT CD CC CD NNS IN NN VBZ . Monday 's report from a business group , the Conference Board , says its index of leading indicators fell 0.3 percent in March . NNP POS NN IN DT NN NN , DT NNP NNP , VBZ PRP$ NN IN VBG NNS VBD CD NN IN NNP . Economists watch stock prices , unemployment claims , building permits and other factors to predict economic activity in the near future . NNS VBP NN NNS , NN NNS , NN NNS CC JJ NNS TO VB JJ NN IN DT JJ NN . Some indicators are not falling as fast as they had been , prompting some experts to predict the economy will begin to recover late this year . DT NNS VBP RB VBG RB RB IN PRP VBD VBN , VBG DT NNS TO VB DT NN MD VB TO VB RB DT NN . Uganda has lifted the suspension of a private radio station whose host criticized the government over the death of Sudanese Vice President John Garang . NNP VBZ VBN DT NN IN DT JJ NN NN WP$ NN VBD DT NN IN DT NN IN JJ NNP NNP NNP NNP . KFM radio renewed broadcasts Thursday , including host Andrew Mwenda whose comments sparked the dispute . NNP NN VBN NNS NNP , VBG NN NNP NNP WP$ NNS VBD DT NN . Last week , Uganda 's Broadcasting Council shut down the station after Mr. Mwenda accused the government of ' incompetence ' for flying Mr. Garang in what he called a ' junk ' helicopter . JJ NN , NNP POS NNP NNP VBD RP DT NN IN NNP NNP VBD DT NN IN `` NN `` IN VBG NNP NNP IN WP PRP VBD DT `` NN `` NN . Authorities also arrested Mr. Mwenda on charges of sedition , saying the comments could have sparked mass riots . NNS RB VBN NNP NNP IN NNS IN NN , VBG DT NNS MD VB VBN JJ NNS . He has since been freed on bail . PRP VBZ IN VBN VBN IN NN . Ugandan officials have also ordered the station to pay nearly $ 3,000 for costs of the suspension procedure . JJ NNS VBP RB VBN DT NN TO VB RB $ CD IN NNS IN DT NN NN . Mr. Garang was killed on July 30 while flying back to southern Sudan aboard Ugandan President Yoweri Museveni 's personal helicopter . NNP NNP VBD VBN IN NNP CD IN VBG RB TO JJ NNP IN JJ NNP NNP NNP POS JJ NN . A British newspaper says one of its reporters has disappeared in Iraq and it fears he has been kidnapped by gunmen . DT JJ NN VBZ CD IN PRP$ NNS VBZ VBN IN NNP CC PRP VBZ PRP VBZ VBN VBN IN NNS . The Guardian newspaper says Rory Carroll , a 33-year-old Irishman , was on assignment in Baghdad when he vanished earlier Wednesday . DT NNP NN VBZ NNP NNP , DT JJ NN , VBD IN NN IN NNP WRB PRP VBD RBR NNP . The paper issued an appeal for information about his whereabouts . DT NN VBD DT NN IN NN IN PRP$ NNS . Meanwhile , the British defense ministry reports that a British soldier was killed in a roadside bomb blast late Tuesday in the southern city of Basra . RB , DT JJ NN NN VBZ IN DT JJ NN VBD VBN IN DT NN NN NN JJ NNP IN DT JJ NN IN NNP . And the U.S. military says a roadside bomb also killed one American soldier and wounded two others late Tuesday south of Baghdad , near Iskandariyah . CC DT NNP NN VBZ DT NN NN RB VBD CD JJ NN CC VBD CD NNS JJ NNP NN IN NNP , IN NNP . The new violence was reported as Iraqi election officials continue counting and auditing results from Saturday 's referendum on the constitution . DT JJ NN VBD VBN IN JJ NN NNS VBP VBG CC VBG NNS IN NNP POS NN IN DT NN . The Colombian navy says more than 100 Ecuadorean migrants are missing and feared drowned after their overcrowded boat capsized and sank in the Pacific Ocean . DT JJ NN VBZ JJR IN CD JJ NNS VBP VBG CC VBD VBN IN PRP$ JJ NN VBD CC VBD IN DT NNP NNP . Authorities said Wednesday that the migrants , hoping to enter the United States illegally , were aboard the vessel when it sank last Friday off Colombia 's coast . NNS VBD NNP IN DT NNS , VBG TO VB DT NNP NNPS RB , VBD IN DT NN WRB PRP VBD JJ NNP IN NNP POS NN . Seven men and two women survived . CD NNS CC CD NNS VBD . They were rescued by a fishing boat . PRP VBD VBN IN DT NN NN . Investigators say the overcrowded Ecuadorean vessel had the capacity for 15 people but that as many as 120 people may have been on board . NNS VBP DT JJ JJ NN VBD DT NN IN CD NNS CC IN RB JJ IN CD NNS MD VB VBN IN NN . The Colombian navy has deployed an airplane and boat to search for bodies . DT JJ NN VBZ VBN DT NN CC NN TO VB IN NNS . Ecuador is also participating in the search . NNP VBZ RB VBG IN DT NN . Officials say the doomed boat had set sail from the Ecuadorean port of Manta . NNS VBP DT JJ NN VBD VBN NN IN DT JJ NN IN NNP . US Secretary of Defense Donald Rumsfeld has met with his Russian counterpart , Sergei Ivanov , for talks on non-proliferation and other issues of bilateral interest . NNP NNP IN NNP NNP NNP VBZ VBN IN PRP$ JJ NN , NNP NNP , IN NNS IN JJ CC JJ NNS IN JJ NN . At a joint news conference in Washington Tuesday , Secretary Rumsfeld said the government that evolves after Iraq 's elections later this month will be a broadly represented administration . IN DT JJ NN NN IN NNP NNP , NNP NNP VBD DT NN WDT VBZ IN NNP POS NNS RB DT NN MD VB DT RB VBN NN . He said polls indicate all groups , including Sunnis , want to participate in the January 30 election . PRP VBD NNS VBP DT NNS , VBG NNP , VBP TO VB IN DT NNP CD NN . Mr. Rumsfeld also rejected news reports saying the United States plans to send special forces into Syria in the hunt for militants . NNP NNP RB VBD NN NNS VBG DT NNP NNPS VBZ TO VB JJ NNS IN NNP IN DT NN IN NNS . The two officials also discussed defense and security cooperation . DT CD NNS RB VBD NN CC NN NN . Mr. Ivanov also is meeting today at the White House with President Bush . NNP NNP RB VBZ VBG NN IN DT NNP NNP IN NNP NNP . China is sending a medical team to its earthquake ravaged southwest to offer reverse sterilization surgery for women who lost their only children in the May 12th quake . NNP VBZ VBG DT JJ NN TO PRP$ NN VBD JJ TO VB JJ NN NN IN NNS WP VBD PRP$ JJ NNS IN DT NNP CD NN . China 's ' one-child ' policy limits most families to a single child in most cases and many mothers opt for sterilization surgery after giving birth . NNP POS `` JJ `` NN NNS RBS NNS TO DT JJ NN IN JJS NNS CC JJ NNS VBP IN NN NN IN VBG NN . Thousands of schools collapsed during the May 12th earthquake and by some estimates more than 6,000 students died . NNS IN NNS VBD IN DT NNP CD NN CC IN DT NNS JJR IN CD NNS VBD . The offer of reverse sterilization surgery comes as Chinese authorities block access to schools destroyed by the quake in an apparent effort to quell demonstrations by angry , grieving parents . DT NN IN JJ NN NN VBZ IN JJ NNS VBP NN TO NNS VBN IN DT NN IN DT JJ NN TO VB NNS IN JJ , VBG NNS . The director of the International Atomic Energy Agency , Mohamed ElBaradei , has stressed the importance of worldwide efforts to guarantee the security of nuclear materials , as he accepted the Nobel Peace Prize . DT NN IN DT NNP NNP NNP NNP , NNP NNP , VBZ VBN DT NN IN JJ NNS TO VB DT NN IN JJ NNS , IN PRP VBD DT NNP NNP NNP . At ceremonies in Oslo , Norway , Mr. ElBaradei stressed the importance of the security of the human family . IN NNS IN NNP , NNP , NNP NNP VBD DT NN IN DT NN IN DT JJ NN . He said world security strategies have not caught up with the security threats the world faces . PRP VBD NN NN NNS VBP RB VBN RP IN DT NN NNS DT NN VBZ . In accepting the prize for himself and his organization , Mr. ElBaradei noted that 15 years after the end of the Cold War removed divisions in Europe , the divisions between rich and poor countries still remain . IN VBG DT NN IN PRP CC PRP$ NN , NNP NNP VBD IN CD NNS IN DT NN IN DT NNP NNP VBD NNS IN NNP , DT NNS IN JJ CC JJ NNS RB VBP . He expressed hope that globalization will bring the world community together in resolving problems . PRP VBD NN IN NN MD VB DT NN NN RB IN VBG NNS . Other Nobel prizes are being awarded in Stockhlom , Sweden , Saturday . JJ NNP NNS VBP VBG VBN IN NNP , NNP , NNP . Literature Prize winner Harold Pinter will not attend because of health problems . NNP NNP NN NNP NNP MD RB VB IN IN NN NNS . Iranian President Mahmoud Ahmadinejad has issued a defiant message to U.S. President George Bush , warning that the United States will not be able to attack Iran . JJ NNP NNP NNP VBZ VBN DT JJ NN TO NNP NNP NNP NNP , VBG IN DT NNP NNPS MD RB VB JJ TO VB NNP . Mr. Ahmadinejad said Wednesday that Mr. Bush 's era has ' come to an end . ' NNP NNP VBD NNP IN NNP NNP POS NN VBZ `` VBN TO DT NN . `` The Iranian president also mocked what he called Mr. Bush 's desire to attack Iran , saying the U.S. leader will not be able to harm ' even one centimeter ' of the country . DT JJ NN RB VBD WP PRP VBD NNP NNP POS NN TO VB NNP , VBG DT NNP NN MD RB VB JJ TO VB `` RB CD NN `` IN DT NN . Mr. Ahmadinejad was speaking during a visit to the central Iranian city of Shahr-e-Kord . NNP NNP VBD VBG IN DT NN TO DT JJ JJ NN IN NNP . On Tuesday , President Bush and European Union leaders met in Slovenia and warned of additional steps to pressure Iran to stop its controversial nuclear program . IN NNP , NNP NNP CC NNP NNP NNS VBD IN NNP CC VBD IN JJ NNS TO VB NNP TO VB PRP$ JJ JJ NN . The United States and five other major powers also are offering Iran new incentives to suspend its nuclear work . DT NNP NNPS CC CD JJ JJ NNS RB VBP VBG NNP JJ NNS TO VB PRP$ JJ NN . EU foreign policy chief Javier Solana will visit Tehran later this week to formally present that offer . NNP JJ NN NN NNP NNP MD VB NNP RB DT NN TO RB VB DT NN . U.S. Middle East envoy George Mitchell holds talks with Israeli Prime Minister Benjamin Netanyahu in Jerusalem Thursday as he launches a new round of indirect peace talks . NNP NNP NNP NN NNP NNP VBZ NNS IN JJ NNP NNP NNP NNP IN NNP NNP IN PRP VBZ DT JJ NN IN JJ NN NNS . Mitchell met Wednesday in Ramallah with Palestinian President Mahmoud Abbas . NNP VBD NNP IN NNP IN JJ NNP NNP NNP . Chief Palestinian negotiator Saeb Erekat says the talks focused on the borders of a future Palestinian state . JJ JJ NN NNP NNP VBZ DT NNS VBD IN DT NNS IN DT JJ JJ NN . The Palestinians want a state in areas Israel captured in the 1967 war , with East Jerusalem as a capital . DT NNS VBP DT NN IN NNS NNP VBD IN DT CD NN , IN NNP NNP IN DT NN . They are demanding Israel stop building settlements in these areas . PRP VBP VBG NNP VB VBG NNS IN DT NNS . Mr. Netanyahu has accepted the idea of a Palestinian state , but with conditions and without East Jerusalem . NNP NNP VBZ VBN DT NN IN DT JJ NN , CC IN NNS CC IN NNP NNP . Mitchell plans to shuttle back and forth between both sides for as long as four months to help narrow differences . NNP VBZ TO NN RB CC RB IN DT NNS IN RB JJ IN CD NNS TO VB JJ NNS . U.S. military officials in Afghanistan say coalition troops have killed three Taleban militants , including a top commander , during a firefight in southeastern Paktika province , near the Pakistani border . NNP NN NNS IN NNP VBP NN NNS VBP VBN CD NNP NNS , VBG DT JJ NN , IN DT NN IN JJ NNP NN , IN DT JJ NN . The officials say an Afghan woman and two children were also killed in the gunfight that broke out late Tuesday when coalition troops tried to arrest the militants who were hiding in a village . DT NNS VBP DT JJ NN CC CD NNS VBD RB VBN IN DT NN WDT VBD RP RB NNP WRB NN NNS VBD TO VB DT NNS WP VBD VBG IN DT NN . The military says among the dead was Taleban commander Raz Mohammed , who was implicated in several attacks against coalition forces . DT JJ VBZ IN DT NN VBD NNP NN NNP NNP , WP VBD VBN IN JJ NNS IN NN NNS . Wednesday , five suspected insurgents were killed in a clash with U.S. troops in nearby Khost province . NNP , CD JJ NNS VBD VBN IN DT NN IN NNP NNS IN JJ NNP NN . U.S.-led coalition forces in Afghanistan are hunting Taleban loyalists who have been waging a low-level insurgency since the hard-line Islamic regime was ousted in 2001 . JJ NN NNS IN NNP VBP VBG NNP NNS WP VBP VBN VBG DT JJ NN IN DT JJ NNP NN VBD VBN IN CD . Venezuelan President Hugo Chavez has annulled a controversial intelligence decree that would have forced Venezuelans to become informants and report on their neighbors or face prison time . JJ NNP NNP NNP VBZ VBN DT JJ NN NN WDT MD VB VBN NNS TO VB NNS CC NN IN PRP$ NNS CC NN NN NN . President Chavez took the action Tuesday , saying mistakes were made that must now be corrected . NNP NNP VBD DT NN NNP , VBG NNS VBD VBN IN MD RB VB VBN . The move comes just days after Mr. Chavez said the government would amend the law . DT NN VBZ RB NNS IN NNP NNP VBD DT NN MD VB DT NN . The new law , which sparked protests , called for Venezuela 's two main intelligence services to be replaced with new agencies overseen by Mr. Chavez . DT JJ NN , WDT VBD NNS , VBN IN NNP POS CD JJ NN NNS TO VB VBN IN JJ NNS VBN IN NNP NNP . It also required Venezuelans to act as informants to secret police and community monitoring groups loyal to the president . PRP RB VBD NNS TO VB IN NNS TO JJ NN CC NN NN NNS JJ TO DT NN . Anyone refusing to provide information faced two to six years in prison . DT VBG TO VB NN VBD CD CC CD NNS IN NN . Human rights groups criticized the law , saying it could silence the president 's critics . JJ NNS NNS VBD DT NN , VBG PRP MD VB DT NN POS NNS . Mr. Chavez had said the law was intended to protect national security and combat U.S. interference . NNP NNP VBD VBN DT NN VBD VBN TO VB JJ NN CC NN NNP NN . Organizers of Afghanistan 's landmark general elections say that according to early reports from nearly all polling stations , turnout was 53 percent . NNS IN NNP POS NN JJ NNS VBP IN VBG TO JJ NNS IN RB DT NN NNS , NN VBD CD NN . U.N.-Afghan chief electoral officer Peter Erben says Thursday this is in line with earlier estimates , with some 6.6 million voters casting ballots in the first parliamentary elections in more than 30 years . JJ JJ JJ NN NNP NNP VBZ NNP DT VBZ IN NN IN JJR NNS , IN DT CD CD NNS VBG NNS IN DT JJ JJ NNS IN JJR IN CD NNS . The figure for Sunday 's polls is more than one million lower than in last year 's presidential election . DT NN IN NNP POS NNS VBZ JJR IN CD CD JJR IN IN JJ NN POS JJ NN . Analysts say a range of factors , including a complex electoral system and the fear of attacks by Taleban insurgents , have caused the drop in numbers . NNS VBP DT NN IN NNS , VBG DT JJ JJ NN CC DT NN IN NNS IN NNP NNS , VBP VBN DT NN IN NNS . Meanwhile , vote counting from the elections is under way . RB , NN NN IN DT NNS VBZ IN NN . Election officials say they plan to issue intermittent results , but a final certified result for all of the provinces is expected to take more than month . NN NNS VBP PRP VBP TO VB JJ NNS , CC DT JJ JJ NN IN DT IN DT NNS VBZ VBN TO VB JJR IN NN . United Nations officials say new fighting has been reported between Congolese troops and dissident soldiers in eastern Democratic Republic of Congo . NNP NNP NNS VBP JJ NN VBZ VBN VBN IN JJ NNS CC JJ NNS IN JJ JJ NNP IN NNP . The U.N. mission says Sunday 's violence occurred near the town of Kanyabayonga , which is held by dissident army units made of former rebels . DT NNP NN VBZ NNP POS NN VBD IN DT NN IN NNP , WDT VBZ VBN IN JJ NN NNS VBN IN JJ NNS . Tens of thousands of people have fled the area since clashes started more than a week ago . NNS IN NNS IN NNS VBP VBN DT NN IN NNS VBD JJR IN DT NN RB . Dissident soldiers are opposed to a government decision sending thousands of reinforcements to restore order in eastern Congo . JJ NNS VBP VBN TO DT NN NN VBG NNS IN NNS TO VB NN IN JJ NNP . Kinshasa ordered the deployment after neighboring Rwanda warned it may send troops to attack Rwandan Hutu fighters in eastern Congo . NNP VBD DT NN IN VBG NNP VBD PRP MD VB NNS TO VB JJ NNP NNS IN JJ NNP . Rwanda blames the militants for the country 's 1994 genocide . NNP VBZ DT NNS IN DT NN POS CD NN . Saturday , U.N. officials said foreign troops have recently crossed into eastern Congo , but did not confirm if they were Rwandan soldiers . NNP , NNP NNS VBD JJ NNS VBP RB VBN IN JJ NNP , CC VBD RB VB IN PRP VBD JJ NNS . U.S. officials in Beijing have announced that Chinese President Hu Jintao plans to visit the United States in April . NNP NNS IN NNP VBP VBN IN JJ NNP NNP NNP VBZ TO VB DT NNP NNPS IN NNP . Details of his trip have not been released . NNS IN PRP$ NN VBP RB VBN VBN . The news comes as U.S. Deputy Secretary of State Robert Zoellick is in Beijing for talks with top Chinese officials on bilateral relations , security and proliferation issues . DT NN VBZ IN NNP NNP NNP IN NNP NNP NNP VBZ IN NNP IN NNS IN JJ JJ NNS IN JJ NNS , NN CC NN NNS . Zoellick met with Chinese Premier Wen Jiabao Tuesday , and is expected to meet with Foreign Minister Li Zhaoxing . NNP VBD IN JJ NNP NNP NNP NNP , CC VBZ VBN TO VB IN NNP NNP NNP NNP . As part of his three-day trip , Zoellick will also travel to the southwestern city of Chengdu . IN NN IN PRP$ JJ NN , NNP MD RB VB TO DT JJ NN IN NNP . Brazilian drug gangs have stepped up their resistance to an army operation in the slums of Rio de Janeiro , clashing with troops during daylight hours . JJ NN NNS VBP VBN RP PRP$ NN TO DT NN NN IN DT NNS IN NNP NNP NNP , VBG IN NNS IN JJ NNS . The two sides exchanged gunfire , with gangs lobbing grenades , in the downtown Providencia shantytown Friday . DT CD NNS VBD NN , IN NNS VBG NNS , IN DT NN NNP NN NNP . A man , woman and young boy were wounded by fragments during the battle . DT NN , NN CC JJ NN VBD VBN IN NNS IN DT NN . The army launched the show of force one week ago in response to the theft of 11 weapons from a military barracks . DT NN VBD DT NN IN NN CD NN RB IN NN TO DT NN IN CD NNS IN DT JJ NNS . About 1,500 troops have been mobilized in several slum areas . IN CD NNS VBP VBN VBN IN JJ NN NNS . While residents from other areas have welcomed the security crackdown , critics have questioned the use of the military in a police role and slum dwellers have complained their lives have been disrupted . IN NNS IN JJ NNS VBP VBN DT NN NN , NNS VBP VBN DT NN IN DT NN IN DT NN NN CC NN NNS VBP VBN PRP$ NNS VBP VBN VBN . Rio is one of the world 's most violent cities . NNP VBZ CD IN DT NN POS RBS JJ NNS . Its slums are often the scene of gang and drug-related violence that kills hundreds of people each year . PRP$ NNS VBP RB DT NN IN NN CC JJ NN WDT VBZ NNS IN NNS DT NN . The United States and France are moving closer to a deal on a United Nations resolution calling for an end to the fighting in Lebanon . DT NNP NNPS CC NNP VBP VBG JJR TO DT NN IN DT NNP NNP NN VBG IN DT NN TO DT NN IN NNP . In New York Friday , U.N. Security Council President Nana Effah-Apenteng said American and French diplomats have taken the lead in drafting the resolution . IN NNP NNP NNP , NNP NNP NNP NNP NNP NNP VBD JJ CC JJ NNS VBP VBN DT NN IN VBG DT NN . But he said talks may continue through Monday to resolve remaining differences on the best way to stop the fighting . CC PRP VBD NNS MD VB IN NNP TO VB VBG NNS IN DT JJS NN TO VB DT NN . The truce resolution has been stalled by U.S. / French differences over whether a cease-fire should precede deployment of peacekeeping troops along the Israeli-Lebanese border . DT NN NN VBZ VBN VBN IN NNP CC JJ NNS IN IN DT NN MD VB NN IN VBG NNS IN DT JJ NN . In a sign of the increasing urgency of stopping the violence between Israel and Hezbollah , President Bush and French President Jacques Chirac both discussed the issue with U.N. Secretary-General Kofi Annan Friday . IN DT NN IN DT VBG NN IN VBG DT NN IN NNP CC NNP , NNP NNP CC JJ NNP NNP NNP DT VBD DT NN IN NNP NN NNP NNP NNP . Cuban President Fidel Castro has announced the renovation of the island 's electricity system , an effort to put an end to energy blackouts that have plagued Cubans for the past two years . JJ NNP NNP NNP VBZ VBN DT NN IN DT NN POS NN NN , DT NN TO VB DT NN TO NN NNS WDT VBP VBN NNS IN DT JJ CD NNS . In a speech Tuesday , Mr. Castro said the nation 's massive energy plants will be replaced by smaller , regional ones and backed up by generators . IN DT NN NNP , NNP NNP VBD DT NN POS JJ NN NNS MD VB VBN IN JJR , JJ NNS CC VBN RP IN NNS . Cuba 's energy problem reached crisis point in 2004 when a key electrical plant broke down . NNP POS NN NN VBD NN NN IN CD WRB DT JJ JJ NN VBD RP . Since then , Cubans have suffered sporadic blackouts , often during the hottest months when demand for air conditioning is high . IN RB , NNS VBP VBN JJ NNS , RB IN DT JJS NNS WRB NN IN NN NN VBZ JJ . The blackouts and power surges damage some appliances , leaving food to rot in the summer heat . DT NNS CC NN VBZ NN DT NNS , VBG NN TO NN IN DT NN NN . Witnesses in Somalia say heavy fighting between Islamist insurgents and Ethiopian troops has killed at least five people in the capital . NNS IN NNP VBP JJ NN IN NNP NNS CC JJ NNS VBZ VBN IN JJS CD NNS IN DT NN . The latest fighting began after Islamic rebels attacked an Ethiopian military base in Mogadishu . DT JJS NN VBD IN JJ NNS VBD DT JJ JJ NN IN NNP . Witnesses say several civilians were killed by stray bullets and mortar fire . NNS VBP JJ NNS VBD VBN IN JJ NNS CC NN NN . Ethiopian troops entered Somalia two years ago to help the interim government fight an Islamist movement that was threatening to take over the country . JJ NNS VBD NNP CD NNS RB TO VB DT JJ NN VB DT JJ NN WDT VBD VBG TO VB RP DT NN . Somalia has been continuously torn by conflict since the fall of dictator Mohamed Siad Barre in 1991 . NNP VBZ VBN RB VBN IN NN IN DT NN IN NN NNP NNP NNP IN CD . Israeli troops shot and killed three Palestinians near the Israel-Gaza border fence at the Kissufin crossing , Tuesday . JJ NNS VBD CC VBD CD NNS IN DT NNP NN NN IN DT NNP VBG , NNP . The Israeli army said soldiers opened fire after spotting suspicious people near the fence . DT JJ NN VBD NNS VBD NN IN VBG JJ NNS IN DT NN . Israeli soldiers arrested at least five suspected Palestinian militants after a brief exchange of gunfire near another Gaza border crossing . JJ NNS VBN IN JJS CD JJ JJ NNS IN DT JJ NN IN NN IN DT NNP NN VBG . One of the militants was wounded . CD IN DT NNS VBD VBN . The Israeli military said the firefight broke out when soldiers surrounded a house where the militants were holed up . DT JJ NN VBD DT NN VBD RP WRB NNS VBN DT NN WRB DT NNS VBD VBN RP . Palestinian witnesses say a large number of soldiers backed by tanks and helicopter gunships took part in the operations at Karni - the main terminal for transport of goods between Israel and the Gaza Strip . JJ NNS VBP DT JJ NN IN NNS VBN IN NNS CC NN NNS VBD NN IN DT NNS IN NNP IN DT JJ NN IN NN IN NNS IN NNP CC DT NNP NNP . Witnesses said Israeli tanks and bulldozers also destroyed farmlands near the town of Khan Yunis . NNS VBD JJ NNS CC NNS RB VBD NNS IN DT NN IN NNP NNP . Israeli forces have been carrying out brief incursions into Gaza since launching an offensive in late June to stop cross-border rocket attacks and rescue a captured Israeli soldier . JJ NNS VBP VBN VBG RP JJ NNS IN NNP IN VBG DT NN IN JJ NNP TO VB JJ NN NNS CC NN DT VBN JJ NN . Bolivian President-elect Evo Morales says he welcomes dialogue with the United States and forgives the U.S. government for what he calls ' so many humiliations . ' JJ NN NNP NNP VBZ PRP VBZ NN IN DT NNP NNPS CC VBZ DT NNP NN IN WP PRP VBZ `` RB JJ NNS . `` Morales made the comments Wednesday while visiting South Africa ahead of his inauguration January 22 . NNP VBD DT NNS NNP IN VBG NNP NNP RB IN PRP$ NN NNP CD . He said any dialogue that helps end discrimination and poverty is welcome . PRP VBD DT NN WDT VBZ NN NN CC NN VBZ JJ . Morales did not explain what he meant by ' humiliations . ' NNPS VBD RB VB WP PRP VBD IN `` NNS . `` But he has made no secret of his plans to end a U.S.-funded coca eradication program at work in his country . CC PRP VBZ VBN DT NN IN PRP$ NNS TO VB DT JJ NN NN NN IN NN IN PRP$ NN . Morales campaigned on promises to encourage cultivation of the coca plant , which has traditional uses but also is used to make cocaine . NNP VBD IN NNS TO VB NN IN DT NN NN , WDT VBZ JJ NNS CC RB VBZ VBN TO VB NN . Venezuelan President Hugo Chavez Tuesday said he is sure the U.S. Embassy in Bolivia has already started plotting to overthrow Morales . JJ NNP NNP NNP NNP VBD PRP VBZ JJ DT NNP NNP IN NNP VBZ RB VBN VBG TO VB NNP . But an embassy spokeswoman told the Associated Press that the idea is ridiculous . CC DT JJ NN VBD DT NNP NNP IN DT NN VBZ JJ . The U.S. ambassador to New Delhi has expressed regret for his remarks that a landmark nuclear deal could fall apart if India votes against sending Iran to the United Nations Security Council for sanctions . DT NNP NN TO NNP NNP VBZ VBN NN IN PRP$ NNS IN DT NN JJ NN MD VB RB IN NNP NNS IN VBG NNP TO DT NNP NNP NNP NNP IN NNS . In a statement Thursday , Ambassador David Mulford expressed his sincere regrets , but said his remarks had been taken out of context . IN DT NN NNP , NNP NNP NNP VBD PRP$ JJ NNS , CC VBD PRP$ NNS VBD VBN VBN IN IN NN . In Washington , the State Department distanced itself from Mulford 's comments , saying he was expressing his own opinion . IN NNP , DT NNP NNP VBD PRP IN NNP POS NNS , VBG PRP VBD VBG PRP$ JJ NN . Also Thursday , India 's Foreign Secretary Shyam Saran summoned Ambassador Mulford to tell him that his remarks were inappropriate and not conductive to building a strong partnership between the two countries . RB NNP , NNP POS NNP NNP NNP NNP VBD NNP NNP TO VB PRP IN PRP$ NNS VBD JJ CC RB JJ TO VBG DT JJ NN IN DT CD NNS . The landmark agreement calls for the U.S. to share civilian nuclear technology with India and allow the supply of nuclear fuel to New Delhi . DT NN NN VBZ IN DT NNP TO VB JJ JJ NN IN NNP CC VB DT NN IN JJ NN TO NNP NNP . In return , India is to separate its civilian and military nuclear programs and allow international inspection of its civilian facilities . IN NN , NNP VBZ TO VB PRP$ JJ CC JJ JJ NNS CC VB JJ NN IN PRP$ JJ NNS . Palestinian security sources say Israel troops are withdrawing from the West Bank city of Nablus after two days of house-to-house searches for militants and bomb factories . JJ NN NNS VBP NNP NNS VBP VBG IN DT NNP NNP NN IN NNP IN CD NNS IN NN NNS IN NNS CC NN NNS . The sources say the Israeli forces began leaving Nablus late Monday . DT NNS VBP DT JJ NNS VBD VBG NNP JJ NNP . However , the Israeli military has not confirmed that the operation is completely over . RB , DT JJ NN VBZ RB VBN IN DT NN VBZ RB IN . Israeli troops entered the densely populated Palestinian city early Sunday and detained dozens of people . JJ NNS VBD DT RB JJ JJ NN JJ NNP CC VBN NNS IN NNS . They imposed a curfew that confined about 50,000 Palestinians to their homes . PRP VBD DT NN WDT VBD IN CD NNS TO PRP$ NNS . Palestinians say Israeli gunfire Monday killed one Palestinian man and wounded several others . NNS VBP JJ NN NNP VBD CD JJ NN CC VBD JJ NNS . The Israeli military said soldiers have uncovered at least three explosives laboratories . DT JJ NN VBD NNS VBP VBN IN JJS CD NNS NNS . Palestinian officials have condemned the operation , saying it could spark a new cycle of violence and undermine efforts to revive the peace process . JJ NNS VBP VBN DT NN , VBG PRP MD VB DT JJ NN IN NN CC VB NNS TO VB DT NN NN . Israel , which describes Nablus as a terrorist hub , says the operation has been essential for defending Israeli citizens . NNP , WDT VBZ NNP IN DT JJ NN , VBZ DT NN VBZ VBN JJ IN VBG JJ NNS . Indonesia has added more than 7,000 people to the death toll from last month 's earthquake and tsunami , bringing the total number of dead in that country to nearly 1,74,000 . NNP VBZ VBN JJR IN CD NNS TO DT NN NN IN JJ NN POS NN CC NN , VBG DT JJ NN IN JJ IN DT NN TO RB CD . Welfare Minister Alwi Shihab said Saturday that an estimated 1,00,000 people are still missing . NNP NNP NNP NNP VBD NNP IN DT JJ CD NNS VBP RB VBG . He added that the death toll may rise as officials begin focusing on rebuilding the devastated province . PRP VBD IN DT NN NN MD VB IN NNS VBP VBG IN VBG DT JJ NN . Mr. Shihab also repeated the government 's call for separatist rebels to resume peace negotiations . NNP NNP RB VBD DT NN POS NN IN JJ NNS TO VB NN NNS . Meanwhile , Sri Lanka 's Tamil Tiger rebels have accused the government of obstructing aid deliveries to tsunami-affected areas under rebel control - a charge officials deny . RB , NNP NNP POS NNP NNP NNS VBP VBN DT NN IN VBG NN NNS TO JJ NNS IN NN NN IN DT NN NNS VBP . Rebel leaders met with Norwegian Foreign Minister Jan Petersen and another peace envoy in the rebel stronghold , Kilinochchi Saturday to discuss the disaster . NN NNS VBD IN JJ NNP NNP NNP NNP CC DT NN NN IN DT NN NN , NNP NNP TO VB DT NN . Mr. Petersen is in Sri Lanka for talks aimed at reviving peace efforts between the rebels and government , and assess the needs of tsunami-hit areas . NNP NNP VBZ IN NNP NNP IN NNS VBN IN VBG NN NNS IN DT NNS CC NN , CC VB DT NNS IN JJ NNS . Early results from Taiwan 's parliamentary election show pro-independence parties in the lead . RB NNS IN NNP POS JJ NN VBP JJ NNS IN DT NN . President Chen Shui-bian 's Democratic Progressive Party and its ally , the Taiwan Solidarity Union , are about three seats ahead of the opposition Nationalist alliance , with about a third of the votes counted . NNP NNP NNP POS JJ NNP NNP CC PRP$ NN , DT NNP NNP NNP , VBP IN CD NNS RB IN DT NN NN NN , IN IN DT NN IN DT NNS VBN . President Chen is hoping his pro-independence coalition will win a majority in Taiwan 's 225-seat legislature . NNP NNP VBZ VBG PRP$ JJ NN MD VB DT NN IN NNP POS JJ NN . A coalition led by the Nationalist Party , which advocates unification with Beijing , currently controls 51 percent of the legislature . DT NN VBN IN DT NNP NNP , WDT VBZ NN IN NNP , RB VBZ CD NN IN DT NN . A total of 386 candidates vied for 176 directly elected seats . DT NN IN CD NNS VBN IN CD RB VBN NNS . The remaining 49 seats will be allocated based on the proportion of total votes each party receives . DT VBG CD NNS MD VB VBN VBN IN DT NN IN JJ NNS DT NN VBZ . Full election results are expected by 9.00 p.m. local time . JJ NN NNS VBP VBN IN CD NN JJ NN . The United Nations World Food program has condemned the hijacking of another ship it hired to transport food to Somalians suffering from famine . DT NNP NNP NNP NNP NN VBZ VBN DT NN IN DT NN PRP VBD TO VB NN TO NNPS VBG IN NN . The WFP says the ship Miltzow was being unloaded Wednesday afternoon at the port of Merka when a group of gunmen boarded and forced the crew to sail out of the port . DT NNP VBZ DT NN NNP VBD VBG VBN NNP NN IN DT NN IN NNP WRB DT NN IN NNS VBD CC VBD DT NN TO VB IN IN DT NN . The Miltzow was carrying maize , beans and cooking oil . DT NNP VBD VBG NN , NNS CC JJ NN . On Monday , the freighter Torgelow was hijacked off the eastern coast of Somalia . IN NNP , DT NN NNP VBD VBN IN DT JJ NN IN NNP . The Torgelow was carrying fuel and supplies to another ship , the Semlow , which was recently freed by hijackers . DT NNP VBD VBG NN CC NNS TO DT NN , DT NNP , WDT VBD RB VBN IN NNS . The Semlow was hijacked in June as it sailed from Kenya to Somalia with a load of rice donated by Japan and Germany . DT NNP VBD VBN IN NNP IN PRP VBD IN NNP TO NNP IN DT NN IN NN VBN IN NNP CC NNP . The head of the U.N. 's nuclear agency is calling on Iran 's Arab neighbors to play a greater role in resolving the dispute between Tehran and the West over Iran 's nuclear program . DT NN IN DT NNP POS JJ NN VBZ VBG IN NNP POS JJ NNS TO VB DT JJR NN IN VBG DT NN IN NNP CC DT NNP IN NNP POS JJ NN . International Atomic Energy Agency chief Mohamed ElBaradei Tuesday accused Arab nations of ' sitting on the fence , ' and urged them to engage in dialogue . NNP NNP NNP NNP JJ NNP NNP NNP VBD JJ NNS IN `` VBG IN DT NN , `` CC VBD PRP TO VB IN NN . Speaking in Vienna , Elbaradei said Iran ' could be a positive force in the region ; it could also be a source of conflict . ' VBG IN NNP , NNP VBD NNP `` MD VB DT JJ NN IN DT NN ; PRP MD RB VB DT NN IN NN . `` Several European powers and the U.S. accuse Tehran of secretly seeking nuclear weapons , a charge Iran denies . JJ JJ NNS CC DT NNP VBP NNP IN RB VBG JJ NNS , DT NN NNP VBZ . The IAEA says Tehran is hampering its efforts to fully inspect its nuclear program and resolve the dispute . DT NNP VBZ NNP VBZ VBG PRP$ NNS TO RB VB PRP$ JJ NN CC VB DT NN . Elbaradei also welcomed Washington 's recent turnabout at the IAEA , in which it promised to join in talks with other agency board members with Iran about the standoff . NNP RB VBD NNP POS JJ NN IN DT NNP , IN WDT PRP VBD TO VB IN NNS IN JJ NN NN NNS IN NNP IN DT NN . Lebanon has filed charges against two Lebanese brothers named in a U.N. probe into the assassination of former Prime Minister Rafik Hariri . NNP VBZ VBN NNS IN CD JJ NNS VBN IN DT NNP NN IN DT NN IN JJ NNP NNP NNP NNP . Officials said they had recently arrested the two men , Ahmad and Mahmoud Abdel-Al , who are members of a pro-Syrian Islamic militant group , Al-Ahbash . NNS VBD PRP VBD RB VBN DT CD NNS , NNP CC NNP NNP , WP VBP NNS IN DT JJ JJ JJ NN , NNP . Meanwhile , U.S. officials warned of possible measures against Syria if it refuses to cooperate with the U.N. probe into Mr. Hariri 's killing . RB , NNP NNS VBD IN JJ NNS IN NNP IN PRP VBZ TO VB IN DT NNP NN IN NNP NNP POS NN . U.S. officials are co-sponsoring a draft resolution at the United Nations that would impose sanctions on suspects in the murder . NNP NNS VBP VBG DT NN NN IN DT NNP NNP WDT MD VB NNS IN NNS IN DT NN . Syrian officials have rejected the U.N. probe , which implicates top Syrian and Lebanese officials . JJ NNS VBP VBN DT NNP NN , WDT VBZ JJ JJ CC JJ NNS . Russia , which holds a veto on the Security Council , says it will oppose sanctions against Syria . NNP , WDT VBZ DT NN IN DT NNP NNP , VBZ PRP MD VB NNS IN NNP . The Arab League and Mr. Hariri 's son , Saad , have also expressed opposition to possible U.N. sanctions . DT NNP NNP CC NNP NNP POS NN , NNP , VBP RB VBN NN TO JJ NNP NNS . Ethiopia has reported 18 new cases of polio as it begins a nationwide vaccination program targeting more than 16 million children under the age of five . NNP VBZ VBN CD JJ NNS IN NN IN PRP VBZ DT JJ NN NN VBG JJR IN CD CD NNS IN DT NN IN CD . A health ministry official says the polio cases were found in the Tigray , Amhara and Oromia regions . DT NN NN NN VBZ DT NN NNS VBD VBN IN DT NNP , NNP CC NNP NNS . The country kicked off its polio immunization campaign on Wednesday with over 1,00,000 volunteers and health workers taking part . DT NN VBD RP PRP$ NN NN NN IN NNP IN IN CD NNS CC NN NNS VBG NN . Polio has spread in Africa and elsewhere as far as Indonesia following a 2003 boycott of immunizations by Islamic leaders in northern Nigeria . NNP VBZ VBN IN NNP CC RB RB RB IN NNP VBG DT CD NN IN NNS IN JJ NNS IN JJ NNP . They claimed the vaccine was contaminated . PRP VBD DT NN VBD VBN . President Bush is promoting his new nominee for Supreme Court justice , citing what he says is a wealth of judicial experience . NNP NNP VBZ VBG PRP$ JJ NN IN NNP NNP NN , VBG WP PRP VBZ VBZ DT NN IN JJ NN . Mr. Bush said on U.S. radio Saturday that Samuel Alito , currently a federal appeals court judge , has more prior judicial experience than any Supreme Court nominee in more than 70 years . NNP NNP VBD IN NNP NN NNP IN NNP NNP , RB DT JJ NNS NN NN , VBZ RBR JJ JJ NN IN DT NNP NNP NN IN JJR IN CD NNS . He also said Judge Alito has the qualities the American people expect - mastery of the law , a deep commitment to justice , and great personal character . PRP RB VBD NNP NNP VBZ DT NNS DT JJ NNS VBP IN NN IN DT NN , DT JJ NN TO NN , CC JJ JJ NN . On Friday , the president told reporters he is disappointed that Senate confirmation hearings will not take place until January 9 for the man he hopes will succeed retiring Justice Sandra Day O'Connor . IN NNP , DT NN VBD NNS PRP VBZ VBN IN NNP NN NNS MD RB VB NN IN NNP CD IN DT NN PRP VBZ MD VB VBG NNP NNP NNP NNP . Mr. Bush nominated Judge Alito October 31 , four days after his first nominee Harriet Miers withdrew amid criticism that she lacked judicial experience . NNP NNP VBD NNP NNP NNP CD , CD NNS IN PRP$ JJ NN NNP NNP VBD IN NN IN PRP VBD JJ NN . Afghanistan on Tuesday ordered a top European Union official and a United Nations employee to leave the country for allegedly threatening national security . NNP IN NNP VBD DT JJ NNP NNP NN CC DT NNP NNP NN TO VB DT NN IN RB JJ JJ NN . Government spokesman Humayun Hamidzada said authorities had detained the pair -- one British , the other Irish -- along with their Afghan colleagues who are being investigated . NNP NN NNP NNP VBD NNS VBD VBN DT NN : CD NN , DT JJ NN : IN IN PRP$ JJ NNS WP VBP VBG VBN . The spokesman said the two , based in southern Helmand province , were involved in activities outside their mandate . DT NN VBD DT CD , VBN IN JJ NNP NN , VBD VBN IN NNS IN PRP$ NN . He said they have been declared persona non grata and have been given 48 hours to leave . PRP VBD PRP VBP VBN VBN JJ NN NN CC VBP VBN VBN CD NNS TO VB . The two men are accused of having meetings with different tribes and groups , including possibly the Taliban . DT CD NNS VBP VBN IN VBG NNS IN JJ NNS CC NNS , VBG RB DT NNP . One European diplomat said there is hope the incident is a result of a misunderstanding . CD JJ NN VBD EX VBZ NN DT NN VBZ DT NN IN DT NN . A U.N. spokesman , Aleem Siddique , said the U.N. mission in Afghanistan is trying to clarify the situation . DT NNP NN , NNP NNP , VBD DT NNP NN IN NNP VBZ VBG TO VB DT NN . Masked assailants with grenades and automatic weapons attacked a wedding party in southeastern Turkey , killing 45 people and wounding at least six others . VBN NNS IN NNS CC JJ NNS VBD DT VBG NN IN JJ NNP , VBG CD NNS CC VBG IN JJS CD NNS . Turkish officials said the attack occurred Monday in the village of Bilge about 600 kilometers from Ankara . JJ NNS VBD DT NN VBD NNP IN DT NN IN NNP IN CD NNS IN NNP . The wounded were taken to the hospital in the nearby city of Mardin . DT VBN VBD VBN TO DT NN IN DT JJ NN IN NNP . Soldiers cut off the roads leading to the village as they searched for the gunmen . NNS VBD RP DT NNS VBG TO DT NN IN PRP VBD IN DT NNS . Officials said they were not sure of the motive for the attack , which took place at the wedding of the daughter of a village official . NNS VBD PRP VBD RB JJ IN DT NN IN DT NN , WDT VBD NN IN DT NN IN DT NN IN DT NN NN . Interior Minister Besir Atalay said there was no apparent link to terrorism . NN NN NNP NNP VBD EX VBD DT JJ NN TO NN . Turkey 's NTV television said the fighting may have involved rival members of state-sponsored militia set up to combat Kurdish separatist guerrillas . NNP POS NNP NN VBD DT NN MD VB VBN JJ NNS IN JJ NN VBN RP TO VB NNP JJ NNS . Other reports suggested the violence was linked to a clan feud . JJ NNS VBD DT NN VBD VBN TO DT JJ NN . United Nations Secretary-General Kofi Annan says he is deeply disappointed in the decision of Burma 's military rulers to extend the house arrest of opposition leader Aung San Suu Kyi for another six months . NNP NNP NNP NNP NNP VBZ PRP VBZ RB JJ IN DT NN IN NNP POS JJ NNS TO VB DT NN NN IN NN NN NNP NNP NNP NNP IN DT CD NNS . The statement by Mr. Annan says the continued detention is not in the interest of Burma 's national reconciliation and democratization . DT NN IN NNP NNP VBZ DT JJ NN VBZ RB IN DT NN IN NNP POS JJ NN CC NN . Aung San Suu Kyi , the head of the National League for Democracy , has spent 10 of the past 16 years in detention , mostly under house arrest . NNP NNP NNP NNP , DT NN IN DT NNP NNP IN NNP , VBZ VBN CD IN DT JJ CD NNS IN NN , RB IN NN NN . Her current sentence was due to expire this month . PRP$ JJ NN VBD JJ TO VB DT NN . Mark Farmaner of Burma Campaign UK told VOA 's Burmese Service that Aung San Suu Kyi 's detention was extended because the junta 's ruling generals hope the world will forget about her . NNP NNP IN NNP NNP NNP VBD NNP POS JJ NNP IN NNP NNP NNP NNP POS NN VBD VBN IN DT NN POS NN NNS VBP DT NN MD VB IN PRP . The United States and the European Union have imposed sanctions on Burma for its suppression of the pro-democracy movement . DT NNP NNPS CC DT NNP NNP VBP VBN NNS IN NNP IN PRP$ NN IN DT JJ NN . Officials in Seoul say the South Korean government has approved a proposal to withdraw one-third of the country 's troops from Iraq , while extending the remaining soldiers ' deployment by a year . NNS IN NNP VBP DT JJ JJ NN VBZ VBN DT NN TO VB NN IN DT NN POS NNS IN NNP , IN VBG DT VBG NNS POS NN IN DT NN . President Roh Moo-hyun 's Cabinet endorsed the withdrawal of 1,000 troops during the first half of next year . NNP NNP NNP POS NNP VBD DT NN IN CD NNS IN DT JJ NN IN JJ NN . Remaining members of the 3,200-strong South Korean contingent in Iraq would remain there until December 2006 . VBG NNS IN DT JJ JJ JJ NN IN NNP MD VB RB IN NNP CD . After a review by Mr. Roh , the troop-reduction bill is expected to go before Parliament by Wednesday . IN DT NN IN NNP NNP , DT NN NN VBZ VBN TO VB IN NNP IN NNP . South Korea 's troops have been assigned to relief and rehabilitation efforts in the northern Iraqi town of Arbil since 2004 . NNP NNP POS NNS VBP VBN VBN TO NN CC NN NNS IN DT JJ JJ NN IN NNP IN CD . After the United States and Britain , Seoul 's troops make up the third-largest force in Iraq . IN DT NNP NNPS CC NNP , NNP POS NNS VBP RP DT JJ NN IN NNP . A new medical report says secondhand smoke can be just as harmful as smoking , and separate sections for smokers and nonsmokers in restaurants and bars do not help . DT JJ JJ NN VBZ JJ NN MD VB RB RB JJ IN NN , CC JJ NNS IN NNS CC NNS IN NNS CC NNS VBP RB VB . The U.S. Surgeon General , America 's top medical official , released the report Tuesday . DT NNP NNP NNP , NNP POS JJ JJ NN , VBD DT NN NNP . It says only smoke-free buildings and public places really protect nonsmokers from disease-causing agents in tobacco smoke . PRP VBZ RB JJ NNS CC JJ NNS RB VBP NNS IN JJ NNS IN NN NN . The report says children are particularly vulnerable to secondhand smoke . DT NN VBZ NNS VBP RB JJ TO VB NN . It says children in homes where parents smoke are at increased risk for sudden infant death syndrome , lung infections and more severe asthma . PRP VBZ NNS IN NNS WRB NNS VBP VBP IN VBN NN IN JJ NN NN NN , NN NNS CC JJR JJ NN . A 2005 report from the Centers for Disease Control and Prevention estimated that secondhand smoke causes some 3,000 deaths each year from lung cancer , and 46,000 deaths from heart disease . DT CD NN IN DT NNPS IN NNP NNP CC NNP VBD IN JJ NN VBZ DT CD NNS DT NN IN NN NN , CC CD NNS IN NN NN . Secondhand smoke is also blamed for 430 infant deaths annually in the United States . NNP NN VBZ RB VBN IN CD NN NNS RB IN DT NNP NNPS . Portugal 's national football ( soccer ) team will host a match to raise funds to aid victims of the tsunami disaster in Asia . NNP POS JJ NN LRB NN RRB NN MD VB DT NN TO VB NNS TO VB NNS IN DT NN NN IN NNP . The president of the Portuguese Football Federation says Portugal 's national team will play a squad made up of players from the Asian nations hit by last weekend 's devastating tsunami . DT NN IN DT JJ NNP NNP VBZ NNP POS JJ NN MD VB DT NN VBN IN IN NNS IN DT JJ NNS VBN IN JJ NN POS JJ NN . The match will be played during the first two weeks of January at Lisbon 's 65,000 seat Stadium of Light . DT NN MD VB VBN IN DT JJ CD NNS IN NNP IN NNP POS CD NN NNP IN NNP . Money raised from ticket sales for the game will be donated to charities working to aid victims of the earthquake-triggered disaster , which may have killed as many as 1,50,000 people . NN VBN IN NN NNS IN DT NN MD VB VBN TO NNS VBG TO VB NNS IN DT JJ NN , WDT MD VB VBN RB JJ IN CD NNS . The European Parliament , the legislative arm of the European Union , has approved members of a new EU executive commission after nearly three weeks of negotiations . DT NNP NNP , DT JJ NN IN DT NNP NNP , VBZ VBN NNS IN DT JJ NNP NN NN IN RB CD NNS IN NNS . The new lineup was approved early Thursday by a wide margin . DT JJ NN VBD VBN JJ NNP IN DT JJ NN . The vote means incoming commission chief Jose Manuel Barroso will likely take office Monday . DT NN VBZ JJ NN NN NNP NNP NNP MD RB VB NN NNP . After the vote , Mr. Barroso thanked the parliament for the strong vote of confidence and said he recognizes the responsibility that implies . IN DT NN , NNP NNP VBD DT NN IN DT JJ NN IN NN CC VBD PRP VBZ DT NN IN VBZ . The newly-elected commission members were nominated by Mr. Barroso . DT JJ NN NNS VBD VBN IN NNP NNP . The commission had been expected to be in place late last month , but Mr. Barroso withdrew his first nominees when parliament objected to some of them . DT NN VBD VBN VBN TO VB IN NN RB JJ NN , CC NNP NNP VBD PRP$ JJ NNS WRB NN VBD TO DT IN PRP . The blast occurred at 8.20 am as President Rugova 's motorcade was headed to a meeting with European Union foreign policy chief Javier Solana . DT NN VBD IN CD RB IN NNP NNP POS NN VBD VBN TO DT NN IN NNP NNP JJ NN NN NNP NNP . There was no one seriously injured . EX VBD DT CD RB VBN . One person was injured . CD NN VBD VBN . The president was not injured . DT NN VBD RB VBN . There was flying glass and a shop window was blown out . EX VBD VBG NN CC DT NN NN VBD VBN RP . And the police are saying that was apparently detonated by remote control . CC DT NNS VBP VBG DT VBD RB VBN IN JJ NN . Mr. Rugova went on with his regular schedule and said that this proves that there are still elements that want to destabilize Kosovo . NNP NNP VBD IN IN PRP$ JJ NN CC VBD IN DT VBZ IN EX VBP RB NNS WDT VBP TO VB NNP . Sweden has raised its terror alert level from ' low ' to ' elevated ' because of intelligence information the security service said pointed to a ' shift ' in activities by groups targeting the country . NNP VBZ VBN PRP$ NN NN NN IN `` JJ `` IN `` VBN `` IN IN NN NN DT NN NN VBD JJ TO DT `` NN `` IN NNS IN NNS VBG DT NN . The Swedish Security Service said Friday there was no imminent threat of an attack . DT JJ NNP NNP VBD NNP EX VBD DT JJ NN IN DT NN . It said the shift was linked to groups in Sweden , but did not provide any further details . PRP VBD DT NN VBD VBN TO NNS IN NNP , CC VBD RB VB DT JJ NNS . Sweden 's move comes after a report earlier this week of a potential terror plot being hatched in Pakistan to attack several European capitals . NNP POS NN VBZ IN DT NN RBR DT NN IN DT JJ NN NN VBG VBN IN NNP TO VB JJ JJ NNS . U.S. and European officials have said that plot was in its initial planning stages and not considered concrete enough to raise the terror threat level in European cities . NNP CC JJ NNS VBP VBN IN NN VBD IN PRP$ JJ NN NNS CC RB VBN JJ RB TO VB DT NN NN NN IN JJ NNS . Swedish security officials noted that the threat level in Sweden was low compared to other European countries . JJ NN NNS VBD IN DT NN NN IN NNP VBD JJ VBN TO JJ JJ NNS . Survivors in southern Egypt say a candle fell over on a stage set late Monday , sparking a fire in a crowded theater that killed at least 31 people and injured about 30 others . NNS IN JJ NNP VBP DT NN VBD RP IN DT NN NN JJ NNP , VBG DT NN IN DT JJ NN WDT VBD IN JJ CD NNS CC VBD IN CD NNS . Witnesses say the fire in the city of Beni Suef spread quickly across the stage , triggering a stampede of spectators trying to exit the burning building . NNS VBP DT NN IN DT NN IN NNP NNP VBD RB IN DT NN , VBG DT NN IN NNS VBG TO VB DT NN NN . Authorities say the one-storey theater building - attached to a state-run culture center - burned to the ground within an hour . NNS VBP DT JJ NN NN : VBN TO DT JJ NN NN IN VBN TO DT NN IN DT NN . The fire is the worst in Egypt since a blaze aboard a crowded train near Cairo killed more than 350 people in 2002 . DT NN VBZ DT JJS IN NNP IN DT NN IN DT JJ NN IN NNP VBD JJR IN CD NNS IN CD . Afghan officials say seven people were killed in eastern Afghanistan Saturday when the vehicle they were driving hit a roadside bomb . JJ NNS VBP CD NNS VBD VBN IN JJ NNP NNP WRB DT NN PRP VBD VBG VBN DT NN NN . The blast occurred in the eastern province of Kunar near the Pakistani border . DT NN VBD IN DT JJ NN IN NNP IN DT JJ NN . The victims were security guards working for a road construction company . DT NNS VBD NN NNS VBG IN DT NN NN NN . Authorities do not know who was behind the attacks . NNS VBP RB VB WP VBD IN DT NNS . Taliban militants waging an insurgent campaign against the government in Kabul have been blamed for similar incidents in the past . NNP NNS VBG DT JJ NN IN DT NN IN NNP VBP VBN VBN IN JJ NNS IN DT NN . Also today , a suicide bomber blew himself up in an attempted attack in the western Farah province . RB NN , DT NN NN VBD PRP RP IN DT JJ NN IN DT JJ NNP NN . Officials say there were no other casualties . NNS VBP EX VBD DT JJ NNS . Police in France and Germany have encountered small , peaceful protests in sharp contrast to the violent clashes in Strasbourg Thursday evening ahead of NATO 's 60th anniversary summit . NNS IN NNP CC NNP VBP VBN JJ , JJ NNS IN JJ NN TO DT JJ NNS IN NNP NNP NN RB IN NNP POS JJ NN NN . Several hundred demonstrators protested calmly in the German town of Baden-Baden as U.S. President Barack Obama and German Chancellor Angela Merkel met at the town hall . JJ CD NNS VBD RB IN DT JJ NN IN JJ IN NNP NNP NNP NNP CC JJ NNP NNP NNP VBD IN DT NN NN . French police strengthened their cordon around the city of Strasbourg after detaining 300 people during clashes between protesters and police . JJ NNS VBD PRP$ NN IN DT NN IN NNP IN VBG CD NNS IN NNS IN NNS CC NNS . Officials say about 100 demonstrators are still in custody . NNS VBP IN CD NNS VBP RB IN NN . Police used tear gas on the demonstrators , who smashed windows and set fire to trash bins as security forces sought to block a protest march toward central Strasbourg . NNS VBD JJ NN IN DT NNS , WP VBD NNS CC VBD NN TO VB NNS IN NN NNS VBD TO VB DT NN NN IN JJ NNP . German and French authorities have deployed about 25,000 police to maintain security around the two towns . JJ CC JJ NNS VBP VBN IN CD NNS TO VB NN IN DT CD NNS . The absence of Burma 's military leader at an Independence Day dinner this week is generating more concern about his health . DT NN IN NNP POS JJ NN IN DT NNP NNP NN DT NN VBZ VBG RBR NN IN PRP$ NN . Diplomats say 73-year-old General Than Shwe did not attend Thursday evening 's dinner because he was having medical tests in Singapore . NNS VBP JJ NNP NNP NNP VBD RB VB NNP NN POS NN IN PRP VBD VBG JJ NNS IN NNP . It was the first time since Than Shwe took power in 1992 that he did not host the annual dinner . PRP VBD DT JJ NN IN NNP NNP VBD NN IN CD IN PRP VBD RB VB DT JJ NN . Instead , the military government 's second-in-command , General Maung Aye , hosted the event this year . RB , DT JJ NN POS NN , NNP NNP NNP , VBD DT NN DT NN . Diplomats say they were told that Than Shwe 's medical tests in Singapore were routine . NNS VBP PRP VBD VBN IN NNP NNP POS JJ NNS IN NNP VBD JJ . However , it is believed that he suffers from hypertension , diabetes and other ailments . RB , PRP VBZ VBN IN PRP VBZ IN NN , NNS CC JJ NNS . The military government in the past has dismissed rumors that the ailing senior leader is gravely ill . DT JJ NN IN DT NN VBZ VBN NNS IN DT JJ JJ NN VBZ RB JJ . The U.S. automotive company General Motors is reporting its largest annual loss . DT NNP JJ NN NNP NNP VBZ VBG PRP$ JJS JJ NN . GM Tuesday announced a deficit of $ 38.7 billion in 2007 . NNP NNP VBD DT NN IN $ CD CD IN CD . It posted a fourth-quarter loss of $ 722 million . PRP VBD DT JJ NN IN $ CD CD . In a restructuring effort , the company said it will offer buyouts to 74,000 hourly workers in the United States . IN DT NN NN , DT NN VBD PRP MD VB NNS TO CD JJ NNS IN DT NNP NNPS . General Motors is the world 's largest automaker . NNP NNPS VBZ DT NN POS JJS NN . It says its North American division is struggling . PRP VBZ PRP$ JJ JJ NN VBZ VBG . But overall , GM reported earlier this month that it sold more than two percent more cars this January than it had one year ago . CC JJ , NNP VBD RBR DT NN IN PRP VBD JJR IN CD NN JJR NNS DT NNP IN PRP VBD CD NN RB . That increase followed sales declines reported by other major car companies . DT NN VBD NNS NNS VBN IN JJ JJ NN NNS . White House spokeswoman Dana Perino today said GM 's loss is ' significant . ' NNP NNP NN NNP NNP NN VBD NNP POS NN VBZ `` JJ . `` But she cited the company 's restructuring efforts and expressed optimism that the automaker would remain competitive . CC PRP VBD DT NN POS NN NNS CC VBD NN IN DT NN MD VB JJ . Italian officials say Taleban forces may have kidnapped an Italian journalist missing in southern Afghanistan for three days . JJ NNS VBP NNP NNS MD VB VBN DT JJ NN VBG IN JJ NNP IN CD NNS . Daniele Mastrogiacomo , a reporter for Italy 's La Repubblica newspaper , disappeared Sunday in Kandahar province with his interpreter and a guide , both Afghans . NNP NNP , DT NN IN NNP POS NNP NNP NN , VBD NNP IN NNP NN IN PRP$ NN CC DT NN , DT NNS . A Taleban spokesman said Tuesday the group had captured a European reporter on suspicion of spying for British forces . DT NNP NN VBD NNP DT NN VBD VBN DT JJ NN IN NN IN VBG IN JJ NNS . The spokesman did not mention Mastrogiacomo by name . DT NN VBD RB VB NNP IN NN . Italy 's ambassador to Afghanistan , Ettore Francesco Sequi , told the French Press Agency Wednesday that there has been no contact with the kidnappers so far . NNP POS NN TO NNP , NNP NNP NNP , VBD DT NNP NNP NNP NNP IN EX VBZ VBN DT NN IN DT NNS RB RB . Mastrogiacomo , 52 , has been covering conflicts in Central Asia and the Middle East for La Repubblica since 2002 . NNP , CD , VBZ VBN VBG NNS IN NNP NNP CC DT NNP NNP IN NNP NNP IN CD . Indian police say one person was killed and at least 26 others wounded by an explosion in Indian-controlled Kashmir Wednesday . JJ NNS VBP CD NN VBD VBN CC IN JJS CD NNS VBN IN DT NN IN JJ NNP NNP . It is unclear what caused the blast that sparked panic in a busy market area of Rajouri town , about 100 miles north of Jammu , in southern Kashmir . PRP VBZ JJ WP VBD DT NN WDT VBD NN IN DT JJ NN NN IN NNP NN , IN CD NNS RB IN NNP , IN JJ NNP . So far , none of the rebel groups operating in Kashmir have claimed responsiblity . RB RB , NN IN DT NN NNS VBG IN NNP VBP VBN NN . Militant separatists have been fighting Indian rule in Kashmir since 1989 . JJ NNS VBP VBN VBG JJ NN IN NNP IN CD . Thousands have died in violence over the disputed region , and India and Pakistan have fought two wars over it . NNS VBP VBN IN NN IN DT JJ NN , CC NNP CC NNP VBP VBN CD NNS IN PRP . But violence has eased since the nuclear rivals began moving toward peace more than a year ago . CC NN VBZ VBN IN DT JJ NNS VBD VBG IN NN RBR IN DT NN RB . Palestinian officials say President Mahmoud Abbas is heading to the Gaza Strip Saturday - his first trip to the region since deadly clashes between Fatah party supporters and the rival Hamas faction . JJ NNS VBP NNP NNP NNP VBZ VBG TO DT NNP NNP NNP IN PRP$ JJ NN TO DT NN IN JJ NNS IN NNP NN NNS CC DT JJ NNP NN . Officials have not explained the purpose of his visit . NNS VBP RB VBN DT NN IN PRP$ NN . Mr. Abbas of Fatah and Prime Minister Ismail Haniyeh of Hamas are expected to hold mediation talks in Jordan with King Abdullah . NNP NNP IN NNP CC NNP NNP NNP NNP IN NNP VBP VBN TO VB NN NNS IN NNP IN NNP NNP . No date has been given for those talks . DT NN VBZ VBN VBN IN DT NNS . Tensions between Fatah and Hamas have been high for months . NNS IN NNP CC NNP VBP VBN JJ IN NNS . Last month , forces from each side fought open street battles in Gaza and the West Bank . JJ NN , NNS IN DT NN VBD JJ NN NNS IN NNP CC DT NNP NNP . At least 17 people died in that fighting . IN JJS CD NNS VBD IN DT NN . A ceasefire agreed to last week has largely ended the violence , but has done little to resolve the standoff . DT NN VBD TO JJ NN VBZ RB VBN DT NN , CC VBZ VBN RB TO VB DT NN . The first round of historic trade negotiations between Australia and China is under way in Sydney . DT JJ NN IN JJ NN NNS IN NNP CC NNP VBZ IN NN IN NNP . A free trade agreement between the two countries would boost China 's effort to be accepted as a full market economy and would provide Australia with access to the world 's largest marketplace . DT JJ NN NN IN DT CD NNS MD VB NNP POS NN TO VB VBN IN DT JJ NN NN CC MD VB NNP IN NN TO DT NN POS JJS NN . The chairman of China 's National People 's Congress told trade forum members Monday that relations between the two countries have never been better . DT NN IN NNP POS NNP NNP POS NNP VBD NN NN NNS NNP IN NNS IN DT CD NNS VBP RB VBN JJR . China is Australia 's third-largest trading partner . NNP VBZ NNP POS JJ NN NN . China supplies consumer goods and clothing while key Australian exports include iron ore , wheat , petroleum and coal . NNP NNS NN NNS CC NN IN JJ JJ NNS VBP NN NN , NN , NN CC NN . Australia already has negotiated free trade agreements with the United States , Thailand , Singapore and New Zealand . NNP RB VBZ VBN JJ NN NNS IN DT NNP NNPS , NNP , NNP CC NNP NNP . China is mired in increasingly bitter trade disputes with the United States and the European Union . NNP VBZ VBN IN RB JJ NN NNS IN DT NNP NNPS CC DT NNP NNP . Officials in Pakistan say suspected pro-Taleban militants have killed an elderly tribal leader for allegedly spying for U.S.-led forces operating in neighboring Afghanistan . NNS IN NNP VBP JJ JJ NNS VBP VBN DT JJ JJ NN IN RB VBG IN JJ NNS VBG IN VBG NNP . The officials said Saturday they found the bullet-riddled body of Rahim Jan in the tribal northwestern region of North Waziristan . DT NNS VBD NNP PRP VBD DT JJ NN IN NNP NNP IN DT JJ JJ NN IN NNP NNP . He was 70 years old . PRP VBD CD NNS JJ . A note found on the body said anyone else caught for spying would face a similar fate . DT NN VBN IN DT NN VBD DT RB VBN IN VBG MD VB DT JJ NN . The volatile North Waziristan region is a known hideout for Taleban remnants . DT JJ NNP NNP NN VBZ DT JJ NN IN NNP NNS . Pakistani President Pervez Musharraf signed a ceasefire accord Tuesday with tribal militants in the region . JJ NNP NNP NNP VBD DT JJ NN NNP IN JJ NNS IN DT NN . Under the deal , Pakistan 's military will stop its crackdown in the border region if the militants disarm or expel foreign al-Qaida-linked fighters and stop attacks within Pakistan and in Afghanistan . IN DT NN , NNP POS NN MD VB PRP$ NN IN DT NN NN IN DT NNS NN CC VB JJ JJ NNS CC VB NNS IN NNP CC IN NNP . Voters in Luxembourg have approved the proposed European Union Constitution in a referendum Sunday - reversing a trend set by France and the Netherlands last month . NNS IN NNP VBP VBN DT VBN NNP NNP NNP IN DT NN NNP : VBG DT NN VBN IN NNP CC DT NNP JJ NN . With all the votes counted , the charter was approved by nearly a 13-point margin , of about 57 to 43 percent . IN PDT DT NNS VBN , DT NN VBD VBN IN RB DT JJ NN , IN IN CD TO CD NN . Prime Minister Jean-Claude Juncker , a staunch supporter of the pact , had promised to resign if it was not approved . NNP NNP NNP NNP , DT JJ NN IN DT NN , VBD VBN TO VB IN PRP VBD RB VBN . This was the first referendum on the constitution since French and Dutch voters rejected it last month . DT VBD DT JJ NN IN DT NN IN JJ CC JJ NNS VBD PRP JJ NN . EU leaders then put the constitution issue on hold , and Britain , Denmark , Portugal , Sweden and Finland postponed planned votes . NNP NNS RB VBD DT NN NN IN NN , CC NNP , NNP , NNP , NNP CC NNP VBD JJ NNS . All 25 member nations must approve the constitution before it can take effect . DT CD NN NNS MD VB DT NN IN PRP MD VB NN . The United Nations warns Haiti could see a resurgence of violence as the nation gears up for presidential and parliamentary elections . DT NNP NNP VBZ NNP MD VB DT NN IN NN IN DT NN VBZ RP IN JJ CC JJ NNS . In a report issued Tuesday , U.N. Secretary-General Kofi Annan says Haiti is at a critical juncture , as the country prepares for its first set of elections since the ouster of President Jean-Bertrand Aristide in February , 2004 . IN DT NN VBN NNP , NNP NNP NNP NNP VBZ NNP VBZ IN DT JJ NN , IN DT NN VBZ IN PRP$ JJ NN IN NNS IN DT NN IN NNP NNP NNP IN NNP , CD . He says the security environment has improved in recent months , but the elections process would still benefit from outside assistance on security measures . PRP VBZ DT NN NN VBZ VBN IN JJ NNS , CC DT NNS NN MD RB VB IN JJ NN IN NN NNS . The report says elections must not be tainted by candidates seen by the public as criminals , or by funds of dubious origin . DT NN VBZ NNS MD RB VB VBN IN NNS VBN IN DT NN IN NNS , CC IN NNS IN JJ NN . Elections were scheduled for November this year , but officials say the date could be pushed back to December due to delays in preparation . NNS VBD VBN IN NNP DT NN , CC NNS VBP DT NN MD VB VBN RB TO NNP JJ TO NNS IN NN . International relief officials have welcomed the agreement by India and Pakistan to open their heavily-militarized boundary in divided Kashmir to help survivors of this month 's devastating earthquake . JJ NN NNS VBP VBN DT NN IN NNP CC NNP TO VB PRP$ JJ NN IN VBN NNP TO VB NNS IN DT NN POS JJ NN . The two governments say crossings will be opened at five points starting November 7 to allow people to cross in both directions on foot . DT CD NNS VBP NNS MD VB VBN IN CD NNS VBG NNP CD TO VB NNS TO VB IN DT NNS IN NN . Priority will go to families separated by the de~facto border . NN MD VB TO NNS VBN IN DT JJ NN . A U.N. humanitarian coordinator in the quake zone , Rashid Khalikov , called the agreement a good step that will help extend aid to people in isolated areas . DT NNP JJ NN IN DT NN NN , NNP NNP , VBD DT NN DT JJ NN WDT MD VB VB NN TO NNS IN JJ NNS . But with a bitter Himalayan winter approaching and millions of people homeless or needing shelter , aid workers fear hunger , disease , diarrhea and injuries that are not treated could kill thousands more . CC IN DT JJ JJ NN VBG CC NNS IN NNS JJ CC JJ NN , NN NNS VBP NN , NN , NN CC NNS WDT VBP RB VBN MD VB NNS RBR . Some 2,00,000 people are still without any humanitarian aid three weeks after the quake that killed about 55,000 people , most of them in Pakistani Kashmir . DT CD NNS VBP RB IN DT JJ NN CD NNS IN DT NN WDT VBD IN CD NNS , JJS IN PRP IN JJ NNP . The United Nations will host a major conference on the long-term recovery efforts for Iraq Saturday at its main headquarters in New York . DT NNP NNP MD VB DT JJ NN IN DT JJ NN NNS IN NNP NNP IN PRP$ JJ NN IN NNP NNP . U.N. Secretary-General Ban Ki-moon will co-chair the ministerial session with Iraqi Prime Minister Nouri al-Maliki . NNP NNP NNP NNP MD VB DT JJ NN IN JJ NNP NNP NNP NNP . Representatives from 20 nations will participate in the conference , including many of Iraq 's neighbors , such as Iran , Kuwait and Syria . NNS IN CD NNS MD VB IN DT NN , VBG NN IN NNP POS NNS , JJ IN NNP , NNP CC NNP . The meeting will focus on a resolution adopted by the General Assembly last month to expand the U.N. 's presence in Iraq . DT NN MD VB IN DT NN VBN IN DT NNP NNP JJ NN TO VB DT NNP POS NN IN NNP . Also on the agenda is the International Compact on Iraq , a five-year economic and political recovery strategy . RB IN DT NN VBZ DT NNP NNP IN NNP , DT JJ JJ CC JJ NN NN . Mr. Ban told reporters earlier this week he will urge the U.N. member states to follow through on their pledges of support for Iraq . NNP NNP VBD NNS RBR DT NN PRP MD VB DT NNP NN NNS TO VB IN IN PRP$ NNS IN NN IN NNP . U.S. Secretary of State Condoleezza Rice will attend today 's conference . NNP NNP IN NNP NNP NNP MD VB NN POS NN . A New York court has sentenced former Colombian drug kingpin Alberto Orlandez Gamboa to 40 years in prison for heading a cartel that smuggled large quantities of cocaine into the United States . DT NNP NNP NN VBZ VBN JJ JJ NN NN NNP NNP NNP TO CD NNS IN NN IN VBG DT NN WDT VBD JJ NNS IN NN IN DT NNP NNPS . Authorities announced the sentence Thursday , for the 49-year-old Orlandez Gamboa , who once boasted of being among Colombia 's top 10 drug lords . NNS VBD DT NN NNP , IN DT JJ NNP NNP , WP RB VBD IN VBG IN NNP POS JJ CD NN NNS . The former kingpin , who was extradited to the United States several years ago , had previously pleaded guilty to conspiracy , drug smuggling and money laundering charges . DT JJ NN , WP VBD VBN TO DT NNP NNPS JJ NNS RB , VBD RB VBN JJ TO NN , NN NN CC NN NN NNS . Officials say Orlandez Gamboa led an organization of about a dozen large-scale traffickers in Barranquilla , Colombia , who smuggled tons of cocaine into the United States and other countries . NNS VBP NNP NNP VBD DT NN IN IN DT NN JJ NNS IN NNP , NNP , WP VBD NNS IN NN IN DT NNP NNPS CC JJ NNS . Colombia is the world 's largest cocaine producer . NNP VBZ DT NN POS JJS NN NN . Most of the cocaine produced there is shipped to the United States . JJS IN DT NN VBN EX VBZ VBN TO DT NNP NNPS . Cuba 's main labor organization says the state is to lay off more than 5,00,000 public sector workers by March . NNP POS JJ NN NN VBZ DT NN VBZ TO VB RP JJR IN CD JJ NN NNS IN NNP . The Cuban Workers Confederation said the country can not and should not continue supporting businesses , production entities and services with inflated payrolls . DT JJ NNP NNP VBD DT NN MD RB CC MD RB VB VBG NNS , NN NNS CC NNS IN JJ NNS . It said the losses hurt the economy and are ultimately counterproductive , creating bad habits and distorting worker conduct . PRP VBD DT NNS VBP DT NN CC VBP RB JJ , VBG JJ NNS CC VBG NN NN . In the statement released on state-run media , the union said Cuba would change its labor structure and salary system and increase private sector job opportunities . IN DT NN VBN IN JJ NNS , DT NN VBD NNP MD VB PRP$ NN NN CC NN NN CC VB JJ NN NN NNS . Currently , the state employs 95 percent of the official work force . RB , DT NN VBZ CD NN IN DT JJ NN NN . Several weeks ago , Cuban President Raul Castro said his government would scale back its involvement in the nation 's economy and allow more Cubans to operate their own businesses and hire workers . JJ NNS RB , JJ NNP NNP NNP VBD PRP$ NN MD VB RP PRP$ NN IN DT NN POS NN CC VB JJR NNS TO VB PRP$ JJ NNS CC VB NNS . He said the aim was to create jobs for Cubans employed by the government who will be laid off . PRP VBD DT NN VBD TO VB NNS IN NNS VBN IN DT NN WP MD VB VBN RP . The leadership of the Palestine Liberation Organization has urged militants to end attacks against Israel , saying such violence ' harms our national interest . ' DT NN IN DT NNP NNP NNP VBZ VBN NNS TO VB NNS IN NNP , VBG JJ NN `` VBZ PRP$ JJ NN . `` The PLO executive committee made the appeal Sunday just hours after Israeli Prime Minister Ariel Sharon gave his military a free hand against militant groups in Gaza . DT NNP NN NN VBD DT NN NNP RB NNS IN JJ NNP NN NNP NNP VBD PRP$ NN DT JJ NN IN JJ NNS IN NNP . Mr. Sharon accused newly-elected Palestinian Authority President Mahmoud Abbas of doing nothing to curb attacks on Israelis . NNP NNP VBD JJ JJ NNP NNP NNP NNP IN VBG DT TO VB NNS IN NNS . The PLO statement said violence by militant groups gives Israel an excuse to obstruct Palestinian stability . DT NNP NN VBD NN IN JJ NNS VBZ NNP DT NN TO VB JJ NN . Palestinian officials say Mr. Abbas will meet with militants in Gaza Wednesday to urge them to agree to a cease-fire that must be reciprocated by the Jewish state . JJ NNS VBP NNP NNP MD VB IN NNS IN NNP NNP TO VB PRP TO VB TO DT NN WDT MD VB VBN IN DT JJ NN . Incoming BP head Robert Dudley is expected to travel to Russia next week for the first time since fleeing the country in 2008 , signaling a thaw between BP and its Russian partner TNK-BP . VBG NNP NN NNP NNP VBZ VBN TO VB TO NNP JJ NN IN DT JJ NN IN VBG DT NN IN CD , VBG DT NN IN NNP CC PRP$ JJ NN NNP . Dudley is the former chief executive of TNK-BP and will travel to Moscow with outgoing BP chief Tony Hayward . NNP VBZ DT JJ JJ NN IN NNP CC MD VB TO NNP IN VBG NNP NN NNP NNP . The Financial Times reports their discussions with Russian counterparts will likely include the sale of Venezuelan assets from BP to TNK-BP , to help meet the cost of the Gulf of Mexico oil spill . DT NNP NNPS VBZ PRP$ NNS IN JJ NNS MD RB VB DT NN IN JJ NNS IN NNP TO NNP , TO VB VB DT NN IN DT NNP IN NNP NN NN . Dudley was compelled to leave Russia in 2008 in a dispute over control of TNK-BP . NNP VBD VBN TO VB NNP IN CD IN DT NN IN NN IN NNP . He officially replaces Tony Hayward October 1 . PRP RB VBZ NNP NNP NNP CD . Mexican police are searching for the people responsible for kidnapping the two top traffic officials in the northern city of Monterrey . JJ NNS VBP VBG IN DT NNS JJ IN VBG DT CD JJ NN NNS IN DT JJ NN IN NNP . Enrique Barrios Rodriguez was kidnapped early Monday morning when armed assailants rammed through the front gate of his home . NNP NNP NNP VBD VBN RB NNP NN WRB JJ NNS VBD IN DT JJ NN IN PRP$ NN . It was just a day after his operations chief , Reynaldo Ramos , was abducted from his home nearby . PRP VBD RB DT NN IN PRP$ NNS NN , NNP NNP , VBD VBN IN PRP$ NN RB . Monterrey Mayor Fernando Larrazabal said the motive was not yet known . NNP NNP NNP NNP VBD DT NN VBD RB RB VBN . He said the state prosecutor 's office is handling the investigation . PRP VBD DT NN NN POS NN VBZ VBG DT NN . Monterrey is the capital of the Mexican state of Nuevo Leon , which has experienced a recent increase in drug-related violence . NNP VBZ DT NN IN DT JJ NN IN NNP NNP , WDT VBZ VBN DT JJ NN IN JJ NN . The mayor has recently fired a large number of traffic police officers suspected of corruption or collusion with drug traffickers . DT NN VBZ RB VBN DT JJ NN IN NN NN NNS VBN IN NN CC NN IN NN NNS . The seventh round of peace talks for Sudan 's troubled Darfur region have been postponed , but it is not clear when they will resume . DT JJ NN IN NN NNS IN NNP POS JJ NNP NN VBP VBN VBN , CC PRP VBZ RB JJ WRB PRP MD VB . The African-Union sponsored talks were due to begin in the Nigerian capital , Abuja , Monday . DT NN VBD NNS VBD JJ TO VB IN DT JJ NN , NNP , NNP . African Union officials are quoted as saying the delay could range from several days to an indefinite postponement . NNP NNP NNS VBP VBN IN VBG DT NN MD VB IN JJ NNS TO DT JJ NN . AU spokesman Nureddin Mezni told the French News Agency , AFP , the talks were postponed because of logistical reasons . NNP NN NNP NNP VBD DT NNP NNP NNP , NNP , DT NNS VBD VBN IN IN JJ NNS . The last round of talks ended in October with little progress amid escalating violence in Darfur and infighting within Darfur 's main rebel group . DT JJ NN IN NNS VBN IN NNP IN JJ NN IN VBG NN IN NNP CC VBG IN NNP POS JJ NN NN . Saturday , a senior U.S. official , Assistant Secretary of State for African Affairs , Jendayi Frazer , met with rival leaders of the rebel Sudan Liberation Army to urge them to present a united front at the next round of peace talks . NNP , DT JJ NNP NN , NNP NNP IN NNP IN NNP NNP , NNP NNP , VBD IN JJ NNS IN DT NN NNP NNP NNP TO VB PRP TO VB DT JJ NN IN DT JJ NN IN NN NNS . Pakistan says it has tightened security around all its nuclear facilities following a surge of militant attacks within its borders . NNP VBZ PRP VBZ VBN NN IN DT PRP$ JJ NNS VBG DT NN IN JJ NNS IN PRP$ NNS . The head of the agency that handles Pakistan 's nuclear arsenal , Khalid Kidwai , told foreign reporters Saturday that , in his words , ' the state of alertness has gone up . ' DT NN IN DT NN WDT VBZ NNP POS JJ NN , NNP NNP , VBD JJ NNS NNP IN , IN PRP$ NNS , `` DT NN IN NN VBZ VBN RP . `` However , he said there is no conceivable scenario in which Pakistan will fall to al-Qaida or Taliban type extremists . RB , PRP VBD EX VBZ DT JJ NN IN WDT NNP MD VB TO NNP CC NNP NN NNS . Militant groups have launched a rising number of attacks on Pakistani security forces and intelligence personnel in recent months . JJ NNS VBP VBN DT VBG NN IN NNS IN JJ NN NNS CC NN NNS IN JJ NNS . Pakistan is estimated to have about 50 nuclear weapons . NNP VBZ VBN TO VB IN CD JJ NNS . The New York Timessays international inspectors are requesting access to two secret Iranian military sites , where intelligence suggests Tehran could be developing nuclear weapons . DT NNP NNP NNP JJ NNS VBP VBG NN TO CD JJ JJ JJ NNS , WRB NN VBZ NNP MD VB VBG JJ NNS . The newspaper says inspectors from the International Atomic Energy Agency have seen satellite photographs that indicate high explosives are being tested . DT NN VBZ NNS IN DT NNP NNP NNP NNP VBP VBN NN NNS WDT VBP JJ NNS VBP VBG VBN . According to the Times , several sources , including IAEA member countries , diplomats and weapons experts provided intelligence about the Iranian military sites . VBG TO DT NNP , JJ NNS , VBG NNP NN NNS , NNS CC NNS NNS VBD NN IN DT JJ JJ NNS . This week , Iran agreed to suspend uranium enrichment activities , staving off a U.S. push to bring the matter to the U.N. Security Council for possible sanctions over Tehran 's alleged nuclear weapons program . DT NN , NNP VBD TO VB NN NN NNS , VBG RP DT NNP NN TO VB DT NN TO DT NNP NNP NNP IN JJ NNS IN NNP POS JJ JJ NNS NN . But the Iranian government says it has not abandoned its right to enrich uranium . CC DT JJ NN VBZ PRP VBZ RB VBN PRP$ NN TO VB NN . The Indian government has lodged a protest against Pakistan over its plans to build a dam in the disputed region of Kashmir , with the help of China . DT JJ NN VBZ VBN DT NN IN NNP IN PRP$ NNS TO VB DT NN IN DT JJ NN IN NNP , IN DT NN IN NNP . India 's foreign ministry said Friday the dam is being built in part of the Himalayan valley that is ' illegally ' occupied by Pakistan . NNP POS JJ NN VBD NNP DT NN VBZ VBG VBN IN NN IN DT NNP NN WDT VBZ `` RB `` VBN IN NNP . Kashmir is divided between India and Pakistan , but claimed by both . NNP VBZ VBN IN NNP CC NNP , CC VBN IN DT . Last month , Pakistan and China signed a memorandum of understanding for the construction of the Bunji hydroelectric project , which is aimed at generating electricity for Pakistan . JJ NN , NNP CC NNP VBD DT NN IN NN IN DT NN IN DT NNP JJ NN , WDT VBZ VBN IN VBG NN IN NNP . The country is dealing with power shortages . DT NN VBZ VBG IN NN NNS . The project has caused concern in India over Pakistan 's growing ties with China . DT NN VBZ VBN NN IN NNP IN NNP POS VBG NNS IN NNP . Friday , Pakistan summoned an official with the Indian High Commission in Islamabad to reject the India 's protest of the dam . NNP , NNP VBD DT NN IN DT JJ NNP NNP IN NNP TO VB DT NNP POS NN IN DT NN . The presidents of Afghanistan and Iran have opened a new road between their countries that they hailed as a symbol of the bilateral cooperation needed to restore peace and stability to the region . DT NNS IN NNP CC NNP VBP VBN DT JJ NN IN PRP$ NNS IN PRP VBD IN DT NN IN DT JJ NN VBN TO VB NN CC NN TO DT NN . Iran agreed to build the 123-kilometer road between its Dogharoun region and Afghanistan 's western Herat province that officials say is a key source of trade for Afghanistan . NNP VBD TO VB DT JJ NN IN PRP$ NNP NN CC NNP POS JJ NNP NN WDT NNS VBP VBZ DT JJ NN IN NN IN NNP . In his remarks , Iranian President Mohammad Khatami said Iran desires a stable , modern and free Afghanistan . IN PRP$ NNS , JJ NNP NNP NNP VBD NNP VBZ DT JJ , JJ CC JJ NNP . He also said that his government is studying more than 30 road-building projects in Iran to further expand trade to Afghanistan and Central Asia . PRP RB VBD IN PRP$ NN VBZ VBG JJR IN CD NN NNS IN NNP TO RB VB NN TO NNP CC NNP NNP . Visiting Afghan President Hamid Karzai thanked Iran for building the $ 60 million highway and emphasized that the reconstruction of war-torn Afghanistan will also help its neighbors . VBG JJ NNP NNP NNP VBD NNP IN VBG DT $ CD CD NN CC VBD IN DT NN IN JJ NNP MD RB VB PRP$ NNS . President Karzai used the new highway to return home and end his two day visit . NNP NNP VBD DT JJ NN TO VB NN CC VB PRP$ CD NN NN . The U.S. military says five American troops died in Iraq Thursday , including four killed in a roadside bombing . DT NNP NN VBZ CD JJ NNS VBD IN NNP NNP , VBG CD VBN IN DT NN NN . The military says the blast in eastern Baghdad also injured two soldiers . DT NN VBZ DT NN IN JJ NNP RB VBD CD NNS . The other fatality was of a soldier who died of combat injuries north of Baghdad in Salahaddin province . DT JJ NN VBD IN DT NN WP VBD IN NN NNS NN IN NNP IN NNP NN . In other news , a mortar attack Friday killed one person in the southern Baghdad neighborhood of Zafaraniyah . IN JJ NN , DT NN NN NNP VBD CD NN IN DT JJ NNP NN IN NNP . In the northern city of Kirkuk , a roadside bomb killed two police officers . IN DT JJ NN IN NNP , DT NN NN VBD CD NNS NNS . Also , the British military has confirmed the escape of some prisoners at a British-run detention facility near the southern city of Basra . RB , DT JJ NN VBZ VBN DT NN IN DT NNS IN DT JJ NN NN IN DT JJ NN IN NNP . The Reutersnews agency says 10 prisoners escaped earlier this week by swapping clothes and places with individuals who came as visitors . DT NNP NN VBZ CD NNS VBD RBR DT NN IN VBG NNS CC NNS IN NNS WP VBD IN NNS . The news agency says those who swapped clothes with the prisoners are being held for questioning . DT NN NN VBZ DT WP VBD NNS IN DT NNS VBP VBG VBN IN VBG . The African Union 's Peace and Security Council says that Ivory Coast President Laurent Gbagbo should stay in power after his mandate expires until new post-war elections can be organized . DT NNP NNP POS NNP CC NNP NNP VBZ IN NNP NNP NNP NNP NNP MD VB IN NN IN PRP$ NN VBZ IN JJ JJ NNS MD VB VBN . In a statement Thursday following crisis talks on Ivory Coast , AU leaders recommended President Gbagbo stay on for one year and called for the appointment of a new prime minister . IN DT NN NNP VBG NN NNS IN NNP NNP , NNP NNS VBD NNP NNP NN IN IN CD NN CC VBD IN DT NN IN DT JJ JJ NN . The president 's mandate ends October 30 - the day an election was to have taken place in Ivory Coast . DT NN POS NN VBZ NNP CD IN DT NN DT NN VBD TO VB VBN NN IN NNP NNP . The election has been delayed indefinitely after the warring sides failed to implement key steps to organize the vote . DT NN VBZ VBN VBN RB IN DT VBG NNS VBD TO VB JJ NNS TO VB DT NN . Several peace deals have failed to take hold and Ivory Coast remains divided between rebels who control large swaths of territory in the north and the government in the south . JJ NN NNS VBP VBN TO VB NN CC NNP NNP VBZ VBN IN NNS WP VBP JJ NNS IN NN IN DT NN CC DT NN IN DT NN . The U.S. space agency NASA says the Phoenix Mars probe landed in an ideal location to search for evidence that the planet could support life . DT NNP NN NN NNP VBZ DT NNP NNPS NN VBD IN DT JJ NN TO VB IN NN IN DT NN MD VB NN . At a news conference Tuesday NASA scientists said the probe is located in a valley in the polar region believed to contain subterranean ice . IN DT NN NN NNP NNP NNS VBD DT NN VBZ VBN IN DT NN IN DT JJ NN VBN TO VB JJ NN . Phoenix is designed to dig through the Martian soil and into the layer of ice to look for the basic chemical components essential to supporting life . NNP VBZ VBN TO VB IN DT JJ NN CC IN DT NN IN NN TO VB IN DT JJ NN NNS JJ TO VBG NN . NASA says there were few problems with the landing Sunday , though a radio glitch on a spacecraft orbiting Mars will likely delay the scheduled mission by about one day . NNP VBZ EX VBD JJ NNS IN DT NN NNP , IN DT NN NN IN DT NN VBG NNP MD RB VB DT VBN NN IN IN CD NN . A team of Canadian scientists reports clear skies at the landing site , with temperatures ranging between negative 30 and negative 80 degrees Celsius , and with 32 kilometer per hour winds . DT NN IN JJ NNS VBZ JJ NNS IN DT NN NN , IN NNS VBG IN JJ CD CC JJ CD NNS NNP , CC IN CD NN IN NN NNS . Pop musician John Mayer will headline an upcoming concert to celebrate the 10th anniversary of Save The Music . NNP NN NNP NNP NN NN DT JJ NN TO VB DT JJ NN IN NNP NNP NNP . Founded by the VH1 television network to promote music education in U.S. public schools , the organization has reportedly provided $ 34 million worth of instruments to schools around the country . VBN IN DT NNP NN NN TO VB NN NN IN NNP JJ NNS , DT NN VBZ RB VBN $ CD CD NN IN NNS TO NNS IN DT NN . Scheduled for September 20 at New York City 's Lincoln Center , the concert will also feature 50 of the students the organization has helped over the past decade . VBN IN NNP CD IN NNP NNP NNP POS NNP NNP , DT NN MD RB VB CD IN DT NNS DT NN VBZ VBN IN DT JJ NN . Asian markets fell sharply Monday , on fears a recession in the United States will weaken the demand for Asian exports . JJ NNS VBD RB NNP , IN NNS DT NN IN DT NNP NNPS MD VB DT NN IN JJ NNS . China 's Shanghai Composite Index tumbled more than 7 percent while the Nikkei in Tokyo and Sensex in Mumbai were both down almost 4 percent . NNP POS NNP NNP NNP VBD JJR IN CD NN IN DT NNP IN NNP CC NNP IN NNP VBD DT IN RB CD NN . Hong Kong 's Hang Seng index dropped more than 5 percent . NNP NNP POS NNP NNP NN VBD JJR IN CD NN . The major European indexes in London , Paris and Frankfurt were also down in midday trading , but much less than Asia , dropping about 2 percent . DT JJ JJ NNS IN NNP , NNP CC NNP VBD RB RB IN NN NN , CC RB JJR IN NNP , VBG IN CD NN . Analysts say investors are still nervous following last week 's worldwide plunge , despite President 's Bush 's plan to revitalize the slowing U.S. economy with tax rebates . NNS VBP NNS VBP RB JJ VBG JJ NN POS JJ NN , IN NNP POS NNP POS NN TO VB DT VBG NNP NN IN NN NNS . The U.S. Federal Reserve meets this week to consider if another interest rate cut is needed to help stave off a recession . DT NNP NNP NNP VBZ DT NN TO VB IN DT NN NN NN VBZ VBN TO VB VB RP DT NN . Thousands of Palestinian police have begun deploying in the southern Gaza Strip . NNS IN JJ NNS VBP VBN VBG IN DT JJ NNP NNP . Palestinian authorities say security forces headed for two of the most volatile areas Friday - the refugee camps of Khan Younis and Rafah . JJ NNS VBP NN NNS VBN IN CD IN DT RBS JJ NNS NNP IN DT NN NNS IN NNP NNP CC NNP . Militants there have launched rocket and mortar attacks at Israeli troops and Jewish settlements . NNS RB VBP VBN NN CC NN NNS IN JJ NNS CC JJ NNS . Shortly after the Palestinian security move , Israeli army chief General Moshe Yaalon ordered his troops to halt operations in all areas of the Gaza Strip where Palestinian police are deployed . RB IN DT JJ NN NN , JJ NN NN NNP NNP NNP VBD PRP$ NNS TO VB NNS IN DT NNS IN DT NNP NNP WRB JJ NNS VBP VBN . Israeli Prime Minister Ariel Sharon said Thursday conditions are right for a ' historic breakthrough ' in the Middle East peace process because of steps taken by the new Palestinian leadership . JJ NNP NNP NNP NNP VBD NNP NNS VBP JJ IN DT `` JJ NN `` IN DT NNP NNP NN NN IN IN NNS VBN IN DT JJ JJ NN . Mr. Sharon told a group of Israeli businessmen , Israel would be willing to advance the peace process if Palestinian President Mahmoud Abbas is able to stop terror attacks . NNP NNP VBD DT NN IN JJ NNS , NNP MD VB JJ TO VB DT NN NN IN JJ NNP NNP NNP VBZ JJ TO VB NN NNS . Niger President Mamadou Tandja has approved Prime Minister Seyni Oumarou 's new cabinet , with several top ministers returning to posts they held before a no-confidence vote toppled the previous government last month . NNP NNP NNP NNP VBZ VBN NNP NNP NNP NNP POS JJ NN , IN JJ JJ NNS VBG TO NNS PRP VBD IN DT NN NN VBD DT JJ NN JJ NN . Prime Minister Oumarou took office this week after Niger 's parliament voted out Prime Minister Hama Amadou 's government on May 31 . NNP NNP NNP VBD NN DT NN IN NNP POS NN VBD RP NNP NNP NNP NNP POS NN IN NNP CD . Mr. Amadou 's opponents accused him of complicity in a corruption scandal in Niger 's education ministry . NNP NNP POS NNS VBD PRP IN NN IN DT NN NN IN NNP POS NN NN . Two former education ministers have gone to jail since an audit found hundreds of thousands of dollars were missing . CD JJ NN NNS VBP VBN TO NN IN DT NN VBD NNS IN NNS IN NNS VBD VBG . Among those keeping their seats in the 31-member cabinet announced Saturday are the Foreign Minister Aichatou Mindaoudou , Interior Minister Albade Abouba and Economy and Finance Minister Ali Mahamane Lamine Zeine . IN DT VBG PRP$ NNS IN DT JJ NN VBN NNP VBP DT NNP NNP NNP NNP , NNP NNP NNP NNP CC NNP CC NNP NNP NNP NNP NNP NNP . Tibet 's spiritual leader , the Dalai Lama , has voiced his support for pro-democracy protests in Burma and is urging Buddhist members of the country 's military government to show more compassion . NNP POS JJ NN , DT NNP NNP , VBZ VBN PRP$ NN IN JJ NNS IN NNP CC VBZ VBG NNP NNS IN DT NN POS JJ NN TO VB JJR NN . In an interview with VOA in Washington Tuesday , the Dalai Lama said that he admired the recent efforts of Buddhist monks in Burma to push for democracy and added that he felt that their cause was just . IN DT NN IN NNP IN NNP NNP , DT NNP NNP VBD IN PRP VBD DT JJ NNS IN NNP NNS IN NNP TO VB IN NN CC VBD IN PRP VBD IN PRP$ NN VBD RB . The Dalai Lama also urged Buddhist members of Burma 's military government to use the religion 's teachings of ' compassion ' and ' love ' when confronting such situations of crisis . DT NNP NNP RB VBD NNP NNS IN NNP POS JJ NN TO VB DT NN POS NNS IN `` NN `` CC `` NN `` WRB VBG JJ NNS IN NN . The Dalai Lama spoke with VOA after meeting with President Bush in Washington on Tuesday . DT NNP NNP VBD IN NNP IN VBG IN NNP NNP IN NNP IN NNP . The Burmese government 's bloody crackdown of pro-democracy protests in Burma last month left at least 10 people dead . DT JJ NN POS JJ NN IN JJ NNS IN NNP JJ NN VBD IN JJS CD NNS JJ . Thousands of monks and other activists have been arrested , and many more are believed to have been killed . NNS IN NNS CC JJ NNS VBP VBN VBN , CC JJ JJR VBP VBN TO VB VBN VBN . Ukraine 's opposition party has agreed to hold talks with President Leonid Kuchma to resolve the crisis over Sunday 's disputed presidential elections . NNP POS NN NN VBZ VBN TO VB NNS IN NNP NNP NNP TO VB DT NN IN NNP POS JJ JJ NNS . Mr. Kuchma is calling on all political forces in the former Soviet republic to immediately enter into talks . NNP NNP VBZ VBG IN DT JJ NNS IN DT JJ JJ NN TO RB VB IN NNS . The appeal came after about 2,00,000 opposition supporters marched on the presidential office in Kiev to demand that their candidate - Viktor Yushchenko - be declared the winner of the election . DT NN VBD IN IN CD NN NNS VBD IN DT JJ NN IN NNP TO VB IN PRP$ NN IN NNP NNP : VB VBN DT NN IN DT NN . Official preliminary results showed the pro-Russian Prime Minister Viktor Yanukovich winning the vote . JJ JJ NNS VBD DT JJ NNP NNP NNP NNP VBG DT NN . Mr. Kuchma , a backer of the prime minister , called the protests a ' political farce ' that he says could lead to ' unforseeable consequences . ' NNP NNP , DT NN IN DT JJ NN , VBD DT NNS DT `` JJ NN `` IN PRP VBZ MD VB TO `` JJ NNS . `` U.S. and European observers reported indications of extensive voter fraud in Sunday 's election . NNP CC JJ NNS VBD NNS IN JJ NN NN IN NNP POS NN . Russian President Vladimir Putin called European criticism inadmissible because final results have not been announced . JJ NNP NNP NNP VBD JJ NN JJ IN JJ NNS VBP RB VBN VBN . Tim Nardiello has been reinstated as the U.S. skeleton coach shortly after an arbitrator found no evidence to support claims that he sexually harassed two team members . NNP NNP VBZ VBN VBN IN DT NNP NN NN RB IN DT NN VBD DT NN TO VB NNS IN PRP RB VBD CD NN NNS . The U.S. Bobsled and Skeleton Federation board lifted Nardiello 's suspension during a meeting on Monday . DT NNP NNP CC NNP NNP NN VBD NNP POS NN IN DT NN IN NNP . The decision was effective immediately . DT NN VBD JJ RB . Nardiello is hoping to rejoin the team for the season 's final skeleton World Cup in Altenberg , Germany , on Thursday and Friday . NNP VBZ VBG TO VB DT NN IN DT NN POS JJ NN NNP NNP IN NNP , NNP , IN NNP CC NNP . Despite the decision , the U.S. Olympic Committee still controls whether Nardiello will coach the four American sliders at the Turin Olympics , which open on February 10 . IN DT NN , DT NNP NNP NNP RB VBZ IN NNP MD VB DT CD JJ NNS IN DT NNP NNP , WDT VBZ IN NNP CD . Also Monday , the best U.S. hope for men 's skeleton gold , Zach Lund , was publicly warned but not suspended by the U.S. Anti-Doping Agency over a failed drug test this season . RB NNP , DT JJS NNP NN IN NNS POS NN NN , NNP NNP , VBD RB VBN CC RB VBN IN DT NNP NNP NNP IN DT JJ NN NN DT NN . Israel has charged nuclear whistleblower Mordechai Vanunu with violating the terms of his release from prison . NNP VBZ VBN JJ NN NNP NNP IN VBG DT NNS IN PRP$ NN IN NN . Vanunu was freed from an Israeli jail last year after serving an 18-year sentence for revealing secrets of Israel 's nuclear program to a British journalist in the 1980s . NNP VBD VBN IN DT JJ NN JJ NN IN VBG DT JJ NN IN JJ NNS IN NNP POS JJ NN TO DT JJ NN IN DT NNS . Under terms of his release , the former Israeli nuclear technician was barred from contacting foreigners or leaving the country . IN NNS IN PRP$ NN , DT JJ JJ JJ NN VBD VBN IN VBG NNS CC VBG DT NN . He was re-arrested in November , after granting another interview in which he said Israel has up to 200 atomic warheads , a neutron bomb , and hydrogen bombs . PRP VBD VBN IN NNP , IN VBG DT NN IN WDT PRP VBD NNP VBZ RB TO CD JJ NNS , DT NN NN , CC NN NNS . Israel has never admitted or denied having a nuclear arsenal . NNP VBZ RB VBN CC VBN VBG DT JJ NN . Reuters news agency reports a new indictment includes charges that Vanunu , a Christian convert , also violated release terms by trying to visit the West Bank in December to attend a midnight Christmas religious service . NNP NN NN VBZ DT JJ NN VBZ NNS IN NNP , DT JJ NN , RB VBD NN NNS IN VBG TO VB DT NNP NNP IN NNP TO VB DT NN NNP JJ NN . The wife of one of two foreign journalists kidnapped in Gaza City Monday has appealed for their release . DT NN IN CD IN CD JJ NNS VBN IN NNP NNP NNP VBZ VBN IN PRP$ NN . The wife of an abducted New Zealand cameraman Wednesday called the kidnappings pointless , saying the men had been sharing the Palestinians ' stories with the world . DT NN IN DT JJ NNP NNP NN NNP VBD DT NNS JJ , VBG DT NNS VBD VBN VBG DT NNS POS NNS IN DT NN . The other kidnapping victim is an American . DT JJ NN NN VBZ DT NN . Palestinian security forces are searching for the two journalists who were working for U.S. media outlet Fox News . JJ NN NNS VBP VBG IN DT CD NNS WP VBD VBG IN NNP NNS NN NNP NNP . No group has claimed responsibility for the abductions . DT NN VBZ VBN NN IN DT NNS . On the political front , Palestinian President Mahmoud Abbas of the Fatah movement and the ruling group Hamas have agreed to resume talks on forming a unity government . IN DT JJ NN , JJ NNP NNP NNP IN DT NNP NN CC DT NN NN NNP VBP VBN TO VB NNS IN VBG DT NN NN . Previous talks collapsed over Hamas 's refusal to implicitly recognize Israel . JJ NNS VBD IN NNP POS NN TO RB VB NNP . In another development , hospital sources say an Israeli air strike early Wednesday destroyed a building in southern Gaza , killing two people . IN DT NN , NN NNS VBP DT JJ NN NN RB NNP VBD DT NN IN JJ NNP , VBG CD NNS . The Israeli army says it targeted a weapons storage facility . DT JJ NN VBZ PRP VBD DT NNS NN NN . Israeli police say a Palestinian suicide bomber has critically wounded two Israeli security guards in the Israeli city of Beersheba . JJ NNS VBP DT JJ NN NN VBZ RB VBN CD JJ NN NNS IN DT JJ NN IN NNP . Police say the bomber detonated his explosives outside the city 's main bus station during the morning rush hour . NNS VBP DT NN VBD PRP$ NNS IN DT NN POS JJ NN NN IN DT NN NN NN . There has been no immediate claim of responsibility . EX VBZ VBN DT JJ NN IN NN . Palestinian leader Mahmoud Abbas condemned the bombing - the first such attack since Israel began withdrawing Jewish settlers from the Gaza Strip earlier this month . JJ NN NNP NNP VBD DT NN IN DT JJ JJ NN IN NNP VBD VBG JJ NNS IN DT NNP NNP RBR DT NN . Meanwhile , the Israeli cabinet has approved the deployment of Egyptian police along Egypt 's border with Gaza . RB , DT JJ NN VBZ VBN DT NN IN JJ NNS IN NNP POS NN IN NNP . Under an agreement with Cairo , Egypt is to position 750 border police on the Egyptian side to replace Israeli troops trying to block cross-border smuggling . IN DT NN IN NNP , NNP VBZ TO VB CD NN NNS IN DT JJ NN TO VB JJ NNS VBG TO VB JJ NN . Israel says all of its forces in Gaza will leave the border area by the end of September . NNP VBZ DT IN PRP$ NNS IN NNP MD VB DT NN NN IN DT NN IN NNP . Hamas ' political leader says the Islamic group will not renew a truce with Israel that expires at the end of this year . NNP POS JJ NN VBZ DT JJ NN MD RB VB DT NN IN NNP WDT VBZ IN DT NN IN DT NN . At a rally in a Palestinian refugee camp near the Syrian capital Friday , Khaled Mashaal said Hamas would not enter a new truce while the Palestinian people are preparing for a new round of conflict . IN DT NN IN DT JJ NN NN IN DT JJ NN NNP , NNP NNP VBD NNP MD RB VB DT JJ NN IN DT JJ NNS VBP VBG IN DT JJ NN IN NN . Later , Mr. Mashaal told al-Jazeera television that the current truce would not be affected , but that calls for extending it are unrealistic . RB , NNP NNP VBD NNP NN IN DT JJ NN MD RB VB VBN , CC DT VBZ IN VBG PRP VBP JJ . He accused Israel of carrying out targeted assassinations , arrests and airstrikes in violation of the truce . PRP VBD NNP IN VBG RP JJ NNS , NNS CC NNS IN NN IN DT NN . Israel says such actions are in self-defense . NNP VBZ JJ NNS VBP IN NN . The Associated Press reports the Palestinian Authority said Mr. Mashaal 's statement was ' irresponsible ' and a violation of the truce . DT NNP NNP VBZ DT JJ NNP VBD NNP NNP POS NN VBD `` JJ `` CC DT NN IN DT NN . The commander of NATO forces in Afghanistan says the international community has underestimated the resurgence of the Taleban , partly because the war in Iraq diverted attention and resources . DT NN IN NNP NNS IN NNP VBZ DT JJ NN VBZ VBN DT NN IN DT NNP , RB IN DT NN IN NNP VBN NN CC NNS . Lieutenant-General David Richards told BBC Thursday that the international community ' took their eye off this ball and a vacuum was allowed to develop ' in Afghanistan . JJ NNP NNP VBD NNP NNP IN DT JJ NN `` VBD PRP$ NN IN DT NN CC DT NN VBD VBN TO VB `` IN NNP . The British general said the war in Iraq absorbed people 's interest and resources for a while . DT JJ NN VBD DT NN IN NNP VBD NNS POS NN CC NNS IN DT NN . But he said he is optimistic the insurgency in Afghanistan can be defeated . CC PRP VBD PRP VBZ JJ DT NN IN NNP MD VB VBN . Afghanistan in recent months has suffered the worst violence since a U.S.-led attack ousted the Taleban government in December 2001 , in part for failing to hand over Osama bin Laden . NNP IN JJ NNS VBZ VBN DT JJS NN IN DT JJ NN VBD DT NNP NN IN NNP CD , IN NN IN VBG TO VB RP NNP NNP NNP . Fighting Thursday left 12 suspected Taleban militants dead in southern Nawzad district . VBG NNP VBD CD JJ NNP NNS JJ IN JJ NNP NN . A coalition soldier was also killed by a landmine in the same province . DT NN NN VBD RB VBN IN DT NN IN DT JJ NN . Burma 's official media reported Saturday that troops confiscated grenades and other weapons from a border hide-out used by suspected drug traffickers , after an earlier gunbattle killed 13 policemen and members of their patrol . NNP POS JJ NNS VBD NNP IN NNS VBD NNS CC JJ NNS IN DT NN NN VBN IN JJ NN NNS , IN DT JJR NN VBD CD NNS CC NNS IN PRP$ NN . The state-run New Light of Myanmar said the shoot-out took place February 20 near the northeastern town of Tachileik , which borders Thailand . DT JJ NNP NNP IN NNP VBD DT NN VBD NN NNP CD IN DT JJ NN IN NNP , WDT VBZ NNP . The report said an anti-drug squad was patrolling the Mekong river near Tachileik when it encountered drug traffickers and a gunbattle broke out . DT NN VBD DT JJ NN VBD VBG DT NNP NN IN NNP WRB PRP VBD NN NNS CC DT NN VBD RP . Eight policemen were killed , along with two local militia members and three police boat drivers . CD NNS VBD VBN , IN IN CD JJ NN NNS CC CD NNS NN NNS . Two police officers were wounded . CD NNS NNS VBD VBN . The paper said that police , acting on a tip , found 15 tents several days later on an island in the Mekong . DT NN VBD IN NN , VBG IN DT NN , VBD CD NNS JJ NNS RB IN DT NN IN DT NNP . Authorities seized grenades , rifles , ammunition and blocks of caffeine - an ingredient of methamphetamine tablets . NNS VBD NNS , NNS , NN CC NNS IN NN IN DT NN IN NN NNS . U.S.-led coalition forces in Afghanistan say troops killed 24 Taleban fighters in a seven-hour battle in the country 's restive south . JJ NN NNS IN NNP VBP NNS VBD CD NNP NNS IN DT JJ NN IN DT NN POS JJ NN . A coalition statement said the fight happened Wednesday in the Sangin district of Helmand province . DT NN NN VBD DT NN VBD NNP IN DT NNP NN IN NNP NN . Two coalition soldiers were wounded . CD NN NNS VBD VBN . Meanwhile , Amnesty International said Taleban insurgents are deliberately targeting civilians in Afghanistan to instill fear and exert control over the population . RB , NNP NNP VBD NNP NNS VBP RB VBG NNS IN NNP TO VB NN CC NN NN IN DT NN . The London-based rights group said civilians are increasingly facing suicide attacks , abductions and beheadings . DT JJ NNS NN VBD NNS VBP RB VBG NN NNS , NNS CC NNS . The organization said Taleban militants have a deliberate policy of killing teachers , abducting aid workers and burning school buildings . DT NN VBD NNP NNS VBP DT JJ NN IN VBG NNS , VBG NN NNS CC NN NN NNS . Amnesty said at least 756 civilians were killed in 2006 , mostly from roadside bombs and suicide attacks . NNP VBD IN JJS CD NNS VBD VBN IN CD , RB IN NN NNS CC NN NNS . The rising cost of living is hurting a growing number of Americans , especially those who live on fixed incomes . DT VBG NN IN NN VBZ VBG DT VBG NN IN NNS , RB DT WP VBP IN JJ NNS . Among the hardest hit are retirees . IN DT JJS NN VBP NNS . More and more are finding that the money they set aside for their golden years may not be enough to take care of their needs . JJR CC JJR VBP VBG IN DT NN PRP VBD RB IN PRP$ JJ NNS MD RB VB JJ TO VB NN IN PRP$ NNS . It 's an issue an estimated 46 million Americans will grapple with as they reach retirement age this year . PRP VBZ DT NN DT VBN CD CD NNS MD VB IN IN PRP VBP NN NN DT NN . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Iraqi authorities say 50 suspected insurgents have been detained in connection with Sunday 's suicide car bombings in the nation 's two holiest Shi'ite cities , Najaf and Karbala . JJ NNS VBP CD JJ NNS VBP VBN VBN IN NN IN NNP POS NN NN NNS IN DT NN POS CD JJS NNP NNS , NNP CC NNP . Hospital officials say the death toll from the carnage has risen to 66 - at least 52 lives lost in Najaf and 14 in Karbala . NN NNS VBP DT NN NN IN DT NN VBZ VBN TO CD : IN JJS CD NNS VBN IN NNP CC CD IN NNP . More than 140 people were wounded by the explosions . JJR IN CD NNS VBD VBN IN DT NNS . Shi'ite Muslim leaders have appealed for calm , saying such attacks are clearly attempts to ignite sectarian violence and prevent Iraq 's first post-Saddam elections , scheduled to take place in six weeks , on January 30 . NNP NNP NNS VBP VBN IN NN , VBG JJ NNS VBP RB NNS TO VB JJ NN CC VB NNP POS JJ JJ NNS , VBN TO VB NN IN CD NNS , IN NNP CD . Shi'ite leaders are urging their followers not to resort to revenge attacks , but to focus on the upcoming national elections . NNP NNS VBP VBG PRP$ NNS RB TO VB TO NN NNS , CC TO VB IN DT JJ JJ NNS . The United Nations says that restoring tens of thousands of degraded wetlands around the world could help reduce the threat of a bird flu pandemic . DT NNP NNP VBZ IN VBG NNS IN NNS IN JJ NNS IN DT NN MD VB VB DT NN IN DT NN NN NN . Preliminary findings of the report were released Tuesday during a conference at the U.N. Environment Program headquarters in Nairobi , Kenya . JJ NNS IN DT NN VBD VBN NNP IN DT NN IN DT NNP NNP NNP NN IN NNP , NNP . The report says the loss of wetlands is forcing many wild birds into alternative habitats like farm ponds and paddy fields . DT NN VBZ DT NN IN NNS VBZ VBG JJ JJ NNS IN JJ NNS IN NN NNS CC JJ NNS . It says these habitats increase the risk of the birds spreading avian flu to domestic birds like chickens . PRP VBZ DT NNS VBP DT NN IN DT NNS VBG JJ NN TO JJ NNS IN NNS . The U.N. agency says current efforts to curb the spread of the disease , like isolation or destroying birds , are likely quick fixes that offer limited short-term benefits . DT NNP NN VBZ JJ NNS TO VB DT NN IN DT NN , IN NN CC VBG NNS , VBP JJ JJ NNS WDT VBP VBN JJ NNS . Bird flu has killed more than 100 people since 2003 , mostly in East Asia . NN NN VBZ VBN JJR IN CD NNS IN CD , RB IN NNP NNP . The disease also has been detected in birds in parts of Africa , the Middle East and Europe . DT NN RB VBZ VBN VBN IN NNS IN NNS IN NNP , DT NNP NNP CC NNP . The African Union 's peace and security council has called on all African countries to impose sanctions against Togo over the military 's installation of President Faure Gnassingbe . DT NNP NNP POS NN CC NN NN VBZ VBN IN DT JJ NNS TO VB NNS IN NNP IN DT NN POS NN IN NNP NNP NNP . The council Friday backed sanctions by the West African group ECOWAS , and urged the AU 's 53 members to follow suit . DT NN NNP VBD NNS IN DT NNP NNP NN NNP , CC VBD DT NNP POS CD NNS TO VB NN . ECOWAS has agreed to slap an arms embargo and travel ban on Togolese officials . NNP VBZ VBN TO VB DT NNS NN CC NN NN IN NNP NNS . Also Friday , the vice president of Togo 's ruling party , George Dahoun Gignor , told VOA that Mr. Gnassingbe must step down , saying the embattled leader has no choice . RB NNP , DT NN NN IN NNP POS VBG NN , NNP NNP NNP , VBD NNP IN NNP NNP MD VB RB , VBG DT JJ NN VBZ DT NN . However , the ruling party Friday backed Mr. Gnassingbe as its candidate in presidential elections expected within 60 days . RB , DT VBG NN NNP VBD NNP NNP IN PRP$ NN IN JJ NNS VBN IN CD NNS . President Gnassingbe told cheering party members he accepted the nomination . NNP NNP VBD VBG NN NNS PRP VBD DT NN . He took power earlier this month after the death of his father , Gnassingbe Eyadema . PRP VBD NN RBR DT NN IN DT NN IN PRP$ NN , NNP NNP . United Nations peacekeeping troops in Haiti have surrounded the residence of ousted President Jean-Bertrand Aristide , threatening to forcefully evict demobilized soldiers who have seized the compound . NNP NNPS VBG NNS IN NNP VBP VBN DT NN IN JJ NNP NNP NNP , VBG TO RB VB JJ NNS WP VBP VBN DT NN . Haiti 's interim government has ordered the rebels out of the compound in the suburb of Tabarre . NNP POS JJ NN VBZ VBN DT NNS IN IN DT NN IN DT NN IN NNP . The government said Thursday U.N. troops will do whatever is necessary to clear the residence . DT NN VBD NNP NNP NNS MD VB WDT VBZ JJ TO VB DT NN . The ex-soldiers - who helped lead the three-week rebellion that ousted Mr. Aristide in February - moved into the compound on Wednesday . DT NNS : WP VBD VB DT JJ NN WDT VBD NNP NNP IN NNP : VBD IN DT NN IN NNP . Mr. Aristide is in exile in South Africa . NNP NNP VBZ IN NN IN NNP NNP . British police have arrested a suspect wanted in Spain in connection with last year 's March 11 train bombings in Madrid in which nearly 200 people died . JJ NNS VBP VBN DT NN VBD IN NNP IN NN IN JJ NN POS NNP CD NN NNS IN NNP IN WDT RB CD NNS VBD . Police identified the man as 39-year-old Spaniard Moutaz Almallah Dabas . NNS VBD DT NN IN JJ NN NNP NNP NNP . They said they were acting on an extradition warrant from Spain when they took him into custody at Slough , west of London . PRP VBD PRP VBD VBG IN DT NN NN IN NNP WRB PRP VBD PRP IN NN IN NNP , NN IN NNP . Mr. Almallah Dabas is wanted for alleged terrorist offenses linked to the Madrid train bombings . NNP NNP NNP VBZ VBN IN JJ JJ NNS VBN TO DT NNP NN NNS . He is due to appear in London 's Bow Street magistrate 's court on Monday . PRP VBZ JJ TO VB IN NNP POS NNP NNP NN POS NN IN NNP . On Friday , Spanish police arrested his brother , Mohannad Almallah Dabas , who holds a Syrian passport , also in connection with the Madrid train bombings . IN NNP , JJ NN VBN PRP$ NN , NNP NNP NNP , WP VBZ DT JJ NN , RB IN NN IN DT NNP NN NNS . The United States is revitalizing efforts to jumpstart six-party talks on North Korea 's nuclear ambitions . DT NNP NNPS VBZ VBG NNS TO VB JJ NNS IN NNP NNP POS JJ NNS . In an interview with Reuters and AFP , Secretary of State Condoleezza Rice says the United States has already made Pyongyang ' a very good proposal ' and is waiting for it to be accepted . IN DT NN IN NNP CC NNP , NNP IN NNP NNP NNP VBZ DT NNP NNPS VBZ RB VBN NNP `` DT RB JJ NN `` CC VBZ VBG IN PRP TO VB VBN . North Korea has so far refused to return for a fourth round of talks , alleging the United States plans to launch military strikes against it - an idea Ms. Rice calls ' farfetched . ' NNP NNP VBZ RB RB VBN TO VB IN DT JJ NN IN NNS , VBG DT NNP NNPS VBZ TO VB JJ NNS IN PRP IN DT NN NNP NNP VBZ `` VBN . `` Meanwhile , a senior U.S. official is in Seoul for talks with South Korean officials after stops in Tokyo and Beijing . RB , DT JJ NNP NN VBZ IN NNP IN NNS IN JJ JJ NNS IN NNS IN NNP CC NNP . Michael Green , director for Asian affairs on the U.S. National Security Council , says the Bush administration is holding out hope that Pyongyang will return to the negotiations . NNP NNP , NN IN JJ NNS IN DT NNP NNP NNP NNP , VBZ DT NNP NN VBZ VBG RP NN IN NNP MD VB TO DT NNS . Italian chemical giant Montedison S.p.A. , through its Montedison Acquisition N.V. indirect unit , began its $ 37-a-share tender offer for all the common shares outstanding of Erbamont N.V. , a maker of pharmaceuticals incorporated in the Netherlands . JJ NN NN NNP NNP , IN PRP$ NNP NNP NN JJ NN , VBD PRP$ $ JJ NN NN IN PDT DT JJ NNS JJ IN NNP NN , DT NN IN NNS VBN IN DT NNP . The offer , advertised in today 's editions of The Wall Street Journal , is scheduled to expire at the end of November . DT NN , VBN IN NN POS NNS IN DT NNP NNP NNP , VBZ VBN TO VB IN DT NN IN NNP . Montedison currently owns about 72 % of Erbamont 's common shares outstanding . NNP RB VBZ IN CD NN IN NNP POS JJ NNS JJ . The offer is being launched pursuant to a previously announced agreement between the companies . DT NN VBZ VBG VBN JJ TO DT RB VBN NN IN DT NNS . Burkina Faso ( formerly Upper Volta ) achieved independence from France in 1960 . NNP NNP LRB RB NNP NNP RRB VBD NN IN NNP IN CD . Repeated military coups during the 1970s and 1980s were followed by multiparty elections in the early 1990s . VBN JJ NNS IN DT NNS CC NNS VBD VBN IN JJ NNS IN DT JJ NNS . Current President Blaise COMPAORE came to power in a 1987 military coup and has won every election since then . NNP NNP NNP NNP VBD TO NN IN DT CD JJ NN CC VBZ VBN DT NN IN RB . Burkina Faso 's high population density and limited natural resources result in poor economic prospects for the majority of its citizens . NNP NNP POS JJ NN NN CC JJ JJ NNS NN IN JJ JJ NNS IN DT NN IN PRP$ NNS . Recent unrest in Cote d'Ivoire and northern Ghana has hindered the ability of several hundred thousand seasonal Burkinabe farm workers to find employment in neighboring countries . JJ NN IN NNP NNP CC JJ NNP VBZ VBN DT NN IN JJ CD CD JJ NNP NN NNS TO VB NN IN JJ NNS . Once one of the wealthiest of the Yugoslav republics , Croatia 's economy suffered badly during the 1991 - 95 war as output collapsed and the country missed the early waves of investment in Central and Eastern Europe that followed the fall of the Berlin Wall . RB CD IN DT JJS IN DT JJ NNS , NNP POS NN VBD RB IN DT CD IN CD NN IN NN VBD CC DT NN VBD DT JJ NNS IN NN IN NNP CC NNP NNP WDT VBD DT NN IN DT NNP NNP . Between 2000 and 2007 , however , Croatia 's economic fortunes began to improve slowly , with moderate but steady GDP growth between 4 % and 6 % led by a rebound in tourism and credit-driven consumer spending . IN CD CC CD , RB , NNP POS JJ NNS VBD TO VB RB , IN JJ CC JJ NN NN IN CD NN CC CD NN VBN IN DT NN IN NN CC JJ NN NN . Inflation over the same period has remained tame and the currency , the kuna , stable . NN IN DT JJ NN VBZ VBN JJ CC DT NN , DT NN , JJ . Nevertheless , difficult problems still remain , including a stubbornly high unemployment rate , a growing trade deficit and uneven regional development . RB , JJ NNS RB VBP , VBG DT RB JJ NN NN , DT VBG NN NN CC JJ JJ NN . The state retains a large role in the economy , as privatization efforts often meet stiff public and political resistance . DT NN VBZ DT JJ NN IN DT NN , IN NN NNS RB VBP JJ JJ CC JJ NN . While macroeconomic stabilization has largely been achieved , structural reforms lag because of deep resistance on the part of the public and lack of strong support from politicians . IN JJ NN VBZ RB VBN VBN , JJ NNS VBP IN IN JJ NN IN DT NN IN DT NN CC NN IN JJ NN IN NNS . The EU accession process should accelerate fiscal and structural reform . DT NNP NN NN MD VB JJ CC JJ NN . While long term growth prospects for the economy remain strong , Croatia will face significant pressure as a result of the global financial crisis . IN JJ NN NN NNS IN DT NN VBP JJ , NNP MD VB JJ NN IN DT NN IN DT JJ JJ NN . Croatia 's high foreign debt , anemic export sector , strained state budget , and over-reliance on tourism revenue will result in higher risk to economic stability over the medium term . NNP POS JJ JJ NN , JJ NN NN , VBD NN NN , CC NN IN NN NN MD VB IN JJR NN TO JJ NN IN DT JJ NN . Morocco annexed the northern two-thirds of Western Sahara ( formerly Spanish Sahara ) in 1976 and claimed the rest of the territory in 1979 , following Mauritania 's withdrawal . NNP VBD DT JJ NNS IN JJ NNP LRB RB JJ NNP RRB IN CD CC VBD DT NN IN DT NN IN CD , VBG NNP POS NN . A guerrilla war with the Polisario Front contesting Morocco 's sovereignty ended in a 1991 UN-brokered cease-fire ; a UN-organized referendum on the territory 's final status has been repeatedly postponed . DT NN NN IN DT NNP NNP VBG NNP POS NN VBD IN DT CD JJ NN ; DT JJ NN IN DT NN POS JJ NN VBZ VBN RB VBN . The UN since 2007 has sponsored intermittent talks between representatives of the Government of Morocco and the Polisario Front to negotiate the status of Western Sahara . DT NNP IN CD VBZ VBN JJ NNS IN NNS IN DT NN IN NNP CC DT NNP NNP TO VB DT NN IN NNP NNP . Morocco has put forward an autonomy proposal for the territory , which would allow for some local administration while maintaining Moroccan sovereignty . NNP VBZ VBN RB DT JJ NN IN DT NN , WDT MD VB IN DT JJ NN IN VBG JJ NN . The Polisario , with Algeria 's support , demands a popular referendum that includes the option of independence . DT NNP , IN NNP POS NN , VBZ DT JJ NN WDT VBZ DT NN IN NN . The Genoese built a fortress on the site of present day Monaco in 1215 . DT NNP VBD DT NN IN DT NN IN JJ NN NNP IN CD . The current ruling Grimaldi family first seized temporary control in 1297 , and again in 1331 , but were not able to permanently secure their holding until 1419 . DT JJ NN NNP NN RB VBD JJ NN IN CD , CC RB IN CD , CC VBD RB JJ TO RB VB PRP$ NN IN CD . Economic development was spurred in the late 19th century with a railroad linkup to France and the opening of a casino . JJ NN VBD VBN IN DT JJ JJ NN IN DT NN NN TO NNP CC DT NN IN DT NN . Since then , the principality 's mild climate , splendid scenery , and gambling facilities have made Monaco world famous as a tourist and recreation center . IN RB , DT NN POS JJ NN , JJ NN , CC NN NNS VBP VBN NNP NN JJ IN DT NN CC NN NN . A CRAB , forsaking the seashore , chose a neighboring green meadow as its feeding ground . DT NNP , VBG DT NN , VBD DT JJ JJ NN IN PRP$ NN NN . A Fox came across him , and being very hungry ate him up . DT NNP VBD IN PRP , CC VBG RB JJ NN PRP RP . Just as he was on the point of being eaten , the Crab said , ' I well deserve my fate , for what business had I on the land , when by my nature and habits I am only adapted for the sea ? ' RB IN PRP VBD IN DT NN IN VBG VBN , DT NNP VBD , `` PRP RB VBP PRP$ NN , IN WP NN VBD PRP IN DT NN , WRB IN PRP$ NN CC NNS PRP VBP RB VBN IN DT NN . `` Contentment with our lot is an element of happiness . NN IN PRP$ NN VBZ DT NN IN NN . A GROOM used to spend whole days in currycombing and rubbing down his Horse , but at the same time stole his oats and sold them for his own profit . DT NN VBD TO VB JJ NNS IN VBG CC VBG RP PRP$ NN , CC IN DT JJ NN VBD PRP$ NNS CC VBD PRP IN PRP$ JJ NN . ' Alas ! ' said the Horse , ' if you really wish me to be in good condition , you should groom me less , and feed me more . ' `` UH . `` VBD DT NN , `` IN PRP RB VBP PRP TO VB IN JJ NN , PRP MD VB PRP RBR , CC VB PRP RBR . `` A POLITICAL Leader was walking out one sunny day , when he observed his Shadow leaving him and walking rapidly away . DT JJ NN VBD VBG RP CD JJ NN , WRB PRP VBD PRP$ NN VBG PRP CC VBG RB RB . ' Come back here , you scoundrel , ' he cried . `` VB RB RB , PRP NN , `` PRP VBD . ' If I had been a scoundrel , ' answered the Shadow , increasing its speed , ' I should not have left you . ' `` IN PRP VBD VBN DT NN , `` VBD DT NN , VBG PRP$ NN , `` PRP MD RB VB VBN PRP . `` The makers of French 's Mustard made the following recent statement : DT NNS IN NNP POS NNP VBD DT VBG JJ NN : We at the French 's Company wish to put an end to statements that our product is manufactured in France . PRP IN DT NNP POS NN NN TO VB DT NN TO NNS IN PRP$ NN VBZ VBN IN NNP . There is no relationship , nor has there ever been a relationship , between our mustard and the country of France . EX VBZ DT NN , CC VBZ EX RB VBN DT NN , IN PRP$ NN CC DT NN IN NNP . Indeed , our mustard in manufactured in Rochester , NY . RB , PRP$ NN IN VBN IN NNP , NNP . The only thing we have in common is that we are both yellow . DT JJ NN PRP VBP IN NN VBZ IN PRP VBP DT JJ . At least our team is trying to win a game . IN JJS PRP$ NN VBZ VBG TO VB DT NN . Coach went out and set up our new pitching machine the other day . NNP VBD RB CC VB RP PRP$ JJ NN NN DT JJ NN . Unfortunately it beat us 04-Jan . RB PRP VBD PRP CD . Clinton 's mother prayed fervently that Bill would grow up and be president . NNP POS NN VBD RB IN NNP MD VB RB CC VB NN . So far , half of her prayer has been answered . RB RB , NN IN PRP$ NN VBZ VBN VBN . Applied excessively , styling gel could cause you to have a hair-raising experience . VBN RB , NN NN MD VB PRP TO VB DT JJ NN . India says it is increasing security to thwart possible militant strikes in the country . NNP VBZ PRP VBZ VBG NN TO VB JJ JJ NNS IN DT NN . Indian Home Minister P. Chidambaram Tuesday warned reporters against creating an alarmist picture and said India is increasing its level of preparedness to meet any terror threat or attack . JJ NNP NNP NNP NNP NNP VBD NNS IN VBG DT JJ NN CC VBD NNP VBZ VBG PRP$ NN IN NN TO VB DT NN NN CC NN . The minister 's comments come just days after Israel said it has information that the same group that carried out the 2008 attacks in Mumbai , India , is planning another assault against Western and Israeli targets in the country . DT NN POS NNS VBP RB NNS IN NNP VBD PRP VBZ NN IN DT JJ NN WDT VBD IN DT CD NNS IN NNP , NNP , VBZ VBG DT NN IN JJ CC JJ NNS IN DT NN . Israel 's counter-terrorism bureau released a statement Thursday , September 17 , saying it has information that terrorists are planning a number of attacks across India , and may be focusing on hitting groups of Israelis and Westerners . NNP POS NN NN VBD DT NN NNP , NNP CD , VBG PRP VBZ NN IN NNS VBP VBG DT NN IN NNS IN NNP , CC MD VB VBG IN VBG NNS IN NNS CC NNPS . India is a popular destination for Israeli tourists , especially during Jewish festivals such as the traditional new year , which began Friday . NNP VBZ DT JJ NN IN JJ NNS , RB IN JJ NNS JJ IN DT JJ JJ NN , WDT VBD NNP . The United States , Israel and Australia have issued travel advisories to their citizens . DT NNP NNPS , NNP CC NNP VBP VBN NN NNS TO PRP$ NNS . India 's holiday season includes Hindu , Islamic and secular holidays , as well as the period surrounding the commemoration of the September 11 , 2001 terror attacks on the United States . NNP POS NN NN VBZ NNP , NNP CC JJ NNS , RB RB IN DT NN VBG DT NN IN DT NNP CD , CD NN NNS IN DT NNP NNPS . Ugandan 's president says his country could increase the number of troops it has in Somalia as part of the African Union peacekeeping force . JJ POS NN VBZ PRP$ NN MD VB DT NN IN NNS PRP VBZ IN NNP IN NN IN DT NNP NNP VBG NN . In a statement Thursday , President Yoweri Museveni says Uganda is ' capable ' of providing all 8,000 troops authorized for the force by the AU . IN DT NN NNP , NNP NNP NNP VBZ NNP VBZ `` JJ `` IN VBG DT CD NNS VBN IN DT NN IN DT NNP . The statement says he made the comment to United Nations Secretary-General Ban Ki-Moon on Wednesday , on the sidelines of the AU summit in Ethiopia . DT NN VBZ PRP VBD DT NN TO NNP NNP NNP NNP NNP IN NNP , IN DT NNS IN DT NNP NN IN NNP . Mr. Museveni told the U.N. leader he has to discuss the matter with his High Command first but will inform Mr. Ban of the decision . NNP NNP VBD DT NNP NN PRP VBZ TO VB DT NN IN PRP$ NNP NNP JJ CC MD VB NNP NNP IN DT NN . Uganda and Burundi have deployed a total of about 2,000 troops to Somalia , where the Somali government and allied Ethiopian troops have been battling an Islamist-led insurgency for more than a year . NNP CC NNP VBP VBN DT NN IN IN CD NNS TO NNP , WRB DT JJ NN CC JJ JJ NNS VBP VBN VBG DT JJ NN IN JJR IN DT NN . Fighting centered in Mogadishu has killed thousands of people and prompted more than 6,00,000 others to flee the city . VBG VBN IN NNP VBZ VBN NNS IN NNS CC VBN JJR IN CD NNS TO VB DT NN . Mr. Ban has expressed concern that few African countries have fulfilled their promise of troops for the AU peacekeeping froce . NNP NNP VBZ VBN NN IN JJ JJ NNS VBP VBN PRP$ NN IN NNS IN DT NNP NN NN . Zimbabwe President Robert Mugabe named an electoral commission to run parliamentary elections expected in March . NNP NNP NNP NNP VBD DT JJ NN TO VB JJ NNS VBN IN NNP . The main opposition , Movement for Democratic Change said it had no confidence in the commission . DT JJ NN , NN IN JJ NNP VBD PRP VBD DT NN IN DT NN . Justice minister Patrick Chinamasa announced that Mr. Mugabe appointed a 5-member body under the chairmanship of High Court Judge , George Chiweshe , who was appointed by President Robert Mugabe , leader of Zimbabwe 's ruling Zanu-PF party . NNP NN NNP NNP VBD IN NNP NNP VBD DT JJ NN IN DT NN IN NNP NNP NNP , NNP NNP , WP VBD VBN IN NNP NNP NNP , NN IN NNP POS NN NNP NN . Judge Chiweshe made legal history in 2002 when he told the High Court that the state did not have to provide any evidence to continue to detain a critically ill opposition member of parliament who was trying to get out of prison on bail . NNP NNP VBD JJ NN IN CD WRB PRP VBD DT NNP NNP IN DT NN VBD RB VB TO VB DT NN TO VB TO VB DT RB JJ NN NN IN NN WP VBD VBG TO VB IN IN NN IN NN . He was also appointed by Mr. Mugabe to draw up a new map of voting districts released before Christmas . PRP VBD RB VBN IN NNP NNP TO VB RP DT JJ NN IN NN NNS VBN IN NNP . The MDC expressed concerns over Mr. Chiweshe 's appointment because of the voter redistricting which removed three of the MDC 's stronghold constituencies . DT NNP VBD NNS IN NNP NNP POS NN IN IN DT NN VBG WDT VBD CD IN DT NNP POS NN NNS . Mr. Chinamasa insisted that the commission reflects an all-inclusive consultation process , incorporating all three parties represented in Zimbabwe 's parliament , including the MDC . NNP NNP VBD IN DT NN VBZ DT JJ NN NN , VBG DT CD NNS VBN IN NNP POS NN , VBG DT NNP . But , new electoral laws signed into law by Mr. Mugabe last week , for the first time give the military , police and prison officials a substantial role in the next poll , and they can , if recruited to serve , control voting and counting . CC , JJ JJ NNS VBD IN NN IN NNP NNP JJ NN , IN DT JJ NN VB DT NN , NN CC NN NNS DT JJ NN IN DT JJ NN , CC PRP MD , IN VBN TO VB , VB NN CC NN . There was a frenzy of lawmaking late last year to establish new legislation and electoral authorities ahead of the poll which Mr. Mugabe says will be held in March ahead of his 25th anniversary of coming to power in 1980 . EX VBD DT NN IN VBG JJ JJ NN TO VB JJ NN CC JJ NNS RB IN DT NN WDT NNP NNP VBZ MD VB VBN IN NNP RB IN PRP$ JJ NN IN VBG TO NN IN CD . The MDC suspended participation in all elections five months ago because it said the electoral playing field was uneven . DT NNP VBD NN IN DT NNS CD NNS RB IN PRP VBD DT JJ NN NN VBD JJ . It said it would only take part when Zimbabwe 's laws and practice complied with regional electoral principles agreed to by Mr. Mugabe and other southern African countries last August . PRP VBD PRP MD RB VB NN WRB NNP POS NNS CC NN VBD IN JJ JJ NNS VBD TO IN NNP NNP CC JJ JJ JJ NNS JJ NNP . However most political analysts believe the MDC will take part in the general election , despite Zimbabwe 's lack of compliance with regional electoral practices and laws . RB RBS JJ NNS VBP DT NNP MD VB NN IN DT JJ NN , IN NNP POS NN IN NN IN JJ JJ NNS CC NNS . Western observers are not expected to be invited to cover Zimbabwe 's poll as they said the last two national elections were neither free nor fair . JJ NNS VBP RB VBN TO VB VBN TO VB NNP POS NN IN PRP VBD DT JJ CD JJ NNS VBD RB JJ CC JJ . In a weekend of second-round qualifiers for the 2012 African Cup of Nations , no result was more surprising than Niger 's 1-0 upset of reigning African champions Egypt . IN DT NN IN JJ NNS IN DT CD NNP NNP IN NNP , DT NN VBD JJR JJ IN NNP POS JJ NN IN VBG JJ NNS NNP . Football fans in Niger 's capital celebrated throughout the night , blowing horns and singing the praises of their Menas ' win over the Pharaohs of Egypt . NN NNS IN NNP POS NN VBD IN DT NN , VBG NNS CC VBG DT NNS IN PRP$ NNS POS NN IN DT NNP IN NNP . It was a stunning upset , even for the most loyal of Niger 's football faithful . PRP VBD DT JJ NN , RB IN DT JJS NN IN NNP POS NN NN . FIFA ranks Egypt 9th in the world . NNP VBZ NNP CD IN DT NN . Niger : 154th . NNP IN CD . Niamey 's 35,000 seat Stade General Seyni Kountche was full long before the mid-afternoon kick-off under a blistering sun . NNP POS CD NN NNP NNP NNP NNP VBD JJ RB IN DT NN NN IN DT VBG NN . Striker Ouwa Moussa Maazou scored the only goal in the first half , getting past Egyptian defender Mohamed Abel Shafy who failed to clear . NNP NNP NNP NNP VBD DT JJ NN IN DT JJ NN , VBG JJ JJ NN NNP NNP NNP WP VBD TO VB . Goalkeeper Essam el-Hadary charged Maazou , but the 22-year-old striker - who is on loan from French club Bordeaux - slipped the ball past him into the net . NN NNP NNP VBD NNP , CC DT JJ NN : WP VBZ IN NN IN JJ NN NNP : VBD DT NN JJ PRP IN DT NN . Egypt pressed for the equalizer at the start of the second half , but rarely got much past midfield . NNP VBD IN DT NN IN DT NN IN DT JJ NN , CC RB VBD RB JJ NN . Their best chance came off a free kick in the 76th minute . PRP$ JJS NN VBD RP DT JJ NN IN DT JJ NN . But Mahmoud Fathallah was ruled offside . CC NNP NNP VBD VBN NN . Maazou 's goal and solid defense gives Niger three points in Group G and drops Egypt to the bottom of the group with only one point after two matches , following their opening 01-Jan draw with Sierra Leone in Cairo . NNP POS NN CC JJ NN VBZ NNP CD NNS IN NNP NNP CC VBZ NNP TO DT NN IN DT NN IN RB CD NN IN CD NNS , VBG PRP$ NN JJ NN IN NNP NNP IN NNP . It was an inauspicious start for the record seven-time continental champions , who next play South Africa in Johannesburg . PRP VBD DT JJ NN IN DT NN JJ JJ NNS , WP RB VBP NNP NNP IN NNP . Niger hosts Sierra Leone as it pushes to qualify for the 2012 tournament in Equatorial Guinea and Gabon . NNP VBZ NNP NNP IN PRP VBZ TO VB IN DT CD NN IN NNP NNP CC NNP . Iraqi officials say a car bomb targeting a police patrol has killed six people and wounded at least 11 more in a city north of Baghdad . JJ NNS VBP DT NN NN VBG DT NN NN VBZ VBN CD NNS CC VBN IN JJS CD JJR IN DT NN NN IN NNP . Police said Thursday the blast took place in central Tikrit , hometown of former dictator Saddam Hussein . NNS VBD NNP DT NN VBD NN IN JJ NNP , NN IN JJ NN NNP NNP . They said four police officers were among the dead and several others were wounded . PRP VBD CD NNS NNS VBD IN DT NN CC JJ NNS VBD VBN . Overall violence in Iraq has yet to match the peak reached in 2006 and 2007 . JJ NN IN NNP VBZ RB TO VB DT NN VBN IN CD CC CD . However , insurgents have intensified attacks since inconclusive March elections left the country without a governing coalition . RB , NNS VBP VBN NNS IN JJ NNP NNS VBD DT NN IN DT NN NN . Sylvester Stallone faces stiff fines in Australia , where he is accused of importing a muscle-building hormone . NNP NNP VBZ JJ NNS IN NNP , WRB PRP VBZ VBN IN VBG DT JJ NN . The movie star was detained Feb. 16 in the Sydney airport , while authorities searched his hotel room . DT NN NN VBD VBN NNP CD IN DT NNP NN , IN NNS VBD PRP$ NN NN . He and his group subsequently left the country , and he was not compelled to attend the March 13 hearing . PRP CC PRP$ NN RB VBD DT NN , CC PRP VBD RB VBN TO VB DT NNP CD NN . He is accused of possessing human growth hormone , classified in Australia as a restricted performance-enhancing drug . PRP VBZ VBN IN VBG JJ NN NN , VBN IN NNP IN DT JJ JJ NN . The maximum penalty for illegal possession is a fine of $ 86,000 and five years in prison . DT NN NN IN JJ NN VBZ DT NN IN $ CD CC CD NNS IN NN . Stallone is unlikely to face such a sentence . NNP VBZ JJ TO VB PDT DT NN . Police in western India say at least 52 people were killed and at least eight others injured Thursday , when a train collided with a tractor carrying a wedding party . NNS IN JJ NNP VBP IN JJS CD NNS VBD VBN CC IN JJS CD NNS VBN NNP , WRB DT NN VBN IN DT NN VBG DT VBG NN . Police say the accident happened in a small village in Maharashtra state , some 800 kilometers northeast of Bombay , also known as Mumbai . NNS VBP DT NN VBD IN DT JJ NN IN NNP NN , DT CD NNS RB IN NNP , RB VBN IN NNP . They say a local train bound for the central city of Nagpur smashed into a tractor as it was crossing the tracks . PRP VBP DT JJ NN VBN IN DT JJ NN IN NNP VBD IN DT NN IN PRP VBD VBG DT NNS . Accidents are relatively frequent on India 's railway network , which handles 13 million passengers on 14,000 trains every day . NNS VBP RB JJ IN NNP POS NN NN , WDT VBZ CD CD NNS IN CD NNS DT NN . In December , a head-on collision of two passenger trains in Punjab state brought opposition party calls for the resignation of Railways Minister Laloo Prasad Yadav . IN NNP , DT JJ NN IN CD NN NNS IN NNP NN VBD NN NN VBZ IN DT NN IN NNP NNP NNP NNP NNP . At least 37 people died in that crash . IN JJS CD NNS VBD IN DT NN . The New York City Fire Department has released thousands of pages of oral histories and hours of radio transmissions from the September 11 , 2001 , terrorist attacks on the World Trade Center . DT NNP NNP NNP NNP NNP VBZ VBN NNS IN NNS IN JJ NNS CC NNS IN NN NNS IN DT NNP CD , CD , JJ NNS IN DT NNP NNP NNP . A New York State court of appeals ruled in March that the items must be made public . DT NNP NNP NNP NN IN NNS VBD IN NNP IN DT NNS MD VB VBN JJ . The oral histories were complied by firefighters shortly after the attacks on the twin towers , and include accounts from firefighters and emergency medical personnel who were on the scene . DT JJ NNS VBD VBN IN NNS RB IN DT NNS IN DT NN NNS , CC VBP NNS IN NNS CC NN JJ NNS WP VBD IN DT NN . The New York Times newspaper and families of the victims of the attacks had sued for the release of the material . DT NNP NNP NNP NN CC NNS IN DT NNS IN DT NNS VBD VBN IN DT NN IN DT NN . The city had said it wanted to protect the privacy of those involved , and not jeopardize the case against Zacarias Moussaoui , who later pleaded guilty to conspiring with the hijackers . DT NN VBD VBN PRP VBD TO VB DT NN IN DT VBN , CC RB VB DT NN IN NNP NNP , WP RB VBD JJ TO VBG IN DT NNS . The United Nations says the December 26 Indian Ocean tsunami dumped tons of hazardous waste on the shores of Somalia . DT NNP NNP VBZ DT NNP CD NNP NNP NNP VBD NNS IN JJ NN IN DT NNS IN NNP . A spokesman for the U.N. Environment Program says containers filled with nuclear , chemical and medical waste broke apart when they washed ashore , and have been spread by the weather . DT NN IN DT NNP NNP NNP VBZ NNS VBN IN JJ , NN CC JJ NN VBD RB WRB PRP VBD RB , CC VBP VBN VBN IN DT NN . The spokesman says there have been reports from northern Somalia of illnesses consistent with radiation sickness , including respiratory infections , mouth ulcers , abdominal hemorrhages and unusual skin diseases . DT NN VBZ EX VBP VBN NNS IN JJ NNP IN NNS JJ IN NN NN , VBG JJ NNS , NN NNS , JJ NNS CC JJ NN NNS . The United Nations says foreign companies , many from Europe , began dumping toxic waste on Somalia 's shore in the 1980s , but the practice accelerated after the 1991 overthrow of dictator Mohamed Siad Barre . DT NNP NNP VBZ JJ NNS , JJ IN NNP , VBD VBG JJ NN IN NNP POS NN IN DT NNS , CC DT NN VBD IN DT CD NN IN NN NNP NNP NNP . The tsunami is believed to have dislodged the hazardous materials . DT NN VBZ VBN TO VB VBN DT JJ NNS . Japan has pledged $ 17 billion in development aid to other Asian countries for infrastructure projects that will help boost growth . NNP VBZ VBN $ CD CD IN NN NN TO JJ JJ NNS IN NN NNS WDT MD VB VB NN . Speaking Saturday to the World Economic Forum in Davos , Switzerland , Japanese Prime Minister Taro Aso also repeated a pledge to lend $ 100 billion to the International Monetary Fund . VBG NNP TO DT NNP NNP NNP IN NNP , NNP , JJ NNP NNP NNP NNP RB VBD DT NN TO VB $ CD CD TO DT NNP NNP NNP . Mr. Aso also announced a new greenhouse gas emissions plan for Japan and pledged to announce emissions targets by June . NNP NNP RB VBD DT JJ NN NN NNS VBP IN NNP CC VBD TO VB NNS NNS IN NNP . The Japanese leader planned to spend only half a day in the Swiss mountain resort and return home by late Sunday to deal with a stormy session of parliament , where the opposition hopes for a victory in elections that are required to be held this year . DT JJ NN VBD TO VB RB PDT DT NN IN DT JJ NN NN CC NN NN IN JJ NNP TO VB IN DT JJ NN IN NN , WRB DT NN VBZ IN DT NN IN NNS WDT VBP VBN TO VB VBN DT NN . More than 5,000 U.S. , Iraqi and British troops have swept through an Iraqi town south of Baghdad in the latest operation against insurgents ahead of January elections . JJR IN CD NNP , JJ CC JJ NNS VBP VBN IN DT JJ NN NN IN NNP IN DT JJS NN IN NNS RB IN NNP NNS . The U.S. military says troops arrested 32 suspected insurgents in Jabella Tuesday . DT NNP NN VBZ NNS VBN CD JJ NNS IN NNP NNP . The raid follows operations in Fallujah and the northern city of Mosul . DT NN VBZ NNS IN NNP CC DT JJ NN IN NNP . U.S. Defense Minister Donald Rumsfeld says those operations show how much insurgents are opposed to a democratic Iraq . NNP NNP NNP NNP NNP VBZ DT NNS VBP WRB JJ NNS VBP VBN TO DT JJ NNP . He warned that attacks will likely increase ahead of the elections . PRP VBD IN NNS MD RB VB RB IN DT NNS . Meanwhile , foreign ministers from Arab and Western countries met Tuesday in Egypt and said full participation in the vote is the key to reconciliation in Iraq . RB , JJ NNS IN JJ CC JJ NNS VBD NNP IN NNP CC VBD JJ NN IN DT NN VBZ DT NN TO NN IN NNP . In another development , a Sunni Muslim cleric was gunned down outside a mosque north of Baghdad . IN DT NN , DT NNP NNP NN VBD VBN RP IN DT NN NN IN NNP . Terrorist mastermind Osama bin Laden apparently has surfaced on an audiotape calling for the overthrow of Saudi Arabia 's government . NNP NN NNP NNP NNP RB VBZ VBN IN DT JJ NN IN DT NN IN NNP NNP POS NN . The lengthy message criticizes the Saudi monarchy , saying its attempts at reform will not change anything and that change will only come through armed struggle and the government 's overthrow . DT JJ NN VBZ DT NNP NN , VBG PRP$ NNS IN NN MD RB VB DT CC IN NN MD RB VB IN JJ NN CC DT NN POS NN . Authorities say the authenticity of the tape , which surfaced Thursday on an Islamist website , could not immediately be verified . NNS VBP DT NN IN DT NN , WDT VBD NNP IN DT NN NN , MD RB RB VB VBN . He also praises the militants who attacked the U.S. consulate in the Saudi city of Jeddah earlier this month , asking God to be merciful on them . PRP RB VBZ DT NNS WP VBD DT NNP NN IN DT JJ NN IN NNP RBR DT NN , VBG NNP TO VB JJ IN PRP . Four of the attackers were killed , a fifth was arrested . CD IN DT NNS VBD VBN , DT NN VBD VBN . Five consulate staff members who were not American were also killed . CD JJ NN NNS WP VBD RB JJ VBD RB VBN . Osama bin Laden remains a fugitive . NNP NNP NNP VBZ DT JJ . He was last heard from in a videotape shortly before the U.S. presidential elections last month . PRP VBD JJ VBN IN IN DT NN RB IN DT NNP JJ NNS JJ NN . The U.S.-led military forces in Afghanistan say more than a dozen militants were killed in a day-long battle in southern part of the country Saturday . DT JJ JJ NNS IN NNP VBP JJR IN DT NN NNS VBD VBN IN DT JJ NN IN JJ NN IN DT NN NNP . A coalition and an Afghan soldier were also killed in the fighting . DT NN CC DT JJ NN VBD RB VBN IN DT NN . Saturday 's fighting took place in southern Helmand province . NNP POS NN VBD NN IN JJ NNP NN . Coalition and Afghan forces called for air strikes on militant positions after coming under attack in the area . NN CC JJ NNS VBN IN NN NNS IN JJ NNS IN VBG IN NN IN DT NN . Also in the south , Taleban militants executed the kidnapped son of a district police chief . RB IN DT NN , NNP NNS VBD DT VBN NN IN DT NN NN NN . The victim was reported to be between 14 and 18-years-old . DT NN VBD VBN TO VB IN CD CC JJ . In other violence , a roadside bomb hit an Afghan army convoy killing at least two soldiers and wounding three others in the western Farah province on Sunday . IN JJ NN , DT NN NN VBD DT JJ NN NN VBG IN JJS CD NNS CC VBG CD NNS IN DT JJ NNP NN IN NNP . A Taleban spokesperson has taken responsibility for the deadly blast . DT NNP NN VBZ VBN NN IN DT JJ NN . The World Food Program ( WFP ) warns that fighting in Chad could leave up to 7,00,000 people short of food . DT NNP NNP NNP LRB NNP RRB VBZ IN VBG IN NNP MD VB RP TO CD NNS JJ IN NN . The U.N. agency expressed concern that violence will delay truck convoys trying to reach refugees in eastern Chad and displaced people in Sudan 's Darfur region . DT NNP NN VBD NN IN NN MD VB NN NNS VBG TO VB NNS IN JJ NNP CC JJ NNS IN NNP POS NNP NN . The agency says the trucks must get through before the end of next month , when seasonal rains are expected to make road travel impossible . DT NN VBZ DT NNS MD VB IN IN DT NN IN JJ NN , WRB JJ NNS VBP VBN TO VB NN NN JJ . Chad 's government is fighting an insurgency that President Idriss Deby says is backed by Sudan . NNP POS NN VBZ VBG DT NN IN NNP NNP NNP VBZ VBZ VBN IN NNP . The Sudanese government denies the charge . DT JJ NN VBZ DT NN . The World Food Program says it remains operational in Chad despite recent clashes that led it to evacuate non-essential staff . DT NNP NNP NNP VBZ PRP VBZ JJ IN NNP IN JJ NNS WDT VBD PRP TO VB JJ NN . The agency says it is wrapping up April food distribution in eastern Chad , where it looks after some 2,00,000 refugees from Darfur . DT NN VBZ PRP VBZ VBG RP NNP NN NN IN JJ NNP , WRB PRP VBZ IN DT CD NNS IN NNP . The agency feeds another 5,00,000 displaced Sudanese in Darfur itself . DT NN VBZ DT CD JJ NN IN NNP PRP . Police in the northeastern U.S. state of Connecticut say a disgruntled employee at a beer distribution firm went on a shooting spree at his place of employment , leaving nine people dead including himself . NNS IN DT JJ NNP NN IN NNP VBP DT JJ NN IN DT NN NN NN VBD IN DT NN NN IN PRP$ NN IN NN , VBG CD NNS JJ VBG PRP . A labor union official says the suspect was a driver who had worked at the company , Hartford Distributors . DT NN NN NN VBZ DT NN VBD DT NN WP VBD VBN IN DT NN , NNP NNS . He apparently went on a rampage Tuesday , after being summoned for a disciplinary hearing . PRP RB VBD IN DT NN NNP , IN VBG VBN IN DT JJ NN . The shooting took place at 7.30 in the morning at a company warehouse , while a large number of people were inside the building during a shift change . DT NN VBD NN IN CD IN DT NN IN DT NN NN , IN DT JJ NN IN NNS VBD IN DT NN IN DT NN NN . Police say , after the rampage , it appears the gunman shot and killed himself . NNS VBP , IN DT NN , PRP VBZ DT NN VBD CC VBD PRP . Afghan officials are welcoming the Netherlands ' decision to keep its troops in southern Afghanistan , but the officials say the international community must do more to equip domestic forces . JJ NNS VBP VBG DT NNP POS NN TO VB PRP$ NNS IN JJ NNP , CC DT NNS VBP DT JJ NN MD VB JJR TO VB JJ NNS . Afghan Defense Ministry officials Saturday said the extension of the Dutch mission is a positive step . JJ NNP NNP NNS NNP VBD DT NN IN DT JJ NN VBZ DT JJ NN . But they said further training of Afghan troops is necessary to ensure long-term security in Afghanistan . CC PRP VBD JJ NN IN JJ NNS VBZ JJ TO VB JJ NN IN NNP . The Dutch government announced Friday it will extend the mandate of its troops until 2010 . DT JJ NN VBD NNP PRP MD VB DT NN IN PRP$ NNS IN CD . The soldiers serve as part of a NATO force . DT NNS VBP IN NN IN DT NNP NN . Around 1,700 Dutch troops have been deployed in the southern Uruzgan province , where NATO and U.S.-led forces are fighting fierce battles against Taliban militants . IN CD JJ NNS VBP VBN VBN IN DT JJ NNP NN , WRB NNP CC JJ NNS VBP VBG JJ NNS IN NNP NNS . A renewed Taliban insurgency in Afghanistan has turned this year into the deadliest yet since the 2001 U.S.-led invasion ousted the Taliban government . DT JJ NNP NN IN NNP VBZ VBN DT NN IN DT JJS RB IN DT CD JJ NN VBD DT NNP NN . The prime minister of Pakistan , Shaukat Aziz , has called for European help in repatriating three million Afghan refugees in his country . DT JJ NN IN NNP , NNP NNP , VBZ VBN IN JJ NN IN VBG CD CD JJ NNS IN PRP$ NN . Mr. Aziz says refugee camps along the border with Afghanistan provide safe havens for terrorists . NNP NNP VBZ NN NNS IN DT NN IN NNP VBP JJ NNS IN NNS . The prime minister also promised to strengthen efforts to restrict cross-border attacks into Afghanistan . DT JJ NN RB VBD TO VB NNS TO VB JJ NNS IN NNP . The Pakistan government has proposed a controversial plan to fence and mine parts of the mountainous border . DT NNP NN VBZ VBN DT JJ NN TO NN CC NN NNS IN DT JJ NN . Mr. Aziz is in Belgium , holding talks with European Union and NATO leaders . NNP NNP VBZ IN NNP , VBG NNS IN NNP NNP CC NNP NNS . After Tuesday 's meeting , NATO Secretary General Jaap de Hoop Scheffer called for an end to criticism of Pakistan 's efforts to contain militants . IN NNP POS NN , NNP NNP NNP NNP IN NNP NNP VBD IN DT NN TO NN IN NNP POS NNS TO VB NNS . Scheffer said it does not make sense to have a public ' blame game . ' NNP VBD PRP VBZ RB VB NN TO VB DT JJ `` NN NN . `` The Afghan government and the United States have both accused Pakistan of failing to clamp down on Taleban insurgents based in Pakistan who launch attacks into Afghanistan . DT JJ NN CC DT NNP NNPS VBP DT VBN NNP IN VBG TO VB RP IN NNP NNS VBN IN NNP WP VBP NNS IN NNP . Police in Indonesia have asked churches to prepare for possible Christmas attacks by digging holes for suspicious objects that might be bombs . NNS IN NNP VBP VBN NNS TO VB IN JJ NNP NNS IN VBG NNS IN JJ NNS WDT MD VB NNS . Officials in the central Java city of Solo said Friday they are requesting churches put any suspicious object into a one-meter deep hole to store until a bomb squad can arrive . NNS IN DT JJ NNP NN IN NNP VBD NNP PRP VBP VBG NNS VBD DT JJ NN IN DT JJ JJ NN TO VB IN DT NN NN MD VB . Earlier this month , Jakarta 's police chief said he will deploy up to 17,000 security officers to safeguard the Indonesian capital during the upcoming Christian holiday season . RBR DT NN , NNP POS NN NN VBD PRP MD VB RP TO CD NN NNS TO VB DT JJ NN IN DT JJ JJ NN NN . Five years ago , militants bombed 11 churches on Christmas Eve , killing 19 people . CD NNS RB , NNS VBD CD NNS IN NNP NNP , VBG CD NNS . Police suspect the radical Jemaah Islamiyah group was responsible . NNS VBP DT JJ NNP NNP NN VBD JJ . Shops , businesses , and offices were shut in Indian-controlled Kashmir Monday , after separatists called a strike to protest the death of a teenager . NNS , NNS , CC NNS VBD VBN IN JJ NNP NNP , IN NNS VBD DT NN TO VB DT NN IN DT NN . Seventeen-year-old Tufail Ahmad Matoo was killed in the main town of Srinagar Friday during clashes between anti-India protesters and police . JJ NNP NNP NNP VBD VBN IN DT JJ NN IN NNP NNP IN NNS IN JJ NNS CC NNS . Residents say Mattoo was hit by a teargas shell fired by police and was carrying a school bag when he was hit . NNS VBP NNP VBD VBN IN DT JJ NN VBN IN NN CC VBD VBG DT NN NN WRB PRP VBD VBN . Police say they are investigating the death . NNS VBP PRP VBP VBG DT NN . Clashes between demonstrators and security forces have erupted in Srinagar since the incident , with strict security restrictions in place to prevent further violence . NNS IN NNS CC NN NNS VBP VBN IN NNP IN DT NN , IN JJ NN NNS IN NN TO VB JJ NN . Kashmiri Muslim separatists have been fighting for two decades for independence from India or a merger with Muslim-majority Pakistan . JJ NNP NNS VBP VBN VBG IN CD NNS IN NN IN NNP CC DT NN IN NNP NNP . The insurgency has killed more than 47,000 people . DT NN VBZ VBN JJR IN CD NNS . Kashmir is divided between India and Pakistan , but claimed in its entirety by both . NNP VBZ VBN IN NNP CC NNP , CC VBD IN PRP$ NN IN DT . The neighbors have fought two wars over the region . DT NNS VBP VBN CD NNS IN DT NN . Hundreds of millions of Christians worldwide are celebrating Christmas Saturday . NNS IN NNS IN NNPS NN VBP VBG NNP NNP . Pope John Paul , in his traditional Christmas Day message , expressed concern at violence in the Middle East and Africa . NNP NNP NNP , IN PRP$ JJ NNP NNP NN , VBD NN IN NN IN DT NNP NNP CC NNP . The Roman Catholic pontiff said he follows the situation in Iraq with ' great apprehension . ' DT NNP NNP NN VBD PRP VBZ DT NN IN NNP IN `` JJ NN . `` He said he has ' anxious concern ' about the situation in the Holy Land but also feels ' invincible confidence ' at the prospects for peace there . PRP VBD PRP VBZ `` JJ NN `` IN DT NN IN DT NNP NNP CC RB VBZ `` JJ NN `` IN DT NNS IN NN RB . President Bush issued a Christmas Day call for Americans to volunteer to help the neediest of their fellow citizens . NNP NNP VBD DT NNP NN NN IN NNS TO VB TO VB DT JJS IN PRP$ JJ NNS . The President also acknowledged Americans serving in Afghanistan , Iraq and elsewhere around the world . DT NNP RB VBD NNS VBG IN NNP , NNP CC RB IN DT NN . Britain 's Queen Elizabeth sent a special radio message to her troops serving around the world expressing pride and gratitude . NNP POS NNP NNP VBD DT JJ NN NN TO PRP$ NNS VBG IN DT NN VBG NN CC NN . Later in her annual televised Christmas message , the Queen highlighted Britain 's ethnic and religious diversity and appealed for tolerance . RB IN PRP$ JJ JJ NNP NN , DT NNP VBD NNP POS JJ CC JJ NN CC VBD IN NN . Church and state leaders have joined ordinary citizens in Russia in marking Orthodox Christmas Eve . NN CC NN NNS VBP VBN JJ NNS IN NNP IN VBG NNP NNP NNP . The head of the Russian Orthodox Church , Patriarch Alexy , urged believers to mark Christmas with good deeds . DT NN IN DT JJ NNP NNP , NNP NNP , VBD NNS TO VB NNP IN JJ NNS . Russia 's Itar-Tass news agency says he urged the faithful to pool their efforts to allow the joy of Christmas to enter every home . NNP POS NNP NN NN VBZ PRP VBD DT NN TO NN PRP$ NNS TO VB DT NN IN NNP TO VB DT NN . Russian President Vladimir Putin attended a Christmas Eve service at a cathedral in the Siberian city of Yakutsk . JJ NNP NNP NNP VBD DT NNP NNP NN IN DT NN IN DT JJ NN IN NNP . In a message to citizens , Mr. Putin urged them to follow the Christmas tradition of helping those in need . IN DT NN TO NNS , NNP NNP VBD PRP TO VB DT NNP NN IN VBG DT IN NN . In Rome , Pope Benedict extended Christmas greetings to Orthodox Christians as Roman Catholics marked the feast of the Epiphany - the Three Kings or Wise Men who tradition says brought gifts to Jesus following his birth . IN NNP , NNP NNP VBD NNP NNS TO NNP NNPS IN NNP NNPS VBD DT NN IN DT NNP IN DT CD NNS CC JJ NNS WP NN VBZ VBD NNS TO NNP VBG PRP$ NN . Many Orthodox churches celebrate Christmas on the Julian calendar - about two weeks later than most other Christians . JJ NNP NNS VBP NNP IN DT NNP NN : IN CD NNS RB IN JJS JJ NNS . The Indian foreign ministry says India and Pakistan will hold the first meeting of a joint anti-terrorism panel in March . DT JJ JJ NN VBZ NNP CC NNP MD VB DT JJ NN IN DT JJ NN NN IN NNP . The talks will be held in Pakistan 's capital , Islamabad , on March 6 . DT NNS MD VB VBN IN NNP POS NN , NNP , IN NNP CD . The idea for the panel was first proposed last year during a meeting in Cuba between Indian Prime Minister Manmohan Singh and Pakistani President Pervez Musharraf . DT NN IN DT NN VBD JJ VBN JJ NN IN DT NN IN NNP IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP . The initiative was created after deadly train bombings in Mumbai in July . DT NN VBD VBN IN JJ NN NNS IN NNP IN NNP . India claimed Pakistan 's top intelligence agency ( ISI ) played a role in the attack , a charged denied by Pakistan . NNP VBD NNP POS JJ NN NN LRB NNP RRB VBD DT NN IN DT NN , DT VBN VBN IN NNP . Efforts to improve relations between India and Pakistan began with a peace process in 2004 . NNS TO VB NNS IN NNP CC NNP VBD IN DT NN NN IN CD . The two countries have fought three wars and have yet to resolve their dispute over the region of Kashmir , where an anti-India insurgency has killed tens of thousands since 1989 . DT CD NNS VBP VBN CD NNS CC VBP RB TO VB PRP$ NN IN DT NN IN NNP , WRB DT JJ NN VBZ VBN NNS IN NNS IN CD . World number-two men 's tennis player Rafael Nadal of Spain has withdrawn from the season 's first Grand Slam tournament , the Australian Open , which begins Monday in Melbourne . NN JJ NNS POS NN NN NNP NNP IN NNP VBZ VBN IN DT NN POS JJ NNP NNP NN , DT JJ NNP , WDT VBZ NNP IN NNP . The 19-year-old French Open champion said on his website Tuesday that he would be unable to play because of a foot injury he suffered in October at the Madrid Masters . DT JJ JJ NN NN VBD IN PRP$ NN NNP IN PRP MD VB JJ TO VB IN IN DT NN NN PRP VBD IN NNP IN DT NNP NNP . He has not played a tour event since . PRP VBZ RB VBN DT NN NN IN . Nadal joins American Andre Agassi on the sidelines for the tournament , which could still lose Russians Marat Safin and Maria Sharapova because of fitness doubts . NNP VBZ JJ NNP NNP IN DT NNS IN DT NN , WDT MD RB VB NNS NNP NNP CC NNP NNP IN IN NN NNS . But top men 's seed and world number-one Roger Federer of Switzerland says he is in good form heading into the event and is fully recovered from the ankle injury that hampered him last season . CC JJ NNS POS NN CC NN JJ NNP NNP IN NNP VBZ PRP VBZ IN JJ NN VBG IN DT NN CC VBZ RB VBN IN DT JJ NN IN VBN PRP JJ NN . U.S. officials say Pakistan and Afghanistan must decide for themselves on an appropriate and effective method of reducing cross-border infiltration . NNP NNS VBP NNP CC NNP MD VB IN PRP IN DT JJ CC JJ NN IN VBG JJ NN . In an interview with VOA Wednesday the U.S. Under Secretary of State for Political Affairs , Nicholas Burns , said Pakistan 's plan to lay land mines along parts of its border with Afghanistan is a bilateral issue . IN DT NN IN NNP NNP DT NNP IN NNP IN NNP IN NNP NNP , NNP NNP , VBD NNP POS NN TO VB NN NNS IN NNS IN PRP$ NN IN NNP VBZ DT JJ NN . Afghan officials have opposed the plan , saying it will do little to prevent terrorism . JJ NNS VBP VBN DT NN , VBG PRP MD VB RB TO VB NN . Afghanistan has repeatedly accused Pakistan of not doing enough to stop Taleban militants from infiltrating their shared border . NNP VBZ RB VBN NNP IN RB VBG RB TO VB NNP NNS IN VBG PRP$ JJ NN . Burns also said he hopes the two sides can resolve a wave of Taleban-led attacks on civilians and NATO forces inside Afghanistan . NNP RB VBD PRP VBZ DT CD NNS MD VB DT NN IN JJ NNS IN NNS CC NNP NNS IN NNP . Fighting in Afghanistan increased dramatically last year , killing thousands and igniting tensions between Kabul and Islamabad . VBG IN NNP VBD RB JJ NN , VBG NNS CC VBG NNS IN NNP CC NNP . European Union Trade Commissioner Peter Mandelson says EU trading partners are not ready to make what he calls the ' hard decisions ' needed for a world trade deal . NNP NNP NNP NNP NNP NNP VBZ NNP NN NNS VBP RB JJ TO VB WP PRP VBZ DT `` JJ NNS `` VBN IN DT NN NN NN . Monday , Mandelson made his first speech to the European Parliament since last month 's World Trade Organization meeting ended with little progress . NNP , NNP VBD PRP$ JJ NN TO DT NNP NNP IN JJ NN POS NNP NNP NNP NN VBD IN JJ NN . He said Hong Kong and other major European trading partners are not yet prepared to make the concessions needed to bring talks to a successful conclusion in 2006 . PRP VBD NNP NNP CC JJ JJ JJ NN NNS VBP RB RB VBN TO VB DT NNS VBN TO VB NNS TO DT JJ NN IN CD . Mandelson said he will do what he can to meet a deadline for a deal , but not at Europe 's expense . NNP VBD PRP MD VB WP PRP MD TO VB DT NN IN DT NN , CC RB IN NNP POS NN . The EU says it has made significant compromises on such issues as farm subsidies to open its market to agricultural imports . DT NNP VBZ PRP VBZ VBN JJ NNS IN JJ NNS IN NN NNS TO VB PRP$ NN TO JJ NNS . The United States and other countries say the E.U . has not gone far enough . DT NNP NNPS CC JJ NNS VBP DT NNP . VBZ RB VBN RB RB . Cyprus Foreign Minister George Iacovou says his European Union counterparts have agreed on a statement responding to Turkey 's refusal to recognize the internationally backed Cypriot government . NNP NNP NNP NNP NNP VBZ PRP$ NNP NNP NNS VBP VBN IN DT NN VBG TO NNP POS NN TO VB DT RB VBN JJ NN . Mr. Iacovou gave no details of the statement . NNP NNP VBD DT NNS IN DT NN . But he told the Cyprus News Agency the ministers left it up to ambassadors of the 25 EU countries to work out the final text of the document . CC PRP VBD DT NNP NNP NNP DT NNS VBD PRP RP TO NNS IN DT CD NNP NNS TO VB RP DT JJ NN IN DT NN . Earlier , Turkey 's Foreign Minister Abdullah Gul warned his country will abandon its EU membership bid if the bloc imposes new conditions on Ankara , or tries to offer anything less than full membership . RB , NNP POS NNP NNP NNP NNP VBD PRP$ NN MD VB PRP$ NNP NN NN IN DT NN VBZ JJ NNS IN NNP , CC VBZ TO VB DT JJR IN JJ NN . Turkey has insisted that recognition of the Greek-led Cypriot government depends on a resolution of the three-decade division of Cyprus . NNP VBZ VBN IN NN IN DT JJ JJ NN VBZ IN DT NN IN DT JJ NN IN NNP . EU ministers have been pressing Turkey to normalize relations with all EU members , including Cyprus . NNP NNS VBP VBN VBG NNP TO VB NNS IN DT NNP NNS , VBG NNP . Turkey is scheduled to start EU membership talks next month . NNP VBZ VBN TO VB NNP NN NNS JJ NN . The U.S. military in Afghanistan says four American soldiers and an Afghan interpreter have been wounded in a roadside explosion in a southeastern part of the country . DT NNP NN IN NNP VBZ CD JJ NNS CC DT JJ NN VBP VBN VBN IN DT NN NN IN DT JJ NN IN DT NN . A statement said the explosion occurred during a routine patrol near the town of Ghazni Tuesday . DT NN VBD DT NN VBD IN DT JJ NN IN DT NN IN NNP NNP . It said initial medical assessments indicated none of the wounds were life-threatening . PRP VBD JJ JJ NNS VBD NN IN DT NNS VBD JJ . On Monday , four American soldiers were wounded when a suicide bomber rammed his explosives-laden car into a U.S. military vehicle near the southern city of Kandahar . IN NNP , CD JJ NNS VBD VBN WRB DT NN NN VBD PRP$ JJ NN IN DT NNP JJ NN IN DT JJ NN IN NNP . Taleban insurgents claimed responsibility for that attack . NNP NNS VBD NN IN DT NN . Meanwhile , the military said coalition forces killed two insurgents and detained 12 others after a brief firefight near Kandahar Sunday . RB , DT NN VBD NN NNS VBD CD NNS CC VBN CD NNS IN DT JJ NN IN NNP NNP . In recent weeks , the guerrillas have stepped up their attacks in southern and eastern Afghanistan , as the country prepares for parliamentary elections expected in September . IN JJ NNS , DT NNS VBP VBN RP PRP$ NNS IN JJ CC JJ NNP , IN DT NN VBZ IN JJ NNS VBN IN NNP . A group of Iraqi lawmakers loyal to Shi'ite cleric Moqtada al-Sadr has staged a protest against a proposal allowing British troops to remain in the country . DT NN IN JJ NNS JJ IN NNP NN NNP NNP VBZ VBN DT NN IN DT NN VBG JJ NNS TO VB IN DT NN . The Sadrist politicians walked out of a session of parliament Saturday , suspending consideration of the proposal . DT NNP NNS VBD IN IN DT NN IN NN NNP , VBG NN IN DT NN . The deal would allow up to 100 British troops to stay in Iraq beyond a previously approved withdrawal date . DT NN MD VB RP TO CD JJ NNS TO VB IN NNP IN DT RB VBN NN NN . They would be responsible for helping the Iraqi navy protect oil installations off the southern coast . PRP MD VB JJ IN VBG DT JJ NN VBP NN NNS IN DT JJ NN . Moqtada al-Sadr has been a vocal and influential critic of the foreign military presence in Iraq , led by the United States . NNP NNP VBZ VBN DT JJ CC JJ NN IN DT JJ JJ NN IN NNP , VBN IN DT NNP NNPS . U.S. troops withdrew from Iraqi cities at the end of June , transferring security responsibilities to Iraqi forces . NNP NNS VBD IN JJ NNS IN DT NN IN NNP , VBG NN NNS TO JJ NNS . Since then , there have been a several deadly bombings across the country . IN RB , EX VBP VBN DT JJ JJ NNS IN DT NN . A car bomb Saturday in a Shi'ite district near Mosul killed four people and wounded at least 35 others . DT NN NN NNP IN DT NNP NN IN NNP VBD CD NNS CC VBD IN JJS CD NNS . Chinese National Basketball Association All-Star center Yao Ming will be on the sidelines for several games because of a sore right big toe . JJ NNP NNP NNP NNP NN NNP NNP MD VB IN DT NNS IN JJ NNS IN IN DT JJ JJ JJ NN . The Houston Rockets star missed his first game of the season and the third of his NBA career on Sunday . DT NNP NNPS NN VBD PRP$ JJ NN IN DT NN CC DT NN IN PRP$ NNP NN IN NNP . Team officials say the injury will keep Yao off the court indefinitely . NNP NNS VBP DT NN MD VB NNP IN DT NN RB . The 25-year-old center has played in 266 regular-season games since joining the Rockets in 2002 . DT JJ NN VBZ VBN IN CD JJ NNS IN VBG DT NNS IN CD . He has had a problem with his toe for some time , forcing him to miss two pre-season games . PRP VBZ VBN DT NN IN PRP$ NN IN DT NN , VBG PRP TO VB CD JJ NNS . Yao is the leading vote-getter after the first set of returns for this season 's All-Star game . NNP VBZ DT VBG NN IN DT JJ NN IN NNS IN DT NN POS JJ NN . He is averaging 19.9 points per game , nine rebounds and 1.36 blocked shots . PRP VBZ VBG CD NNS IN NN , CD NNS CC CD VBD NNS . Italian police have arrested 40 people linked to Islamic groups in nationwide raids as part of a security crackdown . JJ NNS VBP VBN CD NNS VBN TO JJ NNS IN JJ NNS IN NN IN DT NN NN . Authorities say 28 of the detainees were charged with violating rules on residence permits and 12 with other minor offenses . NNS VBP CD IN DT NNS VBD VBN IN VBG NNS IN NN NNS CC CD IN JJ JJ NNS . But they said none face terrorism charges . CC PRP VBD NN VBZ NN NNS . Officials say they also issued 114 expulsion orders as part of the same operation . NNS VBP PRP RB VBD CD NN NNS IN NN IN DT JJ NN . The raids focused on Islamic gathering places , including telephone call centers , Internet cafes and offices for sending cash abroad . DT NNS VBD IN JJ NN NNS , VBG NN NN NNS , NNP NNS CC NNS IN VBG NN RB . Officers also raided 15 apartments , mostly those of Pakistanis , in cooperation with a Belgian police investigation into suspected financing of terrorist groups . NNS RB VBD CD NNS , RB DT IN NNS , IN NN IN DT JJ NN NN IN JJ NN IN JJ NNS . The raids , Thursday and Friday , followed Thursday 's arrest in Britain of 24 people suspected in an alleged plot to blow up U.S.-bound airliners over the Atlantic Ocean . DT NNS , NNP CC NNP , VBD NNP POS NN IN NNP IN CD NNS VBN IN DT JJ NN TO VB RP JJ NNS IN DT NNP NNP . Tens of thousands of anti-government demonstrators have marched on the main government offices in Thailand 's capital , Bangkok . NNS IN NNS IN JJ NNS VBP VBD IN DT JJ NN NNS IN NNP POS NN , NNP . Some 30,000 protesters marched through the city for two hours , urging the government to dissolve parliament and punish those responsible for last year 's crippling protests . DT CD NNS VBD IN DT NN IN CD NNS , VBG DT NN TO VB NN CC VB DT JJ IN JJ NN POS JJ NNS . The earlier demonstrations ousted current Prime Minister Abhisit Vejjajiva 's pro-Thaksin predecessor Somchai Wongsawat . DT JJR NNS VBN JJ NNP NNP NNP NNP POS JJ NN NNP NNP . Before dispersing , the demonstrators promised to make their protest permanent , if their demands are not met within 15 days . IN VBG , DT NNS VBD TO VB PRP$ NN JJ , IN PRP$ NNS VBP RB VBN IN CD NNS . More than 5,000 police were deployed to secure the mass protest , which ran from Saturday afternoon into early Sunday . JJR IN CD NNS VBD VBN TO VB DT NN NN , WDT VBD IN NNP NN IN JJ NNP . Last year , yellow-shirted protesters occupied Government House for about three months , and shut down major airports before a coup ousted the government . JJ NN , JJ NNS VBD NNP NNP IN IN CD NNS , CC VBD RP JJ NNS IN DT NN VBD DT NN . Thailand has been wracked by political unrest for years . NNP VBZ VBN VBN IN JJ NN IN NNS . The country is sharply divided between groups who favor and oppose Mr. Thaksin , who was ousted in a coup in 2006 . DT NN VBZ RB VBN IN NNS WP VBP CC VBP NNP NNP , WP VBD VBN IN DT NN IN CD . In Liberia , supporters of former soccer star George Weah have vowed to continue their protests of the November 8 presidential run-off election , which they say was fraudulent . IN NNP , NNS IN JJ NN NN NNP NNP VBP VBN TO VB PRP$ NNS IN DT NNP CD JJ NN NN , WDT PRP VBP VBD JJ . The elections commission is expected to announce the final results Tuesday . DT NNS NN VBZ VBN TO VB DT JJ NNS NNP . Frank Sainworla , radio director of the VOA affiliate , Radio Veritas in the Liberian capital , Monrovia , talked with English to Africa reporter James Butty . NNP NNP , NN NN IN DT NNP NN , NNP NNP IN DT JJ NN , NNP , VBD IN NNP TO NNP NN NNP NNP . The Hubble Space Telescope is back to work , after a month-long shutdown to fix problems it was having in sending information to Earth . DT NNP NNP NNP VBZ RB TO NN , IN DT JJ NN TO VB NNS PRP VBD VBG IN VBG NN TO NNP . The U.S. space agency , NASA , said Thursday the telescope 's camera is now working as it was before the problems . DT NNP NN NN , NNP , VBD NNP DT NN POS NN VBZ RB VBG IN PRP VBD IN DT NNS . The agency said it took a photo of a pair of galaxies and that it ' scored a perfect 10 ' . DT NN VBD PRP VBD DT NN IN DT NN IN NNS CC IN PRP `` VBD DT JJ CD `` . The photo shows the ring-shaped galaxies just after they collided . DT NN VBZ DT JJ NNS RB IN PRP VBD . The Hubble stopped beaming information to Earth in late September when a data unit failed . DT NNP VBD VBG NN TO NNP IN JJ NNP WRB DT NN NN VBD . The computer glitch forced NASA to postpone a shuttle mission to repair the Hubble . DT NN NN VBD NNP TO VB DT NN NN TO VB DT NNP . That mission has been rescheduled for next year . DT NN VBZ VBN VBN IN JJ NN . The Hubble has been orbiting about 600 kilometers above the Earth since 1990 . DT NNP VBZ VBN VBG IN CD NNS IN DT NN IN CD . The telescope sends images from space back to Earth and has revolutionized understanding of the universe . DT NN VBZ NNS IN NN RB TO NNP CC VBZ VBN NN IN DT NN . Armed militants briefly occupied the West Bank headquarters of the Palestinian Cabinet Thursday , in a protest against the territory 's new Hamas-led government . VBN NNS RB VBD DT NNP NNP NN IN DT JJ NNP NNP , IN DT NN IN DT NN POS JJ JJ NN . Palestinian authorities say about 20 militants from the Al Aqsa Martyrs Brigades forced their way into the cabinet offices Thursday in Ramallah , the administrative headquarters of the Palestinian Authority . JJ NNS VBP IN CD NNS IN DT NNP NNP NNP NNP VBD PRP$ NN IN DT NN NNS NNP IN NNP , DT JJ NN IN DT JJ NNP . The gunmen stayed for about an hour , before they were persuaded to leave by a police contingent that arrived at the scene . DT NNS VBD IN IN DT NN , IN PRP VBD VBN TO VB IN DT NN JJ IN VBD IN DT NN . Al Aqsa Martyrs ' Brigades is a militant faction of Fatah , and the security forces at the scene were also under the control of Fatah leader and Palestinian Authority President Mahmoud Abbas . NNP NNP NNP POS NNS VBZ DT JJ NN IN NNP , CC DT NN NNS IN DT NN VBD RB IN DT NN IN NNP NN CC JJ NNP NNP NNP NNP . A suicide bomber tried to kill the leader of Iraq 's most powerful Shi'ite political group Monday while the main Sunni party withdrew from the country 's January 30th election . DT NN NN VBD TO VB DT NN IN NNP POS RBS JJ NNP JJ NN NNP IN DT JJ NNP NN VBD IN DT NN POS NNP CD NN . Abdul Aziz al-Hakim , whose United Iraqi Alliance is expected to dominate the vote , survived the Baghdad attack . NNP NNP NNP , WP$ NNP JJ NNP VBZ VBN TO VB DT NN , VBD DT NNP NN . But at least 13 people were killed . CC IN JJS CD NNS VBD VBN . Earlier in the day , the Sunni Iraqi Islamic Party pulled out of the vote because of concerns over violence . RBR IN DT NN , DT NNP JJ NNP NNP VBD IN IN DT NN IN IN NNS IN NN . The party says more time is needed to ensure that all Shi'ites and Sunnis participate in the election . DT NN VBZ JJR NN VBZ VBN TO VB IN DT NNS CC NNS VBP IN DT NN . In other election news , a new audiotape purportedly from Osama bin Laden calls for Iraqis to boycott the vote , saying those who take part will be infidels . IN JJ NN NN , DT JJ NN RB IN NNP NNP NNP VBZ IN NNS TO VB DT NN , VBG DT WP VBP NN MD VB NNS . The speaker also endorses Abu Musab al-Zarqawi as his deputy in Iraq . DT NN RB VBZ NNP NNP NNP IN PRP$ NN IN NNP . The tape has not been authenticated . DT NN VBZ RB VBN VBN . New Mexico governor Bill Richardson , a former presidential candidate , plans to endorse Democratic Senator Barack Obama for president . NNP NNP NN NNP NNP , DT JJ JJ NN , VBZ TO VB JJ NNP NNP NNP IN NN . Officials with Obama 's campaign tell news agencies that the two men will appear together at a rally Friday in Portland , Oregon . NNS IN NNP POS NN VBP NN NNS IN DT CD NNS MD VB RB IN DT NN NNP IN NNP , NNP . In a statement obtained by the Associated Press , Richardson calls Obama a ' one of a kind ' leader who can bring the country together . IN DT NN VBN IN DT NNP NNP , NNP VBZ NNP DT `` CD IN DT NN `` NN WP MD VB DT NN RB . Richardson , the nation 's only Hispanic governor , was energy secretary under former President Bill Clinton and was also an ambassador to the United Nations . NNP , DT NN POS RB JJ NN , VBD NN NN IN JJ NNP NNP NNP CC VBD RB DT NN TO DT NNP NNPS . Recent opinion polls indicate that Hispanics have tended to support Obama 's Democratic rival , Senator Hillary Clinton . JJ NN NNS VBP IN NNS VBP VBN TO VB NNP POS JJ NN , NNP NNP NNP . Obama currently leads among delegates selected at Democratic primaries and caucuses . NNP RB VBZ IN NNS VBN IN JJ NNS CC NNS . The next major primary is to take place in Pennsylvania next month - April 22 . DT JJ JJ NN VBZ TO VB NN IN NNP JJ NN IN NNP CD . Some 6,00,000 revelers are expected to pack Rio de Janeiro over the next few days , as the Brazilian city celebrates the annual Carnival before Lent - the Christian season of repentance . DT CD NNS VBP VBN TO VB NNP IN NNP IN DT JJ JJ NNS , IN DT JJ NN VBZ DT JJ NN IN NNP IN DT JJ NN IN NN . Rio celebrates Carnival with parades featuring the sensual Brazilian dance known as the samba . NNP VBZ NNP IN NNS VBG DT JJ JJ NN VBN IN DT NN . The celebration culminates Sunday and Monday with a giant samba competition in the city 's 60,000-seat Sambadrome stadium . DT NN VBZ NNP CC NNP IN DT JJ NN NN IN DT NN POS JJ JJ NN . Outside the Sambadrome , Brazilians and tourists extend the party into the streets , wearing outlandish costumes and masks and eating and drinking to excess . IN DT NNP , NNS CC NNS VBP DT NN IN DT NNS , VBG JJ NNS CC NNS CC NN CC NN TO NN . Similar celebrations take place in New Orleans in the United States , and in many parts of Europe , as people of the Christian faith squeeze in a last few days of indulgence before beginning six weeks of fasting and prayer . JJ NNS VBP NN IN NNP NNP IN DT NNP NNPS , CC IN JJ NNS IN NNP , IN NNS IN DT JJ NN NN IN DT JJ JJ NNS IN NN IN VBG CD NNS IN NN CC NN . A Palestinian court has sentenced a man to death by hanging for selling West Bank land to Israeli citizens . DT JJ NN VBZ VBN DT NN TO NN IN VBG IN VBG NNP NNP NN TO JJ NNS . The sentence was handed down Tuesday by a court in the West Bank town of Hebron , but it may be unlikely to be carried out . DT NN VBD VBN RP NNP IN DT NN IN DT NNP NNP NN IN NNP , CC PRP MD VB JJ TO VB VBN RP . Prosecutors say the defendant sold to Israelis land that did not belong to him in the village of Beit Omar near Hebron . NNS VBP DT NN VBD TO NNS NN WDT VBD RB VB TO PRP IN DT NN IN NNP NNP IN NNP . The Palestinian Authority considers the sale of Palestinian land to Israelis to be treason . DT JJ NNP VBZ DT NN IN JJ NN TO NNS TO VB NN . Palestinian President Mahmoud Abbas must approve the sentence for it to be carried out . JJ NNP NNP NNP MD VB DT NN IN PRP TO VB VBN RP . He has withheld approval in many other death penalty cases . PRP VBZ VBN NN IN JJ JJ NN NN NNS . Several other Palestinians charged with collaborating with Israel are currently on death row . JJ JJ NNS VBN IN VBG IN NNP VBP RB IN NN NN . The Arabic television station al-Jazeera has broadcast a videotape of al-Qaida 's second in command , Ayman al-Zawahri , who vowed to keep fighting the United States unless Washington changes its policies towards the Muslim world . DT JJ NN NN NNP VBZ VBN DT NN IN NNP POS JJ IN NN , NNP NNP , WP VBD TO VB VBG DT NNP NNPS IN NNP VBZ PRP$ NNS IN DT NNP NN . In excerpts of the video aired Monday , Osama bin Laden 's deputy said al-Qaida was not concerned with the results of the U.S. presidential election . IN NNS IN DT NN VBN NNP , NNP NNP NNP POS NN VBD NNP VBD RB VBN IN DT NNS IN DT NNP JJ NN . It was unclear if the video was filmed before or after the November 2 vote . PRP VBD JJ IN DT NN VBD VBN IN CC IN DT NNP CD NN . Just days before the election , al-Jazeera aired a video from Osama bin Laden , who also said the United States must stop threatening Muslims if it wants to avoid another September 11-style attack . RB NNS IN DT NN , NNP VBD DT NN IN NNP NNP NNP , WP RB VBD DT NNP NNPS MD VB VBG NNPS IN PRP VBZ TO VB DT NNP JJ NN . The head of the U.S. central bank signaled Tuesday that interest rates are not likely to be cut anytime soon . DT NN IN DT NNP JJ NN VBD NNP IN NN NNS VBP RB JJ TO VB VBN RB RB . Federal Reserve Chairman Ben Bernanke said interest rate policies and efforts to stimulate the faltering U.S. economy are ' well positioned ' to promote growth and stable prices . NNP NNP NNP NNP NNP VBD NN NN NNS CC NNS TO VB DT VBG NNP NN VBP `` RB VBN `` TO VB NN CC JJ NNS . The Fed has been cutting interest rates steadily to boost economic growth . DT NNP VBZ VBN VBG NN NNS RB TO VB JJ NN . But officials must balance the need to boost the economy with the concern that cutting interest rates too low could spark inflation . CC NNS MD VB DT NN TO VB DT NN IN DT NN IN VBG NN NNS RB JJ MD VB NN . Inflation concerns have been rising along with the price of oil . NN NNS VBP VBN VBG IN IN DT NN IN NN . Fuel price hikes are also forcing the biggest U.S. automaker to slash truck production and make more small , fuel-efficient cars . NN NN NNS VBP RB VBG DT JJS NNP NN TO VB NN NN CC VB JJR JJ , JJ NNS . General Motors Tuesday announced that it will close four North American plants that make trucks . NNP NNPS NNP VBD IN PRP MD VB CD JJ JJ NNS WDT VBP NNS . Russian authorities have detained a man suspected of being involved in the deadly school siege in the southern town of Beslan . JJ NNS VBP VBN DT NN VBN IN VBG VBN IN DT JJ NN NN IN DT JJ NN IN NNP . Officials in Moscow Wednesday said the man was arrested by security forces in Ingushetia , near the North Ossetia region where the attack took place . NNS IN NNP NNP VBD DT NN VBD VBN IN NN NNS IN NNP , IN DT NNP NNP NN WRB DT NN VBD NN . They say there is also information the man took part in an armed attack targeting police facilities in Ingushetia last June . PRP VBP EX VBZ RB NN DT NN VBD NN IN DT JJ NN VBG NN NNS IN NNP JJ NNP . Militants attacked one of Beslan 's schools last September , seizing more than 1,000 children , parents and teachers . NNS VBD CD IN NNP POS NNS JJ NNP , VBG JJR IN CD NNS , NNS CC NNS . The ordeal ended in a chaotic outburst of gunfire and explosions that killed more than 330 people , about half of them children . DT NN VBD IN DT JJ NN IN NN CC NNS WDT VBD JJR IN CD NNS , IN NN IN PRP NNS . Red Cross officials in Kabul say suspects detained by U.S. troops in Afghanistan have been allowed to speak with family members through a new video-teleconference system . NNP NNP NNS IN NNP VBP NNS VBN IN NNP NNS IN NNP VBP VBN VBN TO VB IN NN NNS IN DT JJ NN NN . Officials said Monday , that about 60 families have so far taken advantage of the opportunity to speak with prisoners held at the detention center on the U.S. Bagram Air Force Base . NNS VBD NNP , IN IN CD NNS VBP RB RB VBN NN IN DT NN TO VB IN NNS VBN IN DT NN NN IN DT NNP NNP NNP NNP NNP . Many families have not spoken to their detained relatives for several years . JJ NNS VBP RB VBN TO PRP$ VBN NNS IN JJ NNS . Around 600 detainees are being held at the facility . IN CD NNS VBP VBG VBN IN DT NN . The International Committee of the Red Cross helped organize the initiative , which is the first of its kind . DT NNP NNP IN DT NNP NNP VBD VB DT NN , WDT VBZ DT NN IN PRP$ NN . Since the 2001 U.S.-led invasion of Afghanistan , hundreds of Taliban and al-Qaida suspects have been detained , along with others accused of terrorist activities . IN DT CD JJ NN IN NNP , NNS IN NNP CC NNP NNS VBP VBN VBN , IN IN NNS VBN IN JJ NNS . The U.S. Senate is to begin debate Wednesday on one of President Bush 's judicial nominees - setting the stage for a possible showdown on the delaying tactic known as a filibuster . DT NNP NNP VBZ TO VB NN NNP IN CD IN NNP NNP POS JJ NNS IN VBG DT NN IN DT JJ NN IN DT NN NN VBN IN DT NN . The leader of the Republican majority in the Senate , Bill Frist , plans to bring to the Senate floor Mr. Bush 's nomination of Priscilla Owen . DT NN IN DT JJ NN IN DT NNP , NNP NNP , VBZ TO VB TO DT NNP NN NNP NNP POS NN IN NNP NNP . A Texas Supreme Court justice , Ms. Owen was one of seven nominees blocked by Democrats during the president 's first term . DT NNP NNP NNP NN , NNP NNP VBD CD IN CD NNS VBN IN NNPS IN DT NN POS JJ NN . If Democrats are successful again , Republicans say they will seek early next week to change Senate rules to limit filibusters , a parliamentary delaying procedure aimed at preventing a vote . IN NNPS VBP JJ RB , NNS VBP PRP MD VB JJ JJ NN TO VB NNP NNS TO VB NNS , DT JJ NN NN VBN IN VBG DT NN . Opposition Democrats say changing Senate rules would drastically curtail the rights of the minority . NNP NNPS VBP VBG NNP NNS MD RB VB DT NNS IN DT NN . Talks seeking a compromise have not been successful . NNS VBG DT NN VBP RB VBN JJ . The largest Sunni bloc in Iraq 's parliament has suspended its participation in the government and is threatening to withdraw completely . DT JJS NNP NN IN NNP POS NN VBZ VBN PRP$ NN IN DT NN CC VBZ VBG TO VB RB . The Accordance Front Wednesday , gave Prime Minister Nouri al-Maliki one week to meet its demands to deal with Shi'ite militias and reform the conduct of raids and arrests . DT NNP NNP NNP , VBD NNP NNP NNP NNP CD NN TO VB PRP$ NNS TO VB IN NNP NNS CC VB DT NN IN NNS CC NNS . The bloc has been boycotting cabinet meetings since June to protest legal proceedings against Culture Minister Asad Kamal al-Hashimi . DT NN VBZ VBN VBG NN NNS IN NNP TO VB JJ NNS IN NNP NNP NNP NNP NNP . Al-Hashimi has been accused of arranging to have another politician killed . NNP VBZ VBN VBN IN VBG TO VB DT NN VBN . Last week , the Accordance Front and a group of Shi'ite lawmakers ended a boycott of Iraq 's parliament . JJ NN , DT NNP NNP CC DT NN IN NNP NNS VBD DT NN IN NNP POS NN . Also Tuesday , Baghdad police say at least six people were killed when U.S. and Iraqi forces clashed with Shi'ite militias in the Sadr City neighborhood . RB NNP , NNP NNS VBP IN JJS CD NNS VBD VBN WRB NNP CC JJ NNS VBD IN NNP NNS IN DT NNP NNP NN . And the U.S. military says it has detained the administrative head of al-Qaida in Iraq 's Mosul operations during early morning raids . CC DT NNP NN VBZ PRP VBZ VBN DT JJ NN IN NNP IN NNP POS NNP NNS IN JJ NN NNS . The world 's largest maker of jetliners , Airbus , says it sold more planes than rival Boeing last year . DT NN POS JJS NN IN NNS , NNP , VBZ PRP VBD JJR NNS IN JJ NNP JJ NN . Tuesday 's announcement surprised some analysts who thought Boeing might regain the sales lead . NNP POS NN VBD DT NNS WP VBD NNP MD VB DT NNS NN . Airbus says it has firm orders for a record 1055 planes , while Boeing has orders for 1002 , which is a record for the company . NNP VBZ PRP VBZ JJ NNS IN DT NN CD NNS , IN NNP VBZ NNS IN CD , WDT VBZ DT NN IN DT NN . Boeing 's orders include more wide-body planes , so at list prices , its orders are worth somewhat more than Airbus . NNP POS NNS VBP JJR JJ NNS , RB IN NN NNS , PRP$ NNS VBP JJ RB JJR IN NNP . Orders for jetliners soared in 2005 , as Asian airlines expanded their fleets to meet growing demand , and other airlines sought new , more fuel-efficient planes to cope with high oil costs . NNS IN NNS VBD IN CD , IN JJ NNS VBD PRP$ NNS TO VB VBG NN , CC JJ NNS VBD JJ , RBR JJ NNS TO VB IN JJ NN NNS . U.S. Defense Secretary Robert Gates is in Pakistan to discuss counter-terrorism efforts and the Taleban insurgency in neighboring Afghanistan . NNP NNP NNP NNP NNP VBZ IN NNP TO VB NN NNS CC DT NNP NN IN VBG NNP . Gates arrived in the capital , Islamabad , Monday to meet with Pakistani President Pervez Musharraf . NNP VBD IN DT NN , NNP , NNP TO VB IN JJ NNP NNP NNP . Washington has been putting pressure on General Musharraf to stop Taleban fighters from crossing into Afghanistan . NNP VBZ VBN VBG NN IN NNP NNP TO VB NNP NNS IN VBG IN NNP . Gates just finished four days of meetings in Spain and Germany focused largely on the war in Afghanistan . NNP RB VBD CD NNS IN NNS IN NNP CC NNP VBD RB IN DT NN IN NNP . Pakistan 's foreign minister , Khursheed Kasuri , recently said the government has decided against mining its border with Afghanistan , but still intends to build a fence along parts of it . NNP POS JJ NN , NNP NNP , RB VBD DT NN VBZ VBN IN VBG PRP$ NN IN NNP , CC RB VBZ TO VB DT NN IN NNS IN PRP . On Sunday , the governor of southern Afghanistan 's Helmand province said 700 foreign fighters , including Pakistanis , are in the region to help Taleban insurgents . IN NNP , DT NN IN JJ NNP POS NNP NN VBD CD JJ NNS , VBG NNS , VBP IN DT NN TO VB NNP NNS . A U.N. court begins hearing testimony Monday in the case of a well-known Rwandan musician accused of using his music to spread ethnic hatred during the country 's 1994 genocide . DT NNP NN VBZ VBG NN NNP IN DT NN IN DT JJ JJ NN VBN IN VBG PRP$ NN TO VB JJ NN IN DT NN POS CD NN . Simon Bikindi , a musician and former official in Rwanda 's Ministry of Youth and Sports , faces six counts of genocide from the International Criminal Tribunal for Rwanda . NNP NNP , DT NN CC JJ NN IN NNP POS NNP IN NNP CC NNP , VBZ CD NNS IN NN IN DT NNP NNP NNP IN NNP . He has pleaded not guilty to all of the charges from the Tanzania-based court . PRP VBZ VBN RB JJ TO DT IN DT NNS IN DT JJ NN . Prosecutors say Bikindi composed and recorded songs that encouraged Hutus to kill Tutsis . NNS VBP NNP VBN CC VBN NNS WDT VBD NNP TO VB NNP . They say he consulted with former Rwandan President Juvenal Habyarimana over song lyrics before passing them on to a privately owned station that broadcast anti-Tutsi propaganda . PRP VBP PRP VBD IN JJ JJ NNP NNP NNP IN NN NNS IN VBG PRP IN TO DT RB VBN NN WDT VBD JJ NN . Bikindi was arrested in the Netherlands in 2001 . NNP VBD VBN IN DT NNP IN CD . A police chief in western Iraq says the country began stationing thousands of extra security officers along Iraq 's border with Syria this week in an effort to keep out insurgents . DT NN NN IN JJ NNP VBZ DT NN VBD VBG NNS IN JJ NN NNS IN NNP POS NN IN NNP DT NN IN DT NN TO VB RP NNS . The chief , Major-General Tariq Youssef , said Friday that Iraqi Prime Minister Nouri al-Maliki ordered the reinforcements , in the wake of August truck bombings in Baghdad that killed more than 100 people . DT NN , NNP NNP NNP , VBD NNP IN JJ NNP NNP NNP NNP VBD DT NNS , IN DT NN IN NNP NN NNS IN NNP WDT VBD JJR IN CD NNS . The Iraqi government has linked the blasts to Baathist sympathizers located in Syria . DT JJ NN VBZ VBN DT NNS IN NNP NNS VBN IN NNP . Syria has demanded Iraqi authorities provide evidence to back up their allegations . NNP VBZ VBN JJ NNS VBP NN TO VB RP PRP$ NNS . Iraq has also demanded that Syria hand over two people that Baghdad suspects played a role in the attacks . NNP VBZ RB VBN IN NNP VB RB CD NNS IN NNP VBZ VBD DT NN IN DT NNS . Syria has refused , demanding proof . NNP VBZ VBN , VBG NN . The bombings have soured relations between Iraq and Syria . DT NNS VBP VBN NNS IN NNP CC NNP . Turkey has been holding talks aimed at defusing tensions between the two countries . NNP VBZ VBN VBG NNS VBN IN VBG NNS IN DT CD NNS . Venezuelan officials say they are investigating allegations that military officers passed state secrets to the United States . JJ NNS VBP PRP VBP VBG NNS IN JJ NNS VBD NN NNS TO DT NNP NNPS . The nation 's Military Attorney General 's Office told El~Universal newspaper Thursday that it has launched a probe of the alleged spies , although it would not say how many suspects there were . DT NN POS JJ NNP NNP POS NNP VBD NNP NN NNP IN PRP VBZ VBN DT NN IN DT JJ NNS , IN PRP MD RB VB WRB JJ NNS EX VBD . Venezuela 's Vice President Jose Vicente Rangel said Wednesday that several low-level military officers were caught passing information to the U.S. military . NNP POS NNP NNP NNP NNP NNP VBD NNP IN JJ JJ JJ NNS VBD VBN VBG NN TO DT NNP NN . He said some of the suspects have been detained and others have left the country . PRP VBD DT IN DT NNS VBP VBN VBN CC NNS VBP VBN DT NN . The attorney for one of the suspects told reporters a U.S. military attache , identified as John Correa , has been mentioned as a possible link between the Venezuelan officers and the United States . DT NN IN CD IN DT NNS VBD NNS DT NNP JJ NN , VBN IN NNP NNP , VBZ VBN VBN IN DT JJ NN IN DT JJ NNS CC DT NNP NNPS . The U.S. embassy in Caracas had no comment . DT NNP NN IN NNP VBD DT NN . An Israeli newspaper reports the filmmaker whose documentary sparked an outrage in Egypt has admitted that he mistakenly identified 250 Palestinian fighters as Egyptian prisoners , who he claimed were killed by Israeli troops during the 1967 Six-Day War . DT JJ NN VBZ DT NN WP$ NN VBD DT NN IN NNP VBZ VBN IN PRP RB VBD CD JJ NNS IN JJ NNS , WP PRP VBD VBD VBN IN JJ NNS IN DT CD NNP NNP . The Jerusalem Post says the filmmaker Ran Edelist also admitted using incorrect archival footage to illustrate the incident . DT NNP NNP VBZ DT NN NNP NNP RB VBD VBG JJ JJ NN TO VB DT NN . Since the documentary was aired last week , Israel repeatedly denied that its soldiers killed Egyptian prisoners during the war . IN DT NN VBD VBN JJ NN , NNP RB VBD IN PRP$ NNS VBD JJ NNS IN DT NN . Israel also agreed to hand over a copy of the film and its transcript to Egypt . NNP RB VBD TO VB IN DT NN IN DT NN CC PRP$ NN TO NNP . However , Egypt asked for an investigation . RB , NNP VBD IN DT NN . And , an Egyptian parliamentary committee has threatened to review economic relations and agreements with Israel if the incident is not investigated . CC , DT JJ JJ NN VBZ VBN TO VB JJ NNS CC NNS IN NNP IN DT NN VBZ RB VBN . Because of rising tensions over the film , Israeli Cabinet Minister Benjamin Ben-Eliezer earlier this week postponed a scheduled visit to Egypt . IN IN VBG NNS IN DT NN , JJ NNP NNP NNP NNP RBR DT NN VBD DT JJ NN TO NNP . Ben-Eliezer commanded the military unit at the center of the controversy . NNP VBD DT JJ NN IN DT NN IN DT NN . U.S. Olympic Committee chairman Peter Ueberroth is calling on the U.S. government to reverse a decision to deny Cuba 's national baseball team permission to play in the United States . NNP NNP NNP NN NNP NNP VBZ VBG IN DT NNP NN TO VB DT NN TO VB NNP POS JJ NN NN NN TO VB IN DT NNP NNPS . Last week , the Treasury Department denied a permit for Cuba to play in the inaugural 16-team World Baseball Classic in March . JJ NN , DT NNP NNP VBD DT NN IN NNP TO VB IN DT JJ JJ NNP NNP NNP IN NNP . Ueberroth says the decision will damage American efforts to host the Olympics in the future . NNP VBZ DT NN MD VB JJ NNS TO VB DT NNS IN DT NN . Olympic host countries must guarantee all nations can participate . NNP NN NNS MD VB DT NNS MD VB . Cuba had been set to play against Puerto Rico , Panama and the Netherlands in the U.S. territory of Puerto Rico in the first round . NNP VBD VBN VBN TO VB IN NNP NNP , NNP CC DT NNP IN DT NNP NN IN NNP NNP IN DT JJ NN . A permit from the Treasury Department 's Office of Foreign Assets Control is necessary because of U.S. laws governing certain commercial transactions with the communist island nation . DT NN IN DT NNP NNP POS NNP IN NNP NNPS NNP VBZ JJ IN IN NNP NNS VBG JJ JJ NNS IN DT JJ NN NN . Iraqi officials say a senior Interior Ministry official has been shot and killed in Baghdad . JJ NNS VBP DT JJ NNP NNP NN VBZ VBN VBN CC VBN IN NNP . The assassination occurred Tuesday . DT NN VBD NNP . Reuters news agency says the group led by Jordanian terrorist leader Abu Musab al-Zarqawi claimed responsibility for the killing . NNP NN NN VBZ DT NN VBN IN JJ JJ NN NNP NNP NNP VBD NN IN DT NN . Guerrillas loyal to Zaraqawi 's group also took responsibility for some of the attacks Monday in Iraq that left 25 people dead . NNP JJ TO NNP POS NN RB VBD NN IN DT IN DT NNS NNP IN NNP WDT VBD CD NNS JJ . A suicide attack killed 15 people north of Baghdad while several attacks on Iraqi police and soldiers in Baquba killed 10 people . DT NN NN VBD CD NNS RB IN NNP IN JJ NNS IN JJ NNS CC NNS IN NNP VBD CD NNS . India 's Prime Minister Manmohan Singh has invited Kashmir 's pro-independence leader , Yasin Malik , for talks on ending the decades-old dispute over the Himalayan territory . NNP POS NNP NNP NNP NNP VBZ VBN NNP POS JJ NN , NNP NNP , IN NNS IN VBG DT JJ NN IN DT NNP NN . An adviser to Mr. Singh , Sanjaya Baru , told reporters the talks are scheduled to be held in New Delhi on February 17 . DT NN TO NNP NNP , NNP NNP , VBD NNS DT NNS VBP VBN TO VB VBN IN NNP NNP IN NNP CD . Malik is the chief of the Jammu-Kashmir Liberation Front . NNP VBZ DT NN IN DT NNP NNP NNP . He told a Pakistani TV channel , Geo TV , that he has convened a meeting of the working committee of his group on February 15th to decide on how to respond to the invitation . PRP VBD DT JJ NN NN , NNP NN , IN PRP VBZ VBN DT NN IN DT VBG NN IN PRP$ NN IN NNP CD TO VB IN WRB TO VB TO DT NN . The front is one of the several Kashmiri separatist groups that are demanding independence for Kashmir . DT NN VBZ CD IN DT JJ JJ NN NNS WDT VBP VBG NN IN NNP . Other groups are demanding a merger with Pakistan . JJ NNS VBP VBG DT NN IN NNP . Warlords in Somalia 's capital , Mogadishu , have begun surrendering their weapons , in an effort to restore stability in the city and ease the return of the country 's transitional government , currently in exile in Kenya . NNS IN NNP POS NN , NNP , VBP VBN VBG PRP$ NNS , IN DT NN TO VB NN IN DT NN CC VB DT NN IN DT NN POS JJ NN , RB IN NN IN NNP . Hundreds of warlords who spent more than a decade fighting each other are disarming in camps outside Mogadishu . NNS IN NNS WP VBD JJR IN DT NN VBG DT NN VBP VBG IN NNS IN NNP . The African Union and the United States have said such a move is essential to restoring stability and eventually paving the way for the return of Somalia 's first central government in 14 years . DT NNP NNP CC DT NNP NNPS VBP VBN PDT DT NN VBZ JJ TO VBG NN CC RB VBG DT NN IN DT NN IN NNP POS JJ JJ NN IN CD NNS . Last week , Somali lawmakers were locked in a dispute over moving to Mogadishu . JJ NN , JJ NNS VBD VBN IN DT NN IN VBG TO NNP . Some lawmakers feel the capital city is still too unsafe , and they want to move to other , less violent parts of Somalia or stay in Nairobi . DT NNS VBP DT NN NN VBZ RB RB JJ , CC PRP VBP TO VB TO JJ , RBR JJ NNS IN NNP CC VB IN NNP . Italian labor unions have agreed not to strike during next month 's Winter Olympic Games in Turin , Italy . JJ NN NNS VBP VBN RB TO VB IN JJ NN POS NNP NNP NNPS IN NNP , NNP . The unions and the Italian government signed a deal Wednesday that averted work stoppages between January 31 and March 23 . DT NNS CC DT JJ NN VBD DT NN NNP WDT VBD NN NNS IN NNP CD CC NNP CD . The Turin Olympics run from February 10 to the 26 . DT NNP NNPS VBP IN NNP CD TO DT CD . Flight attendants with Alitalia airlines had announced they planned a 24-hour strike February 10 , the day of the opening ceremonies . NN NNS IN NNP NNS VBD VBN PRP VBD DT JJ NN NNP CD , DT NN IN DT NN NNS . Pilots had threatened a four-hour walkout February 9 . NNS VBD VBN DT JJ NN NNP CD . The truce will also ban protests in telecommunications and railways industries . DT NN MD RB VB NNS IN NNS CC NNS NNS . Local protests outside Turin that have no impact on the Olympics will be allowed . JJ NNS IN NNP WDT VBP DT NN IN DT NNS MD VB VBN . Last season , a small Milan television worker 's union strike led to the cancellation of the giant slalom at the World Alpine skiing championships in Bormio . JJ NN , DT JJ NNP NN NN POS NN NN VBD TO DT NN IN DT JJ NN IN DT NNP NNP NN NNS IN NNP . Orchid growers are trying to grab a bigger share of the global trade in flowers , which accounts for several billion dollars each year . NNP NNS VBP VBG TO VB DT JJR NN IN DT JJ NN IN NNS , WDT VBZ IN JJ CD NNS DT NN . Growers from Latin America and Asia are scrambling to market unique plants and develop brand new varieties to meet the growing demand . NNS IN NNP NNP CC NNP VBP VBG TO VB JJ NNS CC VB NN JJ NNS TO VB DT VBG NN . VOA 's Brian Wagner has this report from Miami . NNP POS NNP NNP VBZ DT NN IN NNP . Colombia 's main rebel group has insisted the government pull troops out of two mountain towns before it will take part in face-to-face meetings . NNP POS JJ NN NN VBZ VBN DT NN VB NNS IN IN CD NN NNS IN PRP MD VB NN IN JJ NNS . The Revolutionary Armed Forces of Colombia , or FARC , issued a statement to President Alvaro Uribe , calling on the government to pull troops out of two towns in the Valle del Cauca region . DT JJ JJ NNS IN NNP , CC NNP , VBD DT NN TO NNP NNP NNP , VBG IN DT NN TO VB NNS IN IN CD NNS IN DT NNP NNP NNP NN . Mr. Uribe has rejected the request . NNP NNP VBZ VBN DT NN . Last month , the Colombian government offered to to meet with the FARC at a time and a place of their choosing to discuss a possible prisoner swap . JJ NN , DT JJ NN VBD TO TO VB IN DT NNP IN DT NN CC DT NN IN PRP$ NN TO VB DT JJ NN NN . The leftist rebel group is said to be holding 59 hostages , including three Americans . DT JJ NN NN VBZ VBN TO VB VBG CD NNS , VBG CD NNS . FARC , along with a smaller rebel group and rightist paramilitaries , is locked in a long-running war with the government that kills thousands of people each year . NNP , IN IN DT JJR NN NN CC NN NNS , VBZ VBN IN DT JJ NN IN DT NN WDT VBZ NNS IN NNS DT NN . Exit polls in Ecuador indicate voters have overwhelmingly approved President Rafael Correa 's proposal to establish an assembly to rewrite the country 's constitution . NN NNS IN NNP VBP NNS VBP RB VBN NNP NNP NNP POS NN TO VB DT NN TO VB DT NN POS NN . The Cedatos-Gallup poll says 78 percent of voters supported the referendum that Mr. Correa says will help end government corruption and inefficiency . DT JJ NN VBZ CD NN IN NNS VBD DT NN IN NNP NNP VBZ MD VB VB NN NN CC NN . However , critics accuse the leftist president of trying to centralize power around himself by stripping authority from the country 's unpopular congress . RB , NNS VBP DT JJ NN IN VBG TO VB NN IN PRP IN VBG NN IN DT NN POS JJ NN . Mr. Correa 's plans to redefine the government are similar to what his ally , Venezuelan President Hugo Chavez , has done in his country . NNP NNP POS NNS TO VB DT NN VBP JJ TO WP PRP$ NN , JJ NNP NNP NNP , VBZ VBN IN PRP$ NN . Mr. Correa , who became president in January , had threatened to resign if the proposal was not approved . NNP NNP , WP VBD NN IN NNP , VBD VBN TO VB IN DT NN VBD RB VBN . Earlier this year , the nation 's electoral court fired 57 opposition lawmakers who attempted to block the referendum . RBR DT NN , DT NN POS JJ NN VBD CD NN NNS WP VBD TO VB DT NN . Japanese officials have unveiled plans to cope with a possible bird flu epidemic . JJ NNS VBP VBN NNS TO VB IN DT JJ NN NN NN . The action plan released by the Japanese health ministry Monday anticipates that a quarter of the population , some 32 million people , could become infected and that as many as 6,40,000 people could die . DT NN NN VBN IN DT JJ NN NN NNP VBZ IN DT NN IN DT NN , DT CD CD NNS , MD VB JJ CC IN RB JJ IN CD NNS MD VB . The Japanese plan would shut down schools , ban large gatherings and declare a state of emergency in the case of a severe flu epidemic . DT JJ NN MD VB RP NNS , VB JJ NNS CC VB DT NN IN NN IN DT NN IN DT JJ NN NN . The government will also increase stockpiles of the anti-viral drug Tamiflu . DT NN MD RB VB NNS IN DT JJ NN NNP . Japan has reported no human deaths from bird flu so far . NNP VBZ VBN DT JJ NNS IN NN NN RB RB . An Australian and a Palestinian have been kidnapped at gunpoint in Gaza City and those claiming responsibility say the abduction is in response to Thursday 's kidnapping of a Palestinian intelligence officer . DT NN CC DT NN VBP VBN VBN IN NN IN NNP NNP CC DT VBG NN VBP DT NN VBZ IN NN TO NNP POS NN IN DT JJ NN NN . Masked gunmen forced the two victims into a vehicle outside a beachfront hotel Friday . VBN NNS VBD DT CD NNS IN DT NN IN DT NN NN NNP . Relatives of the intelligence service officer , Jihad Abed , who was abducted the day before in Gaza , are claiming responsibility for holding the Australian and Palestinian . NNS IN DT NN NN NN , NNP NNP , WP VBD VBN DT NN IN IN NNP , VBP VBG NN IN VBG DT NN CC NN . The officer 's abduction is being blamed on the Jenin Martyrs Brigades militant group . DT NN POS NN VBZ VBG VBN IN DT NNP NNP NNP JJ NN . There has been no response from the group . EX VBZ VBN DT NN IN DT NN . The officer 's family says Friday 's kidnapping was because of the failure of Palestinian authorities to secure the officer 's release , and a relative says the Australian and Palestinian will be freed in exchange for the release of the officer . DT NN POS NN VBZ NNP POS NN VBD IN IN DT NN IN JJ NNS TO VB DT NN POS NN , CC DT NN VBZ DT NN CC NN MD VB VBN IN NN IN DT NN IN DT NN . Cuba is criticizing recent efforts by U.S.-funded TV Marti to bring its anti-Castro programming to Cuban viewers . NNP VBZ VBG JJ NNS IN JJ NN NNP TO VB PRP$ JJ NN TO JJ NNS . Cuba 's Communist Party newspaper Granma , in an article published Tuesday , said Cuban authorities will take the measures to block the TV Marti programming broadcast on a Miami local television station . NNP POS NNP NNP NN NNP , IN DT NN VBN NNP , VBD JJ NNS MD VB DT NNS TO VB DT NN NNP NN NN IN DT NNP JJ NN NN . The station , WPMF-TV , can be received by Cubans with satellite dishes , although such devices are illegal in Cuba . DT NN , NNP , MD VB VBN IN NNS IN NN NNS , IN JJ NNS VBP JJ IN NNP . Radio and TV Marti announced in December that it would pay to have its programming broadcast on Spanish-language stations in Miami that are received by illegal satellite dishes in Cuba . NNP CC NNP NNP VBD IN NNP IN PRP MD VB TO VB PRP$ NN NN IN JJ NNS IN NNP WDT VBP VBN IN JJ NN NNS IN NNP . Nepali authorities say at least six Maoist rebels were killed and several soldiers were missing following a fierce gunbattle in eastern Nepal . JJ NNS VBP IN JJS CD NNP NNS VBD VBN CC JJ NNS VBD VBG VBG DT JJ NN IN JJ NNP . Officials say the fighting erupted Wednesday , when rebels ambushed a security patrol in a rural area of Ilam , about 680 kilometers east of Kathmandu . NNS VBP DT NN VBD NNP , WRB NNS VBD DT NN NN IN DT JJ NN IN NNP , IN CD NNS NN IN NNP . The rebels say they have killed 20 soldiers . DT NNS VBP PRP VBP VBN CD NNS . But officials say they could not confirm if the army suffered any casualties . CC NNS VBP PRP MD RB VB IN DT NN VBD DT NNS . Earlier this week , the Nepali army had warned that the Maoists could be planning major attacks to mark next month 's ninth anniversary of the start of their revolt . RBR DT NN , DT JJ NN VBD VBN IN DT NNS MD VB VBG JJ NNS TO VB JJ NN POS JJ NN IN DT NN IN PRP$ NN . The rebels , who want to establish a communist republic in the world 's only Hindu kingdom , last week rejected a government deadline to resume peace talks . DT NNS , WP VBP TO VB DT JJ NN IN DT NN POS JJ NNP NN , JJ NN VBD DT NN NN TO VB NN NNS . The government is pushing ahead with plans for long-delayed elections later this year . DT NN VBZ VBG RB IN NNS IN JJ NNS RBR DT NN . Officials say at least 25 other al-Qaida-linked fighters were wounded during intense strikes in the villages of Loi Sam , Rashakai and Tang Khata in the Bajaur tribal region . NNS VBP IN JJS CD JJ JJ NNS VBD VBN IN JJ NNS IN DT NNS IN NNP NNP , NNP CC NNP NNP IN DT NNP JJ NN . Pakistan says more than 100 people , most of them militants , have been killed in a renewed military offensive in the northwest over the past few days . NNP VBZ JJR IN CD NNS , JJS IN PRP NNS , VBP VBN VBN IN DT VBN JJ NN IN DT JJS IN DT JJ JJ NNS . Pakistani officials say Pakistani security forces , backed by helicopter gunships and artillery , killed 16 suspected militants Sunday near the Afghan border . JJ NNS VBP JJ NN NNS , VBN IN NN NNS CC NN , VBD CD JJ NNS NNP IN DT JJ NN . Last month , Pakistan 's Interior Ministry chief , Rehman Malik , said the military would suspend offensives against militants in Bajaur during the Muslim holy month of Ramadan , but reserved the right to attack if provoked . JJ NN , NNP POS NNP NNP NN , NNP NNP , VBD DT NN MD VB NNS IN NNS IN NNP IN DT NNP JJ NN IN NNP , CC VBD DT NN TO VB IN VBN . Pakistan has committed itself to fighting Islamic militancy in its tribal areas , while discouraging the United States from undertaking military operations on its territory . NNP VBZ VBN PRP TO VBG JJ NN IN PRP$ JJ NNS , IN VBG DT NNP NNPS IN VBG JJ NNS IN PRP$ NN . Three New Orleans police officers have been charged in the beating of a 64-year-old man and the assaulting of a television news producer with a crew that videotaped the incident . CD NNP NNP NN NNS VBP VBN VBN IN DT NN IN DT JJ NN CC DT NN IN DT NN NN NN IN DT NN WDT VBD DT NN . The video shows two uniformed officers and two other men repeatedly punching Robert Davis in the face and body as he was being arrested Saturday night for public drunkenness in the southern U.S. city . DT NN VBZ CD JJ NNS CC CD JJ NNS RB VBG NNP NNP IN DT NN CC NN IN PRP VBD VBG VBN NNP NN IN JJ NN IN DT JJ NNP NN . The Associated Press cameraman then took pictures of a third officer manhandling the producer who was holding up his credentials to the officer . DT NNP NNP NN RB VBD NNS IN DT JJ NN VBG DT NN WP VBD VBG RP PRP$ NNS TO DT NN . Other ( CNN ) video shows Mr. Davis in handcuffs lying on the ground in a pool of blood with his face badly beaten . JJ LRB NNP RRB NN VBZ NNP NNP IN NNS VBG IN DT NN IN DT NN IN NN IN PRP$ NN RB JJ . The three officers have been suspended and charged with battery . DT CD NNS VBP VBN VBN CC VBN IN NN . The New Orleans police department has come under heavy scrutiny for their response to Hurricane Katrina . DT NNP NNP NN NN VBZ VBN IN JJ NN IN PRP$ NN TO NNP NNP . Many officers have been accused of deserting their posts or joining in the looting that broke out . JJ NNS VBP VBN VBN IN VBG PRP$ NNS CC VBG IN DT NN WDT VBD RP . Muslims in northwestern Pakistan continue to protest against the controversial Prophet Muhammad cartoons as the EU foreign policy chief arrives in Saudi Arabia , saying Europe respects Islam . NNPS IN JJ NNP VBP TO VB IN DT JJ NNP NNP NNS IN DT NNP JJ NN NN VBZ IN NNP NNP , VBG NNP VBZ NNP . The protest in Pakistan began Monday morning when students marched to different universities in the city of Peshawar , urging people to join the demonstration . DT NN IN NNP VBD NNP NN WRB NNS VBD TO JJ NNS IN DT NN IN NNP , VBG NNS TO VB DT NN . They pelted offices and shops with stones as they marched . PRP VBD NNS CC NNS IN NNS IN PRP VBD . Police fired tear gas and used batons to disperse the protesters when they tried to march on the provincial governor 's residence . NNS VBD JJ NN CC VBD NNS TO VB DT NNS WRB PRP VBD TO VB IN DT JJ NN POS NN . In Jeddah , EU foreign policy chief Javier Solana said Europe had never wanted to offend the feelings of Muslims and never will . IN NNP , NNP JJ NN NN NNP NNP VBD NNP VBD RB VBN TO VB DT NNS IN NNPS CC RB MD . Solana made the remarks as he met with the head of the 57-member Organization of the Islamic Conference , Ekmeleddin Ihsanoglu . NNP VBD DT NNS IN PRP VBD IN DT NN IN DT JJ NNP IN DT NNP NNP , NNP NNP . The unrest was sparked by cartoons of the prophet published initially by a Danish newspaper last September . DT NN VBD VBN IN NNS IN DT NN VBN RB IN DT JJ NN JJ NNP . Finnish authorities say Russian military aircraft have repeatedly violated Finland 's airspace in recent months despite the Nordic country 's demands for an end to such actions . JJ NNS VBP JJ JJ NN VBP RB VBN NNP POS NN IN JJ NNS IN DT NNP NN POS NNS IN DT NN TO JJ NNS . The Foreign Ministry late Thursday said the flights were either on their way to Russia 's Baltic enclave of Kaliningrad or returning to Russia when they entered Finnish airspace over the Gulf of Finland . DT NNP NNP JJ NNP VBD DT NNS VBD RB IN PRP$ NN TO NNP POS JJ NN IN NNP CC VBG TO NNP WRB PRP VBD JJ NN IN DT NNP IN NNP . Russia 's Interfax news Agency quotes defense ministry officials as denying any violations . NNP POS NNP NN NNP VBZ NN NN NNS IN VBG DT NNS . Finnish officials say Prime Minister Matti Vanhanen will raise the issue during his visit to Moscow next month . JJ NNS VBP NNP NNP NNP NNP MD VB DT NN IN PRP$ NN TO NNP JJ NN . Kaliningrad is a Russian Baltic enclave cut off from the rest of Russia by Belarus , Lithuania and Poland . NNP VBZ DT JJ NNP NN VBN RP IN DT NN IN NNP IN NNP , NNP CC NNP . Nigeria 's main militant group said one of its commanders and 62 of his followers were not captured by the military , but rather turned themselves in for a promised cash reward . NNP POS JJ JJ NN VBD CD IN PRP$ NNS CC CD IN PRP$ NNS VBD RB VBN IN DT JJ , CC RB VBD PRP IN IN DT JJ NN NN . The military had said it arrested the militants Friday in southern Nigeria 's Rivers State . DT NN VBD VBN PRP VBN DT NNS NNP IN JJ NNP POS NNP NNP . On Saturday , it paraded the men in front of the media at an air force base in the southern oil hub of Port Harcourt . IN NNP , PRP VBD DT NNS IN NN IN DT NNS IN DT NN NN NN IN DT JJ NN NN IN NNP NNP . In a statement Monday , the Movement for the Emancipation of the Niger Delta ( MEND ) refuted the government 's account of the arrests , saying its fighters ' handed themselves over ' with ' no exchange of gunfire . ' IN DT NN NNP , DT NN IN DT NN IN DT NNP NNP LRB NNP RRB VBD DT NN POS NN IN DT NNS , VBG PRP$ NNS `` VBN PRP IN `` IN `` DT NN IN NN . `` Nigerian authorities say the militants kidnapped 19 oil and construction workers in the Niger Delta region . JJ NNS VBP DT NNS VBD CD NN CC NN NNS IN DT NNP NNP NN . The hostages , who were freed last week , included seven foreigners . DT NNS , WP VBD VBN JJ NN , VBD CD NNS . The group has threatened more attacks on oil facilities . DT NN VBZ VBN JJR NNS IN NN NNS . Iraqi Foreign Minister Hoshyar Zebari says coalition forces will next hand over control of southern Maysan province to Iraqi troops . JJ NNP NNP NNP NNP VBZ NN NNS MD RB VB IN NN IN JJ NNP NN TO JJ NNS . Zebari was speaking in London Tuesday , after talks with British Foreign Secretary Margaret Beckett . NNP VBD VBG IN NNP NNP , IN NNS IN JJ NNP NNP NNP NNP . Zebari did not say when he expects the transfer to take place . NNP VBD RB VB WRB PRP VBZ DT NN TO VB NN . On Monday , Iraqi Prime Minister Nouri al-Maliki confirmed that British , Australian and Japanese troops will soon turn over security responsibility to Iraqi forces in southern Muthana province . IN NNP , JJ NNP NNP NNP NNP VBD IN JJ , JJ CC JJ NNS MD RB VB RP NN NN TO JJ NNS IN JJ NNP NN . Beckett would not say whether the transfer of responsibility will mean that British forces will return home or be redeployed elsewhere in Iraq . NNP MD RB VB IN DT NN IN NN MD VB IN JJ NNS MD VB NN CC VB VBN RB IN NNP . Britain has about 7,200 troops in southern Iraq based around the city of Basra . NNP VBZ RB CD NNS IN JJ NNP VBN IN DT NN IN NNP . The leader of opposition Democrats in the U.S. Senate says the Bush administration needs to explain what role it had in the exposure of a covert CIA officer . DT NN IN NN NNS IN DT NNP NNP VBZ DT NNP NN VBZ TO VB WP NN PRP VBD IN DT NN IN DT JJ NNP NN . Interviewed Sunday on the ABC television program ' This Week , ' Senator Harry Reid said President Bush and Vice President Dick Cheney ' come clean with the American public . ' VBN NNP IN DT NNP NN NN `` DT NN , `` NNP NNP NNP VBD NNP NNP CC NNP NNP NNP NNP `` VB JJ IN DT JJ NN . `` Mr. Reid also said the president should pledge not to pardon Mr. Cheney 's former chief of staff Lewis Libby if he is convicted . NNP NNP RB VBD DT NN MD NN RB TO VB NNP NNP POS JJ NN IN NN NNP NNP IN PRP VBZ VBN . Mr. Libby resigned Friday after being indicted on five charges in connection with statements he made to investigators probing the CIA leak . NNP NNP VBD NNP IN VBG VBN IN CD NNS IN NN IN NNS PRP VBD TO NNS VBG DT NNP NN . Both the president and Mr. Cheney have refused to comment on the probe . DT DT NN CC NNP NNP VBP VBN TO VB IN DT NN . Senator Reid also called for the resignation of Mr. Bush 's chief adviser , Karl Rove . NNP NNP RB VBD IN DT NN IN NNP NNP POS JJ NN , NNP NNP . Mr. Rove has not been charged with a crime in the probe but reportedly remains under investigation . NNP NNP VBZ RB VBN VBN IN DT NN IN DT NN CC RB VBZ IN NN . Political leaders and rebels in Ivory Coast say they accept the choice of economist Charles Konan Banny to be the nation 's transitional prime minister . JJ NNS CC NNS IN NNP NNP VBP PRP VBP DT NN IN NN NNP NNP NNP TO VB DT NN POS JJ JJ NN . A rebel spokesman told VOA that he hopes the international community will give Mr. Banny the power to do his job . DT NN NN VBD NNP IN PRP VBZ DT JJ NN MD VB NNP NNP DT NN TO VB PRP$ NN . A United Nations resolution gives the new prime minister expanded authority to carry out rebel disarmament and electoral reforms , with the goal of holding new elections by next October . DT NNP NNPS NN VBZ DT JJ JJ NN VBN NN TO VB RP JJ NN CC JJ NNS , IN DT NN IN VBG JJ NNS IN JJ NNP . African mediators appointed Mr. Banny on Sunday , ending a deadlock between President Laurent Gbagbo , opposition leaders and the rebels . JJ NNS VBD NNP NNP IN NNP , VBG DT NN IN NNP NNP NNP , NN NNS CC DT NNS . Mr. Banny , the governor of West Africa 's central bank , is expected to travel from Dakar , Senegal , to Abijan Monday . NNP NNP , DT NN IN NNP NNP POS JJ NN , VBZ VBN TO VB IN NNP , NNP , TO NNP NNP . He had been going to run for president himself , but in his new position , he is barred from seeking the office . PRP VBD VBN VBG TO VB IN NN PRP , CC IN PRP$ JJ NN , PRP VBZ VBN IN VBG DT NN . Tsunami rescue workers in India 's Andaman archipelago say they have found nine survivors on a remote island , 38 days after large waves devastated villages in the region . NN NN NNS IN NNP POS NNP NN VBP PRP VBP VBN CD NNS IN DT JJ NN , CD NNS IN JJ NNS VBD NNS IN DT NN . Police say the group of five men , two women and two teenagers was found wandering in a remote part of Campbell Bay island . NNS VBP DT NN IN CD NNS , CD NNS CC CD NNS VBD VBN VBG IN DT JJ NN IN NNP NNP NN . Police say the Nicobari tribespeople had fled to a hill when the tsunami flooded the island . NNS VBP DT NNP NN VBD VBN TO DT NN WRB DT NN VBD DT NN . The emaciated survivors largely lived off coconuts until they were rescued Wednesday . DT JJ NNS RB VBD RP NNS IN PRP VBD VBN NNP . They are the latest survivors discovered from the disaster that officials estimate killed more than 1,70,000 people , mostly in Indonesia and Sri Lanka . PRP VBP DT JJS NNS VBN IN DT NN IN NNS VBP VBN RBR IN CD NNS , RB IN NNP CC NNP NNP . Tens of thousands of people are still listed as missing . NNS IN NNS IN NNS VBP RB VBN IN VBG . An Afghan official says Taleban militants have captured a district in southern Kandahar province after several days of fierce fighting . DT JJ NN VBZ NNP NNS VBP VBN DT NN IN JJ NNP NN IN JJ NNS IN JJ NN . Kandahar 's provincial police chief , Esmatullah Alizai , Tuesday said the Taleban took control of Mian Neshin district late Monday . NNP POS JJ NN NN , NNP NNP , NNP VBD DT NNP VBD NN IN NNP NNP NN JJ NNP . Officials said Afghan forces made a tactical decision to withdraw from clashes with militants . NNS VBD JJ NNS VBD DT JJ NN TO VB IN NNS IN NNS . They added that authorities are planning an operation to recapture the district . PRP VBD IN NNS VBP VBG DT NN TO VB DT NN . Elsewhere , in nearby Uruzgan province , fighting continues Tuesday between NATO forces and Taleban militants . RB , IN JJ NNP NN , VBG VBZ NNP IN NNP NNS CC NNP NNS . Officials say about 60 Taleban insurgents have been killed in the past three days of fighting in the district of Chora . NNS VBP IN CD NNP NNS VBP VBN VBN IN DT JJ CD NNS IN VBG IN DT NN IN NNP . Afghan authorities say civilians were also killed , but casualty figures could not be verified . JJ NNS VBP NNS VBD RB VBN , CC NN NNS MD RB VB VBN . Authorities in Iraq say at least 12 people were killed in a series of attacks Wednesday , mainly in and around the northern city of Mosul . NNS IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN IN NNS NNP , RB IN CC IN DT JJ NN IN NNP . Iraqi officials say a car bomb exploded near a Shi'ite mosque on the outskirts of Mosul , killing nine people and wounding others . JJ NNS VBP DT NN NN VBD IN DT NNP NN IN DT NNS IN NNP , VBG CD NNS CC VBG NNS . A second blast in a nearby village also caused injuries . DT JJ NN IN DT JJ NN RB VBD NNS . At least 22 people were wounded in the two explosions . IN JJS CD NNS VBD VBN IN DT CD NNS . And police in central Mosul say at least seven people were wounded Wednesday when a gunman threw an explosive device at a police patrol . CC NNS IN JJ NNP VBP IN JJS CD NNS VBD VBN NNP WRB DT NN VBD DT JJ NN IN DT NN NN . Mosul has been the scene of a number of deadly attacks since U.S. combat troops formally withdrew from the city last week . NNP VBZ VBN DT NN IN DT NN IN JJ NNS IN NNP NN NNS RB VBD IN DT NN JJ NN . In other violence , Iraqi police and witnesses say at least three people have been killed and 18 wounded in a bombing south of Baghdad . IN JJ NN , JJ NNS CC NNS VBP IN JJS CD NNS VBP VBN VBN CC CD VBN IN DT VBG NN IN NNP . Authorities say the blast in the town of Musayyib appeared to target a wedding party . NNS VBP DT NN IN DT NN IN NNP VBD TO VB DT VBG NN . Suicide car bombers carried out two deadly attacks in Baghdad Thursday , killing 11 people as the Iraqi president met with Britain 's prime minister in London ahead of Iraq 's constitutional referendum . NN NN NNS VBD RP CD JJ NNS IN NNP NNP , VBG CD NNS IN DT JJ NN VBD IN NNP POS JJ NN IN NNP RB IN NNP POS JJ NN . An American soldier also was killed Thursday in combat operations in northern Baghdad . DT JJ NN RB VBD VBN NNP IN NN NNS IN JJ NNP . Fear of spiraling violence before next week 's referendum was one of the topics President Jalal Talabani and Prime Minister Tony Blair were expected to discuss . NN IN VBG NN IN JJ NN POS NN VBD CD IN DT NNS NNP NNP NNP CC NNP NNP NNP NNP VBD VBN TO VB . At a joint news conference after their meeting , Mr. Talabani said the presence of American and British troops in Iraq is absolutely vital , and that no timetable for their departure has been set . IN DT JJ NN NN IN PRP$ NN , NNP NNP VBD DT NN IN NNP CC JJ NNS IN NNP VBZ RB JJ , CC IN DT NN IN PRP$ NN VBZ VBN VBN . For his part , Mr. Blair said new , more dangerous explosives are being used in Iraq , and there are unproven suspicions they are coming from Iran or its Lebanese ally , Hezbollah . IN PRP$ NN , NNP NNP VBD JJ , RBR JJ NNS VBP VBG VBN IN NNP , CC EX VBP JJ NNS PRP VBP VBG IN NNP CC PRP$ JJ NN , NNP . Those charges were quickly denied by Iranian and Hezbollah officials . DT NNS VBD RB VBN IN JJ CC NNP NNS . Insurgents have carried out a series of attacks across Iraq , killing at least 25 people and wounding more than 93 others . NNS VBP VBN RP DT NN IN NNS IN NNP , VBG IN JJS CD NNS CC VBG JJR IN CD NNS . Spain 's interior minister says police confiscated documents indicating potential terrorism targets from two suspected members of the Basque separatist group ETA arrested in France Thursday . NNP POS JJ NN VBZ NNS VBD NNS VBG JJ NN NNS IN CD JJ NNS IN DT NNP NN NN NNP VBN IN NNP NNP . Jose Antonio Alonso told reporters the documents included information about four Madrid sports complexes the city has listed in its bid for the 2012 Olympics . NNP NNP NNP VBD NNS DT NNS VBD NN IN CD NNP NNS VBZ DT NN VBZ VBN IN PRP$ NN IN DT CD NNS . The other two sites were water desalinization plants in southern Spain . DT JJ CD NNS VBD NN NN NNS IN JJ NNP . Mr. Alonso Thursday identified one of the men arrested near the southern French city of Toulouse as Pedro Esquisabel Urtuzaga , the chief of ETA international operations . NNP NNP NNP VBD CD IN DT NNS VBN IN DT JJ JJ NN IN NNP IN NNP NNP NNP , DT NN IN NNP JJ NNS . ETA has been blamed for the deaths of more than 800 people since the late 1960s , when it launched its terrorist campaign for creation of an independent Basque state in southwestern France and northern Spain . NNP VBZ VBN VBN IN DT NNS IN JJR IN CD NNS IN DT JJ NNS , WRB PRP VBD PRP$ JJ NN IN NN IN DT JJ JJ NN IN JJ NNP CC JJ NNP . The Palestinian militant group Hamas has canceled plans for its anniversary rally over fears of an Israeli attack . DT JJ JJ NN NNP VBZ VBN NNS IN PRP$ NN NN IN NNS IN DT JJ NN . Thousands of Hamas supporters had been expected to join the rally Friday to mark the 17th anniversary of the founding of the movement . NNS IN NNP NNS VBD VBN VBN TO VB DT NN NNP TO VB DT JJ NN IN DT NN IN DT NN . A Hamas spokesman Mushir al-Masri said the rally at a Gaza City sports stadium has been canceled because of renewed concern about the safety of Hamas leaders - particularly after Sunday 's attack on an Israeli military post in Gaza that killed five soldiers . DT NNP NN NNP NNP VBD DT NN IN DT NNP NNP NNS NN VBZ VBN VBN IN IN JJ NN IN DT NN IN NNP NNS IN RB IN NNP POS NN IN DT JJ JJ NN IN NNP WDT VBD CD NNS . Israel has assassinated Hamas founder and his successor in separate air strikes earlier this year . NNP VBZ VBN NNP NN CC PRP$ NN IN JJ NN NNS RBR DT NN . Israel also killed more than a dozen Hamas fighters when it bombed a soccer field where the militants were training . NNP RB VBD JJR IN DT JJ NNP NNS WRB PRP VBD DT NN NN WRB DT NNS VBD NN . Honduran authorities have arrested two gang members in the death of an American agent who was fatally shot while on vacation in Tegucigalpa . JJ NNS VBP VBN CD NN NNS IN DT NN IN DT JJ NN WP VBD RB VBN IN IN NN IN NNP . Officials say the suspects were arrested Saturday in connection with the death of Timothy Markey , an agent with the U.S. Drug Enforcement Administration . NNS VBP DT NNS VBD VBN NNP IN NN IN DT NN IN NNP NNP , DT NN IN DT NNP NNP NNP NNP . Authorities say Mr. Markey was visiting a cathedral in the capital city Friday when he was approached and shot in the leg . NNS VBP NNP NNP VBD VBG DT NN IN DT NN NN NNP WRB PRP VBD VBN CC VBN IN DT NN . Mr. Markey was rushed to a hospital , where he was later pronounced dead . NNP NNP VBD VBN TO DT NN , WRB PRP VBD RB JJ NN . Officials say the fatal incident appears to have been an attempted robbery . NNS VBP DT JJ NN VBZ TO VB VBN DT JJ NN . A DEA statement says the 44-year-old agent had worked for the administration since 1989 , and was assigned to a unit in the southern U.S. state of Texas . DT NNP NN VBZ DT JJ NN VBD VBN IN DT NN IN CD , CC VBD VBN TO DT NN IN DT JJ NNP NN IN NNP . The White House is urging the United Nations Security Council to keep pressure on Syria , after a report further implicated senior Syrian officials in the murder of former Lebanese Prime Minister Rafik Hariri . DT NNP NNP VBZ VBG DT NNP NNP NNP NNP TO VB NN IN NNP , IN DT NN RBR JJ JJ JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP . Spokesman Scott McClellan said Tuesday that the United States supports U.N. investigator Detlev Mehlis ' request to extend the murder investigation for another six months . NNP NNP NNP VBD NNP IN DT NNP NNPS VBZ NNP NN NNP NNP POS NN TO VB DT NN NN IN DT CD NNS . Mr. Mehlis requested the extension Monday , saying his team had found new evidence implicating Syria in the February assassination . NNP NNP VBD DT NN NNP , VBG PRP$ NN VBD VBN JJ NN VBG NNP IN DT NNP NN . The Security Council is due to discuss Mr. Mehlis ' report today . DT NNP NNP VBZ JJ TO VB NNP NNP POS NN NN . Meanwhile , in Beirut , Lebanese mourned the killing Monday of prominent anti-Syrian legislator and newspaper publisher Gibran Tueni in a car bomb blast . RB , IN NNP , JJ VBD DT NN NNP IN JJ JJ NN CC NN NN NNP NNP IN DT NN NN NN . Many schools and businesses were closed , as Mr. Tueni 's family received condolences at a Greek Orthodox church in East Beirut . JJ NNS CC NNS VBD VBN , IN NNP NNP POS NN VBD NNS IN DT JJ NNP NN IN NNP NNP . A coalition of anti-Syrian groups has called for a general strike Wednesday to coincide with his funeral . DT NN IN JJ NNS VBZ VBN IN DT JJ NN NNP TO VB IN PRP$ NN . Diplomats in Brussels say the foreign ministers of Britain , France and Germany will meet Iran 's top nuclear official Monday to discuss a long-term nuclear cooperation agreement . NNS IN NNP VBP DT JJ NNS IN NNP , NNP CC NNP MD VB NNP POS JJ JJ NN NNP TO VB DT JJ JJ NN NN . The European Union 's foreign policy chief , Javier Solana , also will attend the negotiations . DT NNP NNP POS JJ NN NN , NNP NNP , RB MD VB DT NNS . The Europeans are expected to offer Iran a package of economic and political incentives in exchange for its permanently suspending work on uranium enrichment . DT NNS VBP VBN TO VB NNP DT NN IN JJ CC JJ NNS IN NN IN PRP$ RB VBG NN IN NN NN . Last month , Iran agreed to a temporary suspension in an effort to avoid being brought before the U.N. Security Council for possible sanctions . JJ NN , NNP VBD TO DT JJ NN IN DT NN TO VB VBG VBN IN DT NNP NNP NNP IN JJ NNS . The European Union also is expected to formally agree to resume stalled trade talks with Iran on an agreement that could include European support for Iran 's membership in the World Trade Organization . DT NNP NNP RB VBZ VBN TO RB VB TO VB VBN NN NNS IN NNP IN DT NN WDT MD VB JJ NN IN NNP POS NN IN DT NNP NNP NNP . The United States has previously blocked Iran 's WTO entry bids . DT NNP NNPS VBZ RB VBN NNP POS NNP NN NNS . GOODY PRODUCTS Inc. cut its quarterly dividend to five cents a share from 11.5 cents a share . NNP NNP NNP VBD PRP$ JJ NN TO CD NNS DT NN IN CD NNS DT NN . The reduced dividend is payable Jan. 2 to stock of record Dec. 15 . DT VBN NN VBZ JJ NNP CD TO NN IN NN NNP CD . The Kearny , N.J.-based maker of hair accessories and other cosmetic products said it cut the dividend due to its third-quarter loss of $ 9,92,000 , or 15 cents a share . DT NNP , JJ NN IN NN NNS CC JJ JJ NNS VBD PRP VBP DT NN JJ TO PRP$ JJ NN IN $ CD , CC CD NNS DT NN . In the year-ago quarter , the company reported net income of $ 1.9 million , or 29 cents a share . IN DT JJ NN , DT NN VBD JJ NN IN $ CD CD , CC CD NNS DT NN . The company also adopted an anti-takeover plan . DT NN RB VBD DT JJ NN . Belgium became independent from the Netherlands in 1830 ; it was occupied by Germany during World Wars I and II . NNP VBD JJ IN DT NNP IN CD ; PRP VBD VBN IN NNP IN NNP NNP NNP CC NNP . The country prospered in the past half century as a modern , technologically advanced European state and member of NATO and the EU . DT NN VBD IN DT JJ JJ NN IN DT JJ , RB JJ JJ NN CC NN IN NNP CC DT NNP . Tensions between the Dutch-speaking Flemings of the north and the French-speaking Walloons of the south have led in recent years to constitutional amendments granting these regions formal recognition and autonomy . NNS IN DT JJ NNS IN DT NN CC DT JJ NNS IN DT NN VBP VBN IN JJ NNS TO JJ NNS VBG DT NNS JJ NN CC NN . Turkmenistan is largely a desert country with intensive agriculture in irrigated oases and sizeable gas and oil resources . NNP VBZ RB DT NN NN IN JJ NN IN JJ NNS CC JJ NN CC NN NNS . The two largest crops are cotton , most of which is produced for export , and wheat , which is domestically consumed . DT CD JJS NNS VBP NN , JJS IN WDT VBZ VBN IN NN , CC NN , WDT VBZ RB VBN . Although agriculture accounts for roughly 10 % of GDP , it continues to employ nearly half of the country 's workforce . IN NN NNS IN RB CD NN IN NN , PRP VBZ TO VB RB NN IN DT NN POS NN . With an authoritarian ex-Communist regime in power and a tribally based social structure , Turkmenistan has taken a cautious approach to economic reform , hoping to use gas and cotton export revenues to sustain its inefficient economy . IN DT JJ JJ NN IN NN CC DT RB VBN JJ NN , NNP VBZ VBN DT JJ NN TO JJ NN , VBG TO VB NN CC NN NN NNS TO VB PRP$ JJ NN . Privatization goals remain limited . NN NNS VBP JJ . From 1998 - 2005 , Turkmenistan suffered from the continued lack of adequate export routes for natural gas and from obligations on extensive short-term external debt . IN CD IN CD , NNP VBD IN DT JJ NN IN JJ NN NNS IN JJ NN CC IN NNS IN JJ JJ JJ NN . At the same time , however , total exports rose by an average of roughly 15 % per year from 2003 - 8 , largely because of higher international oil and gas prices . IN DT JJ NN , RB , JJ NNS VBD IN DT NN IN RB CD NN IN NN IN CD IN CD , RB IN IN JJR JJ NN CC NN NNS . New pipelines to China and Iran , that began operation in early 2010 , have given Turkmenistan additional export routes for its gas , although these new routes have not offset the sharp drop in export revenue since early 2009 from decreased gas exports to Russia . JJ NNS TO NNP CC NNP , WDT VBD NN IN JJ CD , VBP VBN NNP JJ NN NNS IN PRP$ NN , IN DT JJ NNS VBP RB VBN DT JJ NN IN NN NN IN JJ CD IN JJ NN NNS TO NNP . Overall prospects in the near future are discouraging because of widespread internal poverty , endemic corruption , a poor educational system , government misuse of oil and gas revenues , and Ashgabat 's reluctance to adopt market-oriented reforms . JJ NNS IN DT JJ NN VBP VBG IN IN JJ JJ NN , JJ NN , DT JJ JJ NN , NN NN IN NN CC NN NNS , CC NNP POS NN TO VB JJ NNS . In the past , Turkmenistan 's economic statistics were state secrets . IN DT NN , NNP POS JJ NNS VBD NN NNS . The new government has established a State Agency for Statistics , but GDP numbers and other figures are subject to wide margins of error . DT JJ NN VBZ VBN DT NNP NNP IN NNPS , CC NN NNS CC JJ NNS VBP JJ TO JJ NNS IN NN . In particular , the rate of GDP growth is uncertain . IN NN , DT NN IN NN NN VBZ JJ . Since his election , President BERDIMUHAMEDOW unified the country 's dual currency exchange rate , ordered the redenomination of the manat , reduced state subsidies for gasoline , and initiated development of a special tourism zone on the Caspian Sea . IN PRP$ NN , NNP NNP VBN DT NN POS JJ NN NN NN , VBD DT NN IN DT NN , VBD NN NNS IN NN , CC VBD NN IN DT JJ NN NN IN DT NNP NNP . Although foreign investment is encouraged , numerous bureaucratic obstacles impede international business activity . IN JJ NN VBZ VBN , JJ JJ NNS VBP JJ NN NN . Hungary became a Christian kingdom in A.D. 1000 and for many centuries served as a bulwark against Ottoman Turkish expansion in Europe . NNP VBD DT JJ NN IN NNP CD CC IN JJ NNS VBD IN DT NN IN NNP NNP NN IN NNP . The kingdom eventually became part of the polyglot Austro-Hungarian Empire , which collapsed during World War I . DT NN RB VBD NN IN DT NN JJ NN , WDT VBD IN NNP NNP NNP . The country fell under Communist rule following World War II . DT NN VBD IN JJ NN VBG NNP NNP NNP . In 1956 , a revolt and an announced withdrawal from the Warsaw Pact were met with a massive military intervention by Moscow . IN CD , DT NN CC DT VBN NN IN DT NNP NNP VBD VBN IN DT JJ JJ NN IN NNP . Under the leadership of Janos KADAR in 1968 , Hungary began liberalizing its economy , introducing so-called ' Goulash Communism . ' IN DT NN IN NNP NNP IN CD , NNP VBD VBG PRP$ NN , VBG JJ `` NNP NNP . `` Hungary held its first multiparty elections in 1990 and initiated a free market economy . NNP VBD PRP$ JJ JJ NNS IN CD CC VBD DT JJ NN NN . It joined NATO in 1999 and the EU five years later . PRP VBD NNP IN CD CC DT NNP CD NNS RB . In 2011 , Hungary assumed the six-month rotating presidency of the EU for the first time . IN CD , NNP VBD DT JJ VBG NN IN DT NNP IN DT JJ NN . A FROG once upon a time came forth from his home in the marsh and proclaimed to all the beasts that he was a learned physician , skilled in the use of drugs and able to heal all diseases . DT NN RB IN DT NN VBD RB IN PRP$ NN IN DT NN CC VBD TO PDT DT NNS IN PRP VBD DT JJ NN , JJ IN DT NN IN NNS CC JJ TO VB DT NNS . A Fox asked him , ' How can you pretend to prescribe for others , when you are unable to heal your own lame gait and wrinkled skin ? ' DT NN VBD PRP , `` WRB MD PRP VB TO VB IN NNS , WRB PRP VBP JJ TO VB PRP$ JJ NN NN CC VBN NN . `` A SWALLOW who had built her nest in a court of justice reared a fine family of young birds . DT NN WP VBD VBN PRP$ NN IN DT NN IN NN VBD DT JJ NN IN JJ NNS . One day a Snake came out of a chink in the wall and was about to eat them . CD NN DT NN VBD IN IN DT NN IN DT NN CC VBD IN TO VB PRP . The Just Judge at once issued an injunction , and making an order for their removal to his own house , ate them himself . DT NN NN IN RB VBN DT NN , CC VBG DT NN IN PRP$ NN TO PRP$ JJ NN , VBD PRP PRP . A BOY put his hand into a pitcher full of filberts . DT NN VBD PRP$ NN IN DT NN JJ IN NNS . He grasped as many as he could possibly hold , but when he tried to pull out his hand , he was prevented from doing so by the neck of the pitcher . PRP VBD RB JJ IN PRP MD RB VB , CC WRB PRP VBD TO VB RP PRP$ NN , PRP VBD VBN IN VBG RB IN DT NN IN DT NN . Unwilling to lose his filberts , and yet unable to withdraw his hand , he burst into tears and bitterly lamented his disappointment . VBG TO VB PRP$ NNS , CC RB JJ TO VB PRP$ NN , PRP VBD IN NNS CC RB VBD PRP$ NN . A bystander said to him , ' Be satisfied with half the quantity , and you will readily draw out your hand . ' DT NN VBD TO PRP , `` VB JJ IN PDT DT NN , CC PRP MD RB VB RP PRP$ NN . `` Do not attempt too much at once . VBP RB VB RB RB IN RB . Kidnappers in Haiti have released a group of children they abducted from a school bus early Thursday . NNS IN NNP VBP VBN DT NN IN NNS PRP VBD IN DT NN NN RB NNP . Police said Friday the kidnappers freed the children unharmed later Thursday . NNS VBD NNP DT NNS VBD DT NNS JJ RB NNP . Local media report the abductors were paid an unspecified ransom . JJ NNS VBP DT NNS VBD VBN DT JJ NN . But the Associated Press quotes a police commissioner as denying any ransom was paid . CC DT NNP NNP VBZ DT NN NN IN VBG DT NN VBD VBN . Police also said they are working to secure the release of an American missionary kidnapped Thursday in a separate incident . NNS RB VBD PRP VBP VBG TO VB DT NN IN DT JJ NN VBN NNP IN DT JJ NN . Neither case was considered to be politically motivated . DT NN VBD VBN TO VB RB JJ . The United States is giving $ 750 million to Pakistan to help develop its remote tribal region . DT NNP NNPS VBZ VBG $ CD CD TO NNP TO VB VB PRP$ JJ JJ NN . The U.S. Agency for International Development says the money - to be allocated over five years - will fund projects in Pakistan 's Federally Administered Tribal Areas ( FATAs ) , which border Afghanistan . DT NNP NNP IN NNP NNP VBZ DT NN : TO VB VBN IN CD NNS : MD VB NNS IN NNP POS NNP NNP NNP NNP LRB NNP RRB , WDT VBP NNP . The agency says the projects include efforts to strengthen livelihoods , expand economic opportunities and improve education and healthcare . DT NN VBZ DT NNS VBP NNS TO VB NNS , VB JJ NNS CC VB NN CC NN . A $ 43 million contract has been awarded by the agency to Development Alternatives , Incorporated . DT $ CD CD NN VBZ VBN VBN IN DT NN TO NNP NNP , VBN . The company will help the Pakistani government and non-governmental organizations to plan , implement and monitor a wide range of development programs . DT NN MD VB DT JJ NN CC JJ NNS TO VB , VB CC VB DT JJ NN IN NN NNS . The Federally Administered Tribal Areas are governed by the Pakistani central government , but Pashtun tribal elders run the day to day affairs of the region . DT NNP VBD NNP NNP VBP VBN IN DT JJ JJ NN , CC NNP JJ NNS VBP DT NN TO NN NNS IN DT NN . Officials in northwest Pakistan say at least 12 people were killed Sunday when a minibus ran off a mountainous road and plunged into a ravine . NNS IN JJ NNP VBP IN JJS CD NNS VBD VBN NNP WRB DT NN VBD RP DT JJ NN CC VBD IN DT NN . At least eight others were injured in the crash , which occurred near the town of Malakand , northwest of Islamabad . IN JJS CD NNS VBD VBN IN DT NN , WDT VBD IN DT NN IN NNP , NN IN NNP . Police say the vehicle was headed to the town of Chitral from the provincial capital , Peshawar , when the driver lost control of the vehicle . NNS VBP DT NN VBD VBN TO DT NN IN NNP IN DT JJ NN , NNP , WRB DT NN VBD NN IN DT NN . It is unclear how many people were traveling on the bus at the time of the accident . PRP VBZ JJ WRB JJ NNS VBD VBG IN DT NN IN DT NN IN DT NN . Fatal road accidents are common in Pakistan , due mainly to poorly maintained roads and disregard for traffic rules . JJ NN NNS VBP JJ IN NNP , JJ RB TO RB VBN NNS CC NN IN NN NNS . Russian President Dmitri Medvedev has sent a new nuclear arms reduction treaty with the United States to parliament for ratification . JJ NNP NNP NNP VBZ VBN DT JJ JJ NNS NN NN IN DT NNP NNPS TO NN IN NN . Mr. Medvedev and U.S. President Barack Obama signed the treaty last month in the Czech capital , Prague . NNP NNP CC NNP NNP NNP NNP VBD DT NN JJ NN IN DT JJ NN , NNP . President Obama submitted the treaty to the U.S. Senate for approval earlier this month . NNP NNP VBD DT NN TO DT NNP NNP IN NN RBR DT NN . Mr. Medvedev urged Russian lawmakers Friday to synchronize their ratification process with the Senate . NNP NNP VBD JJ NNS NNP TO VB PRP$ NN NN IN DT NNP . The new Strategic Arms Reduction Treaty cuts U.S. and Russian nuclear arsenals by 30 percent , leaving each side with about 1,500 strategic nuclear weapons . DT JJ NNP NNP NNP NNP VBZ NNP CC JJ JJ NNS IN CD NN , VBG DT NN IN IN CD JJ JJ NNS . The agreement replaces the 1991 START treaty . DT NN VBZ DT CD NNP NN . Both the U.S. Senate and Russia 's parliament must ratify the treaty before it can take effect . DT DT NNP NNP CC NNP POS NN MD VB DT NN IN PRP MD VB NN . President Obama has called the treaty ' an important milestone ' for nuclear security and non-proliferation . NNP NNP VBZ VBN DT NN `` DT JJ NN `` IN JJ NN CC NN . A British judge has dropped charges against seven soldiers accused of beating an Iraqi teenager to death in 2003 . DT JJ NN VBZ VBN NNS IN CD NNS VBN IN VBG DT JJ NN TO NN IN CD . The judge ruled Thursday there was not enough evidence against the soldiers . DT NN VBD NNP EX VBD RB JJ NN IN DT NNS . They had faced a court-martial in connection with the death of 18-year-old Nadhem Abdullah during a skirmish in southern Iraq . PRP VBD VBN DT JJ IN NN IN DT NN IN JJ NNP NNP IN DT NN IN JJ NNP . Australia 's cricket team has scored 337-9 at stumps on the first day of its first test against India in Melbourne . NNP POS NN NN VBZ VBN CD IN NNS IN DT JJ NN IN PRP$ JJ NN IN NNP IN NNP . Matthew Hayden scored his 28th test century in the match , making 124 before being caught out by Sourav Ganguly . NNP NNP VBD PRP$ JJ NN NN IN DT NN , VBG CD IN VBG VBN RP IN NNP NNP . The century was Hayden 's 19th in Australia , surpassing countrymen Donald Bradman and Ricky Ponting , who have 18 each . DT NN VBD NNP POS JJ IN NNP , VBG NNS NNP NNP CC NNP NNP , WP VBP CD DT . But India 's bowlers put a damper on Australia 's lineup with Anil Kumble May-84 . CC NNP POS NNS VBD DT NN IN NNP POS NN IN NNP NNP CD . Zaheer Khan was Mar-93 for India . NNP NNP VBD CD IN NNP . The test is being played on the Melbourne Cricket Ground in front of more than 65,000 fans . DT NN VBZ VBG VBN IN DT NNP NNP NNP IN NN IN JJR IN CD NNS . Police say that 110 persons were ejected from the grounds Wednesday , most for throwing objects in the air . NNS VBP IN CD NNS VBD VBN IN DT NNS NNP , JJS IN VBG NNS IN DT NN . Twelve people were arrested . CD NNS VBD VBN . A leading U.S. newspaper reports that the Central Intelligence Agency has set up secret joint anti-terrorist centers in more than 20 nations . DT VBG NNP NN VBZ IN DT NNP NNP NNP VBZ VBN RP JJ JJ NN NNS IN JJR IN CD NNS . The Washington Post Friday says the centers may act on tips provided by the CIA , but local agents are used to capture suspected terrorists . DT NNP NNP NNP VBZ DT NNS MD VB IN NNS VBN IN DT NNP , CC JJ NNS VBP VBN TO VB JJ NNS . The newspaper based its report on interviews with current and former U.S. and foreign officials who declined to be named . DT NN VBD PRP$ NN IN NNS IN JJ CC JJ NNP CC JJ NNS WP VBD TO VB VBN . The Post says the secret program is legal and received a huge boost after the September 2001 terrorist attacks . DT NNP VBZ DT JJ NN VBZ JJ CC VBD DT JJ NN IN DT NNP CD JJ NNS . It says increased funding has allowed the CIA to entice a wide variety of countries to work with it , including Indonesia , Uzbekistan and France . PRP VBZ VBN NN VBZ VBN DT NNP TO VB DT JJ NN IN NNS TO VB IN PRP , VBG NNP , NNP CC NNP . The newspaper reports the centers are separate from the secret CIA prisons the Post says exist in several countries . DT NN VBZ DT NNS VBP JJ IN DT JJ NNP NNS DT NNP VBZ VB IN JJ NNS . The CIA had no immediate comment on the report . DT NNP VBD DT JJ NN IN DT NN . The presidential election in Lebanon has been postponed until Friday to give rival political factions more time to agree on a candidate . DT JJ NN IN NNP VBZ VBN VBN IN NNP TO VB JJ JJ NNS RBR NN TO VB IN DT NN . Parliament speaker Nabih Berri announced the delay in a statement , saying the balloting in parliament was moved from Wednesday to Friday . NNP NN NNP NNP VBD DT NN IN DT NN , VBG DT NN IN NN VBD VBN IN NNP TO NNP . The delay is the fourth time voting has been postponed . DT NN VBZ DT JJ NN NN VBZ VBN VBN . The pro-Western governing coalition and the Hezbollah-led opposition are at odds over who will succeed pro-Syrian President Emile Lahoud , whose term ends Friday night . DT JJ NN NN CC DT JJ NN VBP IN NNS IN WP MD VB JJ NNP NNP NNP , WP$ NN VBZ NNP NN . French Foreign Minister Bernard Kouchner and Arab League chief Amr Moussa are in Lebanon holding talks with both sides . JJ NNP NNP NNP NNP CC NNP NNP NN NNP NNP VBP IN NNP VBG NNS IN DT NNS . Lebanon 's government has threatened to use its simple parliamentary majority to elect one of its own members if the factions do not agree on a candidate . NNP POS NN VBZ VBN TO VB PRP$ JJ JJ NN TO VB CD IN PRP$ JJ NNS IN DT NNS VBP RB VB IN DT NN . United Nations Secretary-General Ban Ki-moon visited Lebanon last week and called on leaders there to set aside their differences and elect a new president . NNP NNP NNP NNP NNP VBD NNP JJ NN CC VBD IN NNS RB TO VB RP PRP$ NNS CC VB DT JJ NN . Afghan security officials say Taliban militants have hanged five policeman in southern Afghanistan as a public warning to others . JJ NN NNS VBP NNP NNS VBP VBN CD NN IN JJ NNP IN DT JJ NN TO NNS . The Uruzgan province police chief , Juma Gul Himat , describing the incident Sunday , said the five policemen had been abducted two months ago and were mutilated before being killed and their bodies hung from trees . DT NNP NN NN NN , NNP NNP NNP , VBG DT NN NNP , VBD DT CD NNS VBD VBN VBN CD NNS RB CC VBD VBN IN VBG VBN CC PRP$ NNS VBN IN NNS . In other developments , a provincial police official , Sayed Agha Saqeb says NATO-led forces killed at least 20 Taliban militants in fighting that began Saturday west of Kandahar . IN JJ NNS , DT JJ NN NN , NNP NNP NNP VBZ JJ NNS VBN IN JJS CD NNP NNS IN VBG WDT VBD NNP NN IN NNP . A Taliban spokesman , Yusuf Ahmadi said the Kandahar operation killed only four insurgents , and left many civilians dead . DT NNP NN , NNP NNP VBD DT NNP NN VBD RB CD NNS , CC VBD JJ NNS JJ . Recent violence also claimed the lives of two Canadian soldiers and their interpreter . JJ NN RB VBD DT NNS IN CD JJ NNS CC PRP$ NN . Palestinian activists tore down a section of the Israeli-built barrier that cordons off the West Bank , in a protest that coincides with the 20th anniversary of the fall of the Berlin Wall . JJ NNS VBD RP DT NN IN DT JJ NN WDT VBZ RP DT NNP NNP , IN DT NN WDT VBZ IN DT JJ NN IN DT NN IN DT NNP NNP . Rock-throwing demonstrators cheered Monday as they used a truck to pull down a segment of the wall . JJ NNS VBD NNP IN PRP VBD DT NN TO VB RP DT NN IN DT NN . Israeli troops used tear gas to disperse the protesters . JJ NNS VBD JJ NN TO VB DT NNS . The structure is a combination of concrete barriers , fencing and barbed wire that will measure about 700 kilometers long once construction is finished . DT NN VBZ DT NN IN JJ NNS , NN CC JJ NN WDT MD VB IN CD NNS RB RB NN VBZ VBN . The United Nations estimates the barrier is more than 60 percent complete . DT NNP NNP VBZ DT NN VBZ JJR IN CD NN JJ . Israel says it needs the barrier for security , but Palestinians view it as a land-grab . NNP VBZ PRP VBZ DT NN IN NN , CC NNS VBP PRP IN DT NN . The wall cuts into territory Palestinians want for a future state , putting about 10 percent of the West Bank on the Israeli side of the barrier . DT NN VBZ IN NN NNS VBP IN DT JJ NN , VBG IN CD NN IN DT NNP NNP IN DT JJ NN IN DT NN . Turkish troops have killed three suspected Kurdish rebels during a military offensive in southeastern Turkey . JJ NNS VBP VBN CD JJ NNP NNS IN DT JJ NN IN JJ NNP . Monday 's fighting in Tunceli province occurred as more than 5,000 Turkish troops swept through the mountainous region searching for members of the outlawed Kurdistan Workers Party , known as the PKK . NNP POS NN IN NNP NN VBD IN JJR IN CD JJ NNS VBD IN DT JJ NN VBG IN NNS IN DT JJ NNP NNP NNP , VBN IN DT NNP . Elsewhere in the region , Turkey says rebels kidnapped a policeman after stopping his car at a roadblock in an area close to the borders of Iraq and Syria . RB IN DT NN , NNP VBZ NNS VBD DT NN IN VBG PRP$ NN IN DT NN IN DT NN NN TO DT NNS IN NNP CC NNP . Officials say troops are looking for the officer . NNS VBP NNS VBP VBG IN DT NN . The violence comes days after the Kurdish rebels ended a 60-day unilateral ceasefire with Turkey . DT NN VBZ NNS IN DT JJ NNS VBD DT JJ JJ NN IN NNP . The rebels accuse the Ankara government of ignoring the truce and continuing military operations against rebel fighters . DT NNS VBP DT NNP NN IN VBG DT NN CC VBG JJ NNS IN JJ NNS . Tibet 's exiled spiritual leader , the Dalai Lama , has been admitted to a hospital in India Thursday after complaining of abdominal pains . NNP POS VBN JJ NN , DT NNP NNP , VBZ VBN VBN TO DT NN IN NNP NNP IN VBG IN JJ NNS . His personal secretary said there is no major cause for concern . PRP$ JJ NN VBD EX VBZ DT JJ NN IN NN . Doctors at the hospital where he was admitted in Mumbai tell Reuters news agency that he is ' cheerful . ' NNS IN DT NN WRB PRP VBD VBN IN NNP VBP NNP NN NN IN PRP VBZ `` JJ . `` On Thursday , the Dalai Lama canceled two upcoming foreign trips to undergo medical tests , after experiencing discomfort during recent travels . IN NNP , DT NNP NNP VBD CD JJ JJ NNS TO VB JJ NNS , IN VBG NN IN JJ NNS . His office said the 73-year-old Buddhist leader 's doctors had diagnosed him with exhaustion and recommended that he complete some medical tests . PRP$ NN VBD DT JJ NNP NN POS NNS VBD VBN PRP IN NN CC VBD IN PRP VB DT JJ NNS . The Dalai Lama spends several months a year traveling to promote Tibetan causes . DT NNP NNP VBZ JJ NNS DT NN VBG TO VB JJ NNS . He recently returned to India after a visit to France . PRP RB VBD TO NNP IN DT NN TO NNP . Some African heads of state plan to push for a united continent during an African Union summit that begins Sunday in the Ghanaian capital of Accra . DT JJ NNS IN NN NN TO VB IN DT JJ NN IN DT NNP NNP NN WDT VBZ NNP IN DT JJ NN IN NNP . The three-day summit agenda is almost entirely dedicated to the idea of a United States of Africa . DT JJ NN NN VBZ RB RB VBN TO DT NN IN DT NNP NNP IN NNP . Proponents of the plan argue that a united federation of African nations could exercise more influence and better address problems facing the world 's poorest continent . NNS IN DT NN VBP IN DT JJ NN IN JJ NNS MD VB JJR NN CC JJR NN NNS VBG DT NN POS JJS NN . Although several countries support the idea of a united continent , some regional powers like South Africa favor a more gradual consolidation of regional economic groups . IN JJ NNS VBP DT NN IN DT JJ NN , DT JJ NNS IN NNP NNP VBP DT JJR JJ NN IN JJ JJ NNS . Leaders at the summit will also discuss the conflicts in Darfur and Zimbabwe . NNS IN DT NN MD RB VB DT NNS IN NNP CC NNP . The idea of a united Africa was conceived four decades ago by Ghana 's first president , Kwame Nkrumah . DT NN IN DT JJ NNP VBD VBN CD NNS RB IN NNP POS JJ NN , NNP NNP . Japanese Prime Minister Junichiro Koizumi has renewed Tokyo 's call for a permanent seat on the U.N. Security Council . JJ NNP NNP NNP NNP VBZ VBN NNP POS NN IN DT JJ NN IN DT NNP NNP NNP . Mr. Koizumi , fresh from a landslide election win , addressed world leaders at the United Nations summit in New York on Thursday . NNP NNP , JJ IN DT NN NN NN , VBD NN NNS IN DT NNP NNP NN IN NNP NNP IN NNP . He said Security Council reform is a ' just cause ' for the international community . PRP VBD NNP NNP NN VBZ DT `` RB VB `` IN DT JJ NN . He stressed Japan 's record of pacifism since the end of World War II . PRP VBD NNP POS NN IN NN IN DT NN IN NNP NNP NNP . A proposal by the so-called Group of Four nations - Brazil , India , Germany and Japan - calls for increasing the Security Council to 25 with six new permanent members . DT NN IN DT JJ NNP IN CD NNS IN NNP , NNP , NNP CC NNP : VBZ IN VBG DT NNP NNP TO CD IN CD JJ JJ NNS . But the proposal is opposed by China and the United States and has failed to gain support among other council members . CC DT NN VBZ VBN IN NNP CC DT NNP NNPS CC VBZ VBN TO VB NN IN JJ NN NNS . Europe 's debt crisis got worse Tuesday as a rating agency slashed the credit ratings for the Greek and Portuguese governments . NNP POS NN NN VBD JJR NNP IN DT NN NN VBD DT NN NNS IN DT JJ CC JJ NNS . Standard and Poor 's cut Greek long-term government bonds three levels to speculative or ' junk ' status because of the ' political , economic and budgetary challenges ' facing Athens . NNP CC NNP POS VBD JJ JJ NN NNS CD NNS TO JJ CC `` NN `` NN IN IN DT `` JJ , JJ CC JJ NNS `` VBG NNP . The same agency downgraded Portugal 's sovereign debt by two notches . DT JJ NN VBD NNP POS JJ NN IN CD NNS . S & P said it has growing concerns about the ability of the Greek and Portuguese governments to repay debts . NNP CC NNP VBD PRP VBZ VBG NNS IN DT NN IN DT JJ CC JJ NNS TO VB NNS . The move followed weeks of talks among European nations and the International Monetary Fund about an aid package worth as much as $ 60 billion for Greece . DT NN VBD NNS IN NNS IN JJ NNS CC DT NNP NNP NNP IN DT NN NN JJ RB JJ IN $ CD CD IN NNP . The lower rating means lenders will demand higher interest rates , raising borrowing costs at a time when Greece and Portugal are already struggling with financial issues . DT JJR NN VBZ NNS MD VB JJR NN NNS , VBG NN NNS IN DT NN WRB NNP CC NNP VBP RB VBG IN JJ NNS . The downgrades prompted Greek and Portuguese stocks to fall sharply in Tuesday 's trading . DT NNS VBD JJ CC JJ NNS TO VB RB IN NNP POS NN . China says it is ' sincere ' about establishing diplomatic relations with the Vatican , but has repeated a long-standing requirement that the Holy See acknowledge Taiwan as part of China . NNP VBZ PRP VBZ `` JJ `` IN VBG JJ NNS IN DT NNP , CC VBZ VBN DT JJ NN IN DT NNP NNP VBP NNP IN NN IN NNP . A Chinese Foreign Ministry spokesman , Kong Quan , Tuesday expressed hope that under the new pope , the Vatican will create favorable conditions for establishing relations . DT JJ NNP NNP NN , NNP NNP , NNP VBD NN IN IN DT JJ NN , DT NNP MD VB JJ NNS IN VBG NNS . But he said the Vatican must recognize Taiwan as an ' inseparable part of China . ' CC PRP VBD DT NNP MD VB NNP IN DT `` JJ NN IN NNP . `` Pope Benedict last week invited countries without diplomatic relations with the Vatican to establish ties soon . NNP NNP JJ NN VBD NNS IN JJ NNS IN DT NNP TO VB NNS RB . He did not name the countries , but China , Saudi Arabia and Vietnam are among the nations that do not have diplomatic ties with the Vatican . PRP VBD RB VB DT NNS , CC NNP , NNP NNP CC NNP VBP IN DT NNS WDT VBP RB VB JJ NNS IN DT NNP . China broke relations with the Vatican after the communists took power more than 50 years ago . NNP VBD NNS IN DT NNP IN DT NNS VBD NN JJR IN CD NNS RB . The Vatican , meanwhile , has maintained full diplomatic relations with Taiwan . DT NNP , RB , VBZ VBN JJ JJ NNS IN NNP . Al Jazeera , the Arabic-language television news network , says a telephone caller threatened to blow up the building housing its Beirut bureau because of the network 's coverage of Saturday 's car bomb explosion in Beirut . NNP NNP , DT JJ NN NN NN , VBZ DT NN NN VBD TO VB RP DT NN NN PRP$ NNP NN IN IN DT NN POS NN IN NNP POS NN NN NN IN NNP . Other news organizations also occupy office space in the same building . JJ NN NNS RB JJ NN NN IN DT JJ NN . Al Jazeera says all news agencies in the building continued normal operations . NNP NNP VBZ DT NN NNS IN DT NN VBD JJ NNS . Al Jazeera 's coverage of the bombing contained an interview with Lebanese opposition leader Walid Jumblatt . NNP NNP POS NN IN DT NN VBD DT NN IN JJ NN NN NNP NNP . Mr. Jumblatt alleged that three bombings in Beirut last week were the work of Syrian-backed Lebanese security agents . NNP NNP VBD IN CD NNS IN NNP JJ NN VBD DT NN IN JJ JJ NN NNS . According to Al Jazeera 's website , Mr. Jumblatt said the agents are trying to defend Lebanon 's pro-Syria leadership . VBG TO NNP NNP POS NN , NNP NNP VBD DT NNS VBP VBG TO VB NNP POS JJ NN . Lebanon 's opposition has also accused Syria of involvement in the assassination of former prime minister Rafik al-Hariri . NNP POS NN VBZ RB VBN NNP IN NN IN DT NN IN JJ JJ NN NNP NNP . Lynndie England arrives for a pretrial hearing at Fort Hood , Texas One of the U.S. Army soldiers at the center of the Iraqi prisoner abuse scandal is scheduled to appear in a U.S. military court in Texas , Thursday for a pre-trial hearing and arraignment . NNP NNP VBZ IN DT JJ NN IN NNP NNP , NNP CD IN DT NNP NNP NNS IN DT NN IN DT JJ NN NN NN VBZ VBN TO VB IN DT NNP JJ NN IN NNP , NNP IN DT JJ NN CC NN . Private First Class Lynndie England is charged with maltreatment , conspiracy to maltreat detainees , and committing an indecent act . NNP NNP NNP NNP NNP VBZ VBN IN NN , NN TO VB NNS , CC VBG DT JJ NN . She faces up to 11 years in prison . PRP VBZ RP TO CD NNS IN NN . In May , Private England 's case ended in a mistrial when the presiding judge threw out her guilty plea . IN NNP , NNP NNP POS NN VBD IN DT NN WRB DT VBG NN VBD RP PRP$ JJ NN . The judge said testimony from a key witness indicated that Private England did not know her actions were a crime when she committed them . DT NN VBD NN IN DT JJ NN VBD IN NNP NNP VBD RB VB PRP$ NNS VBD DT NN WRB PRP VBD PRP . To plead guilty under U.S. military law , a defendant must know they were committing a crime . TO VB JJ IN NNP JJ NN , DT NN MD VB PRP VBD VBG DT NN . Photos of Private England mistreating Iraqi detainees at the Abu Ghraib prison sparked international outrage last year . NNP IN NNP NNP VBG JJ NNS IN DT NNP NNP NN VBD JJ NN JJ NN . A U.N. spokeswoman says the United Nations Human Rights Council will hold a special meeting later this week to examine Israel 's military offensive in Lebanon . DT NNP NN VBZ DT NNP NNP NNP NNP NNP MD VB DT JJ NN RB DT NN TO VB NNP POS JJ NN IN NNP . The spokeswoman said Tuesday Tunisia requested the meeting on behalf of the 57-member Organization of the Islamic Conference . DT NN VBD NNP NNP VBD DT NN IN NN IN DT JJ NNP IN DT NNP NNP . The Islamic countries called on the council to take action on what they called ' gross violations of human rights by Israel in Lebanon . ' DT JJ NNS VBN IN DT NN TO VB NN IN WP PRP VBD `` JJ NNS IN JJ NNS IN NNP IN NNP . `` China , Russia and South Africa also signed the request . NNP , NNP CC NNP NNP RB VBD DT NN . In a similar session in July , the council voted 29 to 11 to condemn Israel 's military operations in the Gaza Strip . IN DT JJ NN IN NNP , DT NN VBD CD TO CD TO VB NNP POS JJ NNS IN DT NNP NNP . Israel 's ambassador rejected the July resolution and accused the council of bias against the Jewish state . NNP POS NN VBD DT NNP NN CC VBD DT NN IN NN IN DT JJ NN . Russia and France are calling on Iran to stop all uranium enrichment . NNP CC NNP VBP VBG IN NNP TO VB DT NN NN . The two countries issued their statement Tuesday during a visit to Moscow by French Prime Minister Dominique de Villepin . DT CD NNS VBD PRP$ NN NNP IN DT NN TO NNP IN JJ NNP NNP NNP NNP NNP . Iran resumed small-scale uranium enrichment Monday -- an initial step in the process of producing fuel for nuclear reactors or atomic weapons . NNP VBD JJ NN NN NNP IN DT JJ NN IN DT NN IN VBG NN IN JJ NNS CC JJ NNS . Iran had threatened to resume enrichment after the International Atomic Energy Agency referred it this month to the U.N. Security Council for possible sanctions . NNP VBD VBN TO VB NN IN DT NNP NNP NNP NNP VBD PRP DT NN TO DT NNP NNP NNP IN JJ NNS . China , another permanent member of the U.N. Security Council , called Tuesday for continued diplomatic efforts to ease growing tensions over Iran 's nuclear program . NNP , DT JJ NN IN DT NNP NNP NNP , VBD NNP IN JJ JJ NNS TO VB VBG NNS IN NNP POS JJ NN . U.N. Secretary-General Kofi Annan , who met with President Bush in Washington Monday , said he hopes there will be no steps to escalate the situation . NNP NNP NNP NNP , WP VBD IN NNP NNP IN NNP NNP , VBD PRP VBZ EX MD VB DT NNS TO VB DT NN . Iran denies Western charges that it is trying to build atomic weapons . NNP VBZ JJ NNS IN PRP VBZ VBG TO VB JJ NNS . Ukraine 's president , Viktor Yushchenko , is to address a joint meeting of the U.S. Congress next week . NNP POS NN , NNP NNP , VBZ TO VB DT JJ NN IN DT NNP NNP JJ NN . Senate Majority leader Bill Frist and House Speaker Dennis Hastert say they look forward to hearing from the Ukrainian leader April 6 . NNP NNP NN NNP NNP CC NNP NNP NNP NNP VBP PRP VBP RB TO NN IN DT JJ NN NNP CD . In a statement , the lawmakers said Mr. Yushchenko 's election last year is inspiring the spread of democracy throughout the world . IN DT NN , DT NNS VBD NNP NNP POS NN JJ NN VBZ VBG DT NN IN NN IN DT NN . Mr. Yushchenko meets President Bush at the White House Monday . NNP NNP VBZ NNP NNP IN DT NNP NNP NNP . Last year 's presidential election in Ukraine was a bitter contest marred by controversy . JJ NN POS JJ NN IN NNP VBD DT JJ NN VBN IN NN . Mr. Yushchenko defeated his rival Viktor Yanukovych in a repeat election held after Ukraine 's Supreme Court threw out the results of a previous vote because of widespread fraud . NNP NNP VBD PRP$ JJ NNP NNP IN DT NN NN VBN IN NNP POS NNP NNP VBD RP DT NNS IN DT JJ NN IN IN JJ NN . U.S. military officials in Iraq say American and Iraqi forces have launched operations against insurgents in the northern city of Mosul . NNP JJ NNS IN NNP VBP JJ CC JJ NNS VBP VBN NNS IN NNS IN DT JJ NN IN NNP . Spokeswoman Captain Angela Bowman told reporters in Iraq 's third largest city that forces are moving in Tuesday to secure police stations hit hard by insurgents in recent days . NN NNP NNP NNP VBD NNS IN NNP POS JJ JJS NN IN NNS VBP VBG IN NNP TO VB NN NNS VBN JJ IN NNS IN JJ NNS . The most intense fighting in Iraq has been shifting from Fallujah to Mosul and other areas . DT RBS JJ NN IN NNP VBZ VBN VBG IN NNP TO NNP CC JJ NNS . On Monday , U.S. Marine officials said coalition forces were now able to move throughout Fallujah after a week of heavy battles to oust entrenched militants , but were still finding pockets of resistance . IN NNP , NNP NNP NNS VBD NN NNS VBD RB JJ TO VB IN NNP IN DT NN IN JJ NNS TO VB JJ NNS , CC VBD RB VBG NNS IN NN . Elsewhere , officials say insurgents killed an American soldier in centraql Iraq , near Balad . RB , NNS VBP NNS VBD DT JJ NN IN JJ NNP , IN NNP . Kuwait authorities say a policeman , a suspected militant and a Bahraini man have been killed in a shootout near Kuwait City . NNP NNS VBP DT NN , DT JJ NN CC DT JJ NN VBP VBN VBN IN DT NN IN NNP NNP . The Interior Ministry said four security officers and a second gunman were wounded in the firefight , which erupted when police stormed a suspected militant hideout . DT NNP NNP VBD CD NN NNS CC DT JJ NN VBD VBN IN DT NN , WDT VBD WRB NNS VBD DT JJ JJ NN . At least one other suspect was taken into custody . IN JJS CD JJ NN VBD VBN IN NN . The police raid came after U.S. and Kuwaiti authorities issued statements warning of the likelihood of more attacks against Western targets in the emirate . DT NN NN VBD IN NNP CC JJ NNS VBD NNS NN IN DT NN IN JJR NNS IN JJ NNS IN DT NN . It was the third such clash in Kuwait this month . PRP VBD DT JJ JJ NN IN NNP DT NN . Two security officers and two gunmen were killed in the earlier violence . CD NN NNS CC CD NNS VBD VBN IN DT JJR NN . Pakistan and India have begun two days of talks in Islamabad on a proposed multi-billion dollar pipeline that would carry gas from Iran into India through Pakistan . NNP CC NNP VBP VBN CD NNS IN NNS IN NNP IN DT VBN JJ NN NN WDT MD VB NN IN NNP IN NNP IN NNP . It is the first meeting between India 's Oil Minister Mani Shankar Aiyar and his Pakistani counterpart , Amanullah Khan Jadoon , on the 2,700 kilometer project . PRP VBZ DT JJ NN IN NNP POS NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP NNP , IN DT CD NN NN . Pakistan 's foreign ministry spokesman said recently the bilateral talks will be followed later this year by three-way discussions involving Iranian officials . NNP POS JJ NN NN VBD RB DT JJ NNS MD VB VBN RBR DT NN IN JJ NNS VBG JJ NNS . Washington opposes the project over concerns about Iran 's nuclear program . NNP VBZ DT NN IN NNS IN NNP POS JJ NN . But Mr. Aiyar dismissed U.S. opposition , saying India will not be pressured by any country . CC NNP NNP VBD NNP NN , VBG NNP MD RB VB VBN IN DT NN . Burma has released thousands of prisoners to mark the 57th anniversary of the country 's independence from Britain . NNP VBZ VBN NNS IN NNS TO VB DT JJ NN IN DT NN POS NN IN NNP . A government-run newspaper , New Light of Myanmar , says 5,588 prisoners have been freed on humanitarian grounds to coincide with the holiday . DT JJ NN , NNP NNP IN NNP , VBZ CD NNS VBP VBN VBN IN JJ NNS TO VB IN DT NN . Monday 's gesture differs from three previous mass releases , which were conducted because of what the junta described as irregularities in arrests by the now dismantled National Intelligence bureau . NNP POS NN NNS IN CD JJ NN NNS , WDT VBD VBN IN IN WP DT NN VBD IN NNS IN NNS IN DT RB JJ NNP NNP NN . The bureau 's former chief , former prime minister Khin Nyunt , has been placed under house arrest on accusations of corruption . DT NN POS JJ NN , JJ JJ NN NNP NNP , VBZ VBN VBN IN NN NN IN NNS IN NN . The government has released nearly 20,000 prisoners since early November . DT NN VBZ VBN RB CD NNS IN JJ NNP . Although about 50 dissidents were freed in prior releases , there was no indication that any political prisoners were let go this time . IN IN CD NNS VBD VBN IN JJ NNS , EX VBD DT NN IN DT JJ NNS VBD VBN VB DT NN . Human Rights Watch says a climate of fear threatens the Democratic Republic of Congo 's first elections in 40 years . NNP NNP NNP VBZ DT NN IN NN VBZ DT JJ NNP IN NNP POS JJ NNS IN CD NNS . The New York-based rights group says there was an increase in the number of attacks and detentions of journalists , human rights defenders and members of the political opposition in April and May . DT NNP JJ NNS NN VBZ EX VBD DT NN IN DT NN IN NNS CC NNS IN NNS , JJ NNS NNS CC NNS IN DT JJ NN IN NNP CC NNP . Human Rights Watch said Congolese authorities have failed to provide protection to the groups , and charged that security forces were involved in some of the attacks . NNP NNP NNP VBD JJ NNS VBP VBN TO VB NN TO DT NNS , CC VBD IN NN NNS VBD VBN IN DT IN DT NNS . The rights group urged a U.N. Security Council delegation set to visit the DRC Sunday to speak out against the intimidation . DT NNS NN VBD DT NNP NNP NNP NN VBD TO VB DT NNP NNP TO VB RP IN DT NN . It said the elections , set for July 30 , can not be free and fair if the press and civil society are too afraid to speak out or engage in legitimate political debate . PRP VBD DT NNS , VBN IN NNP CD , MD RB VB JJ CC JJ IN DT NN CC JJ NN VBP RB JJ TO VB RP CC VB IN JJ JJ NN . The DRC has been struggling to recover from a five-year civil war that left an estimated four million people dead . DT NNP VBZ VBN VBG TO VB IN DT JJ JJ NN WDT VBD DT VBN CD CD NNS JJ . A moderate earthquake has sent people running away from the coastline of Indonesia 's Sulawesi island , less than a week after a powerful quake off Java island generated a tsunami that killed nearly 700 people . DT JJ NN VBZ VBN NNS VBG RB IN DT NN IN NNP POS NNP NN , JJR IN DT NN IN DT JJ NN IN NNP NN VBD DT NN WDT VBD RB CD NNS . The latest quake , of 6.1 magnitude , struck deep under the waters of Tomini Bay off northern Sulawesi 's Gorontalo province Sunday . DT JJS NN , IN CD NN , VBD JJ IN DT NNS IN NNP NNP IN JJ NNP POS NNP NN NNP . Fears of a tsunami proved unfounded , however , and there are no reports of damage or injuries . NNS IN DT NN VBD JJ , RB , CC EX VBP DT NNS IN NN CC NNS . Japanese and U.S. monitoring agencies in the Pacific Ocean did not issue a tsunami warning after the quake . JJ CC NNP NN NNS IN DT NNP NNP VBD RB VB DT NN NN IN DT NN . A powerful earthquake off the coast of Java last Monday generated a crushing wave that barreled through homes , restaurants and hotels in the Pangandaran area . DT JJ NN IN DT NN IN NNP JJ NNP VBD DT JJ NN WDT VBD IN NNS , NNS CC NNS IN DT NNP NN . Indonesian officials say the death toll from that tsunami has climbed to at least 668 . JJ NNS VBP DT NN NN IN DT NN VBZ VBN TO IN JJS CD . Thousands of prisoners in Kenya reportedly volunteered to skip lunch on New Year 's day so that the food could be sent to those suffering from famine . NNS IN NNS IN NNP RB VBD TO VB NN IN NNP NNP POS NN RB IN DT NN MD VB VBN TO DT VBG IN NN . They skipped the meal after President Mwai Kibaki declared Kenya 's famine a national disaster and asked for more than $ 150 million in relief aid . PRP VBD DT NN IN NNP NNP NNP VBD NNP POS NN DT JJ NN CC VBD IN JJR IN $ CD CD IN NN NN . Inadequate rainfall during Kenya 's rainy season has caused crop failure and the depletion of livestock herds . JJ NN IN NNP POS NN NN VBZ VBN NN NN CC DT NN IN NN NNS . President Kibaki said in his New Year 's address that nearly one in 10 Kenyans will need famine relief for the next six months . NNP NNP VBD IN PRP$ NNP NNP POS NN IN RB CD IN CD NNS MD VB NN NN IN DT JJ CD NNS . At least 20 people and thousands of livestock have died as a result of the drought and famine . IN JJS CD NNS CC NNS IN NN VBP VBN IN DT NN IN DT NN CC NN . President Bush is expected to nominate one of his closest friends , Karen Hughes , to lead a State Department effort to improve the reputation of the United States among Muslims in the Arab world . NNP NNP VBZ VBN TO VB CD IN PRP$ JJS NNS , NNP NNP , TO VB DT NNP NNP NN TO VB DT NN IN DT NNP NNPS IN NNPS IN DT JJ NN . The 48-year-old Ms. Hughes is expected to be nominated next week as Under Secretary of State for Public Diplomacy and Public Affairs , a position that requires Senate confirmation . DT JJ NNP NNP VBZ VBN TO VB VBN JJ NN IN IN NNP IN NNP IN NNP NNP CC NNP NNP , DT NN WDT VBZ NNP NN . Ms. Hughes will join Secretary of State Condoleezza Rice in leading the president 's push for democracy in the Middle East . NNP NNP MD VB NNP IN NNP NNP NNP IN VBG DT NN POS NN IN NN IN DT NNP NNP . Ms. Hughes has been one of President Bush 's closest advisors since he became the governor of Texas 10 years ago . NNP NNP VBZ VBN CD IN NNP NNP POS JJS NNS IN PRP VBD DT NN IN NNP CD NNS RB . The position of Under Secretary for Public Diplomacy has been vacant since last June when Margaret Tutwiler resigned after only six months on the job . DT NN IN IN NNP IN NNP NNP VBZ VBN JJ IN JJ NNP WRB NNP NNP VBD IN RB CD NNS IN DT NN . A Burmese aid group says Burma 's military government has launched a new offensive along the country 's eastern border with Thailand . DT JJ NN NN VBZ NNP POS JJ NN VBZ VBN DT JJ NN IN DT NN POS JJ NN IN NNP . The Free Burma Rangers says Burmese forces have displaced thousands of villagers in Karen state , burning their homes and rice crops . DT NNP NNP NNP VBZ JJ NNS VBP VBN NNS IN NNS IN NNP NN , VBG PRP$ NNS CC NN NNS . The group says nearly 5000 villagers are hiding in jungle and mountain areas of Burma . DT NN VBZ RB CD NNS VBP VBG IN NN CC NN NNS IN NNP . The U.S. Campaign for Burma last week reported similar attacks . DT NNP NN IN NNP JJ NN VBD JJ NNS . The human right group said the attacks were aimed at bringing eastern Burma , which has historically been under control of Burma 's ethnic minorities , under the control of the country 's military government . DT JJ NN NN VBD DT NNS VBD VBN IN VBG JJ NNP , WDT VBZ RB VBN IN NN IN NNP POS JJ NNS , IN DT NN IN DT NN POS JJ NN . Rights groups say more than 5,00,000 villagers are believed to have been forced from their homes in eastern Burma over the past decade . NNS NNS VBP JJR IN CD NNS VBP VBN TO VB VBN VBN IN PRP$ NNS IN JJ NNP IN DT JJ NN . Spanish authorities say firefighters are making progress against wildfires that have scorched large parts of the Canary Islands . JJ NNS VBP NNS VBP VBG NN IN NNS WDT VBP VBN JJ NNS IN DT NNP NNP . Officials said Wednesday the fires on the main islands of Tenerife and Gran Canaria had ' stabilized ' as winds eased and temperatures moderated . NNS VBD NNP DT NNS IN DT JJ NNS IN NNP CC NNP NNP VBD `` VBN `` IN NNS VBD CC NNS VBD . Spanish Prime Minister Jose Luis Rodriguez Zapatero inspected the damage and promised special government aid . JJ NNP NNP NNP NNP NNP NNP VBD DT NN CC VBD JJ NN NN . Authorities say a quarter of the forests on both islands have been incinerated , along with habitats of rare plants and animals . NNS VBP DT NN IN DT NNS IN DT NNS VBP VBN VBN , IN IN NNS IN JJ NNS CC NNS . The blazes have not reached coastal resorts popular with European tourists . DT NNS VBP RB VBN JJ NNS JJ IN JJ NNS . Environmentalists call the fires a catastrophe . NNS VBP DT NNS DT NN . About 9,000 people were in emergency shelters on Tenerife Wednesday , while most of the 5,000 displaced people on Gran Canaria have begun returning home . IN CD NNS VBD IN NN NNS IN NNP NNP , IN JJS IN DT CD JJ NNS IN NNP NNP VBP VBN VBG NN . Tenerife authorities say they suspect arsonists started the wildfire on the island . NNP NNS VBP PRP VBP NNS VBD DT NN IN DT NN . Police on Gran Canaria are holding a forest worker who confessed to starting a fire there last Friday . NNS IN NNP NNP VBP VBG DT NN NN WP VBD TO VBG DT NN RB JJ NNP . A group of prominent political religious and business figures , led by former Czech President Vaclav Havel , has criticized Russia 's handling of a separatist rebellion in Chechnya . DT NN IN JJ JJ NN CC NN NNS , VBN IN JJ JJ NNP NNP NNP , VBZ VBN NNP POS NN IN DT JJ NN IN NNP . A letter by the group Wednesday accuses Russian President Vladimir Putin of using the war in Chechnya to take away people 's freedoms and re-establish an autocracy . DT NN IN DT NN NNP VBZ JJ NNP NNP NNP IN VBG DT NN IN NNP TO VB RP NNS POS NNS CC VB DT NN . In addition to Havel , the authors of the letter include former Irish President Mary Robinson , retired South African Archbishop Desmond Tutu , and billionaire George Soros . IN NN TO NNP , DT NNS IN DT NN VBP JJ JJ NNP NNP NNP , VBN NNP JJ NN NNP NNP , CC NN NNP NNP . The letter appeared in a Prague newspaper , the Mlada Fronta Dnes , Wednesday as the Russian leader was due to begin a visit to the Czech capital . DT NN VBD IN DT NNP NN , DT NNP NNP NNP , NNP IN DT JJ NN VBD JJ TO VB DT NN TO DT JJ NN . Russian troops battled separatist rebels in Chechnya for several years in the 1990s , but the fighting has subsided in recent years with pro-Russian forces controlling much of the republic . JJ NNS VBD JJ NNS IN NNP IN JJ NNS IN DT NNS , CC DT NN VBZ VBN IN JJ NNS IN JJ NNS VBG NN IN DT NN . Cuban President Raul Castro says the ruling Communist Party will hold a congress in April , the first party congress to be held in Cuba since 1997 . JJ NNP NNP NNP VBZ DT NN NNP NNP MD VB DT NN IN NNP , DT JJ NN NN TO VB VBN IN NNP IN CD . Mr. Castro said the island 's leaders will meet to chart a new economic future for the country . NNP NNP VBD DT NN POS NNS MD VB TO VB DT JJ JJ NN IN DT NN . He made the announcement after meeting Monday with Venezuelan President Hugo Chavez . PRP VBD DT NN IN VBG NNP IN JJ NNP NNP NNP . There has been intense speculation that Fidel Castro 's future might be discussed at the next Communist Party congress , but Raul Castro did not mention his brother Monday . EX VBZ VBN JJ NN IN NNP NNP POS NN MD VB VBN IN DT JJ NNP NNP NN , CC NNP NNP VBD RB VB PRP$ NN NNP . Fidel Castro , 84 , stepped down as president of Cuba in 2006 , but remains head of the Communist Party . NNP NNP , CD , VBD RP IN NN IN NNP IN CD , CC VBZ NN IN DT NNP NNP . Vatican officials say Pope John Paul II is getting nutrition through a nasal tube to boost his calorie intake and help what they call his ' slow and progressive ' recovery from throat surgery . NNP NNS VBP NNP NNP NNP NNP VBZ VBG NN IN DT JJ NN TO VB PRP$ NN NN CC VB WP PRP VBP PRP$ `` JJ CC JJ `` NN IN NN NN . A Vatican spokesman said the pontiff spends many hours in an armchair , celebrates Mass and works in contact with his aides in directly following church activities . DT NNP NN VBD DT NN VBZ JJ NNS IN DT NN , VBZ NNP CC VBZ IN NN IN PRP$ NNS IN RB VBG NN NNS . He issued the statement shortly after the 84-year-old pontiff appeared at his window overlooking Saint Peter 's Square Wednesday , to bless the faithful . PRP VBD DT NN RB IN DT JJ NN VBD IN PRP$ NN VBG NNP NNP POS NNP NNP , TO VB DT NN . The crowd greeted the pope with cheers and applause when he raised his hand to bless them . DT NN VBD DT NN IN NNS CC NN WRB PRP VBD PRP$ NN TO JJ PRP . But he was unable to speak when an aide put a microphone in front of him . CC PRP VBD JJ TO VB WRB DT NN VBD DT NN IN NN IN PRP . The Vatican statement was the first official medical report on the pope since March 10 , three days before he was discharged from a hospital following a tracheotomy . DT NNP NN VBD DT JJ JJ JJ NN IN DT NN IN NNP CD , CD NNS IN PRP VBD VBN IN DT NN VBG DT NN . A group of Palestinian gunmen have briefly seized Bethelehem city hall in the West Bank , apparently demanding financial assistance from the Palestinian Authority . DT NN IN JJ NNS VBP RB VBN NNP NN NN IN DT NNP NNP , RB VBG JJ NN IN DT JJ NNP . About 20 gunmen appeared on the roof of the city hall Tuesday , ordered all workers out and threatened to open fire . IN CD NNS VBD IN DT NN IN DT NN NN NNP , VBD DT NNS IN CC VBD TO VB NN . Palestinian police sealed off the streets leading to the building on Manger Square , near the Church of the Nativity . JJ NN VBD RP DT NNS VBG TO DT NN IN NNP NNP , IN DT NN IN DT NN . Officials say the gunmen were linked to the al-Aqsa Martyrs Brigades militant faction of the ruling Fatah movement of Palestinian leader Mahmoud Abbas . NNS VBP DT NNS VBD VBN TO DT NNP NNP NNP JJ NN IN DT NN NNP NN IN JJ NN NNP NNP . They were demanding money for about 300 members . PRP VBD VBG NN IN IN CD NNS . The gunmen left the building after about an hour , following talks with the governor of Bethlehem . DT NNS VBD DT NN IN IN DT NN , VBG NNS IN DT NN IN NNP . It was not immediately clear how the standoff was resolved . PRP VBD RB RB JJ WRB DT NN VBD VBN . The incident is another sign of growing turmoil within the Palestinian territories ahead of a January parliamentary election . DT NN VBZ DT NN IN VBG NN IN DT JJ NNS RB IN DT NNP JJ NN . Pakistani officials say five militants , including suicide bombers , have been killed while trying to enter a military training area in the country 's northwest . JJ NNS VBP CD NNS , VBG NN NNS , VBP VBN VBN IN VBG TO VB DT JJ NN NN IN DT NN POS NN . Authorities say security forces opened fire on the attackers Tuesday as they tried to infiltrate the training center in the town of Mardan , near the Afghan border . NNS VBP NN NNS VBD NN IN DT NNS NNP IN PRP VBD TO VB DT NN NN IN DT NN IN NNP , IN DT JJ NN . Officials say three suicide bombers detonated their explosives during the gunbattle , while two other militants were killed by troops . NNS VBP CD NN NNS VBD PRP$ NNS IN DT NN , IN CD JJ NNS VBD VBN IN NNS . Four soldiers were wounded in the attack . CD NNS VBD VBN IN DT NN . There was no immediate claim of responsibility , but Taliban militants have carried out attacks in the area in the past . EX VBD DT JJ NN IN NN , CC NNP NNS VBP VBN RP NNS IN DT NN IN DT NN . Russian President Vladimir Putin says the Kremlin 's opposition to independence for Kosovo is based on international law and a desire for regional stability . JJ NNP NNP NNP VBZ DT NNP POS NN TO NN IN NNP VBZ VBN IN JJ NN CC DT NN IN JJ NN . Mr. Putin said during talks with Serbian President Boris Tadic Sunday that Russia 's position is not based on what he calls ethnic or historical considerations . NNP NNP VBD IN NNS IN JJ NNP NNP NNP NNP IN NNP POS NN VBZ RB VBN IN WP PRP VBZ JJ CC JJ NNS . Mr. Tadic repeated Serbia 's opposition to an independent Kosovo , but said he is willing to compromise . NNP NNP VBD NNP POS NN TO DT JJ NNP , CC VBD PRP VBZ JJ TO VB . Kosovo is an ethnic Albanian majority province of Serbia . NNP VBZ DT JJ JJ NN NN IN NNP . The United Nations Security Council is considering a draft resolution that backs a U.N. envoy 's plan for supervised independence for the region . DT NNP NNP NNP NNP VBZ VBG DT NN NN WDT VBZ DT NNP NN POS NN IN JJ NN IN DT NN . Russia , a traditional Serbian ally , has hinted it would veto the resolution . NNP , DT JJ JJ NN , VBZ VBN PRP MD VB DT NN . Kosovo has been under U.N. supervision since 1999 , when NATO airstrikes drove out Serbian and Yugoslav forces waging violence against the ethnic Albanians . NNP VBZ VBN IN NNP NN IN CD , WRB NNP NNS VBD RP JJ CC JJ NNS VBG NN IN DT JJ NNS . South Korea and China have canceled meetings with top Japanese officials to protest Japanese Prime Minister Junichiro Koizumi 's visit to a controversial war shrine . NNP NNP CC NNP VBP VBN NNS IN JJ JJ NNS TO VB JJ NNP NNP NNP NNP POS NN TO DT JJ NN NN . South Korean Foreign Minister Ban Ki-moon said Wednesday he had called off a trip to Japan , saying the visit would not be ' appropriate . ' NNP JJ NNP NNP NNP NNP VBD NNP PRP VBD VBN RP DT NN TO NNP , VBG DT NN MD RB VB `` JJ . `` Officials in Seoul also say President Roh Moo-hyun may cancel a summit with Mr. Koizumi , expected to take place later this year . NNS IN NNP RB VBP NNP NNP NNP MD VB DT NN IN NNP NNP , VBD TO VB NN RB DT NN . Tuesday , China canceled a trip to Beijing by Japan 's foreign minister , saying the visit was not timely given the current situation . NNP , NNP VBD DT NN TO NNP IN NNP POS JJ NN , VBG DT NN VBD RB JJ VBN DT JJ NN . The Yasukuni shrine honors 2.5 million Japanese war dead , including convicted war criminals . DT NNP NN NNS CD CD JJ NN NN , VBG VBN NN NNS . Critics say Yasukuni represents Japan 's past military aggression , but Mr. Koizumi says his visits are to pray for peace . NNS VBP NNP VBZ NNP POS JJ JJ NN , CC NNP NNP VBZ PRP$ NNS VBP TO VB IN NN . President Bush says sanctions are a ' real possibility ' against Iran for its controversial nuclear program . NNP NNP VBZ NNS VBP DT `` JJ NN `` IN NNP IN PRP$ JJ JJ NN . Interviewed Friday on the CBS television network , Mr. Bush said a free world can not allow Iran to have a nuclear weapon . VBN NNP IN DT NNP NN NN , NNP NNP VBD DT JJ NN MD RB VB NNP TO VB DT JJ NN . Mr. Bush said he is open to all possible options for dealing with Iran , including military intervention . NNP NNP VBD PRP VBZ JJ TO DT JJ NNS IN VBG IN NNP , VBG JJ NN . But he said that would be the last option . CC PRP VBD DT MD VB DT JJ NN . In Tehran , the chief of Iran 's Revolutionary Guards , General Yahya Rahim Safavi , said Saturday his country would use ballistic missiles to defend itself if attacked . IN NNP , DT NN IN NNP POS NNP NNPS , NNP NNP NNP NNP , VBD NNP PRP$ NN MD VB JJ NNS TO VB PRP IN VBN . On Friday , the U.S. Senate voted unanimously to condemn Iran 's nuclear program , and to support referring Tehran to the United Nations Security Council for allegedly violating the Nuclear Non-Proliferation Treaty . IN NNP , DT NNP NNP VBD RB TO VB NNP POS JJ NN , CC TO VB VBG NNP TO DT NNP NNP NNP NNP IN RB VBG DT NNP NNP NNP . The International Atomic Energy Agency meets February 2 in Vienna to discuss the Iran nuclear standoff . DT NNP NNP NNP NNP VBZ NNP CD IN NNP TO VB DT NNP JJ NN . A brief gunbattle between rival Fatah factions erupted outside the Gaza headquarters of Palestinian President Mahmoud Abbas Wednesday , as the ruling party prepared to register its list of candidates for January 's parlimentary elections . DT JJ NN IN JJ NNP NNS VBD IN DT NNP NN IN JJ NNP NNP NNP NNP , IN DT NN NN VBD TO VB PRP$ NN IN NNS IN NNP POS JJ NNS . Witnesses say at least three people were wounded . NNS VBP IN JJS CD NNS VBD VBN . The clash occurred after Fatah gunmen stormed the building demanding that the party respect the results of recent primary elections . DT NN VBD IN NNP NNS VBD DT NN VBG IN DT NN VB DT NNS IN JJ JJ NNS . Mr. Abbas has decided to appoint candidates after canceling the results of the primaries in Gaza and some other areas where balloting was marred by violence and fraud . NNP NNP VBZ VBN TO VB NNS IN VBG DT NNS IN DT NNS IN NNP CC DT JJ NNS WRB NN VBD VBN IN NN CC NN . Some hard-liners fear they will not be properly represented in the Fatah list . DT NNS VBP PRP MD RB VB RB VBN IN DT NNP NN . On Tuesday , a flare-up of election-related violence in Gaza forced Palestinian election officials to close their offices in the there and in the West Bank . IN NNP , DT NN IN JJ NN IN NNP VBD JJ NN NNS TO VB PRP$ NNS IN DT EX CC IN DT NNP NNP . The offices are to open later today . DT NNS VBP TO VB RB NN . Mr. Abbas has been struggling to contain internal unrest since Israel pulled out of Gaza in September . NNP NNP VBZ VBN VBG TO VB JJ NN IN NNP VBD IN IN NNP IN NNP . U.S. troops and Iraqi security forces have detained 49 suspected insurgents north of Baghdad , as operations continue to secure the country ahead of January 's election . NNP NNS CC JJ NN NNS VBP VBN CD JJ NNS NN IN NNP , IN NNS VBP TO VB DT NN RB IN NNP POS NN . The U.S. military says the pre-dawn raid Friday was in the town of Duluiyah , in the insurgent-plagued Sunni Triangle north and west of Baghdad . DT NNP NN VBZ DT JJ NN NNP VBD IN DT NN IN NNP , IN DT JJ NNP NNP NN CC NN IN NNP . Meanwhile , in Baghdad , firefighters extinguished a blaze at the city 's main oil refinery , which was attacked by saboteurs late Thursday . RB , IN NNP , NNS VBD DT NN IN DT NN POS JJ NN NN , WDT VBD VBN IN NNS JJ NNP . Also Friday , near Fallujah , the body of an Iraqi National Guardsman was found with a note warning others against working with U.S.-led forces . RB NNP , IN NNP , DT NN IN DT JJ NNP NNP VBD VBN IN DT NN VBG NNS IN VBG IN JJ NNS . Iraq 's security forces have been the main target of insurgent violence . NNP POS NN NNS VBP VBN DT JJ NN IN JJ NN . And South Korea 's parliament overwhelmingly approved keeping its 3,600 troops in northern Iraq for another year . CC NNP NNP POS NN RB VBD VBG PRP$ CD NNS IN JJ NNP IN DT NN . Pope Benedict has met with the parents of the four-year-old British girl who disappeared from a tourist resort in Portugal in early May . NNP NNP VBZ VBN IN DT NNS IN DT JJ JJ NN WP VBD IN DT NN NN IN NNP IN JJ NNP . The pope Wednesday spoke to Gerry and Kate McCann following his weekly audience in St. Peter 's Square . DT NN NNP VBD TO NNP CC NNP NNP VBG PRP$ JJ NN IN NNP NNP POS NNP . The pontiff blessed a photograph of their daughter , Madeleine , who disappeared when the parents left her and two siblings in a resort hotel while they went to dinner . DT NN VBD DT NN IN PRP$ NN , NNP , WP VBD WRB DT NNS VBD PRP CC CD NNS IN DT NN NN IN PRP VBD TO NN . Kate McCann said the pope told her he would continue to pray for Madeleine 's safe return . NNP NNP VBD DT NN VBD PRP PRP MD VB TO VB IN NNP POS JJ NN . The couple are devout Catholics , but Gerry McCann said he had conflicting emotions about meeting the pope because of the circumstances . DT NN VBP JJ NNS , CC NNP NNP VBD PRP VBD VBG NNS IN VBG DT NN IN IN DT NNS . The McCann 's are also planning to travel to Spain and Germany in their continued campaign to publicize their daughter 's disappearance . DT NNP POS VBP RB VBG TO VB TO NNP CC NNP IN PRP$ VBN NN TO VB PRP$ NN POS NN . A public outcry in Britain and Portugal at the apparent abduction of young Madeleine has prompted politicians and celebrities to offer their support . DT JJ NN IN NNP CC NNP IN DT JJ NN IN JJ NNP VBZ VBN NNS CC NNS TO VB PRP$ NN . A leading human rights group is criticizing what it calls the refusal by the United States and other western countries to intervene in Sudan 's troubled Darfur region . DT VBG JJ NNS NN VBZ VBG WP PRP VBZ DT NN IN DT NNP NNPS CC JJ JJ NNS TO VB IN NNP POS JJ NNP NN . In its annual report , Human Rights Watch says western countries are wrong to leave peacekeeping duties in Darfur to the African Union , which the group calls a new institution with no peacekeeping experience . IN PRP$ JJ NN , NNP NNP NNP VBZ JJ NNS VBP JJ TO VB VBG NNS IN NNP TO DT NNP NNP , WDT DT NN VBZ DT JJ NN IN DT NN NN . Last year , the African Union began sending peacekeepers to Darfur , where two years of fighting between rebels and government-backed militias have claimed an estimated 70,000 lives . JJ NN , DT NNP NNP VBD VBG NNS TO NNP , WRB CD NNS IN VBG IN NNS CC JJ NNS VBP VBN DT JJ CD NNS . On another issue , the HRW report says the abuse of prisoners by U.S. soldiers at Abu Ghraib prison in Iraq weakened the worldwide system for protecting human rights . IN DT NN , DT NNP NN VBZ DT NN IN NNS IN NNP NNS IN NNP NNP NN IN NNP VBD DT JJ NN IN VBG JJ NNS . The report also condemns attacks on the rights of sexual minorities around the world . DT NN RB VBZ NNS IN DT NNS IN JJ NNS IN DT NN . The Supreme Court of Pakistan has given the country 's election commission 30 days to register all eligible voters left out of draft electoral lists . DT NNP NNP IN NNP VBZ VBN DT NN POS NN NN CD NNS TO VB DT JJ NNS VBD IN IN NN JJ NNS . The petition was filed by former Prime Minister Benazir Bhutto and her opposition Pakistan People 's Party . DT NN VBD VBN IN JJ NNP NNP NNP NNP CC PRP$ NN NNP NNP POS NNP . It contends that more than 20 million eligible voters had not been enrolled . PRP VBZ IN JJR IN CD CD JJ NNS VBD RB VBN VBN . At a hearing Friday , the election commission requested 140 days to prepare the revised lists . IN DT NN NNP , DT NN NN VBD CD NNS TO VB DT VBN NNS . The two-member bench rejected the request , saying the time period was too long . DT JJ NN VBD DT NN , VBG DT NN NN VBD RB JJ . The court instead granted the commission 30 days to make the necessary changes . DT NN RB VBD DT NN CD NNS TO VB DT JJ NNS . The decision comes a day after Pakistani President Pervez Musharraf decided against declaring a state of emergency that could have delayed elections for a year . DT NN VBZ DT NN IN JJ NNP NNP NNP VBD IN VBG DT NN IN NN WDT MD VB VBN NNS IN DT NN . British diplomat John Sawers says Iran presented no major new proposals at Monday 's last-ditch talks aimed at resolving the standoff over Iran 's nuclear program . JJ NN NNP NNP VBZ NNP VBD DT JJ JJ NNS IN NNP POS JJ NNS VBN IN VBG DT NN IN NNP POS JJ NN . But Iran 's negotiator Javad Vaeedi described the session with Britain , Germany and France in Brussels as positive . CC NNP POS NN NNP NNP VBD DT NN IN NNP , NNP CC NNP IN NNP IN JJ . The talks came before Monday 's meeting in London of the five permanent members of the U.N. Security Council and Germany on Iran 's nuclear program . DT NNS VBD IN NNP POS NN IN NNP IN DT CD JJ NNS IN DT NNP NNP NNP CC NNP IN NNP POS JJ NN . President Bush , speaking at the White House , said there is an international consensus that Iran should not be allowed to develop a nuclear weapon . NNP NNP , NN IN DT NNP NNP , VBD EX VBZ DT JJ NN IN NNP MD RB VB VBN TO VB DT JJ NN . He says U.S. and other officials are working on how to go about achieving that goal . PRP VBZ NNP CC JJ NNS VBP VBG IN WRB TO VB RB VBG DT NN . Later this week , the International Atomic Energy Agency holds an emergency session that could see Iran referred to the U.N. Security Council for possible sanctions . RB DT NN , DT NNP NNP NNP NNP VBZ DT NN NN WDT MD VB NNP VBD TO DT NNP NNP NNP IN JJ NNS . The U.S. unemployment rate fell unexpectedly in July , in one of the strongest signals yet that the worst economic downturn since the Great Depression may be ending . DT NNP NN NN VBD RB IN NNP , IN CD IN DT JJS NNS RB IN DT JJS JJ NN IN DT NNP NNP MD VB VBG . A report from the Labor Department Friday shows the unemployment rate dropped to 9.4 percent last month , compared to 9.5 percent in June . DT NN IN DT NNP NNP NNP VBZ DT NN NN VBD TO CD NN JJ NN , VBN TO CD NN IN NNP . It is the first time the jobless rate has fallen since April 2008 . PRP VBZ DT JJ NN DT JJ NN VBZ VBN IN NNP CD . Employers cut 2,47,000 jobs in July . NNS VBD CD NNS IN NNP . The number is much less than analysts had expected , but still an indication of a weak job market . DT NN VBZ RB JJR IN NNS VBD VBN , CC RB DT NN IN DT JJ NN NN . In total , about 14.5 million people are unemployed in the United States . IN NN , IN CD CD NNS VBP VBN IN DT NNP NNPS . President Barack Obama has said the $ 787 billion economic stimulus plan he signed within months of taking office has stopped the recession from getting worse . NNP NNP NNP VBZ VBN DT $ CD CD JJ NN NN PRP VBD IN NNS IN VBG NN VBZ VBN DT NN IN VBG JJR . Chinese President Hu Jintao is calling for closer economic and cultural relations with Taiwan to maintain peace in the region , and to curb what he calls the island 's ' secessionist activities . ' JJ NNP NNP NNP VBZ VBG IN JJR JJ CC JJ NNS IN NNP TO VB NN IN DT NN , CC TO VB WP PRP VBZ DT NN POS `` JJ NNS . `` China 's official Xinhua news agency says Mr. Hu made the comments Saturday in Beijing at a forum on China and Taiwan business ties . NNP POS JJ NNP NN NN VBZ NNP NNP VBD DT NNS NNP IN NNP IN DT NN IN NNP CC NNP NN NNS . Xinhua says that during the forum , the Chinese leader met with the honorary chairman of Taiwan 's main opposition party , Lien Chan . NNP VBZ IN IN DT NN , DT JJ NN VBD IN DT JJ NN IN NNP POS JJ NN NN , NNP NNP . About 500 participants are attending the two-day event . IN CD NNS VBP VBG DT JJ NN . They are expected to discuss issues including direct flights from Taiwan to the mainland . PRP VBP VBN TO VB NNS VBG JJ NNS IN NNP TO DT NN . Taiwan and China split in 1949 following a civil war . NNP CC NNP VBD IN CD VBG DT JJ NN . But Beijing still considers the island as part of its territory and has threatened to use force if necessary to reunite the two sides . CC NNP RB VBZ DT NN IN NN IN PRP$ NN CC VBZ VBN TO VB NN IN JJ TO VB DT CD NNS . The man who has been guiding the U.S. economy for the past 18 years , Federal Reserve Chairman Alan Greenspan , is set to retire at the end of January . DT NN WP VBZ VBN VBG DT NNP NN IN DT JJ CD NNS , NNP NNP NNP NNP NNP , VBZ VBN TO VB IN DT NN IN NNP . The head of the U.S. central bank is highly regarded by economists , markets and political leaders . DT NN IN DT NNP JJ NN VBZ RB VBN IN NNS , NNS CC JJ NNS . President Bush has given no indication who he is considering to replace Mr. Greenspan or when his decision will be announced . NNP NNP VBZ VBN DT NN WP PRP VBZ VBG TO VB NNP NNP CC WRB PRP$ NN MD VB VBN . News reports speculate that the chairman of Mr. Bush 's Council of Economic Advisors , Ben Bernanke , is the leading candidate . NNP NNS VBP IN DT NN IN NNP NNP POS NNP IN NNP NNPS , NNP NNP , VBZ DT JJ NN . He is a monetary economist and a former member of the key Fed committee that sets interest rates . PRP VBZ DT JJ NN CC DT JJ NN IN DT JJ NNP NN WDT VBZ NN NNS . Other candidates include academic economists with policy experience like Glenn Hubbard and Martin Feldstein . JJ NNS VBP JJ NNS IN NN NN IN NNP NNP CC NNP NNP . Venezuela says a bomb attack has killed Deputy Attorney General Danilo Anderson . NNP VBZ DT NN NN VBZ VBN NNP NNP NNP NNP NNP . Officials told VOA Friday the charred body has been positively identified as that of Mr. Anderson , who was killed around midnight Thursday as he drove through a suburb of Caracas . NNS VBD NNP NNP DT JJ NN VBZ VBN RB VBN IN DT IN NNP NNP , WP VBD VBN IN NN NNP IN PRP VBD IN DT NN IN NNP . Mr. Anderson had been in charge of prosecuting several hundred politicians , businessmen and former military officers involved in a failed April 2002 coup that briefly ousted President Hugo Chavez . NNP NNP VBD VBN IN NN IN VBG JJ CD NNS , NNS CC JJ JJ NNS VBN IN DT JJ NNP CD NN IN RB VBD NNP NNP NNP . Officials say President Chavez has canceled his trip to Costa Rica Friday to attend the Ibero-American summit . NNS VBP NNP NNP VBZ VBN PRP$ NN TO NNP NNP NNP TO VB DT JJ NN . They say he has also canceled a two-week tour of Spain , Iran , Libya and Russia that was to begin this weekend . PRP VBP PRP VBZ RB VBN DT JJ NN IN NNP , NNP , NNP CC NNP WDT VBD TO VB DT NN . The price of crude oil soared Tuesday , hitting a new record high above $ 119 a barrel in New York trading . DT NN IN JJ NN VBD NNP , VBG DT JJ NN NN IN $ CD DT NN IN NNP NNP NN . The price of crude oil for future delivery went to $ 119.48 cents a barrel . DT NN IN JJ NN IN JJ NN VBD TO $ CD NNS DT NN . Traders say a tight balance between demand and supply means oil prices jump when supplies seem threatened or demand rises . NNS VBP DT JJ NN IN NN CC NN VBZ NN NNS VBP WRB NNS VBP JJ CC NN NNS . Currently supply concerns are growing out of violence in Nigeria , reports that Russia will produce less oil this year , and a possible strike by Scottish refinery workers . RB NN NNS VBP VBG IN IN NN IN NNP , VBZ IN NNP MD VB JJR NN DT NN , CC DT JJ NN IN JJ NN NNS . The Organization of Petroleum Exporting Countries says it will boost its current 32-million-barrel-a-day output by a bit more than one quarter by the year 2020 . DT NNP IN NNP NNP NNPS VBZ PRP MD VB PRP$ JJ JJ NN IN DT NN RBR IN CD NN IN DT NN CD . That will help meet growing demand in the long term but has little effect on oil prices right now . DT MD VB VB VBG NN IN DT JJ NN CC VBZ JJ NN IN NN NNS RB RB . OPEC officials say there is sufficient oil on the market and blames rising prices on speculators and the falling U.S. dollar . NNP NNS VBP EX VBZ JJ NN IN DT NN CC VBZ VBG NNS IN NNS CC DT VBG NNP NN . Three people have been rescued after a tunnel allegedly used by Palestinian weapons smugglers collapsed . CD NNS VBP VBN VBN IN DT NN RB VBN IN JJ NNS NNS VBD . Israel says a joint Israeli army and Palestinian operation succeeded in reaching the men , several hours after the tunnel along the border between the Gaza Strip and Egypt fell in . NNP VBZ DT JJ JJ NN CC JJ NN VBD IN VBG DT NNS , JJ NNS IN DT NN IN DT NN IN DT NNP NNP CC NNP VBD IN . The incident happened in the same area where Israeli soldiers shot and killed three Egyptian police officers Thursday . DT NN VBD IN DT JJ NN WRB JJ NNS VBD CC VBD CD JJ NN NNS NNP . The Israeli army says a tank crew mistook the Egyptians for Palestinian militants and opened fire . DT JJ NN VBZ DT NN NN VBD DT NNS IN JJ NNS CC VBD NN . Egypt has condemned the killings . NNP VBZ VBN DT NNS . The Israeli army has expressed its regret . DT JJ NN VBZ VBN PRP$ NN . Israeli officials also apologized and opened an investigation . JJ NNS RB VBD CC VBD DT NN . European Union regulators have fined Microsoft Corporation $ 357 million for failing to share programming code with its rivals , as demanded by a 2004 antitrust ruling . NNP NNP NNS VBP VBN NNP NNP $ CD CD IN VBG TO VB NN NN IN PRP$ NNS , IN VBN IN DT CD JJ NN . The EU Competition Commissioner Neelie Kroes says Microsoft is continuing its illegal conduct , and no company is above the law . DT NNP NNP NNP NNP NNP VBZ NNP VBZ VBG PRP$ JJ NN , CC DT NN VBZ IN DT NN . The fine was assessed at a rate of nearly $ 2 million a day from December 16 through June 20 . DT NN VBD VBN IN DT NN IN RB $ CD CD DT NN IN NNP CD IN NNP CD . EU officials say Microsoft 's daily fines will double ( to $ 3.8 million ) at the end of this month if the company 's violations continue . NNP NNS VBP NNP POS JJ NNS MD VB LRB TO $ CD CD RRB IN DT NN IN DT NN IN DT NN POS NNS VBP . The European Union fined Microsoft $ 633 million in 2004 and ordered the company to give its rivals the technical information necessary for their programs to operate smoothly on computers using Microsoft 's Windows operating system . DT NNP NNP VBD NNP $ CD CD IN CD CC VBD DT NN TO VB PRP$ NNS DT JJ NN JJ IN PRP$ NNS TO VB RB IN NNS VBG NNP POS NNP NN NN . Microsoft has said it has 300 people working full time to comply with the EU 's orders , and that any additional fines would be unjustified . NNP VBZ VBN PRP VBZ CD NNS VBG JJ NN TO VB IN DT NNP POS NNS , CC IN DT JJ NNS MD VB JJ . Icy rain and snow brought down a major power line in Moscow , shutting down the city 's main airport and snarling traffic on its busy streets . NNP NN CC NN VBD RP DT JJ NN NN IN NNP , VBG RP DT NN POS JJ NN CC VBG NN IN PRP$ JJ NNS . Officials said on Sunday that flights from the Domodedovo airport were suspended for almost 15 hours until the power was partially restored and some planes were allowed to take off . NNS VBD IN NNP IN NNS IN DT NNP NN VBD VBN IN RB CD NNS IN DT NN VBD RB VBN CC DT NNS VBD VBN TO VB RP . Flights from Moscow 's second airport , Sheremetyevo , were operating , but travelers experienced delays . NNS IN NNP POS JJ NN , NNP , VBD VBG , CC NNS VBD NNS . Roughly 2,00,000 people were left without power as ice snapped power lines and slicked over the capital 's streets and encased cars . RB CD NNS VBD VBN IN NN IN NN VBD NN NNS CC VBD IN DT NN POS NNS CC JJ NNS . According to Russia 's state-owned news agency , Ria Novosti , some 6,000 passengers were stranded at Domodedovo , and taxis were charging more than $ 300 to take clients to the airport . VBG TO NNP POS JJ NN NN , NNP NNP , DT CD NNS VBD VBN IN NNP , CC NNS VBD VBG JJR IN $ CD TO VB NNS TO DT NN . Officials warned residents to stay home until conditions improved . NNS VBD NNS TO VB NN IN NNS VBN . The United Nations says in the past year more than one million people contracted HIV infections in South Asia , and the disease is spreading largely due to drug use and unsafe sex . DT NNP NNP VBZ IN DT JJ NN RBR IN CD CD NNS VBD NNP NNS IN NNP NNP , CC DT NN VBZ VBG RB JJ TO NN NN CC JJ NN . In its annual report on the global AIDS epidemic , the world body says the spread of HIV is stabilizing in some of India 's states , but overall it is still rising . IN PRP$ JJ NN IN DT JJ NNP NN , DT NN NN VBZ DT NN IN NNP VBZ VBG IN DT IN NNP POS NNS , CC JJ PRP VBZ RB VBG . India already has an estimated 5.1 million HIV-positive people . NNP RB VBZ DT VBN CD CD JJ NNS . According to the report , some 42 percent of female sex workers in India say they are able to guess if their clients are HIV positive because of their physical appearance . VBG TO DT NN , DT CD NN IN JJ NN NNS IN NNP VBP PRP VBP JJ TO VB IN PRP$ NNS VBP NNP JJ IN IN PRP$ JJ NN . But the report says ignorance about the disease is serious elsewhere in South Asia . CC DT NN VBZ NN IN DT NN VBZ JJ RB IN NNP NNP . Citing Pakistan as an example , the report says one in every five female sex workers in the largest city of Karachi can not recognize a condom , and one-third never heard of AIDS . VBG NNP IN DT NN , DT NN VBZ CD IN DT CD JJ NN NNS IN DT JJS NN IN NNP MD RB VB DT NN , CC NN RB VBD IN NNP . Israel has agreed to free 170 Palestinian prisoners . NNP VBZ VBN TO VB CD JJ NNS . The release is part of a promise Israeli Prime Minister Ariel Sharon made to Egyptian President Hosni Mubarak to secure the release this month of an Israeli jailed by Egypt on espionage charges . DT NN VBZ NN IN DT NN JJ NNP NNP NNP NNP VBD TO JJ NNP NNP NNP TO VB DT NN DT NN IN DT NN VBN IN NNP IN NN NNS . Israeli Prime Minister Ariel Sharon called Sunday 's decision a goodwill gesture toward the Egyptian leader . JJ NNP NNP NNP NNP VBD NNP POS NN DT NN NN IN DT JJ NN . The Palestinians are expected to be freed in the next week . DT NNS VBP VBN TO VB VBN IN DT JJ NN . The prisoners ' identities were not immediately known , but Israel has said it would not release those it said had ' blood on their hands . ' DT NNS POS NNS VBD RB RB VBN , CC NNP VBZ VBN PRP MD RB VB DT PRP VBD VBD `` NN IN PRP$ NNS . `` Palestinian officials have long demanded the release of thousands of prisoners held by Israel . JJ NNS VBP RB VBN DT NN IN NNS IN NNS VBN IN NNP . They have also criticized previous prisoner releases as inadequate . PRP VBP RB VBN JJ NN NNS IN JJ . The U.S. secretary of the interior said he will not change a Bush administration rule on protection of polar bears , despite pressure from environmentalists . DT NNP NN IN DT NN VBD PRP MD RB VB DT NNP NN NN IN NN IN JJ NNS , IN NN IN NNS . Ken Salazar announced Friday that a special rule applying to polar bears , under the Endangered Species Act , can only restrict dangers to the bears that originate in the bears ' northern habitat . NNP NNP VBD NNP IN DT JJ NN VBG TO JJ NNS , IN DT NNP NNP NNP , MD RB VB NNS TO DT NNS WDT VBP IN DT NNS POS JJ NN . That rules out application of the rule to carbon emissions farther south , even though they can affect the Arctic climate where the bears live . DT NNS IN NN IN DT NN TO NN NNS RB RB , RB IN PRP MD VB DT NNP NN WRB DT NNS VBP . Salazar said the Endangered Species Act was not the ' proper mechanism ' for dealing with climate change and said a more comprehensive strategy is needed . NNP VBD DT NNP NNP NNP VBD RB DT `` JJ NN `` IN VBG IN NN NN CC VBD DT RBR JJ NN VBZ VBN . Environmentalists criticized the decision as threatening to the polar bear population . NNS VBD DT NN IN VBG TO DT JJ NN NN . Polar bears have been a touchstone in discussions on climate change because they rely on sea ice , which scientists say is melting as the planet 's atmosphere warms . JJ NNS VBP VBN DT NN IN NNS IN NN NN IN PRP VBP IN NN NN , WDT NNS VBP VBZ VBG IN DT NN POS NN VBZ . Police in southwest Pakistan say gunmen have shot and killed the government spokesman in southwestern Balochistan province . NNS IN JJ NNP VBP NNS VBP VBN CC VBN DT NN NN IN JJ NNP NN . Local officers say that Raziq Bugti died at the scene after unidentified assailants fired a barrage of shots into his vehicle as it traveled through the provincial capital , Quetta . JJ NNS VBP IN NNP NNP VBD IN DT NN IN JJ NNS VBD DT NN IN NNS IN PRP$ NN IN PRP VBD IN DT JJ NN , NNP . Bugti served as the spokesman for the provincial government and advisor to the chief minister . NNP VBD IN DT NN IN DT JJ NN CC NN TO DT JJ NN . In May , Pakistani President Pervez Musharraf said that government forces have wiped out nearly all separatist camps in the gas-rich province . IN NNP , JJ NNP NNP NNP VBD IN NN NNS VBP VBN RP RB DT JJ NNS IN DT JJ NN . Nationalist rebels have been fighting for decades for a larger share of the profits from the resources of Balochistan , Pakistan 's biggest province . NNP NNS VBP VBN VBG IN NNS IN DT JJR NN IN DT NNS IN DT NNS IN NNP , NNP POS JJS NN . Hundreds of people have been killed in separatist attacks on gas , transport and other energy facilities . NNS IN NNS VBP VBN VBN IN JJ NNS IN NN , NN CC JJ NN NNS . Nigeria has rejected as unfair a new corruption index which says the oil-rich nation is seen as the most corrupt on the African continent . NNP VBZ VBN IN JJ DT JJ NN NN WDT VBZ DT JJ NN VBZ VBN IN DT RBS JJ IN DT JJ NN . In a statement , Nigeria 's Information Ministry said the index by Berlin-based group Transparency International failed to recognize the government 's efforts at fighting graft . IN DT NN , NNP POS NNP NNP VBD DT NN IN JJ NN NNP NNP VBD TO VB DT NN POS NNS IN VBG NN . It accused the group of using faulty and outdated information in its annual ranking of 146 nations based on perceived corruption . PRP VBD DT NN IN VBG JJ CC JJ NN IN PRP$ JJ NN IN CD NNS VBN IN VBN NN . Nigerian officials also say the index focuses on governments taking bribes , but ignores western companies blamed for offering illegal payments . JJ NNS RB VBP DT NN VBZ IN NNS VBG NNS , CC VBZ JJ NNS VBN IN VBG JJ NNS . The index lists Nigeria ahead of only Bangladesh and Haiti as the most corrupt nations in the world . DT NN VBZ NNP RB IN JJ NNP CC NNP IN DT RBS JJ NNS IN DT NN . Transparency International says corruption is often high among other oil-producing nations as well , including Angola , Chad , Libya and Sudan . NNP NNP VBZ NN VBZ RB JJ IN JJ JJ NNS RB RB , VBG NNP , NNP , NNP CC NNP . Afghanistan 's Interior Ministry says roadside bomb blasts in southern Helmand province have killed six civilians . NNP POS NNP NNP VBZ NN NN NNS IN JJ NNP NN VBP VBN CD NNS . The Interior Ministry said the deaths occurred Saturday in two places after the victims drove over the devices . DT NNP NNP VBD DT NNS VBD NNP IN CD NNS IN DT NNS VBD IN DT NNS . Meanwhile , a joint NATO-Afghan security force has killed several Taliban fighters in an operation in the northeast . RB , DT JJ JJ NN NN VBZ VBN JJ NNP NNS IN DT NN IN DT NN . NATO says one of the insurgents killed Saturday near Alasay Valley in Kapisa province , outside Kabul , is a suspected Taliban commander . NNP VBZ CD IN DT NNS VBD NNP IN NNP NNP IN NNP NN , IN NNP , VBZ DT JJ NNP NN . He is believed to be responsible for violent attacks against Afghan government officials , as well as the joint forces . PRP VBZ VBN TO VB JJ IN JJ NNS IN JJ NN NNS , RB RB IN DT JJ NNS . Officials say the insurgents are also suspected of imposing strict curfews on the villages in the valley and conducting illegal patrols to enforce Taliban control on local civilians . NNS VBP DT NNS VBP RB VBN IN VBG JJ NNS IN DT NNS IN DT NN CC VBG JJ NNS TO VB NNP NN IN JJ NNS . Multiple weapons , including a rocket-propelled grenade , were discovered during the operation . NNP NNS , VBG DT JJ NN , VBD VBN IN DT NN . In southern Afghanistan , the British Defense Ministry said Saturday one of its soldiers was killed by a suicide blast . IN JJ NNP , DT NNP NNP NNP VBD NNP CD IN PRP$ NNS VBD VBN IN DT NN NN . Croatia 's Janica Kostelic has won her first ever women 's World Cup giant slalom title in Spindleruv Mlyn , the Czech Republic . NNP POS NNP NNP VBZ VBN PRP$ JJ RB NNS POS NNP NNP NN NN NN IN NNP NNP , DT JJ NNP . Kostelic finished with a combined time of two minutes , 21.3 seconds . NNP VBD IN DT JJ NN IN CD NNS , CD NNS . Kathrin Zettel of Austria was second , 0.08 of one second back . NNP NNP IN NNP VBD JJ , CD IN CD NN RB . Another Austrian , Marlies Schild , was third ( 2.21.40 ) . DT NN , NNP NNP , VBD JJ LRB CD RRB . Kostelic , the reigning Olympic giant slalom champion , had never won the event on the World Cup circuit before . NNP , DT VBG NNP JJ NN NN , VBD RB VBN DT NN IN DT NNP NNP NN IN . Kostelic has won previously in World Cup slalom and combined events and claimed the world championships in the downhill , the slalom and the combined . NNP VBZ VBN RB IN NNP NNP NN CC VBN NNS CC VBD DT NN NNS IN DT NN , DT NN CC DT VBN . A Ukrainian court has ruled the privatization of the country 's largest steel mill was illegal . DT JJ NN VBZ VBN DT NN IN DT NN POS JJS NN NN VBD JJ . A court in Kiev made the ruling Thursday regarding the Kryvorizhstal mill . DT NN IN NNP VBD DT NN NNP VBG DT NNP NN . A consortium that included the son-in-law of former Ukrainian President Leonid Kuchma purchased the complex in June for $ 800 million , far less than its estimated value . DT NN WDT VBD DT NN IN JJ JJ NNP NNP NNP VBD DT NN IN NNP IN $ CD CD , RB JJR IN PRP$ JJ NN . Prime Minister Yulia Tymoshenko said Wednesday that some 3,000 privatizations will be reviewed to ensure they were conducted fairly . NNP NNP NNP NNP VBD NNP IN DT CD NNS MD VB VBN TO VB PRP VBD VBN RB . Meanwhile , Justice Minister Roman Zvarych is threatening to quit after less than two weeks on the job , citing efforts by businessmen to influence his ministry . RB , NNP NNP NNP NNP VBZ VBG TO VB IN JJR IN CD NNS IN DT NN , VBG NNS IN NNS TO VB PRP$ NN . He told Canal Five television he refuses to allow businessmen who are also deputies with oil ties to interfere with his work , and said he will not allow members of the government , who he did not name , drag his family into corruption schemes . PRP VBD NNP CD NN PRP VBZ TO VB NNS WP VBP RB NNS IN NN NNS TO VB IN PRP$ NN , CC VBD PRP MD RB VB NNS IN DT NN , WP PRP VBD RB VB , VB PRP$ NN IN NN NNS . Military forces of two Burmese ethnic groups engaged in intense fighting along the border with Thailand earlier this week . JJ NNS IN CD JJ JJ NNS VBN IN JJ NN IN DT NN IN NNP RBR DT NN . Sources say the fighting broke out Tuesday between forces aligned with the Wa and Shan groups near Thailand 's northern Mae Hong Son province . NNS VBP DT NN VBD IN NNP IN NNS VBN IN DT NNP CC NNP NNS IN NNP POS JJ NNP NNP NNP NN . The battle began after talks to resolve several issues broke down , including a dispute over water use . DT NN VBD IN NNS TO VB JJ NNS VBD RP , VBG DT NN IN NN NN . There is also speculation that illegal drugs also played a part in the fighting . EX VBZ RB NN IN JJ NNS RB VBD DT NN IN DT NN . Thailand has increased security along the Burmese border to keep the violence from spilling over into its territories . NNP VBZ VBN NN IN DT JJ NN TO VB DT NN IN VBG RP IN PRP$ NNS . The U.S. military says it has captured a number of key terrorist leaders in a series of operations aimed at weakening al-Qaida in Iraq . DT NNP NN VBZ PRP VBZ VBN DT NN IN JJ JJ NNS IN DT NN IN NNS VBN IN VBG NNP IN NNP . The military says its forces spread out across central and northern Iraq Thursday , detaining 25 suspected terrorists . DT JJ VBZ PRP$ NNS VBD RP IN JJ CC JJ NNP NNP , VBG CD JJ NNS . Officials say one of the suspects is an alleged leader of an al-Qaida cell in Baghdad who was helping to bring foreign terrorists into Iraq . NNS VBP CD IN DT NNS VBZ DT JJ NN IN DT NNP NN IN NNP WP VBD VBG TO VB JJ NNS IN NNP . Forces also arrested a man thought to be senior al-Qaida leader in Mosul . NNS RB VBN DT NN VBN TO VB JJ NNP NN IN NNP . In violence Wednesday , a suicide car bomber attacked an Iraqi army patrol in the northern city of Mosul , killing three people and wounding 14 others . IN NN NNP , DT NN NN NN VBD DT JJ NN NN IN DT JJ NN IN NNP , VBG CD NNS CC VBG CD NNS . In Baghdad , the military said a roadside bomb wounded three Iraqi civilians . IN NNP , DT NN VBD DT NN NN VBD CD JJ NNS . The military also said Iraqi soldiers recovered Iranian-made rockets and other weapons in Baghdad 's Sadr City district on Monday . DT NN RB VBD JJ NNS VBD JJ NNS CC JJ NNS IN NNP POS NNP NNP NN IN NNP . It said some of the Iranian munitions had a manufacture date of early 2008 . PRP VBD DT IN DT JJ NNS VBD DT NN NN IN JJ CD . Pakistan 's Interior Ministry says gunmen have released all the children briefly held hostage at a high school in North West Frontier Province . NNP POS NNP NNP VBZ NNS VBP VBN PDT DT NNS RB VBD NN IN DT JJ NN IN NNP NNP NNP NNP . Ministry spokesman Javed Cheema says the gunmen surrendered to the local jirga ( tribal council ) along with their weapons and released the children . NN NN NNP NNP VBZ DT NNS VBD TO DT JJ NN LRB JJ NN RRB IN IN PRP$ NNS CC VBD DT NNS . The ministry said up to 250 students were being held . DT NN VBD RP TO CD NNS VBD VBG VBN . The gunmen took refuge in the school after an aborted attempt to abduct a health official in a neighboring district . DT NNS VBD NN IN DT NN IN DT JJ NN TO VB DT NN NN IN DT JJ NN . The official was eventually freed after clashes with police . DT NN VBD RB VBN IN NNS IN NN . Police then surrounded the building while tribesmen negotiated with the insurgents . NNS RB VBN DT NN IN NNS VBN IN DT NNS . Officials say the kidnappers had demanded safe passage in return for freeing the students . NNS VBP DT NNS VBD VBN JJ NN IN NN IN VBG DT NNS . Violence has spread in recent months in areas of Pakistan near the border with Afghanistan , which are believed to be sanctuaries for al Qaeda and Taliban militants . NN VBZ VBN IN JJ NNS IN NNS IN NNP IN DT NN IN NNP , WDT VBP VBN TO VB NNS IN NNP NNP CC NNP NNS . The head of the World Health Organization says the world 's capacity for making enough swine flu vaccine for nearly seven billion people is ' woefully inadequate . ' DT NN IN DT NNP NNP NNP VBZ DT NN POS NN IN VBG JJ NN NN NN IN RB CD CD NNS VBZ `` RB JJ . `` Margaret Chan said at a Geneva conference Tuesday that almost everyone on the planet is susceptible to the H1N1 swine flu virus . NNP NNP VBD IN DT NNP NN NNP IN RB DT IN DT NN VBZ JJ TO DT NNP NN NN NN . But she said most of the limited supply of the vaccine will go to wealthy countries , calling it an example of life-saving intervention biased towards affluence . CC PRP VBD JJS IN DT JJ NN IN DT NN MD VB TO JJ NNS , VBG PRP DT NN IN JJ NN VBN IN NN . Chan called for more innovation in developing new medicines to ensure everyone gets the vaccine . NNP VBD IN JJR NN IN VBG JJ NNS TO VB DT VBZ DT NN . WHO officials have said they believe the first mass vaccines will be available by September and that health care providers should get inoculated first . NNP NNS VBP VBN PRP VBP DT JJ NN NNS MD VB JJ IN NNP CC IN NN NN NNS MD VB VBN RB . The latest WHO report confirms nearly 95,000 swine flu cases worldwide with 429 deaths . DT JJS NNP NN VBZ RB CD JJ NN NNS VBP IN CD NNS . Political analysts say the results of some close elections across the United States could be delayed for days or weeks , as absentee and provisional ballots are counted . JJ NNS VBP DT NNS IN DT JJ NNS IN DT NNP NNPS MD VB VBN IN NNS CC NNS , IN NN CC JJ NNS VBP VBN . Many states have allowed voters to cast absentee ballots for weeks . JJ NNS VBP VBN NNS TO VB JJ NNS IN NNS . Those votes , however , usually take longer to count , and a final tally of the results from those ballots could take days . DT NNS , RB , RB VBP JJR TO VB , CC DT JJ NN IN DT NNS IN DT NNS MD VB NNS . Provisional ballots are often used when a voter is not registered at the polling place , who did not bring the proper type of identification or who shows up at the wrong voting precinct . JJ NNS VBP RB VBN WRB DT NN VBZ RB VBN IN DT NN NN , WP VBD RB VB DT JJ NN IN NN CC WP VBZ RP IN DT JJ NN NN . In 2004 , the first year provisional ballots were used nationwide , about 1.9 million people cast them . IN CD , DT JJ NN JJ NNS VBD VBN JJ , IN CD CD NNS VBD PRP . More than 1.2 million of those votes were ruled valid . JJR IN CD CD IN DT NNS VBD VBN JJ . In the northwestern state of Washington in 2004 , provisional ballots played a role in delaying Democratic gubernatorial candidate Christine Gregoire 's victory for more than eight weeks . IN DT JJ NN IN NNP IN CD , JJ NNS VBD DT NN IN VBG JJ JJ NN NNP NNP POS NN IN JJR IN CD NNS . A massive winter storm is barreling across the central United States , causing mayhem on the roads and threatening to ruin many Americans ' Christmas holiday plans . DT JJ NN NN VBZ VBG IN DT JJ NNP NNPS , VBG NN IN DT NNS CC VBG TO VB JJ NNS POS NNP NN NNS . The storm stretches as far north as Minnesota , along the Canadian border , to Texas in the south . DT NN VBZ IN RB RB IN NNP , IN DT JJ NN , TO NNP IN DT NN . Freezing rain , snow and heavy winds are making driving conditions extremely dangerous in some states . VBG NN , NN CC JJ NNS VBP VBG JJ NNS RB JJ IN DT NNS . The National Weather Service has issued a blizzard warning to remain in effect for many areas until Saturday , predicting up to 30 centimeters of snow in many northern locales . DT NNP NNP NNP VBZ VBN DT JJ NN TO VB IN NN IN JJ NNS IN NNP , VBG RP TO CD NNS IN NN IN JJ JJ NNS . The warning says ' life-threatening ' weather conditions are expected and strongly discourages travel . DT NN VBZ `` JJ `` NN NNS VBP VBN CC RB VBZ NN . Americans on the east coast are just recovering from a major storm last week that dropped as much as 60 centimeters of snow in some areas , and caused widespread power outages . NNS IN DT JJ NN VBP RB VBG IN DT JJ NN JJ NN WDT VBD RB JJ IN CD NNS IN NN IN DT NNS , CC VBD JJ NN NNS . A winter storm in the northeastern United States has shut down airline travel and cut power to thousands of people . DT NN NN IN DT JJ NNP NNPS VBZ VBN RP NN NN CC NN NN TO NNS IN NNS . U.S. weather forecasters said more than 50 centimeters of snow has fallen in some areas since Saturday , and more snow was expected through Sunday . NNP NN NNS VBD JJR IN CD NNS IN NN VBZ VBN IN DT NNS IN NNP , CC JJR NN VBD VBN IN NNP . Officials closed at least two major airports servicing New York City , and air traffic was disrupted at other key cities . NNS VBD IN JJS CD JJ NNS VBG NNP NNP NNP , CC NN NN VBD VBN IN JJ JJ NNS . Service resumed at Ronald Reagan National airport in Washington , which had closed earlier in the day . NN VBD IN NNP NNP NNP NN IN NNP , WDT VBD VBN RBR IN DT NN . Heavy snow snapped trees and power lines near Washington , cutting electricity to thousands of people . NNP VBD JJ NNS CC NN NNS IN NNP , VBG NN TO NNS IN NNS . New York Mayor Michael Bloomberg warned residents to remain indoors until roads and sidewalks were cleared . NNP NNP NNP NNP NNP VBD NNS TO VB NNS IN NNS CC NNS VBD VBN . A blizzard warning was in effect for New York city and surrounding areas . DT JJ NN VBD IN NN IN NNP NNP NN CC VBG NNS . And The National Weather Service issued a heavy snow warning for an area extending from West Virginia to Maine . CC DT NNP NNP NNP VBD DT JJ NN NN IN DT NN VBG IN NNP NNP TO NNP . Cuba has announced an increase in government salaries for workers with advanced university degrees , municipal and provincial employees , and those certified as masters of their trades or otherwise noted for their productivity . NNP VBZ VBN DT NN IN NN NNS IN NNS IN JJ NN NNS , JJ CC JJ NNS , CC DT VBN IN NNS IN PRP$ NNS CC RB VBN IN PRP$ NN . The pay hike is designed to help those who were not affected by a minimum wage hike in May . DT NN NN VBZ VBN TO VB DT WP VBD RB VBN IN DT JJ NN NN IN NNP . Retirement and social assistance pensions were also raised . NNP CC JJ NN NNS VBD RB VBN . In a speech last week , Cuban President Fidel Castro indicated pay increases may be needed to battle corruption . IN DT NN JJ NN , JJ NNP NNP NNP VBD NN NNS MD VB VBN TO VB NN . At the same time , Cuba announced a steep increase in utility rates for heavy users of electricity . IN DT JJ NN , NNP VBD DT JJ NN IN NN NNS IN JJ NNS IN NN . The heavily subsidized rates Cubans now pay for the first 100 kilowatt hours will stay the same , but after that , rates increase to up to three times their former rates for the heaviest users . DT RB JJ NNS NNS RB VBP IN DT JJ CD NN NNS MD VB DT NN , CC IN DT , NNS VBP TO RB TO CD NNS PRP$ JJ NNS IN DT JJS NNS . Granma , the Cuban Communist Party newspaper , said the increase was to encourage energy conservation among Cubans . NNP , DT JJ NNP NNP NN , VBD DT NN VBD TO VB NN NN IN NNS . Iraqi authorities say at least 10 people have been killed and 21 others wounded in a car bomb attack on a Shi'ite mosque in central Iraq . JJ NNS VBP IN JJS CD NNS VBP VBN VBN CC CD NNS VBD IN DT NN NN NN IN DT NNP NN IN JJ NNP . Police say a suicide bomber blew himself up early Friday , as worshippers were leaving the al-Rasul al-Aadham mosque in the central town of Tuz Khurmatu , nearly 170 kilometers north of Baghdad . NNS VBP DT NN NN VBD PRP RP RB NNP , IN NNS VBD VBG DT JJ NN NN IN DT JJ NN IN NNP NNP , RB CD NNS RB IN NNP . Earlier Friday in the capital , Iraqi police say gunmen opened fire on a group of day laborers , killing at least three people and wounding 13 others . RB NNP IN DT NN , JJ NNS VBP NNS VBD NN IN DT NN IN NN NNS , VBG IN JJS CD NNS CC VBG CD NNS . The attacks come as part of a campaign of violence by insurgents that has killed more than 180 people in Iraq since Wednesday . DT NNS VBP IN NN IN DT NN IN NN IN NNS WDT VBZ VBN JJR IN CD NNS IN NNP IN NNP . Separately , the U.S. military says an American soldier was killed late Thursday in an explosion in the city of Ramadi , in al-Anbar province . RB , DT NNP NN VBZ DT JJ NN VBD VBN JJ NNP IN DT NN IN DT NN IN NNP , IN NNP NN . A delegation of U.S. lawmakers and businessmen is expected to arrive in Cuba Wednesday for talks aimed at selling more agricultural products to the communist nation . DT NN IN NNP NNS CC NNS VBZ VBN TO VB IN NNP NNP IN NNS VBN IN VBG RBR JJ NNS TO DT JJ NN . Democratic Senator Max Baucus of Montana , state lawmakers and agricultural producers will meet in Havana with Cuban officials for several days of talks . JJ NNP NNP NNP IN NNP , NN NNS CC JJ NNS MD VB IN NNP IN JJ NNS IN JJ NNS IN NNS . They hope to sign deals aimed at selling $ 100 million in food and agricultural products to Havana . PRP VBP TO VB NNS VBN IN VBG $ CD CD IN NN CC JJ NNS TO NNP . Under an exemption to the U.S. sanctions against Cuba , American agricultural goods can be sold to the island on a cash-only basis . IN DT NN TO DT NNP NNS IN NNP , JJ JJ NNS MD VB VBN TO DT NN IN DT JJ NN . Since 2001 , Havana has purchased more than $ 700 million in food products . IN CD , NNP VBZ VBN JJR IN $ CD CD IN NN NNS . Meanwhile , Cuba is pressing ahead with its largest military exercise in 20 years . RB , NNP VBZ VBG RB IN PRP$ JJS JJ NN IN CD NNS . Officials say military forces , reservists and millions of civilians are taking part in the six-day exercise , called Bastion 2004 . NNS VBP JJ NNS , NNS CC NNS IN NNS VBP VBG NN IN DT JJ NN , VBD NNP CD . A top United Nations envoy has held what he describes as ' encouraging ' talks with Syrian President Bashar al-Assad about a U.N. resolution calling for all Syrian troops to leave Lebanon . DT JJ NNP NNP NN VBZ VBN WP PRP VBZ IN `` VBG `` NNS IN JJ NNP NNP NNP IN DT NNP NN VBG IN DT JJ NNS TO VB NNP . After meeting the Syrian leader Thursday in Damascus , envoy Terje Roed-Larsen said he delivered a message from U.N. Secretary-General Kofi Annan , and that he is hopeful about implementing the U.N. measure . IN VBG DT JJ NN NNP IN NNP , NN NNP NNP VBD PRP VBD DT NN IN NNP NNP NNP NNP , CC IN PRP VBZ JJ IN VBG DT NNP NN . No schedule for further talks has been announced . DT NN IN JJ NNS VBZ VBN VBN . Western analysts say Syria has at least 14,000 troops in neighboring Lebanon . JJ NNS VBP NNP VBZ IN JJS CD NNS IN JJ NNP . Damascus has been sharply critical of a U.N. resolution passed last September , which calls for the withdrawal of all foreign forces from Lebanon . NNP VBZ VBN RB JJ IN DT NNP NN VBN JJ NNP , WDT VBZ IN DT NN IN DT JJ NNS IN NNP . Syria has criticized the resolution as an infringement on a bilateral agreement with the Beirut government . NNP VBZ VBN DT NN IN DT NN IN DT JJ NN IN DT NNP NN . Federal officials in the U.S. state of Arizona have indicted 13 Bosnian Serbs on charges of lying on their visa applications about their prior military service . NNP NNS IN DT NNP NN IN NNP VBP VBN CD JJ NNS IN NNS IN VBG IN PRP$ NN NNS IN PRP$ JJ JJ NN . Officials said seven others were being held on similar charges . NNS VBD CD NNS VBD VBG VBN IN JJ NNS . The indicted ethnic Serbs from Bosnia-Herzegovina are charged with concealing their prior service in Bosnian Serb forces . DT VBN JJ NNS IN NNP VBP VBN IN VBG PRP$ JJ NN IN JJ JJ NNS . However , some families of the accused have said they did not serve in the military ; others said they were conscripted against their will . RB , DT NNS IN DT VBN VBP VBN PRP VBD RB VB IN DT NN ; NNS VBD PRP VBD VBN IN PRP$ NN . Last year , four other Bosnian Serbs in Arizona were arrested and charged with lying on immigration paperwork . JJ NN , CD JJ JJ NNS IN NNP VBD VBN CC VBN IN VBG IN NN NN . All immigrants applying for legal residency in the United States must disclose prior military service . DT NNS VBG IN JJ NN IN DT NNP NNPS MD VB RB JJ NN . Widespread atrocities occurred during the conflict of the 1990s in Bosnia-Herzegovina , including the slaughter of thousands of civilians by Serb forces . JJ NNS VBD IN DT NN IN DT NNS IN NNP , VBG DT NN IN NNS IN NNS IN JJ NNS . Doctors say Indian Prime Minister Manmohan Singh is recovering well from heart surgery and has been moved out of intensive care . NNS VBP JJ NNP NNP NNP NNP VBZ VBG RB IN NN NN CC VBZ VBN VBN IN IN JJ NN . His doctors told several Indian news agencies Wednesday that the prime minister is likely to be discharged from the hospital within the next few days if he continues to recover on schedule . PRP$ NNS VBD JJ JJ NN NNS NNP IN DT JJ NN VBZ JJ TO VB VBN IN DT NN IN DT JJ JJ NNS IN PRP VBZ TO VB IN NN . The prime minister had heart bypass surgery on Saturday after he complained of chest pains and tests showed he had several blocked arteries . DT JJ NN VBD NN NN NN IN NNP IN PRP VBD IN NN NNS CC NNS VBD PRP VBD JJ VBN NNS . He had a similar operation in Britain in 1990 . PRP VBD DT JJ NN IN NNP IN CD . Doctors have previously said that Mr. Singh , who is 76 , should be able to resume his full duties within four weeks . NNS VBP RB VBN IN NNP NNP , WP VBZ CD , MD VB JJ TO VB PRP$ JJ NNS IN CD NNS . No acting prime minister has been named . DT JJ JJ NN VBZ VBN VBN . Indian officials say until Mr. Singh recovers , there will be collective decision-making by the Cabinet , chaired by External Affairs Minister Pranab Mukherjee . JJ NNS VBP IN NNP NNP VBZ , EX MD VB JJ NN IN DT NNP , VBN IN NNP NNP NNP NNP NNP . The United Nation 's food agency has tripled the amount of emergency aid it is seeking for Niger , saying more is needed to save 2.5 million people from extreme hunger . DT NNP NNP POS NN NN VBZ VBN DT NN IN NN NN PRP VBZ VBG IN NNP , VBG RBR VBZ VBN TO VB CD CD NNS IN JJ NN . The World Food Program said Wednesday it now needs more than $ 57 million for its operations in Niger . DT NNP NNP NNP VBD NNP PRP RB VBZ JJR IN $ CD CD IN PRP$ NNS IN NNP . It says this is the third time in six months it has raised its appeal . PRP VBZ DT VBZ DT JJ NN IN CD NNS PRP VBZ VBN PRP$ NN . Executive Director James Morris says if donors had responded earlier , the cost of the operation would be greatly reduced . NNP NNP NNP NNP VBZ IN NNS VBD VBN RBR , DT NN IN DT NN MD VB RB VBN . He said the situation has deteriorated severely over recent months . PRP VBD DT NN VBZ VBN RB IN JJ NNS . The agency says donations only started flowing recently after television pictures showed images of starving children . DT NN VBZ NNS RB VBD VBG RB IN NN NNS VBD NNS IN VBG NNS . Tuesday , Niger 's President , Mamadou Tandja , thanked humanitarian agencies for sending emergency aid and said Niger 's food crisis is improving . NNP , NNP POS NNP , NNP NNP , VBD JJ NNS IN VBG NN NN CC VBD NNP POS NN NN VBZ VBG . Lebanese soldiers have seized several buildings in a Palestinian refugee camp where they have been battling Islamic militants for two months . JJ NNS VBP VBN JJ NNS IN DT JJ NN NN WRB PRP VBP VBN VBG JJ NNS IN CD NNS . The Lebanese military says two soldiers were killed in Sunday 's fighting in the Nahr el-Bared camp near Tripoli . DT JJ NN VBZ CD NNS VBD VBN IN NNP POS NN IN DT NNP JJ NN IN NNP . Witnesses say Lebanese flags were seen flying over buildings in the camp . NNS VBP JJ NNS VBD VBN VBG IN NNS IN DT NN . The military also bombarded militants ' positions with artillery shells for a second day , as the militants fired rockets that hit fields outside the camp . DT NN RB VBD NNS POS NNS IN NN NNS IN DT JJ NN , IN DT NNS VBD NNS WDT VBD NNS IN DT NN . More than 170 people , including at least 97 Lebanese soldiers , have been killed since the standoff began May 20th . JJR IN CD NNS , VBG IN JJS CD JJ NNS , VBP VBN VBN IN DT NN VBD NNP JJ . Nearly all of the Palestinian refugees living in the camp have fled . RB DT IN DT JJ NNS VBG IN DT NN VBP VBN . Last month , Lebanese officials claimed victory in the fighting , but daily firefights have continued since then . JJ NN , JJ NNS VBD NN IN DT NN , CC JJ NNS VBP VBN IN RB . The price of crude oil has fallen to its lowest level in more than 18 months as mild weather in the northern hemisphere has caused inventories to rise . DT NN IN JJ NN VBZ VBN TO PRP$ JJS NN IN JJR IN CD NNS IN JJ NN IN DT JJ NN VBZ VBN NNS TO VB . Light sweet crude for February delivery Tuesday dropped as much as $ 2 a barrel to $ 53.88 . JJ JJ NN IN NNP NN NNP VBD RB JJ IN $ CD DT NN TO $ CD . That is the lowest price per barrel in New York trading since June 2005 . DT VBZ DT JJS NN IN NN IN NNP NNP NN IN NNP CD . The price drop comes despite the disruption of Russia 's oil exports to Europe . DT NN NN VBZ IN DT NN IN NNP POS NN NNS TO NNP . Moscow refuses to pay a newly imposed customs tax by Minsk for its oil crossing Belarus , which supplies 20 percent of Russian oil to Europe . NNP VBZ TO VB DT RB VBN NNS NN IN NNP IN PRP$ NN VBG NNP , WDT VBZ CD NN IN JJ NN TO NNP . Oil also declined as traders expressed skepticism OPEC plans to cut oil production by another 5,00,000 barrels per day . NN RB VBD IN NNS VBD NN NNP VBZ TO VB NN NN IN DT CD NNS IN NN . The international oil cartel agreed to a production cut of one million barrels per day in November , but prices have continued to drop . DT JJ NN NN VBD TO DT NN NN IN CD CD NNS IN NN IN NNP , CC NNS VBP VBN TO VB . The White House is hailing an upcoming Israeli-Palestinian summit in Egypt , calling it an encouraging step that shows both sides want to seize the opportunity for peace . DT NNP NNP VBZ VBG DT JJ JJ NN IN NNP , VBG PRP DT JJ NN WDT VBZ DT NNS VBP TO VB DT NN IN NN . The U.S. comments Wednesday followed announcements that Israeli Prime Minister Ariel Sharon will meet new Palestinian leader Mahmoud Abbas and Jordan 's King Abdullah Tuesday in Sharm al-Sheikh . DT NNP NNS NNP VBD NNS IN JJ NNP NNP NNP NNP MD VB JJ JJ NN NNP NNP CC NNP POS NNP NNP NNP IN NNP NNP . The summit coincides with a visit to the region by U.S. Secretary of State Condoleezza Rice , who is to meet separately with Mr. Sharon and Mr. Abbas the day before the February 8 summit . DT NN VBZ IN DT NN TO DT NN IN NNP NNP IN NNP NNP NNP , WP VBZ TO VB RB IN NNP NNP CC NNP NNP DT NN IN DT NNP CD NN . In Cairo Wednesday , Egypt held talks with Palestinian militant leaders , as part of a push to strengthen support for the de~facto Israeli-Palestinian cease-fire in effect for most of the past two weeks . IN NNP NNP , NNP VBD NNS IN JJ JJ NNS , IN NN IN DT NN TO VB NN IN DT JJ JJ NN IN NN IN JJS IN DT JJ CD NNS . Sources said Hamas leader Khaled Meshaal and Islamic Jihad leader Ramadan Shallah both met with Egyptian negotiators . NNS VBD NNP NN NNP NNP CC NNP NNP NN NNP NNP DT VBD IN JJ NNS . Egyptian security forces have arrested at least 10 more members of the country 's largest opposition group , the Muslim Brotherhood . JJ NN NNS VBP VBN IN JJS CD JJR NNS IN DT NN POS JJS NN NN , DT NNP NNP . Thursday 's arrests come after 17 Brotherhood members were detained earlier this week . NNP POS NNS VBD IN CD NNP NNS VBD VBN RBR DT NN . The Egyptian government is intensifying its crackdown on the banned Islamist political group . DT JJ NN VBZ VBG PRP$ NN IN DT VBN NNP JJ NN . The Brotherhood says the government campaign is a direct reaction to the group 's rejection of constitutional amendments proposed by President Hosni Mubarak . DT NNP VBZ DT NN NN VBZ DT JJ NN TO DT NN POS NN IN JJ NNS VBN IN NNP NNP NNP . Officials of the Brotherhood say the amendments are aimed at giving the ruling party more power and barring Muslim Brothers from politics . NNS IN DT NNP VBP DT NNS VBP VBN IN VBG DT VBG NN JJR NN CC VBG NNP NNPS IN NNS . The Brotherhood won a fifth of the seats in Egypt 's parliament by running members as independents in the 2005 elections , making it the largest opposition group . DT NNP VBD DT NN IN DT NNS IN NNP POS NN IN VBG NNS IN NNS IN DT CD NNS , VBG PRP DT JJS NN NN . The constitutional amendments proposed by Mr. Mubarak would reduce the role of judges in monitoring elections and ban religious groups from forming political parties . DT JJ NNS VBN IN NNP NNP MD VB DT NN IN NNS IN VBG NNS CC VB JJ NNS IN VBG JJ NNS . The Brotherhood advocates an Islamic state , achieved through peaceful means . DT NNP VBZ DT JJ NN , VBN IN JJ NNS . An Israeli security official says a top Hamas commander captured last week could be a ' bargaining chip ' to win the release of an Israeli soldier held for over a year . DT JJ NN NN VBZ DT JJ NNP NN VBD JJ NN MD VB DT `` NN NN `` TO VB DT NN IN DT JJ NN VBN IN IN DT NN . Public Security Minister Avi Dichter told Israeli Army Radio Monday that Hamas commander Mhawesh al-Qadi might be exchanged for Israeli soldier Gilad Shalit . NNP NNP NNP NNP NNP VBD JJ NNP NNP NNP IN NNP NN NNP NNP MD VB VBN IN JJ NN NNP NNP . Israeli commandos dressed as Palestinian security forces abducted the Hamas commander in Gaza Strip in a raid on Friday . JJ NNS VBN IN JJ NN NNS VBD DT NNP NN IN NNP NNP IN DT NN IN NNP . Shalit was captured by militant groups in Gaza in June 2006 . NNP VBD VBN IN JJ NNS IN NNP IN NNP CD . Hamas , which seized control of Gaza three months ago , has demanded the release of hundreds of Palestinian prisoners in exchange for the Israeli soldier . NNP , WDT VBD NN IN NNP CD NNS RB , VBZ VBN DT NN IN NNS IN JJ NNS IN NN IN DT JJ NN . Afghan officials say two senior members of Afghanistan 's former Taleban regime have surrendered to the government under an amnesty offer . JJ NNS VBP CD JJ NNS IN NNP POS JJ NNP NN VBP VBN TO DT NN IN DT JJ NN . The two men are Mullah Mohammad Naseem , the former Taleban governor of Zabul province , and Haji Mohammad Akhtar , the former police chief of Farah province . DT CD NNS VBP NNP NNP NNP , DT JJ NNP NN IN NNP NN , CC NNP NNP NNP , DT JJ NN NN IN NNP NN . The governor of Helmand province , Mullah Sher Mohammad , said they surrendered after month-long talks . DT NN IN NNP NN , NNP NNP NNP , VBD PRP VBD IN JJ NNS . In the southeastern Khost province , the U.S. military said coalition forces have killed at least 12 insurgents in a clash in southeastern Khost province . IN DT JJ NNP NN , DT NNP NN VBD NN NNS VBP VBN IN JJS CD NNS IN DT NN IN JJ NNP NN . A military statement Thursday , said the fighting erupted late Tuesday , when insurgents fired rockets at a U.S. base at Salerno and troops retaliated with artillery and air strikes at rebel positions . DT JJ NN NNP , VBD DT NN VBD JJ NNP , WRB NNS VBD NNS IN DT NNP NN IN NNP CC NNS VBD IN NN CC NN NNS IN JJ NNS . There were no coalition casualties . EX VBD DT NN NNS . The pairs freeskate program highlights action at the 2006 Olympics Monday in Turin , Italy as top Russian and Chinese pairs duel for a gold medal . DT NNS NN NN VBZ NN IN DT CD NNS NNP IN NNP , NNP IN JJ JJ CC JJ NNS NN IN DT NN NN . Two-time world and five-time European champion Maxim Marinin and Tatiana Totmianina of Russian placed first in the short program Saturday . JJ NN CC JJ JJ NN NNP NNP CC NNP NNP IN JJ VBD RB IN DT JJ NN NNP . They will try to hold off Zhang Dan and Zhang Hao ( not related ) . PRP MD VB TO VB RP NNP NNP CC NNP NNP LRB RB VBN RRB . The Chinese pair is second after the short program . DT JJ NN VBZ JJ IN DT JJ NN . Gold is up for grabs in the women 's 15-kilometer biathlon , which combines shooting with cross-country skiing . NN VBZ RP IN NNS IN DT NNS POS JJ NN , WDT VBZ NN IN JJ NN . Seven-time world champion Liv-Grete Poiree of Norway will seek her first Olympic gold in her third appearance at the Winter Games . JJ NN NN NNP NNP IN NNP MD VB PRP$ JJ NNP NN IN PRP$ JJ NN IN DT NNP NNPS . Women 's half-pipe snowboarding will award a gold medal , with 2002 Olympic champion Kelly Clark hoping to take home another gold and lead a U.S. sweep . NNS POS NN VBG MD VB DT NN NN , IN CD NNP NN NNP NNP VBG TO VB NN DT NN CC VB DT NNP NN . The men go for gold in the 500-meters long track speed skating event . DT NNS VBP IN NN IN DT NNS RB VBP NN NN NN . French authorities responded to several new arson attacks late Friday as rioting continued for the ninth straight night in the suburbs of Paris . JJ NNS VBD TO JJ JJ NN NNS RB NNP IN VBG VBD IN DT JJ JJ NN IN DT NNS IN NNP . Dozens of vehicles and buildings were set on fire in suburbs north of the city as gangs of young rioters , mostly of North African origin , harassed police and firefighters . NNS IN NNS CC NNS VBD VBN IN NN IN NNS RB IN DT NN IN NNS IN JJ NNS , RB IN JJ JJ NN , VBD NNS CC NNS . Similar incidents were reported elsewhere in France for the second night . JJ NNS VBD VBN RB IN NNP IN DT JJ NN . The latest outbreak comes despite the presence of more than one thousand police officers in the Paris suburbs . DT JJS NN VBZ IN DT NN IN JJR IN CD CD NN NNS IN DT NNP NNS . French Prime Minister Dominique de Villepin met with youths from those areas earlier Friday to discuss the crisis . JJ NN NN NNP NNP NNP VBD IN NNS IN DT NNS RB NNP TO VB DT NN . Many of the rioters say the French government has a racial bias and treats them as second class citizens . NN IN DT NNS VBP DT JJ NN VBZ DT JJ NN CC VBZ PRP IN JJ NN NNS . The violence started last week when two North African teenagers hid from police at a power station and were accidentally electrocuted . DT NN VBD JJ NN WRB CD JJ JJ NNS VBD IN NN IN DT NN NN CC VBD RB VBN . President Bush is on his way to Mar Del Plata , Argentina , to attend the Summit of the Americas , which opens Friday . NNP NNP VBZ IN PRP$ NN TO NNP NNP NNP , NNP , TO VB DT NN IN DT NNPS , WDT VBZ NNP . Mr. Bush and 31 other democratically elected leaders will discuss ways to boost employment , fight poverty and strengthen democracy throughout the western hemisphere . NNP NNP CC CD JJ RB VBN NNS MD VB NNS TO VB NN , VB NN CC VB NN IN DT JJ NN . Two other democratic nations : Panama and Honduras , are sending delegations , but not their head of state . CD JJ JJ NNS IN NNP CC NNP , VBP VBG NNS , CC RB PRP$ NN IN NN . At the summit , Mr. Bush is expected to push for resumed negotiations on a free trade zone that would encompass North , Central and South America . IN DT NN , NNP NNP VBZ VBN TO VB IN VBN NNS IN DT JJ NN NN WDT MD VB NNP , NNP CC NNP NNP . Mexico has voiced support for the idea , but critics such as Venezuela and Cuba say it will do nothing for the poor . NNP VBZ VBN NN IN DT NN , CC NNS JJ IN NNP CC NNP VBP PRP MD VB DT IN DT NN . Mr. Bush is also expected to meet privately with Argentina 's president , Nestor Kirchner . NNP NNP VBZ RB VBN TO VB RB IN NNP POS NN , NNP NNP . After the summit , the U.S. leader will visit Brazil and Panama before returning to Washington Monday . IN DT NN , DT NNP NN MD VB NNP CC NNP IN VBG TO NNP NNP . The U.S. Navy says it has captured a group of suspected pirates in the Indian Ocean off the coast of Somalia . DT NNP NNP VBZ PRP VBZ VBN DT NN IN JJ NNS IN DT NNP NNP IN DT NN IN NNP . The Navy says a missile destroyer , the USS Winston S. Churchill , and other U.S. Naval forces in the area located the pirate ship Saturday after receiving a report of a piracy attempt . DT NNP VBZ DT NN NN , DT NNP NNP NNP NNP , CC JJ NNP NNP NNS IN DT NN VBN DT NN NN NNP IN VBG DT NN IN DT NN NN . After unsuccessful attempts to contact the ship , the destroyer began what the Navy called ' aggressive maneuvering ' to stop the vessel . IN JJ NNS TO VB DT NN , DT NN VBD WP DT NNP VBD `` JJ VBG `` TO VB DT NN . The pirate ship finally stopped after the destroyer fired warning shots , and the crew effectively surrendered . DT NN NN RB VBD IN DT NN VBD VBG NNS , CC DT NN RB VBD . The Navy says sailors discovered small arms on the ship . DT NNP VBZ NNS VBD JJ NNS IN DT NN . Pirates have carried out about 25 attacks off the Somali coast since last March . NNS VBP VBN RP IN CD NNS IN DT JJ NN IN JJ NNP . Somalia 's transitional government has signed a multi-million dollar deal with a U.S. maritime security firm to fight piracy . NNP POS JJ NN VBZ VBN DT JJ NN NN IN DT NNP NN NN NN TO VB NN . Australia is scheduled to host the sixth annual Homeless World Cup later this year . NNP VBZ VBN TO VB DT JJ JJ JJ NNP NNP RB DT NN . The event brings together hundreds of homeless players from 48 countries to compete . DT NN VBZ RB NNS IN JJ NNS IN CD NNS TO VB . VOA 's Sean Maroney has more on the recent Homeless USA Cup in Washington . NNP POS NNP NNP VBZ RBR IN DT JJ NNP NNP NNP IN NNP . Indonesian authorities say a masked man featured on a video threatening attacks against the United States , Britain and Australia could be Malaysian fugitive Noordin Mohamad Top . JJ NNS VBP DT VBN NN VBD IN DT NN VBG NNS IN DT NNP NNPS , NNP CC NNP MD VB JJ JJ NNP NNP NNP . The video was shown to the public Wednesday . DT NN VBD VBN TO DT JJ NNP . It was among several found last week during raids that resulted in the killing of Azahari bin Husin , who police believe was the terrorist group Jemaah Islamiyah 's master bombmaker . PRP VBD IN JJ VBN JJ NN IN NNS WDT VBD IN DT NN IN NNP NNP NNP , WP NNS VBP VBD DT JJ NN NNP NNP POS NN NN . The tapes were discovered at a house that police say Noordin Mohamad Top rented in central Java . DT NNS VBD VBN IN DT NN IN NNS VBP NNP NNP NNP VBD IN JJ NNP . Police have been hunting him and Azahari since the 2002 Bali bombings that killed 202 people . NNS VBP VBN VBG PRP CC NNP IN DT CD NNP NNS WDT VBD CD NNS . Authorities also blame the two men for other attacks , including a car bomb blast outside the Australian embassy in Jakarta last year that killed 10 people . NNS RB VBP DT CD NNS IN JJ NNS , VBG DT NN NN NN IN DT JJ NN IN NNP JJ NN IN VBD CD NNS . The French sports daily L'Equipe has named Swiss tennis star Roger Federer its ' Champion of Champions ' for 2005 . DT JJ NNS JJ NNP VBZ VBN JJ NN NN NNP NNP PRP$ `` NNP IN NNPS `` IN CD . The world number-one men 's tennis player received 676 points in a vote by L'Equipe journalists to give him an overwhelming victory over world motorcycle champion Valentino Rossi of Italy . DT NN JJ NNS POS NN NN VBD CD NNS IN DT NN IN NNP NNS TO VB PRP DT JJ NN IN NN NN NN NNP NNP IN NNP . Rossi got 387 points to take second place . NNP VBD CD NNS TO VB JJ NN . Third place went to Formula 1 world champion Fernando Alonso of Spain , while Ethiopian distance runner Kenenisa Bekele took fourth place . NNP NN VBD TO NNP CD NN NN NNP NNP IN NNP , IN JJ NN NN NNP NNP VBD JJ NN . The 24-year-old Federer dominated men 's tennis in 2005 , compiling an 81-4 winning record for the season . DT JJ NNP VBD NNS POS NN IN CD , VBG DT JJ NN NN IN DT NN . He also captured the Wimbledon and U.S. Open Grand Slam titles for the second straight year . PRP RB VBD DT NNP CC NNP NNP NNP NNP NNS IN DT JJ JJ NN . Federer is the just the second tennis player to win the L'Equipe award in its 25-year history . NNP VBZ DT RB DT JJ NN NN TO VB DT NNP NN IN PRP$ JJ NN . American Andre Agassi won in 1999 . JJ NNP NNP VBD IN CD . Iraqi officials say 965 Shi'ite pilgrims were killed Wednesday in a stampede on a bridge leading to a Baghdad shrine . JJ NNS VBP CD NNP NNS VBD VBN NNP IN DT NN IN DT NN VBG TO DT NNP NN . They say more than 450 others were injured and that the death toll could still rise . PRP VBP JJR IN CD NNS VBD VBN CC IN DT NN NN MD RB VB . Officials say panic swept through the crowd after a rumor spread that a suicide bomber was among the hundreds of thousands of pilgrims . NNS VBP NN VBD IN DT NN IN DT NN NN IN DT NN NN VBD IN DT NNS IN NNS IN NNS . Hundreds of women , children and the elderly were either trampled or shoved to their deaths in the Tigris River below . NNS IN NNS , NNS CC DT NN VBD RB VBN CC VBN TO PRP$ NNS IN DT NNP NNP IN . Prime Minister Ibrahim al-Jaafari declared three days of mourning . NNP NNP NNP NNP VBD CD NNS IN NN . The United States offered its condolences and help to the victims . DT NNP NNPS VBD PRP$ NNS CC NN TO DT NNS . Earlier Wednesday , insurgents fired mortars near the shrine , killing seven people . RBR NNP , NNS VBD NNS IN DT NN , VBG CD NNS . A little-known militant group claimed responsibility for the attack in an unverifiable Internet statement . DT JJ JJ NN VBD NN IN DT NN IN DT JJ NN NN . Elsewhere in Iraq , the U.S. military reports the deaths of two soldiers since Tuesday . RB IN NNP , DT NNP JJ NNS DT NNS IN CD NNS IN NNP . Israel has returned to Lebanon the bodies of three Hezbollah militants who were killed in cross-border fighting earlier this week . NNP VBZ VBN TO NNP DT NNS IN CD NNP NNS WP VBD VBN IN JJ NN RBR DT NN . Israeli military officials say the bodies were returned in an effort to defuse tensions and following a request from Lebanon . JJ JJ NNS VBP DT NNS VBD VBN IN DT NN TO VB NNS CC VBG DT NN IN NNP . Red Cross officials brought the bodies to the Lebanese border , where hundreds of black-clad Hezbollah fighters were waiting . NNP NNP NNS VBD DT NNS TO DT JJ NN , WRB NNS IN JJ NNP NNS VBD VBG . The three were killed Monday when they crossed into Israel during some of the heaviest fighting along the border since Israeli troops withdrew from southern Lebanon in 2000 . DT CD VBD VBN NNP WRB PRP VBD IN NNP IN DT IN DT JJS NN IN DT NN IN JJ NNS VBD IN JJ NNP IN CD . A fourth Hezbollah fighter was killed , but his body was quickly retrieved by the Lebanese . DT JJ NNP NN VBD VBN , CC PRP$ NN VBD RB VBN IN DT NNS . Eleven Israeli soldiers were wounded in the fighting . CD JJ NNS VBD VBN IN DT NN . Police in Pakistan say they have arrested six Islamic militants who belong to a group accused of attacks on the country 's Shi'ite minority . NNS IN NNP VBP PRP VBP VBN CD JJ NNS WP VBP TO DT NN VBN IN NNS IN DT NN POS JJ NN . Police say the militants belong to the banned Lashkar-e-Jhangvi group , which has alleged links to al-Qaida . NNS VBP DT NNS VBP TO DT VBN NNP NN , WDT VBZ VBN NNS TO NNP . They made the arrests during a raid on the group 's base in Multan , in central Pakistan . PRP VBD DT NNS IN DT NN IN DT NN POS NN IN NNP , IN JJ NNP . Officials say the group is responsible for suicide bombings on Shi'ite religious sites and may have been planning new attacks . NNS VBP DT NN VBZ JJ IN NN NNS IN NNP JJ NNS CC MD VB VBN VBG JJ NNS . Police have arrested several other members of the group recently . NNS VBP VBN JJ JJ NNS IN DT NN RB . Yemeni officials say al-Qaida militants ambushed a military convoy on Friday , killing 12 soldiers . JJ NNS VBP NNP NNS VBD DT JJ NN IN NNP , VBG CD NNS . Officials say the militants fired machine guns and rocket-propelled grenades at the convoy as it was traveling in southern Abyan province . NNS VBP DT NNS VBD NN NNS CC JJ NNS IN DT NN IN PRP VBD VBG IN JJ NNP NN . Authorities say the convoy was carrying supplies , including water , to military bases in the area . NNS VBP DT NN VBD VBG NNS , VBG NN , TO JJ NNS IN DT NN . Yemen 's weak central government is struggling with a growing threat from al-Qaida , which has stepped up attacks in the impoverished country . NNP POS JJ JJ NN VBZ VBG IN DT VBG NN IN NNP , WDT VBZ VBN RP NNS IN DT JJ NN . Meanwhile , the French News Agency ( AFP ) says secessionists militants in Yemen have kidnapped an intelligence officer and three other people . RB , DT NNP NNP NNP LRB NNP RRB VBZ NNS NNS IN NNP VBP VBN DT NN NN CC CD JJ NNS . The news agency quotes southern secessionist activists as saying the abductions were in retaliation for the government 's hunt for a member of their group . DT NN NN VBZ JJ NN NNS IN VBG DT NNS VBD IN NN IN DT NN POS NN IN DT NN IN PRP$ NN . A panel of U.N. experts has asked the Security Council to impose sanctions on people it accuses of blocking peace in Sudan 's Darfur region . DT NN IN NNP NNS VBZ VBN DT NNP NNP TO VB NNS IN NNS PRP VBZ IN VBG NN IN NNP POS NNP NN . The panel 's report says the council should consider placing a travel ban and a total asset freeze on figures in the Sudanese government , Darfur rebel groups , and government-backed militias . DT NN POS NN VBZ DT NN MD VB VBG DT NN NN CC DT JJ NN NN IN NNS IN DT JJ NN , NNP NN NNS , CC JJ NNS . The Security Council authorized the sanctions last March but has yet to impose them on anyone . DT NNP NNP VBD DT NNS JJ NNP CC VBZ RB TO VB PRP IN DT . News agencies that obtained the report say it was scheduled to go to the full council this week but was temporarily blocked by Qatar and China . NN NNS WDT VBD DT NN VBP PRP VBD VBN TO VB TO DT JJ NN DT NN CC VBD RB VBN IN NNP CC NNP . Tens of thousands of people in Darfur have been killed and some two million displaced during three years of conflict between the rebels and Sudan 's government . NNS IN NNS IN NNS IN NNP VBP VBN VBN CC DT CD CD VBD IN CD NNS IN NN IN DT NNS CC NNP POS NN . Several rounds of peace talks have failed to yield any substantial progress . JJ NNS IN NN NNS VBP VBN TO VB DT JJ NN . The medical aid group Doctors Without Borders says lead poisoning has killed some 400 children in northern Nigeria over the past six months . DT JJ NN NN NNS IN NNP VBZ NN NN VBZ VBN DT CD NNS IN JJ NNP IN DT JJ CD NNS . The new toll is more than double the 160 deaths , including 111 children , that Nigerian authorities reported in June . DT JJ NN VBZ JJR IN VB DT CD NNS , VBG CD NNS , IN JJ NNS VBD IN NNP . At that time , the World Health Organization said lead concentrations in parts of Nigeria 's Zamfara state were 250 times higher than those allowed in residential areas in the United States and France . IN DT NN , DT NNP NNP NNP VBD JJ NNS IN NNS IN NNP POS NNP NN VBD CD NNS JJR IN DT VBN IN JJ NNS IN DT NNP NNPS CC NNP . Nigerian health officials have said the poisoning is linked to illegal gold mining . JJ NN NNS VBP VBN DT NN VBZ VBN TO JJ NN NN . The WHO has sent epidemiologists and pediatricians to help contain the outbreak and prevent similar problems in the future . DT NNP VBZ VBN NNS CC NNS TO VB VB DT NN CC VB JJ NNS IN DT NN . Concentration of lead in the body can damage the kidneys , nervous system and reproductive system . NN IN NN IN DT NN MD VB DT NNS , JJ NN CC JJ NN . Children under the age of six are especially vulnerable . NNS IN DT NN IN CD VBP RB JJ . Sri Lanka 's Tamil Tiger separatists are being praised by international aid workers for their efficient handling of the tsunami aftermath in the northern region controlled by the rebels . NNP NNP POS NNP NNP NNS VBP VBG VBN IN JJ NN NNS IN PRP$ JJ NN IN DT NN NN IN DT JJ NN VBN IN DT NNS . The Washington Post reports from northern Sri Lanka that the Tigers should get most of the credit for quickly restoring order , at least in the town of Mullaittivu , which lost 3,000 of its 5,300 residents to the tsunami . DT NNP NNP VBZ IN JJ NNP NNP IN DT NNP MD VB JJS IN DT NN IN RB VBG NN , IN JJS IN DT NN IN NNP , WDT VBD CD IN PRP$ CD NNS TO DT NN . The report says by Monday afternoon , just eight days after the devastating tsunami hit Sri Lanka , most of the corpses had been burned and the ground sprayed with disinfectant . DT NN VBZ IN NNP NN , RB CD NNS IN DT JJ NN VBD NNP NNP , JJS IN DT NNS VBD VBN VBN CC DT NN VBD IN NN . It says Mullaittivu 's streets had been cleared and utility poles were being re-erected . PRP VBZ NNP POS NNS VBD VBN VBN CC NN NNS VBD VBG VBN . The newspaper 's correspondent found that some 1500 displaced residents had been sheltered in a college building - complete with adequate food , clothes and medicines . DT NN POS NN VBD IN DT CD JJ NNS VBD VBN VBN IN DT NN NN : JJ IN JJ NN , NNS CC NNS . Japan 's foreign minister is in Afghanistan on an unannounced visit to meet with President Hamid Karzai and Foreign Minister Rangin Dadfar Spanta . NNP POS JJ NN VBZ IN NNP IN DT JJ NN TO VB IN NNP NNP NNP CC NNP NNP NNP NNP NNP . Masahiko Komuri arrived in Kabul Sunday after a visit to Pakistan . NNP NNP VBD IN NNP NNP IN DT NN TO NNP . He was expected to discuss security issues and Afghan reconstruction with Mr. Karzai and with Spanta . PRP VBD VBN TO VB NN NNS CC JJ NN IN NNP NNP CC IN NNP . The French news agency reports that Komura asked his Afghan counterpart to work on improving relations with Pakistan . DT JJ NN NN NNS IN NNP VBD PRP$ JJ NN TO VB IN VBG NNS IN NNP . The two nations have been struggling with armed militants sheltering along their mutual border . DT CD NNS VBP VBN VBG IN JJ NNS VBG IN PRP$ JJ NN . Japan said Komuri 's visit was not announced ahead of time because of safety concerns . NNP VBD NNP POS NN VBD RB VBN RB IN NN IN IN NN NNS . President Karzai was the target of a bomb attack on April 27 . NNP NNP VBD DT NN IN DT NN NN IN NNP CD . In Pakistan Saturday , Komuri met with President Pervez Musharraf and Prime Minister Yousuf Raza Gilani , as well as Foreign Minister Shah Mehmood Qureshi . IN NNP NNP , NNP VBD IN NNP NNP NNP CC NNP NNP NNP NNP NNP , RB RB IN NNP NNP NNP NNP NNP . Talks there centered on terrorism and cooperation on infrastructure projects . NNS RB VBD IN NN CC NN IN NN NNS . Shops and schools are closed in the main city of Indian Kashmir in protest of Israel 's continuing air strikes on southern Lebanon . NNS CC NNS VBP VBN IN DT JJ NN IN JJ NNP IN NN IN NNP POS VBG NN NNS IN JJ NNP . The one-day strike Saturday in Kashmir 's summer capital of Srinagar was called by Syed Ali Geelani . DT JJ NN NNP IN NNP POS NN NN IN NNP VBD VBN IN NNP NNP NNP . He heads the hard-line wing of the separatist alliance , the All Parties Hurriyat Conference . PRP VBZ DT JJ NN IN DT JJ NN , DT NNP NNP NNP NNP . Angry protests were held in several parts of India Friday against Israel 's military action . JJ NNS VBD VBN IN JJ NNS IN NNP NNP IN NNP POS JJ NN . Protests erupted soon after Muslim prayers Friday afternoon in Kashmir . NNS VBD RB IN NNP NNS NNP NN IN NNP . Kashmir is divided between India and Pakistan and is claimed in full by both NNP VBZ VBN IN NNP CC NNP CC VBZ VBN IN JJ IN DT Haitian authorities said three inmates were killed Sunday in a prison riot in Haiti 's quake-damaged penitentiary . JJ NNS VBD CD NNS VBD VBN NNP IN DT NN NN IN NNP POS JJ NN . Officials said the three were trying to escape from the Port-au-Prince prison . NNS VBD DT CD VBD VBG TO VB IN DT NN NN . It was not immediately clear if any other inmates did escape . PRP VBD RB RB JJ IN DT JJ NNS VBD NN . United Nations troops and Haitian police were in the prison at the time of the uprising . NNP NNP NNS CC JJ NNS VBD IN DT NN IN DT NN IN DT NN . The U.N. said the inmates briefly held seven people connected with the United Nations hostage . DT NNP VBD DT NNS RB VBD CD NNS VBN IN DT NNP NNP NN . Some of the hostages suffered minor injuries . DT IN DT NNS VBD JJ NNS . The Miami Herald newspaper reports the prison upheaval was quashed by mid-afternoon when U.N. troops blocked off the streets surrounding the prison . DT NNP NNP NN VBZ DT NN NN VBD VBN IN NN WRB NNP NNS VBD RP DT NNS VBG DT NN . Sunday 's uprising continues a long saga of unrest and dangerous conditions in Haiti 's prisons . NNP POS NN VBZ DT JJ NN IN NN CC JJ NNS IN NNP POS NNS . In the chaos after Haiti 's devastating earthquake in January , thousands of prisoners escaped the massively overcrowded penitentiary , including some well-known , dangerous gang leaders . IN DT NN IN NNP POS JJ NN IN NNP , NNS IN NNS VBD DT RB JJ NN , VBG DT JJ , JJ NN NNS . A prominent U.S. Republican lawmaker is criticizing CNN for airing a video from Iraqi insurgents showing a U.S. soldier in Iraq getting shot by a sniper . DT JJ NNP NNP NN VBZ VBG NNP IN VBG DT NN IN JJ NNS VBG DT NNP NN IN NNP VBG VBN IN DT NN . Representative Duncan Hunter of California , who chairs the House Armed Services Committee , has sent a letter to Defense Secretary Donald Rumsfeld saying the U.S.-based network served as ' the publicist for an enemy propaganda film . ' NNP NNP NNP IN NNP , WP VBZ DT NNP NNP NNPS NNP , VBZ VBN DT NN TO NNP NNP NNP NNP VBG DT JJ NN VBD IN `` DT NN IN DT NN NN NN . `` CNN first aired the video Wednesday . NNP RB VBD DT NN NNP . A CNN producer says the network broadcast the video ' to present the unvarnished truth ' about the situation in Iraq . DT NNP NN VBZ DT NN VBD DT NN `` TO VB DT JJ NN `` IN DT NN IN NNP . But in his letter to Rumsfeld , Hunter denounces the film as ' nothing short of a terrorist snuff film . ' CC IN PRP$ NN TO NNP , NNP VBZ DT NN IN `` DT NN IN DT JJ NN NN . `` He is demanding that any CNN reporters embedded with U.S. forces in Iraq be expelled . PRP VBZ VBG IN DT NNP NNS VBD IN NNP NNS IN NNP VB VBN . Integra-A Hotel & Restaurant Co. said its planned rights offering to raise about $ 9 million was declared effective and the company will begin mailing materials to shareholders at the end of this week . NNP NNP CC NNP NNP VBD PRP$ VBN NNS NN TO VB IN $ CD CD VBD VBN JJ CC DT NN MD VB VBG NNS TO NNS IN DT NN IN DT NN . Under the offer , shareholders will receive one right for each 105 common shares owned . IN DT NN , NNS MD VB CD NN IN DT CD JJ NNS VBN . Each right entitles the shareholder to buy $ 100 face amount of 13.5 % bonds due 1993 and warrants to buy 23.5 common shares at 30 cents a share . DT NN VBZ DT NN TO VB $ CD NN NN IN CD NN NNS JJ CD CC NNS TO VB CD JJ NNS IN CD NNS DT NN . The rights , which expire Nov. 21 , can be exercised for $ 100 each . DT NNS , WDT VBP NNP CD , MD VB VBN IN $ CD DT . Integra , which owns and operates hotels , said that Hallwood Group Inc. has agreed to exercise any rights that are n't exercised by other shareholders . NNP , WDT VBZ CC VBZ NNS , VBD IN NNP NNP NNP VBZ VBN TO VB DT NNS WDT VBP RB VBN IN JJ NNS . Hallwood , a Cleveland merchant bank , owns about 11 % of Integra . NNP , DT NNP NN NN , VBZ IN CD NN IN NNP . Having a small , open economy makes Macedonia vulnerable to economic developments in Europe and dependent on regional integration and progress toward EU membership for continued economic growth . VBG DT JJ , JJ NN VBZ NNP JJ TO JJ NNS IN NNP CC JJ IN JJ NN CC NN IN NNP NN IN JJ JJ NN . At independence in September 1991 , Macedonia was the least developed of the Yugoslav republics , producing a mere 5 % of the total federal output of goods and services . IN NN IN NNP CD , NNP VBD DT JJS VBN IN DT JJ NNS , VBG DT JJ CD NN IN DT JJ JJ NN IN NNS CC NNS . The collapse of Yugoslavia ended transfer payments from the central government and eliminated advantages from inclusion in a de~facto free trade area . DT NN IN NNP VBD NN NNS IN DT JJ NN CC VBD NNS IN NN IN DT JJ JJ NN NN . An absence of infrastructure , UN sanctions on the downsized Yugoslavia , and a Greek economic embargo over a dispute about the country 's constitutional name and flag hindered economic growth until 1996 . DT NN IN NN , NNP NNS IN DT JJ NNP , CC DT JJ JJ NN IN DT NN IN DT NN POS JJ NN CC NN VBD JJ NN IN CD . Since then , Macedonia has maintained macroeconomic stability with low inflation , but it has so far lagged the region in attracting foreign investment and creating jobs , despite making extensive fiscal and business sector reforms . IN RB , NNP VBZ VBN JJ NN IN JJ NN , CC PRP VBZ RB RB VBN DT NN IN VBG JJ NN CC VBG NNS , IN VBG JJ JJ CC NN NN NNS . Official unemployment remains high at 31.7 % , but may be overstated based on the existence of an extensive gray market , estimated to be more than 20 % of GDP , that is not captured by official statistics . JJ NN VBZ JJ IN CD NN , CC MD VB VBN VBN IN DT NN IN DT JJ JJ NN , VBN TO VB JJR IN CD NN IN NN , WDT VBZ RB VBN IN JJ NNS . In the wake of the global economic downturn , Macedonia has experienced decreased foreign direct investment , lowered credit , and a large trade deficit . IN DT NN IN DT JJ JJ NN , NNP VBZ VBN VBN JJ JJ NN , VBN NN , CC DT JJ NN NN . However , as a result of conservative fiscal policies and a sound financial system , in 2010 the country received slightly improved credit ratings . RB , IN DT NN IN JJ JJ NNS CC DT JJ JJ NN , IN CD DT NN VBD RB VBN NN NNS . Macroeconomic stability also was maintained by a prudent monetary policy , which kept the domestic currency at the pegged level against the euro , while interest rates were falling . JJ NN RB VBD VBN IN DT JJ JJ NN , WDT VBD DT JJ NN IN DT VBN NN IN DT NN , IN NN NNS VBD VBG . As a result , GDP growth was modest , but positive , in 2010 . IN DT NN , NN NN VBD JJ , CC JJ , IN CD . In late 1999 , about 70 % of the economic infrastructure of Timor-Leste was laid waste by Indonesian troops and anti-independence militias . IN JJ CD , IN CD NN IN DT JJ NN IN NN VBD VBN NN IN JJ NNS CC JJ NNS . Three hundred thousand people fled westward . CD CD CD NNS VBD RB . Over the next three years a massive international program , manned by 5,000 peacekeepers ( 8,000 at peak ) and 1,300 police officers , led to substantial reconstruction in both urban and rural areas . IN DT JJ CD NNS DT JJ JJ NN , VBN IN CD NNS LRB CD IN NN RRB CC CD NN NNS , VBD TO JJ NN IN DT JJ CC JJ NNS . By the end of 2005 , refugees had returned or had settled in Indonesia . IN DT NN IN CD , NNS VBD VBN CC VBN VBN IN NNP . The country continues to face great challenges in rebuilding its infrastructure , strengthening the civil administration , and generating jobs for young people entering the work force . DT NN VBZ TO VB JJ NNS IN VBG PRP$ NN , VBG DT JJ NN , CC VBG NNS IN JJ NNS VBG DT NN NN . The development of oil and gas resources in offshore waters has greatly supplemented government revenues . DT NN IN NN CC NN NNS IN JJ NNS VBZ RB VBN NN NNS . This technology-intensive industry , however , has done little to create jobs for the unemployed because there are no production facilities in Timor-Leste . DT JJ NN , RB , VBZ VBN RB TO VB NNS IN DT JJ IN EX VBP DT NN NNS IN NNP . Gas is piped to Australia . NNP VBZ VBN TO NNP . In June 2005 , the National Parliament unanimously approved the creation of a Petroleum Fund to serve as a repository for all petroleum revenues and to preserve the value of Timor-Leste 's petroleum wealth for future generations . IN NNP CD , DT NNP NNP RB VBD DT NN IN DT NNP NNP TO VB IN DT NN IN DT NN NNS CC TO VB DT NN IN NNP POS NN NN IN JJ NNS . The Fund held assets of US $ 6.6 billion as of October 2010 . DT NNP VBD NNS IN NNP $ CD CD IN IN NNP CD . The economy continues to recover strongly from the mid-2006 outbreak of violence and civil unrest , which disrupted both private and public sector economic activity . DT NN VBZ TO VB RB IN DT JJ NN IN NN CC JJ NN , WDT VBD DT JJ CC JJ NN JJ NN . The government in 2008 resettled tens of thousands of an estimated 1,00,000 internally displaced persons ( IDPs ) ; most IDPs returned home by early 2009 . DT NN IN CD VBD NNS IN NNS IN DT VBN CD RB JJ NNS LRB NNP RRB ; RBS NNPS VBD NN IN RB CD . Government spending increased markedly in 2009 and 2010 , primarily on basic infrastructure , including electricity and roads . NN NN VBD RB IN CD CC CD , RB IN JJ NN , VBG NN CC NNS . Limited experience in procurement and infrastructure building has hampered these projects . JJ NN IN NN CC NN NN VBZ VBN DT NNS . The underlying economic policy challenge the country faces remains how best to use oil-and-gas wealth to lift the non-oil economy onto a higher growth path and to reduce poverty . DT JJ JJ NN NN DT NN VBZ VBZ WRB JJS TO VB JJ NN TO VB DT JJ NN IN DT JJR NN NN CC TO VB NN . Finland was a province and then a grand duchy under Sweden from the 12th to the 19th centuries , and an autonomous grand duchy of Russia after 1809 . NNP VBD DT NN CC RB DT JJ NN IN NNP IN DT CD TO DT JJ NNS , CC DT JJ JJ NN IN NNP IN CD . It won its complete independence in 1917 . PRP VBD PRP$ JJ NN IN CD . During World War II , it was able to successfully defend its freedom and resist invasions by the Soviet Union - albeit with some loss of territory . IN NNP NNP NNP , PRP VBD JJ TO RB VB PRP$ NN CC VB NNS IN DT NNP NNP : IN IN DT NN IN NN . In the subsequent half century , the Finns made a remarkable transformation from a farm / forest economy to a diversified modern industrial economy ; per capita income is now among the highest in Western Europe . IN DT JJ NN NN , DT NNS VBD DT JJ NN IN DT NN NN NN NN TO DT JJ JJ JJ NN ; IN NN NN VBZ RB IN DT JJS IN NNP NNP . A member of the European Union since 1995 , Finland was the only Nordic state to join the euro system at its initiation in January 1999 . DT NN IN DT NNP NNP IN CD , NNP VBD DT JJ JJ NN TO VB DT NN NN IN PRP$ NN IN NNP CD . In the 21st century , the key features of Finland 's modern welfare state are a high standard of education , equality promotion , and national social security system - currently challenged by an aging population and the fluctuations of an export-driven economy . IN DT JJ NN , DT JJ NNS IN NNP POS JJ NN NN VBP DT JJ NN IN NN , NN NN , CC JJ JJ NN NN : RB VBN IN DT VBG NN CC DT NNS IN DT JJ NN . Although 115 species of fish have been identified in the territorial waters of Clipperton Island , the only economic activity is tuna fishing . IN CD NNS IN NN VBP VBN VBN IN DT JJ NNS IN NNP NNP , DT JJ JJ NN VBZ JJ NN . A RAVEN saw a Swan and desired to secure for himself the same beautiful plumage . DT NN VBD DT NN CC VBN TO VB IN PRP DT JJ JJ NN . Supposing that the Swan 's splendid white color arose from his washing in the water in which he swam , the Raven left the altars in the neighborhood where he picked up his living , and took up residence in the lakes and pools . VBG IN DT NN POS JJ JJ NN VBD IN PRP$ NN IN DT NN IN WDT PRP VBD , DT NN VBD DT NNS IN DT NN WRB PRP VBD RP PRP$ NN , CC VBD RP NN IN DT NNS CC NNS . But cleansing his feathers as often as he would , he could not change their color , while through want of food he perished . CC VBG PRP$ NNS RB RB IN PRP MD , PRP MD RB VB PRP$ NN , IN IN VBP IN NN PRP VBD . Change of habit can not alter Nature . NNP IN NN MD RB VB NN . A BOY was stung by a Nettle . DT NN VBD VBN IN DT NN . He ran home and told his Mother , saying , ' Although it hurts me very much , I only touched it gently . ' PRP VBD NN CC VBD PRP$ NNP , VBG , `` IN PRP VBZ PRP RB RB , PRP RB VBD PRP RB . `` ' That was just why it stung you , ' said his Mother . `` DT VBD RB WRB PRP VBD PRP , `` VBD PRP$ NNP . ' The next time you touch a Nettle , grasp it boldly , and it will be soft as silk to your hand , and not in the least hurt you . ' `` DT JJ NN PRP VB DT NN , VB PRP RB , CC PRP MD VB JJ IN NN TO PRP$ NN , CC RB IN DT JJS NN PRP . `` Whatever you do , do with all your might . WDT PRP VBP , VB IN DT PRP$ NN . The wind blew so much dust around the field today , we could n't even see who was beating us . DT NN VBD RB JJ NN IN DT NN NN , PRP MD RB RB VB WP VBD VBG PRP . Philosophy is a game with objectives and no rules . NN VBZ DT NN IN NNS CC DT NNS . Mathematics is a game with rules and no objectives . NN VBZ DT NN IN NNS CC DT NNS . Kids in the back seat cause accidents . NNS IN DT JJ NN VBP NNS . Accidents in the back seat cause kids . NNS IN DT JJ NN VBP NNS . The greatest financier in the Bible was the Pharaoh 's daughter . DT JJS NN IN DT NNP VBD DT NNP POS NN . One day she went down to the Bank of the Nile and drew out a little prophet . CD NN PRP VBD RB TO DT NNP IN DT NNP CC VBD RP DT JJ NN . Helium was up . NNP VBD RB . Feathers were down . NNS VBD RB . Paper was stationary . NN VBD JJ . Knives were up sharply . NNS VBD RB RB . Pencils lost a few points . NNS VBD DT JJ NNS . Hiking equipment was trailing . VBG NN VBD VBG . Elevators rose , while escalators continued a slow decline . NNS VBD , IN NNS VBD DT JJ NN . Light switches were off . NN NNS VBD RB . Mining equipment hit rock bottom . NN NN VBD NN NN . Diapers remained unchanged . NNS VBD JJ . Shipping lines stayed at an even keel . VBG NNS VBD IN DT RB NN . Balloon prices were inflated . NN NNS VBD VBN . And batteries exploded in an attempt to recharge the market . CC NNS VBD IN DT NN TO VB DT NN . A new public opinion poll indicates that Americans ' support for the war in Iraq is at its lowest ever - and that in the aftermath of Hurricane Katrina , most Americans are concerned Iraq is draining money and resources needed at home . DT JJ JJ NN NN VBZ IN NNS POS NN IN DT NN IN NNP VBZ IN PRP$ JJS RB : CC IN IN DT NN IN NNP NNP , JJS NNS VBP JJ NNP VBZ VBG NN CC NNS VBN IN NN . In a New York Times / CBS poll released Saturday , a record low number of those surveyed - only 44 percent - said the United States made the right decision in going to war in Iraq . IN DT NNP NNP NNP CC NNP NN VBN NNP , DT NN JJ NN IN DT VBN : RB CD NN : VBD DT NNP NNPS VBD DT JJ NN IN VBG TO NN IN NNP . Fifty-two percent wanted troops to be withdrawn as soon as possible , even if it means leaving the country unstable . CD NN VBD NNS TO VB VBN RB RB IN JJ , RB IN PRP VBZ VBG DT NN JJ . Ninety percent said they would oppose cutting spending on domestic programs to continue funding the war . CD NN VBD PRP MD VB VBG NN IN JJ NNS TO VB VBG DT NN . The nationwide poll of more than 1,000 adults was conducted September 9 through 13 . DT JJ NN IN JJR IN CD NNS VBD VBN NNP CD IN CD . The United Nations food agency says a lack of funds has left three million Ethiopians who rely on food aid in danger of malnutrition . DT NNP NNP NN NN VBZ DT NN IN NNS VBZ VBN CD CD NNS WP VBP IN NN NN IN NN IN NN . The World Food Program ( WFP ) appealed for $ 33 million Tuesday so that it can continue providing food in Ethiopia for the next two and a half months . DT NNP NNP NNP LRB NNP RRB VBD IN $ CD CD NNP RB IN PRP MD VB VBG NN IN NNP IN DT JJ CD CC DT JJ NNS . It says it has received only slightly more than half of the $ 212 million it needs this year for food aid in Ethiopia . PRP VBZ PRP VBZ VBN RB RB JJR IN NN IN DT $ CD CD PRP VBZ DT NN IN NN NN IN NNP . The agency says it has less than 20 percent of what it needs for non-food items such as health , water and sanitation facilities . DT NN VBZ PRP VBZ JJR IN CD NN IN WP PRP VBZ IN JJ NNS JJ IN NN , NN CC NN NNS . The WFP says malnutrition rates are on the rise in Ethiopia , with the situation especially bad in the eastern Somali region . DT NNP VBZ NN NNS VBP IN DT NN IN NNP , IN DT NN RB JJ IN DT JJ JJ NN . There , the WFP says nearly five percent of children are severely malnourished . RB , DT NNP VBZ RB CD NN IN NNS VBP RB VBN . U.S. military officials say elements of the Russian Air Force will join U.S. and Canadian air units in the first-ever joint air defense exercises between the former Cold War foes . NNP JJ NNS VBP NNS IN DT JJ NNP NNP MD VB NNP CC JJ NN NNS IN DT JJ JJ NN NN NNS IN DT JJ NNP NNP NNS . A statement from the North American Aerospace Defense Command , NORAD , says the maneuvers - set to begin August 8 - will include training to detect and combat terrorist attacks on commercial airliners . DT NN IN DT NNP NNP NNP NNP NNP , NNP , VBZ DT NNS IN VBN TO VB NNP CD : MD VB NN TO VB CC VB JJ NNS IN JJ NNS . The exercises , code-named Vigilant Eagle , will be coordinated from a U.S. military command center at Elmendorf air base in Alaska and Russian facilities near the Far Eastern city of Khabarovsk . DT NNS , JJ NNP NNP , MD VB VBN IN DT NNP JJ NN NN IN NNP NN NN IN NNP CC JJ NNS IN DT NNP NNP NN IN NNP . Russian Air Force spokesman , Lieutenant Colonel Vladimir Drik , described the exercises as part of a working plan to improve cooperation between Russian and U.S. forces . JJ NNP NNP NN , NNP NNP NNP NNP , VBD DT NNS IN NN IN DT VBG NN TO VB NN IN JJ CC NNP NNS . A NORAD statement said the maneuvers will require both the Russian and NORAD bases to launch or divert fighter planes to investigate and shadow commercial aircraft . DT NNP NN VBD DT NNS MD VB DT DT JJ CC NNP NNS TO VB CC VB NN NNS TO VB CC VB JJ NN . A U.S. general says Iraqi investigators have broken up a ring of police officers who were kidnapping people , extorting ransoms and sometimes killing their victims . DT NNP NN VBZ JJ NNS VBP VBN RP DT NN IN NN NNS WP VBD VBG NNS , VBG NNS CC RB VBG PRP$ NNS . In an interview with the USA Today newspaper , Major General Joseph Peterson said the unit is alleged to have operated in northern Baghdad , under the command of an Iraqi police general . IN DT NN IN DT NNP NNP NN , NNP NNP NNP NNP VBD DT NN VBZ VBN TO VB VBN IN JJ NNP , IN DT NN IN DT JJ NN NN . General Peterson said the police general , who was not identified , was arrested and then released last month . NNP NNP VBD DT NN NN , WP VBD RB VBN , VBD VBN CC RB VBN JJ NN . He is said to remain under investigation . PRP VBZ VBN TO VB IN NN . He said 17 others linked to the alleged ring remain in custody . PRP VBD CD NNS VBN TO DT JJ NN VBP IN NN . Allegations of Iraqi police death squads operating in Iraq 's Shi'ite-dominated security forces have circulated widely in recent weeks . NNS IN JJ NN NN NNS VBG IN NNP POS JJ NN NNS VBP VBN RB IN JJ NNS . Hundreds of bodies - many of them showing signs of torture - have turned up in and around the capital since the February 22 bombing of a major Shi'ite shrine near Baghdad . NNS IN NNS IN NN IN PRP VBG NNS IN NN : VBP VBN RP IN CC IN DT NN IN DT NNP CD NN IN DT JJ NNP NN IN NNP . At least 35,000 people have rallied in Pakistan 's largest city , Karachi , to protest controversial cartoons depicting the Prophet Muhammad . IN JJS CD NNS VBP VBN IN NNP POS JJS NN , NNP , TO VB JJ NNS VBG DT NNP NNP . Shouting anti-American and anti-European slogans , the demonstrators marched through the city to denounce the cartoons , first published in Denmark last September . VBG JJ CC JJ NNS , DT NNS VBD IN DT NN TO VB DT NNS , RB VBN IN NNP JJ NNP . A coalition of radical Islamic groups which opposes President Pervez Musharraf 's support for the U.S.-led war on terror organized Sunday 's rally . DT NN IN JJ NNP NNS WDT VBZ NNP NNP NNP POS NN IN DT JJ NN IN NN VBN NNP POS NN . Hundreds of riot police closely watched the gathering but no violence was reported . NNS IN NN NN RB VBD DT NN CC DT NN VBD VBN . Some protests in Pakistan have turned deadly and at least five people died in rioting last month . DT NNS IN NNP VBP VBN JJ CC IN JJS CD NNS VBD IN NN JJ NN . Iraqi officials say former dictator Saddam Hussein will go on trial in the second half of October , so as not to affect the outcome of a national referendum on the constitution to be held October 15 . JJ NNS VBP JJ NN NNP NNP MD VB IN NN IN DT JJ NN IN NNP , RB IN RB TO VB DT NN IN DT JJ NN IN DT NN TO VB VBN NNP CD . No official announcement has come from the Iraqi Special Tribunal in charge of the trials , but officials close to the case said Friday that Saddam Hussein will be tried for the 1982 killing of dozens of residents of the town of Dujail . DT NN NN VBZ VBN IN DT JJ NNP NNP IN NN IN DT NNS , CC NNS RB TO DT NN VBD NNP IN NNP NNP MD VB VBN IN DT CD NN IN NNS IN NNS IN DT NN IN NNP . The killings were allegedly in retaliation for a failed assassination attempt against him there . DT NNS VBD RB IN NN IN DT JJ NN NN IN PRP RB . Later , Saddam Hussein is expected to be tried for other alleged crimes , including the 1988 gassing of Kurds in Halabja and the 1991 suppression of a Shi'ite uprising in southern Iraq . RB , NNP NNP VBZ VBN TO VB VBN IN JJ JJ NNS , VBG DT CD NN IN NNS IN NNP CC DT CD NN IN DT NNP NN IN JJ NNP . A U.S. official says the United States is willing to give Iran more time to consider a key uranium enrichment deal that will yield fuel for an Iranian nuclear research reactor . DT NNP NN VBZ DT NNP NNPS VBZ JJ TO VB NNP JJR NN TO VB DT JJ NN NN NN WDT MD VB NN IN DT JJ JJ NN NN . Washington 's envoy to the International Atomic Energy Agency , Glyn Davies , told reporters in Vienna Monday that , in his words , ' we want to give Iran some space . ' NNP POS NN TO DT NNP NNP NNP NNP , NNP NNP , VBD NNS IN NNP NNP IN , IN PRP$ NNS , `` PRP VBP TO VB NNP DT NN . `` Davies also noted the negotiations have gone beyond the scheduled time frame . NNP RB VBD DT NNS VBP VBN IN DT JJ NN NN . Iran has not officially responded to a U.N.-backed uranium-enrichment proposal that was drafted three weeks ago in Vienna . NNP VBZ RB RB VBD TO DT JJ NN NN WDT VBD VBN CD NNS RB IN NNP . But leading Iranian parliamentarian Alaeddin Boroujerdi Saturday indicated Tehran will reject the plan to send any of its 1,200 kilograms of enriched uranium abroad for further enrichment . CC VBG JJ NN NNP NNP NNP VBD NNP MD VB DT NN TO VB DT IN PRP$ CD NNS IN VBN NN RB IN JJ NN . IAEA chief Mohamed ElBaradei had asked for the parties involved with the proposal ( Iran , the United States , Russia and France ) to respond by October 23 . NNP NN NNP NNP VBD VBN IN DT NNS VBN IN DT NN LRB NNP , DT NNP NNPS , NNP CC NNP RRB TO VB IN NNP CD . The U.S. Senate has been debating a military funding bill that would require President Bush to begin withdrawing troops from Iraq in October . DT NNP NNP VBZ VBN VBG DT JJ NN NN WDT MD VB NNP NNP TO VB VBG NNS IN NNP IN NNP . The measure is expected to pass Thursday in the Democratic-controlled Senate . DT NN VBZ VBN TO VB NNP IN DT JJ NNP . The legislation sets a non-binding goal of withdrawing U.S. troops from Iraq by April of next year . DT NN VBZ DT JJ NN IN VBG NNP NNS IN NNP IN NNP IN JJ NN . It also sets benchmarks for Iraq 's government to show progress in securing the country . PRP RB VBZ NNS IN NNP POS NN TO VB NN IN VBG DT NN . The Democratic-controlled U.S. House of Representatives approved a similar measure Wednesday . DT JJ NNP NNP IN NNP VBD DT JJ NN NNP . White House spokeswoman Dana Perino said President Bush will veto the legislation ' very soon ' after it arrives on his desk . NNP NNP NN NNP NNP VBD NNP NNP MD VB DT NN `` RB RB `` IN PRP VBZ IN PRP$ NN . The House measure lacked the two-thirds majority needed to override a veto , and the Senate measure is not expected to have enough votes to override a veto , either . DT NNP NN VBD DT NNS NN VBN TO VB DT NN , CC DT NNP NN VBZ RB VBN TO VB JJ NNS TO VB DT NN , RB . The Senate bill includes some $ 95 billion to fund military operations in Iraq and Afghanistan through the end of September . DT NNP NN VBZ DT $ CD CD TO VB JJ NNS IN NNP CC NNP IN DT NN IN NNP . Amnesty International says Taleban insurgents are deliberately targeting civilians in Afghanistan to instill fear and exert control over the population . NNP NNP VBZ NNP NNS VBP RB VBG NNS IN NNP TO VB NN CC NN NN IN DT NN . The London-based rights group said Thursday that civilians are increasingly facing suicide attacks , abductions and beheadings . DT JJ NNS NN VBD NNP IN NNS VBP RB VBG NN NNS , NNS CC NNS . The organization said Taleban militants have a deliberate policy of killing teachers , abducting aid workers and burning school buildings . DT NN VBD NNP NNS VBP DT JJ NN IN VBG NNS , VBG NN NNS CC NN NN NNS . It said targets also include women 's rights activists , clerics , government and health workers and teachers . PRP VBD NNS RB VBP NNS POS NNS NNS , NNS , NN CC NN NNS CC NNS . Amnesty said at least 756 civilians were killed in 2006 , mostly from roadside bombs and suicide attacks . NNP VBD IN JJS CD NNS VBD VBN IN CD , RB IN NN NNS CC NN NNS . On Wednesday , a U.S. commander in eastern Afghanistan said an expected Taleban offensive has not materialized , partly because of increased operations by U.S. and NATO forces . IN NNP , DT NNP NN IN JJ NNP VBD DT VBN NNP NN VBZ RB VBN , RB IN IN VBN NNS IN NNP CC NNP NNS . Brigadier General Joseph Votel says there are clashes every day , but they are mostly small scale . NN NNP NNP NNP VBZ EX VBP NNS DT NN , CC PRP VBP RB JJ NN . U.S. Treasury Secretary Henry Paulson is warning against irresponsible borrowing or lending to countries that have recently received debt relief . NNP NNP NNP NNP NNP VBZ VBG IN JJ NN CC NN TO NNS WDT VBP RB VBN NN NN . Speaking in Singapore Monday to the World Bank 's policy-setting committee , Paulson said the organization should develop an approach that prevents a reemergence of debt distress . VBG IN NNP NNP TO DT NNP NNP POS JJ NN , NNP VBD DT NN MD VB DT NN WDT VBZ DT NN IN NN NN . He did not single out any country , but stressed that creditors are still providing large loans to countries that have recently received debt relief . PRP VBD RB VB RP DT NN , CC VBD IN NNS VBP RB VBG JJ NNS TO NNS WDT VBP RB VBN NN NN . China , in particular , has come under fire for providing loans to many countries in Africa that have only recently had large debts forgiven . NNP , IN JJ , VBZ VBN IN NN IN VBG NNS TO JJ NNS IN NNP WDT VBP RB RB VBD JJ NNS VBN . Annual meetings of the World Bank and International Monetary Fund take place in Singapore Tuesday and Wednesday . JJ NNS IN DT NNP NNP CC NNP NNP NNP VB NN IN NNP NNP CC NNP . Sliders Preston Griffal and Dan Joye have earned the second U.S. Olympic luge team doubles berth by beating countrymen Christian Niccum and Patrick Quinn . NNS NNP NNP CC NNP NNP VBP VBN DT JJ NNP NNP NN NN VBZ JJ IN VBG NNS NNP NNP CC NNP NNP . Griffal and Joye won in the two-run competition by 0.12 seconds Wednesday in Lake Placid , New York . NNP CC NNP VBD IN DT JJ NN IN CD NNS NNP IN NNP NNP , NNP NNP . They will join two-time Olympic medalists Mark Grimmette and Brian Martinin the doubles competition . PRP MD VB JJ NNP NNS NNP NNP CC NNP NNP DT NNS NN . Niccum will still compete in singles luge but Quinn will not compete in the Turin Winter Games . NNP MD RB VB IN NNS VBP CC NNP MD RB VB IN DT NNP NNP NNPS . Meanwhile , the final men 's singles spot on the U.S. team goes to Jonathan Myles , who beat compatriot Chris Mazdzer by 0.161 seconds . RB , DT JJ NNS POS NNS NN IN DT NNP NN VBZ TO NNP NNP , WP VBD NN NNP NNP IN CD NNS . Myles and Niccum join medal hopeful Tony Benshoofin the men 's singles . NNP CC NNP VBP JJ JJ NNP NNP DT NNS POS NNS . The U.S. women 's luge team , named last week , will be Samantha Retrosi , Erin Hamlin and Courtney Zablocki . DT NNP NNS POS NN NN , VBN JJ NN , MD VB NNP NNP , NNP NNP CC NNP NNP . A top U.S. lawmaker says he has urged North Korea to return to the six-party talks over its nuclear weapons program . DT JJ NNP NN VBZ PRP VBZ VBN NNP NNP TO VB TO DT JJ NNS IN PRP$ JJ NNS NN . Congressman Tom Lantos - a Democrat from the western U.S. state of California - spoke in Beijing Tuesday after three days of talks with high-ranking North Korean officials including the vice president of the Presidium of the Supreme People 's Assembly , Yang Hyong-sop , and Foreign Minister Paek Nam Sun . NNP NNP NNP IN DT NNP IN DT JJ NNP NN IN NNP : VBD IN NNP NNP IN CD NNS IN NNS IN JJ JJ JJ NNS VBG DT NN NN IN DT NN IN DT NNP NNP POS NNP , NNP NNP , CC NNP NNP NNP NNP NNP . Mr. Lantos says the officials told him they support a resumption of the talks , but want to see the shape of President Bush 's second administration before making any commitments . NNP NNP VBZ DT NNS VBD PRP PRP VBP DT NN IN DT NNS , CC VBP TO VB DT NN IN NNP NNP POS JJ NN IN VBG DT NNS . However , Mr. Lantos says there is no reason for Pyongyang to expect a significant change in U.S. policy towards the Korean peninsula . RB , NNP NNP VBZ EX VBZ DT NN IN NNP TO VB DT JJ NN IN NNP NN IN DT JJ NN . North Korea has participated in three rounds of multi-party talks on its nuclear ambitions , but boycotted a fourth round scheduled for September because of what it called Washington 's hostile policy . NNP NNP VBZ VBN IN CD NNS IN JJ NNS IN PRP$ JJ NNS , CC VBD DT JJ NN VBN IN NNP IN IN WP PRP VBD NNP POS JJ NN . Iraqi police say a car bomb has killed at least five people and wounded 17 others in Baghdad , shattering a lull in insurgent attacks in the Iraqi capital . JJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS CC VBD CD NNS IN NNP , VBG DT NN IN JJ NNS IN DT JJ NN . Iraqi and U.S. forces launched a massive sweep for militants in Baghdad two weeks ago . JJ CC NNP NNS VBD DT JJ NN IN NNS IN NNP CD NNS RB . About 1,000 suspects have been arrested and the number of attacks has dropped . IN CD NNS VBP VBN VBN CC DT NN IN NNS VBZ VBN . But a U.S. military commander says he can not declare victory and warns that insurgents are looking for the chance to carry out large-scale attacks in Baghdad . CC DT NNP JJ NN VBZ PRP MD RB VB NN CC VBZ IN NNS VBP VBG IN DT NN TO VB RP JJ NNS IN NNP . The U.S military says a roadside bomb killed five Marines Thursday in Iraq 's western Anbar province . DT NNP NN VBZ DT NN NN VBD CD NNS NNP IN NNP POS JJ NNP NN . Also in Anbar Friday , police found the bodies of 21 Iraqi men who were apparently executed . RB IN NNP NNP , NN VBD DT NNS IN CD JJ NNS WP VBD RB VBN . Some of them had been beheaded . DT IN PRP VBD VBN VBN . Authorities believe the victims were kidnapped Iraqi soldiers . NNS VBP DT NNS VBD VBN JJ NNS . The U.S. economy shrank at a 5.7 percent annual pace in the first three months of this year . DT NNP NN VBD IN DT CD NN JJ NN IN DT JJ CD NNS IN DT NN . Friday 's report from the Commerce Department said the decline was a bit less ( 0.4 percent ) than estimated earlier , and better than the prior quarter . NNP POS NN IN DT NNP NNP VBD DT NN VBD DT NN RBR LRB CD NN RRB IN VBN RBR , CC JJR IN DT JJ NN . Many government economic experts and private economists say the worst of the recession may have passed , and they predict slow economic growth will resume later this year . JJ NN JJ NNS CC JJ NNS VBP DT JJS IN DT NN MD VB VBN , CC PRP VBP JJ JJ NN MD VB RBR DT NN . Other economic reports Friday showed U.S. business activity declining faster in a key region , while consumers grew less pessimistic . JJ JJ NNS NNP VBD NNP NN NN VBG RBR IN DT JJ NN , IN NNS VBD RBR JJ . Consumer sentiment hit its highest level since September , but remained at a relatively low level . NN NN VBD PRP$ JJS NN IN NNP , CC VBD IN DT RB JJ NN . Economists track consumer confidence for clues about the consumer demand that drives most U.S. economic activity . NNS VBP NN NN IN NNS IN DT NN NN WDT VBZ RBS NNP JJ NN . A separate report from an industry group said the pace of business activity in the U.S. Midwest fell even faster in May than in the previous month . DT JJ NN IN DT NN NN VBD DT NN IN NN NN IN DT NNP NNP VBD RB RBR IN NNP IN IN DT JJ NN . Riot police have clashed with thousands of demonstrators in Indian Kashmir 's summer capital , Srinagar . NN NNS VBP VBN IN NNS IN NNS IN NNP NNP POS NN NN , NNP . Police fired teargas to disperse up to 4,000 people who took to the streets Saturday to protest the shooting death of a musician by security forces . NN VBD NNS TO VB RP TO CD NNS WP VBD TO DT NNS NNP TO VB DT NN NN IN DT NN IN NN NNS . At least six police officers were injured in the clashes . IN JJS CD NNS NNS VBD VBN IN DT NNS . Witnesses say police officers fired at 31-year-old composer Inayatullah Bhat late Friday near his home in Srinagar . NNS VBP NN NNS VBD IN JJ NN NNP NNP JJ NNP IN PRP$ NN IN NNP . A police spokesman said police acted when Bhat refused orders to stop , but residents say the musician was on a routine stroll . DT NN NN VBD NN VBD WRB NNP VBD NNS TO VB , CC NNS VBP DT NN VBD IN DT JJ NN . India has been fighting a separatist movement in its predominantly Muslim area of divided Kashmir since 1989 . NNP VBZ VBN VBG DT JJ NN IN PRP$ RB JJ NN IN VBN NNP IN CD . Bomb attacks have killed nearly 70 people in Iraq , including about 50 who died in a double truck bomb explosion . NN NNS VBP VBN RB CD NNS IN NNP , VBG IN CD WP VBD IN DT JJ NN NN NN . More than 100 people were wounded in the twin truck bombing Tuesday in the northern town of Tal Afar . JJR IN CD NNS VBD VBN IN DT JJ NN VBG NNP IN DT JJ NN IN NNP NNP . Hours earlier , a suicide bomber killed 10 people and wounded 25 near the city of Ramadi . NNS RB , DT NN NN VBD CD NNS CC VBD CD IN DT NN IN NNP . The U.S. military also said two Marines died in separate incidents during combat operations in volatile al-Anbar province . DT NNP NN RB VBD CD NNS VBD IN JJ NNS IN NN NNS IN JJ NNP NN . On the political front , Iraq 's prime minister and president have introduced legislation to make it easier for former members of Saddam Hussein 's Baath party to resume working in government and security positions . IN DT JJ NN , NNP POS JJ NN CC NN VBP VBN NN TO VB PRP JJR IN JJ NNS IN NNP NNP POS NNP NN TO VB VBG IN NN CC NN NNS . Deputy Prime Minister Barham Salih said the measure is necessary for national reconciliation . NNP NNP NNP NNP NNP VBD DT NN VBZ JJ IN JJ NN . The cabinet and parliament still must approve the legislation . DT NN CC NN RB MD VB DT NN . The most valuable player of Major League Baseball 's 2003 World Series has a new one-year contract with the Florida Marlins . DT RBS JJ NN IN NNP NNP NNP POS CD NNP NNP VBZ DT JJ JJ NN IN DT NNP NNPS . Pitcher Josh Beckett avoided arbitration Tuesday by signing a deal worth $ 2.4 million . NN NNP NNP VBD NN NNP IN VBG DT NN JJ $ CD CD . He earned $ 1.5 million last year . PRP VBD $ CD CD JJ NN . Considered one of Major League Baseball 's top young pitchers , the 24-year-old Beckett battled injuries last season and had three separate stints on the disabled list . VBN CD IN NNP NNP NNP POS JJ JJ NNS , DT JJ NNP VBD NNS JJ NN CC VBD CD JJ NNS IN DT NN NN . He posted a 09-Sep record with an earned run average of 3.76 in 29 starts overall in 2004 . PRP VBD DT JJ NN IN DT VBN NN NN IN CD IN CD NNS JJ IN CD . Beckett enjoyed his greatest success in the 2003 postseason , helping the Marlins to their second championship when he went 02-Feb in six games , including a win and loss in two World Series starts against the New York Yankees . NNP VBD PRP$ JJS NN IN DT CD NN , VBG DT NNPS TO PRP$ JJ NN WRB PRP VBD CD IN CD NNS , VBG DT NN CC NN IN CD NNP NNP VBZ IN DT NNP NNP NNP . Sirens wailed across Israel Tuesday in remembrance of victims of the Holocaust , with citizens briefly standing in silence and motorists stopping their cars at the sides of major highways . NNS VBD IN NNP NNP IN NN IN NNS IN DT NNP , IN NNS RB VBG IN NN CC NNS VBG PRP$ NNS IN DT NNS IN JJ NNS . Commemorations honoring the estimated six million Jews killed by the Nazis during World War II were held at Yad Vashem holocaust memorial in Jerusalem . NNS VBG DT VBN CD CD NNPS VBN IN DT NNPS IN NNP NNP NNP VBD VBN IN NNP NNP NN NN IN NNP . Thousands of people also marched in silence in southern Poland at the site of the Auschwitz death camp . NNS IN NNS RB VBD IN NN IN JJ NNP IN DT NN IN DT NNP NN NN . Former Israeli Prime Minister and Nobel Peace Prize laureate Shimon Peres joined the commemoration . JJ JJ NNP NNP CC NNP NNP NNP NN NNP NNP VBD DT NN . A shofar , or ram 's horn sounded as about 8,000 people began the three-kilometer trek to the gas chambers at Birkenau , where the Nazis killed at least 1.1 million Jews , Roma ( Gypsies ) and others . DT NN , CC NN POS NN VBD IN IN CD NNS VBD DT JJ NN TO DT NN NNS IN NNP , WRB DT NNPS VBD IN JJS CD CD NNPS , NNP LRB NNP RRB CC NNS . The first such march was held 20 years ago and now takes place as an annual memorial to the victims of Nazi Germany 's extermination campaign . DT JJ JJ NN VBD VBN CD NNS IN CC RB VBZ NN IN DT JJ NN TO DT NNS IN NNP NNP POS NN NN . Sudan 's government and southern rebels have signed an agreement promising to end the nation 's 21-year civil war by the end of the year . NNP POS NN CC JJ NNS VBP VBN DT NN VBG TO VB DT NN POS JJ JJ NN IN DT NN IN DT NN . A Sudanese government official and a negotiator from the rebel Sudan People 's Liberation Movement put the December 31 deadline in writing Friday , at a rare meeting of the United Nations Security Council in Nairobi , Kenya . DT JJ NN NN CC DT NN IN DT NN NNP NNP POS NNP NNP VBD DT NNP CD NN IN VBG NNP , IN DT JJ NN IN DT NNP NNP NNP NNP IN NNP , NNP . Council members passed a resolution Friday urging Sudan 's government and southern rebels to make peace and linking future development aid to a comprehensive accord . NNP NNS VBD DT NN NNP VBG NNP POS NN CC JJ NNS TO VB NN CC VBG JJ NN NN TO DT JJ NN . The resolution also called for an end to the 21-month-old conflict between the government and a separate rebel group in Darfur , which has left more than a million people displaced . DT NN RB VBD IN DT NN TO DT JJ NN IN DT NN CC DT JJ NN NN IN NNP , WDT VBZ VBN JJR IN DT CD NNS VBN . Malawai 's Vice President Cassim Chilumpha has been arrested on charges of plotting to overthrow the government . NNP POS NNP NNP NNP NNP VBZ VBN VBN IN NNS IN VBG TO VB DT NN . The Minister of Justice says the vice president was plotting with associates to hire an assassin to kill Malawi 's President Bingu wa Mutharika . DT NNP IN NNP VBZ DT NN NN VBD VBG IN NNS TO VB DT NN TO VB NNP POS NNP NNP NNP NNP . He told local media he has taped conversations of Chilumpha 's meetings with the would-be assassin . PRP VBD JJ NNS PRP VBZ VBN NNS IN NNP POS NNS IN DT JJ NN . In February , Mr. Mutharika tried to fire the vice president for failing to attend cabinet meetings , among other charges . IN NNP , NNP NNP VBD TO VB DT NN NN IN VBG TO VB NN NNS , IN JJ NNS . Malawi 's high court reinstated Chilumpha last month . NNP POS JJ NN VBD NNP JJ NN . Mr. Mutharika and Chilumpha were running mates in the 2004 elections , but have been feuding since the president quit the United Political Party and created his own political party . NNP NNP CC NNP VBD VBG NNS IN DT CD NNS , CC VBP VBN VBG IN DT NN VBD DT NNP NNP NNP CC VBD PRP$ JJ JJ NN . France 's minister of education says the government has prepared lessons that could be broadcast on television and radio in case schools are shut down by outbreaks of swine flu . NNP POS NN IN NN VBZ DT NN VBZ VBN NNS WDT MD VB VBN IN NN CC NN IN NN NNS VBP VBN RP IN NNS IN NN NN . The minister , Luc Chatel , announced Wednesday that the lessons were prepared by distance learning authorities . DT NN , NNP NNP , VBD NNP IN DT NNS VBD VBN IN NN VBG NNS . He said that no closures are currently scheduled , but flu-related changes will be handled on a case-by-case basis . PRP VBD IN DT NNS VBP RB VBN , CC JJ NNS MD VB VBN IN DT JJ NN . China is objecting to a decision by Internet search engine Google to change maps referring to Taiwan as a province of China . NNP VBZ VBG TO DT NN IN NNP NN NN NNP TO VB NNS VBG TO NNP IN DT NN IN NNP . China 's state media report that officials are worried the decision may mislead people and give the impression of an independent Taiwan . NNP POS NN NNS VBP IN NNS VBP VBN DT NN MD VB NNS CC VB DT NN IN DT JJ NNP . A Google spokesman told Xinhua the change was part of a regular update of all the site 's maps , rather than a deliberate effort to update the Taiwan page . DT NNP NN VBD NNP DT NN VBD NN IN DT JJ NN IN PDT DT NN POS NNS , RB IN DT JJ NN TO VB DT NNP NN . Earlier this month , Taiwan asked Google to stop listing it as a Chinese province on its maps . RBR DT NN , NNP VBD NNP TO VB VBG PRP IN DT JJ NN IN PRP$ NNS . Now Google maps simply call the island Taiwan . RB NNP NNS RB VBP DT NN NNP . Taiwan calls itself the Republic of China . NNP VBZ PRP DT NNP IN NNP . China views Taiwan as a breakaway province . NNP VBZ NNP IN DT NN NN . The two split in a civil war that ended in 1949 . DT CD VBD IN DT JJ NN WDT VBD IN CD . The NATO-led force in Afghanistan says three of its soldiers have been killed in bomb attacks . DT JJ NN IN NNP VBZ CD IN PRP$ NNS VBP VBN VBN IN NN NNS . NATO says two service members were killed by a bomb blast in the east , while another died in an explosion in the south . NNP VBZ CD NN NNS VBD VBN IN DT NN NN IN DT NN , IN DT VBD IN DT NN IN DT NN . It did not give further details . PRP VBD RB VB JJ NNS . More than 530 foreign troops have been killed in Afghanistan this year , making it the deadliest year for international forces since the U.S.-led invasion in 2001 . JJR IN CD JJ NNS VBP VBN VBN IN NNP DT NN , VBG PRP DT JJS NN IN JJ NNS IN DT JJ NN IN CD . Also Saturday , NATO said Afghan and coalition forces killed more than 30 insurgents in an operation in eastern Laghman province . RB NNP , NNP VBD JJ CC NN NNS VBD JJR IN CD NNS IN DT NN IN JJ NNP NN . In a separate operation in Paktika province , NATO said its forces killed a Taliban commander who helped conduct bombings and was directly linked to attacks during last week 's parliamentary elections . IN DT JJ NN IN NNP NN , NNP VBD PRP$ NNS VBD DT NNP NN WP VBD VB NNS CC VBD RB VBN TO NNS IN JJ NN POS JJ NNS . The commander was reported killed in an air strike Friday . DT NN VBD VBN VBN IN DT NN NN NNP . NATO said at least two other Taliban commanders were captured this week . NNP VBD IN JJS CD JJ NNP NNS VBD VBN DT NN . Afghanistan 's Interior Ministry says a suspected suicide bomber has tried to kill the governor of southern Helmand province by detonating a car bomb outside his office . NNP POS NNP NNP VBZ DT JJ NN NN VBZ VBN TO VB DT NN IN JJ NNP NN IN VBG DT NN NN IN PRP$ NN . A ministry spokesman says the blast occurred Monday just before key local officials were to meet at the governor 's office . DT NN NN VBZ DT NN VBD NNP RB IN JJ JJ NNS VBD TO VB IN DT NN POS NN . The governor was not hurt in the explosion but the bomber , who was described as a foreigner , was seriously wounded . DT NN VBD RB VBN IN DT NN CC DT NN , WP VBD VBN IN DT NN , VBD RB VBN . He later died in a local hospital . PRP RB VBD IN DT JJ NN . A man claiming to be a Taleban spokesman said the attacker was a local Taleban activist . DT NN VBG TO VB DT NNP NN VBD DT NN VBD DT JJ NNP NN . The ousted Taleban regime and its supporters have recently stepped up insurgent activities mainly in southern and eastern Afghanistan . DT JJ NNP NN CC PRP$ NNS VBP RB VBN RP JJ NNS RB IN JJ CC JJ NNP . The International Committee of the Red Cross ( ICRC ) says a staff member who was kidnapped in Darfur three days ago is doing well and is in good spirits . DT NNP NNP IN DT NNP NNP LRB NNP RRB VBZ DT NN NN WP VBD VBN IN NNP CD NNS RB VBZ VBG RB CC VBZ IN JJ NNS . The kidnappers allowed Red Cross officials to speak with Gauthier Lefevre by telephone for the first time on Sunday . DT NNS VBD NNP NNP NNS TO VB IN NNP NNP IN NN IN DT JJ NN IN NNP . Lefevre , a French national , was traveling in one of two clearly marked Red Cross vehicles when he was abducted Thursday near the town of Al Geneina in West Darfur . NNP , DT JJ NN , VBD VBG IN CD IN CD RB VBN NNP NNP NNS WRB PRP VBD VBN NNP IN DT NN IN NNP NNP IN NNP NNP . The Red Cross says Lefevre was taken captive after he and another staffer had just completed a trip to help local communities upgrade their water systems . DT NNP NNP VBZ NNP VBD VBN JJ IN PRP CC DT NN VBD RB VBN DT NN TO VB JJ NNS VB PRP$ NN NNS . The captors have not made any ransom demands . DT NNS VBP RB VBN DT NN NNS . Foreign aid groups have faced increased hostility in Darfur since the International Criminal Court indicted Sudan 's President Omar al-Bashir in March for alleged war crimes . JJ NN NNS VBP VBN VBN NN IN NNP IN DT NNP NNP NNP VBD NNP POS NNP NNP NNP IN NNP IN JJ NN NNS . The presidents of Benin and Nigeria have helped launch a program to vaccinate 40 million children in the region against polio . DT NNS IN NNP CC NNP VBP VBN VB DT NN TO VB CD CD NNS IN DT NN IN NN . Benin 's President Mathieu Kerekou and his Nigerian counterpart Olusegun Obasanjo met on their shared border Sunday to drop vaccine into babies ' mouths to start the campaign . NNP POS NNP NNP NNP CC PRP$ JJ NN NNP NNP VBD IN PRP$ JJ NN NNP TO VB NN IN NNS POS NNS TO VB DT NN . The World Health Organization is backing the effort aimed at reversing a surge in polio cases which started in Nigeria . DT NNP NNP NNP VBZ VBG DT NN VBN IN VBG DT NN IN NN NNS WDT VBD IN NNP . In late 2003 , Islamic leaders in northwestern Nigeria suspended immunizations , claiming the WHO had supplied a vaccine that would cause sterility . IN JJ CD , JJ NNS IN JJ NNP VBD NNS , VBG DT NNP VBD VBN DT NN WDT MD VB NN . Health officials denied the claim . NN NNS VBD DT NN . The WHO said the ban caused the number of polio cases in West Africa to double last year . DT NNP VBD DT NN VBD DT NN IN NN NNS IN NNP NNP TO VB JJ NN . Nigerian leaders last year agreed to resume anti-polio efforts , using a different vaccine . JJ NNS JJ NN VBD TO VB JJ NNS , VBG DT JJ NN . The news that the 17-year-old unmarried daughter of Republican vice-presidential nominee Sarah Palin is pregnant has brought the issues of teen sex and sex education into the media spotlight . DT NN IN DT JJ JJ NN IN NNP JJ NN NNP NNP VBZ JJ VBZ VBN DT NNS IN JJ NN CC NN NN IN DT NNS NN . For the first time in 15 years , the teen birth rate in America is on the rise . IN DT JJ NN IN CD NNS , DT JJ NN NN IN NNP VBZ IN DT NN . As Brian Padden reports , the issues of sexual activity by teens and how information about sex is conveyed to them in school are highly controversial . IN NNP NNP VBZ , DT NNS IN JJ NN IN NNS CC WRB NN IN NN VBZ VBN TO PRP IN NN VBP RB JJ . The U.S. business newspaper The Wall Street Journal says a United Nations study of problems with the U.N. oil-for-food program in Iraq will criticize Secretary-General Kofi Annan for a series of management lapses , among them conflicts of interest involving Mr. Annan 's son , Kojo . DT NNP NN NN DT NNP NNP NNP VBZ DT NNP NNP NN IN NNS IN DT NNP NN NN IN NNP MD VB JJ NNP NNP IN DT NN IN NN NNS , IN PRP NNS IN NN VBG NNP NNP POS NN , NNP . An investigative panel headed by former U.S. Federal Reserve chairman Paul Volcker is expected to criticize Mr. Annan for failing to take action to correct flaws in the U.N. bureaucracy that allowed problems to develop in the $ 40 billion oil-for-food program . DT JJ NN VBN IN JJ NNP NNP NNP NN NNP NNP VBZ VBN TO VB NNP NNP IN VBG TO VB NN TO VB NNS IN DT NNP NN WDT VBD NNS TO VB IN DT $ CD CD NN NN . The Wall Street Journal says the U.N. report will find that Mr. Annan held at least four meetings with Cotecna , a Swiss company that held lucrative United Nations contracts and also employed Mr. Annan 's son , Kojo . DT NNP NNP NNP VBZ DT NNP NN MD VB IN NNP NNP VBD IN JJS CD NNS IN NNP , DT JJ NN WDT VBD JJ NNP NNPS NNS CC RB VBN NNP NNP POS NN , NNP . The new report , the second of three to be issued by the Volcker commission this year , is due to be made public on Tuesday . DT JJ NN , DT NN IN CD TO VB VBN IN DT NNP NN DT NN , VBZ JJ TO VB VBN JJ IN NNP . A senior Palestinian security official says there is progress in efforts to free two Western journalists abducted in Gaza nearly two weeks ago . DT JJ JJ NN NN VBZ EX VBZ NN IN NNS TO JJ CD JJ NNS VBN IN NNP RB CD NNS RB . Interior Minister Said Siyam , of the militant Islamic group Hamas , said Friday officials are attempting to secure the release of the men . NN NN NNP NNP , IN DT JJ NNP NN NNP , VBD NNP NNS VBP VBG TO VB DT NN IN DT NNS . He did not elaborate . PRP VBD RB VB . His statement was the first upbeat assessment by Palestinian officials since gunmen seized Fox correspondent , American Steve Centanni , and cameraman Olaf Wiig of New Zealand on August 14 . PRP$ NN VBD DT JJ JJ NN IN JJ NNS IN NNS VBN NNP NN , NNP NNP NNP , CC NN NNP NNP IN NNP NNP IN NNP CD . On Thursday , Palestinian Prime Minister Ismail Haniyeh condemned the kidnapping and called for the release of the men . IN NNP , JJ NNP NNP NNP NNP VBD DT NN CC VBN IN DT NN IN DT NNS . A group calling itself the Holy Jihad Brigades said it is holding the two journalists . DT NN VBG PRP DT NNP NNP NNP VBD PRP VBZ VBG DT CD NNS . It demanded that the U.S. release Muslim prisoners it is holding by Saturday . PRP VBD IN DT NNP NN NNP VBZ PRP VBZ VBG IN NNP . The commander of Russia 's strategic missile force says Russia is capable of targeting U.S. missile defense sites if they are built in the Czech Republic and Poland . DT NN IN NNP POS JJ NN NN VBZ NNP VBZ JJ IN VBG NNP NN NN NNS IN PRP VBP VBN IN DT JJ NNP CC NNP . General Nikolai Solovtsov warned Monday that Russia has the ability to resume building intermediate and short-range missiles if the Kremlin drops out of an arms treaty with the United States . NNP NNP NNP VBD NNP IN NNP VBZ DT NN TO VB VBG JJ CC JJ NNS IN DT NNP VBZ IN IN DT NNS NN IN DT NNP NNPS . A NATO spokesman Monday described the general 's comments as ' extreme language ' that is uncalled for and out of date . DT NNP NN NNP VBD DT NN POS NNS IN `` JJ NN `` WDT VBZ JJ IN CC IN IN NN . The Polish and Czech prime ministers , Jaroslaw Kaczynski and Mirek Topolanek , said Monday they would likely accept Washington 's proposal to build U.S. missile defense sites . DT JJ CC JJ JJ NNS , NNP NNP CC NNP NNP , VBD NNP PRP MD RB VB NNP POS NN TO VB NNP NN NN NNS . Washington says the sites would defend against missile launches from Iran or North Korea . NNP VBZ DT NNS MD VB IN NN NNS IN NNP CC NNP NNP . Russian President Vladimir Putin has called the presence of a missile defense system so close to Russia 's border a threat to its security . JJ NNP NNP NNP VBZ VBN DT NN IN DT NN NN NN RB JJ TO NNP POS NN DT NN TO PRP$ NN . Thousands of Syrians took to the streets of Damascus Monday to protest a U.N. probe they said unfairly blames the government for the killing of Lebanese former Prime Minister Rafik al-Hariri . NNS IN NNS VBD TO DT NNS IN NNP NNP TO VB DT NNP NN PRP VBD RB VBZ DT NN IN DT NN IN JJ JJ NNP NNP NNP NNP . Damascus says the investigation was politically motivated and denies any involvement in the assassination . NNP VBZ DT NN VBD RB JJ CC VBZ DT NN IN DT NN . The U.N. report , issued last week , implicated Lebanese and Syrian officials in the killing . DT NNP NN , VBN JJ NN , VBN JJ CC JJ NNS IN DT NN . It said Syria 's cooperation in the probe was limited . PRP VBD NNP POS NN IN DT NN VBD VBN . In an interview with British radio on Sunday , U.S. Secretary of State Condoleezza Rice and British Foreign Secretary Jack Straw called for international pressure against Syria . IN DT NN IN JJ NN IN NNP , NNP NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP VBD IN JJ NN IN NNP . Syria 's official news agency reported President Bashar al-Assad sent a message to members of the U.N. Security Council , which is expected to consider sanctions over the killing . NNP POS JJ NN NN VBD NNP NNP NNP VBD DT NN TO NNS IN DT NNP NNP NNP , WDT VBZ VBN TO VB NNS IN DT NN . Venezuelan President Hugo Chavez has called for an investigation into U.S.-based CNN , saying the news network was seeking his assassination after its Spanish-language channel ran an image of him next to a caption that read , ' Who killed him ? ' JJ NNP NNP NNP VBZ VBN IN DT NN IN JJ NNP , VBG DT NN NN VBD VBG PRP$ NN IN PRP$ JJ NN VBD DT NN IN PRP IN TO DT NN WDT VBD , `` WP VBD PRP . `` CNN issued an apology over Tuesday 's video mix-up , saying the caption had been meant for a story about Washington Redskins football star Sean Taylor , who died Tuesday in Florida of a gunshot wound . NNP VBD DT NN IN NNP POS NN NN , VBG DT NN VBD VBN VBN IN DT NN IN NNP NNP NN NN NNP NNP , WP VBD NNP IN NNP IN DT NN NN . But President Chavez said he doubted the caption was broadcast next to his image by mistake and called on his attorney general to probe the incident . CC NNP NNP VBD PRP VBD DT NN VBD VBN JJ TO PRP$ NN IN NN CC VBN IN PRP$ NN NN TO VB DT NN . He accused the network of possibly seeking to ' instigate a political assassination . ' PRP VBD DT NN IN RB VBG TO `` VB DT JJ NN . `` Mr. Chavez , who was briefly ousted in a 2002 coup , has often reported alleged attempts to assassinate him but without offering significant evidence . NNP NNP , WP VBD RB VBN IN DT CD NN , VBZ RB VBN JJ NNS TO VB PRP CC IN VBG JJ NN . American tennis veteran Andre Agassi has notched another win at the Delray Beach International Championships in Florida . JJ NN NN NNP NNP VBZ VBN DT NN IN DT NNP NNP NNP NNP IN NNP . But the tournament 's top seed had to work to get past Ramon Delgado of Paraguay Wednesday . CC DT NN POS JJ NN VBD TO VB TO VB JJ NNP NNP IN NNP NNP . After losing the first set , 04-Jun , Agassi survived a tough second set that included two match points , 07-Jun . IN VBG DT JJ NN , CD , NNP VBD DT JJ JJ NN WDT VBD CD NN NNS , CD . He then cruised through the deciding third set , 6-0 . PRP RB VBD IN DT JJ JJ NN , CD . Also winning in the second round was third seeded Xavier Malisse of Belgium . RB VBG IN DT JJ NN VBD JJ JJ NNP NNP IN NNP . He defeated American Justin Gimelstob , 06-Feb , 07-May . PRP VBD JJ NNP NNP , CD , CD . German Florian Mayer , the sixth seed at the Delray Beach Tennis Center , ousted Oliver Marach of Austria , 07-May , 06-Mar . JJ NNP NNP , DT JJ NN IN DT NNP NNP NNP NNP , VBD NNP NNP IN NNP , CD , CD . Guillermo Garcia-Lopez of Spain was a 06-Mar , 06-Feb winner over Todd Widom of the United States in a match between unseeded players . NNP NNP IN NNP VBD DT CD , CD NN IN NNP NNP IN DT NNP NNPS IN DT NN IN JJ NNS . Iraq 's top Shi'ite cleric , Grand Ayatollah Ali al-Sistani , has warned the nation 's prime minister that the government must provide for security or risk ' other groups ' taking over that responsibility . NNP POS JJ NNP NN , NNP NNP NNP NNP , VBZ VBN DT NN POS JJ NN IN DT NN MD VB IN NN CC NN `` JJ NNS `` VBG RP DT NN . In a statement released Saturday , the ayatollah called the failure of Iraqi security forces to decrease the violence plaguing the country ' serious . ' IN DT NN VBN NNP , DT NN VBD DT NN IN JJ NN NNS TO VB DT NN VBG DT NN `` JJ . `` He made the comments after holding talks with Iraqi Prime Minister Nouri al-Maliki in Najaf . PRP VBD DT NNS IN VBG NNS IN JJ NNP NNP NNP NNP IN NNP . Mr. Maliki , who has been criticized for failing to clamp down on sectarian violence , said he planned to make changes to four government ministries . NNP NNP , WP VBZ VBN VBN IN VBG TO VB RP IN JJ NN , VBD PRP VBD TO VB NNS TO CD NN NNS . In other developments , Iraqi officials say they have found the bodies of 14 South Asian Shi'ite pilgrims slaughtered Thursday as they traveled for a religious ceremony in Karbala . IN JJ NNS , JJ NNS VBP PRP VBP VBN DT NNS IN CD NNP NNP NNP VBZ VBN NNP IN PRP VBD IN DT JJ NN IN NNP . Officials say the victims included 11 Pakistanis and three Indians . NNS VBP DT NNS VBD CD NNS CC CD NNS . Panama and Chile have signed a free trade agreement that will eliminate nearly all tariffs between the nations within 10 years . NNP CC NNP VBP VBN DT JJ NN NN WDT MD VB RB DT NNS IN DT NNS IN CD NNS . Signed Tuesday , the deal aims to improve access to markets , cross-border services and conflict resolution . VBN NNP , DT NN VBZ TO VB NN TO NNS , JJ NNS CC NN NN . It also includes an environmental cooperation pact . PRP RB VBZ DT JJ NN NN . Panamanian officials say the pact will also help the tiny country to build its export industry . JJ NNS VBP DT NN MD RB VB DT JJ NN TO VB PRP$ NN NN . Iraqi judges have begun questioning two of Saddam Hussein 's top 11 lieutenants in preparation for war crimes trials involving the former regime . JJ NNS VBP VBN VBG CD IN NNP NNP POS JJ CD NNS IN NN IN NN NNS NNS VBG DT JJ NN . The chief judge Raad al-Juhyi for the Special Tribunal , which is in charge of the trials , said Saddam 's cousin , Ali Hassan al-Majid , also known as ' Chemical Ali , ' appeared Saturday along with Saddam 's former defense minister , General Sultan Hashim Ahmad . DT NN NN NNP NNP IN DT JJ NNP , WDT VBZ IN NN IN DT NNS , VBD NNP POS NN , NNP NNP NNP , RB VBN IN `` NNP NNP , `` VBD NNP IN IN NNP POS JJ NN NN , NNP NNP NNP NNP . The hearings will examine the charges brought against the men , examine any evidence , and determine whether they should stand trial . DT NNS MD VB DT NNS VBN IN DT NNS , VB DT NN , CC VB IN PRP MD VB NN . There are indications that Saddam likely will be tried last . EX VBP NNS IN NNP RB MD VB VBN JJ . No formal charges have been announced against Chemical Ali or the former defense minister , but charges are likely to include crimes against the country 's Kurds and Shi'ites , as well as the 1990 invasion of neighboring Kuwait . DT JJ NNS VBP VBN VBN IN NNP NNP CC DT JJ NN NN , CC NNS VBP JJ TO VB NNS IN DT NN POS NNS CC NNS , RB RB IN DT CD NN IN VBG NNP . An insurgent group in Iraq has released a videotape that purports to show the suicide bomber who killed 22 people last week at a U.S. military base in the Iraqi city of Mosul . DT JJ NN IN NNP VBZ VBN DT NN WDT VBZ TO VB DT NN NN WP VBD CD NNS JJ NN IN DT NNP JJ NN IN DT JJ NN IN NNP . The video is posted on the Army of Ansar al-Sunna web site . DT NN VBZ VBN IN DT NNP IN NNP NNP NNP NN . In it , a masked man displays a map of the U.S. installation and describes plans for the attack . IN PRP , DT VBN NN NNS DT NN IN DT NNP NN CC VBZ NNS IN DT NN . Another masked man , identified as the bomber , embraces colleagues . DT VBN NN , VBN IN DT NN , VBZ NNS . The video then shows what appears to be the explosion that ripped through the dining tent on Tuesday . DT NN RB VBZ WP VBZ TO VB DT NN WDT VBD IN DT VBG NN IN NNP . In other developments , masked gunmen Sunday killed a high-ranking Iraqi security officer and wounded several of his bodyguards in Baghdad . IN JJ NNS , VBN NNS NNP VBD DT JJ JJ NN NN CC VBD NN IN PRP$ NNS IN NNP . Separately , a roadside bomb wounded three U.S. soldiers traveling in a convoy in Mosul . RB , DT NN NN VBD CD NNP NNS VBG IN DT NN IN NNP . A senior United Nations aid official says tents used to shelter Pakistan 's earthquake survivors are not adequate for the harsh winter setting into the Himalayan region . DT JJ NNP NNPS NN NN VBZ NNS VBN TO NN NNP POS NN NNS VBP RB JJ IN DT JJ NN VBG IN DT JJ NN . Darren Boisvert , the U.N. official in charge of distributing shelter in the quake zone , said Friday more than 4,20,000 tents have been handed out , but that 90 percent of them have not been winterized . NNP NNP , DT NNP NN IN NN IN VBG NN IN DT NN NN , VBD NNP JJR IN CD NNS VBP VBN VBN RP , CC IN CD NN IN PRP VBP RB VBN VBN . He said some survivors were strengthening their shelters with plastic sheets and blankets . PRP VBD DT NNS VBD VBG PRP$ NNS IN NN NNS CC NNS . Temperatures in the high mountains of Pakistani-controlled Kashmir have already fallen below freezing and snowfall is expected to increase in the coming weeks . NNS IN DT JJ NNS IN JJ NNP VBP RB VBN IN VBG CC NN VBZ VBN TO VB IN DT JJ NNS . The October 8 earthquake killed more than 70,000 people and left nearly three million without shelter . DT NNP CD NN VBD JJR IN CD NNS CC VBD RB CD CD IN NN . The United States ' Supreme Court has essentially revived a case against senior U.S. military officials launched by former detainees at Guantanamo Bay , Cuba . DT NNP NNPS POS NNP NNP VBZ RB VBN DT NN IN JJ NNP NN NNS VBN IN JJ NNS IN NNP NNP , NNP . The justices Monday ordered an appeals court in Washington to reconsider its January 2008 dismissal of a lawsuit brought by four British men . DT NNS NNP VBD DT NNS NN IN NNP TO VB PRP$ NNP CD NN IN DT NN VBN IN CD JJ NNS . The former detainees say they were tortured and prevented from freely practicing Islam during their imprisonment at the U.S. military detention facility . DT JJ NNS VBP PRP VBD VBN CC VBN IN RB VBG NNP IN PRP$ NN IN DT NNP JJ NN NN . They argue that their treatment violated the U.S. Religious Freedom Restoration Act . PRP VBP IN PRP$ NN VBD DT NNP JJ NNP NNP NNP . The Supreme Court says the lower court must review the case based on the high court 's ruling in June . DT NNP NNP VBZ DT JJR NN MD VB DT NN VBN IN DT JJ NN POS NN IN NNP . At that time , the Supreme Court said foreign terrorism suspects held at Guantanamo can challenge their detentions in civilian courts . IN DT NN , DT NNP NNP VBD JJ NN NNS VBN IN NNP MD VB PRP$ NNS IN JJ NNS . The Bush administration has repeatedly said detainees in U.S. custody are treated humanely . DT NNP NN VBZ RB VBN NNS IN NNP NN VBP VBN RB . About 250 men are still being held at Guantanamo . IN CD NNS VBP RB VBG VBN IN NNP . An Ethiopian court has issued a death sentence to a former regional official charged with murder and with supporting an Eritrean-backed terror group . DT JJ NN VBZ VBN DT NN NN TO DT JJ JJ NN VBN IN NN CC IN VBG DT JJ NN NN . The state-run Ethiopian News Agency reports that Jemua Ruphael Amen was found guilty and sentenced on Tuesday by the country 's Federal High Court . DT JJ NNP NNP NNP VBZ IN NNP NNP NNP VBD VBN JJ CC VBN IN NNP IN DT NN POS NNP NNP NNP . The agency cited a statement from the Ministry of Justice that said Jemua had murdered ' three innocent civilians . ' DT NN VBD DT NN IN DT NNP IN NNP WDT VBD NNP VBD VBN `` CD JJ NNS . `` The statement also said Jemua formed a separatist movement in Benishangul Gumuz state and was carrying out terrorist attacks there with the Eritrean government . DT NN RB VBD NNP VBD DT JJ NN IN NNP NNP NN CC VBD VBG RP JJ NNS RB IN DT JJ NN . The agency says Juma was once in charge of economic planning in the regional government . DT NN VBZ NNP VBD RB IN NN IN JJ NN IN DT JJ NN . Relations between Ethiopia and Eritrea have been tense since a 1998 to 2000 border war . NNP IN NNP CC NNP VBP VBN JJ IN DT CD TO CD NN NN . The countries often accuse each other of being behind various plots and attacks on each other 's territory . DT NNS RB VBP DT NN IN VBG IN JJ NNS CC NNS IN DT NN POS NN . California Governor Arnold Schwarzenegger has signed a bill capping greenhouse gas emissions in the Western U.S. state -- a law he says will change the course of history . NNP NNP NNP NNP VBZ VBN DT NN VBG NN NN NNS IN DT JJ NNP NN IN DT NN PRP VBZ MD VB DT NN IN NN . The Republican governor signed the bill Wednesday in a ceremony on Treasure Island in San Francisco Bay . DT JJ NN VBD DT NN NNP IN DT NN IN NNP NNP IN NNP NNP NNP . The new law makes California the first U.S. state to move beyond the federal government and impose its own greenhouse gas limits . DT JJ NN VBZ NNP DT JJ NNP NN TO VB IN DT JJ NN CC VB PRP$ JJ NN NN NNS . The law requires major energy companies in the state to cut carbon dioxide emissions by 25 percent by 2020 . DT NN VBZ JJ NN NNS IN DT NN TO VB NN NN NNS IN CD NN IN CD . Schwarzenegger said California is entering a bold new era of environmental protection . NNP VBD NNP VBZ VBG DT JJ JJ NN IN JJ NN . He said people must do everything in their power to slow down global warming before it is too late . PRP VBD NNS MD VB DT IN PRP$ NN TO VB RP JJ NN IN PRP VBZ RB JJ . Many scientists blame pollution from cars , factories , and power plants for global warming while others say natural climate changes are causing the planet to warm . JJ NNS VBP NN IN NNS , NNS , CC NN NNS IN JJ NN IN NNS VBP JJ NN NNS VBP VBG DT NN TO VB . Iraq 's interior ministry has launched a probe into allegations that death squads are operating within the police force and targeting Sunni Arabs . NNP POS JJ NN VBZ VBN DT NN IN NNS IN NN NNS VBP VBG IN DT NN NN CC VBG NNP NNS . A senior official , Major-General Hussein Kamal , said the probe follows the arrest of 22 people dressed as police commandos , who were taking away a Sunni man to be shot . DT JJ NN , NNP NNP NNP , VBD DT NN VBZ DT NN IN CD NNS VBN IN NN NNS , WP VBD VBG RP DT NNP NN TO VB VBN . An American general , Major General Joseph Peterson , told a U.S. daily , The Chicago Tribune , that the men were stopped by an Iraqi checkpoint in northern Iraq last month . DT JJ NN , NNP NNP NNP NNP , VBD DT NNP NN , DT NNP NNP , IN DT NNS VBD VBN IN DT JJ NN IN JJ NNP JJ NN . Sunnis often complain of atrocities by Iraqi police , most of whom are Shi'ite Muslims . NNS RB VBP IN NNS IN JJ NNS , JJS IN WP VBP JJ NNS . Meanwhile , Iraqi insurgents killed at least nine people in a series of attacks in Baghdad and northern Iraq Thursday . RB , JJ NNS VBD IN JJS CD NNS IN DT NN IN NNS IN NNP CC JJ NNP NNP . And radical Shi'ite cleric Moqtada al-Sadr arrived in Jordan today for talks with King Abdullah and other officials in coming days . CC JJ NNP NN NNP NNP VBD IN NNP NN IN NNS IN NNP NNP CC JJ NNS IN VBG NNS . The U.S. State Department says the human rights situation in China remains poor and the government continues to commit numerous and serious abuses . DT NNP NNP NNP VBZ DT JJ NNS NN IN NNP VBZ JJ CC DT NN VBZ TO VB JJ CC JJ NNS . The department 's annual human rights report says there has been a trend towards increased harassment , detention and imprisonment of those perceived as a threat to authority in China . DT NN POS JJ JJ NNS NN VBZ EX VBZ VBN DT NN IN VBN NN , NN CC NN IN DT VBN IN DT NN TO NN IN NNP . The report says the Chinese government has also adopted measures to more tightly control print , broadcast and electronic media . DT NN VBZ DT JJ NN VBZ RB VBN NNS TO RBR RB JJ NN , NN CC JJ NNS . The report did note efforts to make legal reforms in the past year , but those efforts stalled . DT NN VBD VB NNS TO VB JJ NNS IN DT JJ NN , CC DT NNS VBN . The government did adopt new protections for religious groups . DT NN VBD VB JJ NNS IN JJ NNS . Also in East Asia , the State Department reports North Korea remains an absolute dictatorship where the government 's human rights record is extremely poor . RB IN NNP NNP , DT NNP NNP VBZ NNP NNP VBZ DT JJ NN WRB DT NN POS JJ NNS NN VBZ RB JJ . The report says the human rights record of Burma 's military government also worsened over the year . DT NN VBZ DT JJ NNS NN IN NNP POS JJ NN RB VBD IN DT NN . The Iraqi government is urging voters to approve a new constitution Saturday , and says Iraqis should stand firm against insurgents trying to stop the referendum . DT JJ NN VBZ VBG NNS TO VB DT JJ NN NNP , CC VBZ NNS MD VB NN IN NNS VBG TO VB DT NN . In Baghdad Sunday , government spokesman Laith Kuba compared insurgents to rats , saying they spread disease and death among the people . IN NNP NNP , NN NN NNP NNP VBD NNS TO NNS , VBG PRP VBP NN CC NN IN DT NNS . Earlier , a suicide car bomb exploded in southern Iraq outside an apartment building used by a Shi'ite militia . RB , DT NN NN NN VBD IN JJ NNP IN DT NN NN VBN IN DT NNP NN . At least one child was reported killed in the blast and several others wounded . IN JJS CD NN VBD VBN VBN IN DT NN CC JJ NNS VBN . The attack in Basra appeared aimed at the Iranian-backed Badr Brigade militia . DT NN IN NNP VBD VBN IN DT JJ NNP NNP NN . News reports say Basra 's former governor Hassan al-Rashid , a senior militia leader , escaped unharmed . NN NNS VBP NNP POS JJ NN NNP NNP , DT JJ NN NN , VBD JJ . Separately , the U.S. military says a Marine was killed late Saturday in Ramadi when a bomb blast ripped through his vehicle . RB , DT NNP NN VBZ DT NN VBD VBN JJ NNP IN NNP WRB DT NN NN VBN IN PRP$ NN . Egyptian authorities say the death toll from a massive rockslide in a poor Cairo neighborhood has risen to at least 72 , while many more bodies are feared to remain under the rubble . JJ NNS VBP DT NN NN IN DT JJ NN IN DT JJ NNP NN VBZ VBN TO IN JJS CD , IN JJ JJR NNS VBP VBN TO VB IN DT NN . Security officials Thursday added to the official death toll with the discovery of more bodies , five days after giant rocks fell from the limestone cliff above the Manshiyet Nasr slum . NN NNS NNP VBD TO DT JJ NN NN IN DT NN IN JJR NNS , CD NNS IN JJ NNS VBD IN DT NN NN IN DT NNP NNP NN . Residents have clashed with rescue workers out of anger over what they consider an inadequate response to the disaster . NNS VBP VBN IN NN NNS IN IN NN IN WP PRP VBP DT JJ NN TO DT NN . Rescuers have had to work mostly by hand to remove debris because streets in the neighborhood are too narrow for large machinery . NNS VBP VBN TO VB RB IN NN TO VB NN IN NNS IN DT NN VBP RB JJ IN JJ NN . Officials say rockslides are frequent in the area . NNS VBP NNS VBP JJ IN DT NN . Argentina 's government offered small farmers a package of benefits Monday in an effort to end a 19-day strike triggered by new , higher taxes . NNP POS NN VBD JJ NNS DT NN IN NNS NNP IN DT NN TO VB DT JJ NN VBN IN JJ , JJR NNS . President Cristina Fernandez de Kirchner 's administration said it would give the farmers a rebate on the new export taxes on soy beans , sunflower seeds , and other grains . NNP NNP NNP IN NNP POS NN VBD PRP MD VB DT NNS DT NN IN DT JJ NN NNS IN NN NNS , NN NNS , CC JJ NNS . The government also offered to subsidize the cost of transporting grain from farm to market . DT NN RB VBD TO VB DT NN IN VBG NN IN NN TO NN . President Fernandez has asked the farmers to lift the roadblocks they have constructed during the strike . NNP NNP VBZ VBN DT NNS TO VB DT NNS PRP VBP VBN IN DT NN . The roadblocks have caused food shortages and blocked the export of agricultural products . DT NNS VBP VBN NN NNS CC VBD DT NN IN JJ NNS . Farm leaders rejected the president 's appeal and said the strike would continue at least through mid-week . NN NNS VBD DT NN POS NN CC VBD DT NN MD VB IN JJS IN NN . The strike began on March 13 , two days after the government raised the agricultural export taxes in an effort to redistribute wealth to the poor and control domestic food prices . DT NN VBD IN NNP CD , CD NNS IN DT NN VBD DT JJ NN NNS IN DT NN TO VB NN TO DT NN CC NN JJ NN NNS . Venezuelan Foreign Minister Ali Rodriguez says his country and U.S. diplomats have agreed to discuss improving relations after weeks of increasingly sharp accusations between the two countries . JJ NNP NNP NNP NNP VBZ PRP$ NN CC NNP NNS VBP VBN TO VB VBG NNS IN NNS IN RB JJ NNS IN DT CD NNS . Mr. Rodriguez issued the statement following a meeting Thursday with U.S. Ambassador to Venezuela William Brownfield . NNP NNP VBD DT NN VBG DT NN NNP IN NNP NNP TO NNP NNP NNP . The meeting marks the first time Mr. Brownfield has held talks with a top official of the Caracas government since he arrived six months ago . DT NN VBZ DT JJ NN NNP NNP VBZ VBN NNS IN DT JJ NN IN DT NNP NN IN PRP VBD CD NNS RB . Mr. Rodriguez says they agreed to work on ' sensitive ' issues , and have also agreed to move forward in the areas of energy-related issues , drug trafficking , and terrorism . NNP NNP VBZ PRP VBD TO VB IN `` JJ `` NNS , CC VBP RB VBN TO VB RB IN DT NNS IN JJ NNS , NN NN , CC NN . Venezuelan President Hugo Chavez recently accused the U.S. government of plotting to assassinate him - an accusation the Bush administration has dismissed as ' ridiculous . ' JJ NNP NNP NNP RB VBD DT NNP NN IN VBG TO VB PRP IN DT NN DT NNP NN VBZ VBN IN `` NN . `` Mr. Chavez also has threatened to cut off oil sales to the United States . NNP NNP RB VBZ VBN TO VB RP NN NNS TO DT NNP NNPS . Syrian authorities say they have restored order at a prison near the capital , Damascus , after a riot there broke out Saturday . JJ NNS VBP PRP VBP VBN NN IN DT NN IN DT NN , NNP , IN DT NN RB VBD IN NNP . The official SANA news agency says security forces took action at Sidnaya prison Sunday and put down the violent protest started by prisoners convicted of extremism and terror crimes . DT JJ NNP NN NN VBZ NN NNS VBD NN IN NNP NN NNP CC VBD RP DT JJ NN VBN IN NNS VBN IN NN CC NN NNS . The agency did not say whether there were any casualties . DT NN VBD RB VB IN EX VBD DT NNS . But the London-based group - The Syrian Observatory for Human Rights - said rioting by Islamist inmates , some of whom have been held at Sidnaya without trial , continued Sunday . CC DT JJ NN : DT JJ NNP IN NNP NNPS : VBD NN IN NNP NNS , DT IN WP VBP VBN VBN IN NNP IN NN , VBD NNP . The group said 25 prisoners were killed and many more wounded when security forces opened fire to end the disturbance , and that some prisoners fled to the roof , fearing for their lives . DT NN VBD CD NNS VBD VBN CC JJ JJR VBN WRB NN NNS VBD NN TO VB DT NN , CC IN DT NNS VBD TO DT NN , VBG IN PRP$ NNS . A new poll finds most Iraqis disapprove of the presence of American troops in their country , but are optimistic about this week 's election and the country 's future . DT JJ NN VBZ RBS NNS VBZ IN DT NN IN JJ NNS IN PRP$ NN , CC VBP JJ IN DT NN POS NN CC DT NN POS NN . The ABC News poll , conducted with Time Magazine , says more than two-thirds of the Iraqis surveyed oppose having U.S.-led coalition troops in Iraq . DT NNP NNP NN , VBN IN NNP NNP , VBZ JJR IN NNS IN DT NNS VBN VBP VBG JJ NN NNS IN NNP . It says half say the U.S.-led invasion was wrong , up from 39 percent in early 2004 . PRP VBZ NN VBP DT JJ NN VBD JJ , RB IN CD NN IN JJ CD . But it says 71 percent of Iraqis say their own lives are going well , with their economic situation improving . CC PRP VBZ CD NN IN NNS VBP PRP$ JJ NNS VBP VBG RB , IN PRP$ JJ NN VBG . The survey also says three-quarters of Iraqis expressed confidence in this week 's parliamentary vote , and 70 percent approve of Iraq 's constitution and want the country to remain unified . DT NN RB VBZ NNS IN NNS VBD NN IN DT NN POS JJ NN , CC CD NN VB IN NNP POS NN CC VBP DT NN TO VB JJ . An unknown group in Iraq says it has abducted two Egyptian engineers . DT JJ NN IN NNP VBZ PRP VBZ VBN CD JJ NNS . In an unauthenticated Internet statement , the Nationalist Movement to Free Iraq says the hostages are being interrogated about why they are in the country . IN DT JJ NN NN , DT NNP NNP TO NNP NNP VBZ DT NNS VBP VBG VBN IN WRB PRP VBP IN DT NN . In an accompanying video , two men are shown holding identification cards showing them to work for an Iraqi company . IN DT JJ NN , CD NNS VBP VBN VBG NN NNS VBG PRP TO VB IN DT JJ NN . Meanwhile , an Iraqi-born Swedish citizen who had been held captive since January , says his kidnappers let him go Friday without a ransom being paid . RB , DT JJ JJ NN WP VBD VBN VBN JJ IN NNP , VBZ PRP$ NNS VB PRP VB NNP IN DT NN VBG VBN . The Iraqi Vengeance Brigade had threatened to behead Minas al-Yousifi , the head of the Iraqi Christian Democratic party unless a large ransom was paid and U.S. troops withdrew from Iraq . DT JJ NNP NNP VBD VBN TO VB NNP NNP , DT NN IN DT JJ NNP NNP NN IN DT JJ NN VBD VBN CC NNP NNS VBD IN NNP . U.S. fighter planes in Iraq have begun dropping bombs on insurgent targets in western Iraq as part of a major combat operation launched against Iraqi rebels . NNP NN NNS IN NNP VBP VBN VBG NNS IN JJ NNS IN JJ NNP IN NN IN DT JJ NN NN VBN IN JJ NNS . Military officials say about 1,000 troops are taking part in ' Operation Spear , ' which began early Friday in Iraq 's restive Anbar province , near the Syrian border . JJ NNS VBP IN CD NNS VBP VBG NN IN `` NNP NNP , `` WDT VBD RB NNP IN NNP POS JJ NNP NN , IN DT JJ NN . Reuters news agency says U.S. fighter planes have dropped at least nine 220-kilogram bombs on insurgent target areas near the town of Qaim . NNP NN NN VBZ NNP NN NNS VBP VBN IN JJS CD JJ NNS IN JJ NN NNS IN DT NN IN NNP . Casualty figures are not yet available . NN NNS VBP RB RB JJ . Anbar province is where U.S. forces say they killed about 40 militants in air strikes in Karabila on June 11 . NNP NN VBZ WRB NNP NNS VBP PRP VBD IN CD NNS IN NN NNS IN NNP IN NNP CD . Elsewhere , at least six Iraqi police were killed and more than 20 others wounded Thursday in a suicide car bombing on Baghdad 's airport road . RB , IN JJS CD JJ NNS VBD VBN CC JJR IN CD NNS VBD NNP IN DT NN NN VBG IN NNP POS NN NN . And an Iraqi judge and his driver were gunned down in the northern city of Mosul . CC DT JJ NN CC PRP$ NN VBD VBN RB IN DT JJ NN IN NNP . U.S. pharmaceutical giant , Merck , says a recent study showed a new experimental vaccine to be 100 percent effective for the short-term in blocking two viruses that can cause cervical cancer in women . NNP JJ NN , NNP , VBZ DT JJ NN VBD DT JJ JJ NN TO VB CD NN NN IN DT JJ IN VBG CD NNS WDT MD VB JJ NN IN NNS . Merck said Thursday , its Gardasil vaccine blocks infection from Human Papillovirus 16 and 18 - which both cause about 70 percent of all cases of cervical cancer . NNP VBD NNP , PRP$ NNP NN VBZ NN IN JJ NNP CD CC CD : WDT DT VBP IN CD NN IN DT NNS IN JJ NN . The drug company said the trial among 12,000 women from 13 countries also found that Gardasil blocks cervical lesions that could become cancerous . DT NN NN VBD DT NN IN CD NNS IN CD NNS RB VBD IN NNP VBZ JJ NNS WDT MD VB JJ . Sexually transmitted viruses known as HPVs strike about 75 percent of all women at some time in their lives , and kill almost 3,00,000 women without healthy immune systems ever year . RB JJ NNS VBN IN NNP VBP IN CD NN IN DT NNS IN DT NN IN PRP$ NNS , CC VB RB CD NNS IN JJ JJ NNS RB NN . A separate study earlier this year found that a vaccine developed by British firm , GlaxoSmithKline , was 92 percent effective in blocking cancer from four HPVs . DT JJ NN RBR DT NN VBD IN DT NN VBN IN JJ NN , NNP , VBD CD NN JJ IN VBG NN IN CD NNS . Kenyan police say they have arrested two Germans and a Dutch national on suspicion of terrorist activities . JJ NNS VBP PRP VBP VBN CD NNS CC DT JJ NN IN NN IN JJ NNS . Police spokesman Eric Kiraithe says the three were arrested at Nairobi 's international airport late Thursday as they attempted to leave the country . NN NN NNP NNP VBZ DT CD VBD VBN IN NNP POS JJ NN RB NNP IN PRP VBD TO VB DT NN . The three have been identified as Germans Andrej Hermlin and Gerd Uwe , along with a Dutch woman , Fleur van Dissel . DT CD VBP VBN VBN IN NNS NNP NNP CC NNP NNP , IN IN DT JJ NN , NNP NNP NNP . Kiraithe says the suspects entered the country as journalists but have ' been conducting themselves in a suspicious manner . ' NNP VBZ DT NNS VBD DT NN IN NNS CC VBP `` VBN VBG PRP IN DT JJ NN . `` He says the three took video footage of security installations in the country . PRP VBZ DT CD VBD NN NN IN NN NNS IN DT NN . The spokesman says police are still investigating the incident . DT NN VBZ NNS VBP RB VBG DT NN . Afghanistan 's education minister says the government will never allow the Taleban to set up schools in the south of the country . NNP POS NN NN VBZ DT NN MD RB VB DT NNP TO VB RP NNS IN DT NN IN DT NN . Mohammad Hanif Atmar told a news conference Monday that a Taleban vow to open schools in Afghanistan was an excuse for setting up terrorist training centers in the country . NNP NNP NNP VBD DT NN NN NNP IN DT NNP NN TO JJ NNS IN NNP VBD DT NN IN VBG RP JJ NN NNS IN DT NN . A Taleban spokesman , Abdul Hai Muthmahien , said by telephone from a secret location late Saturday that the schools would be set up beginning in March to ' counter propaganda of the West and its puppets against Islam . ' DT NNP NN , NNP NNP NNP , VBD IN NN IN DT JJ NN JJ NNP IN DT NNS MD VB VBN RP VBG IN NNP TO `` JJ NN IN DT NNP CC PRP$ NNS IN NNP . `` Atmar says Taleban militants had burned 183 schools in the past year and killed 61 students and teachers . NNP VBZ NNP NNS VBD VBN CD NNS IN DT JJ NN CC VBD CD NNS CC NNS . He says Taleban violence had also closed down nearly 400 schools in areas where the militants said they would set them up . PRP VBZ NNP NN VBD RB VBN IN RB CD NNS IN NNS WRB DT NNS VBD PRP MD VB PRP RP . Venezuelan President Hugo Chavez is expected to buy more military equipment when he visits Russia later this month . JJ NNP NNP NNP VBZ VBN TO VB JJR JJ NN WRB PRP VBZ NNP RB DT NN . The government of Venezuela announced Thursday that Mr. Chavez will meet with Russian President Dmitri Medvedev on July 22 , when he begins a five-day European tour . DT NN IN NNP VBD NNP IN NNP NNP MD VB IN JJ NNP NNP NNP IN NNP CD , WRB PRP VBZ DT JJ JJ NN . The statement said President Chavez plans to buy new military hardware , including tanks . DT NN VBD NNP NNP VBZ TO VB JJ JJ NN , VBG NNS . Venezuela has already purchased $ 3 billion in Russian fighter jets , helicopters and guns . NNP VBZ RB VBN $ CD CD IN JJ NN NNS , NNS CC NNS . The two leaders are also expected to discuss setting up a joint bank and the development of industrial and technological projects . DT CD NNS VBP RB VBN TO VB VBG RP DT JJ NN CC DT NN IN JJ CC JJ NNS . A Turkish press report says Turkey will remove Iran from a watchlist of nations it considers as threats to its national security . DT JJ NN NN VBZ NNP MD VB NNP IN DT NN IN NNS PRP VBZ IN NNS TO PRP$ JJ NN . The newspaper Milliyet reported Monday that Turkey also will remove Russia , Iraq and Greece as primary threats in the so-called Red Book - a national security policy document . DT NN NNP VBD NNP IN NNP RB MD VB NNP , NNP CC NNP IN JJ NNS IN DT JJ NNP NNP IN DT JJ NN NN NN . The report said the updated list is part of a security review by Turkey 's National Security Council , which will be adopted in October . DT NN VBD DT VBN NN VBZ NN IN DT NN NN IN NNP POS NNP NNP NNP , WDT MD VB VBN IN NNP . The national security document was last revised in 2005 , when Islamic fundamentalism and Kurdish separatism were considered the greatest threats to Turkish security . DT JJ NN NN VBD JJ VBN IN CD , WRB NNP NN CC JJ NN VBD VBN DT JJS NNS TO JJ NN . Turkey and Iran are active trading partners in the energy sector . NNP CC NNP VBP JJ NN NNS IN DT NN NN . Turkey already buys a third of its gas imports from Iran and is looking to expand its relationship to power sales and the transit of Iranian gas to Europe . NNP RB VBZ DT NN IN PRP$ NN NNS IN NNP CC VBZ VBG TO VB PRP$ NN TO NN NNS CC DT NN IN JJ NN TO NNP . Afghan military officials say a roadside bomb blast in the volatile south has killed six Afghan soldiers . JJ JJ NNS VBP DT NN NN NN IN DT JJ NN VBZ VBN CD JJ NNS . The officials say the incident occurred Tuesday , in the Sangin district in Helmand province . DT NNS VBP DT NN VBD NNP , IN DT NNP NN IN NNP NN . The blast came just hours after another roadside bombing in neighboring Kandahar province killed three Afghans and two foreigners . DT NN VBD RB NNS IN DT NN VBG IN JJ NNP NN VBD CD NNS CC CD NNS . According to local officials , the victims worked for an American security company and were killed on the road linking Kandahar with Herat . VBG TO JJ NNS , DT NNS VBD IN DT JJ NN NN CC VBD VBN IN DT NN VBG NNP IN NNP . Also Tuesday , in the center of Kandahar city , two suicide bombers blew themselves up but there were no other casualties . RB NNP , IN DT NN IN NNP NN , CD NN NNS VBD PRP RP CC EX VBD DT JJ NNS . The governor of Kandahar province blamed the blasts on Taleban militants who have increased attacks in southern Afghanistan in recent months . DT NN IN NNP NN VBD DT NNS IN NNP NNS WP VBP VBN NNS IN JJ NNP IN JJ NNS . Angola says the outbreak of the deadly Marburg virus , which has already killed 244 people , appears to be under control . NNP VBZ DT NN IN DT JJ NNP NN , WDT VBZ RB VBN CD NNS , VBZ TO VB IN NN . Health ministry officials in Luanda Friday said the virus , which has already stricken 266 people , has largely been confined to the northwestern province of Uige . NNP NN NNS IN NNP NNP VBD DT NN , WDT VBZ RB VBN CD NNS , VBZ RB VBN VBN TO DT JJ NN IN NNP . A spokesman said four neighboring provinces , including the capital where doctors previously detected infections , have not reported any new cases . DT NN VBD CD JJ NNS , VBG DT NN WRB NNS RB VBD NNS , VBP RB VBN DT JJ NNS . International aid groups , including the World Health Organization , are working to control the highly contagious and incurable virus . JJ NN NNS , VBG DT NNP NNP NNP , VBP VBG TO VB DT RB JJ CC JJ NN . Experts say the Ebola-like virus , which is spread through contact with bodily fluids , can be contained with relatively simple hygienic precautions . NNS VBP DT JJ NN , WDT VBZ VBN IN NN IN RB NNS , MD VB VBN IN RB JJ JJ NNS . Previously , the most serious outbreak of the disease occurred in the neighboring Democratic Republic of Congo , killing at least 123 between 1998 and 2000 . RB , DT RBS JJ NN IN DT NN VBD IN DT JJ NNP NNP IN NNP , VBG IN JJS CD IN CD CC CD . Britain 's upper house of parliament has rejected a plan that would have allowed a government minister to issue restraints against terrorism suspects . NNP POS JJ NN IN NN VBZ VBN DT NN WDT MD VB VBN DT NN NN TO VB NNS IN NN NNS . The House of Lords Monday insisted that only a judge could issue orders to place suspects under curfew or impose bans on telephone and Internet use . DT NNP IN NNPS NNP VBD IN RB DT NN MD VB NNS TO VB NNS IN NN CC VB NNS IN NN CC NN NN . Prime Minister Tony Blair has been trying to push through new anti-terrorism laws before March 14 , when current security legislation expires . JJ NN NNP NNP VBZ VBN VBG TO VB IN JJ JJ NNS IN NNP CD , WRB JJ NN NN VBZ . The government last week conceded to lower-house demands that only a judge could issue orders for house arrest . DT NN JJ NN VBD TO VB NNS WDT RB DT NN MD VB NNS IN NN NN . In the face of strong criticism by the opposition and some members of his own Labor Party , Mr. Blair was given a public boost for new legislation Sunday . IN DT NN IN JJ NN IN DT NN CC DT NNS IN PRP$ JJ NNP NNP , NNP NNP VBD VBN DT JJ NN IN JJ NN NNP . The recently retired head of London 's police force warned that there are at least 100 al-Qaida terrorists in Britain determined to carry out attacks there . DT RB VBN NN IN NNP POS NN NN VBD IN EX VBP IN JJS CD NNP NNS IN NNP VBN TO VB RP NNS RB . Fugitive Taleban leader Mullah Omar says he is confident his followers will drive foreign troops out of Afghanistan . JJ NNP NN NNP NNP VBZ PRP VBZ JJ PRP$ NNS MD VB JJ NNS IN IN NNP . The message was sent to news agencies Friday . DT NN VBD VBN TO NN NNS NNP . In it , he says Afghanistan has a history of expelling its enemies by force and that no aggressive force has left the country willingly . IN PRP , PRP VBZ NNP VBZ DT NN IN VBG PRP$ NNS IN NN CC IN DT JJ NN VBZ VBN DT NN RB . Omar also dismissed a proposal by Afghan and Pakistani officials to hold tribal councils on both sides of their border to end the violence . NNP RB VBD DT NN IN JJ CC JJ NNS TO VB JJ NNS IN DT NNS IN PRP$ NN TO VB DT NN . He said the councils are a ' trap ' created by aggressors and puppets . PRP VBD DT NNS VBP DT `` NN `` VBN IN NNS CC NNS . The authenticity of the message could not be verified . DT NN IN DT NN MD RB VB VBN . The U.S. government has offered a $ 10 million reward for Omar 's arrest . DT NNP NN VBZ VBN DT $ CD CD NN IN NNP POS NN . He went into hiding shortly after U.S.-led forces forced the Taleban from power in Afghanistan in 2001 . PRP VBD IN VBG RB IN JJ NNS VBD DT NNP IN NN IN NNP IN CD . Hamas security forces briefly detained the Fatah-allied Palestinian attorney general Thursday after accusing him of taking important information from his office . NNP NN NNS RB VBD DT JJ JJ NN NN NNP IN VBG PRP IN VBG JJ NN IN PRP$ NN . Witnesses say Hamas forces seized Attorney General Ahmed Mughani at his office in Gaza City and released him a short time later . NNS VBP NNP NNS VBD NNP NNP NNP NNP IN PRP$ NN IN NNP NNP CC VBD PRP DT JJ NN RB . Mughani said the Hamas-led Executive Force asked him to sign an agreement to resign his duties and to remain in Gaza . NNP VBD DT JJ NNP NNP VBD PRP TO VB DT NN TO VB PRP$ NNS CC TO VB IN NNP . The attorney general said he refused to sign the conditions and called Hamas ' action a violation of the law . DT NN NN VBD PRP VBD TO VB DT NNS CC VBD NNP POS NN DT NN IN DT NN . Mughani is close with the Fatah-led Palestinian government in the West Bank , which is headed by President Mahmoud Abbas . NNP VBZ RB IN DT JJ JJ NN IN DT NNP NNP , WDT VBZ VBN IN NNP NNP NNP . Hamas , which took control of the Gaza Strip nearly two months ago , says it is aiming to reform the territory 's justice system . NNP , WDT VBD NN IN DT NNP NNP RB CD NNS RB , VBZ PRP VBZ VBG TO VB DT NN POS NN NN . Turkish government ministers and representatives of the poultry industry are meeting Saturday to discuss how to minimize the economic effects of the bird flu outbreak . JJ NN NNS CC NNS IN DT NN NN VBP VBG NNP TO VB WRB TO VB DT JJ NNS IN DT NN NN NN . Deputy Prime Minister Abdulatif Sener told reporters ahead of the meeting in Ankara the group will try to find a solution to the problem . NNP NNP NNP NNP NNP VBD NNS RB IN DT NN IN NNP DT NN MD VB TO VB DT NN TO DT NN . He says any measures must have Cabinet approval . PRP VBZ DT NNS MD VB NNP NN . Industry experts say poultry sales in the country have dropped by 70 percent since the deadly H5N1 strain of bird flu was reported in humans in Turkey late last month and killed three people - the first bird flu deaths outside Asia . NN NNS VBP NN NNS IN DT NN VBP VBN IN CD NN IN DT JJ NNP NN IN NN NN VBD VBN IN NNS IN NNP RB JJ NN CC VBD CD NNS IN DT JJ NN NN NNS IN NNP . In another development , Belgian officials say a person has been hospitalized in Brussels with suspected bird flu after visiting the region in Turkey hit by the disease . IN DT NN , JJ NNS VBP DT NN VBZ VBN VBN IN NNP IN JJ NN NN IN VBG DT NN IN NNP VBN IN DT NN . The officials gave no other details . DT NNS VBD DT JJ NNS . The Everglades stretch almost 200 kilometers across Florida DT NNPS NN RB CD NNS IN NNP Wildlife has also been threatened as the glades shrink . NN VBZ RB VBN VBN IN DT NNS VB . The National Park Service estimates that the number of wading birds has declined from a quarter of a million in the 1930s to fewer than 20,000 today . DT NNP NNP NNP VBZ IN DT NN IN VBG NNS VBZ VBN IN DT NN IN DT CD IN DT NNS TO JJR IN CD NN . But you 'll still see plenty of alligators . CC PRP MD RB VB NN IN NNS . They sun themselves along the old , two-lane state road through the Everglades , and may be diminished but are still an awesome sight . PRP VBP PRP IN DT JJ , JJ NN NN IN DT NNPS , CC MD VB VBN CC VBP RB DT JJ NN . There 's nothing like them , anywhere in the world . EX VBZ DT IN PRP , RB IN DT NN . Japan 's billion dollar Kibo science laboratory has been delivered to the International Space Station , and the astronauts have been installing and setting it up . NNP POS CD NN NNP NN NN VBZ VBN VBN TO DT NNP NNP NNP , CC DT NNS VBP VBN VBG CC VBG PRP RP . This week , crew members from shuttle Discovery and the space station have also been doing a little ' home repair ' on the station 's toilet . DT NN , NN NNS IN NN NN CC DT NN NN VBP RB VBN VBG DT JJ `` NN NN `` IN DT NN POS NN . Paul Sisco has a report on the week 's activities in space . NNP NNP VBZ DT NN IN DT NN POS NNS IN NN . Former Peruvian President Alberto Fujimori has announced he will run for president again in the upcoming election . JJ JJ NNP NNP NNP VBZ VBN PRP MD VB IN NN RB IN DT JJ NN . Mr. Fujimori made the announcement at a news conference Thursday , in Japan . NNP NNP VBD DT NN IN DT NN NN NNP , IN NNP . He has been living in self-imposed exile in Japan since fleeing Peru in November 2000 in the midst of a corruption scandal . PRP VBZ VBN VBG IN JJ NN IN NNP IN VBG NNP IN NNP CD IN DT NN IN DT NN NN . He was granted Japanese nationality due to his ancestry , but last month received a new Peruvian passport . PRP VBD VBN JJ NN JJ TO PRP$ NN , CC JJ NN VBD DT JJ JJ NN . Peruvian prosecutors have also petitioned Japan to extradite Mr. Fujimori so he can face criminal charges on allegations ranging from abuse of power and embezzlement to sanctioning a paramilitary death squad . JJ NNS VBP RB VBN NNP TO VB NNP NNP IN PRP MD VB JJ NNS IN NNS VBG IN NN IN NN CC NN TO VBG DT JJ NN NN . He has denied all the charges . PRP VBZ VBN PDT DT NNS . Peru 's congress has banned him from holding public office again until at least 2010 . NNP POS NN VBZ VBN PRP IN VBG JJ NN RB IN IN JJS CD . A New York art show chronicles the impact of the feminist movement on art between 1965 and 1980 . DT NNP NNP NN NN VBZ DT NN IN DT JJ NN IN NN IN CD CC CD . The show features works by artists from around the world and includes paintings , sculptures and performance art . DT NN VBZ NNS IN NNS IN IN DT NN CC VBZ NNS , NNS CC NN NN . VOA 's Behnam Nateghi toured the show at the P.S. One Contemporary Art Center . NNP POS NNP NNP VBD DT NN IN DT NNP CD NNP NNP NNP . Jim Bertel narrates . NNP NNP VBZ . Afghan officials say a kidnapped Italian aid worker is in good health and that her abductors have opened a channel of communication with authorities . JJ NNS VBP DT VBN JJ NN NN VBZ IN JJ NN CC IN PRP$ NNS VBP VBN DT NN IN NN IN NNS . Italian aid worker Clementina Cantoni is seen in this file photo released by CARE International JJ NN NN NNP NNP VBZ VBN IN DT NN NN VBN IN NNP NNP Officials say they have spoken with the CARE International worker Clementina Cantoni , who was seized from her car in Kabul by four gunmen on Monday . NNS VBP PRP VBP VBN IN DT NNP NNP NN NNP NNP , WP VBD VBN IN PRP$ NN IN NNP IN CD NNS IN NNP . Italian embassy officials in Kabul confirmed that contact has been established with alleged abductors , but declined to provide details . JJ NN NNS IN NNP VBD IN NN VBZ VBN VBN IN JJ NNS , CC VBD TO VB NNS . Earlier , Afghan police said a criminal gang kidnapped the woman and wanted to exchange her for its jailed leader and several accomplices . RB , JJ NNS VBD DT JJ NN VBD DT NN CC VBD TO VB PRP IN PRP$ JJ NN CC JJ NNS . Tuesday , about 200 Afghan widows , who have received help from the aid worker , staged a tearful demonstration , demanding her immediate release . NNP , IN CD JJ NNS , WP VBP VBN NN IN DT NN NN , VBD DT JJ NN , VBG PRP$ JJ NN . Norwegian Frode Andresen has won a World Cup men 's biathlon sprint event in Ruhpolding , Germany , but Frenchman Raphael Poiree is the overall leader . JJ NNP NNP VBZ VBN DT NNP NNP NNS POS NN NN NN IN NNP , NNP , CC NNP NNP NNP VBZ DT JJ NN . Andresen finished the 10-kilometer event in 25.03.05 seconds with one shooting miss . NNP VBD DT JJ NN IN CD NNS IN CD NN VBP . Michael Rosch of Germany was second 3.8 seconds back with no penalties . NNP NNP IN NNP VBD JJ CD NNS RB IN DT NNS . Michael Greis of German was third , 11.8 seconds behind Andresen with one shooting miss . NNP NNP IN JJ VBD JJ , CD NNS IN NNP IN CD NN VBP . Poiree finished fourth in the race , more than 15 seconds behind the Norwegian , but leads the overall World Cup standings with 298 points after 10 events . NNP VBD RB IN DT NN , JJR IN CD NNS IN DT NN , CC VBZ DT JJ NNP NNP NNS IN CD NNS IN CD NNS . The men 's 12.5-kilometer pursuit race is Sunday at the same venue . DT NNS POS JJ NN NN VBZ NNP IN DT JJ NN . Biathlon combines cross-country skiing and rifle shooting from a variety of positions . NNP VBZ NN NN CC NN NN IN DT NN IN NNS . Athletes must ski penalty laps for shooting misses . NNS MD VB NN NNS IN VBG NNS . The leader of the world 's largest Muslim organization has warned Thai officials that using military force to try to end the unrest in Thailand 's south will only make the extremists stronger . DT NN IN DT NN POS JJS NN NN VBZ VBN JJ NNS IN VBG JJ NN TO VB TO VB DT NN IN NNP POS NN MD RB VB DT NNS JJR . The chairman of the Indonesia-based Nahdlatul Ulama , Hasyim Muzadi , gave the warning in Bangkok where he is meeting with Thai Prime Minister Thaksin Shinawatra and King Bhumibol Adulyadej on ways to end the unrest . DT NN IN DT JJ NNP NNP , NNP NNP , VBD DT NN IN NNP WRB PRP VBZ VBG IN JJ NNP NNP NNP NNP CC NNP NNP NNP IN NNS TO VB DT NN . Mr. Thaksin and Mr. Muzadi agreed that improved education in the south will help boost living standards and end economic problems that contribute to violence . NNP NNP CC NNP NNP VBD IN JJ NN IN DT NN MD VB VB VBG NNS CC VB JJ NNS WDT VBP TO NN . Later this week , Mr. Muzadi will travel to Thailand 's three Muslim-majority southern provinces to meet Muslim leaders and leading Thai Buddhist monks . RB DT NN , NNP NNP MD VB TO NNP POS CD JJ JJ NNS TO VB JJ NNS CC VBG JJ NNP NNS . More than 650 people have been killed in separatist violence in southern Thailand since the beginning of 2004 . JJR IN CD NNS VBP VBN VBN IN JJ NN IN JJ NNP IN DT NN IN CD . Syrian President Bashar al-Assad says his country wants to cooperate with the new administration of U.S. President-elect Barack Obama , and to contribute to Middle East stability . JJ NNP NNP NNP VBZ PRP$ NN VBZ TO VB IN DT JJ NN IN NNP NNP NNP NNP , CC TO VB TO NNP NNP NN . Mr. Assad made his remarks in an interview with the German magazine Der Spiegel released Saturday . NNP NNP VBD PRP$ NNS IN DT NN IN DT JJ NN NNP NNP VBD NNP . Mr. Obama has said he may seek Syria 's help in curbing Iran 's controversial nuclear work . NNP NNP VBZ VBN PRP MD VB NNP POS NN IN VBG NNP POS JJ JJ NN . In response , Mr. Assad said Damascus must be included in the process , and that Syria has long been isolated from the talks . IN NN , NNP NNP VBD NNP MD VB VBN IN DT NN , CC DT NNP VBZ RB VBN VBN IN DT NNS . Mr. Assad also signaled Damascus is not ready to give up its ties to Iran . NNP NNP RB VBD NNP VBZ RB JJ TO VB RP PRP$ NNS TO NNP . He said good relations with the United States would not mean bad relations with Tehran . PRP VBD JJ NNS IN DT NNP NNPS MD RB VB JJ NNS IN NNP . Syria 's president encouraged Mr. Obama to become seriously involved in the Middle East peace process . NNP POS NN VBD NNP NNP TO VB RB VBN IN DT NNP NNP NN NN . He said Syria must help in the process , together with the Europeans . PRP VBD NNP MD VB IN DT NN , RB IN DT NNS . Top officials from countries neighboring Iraq are holding talks in Turkey to welcome the formation of the new government in Baghdad . JJ NNS IN NNS VBG NNP VBP VBG NNS IN NNP TO VB DT NN IN DT JJ NN IN NNP . Diplomats from Iran , Jordan , Kuwait , Syria , Saudi Arabia and Turkey met in Istanbul Friday to set the agenda for talks by each country 's foreign minister on Saturday . NNS IN NNP , NNP , NNP , NNP , NNP NNP CC NNP VBD IN NNP NNP TO VB DT NN IN NNS IN DT NN POS JJ NN IN NNP . Representatives of regional power , Egypt , also attended the meeting . NNS IN JJ NN , NNP , RB VBD DT NN . Officials say the diplomats were to discuss the recent political developments in Iraq , and the next stages of the political process including the drafting of the nation 's constitution by the new government of Prime Minister Ibrahim al-Jaafari . NNS VBP DT NNS VBD TO VB DT JJ JJ NNS IN NNP , CC DT JJ NNS IN DT JJ NN VBG DT NN IN DT NN POS NN IN DT JJ NN IN NNP NNP NNP NNP . The participants also were expected to draft a statement of support for the new government . DT NNS RB VBD VBN TO VB DT NN IN NN IN DT JJ NN . Sources say the document will stress the political integrity and sovereignty of the war-torn country and will call for international support for Baghdad . NNS VBP DT NN MD VB DT JJ NN CC NN IN DT JJ NN CC MD VB IN JJ NN IN NNP . Military sources in Chad say the commander of its army has died from injuries sustained during a firefight with rebel forces . JJ NNS IN NNP VBP DT NN IN PRP$ NN VBZ VBN IN NNS VBN IN DT NN IN JJ NNS . General Abakar Yusuf Itno was wounded Thursday near the eastern Chadian town of Adre . NNP NNP NNP NNP VBD VBN NNP IN DT JJ JJ NN IN NNP . The sources say the rebels were backed by Janjaweed Arab militia forces who crossed the border from neighboring Sudan . DT NNS VBP DT NNS VBD VBN IN NNP NNP NN NNS WP VBD DT NN IN VBG NNP . Itno was the nephew of President Idriss Deby . NNP VBD DT NN IN NNP NNP NNP . Mr. Deby has been trying to quell a rebellion launched against his government by a group known as the Rally for Democracy and Liberty . NNP NNP VBZ VBN VBG TO VB DT NN VBN IN PRP$ NN IN DT NN VBN IN DT NNP IN NNP CC NNP . He has accused Sudan of backing rebel efforts to overthrow him . PRP VBZ VBN NNP IN VBG JJ NNS TO VB PRP . The Khartoum-backed Janjaweed militias have been fighting with rebels in Sudan 's Darfur region . DT JJ NNP NNS VBP VBN VBG IN NNS IN NNP POS NNP NN . The fighting has left some 1,80,000 people dead and another two million homeless . DT NN VBZ VBN DT CD NNS JJ CC DT CD CD NN . U.S. authorities started a man-made flood in the Grand Canyon Wednesday in an attempt to help the canyon 's ecosystem . NNP NNS VBD DT JJ NN IN DT NNP NNP NNP IN DT NN TO VB DT NN POS NN . Secretary of the Interior Dirk Kempthorne pulled a lever releasing water from the Glen Canyon Dam , which regulates the flow of the Colorado River . NNP IN DT NNP NNP NNP VBD DT NN VBG NN IN DT NNP NNP NNP , WDT VBZ DT NN IN DT NNP NNP . He said the flooding is meant to help redistribute sediment deposits to rebuild beaches downstream . PRP VBD DT NN VBZ VBN TO VB VB NN NNS TO VB NNS NN . Kempthorne said the water is being released at a rate that would fill the Empire State Building - New York City 's tallest skyscraper - in 20 minutes . NNP VBD DT NN VBZ VBG VBN IN DT NN WDT MD VB DT NNP NNP NNP IN NNP NNP NNP POS JJS NN : IN CD NNS . Authorities conducted similar experiments in 1996 and 2004 . NNS VBD JJ NNS IN CD CC CD . Critics of the move say they fear the sudden change will damage wildlife habitats and affect endangered species . NNS IN DT NN VBP PRP VBP DT JJ NN MD VB NN NNS CC VB JJ NNS . The superintendent of Grand Canyon National Park , Steve Martin told the Los Angeles Times he fears there are non-environmental motives for the flooding , suggesting it is well-timed to aid hydroelectric power producers preparing for high demand during the upcoming summer months . DT NN IN NNP NNP NNP NNP , NNP NNP VBD DT NNP NNP NNP PRP VBZ EX VBP JJ NNS IN DT NN , VBG PRP VBZ JJ TO VB JJ NN NNS VBG IN JJ NN IN DT JJ NN NNS . Lebanese and Israeli soldiers exchanged cross-border fire Wednesday , but no casualties were reported . JJ CC JJ NNS VBD JJ NN NNP , CC DT NNS VBD VBN . The Lebanese army says its soldiers opened fire on an Israeli bulldozer that crossed the border . DT JJ NN VBZ PRP$ NNS VBD NN IN DT JJ NN WDT VBD DT NN . The Israeli army says its soldiers returned fire . DT JJ NN VBZ PRP$ NNS VBD NN . The Israeli forces were searching for explosives along the border , after discovering four bombs there Monday . DT JJ NNS VBD VBG IN NNS IN DT NN , IN VBG CD NNS RB NNP . The Shi'ite militant group Hezbollah says it did not recently plant the bombs . DT NNP JJ NN NNP VBZ PRP VBD RB RB VB DT NNS . Hezbollah officials said Tuesday that the bombs were placed before last year 's war between Israel and Hezbollah . NNP NNS VBD NNP IN DT NNS VBD VBN IN JJ NN POS NN IN NNP CC NNP . Israeli officials have said they believe the bombs were placed in recent days under the cover of fog and rain . JJ NNS VBP VBN PRP VBP DT NNS VBD VBN IN JJ NNS IN DT NN IN NN CC NN . If Hezbollah is responsible for placing explosives in recent days , it would mark a violation of a U.N.-brokered ceasefire agreement declared last August . IN NNP VBZ JJ IN VBG NNS IN JJ NNS , PRP MD VB DT NN IN DT JJ NN NN VBN JJ NNP . In July 2006 , Hezbollah abducted two Israeli soldiers in a cross-border raid , which started a month-long war between Israel and the militia . IN NNP CD , NNP VBD CD JJ NNS IN DT JJ NN , WDT VBD DT JJ NN IN NNP CC DT NN . Early returns in Colombia 's legislative elections indicate majority support of Colombian President Alvaro Uribe . RB NNS IN NNP POS JJ NNS VBP NN NN IN JJ NNP NNP NNP . With at least 34 percent of the vote counted supporters of President Uribe 's tough stance on rebel forces seem likely to win a majority of the 102 senate seats that were being contested . IN IN JJS CD NN IN DT NN VBD NNS IN NNP NNP POS JJ NN IN NN NNS VBP JJ TO VB DT NN IN DT CD NN NNS WDT VBD VBG VBN . Sunday 's election , which also selected 166 members of the lower house , was widely viewed as a test of Mr. Uribe 's popularity . NNP POS NN , WDT RB VBD CD NNS IN DT JJR NN , VBD RB VBN IN DT NN IN NNP NNP POS NN . He is up for re-election in May . PRP VBZ RP IN NN IN NNP . The leftist Revolutionary Armed Forces of Colombia , known as FARC , had stepped up attacks in advance of the election , killing dozens of civilians in the past few weeks . DT JJ JJ JJ NNS IN NNP , VBN IN NNP , VBD VBN RP NNS IN NN IN DT NN , VBG NNS IN NNS IN DT JJ JJ NNS . But the elections , themselves , were peaceful amid heavy security . CC DT NNS , PRP , VBD JJ IN JJ NN . Rightwing paramilitaries , who have made peace overtures to the Colombian government , have been campaigning for congressional allies . VBG NNS , WP VBP VBN NN NNS TO DT JJ NN , VBP VBN VBG IN JJ NNS . French Foreign Minister Philippe Douste-Blazy has announced he will soon head to Colombia to try to win freedom for kidnapped former presidential candidate Ingrid Betancourt . JJ NNP NNP NNP NNP VBZ VBN PRP MD RB VB TO NNP TO VB TO VB NN IN VBN JJ JJ NN NNP NNP . Colombian Marxist rebels kidnapped her in February 2002 while she campaigned . JJ JJ NNS VBD PRP IN NNP CD IN PRP VBD . Her father , the late Gabriel Betancourt , was a Colombian ambassador to France . PRP$ NN , DT JJ NNP NNP , VBD DT JJ NN TO NNP . Mr. Douste-Blazy told French television Tuesday that in the name of human rights , it is unthinkable to leave her in such conditions . NNP NNP VBD JJ NN NNP IN IN DT NN IN JJ NNS , PRP VBZ JJ TO VB PRP IN JJ NNS . Colombia 's main rebel group , the Revolutionary Armed Forces of Colombia , has already rejected a joint French-Spanish-Swiss proposed prisoner exchange with the Colombian government to win freedom for Ms. Betancourt and other hostages . NNP POS JJ NN NN , DT NNP NNP NNS IN NNP , VBZ RB VBN DT JJ NN VBN NN NN IN DT JJ NN TO VB NN IN NNP NNP CC JJ NNS . A purported Taleban commander says al-Qaida terror network chief Osama bin Laden and Taleban leader Mullah Mohammad Omar are both alive after more than three years on the run . DT JJ NNP NN VBZ NNP NN NN NN NNP NNP NNP CC NNP NN NNP NNP NNP VBP DT JJ IN JJR IN CD NNS IN DT NN . The commander , identified as Mullah Akhtar Usmani , told Pakistan 's private GEO Television both men are in good health but refused to say where they are . DT NN , VBN IN NNP NNP NNP , VBD NNP POS JJ NNP NNP DT NNS VBP IN JJ NN CC VBD TO VB WRB PRP VBP . He said Mullah Omar remains in command of the hard-line Islamic militia that formerly ruled Afghanistan . PRP VBD NNP NNP VBZ IN NN IN DT JJ NNP NN WDT RB VBD NNP . The Taleban remnants have again become active and have been attacking U.S.-led forces in Afghanistan , who ousted them in late 2001 . DT NNP NNS VBP RB VBN JJ CC VBP VBN VBG JJ NNS IN NNP , WP VBD PRP IN JJ CD . The commander , said to be Mullah Omar 's former deputy and now the head of Taleban operations , held a Kalashnikov assault rifle and partly covered his face with a black turban during the interview . DT NN , VBN TO VB NNP NNP POS JJ NN CC RB DT NN IN NNP NNS , VBD DT NNP NN NN CC RB VBD PRP$ NN IN DT JJ NN IN DT NN . Officials in Somalia say insurgents have killed two people and wounded two others in an attack on an army camp near Baidoa , the home of the transitional parliament . NNS IN NNP VBP NNS VBP VBN CD NNS CC VBD CD NNS IN DT NN IN DT NN NN IN NNP , DT NN IN DT JJ NN . The Islamist insurgent group Shabab claimed responsibility for the attack on the Daynunay military base . DT NNP JJ NN NNP VBD NN IN DT NN IN DT NNP JJ NN . Two days ago , Shabab insurgents fired mortars at the presidential palace and airport in Baidoa , killing at least two soldiers and wounding seven . CD NNS RB , NNP NNS VBD NNS IN DT JJ NN CC NN IN NNP , VBG IN JJS CD NNS CC VBG CD . Somali 's government dismissed that attack as a publicity stunt for the insurgent group , and said that Baidoa is functioning and safe . JJ POS NN VBD DT NN IN DT NN NN IN DT JJ NN , CC VBD IN NNP VBZ VBG CC JJ . Insurgents have briefly overrun more a dozen towns in Somalia in recent months in their fight against the interim government and its Ethiopian military allies . NNS VBP RB VBN RBR DT NN NNS IN NNP IN JJ NNS IN PRP$ NN IN DT JJ NN CC PRP$ JJ JJ NNS . Ethiopian troops entered Somalia two years ago to help the interim government fight an Islamist movement that was threatening to take over the country . JJ NNS VBD NNP CD NNS RB TO VB DT JJ NN VB DT JJ NN WDT VBD VBG TO VB RP DT NN . Somalia has been continuously torn by conflict since the fall of the last stable government in 1991 . NNP VBZ VBN RB VBN IN NN IN DT NN IN DT JJ JJ NN IN CD . A top Russian lawmaker is denying a newspaper report that Russia has helped Iran acquire ballistic missile technology that would bring much of Europe within target range . DT JJ JJ NN VBZ VBG DT NN NN IN NNP VBZ VBN NNP VB JJ NN NN WDT MD VB NN IN NNP IN NN NN . Konstantin Kosachyov , who chairs the Duma 's International Affairs Committee , told the Interfax news agency Sunday that Russia could not and did not cooperate on such a project . NNP NNP , WP VBZ DT NNP POS NNP NNP NNP , VBD DT NNP NN NN NNP IN NNP MD RB CC VBD RB VB IN PDT DT NN . He responded to a report published Sunday in London 's Sunday Telegraph , saying that members of the Russian military acted as go-betweens with North Korea and Iran . PRP VBD TO DT NN VBN NNP IN NNP POS NNP NNP , VBG IN NNS IN DT JJ NN VBD IN NNS IN NNP NNP CC NNP . The report , which cited unidentified Western intelligence sources , says the deal enabled Teheran to get shipments of top-secret missile technology capable of delivering a nuclear weapon 3,500 kilometers . DT NN , WDT VBD JJ JJ NN NNS , VBZ DT NN VBD NNP TO VB NNS IN JJ NN NN JJ IN VBG DT JJ NN CD NNS . Moscow itself falls within that range . NNP PRP VBZ IN DT NN . Mr. Kosachyov urged Russian agencies to respond to the report to prevent what he called a spiraling of speculation . NNP NNP VBD JJ NNS TO VB TO DT NN TO VB WP PRP VBD DT NN IN NN . A United Nations war crimes court has sentenced a former Rwandan mayor to 15 years in prison for his role in the 1994 genocide . DT NNP NNPS NN NNS NN VBZ VBN DT JJ JJ NN TO CD NNS IN NN IN PRP$ NN IN DT CD NN . The International Criminal Tribunal for Rwanda accepted a plea bargain in which Paul Bisengimina pled guilty to two counts of murder and extermination . DT NNP NNP NNP IN NNP VBD DT NN NN IN WDT NNP NNP VBD JJ TO CD NNS IN NN CC NN . In exchange , the prosecution dropped eight other charges . IN NN , DT NN VBD CD JJ NNS . The 58-year-old Bisengimina was mayor of Gikoro in 1994 and was involved in the slaughter of minority Tutsis who had sought refuge at a church . DT JJ NNP VBD NN IN NNP IN CD CC VBD VBN IN DT NN IN NN NN WP VBD VBN NN IN DT NN . Presiding Judge Arlete Ramaroson said Thursday that Bisengimina 's guilty plea could encourage others to come forward and confess their crimes . NNP NNP NNP NNP VBD NNP IN NNP POS JJ NN MD VB NNS TO VB RB CC VB PRP$ NNS . Hutu extremists killed an estimated 8,00,000 Tutsis and moderate Hutus during the 1994 three-month killing spree . NNP NNS VBD DT VBN CD NN CC JJ NN IN DT CD JJ NN NN . Health officials in Pakistan have confirmed the country 's first human fatality caused by bird flu . NNP NNS IN NNP VBP VBN DT NN POS JJ JJ NN VBN IN NN NN . The Health Ministry says the victim worked at a poultry farm in Pakistan 's North West Frontier Province , near the border with Afghanistan . DT NNP NNP VBZ DT NN VBD IN DT NN NN IN NNP POS NNP NNP NNP NNP , IN DT NN IN NNP . Officials say the brother of the man infected with avian influenza also died recently , but he was not tested for the disease . NNS VBP DT NN IN DT NN VBN IN JJ NN RB VBD RB , CC PRP VBD RB VBN IN DT NN . At least five other people from the same border region have recently been confirmed as suffering from the deadly H5N1 strain of bird flu . IN JJS CD JJ NNS IN DT JJ NN NN VBP RB VBN VBN IN NN IN DT JJ NNP NN IN NN NN . Pakistani authorities say two have recovered , and the remaining patients are in quarantine . JJ NNS VBP CD VBP VBN , CC DT VBG NNS VBP IN NN . The World Health Organization said Saturday it was aware of eight suspected human cases of H5N1 bird flu in Pakistan 's Peshawar region . DT NNP NNP NNP VBD NNP PRP VBD JJ IN CD JJ JJ NNS IN NNP NN NN IN NNP POS NNP NN . The Geneva-based organisation says it is providing technical support to the country 's Health Ministry . DT JJ NN VBZ PRP VBZ VBG JJ NN TO DT NN POS NNP NNP . WHO says more than 200 people have died of bird flu worldwide since 2003 . NNP VBZ JJR IN CD NNS VBP VBN IN NN NN NN IN CD . Philippine military aircraft are rushing relief supplies to parts of the country devastated this week by heavy rains , flooding and mudslides caused by two typhoons . JJ JJ NN VBP VBG NN NNS TO NNS IN DT NN VBD DT NN IN JJ NNS , NN CC NNS VBN IN CD NNS . Cargo planes and helicopters delivered food , water , and medical supplies Saturday to residents on the northeastern coast of the main island of Luzon . NNP NNS CC NNS VBN NN , NN , CC JJ NNS NNP TO NNS IN DT JJ NN IN DT JJ NN IN NNP . President Gloria Arroyo visited towns in some of the hardest hit areas , and she declared a ban on commercial logging , which has been blamed for some of the mudslides . NNP NNP NNP VBD NNS IN DT IN DT RBS VBN NNS , CC PRP VBD DT NN IN JJ NN , WDT VBZ VBN VBN IN DT IN DT NNS . Authorities estimate at least 1,000 people are either dead or missing . NNS VBP IN JJS CD NNS VBP RB JJ CC JJ . International aid organizations and a number of countries have pledged millions of dollars in aid , and the United Nations says it is sending a team of experts to assist with recovery efforts . JJ NN NNS CC DT NN IN NNS VBP VBN NNS IN NNS IN NN , CC DT NNP NNP VBZ PRP VBZ VBG DT NN IN NNS TO VB IN NN NNS . A U.S. newspaper reports that American officials are reviewing a second Dubai company 's plans to acquire interests in the United States . DT NNP NN NNS IN JJ NNS VBP VBG DT JJ NNP NN POS NNS TO VB NNS IN DT NNP NNPS . The Washington Post says Thursday the review involves plans by Dubai International Capital to take over a British firm , Doncasters Group that makes parts for U.S. defense contractors . DT NNP NNP VBZ NNP DT NN VBZ NNS IN NNP NNP NNP TO VB RP DT JJ NN , NNP NNP WDT VBZ NNS IN NNP NN NNS . The company confirms it is seeking U.S. approval for the billion-dollar deal . DT NN VBZ PRP VBZ VBG NNP NN IN DT JJ NN . The report comes days after another Dubai firm , Dubai Ports World and U.S. officials agreed to a new , broader review of its plans to take over some operations in six U.S. ports . DT NN VBZ NNS IN DT NNP NN , NNP NNP NNP CC NNP NNS VBD TO DT JJ , JJR NN IN PRP$ NNS TO VB RP DT NNS IN CD NNP NNS . The port deal has angered U.S. lawmakers from both parties , who say they were not informed about the plan before its approval . DT JJ NN VBZ VBN NNP NNS IN DT NNS , WP VBP PRP VBD RB VBN IN DT NN IN PRP$ NN . The Post also reports that U.S. officials are reviewing an Israeli company 's bid to buy a software security firm that does business with the Defense Department . DT NNP RB VBZ IN NNP NNS VBP VBG DT JJ NN POS NN TO VB DT NN NN NN WDT VBZ NN IN DT NNP NNP . Thousands of Peruvians took to the streets of the capital , Lima , Tuesday to demand the extradition of former President Alberto Fujimori from Chile . NNS IN NNS VBD TO DT NNS IN DT NN , NNP , NNP TO VB DT NN IN JJ NNP NNP NNP IN NNP . Reports from the scene say the protest was led by human rights groups and labor unions seeking to have the former president returned to Chile , where he faces charges of corruption and of authorizing death squads during his 10-year presidency . NNS IN DT NN VBP DT NN VBD VBN IN JJ NNS NNS CC NN NNS VBG TO VB DT JJ NN VBD TO NNP , WRB PRP VBZ NNS IN NN CC IN VBG NN NNS IN PRP$ JJ NN . Mr. Fujimori fled to Japan and faxed his resignation letter to Peru in the midst of a corruption scandal in 2000 . NNP NNP VBD TO NNP CC VBD PRP$ NN NN TO NNP IN DT NN IN DT NN NN IN CD . He was arrested when he traveled to Chile last week . PRP VBD VBN WRB PRP VBD TO NNP JJ NN . Meanwhile , the Santiago Court of Appeals Tuesday turned down a motion by a private citizen to free the former president . RB , DT NNP NNP IN NNP NNP VBD RP DT NN IN DT JJ NN TO VB DT JJ NN . The citizen 's connection to the case was not clear . DT NN POS NN TO DT NN VBD RB JJ . This means Mr. Fujimori will remain under arrest . DT VBZ NNP NNP MD VB IN NN . The United Nations is sending a veteran Portuguese diplomat to war-torn Ivory Coast to help organize presidential elections in October . DT NNP NNP VBZ VBG DT NN JJ NN TO JJ NNP NNP TO VB VB JJ NNS IN NNP . U.N. Secretary General Kofi Annan Friday chose Antonio Monteiro for the job , a former Portuguese foreign minister and U.N. ambassador . NNP NNP NNP NNP NNP NNP VBD NNP NNP IN DT NN , DT JJ JJ JJ NN CC NNP NN . He is tasked with ensuring the elections are open , free and fair . PRP VBZ VBN IN VBG DT NNS VBP JJ , JJ CC JJ . Last month , Ivory Coast 's warring parties renewed pledges to abide by an April peace deal brokered by South Africa , which includes holding elections on October 30 . JJ NN , NNP NNP POS VBG NNS VBN NNS TO VB IN DT NNP NN NN VBN IN NNP NNP , WDT VBZ VBG NNS IN NNP CD . Several previous deals failed to take hold because of political disagreements and delays by both the government and rebels to disarm . JJ JJ NNS VBD TO VB NN IN IN JJ NNS CC NNS IN DT DT NN CC NNS TO VB . Ivory Coast has been split in two , with rebels in the north and the government in control of the south , since a failed coup attempt in 2002 . NNP NNP VBZ VBN VBN IN CD , IN NNS IN DT NN CC DT NN IN NN IN DT NN , IN DT VBN NN NN IN CD . Burma has released two lawyers who were convicted of contempt of court last year and sentenced to four months in prison . NNP VBZ VBN CD NNS WP VBD VBN IN NN IN NN JJ NN CC VBD TO CD NNS IN NN . Supreme court lawyers U Aung Thein and U Khin Maung Shein were released Friday after serving their full sentences . NNP NN NNS NNP NNP NNP CC NNP NNP NNP NNP VBD VBN NNP IN VBG PRP$ JJ NNS . The two lawyers had represented student activists . DT CD NNS VBD VBN NN NNS . Burma 's High Court sentenced them in November for what was described as a lack of respect for the court . NNP POS NNP NNP VBD PRP IN NNP IN WP VBD VBN IN DT NN IN NN IN DT NN . The Asian Human Rights Commission welcomed their release and expressed hope they will be permitted to continue practicing their profession . DT NNP NNP NNP NNP VBD PRP$ NN CC VBD NN PRP MD VB VBN TO VB VBG PRP$ NN . The Hong-Kong-based group quoted U Aung Thein and U Khin Maung Shein as saying they had no chance to defend themselves . DT JJ NN VBN NNP NNP NNP CC NNP NNP NNP NNP IN VBG PRP VBD DT NN TO VB PRP . The two said their clients withdrew their powers of attorney because they lost faith in the judicial process . DT CD VBD PRP$ NNS VBD PRP$ NNS IN NN IN PRP VBD NN IN DT JJ NN . The Asian Human Rights Commission said Burma 's contempt-of-court law contains no guidance on how contempt is to be assessed and heard fairly . DT NNP NNP NNP NNP VBD NNP POS NN NN VBZ DT NN IN WRB NN VBZ TO VB VBN CC VBN RB . Iraqi negotiators are struggling to reach an agreement on a new constitution before a Monday deadline , as hundreds marched to press their demands for a new government . JJ NNS VBP VBG TO VB DT NN IN DT JJ NN IN DT NNP NN , IN NNS VBD TO VB PRP$ NNS IN DT JJ NN . Officials said Saturday they were nearing agreement on a Shi'ite demand to enshrine Islam as the only source of legislation . NNS VBD NNP PRP VBD VBG NN IN DT JJ NN TO VB NNP IN DT JJ NN IN NN . Kurdish officials said they still oppose the move . NNP NNS VBD PRP RB VBP DT NN . But negotiators say the United States may be prepared to drop its objections to having Islam as the sole basis of a new Iraqi government . CC NNS VBP DT NNP NNPS MD VB VBN TO VB PRP$ NNS TO VBG NNP IN DT JJ NN IN DT JJ JJ NN . Saturday 's talks also focused on granting self-determination to Iraqi Kurds . NNP POS NNS RB VBD IN VBG NN TO JJ NNPS . Meanwhile , hundreds of Sunni Arabs in Ramadi and Kirkuk marched against the possibility of a federal Iraq , saying they want a strong central government . RB , NNS IN NNP NNS IN NNP CC NNP VBD IN DT NN IN DT JJ NNP , VBG PRP VBP DT JJ JJ NN . If completed by Monday , the new constitution will be voted on in an October referendum . IN VBN IN NNP , DT JJ NN MD VB VBN IN IN DT NNP NN . A U.S. bankruptcy court is considering whether it has jurisdiction in a case filed by the embattled Russian oil giant Yukos . DT NNP NN NN VBZ VBG IN PRP VBZ NN IN DT NN VBN IN DT VBN JJ NN NN NNP . Yukos filed the case with the court in Houston , Texas last year to stop a Russian court-ordered auction of its key production unit , Yuganskneftgaz . NNP VBD DT NN IN DT NN IN NNP , NNP JJ NN TO VB DT JJ JJ NN IN PRP$ JJ NN NN , NNP . The U.S. court issued an injunction against the sale , but it went on anyway . DT NNP NN VBD DT NN IN DT NN , CC PRP VBD IN RB . Yukos assets in the United States are bank accounts and a home owned by the company 's financial chief . NNP NNS IN DT NNP NNPS VBP NN NNS CC DT NN VBN IN DT NN POS JJ NN . Yukos is now suing Russian energy firms including the natural gas giant Gazprom and the state-owned Rosneft for $ 20 billion in damages . NNP VBZ RB VBG JJ NN NNS VBG DT JJ NN NN NNP CC DT JJ NNP IN $ CD CD IN NNS . A planned merger between Gazprom and Rosneft has been put on hold to wait for the decision from the U.S. court . DT JJ NN IN NNP CC NNP VBZ VBN VBN IN NN TO VB IN DT NN IN DT NNP NN . Critics call the Russian government probe of Yukos politically motivated because former Yukos chief Mikhail Khodorkovsky had supported the opposition . NNS VBP DT JJ NN NN IN NNP RB JJ IN JJ NNP NN NNP NNP VBD VBN DT NN . The Kremlin says Yukos owes billions in back taxes . DT NNP VBZ NNP VBZ NNS IN JJ NNS . ROGERS COMMUNICATIONS Inc. said it plans to raise 175 million to 180 million Canadian dollars ( US $ 148.9 million to $ 153.3 million ) through a private placement of perpetual preferred shares . NNP NNPS NNP VBD PRP VBZ TO VB CD CD TO CD CD JJ NNS LRB NNP $ CD CD TO $ CD CD RRB IN DT JJ NN IN JJ JJ NNS . Perpetual preferred shares are n't retractable by the holders , the company said . JJ JJ NNS VBP RB JJ IN DT NNS , DT NN VBD . Rogers said the shares will be convertible into Class B shares , but that the company has the option to redeem the shares before a conversion takes place . NNP VBD DT NNS MD VB JJ IN NN NNP NNS , CC IN DT NN VBZ DT NN TO VB DT NNS IN DT NN VBZ NN . A spokesman for the Toronto cable television and telecommunications concern said the coupon rate has n't yet been fixed , but will probably be set at around 8 % . DT NN IN DT NNP NN NN CC NNS NN VBD DT NN NN VBZ RB RB VBN VBN , CC MD RB VB VBN IN IN CD NN . He declined to discuss other terms of the issue . PRP VBD TO VB JJ NNS IN DT NN . Despite its small size and limited natural resources , Liechtenstein has developed into a prosperous , highly industrialized , free-enterprise economy with a vital financial service sector and likely the second highest per capita income in the world . IN PRP$ JJ NN CC JJ JJ NNS , NNP VBZ VBN IN DT JJ , RB VBN , JJ NN IN DT JJ JJ NN NN CC JJ DT JJ JJS IN NN NN IN DT NN . The Liechtenstein economy is widely diversified with a large number of small businesses . DT NNP NN VBZ RB VBN IN DT JJ NN IN JJ NNS . Low business taxes - the maximum tax rate is 20 % - and easy incorporation rules have induced many holding companies to establish nominal offices in Liechtenstein providing 30 % of state revenues . NNP NN NNS IN DT JJ NN NN VBZ CD NN : CC JJ NN NNS VBP VBN JJ VBG NNS TO VB JJ NNS IN NNP VBG CD NN IN NN NNS . The country participates in a customs union with Switzerland and uses the Swiss franc as its national currency . DT NN VBZ IN DT NNS NN IN NNP CC VBZ DT JJ NN IN PRP$ JJ NN . It imports more than 90 % of its energy requirements . PRP VBZ JJR IN CD NN IN PRP$ NN NNS . Liechtenstein has been a member of the European Economic Area ( an organization serving as a bridge between the European Free Trade Association ( EFTA ) and the EU ) since May 1995 . NNP VBZ VBN DT NN IN DT JJ NNP NNP LRB DT NN VBG IN DT NN IN DT JJ NNP NNP NNP LRB NNP RRB CC DT NNP RRB IN NNP CD . The government is working to harmonize its economic policies with those of an integrated Europe . DT NN VBZ VBG TO VB PRP$ JJ NNS IN DT IN DT VBN NNP . In 2008 , Liechtenstein came under renewed international pressure - particularly from Germany - to improve transparency in its banking and tax systems . IN CD , NNP VBD IN JJ JJ NN : RB IN NNP : TO VB NN IN PRP$ NN CC NN NNS . In December 2008 , Liechtenstein signed a Tax Information Exchange Agreement with the US . IN NNP CD , NNP VBD DT NNP NNP NNP NN IN DT NNP . Upon Liechtenstein 's conclusion of 12 bilateral information-sharing agreements , the OECD in October 2009 removed the principality from its ' grey list ' of countries that had yet to implement the organization 's Model Tax Convention . IN NNP POS NN IN CD JJ NN NNS , DT NNP IN NNP CD VBD DT NN IN PRP$ `` NN NN `` IN NNS WDT VBD RB TO VB DT NN POS NNP NNP NNP . By the end of 2010 , Liechtenstein had signed 25 Tax Information Exchange Agreements or Double Tax Agreements . IN DT NN IN CD , NNP VBD VBN CD NNP NNP NNP NNPS CC NNP NNP NNPS . Uruguay 's economy is characterized by an export-oriented agricultural sector , a well-educated work force , and high levels of social spending . NNP POS NN VBZ VBN IN DT JJ JJ NN , DT JJ NN NN , CC JJ NNS IN JJ NN . Following financial difficulties in the late 1990s and early 2000s , economic growth for Uruguay averaged 8 % annually during the period 2004 - 8 . VBG JJ NNS IN DT JJ NNS CC RB NNS , JJ NN IN NNP VBD CD NN RB IN DT NN CD : CD . The 2008 - 9 global financial crisis put a brake on Uruguay 's vigorous growth , which decelerated to 2.9 % in 2009 . DT CD : CD JJ JJ NN VBD DT NN IN NNP POS JJ NN , WDT VBD TO CD NN IN CD . Nevertheless , the country managed to avoid a recession and keep positive growth rates , mainly through higher public expenditure and investment , and GDP growth exceeded 8 % in 2010 . RB , DT NN VBD TO VB DT NN CC VB JJ NN NNS , RB IN JJR JJ NN CC NN , CC NN NN VBD CD NN IN CD . Since 1997 , Sudan has been working with the IMF to implement macroeconomic reforms including a managed float of the exchange rate and a large reserve of foreign exchange . IN CD , NNP VBZ VBN VBG IN DT NNP TO VB JJ NNS VBG DT VBN NN IN DT NN NN CC DT JJ NN IN JJ NN . A new currency , the Sudanese Pound , was introduced in January 2007 at an initial exchange rate of $ 1 equals 2 Sudanese Pounds . DT JJ NN , DT JJ NNP , VBD VBN IN NNP CD IN DT JJ NN NN IN $ CD VBZ CD JJ NNS . Sudan began exporting crude oil in the last quarter of 1999 and the economy boomed on the back of increases in oil production , high oil prices , and significant inflows of foreign direct investment until the second half of 2008 . NNP VBD VBG JJ NN IN DT JJ NN IN CD CC DT NN VBN IN DT NN IN NNS IN NN NN , JJ NN NNS , CC JJ NNS IN JJ JJ NN IN DT JJ NN IN CD . The Darfur conflict , the aftermath of two decades of civil war in the south , the lack of basic infrastructure in large areas , and a reliance by much of the population on subsistence agriculture ensure much of the population will remain at or below the poverty line for years to come despite rapid rises in average per capita income . DT NNP NN , DT NN IN CD NNS IN JJ NN IN DT NN , DT NN IN JJ NN IN JJ NNS , CC DT NN IN NN IN DT NN IN NN NN VB NN IN DT NN MD VB IN CC IN DT NN NN IN NNS TO VB IN JJ NNS IN JJ IN NN NN . Sudan 's real GDP expanded by 5.2 % during 2010 , an improvement over 2009 's 4.2 % growth but significantly below the more than 10 % per year growth experienced prior to the global financial crisis in 2006 and 2007 . NNP POS JJ NN VBN IN CD NN IN CD , DT NN IN CD POS CD NN NN CC RB IN DT JJR IN CD NN IN NN NN VBN RB TO DT JJ JJ NN IN CD CC CD . While the oil sector continues to drive growth , services and utilities play an increasingly important role in the economy with agriculture production remaining important as it employs 80 % of the work force and contributes a third of GDP . IN DT NN NN VBZ TO VB NN , NNS CC NNS VBP DT RB JJ NN IN DT NN IN NN NN VBG JJ IN PRP VBZ CD NN IN DT NN NN CC VBZ DT NN IN NN . In the lead up to the referendum on southern secession , which took place in January 2011 , Sudan saw its currency depreciate considerably on the black market with the Central Bank 's official rate also losing value as the Sudanese people started to hoard foreign currency . IN DT NN RB TO DT NN IN JJ NN , WDT VBD NN IN NNP CD , NNP VBD PRP$ NN VB RB IN DT JJ NN IN DT NNP NNP POS JJ NN RB VBG NN IN DT JJ NNS VBD TO VB JJ NN . The Central Bank of Sudan intervened heavily in the currency market to defend the value of the pound and the Sudanese government introduced a number of measures to restrain excess local demand for hard currency , but uncertainty about the secession has meant that foreign exchange remains in heavy demand . DT NNP NNP IN NNP VBD RB IN DT NN NN TO VB DT NN IN DT NN CC DT JJ NN VBD DT NN IN NNS TO VB JJ JJ NN IN JJ NN , CC NN IN DT NN VBZ VBN IN JJ NN VBZ IN JJ NN . The Swiss Confederation was founded in 1291 as a defensive alliance among three cantons . DT JJ NN VBD VBN IN CD IN DT JJ NN IN CD NNS . In succeeding years , other localities joined the original three . IN VBG NNS , JJ NNS VBD DT JJ CD . The Swiss Confederation secured its independence from the Holy Roman Empire in 1499 . DT JJ NN VBD PRP$ NN IN DT NNP NNP NNP IN CD . A constitution of 1848 , subsequently modified in 1874 , replaced the confederation with a centralized federal government . DT NN IN CD , RB VBN IN CD , VBD DT NN IN DT JJ JJ NN . Switzerland 's sovereignty and neutrality have long been honored by the major European powers , and the country was not involved in either of the two world wars . NNP POS NN CC NN VBP RB VBN VBN IN DT JJ JJ NNS , CC DT NN VBD RB VBN IN DT IN DT CD NN NNS . The political and economic integration of Europe over the past half century , as well as Switzerland 's role in many UN and international organizations , has strengthened Switzerland 's ties with its neighbors . DT JJ CC JJ NN IN NNP IN DT JJ JJ NN , RB RB IN NNP POS NN IN JJ NNP CC JJ NNS , VBZ VBN NNP POS NNS IN PRP$ NNS . However , the country did not officially become a UN member until 2002 . RB , DT NN VBD RB RB VB DT NNP NN IN CD . Switzerland remains active in many UN and international organizations but retains a strong commitment to neutrality . NNP VBZ JJ IN JJ NNP CC JJ NNS CC VBZ DT JJ NN TO NN . A CROW was jealous of the Raven , because he was considered a bird of good omen and always attracted the attention of men , who noted by his flight the good or evil course of future events . DT NN VBD JJ IN DT NN , IN PRP VBD VBN DT NN IN JJ NNS CC RB VBD DT NN IN NNS , WP VBD IN PRP$ NN DT JJ CC JJ NN IN JJ NNS . Seeing some travelers approaching , the Crow flew up into a tree , and perching herself on one of the branches , cawed as loudly as she could . VBG DT NNS VBG , DT NN VBD RP IN DT NN , CC VBG PRP IN CD IN DT NNS , VBD RB RB IN PRP MD . The travelers turned towards the sound and wondered what it foreboded , when one of them said to his companion , ' Let us proceed on our journey , my friend , for it is only the caw of a crow , and her cry , you know , is no omen . ' DT NNS VBD IN DT NN CC VBD WP PRP VBD , WRB CD IN PRP VBD TO PRP$ NN , `` VB PRP VB IN PRP$ NN , PRP$ NN , IN PRP VBZ RB DT NN IN DT NN , CC PRP$ NN , PRP VBP , VBZ DT NN . `` Those who assume a character which does not belong to them , only make themselves ridiculous . DT WP VBP DT NN WDT VBZ RB VB TO PRP , RB VBP PRP JJ . A RICH MAN lived near a Tanner , and not being able to bear the unpleasant smell of the tan-yard , he pressed his neighbor to go away . DT NNP NNP VBD IN DT NN , CC RB VBG JJ TO VB DT JJ NN IN DT NN , PRP VBD PRP$ NN TO VB RB . The Tanner put off his departure from time to time , saying that he would leave soon . DT NNP VBD RP PRP$ NN IN NN TO NN , VBG IN PRP MD VB RB . But as he still continued to stay , as time went on , the rich man became accustomed to the smell , and feeling no manner of inconvenience , made no further complaints . CC IN PRP RB VBD TO VB , IN NN VBD IN , DT JJ NN VBD JJ TO DT NN , CC VBG DT NN IN NN , VBD DT JJ NNS . A FARMER who had a deadly and implacable hatred against a certain Fox , caught him and tied some tow to his tail ; then carrying him to the centre of his own grain-field , set the tow on fire and let the animal go . DT NN WP VBD DT JJ CC JJ NN IN DT JJ NN , VBD PRP CC VBN DT NN TO PRP$ NN ; RB VBG PRP TO DT NN IN PRP$ JJ NN , VBD DT NN IN NN CC VB DT NN NN . ' Alas ! ' said the Farmer , seeing the result ; ' if that grain had not been heavily insured , I might have had to dissemble my hatred of the Fox . ' `` UH . `` VBD DT NN , VBG DT NN ; `` IN DT NN VBD RB VBN RB VBN , PRP MD VB VBN TO VB PRP$ NN IN DT NN . `` SOME BOYS , playing near a pond , saw a number of Frogs in the water and began to pelt them with stones . DT NNS , VBG IN DT NN , VBD DT NN IN NNS IN DT NN CC VBD TO VB PRP IN NNS . They killed several of them , when one of the Frogs , lifting his head out of the water , cried out : ' Pray stop , my boys : what is sport to you , is death to us . ' PRP VBD NN IN PRP , WRB CD IN DT NNS , VBG PRP$ NN IN IN DT NN , VBN RP IN `` NNP NN , PRP$ NNS IN WP VBZ NN TO PRP , VBZ NN TO PRP . `` - ' One man 's pleasure may be another 's pain . ' - : `` CD NN POS NN MD VB DT POS NN . `` : Softball is better than baseball because the Seventh Inning Stretch means stand up and go home . NN VBZ JJR IN NN IN DT NNP NNP NNP VBZ VB RP CC VB NN . Math is like love ; a simple idea , but it can get complicated . NN VBZ IN NN ; DT JJ NN , CC PRP MD VB JJ . I 'm not saying that the customer service in my bank is bad , but when I went in the other day and asked the clerk to check my balance ... she leaned over and pushed me . PRP VBP RB VBG IN DT NN NN IN PRP$ NN VBZ JJ , CC WRB PRP VBD IN DT JJ NN CC VBD DT NN TO VB PRP$ NN : PRP VBD IN CC VBD PRP . A priest who was walking through a small town saw a blackboard outside the front door of a school . DT NN WP VBD VBG IN DT JJ NN VBD DT NN IN DT JJ NN IN DT NN . It had been washed and put out to dry in the open air . PRP VBD VBN VBN CC VBN RP TO VB IN DT JJ NN . There was a piece of chalk at the foot of the blackboard . EX VBD DT NN IN NN IN DT NN IN DT NN . The priest took the chalk and wrote in large letters , ' I 'm a priest and I pray for you all . ' DT NN VBD DT NN CC VBD IN JJ NNS , `` PRP VBP DT NN CC PRP VBP IN PRP DT . `` A lawyer happened to pass next and when he saw what the priest had written , he added under it , ' I 'm a lawyer and I defend you all . ' DT NN VBD TO VB JJ CC WRB PRP VBD WP DT NN VBD VBN , PRP VBD IN PRP , `` PRP VBP DT NN CC PRP VBP PRP DT . `` Then , a doctor came by , took the piece of chalk , and wrote on the blackboard , ' I 'm a doctor and I cure you all . ' RB , DT NN VBD IN , VBD DT NN IN NN , CC VBD IN DT NN , `` PRP VBP DT NN CC PRP VB PRP DT . `` Finally , an ordinary citizen stopped , looked at what the others had written , thought for a few seconds and then added , ' I am an ordinary citizen and I pay for you all . ' RB , DT JJ NN VBD , VBD IN WP DT NNS VBD VBN , VBD IN DT JJ NNS CC RB VBD , `` PRP VBP DT JJ NN CC PRP VBP IN PRP DT . `` A strain of the bird flu virus that can spread to humans has been found among poultry in northern Nigeria . DT NN IN DT NN NN NN WDT MD VB TO NNS VBZ VBN VBN IN NN IN JJ NNP . The Paris-based World Organization for Animal Health says it found a ' highly pathogenic ' version of the H5N1 strain at a chicken farm in the village of Jaji in Kaduna state . DT JJ NNP NNP IN NNP NNP VBZ PRP VBD DT `` RB JJ `` NN IN DT NNP NN IN DT NN NN IN DT NN IN NNP IN NNP NN . This is the first reported case of H5N1 in Africa . DT VBZ DT JJ JJ NN IN NNP IN NNP . The organization says Nigerian authorities have disinfected the premises , and imposed a quarantine and restrictions on the movement of animals . DT NN VBZ JJ NNS VBP VBN DT NNS , CC VBD DT NN CC NNS IN DT NN IN NNS . It says it plans to coordinate a joint response to the situation with the U.N. 's Food and Agriculture Organization . PRP VBZ PRP VBZ TO VB DT JJ NN TO DT NN IN DT NNP POS NNP CC NNP NNP . Avian flu has killed or forced the slaughter of millions of birds over the last two years . JJ NN VBZ VBN CC VBN DT NN IN NNS IN NNS IN DT JJ CD NNS . The H5N1 strain has killed at least 88 people in seven countries , mostly in Asia , since late 2003 . DT NNP NN VBZ VBN IN JJS CD NNS IN CD NNS , RB IN NNP , IN JJ CD . The European Parliament has endorsed next week 's planned start of European Union membership talks with Turkey . DT NNP NNP VBZ VBN JJ NN POS JJ NN IN NNP NNP NN NNS IN NNP . However , lawmakers on Wednesday also postponed ratifying Turkey 's customs accord with the European Union because of Turkey 's continued refusal to recognize Cyprus , which gained EU membership last year . RB , NNS IN NNP RB VBD VBG NNP POS NNS NN IN DT NNP NNP IN IN NNP POS JJ NN TO VB NNP , WDT VBD NNP NN JJ NN . Also , the European Parliament passed a non-binding resolution calling on Turkey to recognize the massacre of hundreds of thousands of Armenians under the Ottoman Empire as a genocide . RB , DT NNP NNP VBD DT JJ NN VBG IN NNP TO VB DT NN IN NNS IN NNS IN NNS IN DT NNP NNP IN DT NN . Armenia says 1.5 million Armenians were slaughtered by the Turks 90 years ago during the final years of the Ottoman Empire . NNP VBZ CD CD NNS VBD VBN IN DT NNS CD NNS RB IN DT JJ NNS IN DT NNP NNP . Turkey says 3,00,000 Armenians and thousands of Turks were killed during an Armenian uprising . NNP VBZ CD NNS CC NNS IN NNS VBD VBN IN DT JJ NN . Police in Afghanistan say suspected Taleban militants have kidnapped four Afghan aid workers in the eastern part of the country . NNS IN NNP VBP VBN NNP NNS VBP VBN CD JJ NN NNS IN DT JJ NN IN DT NN . A provincial police chief General Abdul Hanan Raufi said Monday the four aid workers , employed by the International Organization for Migration , were abducted Sunday in eastern Paktia province . DT JJ NN NN NNP NNP NNP NNP VBD NNP DT CD NN NNS , VBN IN DT NNP NNP IN NNP , VBD VBN NNP IN JJ NNP NN . He said elders in the area are involved in negotiating for their release . PRP VBD NNS IN DT NN VBP VBN IN VBG IN PRP$ NN . Farther east , the U.-S.-led coalition force says troops captured a known al-Qaida terrorist and five other extremists Monday during an operation near the city of Khost . NNP RB , DT JJ NN NN VBZ NNS VBD DT VBN NNP JJ CC CD JJ NNS NNP IN DT NN IN DT NN IN NNP . A military statement did not identify the captured men , but said the troops found grenades , military equipment , armor-piercing rounds and assault rifles during a search of the compound where the men were caught . DT JJ NN VBD RB VB DT VBN NNS , CC VBD DT NNS VBD NNS , JJ NN , JJ NNS CC NN NNS IN DT NN IN DT NN WRB DT NNS VBD VBN . Russia 's foreign minister says Moscow will let NATO take armored vehicles through its territory to Afghanistan under an expanded transit deal . NNP POS JJ NN VBZ NNP MD VB NNP VB JJ NNS IN PRP$ NN TO NNP IN DT VBN NN NN . Foreign Minister Sergei Lavrov told a news conference in Moscow Thursday that the opening of the Russian route applies to vehicles with anti-mine protection . NNP NNP NNP NNP VBD DT NN NN IN NNP NNP IN DT NN IN DT JJ NN VBZ TO NNS IN JJ NN . NATO chief Anders Fogh Rasmussen announced last week at a NATO-Russia Council meeting that Russia had agreed to increase its cooperation on the war in Afghanistan , allowing more equipment to be moved through the country to support NATO troops . NNP NN NNP NNP NNP VBD JJ NN IN DT NNP NNP NN IN NNP VBD VBN TO VB PRP$ NN IN DT NN IN NNP , VBG JJR NN TO VB VBN IN DT NN TO VB NNP NNS . Russian President Dmitry Medvedev led the NATO-Russia Council talks in Lisbon . JJ NNP NNP NNP VBD DT NNP NNP NNS IN NNP . It was the first gathering of the 29-member group since April 2008 , just before Moscow 's brief war with Georgia , a Western ally . PRP VBD DT JJ NN IN DT JJ NN IN NNP CD , RB IN NNP POS JJ NN IN NNP , DT JJ NN . Tropical Storm Ophelia has headed northward , as residents of coastal North and South Carolina assess damage from the slow-moving storm . JJ NN NNP VBZ VBN RB , IN NNS IN JJ NNP CC NNP NNP VBP NN IN DT JJ NN . Thousands of homes and businesses remained without power Friday , despite the fact that the nation 's first hurricane since Katrina never officially made landfall . NNS IN NNS CC NNS VBD IN NN NNP , IN DT NN IN DT NN POS JJ NN IN NNP RB RB VBN NN . Experts say the Category 1 hurricane caused power outages , flooded streets , and significant damage to buildings because it moved slowly , battering the same area for two days and dumping dozens of centimeters of rain . NNS VBP DT NNP CD NN VBD NN NNS , VBN NNS , CC JJ NN TO NNS IN PRP VBD RB , VBG DT JJ NN IN CD NNS CC VBG NNS IN NNS IN NN . As Ophelia continues to weaken and move northward , tropical storm watches are in effect for parts of the northeastern U.S. state of Massachusetts and the Canadian province of Nova Scotia . IN NNP VBZ TO VB CC VB RB , JJ NN NNS VBP IN NN IN NNS IN DT JJ NNP NN IN NNP CC DT JJ NN IN NNP NNP . A remote-controlled bomb ripped through the vehicle of an influential pro-government figure in southern Afghanistan Friday , wounding several people and killing at least two others . DT JJ NN VBD IN DT NN IN DT JJ NN NN IN JJ NNP NNP , VBG JJ NNS CC VBG IN JJS CD NNS . Tribal elder Mullah Naqib , as well as some of his family members and guards , were wounded in the blast as their vehicle crossed a bridge in Kandahar province . NNP NN NNP NNP , RB RB IN DT IN PRP$ NN NNS CC NNS , VBD VBN IN DT NN IN PRP$ NN VBD DT NN IN NNP NN . Naqib also was a commander during the resistance to the Soviet occupation in the 1980s . NNP RB VBD DT NN IN DT NN TO DT JJ NN IN DT NNS . Witnesses say two bystanders also were killed . NNS VBP CD NNS RB VBD VBN . In separate news , authorities in northern Afghanistan say police Friday detained eight suspects in connection with Thursday 's killing of a German aid worker . IN JJ NN , NNS IN JJ NNP VBP NNS NNP VBD CD NNS IN NN IN NNP POS NN IN DT JJ NN NN . It is not clear if the suspects were militants or bandits . PRP VBZ RB JJ IN DT NNS VBD NNS CC NNS . The foreign aid worker was killed when gunmen attacked his vehicle in Sari Pul province . DT JJ NN NN VBD VBN WRB NNS VBD PRP$ NN IN NNP NNP NN . The assailants robbed three Afghan nationals traveling with him . DT NNS VBN CD JJ NNS VBG IN PRP . A study indicates that the average level of nicotine in cigarettes has risen 10 percent in the past six years , making it harder for smokers to quit . DT NN VBZ IN DT JJ NN IN NN IN NNS VBZ VBN CD NN IN DT JJ CD NNS , VBG PRP JJR IN NNS TO VB . The health department for the state of Massachusetts released a study this week . DT NN NN IN DT NN IN NNP VBD DT NN DT NN . It shows how much nicotine content has changed and how much nicotine smokers inhale when they smoke . PRP VBZ WRB JJ NN NN VBZ VBN CC WRB JJ NN NNS VBP WRB PRP VBP . The study said cigarettes in 2004 yielded the smoker nearly 10 percent more nicotine per cigarette than in 1998 . DT NN VBD NNS IN CD VBD DT NN RB CD NN JJR NN IN NN IN IN CD . The increase in nicotine levels varied by brand , with some increasing as much as 30 percent . DT NN IN JJ NNS VBN IN NN , IN DT VBG RB JJ IN CD NN . Fifty two out of 116 brands studied had nicotine increases of more than 10 percent . CD CD IN IN CD NNS VBN VBD JJ NNS IN JJR IN CD NN . Health experts say higher nicotine content makes cigarettes more addictive and smoking harder to quit . NN NNS VBP JJR JJ NN VBZ NNS RBR JJ CC NN JJR TO VB . U.S. tobacco companies have not commented on the study . NNP NN NNS VBP RB VBN IN DT NN . Turkey has sent more troops and tanks to the Iraqi border , as speculation grows about a possible Turkish incursion against Kurdish rebels in northern Iraq . NNP VBZ VBN JJR NNS CC NNS TO DT JJ NN , IN NN VBZ IN DT JJ JJ NN IN JJ NNS IN JJ NNP . Turkish Prime Minister Recep Tayyip Erdogan says his patience has run out for the United States and Iraq to take action against the Kurdish rebels . JJ NNP NNP NNP NNP NNP VBZ PRP$ NN VBZ VBN RP IN DT NNP NNPS CC NNP TO VB NN IN DT JJ NNS . But U.S. officials have expressed concerns that a cross-border operation could destabilize northern Iraq . CC NNP NNS VBP VBN NNS IN DT JJ NN MD VB JJ NNP . Meanwhile , Turkish security forces continue large-scale operations against the Kurdistan Worker 's Party , or PKK , rebels in southeast Turkey . RB , JJ NN NNS VBP JJ NNS IN DT NNP NNP POS NNP , CC NNP , NNS IN JJ NNP . A Turkish soldier in the region was killed Wednesday by a landmine blast . DT JJ NN IN DT NN VBD VBN NNP IN DT NN NN . Pressure for action against the PKK is mounting as Turkey prepares for national elections on July 22 , and after two bombings last week . NN IN NN IN DT NNP VBZ VBG IN NNP VBZ IN JJ NNS IN NNP CD , CC IN CD NNS JJ NN . The PKK has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 . DT NNP VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD . The United States , the European Union and Turkey classify the PKK as a terrorist group . DT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN . A South Korean official who visited Washington last week says talks to discuss North Korea 's nuclear program could resume as early as this month . DT JJ JJ NN WP VBD NNP JJ NN VBZ NNS TO VB NNP NNP POS JJ NN MD VB RB JJ IN DT NN . In a radio interview Monday , Kim Sook , director-general for North American affairs at the South Korean Foreign Ministry , said he is cautiously optimistic about the resumption of six-party talks in July . IN DT NN NN NNP , NNP NNP , NN IN JJ JJ NNS IN DT NNP JJ NNP NNP , VBD PRP VBZ RB JJ IN DT NN IN JJ NNS IN NNP . He added that North Korea has not set a firm date for their return to the negotiating table . PRP VBD IN NNP NNP VBZ RB VBN DT NN NN IN PRP$ NN TO DT NN NN . Mr. Kim joined South Korea 's Unification Minister , Chung Dong-young , in Washington last week for talks with U.S. officials concerning Pyongyang . NNP NNP VBD NNP NNP POS NNP NNP , NNP NNP , IN NNP JJ NN IN NNS IN NNP NNS VBG NNP . Reuters quotes Japan 's foreign minister today saying Tokyo 's patience on North Korea 's decision is running out . NNP VBZ NNP POS JJ NN NN VBG NNP POS NN IN NNP NNP POS NN VBZ VBG RP . Nobutaka Machimura told the news agency that Japan is neither optimistic nor pessimistic about the talks resuming anytime soon . NNP NNP VBD DT NN NN IN NNP VBZ RB JJ CC JJ IN DT NNS VBG RB RB . Former Sudanese President Jaafar Nimeiri - who imposed strict lslamic law on Sudan - has died . JJ JJ NNP NNP NNP : WP VBD JJ JJ NN IN NNP : VBZ VBN . A statement from Sudan 's presidential office says the 79-year-old former leader died from an unspecified illness . DT NN IN NNP POS JJ NN VBZ DT JJ JJ NN VBD IN DT JJ NN . It says he will be buried on Sunday in Omdurman near the capital , Khartoum . PRP VBZ PRP MD VB VBN IN NNP IN NNP IN DT NN , NNP . Mr. Nimeiri came to power in a coup in 1969 and served for 16 years until he too was ousted by a coup in 1985 while visiting the United States . NNP NNP VBD TO NN IN DT NN IN CD CC VBD IN CD NNS IN PRP RB VBD VBN IN DT NN IN CD IN VBG DT NNP NNPS . President Nimeiri imposed Islamic Sharia on Sudan in 1983 , a move that alienated the largely non-Muslim south , and is widely viewed as the catalyst for the nation 's 22-year civil war . NNP NNP VBD NNP NNP IN NNP IN CD , DT NN WDT VBD DT RB JJ NN , CC VBZ RB VBN IN DT NN IN DT NN POS JJ JJ NN . Following his ouster , Mr. Nimeiri lived in exile in Egypt . VBG PRP$ NN , NNP NNP VBD IN NN IN NNP . He returned to Sudan in 1999 . PRP VBD TO NNP IN CD . The Nigerian military has fired on several barges it says were being used by oil smugglers in the Niger Delta region . DT JJ NN VBZ VBN IN JJ NNS PRP VBZ VBD VBG VBN IN NN NNS IN DT NNP NNP NN . A helicopter gunship carried out the attack Wednesday in Delta state , near the city of Warri . DT NN NN VBD IN DT NN NNP IN NNP NN , IN DT NN IN NNP . It was the first known assault by Nigeria 's military in the Delta since local militants carried out a series of attacks against the oil industry , including the kidnapping of four foreign oil workers last month . PRP VBD DT JJ VBN NN IN NNP POS NN IN DT NNP IN JJ NNS VBD RP DT NN IN NNS IN DT NN NN , VBG DT NN IN CD JJ NN NNS JJ NN . A local group known as the Movement for the Emancipation of the Niger Delta condemned the helicopter strike , saying it targeted ethnic Ijaw communities . DT JJ NN VBN IN DT NN IN DT NN IN DT NNP NNP VBD DT NN NN , VBG PRP VBD JJ NNP NNS . The group alleges the helicopter took off from an civilian airstrip operated by Royal Dutch Shell . DT NN VBZ DT NN VBD RP IN DT JJ NN VBN IN NNP NNP NNP . It threatened to shoot down aircraft using the strip if Nigeria 's military uses it again . PRP VBD TO VB RP NN VBG DT NN IN NNP POS JJ NNS PRP RB . The militants want greater local control over southern Nigeria 's oil wealth . DT NNS VBP JJR JJ NN IN JJ NNP POS NN NN . The United States says it has temporarily suspended the resettlement of at least 6,000 Hmong refugees from Thailand , after at least a score of refugees already in the U.S. were diagnosed with tuberculosis . DT NNP NNPS VBZ PRP VBZ RB VBN DT NN IN IN JJS CD JJ NNS IN NNP , IN IN JJS DT NN IN NNS RB IN DT NNP VBD VBN IN NN . At least 20 refugees infected with the disease are in the western U.S. state of California . IN JJS CD NNS VBN IN DT NN VBP IN DT JJ NNP NN IN NNP . Health officials say 11 of the patients are children . NNP NNS VBP CD IN DT NNS VBP NNS . A handful of other cases were located in the midwestern states of Minnesota and Wisconsin . DT NN IN JJ NNS VBD VBN IN DT JJ NNS IN NNP CC NNP . The U.S. has resettled at least 9,000 Hmong refugees living in the Wat Tham Krabok camp since June of last year . DT NNP VBZ VBN IN JJS CD NNP NNS VBG IN DT NNP NNP NNP NN IN NNP IN JJ NN . Officials say they will begin enhanced medical treatment and screenings at the camp . NNS VBP PRP MD VB JJ JJ NN CC NNS IN DT NN . The suspension is expected to last for up to six months . DT NN VBZ VBN TO VB IN RP TO CD NNS . Zimbabwe 's ruling party has elected its first woman vice president . NNP POS NN NN VBZ VBN PRP$ JJ NN NN NN . At the conclusion of the ZANU-PF party congress Saturday , delegates approved the nomination 49-year old Joyce Mujuru , Zimbabwe 's minister of water and infrastructure . IN DT NN IN DT NNP NN NN NNP , NNS VBD DT NN JJ JJ NNP NNP , NNP POS NN IN NN CC NN . She will share the post with Joseph Msika - filling a vacancy left by Simon Muzenda , who died last year . PRP MD VB DT NN IN NNP NNP IN VBG DT NN VBN IN NNP NNP , WP VBD JJ NN . Ms. Mujuru was President Robert Mugabe 's hand-chosen candidate . NNP NNP VBD NNP NNP NNP POS JJ NN . Earlier this week , Mr. Mugabe suspended seven top party officials and reprimanded another for allegedly plotting against Ms. Mujuru 's election , in favor of another candidate , parliamentary speaker Emmerson Mnangawa . RBR DT NN , NNP NNP VBD CD JJ NN NNS CC VBD DT IN RB VBG IN NNP NNP POS NN , IN NN IN DT NN , JJ NN NNP NNP . Analysts said whoever won the vice presidency would be in a good position to possibly succeed Mr. Mugabe , now 80 years old , when he steps down . NNS VBD WP VBD DT NN NN MD VB IN DT JJ NN TO RB VB NNP NNP , RB CD NNS JJ , WRB PRP VBZ RB . The United Nations has condemned the killing of an Afghan election worker by suspected Taleban rebels , the first killing linked to parliamentary polls scheduled for September . DT NNP NNP VBZ VBN DT NN IN DT JJ NN NN IN JJ NNP NNS , DT JJ NN VBN TO JJ NNS VBN IN NNP . U.N. spokeswoman Ariane Quentier said the world body condemns any type of violence aimed at derailing the democratic process in Afghanistan . NNP NN NNP NNP VBD DT NN NN VBZ DT NN IN NN VBN IN VBG DT JJ NN IN NNP . Officials say suspected Taleban rebels surrounded a village Friday and shot the election worker as he came out of a mosque . NNS VBP VBN NNP NNS VBN DT NN NNP CC VBD DT NN NN IN PRP VBD IN IN DT NN . The victim was part of a project educating villagers on how to cast their votes in Uruzgan province . DT NN VBD NN IN DT NN VBG NNS IN WRB TO VB PRP$ NNS IN NNP NN . The killing has raised fears of further violence ahead of the September 18 parliamentary polls - the country 's next key step toward democracy after 25 years of war . DT NN VBZ VBN NNS IN JJ NN RB IN DT NNP CD JJ NNS IN DT NN POS JJ JJ NN IN NN IN CD NNS IN NN . A new survey shows support for U.S. President Barack Obama has fallen in Europe , though his popularity remains high . DT JJ NN VBZ NN IN NNP NNP NNP NNP VBZ VBN IN NNP , IN PRP$ NN VBZ JJ . Mr. Obama 's approval ratings among Europeans dropped from 83 percent in 2009 to 78 percent in the annual Transatlantic Trends survey released Wednesday . NNP NNP POS NN NNS IN NNS VBD IN CD NN IN CD TO CD NN IN DT JJ NNP NNPS NN VBN NNP . The poll , conducted by the German Marshall Fund of the United States , surveyed 1,000 people each in the United States , Turkey and 11 European Union nations . DT NN , VBN IN DT JJ NNP NNP IN DT NNP NNPS , VBN CD NNS DT IN DT NNP NNPS , NNP CC CD NNP NNP NNS . While Mr. Obama enjoys overall support in Europe , fewer than half of those polled approved of his handling of Iran and Afghanistan . IN NNP NNP VBZ JJ NN IN NNP , JJR IN NN IN DT VBN VBN IN PRP$ NN IN NNP CC NNP . A majority of Europeans said membership in the EU was good for their economy , even if the euro currency was not . DT NN IN NNS VBD NN IN DT NNP VBD JJ IN PRP$ NN , RB IN DT NN NN VBD RB . U.S. military officials say five Americans are being held in Iraq under suspicion of terrorist activity . NNP JJ NNS VBP CD NNS VBP VBG VBN IN NNP IN NN IN JJ NN . Pentagon spokesman Bryan Whitman declined to identify any of the detainees . NNP NN NNP NNP VBD TO VB DT IN DT NNS . But news reports said three of them are Iraqi-Americans , one is an Iranian-American and the fifth suspect is Jordanian-American . CC NN NNS VBD CD IN PRP VBP JJ , CD VBZ DT JJ CC DT JJ NN VBZ JJ . Mr. Whitman said none of them have been charged with a crime and that there is no connection between the suspects . NNP NNP VBD NN IN PRP VBP VBN VBN IN DT NN CC IN EX VBZ DT NN IN DT NNS . The Iranian-American has been identified by his family as Cyrus Kar of Los Angeles . DT JJ VBZ VBN VBN IN PRP$ NN IN NNP NNP IN NNP NNP . His laywers have sued the U.S. government in an effort to secure his release . PRP$ NNS VBP VBN DT NNP NN IN DT NN TO VB PRP$ NN . President Bush says the United States is a prayerful nation , which he says he believes makes the nation strong . NNP NNP VBZ DT NNP NNPS VBZ DT JJ NN , WDT PRP VBZ PRP VBZ VBZ DT NN JJ . He made the remark at a White House event Thursday for the National Day of Prayer , which is observed on the first Thursday of May . PRP VBD DT NN IN DT NNP NNP NN NNP IN DT NNP NNP IN NNP , WDT VBZ VBN IN DT JJ NNP IN NNP . Those in attendance included members of the military , religious leaders , lawmakers , cabinet officials , and Washington Mayor Adrian Fenty . DT IN NN VBD NNS IN DT JJ , JJ NNS , NNS , NN NNS , CC NNP NNP NNP NNP . Mr. Bush says Americans have answered the call for prayer since the founding of the nation more than two centuries ago . NNP NNP VBZ NNS VBP VBN DT NN IN NN IN DT NN IN DT NN JJR IN CD NNS RB . He says the greatest gift someone can give is the gift of prayer , saying it has the power to change lives and the course of history . PRP VBZ DT JJS NN DT MD VB VBZ DT NN IN NN , VBG PRP VBZ DT NN TO VB NNS CC DT NN IN NN . China says at least 18 people have been killed after moderate earthquake hit a mountainous area in southwest China 's Yunnan province . NNP VBZ IN JJS CD NNS VBP VBN VBN IN JJ NN VBD DT JJ NN IN JJ NNP POS NNP NN . The official Xinhua news agency says the 5.1-magnitude earthquake shook Yunnan 's Yanjin county Saturday morning . DT JJ NNP NN NN VBZ DT JJ NN VBD NNP POS NNP NN NNP NN . The epicenter of the quake was about 90 kilometers from Zhaotong city . DT NN IN DT NN VBD IN CD NNS IN NNP NN . Rescue teams have been deployed to the area , where large rocks tumbled down from hills onto residential areas . NN NNS VBP VBN VBN TO DT NN , WRB JJ NNS VBD RB IN NNS IN JJ NNS . At least 56 houses were reported destroyed in the quake . IN JJS CD NNS VBD VBN VBN IN DT NN . At least 60 people were injured . IN JJS CD NNS VBD VBN . They have been taken to hospitals for treatment . PRP VBP VBN VBN TO NNS IN NN . Experts with a local seismological bureau told Xinhua that houses in Yanjin were built mostly near hillsides , making them vulnerable to earthquakes . NNS IN DT JJ JJ NN VBD NNP IN NNS IN NNP VBD VBN RB IN NNS , VBG PRP JJ TO NNS . Yanjin is a county on the Yunnan-Guizhou plateau with a population of 3,50,000 people . NNP VBZ DT NN IN DT NNP NN IN DT NN IN CD NNS . The head of South Korea 's ruling Uri Party has resigned after parliament failed to pass several pieces of reform legislation by the end of 2004 . DT NN IN NNP NNP POS NN NNP NNP VBZ VBN IN NN VBD TO VB JJ NNS IN NN NN IN DT NN IN CD . Uri Party Chairman Lee Bu-young and members of the party 's standing central committee stepped down Monday citing the failure of his attempts to scrap the National Security Law . NNP NNP NNP NNP NNP CC NNS IN DT NN POS NN JJ NN VBD RB NNP VBG DT NN IN PRP$ NNS TO VB DT NNP NNP NNP . The Uri Party vowed to push through a bill repealing the law last year , but the opposition Grand National Party blocked the legislation , saying North Korea still poses a threat to national security . DT NNP NNP VBD TO VB IN DT NN VBG DT NN JJ NN , CC DT NN NNP NNP NNP VBD DT NN , VBG NNP NNP RB VBZ DT NN TO JJ NN . The impasse over the security legislation threatened passage of the country 's budget and a one-year extension of its troop deployment in Iraq . DT NN IN DT NN NN VBD NN IN DT NN POS NN CC DT JJ NN IN PRP$ NN NN IN NNP . The Uri Party leadership plans to hold a meeting this week to pick an interim leader who will serve until a party convention in April . DT NNP NNP NN VBZ TO VB DT NN DT NN TO VB DT JJ NN WP MD VB IN DT NN NN IN NNP . The U.S. State Department 's annual human rights report , released Tuesday , says some African countries are making progress , while others are regressing or lagging behind . DT NNP NNP NNP POS JJ JJ NNS NN , VBN NNP , VBZ DT JJ NNS VBP VBG NN , IN NNS VBP VBG CC VBG RB . The report praises Liberia , noting that President Ellen Johnson Sirleaf has dismissed some corrupt officials , and that her government is investigating war crimes committed during the country 's civil war . DT NN VBZ NNP , VBG IN NNP NNP NNP NNP VBZ VBN DT JJ NNS , CC IN PRP$ NN VBZ VBG NN NNS VBN IN DT NN POS JJ NN . But the U.S. report has harsh words for Zimbabwe , saying the Mugabe government continues ' across-the-board ' human rights violations . CC DT NNP NN VBZ JJ NNS IN NNP , VBG DT NNP NN VBZ `` JJ `` JJ NNS NNS . The report is even harder on Eritrea 's government , which it says continues to be one of the most repressive in sub-Saharan Africa . DT NN VBZ RB RBR IN NNP POS NN , WDT PRP VBZ VBZ TO VB CD IN DT RBS JJ IN JJ NNP . There is especially strong criticism of Sudan . EX VBZ RB JJ NN IN NNP . The report says the Sudanese government and government-backed Janjaweed militia bear responsibility for what the U.S. calls the genocide in Darfur . DT NN VBZ DT JJ NN CC JJ NNP NN VBP NN IN WP DT NNP VBZ DT NN IN NNP . Singapore 's men 's national football team has defeated Indonesia , 03-Jan , in the first leg of the Tiger Cup finals in Jakarta . NNP POS NNS POS JJ NN NN VBZ VBN NNP , CD , IN DT JJ NN IN DT NNP NNP NNS IN NNP . First-half goals from England native Daniel Bennett and Khairul Amri gave Singapore the lead . JJ NNS IN NNP JJ NNP NNP CC NNP NNP VBD NNP DT NN . Nigerian-born Agu Casmir added another goal in the second half . JJ NNP NNP VBD DT NN IN DT JJ NN . Indonesia 's only score came in injury time when substitute Mahyadi Panggabean deflected a free kick into the goal . NNP POS JJ NN VBD IN NN NN WRB NN NNP NNP VBD DT JJ NN IN DT NN . Singapore holds a two-goal lead over Indonesia headed into the second leg match in Singapore January 16 . NNP VBZ DT JJ NN IN NNP VBD IN DT JJ NN NN IN NNP NNP CD . Singapore is trying to win the tournament for the second time in six years . NNP VBZ VBG TO VB DT NN IN DT JJ NN IN CD NNS . Indonesia has lost twice before in the Tiger Cup finals in 2000 and 2002 . NNP VBZ VBN RB RB IN DT NNP NNP NNS IN CD CC CD . Attacks in Pakistan 's southern Shaktoi area have become a source of friction between the U.S. and Pakistan , which sees them as a violation of its sovereignty Pakistani officials say a suspected U.S. drone missile strike has killed at least 20 militants . NNS IN NNP POS JJ NNP NN VBP VBN DT NN IN NN IN DT NNP CC NNP , WDT VBZ PRP IN DT NN IN PRP$ NN JJ NNS VBP DT JJ NNP NN NN NN VBZ VBN IN JJS CD NNS . Authorities say the toll could rise . NNS VBP DT NN MD VB . Sunday 's attack took place in the Shaktoi area of Pakistan 's restive South Waziristan region . NNP POS NN VBD NN IN DT NNP NN IN NNP POS JJ NNP NNP NN . Saturday , Pakistani Taliban militants issued a new audio recording they said proved their leader , Hakimullah Mehsud , survived a suspected U.S. missile strike last week . NNP , JJ NNP NNS VBD DT JJ NN NN PRP VBD VBD PRP$ NN , NNP NNP , VBD DT JJ NNP NN NN JJ NN . Pakistani intelligence sources had said Mehsud was wounded in the missile strike that killed at least 12 suspected militants Thursday . JJ NN NNS VBD VBN NNP VBD VBN IN DT NN NN WDT VBD IN JJS CD JJ NNS NNP . The United States has increased attacks using drones since a suicide bomber killed seven U.S. intelligence agents in eastern Afghanistan in late December . DT NNP NNPS VBZ VBN NNS VBG NNS IN DT NN NN VBD CD NNP NN NNS IN JJ NNP IN JJ NNP . An international journalism advocacy group says the U.S.-based Yahoo Internet company works regularly with Chinese police to supply information on dissidents who use its service . DT JJ NN NN NN VBZ DT JJ NNP NNP NN VBZ RB IN JJ NNS TO VB NN IN NNS WP VBP PRP$ NN . In a statement issued Thursday , the Paris-based organization Reporters Without Borders called on Yahoo to release a list of all the dissidents on whom it has provided data . IN DT NN VBN NNP , DT JJ NN NNS IN NNS VBN IN NNP TO VB DT NN IN PDT DT NNS IN WP PRP VBZ VBN NNS . The group says it has discovered that Yahoo provided information relating to the arrest of at least two jailed dissidents , one in 2003 and the other last year . DT NN VBZ PRP VBZ VBN IN NNP VBD NN VBG TO DT NN IN IN JJS CD JJ NNS , CD IN CD CC DT JJ JJ NN . Reporters Without Borders says the men received sentences of eight and 10 years , both based on electronic data supplied by Yahoo . NNS IN NNP VBZ DT NNS VBD NNS IN CD CC CD NNS , DT VBN IN JJ NNS VBN IN NNP . Yahoo spokeswoman Mary Osako says that when the company receives subpoenas it is not usually told how the information is being used . NNP NN NNP NNP VBZ IN WRB DT NN VBZ NNS PRP VBZ RB RB VBD WRB DT NN VBZ VBG VBN . A U.S. congressional committee will hold a hearing next week on ethical responsibilities of Internet companies . DT NNP JJ NN MD VB DT NN JJ NN IN JJ NNS IN NN NNS . Three Australians went on trial Wednesday in Bali for allegedly trying to smuggle heroin from the resort island . CD NNS VBD IN NN NNP IN NNP IN RB VBG TO VB NN IN DT NN NN . They are among nine Australians facing charges after the group was arrested in April . PRP VBP IN CD NNS VBG NNS IN DT NN VBD VBN IN NNP . If convicted , they could be executed . IN VBN , PRP MD VB VBN . Two other trials began Tuesday . CD JJ NNS VBD NNP . This is the latest in a string of high-profile drug cases involving Australians in Indonesia . DT VBZ DT JJS IN DT NN IN JJ NN NNS VBG NNS IN NNP . In May , Australian Schapelle Corby was sentenced to 20 years in prison on charges of smuggling marijuana onto the island . IN NNP , JJ NNP NNP VBD VBN TO CD NNS IN NN IN NNS IN VBG NN IN DT NN . Her conviction angered some in Australia who say she is innocent or the sentence is too harsh . PRP$ NN VBD DT IN NNP WP VBP PRP VBZ JJ CC DT NN VBZ RB JJ . Indonesia has some of the toughest drug laws in the world . NNP VBZ DT IN DT JJS NN NNS IN DT NN . Those convicted of possessing or distributing illegal drugs face sentences ranging from several years in prison to the death penalty . DT VBN IN VBG CC VBG JJ NNS VBP NNS VBG IN JJ NNS IN NN TO DT NN NN . German officials say that Russia is to remove large quantities of enriched uranium from the Soviet-era atomic reactor in former East Germany . JJ NNS VBP IN NNP VBZ TO VB JJ NNS IN VBN NN IN DT NNP JJ NN IN JJ NNP NNP . Police said Sunday that more than 300 kilograms of nuclear waste , produced in the Rossendorf reactor near the city of Dresden , was to be flown out of Germany overnight . NNS VBD NNP IN JJR IN CD NNS IN JJ NN , VBN IN DT NNP NN IN DT NN IN NNP , VBD TO VB VBN IN IN NNP RB . Germans shut down the Soviet-built research reactor soon after reunification in 1990 . NNS VBD RP DT JJ NN NN RB IN NN IN CD . The waste is to be treated in Russia under an international agreement aimed at preventing proliferation of nuclear material . DT NN VBZ TO VB VBN IN NNP IN DT JJ NN VBN IN VBG NN IN JJ NN . Representatives of U.N. Vienna-based International Atomic Energy Agency were to observe loading of the nuclear waste into aircraft at the Dresden airport . NNS IN NNP JJ NNP NNP NNP NNP VBD TO VB NN IN DT JJ NN IN NN IN DT NNP NN . Iran continues to downplay the threat of U.S. military strikes , and says any U.S. attack on the Islamic republic would be a strategic mistake . NNP VBZ TO VB DT NN IN NNP JJ NNS , CC VBZ DT NNP NN IN DT JJ NN MD VB DT JJ NN . Foreign Ministry spokesman Hamid Reza Asefi told a news conference Sunday the chance of a U.S. strike is very low , echoing recent comments from President Mohammad Khatami . NNP NNP NN NNP NNP NNP VBD DT NN NN NNP DT NN IN DT NNP NN VBZ RB JJ , VBG JJ NNS IN NNP NNP NNP . Washington and Tehran have been locked in a three-year stand-off over U.S. allegations that Iran is using its nuclear program to develop banned weapons . NNP CC NNP VBP VBN VBN IN DT JJ NN IN NNP NNS IN NNP VBZ VBG PRP$ JJ NN TO VB VBN NNS . Iran has repeatedly denied the charges . NNP VBZ RB VBN DT NNS . Last week , a published report said U.S. commandos have carried out clandestine missions in Iran to identify targets for possible military strikes . JJ NN , DT VBN NN VBD NNP NNS VBP VBN RP JJ NNS IN NNP TO VB NNS IN JJ JJ NNS . The White House rejected The New Yorker magazine report , but President Bush later said military action to deal with Iran 's nuclear threat had not been ruled out . DT NNP NNP VBD DT NNP NNP NN NN , CC NNP NNP RB VBD JJ NN TO VB IN NNP POS JJ NN VBD RB VBN VBN RP . Sunday , Mr. Asefi characterized the president 's comments as psychological warfare . NNP , NNP NNP VBD DT NN POS NNS IN JJ NN . Security forces in Bosnia-Herzegovina have detained a former Bosnian Serb paramilitary leader suspected of crimes against humanity during the Balkan conflict of the 1990s . NNP NNS IN NNP VBP VBN DT JJ JJ JJ JJ NN VBN IN NNS IN NN IN DT JJ NN IN DT NNS . Authorities say they picked up Momir Savic in the southeastern town of Visegrad . NNS VBP PRP VBD RP NNP NNP IN DT JJ NN IN NNP . Prosecutors issued a warrant for Savic 's arrest on suspicion of war crimes against Muslim civilians in the Visegrad area in 1992 , as ethnic Serb forces killed or expelled most of the Muslims and Croats from eastern Bosnia . NNS VBD DT NN IN NNP POS NN IN NN IN NN NNS IN NNP NNS IN DT NNP NN IN CD , IN JJ JJ NNS VBD CC VBD JJS IN DT NNPS CC NNS IN JJ NNP . Authorities gave no further details . NNS VBD DT JJ NNS . The Bosnian conflict formally ended with the 1995 Dayton Accord , which divided the country into two entities , the Bosnian Serb Republic and the Muslim-Croat Federation . DT JJ NN RB VBD IN DT CD NNP NNP , WDT VBD DT NN IN CD NNS , DT JJ JJ NNP CC DT NNP NNP . Brazil 's president declared the country independent of the need for foreign oil as he opened a huge new offshore oilrig in the Atlantic Ocean on Thursday . NNP POS NN VBD DT NN NN IN DT NN IN JJ NN IN PRP VBD DT JJ JJ JJ NN IN DT NNP NNP IN NNP . President Luiz Inacio Lula da Silva flipped a switch and drenched his hands in the flowing oil . NNP NNP NNP NNP NNP NNP VBD DT NN CC VBD PRP$ NNS IN DT JJ NN . His gesture recreated one made by President Getulio Vargas when he created the government-run Petrobras oil company in 1953 . PRP$ NN VBD CD VBN IN NNP NNP NNP WRB PRP VBD DT JJ NNP NN NN IN CD . Ironically , the new rig came online in the same week that oil prices set record highs . RB , DT JJ NN VBD NN IN DT JJ NN IN NN NNS VBD NN NNS . Roughly 30 years ago , Brazil imported about 80 percent of its oil . RB CD NNS RB , NNP VBD IN CD NN IN PRP$ NN . Petrobras says that when the huge new P-50 oil rig is producing at full capacity six months from now , Brazil 's oil production will average 1.9 million barrels a day , slightly more than the nation 's average daily consumption of 1.85 barrels a day . NNP VBZ IN WRB DT JJ JJ JJ NN NN VBZ VBG IN JJ NN CD NNS IN RB , NNP POS NN NN MD VB CD CD NNS DT NN , RB JJR IN DT NN POS JJ JJ NN IN CD NNS DT NN . A cease-fire due to be signed Friday by the Ugandan government and rebels to end an 18-year war in the north of the country has been postponed . DT NN JJ TO VB VBN NNP IN DT JJ NN CC NNS TO VB DT JJ NN IN DT NN IN DT NN VBZ VBN VBN . The delay was announced as negotiators on both sides tried to hammer out unresolved parts of the proposed cease-fire agreement during meetings in the northern district of Kitgum , near the Sudanese border . DT NN VBD VBN IN NNS IN DT NNS VBD TO VB RP JJ NNS IN DT VBN NN NN IN NNS IN DT JJ NN IN NNP , IN DT JJ NN . A new date for its signing has not been decided . DT JJ NN IN PRP$ NN VBZ RB VBN VBN . The chief mediator for the Ugandan government , Betty Bigombe , said Thursday the agreement could clear the way for formal negotiations on ending the conflict . DT JJ NN IN DT JJ NN , NNP NNP , VBD NNP DT NN MD VB DT NN IN JJ NNS IN VBG DT NN . The northern-based Lord 's Resistance Army has fought to overthrow the Ugandan government since 1987 , displacing more than one million people . DT JJ NNP POS NN NNP VBZ VBN TO VB DT JJ NN IN CD , VBG JJR IN CD CD NNS . Its rebels are notorious for attacking civilians and kidnapping children . PRP$ NNS VBP JJ IN VBG NNS CC VBG NNS . The U.S. space agency 's Mars probe is set to land Sunday , May 25 . DT NNP NN NN POS NNP NN VBZ VBN TO VB NNP , NNP CD . NASA scientists in Washington recently talked about what they call the mission 's ' seven minutes of terror . ' NNP NNS IN NNP RB VBD IN WP PRP VBP DT NN POS `` CD NNS IN NN . `` That is how long it will take for a probe to slow down enough to land on its surface . DT VBZ WRB JJ PRP MD VB IN DT NN TO VB RB RB TO VB IN PRP$ NN . Once there , the Phoenix Mars Lander will dig into the Martian ice and soil , study the planet 's atmosphere , and more . RB RB , DT NNP NNP NNP MD VB IN DT JJ NN CC NN , NN DT NN POS NN , CC RBR . VOA 's Paul Sisco reports . NNP POS NNP NNP VBZ . Thousands of New Orleans residents are returning to their homes and businesses Friday , as clean-up efforts continue after Hurricanes Katrina and Rita . NNS IN NNP NNP NNS VBP VBG TO PRP$ NNS CC NNS NNP , IN JJ NNS VBP IN NNP NNP CC NNP . Many residents who live in reopened areas of the city , including the French Quarter and Garden District , have been permitted to return with proof of residency . JJ NNS WP VBP IN VBN NNS IN DT NN , VBG DT JJ NN CC NNP NNP , VBP VBN VBN TO VB IN NN IN NN . Utility crews continue to work on restoring electricity and providing drinkable water . NN NNS VBP TO VB IN VBG NN CC VBG JJ NN . Some business owners returned to the city on Thursday , and many are dealing with both structural damage and losses from looting . DT NN NNS VBD TO DT NN IN NNP , CC NN VBP VBG IN DT JJ NN CC NNS IN VBG . Police say they are investigating whether some police officers took part in looting after Hurricane Katrina . NNS VBP PRP VBP VBG IN DT NN NNS VBD NN IN VBG IN NNP NNP . Police spokesman Marlon Defillo says the investigation centers on about 12 officers who allegedly took non-essential items from store shelves . NNS NN NNP NNP VBZ DT NN NNS IN IN CD NNS WP RB VBD JJ NNS IN NN NNS . Police in Afghanistan say Afghan and NATO forces have killed 10 Taleban rebels in fighting in the country 's south . NNS IN NNP VBP JJ CC NNP NNS VBP VBN CD NNP NNS IN VBG IN DT NN POS NN . Police say the fighting broke out when Afghan and NATO forces raided the rebels ' hideouts in Helmand province 's Garmser district . NNS VBP DT NN VBD RP WRB JJ CC NNP NNS VBD DT NNS POS NNS IN NNP NN POS NNP NN . It is the same area where , on Tuesday , Afghan and NATO forces killed 18 Taleban insurgents . PRP VBZ DT JJ NN WRB , IN NNP , JJ CC NNP NNS VBD CD NNP NNS . One police officer was also killed . CD NN NN VBD RB VBN . NATO took over security operations from U.S.-led coalition forces this week in six southern Afghan provinces . NNP VBD RP NN NNS IN JJ NN NNS DT NN IN CD JJ JJ NNS . Russian President Vladimir Putin and British Prime Minister Tony Blair have met in London for talks focusing on energy issues and the struggle against terrorism . JJ NNP NNP NNP CC NNP NNP NNP NNP NNP VBP VBN IN NNP IN NNS VBG IN NN NNS CC DT NN IN NN . Russian officials say during the 90 minutes of discussions the two leaders paid special attention to the energy issue , noting that within seven years Britain will become an importer of natural gas and oil . JJ NNS VBP IN DT CD NNS IN NNS DT CD NNS VBD JJ NN TO DT NN NN , VBG IN IN CD NNS NNP MD VB DT NN IN JJ NN CC NN . The Russian officials say both sides expressed readiness to cooperate in efforts to deal with tensions in the Middle East , Central Asia and Afghanistan . DT JJ NNS VBP DT NNS VBD NN TO VB IN NNS TO VB IN NNS IN DT NNP NNP , NNP NNP CC NNP . They said Mr. Blair stressed the importance of tightening British anti-terrorist legislation . PRP VBD NNP NNP VBD DT NN IN VBG JJ JJ NN . The meeting came ahead of ceremonies in which Mr. Putin honored the British team that helped rescue seven Russian sailors trapped in a submarine off the coast of Russia 's Kamchatka Peninsula last August . DT NN VBD RB IN NNS IN WDT NNP NNP VBD DT JJ NN WDT VBD VB CD JJ NNS VBN IN DT NN IN DT NN IN NNP POS NNP NNP JJ NNP . Tuesday , Mr. Putin and European Union leaders held a summit in London . NNP , NNP NNP CC NNP NNP NNS VBD DT NN IN NNP . President Bush has condemned the terrorist attacks at three hotels in Jordan , and expressed his condolences to King Abdullah and the country 's people . NNP NNP VBZ VBN DT JJ NNS IN CD NNS IN NNP , CC VBD PRP$ NNS TO NNP NNP CC DT NN POS NNS . In a statement , the president 's spokesman said the United States will offer any cooperation to Jordan in investigating the attacks and bringing those responsible to justice . IN DT NN , DT NN POS NN VBD DT NNP NNPS MD VB DT NN TO NNP IN VBG DT NNS CC VBG DT JJ TO NN . Secretary of State Condoleezza Rice called the attacks a ' great tragedy , ' adding it shows people are willing to take innocent life without remorse . NNP IN NNP NNP NNP VBD DT NNS DT `` JJ NN , `` VBG PRP VBZ NNS VBP JJ TO VB JJ NN IN NN . United Nations Secretary-General Kofi Annan condemned the attacks and renewed a call for U.N. members to advance a comprehensive plan to combat terrorism . NNP NNP NNP NNP NNP VBD DT NNS CC VBN DT NN IN NNP NNS TO VB DT JJ NN TO VB NN . U.N. officials said Mr. Annan , who is currently on a Middle East trip , has canceled plans to visit Jordan this week . NNP NNS VBD NNP NNP , WP VBZ RB IN DT NNP NNP NN , VBZ VBN NNS TO VB NNP DT NN . A Vietnamese man has died from bird flu , raising the country 's death toll from the deadly virus to 39 . DT JJ NN VBZ VBN IN NN NN , VBG DT NN POS NN NN IN DT JJ NN TO CD . Health officials say the Hanoi resident died Tuesday after being hospitalized six days earlier . NNP NNS VBP DT NNP NN VBD NNP IN VBG VBN CD NNS RBR . It was unclear how the man contracted bird flu . PRP VBD JJ WRB DT NN VBD JJ NN . The Vietnamese government says it will begin nationwide vaccinations of poultry in August in an effort to contain the spread of the virus , which has also killed 12 people in Thailand and four others from Cambodia . DT JJ NN VBZ PRP MD VB JJ NNS IN NN IN NNP IN DT NN TO VB DT NN IN DT NN , WDT VBZ RB VBN CD NNS IN NNP CC CD NNS IN NNP . Medical experts say the H5N1 virus that causes bird flu appears to be spread only by close contact between humans and infected poultry . JJ NNS VBP DT NNP NN WDT VBZ NN NN VBZ TO VB VBN RB IN JJ NN IN NNS CC JJ NN . However , they warn that bird flu could change into a form that can easily pass between people , triggering a global pandemic . RB , PRP VBP IN NN NN MD VB IN DT NN WDT MD RB VB IN NNS , VBG DT JJ NN . Members of the Philippine Senate have urged President Gloria Arroyo to pressure Burma 's military government to free pro-democracy leader Aung San Suu Kyi . NNS IN DT JJ NNP VBP VBN NNP NNP NNP TO VB NNP POS JJ NN TO JJ JJ NN NNP NNP NNP NNP . All 23 members of the Senate signed a resolution urging the action Wednesday . DT CD NNS IN DT NNP VBD DT NN VBG DT NN NNP . It is nonbinding , meaning it only serves to express the lawmakers ' opinions . PRP VBZ JJ , VBG PRP RB VBZ TO VB DT NNS POS NNS . The resolution also opposes Burma 's takeover of the chairmanship of the Association of Southeast Asian Nations next year as scheduled . DT NN RB VBZ NNP POS NN IN DT NN IN DT NNP IN NNP NNP NNP JJ NN IN VBN . It says Burma 's human rights record makes it unfit to head the organization . PRP VBZ NNP POS JJ NNS NN VBZ PRP JJ TO VB DT NN . President Arroyo met last month with Burma 's leader , Lieutenant-General Soe Win , and expressed fear for Aung San Suu Kyi , who has been under house arrest since May , 2003 . NNP NNP VBD JJ NN IN NNP POS NN , JJ NNP NNP , CC VBD NN IN NNP NNP NNP NNP , WP VBZ VBN IN NN NN IN NNP , CD . Indonesia 's Health Ministry says a 17-year-old woman has died of bird flu . NNP POS NNP NNP VBZ DT JJ NN VBZ VBN IN NN NN . Authorities say the woman died Tuesday in Tangerang , west of Indonesia 's capital , Jakarta . NNS VBP DT NN VBD NNP IN NNP , NN IN NNP POS NN , NNP . She is the 83rd Indonesian to have died of the virus . PRP VBZ DT JJ NN TO VB VBN IN DT NN . Earlier this week , a 29-year-old woman living on the island of Bali died of the disease , becoming the resort island 's first known human fatality from the often-deadly H5N1 strain of the virus . RBR DT NN , DT JJ NN VBG IN DT NN IN NNP VBD IN DT NN , VBG DT NN NN POS JJ VBN JJ NN IN DT JJ NNP NN IN DT NN . More than 190 people worldwide have died from bird flu since the outbreak began in 2003 , mostly in Asian nations . JJR IN CD NNS JJ VBP VBN IN NN NN IN DT NN VBD IN CD , RB IN JJ NNS . The virus is mainly passed to humans through contact with infected animals , but experts fear the virus could mutate into a form that is easily transmissible by human-to-human contact . DT NN VBZ RB VBN TO NNS IN NN IN JJ NNS , CC NNS VBP DT NN MD VB IN DT NN WDT VBZ RB JJ IN JJ NN . NATO officials say alliance troops have killed at least 48 suspected Taleban rebels and several civilians in three separate clashes in southern Afghanistan . NNP NNS VBP NN NNS VBP VBN IN JJS CD JJ NNP NNS CC JJ NNS IN CD JJ NNS IN JJ NNP . The alliance said Wednesday four civilians were also wounded in the clashes in Kandahar 's Zhari and Panjwayi districts Tuesday . DT NN VBD NNP CD NNS VBD RB VBN IN DT NNS IN NNP POS NNP CC NNP NNS NNP . A NATO spokesman says the alliance is looking into ' credible reports ' of civilian deaths during at least one of the clashes . DT NNP NN VBZ DT NN VBZ VBG IN `` JJ NNS `` IN JJ NNS IN IN JJS CD IN DT NNS . He says the alliance deeply regrets any civilian casualties . PRP VBZ DT NN RB VBZ DT JJ NNS . Earlier , NATO officials said Afghan police and NATO-led troops seized more than nine tons of hashish from a truck traveling in southern Afghanistan . RB , NNP NNS VBD JJ NNS CC JJ NNS VBD JJR IN CD NNS IN NN IN DT NN VBG IN JJ NNP . Alliance officials say security forces found the drugs while searching the truck at a checkpoint in Zabul province . NNP NNS VBP NN NNS VBD DT NNS IN VBG DT NN IN DT NN IN NNP NN . The troops arrested the driver and three passengers . DT NNS VBN DT NN CC CD NNS . Afghan officials say Taleban-led militants are fueling the drug trade because it helps fund the rebellion . JJ NNS VBP JJ NNS VBP VBG DT NN NN IN PRP VBZ VB DT NN . The United Nations children 's agency has called for an end to female genital mutilation , saying the cruel and dangerous practice is spreading . DT NNP NNP NNS POS NN VBZ VBN IN DT NN TO JJ JJ NN , VBG DT JJ CC JJ NN VBZ VBG . A report issued Thursday by UNICEF says millions of girls and women in Africa alone are still subjected to the procedure , known as female circumcision , which involves cutting off portions of or all of the female genitalia . DT NN VBN NNP IN NNP VBZ NNS IN NNS CC NNS IN NNP RB VBP RB VBN TO DT NN , VBN IN JJ NN , WDT VBZ VBG RP NNS IN CC DT IN DT JJ NN . The report says that immigration has led to a ' globalization ' of the practice and it is affecting far more women than previously believed . DT NN VBZ IN NN VBZ VBN TO DT `` NN `` IN DT NN CC PRP VBZ VBG RB JJR NNS IN RB VBN . It says the procedure often leads to hemorrhaging , infection and , later , problems during child birth . PRP VBZ DT NN RB VBZ TO NN , NN CC , RB , NNS IN NN NN . UNICEF is working with other organizations to stop female circumcision through education within traditional communities . NNP VBZ VBG IN JJ NNS TO VB JJ NN IN NN IN JJ NNS . Iran 's new foreign minister says Tehran will not return to a full suspension of nuclear fuel activities and warned against referring the issue to the U.N. Security Council . NNP POS JJ JJ NN VBZ NNP MD RB VB TO DT JJ NN IN JJ NN NNS CC VBD IN VBG DT NN TO DT NNP NNP NNP . Foreign Minister Manouchehr Mottaki made his comments at a news conference Sunday . NNP NNP NNP NNP VBD PRP$ NNS IN DT NN NN NNP . Mr. Mottaki reiterated Iran 's position that it will not stop uranium processing . NNP NNP VBD NNP POS NN IN PRP MD RB VB NN NN . He also rejected a European threat to refer Tehran to the U.N. Security Council for possible sanctions as a no-win situation . PRP RB VBD DT JJ NN TO VB NNP TO DT NNP NNP NNP IN JJ NNS IN DT JJ NN . He warned such a move would result in certain consequences , but he did not elaborate . PRP VBD PDT DT NN MD VB IN JJ NNS , CC PRP VBD RB VB . European negotiators have been trying to convince Iran to totally abandon nuclear fuel work in exchange for a package of trade , diplomatic , security and technological incentives . JJ NNS VBP VBN VBG TO VB NNP TO RB VB JJ NN NN IN NN IN DT NN IN NN , JJ , NN CC JJ NNS . The United States accuses Iran of using its nuclear program as a cover to secretly produce nuclear weapons . DT NNP NNPS VBZ NNP IN VBG PRP$ JJ NN IN DT NN TO RB VB JJ NNS . Tehran says it only wants nuclear technology to produce electricity . NNP VBZ PRP RB VBZ JJ NN TO VB NN . A leading human rights group is calling on European investigators to look into allegations of torture in secret prisons in Chechnya . DT VBG JJ NNS NN VBZ VBG IN JJ NNS TO VB IN NNS IN NN IN JJ NNS IN NNP . The International Helsinki Federation for Human Rights released a report Monday in which it says it has proof that Russian and Chechen security forces are operating such prisons . DT NNP NNP NNP IN NNP NNP VBD DT NN NNP IN WDT PRP VBZ PRP VBZ NN IN JJ CC JJ NN NNS VBP VBG JJ NNS . It says Chechens are kidnapped and then tortured and sometimes killed in the jails . PRP VBZ NNS VBP VBN CC RB VBD CC RB VBN IN DT NNS . The report says the prisons violate Russian law and European human rights treaties . DT NN VBZ DT NNS VBP JJ NN CC JJ JJ NNS NNS . Russia has not yet responded to Monday 's report , but has denied allegations of torture in Chechen prisons in the past . NNP VBZ RB RB VBN TO NNP POS NN , CC VBZ VBN NNS IN NN IN JJ NNS IN DT NN . Russia has been battling Chechen separatists for much of the last decade . NNP VBZ VBN VBG JJ NNS IN NN IN DT JJ NN . Thailand 's military-installed government says it plans to lift a ban on political gatherings but will maintain martial law . NNP POS JJ NN VBZ PRP VBZ TO VB DT NN IN JJ NNS CC MD VB JJ NN . Interim Prime Minister Surayud Chulanont said Tuesday in Bangkok that the political restrictions will be lifted after consultations with the military panel of coup leaders . JJ JJ NNP NNP NNP VBD NNP IN NNP IN DT JJ NNS MD VB VBN IN NNS IN DT JJ NN IN NN NNS . Martial law and related restrictions were put in place after Thailand 's military removed Prime Minister Thaksin Shinawatra from office in a peaceful coup in September . NNP NN CC VBN NNS VBD VBN IN NN IN NNP POS NN VBD NNP NNP NNP NNP IN NN IN DT JJ NN IN NNP . Cases of violence or discontent have been rare since then . NNS IN NN CC NN VBP VBN JJ IN RB . Mr. Thaksin had faced public calls for his resignation over allegations of abuse of power and graft . NNP NNP VBD VBN JJ NNS IN PRP$ NN IN NNS IN NN IN NN CC NN . Mr. Surayud has vowed to unite the country . NNP NNP VBZ VBN TO VB DT NN . He will remain prime minister until elections next October . PRP MD VB JJ NN IN NNS IN NNP . Venezuelan President Hugo Chavez has met with Russian business leaders to discuss joint oil and gas ventures during a visit to Moscow . JJ NNP NNP NNP VBZ VBN IN JJ NN NNS TO VB JJ NN CC NN NNS IN DT NN TO NNP . According to Associated Press , Mr. Chavez praised the close ties between Russia and Venezuela during the meeting , and urged top executives to invest in future energy projects . VBG TO NNP NNP , NNP NNP VBD DT JJ NNS IN NNP CC NNP IN DT NN , CC VBD JJ NNS TO VB IN JJ NN NNS . President Chavez is on a two-day visit to Russia . NNP NNP VBZ IN DT JJ NN TO NNP . He scheduled to hold talks with his Russian counterpart , Vladimir Putin on Friday . PRP VBD TO VB NNS IN PRP$ JJ NN , NNP NNP IN NNP . Russia is the world 's second largest oil exporter , while Venezuela is fifth among oil-exporting countries . NNP VBZ DT NN POS JJ JJS NN NN , IN NNP VBZ JJ IN JJ NNS . Muslims around the world are awaiting the sighting of the crescent moon to begin fasting for Islam 's holy month of Ramadan . NNPS IN DT NN VBP VBG DT NN IN DT NN NN TO VB VBG IN NNP POS JJ NN IN NNP . Muslims observe the ninth month of the lunar Islamic calendar by abstaining from eating , drinking and sexual relations from dawn until sunset . NNPS VBP DT JJ NN IN DT NN JJ NN IN VBG IN NN , NN CC JJ NNS IN NN IN NN . The holy month is expected to begin Wednesday or a day later , depending on the sighting of the moon the night before . DT JJ NN VBZ VBN TO VB NNP CC DT NN RB , VBG IN DT NN IN DT NN DT NN IN . This year Ramadan begins amid scorching temperatures in the Middle East and elsewhere , with the first six months of 2010 being the warmest ever recorded . DT NN NNP VBZ IN VBG NNS IN DT NNP NNP CC RB , IN DT JJ CD NNS IN CD VBG DT NN RB VBN . The month marks the time more than 1,400 years ago when Muslims believe the words of Islam 's holy book , the Koran , were revealed to the Prophet Mohammed . DT NN VBZ DT NN JJR IN CD NNS RB WRB NNS VBP DT NNS IN NNP POS JJ NN , DT NNP , VBD VBN TO DT NNP NNP . Muslims celebrate the month with family visits , invitations to iftars and shared meals that break the fast . NNPS VBP DT NN IN NN NNS , NNS TO NNS CC JJ NNS WDT VBP DT JJ . Ramadan will conclude in September with a celebration called Eid al-Fitr . NNP MD VB IN NNP IN DT NN VBN NNP NNP . Sudanese President Omar al-Bashir has made a rare visit to Darfur , where he made an appeal for peace and unity in the region . JJ NNP NNP NNP VBZ VBN DT JJ NN TO NNP , WRB PRP VBD DT NN IN NN CC NN IN DT NN . Mr. Bashir spoke Saturday to a gathering in Nyala , the provincial capital . NNP NNP VBD NNP TO DT NN IN NNP , DT JJ NN . The president said citizens want a comprehensive peace followed by development . DT NN VBD NNS VBP DT JJ NN VBN IN NN . He called on armed rebels to join the political process . PRP VBD RP JJ NNS TO VB DT JJ NN . Later Sunday , President Bashir will chair a Cabinet meeting in El~Fasher , the capital of north Darfur . RB NNP , NNP NNP NN NN DT NNP NN IN NNP , DT NN IN JJ NNP . He returns Monday to Khartoum . PRP VBZ NNP TO NNP . More than four years of fighting in the western Sudanese Darfur region have killed an estimated 2,00,000 people and displaced more than two million others . JJR IN CD NNS IN VBG IN DT JJ JJ NNP NN VBP VBN DT JJ CD NNS CC VBN JJR IN CD CD NNS . The Sudanese government has been accused of arming Arab militia , which have been blamed for many atrocities . DT JJ NN VBZ VBN VBN IN VBG JJ NN , WDT VBP VBN VBN IN JJ NNS . Khartoum denies any connection with the violence . NNP VBZ DT NN IN DT NN . British police say they are examining suspicious material found in a north London apartment connected to at least one of the suspects in last week 's failed transit bombings . JJ NNS VBP PRP VBP VBG JJ NN VBN IN DT JJ NNP NN VBN TO IN JJS CD IN DT NNS IN JJ NN POS VBN NN NNS . Investigators Tuesday said they found a large quantity of possibly explosive material in the house . NNS NNP VBD PRP VBD DT JJ NN IN RB JJ NN IN DT NN . The apartment , which police raided Monday , has been dubbed by some British newspapers as a ' bomb factory . ' DT NN , WDT NN VBD NNP , VBZ VBN VBN IN DT JJ NNS IN DT POS NN NN . POS Earlier , police released the names of two of the suspects , one a naturalized British citizen from Eritrea and one a Somali living in the country legally . RBR , NNS VBD DT NNS IN CD IN DT NNS , CD DT JJ JJ NN IN NNP CC CD DT JJ NN IN DT NN RB . No one was injured in the July 21 attacks , and officials say the four would-be bombers are most likely hiding in Britain . DT NN VBD VBN IN DT NNP CD NNS , CC NNS VBP DT CD JJ NNS VBP RBS JJ NN IN NNP . Two weeks before , on July 7 , 56 people , including four suicide bombers , died when explosions ripped through three subway trains and a bus . CD NNS RB , IN NNP CD , CD NNS , VBG CD NN NNS , VBD WRB NNS VBD IN CD NN NNS CC DT NN . Six American and two Afghan soldiers were killed Sunday when a suicide bomber drove an explosives-laden van into a new jointly operated outpost in southern Kandahar province . CD JJ CC CD JJ NNS VBD VBN NNP WRB DT NN NN VBD DT JJ NN IN DT JJ RB VBN NN IN JJ NNP NN . U.S. and Afghan officials said a number of American and Afghan troops were wounded in the powerful blast . NNP CC JJ NNS VBD DT NN IN JJ CC JJ NNS VBD VBN IN DT JJ NN . The Taliban claimed responsibility for the attack . DT NNP VBD NN IN DT NN . In other violence , NATO said its security forces killed two insurgents , including a reputed Taliban leader , in eastern Afghanistan on Saturday . IN JJ NN , NNP VBD PRP$ NN NNS VBD CD NNS , VBG DT JJ NNP NN , IN JJ NNP IN NNP . Also in the east , a joint Afghan-NATO force hunting for a Taliban ' shadow governor ' killed one insurgent and detained 10 others in Nangarhar province Saturday night . RB IN DT NN , DT JJ JJ NN NN IN DT NNP `` NN NN `` VBD CD NN CC VBD CD NNS IN NNP NN NNP NN . In northern Kunduz province , one insurgent was killed and five others detained during a search for a high-ranking leader of the Islamic Movement of Uzbekistan . IN JJ NNP NN , CD NN VBD VBN CC CD NNS VBN IN DT NN IN DT JJ NN IN DT JJ NN IN NNP . And in southern Helmand province Saturday , a joint NATO-Afghan force found a drug cache containing one ton of opium and 37 kilograms of refined morphine . CC IN JJ NNP NN NNP , DT JJ NN NN VBD DT NN NN VBG CD NN IN NN CC CD NNS IN JJ NN . Jordan has announced that parliamentary elections will be held on November 9 . NNP VBZ VBN IN JJ NNS MD VB VBN IN NNP CD . The date was set in a Cabinet meeting Tuesday . DT NN VBD VBN IN DT NNP NN NNP . It comes nearly a month after the government enacted a new election law increasing the number of seats from 110 to 120 . PRP VBZ RB DT NN IN DT NN VBD DT JJ NN NN VBG DT NN IN NNS IN CD TO CD . It also doubled the quota of women lawmakers to 12 . PRP RB VBD DT NN IN NNS NNS TO CD . Jordan 's King Abdullah dissolved parliament last year after accusing lawmakers of ineffectiveness . NNP POS NNP NNP VBD NN JJ NN IN VBG NNS IN NN . French police placed four people four youths under investigation in connection with a bus attack Saturday in Marseille that left a passenger in critical condition . JJ NNS VBD CD NNS CD NNS IN NN IN NN IN DT NN NN NNP IN NNP WDT VBD DT NN IN JJ NN . Under the French legal system , being placed under investigation is one step short of the filing of formal charges Officials say the teenagers , between the ages of 15 and 17 , have previous records for delinquency . IN DT JJ JJ NN , VBG VBN IN NN VBZ CD NN NN IN DT NN IN JJ NNS NNS VBP DT NNS , IN DT NNS IN CD CC CD , VBP JJ NNS IN NN . A Marseille prosecutor , Jacques Baume , said three of the youths have admitted taking part in the incident . DT NNP NN , NNP NNP , VBD CD IN DT NNS VBP VBN VBG NN IN DT NN . The victim - a 26-year-old woman - remains hospitalized after being burned on more than half of her body . DT NN IN DT JJ NN : VBZ VBN IN VBG VBN IN JJR IN NN IN PRP$ NN . The bus attack is one of the most severe incidents coinciding with the anniversary of riots that raged through mainly immigrant suburbs of France a year ago . DT NN NN VBZ CD IN DT RBS JJ NNS VBG IN DT NN IN NNS WDT VBD IN RB JJ NNS IN NNP DT NN RB . Immigrant families rioted last November to protest discrimination and a lack of jobs for young people . JJ NNS VBD JJ NNP TO VB NN CC DT NN IN NNS IN JJ NNS . Officials from Nigeria 's southeastern state of Bayelsa say they are negotiating the release of two German and four Nigerian oil workers kidnapped by militants . NNS IN NNP POS JJ NN IN NNP VBP PRP VBP VBG DT NN IN CD JJ CC CD JJ NN NNS VBN IN NNS . The six employees were abducted on Wednesday while traveling by boat to an offshore oil field . DT CD NNS VBD VBN IN NNP IN VBG IN NN TO DT JJ NN NN . They work for the German firm Bilfinger Berger , a subsidiary of Royal-Dutch Shell . PRP VBP IN DT JJ NN NNP NNP , DT NN IN NNP NNP . The kidnappers - ethnic Ijaw militants - are demanding $ 20 million in ransom from Shell along with a promise to honor a previous agreement to give jobs and other benefits to local residents . DT NNS IN JJ NNP NNS : VBP VBG $ CD CD IN NN IN NNP IN IN DT NN TO VB DT JJ NN TO VB NNS CC JJ NNS TO JJ NNS . Communities in Nigeria 's oil rich southern region have long complained they have been cut out of the money made from the resources extracted from their land . NNS IN NNP POS NN JJ JJ NN VBP RB VBN PRP VBP VBN VBN IN IN DT NN VBN IN DT NNS VBN IN PRP$ NN . Militant groups frequently attack oil operations of multi-national companies to demand social services and better job opportunities . JJ NNS RB VBP NN NNS IN JJ NNS TO VB JJ NNS CC JJR NN NNS . Lawyers for veterans of Kenya 's Mau Mau uprising of the 1950s say the British government has denied responsibility for colonial-era claims of torture and other atrocities . NNS IN NNS IN NNP POS NNP NNP NN IN DT NNS VBP DT JJ NN VBZ VBN NN IN NN NNS IN NN CC JJ NNS . At a news conference in Nairobi Tuesday , the lawyers presented a letter from the British Foreign and Commonwealth Office rejecting the claim . IN DT NN NN IN NNP NNP , DT NNS VBD DT NN IN DT NNP NNP CC NNP NNP VBG DT NN . The letter argues the British government had no direct link to the colonial administration in Kenya at the time . DT NN VBZ DT JJ NN VBD DT JJ NN TO DT NN NN IN NNP IN DT NN . The office also said too much time had passed to consider the claims . DT NN RB VBD RB JJ NN VBD VBN TO VB DT NNS . Six Mau Mau veterans have launched a claim against the British government seeking damages for torture and other abuses suffered during the uprising against British colonial rule from 1952 to 1959 . CD NNP NNP NNS VBP VBN DT NN IN DT JJ NN VBG NNS IN NN CC JJ NNS VBD IN DT NN IN JJ NN NN IN CD TO CD . The veterans say they plan to move forward with legal action against the British government . DT NNS VBP PRP VBP TO VB RB IN JJ NN IN DT JJ NN . A Japanese energy company says Tokyo has given it permission to drill in a gas field in the East China Sea along a disputed sea border with China . DT JJ NN NN VBZ NNP VBZ VBN PRP NN TO VB IN DT NN NN IN DT NNP NNP NNP IN DT JJ NN NN IN NNP . Teikoku Oil said Japan 's Economy , Trade and Industry Ministry informed the company Thursday , it can explore the deep-sea gas deposits . NNP NNP VBD NNP POS NNP , NNP CC NNP NNP VBD DT NN NNP , PRP MD VB DT JJ NN NNS . The area is inside territory that Japan regards as its exclusive economic zone , but Beijing disputes the demarcation . DT NN VBZ JJ NN IN NNP VBZ IN PRP$ JJ JJ NN , CC NNP VBZ DT NN . China says a Japanese authorization of drilling in the area will infringe on China 's sovereignty and complicate the situation in the East China Sea . NNP VBZ DT JJ NN IN NN IN DT NN MD VB IN NNP POS NN CC VB DT NN IN DT NNP NNP NNP . Japan and China have been feuding over a range of territorial and diplomatic disputes , including claims to the undersea gas deposits . NNP CC NNP VBP VBN VBG IN DT NN IN JJ CC JJ NNS , VBG NNS TO DT NN NN NNS . Iran 's top nuclear negotiator has called for other countries to join the three European nations engaged in talks with Tehran about its nuclear program . NNP POS JJ JJ NN VBZ VBN IN JJ NNS TO VB DT CD JJ NNS VBN IN NNS IN NNP IN PRP$ JJ NN . Iranian state television quotes Ali Larijani as saying questions have been raised in Iran as to why the talks are being conducted with just Britain , Germany and France . JJ NN NN NNS NNP NNP IN VBG NNS VBP VBN VBN IN NNP IN TO WRB DT NNS VBP VBG VBN IN RB NNP , NNP CC NNP . He said Iran would welcome negotiations with other members of the International Atomic Energy Agency 's board of governors and members of the Non-Aligned Movement . PRP VBD NNP MD VB NNS IN JJ NNS IN DT NNP NNP NNP NNP POS NN IN NNS CC NNS IN DT JJ NN . Iran 's talks with Europe appeared close to collapse this week when the European nations canceled an August 31 meeting . NNP POS NNS IN NNP VBD JJ TO VB DT NN WRB DT JJ NNS VBD DT NNP CD NN . But both sides have expressed a willingness to continue . CC DT NNS VBP VBN DT NN TO VB . The European powers are trying to persuade Iran to give up parts of its nuclear program that could be used to produce nuclear weapons . DT JJ NNS VBP VBG TO VB NNP TO VB RP NNS IN PRP$ JJ NN WDT MD VB VBN TO VB JJ NNS . Iran insists it has a right to the technology , and asserts that its nuclear program is peaceful . NNP VBZ PRP VBZ DT NN TO DT NN , CC VBZ IN PRP$ JJ NN VBZ JJ . The Red Cross and the Pentagon have acknowledged that they discussed complaints of Koran desecration from detainees held at the U.S. military prison in Guantanamo Bay , Cuba in 2002 and 2003 . DT NNP NNP CC DT NNP VBP VBN IN PRP VBD NNS IN NNP NN IN NNS VBN IN DT NNP JJ NN IN NNP NNP , NNP IN CD CC CD . On Thursday , Red Cross officials said that after several discussions with the Pentagon about the allegations , the complaints ceased . IN NNP , NNP NNP NNS VBD IN IN JJ NNS IN DT NNP IN DT NNS , DT NNS VBD . Neither Red Cross officials nor the Pentagon have disclosed details of the allegations , but the Pentagon said the incidents were rare and minor . DT NNP NNP NNS CC DT NNP VBP VBN NNS IN DT NNS , CC DT NNP VBD DT NNS VBD JJ CC JJ . Defense officials say they are continuing to investigate allegations of Koran desecration that have fueled anti-U.S. protests around the world , leaving at least 17 people dead in Afghanistan . NN NNS VBP PRP VBP VBG TO VB NNS IN NNP NN WDT VBP VBN JJ NNS IN DT NN , VBG IN JJS CD NNS JJ IN NNP . The uproar began after Newsweek magazine said a Defense Department report found that U.S. interrogators had flushed a copy of the Muslim holy book down a toilet to rattle detainees . DT NN VBD IN NNP NN VBD DT NNP NNP NN VBD IN NNP NNS VBD VBN DT NN IN DT NNP JJ NN IN DT NN TO VB NNS . Newsweek later retracted the story and apologized . NNP RB VBD DT NN CC VBD . Russia says it has conducted a successful test launch of an interceptor missile from a testing range in Kazakhstan . NNP VBZ PRP VBZ VBN DT JJ NN NN IN DT NN NN IN DT NN NN IN NNP . A spokesman for the Russian space forces , Alexei Kuznetsov , said the launch on Tuesday was part of a program aimed at extending the service life of interceptor missiles in the country 's defense system . DT NN IN DT JJ NN NNS , NNP NNP , VBD DT NN IN NNP VBD NN IN DT NN VBN IN VBG DT NN NN IN NN NNS IN DT NN POS NN NN . Kuznetsov told the Interfax news agency that initial information indicates that the tests confirmed the missile 's main characteristics . NNP VBD DT NNP NN NN IN JJ NN VBZ IN DT NNS VBD DT NN POS JJ NNS . Interceptor missiles are designed to shoot down enemy missiles . NNP NNS VBP VBN TO VB RP NN NNS . Russia conducted a similar test in 2004 . NNP VBD DT JJ NN IN CD . The United Nations highest court has begun hearing the Democratic Republic of Congo 's complaint against neighboring Uganda for violating humanitarian law . DT NNP NNPS JJS NN VBZ VBN VBG DT JJ NNP IN NNP POS NN IN JJ NNP IN VBG JJ NN . Congo accused Uganda of massacring civilians , looting and destruction in its opening argument Monday at the International Court of Justice in The Hague . NNP VBD NNP IN VBG NNS , NN CC NN IN PRP$ NN NN NNP IN DT NNP NNP IN NNP IN DT NNP . Congo also charged the Ugandan government with continuing to back warlords on Congolese territory who are plundering natural resources in the eastern part of the country . NNP RB VBD DT JJ NN IN VBG TO VB NNS IN JJ NN WP VBP VBG JJ NNS IN DT JJ NN IN DT NN . Resource-rich Congo is demanding reparations for damages suffered during five years of war in which more than three million people died . NNP NNP VBZ VBG NNS IN NNS VBN IN CD NNS IN NN IN WDT JJR IN CD CD NNS VBD . Uganda has previously denied the allegations and will make its argument Friday . NNP VBZ RB VBN DT NNS CC MD VB PRP$ NN NNP . Congo first took Uganda to the World Court for abuses in 1999 , one year after Uganda and Rwanda launched an invasion . NNP RB VBD NNP TO DT NNP NNP IN NNS IN CD , CD NN IN NNP CC NNP VBD DT NN . Both nations have since signed peace deals with the Congolese government . DT NNS VBP IN VBN NN NNS IN DT JJ NN . Britain 's Prince Charles and his new wife , Camilla , have begun a week-long tour of the United States with a visit to the site of the World Trade Center in New York City . NNP POS NNP NNP CC PRP$ JJ NN , NNP , VBP VBN DT JJ NN IN DT NNP NNPS IN DT NN TO DT NN IN DT NNP NNP NNP IN NNP NNP NNP . Television reports say few onlookers turned out for a glimpse of the Prince of Wales and his longtime companion , the Duchess of Cornwall , whom he married earlier this year . NN NNS VBP JJ NNS VBD RP IN DT NN IN DT NNP IN NNP CC PRP$ JJ NN , DT NN IN NNP , WP PRP VBD RBR DT NN . Prince Charles and Camilla are expected Tuesday to dedicate a memorial garden for British victims of the September 11 , 2001 terrorist attacks . NNP NNP CC NNP VBP VBN NNP TO VB DT JJ NN IN JJ NNS IN DT NNP CD , CD JJ NNS . On Wednesday they travel to Washington to visit President and Mrs. Bush at the White House . IN NNP PRP VBP TO NNP TO VB NNP CC NNP NNP IN DT NNP NNP . Friday , the royal couple will visit New Orleans to meet with victims of Hurricane Katrina , which devastated the Gulf Coast in August . NNP , DT JJ NN MD VB NNP NNP TO VB IN NNS IN NNP NNP , WDT VBD DT NNP NNP IN NNP . Opinion polls indicate American interest in the trip falls far short of the prince 's 1985 visit with his first wife , the late Princess Diana . NN NNS VBP JJ NN IN DT NN VBZ RB JJ IN DT NN POS CD NN IN PRP$ JJ NN , DT JJ NNP NNP . A Bosnian Serb war crimes suspect wanted for shelling Sarajevo has been taken into custody and will be sent to the U.N. war crimes tribunal in The Hague . DT JJ JJ NN NNS VBP VBN IN VBG NNP VBZ VBN VBN IN NN CC MD VB VBN TO DT NNP NN NNS JJ IN DT NNP . Chief Prosecutor Carla del Ponte announced Friday that Dragomir Milosevic had apparently surrendered in Serbia . NN NNP NNP NNP NNP VBD NNP IN NNP NNP VBD RB VBN IN NNP . Mr. Milosevic , who is no relation to former Yugoslav president Slobodan Milosevic , was commander of a Bosnian-Serb corps wanted for attacks on the Bosnian capital . NNP NNP , WP VBZ DT NN TO JJ JJ NN NNP NNP , VBD NN IN DT NNP NN VBN IN NNS IN DT JJ NN . Ms. del Ponte said she had few details on the suspect 's surrender . NNP NNP NNP VBD PRP VBD JJ NNS IN DT NN POS NN . Two of the tribunal 's top suspects - Radovan Karadzic and Ratko Mladic - are still at large . CD IN DT NN POS JJ NNS IN NNP NNP CC NNP NNP : VBP RB IN JJ . Thousands of followers of radical Shi'ite cleric Moqtada al-Sadr have rallied in the streets of Iraq to protest a triple car bombing Wednesday that killed at least 40 people and wounded about 125 more . NNS IN NNS IN JJ NNP NN NNP NNP VBP VBN IN DT NNS IN NNP TO VB DT JJ NN NN NNP WDT VBD IN JJS CD NNS CC VBD IN CD JJR . Protesters took to the streets in Baghdad and Basra Friday to denounce the attacks . NNS VBD TO DT NNS IN NNP CC NNP NNP TO VB DT NNS . There has been no claim of responsibility for the bombings in the mainly Shi'ite southern city of Amarah . EX VBZ VBN DT NN IN NN IN DT NNS IN DT RB JJ JJ NN IN NNP . In other violence , the U.S. military in Iraq says two American soldiers were killed in separate incidents . IN JJ NN , DT NNP NN IN NNP VBZ CD JJ NNS VBD VBN IN JJ NNS . The military says one soldier was shot in an attack in the capital Thursday , and another soldier died of wounds from a roadside bombing south of Baghdad . DT JJ VBZ CD NN VBD VBN IN DT NN IN DT NN NNP , CC DT NN VBD IN NNS IN DT NN VBG NN IN NNP . Separately , the military says coalition forces killed three suspected terrorists and detained 12 others during operations Friday targeting al-Qaida networks in central Iraq . RB , DT NN VBZ NN NNS VBD CD JJ NNS CC VBN CD NNS IN NNS NNP VBG NNP NNS IN JJ NNP . Somalia 's Prime Minister Mohammed Ali Gedi has postponed a visit to his homeland . NNP POS NNP NNP NNP NNP NNP VBZ VBN DT NN TO PRP$ NN . Some press reports say the trip was delayed because the government had not been able to obtain aircraft capable of landing in Somalia 's various airstrips . DT NN NNS VBP DT NN VBD VBN IN DT NN VBD RB VBN JJ TO VB NN JJ IN NN IN NNP POS JJ NNS . But Yusef Omar Azhari , the legal and political advisor President Abdullahi Yusuf Ahmed , says the delegation is waiting for some parliamentarians to return to Nairobi from Rome today ( Wednesday ) before leaving for Mogadishu in the next few days . CC NNP NNP NNP , DT JJ CC JJ NN NNP NNP NNP NNP , VBZ DT NN VBZ VBG IN DT NNS TO VB TO NNP IN NNP NN LRB NNP RRB IN VBG IN NNP IN DT JJ JJ NNS . The president and prime minister are expected to tour Somalia as part of an effort to relocate the interim government from neighboring Kenya . DT NN CC JJ NN VBP VBN TO VB NNP IN NN IN DT NN TO VB DT JJ NN IN VBG NNP . Military experts from several African nations have already been in Somalia to assess the security situation ahead of a proposed peacekeeping mission . JJ NNS IN JJ JJ NNS VBP RB VBN IN NNP TO VB DT NN NN RB IN DT VBN NN NN . Mr. Azhari told VOA reporter William Eagle that he expects the government to be completely relocated from Nairobi , Kenya to Somalia by March 20th NNP NNP VBD NNP NN NNP NNP IN PRP VBZ DT NN TO VB RB VBN IN NNP , NNP TO NNP IN NNP JJ The European Union has urged oil-producing countries and oil companies to do more to increase oil production in the face of rising gas prices that EU officials say pose a threat to the bloc 's economic growth . DT NNP NNP VBZ VBN JJ NNS CC NN NNS TO VB JJR TO VB NN NN IN DT NN IN VBG NN NNS IN NNP NNS VBP VB DT NN TO DT NN POS JJ NN . In a statement issued Saturday at the end of their two-day meeting in Manchester , England , EU finance ministers urged oil companies to , among other things , increase investment in oil exploration , production and refinement . IN DT NN VBN NNP IN DT NN IN PRP$ JJ NN IN NNP , NNP , NNP NN NNS VBD NN NNS TO , IN JJ NNS , VB NN IN NN NN , NN CC NN . EU officials have said higher oil prices in the wake of Hurricane Katrina in the southern United States could cut economic growth across the 12-country euro currency zone from the originally forecast 1.3 percent to as little as one percent . NNP NNS VBP VBN JJR NN NNS IN DT NN IN NNP NNP IN DT JJ NNP NNPS MD VB JJ NN IN DT JJ NN NN NN IN DT RB VBN CD NN TO RB JJ IN CD NN . Oil prices closed at $ 64.08 a barrel in New York on Friday after hitting an all-time record high of $ 70.85 on August 30 . NN NNS VBD IN $ CD DT NN IN NNP NNP IN NNP IN VBG DT JJ NN NN IN $ CD IN NNP CD . The European Union has extended sanctions against Burma 's military government and has called for an international arms embargo . DT NNP NNP VBZ VBN NNS IN NNP POS JJ NN CC VBZ VBN IN DT JJ NNS NN . The 27-member bloc endorsed a one-year extension of political and economic sanctions Tuesday at a meeting in Luxembourg . DT JJ NN VBD DT JJ NN IN JJ CC JJ NNS NNP IN DT NN IN NNP . EU foreign ministers issued a statement warning that the measures could be expanded . NNP JJ NNS VBD DT NN VBG IN DT NNS MD VB VBN . Those sanctions ban EU arms exports to Burma and impose an assets freeze and travel ban on Burmese leaders . DT NNS VBP NNP NNS NNS TO NNP CC VB DT NNS NN CC NN NN IN JJ NNS . In its statement , the EU also called for the release of all political prisoners , including detained opposition leader Aung San Suu Kyi . IN PRP$ NN , DT NNP RB VBD IN DT NN IN DT JJ NNS , VBG JJ NN NN NNP NNP NNP NNP . Last week , the United States circulated a revised draft Security Council statement , urging Burma to initiate dialogue with Aung San Suu Kyi , who has been under house arrest since 2003 . JJ NN , DT NNP NNPS VBD DT JJ NN NNP NNP NN , VBG NNP TO VB NN IN NNP NNP NNP NNP , WP VBZ VBN IN NN NN IN CD . The non-binding statement also called for the Burmese military government to allow the Nobel Prize laureate and other political figures to fully participate in a constitutional referendum scheduled for May 10 . DT JJ NN RB VBD IN DT JJ JJ NN TO VB DT NNP NNP NN CC JJ JJ NNS TO RB VB IN DT JJ NN VBN IN NNP CD . An al-Qaida Internet statement says a Saudi militant killed in 2004 was supposed to have been the 20th suicide plane hijacker in the September 11 , 2001 attacks on the United States . DT NNP NN NN VBZ DT JJ NN VBN IN CD VBD VBN TO VB VBN DT JJ NN NN NN IN DT NNP CD , CD NNS IN DT NNP NNPS . The statement says Osama bin Laden chose Turki bin Fuheid al-Muteiry to be the 20th attacker . DT NN VBZ NNP NNP NNP VBD NNP NNP NNP JJ TO VB DT JJ NN . It says the militant , who also went by the name Fawaz al-Nashmi , did not take part because of the timing of the September 11 attacks . PRP VBZ DT NN , WP RB VBD IN DT NN NNP NNP , VBD RB VB NN IN IN DT NN IN DT NNP CD NNS . Most of the 19 hijackers were Saudi nationals . JJS IN DT CD NNS VBD JJ NNS . U.S. officials have called Zacarias Moussaoui the 20th hijacker . NNP NNS VBP VBN NNP NNP DT JJ NN . He confessed to a role in the attacks and is serving life in prison . PRP VBD TO DT NN IN DT NNS CC VBZ VBG NN IN NN . But bin Laden said in a tape earlier this year that Moussaoui had nothing to do with September 11 . CC NNP NNP VBD IN DT NN RBR DT NN IN NNP VBD DT TO VB IN NNP CD . Muteiry died in a shootout with Saudi security forces in 2004 after the militant allegedly took part in an attack on foreigners in the oil city of Khobar . NNP VBD IN DT NN IN JJ NN NNS IN CD IN DT NN RB VBD NN IN DT NN IN NNS IN DT NN NN IN NNP . Nineteen suspected members of the violent street gang , Mara Salvatrucha ( or MS-13 ) have been indicted on federal racketeering charges in Maryland . CD JJ NNS IN DT JJ NN NN , NNP NNP LRB CC NNP RRB VBP VBN VBN IN JJ NN NNS IN NNP . The indictments , released Thursday , accuse the men of murders , kidnappings and other gang-related crimes from April 2003 to June of this year . DT NNS , VBN NNP , VBP DT NNS IN NNS , NNS CC JJ JJ NNS IN NNP CD TO NNP IN DT NN . The 19 suspected gang members are accused of six murders and several attempted murders . DT CD JJ NN NNS VBP VBN IN CD NNS CC JJ JJ NNS . The crimes took place in suburban Maryland , outside of Washington , D.C. DT NNS VBD NN IN JJ NNP , IN IN NNP , NNP The gang is traditionally made up of immigrants from El Salvador . DT NN VBZ RB VBN IN IN NNS IN NNP NNP . Its U.S. activities originated in Los Angeles in the 1980s . PRP$ NNP NNS VBN IN NNP NNP IN DT NNS . An estimated 10,000 members are in the United States . DT VBN CD NNS VBP IN DT NNP NNPS . Federal agents and local police officers arrested many of the indicted gang members Thursday . JJ NNS CC JJ NN NNS VBN NN IN DT VBN NN NNS NNP . The indictments are the latest attempt by the federal government to target the organization . DT NNS VBP DT JJS NN IN DT JJ NN TO VB DT NN . Somali pirates say they have moved a kidnapped British couple onto land , to await negotiations for their rescue after demanding $ 7 million in ransom . JJ NNS VBP PRP VBP VBN DT VBN JJ NN IN NN , TO VB NNS IN PRP$ NN IN VBG $ CD CD IN NN . The pirates spoke by phone to news agencies Saturday . DT NNS VBD IN NN TO NN NNS NNP . Paul and Rachel Chandler were headed to Tanzania on a trip that started in the Seychelles when they sent a distress signal October 23 off the coast of Somalia . NNP CC NNP NNP VBD VBN TO NNP IN DT NN WDT VBD IN DT NNS WRB PRP VBD DT NN NN NNP CD IN DT NN IN NNP . Their yacht , the Lynn Rival , later was found empty in waters off East Africa . PRP$ NN , DT NNP NNP , RB VBD VBN JJ IN NNS IN NNP NNP . Chandler has since spoken several times to reporters and said he and his wife are doing well . NNP VBZ IN VBN JJ NNS TO NNS CC VBD PRP CC PRP$ NN VBP VBG RB . In recent months , France and the United States have used military force to rescue hostages , while at other times , foreign hostages have been released after ransoms were paid . IN JJ NNS , NNP CC DT NNP NNPS VBP VBN JJ NN TO VB NNS , IN IN JJ NNS , JJ NNS VBP VBN VBN IN NNS VBD VBN . There have been persistent high-seas hijackings in recent years in waters off east Africa , despite a growing armada of international warships to secure the area . EX VBP VBN JJ NNS NNS IN JJ NNS IN NNS IN JJ NNP , IN DT VBG NN IN JJ NNS TO VB DT NN . Al-Qaida-linked terrorists in Iraq say they have killed Egypt 's top envoy , who was kidnapped late last week in the Iraqi capital . JJ NNS IN NNP VBP PRP VBP VBN NNP POS NN NN , WP VBD VBN RB JJ NN IN DT JJ NN . A video posted on a website Thursday , showed a blindfolded man believed to be Egyptian Ambassador Ihab al-Sherif . DT NN VBN IN DT JJ NNP , VBD DT JJ NN VBN TO VB JJ NN NNP NNP . The tape did not show the killing , and has not been authenticated . DT NN VBD RB VB DT NN , CC VBZ RB VBN VBN . The diplomat was kidnapped off a Baghdad street on Saturday as he stopped to buy a newspaper . DT NN VBD VBN RP DT NNP NN IN NNP IN PRP VBD TO VB DT NN . Meanwhile , Iraqi police say twin car bombs have killed at least 13 people and wounded nearly 30 others south of Baghdad in the town of Mashruh . RB , JJ NNS VBP JJ NN NNS VBP VBN IN JJS CD NNS CC VBN RB CD NNS RB IN NNP IN DT NN IN NNP . In Mosul , authorities say three Iraqis were killed and more than 40 others wounded by insurgent mortar fire apparently aimed at police stations in the central city . IN NNP , NNS VBP CD NNS VBD VBN CC JJR IN CD NNS VBN IN JJ NN NN RB VBN IN NN NNS IN DT JJ NN . Israeli medical officials say former Prime Minister Ariel Sharon has been transferred to the intensive care unit of a Tel Aviv hospital for kidney dialysis . JJ JJ NNS VBP JJ NNP NNP NNP NNP VBZ VBN VBN TO DT JJ NN NN IN DT NNP NNP NN IN NN NN . The 78-year-old former political leader has been in a coma for six months , since suffering a massive stroke on January 4 . DT JJ JJ JJ NN VBZ VBN IN DT NN IN CD NNS , IN VBG DT JJ NN IN NNP CD . A hospital spokesperson , Anat Dolev , said Mr. Sharon was taken to intensive care Wednesday so doctors could remove excess fluids that have accumulated in his body as a result of kidney failure . DT NN NN , NNP NNP , VBD NNP NNP VBD VBN TO JJ NN NNP IN NNS MD VB JJ NNS WDT VBP VBN IN PRP$ NN IN DT NN IN NN NN . Earlier in the week , hospital officials said that Mr. Sharon 's condition had deteriorated , noting the accumulation of fluids and changes in his brain tissue . RBR IN DT NN , NN NNS VBD IN NNP NNP POS NN VBD VBN , VBG DT NN IN NNS CC NNS IN PRP$ NN NN . China has announced a new outbreak of bird flu virus among birds in its northwestern region of Ningxia . NNP VBZ VBN DT JJ NN IN NN NN NN IN NNS IN PRP$ JJ NN IN NNP . China 's Agriculture Ministry says the outbreak of the deadly H5N1 virus was found in Zhongwei city . NNP POS NNP NNP VBZ DT NN IN DT JJ NNP NN VBD VBN IN NNP NN . Details on how many birds were affected or whether it was among farm-raised poultry were not immediately available . NNS IN WRB JJ NNS VBD VBN CC IN PRP VBD IN JJ NN VBD RB RB JJ . China has reported nearly 40 outbreaks of bird flu in birds and poultry across China over the past year . NNP VBZ VBN RB CD NNS IN NN NN IN NNS CC NN IN NNP IN DT JJ NN . The country 's human bird flu infections stands at 19 , 12 of whom have died . DT NN POS JJ NN NN NNS VBZ IN CD , CD IN WP VBP VBN . The World Health Organization says the H5N1 strain of the virus has killed at least 130 people since reappearing in Asia in 2003 . DT NNP NNP NNP VBZ DT NNP NN IN DT NN VBZ VBN IN JJS CD NNS IN VBG IN NNP IN CD . Most of the victims have gotten the disease from animals , but health experts fear the virus may change into a form easily passed between humans . JJS IN DT NNS VBP VBN DT NN IN NNS , CC NN NNS VBP DT NN MD VB IN DT NN RB VBN IN NNS . The first witness to appear in person at the trial of Saddam Hussein has given graphic testimony about the 1982 killing of more than 140 people in a mainly Shi'ite town . DT JJ NN TO VB IN NN IN DT NN IN NNP NNP VBZ VBN JJ NN IN DT CD NN IN JJR IN CD NNS IN DT RB JJ NN . Ahmed Mohammed Hassem said he knew several people killed in Dujail after an assassination attempt on Saddam there . NNP NNP NNP VBD PRP VBD JJ NNS VBN IN NNP IN DT NN NN IN NNP RB . His testimony was interrupted by exchanges with one of Saddam 's seven co-defendants - his half-brother Barzan Ibrahim . PRP$ NN VBD VBN IN NNS IN CD IN NNP POS CD NNS IN PRP$ NN NNP NNP . Before the judge adjourned proceedings , Saddam told the court he is not afraid of execution . IN DT NN VBD NNS , NNP VBD DT NN PRP VBZ RB JJ IN NN . He earlier yelled out ' long live Iraq , long live the Arab state . ' PRP RB VBD RP `` RB VBP NNP , RB VBP DT JJ NN . `` Court officials say the trial will resume Tuesday . NNP NNS VBP DT NN MD VB NNP . Also Monday , one of Saddam 's lawyers , former U.S. Attorney General Ramsey Clark , demanded better security for defense lawyers , two of whom have been killed . RB NNP , CD IN NNP POS NNS , JJ NNP NNP NNP NNP NNP , VBD JJR NN IN NN NNS , CD IN WP VBP VBN VBN . On Sunday , Iraqi authorities said they had foiled an insurgent plot to bomb the trial during Monday 's proceedings . IN NNP , JJ NNS VBD PRP VBD VBN DT JJ NN TO VB DT NN IN NNP POS NNS . Kid Rock wo n't face charges after a woman claimed he pushed her headfirst into a snowbank after a night of drinking . NNP NNP MD RB VB NNS IN DT NN VBD PRP VBD PRP$ NN IN DT NN IN DT NN IN NN . The 36-year-old rock singer - real name Bob Ritchie - now says he 'll sue the 28-year-old woman for filing a FALSE police report . DT JJ NN NN IN JJ NN NNP NNP : RB VBZ PRP MD VB DT JJ NN IN VBG DT JJ NN NN . She alleged that Kid Rock roughed her up after meeting her and a male friend at a bar in the Midwestern state of Michigan , and then inviting them to his house . PRP VBD IN NNP NNP VBD PRP RP IN VBG PRP CC DT JJ NN IN DT NN IN DT JJ NN IN NNP , CC RB VBG PRP TO PRP$ NN . Prosecutors said March 16 that insufficient evidence existed to charge Kid Rock with a crime . NNS VBD NNP CD IN JJ NN VBD TO VB NNP NNP IN DT NN . Kid Rock made headlines last year after marrying - and divorcing - actress Pamela Anderson in a four-month span . NNP NNP VBD NNS JJ NN IN VBG : CC VBG : NN NNP NNP IN DT JJ NN . Rival factions in Kenya have clashed again in an increasingly violent campaign over a constitutional referendum , as authorities appealed for calm and vowed to punish anyone provoking unrest . NNP NNS IN NNP VBP VBN RB IN DT RB JJ NN IN DT JJ NN , IN NNS VBD IN NN CC VBD TO VB DT VBG NN . Police say Thursday 's riot in the central town of Garissa began when supporters of the referendum tried to disrupt a rally held by opponents of the constitution . NNS VBP NNP POS NN IN DT JJ NN IN NNP VBD WRB NNS IN DT NN VBD TO VB DT NN VBN IN NNS IN DT NN . Police restored order after the crowd hurled rocks , bananas - the ballot symbol for a ' yes ' vote - and oranges , representing a ' no ' vote . NNS VBD NN IN DT NN VBD NNS , NNS IN DT NN NN IN DT `` UH `` NN : CC NNS , VBG DT `` DT `` NN . At least one person was injured . IN JJS CD NN VBD VBN . Kenyans are to vote on a new proposed constitution in a national referendum on November 21 . NNS VBP TO VB IN DT JJ VBN NN IN DT JJ NN IN NNP CD . The 197-page document allows Kenyan President Mwai Kibaki to retain his wide-ranging powers . DT JJ NN VBZ JJ NNP NNP NNP TO VB PRP$ JJ NNS . Opponents say it fails to establish a strong prime ministerial post , which they argue is needed to balance the president 's authority . NNS VBP PRP VBZ TO VB DT JJ JJ JJ NN , WDT PRP VBP VBZ VBN TO VB DT NN POS NN . Election officials in East Timor say there were many ' inconsistencies ' in the country 's presidential election last Monday . NN NNS IN NNP NNP VBP EX VBD JJ `` NNS `` IN DT NN POS JJ NN JJ NNP . The reported inconsistencies range from poor organization to discrepancies between the number of voters and the votes cast . DT JJ NNS VBP IN JJ NN TO NNS IN DT NN IN NNS CC DT NNS NN . Several districts , including the capital , Dili , had problems . JJ NNS , VBG DT NN , NNP , VBD NNS . A spokesman for the National Electoral Commission Martinho Gusmao told a news conference Friday that voting officials have just 72 hours to resolve the issues before official results are announced on Monday . DT NN IN DT NNP NNP NNP NNP NNP VBD DT NN NN NNP IN NN NNS VBP RB CD NNS TO VB DT NNS IN JJ NNS VBP VBN IN NNP . Election officials have rejected a request from several candidates for a recount . NN NNS VBP VBN DT NN IN JJ NNS IN DT NN . Unofficial results show ruling party Prime Minister Jose Ramos-Horta and parliament chief Francisco ' Lu Olo ' Guterres will be competing in a runoff election . JJ NNS VBP VBG NN NNP NNP NNP NNP CC NN NN NNP `` NNP NNP `` NNPS MD VB VBG IN DT NN NN . East Timor has been struggling to strengthen its democracy since voting for independence from Indonesia in 1999 . NNP NNP VBZ VBN VBG TO VB PRP$ NN IN NN IN NN IN NNP IN CD . Police in Kenya have detained a Somali minister and two lawmakers for their role in a bloody brawl that broke out during a parliamentary session of the Somali government-in-exile . NNS IN NNP VBP VBN DT JJ NN CC CD NNS IN PRP$ NN IN DT JJ NN WDT VBD RP IN DT JJ NN IN DT JJ NN . The fight on Thursday took place during a contentious vote over the deployment of peacekeepers to Somalia . DT NN IN NNP VBD NN IN DT JJ NN IN DT NN IN NNS TO NNP . Television footage showed lawmakers beating each other with walking sticks and throwing chairs and books at each other at a hotel in Nairobi where parliament is meeting . NN NN VBD NNS VBG DT NN IN VBG NNS CC VBG NNS CC NNS IN DT NN IN DT NN IN NNP WRB NN VBZ NN . Police say one of those detained is Somali trade minister , Musa Sudi Yalahow . NNS VBP CD IN DT VBN VBZ JJ NN NN , NNP NNP NNP . Somali lawmakers are divided over whether to allow peacekeepers into Somalia from bordering countries . JJ NNS VBP VBN IN IN TO VB NNS IN NNP IN VBG NNS . Friday , East African officials attempted to defuse the situation , saying the first group of peacekeepers would only come from countries that do not border Somalia . NNP , NNP NNP NNS VBD TO VB DT NN , VBG DT JJ NN IN NNS MD RB VB IN NNS WDT VBP RB VB NNP . The World Health Organization has confirmed Burma 's first human case of bird flu . DT NNP NNP NNP VBZ VBN NNP POS JJ JJ NN IN NN NN . Based on information provided by the Burmese Ministry of Health , the WHO identified the victim as a seven-year-old girl from eastern Shan State . VBN IN NN VBN IN DT JJ NNP IN NNP , DT NNP VBD DT NN IN DT JJ NN IN JJ NNP NNP . Officials say she developed symptoms of the disease last month in an area where there had been an outbreak of the H5N1 virus in poultry . NNS VBP PRP VBD NNS IN DT NN JJ NN IN DT NN WRB EX VBD VBN DT NN IN DT NNP NN IN NN . The girl survived the disease . DT NN VBD DT NN . Seven countries in East Asia have reported human cases of the potentially deadly H5N1 virus . CD NNS IN NNP NNP VBP VBN JJ NNS IN DT RB JJ NNP NN . The two with the greatest number of cases are Indonesia and Vietnam . DT CD IN DT JJS NN IN NNS VBP NNP CC NNP . More than 200 people in 13 countries have died from the disease since 2003 . JJR IN CD NNS IN CD NNS VBP VBN IN DT NN IN CD . A second group that says it has links to the al-Qaida terrorist network has claimed responsibility for Thursday 's attacks in London . DT JJ NN WDT VBZ PRP VBZ NNS TO DT NNP JJ NN VBZ VBN NN IN NNP POS NNS IN NNP . Injured tube passengers are escorted away from Edgware Road Tube Station in London following explosion , Thursday A group calling itself the ' Abu Hafs al-Masri Brigades ' posted a statement on an Arabic language Islamist website Saturday , congratulating itself for the bombings on three subway trains and one bus in the central part of the British capital . JJ NN NNS VBP VBN RB IN NNP NNP NNP NNP IN NNP VBG NN , NNP NNP NN VBG PRP DT `` NNP NNP NNP NNP `` VBD DT NN IN DT JJ NN NNP NNP NNP , VBG PRP IN DT NNS IN CD NN NNS CC CD NN IN DT JJ NN IN DT JJ NN . The same group also claimed responsibility for the March , 2004 Madrid train bombings that killed nearly 200 people . DT JJ NN RB VBD NN IN DT NNP , CD NNP NN NNS WDT VBD RB CD NNS . Just hours after Thursday 's bombings , a group calling itself ' The Secret Organization of al-Qaida in Europe ' issued a statement on another Arabic language Islamist website claiming responsibility for the attacks . RB NNS IN NNP POS NNS , DT NN VBG PRP `` DT NNP NNP IN NNP IN NNP `` VBN DT NN IN DT JJ NN NN JJ VBG NN IN DT NNS . Neither claim has been verified . DT NN VBZ VBN VBN . Britain says it will extradite a computer expert to the United States to face terrorism charges . NNP VBZ PRP MD VB DT NN NN TO DT NNP NNPS TO VB NN NNS . Home Secretary Charles Clarke says he has agreed to extradite 31-year-old British citizen Babar Ahmad , who is accused of running web sites in support of the al-Qaida terrorist network , Afghanistan 's ousted Taleban regime and Russia 's Chechen separatists . NNP NNP NNP NNP VBZ PRP VBZ VBN TO VB JJ JJ NN NNP NNP , WP VBZ VBN IN VBG NN NNS IN NN IN DT NNP JJ NN , NNP POS JJ NNP NN CC NNP POS JJ NNS . Mr. Ahmad has been in jail since his arrest in August 2004 under a U.S. arrest warrant . NNP NNP VBZ VBN IN NN IN PRP$ NN IN NNP CD IN DT NNP NN NN . New British laws allow the United States to seek the extradition of someone without presenting any evidence . JJ JJ NNS VBP DT NNP NNPS TO VB DT NN IN DT IN VBG DT NN . A British court ruled earlier this year that Mr. Ahmad should be extradited after the United States promised he would not be labeled an ' enemy combatant ' and imprisoned in the U.S. naval base on Guantanamo Bay , Cuba . DT JJ NN VBD RBR DT NN IN NNP NNP MD VB VBN IN DT NNP NNPS VBD PRP MD RB VB VBN DT `` NN NN `` CC VBN IN DT NNP JJ NN IN NNP NNP , NNP . The case was then passed on to Mr. Clarke . DT NN VBD RB VBN IN TO NNP NNP . Mr. Ahmad 's family is denouncing the decision , and promises to appeal . NNP NNP POS NN VBZ VBG DT NN , CC VBZ TO VB . Kurdish witnesses in northwestern Iran say security forces killed at least 11 Kurdish demonstrators in a clash Wednesday in the city of Saqiz . JJ NNS IN JJ NNP VBP NN NNS VBN IN JJS CD JJ NNS IN DT NN NNP IN DT NN IN NNP . Witnesses tell VOA that government buildings in the town were damaged in the clash . NNS VBP NNP IN NN NNS IN DT NN VBD VBN IN DT NN . They say police are heavily deployed across Saqiz . PRP VBP NNS VBP RB VBN IN NNP . The Iranian government has not commented on the reports . DT JJ NN VBZ RB VBN IN DT NNS . The protest and clash are the latest in a wave of violence across Kurdish areas of Iran following last month 's killing of a Kurdish activist by Iranian security forces . DT NN CC NN VBP DT JJS IN DT NN IN NN IN JJ NNS IN NNP VBG JJ NN POS NN IN DT JJ NN IN JJ NN NNS . A North Korean patrol boat crossed briefly into South Korean waters Sunday to seize a Chinese fishing boat that had been illegally fishing in the North . DT JJ JJ NN NN VBD RB IN JJ JJ NNS NNP TO VB DT JJ NN NN WDT VBD VBN RB VBG IN DT NNP . The patrol boat sped nearly two kilometers into the southern section of the Yellow Sea , notifying the South Korean navy that it was tracking an illegal fishing boat . DT JJ NN VBD RB CD NNS IN DT JJ NN IN DT NNP NNP , VBG DT JJ JJ NN IN PRP VBD VBG DT JJ NN NN . South Korea 's Joint Chiefs of Staff said in a statement , the South Korean navy radioed a warning about the border crossing , and 25 minutes later the patrol boat crossed back into North Korean waters . NNP NNP POS NNP NNPS IN NNP VBD IN DT NN , DT JJ JJ NN VBD DT NN IN DT NN VBG , CC CD NNS RB DT NN NN VBD RB IN JJ JJ NNS . The Yellow Sea , on the western side of the Korean Peninsula , has been the scene of deadly North and South confrontations in recent years . DT NNP NNP , IN DT JJ NN IN DT JJ NNP , VBZ VBN DT NN IN JJ NNP CC NNP NNS IN JJ NNS . The two sides have established a radio protocol to prevent future clashes . DT CD NNS VBP VBN DT NN NN TO VB JJ NNS . Activists from the environmental group Greenpeace displayed dead whales and dolphins in front of Berlin 's famed Brandenburg Gate Monday to demonstrate why it believes a whale hunting moratorium should continue . NNS IN DT JJ NN NNP VBD JJ NNS CC NNS IN NN IN NNP POS JJ NNP NNP NNP TO VB WRB PRP VBZ DT NN NN NN MD VB . Greenpeace says it found the dead mammals on various European beaches , saying some drowned while trapped in fisherman 's nets while others were badly wounded in collisions with ships . NNP VBZ PRP VBD DT JJ NNS IN JJ JJ NNS , VBG DT VBN IN VBN IN NN POS NNS IN NNS VBD RB VBN IN NNS IN NNS . Greenpeace marine biologist Stefanie Werner says 3,00,000 whales and dolphins drown in fishing nets every year and many others die from pollution , accidents with ships , or from the effects of global warming . NNP JJ NN NNP NNP VBZ CD NNS CC NNS VBN IN NN NNS DT NN CC JJ NNS VBP IN NN , NNS IN NNS , CC IN DT NNS IN JJ NN . She asked how can pro-whaling nations justify hunting them ? PRP VBD WRB MD JJ NNS VB VBG PRP . The International Whaling Commission meets next week in Anchorage , Alaska , where Iceland , Japan , and Norway are expected to push to end a worldwide ban on commercial whaling . DT NNP NNP NNP VBZ JJ NN IN NNP , NNP , WRB NNP , NNP , CC NNP VBP VBN TO VB TO VB DT JJ NN IN JJ NN . Whaling is a tradition and an industry for many in those countries . NN VBZ DT NN CC DT NN IN JJ IN DT NNS . Police in Nepal 's capital have arrested a senior opposition party official ahead of a planned protest . NNS IN NNP POS NN VBP VBN DT JJ NN NN NN RB IN DT JJ NN . Police detained Arjun Narsingh , spokesman of the Nepali Congress Party , outside the party 's offices in Kathmandu . NNP VBD NNP NNP , NN IN DT NNP NNP NNP , IN DT NN POS NNS IN NNP . Mr. Narsingh had called a party meeting to plan demonstrations on Friday - Nepal 's Democracy Day - against the new royal government . NNP NNP VBD VBN DT NN NN TO VB NNS IN NNP IN NNP POS NNP NNP : IN DT JJ JJ NN . Nepal 's King Gyanendra dismissed the previous government and declared a state of emergency two weeks ago because of what he said was its failure to put down a growing Maoist rebellion . NNP POS NNP NNP VBD DT JJ NN CC VBD DT NN IN NN CD NNS RB IN IN WP PRP VBD VBD PRP$ NN TO VB RP DT VBG NN NN . Outside Nepal the power grab has been widely criticized and several nations , including the United States , some EU countries and Nepal 's close ally India , have recalled their ambassadors for consultations . IN NNP DT NN NN VBZ VBN RB VBN CC JJ NNS , VBG DT NNP NNPS , DT NNP NNS CC NNP POS JJ NN NNP , VBP VBN PRP$ NNS IN NNS . An Iranian news agency says authorities have reinstated 300 more candidates ahead of next month 's parliamentary elections , bringing the total reinstated in the past week to almost 600 . DT JJ NN NN VBZ NNS VBP VBN CD JJR NNS RB IN JJ NN POS JJ NNS , VBG DT JJ VBN IN DT JJ NN TO RB CD . Iran 's official news agency , IRNA , quotes an official as saying the candidates ' names will be released later Saturday . NNP POS JJ NN NN , NNP , VBZ DT NN IN VBG DT NNS POS NNS MD VB VBN RB NNP . Iran 's Interior Ministry banned more than 2,200 candidates , mostly reformists , from competing in the March 14 vote . NNP POS NNP NNP VBD JJR IN CD NNS , RB NNS , IN VBG IN DT NNP CD NN . Several days ago , Iran 's highest oversight body , the Guardian Council , said that it had reinstated 280 of those candidates . JJ NNS RB , NNP POS JJS NN NN , DT NNP NNP , VBD IN PRP VBD VBN CD IN DT NNS . Iranian authorities can disqualify candidates who are not deemed as showing sufficient loyalty to Iran 's Islamic system . JJ NNS MD VB NNS WP VBP RB VBN IN VBG JJ NN TO NNP POS JJ NN . Reformists and conservatives have strongly criticized the mass disqualifications , warning that they undermine the election process . NNS CC NNS VBP RB VBN DT NN NNS , VBG IN PRP VBP DT NN NN . British Prime Minister Tony Blair has again defended plans to toughen anti-terrorism laws and detain suspects for three months without charge . JJ NNP NNP NNP NNP VBZ RB VBN NNS TO VB JJ NNS CC NN NNS IN CD NNS IN NN . Mr. Blair told his monthly news conference in London that police have made compelling arguments to extend the length of detention from its current two weeks . NNP NNP VBD PRP$ JJ NN NN IN NNP IN NNS VBP VBN JJ NNS TO VB DT NN IN NN IN PRP$ JJ CD NNS . He says authorities are fighting a new kind of terrorism , which requires more time to investigate and often the cooperation of foreign agencies . PRP VBZ NNS VBP VBG DT JJ NN IN NN , WDT VBZ JJR NN TO VB CC RB DT NN IN JJ NNS . But civil rights activists and opposition politicians say the changes are counterproductive and will undermine efforts by authorities to get more cooperation from Britain 's Muslim community . CC JJ NNS NNS CC NN NNS VBP DT NNS VBP JJ CC MD VB NNS IN NNS TO VB JJR NN IN NNP POS NNP NN . Mr. Blair proposed the new laws , which would also allow authorities to deport extremists , after the July 7 suicide bombings in London that killed 52 people . NNP NNP VBD DT JJ NNS , WDT MD RB VB NNS TO VB NNS , IN DT NNP CD NN NNS IN NNP WDT VBD CD NNS . Venezuelan President Hugo Chavez warns that he will not renew the license of a television station he accuses of backing a failed coup against him in 2002 . JJ NNP NNP NNP VBZ IN PRP MD RB VB DT NN IN DT NN NN PRP VBZ IN VBG DT VBN NN IN PRP IN CD . Mr. Chavez said in a speech Thursday to the military that the concession for Radio Caracas Television will end in March . NNP NNP VBD IN DT NN NNP TO DT NN IN DT NN IN NNP NNP NNP MD VB IN NNP . Earlier , the information minister , William Lara , said the broadcaster 's license would expire next May . RB , DT NN NN , NNP NNP , VBD DT NN POS NN MD VB JJ NNP . Mr. Chavez also said he will not tolerate any media outlets that support efforts to remove him from power . NNP NNP RB VBD PRP MD RB VB DT NNS NNS WDT VBP NNS TO VB PRP IN NN . There was no immediate response from the Caracas-based station . EX VBD DT JJ NN IN DT JJ NN . President Chavez has repeatedly denounced RCTV and other pro-opposition broadcasters for what he says is overly critical coverage of his government . NNP NNP VBZ RB VBN NNP CC JJ JJ NNS IN WP PRP VBZ VBZ RB JJ NN IN PRP$ NN . The press rights group Reporters Without Borders has urged Venezuela to end its efforts to shut down RCTV . DT NN NNS NN NNP NNP NNP VBZ VBN NNP TO VB PRP$ NNS TO VB RP NNP . The death toll from Saturday 's collapse of a metal exposition hall roof in the southern Polish city of Katowice continues to climb . DT NN NN IN NNP POS NN IN DT NN NN NN NN IN DT JJ JJ NN IN NNP VBZ TO VB . Officials now say they have pulled at least 26 bodies from the rubble . NNS RB VBP PRP VBP VBN IN JJS CD NNS IN DT NN . A spokesman for the government of the Silesia region , where Katowice is located , said another 130 were injured . DT NN IN DT NN IN DT NNP NN , WRB NNP VBZ VBN , VBD DT CD VBD VBN . Police say about 500 people from Poland and other countries across Europe were inside the facility attending a homing pigeon exhibition . NNS VBP IN CD NNS IN NNP CC JJ NNS IN NNP VBD IN DT NN VBG DT NN NN NN . Officials say several foreigners were believed to be among the casualties , but there are conflicting reports about their nationalities and condition . NNS VBP JJ NNS VBD VBN TO VB IN DT NNS , CC EX VBP VBG NNS IN PRP$ NNS CC NN . Officials say the collapse was likely the result of the weight of snow on the roof after heavy snows and an arctic freeze that swept through Poland and neighboring countries this week . NNS VBP DT NN VBD JJ DT NN IN DT NN IN NN IN DT NN IN JJ NNS CC DT JJ NN WDT VBD IN NNP CC JJ NNS DT NN . Temperatures plunged to minus 15 degrees Celsius as rescue efforts continued . NNS VBD TO CC CD NNS NNP IN NN NNS VBD . Israeli troops and tanks entered the northern Gaza Strip Sunday , hours after Israel ended an operation against Palestinian militants in southern Gaza . JJ NNS CC NNS VBD DT JJ NNP NNP NNP , NNS IN NNP VBD DT NN IN JJ NNS IN JJ NNP . The Beit Hanoun operation began soon after Israeli forces withdrew from Khan Younis after a three-day assault . DT NNP NNP NN VBD RB IN JJ NNS VBD IN NNP NNP IN DT JJ NN . Israel says both raids were aimed at stopping militants from firing rockets and mortar shells at Israeli settlements and towns . NNP VBZ DT NNS VBD VBN IN VBG NNS IN VBG NNS CC NN NNS IN JJ NNS CC NNS . The Israeli military actions come one week before Palestinian elections to replace the late Palestinian Authority President Yasser Arafat . DT JJ JJ NNS VBP CD NN IN JJ NNS TO VB DT JJ JJ NNP NNP NNP NNP . A new opinion survey by the Palestinian Center for Policy and Survey Research shows Palestine Liberation Organization chairman Mahmoud Abbas with a 65-to-22 percent lead over his nearest rival , Mustafa Barghouti . DT JJ NN NN IN DT JJ NNP IN NNP CC NNP NNP VBZ NNP NNP NNP NN NNP NNP IN DT JJ NN NN IN PRP$ JJS NN , NNP NNP . Mr. Abbas has vowed to protect Palestinian militants from Israeli raids . NNP NNP VBZ VBN TO VB JJ NNS IN JJ NNS . He also has criticized attacks on Israelis , saying they are not productive . PRP RB VBZ VBN NNS IN NNS , VBG PRP VBP RB JJ . An auction house in Hong Kong has broken the price-per-carat record for a gemstone auctioned off , with the sale of a six-carat blue diamond at nearly $ 8 million . DT NN NN IN NNP NNP VBZ VBN DT NN NN IN DT NN VBN RP , IN DT NN IN DT JJ JJ NN IN RB $ CD CD . Sotheby 's of Hong Kong announced the sale Monday , noting that the price comes out to $ 1.32 million a carat . NNP POS IN NNP NNP VBD DT NN NNP , VBG IN DT NN VBZ RP TO $ CD CD DT NN . The sale bested a 20-year record held by a diamond known as the ' Hancock Red ' that fetched just over $ 9,00,000 per carat in 1987 . DT NN VBD DT JJ NN VBN IN DT NN VBN IN DT `` NNP NNP `` WDT VBD RB IN $ CD IN NN IN CD . The buyer for the diamond is Moussaieff Jewelers , a London-based jeweler that collects rare gemstones . DT NN IN DT NN VBZ NNP NNPS , DT JJ NN WDT VBZ JJ NNS . The diamond is said to be in perfect condition with a rare , vivid blue color - the result of the element boron in the stone 's crystal structure . DT NN VBZ VBN TO VB IN JJ NN IN DT JJ , JJ JJ NN IN DT NN IN DT NN NN IN DT NN POS JJ NN . The Iraqi government 's top executive body , called the president 's council , has issued a controversial law that allows some former members of Saddam Hussein 's Baath Party to return to government service . DT JJ NN POS JJ NN NN , VBD DT NN POS NN , VBZ VBN DT JJ NN WDT VBZ DT JJ NNS IN NNP NNP POS NNP NNP TO VB TO NN NN . The Kurdish , Jalal Talabani , and Shi'ite , Adel Abdul-Mahdi , representatives of the three-member presidency council issued the law Sunday despite the objection of the Sunni representative , Tareq al-Hashemi . DT NNP , NNP NNP , CC NNP , NNP NNP , NNS IN DT JJ NN NN VBD DT NN NNP IN DT NN IN DT NNP NN , NNP NNP . Sunni politicians say the law contains provisions that will force out many current government workers . NNP NNS VBP DT NN VBZ NNS WDT MD VB RP JJ JJ NN NNS . The law is one of 18 pieces of so-called benchmark legislation aimed at achieving reconciliation among Iraq 's Kurdish , Sunni Arab and Shi'ite communities . DT NN VBZ CD IN CD NNS IN JJ JJ NN VBN IN VBG NN IN NNP POS NNP , NNP NNP CC NNP NNS . Meanwhile , the U.S. military says the bodies of four Iraqi militia members working with U.S. forces were recovered in Baquba Sunday . RB , DT NNP NN VBZ DT NNS IN CD JJ NN NNS VBG IN NNP NNS VBD VBN IN NNP NNP . The military also said coalition forces killed three suspected terrorists and captured 36 others in the last two days in operations in central and northern Iraq . DT NN RB VBD NN NNS VBD CD JJ NNS CC VBD CD NNS IN DT JJ CD NNS IN NNS IN JJ CC JJ NNP . Bosnian officials say DNA tests on human remains taken from mass graves have identified 50 victims of the war in Croatia in the early 1990s . JJ NNS VBP NN NNS IN JJ NNS VBN IN NN NNS VBP VBN CD NNS IN DT NN IN NNP IN DT JJ NNS . Experts in Bosnian and Croatian laboratories compared the DNA with blood samples taken from more than 750 families who have reported missing relatives . NNS IN JJ CC JJ NNS VBN DT NN IN NN NNS VBN IN JJR IN CD NNS WP VBP VBN VBG NNS . Fifty of the samples led to positive identifications . CD IN DT NNS VBD TO JJ NNS . A Bosnian official calls the results extraordinary . DT JJ NN VBZ DT NNS JJ . The Sarajevo-based International Commission for Missing Persons runs one of the world 's most sophisticated DNA laboratories DT JJ NNP NNP IN VBG NNS VBZ CD IN DT NN POS RBS JJ NN NNS The lab helped identify victims of the September 11 , 2001 terror attacks on the United States and last year 's Asian tsunami . DT NN VBD VB NNS IN DT NNP CD , CD NN NNS IN DT NNP NNPS CC JJ NN POS JJ NN . The United States has announced it is giving $ 40 million worth of food aid to Bangladesh , which is facing shortages after flooding and a devastating cyclone last year . DT NNP NNPS VBZ VBN PRP VBZ VBG $ CD CD NN IN NN NN TO NNP , WDT VBZ VBG NNS IN NN CC DT JJ NN JJ NN . U.S. Ambassador to Bangladesh James Moriarty said Sunday in Dhaka the aid will go to school children , along with cyclone and flood victims . NNP NNP TO NNP NNP NNP VBD NNP IN NNP DT NN MD VB TO NN NNS , IN IN NN CC NN NNS . Last year 's Cyclone Sidr killed an estimated 3,500 people and left another two million homeless . JJ NN POS NNP NNP VBD DT JJ CD NNS CC VBD DT CD CD NN . The cyclone also destroyed roughly two million tons of rice . DT NN RB VBD RB CD CD NNS IN NN . The Bangladeshi government has said this year 's rice crop looks like it will be plentiful , but it is still anticipating possible rice shortages . DT JJ NN VBZ VBN DT NN POS NN NN VBZ IN PRP MD VB JJ , CC PRP VBZ RB VBG JJ NN NNS . Bermuda enjoys the third highest per capita income in the world , more than 50 % higher than that of the US ; the average cost of a house by the mid-2000s exceeded $ 10,00,000 . NNP VBZ DT JJ JJS IN NN NN IN DT NN , JJR IN CD NN JJR IN DT IN DT NNP ; DT JJ NN IN DT NN IN DT NNS VBD $ CD . Its economy is primarily based on providing financial services for international business and luxury facilities for tourists . PRP$ NN VBZ RB VBN IN VBG JJ NNS IN JJ NN CC NN NNS IN NNS . A number of reinsurance companies relocated to the island following the 11 September 2001 attacks and again after Hurricane Katrina in August 2005 contributing to the expansion of an already robust international business sector . DT NN IN NN NNS VBD TO DT NN VBG DT CD NNP CD NNS CC RB IN NNP NNP IN NNP CD VBG TO DT NN IN DT RB JJ JJ NN NN . Bermuda 's tourism industry - which derives over 80 % of its visitors from the US - continues to struggle but remains the island 's number two industry . NNP POS NN NN : WDT VBZ IN CD NN IN PRP$ NNS IN DT NNP : VBZ TO VB CC VBZ DT NN POS NN CD NN . Most capital equipment and food must be imported . JJS NN NN CC NN MD VB VBN . Bermuda 's industrial sector is largely focused on construction and agriculture is limited , with only 20 % of the land being arable . NNP POS JJ NN VBZ RB VBN IN NN CC NN VBZ VBN , IN RB CD NN IN DT NN VBG JJ . The former French colony of Ubangi-Shari became the Central African Republic upon independence in 1960 . DT JJ JJ NN IN NNP VBD DT NNP NNP NNP IN NN IN CD . After three tumultuous decades of misrule - mostly by military governments - civilian rule was established in 1993 and lasted for one decade . IN CD JJ NNS IN NN : RB IN JJ NNS IN JJ NN VBD VBN IN CD CC VBD IN CD NN . President Ange-Felix PATASSE 's civilian government was plagued by unrest , and in March 2003 he was deposed in a military coup led by General Francois BOZIZE , who established a transitional government . NNP NNP NNP POS JJ NN VBD VBN IN NN , CC IN NNP CD PRP VBD VBN IN DT JJ NN VBN IN NNP NNP NNP , WP VBD DT JJ NN . Though the government has the tacit support of civil society groups and the main parties , a wide field of candidates contested the municipal , legislative , and presidential elections held in March and May of 2005 in which General BOZIZE was affirmed as president . IN DT NN VBZ DT JJ NN IN JJ NN NNS CC DT JJ NNS , DT JJ NN IN NNS VBD DT JJ , JJ , CC JJ NNS VBN IN NNP CC NNP IN CD IN WDT NNP NNP VBD VBN IN NN . The government still does not fully control the countryside , where pockets of lawlessness persist . DT NN RB VBZ RB RB VB DT NN , WRB NNS IN NN VBP . Unrest in the neighboring nations of Chad , Sudan , and the DRC continues to affect stability in the Central African Republic as well . NNP IN DT JJ NNS IN NNP , NNP , CC DT NNP VBZ TO VB NN IN DT NNP NNP NNP RB RB . The Gilbert Islands became a British protectorate in 1892 and a colony in 1915 ; they were captured by the Japanese in the Pacific War in 1941 . DT NNP NNP VBD DT JJ NN IN CD CC DT NN IN CD ; PRP VBD VBN IN DT NNS IN DT NNP NNP IN CD . The islands of Makin and Tarawa were the sites of major US amphibious victories over entrenched Japanese garrisons in 1943 . DT NNS IN NNP CC NNP VBD DT NNS IN JJ NNP JJ NNS IN JJ JJ NNS IN CD . The Gilbert Islands were granted self-rule by the UK in 1971 and complete independence in 1979 under the new name of Kiribati . DT NNP NNP VBD VBN JJ IN DT NNP IN CD CC JJ NN IN CD IN DT JJ NN IN NNP . The US relinquished all claims to the sparsely inhabited Phoenix and Line Island groups in a 1979 treaty of friendship with Kiribati . DT NNP VBD DT NNS TO DT RB JJ NNP CC NNP NNP NNS IN DT CD NN IN NN IN NNP . Spain 's mixed capitalist economy is the 12th largest in the world , and its per capita income roughly matches that of Germany and France . NNP POS JJ JJ NN VBZ DT JJ JJS IN DT NN , CC PRP$ IN NN NN RB VBZ IN IN NNP CC NNP . However , after almost 15 years of above average GDP growth , the Spanish economy began to slow in late 2007 and entered into a recession in the second quarter of 2008 . RB , IN RB CD NNS IN IN JJ NN NN , DT JJ NN VBD TO VB IN JJ CD CC VBD IN DT NN IN DT JJ NN IN CD . GDP contracted by 3.7 % in 2009 , ending a 16-year growth trend , and by another 0.2 % in 2010 , making Spain the last major economy to emerge from the global recession . NN VBD IN CD NN IN CD , VBG DT JJ NN NN , CC IN DT CD NN IN CD , VBG NNP DT JJ JJ NN TO VB IN DT JJ NN . The reversal in Spain 's economic growth reflected a significant decline in construction amid an oversupply of housing and falling consumer spending , while exports actually have begun to grow . DT NN IN NNP POS JJ NN VBD DT JJ NN IN NN IN DT NN IN NN CC VBG NN NN , IN NNS RB VBP VBN TO VB . Government efforts to boost the economy through stimulus spending , extended unemployment benefits , and loan guarantees did not prevent a sharp rise in the unemployment rate , which rose from a low of about 8 % in 2007 to 20 % in 2010 . NN NNS TO VB DT NN IN NN NN , VBN NN NNS , CC NN NNS VBD RB VB DT JJ NN IN DT NN NN , WDT VBD IN DT NN IN IN CD NN IN CD CC CD NN IN CD . The government budget deficit worsened from 3.8 % of GDP in 2008 to 9.2 % of GDP in 2010 , more than three times the euro-zone limit . DT NN NN NN VBD IN CD NN IN NN IN CD TO CD NN IN NN IN CD , JJR IN CD NNS DT NN NN . Spain 's large budget deficit and poor economic growth prospects have made it vulnerable to financial contagion from other highly-indebted euro zone members despite the government 's efforts to cut spending , privatize industries , and boost competitiveness through labor market reforms . NNP POS JJ NN NN CC JJ JJ NN NNS VBP VBN PRP JJ TO JJ NN IN JJ JJ NN NN NNS IN DT NN POS NNS TO VB NN , NN NNS , CC NN NN IN NN NN NNS . Spanish banks ' high exposure to the collapsed domestic construction and real estate market also poses a continued risk for the sector . JJ NNS POS JJ NN TO DT JJ JJ NN CC JJ NN NN RB VBZ DT JJ NN IN DT NN . The government oversaw a restructuring of the savings bank sector in 2010 , and provided some $ 15 billion in capital to various institutions . DT NN VBD DT NN IN DT NNS NN NN IN CD , CC VBD DT $ CD CD IN NN TO JJ NNS . Investors remain concerned that Madrid may need to bail out more troubled banks . NNS VBP JJ IN NNP MD VB TO VB RP JJR JJ NNS . The Bank of Spain , however , is seeking to boost confidence in the financial sector by pressuring banks to come clean about their losses and consolidate into stronger groups . DT NNP IN NNP , RB , VBZ VBG TO VB NN IN DT JJ NN IN VBG NNS TO VB JJ IN PRP$ NNS CC VB IN JJR NNS . A CROW in great want of food saw a Serpent asleep in a sunny nook , and flying down , greedily seized him . DT NN IN JJ VBP IN NN VBD DT NN JJ IN DT JJ NN , CC VBG RB , RB VBD PRP . The Serpent , turning about , bit the Crow with a mortal wound . DT NN , VBG RB , RB DT NN IN DT JJ NN . In the agony of death , the bird exclaimed : IN DT NN IN NN , DT NN VBD : ' O unhappy me ! who have found in that which I deemed a happy windfall the source of my destruction . ' `` NNP JJ PRP . WP VBP VBN IN DT WDT PRP VBD DT JJ NN DT NN IN PRP$ NN . `` AT ONE TIME the Horse had the plain entirely to himself . IN CD NN DT NN VBD DT NN RB TO PRP . Then a Stag intruded into his domain and shared his pasture . RB DT NN VBD IN PRP$ NN CC VBD PRP$ NN . The Horse , desiring to revenge himself on the stranger , asked a man if he were willing to help him in punishing the Stag . DT NN , VBG TO VB PRP IN DT NN , VBD DT NN IN PRP VBD JJ TO VB PRP IN VBG DT NNP . The man replied that if the Horse would receive a bit in his mouth and agree to carry him , he would contrive effective weapons against the Stag . DT NN VBD IN IN DT NNP MD VB DT NN IN PRP$ NN CC VB TO VB PRP , PRP MD VB JJ NNS IN DT NNP . The Horse consented and allowed the man to mount him . DT NN VBD CC VBD DT NN TO VB PRP . From that hour he found that instead of obtaining revenge on the Stag , he had enslaved himself to the service of man . IN DT NN PRP VBD IN RB IN VBG NN IN DT NNP , PRP VBD VBN PRP TO DT NN IN NN . THE people of Madagonia had an antipathy to the people of Novakatka and set upon some sailors of a Novakatkan vessel , killing two and wounding twelve . DT NNS IN NNP VBD DT JJ TO DT NNS IN NNP CC VBN IN DT NNS IN DT JJ NN , VBG CD CC VBG NN . The King of Madagonia having refused either to apologise or pay , the King of Novakatka made war upon him , saying that it was necessary to show that Novakatkans must not be slaughtered . DT NN IN NNP VBG VBN DT TO VB CC VB , DT NNP IN NNP VBD NN IN PRP , VBG IN PRP VBD JJ TO VB IN NNS MD RB VB VBN . In the battles which ensued the people of Madagonia slaughtered two thousand Novakatkans and wounded twelve thousand . IN DT NNS WDT VBD DT NNS IN NNP VBD CD CD NNS CC VBD CD CD . But the Madagonians were unsuccessful , which so chagrined them that never thereafter in all their land was a Novakatkan secure in property or life . CC DT NNS VBD JJ , WDT RB VBD PRP WDT RB RB IN DT PRP$ NN VBD DT NN JJ IN NN CC NN . Softball is better than baseball because you do n't have to watch your team lose for NINE innings . NN VBZ JJR IN NN IN PRP VBP RB VB TO VB PRP$ NN VB IN CD NNS . Ukraine 's Supreme Court has halted official publication of the results of the December 26 presidential election . NNP POS NNP NNP VBZ VBN JJ NN IN DT NNS IN DT NNP CD JJ NN . The high court announced Tuesday it must first review an appeal from former Prime Minister Viktor Yanukovych , who officials say lost the race to opposition leader Viktor Yushchenko . DT JJ NN VBD NNP PRP MD RB VB DT NN IN JJ NNP NNP NNP NNP , WP NNS VBP VBN DT NN TO NN NN NNP NNP . The results must be printed in two government newspapers before the winner can be inaugurated . DT NNS MD VB VBN IN CD NN NNS IN DT NN MD VB VBN . Election officials say Mr. Yushchenko garnered 52 percent support in the court-ordered repeat election , over Mr. Yanukovych 's 44 percent . NN NNS VBP NNP NNP VBD CD NN NN IN DT JJ NN NN , IN NNP NNP POS CD NN . The former prime minister is alleging widespread fraud in the hotly contested race , and has filed a number of complaints with the Supreme Court and electoral officials . DT JJ JJ NN VBZ VBG JJ NN IN DT RB VBN NN , CC VBZ VBN DT NN IN NNS IN DT NNP NNP CC JJ NNS . The December election replaced a November run-off that the high court said was rigged in favor of Mr. Yanukovych . DT NNP NN VBD DT NNP NN IN DT JJ NN VBD VBD VBN IN NN IN NNP NNP . Top officials with the Organization for Security and Cooperation in Europe have congratulated Mr. Yushchenko on the election . JJ NNS IN DT NNP IN NNP CC NNP IN NNP VBP VBN NNP NNP IN DT NN . The child molestation trial of pop star Michael Jackson is set to begin in southern California . DT NN NN NN IN NN NN NNP NNP VBZ VBN TO VB IN JJ NNP . Lawyers are expected to begin screening the first of as many as 750 potential jurors at a Santa Barbara county court Monday for the trial that could last several months . NNS VBP VBN TO VB VBG DT NN IN RB JJ IN CD JJ NNS IN DT NNP NNP NN NN NNP IN DT NN WDT MD VB JJ NNS . Mr. Jackson faces 10 charges involving a child under the age of 14 . NNP NNP VBZ CD NNS VBG DT NN IN DT NN IN CD . He has pleaded not guilty , saying he is completely innocent . PRP VBZ VBN RB JJ , VBG PRP VBZ RB JJ . In a court-approved video statement Sunday , Mr. Jackson criticized recent leaks of grand jury testimony on the case , calling them ' malicious , disgusting and FALSE . ' IN DT JJ NN NN NNP , NNP NNP VBD JJ NNS IN JJ NN NN IN DT NN , VBG PRP `` JJ , JJ CC JJ . `` Grand jury testimony , although secret and not publicly released , is often leaked to the media . NNP NN NN , IN JJ CC RB RB VBN , VBZ RB VBN TO DT NNS . Russia 's President Vladimir Putin has made more harsh comments about the Bush administration , accusing it of using what he calls a ' nonexistent Russian threat ' to get more defense spending from Congress . NNP POS NNP NNP NNP VBZ VBN RBR JJ NNS IN DT NNP NN , VBG PRP IN VBG WP PRP VBZ DT `` JJ JJ NN `` TO VB JJR NN NN IN NNP . Mr. Putin said during a visit to Jordan Tuesday that the administration has used the ' Russian card ' to address its political problems , including the wars in Iraq and Afghanistan , and for the deployment of a missile defense system . NNP NNP VBD IN DT NN TO NNP NNP IN DT NN VBZ VBN DT `` JJ NN `` TO VB PRP$ JJ NNS , VBG DT NNS IN NNP CC NNP , CC IN DT NN IN DT NN NN NN . He said he only expressed what many other countries also believe , when he complained last week about what he described as the almost uncontained use of U.S. military force . PRP VBD PRP RB VBD WP JJ JJ NNS RB VBP , WRB PRP VBD JJ NN IN WP PRP VBD IN DT RB JJ NN IN NNP JJ NN . The White House called his remarks disappointing . DT NNP NNP VBD PRP$ NNS JJ . Last week , U.S. Defense Secretary Robert Gates spoke to a congressional committee and identified Russia as a potential threat . JJ NN , NNP NNP NNP NNP NNP VBD TO DT JJ NN CC VBN NNP IN DT JJ NN . Two armed Pakistani inmates were holed up in Afghanistan 's main prison Friday , after an escape attempt that left at least five people dead . CD JJ JJ NNS VBD VBN RP IN NNP POS JJ NN NNP , IN DT NN NN WDT VBD IN JJS CD NNS JJ . The head of the Pul-i-Charki prison in the Afghan capital , Kabul , says four inmates linked to the al-Qaida terrorist network began the uprising Friday . DT NN IN DT NNP NN IN DT JJ NN , NNP , VBZ CD NNS VBN TO DT NNP JJ NN VBD DT NN NNP . The four men , identified as one Iraqi and three Pakistanis , overpowered and killed a prison guard and seized his rifle , then killed two more guards . DT CD NNS , VBN IN CD JJ CC CD NNS , VBD CC VBD DT NN NN CC VBD PRP$ NN , RB VBD CD JJR NNS . Two of the original four prisoners died in a shootout . CD IN DT JJ CD NNS VBD IN DT NN . Reports from the scene say a shootout has been under way between the remaining two inmates and security forces surrounding the prison . NNS IN DT NN VBP DT NN VBZ VBN IN NN IN DT VBG CD NNS CC NN NNS VBG DT NN . The prison , on the outskirts of Kabul , is used to house inmates held for criminal offenses . DT NN , IN DT NNS IN NNP , VBZ VBN TO VB NNS VBN IN JJ NNS . It is separate from detention facilities operated by the United States to house captured Taliban and al-Qaida fighters . PRP VBZ JJ IN NN NNS VBN IN DT NNP NNPS TO VB VBN NNP CC NNP NNS . Iran 's intelligence minister says authorities have arrested members of a group which allegedly carried out an attack in northwestern Iran on Wednesday that killed 12 people . NNP POS NN NN VBZ NNS VBP VBN NNS IN DT NN WDT RB VBD RP DT NN IN JJ NNP IN NNP WDT VBD CD NNS . Heidar Moslehi did not publicly identify the group Thursday . NNP NNP VBD RB RB VB DT NN NNP . However , he said those responsible for what he called ' this terrorist attack ' had targeted ' unity ' between Shi'ites and Sunnis in the region . RB , PRP VBD DT JJ IN WP PRP VBD `` DT JJ NN `` VBD VBN `` NN `` IN NNS CC NNS IN DT NN . The bombing in the town of Mahabad came during a military parade marking the 30th anniversary of the start of the Iran-Iraq War . DT NN IN DT NN IN NNP VBD IN DT JJ NN VBG DT JJ NN IN DT NN IN DT NNP NNP . Officials say at least 70 others were injured in the blast . NNS VBP IN JJS CD NNS VBD VBN IN DT NN . No group has claimed responsibility . DT NN VBZ VBN NN . Local officials blamed Kurdish separatists . JJ NNS VBD NNP NNS . But a leading Kurdish faction condemned the bombing . CC DT JJ NNP NN VBD DT NN . Former Iranian President Akbar Hashemi Rafsanjani is in Iraq for talks on boosting political , religious and economic ties . JJ JJ NNP NNP NNP NNP VBZ IN NNP IN NNS IN VBG JJ , JJ CC JJ NNS . Mr. Rafsanjani , who heads the influential Expediency Council , arrived Monday in Baghdad and met with Iraqi President Jalal Talabani . NNP NNP , WP VBZ DT JJ NNP NNP , VBD NNP IN NNP CC VBD IN JJ NNP NNP NNP . Mr. Talabani was in Iran last week , as the two former foes rebuild their ties following the ouster of Iranian arch-rival , former Iraqi President Saddam Hussein . NNP NNP VBD IN NNP JJ NN , IN DT CD JJ NNS VB PRP$ NNS VBG DT NN IN JJ JJ , JJ JJ NNP NNP NNP . Mr. Talabani was seeking Iranian investment in his country , devastated in the years since the U.S.-led invasion in 2003 . NNP NNP VBD VBG JJ NN IN PRP$ NN , VBN IN DT NNS IN DT JJ NN IN CD . Washington has expressed concern about increasing ties between the two Shi'ite-majority neighbors . NNP VBZ VBN NN IN VBG NNS IN DT CD JJ NNS . It has accused Tehran of supporting anti-U.S. militants in Iraq , a charge Iran denies . PRP VBZ VBN NNP IN VBG JJ NNS IN NNP , DT NN NNP VBZ . About 7,000 Hamas supporters have held a rally in Gaza City to mark the anniversary of the assassination of the group 's founder and send a warning to Israel . IN CD NNP NNS VBP VBN DT NN IN NNP NNP TO VB DT NN IN DT NN IN DT NN POS NN CC VB DT NN TO NNP . Hamas spiritual leader Sheikh Ahmed Yassin was killed in an Israeli air strike March 22 , last year . NNP JJ NN NNP NNP NNP VBD VBN IN DT JJ NN NN NNP CD , JJ NN . Hamas leaders Friday vowed to resume attacks on Israel unless it accepts their demands for prisoner releases and other concessions . NNP NNS NNP VBD TO VB NNS IN NNP IN PRP VBZ PRP$ NNS IN NN NNS CC JJ NNS . A top Hamas official said he would participate in cease-fire talks scheduled next week in Egypt , but has not decided on whether the group will sign an agreement . DT JJ NNP NN VBD PRP MD VB IN NN NNS VBN JJ NN IN NNP , CC VBZ RB VBN IN IN DT NN MD VB DT NN . Some palestinian militants have been observing a ' cooling off ' period with Israel that was agreed to during a recent summit in Sharm el-Sheik , Egypt . DT JJ NNS VBP VBN VBG DT `` VBG RP `` NN IN NNP WDT VBD VBN TO IN DT JJ NN IN NNP NNP , NNP . India and Sri Lanka say peace talks with Tamil rebels should resume early in order to prevent the island nation from plunging back into civil war . NNP CC NNP NNP VBP NN NNS IN NNP NNS MD VB RB IN NN TO VB DT NN NN IN VBG RB IN JJ NN . The call was made after visiting Sri Lankan President Mahinda Rajapakse met with Indian Prime Minister Manmohan Singh and briefed him about his government 's efforts to restart peace talks with Tamil Tiger rebels . DT NN VBD VBN IN VBG NNP NNP NNP NNP NNP VBD IN JJ NNP NNP NNP NNP CC VBD PRP IN PRP$ NN POS NNS TO VB NN NNS IN NNP NNP NNS . An Indian spokesman said both countries agreed about the need to strengthen the almost three-year-old ceasefire , which is becoming fragile . DT JJ NN VBD DT NNS VBD IN DT NN TO VB DT RB JJ NN , WDT VBZ VBG JJ . Both the Tigers and the Sri Lankan government have agreed to hold talks , but the government insists they must take place in an Asian country , while the rebels want to hold them in Norway , which brokered a 2002 truce . DT DT NNPS CC DT NNP NNP NN VBP VBN TO VB NNS , CC DT NN VBZ PRP MD VB NN IN DT JJ NN , IN DT NNS VBP TO VB PRP IN NNP , WDT VBD DT CD NN . In New Delhi , Mr. Rajapakse is also holding talks on enhancing economic cooperation and trade relations with India . IN NNP NNP , NNP NNP VBZ RB VBG NNS IN VBG JJ NN CC NN NNS IN NNP . United Nations humanitarian agencies say they are searching for a new route into southern Lebanon to help war refugees , after Israel imposed an indefinite ban on movement in the region . NNP NNP JJ NNS VBP PRP VBP VBG IN DT JJ NN IN JJ NNP TO VB NN NNS , IN NNP VBD DT JJ NN IN NN IN DT NN . A spokeswoman for the U.N. World Food Program , Christiane Berthiaume , said Tuesday relief agencies are looking for alternative ways to provide aid to Lebanese civilians cut off by heavy fighting . DT NN IN DT NNP NNP NNP NNP , NNP NNP , VBD NNP NN NNS VBP VBG IN JJ NNS TO VB NN TO VB NNS VBN RP IN JJ NN . Aid officials say road transport is too dangerous after the Israeli military warned it would strike any vehicle traveling south of the Litani River on suspicion of transporting weapons . NN NNS VBP NN NN VBZ RB JJ IN DT JJ NN VBD PRP MD VB DT NN VBG NN IN DT NNP NNP IN NN IN VBG NNS . The U.N. spokeswoman said there are hundreds of thousands of people who need aid in Lebanon . DT NNP NN VBD EX VBP NNS IN NNS IN NNS WP VBP NN IN NNP . The World Food Program has brought 404 tons of food into the region , but she said that is not enough . DT NNP NNP NNP VBZ VBN CD NNS IN NN IN DT NN , CC PRP VBD DT VBZ RB RB . The U.N. human rights chief says Sudanese authorities are restricting press freedoms and making arbitrary arrests , as a referendum approaches on the independence of south Sudan . DT NNP NN NNS NN VBZ JJ NNS VBP VBG NN NNS CC VBG JJ NNS , IN DT NN VBZ IN DT NN IN JJ NNP . Navi Pillay said it is important the referendum is free and fair , calling it a critical moment in Sudan 's history . NNP NNP VBD PRP VBZ JJ DT NN VBZ JJ CC JJ , VBG PRP DT JJ NN IN NNP POS NN . She urged the governments of Sudan and south Sudan to quickly halt efforts to intimidate voters or taint the result of the referendum , which begins on Sunday . PRP VBD DT NNS IN NNP CC RB NNP TO RB VB NNS TO VB NNS CC NN DT NN IN DT NN , WDT VBZ IN NNP . Nearly 4 million southern Sudanese are registered to vote in the referendum , which will allow voters to secede or remain united with the north . RB CD CD JJ NNS VBP VBN TO VB IN DT NN , WDT MD VB NNS TO VB CC VB JJ IN DT NN . The vote is expected to split Africa 's largest country in two . DT NN VBZ VBN TO VB NNP POS JJS NN IN CD . The referendum is the centerpiece of the 2005 peace deal that ended Sudan 's north-south civil war . DT NN VBZ DT NN IN DT CD NN NN WDT VBD NNP POS JJ JJ NN . U.S. President George Bush Tuesday thanked troops who are back from Iraq and Afghanistan , where he said , thanks to their sacrifices , ' the forces of freedom and liberty will prevail . ' NNP NNP NNP NNP NNP VBD NNS WP VBP RB IN NNP CC NNP , WRB PRP VBD , NNS TO PRP$ NNS , `` DT NNS IN NN CC NN MD VB . `` Mr. Bush addressed about 7,500 military personnel at Fort Campbell , in the central U.S. state of Kentucky two days before the Thanksgiving Day holiday . NNP NNP VBD IN CD JJ NNS IN NNP NNP , IN DT JJ NNP NN IN NNP CD NNS IN DT NNP NNP NN . About 10,000 Fort Campbell troops have returned from the wars in Afghanistan and Iraq since October . IN CD NNP NNP NNS VBP VBN IN DT NNS IN NNP CC NNP IN NNP . Others troops are scheduled to depart for the regions in the coming week . JJ NNS VBP VBN TO VB IN DT NNS IN DT JJ NN . Mr. Bush told the men and women that they have earned the thanks of every American for a ' job well done . ' NNP NNP VBD DT NNS CC NNS IN PRP VBP VBN DT NNS IN DT NNP IN DT `` NN RB VBN . `` He credited the troops with taking the fight against terrorism overseas so that Americans do not have to face the threat at home . PRP VBD DT NNS IN VBG DT NN IN NN RB RB IN NNS VBP RB VB TO VB DT NN IN NN . A senior Afghan intelligence official says a military aircraft crashed in the country 's northern region Thursday . DT JJ JJ NN NN VBZ DT JJ NN VBD IN DT NN POS JJ NN NNP . Provincial intelligence chief Abdul Majid Azimi says the aircraft went down in the mountains of Afghanistan 's Baghlan province . NNP NN NN NNP NNP NNP VBZ DT NN VBD RB IN DT NNS IN NNP POS NNP NN . He says it is unclear if the aircraft involved is a helicopter or a plane or to whom it belonged . PRP VBZ PRP VBZ JJ IN DT NN VBN VBZ DT NN CC DT NN CC TO WP PRP VBD . A spokesman for NATO 's international coalition in Afghanistan ( International Security Assistance Force or ISAF ) says there were no immediate reports of a crash involving any of its aircraft . DT NN IN NNP POS JJ NN IN NNP LRB NNP NNP NNP NNP CC NNP RRB VBZ EX VBD DT JJ NNS IN DT NN VBG DT IN PRP$ NN . British anti-terror police have arrested six Muslim men in a series of London raids , on suspicion of raising funds for terrorists and inciting others to commit acts of terrorism . JJ JJ NNS VBP VBN CD NNP NNS IN DT NN IN NNP NNS , IN NN IN VBG NNS IN NNS CC VBG NNS TO VB NNS IN NN . One of the suspects , identified as radical Muslim Abu Izzadeen , was widely known in Britain for heckling Home Secretary John Reid last year in a televised public meeting . CD IN DT NNS , VBN IN JJ NNP NNP NNP , VBD RB VBN IN NNP IN VBG NNP NNP NNP NNP JJ NN IN DT JJ JJ NN . A spokesman , Anjem Choudary , for the banned Islamic militant group al-Ghurabaa confirmed Izzadeen 's arrest Tuesday . DT NN , NNP NNP , IN DT VBN NNP JJ NN NNP VBD NNP POS NN NNP . Izzadeen , a Muslim convert and former electrician , was arrested and released on bail earlier this year in a separate case alleging that he encouraged terrorism . NNP , DT NNP NN CC JJ NN , VBD VBN CC VBN IN NN RBR DT NN IN DT JJ NN VBG IN PRP VBD NN . Police say the suspects , aged between 21 and 35 , are in custody at a London police precinct . NNS VBP DT NNS , VBN IN CD CC CD , VBP IN NN IN DT NNP NN NN . Authorities also say other searches in connection with the probe are ongoing . NNS RB VBP JJ NNS IN NN IN DT NN VBP JJ . Turkish officials say three people were killed Wednesday at a publishing house that printed Bibles . JJ NNS VBP CD NNS VBD VBN NNP IN DT NN NN WDT VBD NNS . They say the attackers slit the throats of the victims at the Zirve publishing house in the city of Malatya . PRP VBP DT NNS VBP DT NNS IN DT NNS IN DT NNP NN NN IN DT NN IN NNP . A fourth person was injured when he jumped out of window to escape . DT JJ NN VBD VBN WRB PRP VBD IN IN NN TO VB . The publisher had received threats for printing Bibles . DT NN VBD VBN NNS IN VBG NNS . Officials say police are questioning several people in relation to the attack . NNS VBP NNS VBP VBG JJ NNS IN NN TO DT NN . Turkish television showed police wrestling a man to the ground outside the building . JJ NN VBD NN VBG DT NN TO DT NN IN DT NN . The attack is the latest on Turkey 's small Christian minority . DT NN VBZ DT JJS IN NNP POS JJ JJ NN . Last year , a Catholic priest was shot and killed in the Black Sea city of Trabzon . JJ NN , DT NNP NN VBD VBN CC VBN IN DT NNP NNP NN IN NNP . Police in Chad Tuesday killed at least one person when they opened fire on a protest by wounded soldiers demanding better medical care . NNS IN NNP NNP VBD IN JJS CD NN WRB PRP VBD NN IN DT NN IN JJ NNS VBG JJR JJ NN . A Defense Ministry official , Blabague Marboulaye , said Wednesday that the soldiers were demonstrating in front of a military hospital in the capital , N'Djamena . DT NNP NNP NN , NNP NNP , VBD NNP IN DT NNS VBD VBG IN NN IN DT JJ NN IN DT NN , NNP . The official said the troops were disruptive and that the protests had been infiltrated by civilians who wanted to benefit from health services . DT NN VBD DT NNS VBD JJ CC IN DT NNS VBD VBN VBN IN NNS WP VBD TO VB IN NN NNS . Police were called in to disperse the protest , making several arrests in addition to shooting the demonstrator . NNS VBD VBN IN TO VB DT NN , VBG JJ NNS IN NN TO VBG DT NN . Officials say the protests had interrupted operations at the hospital , but calm has been restored at the facility . NNS VBP DT NNS VBD VBN NNS IN DT NN , CC NN VBZ VBN VBN IN DT NN . The troops were wounded in combat against rebels in eastern Chad . DT NNS VBD VBN IN NN IN NNS IN JJ NNP . The rebels have waged a low-intensity war against the government of President Idriss Deby for the past year . DT NNS VBP VBN DT JJ NN IN DT NN IN NNP NNP NNP IN DT JJ NN . Separatist politicians from Indian Kashmir are making an unprecedented trip to Pakistani Kashmir for talks on the disputed region 's future . NNP NNS IN JJ NNP VBP VBG DT JJ NN TO JJ NNP IN NNS IN DT JJ NN POS NN . The officials from Indian Kashmir 's main separatist political alliance , the All Parties Hurriyat Conference , are using the recently launched bus service between the two regions . DT NNS IN NNP NNP POS JJ JJ JJ NN , DT NNP NNP NNP NNP , VBP VBG DT RB VBN NN NN IN DT CD NNS . They plan to meet with leaders of Pakistani Kashmir and Pakistan-based rebel groups which have been involved in a violent insurgency in Indian Kashmir for the past 15 years . PRP VBP TO VB IN NNS IN JJ NNP CC JJ NN NNS WDT VBP VBN VBN IN DT JJ NN IN JJ NNP IN DT JJ CD NNS . The Hurriyat alliance seeks an independent Kashmir . DT NNP NN VBZ DT JJ NNP . But its hard-line pro-Pakistani splinter group has rejected the invitation , accusing Islamabad of diluting its stand over Kashmir and appeasing New Delhi . CC PRP$ JJ JJ NN NN VBZ VBN DT NN , VBG NNP IN VBG PRP$ NN IN NNP CC VBG NNP NNP . India has previously denied permission to Hurriyat leaders to visit Pakistan , saying the Kashmir dispute is India 's internal matter . NNP VBZ RB VBN NN TO VB NNS TO VB NNP , VBG DT NNP NN VBZ NNP POS JJ NN . The United Nations has condemned alleged abuses by American forces in Afghanistan , calling them ' totally unacceptable ' . DT NNP NNP VBZ VBN VBN NNS IN JJ NNS IN NNP , VBG PRP `` RB JJ `` . Asked about a report that U.S. troops allegedly burned the bodies of two Taleban fighters to taunt other fighters , a U.N. spokesman said such abuses are an affront to the work of the international community in Afghanistan . VBN IN DT NN IN NNP NNS RB VBD DT NNS IN CD NNP NNS TO VB JJ NNS , DT NNP NN VBD JJ NNS VBP DT NN TO DT NN IN DT JJ NN IN NNP . The United Nations issued a similar statement in May amid claims of abuses of Afghan prisoners by U.S. forces . DT NNP NNP VBD DT JJ NN IN NNP IN NNS IN NNS IN JJ NNS IN NNP NNS . Afghan President Hamid Karzai has also condemned the purported burning incident and ordered an inquiry . JJ NNP NNP NNP VBZ RB VBN DT JJ NN NN CC VBD DT NN . U.S. Defense Secretary Donald Rumsfeld said the alleged actions do not represent the overwhelmingly positive behavior of the U.S. military , adding he wants the U.S. military in Afghanistan to accelerate its own investigation . NNP NNP NNP NNP NNP VBD DT JJ NNS VBP RB VB DT RB JJ NN IN DT NNP NN , VBG PRP VBZ DT NNP NN IN NNP TO VB PRP$ JJ NN . The U.S. military in Afghanistan says two American soldiers have been charged with assaulting detainees at a coalition base in Uruzgan province . DT NNP NN IN NNP VBZ CD JJ NNS VBP VBN VBN IN VBG NNS IN DT NN NN IN NNP NN . A statement says the two soldiers allegedly punched two detainees on the chest , shoulders and stomach , but that neither detainee required medical attention . DT NN VBZ DT CD NNS RB VBD CD NNS IN DT NN , NNS CC NN , CC IN DT NN VBD JJ NN . The charges come 10 days after the U.S. military began an investigation into allegations that American soldiers burned the bodies of two Taleban fighters and used the act to taunt other fighters . DT NNS VBP CD NNS IN DT NNP NN VBD DT NN IN NNS IN JJ NNS VBD DT NNS IN CD NNP NNS CC VBD DT NN TO VB JJ NNS . Australian television aired a video purportedly showing the soldiers burning the bodies of the fighters they had killed near the former Taleban stronghold of Kandahar . JJ NN VBD DT NN RB VBG DT NNS VBG DT NNS IN DT NNS PRP VBD VBN IN DT JJ NNP NN IN NNP . Cremation of corpses is banned in the Islamic faith and the alleged desecration sparked outrage in Afghanistan . NN IN NNS VBZ VBN IN DT JJ NN CC DT JJ NN VBD NN IN NNP . A top U.S. official says ' uncertainties ' about how China will use its increasing power may inhibit its relations with other countries , including the United States . DT JJ NNP NN VBZ `` NNS `` IN WRB NNP MD VB PRP$ VBG NN MD VB PRP$ NNS IN JJ NNS , VBG DT NNP NNPS . Deputy Secretary of State Robert Zoellick addressed the National Committee on U.S. - China Relations Wednesday in New York . NNP NNP IN NNP NNP NNP VBD DT NNP NNP IN NNP IN NNP NNP NNP IN NNP NNP . Mr. Zoellick praised the ' constructive role ' China played in hosting the recent six-party talks on North Korea 's nuclear program . NNP NNP VBD DT `` JJ NN `` NNP VBD IN VBG DT JJ JJ NNS IN NNP NNP POS JJ NN . But he also encouraged China to be a responsible stakeholder in global affairs . CC PRP RB VBD NNP TO VB DT JJ NN IN JJ NNS . He said Beijing 's ' lack of transparency ' raises questions about the purpose of China 's rapid military modernization On trade , Mr. Zoellick said China should not take for granted its access to the U.S. market . PRP VBD NNP POS `` NN IN NN `` VBZ NNS IN DT NN IN NNP POS JJ JJ NN IN NN , NNP NNP VBD NNP MD RB VB IN VBN PRP$ NN TO DT NNP NN . On democracy issues , Mr. Zoellick said China 's closed political system is ' simply not sustainable . ' IN NN NNS , NNP NNP VBD NNP POS JJ JJ NN VBZ `` RB RB JJ . `` He said as economic growth continues , the Chinese people will want a greater say in their future . PRP VBD IN JJ NN VBZ , DT JJ NNS MD VB DT JJR NN IN PRP$ NN . The Egyptian Health Ministry says a 15-year-old girl has died of bird flu , the second such death in as many days . DT JJ NNP NNP VBZ DT JJ NN VBZ VBN IN NN NN , DT JJ JJ NN IN IN JJ NNS . The ministry says the girl died Monday after contracting the deadly H5N1 strain of bird flu . DT NN VBZ DT NN VBD NNP IN VBG DT JJ NNP NN IN NN NN . The girl was apparently from the same family as a 30-year-old woman who died of bird flu on Sunday . DT NN VBD RB IN DT JJ NN IN DT JJ NN WP VBD IN NN NN IN NNP . Two members of the woman 's family had also been diagnosed with bird flu . CD NNS IN DT NN POS NN VBD RB VBN VBN IN NN NN . A regional official of the World Health Organization said the woman had been hospitalized in mid-December but was only tested for the deadly form of the flu in the last few days . DT JJ NN IN DT NNP NNP NNP VBD DT NN VBD VBN VBN IN NNP CC VBD RB VBN IN DT JJ NN IN DT NN IN DT JJ JJ NNS . He said she initially did not tell health officials that she lived in close contact with ducks . PRP VBD PRP RB VBD RB VB NN NNS IN PRP VBD IN JJ NN IN NNS . Nine Egyptians have now died from bird flu since it was first detected in Egyptian poultry in February . CD NNS VBP RB VBN IN NN NN IN PRP VBD RB VBN IN JJ NN IN NNP . Many poor Egyptians live in close contact with chickens and ducks that they raise for their own consumption . JJ JJ NNS VBP IN JJ NN IN NNS CC NNS IN PRP VBP IN PRP$ JJ NN . The U.S. military is denying a report that Saddam Hussein has begun a jailhouse hunger strike , and says the ousted Iraqi leader had eaten on Sunday . DT NNP NN VBZ VBG DT NN IN NNP NNP VBZ VBN DT NN NN NN , CC VBZ DT JJ JJ NN VBD VBN IN NNP . A lawyer for Iraq 's former deputy prime minister Tariq Aziz said earlier that Saddam Hussein and other detainees had stopped eating . DT NN IN NNP POS JJ JJ JJ NN NNP NNP VBD RBR IN NNP NNP CC JJ NNS VBD VBN VBG . Monday is the first anniversary of Saddam 's capture by U.S. forces . NNP VBZ DT JJ NN IN NNP POS NN IN NNP NNS . A U.S. spokesman said authorities are checking reports that others in a group of 11 high-profile detainees in U.S. custody may be rejecting some meals . DT NNP NN VBD NNS VBP VBG NNS IN NNS IN DT NN IN CD JJ NNS IN NNP NN MD VB VBG DT NNS . Meanwhile , the U.S. military says a U.S. Marine was killed in action west of Baghdad Sunday in Anbar province . RB , DT NNP NN VBZ DT NNP NN VBD VBN IN NN NN IN NNP NNP IN NNP NN . Separately , a U.S. soldier wounded by a roadside bomb Saturday in Baghdad has died . RB , DT NNP NN VBN IN DT NN NN NNP IN NNP VBZ VBN . Military officials also say U.S. forces and Iraqi police detained more than 50 people during weekend raids targeting insurgents around Baquba , north of Baghdad . JJ NNS RB VBP NNP NNS CC JJ NNS VBD JJR IN CD NNS IN NN NNS VBG NNS IN NNP , NN IN NNP . Scientists at the U.S. space agency , NASA , have unveiled dramatic photographs of a huge crater on Mars taken by the roving surface probe Opportunity . NNS IN DT NNP NN NN , NNP , VBP VBN JJ NNS IN DT JJ NN IN NNP VBN IN DT VBG NN NN NN . On Friday , Opportunity sent back its first color panorama of Victoria , the 800-meter-wide Martian crater the rover reached last week after a 21-month trek . IN NNP , NNP VBD RP PRP$ JJ NN NN IN NNP , DT JJ JJ NN DT NN VBD JJ NN IN DT JJ NN . NASA scientists told reporters Friday the sharp images of rock formations and soil layers open a window on the past of the planet . NNP NNS VBD NNS NNP DT JJ NNS IN NN NNS CC NN NNS VBP DT NN IN DT NN IN DT NN . They say Victoria 's exposed rock layers could help reveal the mystery of whether life existed on Mars . PRP VBP NNP POS JJ NN NNS MD VB VB DT NN IN IN NN VBD IN NNP . NASA also displayed new photos taken by the Mars Reconnaissance satellite orbiting overhead , that included pictures of Victoria Crater and the Opportunity rover . NNP RB VBD JJ NNS VBN IN DT NNP NNP NN VBG NN , WDT VBD NNS IN NNP NNP CC DT NN NN . NASA researchers say they will use the photographs to plot the best route for the six-wheeled rover to descend into the crater . NNP NNS VBP PRP MD VB DT NNS TO VB DT JJS NN IN DT JJ NN TO VB IN DT NN . The U.S. media seized on recent reports that high school girls in a Massachusetts town had made a pact to get pregnant and raise babies together . DT NNP NNS VBD IN JJ NNS IN JJ NN NNS IN DT NNP NN VBD VBN DT NN TO VB JJ CC VB NNS RB . Officials have rejected reports of a pregnancy pact , but the incident highlights concern among some adolescent health experts that the U.S. teen birth rate is starting to rise again . NNS VBP VBN NNS IN DT NN NN , CC DT NN NNS NN IN DT JJ NN NNS IN DT NNP JJ NN NN VBZ VBG TO VB RB . Leta Hong Fincher has more on teen mothers and efforts to reduce teen pregnancy . NNP NNP NNP VBZ RBR IN JJ NNS CC NNS TO VB JJ NN . A Nigerian military aircraft carrying at least 12 people has crashed in the southeast part of the country . DT JJ JJ NN VBG IN JJS CD NNS VBZ VBN IN DT JJ NN IN DT NN . Military officers are among those who were on board . JJ NNS VBP IN DT WP VBD IN NN . Some on the plane are believed to have survived the crash . DT IN DT NN VBP VBN TO VB VBN DT NN . The air force plane was flying from Nigeria 's capital , Abuja , to Obudu near Nigeria 's southeast border with Cameroon . DT NN NN NN VBD VBG IN NNP POS NN , NNP , TO NNP IN NNP POS NN NN IN NNP . Former Chilean dictator Augusto Pinochet is spending his 90th birthday Friday under house arrest after a judge charged him with human rights violations . JJ JJ NN NNP NNP VBZ VBG PRP$ JJ NN NNP IN NN NN IN DT NN VBD PRP IN JJ NNS NNS . The charges , which were leveled against the former dictator Thursday , stem from the disappearance of seven people arrested by General Pinochet 's security services in the early years of his 1973 to 1990 rule . DT NNS , WDT VBD VBN IN DT JJ NN NNP , VBD IN DT NN IN CD NNS VBN IN NNP NNP POS NN NNS IN DT JJ NNS IN PRP$ CD TO CD NN . They were among 119 people who disappeared while in custody in a case known as ' Operation Colombo . ' PRP VBD IN CD NNS WP VBD IN IN NN IN DT NN VBN IN `` NNP NNP . `` This is the second indictment in two days against the former dictator . DT VBZ DT JJ NN IN CD NNS IN DT JJ NN . General Pinochet had just made bail following his indictment Wednesday on charges of tax evasion , corruption and using FALSE passports in a case involving an estimated $ 27 million hidden in foreign bank accounts . NNP NNP VBD RB VBN NN VBG PRP$ NN NNP IN NNS IN NN NN , NN CC VBG JJ NNS IN DT NN VBG DT VBN $ CD CD VBN IN JJ NN NNS . Dutch oil giant Shell has asked a Nigerian court to block oil workers from joining a nationwide labor strike set to begin November 16 . JJ NN NN NNP VBZ VBN DT JJ NN TO VB NN NNS IN VBG DT JJ NN NN VBN TO VB NNP CD . A judge in Lagos Monday declined to rule on the case immediately and scheduled a second hearing two days after the launch of the strike . DT NN IN NNP NNP VBD TO VB IN DT NN RB CC VBD DT JJ NN CD NNS IN DT NN IN DT NN . Sunday , the country 's main labor union , the Nigeria Labor Congress , said the next work stoppage will be ' indefinite ' and will aim to disrupt the country 's oil exports . NNP , DT NN POS JJ NN NN , DT NNP NNP NNP , VBD DT JJ NN NN MD VB `` NN `` CC MD VB TO VB DT NN POS NN NNS . The union 's president , Adams Oshiomole , also called Shell an ' enemy ' of the Nigerian people . DT NN POS NN , NNP NNP , RB VBD NNP DT `` NN `` IN DT JJ NNS . Last month , the union held a four-day strike , which did not include oil workers . JJ NN , DT NN VBD DT JJ NN , WDT VBD RB VB NN NNS . Nigerian unions have criticized rising fuel prices in the country , Africa 's leading oil producer . JJ NNS VBP VBN VBG NN NNS IN DT NN , NNP POS JJ NN NN . The government says price hikes are needed to end costly subsidies . DT NN VBZ NN NNS VBP VBN TO VB JJ NNS . The leader of a Saudi Arabian opposition group is calling on protesters to take to the streets of Riyadh and Jeddah Thursday in a peaceful call for the monarchy 's removal . DT NN IN DT JJ JJ NN NN VBZ VBG IN NNS TO VB TO DT NNS IN NNP CC NNP NNP IN DT JJ NN IN DT NN POS NN . Saad al-Fagih , the London-based head of the Movement of Islamic Reform in Arabia and protest organizer , says his group wants total change , not minor economic , political or social reform . NNP NNP , DT JJ NN IN DT NN IN NNP NNP IN NNP CC NN NN , VBZ PRP$ NN VBZ JJ NN , RB JJ JJ , JJ CC JJ NN . He said he expects ' tens of thousands ' of people to take part in the protest , which will begin after noon prayers Thursday . PRP VBD PRP VBZ `` NNS IN NNS `` IN NNS TO VB NN IN DT NN , WDT MD VB IN NN NNS NNP . Such demonstrations are illegal in Saudi Arabia , and those participating would risk arrest . JJ NNS VBP JJ IN NNP NNP , CC DT VBG MD VB NN . Mr. Fagih , has lived in London for eight years . NNP NNP , VBZ VBN IN NNP IN CD NNS . Last year , he accused Saudi agents of attempting to kill him in a stabbing incident at his London home . JJ NN , PRP VBD JJ NNS IN VBG TO VB PRP IN DT VBG NN IN PRP$ NNP NN . The Saudi government denied any involvement . DT JJ NN VBD DT NN . Former Iraqi President Abdel Rahman Aref , who was overthrown in a 1968 coup that brought Saddam Hussein 's Baath Party to power , has died in Jordan . JJ JJ NNP NNP NNP NNP , WP VBD VBN IN DT CD NN WDT VBD NNP NNP POS NNP NNP TO NN , VBZ VBN IN NNP . He was 91 . PRP VBD CD . Mr. Aref died Friday at a hospital in Amman . NNP NNP VBD NNP IN DT NN IN NNP . He had lived in Jordan for the last three years . PRP VBD VBN IN NNP IN DT JJ CD NNS . Mr. Aref , who is survived by his wife and five children , became president in 1966 after his brother , who was president at the time , died in an aviation crash . NNP NNP , WP VBZ VBN IN PRP$ NN CC CD NNS , VBD NN IN CD IN PRP$ NN , WP VBD NN IN DT NN , VBD IN DT NN NN . The brother was part of a 1958 military coup that overthrew the monarchy . DT NN VBD NN IN DT CD JJ NN WDT VBD DT NN . Mr. Aref was president for two years , until he was ousted in a Baathist Party coup . NNP NNP VBD NN IN CD NNS , IN PRP VBD VBN IN DT NNP NNP NN . He lived in exile in Turkey and eventually returned to Iraq . PRP VBD IN NN IN NNP CC RB VBD TO NNP . He moved to Jordan in 2004 . PRP VBD TO NNP IN CD . The World Health Organization estimates that at least 17 million people die every year from cardiovascular disease . DT NNP NNP NNP VBZ IN IN JJS CD CD NNS VBP DT NN IN JJ NN . Because heart related illnesses are often diagnosed in people who are overweight or obese , treatment can be complicated . IN NN VBN NNS VBP RB VBN IN NNS WP VBP JJ CC JJ , NN MD VB VBN . But as VOA 's Melinda Smith reports , a drug used for weight loss is showing promise for some heart patients . CC IN NNP POS NNP NNP VBZ , DT NN VBN IN NN NN VBZ VBG NN IN DT NN NNS . A top North Korean official says Pyongyang will increase its nuclear deterrent to defend against alleged hostile U.S. policies . DT JJ JJ JJ NN VBZ NNP MD VB PRP$ JJ NN TO VB IN JJ JJ NNP NNS . News reports quote Kim Yong-nam , head of the North 's legislature , as saying Pyongyang will increase its nuclear deterrent to counter any threat to isolate and stifle the republic . NN NNS VBP NNP NNP , NN IN DT NNP POS NN , IN VBG NNP MD VB PRP$ JJ NN TO VB DT NN TO VB CC VB DT NN . He said North Korea would destroy any aggressor if war breaks out on the Korean peninsula . PRP VBD NNP NNP MD VB DT NN IN NN VBZ RP IN DT JJ NN . Mr. Kim , who ranks second behind top leader Kim Jong-il , is the highest ranking North Korean official to state Pyongyang 's intention to boost its nuclear arsenal . NNP NNP , WP VBZ JJ IN JJ NN NNP NNP , VBZ DT JJS JJ JJ JJ NN TO NN NNP POS NN TO VB PRP$ JJ NN . His comments come amid a standoff over the North 's nuclear weapons program . PRP$ NNS VBP IN DT NN IN DT NNP POS JJ NNS NN . Pyongyang claimed in February to possess atomic weapons and said it would indefinitely boycott international disarmament talks . NNP VBD IN NNP TO VB JJ NNS CC VBD PRP MD RB VB JJ NN NNS . U.S. economic forecasters say total losses from Hurricane Katrina 's devastation could top $ 100 billion . NNP JJ NNS VBP JJ NNS IN NNP NNP POS NN MD VB $ CD CD . In terms of insurance losses alone , industry forecasters say they are estimating payouts to be around $ 25 billion . IN NNS IN NN NNS RB , NN NNS VBP PRP VBP VBG NNS TO VB IN $ CD CD . Insurance adjusters say they will have a clearer picture of the damage when they are able to enter New Orleans and other Gulf of Mexico coastal cities . NN NNS VBP PRP MD VB DT JJR NN IN DT NN WRB PRP VBP JJ TO VB NNP NNP CC JJ NNP IN NNP JJ NNS . They say losses are likely growing by tens of millions of dollars each day in New Orleans as water damage becomes worse , sporadic fires continue to burn and looters ravage the city . PRP VBP NNS VBP JJ VBG IN NNS IN NNS IN NNS DT NN IN NNP NNP IN NN NN VBZ JJR , JJ NNS VBP TO VB CC NNS VBP DT NN . President Bush has signed a $ 10.5 billion emergency spending bill for the hurricane area , and said more relief will be needed . NNP NNP VBZ VBN DT $ CD CD NN NN NN IN DT NN NN , CC VBD JJR NN MD VB VBN . He has also appointed his father , former President George Herbert Walker Bush , and former President Bill Clinton to coordinate private fundraising efforts . PRP VBZ RB VBN PRP$ NN , JJ NNP NNP NNP NNP NNP , CC JJ NNP NNP NNP TO VB JJ NN NNS . The European Union is expected to review credit rating companies after allegations that they were too slow to warn of problems with the U.S. home loan businesses . DT NNP NNP VBZ VBN TO VB NN NN NNS IN NNS IN PRP VBD RB JJ TO VB IN NNS IN DT NNP NN NN NNS . French President Nicholas Sarkozy has urged the group of seven industrialized nations to better monitor international financial markets in the face of global credit concerns . JJ NNP NNP NNP VBZ VBN DT NN IN CD JJ NNS TO RB VB JJ JJ NNS IN DT NN IN JJ NN NNS . His appeal in a letter to German Chancellor Angela Merkel was made public Thursday as the French stock market dropped to its lowest level this year . PRP$ NN IN DT NN TO JJ NNP NNP NNP VBD VBN JJ NNP IN DT JJ NN NN VBD TO PRP$ JJS NN DT NN . Critics have accused credit rating firms , including Moody 's Investors Service and Standard and Poor 's , of underestimating the risk in the sub-prime mortgage market . NNS VBP VBN NN NN NNS , VBG NNP POS NNPS NNP CC NNP CC NNP POS , IN VBG DT NN IN DT JJ NN NN . Defaults on sub-prime loans , or those made to people with poor credit , have risen sharply in the United States in recent months . NNS IN JJ NNS , CC DT VBN TO NNS IN JJ NN , VBP VBN RB IN DT NNP NNPS IN JJ NNS . The problem has begun to affect banks and financial companies elsewhere in the world . DT NN VBZ VBN TO VB NNS CC JJ NNS RB IN DT NN . The U.S. military says the pilot of an American U-2 spy plane was killed when the plane crashed late Tuesday in southwest Asia . DT NNP NN VBZ DT NN IN DT JJ NN NN NN VBD VBN WRB DT NN VBD JJ NNP IN JJ NNP . Military officials have not specified the exact location of the crash , saying that ' host nation sensitivities ' are involved . JJ NNS VBP RB VBN DT JJ NN IN DT NN , VBG IN `` NN NN NNS `` VBP VBN . But officials say the plane went down as it returned to Al Dhafra Air Base in the United Arab Emirates . CC NNS VBP DT NN VBD RB IN PRP VBD TO NNP NNP NNP NNP IN DT NNP NNP NNPS . The U-2s are assigned to the 380th Air Expeditionary Wing , which operates out of the base . DT NNS VBP VBN TO DT CD NNP NNP NNP , WDT VBZ IN IN DT NN . Central Command says the plane had just finished a mission for Operation Enduring Freedom - the name for U.S. operations in Afghanistan . NNP NNP VBZ DT NN VBD RB VBN DT NN IN NNP NNP NNP IN DT NN IN NNP NNS IN NNP . Officials say they do not believe the plane was brought down by hostile fire . NNS VBP PRP VBP RB VB DT NN VBD VBN RP IN JJ NN . The U-2 is a high-altitude aircraft used for reconnaissance and surveillance . DT NN VBZ DT JJ NN VBN IN NN CC NN . The U.S. State Department has announced that Secretary of State Hillary Clinton will depart Saturday for a tour of three Persian Gulf nations to promote political reform and discuss regional security concerns . DT NNP NNP NNP VBZ VBN IN NNP IN NNP NNP NNP MD VB NNP IN DT NN IN CD NNP NNP NNS TO VB JJ NN CC VB JJ NN NNS . The five-day visit will include stops in the United Arab Emirates , Oman and Qatar . DT JJ NN MD VB NNS IN DT NNP NNP NNPS , NNP CC NNP . A state department official says Clinton will meet with government officials to discuss ' a full-range of regional and bilateral issues . ' DT NN NN NN VBZ NNP MD VB IN NN NNS TO VB `` DT NN IN JJ CC JJ NNS . `` In Qatar , Clinton is to participate in the seventh Forum for the Future , a U.S.-backed effort for political reform in the Middle East . IN NNP , NNP VBZ TO VB IN DT JJ NN IN DT NN , DT JJ NN IN JJ NN IN DT NNP NNP . It will be Clinton 's second trip to the Gulf in as many months . PRP MD VB NNP POS JJ NN TO DT NNP IN IN JJ NNS . She participated in a global security conference in Bahrain in early December . PRP VBD IN DT JJ NN NN IN NNP IN JJ NNP . The U.S. military says seven U.S. Marines have been killed in action in western Iraq . DT NNP NN VBZ CD NNP NNS VBP VBN VBN IN NN IN JJ NNP . A spokesman says six of the troops were killed Monday in the town of Haditha , near the Syrian border , but he did not give details . DT NN VBZ CD IN DT NNS VBD VBN NNP IN DT NN IN NNP , IN DT JJ NN , CC PRP VBD RB VB NNS . The seventh Marine also died on Monday , in a car bomb blast in Hit , about 70 kilometers southeast of Haditha . DT JJ NN RB VBD IN NNP , IN DT NN NN NN IN NNP , IN CD NNS NN IN NNP . Earlier this week , the U.S. military reported killing 11 insurgents during fighting in Haditha . RBR DT NN , DT NNP NN VBD VBG CD NNS IN VBG IN NNP . Elsewhere , Iraqi police say some civilians were killed when a car bomb targeting a U.S. military convoy exploded Tuesday in central Baghdad . RB , JJ NNS VBP DT NNS VBD VBN WRB DT NN NN VBG DT NNP JJ NN VBD NNP IN JJ NNP . More than 20 people were also wounded in the explosion . JJR IN CD NNS VBD RB VBN IN DT NN . There were no reports of U.S. casualties . EX VBD DT NNS IN NNP NNS . Also in Baghdad , Iraqi police say gunmen killed the head of the Abu Ghraib police station , Mizhir Hamad Yousi . RB IN NNP , JJ NNS VBP NNS VBD DT NN IN DT NNP NNP NN NN , NNP NNP NNP . His driver was wounded in the attack . PRP$ NN VBD VBN IN DT NN . Togo 's new President Faure Gnassingbe has visited his counterpart in Gabon , amid intense international pressure on the Togolese leader to step down . NNP POS JJ NNP NNP NNP VBZ VBN PRP$ NN IN NNP , IN JJ JJ NN IN DT JJ NN TO VB RB . Mr. Gnassingbe said he went to Gabon Thursday to seek advice from President Omar Bongo , calling him a wise man and brother . NNP NNP VBD PRP VBD TO NNP NNP TO VB NN IN NNP NNP NNP , VBG PRP DT JJ NN CC NN . The Togolese leader then left for talks with Libyan officials in Tripoli . DT NNP NN RB VBD IN NNS IN JJ NNS IN NNP . Meantime , the African Union postponed a meeting Thursday to discuss the crisis in Togo until Friday . RB , DT NNP NNP VBD DT NN NNP TO VB DT NN IN NNP IN NNP . The AU 's Peace and Security Council is expected to consider sanctions against the West African country to pressure Mr. Gnassingbe to step down . DT NNP POS NNP CC NNP NNP VBZ VBN TO VB NNS IN DT JJ JJ NN TO VB NNP NNP TO VB RB . The bloc has suspended Togo , accusing the country 's military of staging a coup to install Mr. Gnassingbe , after his father 's death this month . DT NN VBZ VBN NNP , VBG DT NN POS NN IN VBG DT NN TO VB NNP NNP , IN PRP$ NN POS NN DT NN . Monday , Togo 's parliament ordered new presidential elections in 60 days , while allowing Mr. Gnassingbe to remain in office . NNP , NNP POS NN VBD JJ JJ NNS IN CD NNS , IN VBG NNP NNP TO VB IN NN . Thousands of Pakistani women have demonstrated in south-central Punjab province , calling for equal rights on International Women 's Day . NNS IN JJ NNS VBP VBN IN JJ NNP NN , VBG IN JJ NNS IN NNP NNP POS NN . The rally in Multan Wednesday was being led by Mukhtaran Mai , a woman who gained international attention after she was gang-raped in 2002 on the orders of a tribal council , as punishment for her brother 's alleged affair . DT NN IN NNP NNP VBD VBG VBN IN NNP NNP , DT NN WP VBD JJ NN IN PRP VBD JJ IN CD IN DT NNS IN DT JJ NN , IN NN IN PRP$ NN POS JJ NN . Women also rallied against oppression in the southern city of Karachi . NNS RB VBD IN NN IN DT JJ NN IN NNP . In Afghanistan , President Hamid Karzai Wednesday called for an end to forced marriage and violence against women . IN NNP , NNP NNP NNP NNP VBD IN DT NN TO JJ NN CC NN IN NNS . Speaking at a Women 's Day event , the president says women are still oppressed , despite strides toward gender equality since the Taleban was overthrown in 2001 . VBG IN DT NNP POS NNP NN , DT NN VBZ NNS VBP RB VBN , IN NNS IN NN NN IN DT NNP VBD VBN IN CD . The oil company Royal Dutch Shell says one of its key oil terminals in Nigeria can not honor its export contracts due to security problems . DT NN NN NNP NNP NNP VBZ CD IN PRP$ JJ NN NNS IN NNP MD RB VB PRP$ NN NNS JJ TO NN NNS . The company issued a statement Thursday saying security concerns have prevented workers from repairing pipeline leaks at the Bonny terminal in the West African nation . DT NN VBD DT NN NNP VBG NN NNS VBP VBN NNS IN VBG NN NNS IN DT NNP NN IN DT JJ JJ NN . Shell says it will not be able to meet orders for 1,30,000 barrels of light crude oil per day through March . NNP VBZ PRP MD RB VB JJ TO VB NNS IN CD NNS IN JJ JJ NN IN NN IN NNP . Shell invoked a contractual provision that lifts delivery obligations in case of events out of the company 's control . NNP VBD DT JJ NN WDT VBZ NN NNS IN NN IN NNS IN IN DT NN POS NN . Armed attacks and kidnappings by rebels in the Niger Delta have disrupted oil production over the past two years and reduced by a quarter regular oil output of 2.5 million barrels per day . JJ NNS CC NNS IN NNS IN DT NNP NNP VBP VBN NN NN IN DT JJ CD NNS CC VBN IN DT NN JJ NN NN IN CD CD NNS IN NN . Officials in Nairobi say Somali pirates have released a vessel with its crew , after holding it for almost two months . NNS IN NNP VBP JJ NNS VBP VBN DT NN IN PRP$ NN , IN VBG PRP IN RB CD NNS . The Liberian-flagged chemical tanker Biscaglia with its crew of 25 Indians and three Bangladeshis was hijacked November 28 . DT JJ NN NN NNP IN PRP$ NN IN CD NNS CC CD NNS VBD VBN NNP CD . Three security guards jumped overboard shortly after the pirates overtook the vessel . CD NN NNS VBD RB RB IN DT NNS VBD DT NN . It was not immediately clear whether a ransom was paid for the release of the ship and its crew . PRP VBD RB RB JJ IN DT NN VBD VBN IN DT NN IN DT NN CC PRP$ NN . Pirates based in Somalia have made the waters off East Africa some of the most dangerous in the world . NNS VBN IN NNP VBP VBN DT NNS IN NNP NNP DT IN DT RBS JJ IN DT NN . An international coalition of warships patrols in the area off Somalia to prevent hijackings . DT JJ NN IN NNS NNS IN DT NN IN NNP TO VB NNS . Former world indoor triple-jump champion Ashia Hansen of Britain has announced her retirement after failing to recover from a knee injury in time for next month 's Beijing Olympics . JJ NN JJ JJ NN NNP NNP IN NNP VBZ VBN PRP$ NN IN VBG TO VB IN DT NN NN IN NN IN JJ NN POS NNP NNPS . The 36-year-old American-born Hansen had been expected to be a gold medal contender at the 2004 Athens Olympics . DT JJ JJ NNP VBD VBN VBN TO VB DT NN NN NN IN DT CD NNP NNPS . But she missed those Games after suffering a knee injury at the 2004 European Cup final . CC PRP VBD DT NNPS IN VBG DT NN NN IN DT CD JJ NNP JJ . Hansen set the former indoor world record of 15.16 meters at the European Championships in 1998 . NNP VBD DT JJ JJ NN NN IN CD NNS IN DT JJ NNS IN CD . She had hoped to compete at the British Olympic trials in Birmingham this weekend , but decided she was not fit enough to do so . PRP VBD VBN TO VB IN DT JJ NNP NNS IN NNP DT NN , CC VBD PRP VBD RB JJ RB TO VB RB . Hansen said it had become clear to her that she could ' no longer train through the pain of injury ' as she used to . NNP VBD PRP VBD VBN JJ TO PRP IN PRP MD `` DT JJR NN IN DT NN IN NN `` IN PRP VBD TO . She added that it was time to take the pressure off herself and that she had few complaints after the achievements in her career . PRP VBD IN PRP VBD NN TO VB DT NN IN PRP CC IN PRP VBD JJ NNS IN DT NNS IN PRP$ NN . The Vatican says Pope John Paul 's condition has worsened . DT NNP VBZ NNP NNP NNP POS NN VBZ VBN . The Vatican Friday said the pontiff 's breathing has become shallow , he is facing kidney problems , and his respiratory and circulatory difficulties have increased . DT NNP NNP VBD DT NN POS NN VBZ VBN JJ , PRP VBZ VBG NN NNS , CC PRP$ JJ CC JJ NNS VBP VBN . Earlier , spokesman Joaquin Navarro-Valls said the pope received Vatican officials in his apartment and asked for scriptures to be read . RB , NN NNP NNP VBD DT NN VBD NNP NNS IN PRP$ NN CC VBD IN NNS TO VB VBN . He also celebrated Mass . PRP RB VBD NNP . Cardinal Camillo Ruini celebrated a public Mass in Rome Friday for the pope . NNP NNP NNP VBD DT JJ NNP IN NNP NNP IN DT NN . Officials Friday also announced the appointment of a number of bishops and other church officials . NNS NNP RB VBD DT NN IN DT NN IN NNS CC JJ NN NNS . The Vatican said Thursday the pontiff suffered a ' cardio-circulatory collapse ' after developing a high fever from a urinary tract infection . DT NNP VBD NNP DT NN VBD DT `` JJ NN `` IN VBG DT JJ NN IN DT JJ NN NN . Officials said the pope was informed of the gravity of his situation , but wanted to remain at his apartment in the Vatican . NNS VBD DT NN VBD VBN IN DT NN IN PRP$ NN , CC VBD TO VB IN PRP$ NN IN DT NNP . He underwent a procedure in February to ease breathing difficulties . PRP VBD DT NN IN NNP TO VB NN NNS . The U.S. military in Afghanistan says one of its soldiers , an Afghan serviceman and 11 insurgents were killed in heavy fighting Monday in southern Uruzgan province . DT NNP NN IN NNP VBZ CD IN PRP$ NNS , DT JJ NN CC CD NNS VBD VBN IN JJ NN NNP IN JJ NNP NN . A military statement described how a group of 15 to 30 militants attacked a coalition patrol with guns , mortars and rocket-propelled grenades . DT JJ NN VBD WRB DT NN IN CD TO CD NNS VBD DT NN NN IN NNS , NNS CC JJ NNS . It added that U.S. fighter jets and helicopters responded to the attack and pounded militant positions . PRP VBD IN NNP NN NNS CC NNS VBD TO DT NN CC VBN JJ NNS . In addition to those killed , three American troops and an Afghan soldier were wounded . IN NN TO DT VBN , CD JJ NNS CC DT JJ NN VBD VBN . Eight insurgents were captured and a number of weapons seized . CD NNS VBD VBN CC DT NN IN NNS VBN . Also today , in Kabul , three Afghan policemen were wounded when a bomb exploded at a checkpoint on a road to the city 's airport . RB NN , IN NNP , CD JJ NNS VBD VBN WRB DT NN VBD IN DT NN IN DT NN TO DT NN POS NN . And , in eastern Khost province , another blast wounded a pro-government Muslim cleric who the day before had spoken out against the ousted Taleban regime in a radio interview . CC , IN JJ NNP NN , DT NN VBD DT JJ NNP NN WP DT NN IN VBD VBN RP IN DT JJ NNP NN IN DT NN NN . The Sudanese government says it will stop flying Russian-made Antonov planes over the Darfur region where it has been accused of bombing villages . DT JJ NN VBZ PRP MD VB VBG JJ NNP NNS IN DT NNP NN WRB PRP VBZ VBN VBN IN VBG NNS . Sudan 's Interior Minister Abdel Rahim Hussein told Reuters news agency ( Saturday ) the government would no longer use the aircraft , a move that follows last week 's request by the United Nations . NNP POS NNP NNP NNP NNP NNP VBD NNP NN NN LRB NNP RRB DT NN MD RB RB VB DT NN , DT NN WDT VBZ JJ NN POS NN IN DT NNP NNPS . Top U.N. envoy Jan Pronk told Sudan 's government that civilians are fleeing their homes and villages whenever the planes fly over , and also fear the Antonovs are being used to coordinate ground attacks with Arab militia . JJ NNP NN NNP NNP VBD NNP POS NN IN NNS VBP VBG PRP$ NNS CC NNS WRB DT NNS VBP IN , CC RB VBP DT NNS VBP VBG VBN TO VB NN NNS IN JJ NN . Government bombers and helicopter gunships have been reported over Darfur in recent weeks . NN NNS CC NN NNS VBP VBN VBN IN NNP IN JJ NNS . The Sudanese insist the Antonovs are being used for surveillance , not bombing . DT NNS VBP DT NNS VBP VBG VBN IN NN , RB VBG . Tens of thousands of people have been killed in the western Sudan region while nearly two million people have fled their homes . NNS IN NNS IN NNS VBP VBN VBN IN DT JJ NNP NN IN RB CD CD NNS VBP VBN PRP$ NNS . Burmese state media say North Korea 's first ambassador to Burma has taken up his post after a diplomatic break of 24 years between the two countries . JJ NN NNS VBP NNP NNP POS JJ NN TO NNP VBZ VBN RP PRP$ NN IN DT JJ NN IN CD NNS IN DT CD NNS . Burma 's New Light of Myanmar says ties were restored Friday when North Korean Ambassador Kim Sok Chol presented his credentials to Senior General Than Shwe in the administrative capital , Naypyidaw . NNP POS NNP NNP IN NNP VBZ NNS VBD VBN NNP WRB NNP JJ NNP NNP NNP NNP VBD PRP$ NNS TO NNP NNP NNP NNP IN DT JJ NN , NNP . The two countries severed ties in 1983 after North Korean agents carried out a bombing in Rangoon that killed more than 20 people during a visit by South Korean President Chun Doo-hwan . DT CD NNS VBD NNS IN CD IN JJ JJ NNS VBD RP DT NN IN NNP WDT VBD JJR IN CD NNS IN DT NN IN NNP JJ NNP NNP NNP . Burma and North Korea agreed to resume diplomatic relations in April during a visit by North Korean Deputy Foreign Minister Kim Yong Il . NNP CC NNP NNP VBD TO VB JJ NNS IN NNP IN DT NN IN NNP JJ NNP NNP NNP NNP NNP NNP . Doctors and other trained professionals can face steep challenges when they move to the United States and pursue their careers . NNS CC JJ JJ NNS MD VB JJ NNS WRB PRP VBP TO DT NNP NNPS CC VB PRP$ NNS . License requirements and added education can make it a difficult transition . NN NNS CC JJ NN MD VB PRP DT JJ NN . VOA 's Brian Wagner reports on a program in Florida that helps immigrant physicians find new careers in U.S. hospitals . NNP POS NNP NNP VBZ IN DT NN IN NNP WDT VBZ JJ NNS VBP JJ NNS IN NNP NNS . Two spectators were injured Thursday at a parade in New York when a huge balloon went out of control , knocking part of a lamp post down on the victims . CD NNS VBD VBN NNP IN DT NN IN NNP NNP WRB DT JJ NN VBD IN IN NN , VBG NN IN DT NN NN RB IN DT NNS . A woman , 26 , and a girl , 11 , were taken to a hospital for treatment . DT NN , CD , CC DT NN , CD , VBD VBN TO DT NN IN NN . The wayward balloon was part of the Macy 's Thanksgiving Parade , an American tradition since 1924 . DT JJ NN VBD NN IN DT NNP POS NNP NNP , DT JJ NN IN CD . The Macy 's parade features many huge balloons , which are made to resemble cartoon characters and are guided down the streets by dozens of people hanging onto ropes . DT NNP POS NN VBZ JJ JJ NNS , WDT VBP VBN TO VB NN NNS CC VBP VBN IN DT NNS IN NNS IN NNS VBG IN NNS . It is the second such recent accident for the parade . PRP VBZ DT JJ JJ JJ NN IN DT NN . Back in 1997 , a balloon seriously injured a woman when a ' Cat in the Hat ' balloon was caught by high winds and knocked over a lamppost . RB IN CD , DT NN RB VBD DT NN WRB DT `` NN IN DT NNP `` NN VBD VBN IN JJ NNS CC VBD IN DT NN . French Prime Minister Dominique de Villepin has announced he is formally endorsing the presidential bid of his longtime rival , Interior Minister Nicolas Sarkozy . JJ NNP NNP NNP NNP NNP VBZ VBN PRP VBZ RB VBG DT JJ NN IN PRP$ JJ NN , NNP NNP NNP NNP . The interior minister is the leader of the conservative ruling party , the Union for a Popular Movement . DT JJ NN VBZ DT NN IN DT JJ NN NN , DT NNP IN DT NNP NN . Monday 's endorsement of Sarkozy by the prime minister comes a day after President Jacques Chirac announced his retirement . NNP POS NN IN NNP IN DT JJ NN VBZ DT NN IN NNP NNP NNP VBD PRP$ NN . Mr. Chirac has not endorsed a candidate for next month 's election . NNP NNP VBZ RB VBN DT NN IN JJ NN POS NN . In addition to Sarkozy , the two other main candidates vying to succeed Mr. Chirac are Socialist leader Segolene Royal and centrist leader Francois Bayrou . IN NN TO NNP , DT CD JJ JJ NNS VBG TO VB NNP NNP VBP JJ NN NNP NNP CC JJ NN NNP NNP . Colombia 's largest rebel group says it will release two hostages on Saturday . NNP POS JJS NN NN VBZ PRP MD VB CD NNS IN NNP . In a statement Wednesday , the Revolutionary Armed Forces of Colombia , or FARC , said it will fulfill a promise to release police officers Luis Almanza Patron and Carlos Alberto Logarda . IN DT NN NNP , DT NNP NNP NNS IN NNP , CC NNP , VBD PRP MD VB DT NN TO VB NN NNS NNP NNP NNP CC NNP NNP NNP . The statement said the two men will be handed over to the Red Cross and presidential candidate Alvaro Leyva in Putumayo department , near Colombia 's border with Ecuador . DT NN VBD DT CD NNS MD VB VBN IN TO DT NNP NNP CC JJ NN NNP NNP IN NNP NN , IN NNP POS NN IN NNP . The police officers were captured in a FARC offensive late last year . DT NN NNS VBD VBN IN DT NNP NN RB JJ NN . The rebels also have a group of nearly 60 hostages they want to exchange for hundreds of rebel fighters jailed by Colombian authorities . DT NNS RB VBP DT NN IN RB CD NNS PRP VBP TO VB IN NNS IN NN NNS VBN IN JJ NNS . But the administration of President Alvaro Uribe has shown no willingness to make such a swap . CC DT NN IN NNP NNP NNP VBZ VBN DT NN TO VB JJ DT NN . Israel 's parliament has approved the government 's plan to withdraw Jewish settlers from the Gaza Strip and northern West Bank . NNP POS NN VBZ VBN DT NN POS NN TO VB JJ NNS IN DT NNP NNP CC JJ NNP NNP . By a vote of 59 to 40 , Israeli lawmakers passed a bill Wednesday to compensate the 8,500 settlers who will be affected by Prime Minister Ariel Sharon 's plan . IN DT NN IN CD TO CD , JJ NNS VBD DT NN NNP TO VB DT CD NNS WP MD VB VBN IN NNP NNP NNP NNP POS NN . Lawmakers rejected proposed amendments to call a referendum on the withdrawal and delay evacuation orders . NNS VBD VBN NNS TO VB DT NN IN DT NN CC NN NN NNS . The Sharon government hopes to implement its plan by September , over strong opposition from hardline Israeli nationalists . DT NNP NN VBZ TO VB PRP$ NN IN NNP , IN JJ NN IN JJ JJ NNS . The plan could still be derailed if the government does not win passage of a state budget by March 31 - a failure that would cause its automatic fall from power . DT NN MD RB VB VBN IN DT NN VBZ RB VB NN IN DT NN NN IN NNP CD IN DT NN WDT MD VB PRP$ JJ NN IN NN . In Ramallah Wednesday , Palestinian officials said leader Mahmoud Abbas has formed a new cabinet , with supporters due to take over the interior and foreign ministries . IN NNP NNP , JJ NNS VBD NN NNP NNP VBZ VBN DT JJ NN , IN NNS JJ TO VB RP DT NN CC JJ NNS . Militants in Nigeria 's oil-rich Niger Delta region say they have killed three soldiers in a clash near a major natural gas plant . NNS IN NNP POS NN NNP NNP NN VBP PRP VBP VBN CD NNS IN DT NN IN DT JJ JJ NN NN . The Movement for the Emancipation of the Niger Delta made the announcement in an e-mail statement Saturday . DT NN IN DT NN IN DT NNP NNP VBD DT NN IN DT JJ NN NNP . The group says it seized a military boat as well as weapons and ammunition during Thursday 's encounter . DT NN VBZ PRP VBD DT JJ NN RB RB IN NNS CC NN IN NNP POS NN . An Army spokesman says three soldiers went missing near Soku , but says at this time , there is no confirmation of them being killed . DT NNP NN VBZ CD NNS VBD VBG IN NNP , CC VBZ IN DT NN , EX VBZ DT NN IN PRP VBG VBN . Militants groups are demanding greater autonomy for the Delta region . NNS NNS VBP VBG JJR NN IN DT NNP NN . They have carried out several attacks and kidnapped foreign oil workers in recent months . PRP VBP VBN RP JJ NNS CC VBN JJ NN NNS IN JJ NNS . Militants are still holding three hostages , two Americans and a Briton . NNS VBP RB VBG CD NNS , CD NNS CC DT NN . A human rights group says tens of thousands of women and girls in the eastern part of the Democratic Republic of the Congo have been raped by armed groups on both sides of the conflict . DT JJ NNS NN VBZ NNS IN NNS IN NNS CC NNS IN DT JJ NN IN DT JJ NNP IN DT NNP VBP VBN VBN IN JJ NNS IN DT NNS IN DT NN . U.S.-based Human Rights Watch says government soldiers and rebel forces have sexually assaulted females on a daily basis since fighting broke out in 1998 . JJ NNP NNPS NNP VBZ NN NNS CC JJ NNS VBP RB VBN NNS IN DT JJ NN IN VBG VBN RP IN CD . But the group says only a handful have been prosecuted for the crimes . CC DT NN VBZ RB DT NN VBP VBN VBN IN DT NNS . Human Rights Watch says many more incidents of rape have probably gone unreported in the Congo . NNP NNP NNP VBZ JJ JJR NNS IN NN VBP RB VBN JJ IN DT NNP . World oil prices declined slightly Wednesday after the Bush administration said it will release crude oil from a national reserve to ease disruptions caused by Hurricane Katrina . NNP NN NNS VBD RB NNP IN DT NNP NN VBD PRP MD VB JJ NN IN DT JJ NN TO VB NNS VBN IN NNP NNP . U.S. Energy Secretary Samuel Bodman told television interviewers the oil will be loaned to refiners who need it . NNP NNP NNP NNP NNP VBD NN NNS DT NN MD VB VBN TO NNS WP VBP PRP . The U.S. government 's Strategic Petroleum Reserve has nearly 700 million barrels of crude oil in underground salt caverns - enough to meet U.S. demand for about one month . DT NNP NN POS NNP NNP NNP VBZ RB CD CD NNS IN JJ NN IN JJ NN NNS IN JJ TO VB NNP NN IN RB CD NN . World oil prices surged to a record $ 70.85 a barrel Tuesday as investors worried that hurricane damage will curtail U.S. crude oil , gasoline , and heating oil production . NNP NN NNS VBD TO DT NN $ CD DT NN NNP IN NNS VBD IN NN NN MD VB NNP JJ NN , NN , CC NN NN NN . Prices fell below $ 70 after the announcement . NNS VBD RB $ CD IN DT NN . The loan of crude oil will help some refineries continue production . DT NN IN JJ NN MD VB DT NNS VBP NN . But analysts say the industry still has to get storm affected refineries back to the work of converting crude oil to gasoline and heating oil . CC NNS VBP DT NN RB VBZ TO VB NN VBN NNS RB TO DT NN IN VBG JJ NN TO NN CC NN NN . President Bush says he would consider using force to press Iran to give up its nuclear program , but only as a last resort . NNP NNP VBZ PRP MD VB VBG NN TO VB NNP TO VB RP PRP$ JJ NN , CC RB IN DT JJ NN . Speaking from his Texas ranch in an interview with Israeli television broadcast Saturday , Mr. Bush said the United States and Israel agree that Iran must not be allowed to have a nuclear weapon . VBG IN PRP$ NNP NN IN DT NN IN JJ NN NN NNP , NNP NNP VBD DT NNP NNPS CC NNP VBP IN NNP MD RB VB VBN TO VB DT JJ NN . When asked if that included the use of force , Mr. Bush said ' all options are on the table ' if diplomacy fails . WRB VBN IN DT VBD DT NN IN NN , NNP NNP VBD `` DT NNS VBP IN DT NN `` IN NN VBZ . Iran angered Washington and the European Union by resuming uranium conversion this week after rejecting an EU offer of political and economic incentives in return for giving up its nuclear program . NNP VBD NNP CC DT NNP NNP IN VBG NN NN DT NN IN VBG DT NNP NN IN JJ CC JJ NNS IN NN IN VBG RP PRP$ JJ NN . Tehran says the program is only for peaceful purposes . NNP VBZ DT NN VBZ RB IN JJ NNS . Europe and the United States have warned they will refer Iran to the U.N. Security Council for possible sanctions if Tehran does not cooperate . NNP CC DT NNP NNPS VBP VBN PRP MD VB NNP TO DT NNP NNP NNP IN JJ NNS IN NNP VBZ RB VB . Suspected Taleban insurgents have attacked a police post in Afghanistan 's southern Kandahar province , leaving at least four policemen and five militants dead . NNP NNP NNS VBP VBN DT NN NN IN NNP POS JJ NNP NN , VBG IN JJS CD NNS CC CD NNS JJ . Local officials say the militants fled after the Monday night clash , which lasted for three hours . JJ NNS VBP DT NNS VBD IN DT NNP NN NN , WDT VBD IN CD NNS . Earlier , security officials say that suspected Taleban rebels ambushed and killed an Afghan government official in an area bordering Pakistan . RB , NN NNS VBP IN JJ NNP NNS VBD CC VBD DT JJ NN NN IN DT NN VBG NNP . Police say the official , Mohammed Zahir , was attacked Tuesday , in the town of Paktia . NNS VBP DT NN , NNP NNP , VBD VBN NNP , IN DT NN IN NNP . In the exchange of fire , Zahir and one of the attackers were fatally shot and at least one other militant was wounded . IN DT NN IN NN , NNP CC CD IN DT NNS VBD RB VBN CC IN JJS CD JJ NN VBD VBN . The Taleban was ousted from power in Afghanistan by U.S.-led forces in late 2001 . DT NNP VBD VBN IN NN IN NNP IN JJ NNS IN JJ CD . The invasion was carried out after the fundamentalist regime refused to hand over al-Qaida leader Osama bin Laden following the September 11th terror attacks on the United States . DT NN VBD VBN RP IN DT NN NN VBD TO VB RP NNP NN NNP NNP NNP VBG DT NNP JJ NN NNS IN DT NNP NNPS . Israeli police investigating a money-laundering scheme have arrested 22 employees of the country 's largest bank . JJ NN VBG DT JJ NN VBP VBN CD NNS IN DT NN POS JJS NN . Authorities say the employees of Bank Hapoalim helped customers transfer hundreds of millions of dollars without filing the reports required by Israeli law . NNS VBP DT NNS IN NNP NNP VBD NNS VB NNS IN NNS IN NNS IN VBG DT NNS VBN IN JJ NN . Police say the arrested employees all worked at the same branch in Tel Aviv . NNS VBP DT VBN NNS DT VBD IN DT JJ NN IN NNP NNP . While no customers have yet been arrested , they say the case involves many individuals and companies overseas . IN DT NNS VBP RB VBN VBN , PRP VBP DT NN VBZ JJ NNS CC NNS RB . In a news conference Sunday , France was the only foreign country named by police as working with investigators . IN DT NN NN NNP , NNP VBD DT JJ JJ NN VBN IN NNS IN VBG IN NNS . Authorities say their year-long investigation involves 80 bank accounts and 170 customers . NNS VBP PRP$ JJ NN VBZ CD NN NNS CC CD NNS . A spokesman for Bank Hapoalim said the bank has ordered its employees to cooperate fully with police . DT NN IN NNP NNP VBD DT NN VBZ VBN PRP$ NNS TO VB RB IN NNS . A United Nations envoy says Mozambique is showing signs of becoming a vibrant economy but still faces humanitarian problems . DT NNP NNPS NN VBZ NNP VBZ VBG NNS IN VBG DT JJ NN CC RB VBZ JJ NNS . James Morris told reporters Wednesday that he is impressed by the progress Mozambique has made since 1992 , when rebels signed a peace deal ending 16 years of civil war with the government . NNP NNP VBD NNS NNP IN PRP VBZ VBN IN DT NN NNP VBZ VBN IN CD , WRB NNS VBD DT NN NN VBG CD NNS IN JJ NN IN DT NN . But he says the southern African country still faces challenges because of natural disasters , food shortages and rising rates of HIV / AIDS . CC PRP VBZ DT JJ JJ NN RB VBZ NNS IN IN JJ NNS , NN NNS CC VBG NNS IN NNP NNP NNP . He says as long as those problems remain , the country 's poorest people will suffer . PRP VBZ RB JJ IN DT NNS VBP , DT NN POS JJS NNS MD VB . Morris , a U.N. special envoy for humanitarian aid , spoke at the end of a two-day visit to Mozambique . NNP , DT NNP JJ NN IN JJ NN , VBD IN DT NN IN DT JJ NN TO NNP . Mozambique 's economy is growing about 10 percent per year , but natural disasters have left 8,00,000 people in need of food aid . NNP POS NN VBZ VBG IN CD NN IN NN , CC JJ NNS VBP VBN CD NNS IN NN IN NN NN . A published report says members of the commission that investigated the September 11 terrorist attacks have criticized the federal government for failing to act on many of the panel 's recommendations to prevent another terrorist attack . DT JJ NN VBZ NNS IN DT NN WDT VBD DT NNP CD JJ NNS VBP VBN DT JJ NN IN VBG TO VB IN NN IN DT NN POS NNS TO VB DT JJ NN . The New York Times says members of the commission will release new , privately financed report on Thursday that is critical of the Bush administration and Congress . DT NNP NNP NNP VBZ NNS IN DT NN MD VB JJ , RB VBN NN IN NNP WDT VBZ JJ IN DT NNP NN CC NNP . Timothy Roemer , a former Democratic congressman and a member of the bipartisan panel , is quoted as saying the Federal Bureau of Investigation will be singled out for not carrying out promised reforms . NNP NNP , DT JJ JJ NN CC DT NN IN DT JJ NN , VBZ VBN IN VBG DT NNP NNP IN NNP MD VB VBN RP IN RB VBG RP JJ NNS . The Times says the White House is also criticized for not doing enough to defend civil liberties and privacy rights . DT NNP VBZ DT NNP NNP VBZ RB VBN IN RB VBG RB TO VB JJ NNS CC NN NNS . The International Monetary Fund has proposed several structural reforms aimed at improving its ability to respond to crises in a rapidly changing global economy . DT NNP NNP NNP VBZ VBN JJ JJ NNS VBN IN VBG PRP$ NN TO VB TO NNS IN DT RB VBG JJ NN . The proposed reforms include increasing the voice of emerging market countries in the Fund 's decision-making process . DT VBN NNS VBP VBG DT NN IN VBG NN NNS IN DT NNP POS JJ NN . The world 's lender of last resort also agreed to overhaul its economic surveillance mechanism . DT NN POS NN IN JJ NN RB VBD TO VB PRP$ JJ NN NN . The change could give the Fund more oversight in exchange-rate policies as well as broader powers in addressing regional trade disputes , such as the massive trade deficit between the United States and Asia . DT NN MD VB DT NNP JJR NN IN JJ NNS RB RB IN JJR NNS IN VBG JJ NN NNS , JJ IN DT JJ NN NN IN DT NNP NNPS CC NNP . The IMF 's 184 member countries is finishing spring meetings urging the leadership to develop concrete reform proposals for September 's meeting in Singapore . DT NNP POS CD NN NNS VBZ VBG NN NNS VBG DT NN TO VB JJ NN NNS IN NNP POS NN IN NNP . On Friday , the World Bank approved full debt cancellation for some of the world 's poorest countries , including Bolivia , Ethiopia , Nicaragua and Rwanda . IN NNP , DT NNP NNP VBD JJ NN NN IN DT IN DT NN POS JJS NNS , VBG NNP , NNP , NNP CC NNP . Iranian President Mahmoud Ahmadinejad has nominated a veteran executive to head the country 's all-important oil ministry , after his first three nominees failed to gain the backing of parliament . JJ NNP NNP NNP VBZ VBN DT NN NN TO VB DT NN POS JJ NN NN , IN PRP$ JJ CD NNS VBD TO VB DT NN IN NN . In a televised session of parliament Sunday , the president named career oil official Kazem Vaziri-Hamaneh to the post . IN DT JJ NN IN NN NNP , DT NN VBN NN NN NN NNP NNP TO DT NN . Lawmakers are to vote on the nominee next week . NNS VBP TO VB IN DT NN JJ NN . Mr. Ahmadinejad 's first three nominees - a politician , a Revolutionary Guards commander and an architect - were widely criticized for their lack of oil experience . NNP NNP POS JJ CD NNS IN DT NN , DT JJ NNP NN CC DT NN : VBD RB VBN IN PRP$ NN IN NN NN . Two were rejected by parliament , and a third withdrew his nomination . CD VBD VBN IN NN , CC DT NN VBD PRP$ NN . Analysts say the months-long dispute has shaken investor confidence and hurt the Iranian economy , which derives 80 percent of its revenues from oil exports . NNS VBP DT JJ NN VBZ VBN NN NN CC VB DT JJ NN , WDT VBZ CD NN IN PRP$ NNS IN NN NNS . Swedish police have ordered artist Lars Vilks out of his own home telling him it is no longer safe for him to live there . JJ NNS VBP VBN NN NNP NNP IN IN PRP$ JJ NN VBG PRP PRP VBZ RB RB JJ IN PRP TO VB RB . The head of al-Qaida in Iraq , Abu Omar al-Baghdadi , says he will pay as much as $ 1,50,000 to anyone who can kill Vilks because of what he calls offensive pictures of the Muslim Prophet Momammad . DT NN IN NNP IN NNP , NNP NNP NNP , VBZ PRP MD VB RB JJ IN $ CD TO DT WP MD VB NNP IN IN WP PRP VBZ JJ NNS IN DT NNP NNP NNP . Vilks says police have told him that the threats on his life are very serious . NNP VBZ NNS VBP VBN PRP IN DT NNS IN PRP$ NN VBP RB JJ . He says he was only allowed to return to his house in Stockholm to pick up a few items . PRP VBZ PRP VBD RB VBN TO VB TO PRP$ NN IN NNP TO VB RP DT JJ NNS . A Swedish newspaper last month printed Vilks ' cartoon of Mohammad 's head on a dog 's body . DT JJ NN JJ NN VBD NNP POS NN IN NNP POS NN IN DT NN POS NN . Vilks received support of the press freedom group Reporters Without Borders Monday , saying what it calls barbaric fundamentalism can not take away the freedom to draw cartoons . NNP VBD NN IN DT NN NN NN VBZ IN NNS NNP , VBG WP PRP VBZ JJ NN MD RB VB RP DT NN TO VB NNS . It says offering a reward for Vilks ' death shows a shocking lack of humanity . PRP VBZ VBG DT NN IN NNP POS NN VBZ DT JJ NN IN NN . Lebanese security officials say Syria has completed the first phase of its troop withdrawal from Lebanon . JJ NN NNS VBP NNP VBZ VBN DT JJ NN IN PRP$ NN NN IN NNP . The announcement comes amid U.S. , European and Lebanese opposition demands for an end to Syria 's three-decade military presence in Lebanon . DT NN VBZ IN NNP , JJ CC JJ NN NNS IN DT NN TO NNP POS JJ JJ NN IN NNP . A senior Lebanese security official told Reuters news agency all Syrian troops and intelligence officers in Lebanon had pulled back either to the Bekaa Valley in eastern Lebanon or had crossed back into Syria . DT JJ JJ NN NN VBD NNP NN NN DT JJ NNS CC NN NNS IN NNP VBD VBN RB RB TO DT NNP NNP IN JJ NNP CC VBD VBN RB IN NNP . Syria began the re-deployment of its 14-thousand troops in Lebanon on March 8th , after coming under international pressure to withdraw following the February 14th assassination of former prime minister Rafik Hariri in Beirut . NNP VBD DT NN IN PRP$ JJ NNS IN NNP IN NNP CD , IN VBG IN JJ NN TO VB VBG DT NNP JJ NN IN JJ JJ NN NNP NNP IN NNP . Meanwhile , a top Lebanese security chief says he and other security officials are willing to stand trial to clear them of any allegations of involvement in the assassination . RB , DT JJ JJ NN NN VBZ PRP CC JJ NN NNS VBP JJ TO VB NN TO VB PRP IN DT NNS IN NN IN DT NN . The United Nations counter-narcotics chief says Afghanistan has reduced the production and cultivation of opium for the first time since the Taleban regime fell in 2001 . DT NNP NNP NNS NN VBZ NNP VBZ VBN DT NN CC NN IN NN IN DT JJ NN IN DT NNP NN VBD IN CD . Antonio Maria Costa says land devoted to growing opium poppies was down 21 percent over the past year . NNP NNP NNP VBZ NN VBN TO VBG NN NNS VBD RB CD NN IN DT JJ NN . But good weather made remaining fields more bountiful , and the harvest declined just 2.4 percent . CC JJ NN VBD VBG NNS RBR JJ , CC DT NN VBD RB CD NN . The UN officials says he is pleased to credit the drop to farmers ' restraint - a crucial element in controlling the drug production and trafficking problem . DT NNP NNS VBZ PRP VBZ JJ TO VB DT NN TO NNS POS NN IN DT JJ NN IN VBG DT NN NN CC NN NN . But he says Afghanistan remains the world 's biggest producer of opium , the basis of heroin . CC PRP VBZ NNP VBZ DT NN POS JJS NN IN NN , DT NN IN NN . After US-led forces toppled the fundamentalist Taleban nearly four years ago , opium production in Afghanistan surged . IN JJ NNS VBD DT NN NNP RB CD NNS RB , NN NN IN NNP VBD . The international community has donated millions of dollars for drug eradication efforts . DT JJ NN VBZ VBN NNS IN NNS IN NN NN NNS . South Africa says two of its citizens were abducted this week in Nigeria 's volatile , oil-rich Niger Delta region . NNP NNP VBZ CD IN PRP$ NNS VBD VBN DT NN IN NNP POS JJ , JJ NNP NNP NN . The South African Foreign Affairs Ministry says its officials in Nigeria are doing everything they can to secure the hostages ' release . DT NNP NNP NNP NNP NNP VBZ PRP$ NNS IN NNP VBP VBG DT PRP MD TO VB DT NNS POS NN . It says the victims were kidnapped Tuesday . PRP VBZ DT NNS VBD VBN NNP . It is not clear who carried out the abduction . PRP VBZ RB JJ WP VBD RP DT NN . Gunmen in the Niger Delta regularly attack oil company facilities and kidnap their staff . NNS IN DT NNP NNP RB VBP NN NN NNS CC VBP PRP$ NN . Most hostages are released unharmed . JJS NNS VBP VBN JJ . Some attackers are militants who say they are fighting so the region 's impoverished residents get a greater share of the oil wealth . DT NNS VBP NNS WP VBP PRP VBP VBG IN DT NN POS JJ NNS VBP DT JJR NN IN DT NN NN . Others are gangs motivated by the ransom companies pay for the hostages . NNS VBP NNS VBN IN DT NN NNS VBP IN DT NNS . A surge in the unrest that began in late 2005 has resulted in Nigeria 's oil production dropping by about 25 percent . DT NN IN DT NN WDT VBD IN JJ CD VBZ VBN IN NNP POS NN NN VBG IN IN CD NN . Nigeria 's former education minister and six legislators have been charged in one of the country 's most serious cases of high-level corruption . NNP POS JJ NN NN CC CD NNS VBP VBN VBN IN CD IN DT NN POS RBS JJ NNS IN JJ NN . All seven were charged in the High Court in Abuja with a string of offenses related to giving and receiving bribes . DT CD VBD VBN IN DT NNP NNP IN NNP IN DT NN IN NNS VBN TO VBG CC VBG NNS . They all pleaded not guilty . PRP DT VBD RB JJ . Former education minister Fabian Osuji is accused of paying legislators , including then Senate President Adolphus Wabara , $ 4,00,000 to approve an inflated budget . JJ NN NN NNP NNP VBZ VBN IN VBG NNS , VBG RB NNP NNP NNP NNP , $ CD TO VB DT JJ NN . Mr. Osuji has admitted to paying the money . NNP NNP VBZ VBN TO VBG DT NN . He was fired last month by President Olusegun Obasanjo during a televised address to the nation . PRP VBD VBN JJ NN IN NNP NNP NNP IN DT JJ NN TO DT NN . Last week , the senate president resigned his post - the third highest ranking position in Nigeria 's government . JJ NN , DT NN NN VBD PRP$ NN IN DT JJ JJS JJ NN IN NNP POS NN . Israeli Prime Minister Ariel Sharon says his country could eventually remove more West Bank settlements than originally planned . JJ NNP NNP NNP NNP VBZ PRP$ NN MD RB VB JJR NNP NNP NNS IN RB VBN . In an interview published Friday in Israeli newspaper Yediot Ahronot , Mr. Sharon was asked whether Israel would pull out of several small West Bank settlements in addition to the four already slated for withdrawal . IN DT NN VBN NNP IN JJ NN NNP NNP , NNP NNP VBD VBN IN NNP MD VB IN IN JJ JJ NNP NNP NNS IN NN TO DT CD RB VBN IN NN . He responded that not everything would remain and said the issue would be raised during final status negotiations with the Palestinians . PRP VBD IN RB DT MD VB CC VBD DT NN MD VB VBN IN JJ NN NNS IN DT NNS . He added that he has no regrets about his plan to evacuate about 8,500 Jewish settlers from 21 settlements in the Gaza Strip beginning Wednesday , despite fierce internal opposition . PRP VBD IN PRP VBZ DT NNS IN PRP$ NN TO VB IN CD JJ NNS IN CD NNS IN DT NNP NNP VBG NNP , IN JJ JJ NN . Separately , the militant Palestinian group Hamas says it will not surrender weapons to the Palestinian Authority after Israel 's withdrawal , because its resistance against Israel 's occupation of Palestinian lands continues . RB , DT JJ JJ NN NNP VBZ PRP MD RB VB NNS TO DT JJ NNP IN NNP POS NN , IN PRP$ NN IN NNP POS NN IN JJ NNS VBZ . OPEC 's president Sheikh Ahmad Fahd al-Sabah , who is also Kuwait 's energy minister , said Monday the cartel will pump an extra 5,00,000 barrels a day in May to calm supply fears . NNP POS NN NNP NNP NNP NNP , WP VBZ RB NNP POS NN NN , VBD NNP DT NN MD VB DT JJ CD NNS DT NN IN NNP TO VB NN NNS . Over the weekend , the Group of Seven Industrialized nations - comprising the United States , Japan , Germany , France , Britain , Italy , and Canada - asked OPEC to lower prices by increasing output . IN DT NN , DT NNP IN CD VBN NNS IN VBG DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , CC NNP : VBD NNP TO VB NNS IN VBG NN . Last month , the Organization of the Petroleum Exporting Countries boosted its production quota by 5,00,000 barrels a day to 27.5 million barrels . JJ NN , DT NNP IN DT NNP NNP NNPS VBD PRP$ NN NN IN CD NNS DT NN TO CD CD NNS . OPEC 's 11 members supply nearly 40 percent of the world 's crude oil . NNP POS CD NNS VBP RB CD NN IN DT NN POS JJ NN . In Monday 's trading , crude oil for May delivery rose 41 cents to $ 50.9 a barrel on the New York Mercantile Exchange . IN NNP POS NN , JJ NN IN NNP NN VBD CD NNS TO $ CD DT NN IN DT NNP NNP NNP NNP . Prices remain about 30 percent higher than a year ago . NNS VBP IN CD NN JJR IN DT NN RB . British Prime Minister Tony Blair says he has not ruled out eventually holding an official inquiry into Britain 's role in the war in Iraq , but he said now is not the time . JJ NNP NNP NNP NNP VBZ PRP VBZ RB VBN IN RB VBG DT JJ NN IN NNP POS NN IN DT NN IN NNP , CC PRP VBD RB VBZ RB DT NN . Mr. Blair spoke just hours after his government narrowly defeated a parliamentary motion calling for an immediate inquiry into Britain 's involvement in the war . NNP NNP VBD RB NNS IN PRP$ NN RB VBD DT JJ NN VBG IN DT JJ NN IN NNP POS NN IN DT NN . At his weekly question and answer session in parliament Wednesday , the prime minister said an immediate inquiry would send an unwelcome signal to coalition allies and ' dismay ' the Baghdad government . IN PRP$ JJ NN CC NN NN IN NN NNP , DT JJ NN VBD DT JJ NN MD VB DT JJ NN TO NN NNS CC `` VB `` DT NNP NN . Late Tuesday , lawmakers voted against the proposed inquiry 298 to 273 , with 12 members of Mr. Blair 's Labor Party voting in favor . RB NNP , NNS VBD IN DT VBN NN CD TO CD , IN CD NNS IN NNP NNP POS NNP NNP NN IN NN . Welsh and Scottish nationalist parties proposed the motion in light of deteriorating security and growing sectarian violence in Iraq . JJ CC JJ NN NNS VBD DT NN IN NN IN VBG NN CC VBG JJ NN IN NNP . A U.S. military court has convicted an Army sergeant of murdering two of his comrades and wounding 14 others in a grenade and rifle attack two years ago in Kuwait . DT NNP JJ NN VBZ VBN DT NNP NN IN VBG CD IN PRP$ NNS CC VBG CD NNS IN DT NN CC NN NN CD NNS RB IN NNP . A military jury in Fort Bragg , North Carolina Thursday found Sergeant Hasan Akbar , a member of the Army 's 101st Airborne Division , guilty of ambushing the troops as they slept in tents at the start of the Iraq war . DT JJ NN IN NNP NNP , NNP NNP NNP VBD NNP NNP NNP , DT NN IN DT NNP POS CD NNP NNP , NN IN VBG DT NNS IN PRP VBD IN NNS IN DT NN IN DT NNP NN . Sergeant Akbar faces a possible death sentence . NNP NNP VBZ DT JJ NN NN . If condemned to death , he would become the first soldier to be executed in more than 40 years . IN VBN TO NN , PRP MD VB DT JJ NN TO VB VBN IN JJR IN CD NNS . His military lawyers claimed that constant ridicule over his being a black Muslim caused him to snap , triggering the attack . PRP$ JJ NNS VBD IN JJ NN IN PRP$ VBG DT JJ NN VBD PRP TO VB , VBG DT NN . The trial 's sentencing phase is scheduled to begin Monday . DT NN POS NN NN VBZ VBN TO VB NNP . American pop star Madonna has visited an orphanage in Malawi for children who have lost their parents to the AIDS epidemic . JJ NN NN NNP VBZ VBN DT NN IN NNP IN NNS WP VBP VBN PRP$ NNS TO DT NNP NN . Several orphans sang to the music star at the home near the city of Blantyre Thursday . JJ NNS VBD TO DT NN NN IN DT NN IN DT NN IN NNP NNP . Madonna handed out copies of her children 's book , The English Roses , which had been translated into Malawi 's main language . NNP VBD RP NNS IN PRP$ NNS POS NN , DT NNP NNPS , WDT VBD VBN VBN IN NNP POS JJ NN . The singer arrived in the southern African country on Wednesday , in part to inspect a large orphan care center she is funding near the capital , Lilongwe . DT NN VBD IN DT JJ JJ NN IN NNP , IN NN TO VB DT JJ NN NN NN PRP VBZ VBG IN DT NN , NNP . Government officials have said Madonna also is using the trip to adopt a boy from Malawi . NN NNS VBP VBN NNP RB VBZ VBG DT NN TO VB DT NN IN NNP . But a spokesperson for Madonna , Liz Rosenberg , denied the reports . CC DT NN IN NNP , NNP NNP , VBD DT NNS . She added the singer hopes publicity surrounding her trip will draw attention to the plight of Malawi 's estimated one million AIDS orphans . PRP VBD DT NN VBZ NN VBG PRP$ NN MD VB NN TO DT NN IN NNP POS VBN CD CD NNP NNS . Venezuelan President Hugo Chavez and Cuban leader Fidel Castro have strongly criticized the U.S.-backed Free Trade Area of the Americas as a plan by Washington to dominate Latin America . JJ NNP NNP NNP CC JJ NN NNP NNP VBP RB VBN DT JJ NNP NNP NNP IN DT NNPS IN DT NN IN NNP TO VB NNP NNP . During a rally in Havana Friday at the end of a three-day visit to Cuba , Mr. Chavez called on regional governments to instead join the Bolivarian Alternative for the Americas - a competing plan he introduced last year . IN DT NN IN NNP NNP IN DT NN IN DT JJ NN TO NNP , NNP NNP VBD IN JJ NNS TO RB VB DT NNP NNP IN DT NNPS IN DT VBG NN PRP VBD JJ NN . So far , Cuba is the only country to join the Venezuelan leader 's socialist alternative to the U.S.-backed plan , which was to begin in January , but has yet to be finalized . RB RB , NNP VBZ DT JJ NN TO VB DT JJ NN POS JJ NN TO DT JJ NN , WDT VBD TO VB IN NNP , CC VBZ RB TO VB VBN . The Cuban and Venezuelan leaders announced new bilateral trade agreements on Friday , including Cuba 's plan to buy $ 412 million worth of goods from Venezuela , which provides inexpensive oil and other subsidies to communist Cuba . DT JJ CC JJ NNS VBD JJ JJ NN NNS IN NNP , VBG NNP POS NN TO VB $ CD CD NN IN NNS IN NNP , WDT VBZ JJ NN CC JJ NNS TO JJ NNP . A United Nations war crimes court has increased a Roman Catholic priest 's sentence to life imprisonment for his role in Rwanda 's 1994 genocide . DT NNP NNPS NN NNS NN VBZ VBN DT NNP NNP NN POS NN TO NN NN IN PRP$ NN IN NNP POS CD NN . An appeals court for the International Criminal Court for Rwanda ruled Wednesday that an original sentence for Father Athanase Seromba of 15 years in prison was too lenient . DT NNS NN IN DT NNP NNP NNP IN NNP VBD NNP IN DT JJ NN IN NNP NNP NNP IN CD NNS IN NN VBD RB JJ . The priest was convicted by the court in 2006 on charges of genocide and extermination . DT NN VBD VBN IN DT NN IN CD IN NNS IN NN CC NN . Prosecutors say the priest helped to orchestrate the slaughter of 2,000 ethnic Tutsis who sought shelter at his parish church . NNS VBP DT NN VBD TO VB DT NN IN CD JJ NN WP VBD NN IN PRP$ JJ NN . Witnesses say the priest ordered militias to demolish the crowded church with bulldozers , and to kill anyone who survived the church 's collapse . NNS VBP DT NN VBD NNS TO VB DT JJ NN IN NNS , CC TO VB DT WP VBD DT NN POS NN . During Rwanda 's 1994 genocide , Hutu extremists killed an estimated 8,00,000 minority Tutsis and Hutu moderates during the span of 100 days . IN NNP POS CD NN , NNP NNS VBD DT VBN CD NN NN CC NNP NNS IN DT NN IN CD NNS . Indian officials say four chickens have tested positive for the H5 bird flu virus in western India , but it was unclear whether they had the deadly H5N1 strain . JJ NNS VBP CD NNS VBP VBN JJ IN DT NNP NN NN NN IN JJ NNP , CC PRP VBD JJ IN PRP VBD DT JJ NNP NN . The outbreak is in the state of Maharashtra , the scene of India 's first outbreak of bird flu last month . DT NN VBZ IN DT NN IN NNP , DT NN IN NNP POS JJ NN IN NN NN JJ NN . Officials say four villages in Jalgaon district in the northern part of the state were affected by the latest outbreak . NNS VBP CD NNS IN NNP NN IN DT JJ NN IN DT NN VBD VBN IN DT JJS NN . Jalgaon is one district away from Nandurbar , where India reported the deadly H5N1 strain of bird flu last month . NNP VBZ CD NN RB IN NNP , WRB NNP VBD DT JJ NNP NN IN NN NN JJ NN . Hundreds of thousands of chickens were destroyed in the town of Navapur and neighboring areas after that outbreak , and last week authorities said they had contained the virus there . NNS IN NNS IN NNS VBD VBN IN DT NN IN NNP CC JJ NNS IN DT NN , CC JJ NN NNS VBD PRP VBD VBN DT NN RB . Officials say chickens in the Jalgaon area will also be culled . NNS VBP NNS IN DT NNP NN MD RB VB VBN . A private Chinese company plans to build the country 's first oil pipeline to Russia . DT JJ JJ NN VBZ TO VB DT NN POS JJ NN NN TO NNP . Chinese state media say the planned 30-kilometer project announced Wednesday will link railway lines between Heihe in China 's northeast Heilongjiang province and the eastern Russian city of Blagoveshchensk . JJ NN NNS VBP DT JJ JJ NN VBN NNP MD VB NN NNS IN NNP IN NNP POS NN NNP NN CC DT JJ JJ NN IN NNP . The two cities are the closest along the borders of the two countries , separated by the Heilongjiang River in China - known as the Amur River in Russia . DT CD NNS VBP DT JJS IN DT NNS IN DT CD NNS , VBN IN DT NNP NNP IN NNP : VBN IN DT NNP NNP IN NNP . The $ 64 million project is expected to be operational in September 2006 , and will carry 21 million barrels of oil per year . DT $ CD CD NN VBZ VBN TO VB JJ IN NNP CD , CC MD VB CD CD NNS IN NN IN NN . It is the latest project to help Beijing as it looks for alternatives to Middle East oil . PRP VBZ DT JJS NN TO VB NNP IN PRP VBZ IN NNS TO NNP NNP NN . Polish President Lech Kaczynski has invited his Russian counterpart Dmitri Medvedev to this month 's 65th anniversary of the liberation of the Nazi death camp , Auschwitz . JJ NNP NNP NNP VBZ VBN PRP$ JJ NN NNP NNP TO DT NN POS JJ NN IN DT NN IN DT NNP NN NN , NNP . President Kaczynski 's office confirmed the invitation in a statement on his Web site . NNP NNP POS NN VBD DT NN IN DT NN IN PRP$ NNP NN . The move is being seen as an effort to improve ties with Russia . DT NN VBZ VBG VBN IN DT NN TO VB NNS IN NNP . More than one million people died at the Auschwitz camp in southern Poland - most of them Jews - before it was liberated by Soviet troops on January 27 , 1945 . JJR IN CD CD NNS VBD IN DT NNP NN IN JJ NNP IN JJS IN PRP NNPS : IN PRP VBD VBN IN JJ NNS IN NNP CD , CD . The camp was part of a network set up by Nazi Germany during World War II to exterminate Jews and anyone else it considered undesirable . DT NN VBD NN IN DT NN VBN RP IN NNP NNP IN NNP NNP NNP TO VB NNPS CC DT RB PRP VBD JJ . The anniversary commemoration at the camp site , which is now a museum , is expected to draw a range of foreign officials . DT NN NN IN DT NN NN , WDT VBZ RB DT NN , VBZ VBN TO VB DT NN IN JJ NNS . Taiwan President Chen Shui-bian briefly joined a massive rally Saturday in Taipei to protest China 's threat to use force against the island if it formally declares independence . NNP NNP NNP NNP NN VBD DT JJ NN NNP IN NNP TO VB NNP POS NN TO VB NN IN DT NN IN PRP RB VBZ NN . Speaking to more than 1,00,000 protesters , Mr. Chen told the crowd that Taiwan is an independent , sovereign state . VBG TO JJR IN CD NNS , NNP NNP VBD DT NN IN NNP VBZ DT JJ , JJ NN . He said the island 's future should not be decided by China . PRP VBD DT NN POS NN MD RB VB VBN IN NNP . Demonstrators chanted slogans such as ' Loving Peace , Opposing Missiles , ' and ' Oppose Annexation . ' NNS VBD NNS JJ IN `` VBG NN , VBG NNP , `` CC `` VB NN . `` The rally comes amid this week 's one-year anniversary of China 's approval of an anti-secession law . DT NN VBZ IN DT NN POS JJ NN IN NNP POS NN IN DT JJ NN . The law says China will employ ' non-peaceful means ' to prevent Taiwan 's independence if efforts at peaceful reunification fail . DT NN VBZ NNP MD VB `` JJ NNS `` TO VB NNP POS NN IN NNS IN JJ NN VBP . Mr. Chen angered Beijing last month when he decided to stop funding a unification council and scrap guidelines for reunification with China . NNP NNP VBD NNP JJ NN WRB PRP VBD TO VB VBG DT NN NN CC NN NNS IN NN IN NNP . China and Taiwan split in 1949 after a civil war , but Beijing considers Taiwan a renegade province . NNP CC NNP NN IN CD IN DT JJ NN , CC NNP VBZ NNP DT NN NN . Israel forces say they killed a Palestinian militant in the Gaza Strip during a gunbattle early Friday . NNP NNS VBP PRP VBD DT JJ NN IN DT NNP NNP IN DT NN JJ NNP . The army says three Palestinians began firing missiles and small arms at Israeli soldiers from an abandoned building near the Gaza settlement of Kfar Darom . DT NN VBZ CD NNS VBD VBG NNS CC JJ NNS IN JJ NNS IN DT JJ NN IN DT NNP NN IN NNP NNP . As Israeli forces returned fire , two of the militants escaped , but an army spokesman says the third man was killed . IN JJ NNS VBD NN , CD IN DT NNS VBD , CC DT NN NN VBZ DT JJ NN VBD VBN . Three militant groups , Hamas , the Popular Resistance Committees and the Al-Aqsa Martyrs ' Brigade , say they were involved in the attempt to infiltrate the Jewish settlement . CD JJ NNS , NNP , DT NNP NNP NNS CC DT NNP NNPS POS NN , VBP PRP VBD VBN IN DT NN TO VB DT JJ NN . Today 's clash further strained a shaky three-month cease-fire . NN POS NN RB VBD DT JJ JJ NN . Hamas and the Al-Aqsa Martyrs ' Brigade have pledged to respect the truce , but both groups say they are determined to avenge Israel 's recent military actions in Gaza . NNP CC DT NNP NNP POS NNP VBP VBN TO VB DT NN , CC DT NNS VBP PRP VBP VBN TO VB NNP POS JJ JJ NNS IN NNP . The Israeli military has been ordered Thursday to use all means necessary to suppress Gaza militants ' attacks on Jewish targets . DT JJ NN VBZ VBN VBN NNP TO VB DT NNS JJ TO VB NNP NNS POS NNS IN JJ NNS . U.S. officials in Afghanistan say a member of a Special Operations team missing since Tuesday has been rescued in the eastern part of the country . NNP NNS IN NNP VBP DT NN IN DT JJ NNP NN VBG IN NNP VBZ VBN VBN IN DT JJ NN IN DT NN . Defense Department officials say he is a member of the elite Navy Seals . NNP NNP NNS VBP PRP VBZ DT NN IN DT JJ NNP NNS . The sailor was wounded , but evaded the enemy until his rescue on Sunday . DT NN VBD VBN , CC VBD DT NN IN PRP$ NN IN NNP . He has been flown to a U.S. military hospital in Germany . PRP VBZ VBN VBN TO DT NNP JJ NN IN NNP . Three other members of his Navy Seals team are still missing . CD JJ NNS IN PRP$ NNP NNPS NN VBP RB VBG . U.S. and Afghan troops are scouring the mountainous region in Kunar province looking for them . NNP CC JJ NNS VBP VBG DT JJ NN IN NNP NN VBG IN PRP . The Navy commandos went missing Tuesday after calling for help during a battle with insurgents while on a reconnaissance mission . DT NNP NNS VBD VBG NNP IN VBG IN NN IN DT NN IN NNS IN IN DT NN NN . The U.S. military helicopter sent to rescue them was shot down by suspected Taleban militants , killing all 16 U.S. service members aboard . DT NNP NN NN VBN TO VB PRP VBD VBN RB IN JJ NNP NNS , VBG DT CD NNP NN NNS RB . Pope Benedict XVI waves from his studio 's window overlooking St. Peter 's Square during the Angelus prayer NNP NNP NNP VBZ IN PRP$ NN POS NN VBG NNP NNP POS NNP IN DT NNP NN Pope Benedict has called on the terrorists responsible for last week 's London bombings to , in his words , ' stop in the name of God . ' NNP NNP VBZ VBN IN DT NNS JJ IN JJ NN POS NNP NNS TO , IN PRP$ NNS , `` NN IN DT NN IN NNP . `` Speaking at the Vatican Sunday , the pontiff urged the faithful to pray not only for the London victims and their families , but also for the attackers . VBG IN DT NNP NNP , DT NN VBD DT NN TO VB RB RB IN DT NNP NNS CC PRP$ NNS , CC RB IN DT NNS . The pope said he hopes God will touch their hearts . DT NN VBD PRP VBZ NNP MD VB PRP$ NNS . In comments directed at the terrorists , Benedict said , ' God loves life , which he created , not death . ' IN NNS VBN IN DT NNS , NNP VBD , `` NNP VBZ NN , WDT PRP VBD , RB NN . `` Benedict made his plea following his weekly blessing in St. Peter 's Square . NNP VBD PRP$ NN VBG PRP$ JJ NN IN NNP NNP POS NNP . On the day of the London transport system bombings , the German-born pope condemned the attacks as ' barbaric acts against humanity . ' IN DT NN IN DT NNP NN NN NNS , DT JJ NN VBD DT NNS IN `` JJ NNS IN NN . `` Iran 's president says Tehran will never abandon its nuclear activities , but will continue talks , for now , on its nuclear program with the European Union and the International Atomic Energy Agency . NNP POS NN VBZ NNP MD RB VB PRP$ JJ NNS , CC MD VB NNS , IN RB , IN PRP$ JJ NN IN DT NNP NNP CC DT NNP NNP NNP NNP . In an interview with a French newspaper , Le Figaro , President Mohammed Khatami said Iran is ready to consider any reasonable solution , but will not suspend its nuclear activities permanently . IN DT NN IN DT JJ NN , NNP NNP , NNP NNP NNP VBD NNP VBZ JJ TO VB DT JJ NN , CC MD RB VB PRP$ JJ NNS RB . He said the Europeans must understand that the Nuclear Non-Proliferation Treaty and other international agreements allow Iran to develop nuclear technology for peaceful purposes . PRP VBD DT NNS MD VB IN DT NNP NNP NNP CC JJ JJ NNS VBP NNP TO VB JJ NN IN JJ NNS . France , Germany and Britain , with U.S. support , are offering Iran economic incentives in exchange for its suspension of uranium enrichment activity . NNP , NNP CC NNP , IN NNP NN , VBP VBG NNP JJ NNS IN NN IN PRP$ NN IN NN NN NN . The enrichment process , which makes fuel for civilian reactors , can also be used to make weapons grade material . DT NN NN , WDT VBZ NN IN JJ NNS , MD RB VB VBN TO VB NNS NN NN . The United States accuses Iran of secretly trying to develop nuclear weapons . DT NNP NNPS VBZ NNP IN RB VBG TO VB JJ NNS . Iran denies the charge . NNP VBZ DT NN . Kevin Costner is suing a music promoter , alleging the company breached a contract to back his fledgling music career . NNP NNP VBZ VBG DT NN NN , VBG DT NN VBD DT NN TO VB PRP$ NN NN NN . The 52-year-old movie actor-turned-musician filed an April 3 lawsuit against Mahee Worldwide Ventures Inc. , accusing it of fraud and breach of contract . DT JJ NN NN VBD DT NNP CD NN IN NNP NNP NNP NNP , VBG PRP IN NN CC NN IN NN . Costner is seeking damages in excess of $ 8.5 million . NNP VBZ VBG NNS IN NN IN $ CD CD . Kevin Costner is the lead singer and songwriter for the Kevin Costner Band . NNP NNP VBZ DT NN NN CC NN IN DT NNP NNP NNP . The lawsuit claims Costner 's music company , Kevin 's Music LLC , entered into a two-year agreement with Mahee Worldwide Ventures which would allow the band to perform as many as five concerts annually . DT NN VBZ NNP POS NN NN , NNP POS NNP NNP , VBD IN DT JJ NN IN NNP NNP NNP WDT MD VB DT NN TO VB RB JJ IN CD NNS RB . Mahee would also create and maintain a Web site marketing Costner 's band . NNP MD RB VB CC VB DT NNP NN VBG NNP POS NN . The suit claims Mahee reneged on all its agreements . DT NN VBZ NNP VBD IN DT PRP$ NNS . Mahee Worldwide Ventures has not responded to requests for comment . NNP NNP NNP VBZ RB VBN TO NNS IN NN . The International Monetary Fund says Haiti qualifies for partial cancellation of its debt . DT NNP NNP NNP VBZ NNP VBZ IN JJ NN IN PRP$ NN . Takatoshi Kato , the IMF 's deputy managing director , said Tuesday that Haiti has an unsustainable amount of debt and therefore is eligible for assistance under the Highly Indebted Poor Countries Initiative . NNP NNP , DT NNP POS NN NN NN , VBD NNP IN NNP VBZ DT JJ NN IN NN CC RB VBZ JJ IN NN IN DT NNP NNP NNP NNPS NNP . The impoverished country is struggling to manage roughly $ 1 billion in debt . DT JJ NN VBZ VBG TO VB RB $ CD CD IN NN . The Fund said in July that under the IMF-World Bank initiative , Haiti could receive up to $ 14 million in credit in the first year and possibly additional contributions of $ 22 million . DT NNP VBD IN NNP WDT IN DT NNP NNP NN , NNP MD VB RP TO $ CD CD IN NN IN DT JJ NN CC RB JJ NNS IN $ CD CD . Kato said the IMF welcomes the Haitian government 's commitment to policies aimed at sustaining macroeconomic stability . NNP VBD DT NNP VBZ DT JJ NN POS NN TO NNS VBN IN VBG JJ NN . But , he said Haiti needs continued financial support from the international community as the country faces challenges in the areas of security , social conditions and sustained income growth . CC , PRP VBD NNP VBZ JJ JJ NN IN DT JJ NN IN DT NN VBZ NNS IN DT NNS IN NN , JJ NNS CC JJ NN NN . A Moroccan court has sentenced to death two radical Islamists convicted of leading a terror cell . DT JJ NN VBZ VBN TO NN CD JJ NNS VBN IN VBG DT NN NN . Prosecutors say the two , Toufik Hanouichi and Mohcine Bouarfa , led a group that killed several Moroccans , including a Moroccan Jew . NNS VBP DT CD , NNP NNP CC NNP NNP , VBD DT NN WDT VBD JJ NNS , VBG DT JJ NN . Four people arrested with them were given life sentences . CD NNS VBN IN PRP VBD VBN NN NNS . Another 31 cell members were given prison terms of one to 20 years , and nine were acquitted . DT CD NN NNS VBD VBN NN NNS IN CD CC CD NNS , CC CD VBD VBN . Most of the terror cell members were arrested in January , 2004 , during a massive police operation in the towns of Meknes and Fez . JJS IN DT NN NN NNS VBD VBN IN NNP , CD , IN DT JJ NN NN IN DT NNS IN NNP CC NNP . Morocco has not carried out a death sentence in more than a decade . NNP VBZ RB VBN IN DT NN NN IN JJR IN DT NN . Pakistani President Pervez Musharraf says India will allow leaders of Kashmir 's main separatist political alliance to visit Pakistan for talks on the disputed region 's future . JJ NNP NNP NNP VBZ NNP MD VB NNS IN NNP POS JJ JJ JJ NN TO VB NNP IN NNS IN DT JJ NN POS NN . Pakistan has invited an alliance of about two dozen Kashmiri separatist groups known as the All Parties Hurriyat Conference to visit on June 2 . NNP VBZ VBN DT NN IN IN CD NN JJ JJ NNS VBN IN DT NNP NNP NNP NNP TO VB IN NNP CD . India has previously denied permission to Hurriyat leaders to visit Pakistan , saying the Kashmir dispute is India 's internal matter . NNP VBZ RB VBN NN TO VB NNS TO VB NNP , VBG DT NNP NN VBZ NNP POS JJ NN . But in an interview with the Daily Times published Tuesday , General Musharraf speaks of a breakthrough , saying this time Prime Minister Manmohan Singh has allowed Hurriyat leaders to travel to Pakistan . CC IN DT NN IN DT NNP NNP VBN NNP , NNP NNP VBZ IN DT NN , VBG DT NN NNP NNP NNP NNP VBZ VBN NNP NNS TO VB TO NNP . He said once they talk to Pakistan and then India , there will be a trilateral arrangement going . PRP VBD RB PRP VBP TO NNP CC RB NNP , EX MD VB DT JJ NN VBG . There has been no word from New Delhi . EX VBZ VBN DT NN IN NNP NNP . General Musharraf met the Kashmiri separatist leaders last month during his visit to New Delhi . NNP NNP VBD DT JJ NN NNS JJ NN IN PRP$ NN TO NNP NNP . The United Nations has launched an urgent appeal for more than $ 20 million to build shelter for people left homeless by a devastating earthquake in Pakistan and a demolition drive in Zimbabwe . DT NNP NNP VBZ VBN DT JJ NN IN JJR IN $ CD CD TO VB NN IN NNS VBN NN IN DT JJ NN IN NNP CC DT NN NN IN NNP . The Nairobi-based U.N. Human Settlement Program , popularly known as HABITAT , has asked donors to contribute $ 22 million for the appeal . DT JJ NNP NNP NNP NNP , RB VBN IN NNP , VBZ VBN NNS TO VB $ CD CD IN DT NN . HABITAT chief Ann Tibaijuka has issued a statement , saying there is an urgent need to stabilize the shelter conditions of poor people evicted in Zimbabwe , and those left out in the open in Pakistan . NNP NN NNP NNP VBZ VBN DT NN , VBG EX VBZ DT JJ NN TO VB DT NN NNS IN JJ NNS VBN IN NNP , CC DT VBN RP IN DT JJ IN NNP . More than $ 18 million will be spent in Pakistan , where more than three million people were left homeless by the October quake . JJR IN $ CD CD MD VB VBN IN NNP , WRB JJR IN CD CD NNS VBD VBN JJ IN DT NNP NN . The remainder is to be used in a U.N.-backed program to build 2,500 semi-permanent housing units for at least 12,500 Zimbabweans . DT NN VBZ TO VB VBN IN DT JJ NN TO VB CD JJ NN NNS IN IN JJS CD NNS . China has criticized Japan 's defense agency for charting out scenarios for a potential Chinese military attack against Japan . NNP VBZ VBN NNP POS NN NN IN VBG RP NNS IN DT JJ JJ JJ NN IN NNP . A Chinese Foreign Ministry spokeswoman Zhang Qiyue accused Japan of having , in her words , a ' Cold War mentality , ' adding that the scenarios were without merit . DT JJ NNP NNP NN NNP NNP VBD NNP IN VBG , IN PRP$ NNS , DT `` NNP NNP NN , `` VBG IN DT NNS VBD IN NN . Japanese media reported Monday that a Japanese defense agency review presented three possibilities for Chinese action against Japan . JJ NNS VBD NNP IN DT JJ NN NN NN VBD CD NNS IN JJ NN IN NNP . It says China might take action to secure Chinese interests in a gas field in the East China Sea , to seize a disputed set of islands known as Daioyu in China and Senkaku in Japanto or to keep U.S. forces based in Japan from protecting Taiwan . PRP VBZ NNP MD VB NN TO VB JJ NNS IN DT NN NN IN DT NNP NNP NNP , TO VB DT JJ NN IN NNS VBN IN NNP IN NNP CC NNP IN NNP CC TO VB NNP NNS VBN IN NNP IN VBG NNP . The Japanese report advises using diplomatic means to keep the situation stable . DT JJ NN VBZ VBG JJ NNS TO VB DT NN JJ . Some of this information provided by Reuters and AP . DT IN DT NN VBN IN NNP CC NNP . Defending World Cup football champion Brazil has defeated Croatia , 1-0 , in the opening match for both teams in Germany . VBG NNP NNP NN NN NNP VBZ VBN NNP , CD , IN DT NN NN IN DT NNS IN NNP . Kaka scored in the 44th minute Tuesday for the only goal of the Group F game in Berlin . NNP VBD IN DT JJ NN NNP IN DT JJ NN IN DT NNP NNP NN IN NNP . Earlier in Group G , South Korea defeated Togo , 02-Jan , in Frankfurt while France and Switzerland played to a scoreless draw in Stuttgart . RBR IN NNP NNP , NNP NNP VBD NNP , CD , IN NNP IN NNP CC NNP VBD TO DT JJ NN IN NNP . South Korea battled back from 1-0 half-time deficit for a 02-Jan win that sent the Asian side to the top of the group standings with three points . NNP NNP VBD RB IN CD JJ NN IN DT JJ NN WDT VBD DT JJ NN TO DT NN IN DT NN NNS IN CD NNS . Togo captain Jean-Paul Abalo was sent off in the 53rd minute after receiving his second yellow card . NNP NN NNP NNP VBD VBN RP IN DT CD NN IN VBG PRP$ JJ JJ NN . Lee Chun-soo and Ahn Jung-hwan scored for South Korea . NNP NNP CC NNP NNP VBD IN NNP NNP . The Swiss and French teams sputtered to their third draw in as many encounters . DT JJ CC JJ NNS VBD TO PRP$ JJ NN IN IN JJ NNS . Britain says a raid by multinational forces in Iraq has freed three Western Christian aid workers who had been held hostage by Muslim militants since November . NNP VBZ DT NN IN JJ NNS IN NNP VBZ VBN CD JJ JJ NN NNS WP VBD VBN VBN NN IN NNP NNS IN NNP . The announcement of the release of the two Canadians and one Briton has been made in London by British Foreign Secretary Jack Straw . DT NN IN DT NN IN DT CD NNS CC CD NN VBZ VBN VBN IN NNP IN NNP NNP NNP NNP NNP . ' This is wonderful news for the family and it 's a huge tribute to the professionalism of the multinational forces and the Iraqi forces that they 've been able to achieve this result , ' he said . `` DT VBZ JJ NN IN DT NN CC PRP VBZ DT JJ NN TO DT NN IN DT JJ NNS CC DT JJ NNS IN PRP VBP VBN JJ TO VB DT NN , `` PRP VBD . Straw says 74-year-old Norman Kember of Britain is in reasonable condition after the raid . NNP VBZ JJ NNP NNP IN NNP VBZ IN JJ NN IN DT NN . However , he says , Canadian citizens James Loney and Harmeet Singh Sooden have required hospital treatment . RB , PRP VBZ , JJ NNS NNP NNP CC NNP NNP NNP VBP VBN NN NN . A fourth hostage , American Tom Fox , was found shot to death on March 10 . DT JJ NN , NNP NNP NNP , VBD VBN VBN IN NN IN NNP CD . All four men had been kidnapped in November by a Muslim militant group called the Swords of Righteousness Brigade . DT CD NNS VBD VBN VBN IN NNP IN DT NNP JJ NN VBD DT NNS IN NNP NNP . Sao Tome 's prime minister , Damiao Vaz de Almeida , has resigned following contentious oil deals negotiated by the president . NNP NNP POS JJ NN , NNP NNP NNP NNP , VBZ VBN VBG JJ NN NNS VBN IN DT NN . The Associated Press quotes Mr. Vaz de Almeida as saying he objected to President Fradique de Menezes awarding oil exploration deals to Nigerian companies , which he said were ' of doubtful credibility and inadequate technical ability . ' DT NNP NNP VBZ NNP NNP NNP NNP IN VBG PRP VBD TO NNP NNP IN NNP VBG NN NN NNS TO JJ NNS , WDT PRP VBD VBD `` IN JJ NN CC JJ JJ NN . `` According to the report , Mr. Vaz de Almeida was angered by the president 's refusal to back the government this week during a major civil servants ' strike over pay . VBG TO DT NN , NNP NNP NNP NNP VBD VBN IN DT NN POS NN TO VB DT NN DT NN IN DT JJ JJ NNS POS NN IN NN . Mr. Vaz de Almeida had been in office for about eight months . NNP NNP IN NNP VBD VBN IN NN IN IN CD NNS . Two years ago , President Menezes was briefly removed from power in a bloodless coup by rebellious soldiers . CD NNS RB , NNP NNP VBD RB VBN IN NN IN DT JJ NN IN JJ NNS . They demanded more transparency in oil contracts , following the discovery of large oil reserves . PRP VBD RBR NN IN NN NNS , VBG DT NN IN JJ NN NNS . A senior Iranian official has warned countries opposed to Tehran 's nuclear program that they will face retaliation if sanctions are imposed on Iran . DT JJ JJ NN VBZ VBN NNS VBD TO NNP POS JJ NN IN PRP MD VB NN IN NNS VBP VBN IN NNP . Iran 's top nuclear negotiator , Ali Larijani , issued the warning in comments to reporters in Tehran Friday . NNP POS JJ JJ NN , NNP NNP , VBD DT NN IN NNS TO NNS IN NNP NNP . Larijani said Western nations will face ' painful ' measures if the United Nations Security Council imposes sanctions on Iran for its nuclear program . NNP VBD JJ NNS MD VB `` JJ `` NNS IN DT NNP NNP NNP NNP VBZ NNS IN NNP IN PRP$ JJ NN . The permanent U.N. Security Council members plus Germany are trying to reach agreement on a sanctions resolution . DT JJ NNP NNP NNP NNS IN NNP VBP VBG TO VB NN IN DT NNS NN . Iran ignored an August 31st UN deadline to suspend uranium enrichment . NNP VBD DT NNP CD NNP NN TO VB NN NN . The U.S. and its western allies believe Iran 's enrichment activities are part of a program to develop nuclear weapons . DT NNP CC PRP$ JJ NNS VBP NNP POS NN NNS VBP NN IN DT NN TO VB JJ NNS . Iran says its nuclear program is to produce energy , not weapons . NNP VBZ PRP$ JJ NN VBZ TO VB NN , RB NNS . A United Nations war crimes court has sentenced a former Rwandan administrator to 25 years in prison for his role in the country 's 1994 genocide . DT NNP NNPS NN NNS NN VBZ VBN DT JJ JJ NN TO CD NNS IN NN IN PRP$ NN IN DT NN POS CD NN . The International Criminal Tribunal for Rwanda , based in Tanzania , found Dominique Ntawukulilyayo guilty of genocide . DT NNP NNP NNP IN NNP , VBN IN NNP , VBD NNP NNP NN IN NN . Court prosecutors say Ntawukulilyayo , who was deputy administrator of Rwanda 's southern Gisagara district , transported soldiers to an area where thousands of Tutsis had taken refuge , leaving the soldiers to carry out a mass slaughter . NNP NNS VBP NNP , WP VBD JJ NN IN NNP POS JJ NNP NN , VBD NNS TO DT NN WRB NNS IN NNP VBD VBN NN , VBG DT NNS TO VB RP DT NN NN . Ntawukulilyayo was arrested in France in 2007 and later transferred to the U.N. detention facility in Arusha to face charges . NNP VBD VBN IN NNP IN CD CC RB VBN TO DT NNP NN NN IN NNP TO VB NNS . Hutu extremists killed an estimated 8,00,000 ethnic Tutsis and moderate Hutus during the 1994 Rwandan genocide . NNP NNS VBD DT VBN CD JJ NN CC JJ NN IN DT CD JJ NN . The U.N. tribunal was set up to prosecute those who organized the killings . DT NNP NN VBD VBN RP TO VB DT WP VBD DT NNS . The court has convicted about 40 people so far , while about 30 suspects are either being tried or awaiting trial . DT NN VBZ VBN IN CD NNS RB RB , IN IN CD NNS VBP RB VBG VBN CC VBG NN . World leaders are hailing key general elections in Afghanistan , saying Afghans have braved Taleban violence in a show of determination to build a peaceful future . NNP NNS VBP VBG JJ JJ NNS IN NNP , VBG NNS VBP VBN NNP NN IN DT NN IN NN TO VB DT JJ NN . President Bush congratulated the Afghan people and the government for a successful vote . NNP NNP VBD DT JJ NNS CC DT NN IN DT JJ NN . He said it was a major step forward in Afghanistan 's development as a democratic state governed by the rule of law . PRP VBD PRP VBD DT JJ NN RB IN NNP POS NN IN DT JJ NN VBN IN DT NN IN NN . U.S. Secretary of State Condoleezza Rice said the extremist elements that once again attempted to disrupt the electoral process have failed . NNP NNP IN NNP NNP NNP VBD DT NN NNS WDT RB RB VBD TO VB DT JJ NN VBP VBN . Pakistan 's Foreign Ministry said the completion of the electoral process in Afghanistan was a big step forward on the road to peace and stability , national reconstruction and development . NNP POS NNP NNP VBD DT NN IN DT JJ NN IN NNP VBD DT JJ NN RB IN DT NN TO NN CC NN , JJ NN CC NN . The European Union , the United Nations and NATO hailed the election and praised those who voted . DT NNP NNP , DT NNP NNPS CC NNP VBD DT NN CC VBD DT WP VBD . Afghan President Hamid Karzai called the election a defeat for terrorism . JJ NNP NNP NNP VBD DT NN DT NN IN NN . NATO 's secretary general says a proposed U.S. missile defense system in Europe risks splitting the alliance between those countries it would fully protect and those left vulnerable to threats . NNP POS NN NN VBZ DT JJ NNP NN NN NN IN NNP NNS VBG DT NN IN DT NNS PRP MD RB VB CC DT VBD JJ TO NNS . Jaap de Hoop Scheffer 's warning appeared Monday in an interview with the British newspaper , The Financial Times . NNP NNP NNP NNP POS NN VBD NNP IN DT NN IN DT JJ NN , DT NNP NNP . Experts say the proposed missile system in Poland and the Czech Republic would shield most of Europe from any attacks from what Washington calls rogue states such as Iran or North Korea . NNS VBP DT VBN NN NN IN NNP CC DT JJ NNP MD VB JJS IN NNP IN DT NNS IN WP NNP VBZ NN NNS JJ IN NNP CC NNP NNP . But NATO officials told the newspaper that countries in southeastern Europe such as Turkey , Greece and Italy would need extra short-range missile protection because of their proximity to Iran . CC NNP NNS VBD DT NN IN NNS IN JJ NNP JJ IN NNP , NNP CC NNP MD VB JJ NN NN NN IN IN PRP$ NN TO NNP . De Hoop Scheffer suggests that the proposed U.S. system could be complemented by NATO plans for a smaller , mobile system scheduled to become operational in 2010 . NNP NNP NNP VBZ IN DT VBN NNP NN MD VB VBN IN NNP NNS IN DT JJR , JJ NN VBN TO VB JJ IN CD . Venezuela 's ambassador to Washington is calling on the U.S. to extradite a Cuban militant accused of planning a deadly airplane bombing in 1976 . NNP POS NN TO NNP VBZ VBG IN DT NNP TO VB DT JJ NN VBN IN VBG DT JJ NN VBG IN CD . Ambassador Bernardo Alvarez told Venezuelan state television Monday the extradition of Luis Posada Carriles should not be considered an immigration issue . NNP NNP NNP VBD JJ NN NN NNP DT NN IN NNP NNP NNPS MD RB VB VBN DT NN NN . Carriles is a former CIA operative who is considered to be the mastermind behind the in-flight bombing of a Cubana Airlines plane that killed 73 people . NNP VBZ DT JJ NNP NN WP VBZ VBN TO VB DT NN IN DT JJ NN IN DT NNP NNP NN WDT VBD CD NNS . He is being held in a detention center in the U.S. state of Texas for immigration violations . PRP VBZ VBG VBN IN DT NN NN IN DT NNP NN IN NNP IN NN NNS . Alvarez called Carriles the ' Osama bin Laden ' of Latin America . NNP VBD NNP DT `` NNP NNP NNP `` IN NNP NNP . He said he discussed the extradition request with U.S. Under Secretary of State Thomas Shannon last month . PRP VBD PRP VBD DT NN NN IN NNP IN NNP IN NNP NNP NNP JJ NN . Venezuela 's government often clashes with Washington . NNP POS NN RB VBZ IN NNP . Venezuelan President Hugo Chavez sharply criticized President Bush Sunday , days after a White House report called Mr. Chavez a demagogue . JJ NNP NNP NNP RB VBD NNP NNP NNP , NNS IN DT NNP NNP NN VBD NNP NNP DT NN . William C. Walbrecher Jr. , an executive at San Francisco-based 1st Nationwide Bank , was named president and chief executive officer of Citadel Holding Corp. and its principal operating unit , Fidelity Federal Bank . NNP NNP NNP NNP , DT NN IN NNP JJ CD NNP NNP , VBD VBN NN CC JJ JJ NN IN NNP NNP NNP CC PRP$ JJ NN NN , NNP NNP NNP . The appointment takes effect Nov. 13 . DT NN VBZ NN NNP CD . He succeeds James A. Taylor , who stepped down as chairman , president and chief executive in March for health reasons . PRP VBZ NNP NNP NNP , WP VBD RB IN NN , NN CC JJ NN IN NNP IN NN NNS . Edward L. Kane succeeded Mr. Taylor as chairman . NNP NNP NNP VBD NNP NNP IN NN . Separately , Citadel posted a third-quarter net loss of $ 2.3 million , or 68 cents a share , versus net income of $ 5.3 million , or $ 1.61 a share , a year earlier . RB , NNP VBD DT JJ JJ NN IN $ CD CD , CC CD NNS DT NN , IN JJ NN IN $ CD CD , CC $ CD DT NN , DT NN RBR . The latest results include some unusual write-downs , which had an after-tax impact of $ 4.9 million . DT JJS NNS VBP DT JJ NNS , WDT VBD DT JJ NN IN $ CD CD . Those included costs associated with the potential Valley Federal Savings and Loan Association acquisition , which was terminated on Sept. 27 , 1989 . DT VBD NNS VBN IN DT JJ NNP NNP NNP CC NNP NNP NN , WDT VBD VBN IN NNP CD , CD . In addition , operating results were hit by an increase in loan and real estate loss reserves . IN NN , NN NNS VBD VBN IN DT NN IN NN CC JJ NN NN NNS . In American Stock Exchange composite trading , Citadel shares closed yesterday at $ 45.75 , down 25 cents . IN NNP NNP NNP JJ NN , NNP NNS VBD NN IN $ CD , RB CD NNS . Oil-rich Nigeria has been hobbled by political instability , corruption , inadequate infrastructure , and poor macroeconomic management but in 2008 began pursuing economic reforms . NNP NNP VBZ VBN VBN IN JJ NN , NN , JJ NN , CC JJ JJ NN CC IN CD VBD VBG JJ NNS . Nigeria 's former military rulers failed to diversify the economy away from its overdependence on the capital-intensive oil sector , which provides 95 % of foreign exchange earnings and about 80 % of budgetary revenues . NNP POS JJ JJ NNS VBD TO VB DT NN RB IN PRP$ NN IN DT JJ NN NN , WDT VBZ CD NN IN JJ NN NNS CC IN CD NN IN JJ NNS . Following the signing of an IMF stand-by agreement in August 2000 , Nigeria received a debt-restructuring deal from the Paris Club and a $ 1 billion credit from the IMF , both contingent on economic reforms . VBG DT NN IN DT NNP JJ NN IN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP CC DT $ CD CD NN IN DT NNP , DT JJ IN JJ NNS . Nigeria pulled out of its IMF program in April 2002 , after failing to meet spending and exchange rate targets , making it ineligible for additional debt forgiveness from the Paris Club . NNP VBD IN IN PRP$ NNP NN IN NNP CD , IN VBG TO VB NN CC NN NN NNS , VBG PRP JJ IN JJ NN NN IN DT NNP NNP . In November 2005 , Abuja won Paris Club approval for a debt-relief deal that eliminated $ 18 billion of debt in exchange for $ 12 billion in payments - a total package worth $ 30 billion of Nigeria 's total $ 37 billion external debt . IN NNP CD , NNP VBD NNP NNP NN IN DT JJ NN WDT VBD $ CD CD IN NN IN NN IN $ CD CD IN NNS IN DT JJ NN JJ $ CD CD IN NNP POS JJ $ CD CD JJ NN . Since 2008 the government has begun to show the political will to implement the market-oriented reforms urged by the IMF , such as modernizing the banking system , curbing inflation by blocking excessive wage demands , and resolving regional disputes over the distribution of earnings from the oil industry . IN CD DT NN VBZ VBN TO VB DT JJ NN TO VB DT JJ NNS VBN IN DT NNP , JJ IN VBG DT NN NN , VBG NN IN VBG JJ NN NNS , CC VBG JJ NNS IN DT NN IN NNS IN DT NN NN . GDP rose strongly in 2007 - 10 because of increased oil exports and high global crude prices in 2010 . NN VBD RB IN CD IN CD IN IN VBN NN NNS CC JJ JJ NN NNS IN CD . President JONATHAN has pledged to continue the economic reforms of his predecessor with emphasis on infrastructure improvements . NNP NNP VBZ VBN TO VB DT JJ NNS IN PRP$ NN IN NN IN NN NNS . Infrastructure is the main impediment to growth and in August 2010 JONATHAN unveiled a power sector blueprint that includes privatization of the state-run electricity generation and distribution facilities . NNP VBZ DT JJ NN TO NN CC IN NNP CD NNP VBD DT NN NN NN WDT VBZ NN IN DT JJ NN NN CC NN NNS . The government also is working toward developing stronger public-private partnerships for roads . DT NN RB VBZ VBG IN VBG JJR JJ NNS IN NNS . Nigeria 's financial sector was hurt by the global financial and economic crises and the Central Bank governor has taken measures to strengthen that sector . NNP POS JJ NN VBD VBN IN DT JJ JJ CC JJ NNS CC DT NNP NNP NN VBZ VBN NNS TO VB DT NN . Bahrain is one of the most diversified economies in the Persian Gulf . NNP VBZ CD IN DT RBS JJ NNS IN DT NNP NNP . Highly developed communication and transport facilities make Bahrain home to numerous multinational firms with business in the Gulf . RB VBN NN CC NN NNS VBP NNP NN TO JJ JJ NNS IN NN IN DT NNP . As part of its diversification plans , Bahrain implemented a Free Trade Agreement ( FTA ) with the US in August 2006 , the first FTA between the US and a Gulf state . IN NN IN PRP$ NN NNS , NNP VBD DT NNP NNP NNP LRB NNP RRB IN DT NNP IN NNP CD , DT JJ NN IN DT NNP CC DT NNP NN . Bahrain 's economy , however , continues to depend heavily on oil . NNP POS NN , RB , VBZ TO VB RB IN NN . Petroleum production and refining account for more than 60 % of Bahrain 's export receipts , 70 % of government revenues , and 11 % of GDP ( exclusive of allied industries ) . NN NN CC NN NN IN JJR IN CD NN IN NNP POS NN NNS , CD NN IN NN NNS , CC CD NN IN NN LRB JJ IN JJ NNS RRB . Other major economic activities are production of aluminum - Bahrain 's second biggest export after oil - finance , and construction . JJ JJ JJ NNS VBP NN IN NN IN NNP POS JJ JJS NN IN NN IN NN , CC NN . Bahrain competes with Malaysia as a worldwide center for Islamic banking and continues to seek new natural gas supplies as feedstock to support its expanding petrochemical and aluminum industries . NNP VBZ IN NNP IN DT JJ NN IN JJ NN CC VBZ TO VB JJ JJ NN NNS IN NN TO VB PRP$ VBG NN CC NN NNS . Unemployment , especially among the young , is a long-term economic problem Bahrain struggles to address . NN , RB IN DT JJ , VBZ DT JJ JJ NN NNP VBZ TO VB . In 2009 , to help lower unemployment among Bahraini nationals , Bahrain reduced sponsorship for expatriate workers , increasing the costs of employing foreign labor . IN CD , TO VB JJR NN IN JJ NNS , NNP VBD NN IN JJ NNS , VBG DT NNS IN VBG JJ NN . The global financial crisis caused funding for many non-oil projects to dry up and resulted in slower economic growth for Bahrain . DT JJ JJ NN VBD NN IN JJ JJ NNS TO VB RP CC VBD IN JJR JJ NN IN NNP . Other challenges facing Bahrain include the slow growth of government debt as a result of a large subsidy program , the financing of large government projects , and debt restructuring , such as the bailout of state-owned Gulf Air . JJ NNS VBG NNP VBP DT JJ NN IN NN NN IN DT NN IN DT JJ NN NN , DT NN IN JJ NN NNS , CC NN NN , JJ IN DT NN IN JJ NNP NNP . San Marino 's economy relies heavily on its tourism and banking industries , as well as on the manufacture and export of ceramics , clothing , fabrics , furniture , paints , spirits , tiles , and wine . NNP NNP POS NN VBZ RB IN PRP$ NN CC NN NNS , RB RB IN IN DT NN CC NN IN NNS , NN , NNS , NN , NNS , NNS , NNS , CC NN . The per capita level of output and standard of living are comparable to those of the most prosperous regions of Italy , which supplies much of its food . DT IN NN NN IN NN CC NN IN NN VBP JJ TO DT IN DT RBS JJ NNS IN NNP , WDT VBZ NN IN PRP$ NN . The economy benefits from foreign investment due to its relatively low corporate taxes and low taxes on interest earnings . DT NN VBZ IN JJ NN JJ TO PRP$ RB JJ JJ NNS CC JJ NNS IN NN NNS . San Marino has recently faced increased international pressure to improve cooperation with foreign tax authorities and transparency within its own banking sector , which generates about one-fifth of the country 's tax revenues . NNP NNP VBZ RB VBN VBN JJ NN TO VB NN IN JJ NN NNS CC NN IN PRP$ JJ NN NN , WDT VBZ IN NN IN DT NN POS NN NNS . Italy 's implementation in October 2009 of a tax amnesty to repatriate untaxed funds held abroad has resulted in financial outflows from San Marino to Italy worth more than $ 4.5 billion . NNP POS NN IN NNP CD IN DT NN NN TO VB JJ NNS VBN RB VBZ VBN IN JJ NNS IN NNP NNP TO NNP NN JJR IN $ CD CD . Such outflows , combined with a money-laundering scandal at San Marino 's largest financial institution and the recent global economic downturn , have contributed to a deep recession and growing budget deficit . JJ NNS , VBN IN DT JJ NN IN NNP NNP POS JJS JJ NN CC DT JJ JJ JJ NN , VBP VBN TO DT JJ NN CC VBG NN NN . Industrial production declined sharply in 2010 , especially in the textile sector . JJ NN VBD RB IN CD , RB IN DT NN NN . However , San Marino has little national debt , and an unemployment rate less than half the size of Italy 's . RB , NNP NNP VBZ JJ JJ NN , CC DT NN NN JJR IN PDT DT NN IN NNP POS . The San Marino government has adopted measures to counter the downturn , including subsidized credit to businesses . DT NNP NNP NN VBZ VBN NNS TO VB DT NN , VBG JJ NN TO NNS . San Marino also continues to work towards harmonizing its fiscal laws with EU members and international standards . NNP NNP RB VBZ TO VB IN VBG PRP$ JJ NNS IN NNP NNS CC JJ NNS . In September 2009 , the OECD removed San Marino from its list of tax havens that have yet to fully implement global tax standards , and in 2010 San Marino signed Tax Information Exchange Agreements with most major countries . IN NNP CD , DT NNP VBD NNP NNP IN PRP$ NN IN NN NNS WDT VBP RB TO RB VB JJ NN NNS , CC IN CD NNP NNP VBD NNP NNP NNP NNPS IN JJS JJ NNS . The future of the country 's economy will be heavily influenced by the signing of a financial information exchange agreement with Italy , which many Italian investors see as fundamental for their business operations with San Marino . DT NN IN DT NN POS NN MD VB RB VBN IN DT NN IN DT JJ NN NN NN IN NNP , WDT JJ JJ NNS VBP IN JJ IN PRP$ NN NNS IN NNP NNP . Revenues of this tiny island traditionally have come from exports of phosphates . NNS IN DT JJ NN RB VBP VBN IN NNS IN NNS . Few other resources exist , with most necessities being imported , mainly from Australia , its former occupier and later major source of support . JJ JJ NNS VBP , IN JJS NNS VBG VBN , RB IN NNP , PRP$ JJ NN CC RB JJ NN IN NN . In 2005 an Australian company entered into an agreement to exploit remaining supplies . IN CD DT JJ NN VBD IN DT NN TO VB VBG NNS . Primary reserves of phosphates were exhausted and mining ceased in 2006 , but mining of a deeper layer of ' secondary phosphate ' in the interior of the island began the following year . JJ NNS IN NNS VBD VBN CC NN VBD IN CD , CC NN IN DT JJR NN IN `` JJ NN `` IN DT NN IN DT NN VBD DT JJ NN . The secondary phosphate deposits may last another 30 years . DT JJ NN NNS MD VB DT CD NNS . The rehabilitation of mined land and the replacement of income from phosphates are serious long-term problems . DT NN IN JJ NN CC DT NN IN NN IN NNS VBP JJ JJ NNS . In anticipation of the exhaustion of Nauru 's phosphate deposits , substantial amounts of phosphate income were invested in trust funds to help cushion the transition and provide for Nauru 's economic future . IN NN IN DT NN IN NNP POS NN NNS , JJ NNS IN JJ NN VBD VBN IN NN NNS TO VB VB DT NN CC VB IN NNP POS JJ NN . As a result of heavy spending from the trust funds , the government faced virtual bankruptcy . IN DT NN IN JJ NN IN DT NN NNS , DT NN VBD JJ NN . To cut costs the government has frozen wages and reduced overstaffed public service departments . TO VB NNS DT NN VBZ VBN NNS CC VBN JJ JJ NN NNS . Nauru lost further revenue in 2008 with the closure of Australia 's refugee processing center , making it almost totally dependent on food imports and foreign aid . NNP VBD JJ NN IN CD IN DT NN IN NNP POS NN NN NN , VBG PRP RB RB JJ IN NN NNS CC JJ NN . Housing , hospitals , and other capital plant are deteriorating . NN , NNS , CC JJ NN NN VBP VBG . The cost to Australia of keeping the government and economy afloat continues to climb . DT NN TO NNP IN VBG DT NN CC NN RB VBZ TO VB . Few comprehensive statistics on the Nauru economy exist with estimates of Nauru 's GDP varying widely . JJ JJ NNS IN DT NNP NN VBP IN NNS IN NNP POS NN VBG RB . The French colonies of Senegal and the French Sudan were merged in 1959 and granted their independence as the Mali Federation in 1960 . DT JJ NNS IN NNP CC DT JJ NNP VBD VBN IN CD CC VBD PRP$ NN IN DT NNP NNP IN CD . The union broke up after only a few months . DT NN VBD RP IN RB DT JJ NNS . Senegal joined with The Gambia to form the nominal confederation of Senegambia in 1982 . NNP VBD IN DT NNP TO VB DT JJ NN IN NNP IN CD . The envisaged integration of the two countries was never carried out , and the union was dissolved in 1989 . DT JJ NN IN DT CD NNS VBD RB VBN RP , CC DT NN VBD VBN IN CD . The Movement of Democratic Forces in the Casamance ( MFDC ) has led a low-level separatist insurgency in southern Senegal since the 1980s , and several peace deals have failed to resolve the conflict . DT NN IN JJ NNS IN DT NNP LRB NNP RRB VBZ VBN DT JJ NN NN IN JJ NNP IN DT NNS , CC JJ NN NNS VBP VBN TO VB DT NN . Nevertheless , Senegal remains one of the most stable democracies in Africa . RB , NNP VBZ CD IN DT RBS JJ NNS IN NNP . Senegal was ruled by a Socialist Party for 40 years until current President Abdoulaye WADE was elected in 2000 . NNP VBD VBN IN DT NNP NNP IN CD NNS IN JJ NNP NNP NNP VBD VBN IN CD . He was reelected in February 2007 and has amended Senegal 's constitution over a dozen times to increase executive power and to weaken the opposition , part of the president 's increasingly autocratic governing style . PRP VBD VBN IN NNP CD CC VBZ VBN NNP POS NN IN DT NN NNS TO VB JJ NN CC TO VB DT NN , NN IN DT NN POS RB JJ NN NN . Senegal has a long history of participating in international peacekeeping and regional mediation . NNP VBZ DT JJ NN IN VBG IN JJ NN CC JJ NN . A CERTAIN HUNTER , having snared a hare , placed it upon his shoulders and set out homewards . DT JJ NN , VBG VBN DT NN , VBD PRP IN PRP$ NNS CC VBN RP NNS . On his way he met a man on horseback who begged the hare of him , under the pretense of purchasing it . IN PRP$ NN PRP VBD DT NN IN NN WP VBD DT NN IN PRP , IN DT NN IN VBG PRP . However , when the Horseman got the hare , he rode off as fast as he could . RB , WRB DT NNP VBD DT NN , PRP VBD RP RB RB IN PRP MD . The Hunter ran after him , as if he was sure of overtaking him , but the Horseman increased more and more the distance between them . DT NN VBD IN PRP , IN IN PRP VBD JJ IN VBG PRP , CC DT NN VBD JJR CC JJR DT NN IN PRP . The Hunter , sorely against his will , called out to him and said , ' Get along with you ! for I will now make you a present of the hare . ' DT NN , RB IN PRP$ NN , VBD RP TO PRP CC VBD , `` VB IN IN PRP . IN PRP MD RB VB PRP DT NN IN DT NN . `` A physicist and a mathematician are sitting in a faculty lounge . DT NN CC DT NN VBP VBG IN DT NN NN . Suddenly , the coffee machine catches on fire . RB , DT NN NN NNS IN NN . The physicist grabs a bucket and leap towards the sink , filled the bucket with water and puts out the fire . DT NN VBZ DT NN CC NN IN DT NN , VBD DT NN IN NN CC VBZ RP DT NN . Second day , the same two sit in the same lounge . JJ NN , DT JJ CD VBP IN DT JJ NN . Again , the coffee machine catches on fire . RB , DT NN NN NNS IN NN . This time , the mathematician stands up , got a bucket , hands the bucket to the physicist , thus reducing the problem to a previously solved one . DT NN , DT NN VBZ RP , VBD DT NN , NNS DT NN TO DT NN , RB VBG DT NN TO DT RB VBN CD . President Bush says he is starting the process of picking the cabinet and White House staff for his second term in office . NNP NNP VBZ PRP VBZ VBG DT NN IN VBG DT NN CC NNP NNP NN IN PRP$ JJ NN IN NN . Mr. Bush , spending the weekend at the presidential retreat , Camp David , in Maryland , did not indicate what changes he is considering for his team . NNP NNP , VBG DT NN IN DT JJ NN , NNP NNP , IN NNP , VBD RB VB WP VBZ PRP VBZ VBG IN PRP$ NN . U.S. media reports , however , say Attorney General John Ashcroft could depart before Mr. Bush is sworn in for a second term in January . NNP NNS NNS , RB , VBP NNP NNP NNP NNP MD VB IN NNP NNP VBZ VBN IN IN DT JJ NN IN NNP . Others reportedly considering leaving include Secretary of State Colin Powell and Homeland Security Chief Tom Ridge . NNS RB VBG VBG VBP NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP . Meanwhile , U.S. counterterrorism coordinator Cofer Black has resigned his post , becoming the first to leave since President Bush 's re-election . RB , NNP NN NN NNP NNP VBZ VBN PRP$ NN , VBG DT JJ TO VB IN NNP NNP POS NN . He had served the State Department since 2002 , and had previously worked for the CIA for nearly three decades . PRP VBD VBN DT NNP NNP IN CD , CC VBD RB VBN IN DT NNP IN RB CD NNS . The U.S. Army 's top general says the Army is planning for the possibility of keeping the current number of troops in Iraq - well over 1,00,000 - for four more years . DT NNP NNP POS JJ NN VBZ DT NNP VBZ VBG IN DT NN IN VBG DT JJ NN IN NNS IN NNP : RB IN CD : IN CD JJR NNS . General Peter Schoomaker told the Associated Press Saturday he was confident the Army could continue to provide the current number of forces in Iraq for several more years . NNP NNP NNP VBD DT NNP NNP NNP PRP VBD JJ DT NNP MD VB TO VB DT JJ NN IN NNS IN NNP IN JJ JJR NNS . President Bush , in his weekly radio address , expressed confidence in what he called the ' ultimate triumph of our cause . ' NNP NNP , IN PRP$ JJ NN NN , VBD NN IN WP PRP VBD DT `` JJ NN IN PRP$ NN . `` In Saturday 's Democratic radio address , former Senator Max Cleland of Georgia said Mr. Bush 's plan for victory is not working . IN NNP POS JJ NN NN , JJ NNP NNP NNP IN NNP VBD NNP NNP POS NN IN NN VBZ RB VBG . Mr. Cleland said the United States needs a strategy to win in Iraq or an exit strategy to leave . NNP NNP VBD DT NNP NNPS VBZ DT NN TO VB IN NNP CC DT NN NN TO VB . Mr. Bush has said there will be no timetable for withdrawing the troops , because that would signal the United States is weak . NNP NNP VBZ VBN EX MD VB DT NN IN VBG DT NNS , IN DT MD VB DT NNP NNPS VBZ JJ . Iran is insisting it will resume uranium conversion this week , after rejecting European incentives to end its nuclear fuel work . NNP VBZ VBG PRP MD VB NN NN DT NN , IN VBG JJ NNS TO VB PRP$ JJ NN NN . Speaking Sunday in Tehran , a Foreign Ministry spokesman said work at Iran 's Isfahan nuclear plant will begin once the International Atomic Energy Agency installs surveillance cameras . VBG NNP IN NNP , DT NNP NNP NN VBD NN IN NNP POS NNP JJ NN MD VB RB DT NNP NNP NNP NNP VBZ NN NNS . The IAEA says inspection equipment will be in place by mid-week . DT NNP VBZ NN NN MD VB IN NN IN NN . British , French and German negotiators have called an emergency meeting of the IAEA on Tuesday to issue Tehran a final warning against restarting the fuel program . JJ , JJ CC JJ NNS VBP VBN DT NN NN IN DT NNP IN NNP TO VB NNP DT JJ NN IN VBG DT NN NN . Western governments suspect Iran 's nuclear activities are aimed at developing atomic weaponry . JJ NNS VBP NNP POS JJ NNS VBP VBN IN VBG JJ NN . Tehran insists its nuclear intentions are peaceful . NNP VBZ PRP$ JJ NNS VBP JJ . If the stand-off continues , the Europeans say they will ask the U.N. Security Council to consider imposing economic sanctions to force Tehran to end its fuel work . IN DT NN VBZ , DT NNS VBP PRP MD VB DT NNP NNP NNP TO VB VBG JJ NNS TO VB NNP TO VB PRP$ NN NN . Israel 's attorney general has ordered a new criminal investigation into Prime Minister Ehud Olmert , who is facing two other police probes . NNP POS NN NN VBZ VBN DT JJ JJ NN IN NNP NNP NNP NNP , WP VBZ VBG CD JJ NN NNS . A Justice Ministry statement says the new probe will focus on political appointments made while Mr. Olmert was trade and industry minister . DT NNP NNP NN VBZ DT JJ NN MD VB IN JJ NNS VBN IN NNP NNP VBD NN CC NN NN . The police will also look into suspicions Mr. Olmert assisted his political friends in different public bodies . DT NN MD RB VB IN NNS NNP NNP VBD PRP$ JJ NNS IN JJ JJ NNS . The prime minister says the new investigation is unnecessary and will be closed without any results . DT JJ NN VBZ DT JJ NN VBZ JJ CC MD VB VBN IN DT NNS . Last week , police questioned Mr. Olmert about allegations he tried to steer the sale of government-owned Bank Leumi in 2005 while he was acting finance minister . JJ NN , NN VBD NNP NNP IN NNS PRP VBD TO VB DT NN IN JJ NNP NNP IN CD IN PRP VBD VBG NN NN . Mr. Olmert also is under investigation for his purchase of a Jerusalem apartment in 2004 . NNP NNP RB VBZ IN NN IN PRP$ NN IN DT NNP NN IN CD . He allegedly received a discounted price in return for helping the builder obtain construction permits from the city government . PRP RB VBD DT JJ NN IN NN IN VBG DT NN VB NN NNS IN DT NN NN . A British newspaper reports that United Nations peacekeepers in southern Sudan are facing allegations of raping and sexually abusing children as young as 12 . DT JJ NN NNS IN NNP NNPS NNS IN JJ NNP VBP VBG NNS IN VBG CC RB JJ NNS IN JJ IN CD . The Daily Telegraph says it based its story on an internal report by the United Nations Children 's Fund . DT NNP NNP VBZ PRP VBD PRP$ NN IN DT JJ NN IN DT NNP NNP NNP POS NNP . The newspaper says the alleged abuse started shortly after U.N. peacekeepers arrived in southern Sudan in March , 2005 . DT NN VBZ DT JJ NN VBD RB IN NNP NNS VBD IN JJ NNP IN NNP , CD . One 13-year-old alleged victim said U.N. personnel enticed him into their car with money , sexually abused him , then tossed him out with no cash . CD JJ JJ NN VBD NNP NNS VBD PRP IN PRP$ NN IN NN , RB VBD PRP , RB VBD PRP RP IN DT NN . A British peacekeeping official has already denied the charges . DT JJ NN NN VBZ RB VBN DT NNS . But a senior U.N. official has told the Associated Press that the allegations will be treated seriously and investigated . CC DT JJ NNP NN VBZ VBN DT NNP NNP IN DT NNS MD VB VBN RB CC VBN . U.N. officials fired one peacekeeper and suspended several others without pay in 2005 for allegations of bribing women and girls for sex in the Democratic Republic of Congo . NNP NNS VBD CD NN CC VBD JJ NNS IN NN IN CD IN NNS IN VBG NNS CC NNS IN NN IN DT JJ NNP IN NNP . Gunmen in Iraq attacked a local police chief 's convoy Saturday , wounding him and two others . NNS IN NNP VBD DT JJ NN NN POS NN NNP , VBG PRP CC CD NNS . The police chief was traveling near Mosul when militants fired on the motorcade . DT NN NN VBD VBG IN NNP WRB NNS VBD IN DT NN . The attack sparked a clash between police and militants that left one officer dead and at least one other person wounded . DT NN VBD DT NN IN NNS CC NNS WDT VBD CD NN NN CC IN JJS CD JJ NN VBN . Another policeman was killed and at least two others wounded when a roadside bomb exploded near their patrol outside Fallujah . DT NN VBD VBN CC IN JJS CD NNS VBD WRB DT NN NN VBD IN PRP$ NN IN NNP . The European Union under the rotating presidency of Slovenia says it will seek to move forward with accession talks with Turkey . DT NNP NNP IN DT VBG NN IN NNP VBZ PRP MD VB TO VB RB IN NN NNS IN NNP . Speaking in the Slovenian capital , Prime Minister Janez Jansa told reporters Monday that he will seek the total support of all EU member-countries for expanded accession talks . VBG IN DT JJ NN , NNP NNP NNP NNP VBD NNS NNP IN PRP MD VB DT JJ NN IN DT NNP NNS IN VBN NN NNS . Turkey is an official candidate for EU membership . NNP VBZ DT JJ NN IN NNP NN . But its entry bid has roused opposition , most notably from France . CC PRP$ NN NN VBZ VBN NN , RBS RB IN NNP . President Nicolas Sarkozy has said repeatedly that largely-Muslim Turkey should be offered a privileged partnership rather than full membership . NNP NNP NNP VBZ VBN RB IN JJ NNP MD VB VBN DT JJ NN RB IN JJ NN . The internationally recognized Greek-led government of Cyprus also opposes Turkish EU membership . DT RB VBN JJ NN IN NNP RB VBZ JJ NNP NN . Turkey has refused to open trade and travel links with the Cyprus government , as part of its ongoing territorial dispute over the divided island . NNP VBZ VBN TO VB NN CC NN NNS IN DT NNP NN , IN NN IN PRP$ JJ JJ NN IN DT VBN NN . The first members of a U.N. peacekeeping mission for southern Sudan have arrived in the country to help implement a January peace deal . DT JJ NNS IN DT NNP NN NN IN JJ NNP VBP VBN IN DT NN TO VB VB DT NNP NN NN . Twelve Nepalese soldiers flew into the central town of El-Obeid Wednesday , one of the main operational centers for aid agencies working in the south . CD JJ NNS VBD IN DT JJ NN IN JJ NNP , CD IN DT JJ JJ NNS IN NN NNS VBG IN DT NN . The soldiers are part of an eventual deployment of 10,000 peacekeeping troops . DT NNS VBP NN IN DT JJ NN IN CD VBG NNS . The force will come mostly from Bangladesh , China , Egypt , India , Kenya and Zambia . DT NN MD VB RB IN NNP , NNP , NNP , NNP , NNP CC NNP . The conflict in southern Sudan lasted more than two decades and claimed more than two million lives , mostly from war-induced famine and disease . DT NN IN JJ NNP VBD JJR IN CD NNS CC VBD JJR IN CD CD NNS , RB IN JJ NN CC NN . It is separate from the conflict in Sudan 's western Darfur region . PRP VBZ JJ IN DT NN IN NNP POS JJ NNP NN . More than 2,000 African Union troops have been deployed there to monitor a cease-fire . JJR IN CD NNP NNP NNS VBP VBN VBN RB TO VB DT NN . Indonesia 's national police chief says one of Southeast Asia 's most wanted men may be dead . NNP POS JJ NN NN VBZ CD IN NNP NNP POS JJS JJ NNS MD VB JJ . General Sutanto says they hope to confirm the death of Malaysian bomb maker Azahari bin Husin Thursday . NNP NNP VBZ PRP VBP TO VB DT NN IN JJ NN NN NNP NNP NNP NNP . Indonesian police raided a suspected militant hideout in Batu , in East Java Province Wednesday . JJ NN VBD DT JJ JJ NN IN NNP , IN NNP NNP NNP NNP . At least three people are thought to be dead from the gunbattle and explosions that rocked the house . IN JJS CD NNS VBP VBN TO VB JJ IN DT NN CC NNS WDT VBD DT NN . Police fear the building may be booby trapped and will wait for daylight before retrieving the bodies and making further investigations . NNS VBP DT NN MD VB JJ JJ CC MD VB IN NN IN VBG DT NNS CC VBG JJ NNS . Witnesses say Azahari bin Husin may have blown himself up rather than be captured by police . NNS VBP NNP NNP NNP MD VB VBN PRP RP RB IN VB VBN IN NNS . The fugitive terrorist is linked to Jemaah Islamiyah , a group seen as the regional arm of al-Qaida , and is accused of masterminding at least four deadly blasts in Indonesia , including the 2002 Bali bombings that killed 202 people . DT JJ NN VBZ VBN TO NNP NNP , DT NN VBN IN DT JJ NN IN NNP , CC VBZ VBN IN VBG IN JJS CD JJ NNS IN NNP , VBG DT CD NNP NNS WDT VBD CD NNS . A suicide bomber targeted a police station in Pakistan 's capital , Islamabad , Monday evening , killing himself and one officer . DT NN NN VBD DT NN NN IN NNP POS NN , NNP , NNP NN , VBG PRP CC CD NN . Officials say police tried to stop the bomber at a point before he detonated his explosives . NNS VBP NNS VBD TO VB DT NN IN DT NN IN PRP VBD PRP$ NNS . It is not clear how many people were wounded in the attack . PRP VBZ RB JJ WRB JJ NNS VBD VBN IN DT NN . Militants have staged a wave of attacks over the past few years in Pakistan , including several in the capital . NNS VBP VBN DT NN IN NNS IN DT JJ JJ NNS IN NNP , VBG JJ IN DT NN . The government has recently signed two separate peace deals with Islamist groups in the tribal regions near the border with Afghanistan . DT NN VBZ RB VBN CD JJ NN NNS IN JJ NNS IN DT JJ NNS IN DT NN IN NNP . The country marked its national holiday , Pakistan Day , on Monday . DT NN VBD PRP$ JJ NN , NNP NNP , IN NNP . The holiday commemorates the 69th anniversary of the movement by Muslims on the Indian sub-continent to create a separate country . DT NN VBZ DT JJ NN IN DT NN IN NNS IN DT JJ JJ TO VB DT JJ NN . One of the most powerful women in U.S. business has been forced out of her job as chief executive of the huge , high-tech Hewlett-Packard company . CD IN DT RBS JJ NNS IN NNP NN VBZ VBN VBN IN IN PRP$ NN IN JJ NN IN DT JJ , JJ NNP NN . Carly Fiorina stepped down Wednesday after six years at the helm , citing differences with the board of directors over the company 's strategy . NNP NNP VBD RP NNP IN CD NNS IN DT NN , VBG NNS IN DT NN IN NNS IN DT NN POS NN . HP is the world 's second largest personal computer maker and operates a highly profitable printer business . NNP VBZ DT NN POS JJ JJS JJ NN NN CC VBZ DT RB JJ NN NN . Ms. Fiorina pushed HP to merge with rival Compaq , saying the merger would bring increased scale , efficiency , and profit . NNP NNP VBD NNP TO VB IN JJ NNP , VBG DT NN MD VB VBN NN , NN , CC NN . But some investors and analysts say the result was disappointing . CC DT NNS CC NNS VBP DT NN VBD JJ . Chief Financial Officer Robert Wayman was named interim CEO . NNP NNP NNP NNP NNP VBD VBN JJ NN . A district court in Belarus has sentenced a political opposition figure to 15 days in jail on charges resisting police forces . DT NN NN IN NNP VBZ VBN DT JJ NN NN TO CD NNS IN NN IN NNS VBG NN NNS . Syarhei Antonchyk was sentenced Friday - one day after several other opposition figures were given similar sentences , all of which will keep them imprisoned until after the presidential election , set for March 19 NNP NNP VBD VBN NNP : CD NN IN JJ JJ NN NNS VBD VBN JJ NNS , DT IN WDT MD VB PRP VBN IN IN DT JJ NN , VBN IN NNP CD Thursday , a Minsk court sentenced Vintsuk Vyachorka , leader of the Belarus Popular Front , for taking part in what it called an unsanctioned demonstration . NNP , DT NNP NN VBD NNP NNP , NN IN DT NNP NNP NNP , IN VBG NN IN WP PRP VBD DT JJ NN . Police detained him and other campaign staff members of opposition presidential candidate Alexander Milinkevich Wednesday after an opposition rally in the Belarusian capital . NNS VBD PRP CC JJ NN NN NNS IN NN JJ NN NNP NNP NNP IN DT NN NN IN DT JJ NN . President Alexander Lukashenko has ruled the former Soviet republic since 1994 , and is seeking a third term . NNP NNP NNP VBZ VBN DT JJ JJ NN IN CD , CC VBZ VBG DT JJ NN . The West has criticized his human rights record and quashing of political opposition . DT NNP VBZ VBN PRP$ JJ NNS NN CC VBG IN JJ NN . The United States has called Mr. Lukashenko Europe 's last dictator . DT NNP NNP VBZ VBN NNP NNP NNP POS JJ NN . French and Iraqi officials say a French engineer kidnapped last month in Baghdad has been freed . JJ CC JJ NNS VBP DT JJ NN VBN JJ NN IN NNP VBZ VBN VBN . Iraq Interior Ministry officials and police say Bernard Planche was found Sunday near a security checkpoint , west of Baghdad . NNP NNP NNP NNS CC NNS VBP NNP NNP VBD VBN NNP IN DT NN NN , NN IN NNP . Mr. Planche was abducted Thursday from his home in Baghdad . NNP NNP VBD VBN NNP IN PRP$ NN IN NNP . The kidnappers had threatened to kill him if France did not end what they called its ' illegitimate presence ' in Iraq . DT NNS VBD VBN TO VB PRP IN NNP VBD RB VB WP PRP VBD PRP$ `` JJ NN `` IN NNP . The engineer 's release comes a day after an American journalist was kidnapped in Baghdad . DT NN POS NN VBZ DT NN IN DT JJ NN VBD VBN IN NNP . Meanwhile , the U.S. military says five Marines were killed in separate insurgent attacks in Iraq Sunday and Saturday . RB , DT NNP NN VBZ CD NNS VBD VBN IN JJ JJ NNS IN NNP NNP CC NNP . On the political front , Iraqi President Jalal Talabani says leaders of the country 's political parties have agreed in principle to form a national unity government . IN DT JJ NN , JJ NNP NNP NNP VBZ NNS IN DT NN POS JJ NNS VBP VBN IN NN TO VB DT JJ NN NN . Pro-Taleban militants have released at least 30 of nearly 250 Pakistani soldiers abducted near the Afghan border in late August . JJ NNS VBP VBN IN JJS CD IN RB CD JJ NNS VBN IN DT JJ NN IN JJ NNP . The militants freed the soldiers early Saturday in the South Waziristan tribal region . DT NNS VBD DT NNS JJ NNP IN DT NNP NNP JJ NN . Last month , pro-Taleban militants handed over at least 25 of the captured soldiers to a tribal council of elders ( or jirga ) near Wana , the main town in South Waziristan . JJ NN , JJ NNS VBD RP IN JJS CD IN DT VBN NNS TO DT JJ NN IN NNS LRB CC NN RRB IN NNP , DT JJ NN IN NNP NNP . The militants have demanded that Pakistani security forces release detained fighters and pull out of the tribal region in return for freeing more soldiers . DT NNS VBP VBN IN JJ NN NNS VBP VBN NNS CC VB IN IN DT JJ NN IN NN IN VBG JJR NNS . The capture of the troops has been an embarrassment for Pakistan 's army as it struggles to contain a recent upsurge in violence near the Afghan border . DT NN IN DT NNS VBZ VBN DT NN IN NNP POS NN IN PRP VBZ TO VB DT JJ NN IN NN IN DT JJ NN . The violence follows the collapse of a peace deal in July between Pakistan 's government and pro-Taleban tribesmen . DT NN VBZ DT NN IN DT NN NN IN NNP IN NNP POS NN CC JJ NNS . Tibet 's spiritual leader , the Dalai Lama , has expressed condolences for Pope John Paul , saying he had great respect and admiration for the Catholic leader . NNP POS JJ NN , DT NNP NNP , VBZ VBN NNS IN NNP NNP NNP , VBG PRP VBD JJ NN CC NN IN DT JJ NN . The Dalai Lama said the pope 's experience in Communist Poland helped give him a clear understanding of conditions in Tibet under Chinese rule . DT NNP NNP VBD DT NN POS NN IN NNP NNP VBD VB PRP DT JJ NN IN NNS IN NNP IN JJ NN . The Tibetan leader said he developed a close personal friendship with the pontiff , after meeting on several occasions . DT JJ NN VBD PRP VBD DT JJ JJ NN IN DT NN , IN VBG IN JJ NNS . The Dalai Lama also praised John Paul for his mission to bring peace to the world and his frequent travels , despite the pontiff 's failing health . DT NNP NNP RB VBD NNP NNP IN PRP$ NN TO VB NN TO DT NN CC PRP$ JJ NNS , IN DT NN POS VBG NN . He says he and the pope shared a keen interest in promoting harmony among different religious traditions in an effort to spread a unified message of peace . PRP VBZ PRP CC DT NN VBD DT JJ NN IN VBG NN IN JJ JJ NNS IN DT NN TO VB DT JJ NN IN NN . Nepal 's Maoist rebels have called for an indefinite nationwide strike as part of their campaign against the royalist government . NNP POS NNP NNS VBP VBN IN DT JJ JJ NN IN NN IN PRP$ NN IN DT NN NN . A statement released Saturday said the strike will begin April 3 . DT NN VBN NNP VBD DT NN MD VB NNP CD . Rebel leaders say the strike will be preceded by a blockade of the capital , Kathmandu , on March 14 . NN NNS VBP DT NN MD VB VBN IN DT NN IN DT NN , NNP , IN NNP CD . King Gyanendra seized absolute power a year ago , saying the move was necessary to curb the Maoist rebellion . NNP NNP VBD JJ NN DT NN RB , VBG DT NN VBD JJ TO VB DT NNP NN . Some 13,000 people have died in the insurgency since 1996 . DT CD NNS VBP VBN IN DT NN IN CD . Elections held earlier this month were marred by low voter turnout and allegations by several countries , including India , Japan , Britain and the United States , who all said the vote was flawed . NNS VBN RBR DT NN VBD VBN IN JJ NN NN CC NNS IN JJ NNS , VBG NNP , NNP , NNP CC DT NNP NNPS , WP DT VBD DT NN VBD VBN . Seven major opposition parties boycotted the vote , and the election sparked almost daily anti-government demonstrations . CD JJ NN NNS VBD DT NN , CC DT NN VBD RB JJ NN NNS . Chinese health officials say a 44-year-old woman from southern China has died from the deadly strain of the bird flu virus . JJ NN NNS VBP DT JJ NN IN JJ NNP VBZ VBN IN DT JJ NN IN DT NN NN NN . A statement on the Web site of the Health Department of Guangdong province identified the woman as a migrant worker from Shanwei City in Sichuan province . DT NN IN DT NNP NN IN DT NNP NNP IN NNP NN VBD DT NN IN DT NN NN IN NNP NNP IN NNP NN . The statement said the woman tested positive for the H5N1 strain of the disease and that she became ill after contact with dead poultry suspected of having the virus . DT NN VBD DT NN VBD JJ IN DT NNP NN IN DT NN CC IN PRP VBD JJ IN NN IN JJ NN VBN IN VBG DT NN . It also said that no one else who has come into contact with the woman has shown any symptoms of the virus . PRP RB VBD IN DT CD NN WP VBZ VBN IN NN IN DT NN VBZ VBN DT NNS IN DT NN . China 's central Health Ministry in Beijing has yet to comment on the case . NNP POS JJ NNP NNP IN NNP VBZ RB TO VB IN DT NN . China has reported two other bird flu deaths this year . NNP VBZ VBN CD JJ NN NN NNS DT NN . The World Health Organization says China has had 19 bird flu deaths and 29 cases since the outbreak began in 2003 . DT NNP NNP NNP VBZ NNP VBZ VBN CD NN NN NNS CC CD NNS IN DT NN VBD IN CD . U.S. Defense Secretary Donald Rumsfeld says Central American democracies must work together to fight drug trafficking , smuggling , hostage-taking , terrorism and gang violence . NNP NNP NNP NNP NNP VBZ NNP NNP NNS MD VB RB TO VB NN NN , NN , NN , NN CC NN NN . Mr. Rumsfeld is hosting a two-day conference in Miami on regional security cooperation with defense ministers from seven Central American countries . NNP NNP VBZ VBG DT JJ NN IN NNP IN JJ NN NN IN NN NNS IN CD JJ JJ NNS . The Defense Department says the meeting is meant to strengthen Central America 's group identity and capabilities . DT NNP NNP VBZ DT NN VBZ VBN TO VB NNP NNP POS NN NN CC NNS . In addition to the topics Mr. Rumsfeld listed , ministers are discussing maritime security and the formation of a regional peacekeeping unit and a rapid response force for coping with disasters . IN NN TO DT NNS NNP NNP VBD , NNS VBP VBG JJ NN CC DT NN IN DT JJ NN NN CC DT JJ NN NN IN VBG IN NNS . The ministers may also address the role improved security can play in promoting economic development . DT NNS MD RB VB DT NN VBD NN MD VB IN VBG JJ NN . Participants include ministers from Guatemala , Honduras , El Salvador , Nicaragua , Belize , Costa Rica , and Panama . NNS VBP NNS IN NNP , NNP , NNP NNP , NNP , NNP , NNP NNP , CC NNP . Mexico and several other countries were expected to send observers . NNP CC JJ JJ NNS VBD VBN TO VB NNS . An exiled Iranian opposition group has accused a well-known Pakistani scientist of giving Tehran weapons grade uranium in 2001 . DT VBN JJ NN NN VBZ VBN DT JJ JJ NN IN VBG JJ NNS NN NN IN CD . Farid Soleiman , a spokesman for the group , National Council of Resistance of Iran , made the comment Wednesday to reporters in Vienna , the home of the International Atomic Energy Agency . NNP NNP , DT NN IN DT NN , NNP NNP IN NNP IN NNP , VBD DT NN NNP TO NNS IN NNP , DT NN IN DT NNP NNP NNP NNP . He said the enriched uranium in question was given to Iran by Abdul Qadeer Khan , who built Pakistan 's nuclear bomb . PRP VBD DT VBN NN IN NN VBD VBN TO NNP IN NNP NNP NNP , WP VBD NNP POS JJ NN . Mr. Khan ran a global nuclear black market that supplied Libya , North Korea and Iran with nuclear technology until it was shut down this year . NNP NNP VBD DT JJ JJ JJ NN WDT VBD NNP , NNP NNP CC NNP IN JJ NN IN PRP VBD VBN RB DT NN . The Iranian opposition group also said Iran has been conducting secret nuclear activities at sites unknown to international inspectors . DT JJ NN NN RB VBD NNP VBZ VBN VBG JJ JJ NNS IN NNS JJ TO JJ NNS . International Atomic Energy Agency officials and the government of Iran have yet to respond to the accusations . NNP NNP NNP NNP NNS CC DT NN IN NNP VBP RB TO VB TO DT NNS . A European Union court has upheld sanctions imposed on U.S. software giant Microsoft by a European anti-trust commission . DT NNP NNP NN VBZ VBN NNS VBN IN NNP NN NN NNP IN DT JJ JJ NN . The Luxembourg-based European Court of First Instance announced the decision Wednesday . DT JJ NNP NNP IN NNP NNP VBD DT NN NNP . Microsoft said after the ruling it still hopes to reach a settlement with the anti-trust authorities . NNP VBD IN DT NN PRP RB VBZ TO VB DT NN IN DT JJ NNS . In March , the EU competition commission ruled Microsoft had abused its position in the market by only offering a version of Windows with Media Player . IN NNP , DT NNP NN NN VBD NNP VBD VBN PRP$ NN IN DT NN IN RB VBG DT NN IN NNS IN NNP NNP . The commission said this shut out competitors who produced servers and media player programs . DT NN VBD DT VBD RP NNS WP VBD NNS CC NNS NN NNS . It ordered the company to market a version of Windows without Media Player software and to share more information with competitors . PRP VBD DT NN TO VB DT NN IN NNP IN NNP NNP NN CC TO VB RBR NN IN NNS . British military officials in Iraq say three British soldiers have been killed in a suspected roadside bombing in the southern part of the country . JJ JJ NNS IN NNP VBP CD JJ NNS VBP VBN VBN IN DT JJ NN VBG IN DT JJ NN IN DT NN . The British command says the attack occurred early Saturday in the city of Amarah , north of Basra . DT JJ NN VBZ DT NN VBD JJ NNP IN DT NN IN NNP , NN IN NNP . The combat deaths were the first for British forces in Iraq in months . DT NN NNS VBD DT JJ IN JJ NNS IN NNP IN NNS . British forces , based in the mainly Shi'ite south , have suffered far fewer losses than the much larger U.S. force fighting Sunni Arab insurgents and foreign fighters in the rest of Iraq . JJ NNS , VBN IN DT RB JJ NN , VBP VBN RB JJR NNS IN DT JJ JJR NNP NN VBG NNP NNP NNS CC JJ NNS IN DT NN IN NNP . Two United Nations agencies are warning that North Korea is still struggling with severe food shortages , despite enjoying its best harvest in a decade . CD NNP NNPS NNS VBP VBG IN NNP NNP VBZ RB VBG IN JJ NN NNS , IN VBG PRP$ JJS NN IN DT NN . The World Food Program and the Food and Agriculture Organization said Tuesday that 6.4 million North Koreans - more than a quarter of its population - will require international food aid in 2005 . DT NNP NNP NNP CC DT NNP CC NNP NNP VBD NNP IN CD CD NNP NNS : JJR IN DT NN IN PRP$ NN : MD VB JJ NN NN IN CD . The agencies also noted a sharp rise in North Korean food prices , saying the cost of rice came to about 30 percent of a typical North Korean monthly wage . DT NNS RB VBD DT JJ NN IN JJ JJ NN NNS , VBG DT NN IN NN VBD TO IN CD NN IN DT JJ JJ JJ JJ NN . Experts blame much of the problem on Pyongyang 's mismanagement of agriculture . NNS VBP NN IN DT NN IN NNP POS NN IN NN . The World Food Program has provided more than one billion dollars in food aid to North Korea since 1995 . DT NNP NNP NNP VBZ VBN JJR IN CD CD NNS IN NN NN TO NNP NNP IN CD . A senior NATO official says member nations face a growing threat of attack by long-range missiles . DT JJ NNP NN VBZ NN NNS VBP DT VBG NN IN NN IN JJ NNS . NATO 's Assistant Secretary General for Defense Investment , Marshall Billingslea , Wednesday urged officials to consider ways to address such a threat , including the creation of a missile defense system . NNP POS NNP NNP NNP IN NNP NNP , NNP NNP , NNP VBD NNS TO VB NNS TO VB PDT DT NN , VBG DT NN IN DT NN NN NN . Billingslea did not say which nations pose a security threat to NATO members , nor did he elaborate upon the current threat level . NNP VBD RB VB WDT NNS VBP DT NN NN TO NNP NNS , CC VBD PRP VB IN DT JJ NN NN . The comments came as Billingslea presented a 10,000 page report on the subject of threats and defense systems to NATO officials . DT NNS VBD IN NNP VBD DT CD NN NN IN DT NN IN NNS CC NN NNS TO NNP NNS . Billingslea says the study , commissioned in 2002 , found that a missile defense shield would be technically and financially feasible . NNP VBZ DT NN , VBN IN CD , VBD IN DT NN NN NN MD VB RB CC RB JJ . India will proceed with plans to help build a pipeline from Iran even though that nation is facing international sanctions because of its nuclear activities . NNP MD VB IN NNS TO VB VB DT NN IN NNP RB IN DT NN VBZ VBG JJ NNS IN IN PRP$ JJ NNS . India reaffirmed it 's commitment to the project Saturday during Indian Foreign Minister Natwar Singh 's visit to Tehran . NNP VBD PRP VBZ NN TO DT NN NNP IN JJ NNP NNP NNP NNP POS NN TO NNP . He is expected to leave the country on Sunday . PRP VBZ VBN TO VB DT NN IN NNP . Following talks with his Iranian counterpart ( Manouchehr Mottaki ) , Mr. Singh said he hopes oil ministers from Iran , India and Pakistan can hold a joint meeting to finalize the pipeline deal before the end of the year . VBG NNS IN PRP$ JJ NN LRB NNP NNP RRB , NNP NNP VBD PRP VBZ NN NNS IN NNP , NNP CC NNP MD VB DT JJ NN TO VB DT NN NN IN DT NN IN DT NN . Mr. Singh also announced plans for a joint commission meeting in March 2006 to review bilateral relations between India and Iran . NNP NNP RB VBD NNS IN DT JJ NN NN IN NNP CD TO VB JJ NNS IN NNP CC NNP . The United States and the European Union suspect Iran is using its nuclear program to develop atomic weapons , which Iran has denied . DT NNP NNPS CC DT NNP NNP NN NNP VBZ VBG PRP$ JJ NN TO VB JJ NNS , WDT NNP VBZ VBN . Broadcasters in the Somali capital , Mogadishu , have gone off the air for 24 hours to protest a government crackdown on independent media . NNS IN DT JJ NN , NNP , VBP VBN RP DT NN IN CD NNS TO VB DT NN NN IN JJ NNS . The four local radio stations still operating went silent Monday . DT CD JJ NN NNS RB VBG VBD JJ NNP . Their directors say they want to show solidarity with three other stations the government shut down last week . PRP$ NNS VBP PRP VBP TO VB NN IN CD JJ NNS DT NN VBD RB JJ NN . Authorities have accused Radio Simba , Radio Banadir and Radio Shabelle of making inflammatory and anti-government broadcasts . NNS VBP VBN NNP NNP , NNP NNP CC NNP NNP IN VBG JJ CC JJ NNS . The government has also ordered all Somali media houses to register with the government or face closure . DT NN VBZ RB VBN DT JJ NNS NNS TO VB IN DT NN CC NN NN . Media advocacy groups like Reporters Without Borders have strongly criticized the moves , saying the government is trying to censor unwelcome news . NNS NN NNS IN NNS IN NNS VBP RB VBN DT NNS , VBG DT NN VBZ VBG TO VB JJ NN . The closed stations have reported regularly on the violence in Mogadishu between insurgents and Ethiopian troops backing the Somali interim government . DT JJ NNS VBP VBN RB IN DT NN IN NNP IN NNS CC JJ NNS VBG DT JJ JJ NN . The fighting over the past 11 months has killed thousands , and prompted hundreds of thousands more to flee the Somali capital . DT NN IN DT JJ CD NNS VBZ VBN NNS , CC VBD NNS IN NNS RBR TO VB DT JJ NN . Deep into the mountain state of West Virginia , a group of volunteers is determined to restore nature the way it was a century ago , before mining , logging and fires changed the landscape . NNP IN DT NN NN IN NNP NNP , DT NN IN NNS VBZ VBN TO VB NN DT NN PRP VBD DT NN RB , IN NN , VBG CC NNS VBD DT NN . To do so , thousands of native trees are being planted . TO VB RB , NNS IN JJ NNS VBP VBG VBN . Producer Zulima Palacio prepared the story . NN NNP NNP VBD DT NN . Iraqi insurgents have threatened to kill a kidnapped U.S. journalist unless female prisoners in Iraq are released within 72 hours . JJ NNS VBP VBN TO VB DT VBN NNP NN IN JJ NNS IN NNP VBP VBN IN CD NNS . The kidnappers made the threat in a new videotape shown Tuesday by Arab satellite broadcaster al-Jazeera . DT NNS VBD DT NN IN DT JJ NN VBN NNP IN JJ NN NN NNP . The tape also showed the journalist , Jill Carroll , speaking , but her voice could not be heard . DT NN RB VBD DT NN , NNP NNP , NN , CC PRP$ NN MD RB VB VBN . Gunmen seized Carroll and killed her Iraqi interpreter in an attack in Baghdad earlier this month . NNS VBD NNP CC VBD PRP$ JJ NN IN DT NN IN NNP RBR DT NN . In Washington , a State Department spokesman said officials are making every effort to secure Carroll 's release . IN NNP , DT NNP NNP NN VBD NNS VBP VBG DT NN TO VB NNP POS NN . Meanwhile , gunmen in the northern Iraqi city of Kirkuk killed at least one person in an attack on the offices of a Kurdish group . RB , NNS IN DT JJ JJ NN IN NNP VBD IN JJS CD NN IN DT NN IN DT NNS IN DT JJ NN . And Iraq 's military called on Iran to release nine coast guard sailors seized in a dispute on the Shatt al-Arab waterway . CC NNP POS JJ VBN IN NNP TO VB CD NN NN NNS VBD IN DT NN IN DT NNP NNP NN . Russia 's state-owned oil firm Rosneft has installed one of its senior executives as head of Yuganskneftegas , a key unit of dismantled oil empire Yukos . NNP POS JJ NN NN NNP VBZ VBN CD IN PRP$ JJ NNS IN NN IN NNP , DT JJ NN IN JJ NN NN NNP . Rosneft said Friday it has registered its ownership of Yuganskneftegas and named Vladimir Bulba as company chief . NNP VBD NNP PRP VBZ VBN PRP$ NN IN NNP CC VBN NNP NNP IN NN NN . Last Sunday , the mysterious Baikal Group picked up the Yukos subsidiary at a government auction for about half of what analysts said it was worth . JJ NNP , DT JJ NNP NNP VBD RP DT NNP NN IN DT NN NN IN IN NN IN WP NNS VBD PRP VBD JJ . In turn , Rosneft bought Baikal last week . IN NN , NNP VBD NNP JJ NN . Next month , Rosneft and another state-owned energy firm , Gazprom , are expected to merge . JJ NN , NNP CC DT JJ NN NN , NNP , VBP VBN TO VB . The Russian government ordered the sale of Yukos assets to recover what it says are more than $ 25 billion in back taxes by the company . DT JJ NN VBD DT NN IN NNP NNS TO VB WP PRP VBZ VBP JJR IN $ CD CD IN JJ NNS IN DT NN . Critics of the Kremlin have called the move payback for political activities by Yukos founder Mikhail Khodorkovsky , who is now in prison . NNS IN DT NNP VBP VBN DT NN NN IN JJ NNS IN NNP NN NNP NNP , WP VBZ RB IN NN . The Kremlin has denied the charge . DT NNP VBZ VBN DT NN . The World Health Organization says it has confirmed 160 human cases of bird flu worldwide . DT NNP NNP NNP VBZ PRP VBZ VBN CD JJ NNS IN NN NN NN . A statement from the United Nations health agency Tuesday said 85 of those infected have died , including four people in Turkey . DT NN IN DT NNP NNP NN NN NNP VBD CD IN DT VBN VBP VBN , VBG CD NNS IN NNP . The WHO also said it is sending a team of specialists to northern Iraq to investigate possible bird flu cases there . DT NNP RB VBD PRP VBZ VBG DT NN IN NNS TO JJ NNP TO VB JJ NN NN NNS RB . Iraqi health minister said Monday that a girl who died earlier this month in the Kurdish city of Sulaymaniya , near the border with Turkey and Iran , had the deadly H5N1 strain of bird flu . JJ NN NN VBD NNP IN DT NN WP VBD RBR DT NN IN DT JJ NN IN NNP , IN DT NN IN NNP CC NNP , VBD DT JJ NNP NN IN NN NN . Iraqi officials are on high alert to try to prevent the virus from becoming established . JJ NNS VBP IN JJ NN TO VB TO VB DT NN IN VBG VBN . Authorities are destroying hundreds of thousands of birds and have quarantined a number of people who have symptoms of the disease . NNS VBP VBG NNS IN NNS IN NNS CC VBP VBN DT NN IN NNS WP VBP NNS IN DT NN . The Palestinian parliament has passed a new electoral law , removing an obstacle that had delayed elections for a new legislature . DT JJ NN VBZ VBN DT JJ JJ NN , VBG DT NN WDT VBD VBN NNS IN DT JJ NN . The new law creates a mixed electoral system , with half the lawmakers to be chosen by districts and the other half to be chosen from a national slate of party candidates . DT JJ NN VBZ DT JJ JJ NN , IN PDT DT NNS TO VB VBN IN NNS CC DT JJ NN TO VB VBN IN DT JJ NN IN NN NNS . Differences over the voting system led to the postponement earlier this month of elections that had been scheduled for mid-July . NNS IN DT NN NN VBD TO DT NN RBR DT NN IN NNS WDT VBD VBN VBN IN NN . There is no word yet on a date for re-scheduled elections . EX VBZ DT NN RB IN DT NN IN JJ NNS . Israeli Prime Minister Ariel Sharon has arrived in the United States , seeking President Bush 's strong endorsement for Israel 's scheduled withdrawal from the Gaza Strip . JJ NNP NNP NNP NNP VBZ VBN IN DT NNP NNPS , VBG NNP NNP POS JJ NN IN NNP POS VBN NN IN DT NNP NNP . The two leaders are to meet Monday at the president 's Texas ranch , for talks also expected to focus on Israel 's plan to expand its largest West Bank settlement . DT CD NNS VBP TO VB NNP IN DT NN POS NNP NN , IN NNS RB VBN TO VB IN NNP POS NN TO VB PRP$ JJS NNP NNP NN . Israel insists on building 3,500 new homes in the Maale Adumim settlement near Jerusalem . NNP VBZ IN NN CD JJ NNS IN DT NNP NNP NN IN NNP . But U.S. officials have said the plan is at odds with the U.S.-backed ' roadmap ' for peace between Israel and the Palestinians . CC NNP NNS VBP VBN DT NN VBZ IN NNS IN DT JJ `` NN `` IN NN IN NNP CC DT NNS . In Jerusalem , Israeli police deployed in force Sunday to head off ultranationalist Jews who threatened to occupy a site sacred to Muslims and Jews . IN NNP , JJ NN VBD IN NN NNP TO VB RP JJ NNPS WP VBD TO VB DT NN VBN TO NNPS CC NNPS . Authorities say about 200 protesters were blocked from entering the hill-top compound known to Muslims as the Nobel Sanctuary and to Jews as the Temple Mount . NNS VBP IN CD NNS VBD VBN IN VBG DT JJ NN VBN TO NNPS IN DT NNP NNP CC TO NNPS IN DT NNP NNP . The U.S. military in Afghanistan says four coalition and four Afghan soldiers have been wounded in separate explosions in the eastern and southern parts of the country . DT NNP NN IN NNP VBZ CD NN CC CD JJ NNS VBP VBN VBN IN JJ NNS IN DT JJ CC JJ NNS IN DT NN . A military spokesman says the coalition troops were wounded when their vehicle was hit by a roadside bomb in the Khogyani district of eastern Nangarhar province . DT JJ NN VBZ DT NN NNS VBD VBN WRB PRP$ NN VBD VBN IN DT NN NN IN DT NNP NN IN JJ NNP NN . No details of the soldiers ' nationalities nor the extent of their wounds were given . DT NNS IN DT NNS POS NNS CC DT NN IN PRP$ NNS VBD VBN . Hours later , in southern Zabul province , a similar explosion wounded four Afghan soldiers on patrol . NNS RB , IN JJ NNP NN , DT JJ NN VBD CD JJ NNS IN NN . Meanwhile , Afghan President Hamid Karzai has ordered an investigation into the killings of eight Afghans , including a child , by U.S.-led coalition forces in Kunar province on Thursday . RB , JJ NNP NNP NNP VBZ VBN DT NN IN DT NNS IN CD NNS , VBG DT NN , IN JJ NN NNS IN NNP NN IN NNP . Afghan and U.S.-led forces say the dead were suspected al-Qaida militants , but local authorities say they were civilians who had no connection to the terror network . JJ CC JJ NNS VBP DT NN VBD VBN NNP NNS , CC JJ NNS VBP PRP VBD NNS WP VBD DT NN TO DT NN NN . The White House says President Bush will travel to Argentina , Brazil and Panama next month . DT NNP NNP VBZ NNP NNP MD VB TO NNP , NNP CC NNP JJ NN . A statement issued Wednesday said the president will visit Argentina from November 3 through 5 to meet with President Nestor Carlos Kirchner , and to attend the Summit of the Americas in Mar del Plata . DT NN VBN NNP VBD DT NN MD VB NNP IN NNP CD IN CD TO VB IN NNP NNP NNP NNP , CC TO VB DT NN IN DT NNPS IN NNP NNP NNP . That summit will bring together 34 democratically elected heads of state and government from North , Central and South America . DT NN MD VB RB CD RB VBN NNS IN NN CC NN IN NNP , NNP CC NNP NNP . The White House says Mr. Bush will promote open markets , free trade and what it calls the ' consolidation of democracy ' in the region . DT NNP NNP VBZ NNP NNP MD VB JJ NNS , JJ NN CC WP PRP VBZ DT `` NN IN NN `` IN DT NN . Afterward , Mr. Bush is to visit Brazil on November 5 and 6 at the invitation of President Luiz Inacio Lula da Silva . RB , NNP NNP VBZ TO VB NNP IN NNP CD CC CD IN DT NN IN NNP NNP NNP NNP NNP NNP . He then is expected to go to Panama to meet with President Martin Torrijos Espino . PRP RB VBZ VBN TO VB TO NNP TO VB IN NNP NNP NNP NNP . Nepal 's royal government has imposed a day-time curfew in Kathmandu and its suburbs on Friday after an opposition alliance said it will hold a pro-democracy rally on that day . NNP POS JJ NN VBZ VBN DT JJ NN IN NNP CC PRP$ NNS IN NNP IN DT NN NN VBD PRP MD VB DT JJ NN IN DT NN . Police have also rounded up nearly 80 political activists and cut off cell phone communications ahead of the rally . NNS VBP RB VBN RP RB CD JJ NNS CC VB RP NN NN NNS RB IN DT NN . But political activists say hundreds of people have been detained . CC JJ NNS VBP NNS IN NNS VBP VBN VBN . India , Japan , the United Nations and the European Union have expressed concern about the arrests and restrictions , calling them regrettable . NNP , NNP , DT NNP NNPS CC DT NNP NNP VBP VBN NN IN DT NNS CC NNS , VBG PRP JJ . Nepal 's Home Minister Kamal Thapa says the arrests were a protective move to prevent Maoist rebels from infiltrating the protest and inciting violence . NNP POS NNP NNP NNP NNP VBZ DT NNS VBD DT JJ NN TO VB JJ NNS IN VBG DT NN CC VBG NN . An alliance of seven political parties has called for the rally despite a government ban and Maoist rebels have been urging support for the protest . DT NN IN CD JJ NNS VBZ VBN IN DT NN IN DT NN NN CC JJ NNS VBP VBN VBG NN IN DT NN . The king fired the elected parliament and seized absolute power last February . DT NN VBD DT VBN NN CC VBD JJ NN JJ NNP . Pope Benedict says the anniversary of the 2001 September 11 attacks on the United States should be a day to remember all victims of terrorism . NNP NNP VBZ DT NN IN DT CD NNP CD NNS IN DT NNP NNPS MD VB DT NN TO VB DT NNS IN NN . The pope Sunday called for all people to , in his words , ' renounce hatred and build a world of justice , solidarity , and peace . ' DT NN NNP VBD IN DT NNS TO , IN PRP$ NNS , `` VB NN CC VB DT NN IN NN , NN , CC NN . `` The Roman Catholic leader made his comments to pilgrims gathered outside his summer residence in Castelgandolfo near Rome to hear his weekly blessing . DT NNP NNP NN VBD PRP$ NNS TO NNS VBN IN PRP$ NN NN IN NNP IN NNP TO VB PRP$ JJ NN . U.S. Secretary of Defense Donald Rumsfeld has made a surprise Christmas Eve trip Friday to Iraq , visiting American soldiers wounded in Tuesday 's suicide attack near Mosul . NNP NN IN NN NNP NNP VBZ VBN DT NN NNP NNP NN NNP TO NNP , VBG JJ NNS VBN IN NNP POS NN NN IN NNP . Twenty-two people were killed and 69 wounded in the attack , and Mr. Rumsfeld awarded medals to some of the injured at a hospital not far from the base . CD NNS VBD VBN CC CD VBN IN DT NN , CC NNP NNP VBD NNS TO DT IN DT NN IN DT NN RB RB IN DT NN . The secretary said his trip had been planned before the attack , but was kept secret for security reasons . DT NN VBD PRP$ NN VBD VBN VBN IN DT NN , CC VBD VBN JJ IN NN NNS . Following a stop in Tikrit , Mr. Rumsfeld visited troops near Fallujah , where dozens of American military personnel were killed last month in an offensive to crush insurgents holed up there . VBG DT NN IN NNP , NNP NNP VBD NNS IN NNP , WRB NNS IN JJ JJ NNS VBD VBN JJ NN IN DT JJ TO VB NNS VBD RB RB . The U.S. military says more than 900 displaced residents returned to Fallujah for the first time Thursday , assisted by U.S. and Iraqi troops who are providing security and humanitarian aid . DT NNP NN VBZ JJR IN CD VBN NNS VBD TO NNP IN DT JJ NN NNP , VBN IN NNP CC JJ NNS WP VBP VBG NN CC JJ NN . World Cup football ( soccer ) champion Brazil has knocked 2006 host Germany out in the semifinals of the Confederations Cup tournament in Nuremberg . NNP NNP NN LRB NN RRB NN NNP VBZ VBN CD NN NNP IN IN DT NNS IN DT NNPS NNP NN IN NNP . Two goals by Adriano ( in the 21st and 76th minutes ) and a Ronaldinho penalty gave the Brazilians the 03-Feb victory . CD NNS IN NNP LRB IN DT CD CC CD NNS RRB CC DT NNP NN VBD DT NNS DT JJ NN . Brazil had the lead twice at the Frankenstadion , but Germany was able to even the match on a goal from Lukas Podolski ( 23rd minute ) and Michael Ballack 's penalty kick ( in the 48th minute ) . NNP VBD DT NN RB IN DT NNP , CC NNP VBD JJ TO VB DT NN IN DT NN IN NNP NNP LRB JJ NN RRB CC NNP NNP POS NN NN LRB IN DT JJ NN RRB . However , Adriano scored the game winning goal to put Brazil into the final against the winner of Sunday 's semifinal between Mexico and Argentina . RB , NNP VBD DT NN VBG NN TO VB NNP IN DT NN IN DT NN IN NNP POS NN IN NNP CC NNP . Germany will play the loser of the Mexico-Argentina match for third place in Leipzig . NNP MD VB DT NN IN DT NNP NN IN JJ NN IN NNP . The final is in Frankfurt Wednesday . DT JJ VBZ IN NNP NNP . Ukraine and Russia have signed an agreement to create a joint venture to deliver Russian and Central Asian gas to Ukraine . NNP CC NNP VBP VBN DT NN TO VB DT JJ NN TO VB JJ CC JJ JJ NN TO NNP . The agreement ended a bitter price dispute between the two countries , which led to a brief Russian cut off of natural gas deliveries to Ukraine New Year 's Day . DT NN VBD DT JJ NN NN IN DT CD NNS , WDT VBD TO DT JJ JJ NN IN IN JJ NN NNS TO NNP NNP NNP POS NN . Under the deal , the new venture , UkrGazEnergo will oversee gas sales to Ukrainian consumers . IN DT NN , DT JJ NN , NNP MD VB NN NNS TO JJ NNS . It will be co-owned by Naftogaz Ukraine and RosUkrEnergo , which is controlled by Russia 's giant natural gas monopoly Gazprom and a group of unidentified investors . PRP MD VB VBN IN NNP NNP CC NNP , WDT VBZ VBN IN NNP POS JJ JJ NN NN NNP CC DT NN IN JJ NNS . The agreement calls for Ukraine to pay Russia $ 95 per 1,000 cubic meters of natural gas - nearly twice as much as the previous rate but less than the amount originally charged by Gazprom . DT NN VBZ IN NNP TO VB NNP $ CD IN CD JJ NNS IN JJ NN IN RB RB RB JJ IN DT JJ NN CC JJR IN DT NN RB VBN IN NNP . Top-seeded Anabel Medina Garrigues of Spain has advanced to the semifinals of the Canberra International women 's tennis tournament in Australia . JJ NNP NNP NNP IN NNP VBZ VBN TO DT NNS IN DT NNP NNP NNS POS NN NN IN NNP . Medina Garrigues beat Ekaterina Bychkova of Russia , 06-Mar , 06-Apr on Wednesday to advance to the final four . NNP NNP VBD NNP NNP IN NNP , CD , CD IN NNP TO VB TO DT JJ CD . She will play number four Shahar Peer of Israel , who bounced back from a first set loss after a three-hour rain delay to beat Japan 's Aiko Nakamura , 02-Jun , 06-Mar , 6-0 . PRP MD VB NN CD NNP NNP IN NNP , WP VBD RB IN DT JJ NN NN IN DT JJ NN NN TO VB NNP POS NNP NNP , CD , CD , CD . Sixth-seeded Catalonia Cassation of Colombia also made it into the semifinals . JJ NNP NNP IN NNP RB VBD PRP IN DT NNS . She was leading 05-Feb when her opponent , Julia Scruff of Germany , withdrew due to heat illness . PRP VBD VBG CD WRB PRP$ NN , NNP NNP IN NNP , VBD JJ TO NN NN . Cassation will face South Korea 's Cho Yoon-jeong , who advanced with a 04-Jun , 06-Mar , 06-Mar win over Melinda Czink of Hungary . NNP MD VB NNP NNP POS NNP NNP , WP VBD IN DT CD , CD , CD NN IN NNP NNP IN NNP . American classical pianist Martin Berkofsky has long impressed music critics around the world with his firebrand virtuosity . JJ NN NN NNP NNP VBZ RB VBN NN NNS IN DT NN IN PRP$ NN NN . But as VOA 's Irina Robertson learned when she met recently with Berkovsky , he stopped playing for personal fame 25 years ago and began performing for charitable causes . CC IN NNP POS NNP NNP VBD WRB PRP VBD RB IN NNP , PRP VBD VBG IN JJ NN CD NNS RB CC VBD VBG IN JJ NNS . Scot Riddlesberger narrates the story . NNP NNP VBZ DT NN . Former Colombian hostage Ingrid Betancourt has met with Venezuelan President Hugo Chavez to discuss Venezuelan support for freeing other hostages held by rebels in Colombia . JJ JJ NN NNP NNP VBZ VBN IN JJ NNP NNP NNP TO VB JJ NN IN VBG JJ NNS VBN IN NNS IN NNP . Betancourt met with Mr. Chavez Monday at the presidential palace in Caracas . NNP VBD IN NNP NNP NNP IN DT JJ NN IN NNP . The French-Colombian politician has been on a tour of South American countries to solicit regional support for persuading rebels with the Revolutionary Armed Forces of Colombia , or FARC , to release their captives . DT JJ NN VBZ VBN IN DT NN IN JJ JJ NNS TO VB JJ NN IN VBG NNS IN DT JJ JJ NNS IN NNP , CC NNP , TO VB PRP$ NNS . The rebels are holding some 700 hostages for ransom or political leverage . DT NNS VBP VBG DT CD NNS IN NN CC JJ NN . Betancourt 's tour , which began last month , included her native country as well as Ecuador , Brazil , Argentina , Peru , Chile , Bolivia , and now Venezuela . NNP POS NN , WDT VBD JJ NN , VBD PRP$ JJ NN RB RB IN NNP , NNP , NNP , NNP , NNP , NNP , CC RB NNP . Betancourt was a presidential candidate in Colombia when she was captured by FARC rebels in 2002 . NNP VBD DT JJ NN IN NNP WRB PRP VBD VBN IN NNP NNS IN CD . She was held for more than six years before being rescued by the Colombian military in July . PRP VBD VBN IN JJR IN CD NNS IN VBG VBN IN DT JJ NN IN NNP . The commander of NATO-led forces in Afghanistan says the alliance is sending thousands of extra troops to the war-torn country . DT NN IN JJ NNS IN NNP VBZ DT NN VBZ VBG NNS IN JJ NNS TO DT JJ NN . During a visit to the southern Afghan city of Kandahar Friday , General David Richards said NATO is committed to the mission in Afghanistan . IN DT NN TO DT JJ JJ NN IN NNP NNP , NNP NNP NNP VBD NNP VBZ VBN TO DT NN IN NNP . He said the U.S. would provide part of the increase by extending the tour of more than 3,000 American troops by four months . PRP VBD DT NNP MD VB NN IN DT NN IN VBG DT NN IN JJR IN CD JJ NNS IN CD NNS . General Richards did not specify which other NATO members would be sending additional forces . NNP NNP VBD RB VB WDT JJ NNP NNS MD VB VBG JJ NNS . Meanwhile , NATO says it has killed a senior Taleban leader and his deputies in an airstrike along Afghanistan 's southern border with Pakistan . RB , NNP VBZ PRP VBZ VBN DT JJ NNP NN CC PRP$ NNS IN DT NN IN NNP POS JJ NN IN NNP . The alliance did not identify the suspected Taleban members killed in the attack . DT NN VBD RB VB DT JJ NNP NNS VBN IN DT NN . Last month , in the same province , a U.S. airstrike killed the Taleban 's chief of military operations , who was also a close associate of al-Qaida leader Osama bin Laden . JJ NN , IN DT JJ NN , DT NNP NN VBD DT NNP POS NN IN JJ NNS , WP VBD RB DT JJ NN IN NNP NN NNP NNP NNP . Turkey 's state-run news agency says a court has charged four army officers in connection with an alleged plot to overthrow the government . NNP POS JJ NN NN VBZ DT NN VBZ VBN CD NN NNS IN NN IN DT JJ NN TO VB DT NN . The Anatolia news agency said Saturday that the officers - two colonels and two lieutenants - had been charged with belonging to a terrorist organization which , the ruling party says , was seeking to topple Turkey 's Islamic-rooted government . DT NNP NN NN VBD NNP IN DT NNS IN CD NNS CC CD NNS : VBD VBN VBN IN VBG TO DT JJ NN WDT , DT VBG NN VBZ , VBD VBG TO VB NNP POS JJ NN . The agency did not release the names of those charged . DT NN VBD RB VB DT NNS IN DT VBN . On Friday , Anatolia reported that investigators had found a weapons cache full of missile launchers , plastic explosives , and other weaponry at a state-owned farm outside the capital , Ankara . IN NNP , NNP VBD IN NNS VBD VBN DT NNS NN JJ IN NN NNS , JJ NNS , CC JJ NN IN DT JJ NN IN DT NN , NNP . Eighty-six people , including former army officers , leftist politicians and journalists , are already on trial in the case . NNP NNS , VBG JJ NN NNS , JJ NNS CC NNS , VBP RB IN NN IN DT NN . Prosecutors accuse them of planning assassinations and bombings to sow chaos in Turkey , forcing the army to step in and overthrow the government . NNS VBP PRP IN VBG NNS CC NNS TO VB NN IN NNP , VBG DT NN TO VB IN CC VB DT NN . Ukraine 's president , Victor Yushchenko , has called for closer ties between his country and Ukrainians living abroad in an effort to revive the economy and solidify democracy . NNP POS NN , NNP NNP , VBZ VBN IN JJR NNS IN PRP$ NN CC NNS VBG RB IN DT NN TO VB DT NN CC JJ NN . President Yushchenko Friday presented his concept of cooperation to representatives of ethnic Ukrainians attending a three-day World Forum conference in Kiev . NNP NNP NNP VBD PRP$ NN IN NN TO NNS IN JJ NNS VBG DT JJ NNP NNP NN IN NNP . He said about 20 million Ukrainians live in more than 60 countries . PRP VBD IN CD CD NNS VBP IN JJR IN CD NNS . Ethnic Ukrainians abroad often have stronger nationalistic tendencies than those at home . NNP NNS RB RB VBP JJR JJ NNS IN DT IN NN . The president urged Ukrainians to abandon the idea of a federal state , which some political groups have proposed for the country divided between Russian-speaking and Ukrainian-speaking populations . DT NN VBD NNS TO VB DT NN IN DT JJ NN , WDT DT JJ NNS VBP VBN IN DT NN VBN IN JJ CC JJ NNS . Mr. Yushchenko said federalism would further split Ukraine . NNP NNP VBD NN MD RB VB NNP . A U.S.-based global labor advocacy group says Colombia is the world 's most dangerous country for labor activists . DT JJ JJ NN NN NN VBZ NNP VBZ DT NN POS RBS JJ NN IN NN NNS . The AFL-CIO Solidarity Center said in a report released Thursday that more trade union members are killed in Colombia each year than in the rest of the world combined . DT NNP NNP NNP VBD IN DT NN VBN NNP IN JJR NN NN NNS VBP VBN IN NNP DT NN IN IN DT NN IN DT NN VBN . The Washington-based non-profit group also said about 4,000 trade unionists have been murdered in Colombia since the mid-1980s and that most of the incidents can be directly linked to the victims ' participation in a labor dispute . DT JJ JJ NN RB VBD IN CD NN NNS VBP VBN VBN IN NNP IN DT NNS CC IN JJS IN DT NNS MD VB RB VBN TO DT NNS POS NN IN DT NN NN . Colombian President Alvaro Uribe called the report outdated . JJ NNP NNP NNP VBD DT NN VBD . The Colombian leader met Wednesday in Washington with President Bush for talks that covered trade and the fight against illegal drug trafficking . DT JJ NN VBD NNP IN NNP IN NNP NNP IN NNS WDT VBD NN CC DT NN IN JJ NN NN . Both presidents said they hoped soon to finalize remaining details of a free trade agreement between their countries so Mr. Bush can submit it to Congress . DT NNS VBD PRP VBD RB TO VB VBG NNS IN DT JJ NN NN IN PRP$ NNS IN NNP NNP MD VB PRP TO NNP . They also pledged to continue working together to defeat the drug trade . PRP RB VBD TO VB VBG RB TO VB DT NN NN . U.S. military officials in Iraq say fighting in the northern city of Mosul has calmed after an intense operation Tuesday to regain police stations and government buildings taken by insurgents last week . NNP JJ NNS IN NNP VBP VBG IN DT JJ NN IN NNP VBZ VBN IN DT JJ NN NNP TO VB NN NNS CC NN NNS VBN IN NNS JJ NN . Officials Wednesday said that some pockets of resistance remain as coalition forces work to secure Iraq 's third-largest city . NNS NNP VBD IN DT NNS IN NN VBP IN NN NNS VBP TO VB NNP POS JJ NN . Earlier today , U.S. and Iraqi forces pounded insurgent positions in Fallujah , in an effort to oust the remaining fighters more than a week after the launch of an offensive there . RBR NN , NNP CC JJ NNS VBD JJ NNS IN NNP , IN DT NN TO VB DT VBG NNS RBR IN DT NN IN DT NN IN DT NN RB . Scattered attacks and car bombings have been reported today in other parts of Iraq , causing an unknown number of casualties . JJ NNS CC NN NNS VBP VBN VBN NN IN JJ NNS IN NNP , VBG DT JJ NN IN NNS . Meanwhile , family members of CARE International aid worker Margaret Hassan say it appears she has been killed by kidnappers who abducted her last month in Iraq . RB , NN NNS IN NNP NNP NN NN NNP NNP VBP PRP VBZ PRP VBZ VBN VBN IN NNS WP VBD PRP$ JJ NN IN NNP . Pope Benedict encourages priests to embrace new digital media to create deeper forms of relationship with faithful across greater distances Pope Benedict has urged Roman Catholic priests to use the Internet to spread the word of God . NNP NNP VBZ NNS TO VB JJ JJ NNS TO VB JJR NNS IN NN IN NN IN JJR NNS NNP NNP VBZ VBN NNP NNP VBZ TO VB DT NN TO VB DT NN IN NNP . In his message Saturday , the pope encouraged priests to embrace the new digital media to create deeper forms of relationship with the faithful across greater distances . IN PRP$ NN NNP , DT NN VBD NNS TO VB DT JJ JJ NNS TO VB JJR NNS IN NN IN DT NN IN JJR NNS . But the pontiff also warned that Catholic clergy should be less notable for their media skills than for their vocation . CC DT NN RB VBD IN NNP NN MD VB RBR JJ IN PRP$ NNS NNS IN IN PRP$ NN . The pope 's message comes as the church prepares for its annual World Communication Day , May 16 . DT NN POS NN VBZ IN DT NN VBZ IN PRP$ JJ NNP NNP NNP , NNP CD . The Vatican has long had a Web site in several languages . DT NNP VBZ RB VBN DT NNP NN IN JJ NNS . It has recently created a news channel on the Youtube video sharing site and a Facebook networking site Pope2You . PRP VBZ RB VBN DT NN NN IN DT NNP NN NN NN CC DT NNP VBG NN NNP . U.S. lawmakers have approved a measure to double the number of U.S. troops in Colombia to 800 . NNP NNS VBP VBN DT NN TO VB DT NN IN NNP NNS IN NNP TO CD . The government of Colombian President Alvaro Uribe welcomed the support in its fight against the drug trade and left-wing Marxist rebels . DT NN IN JJ NNP NNP NNP VBD DT NN IN PRP$ NN IN DT NN NN CC JJ JJ NNS . But human rights groups criticized the increase , saying more U.S. troops could escalate the violence in the South American country . CC JJ NNS NNS VBD DT NN , VBG JJR NNP NNS MD VB DT NN IN DT JJ JJ NN . The U.S. Congress also voted to increase the number of American civilian contractors in Colombia from 400 to 600 . DT NNP NNP RB VBD TO VB DT NN IN JJ JJ NNS IN NNP IN CD TO CD . The United States is providing $ 1.3 billion for ' Plan Colombia , ' an initiative launched by Colombia 's government to fight the illegal drug trade , protect human rights , and expand economic development . DT NNP NNPS VBZ VBG $ CD CD IN `` NNP NNP , `` DT NN VBN IN NNP POS NN TO VB DT JJ NN NN , VB JJ NNS , CC VB JJ NN . Three Pakistan cricketers accused of involvement in a match-fixing scandal are returning home . CD NNP NNS VBN IN NN IN DT JJ NN VBP VBG NN . Lawyers representing test captain Salman Butt , and bowlers Mohammad Asif and Mohammad Amir said their clients are flying back to Pakistan from Britain Friday . NNS VBG NN NN NNP NNP , CC NNS NNP NNP CC NNP NNP VBD PRP$ NNS VBP VBG RB TO NNP IN NNP NNP . A British tabloid accused the players of taking bribes to intentionally bowl illegal ' no-balls ' during a test match against England last month . DT JJ NN VBD DT NNS IN VBG NNS TO RB NN JJ `` NNS `` IN DT NN NN IN NNP JJ NN . British police questioned the players on September 3 , but so far no charges have been brought against them . JJ NN VBD DT NNS IN NNP CD , CC RB RB DT NNS VBP VBN VBN IN PRP . Cricket 's world authority , the ICC , suspended Butt , Asif and Amir last week pending its own investigation . NN POS NN NN , DT NNP , VBD NNP , NNP CC NNP JJ NN VBG PRP$ JJ NN . The three maintain they are innocent . DT CD VBP PRP VBP JJ . Lawyers said the trio has agreed to continue cooperating with British police and would return to London , if required . NNS VBD DT NN VBZ VBN TO VB VBG IN JJ NN CC MD VB TO NNP , IN VBN . The World Health Organization is warning that malaria could become resistant to new drugs unless they are used in combination with a second medicine . DT NNP NNP NNP VBZ VBG DT NN MD VB JJ TO JJ NNS IN PRP VBP VBN IN NN IN DT JJ NN . Dr. Pascal Ringwald , a medical officer with the WHO , says it is crucial that the drugs be used correctly . NNP NNP NNP , DT JJ NN IN DT NNP , VBZ PRP VBZ JJ IN DT NNS VB VBN RB . He says so far , the U.N. health agency has not discovered any resistance , but that it is monitoring the situation closely . PRP VBZ RB RB , DT NNP NN NN VBZ RB VBN DT NN , CC IN PRP VBZ VBG DT NN RB . New malaria-fighting drugs , derived from a plant known as Artemisia , have been developed in response to other anti-malaria medicines becoming ineffective as resistance developed . JJ JJ NNS , VBN IN DT NN VBN IN NNP , VBP VBN VBN IN NN TO JJ JJ NNS VBG JJ IN NN VBD . The WHO says the new Artemisian-based drugs must be used together with older malaria medication , such as mefloquine . DT NNP VBZ DT JJ JJ NNS MD VB VBN RB IN JJR NN NN , JJ IN NN . The agency estimates the mosquito-borne disease kills more than one million people every year , most of them young children in Africa . DT NN VBZ DT JJ NN VBZ JJR IN CD CD NNS DT NN , JJS IN PRP JJ NNS IN NNP . A Kurdish news agency says Turkish warplanes have bombed Kurdish rebel positions in northern Iraq . DT JJ NN NN VBZ JJ NNS VBP VBN JJ NN NNS IN JJ NNP . The Firat news agency quotes Kurdish party officials as saying Turkish jets hit the Hakurk region Wednesday near the borders of Iraq , Iran and Turkey . DT NNP NN NN VBZ JJ NN NNS IN VBG JJ NNS VBD DT NNP NN NNP IN DT NNS IN NNP , NNP CC NNP . It said there were no reports of casualties . PRP VBD EX VBD DT NNS IN NNS . A spokesman for the outlawed Kurdistan Workers ' Party , or PKK , confirmed the strike . DT NN IN DT JJ NNP NNP POS NNP , CC NNP , VBD DT NN . There was no official confirmation from the Turkish military . EX VBD DT JJ NN IN DT JJ NN . Turkey accuses the PKK of using strongholds in northern Iraq to launch attacks . NNP VBZ DT NN IN VBG NNS IN JJ NNP TO VB NNS . The military has conducted several air strikes and at least one ground incursion into Iraq against the rebels this year . DT NN VBZ VBN JJ NN NNS CC IN JJS CD NN NN IN NNP IN DT NNS DT NN . The PKK has been fighting for Kurdish autonomy in Turkey 's mainly Kurdish southeast for nearly 25 years . DT NNP VBZ VBN VBG IN NNP NN IN NNP POS RB JJ NN IN RB CD NNS . That violence has killed more than 30,000 people . DT NN VBZ VBN JJR IN CD NNS . Turkey , the United States and other nations have designated the PKK a terrorist group . NNP , DT NNP NNPS CC JJ NNS VBP VBN DT NNP DT JJ NN . Police in Brussels have clashed with several hundred demonstrators protesting President Bush 's visit to the Belgian capital . NNS IN NNP VBP VBN IN JJ CD NNS VBG NNP NNP POS NN TO DT JJ NN . Police arrested several demonstrators during the sometimes violent clashes but there are no reports of serious injuries . NNS VBN JJ NNS IN DT RB JJ NNS CC EX VBP DT NNS IN JJ NNS . Authorities used trucks to push demonstrators back from European Union headquarters , where Mr. Bush was meeting with EU leaders . NNS VBD NNS TO VB NNS RB IN NNP NNP NN , WRB NNP NNP VBD VBG IN NNP NNS . Demonstrators carried signs and chanted slogans criticizing what they called Mr. Bush 's ' warmongering ' policies , including the U.S.-led war in Iraq . NNS VBD NNS CC VBD NNS VBG WP PRP VBD NNP NNP POS `` VBG `` NNS , VBG DT JJ NN IN NNP . The French News Agency reports that rallies against Mr. Bush 's European visit also took place in several cities in Germany , where Mr. Bush is scheduled to arrive on Wednesday . DT NNP NNP NNP VBZ IN NNS IN NNP NNP POS JJ NN RB VBD NN IN JJ NNS IN NNP , WRB NNP NNP VBZ VBN TO VB IN NNP . Pakistani officials say security forces backed by helicopter gunships attacked a militant training camp near the Afghan border Tuesday , killing at least three rebels . JJ NNS VBP NN NNS VBN IN NN NNS VBD DT JJ NN NN IN DT JJ NN NNP , VBG IN JJS CD NNS . Army spokesman Major General Waheed Arshad said after receiving reports about the facility in North Waziristan , tribal elders were sent to the area to tell the organizers to shut it down . NNP NN NNP NNP NNP NNP VBD IN VBG NNS IN DT NN IN NNP NNP , JJ NNS VBD VBN TO DT NN TO VB DT NNS TO VB PRP RP . The general said fighting began when militants refused to meet the peace delegation and opened fire on them . DT NN VBD NN VBD WRB NNS VBD TO VB DT NN NN CC VBD NN IN PRP . Pakistan reached a peace deal with pro-Taleban militants in North Waziristan last year to stop attacks on security forces inside Pakistan and Afghanistan and expel foreign militants . NNP VBD DT NN NN IN JJ NNS IN NNP NNP JJ NN TO VB NNS IN NN NNS IN NNP CC NNP CC VB JJ NNS . Local tribal leaders are responsible for overseeing the deal 's implementation . JJ JJ NNS VBP JJ IN VBG DT NN POS NN . British police are questioning five people detained under anti-terrorism laws after police found a number of weapons in their possession . JJ NNS VBP VBG CD NNS VBN IN NN NNS IN NN VBD DT NN IN NNS IN PRP$ NN . Authorities say the detentions of the three men and two women follow a raid Friday on a home in the southwestern British city of Plymouth . NNS VBP DT NNS IN DT CD NNS CC CD NNS VBP DT NN NNP IN DT NN IN DT JJ JJ NN IN NNP . Officers confiscated a number of weapons , suspected imitation weapons , other suspicious devices and materials related to what authorities described as ' political ideology . ' NNS VBD DT NN IN NNS , JJ NN NNS , JJ JJ NNS CC NNS VBN TO WP NNS VBD IN `` JJ NN . `` But officials say the investigation is not linked to any religious group . CC NNS VBP DT NN VBZ RB VBN TO DT JJ NN . Authorities identified the five as British nationals and said three of them face drug charges . NNS VBD DT CD IN JJ NNS CC VBD CD IN PRP VBP NN NNS . News media reports say authorities believe the five were planning to take part in protests in London during the Group of 20 economic summit in the British capital Thursday . NNP NNS NNS VBP NNS VBP DT CD VBD VBG TO VB NN IN NNS IN NNP IN DT NNP IN CD JJ NN IN DT JJ NN NNP . Security is reported extremely tight in the city with thousands of officers taking part . NNP VBZ VBN RB JJ IN DT NN IN NNS IN NNS VBG NN . Witnesses say Syrian security forces have clashed with gunmen thought to be Islamist militants in the northwestern city of Aleppo . NNS VBP JJ NN NNS VBP VBN IN NNS VBN TO VB JJ NNS IN DT JJ NN IN NNP . The Associated Press quotes residents as saying the clashes occurred Sunday on a road leading to the airport in the city . DT NNP NNP VBZ NNS IN VBG DT NNS VBD NNP IN DT NN VBG TO DT NN IN DT NN . Al Jazeera television said as many as three gunmen died when they blew up their car after being surrounded by police . NNP NNP NN VBD RB JJ IN CD NNS VBD WRB PRP VBD RP PRP$ NN IN VBG VBN IN NNS . There were no reports of further casualties . EX VBD DT NNS IN JJ NNS . There has been no official confirmation of the clash from the Damascus government . EX VBZ VBN DT JJ NN IN DT NN IN DT NNP NN . Indonesia 's communications minister says local broadcasters will soon be banned from airing live news provided by foreign broadcasters , such as the Voice of America and the British Broadcasting Corporation . NNP POS NNS NN VBZ JJ NNS MD RB VB VBN IN VBG JJ NN VBN IN JJ NNS , JJ IN DT NNP IN NNP CC DT NNP NNP NNP . Communications and information minister Sofyan Djalil said Monday the ban will take effect February 5 when new media regulations are implemented . NNP CC NN NN NNP NNP VBD NNP DT NN MD VB NN NNP CD WRB JJ NNS NNS VBP VBN . Under the regulations , foreign news and music broadcasts must be edited locally . IN DT NNS , JJ NN CC NN NNS MD VB VBN RB . Indonesian officials say that will ensure that the content meets community standards . JJ NNS VBP WDT MD VB IN DT NN VBZ NN NNS . It remains unclear what the standards will be , but last week , Sofyan told a VOA correspondent the rules may be ambiguous . PRP VBZ JJ WP DT NNS MD VB , CC JJ NN , NNP VBD DT NNP NN DT NNS MD VB JJ . The new regulations were approved in November , but after an outcry by media companies and lawmakers , the government and parliament postponed implementing them . DT JJ NNS VBD VBN IN NNP , CC IN DT NN IN NNS NNS CC NNS , DT NN CC NN VBD VBG PRP . Discussions continue in parliament , but it is unclear how long the talks will go on , or what effect they may have on the media regulations . NNS VBP IN NN , CC PRP VBZ JJ WRB RB DT NNS MD VB IN , CC WP NN PRP MD VB IN DT NNS NNS . Iraqi authorities say at least eight Iraqi prison guards and detainees have been killed in a shootout at a high-security jail in Baghdad . JJ NNS VBP IN JJS CD JJ NN NNS CC NNS VBP VBN VBN IN DT NN IN DT JJ NN IN NNP . Authorities say a prisoner attempting a jail break grabbed an assault rifle from a guard and opened fire . NNS VBP DT NN VBG DT NN NN VBD DT NN NN IN DT NN CC VBD NN . A U.S. soldier was one of at least four people wounded . DT NNP NN VBD CD IN IN JJS CD NNS VBN . The prison is said to hold several hundred detainees including some foreigners held as suspected terrorists . DT NN VBZ VBN TO VB JJ CD NNS VBG DT NNS VBN IN JJ NNS . Meanwhile , demonstrations against alleged fraud in the recent parliamentary elections are continuing in mainly Sunni Arab regions of Iraq . RB , NNS IN JJ NN IN DT JJ JJ NNS VBP VBG IN RB NNP NNP NNS IN NNP . Protesters are demanding a re-vote in some areas and an international probe into hundreds of ballot complaints . NNS VBP VBG DT NN IN DT NNS CC DT JJ NN IN NNS IN NN NNS . Initial vote results show that Shi'ite candidates won 130 seats in the 275-seat parliament . JJ NN NNS VBP IN NNP NNS VBD CD NNS IN DT JJ NN . Final results are expected next month . JJ NNS VBP VBN JJ NN . U.S. Secretary of State Condoleezza Rice has met the editors and the son of slain Russian journalist Anna Politkovskaya . NNP NNP IN NNP NNP NNP VBZ VBN DT NNS CC DT NN IN NN JJ NN NNP NNP . U.S. officials say the meeting took place at Rice 's hotel in Moscow , where she arrived Saturday for talks with Russian officials . NNP NNS VBP DT NN VBD NN IN NNP POS NN IN NNP , WRB PRP VBD NNP IN NNS IN JJ NNS . The meeting included editors from Novaya Gazeta and Politkovskaya 's 28-year-old son . DT NN VBD NNS IN NNP NNP CC NNP POS JJ NN . Before arriving in the Russian capital , Rice told reporters that the fate of journalists in Russia is a major concern for the United States . IN VBG IN DT JJ NN , NNP VBD NNS IN DT NN IN NNS IN NNP VBZ DT JJ NN IN DT NNP NNPS . Politkovskaya was shot dead in the elevator of her Moscow apartment building October seventh . NNP VBD VBN RB IN DT NN IN PRP$ NNP NN NN NNP JJ . Investigators say her death was likely related to her reporting on human rights abuses by the Russian military in Chechnya . NNS VBP PRP$ NN VBD JJ VBN TO PRP$ NN IN JJ NNS NNS IN DT JJ NN IN NNP . The Sri Lankan military says suspected Tamil Tiger rebels have launched a series of attacks against security forces in the eastern part of the country , killing four people and wounding at least 19 others . DT NNP NNP NN VBZ VBN NNP NNP NNS VBP VBN DT NN IN NNS IN NN NNS IN DT JJ NN IN DT NN , VBG CD NNS CC VBG IN JJS CD NNS . Officials say the attacks occurred Thursday in the cities of Batticaloa and Trincomalee . NNS VBP DT NNS VBD NNP IN DT NNS IN NNP CC NNP . The attacks came shortly after the government in Colombo extended the state of emergency throughout the country for another month , despite protests by minority Tamil legislators . DT NNS VBD RB IN DT NN IN NNP VBD DT NN IN NN IN DT NN IN DT NN , IN NNS IN NN NN NNS . Parliament has been extending the state of emergency by one month at a time since August , following the assassination of Foreign Minister Lakshman Kadirgamar . NNP VBZ VBN VBG DT NN IN NN IN CD NN IN DT NN IN NNP , VBG DT NN IN NNP NNP NNP NNP . The government accuses Tamil rebels of carrying out the killing . DT NN VBZ NNP NNS IN VBG RP DT NN . But they deny the charge . CC PRP VBP DT NN . Israeli warplanes have carried out air strikes in the Gaza Strip , after two Israeli soldiers were wounded Tuesday in a mortar bomb attack by Palestinian militants . JJ NNS VBP VBN RP NN NNS IN DT NNP NNP , IN CD JJ NNS VBD VBN NNP IN DT NN NN NN IN JJ NNS . VOA Jerusalem Correspondent Luis Ramirez talks about the raid : NNP NNP NNP NNP NNP NNS IN DT NN : Local sources say the air strikes targeted smuggling tunnels in southern Gaza and a site near the town of Khan Younis close to the Egyptian border . JJ NNS VBP DT NN VBZ JJ NN NNS IN JJ NNP CC DT NN IN DT NN IN NNP NNP RB TO DT JJ NN . There were no immediate reports of casualties . EX VBD DT JJ NNS IN NNS . Palestinians use tunnels under the Egypt-Gaza border to sneak weapons and goods into the Palestinian enclave . NNS VBP NNS IN DT NNP NN TO VB NNS CC NNS IN DT JJ NN . On Monday , Israeli troops killed a Palestinian militant in the Gaza Strip near the Israeli border . IN NNP , JJ NNS VBD DT JJ NN IN DT NNP NNP IN DT JJ NN . The Israeli military said the militant was killed when troops opened fire on Palestinians trying to plant an explosive device close to the border . DT JJ NN VBD DT NN VBD VBN WRB NNS VBD NN IN NNS VBG TO VB DT JJ NN NN TO DT NN . Former U.S. President Bill Clinton will lead U.N. efforts to promote reconstruction in South Asian countries hit by December 's tsunami , but will not play a role in ending conflicts in Indonesia and Sri Lanka . JJ NNP NNP NNP NNP MD VB NNP NNS TO VB NN IN NNP NNP NNS VBN IN NNP POS NN , CC MD RB VB DT NN IN VBG NNS IN NNP CC NNP NNP . On Wednesday , U.N. spokesman Fred Eckhard said he misunderstood Mr. Clinton 's mandate when he told reporters earlier the former president would also try to make progress in resolving conflicts in those nations . IN NNP , NNP NN NNP NNP VBD PRP VBD NNP NNP POS NN WRB PRP VBD NNS RB DT JJ NN MD RB VB TO VB NN IN VBG NNS IN DT NNS . Mr. Eckhard said Mr. Clinton will focus on maintaining the world 's interest in the vital recovery and reconstruction efforts following the devastating tsunami . NNP NNP VBD NNP NNP MD VB IN VBG DT NN POS NN IN DT JJ NN CC NN NNS VBG DT JJ NN . Mr. Clinton said in a statement he is looking forward to taking up the post once he returns from a trip to the region later this month with former president George H.W. Bush . NNP NNP VBD IN DT NN PRP VBZ VBG RB TO VBG RP DT NN RB PRP VBZ IN DT NN TO DT NN RB DT NN IN JJ NN NNP NNP NNP . Former women 's world number-one tennis player Martina Hingis of Switzerland will play in her first professional tournament in more than two years in Thailand next month . JJ NNS POS NN JJ NN NN NNP NNP IN NNP MD VB IN PRP$ JJ JJ NN IN JJR IN CD NNS IN NNP JJ NN . Hingis has agreed to play the Volvo Women 's Open in Pattaya . NNP VBZ VBN TO VB DT NNP NNP POS NNP IN NNP . She says she will use the tournament to raise money for Thai charities that help women and children who have suffered from abuse , homelessness and illness . PRP VBZ PRP MD VB DT NN TO VB NN IN JJ NNS WDT VBP NNS CC NNS WP VBP VBN IN NN , NN CC NN . Hingis won 76 singles and doubles titles during her career , including five Grand Slam singles crowns . NNP VBD CD NN CC NN NNS IN PRP$ NN , VBG CD NNP NNP VBZ NNS . She retired at age 22 in 2002 due to ankle problems . PRP VBD IN NN CD IN CD JJ TO JJ NNS . The U.S. Senate has approved legislation allocating up to $ 4 billion to fight bird flu by stocking up on anti-viral drugs . DT NNP NNP VBZ VBN NN VBG RP TO $ CD CD TO VB NN NN IN VBG RP IN JJ NNS . The Senate measure passed Thursday also commits money to increase global surveillance of the disease . DT NNP NN VBN NNP RB VBZ NN TO VB JJ NN IN DT NN . The legislation , passed as an amendment to an unrelated military spending bill , now goes to the House of Representatives , where it faces an uncertain future . DT NN , VBN IN DT NN TO DT JJ JJ NN NN , RB VBZ TO DT NNP IN NNP , WRB PRP VBZ DT JJ NN . Supporters of the measure say the time to act is now , before an outbreak occurs . NNS IN DT NN VBP DT NN TO VB VBZ RB , IN DT NN VBZ . U.N officials warn an avian flu pandemic could kill as many as five million people worldwide , and have urged the international community to take an aggressive stand against the disease . NNP NNS VBP DT JJ NN NN MD VB RB JJ IN CD CD NNS JJ , CC VBP VBN DT JJ NN TO VB DT JJ NN IN DT NN . Military officials in Russia say six Chechen rebels have been killed in a clash with Russian commandos south of the provincial capital , Grozny . JJ NNS IN NNP VBP CD JJ NNS VBP VBN VBN IN DT NN IN JJ NNS RB IN DT JJ NN , NNP . A military spokesman said Monday Russian forces on an overnight mission Sunday in the North Caucasus region ambushed the guerrillas near two villages , Starye Atagi and Novye Atagi . DT JJ NN VBD NNP JJ NNS IN DT JJ NN NNP IN DT NNP NNP NN VBD DT NNS IN CD NNS , NNP NNP CC NNP NNP . A spokesman for the Chechen rebels denies the clash took place and accuses the Russian military of spreading disinformation to discredit a cease-fire called by rebel leader Aslan Maskhadov . DT NN IN DT JJ NNS VBZ DT NN VBD NN CC VBZ DT JJ NN IN VBG NN TO VB DT NN VBN IN JJ NN NNP NNP . Russian officials have consistently refused to hold any talks with Mr. Maskhadov , whom they call a terrorist and accuse of attacking civilians . JJ NNS VBP RB VBN TO VB DT NNS IN NNP NNP , WP PRP VBP DT JJ CC VBP IN VBG NNS . Russian forces have been battling Chechen insurgents for much of the past decade . JJ NNS VBP VBN VBG JJ NNS IN NN IN DT JJ NN . U.S. congressional leaders are close to finishing work on a compromise budget bill that includes money for the U.S.-led war in Iraq , without a deadline to withdraw the troops . NNP JJ NNS VBP RB TO VBG NN IN DT NN NN NN WDT VBZ NN IN DT JJ NN IN NNP , IN DT NN TO VB DT NNS . The $ 500 billion spending package would include at least $ 70 billion to fund military operations in Iraq and Afghanistan , while providing $ 11 billion more than what President Bush requested for domestic programs favored by Democratic Party representatives . DT $ CD CD NN NN MD VB IN JJS $ CD CD TO VB JJ NNS IN NNP CC NNP , IN VBG $ CD CD JJR IN WP NNP NNP VBD IN JJ NNS VBN IN NNP NNP NNS . The agreement on the Iraq war funding represents the latest failed attempt by many congressional Democrats to impose a timeline that would bring U.S. troops out of Iraq . DT NN IN DT NNP NN NN VBZ DT JJS VBN NN IN JJ JJ NNS TO VB DT NN WDT MD VB NNP NNS IN IN NNP . President Bush has adamantly rejected any timelines , and lawmakers in his Republican Party have firmly backed his efforts . NNP NNP VBZ RB VBN DT NNS , CC NNS IN PRP$ NNP NNP VBP RB VBN PRP$ NNS . The measure is expected come to a vote in the House of Representatives early next week . DT NN VBZ VBN VB TO DT NN IN DT NNP IN NNPS RB JJ NN . Afghan Muslim clerics and tribal elders have urged U.S. authorities to quickly investigate allegations that U.S. interrogators desecrated the Muslim holy book . JJ NNP NNS CC JJ NNS VBP VBN NNP NNS TO RB VB NNS IN NNP NNS VBD DT NNP JJ NN . The clerics and tribal elders gathered Sunday in Faizabad , the capital of Badakhshan province , to pass a resolution demanding a reaction from U.S. authorities within three days . DT NNS CC JJ NNS VBD NNP IN NNP , DT NN IN NNP NN , TO VB DT NN VBG DT NN IN NNP NNS IN CD NNS . Their call came after four days of deadly anti-American protests following an unconfirmed report in a U.S. magazine that interrogators at Guantanamo military prison allegedly desecrated the Koran . PRP$ NN VBD IN CD NNS IN JJ JJ NNS VBG DT JJ NN IN DT NNP NN WDT VBZ IN NNP JJ NN RB VBD DT NNP . The Bangladeshi government also condemned the alleged abuses urging Washington to bring those responsible to justice . DT JJ NN RB VBD DT JJ NNS VBG NNP TO VB DT JJ TO NN . A foreign ministry statement said ' the incident has hurt the sentiments of Muslims all over the world not least in Bangladesh . ' DT JJ NN NN VBD `` DT NN VBZ VBN DT NNS IN NNPS DT IN DT NN RB JJS IN NNP . `` U.S. officials have promised an open investigation into the allegations contained in the Newsweek magazine article , but say that so far they have found nothing to confirm the report . NNP NNS VBP VBN DT JJ NN IN DT NNS VBN IN DT NNP NN NN , CC VBP IN RB RB PRP VBP VBN DT TO VB DT NN . An avalanche in a mountainous area of northern Pakistan has killed 25 people who were digging for precious stones . DT NN IN DT JJ NN IN JJ NNP VBZ VBN CD NNS WP VBD VBG IN JJ NNS . Officials say the incident happened Thursday in the remote Kohistan region , in Pakistan 's Northwest Frontier province . NNS VBP DT NN VBD NNP IN DT JJ NNP NN , IN NNP POS NNP NNP NN . Authorities say the victims were exploring mines and searching for precious stones when they were buried by the avalanche . NNS VBP DT NNS VBD VBG NNS CC VBG IN JJ NNS WRB PRP VBD VBN IN DT NN . Rescuers rushed to the site but were only able to save one person . NNS VBD TO DT NN CC VBD RB JJ TO VB CD NN . Kohistan is about 350 kilometers northeast of Peshawar , the provincial capital . NNP VBZ IN CD NNS RB IN NNP , DT JJ NN . Three Romanian journalists kidnapped in Iraq nearly two months ago have returned to Bucharest , one day after their release . CD JJ NNS VBN IN NNP RB CD NNS RB VBP VBN TO NNP , CD NN IN PRP$ NN . A military plane carrying the journalists , reporter Marie-Jeanne Ion , cameraman Sorin Miscoci , and newspaper reporter Eduard Ovidiu Ohanesian , returned home Monday from Baghdad . DT JJ NN VBG DT NNS , NN NNP NNP , NN NNP NNP , CC NN NN NNP NNP NNP , VBD NN NNP IN NNP . Iraqi insurgents kidnapped the journalists , along with their Iraqi-American translator Mohammed Monaf , in Baghdad on March 28 . JJ NNS VBD DT NNS , IN IN PRP$ JJ NN NNP NNP , IN NNP IN NNP CD . The militants threatened , in a videotape , to kill the hostages by April 27 unless Romania withdrew its troops from Iraq . DT NNS VBD , IN DT NN , TO VB DT NNS IN NNP CD IN NNP VBD PRP$ NNS IN NNP . That deadline passed without word on their fate . DT NN VBD IN NN IN PRP$ NN . Romanian President Traian Basescu said that the continuing violence in Iraq had made it increasingly difficult to maintain contact with the kidnappers . JJ NNP NNP NNP VBD IN DT VBG NN IN NNP VBD VBN PRP RB JJ TO VB NN IN DT NNS . The incident sparked protests in Romania , with demonstrators taking to the streets of Bucharest , calling for the withdrawal of Romanian troops from Iraq . DT NN VBD NNS IN NNP , IN NNS VBG TO DT NNS IN NNP , VBG IN DT NN IN JJ NNS IN NNP . Bosnian police have arrested a former Bosnian Serb police officer suspected of genocide in the 1995 massacre of 8,000 Muslim men and boys . JJ NNS VBP VBN DT JJ JJ JJ NN NN VBN IN NN IN DT CD NN IN CD NNP NNS CC NNS . Authorities Monday said Dragan Crnogorac has been arrested by the State Investigation and Protection agency in the northern town of Banja Luka . NNS NNP VBD NNP NNP VBZ VBN VBN IN DT NNP NNP CC NNP NN IN DT JJ NN IN NNP NNP . The 38-year-old is accused of personally taking part in the executions of Bosnian Muslim men and boys in Srebrenica , in what is considered the worst atrocity in Europe since World War Two . DT JJ VBZ VBN IN RB VBG NN IN DT NNS IN JJ NNP NNS CC NNS IN NNP , IN WP VBZ VBN DT JJS NN IN NNP IN NNP NNP CD . Prosecutors say Crnogorac was a member of Bosnian Serb forces that captured the U.N.-protected Srebrenica enclave on July 11 , 1995 , at the end of Bosnia 's three-year war . NNS VBP NNP VBD DT NN IN JJ JJ NNS WDT VBD DT JJ NNP NN IN NNP CD , CD , IN DT NN IN NNP POS JJ NN . The Bosnian war crimes court has put dozens of Bosnian Serbs on trial for complicity in the Srebrenica killings . DT JJ NN NNS NN VBZ VBN NNS IN JJ NNS IN NN IN NN IN DT NNP NNS . The head of the Organization of Petroleum Exporting Countries ( OPEC ) has called on the United States to release some of its oil reserves to help reduce world oil prices . DT NN IN DT NNP IN NNP NNP NNPS LRB NNP RRB VBZ VBN IN DT NNP NNPS TO VB DT IN PRP$ NN NNS TO VB VB NN NN NNS . Purnomo Yusgiantoro , who is also Indonesia 's energy minister , did not say whether the United States has responded to the request . NNP NNP , WP VBZ RB NNP POS NN NN , VBD RB VB IN DT NNP NNPS VBZ VBN TO DT NN . The United States has hundreds of millions of barrels of oil in its strategic petroleum reserve . DT NNP NNPS VBZ NNS IN NNS IN NNS IN NN IN PRP$ JJ NN NN . The reserve has been tapped on several , exceptional occasions . DT NN VBZ VBN VBN IN JJ , JJ NNS . World oil prices have risen sharply this year , and currently stand at over $ 55 a barrel . NNP NN NNS VBP VBN RB DT NN , CC RB VBP IN IN $ CD DT NN . The top United Nations envoy to Haiti has congratulated the country on its successful holding of local , municipal and legislative elections . DT JJ NNP NNPS NN TO NNP VBZ VBN DT NN IN PRP$ JJ NN IN JJ , JJ CC JJ NNS . A U.N. statement says more than 3,00,000 voters in 25 communities voted in 69 centers and 770 polling stations to choose their representatives . DT NNP NN VBZ JJR IN CD NNS IN CD NNS VBD IN CD NNS CC CD NN NNS TO VB PRP$ NNS . The statement says all polling stations opened on time with the help of the U.N. Stabilization Mission in Haiti , known as MINUSTAH , and the Haitian national police . DT NN VBZ DT NN NNS VBD IN NN IN DT NN IN DT NNP NNP NNP IN NNP , VBN IN NNP , CC DT JJ JJ NN . Last month , the U.N. said it had mobilized nearly 600 members of its staff in Haiti to support the country 's electoral process . JJ NN , DT NNP VBD PRP VBD VBN RB CD NNS IN PRP$ NN IN NNP TO VB DT NN POS JJ NN . The head of electoral support for the U.N. mission , Marc Plum , said the elections would show the international community that democracy is still alive in Haiti . DT NN IN JJ NN IN DT NNP NN , NNP NNP , VBD DT NNS MD VB DT JJ NN IN NN VBZ RB JJ IN NNP . Haiti is the Western Hemisphere 's poorest country and has been plagued by violence . NNP VBZ DT NNP NNP POS JJS NN CC VBZ VBN VBN IN NN . An Indian court has convicted two men , and acquitted one , on charges connected to a series of bombings 13 years ago that killed 257 people in Mumbai - formerly known as Bombay . DT JJ NN VBZ VBN CD NNS , CC VBN CD , IN NNS VBN TO DT NN IN NNS CD NNS IN DT VBD CD NNS IN NNP : RB VBN IN NNP . The court found Nasir Dhakla and Mohammed Shaikh guilty Thursday of attending conspiracy meetings and undergoing arms training in Pakistan . DT NN VBD NNP NNP CC NNP NNP JJ NNP IN VBG NN NNS CC VBG NNS NN IN NNP . But the court acquitted a third man accused of making arrangements for the bombings due to insufficient evidence . CC DT NN VBN DT JJ NN VBN IN VBG NNS IN DT NNS JJ TO JJ NN . The judge in the case says prosecutors failed to prove Mohammed Mansoor was responsible for facilitating terrorist acts . DT NN IN DT NN VBZ NNS VBD TO VB NNP NNP VBD JJ IN VBG JJ NNS . Indian authorities say the bombings were in retaliation for the destruction of a 16th century mosque , in the northern city of Ayodhya , by a Hindu mob a year earlier . JJ NNS VBP DT NNS VBD IN NN IN DT NN IN DT JJ NN NN , IN DT JJ NN IN NNP , IN DT NNP NN DT NN RBR . The mammoth trial began in 1994 , and the latest two guilty verdicts bring the number of convictions to 28 . DT JJ NN VBD IN CD , CC DT JJS CD JJ NNS VBP DT NN IN NNS TO CD . India and the United States have discussed new areas of cooperation in high-technology , less than a month after Washington lifted restrictions on nuclear technology exports to India . NNP CC DT NNP NNPS VBP VBN JJ NNS IN NN IN NN , JJR IN DT NN IN NNP VBD NNS IN JJ NN NNS TO NNP . An Indian Foreign Ministry spokesman said U.S. Undersecretary of State for Commerce Kenneth Juster and India 's Foreign Secretary Shyam Saran have identified four sectors of potential collaboration . DT JJ NNP NNP NN VBD NNP NNP IN NNP IN NNP NNP NNP CC NNP POS NNP NNP NNP NNP VBP VBN CD NNS IN JJ NN . They include biotechnology , nano-technology , advanced information technology and defense . PRP VBP NN , NN , JJ NN NN CC NN . Nano-technology is used to make micro-miniature equipment by manipulating atoms and molecules . NN VBZ VBN TO VB JJ NN IN VBG NNS CC NNS . U.S. Assistant Secretary of State for South Asia , Christina Rocca , will visit India next week to further discuss this cooperation . NNP NNP NNP IN NNP IN NNP NNP , NNP NNP , MD VB NNP JJ NN TO RB VB DT NN . The United States imposed sanctions on India and Pakistan after they conducted nuclear weapons tests in 1998 . DT NNP NNPS VBD NNS IN NNP CC NNP IN PRP VBD JJ NNS NNS IN CD . Restrictions included the sale of technology that could potentially be used for developing weapons . NNS VBD DT NN IN NN WDT MD RB VB VBN IN VBG NNS . European Union nations have summoned Iranian ambassadors to protest the detention of British Embassy staff in Tehran . NNP NNP NNS VBP VBN JJ NNS TO VB DT NN IN JJ NNP NN IN NNP . Officials say EU members agreed to the move Friday at a meeting in Brussels . NNS VBP NNP NNS VBD TO DT NN NNP IN DT NN IN NNP . EU officials are considering additional measures including visa bans on Iranian officials . NNP NNS VBP VBG JJ NNS VBG NN NNS IN JJ NNS . A top Iranian cleric Friday said that some British Embassy staff will be put on trial for allegedly playing a role in post-election demonstrations . DT JJ JJ NN NNP VBD IN DT JJ NNP NN MD VB VBN IN NN IN RB VBG DT NN IN JJ NNS . Ayatollah Ahmad Jannati said during a prayer sermon that some embassy employees confessed to instigating unrest . NNP NNP NNP VBD IN DT NN NN IN DT JJ NNS VBD TO VBG NN . Jannati is close to Iran 's supreme leader . NNP VBZ JJ TO NNP POS JJ NN . Nine British Embassy staffers were arrested in Tehran last Sunday . CD NNP NNP NNS VBD VBN IN NNP JJ NNP . Some were freed , but the British government says two are still in custody . DT VBD VBN , CC DT JJ NN VBZ CD VBP RB IN NN . Britain 's foreign office expressed concern Friday and said it is investigating reports that the employees face trial . NNP POS JJ NN VBD NN NNP CC VBD PRP VBZ VBG NNS IN DT NNS VBP NN . Turkey 's Foreign Ministry has denied that it canceled this week 's international air force exercise over opposition to Israel 's participation . NNP POS NNP NNP VBZ VBN IN PRP VBD DT NN POS JJ NN NN NN IN NN TO NNP POS NN . The ministry said Monday the cancellation was ' not political , ' and urged Israeli officials to approach the situation with common sense . DT NN VBD NNP DT NN VBD `` RB JJ , `` CC VBD JJ NNS TO VB DT NN IN JJ NN . Israeli military officials said Saturday Turkey canceled the Anatolian Eagle exercise because it wanted to exclude the Israeli air force from taking part in the drill . JJ NN NNS VBD NNP NNP VBD DT NNP NNP NN IN PRP VBD TO VB DT JJ NN NN IN VBG NN IN DT NN . The military exercise also was scheduled to include U.S. , Italian and NATO forces . DT JJ NN RB VBD VBN TO VB NNP , JJ CC NNP NNS . Turkey and Israel have had close ties , but their relations have been uneven since Israeli forces clashed with Hamas fighters in the Gaza Strip at the beginning of this year . NNP CC NNP VBP VBN JJ NNS , CC PRP$ NNS VBP VBN JJ IN JJ NNS VBN IN NNP NNS IN DT NNP NNP IN DT NN IN DT NN . Turkey 's prime minister Recep Tayyip Erdogan has criticized the Israeli campaign in the Palestinian territory . NNP POS JJ NN NNP NNP NNP VBZ VBN DT JJ NN IN DT JJ NN . Turkey has also played a role in trying to restart peace talks between Israel and Syria , but those contacts broke down last year . NNP VBZ RB VBN DT NN IN VBG TO VB NN NNS IN NNP CC NNP , CC DT NNS VBD RP JJ NN . American Thomas Schelling Israeli-American Robert Aumann have won this year 's Nobel Prize in Economics for their work on people 's decisions in business and society . NNP NNP NNP NNP NNP NNP VBP VBN DT NN POS NNP NNP IN NNP IN PRP$ NN IN NNS POS NNS IN NN CC NN . The Royal Swedish Academy of Sciences announced the one-point-three million dollar prize Monday in Stockholm . DT NNP JJ NNP IN NNP VBD DT JJ CD NN NN NNP IN NNP . Mr. Schelling and Mr. Aumann were honored for their separate work on ' game theory . ' NNP NNP CC NNP NNP VBD VBN IN PRP$ JJ NN IN `` NN NN . `` The theory attempts to explain how people make strategic and mathematically-based decisions on matters ranging from trade disputes , crime , and wars to such mundane choices as theater seats . DT NN VBZ TO VB WRB NNS VBP JJ CC JJ NNS IN NNS VBG IN NN NNS , NN , CC NNS TO JJ JJ NNS IN NN NNS . The Nobel committee says their research goes far beyond economics to global security and arms control . DT NNP NN VBZ PRP$ NN VBZ RB IN NNS TO JJ NN CC NNS NN . The final 2005 Nobel Prize to be awarded is in literature . DT JJ CD NNP NNP TO VB VBN VBZ IN NN . The date for the prize has yet to be announced . DT NN IN DT NN VBZ RB TO VB VBN . Election officials in Haiti have scheduled runoff elections for a new legislative assembly for late April . NN NNS IN NNP VBP VBN NN NNS IN DT JJ JJ NN IN JJ NNP . The election was originally scheduled for March 19 , but was delayed following widespread street protests that accompanied last month 's presidential elections . DT NN VBD RB VBN IN NNP CD , CC VBD VBN VBG JJ NN NNS WDT VBD JJ NN POS JJ NNS . Rene Preval was declared president after his supporters staged angry demonstrations accusing election officials of manipulating the vote count to deny him a first-round victory . NNP NNP VBD VBN NN IN PRP$ NNS VBD JJ NNS VBG NN NNS IN VBG DT NN NN TO VB PRP DT JJ NN . The delay in holding the legislative runoffs forced the postponement of Preval 's inauguration , which was scheduled for March 29 . DT NN IN VBG DT JJ NNS VBD DT NN IN NNP POS NN , WDT VBD VBN IN NNP CD . The Vatican has announced that U.S. President George Bush will meet with Pope Benedict in June . DT NNP VBZ VBN IN NNP NNP NNP NNP MD VB IN NNP NNP IN NNP . Vatican spokesman Federico Lombardi said Saturday that the exact date for the private meeting has not yet been set , but it could be around June 9 or June 10 . NNP NN NNP NNP VBD NNP IN DT JJ NN IN DT JJ NN VBZ RB RB VBN VBN , CC PRP MD VB IN NNP CD CC NNP CD . President Bush is to travel to Europe in June to attend a summit of the Group of Eight industrialized nations in Germany . NNP NNP VBZ TO VB TO NNP IN NNP TO VB DT NN IN DT NNP IN CD JJ NNS IN NNP . Mr. Bush visited the Vatican in 2005 for Pope John Paul 's funeral . NNP NNP VBD DT NNP IN CD IN NNP NNP NNP POS NN . Iran 's nuclear energy chief says the country has built a new generation of centrifuges , which are used to enrich uranium . NNP POS JJ NN NN VBZ DT NN VBZ VBN DT JJ NN IN NNS , WDT VBP VBN TO VB NN . Ali Akbar Salehi , the head of the Atomic Energy Organization , announced the development Tuesday . NNP NNP NNP , DT NN IN DT NNP NNP NNP , VBD DT NN NNP . Enriched uranium can be used in nuclear fuel for a power plant . VBN NN MD VB VBN IN JJ NN IN DT NN NN . But Western countries suspect Iran is using the ingredient to build a nuclear weapon . CC JJ NNS VBP NNP VBZ VBG DT NN TO VB DT JJ NN . Iran denies this . NNP VBZ DT . Iranian officials are expected to resume negotiations with world powers about their controversial nuclear program next week . JJ NNS VBP VBN TO VB NNS IN NN NNS IN PRP$ JJ JJ NN JJ NN . Kazakhstan 's Information Ministry has ordered a popular opposition newspaper to close . NNP POS NNP NNP VBZ VBN DT JJ NN NN TO VB . In ordering the closure , the ministry accused the Respublika newspaper of inciting ethnic hatred by publishing an interview with a prominent Russian politician who made disparaging remarks about Kazakhs . IN VBG DT NN , DT NN VBD DT NNP NN IN VBG JJ NN IN VBG DT NN IN DT JJ JJ NN WP VBD VBG NNS IN NNS . The paper 's deputy editor Galina Dyrdina called the closure order politically-motivated , and vowed to appeal . DT NN POS NN NN NNP NNP VBD DT NN NN JJ , CC VBD TO VB . The newspaper has been dogged by lawsuits and attacks , including a firebombing . DT NN VBZ VBN VBN IN NNS CC NNS , VBG DT NN . Government critics in Kazakhstan say the order is part of a crackdown on free media ahead of possible presidential elections in December . NN NNS IN NNP VBP DT NN VBZ NN IN DT NN IN JJ NNS RB IN JJ JJ NNS IN NNP . President Nursultan Nazarbayev has ruled the former Soviet Republic since its independence in 1991 , and is expected to run again in December . NNP NNP NNP VBZ VBN DT JJ NNP NNP IN PRP$ NN IN CD , CC VBZ VBN TO VB RB IN NNP . Afghan officials say a suicide bomber has killed seven people , and wounded nearly 30 others in an attack in southeastern Afghanistan . JJ NNS VBP DT NN NN VBZ VBN CD NNS , CC VBN RB CD NNS IN DT NN IN JJ NNP . Police say the attack happened Saturday in the town of Spin Boldak , in the southern province of Kandahar . NNS VBP DT NN VBD NNP IN DT NN IN NNP NNP , IN DT JJ NN IN NNP . Police say the bomber was riding a motorbike when he blew himself up near a busy market . NNS VBP DT NN VBD VBG DT NN WRB PRP VBD PRP RP IN DT JJ NN . Officials say he was targeting police officers in the area . NNS VBP PRP VBD VBG NN NNS IN DT NN . Two policemen were among those killed . CD NNS VBD IN DT VBN . Reuters news service says the Taleban claimed responsibility for the attack . NNP NN NN VBZ DT NNP VBD NN IN DT NN . Taleban militants have carried out numerous attacks in southern and eastern Afghanistan as part of their campaign against the government and foreign troops . NNP NNS VBP VBN RP JJ NNS IN JJ CC JJ NNP IN NN IN PRP$ NN IN DT NN CC JJ NNS . The bombing comes as Muslims celebrate the Eid-al-Fitr holiday which marks the end of the fasting month of Ramadan . DT NN VBZ IN NNPS VBP DT NNP NN WDT VBZ DT NN IN DT JJ NN IN NNP . The U.S. military says it has opened a criminal probe into the death of a relative of Iraq 's ambassador to the United Nations . DT NNP NN VBZ PRP VBZ VBN DT JJ NN IN DT NN IN DT NN IN NNP POS NN TO DT NNP NNPS . The son of Ambassador Samir Sumaidaie 's cousin was killed in June as U.S. Marines searched his home in western Iraq . DT NN IN NNP NNP NNP POS NN VBD VBN IN NNP IN NNP NNPS VBD PRP$ NN IN JJ NNP . A U.S. military statement Sunday says the top Marine commander in Iraq has referred the case to the Naval Criminal Investigative Service . DT NNP JJ NN NNP VBZ DT JJ NN NN IN NNP VBZ VBN DT NN TO DT NNP NNP NNP NNP . Mohammed Sumaidaie was killed near Haditha on June 25 . NNP NNP VBD VBN IN NNP IN NNP CD . Weeks later , the ambassador called the killing a crime and demanded a full investigation . NNS RB , DT NN VBD DT NN DT NN CC VBD DT JJ NN . Meanwhile , Iraqi Kurdish , Sunni and Shi'ite negotiators are meeting today in an 11th-hour effort to agree on a constitution ahead of a Monday night deadline . RB , JJ NNP , NNP CC NNP NNS VBP VBG NN IN DT JJ NN TO VB IN DT NN RB IN DT NNP NN NN . Negotiators have been unable to bridge differences over demands for political autonomy and the role of Islamic law in post-war Iraq . NNS VBP VBN JJ TO VB NNS IN NNS IN JJ NN CC DT NN IN JJ NN IN JJ NNP . Oil prices fell sharply Monday as the U.S. House of Representatives voted against a $ 700-billion government plan to rescue troubled U.S. financial institutions . NN NNS VBD RB NNP IN DT NNP NNP IN NNP VBD IN DT $ JJ NN NN TO VB JJ NNP JJ NNS . The price of a barrel of oil for future delivery dropped more than $ 10 to hit $ 96.26 a barrel at the close of New York trading Monday . DT NN IN DT NN IN NN IN JJ NN VBD JJR IN $ CD TO VB $ CD DT NN IN DT NN IN NNP NNP NN NNP . Traders worried that rejection of the controversial plan could hurt U.S. economic growth , and cut demand for energy . NNS VBD IN NN IN DT JJ NN MD VB NNP JJ NN , CC VBD NN IN NN . A century-old rabbi has declared Israel 's Western Wall off-limits to Jews on their holiest day of the week because he says security cameras at the holy site are desecrating the Sabbath . DT JJ NN VBZ VBN NNP POS JJ NNP NNS IN NNS IN PRP$ JJS NN IN DT NN IN PRP VBZ NN NNS IN DT JJ NN VBP VBG DT NNP . Yosef Shalom Eliashiv says that use of the closed-circuit surveillance cameras violates the Jewish practice of refraining from operating electronics on the weekly holy day . NNP NNP NNP VBZ IN NN IN DT JJ NN NNS VBZ DT JJ NN IN VBG IN VBG NNS IN DT JJ JJ NN . A rabbi overseeing religious activities at the wall says talks with Jerusalem police are under way to find a compromise . DT NN VBG JJ NNS IN DT NN VBZ NNS IN NNP NNS VBP IN NN TO VB DT NN . The 100-year-old rabbi is highly revered among ultra-Orthodox Jews . DT JJ NN VBZ RB VBN IN JJ NNS . His opinion has wide influence among them . PRP$ NN VBZ JJ NN IN PRP . The Western Wall is at the base of a compound known to Jews as the Temple Mount , which is Judaism 's holiest site . DT NNP NNP VBZ IN DT NN IN DT NN VBN TO NNPS IN DT NNP NNP , WDT VBZ NNP POS JJS NN . Muslims also consider the compound one of their holiest sites , calling it the Noble Sanctuary . NNS RB VBP DT NN CD IN PRP$ JJS NNS , VBG PRP DT NNP NNP . Iraq 's foreign minister says four Iraqi military officers have been detained in the kidnapping this week of an Iranian diplomat . NNP POS JJ NN VBZ CD JJ JJ NNS VBP VBN VBN IN DT NN DT NN IN DT JJ NN . Foreign minister Hoshyar Zebari told reporters in Baghdad Wednesday that the four men , although military officers , were apparently not linked to the government . JJ NN NNP NNP VBD NNS IN NNP NNP IN DT CD NNS , IN JJ NNS , VBD RB RB VBN TO DT NN . He did not elaborate . PRP VBD RB VB . He said the men are being questioned about who ordered the kidnapping . PRP VBD DT NNS VBP VBG VBN IN WP VBD DT NN . Gunmen in Iraqi army uniforms kidnapped the Iranian diplomat on Sunday . NNS IN JJ NN VBZ VBN DT JJ NN IN NNP . Iran has said it holds the United States responsible for the safety of the diplomat . NNP VBZ VBN PRP VBZ DT NNP NNPS JJ IN DT NN IN DT NN . An Iranian spokesman said the kidnappers are linked to Iraq 's defense ministry , which , he said , ' works under the supervision of American forces . ' DT JJ NN VBD DT NNS VBP VBN TO NNP POS NN NN , WDT , PRP VBD , `` VBZ IN DT NN IN JJ NNS . `` The U.S. has denied involvement in the incident . DT NNP VBZ VBN NN IN DT NN . U.S. forces in Iraq arrested a number of Iranians recently . NNP NNS IN NNP VBN DT NN IN NNS RB . Washington has accused Tehran of aiding Shi'ite militants involved in sectarian attacks . NNP VBZ VBN NNP IN VBG NNP NNS VBN IN JJ NNS . At least five people have been killed and six others wounded in shootings at two Pakistani military posts in a semi-autonomous tribal region bordering Afghanistan . IN JJS CD NNS VBP VBN VBN CC CD NNS VBN IN NNS IN CD JJ JJ NNS IN DT JJ JJ NN VBG NNP . Security officials say rockets hit a base near Miranshah in North Waziristan before dawn Sunday , killing at least three people , including a soldier , and wounding four . NN NNS VBP NNS VBD DT NN IN NNP IN NNP NNP IN NN NNP , VBG IN JJ CD NNS , IN DT NN , CC VBG CD . Later in the same region , Pakistani security forces fatally shot two armed men at a checkpoint and arrested two others , one of whom was wounded . RB IN DT JJ NN , JJ NN NNS RB VBD CD JJ NNS IN DT NN CC VBN CD NNS , CD IN WP VBD VBN . Pakistan 's army has been trying to clear militants from its tribal regions . NNP POS NN VBZ VBN VBG TO VB NNS IN PRP$ JJ NNS . Many of the militants operating in the border areas are al-Qaida-linked fighters who fled Afghanistan after U.S.-led forces ousted the Taleban . NN IN DT NNS VBG IN DT NN NNS VBP JJ NNS WP VBD NNP IN JJ NNS VBD DT NNP . Afghan President Hamid Karzai has rejected U.S. criticism of his anti-drug program , called international help in the fight ' half-hearted , ' and demanded greater control over U.S. military operations in his country . JJ NNP NNP NNP VBZ VBN NNP NN IN PRP$ JJ NN , VBD JJ NN IN DT NN `` JJ , `` CC VBN JJR NN IN NNP JJ NNS IN PRP$ NN . Speaking on CNN on the eve of a White House meeting Monday with President Bush , Mr. Karzai also condemned the reported deaths of two Afghan prisoners in U.S. custody . VBG IN NNP IN DT NN IN DT NNP NNP NN NNP IN NNP NNP , NNP NNP RB VBD DT JJ NNS IN CD JJ NNS IN NNP NN . He called for strict punishment for those who abuse detainees , but added the behavior of a few must not reflect on the United States as a whole . PRP VBD IN JJ NN IN DT WP VB NNS , CC VBD DT NN IN DT JJ MD RB VB IN DT NNP NNPS IN DT NN . Mr. Karzai noted that at least 30 percent of the country 's poppy fields have been destroyed and called on international community to step up its own efforts instead of blaming the Afghans . NNP NNP VBD IN IN JJS CD NN IN DT NN POS NN NNS VBP VBN VBN CC VBN IN JJ NN TO VB RP PRP$ JJ NNS IN IN VBG DT NNS . The United Nations says unidentified gunmen in Sudan 's western Darfur region have ambushed and wounded three members of an African Union team . DT NNP NNP VBZ JJ NNS IN NNP POS JJ NNP NN VBP VBN CC VBN CD NNS IN DT NNP NNP NN . A U.N. spokeswoman said Wednesday , two of those wounded were AU monitors . DT NNP NN VBD NNP , CD IN DT VBN VBD NNP NNS . The third victim was a Sudanese translator . DT JJ NN VBD DT JJ NN . The spokeswoman said one of the monitors was shot in the neck during the attack Tuesday north of the town of Nyala . DT NN VBD CD IN DT NNS VBD VBN IN DT NN IN DT NN NNP NN IN DT NN IN NNP . She said the other two were only lightly hurt and that all three are now in stable condition . PRP VBD DT JJ CD VBD RB RB VBN CC IN DT CD VBP RB IN JJ NN . Last week , a U.S. development official was shot in the face while working in Darfur . JJ NN , DT NNP NN NN VBD VBN IN DT NN IN VBG IN NNP . She survived the attack . PRP VBD DT NN . The African Union has a force of at least 2,000 personnel in Darfur , including troops and cease-fire monitors . DT NNP NNP VBZ DT NN IN IN JJS CD NNS IN NNP , VBG NNS CC NN NNS . The force has limited power to protect civilians . DT NN VBZ VBN NN TO VB NNS . Negotiations to win the freedom of 19 South Korean hostages held in Afghanistan have stalled . NNS TO VB DT NN IN CD JJ JJ NNS VBN IN NNP VBP VBN . Face to face talks between South Korean officials and Taleban militants broke down last week after the kidnappers released two female hostages in what they called a gesture of goodwill . NN TO VB NNS IN JJ JJ NNS CC NNP NNS VBD RB JJ NN IN DT NNS VBD CD JJ NNS IN WP PRP VBD DT NN IN NN . Taleban spokesmen say South Korean negotiators have asked for more time . NNP NNS VBP JJ JJ NNS VBP VBN IN JJR NN . The militants have already executed two male hostages and are threatening to kill the rest if the Afghan government does not release Taleban prisoners . DT NNS VBP RB VBN CD JJ NNS CC VBP VBG TO VB DT NN IN DT JJ NN VBZ RB VB NNP NNS . Kabul has ruled out a prisoner swap . NNP VBZ VBN RP DT NN NN . Taleban militants abducted the group of 23 Koreans more than a month ago as they traveled by bus to southern Afghanistan to do charity work on behalf of their Christian church . NNP NNS VBD DT NN IN CD NNS JJR IN DT NN RB IN PRP VBD IN NN TO JJ NNP TO VB NN NN IN NN IN PRP$ JJ NN . Muslims around the world are preparing for the start of Islam 's holy month of Ramadan . NNPS IN DT NN VBP VBG IN DT NN IN NNP POS JJ NN IN NNP . Some countries begin observances Monday . DT NNS VBP NNS NNP . The timing of the start of the holiday varies in Muslim communities and countries depending on the sighting of the new moon . DT NN IN DT NN IN DT NN NNS IN NNP NNS CC NNS VBG IN DT NN IN DT JJ NN . Ramadan , the ninth month of the Islamic calendar , marks the time 1,400 years ago when Muslims believe the words of Islam 's holy book , the Koran , were revealed to the Prophet Muhammed . NNP , DT JJ NN IN DT NNP NN , VBZ DT NN CD NNS RB WRB NNS VBP DT NNS IN NNP POS JJ NN , DT NNP , VBD VBN TO DT NNP NNP . During Ramadan , Muslims fast from sunrise to sundown - abstaining from eating , drinking , smoking and sexual relations . IN NNP , NNP RB IN NN TO VB : VBG IN NN , NN , NN CC JJ NNS . The fast is broken at sundown each day with a feast called ' iftaar . ' DT NN VBZ VBN IN NN DT NN IN DT NN VBN `` NNP . `` Pakistani officials say a clash between security forces and Taliban militants has killed at least 10 people in the northwestern Swat Valley region . JJ NNS VBP DT NN IN NN NNS CC NNP NNS VBZ VBN IN JJS CD NNS IN DT JJ NNP NNP NN . Officials say the fighting erupted when militants attacked a paramilitary convoy late Tuesday in the Kabal area , a Taliban stronghold . NNS VBP DT NN VBD WRB NNS VBD DT JJ NN JJ NNP IN DT NNP NN , DT NNP NN . They say security forces later foiled a suicide attack , destroying an explosives-laden vehicle in the same area . PRP VBP NN NNS RB VBD DT NN NN , VBG DT JJ NN IN DT JJ NN . Officials say at least five security personnel and five militants were killed in the fighting . NNS VBP IN JJS CD NN NNS CC CD NNS VBD VBN IN DT NN . Since August , Pakistan 's military has been locked in ongoing battles against Taliban and al-Qaida militants in parts of the country 's rural northwest . IN NNP , NNP POS NN VBZ VBN VBN IN JJ NNS IN NNP CC NNP NNS IN NNS IN DT NN POS JJ NN . The Pakistani government is under pressure from neighboring Afghanistan and the United States to take on militants based along the Afghan border . DT JJ NN VBZ IN NN IN VBG NNP CC DT NNP NNPS TO VB RP NNS VBN IN DT JJ NN . Several armed Palestinian factions have pledged to maintain calm during Wednesday 's Palestinian parliamentary elections . JJ JJ JJ NNS VBP VBN TO VB NN IN NNP POS JJ JJ NNS . The groups , including Hamas and Fatah-linked al-Aqsa Martyrs Brigades , say their militants will not be armed during the vote . DT NNS , VBG NNP CC NNP NNP NNP NNP , VBP PRP$ NNS MD RB VB VBN IN DT NN . Despite the pledge , a Fatah election worker was killed in the West Bank town of Nablus overnight . IN DT NN , DT NNP NN NN VBD VBN IN DT NNP NNP NN IN NNP RB . Palestinian Authority President Mahmoud Abbas called Tuesday for all Palestinians to take part in the election . JJ NNP NNP NNP NNP VBD NNP IN DT NNS TO VB NN IN DT NN . Opinion polls show almost equal support for the militant group Hamas and Mr. Abbas ' Fatah . NNP NNS VBP RB JJ NN IN DT JJ NN NNP CC NNP NNP POS NNP . Both groups have indicated they would be ready to form a coalition after the vote . DT NNS VBP VBN PRP MD VB JJ TO VB DT NN IN DT NN . A top Hamas leader also suggested his group might agree to future negotiations with Israel through a third party . DT JJ NNP NN RB VBD PRP$ NN MD VB TO JJ NNS IN NNP IN DT JJ NN . Hamas has carried out dozens of suicide bombings and remains committed to Israel 's destruction . NNP VBZ VBN RP NNS IN NN NNS CC VBZ JJ TO NNP POS NN . Israeli and U.S. officials call Hamas a terrorist organization . JJ CC NNP NNS VBP NNP DT JJ NN . Health officials in China say the number of cholera cases reported on the southern island of Hainan has increased to 51 . NN NNS IN NNP VBP DT NN IN NN NNS VBN IN DT JJ NN IN NNP VBZ VBN TO CD . China 's official Xinhua news agency reports the provincial health department saying that 29 of those affected have been treated and released from the hospital . NNP POS JJ NNP NN NN VBZ DT JJ NN NN VBG IN CD IN DT VBN VBP VBN VBN CC VBN IN DT NN . No deaths from the outbreak have been reported . DT NNS IN DT NN VBP VBN VBN . On Sunday , authorities sealed the campus of Hainan University after 70 students were hospitalized with intestinal problems . IN NNP , NNS VBD DT NN IN NNP NNP IN CD NNS VBD VBN IN JJ NNS . Health officials say the outbreak began at a village dinner party near Danzhou . NN NNS VBP DT NN VBD IN DT NN NN NN IN NNP . They have blamed heavy floods for creating conditions ripe for the disease . PRP VBP VBN JJ NNS IN VBG NNS JJ IN DT NN . Cholera is a water-borne disease , which starts with acute diarrhea and can lead to kidney failure . NNP VBZ DT JJ NN , WDT VBZ IN JJ NN CC MD VB TO NN NN . It is especially dangerous for young children . PRP VBZ RB JJ IN JJ NNS . Reed International PLC said that net income for the six months ended Oct. 1 slipped 5 % to # 89.7 million ( $ 141.9 million ) , or 16 pence a share , from # 94.8 million ( $ 149.9 million ) , or 17.3 pence a share . NNP NNP NNP VBD IN JJ NN IN DT CD NNS VBN NNP CD VBD CD NN TO $ CD CD LRB $ CD CD RRB , CC CD NN DT NN , IN $ CD CD LRB $ CD CD RRB , CC CD NN DT NN . The British paper , packaging and publishing concern , said profit from continuing lines fell 10 % to # 118 million from # 130.6 million . DT JJ NN , NN CC NN NN , VBD NN IN VBG NNS VBD CD NN TO $ CD CD IN $ CD CD . While there were no one-time gains or losses in the latest period , there was a one-time gain of # 18 million in the 1988 period . IN EX VBD DT JJ NNS CC NNS IN DT JJS NN , EX VBD DT JJ NN IN $ CD CD IN DT CD NN . And while there was no profit this year from discontinued operations , last year they contributed # 34 million , before tax . CC IN EX VBD DT NN DT NN IN VBN NNS , JJ NN PRP VBD $ CD CD , IN NN . Pretax profit fell 3.7 % to # 128 million from # 133 million and was below analysts ' expectations of # 130 million to # 135 million , but shares rose 6 pence to 388 pence in early trading yesterday in London . JJ NN VBD CD NN TO $ CD CD IN $ CD CD CC VBD IN NNS POS NNS IN $ CD CD TO $ CD CD , CC NNS VBD CD NN TO CD NN IN JJ NN NN IN NNP . Reed is paying an interim dividend of 4.6 pence , up 15 % from 4 pence a year earlier . NNP VBZ VBG DT JJ NN IN CD NN , RB CD NN IN CD NN DT NN RBR . Sales fell 20 % to # 722 million . NNS VBD CD NN TO $ CD CD . Earnings were hurt by disposal of operations in its restructuring , Reed said . NNS VBD VBN IN NN IN NNS IN PRP$ NN , NNP VBD . The German economy - the fifth largest economy in the world in PPP terms and Europe 's largest - is a leading exporter of machinery , vehicles , chemicals , and household equipment and benefits from a highly skilled labor force . DT JJ NN IN DT JJ JJS NN IN DT NN IN NNP NNS CC NNP POS JJS : VBZ DT VBG NN IN NN , NNS , NNS , CC NN NN CC NNS IN DT RB JJ NN NN . Like its western European neighbors , Germany faces significant demographic challenges to sustained long-term growth . IN PRP$ JJ JJ NNS , NNP VBZ JJ JJ NNS TO JJ JJ NN . Low fertility rates and declining net immigration are increasing pressure on the country 's social welfare system and necessitate structural reforms . NNP NN NNS CC VBG JJ NN VBP VBG NN IN DT NN POS JJ NN NN CC JJ JJ NNS . The modernization and integration of the eastern German economy - where unemployment can exceed 20 % in some municipalities - continues to be a costly long-term process , with annual transfers from west to east amounting in 2008 alone to roughly $ 12 billion . DT NN CC NN IN DT JJ JJ NN : WRB NN MD VB CD NN IN DT NNS : VBZ TO VB DT JJ JJ NN , IN JJ NNS IN NN TO JJ NN IN CD RB TO RB $ CD CD . Reforms launched by the government of Chancellor Gerhard SCHROEDER ( 1998 - 2005 ) , deemed necessary to address chronically high unemployment and low average growth , contributed to strong growth in 2006 and 2007 and falling unemployment . NNS VBN IN DT NN IN NNP NNP NNP LRB CD IN CD RRB , VBD JJ TO VB RB JJ NN CC JJ JJ NN , VBD TO JJ NN IN CD CC CD CC VBG NN . These advances , as well as a government subsidized , reduced working hour scheme , help explain the relatively modest increase in unemployment during the 2008 - 9 recession - the deepest since World War II - and its decrease to 7.4 % in 2010 . DT NNS , RB RB IN DT NN JJ , JJ VBG NN NN , VBP VB DT RB JJ NN IN NN IN DT CD : CD NN IN DT JJS IN NNP NNP NNP : CC PRP$ NN TO CD NN IN CD . GDP contracted 4.7 % in 2009 but grew by 3.6 % in 2010 . NN VBD CD NN IN CD CC VBD IN CD NN IN CD . In its annual projection for 2011 , the Federal Government expects the upswing to continue , with GDP forecast to grow this year at a real rate of 2.3 % . IN PRP$ JJ NN IN CD , DT NNP NNP VBZ DT NN TO VB , IN NN NN TO VB DT NN IN DT JJ NN IN CD NN . The recovery was attributable primarily to rebounding manufacturing orders and exports - increasingly outside the Euro Zone . DT NN VBD JJ RB TO VBG NN NNS CC NNS IN RB IN DT NNP NNP . Domestic demand , however , is becoming more significant driver of Germany 's economic expansion . JJ NN , RB , VBZ VBG RBR JJ NN IN NNP POS JJ NN . Stimulus and stabilization efforts initiated in 2008 and 2009 and tax cuts introduced in Chancellor Angela MERKEL 's second term increased Germany 's budget deficit to 3.3 % in 2010 . NN CC NN NNS VBN IN CD CC CD CC NN NNS VBN IN NNP NNP NNP POS JJ NN VBD NNP POS NN NN TO CD NN IN CD . The Bundesbank expects the deficit to drop to about 2.5 % in 2011 , below the EU 's 3 % limit . DT NNP VBZ DT NN TO VB TO IN CD NN IN CD , IN DT NNP POS CD NN NN . A constitutional amendment approved in 2009 likewise limits the federal government to structural deficits of no more than 0.35 % of GDP per annum as of 2016 . DT JJ NN VBN IN CD RB VBZ DT JJ NN TO JJ NNS IN DT JJR IN CD NN IN NN IN NN IN IN CD . Two centuries of Viking raids into Europe tapered off following the adoption of Christianity by King Olav TRYGGVASON in 994 . CD NNS IN VBG NNS IN NNP VBD RP VBG DT NN IN NN IN NNP NNP NNP IN CD . Conversion of the Norwegian kingdom occurred over the next several decades . NN IN DT JJ NN VBD IN DT JJ JJ NNS . In 1397 , Norway was absorbed into a union with Denmark that lasted more than four centuries . IN CD , NNP VBD VBN IN DT NN IN NNP WDT VBD JJR IN CD NNS . In 1814 , Norwegians resisted the cession of their country to Sweden and adopted a new constitution . IN CD , NNS VBD DT NN IN PRP$ NN TO NNP CC VBD DT JJ NN . Sweden then invaded Norway but agreed to let Norway keep its constitution in return for accepting the union under a Swedish king . NNP RB VBD NNP CC VBD TO VB NNP VB PRP$ NN IN NN IN VBG DT NN IN DT JJ NN . Rising nationalism throughout the 19th century led to a 1905 referendum granting Norway independence . VBG NN IN DT JJ NN VBD TO DT CD NN VBG NNP NN . Although Norway remained neutral in World War I , it suffered heavy losses to its shipping . IN NNP VBD JJ IN NNP NNP NNP , PRP VBD JJ NNS TO PRP$ NN . Norway proclaimed its neutrality at the outset of World War II , but was nonetheless occupied for five years by Nazi Germany ( 1940 - 45 ) . NNP VBD PRP$ NN IN DT NN IN NNP NNP NNP , CC VBD RB VBN IN CD NNS IN NNP NNP LRB CD IN CD RRB . In 1949 , neutrality was abandoned and Norway became a member of NATO . IN CD , NN VBD VBN CC NNP VBD DT NN IN NNP . Discovery of oil and gas in adjacent waters in the late 1960s boosted Norway 's economic fortunes . NN IN NN CC NN IN JJ NNS IN DT JJ NNS VBD NNP POS JJ NNS . In referenda held in 1972 and 1994 , Norway rejected joining the EU . IN NN VBN IN CD CC CD , NNP VBD VBG DT NNP . Key domestic issues include immigration and integration of ethnic minorities , maintaining the country 's extensive social safety net with an aging population , and preserving economic competitiveness . NNP JJ NNS VBP NN CC NN IN JJ NNS , VBG DT NN POS JJ JJ NN NN IN DT VBG NN , CC VBG JJ NN . In 1959 , three years before independence from Belgium , the majority ethnic group , the Hutus , overthrew the ruling Tutsi king . IN CD , CD NNS IN NN IN NNP , DT NN JJ NN , DT NNP , VBD DT NN NNP NN . Over the next several years , thousands of Tutsis were killed , and some 1,50,000 driven into exile in neighboring countries . IN DT JJ JJ NNS , NNS IN NNPS VBD VBN , CC DT CD VBN IN NN IN JJ NNS . The children of these exiles later formed a rebel group , the Rwandan Patriotic Front ( RPF ) , and began a civil war in 1990 . DT NNS IN DT NNS RB VBD DT NN NN , DT JJ NNP NNP LRB NNP RRB , CC VBD DT JJ NN IN CD . The war , along with several political and economic upheavals , exacerbated ethnic tensions , culminating in April 1994 in a state-orchestrated genocide , in which Rwandans killed up to a million of their fellow citizens , including approximately three-quarters of the Tutsi population . DT NN , IN IN JJ JJ CC JJ NNS , VBD JJ NNS , VBG IN NNP CD IN DT JJ NN , IN WDT NNS VBD RP TO DT CD IN PRP$ JJ NNS , VBG RB NNS IN DT NNP NN . The genocide ended later that same year when the predominantly Tutsi RPF , operating out of Uganda and northern Rwanda , defeated the national army and Hutu militias , and established an RPF-led government of national unity . DT NN VBD RB DT JJ NN WRB DT RB NNP NNP , VBG IN IN NNP CC JJ NNP , VBD DT JJ NN CC NNP NNS , CC VBD DT JJ NN IN JJ NN . Approximately 2 million Hutu refugees - many fearing Tutsi retribution - fled to neighboring Burundi , Tanzania , Uganda , and Zaire . RB CD CD NNP NNS IN JJ VBG NNP NN : VBD TO VBG NNP , NNP , NNP , CC NNP . Since then , most of the refugees have returned to Rwanda , but several thousand remained in the neighboring Democratic Republic of the Congo ( DRC ; the former Zaire ) and formed an extremist insurgency bent on retaking Rwanda , much as the RPF tried in 1990 . IN RB , JJS IN DT NNS VBP VBN TO NNP , CC JJ CD VBD IN DT JJ NNP NNP IN DT NNP LRB NNP ; DT JJ NNP RRB CC VBD DT NN NN NN IN VBG NNP , RB IN DT NNP VBD IN CD . Rwanda held its first local elections in 1999 and its first post-genocide presidential and legislative elections in 2003 . NNP VBD PRP$ JJ JJ NNS IN CD CC PRP$ JJ JJ JJ CC JJ NNS IN CD . Rwanda in 2009 staged a joint military operation with the Congolese Army in DRC to rout out the Hutu extremist insurgency there and Kigali and Kinshasa restored diplomatic relations . NNP IN CD VBD DT JJ NN NN IN DT JJ NNP IN NNP TO NN IN DT NNP NN NN RB CC NNP CC NNP VBD JJ NNS . Rwanda also joined the Commonwealth in late 2009 . NNP RB VBD DT NN IN JJ CD . Tourism , commerce , and finance are the mainstays of Andorra 's tiny , well-to-do economy , accounting for more than three-quarters of GDP . NNP , NN , CC NN VBP DT NNS IN NNP POS JJ , JJ NN , VBG IN JJR IN NNS IN NN . An estimated 9 million tourists visit annually , attracted by Andorra 's duty-free status for some products and by its summer and winter resorts . DT VBN CD CD NNS NN RB , VBN IN NNP POS JJ NN IN DT NNS CC IN PRP$ NN CC NN NNS . Andorra 's comparative advantage eroded when the borders of neighboring France and Spain opened , providing broader availability of goods and lower tariffs . NNP POS JJ NN VBN WRB DT NNS IN JJ NNP CC NNP VBD , VBG JJR NN IN NNS CC JJR NNS . The banking sector also contributes substantially to the economy . DT NN NN RB VBZ RB TO DT NN . Agricultural production is limited - only 2 % of the land is arable - and most food has to be imported . JJ NN VBZ VBN IN RB CD NN IN DT NN VBZ JJ : CC RBS NN VBZ TO VB VBN . The principal livestock activity is sheep raising . DT JJ NN NN VBZ JJ NN . Manufacturing output and exports consist mainly of perfumes and cosmetic products , products of the printing industry , electrical machinery and equipment , clothing , tobacco products , and furniture . NNP NN CC NNS VBP RB IN NNS CC JJ NNS , NNS IN DT NN NN , JJ NN CC NN , NN , NN NNS , CC NN . Andorra is a member of the EU Customs Union and is treated as an EU member for trade in manufactured goods ( no tariffs ) and as a non-EU member for agricultural products . NNP VBZ DT NN IN DT NNP NNP NNP CC VBZ VBN IN DT NNP NN IN NN IN JJ NNS LRB DT NNS RRB CC IN DT JJ NN IN JJ NNS . A PRINCE had some Monkeys trained to dance . DT NN VBD DT NNS VBN TO VB . Being naturally great mimics of men 's actions , they showed themselves most apt pupils , and when arrayed in their rich clothes and masks , they danced as well as any of the courtiers . VBG RB JJ NNS IN NNS POS NNS , PRP VBD PRP RBS JJ NNS , CC WRB VBN IN PRP$ JJ NNS CC NNS , PRP VBD RB RB IN DT IN DT NNS . The spectacle was often repeated with great applause , till on one occasion a courtier , bent on mischief , took from his pocket a handful of nuts and threw them upon the stage . DT NN VBD RB VBN IN JJ NN , NN IN CD NN DT NN , NN IN NN , VBD IN PRP$ NN DT NN IN NNS CC VBD PRP IN DT NN . The Monkeys at the sight of the nuts forgot their dancing and became ( as indeed they were ) Monkeys instead of actors . DT NNS IN DT NN IN DT NNS VBP PRP$ NN CC VBD LRB IN RB PRP VBD RRB NNPS IN IN NNS . Pulling off their masks and tearing their robes , they fought with one another for the nuts . VBG RP PRP$ NNS CC VBG PRP$ NNS , PRP VBD IN CD DT IN DT NNS . The dancing spectacle thus came to an end amidst the laughter and ridicule of the audience . DT NN NN RB VBD TO DT NN IN DT NN CC NN IN DT NN . - ' Not everything you see is what it appears to be . ' : `` RB DT PRP VBP VBZ WP PRP VBZ TO VB . `` A HUNTSMAN , returning with his dogs from the field , fell in by chance with a Fisherman who was bringing home a basket well laden with fish . DT NN , VBG IN PRP$ NNS IN DT NN , VBD IN IN NN IN DT NN WP VBD VBG NN DT NN RB VBN IN NN . The Huntsman wished to have the fish , and their owner experienced an equal longing for the contents of the game-bag . DT NN VBD TO VB DT NN , CC PRP$ NN VBD DT JJ NN IN DT NNS IN DT NN . They quickly agreed to exchange the produce of their day 's sport . PRP RB VBD TO VB DT NN IN PRP$ NN POS NN . Each was so well pleased with his bargain that they made for some time the same exchange day after day . DT VBD RB RB VBN IN PRP$ NN IN PRP VBD IN DT NN DT JJ NN NN IN NN . Finally a neighbor said to them , ' If you go on in this way , you will soon destroy by frequent use the pleasure of your exchange , and each will again wish to retain the fruits of his own sport . ' RB DT NN VBD TO PRP , `` IN PRP VBP IN IN DT NN , PRP MD RB VB IN JJ NN DT NN IN PRP$ NN , CC DT MD RB VB TO VB DT NNS IN PRP$ JJ NN . `` Abstain and enjoy . VB CC VB . A THIEF who had brought a suit against his accomplices to recover his share of the plunder taken from an Honest Man , demanded the Honest Man 's attendance at the trial to testify to his loss . DT NN WP VBD VBN DT NN IN PRP$ NNS TO VB PRP$ NN IN DT NN VBN IN DT NNP NN , VBD DT NNP NNP POS NN IN DT NN TO VB TO PRP$ NN . But the Honest Man explained that as he was merely the agent of a company of other honest men it was none of his affair ; and when the officers came to serve him with a subpoena he hid himself behind his back and wiled away the dragging hours of retirement and inaction by picking his own pockets . CC DT JJ NN VBD IN IN PRP VBD RB DT NN IN DT NN IN JJ JJ NNS PRP VBD NN IN PRP$ NN ; CC WRB DT NNS VBD TO VB PRP IN DT NN PRP VBD PRP IN PRP$ NN CC VBD RP DT VBG NNS IN NN CC NN IN VBG PRP$ JJ NNS . One day after Senator Barack Obama picked up the endorsement of a key Democrat , U.S. media reports say Obama has gained as many as eight delegates . CD NN IN NNP NNP NNP VBD RP DT NN IN DT JJ NNP , NNP NNS NNS VBP NNP VBZ VBN RB JJ IN CD NNS . The reports conflict on how many moved from Senator John Edwards , who endorsed Obama May 14 . DT NNS VBP IN WRB JJ VBD IN NNP NNP NNP , WP VBD NNP NNP CD . On Thursday , the Democratic Party frontrunner lashed out at the White House , following comments by President Bush in Israel . IN NNP , DT NNP NNP NN VBD RP IN DT NNP NNP , VBG NNS IN NNP NNP IN NNP . VOA 's Robert Raffaele has more . NNP POS NNP NNP VBZ RBR . Tension has flared on the border between Pakistan and Afghanistan after the two sides exchanged artillery and machine-gun fire . NNP VBZ VBN IN DT NN IN NNP CC NNP IN DT CD NNS VBD NN CC JJ NN . There were no confirmed reports of casualties in the clash that took place late Monday in the North Waziristan tribal region . EX VBD DT VBN NNS IN NNS IN DT NN WDT VBD NN JJ NNP IN DT NNP NNP JJ NN . The clash came a day after mortar rounds fired from the Afghan side of the border killed a Pakistani soldier and wounded three others in the same mountainous border area . DT NN VBD DT NN IN NN NNS VBD IN DT JJ NN IN DT NN VBD DT JJ NN CC VBD CD NNS IN DT JJ JJ NN NN . Pakistani military officials say they are still unclear about who was responsible for the firing from the Afghan side of the border . JJ JJ NNS VBP PRP VBP RB JJ IN WP VBD JJ IN DT NN IN DT JJ NN IN DT NN . On Monday , a Pakistani spokesman said he is certain the shelling did not come from American positions , but is asking for a U.S. investigation because coalition forces are responsible for security along the Afghan border . IN NNP , DT JJ NN VBD PRP VBZ JJ DT NN VBD RB VB IN JJ NNS , CC VBZ VBG IN DT NNP NN IN NN NNS VBP JJ IN NN IN DT JJ NN . The United States and Britain have temporarily closed their diplomatic offices in Lagos , Nigeria , citing a security issue . DT NNP NNPS CC NNP VBP RB VBN PRP$ JJ NNS IN NNP , NNP , VBG DT NN NN . A public affairs officer , Claudia Annyaso , at the U.S. Embassy in Abuja told VOA Friday that the U.S. consulate in Lagos has been close because of an security issue , which was being addressed by U.S. and Nigerian officials . DT JJ NNS NN , NNP NNP , IN DT NNP NNP IN NNP VBD NNP NNP IN DT NNP NN IN NNP VBZ VBN RB IN IN DT NN NN , WDT VBD VBG VBN IN NNP CC JJ NNS . The officer would not speculate on when the consulate would reopen , and had no further information on the security situation . DT NN MD RB VB IN WRB DT NN MD VB , CC VBD DT JJ NN IN DT NN NN . British officials say they also have closed their High Commission offices in Lagos . JJ NNS VBP PRP RB VBP VBN PRP$ NNP NNP NNS IN NNP . In the past , al-Qaida leader Osama Bin Laden has cited Nigeria as a candidate for what he called ' liberation . ' IN DT NN , NNP NN NNP NNP NNP VBZ VBN NNP IN DT NN IN WP PRP VBD `` NN . `` Nigeria is a major petroleum producer and Africa 's most populous nation . NNP VBZ DT JJ NN NN CC NNP POS JJS JJ NN . Musician Ted Onulak is passionate about his music . NN NNP NNP VBZ JJ IN PRP$ NN . His playing and singing style are deeply rooted in the blues , and he lists such jazz greats as Charlie Parker and John Lee Hooker as his musical influences . PRP$ NN CC NN NN VBP RB VBN IN DT NNS , CC PRP VBZ JJ NN NNS IN NNP NNP CC NNP NNP NNP IN PRP$ JJ NNS . But his current career only came about when fate intervened in his life . CC PRP$ JJ NN RB VBD IN WRB NN VBD IN PRP$ NN . VOA 's Tetiana Koprowicz recently caught up with him and has more on how this former diplomat turned his loss of eyesight into inspiration . NNP POS NNP NNP RB VBD RP IN PRP CC VBZ RBR IN WRB DT JJ NN VBD PRP$ NN IN NN IN NN . Jim Bertel narrates . NNP NNP VBZ . In Bangladesh , the death toll from flooding and mudslides unleashed by monsoon rains reached nearly 100 on Monday . IN NNP , DT NN NN IN NN CC NNS VBN IN NN NNS VBD RB CD IN NNP . Bangladeshi officials say worst hit was the southeastern port city of Chittagong , where 84 people died after many hillside homes were swept away or collapsed under tons of mud . JJ NNS VBP JJS NN VBD DT JJ JJ NN IN NNP , WRB CD NNS VBD IN JJ JJ NNS VBD VBN RB CC VBN IN NNS IN NN . Telephone lines to the rest of Bangladesh are down , and shops and schools in Chittagong are closed . NNP NNS TO DT NN IN NNP VBP RB , CC NNS CC NNS IN NNP VBP VBN . Another 15 people were reported killed in other parts of the country by thunderstorms and lightning . DT CD NNS VBD VBN VBN IN JJ NNS IN DT NN IN NNS CC NN . Many people are missing , and the death toll is expected to rise as rescue workers search through rubble . JJ NNS VBP VBG , CC DT NN NN VBZ VBN TO VB IN NN NNS NN IN NN . Rescue efforts are being hampered by damaged roads and flooding . NN NNS VBP VBG VBN IN JJ NNS CC NN . June marks the beginning of the annual monsoon season in South Asia which lasts until mid-September . NNP VBZ DT NN IN DT JJ NN NN IN NNP NNP WDT VBZ IN NN . Iraqi officials say two suicide bombers killed at least four people and wounded 17 in an attack outside a Shi'ite mosque in the northwestern city of Tal Afar . JJ NNS VBP CD NN NNS VBD IN JJS CD NNS CC VBD CD IN DT NN IN DT NNP NN IN DT JJ NN IN NNP NNP . Police say security forces fired at the bombers , who still managed to blow themselves up during prayer services Friday at the mosque . NNS VBP NN NNS VBD IN DT NNS , WP RB VBD TO VB PRP RP IN NN NNS NNP IN DT NN . In other news , the U.S. military says troops detained two suspected al-Qaida in Iraq fighters allegedly linked to a fatal roadside bombing on January 29 . IN JJ NN , DT NNP NN VBZ NNS VBD CD JJ NNP IN NNP NNS RB VBN TO DT JJ NN VBG IN NNP CD . A military statement says one of the suspects was the ' number one high value ' target of the U.S. brigade that captured him . DT JJ NN VBZ CD IN DT NNS VBD DT `` NN CD JJ NN `` NN IN DT NNP NN WDT VBD PRP . The statement says five other al-Qaida members suspected of facilitating roadside bombings in Taji Qada , northwest of Baghdad , were also detained . DT NN VBZ CD JJ NNP NNS VBN IN VBG NN NNS IN NNP NNP , NN IN NNP , VBD RB VBN . U.S. military officials in Iraq say at least 21 Iraqis have been killed in three attacks north of Baghdad . NNP JJ NNS IN NNP VBP IN JJS CD NNS VBP VBN VBN IN CD NNS RB IN NNP . In the largest attack , authorities say gunmen in two vehicles opened fire on buses taking Iraqis to work at a U.S. facility in Tikrit , killing 17 civilians and wounding 13 others . IN DT JJS NN , NNS VBP NNS IN CD NNS VBD NN IN NNS VBG NNS TO VB IN DT NNP NN IN NNP , VBG CD NNS CC VBG CD NNS . Later , officials say a car bomb killed at least three Iraqi National Guardsmen north of Tikrit . RB , NNS VBP DT NN NN VBD IN JJS CD JJ NNP NNP NN IN NNP . Separately , an Iraqi soldier was killed when a patrol came under attack in Samarra . RB , DT JJ NN VBD VBN WRB DT NN VBD IN NN IN NNP . In other developments , the U.S. military says its engineers have begun drafting a reconstruction plan for the city of Fallujah . IN JJ NNS , DT NNP NN VBZ PRP$ NNS VBP VBN VBG DT NN NN IN DT NN IN NNP . Much of the flashpoint city west of Baghdad was devastated last month in fighting between insurgents and U.S. forces . NN IN DT NN NN NN IN NNP VBD VBN JJ NN IN VBG IN NNS CC NNP NNS . Officials say engineers will first move to restore water and electricity , before rebuilding hospitals , schools and solid waste facilities . NNS VBP NNS MD RB VB TO VB NN CC NN , IN VBG NNS , NNS CC JJ NN NNS . The U.S. military says a roadside bomb has killed an American soldier in eastern Afghanistan . DT NNP NN VBZ DT NN NN VBZ VBN DT JJ NN IN JJ NNP . The blast in Paktika province wounded another U.S. service member and an Afghan soldier . DT NN IN NNP NN VBD DT NNP NN NN CC DT JJ NN . In neighboring Zabul province , suspected Taleban insurgents killed an Afghan intelligence officer Thursday . IN JJ NNP NN , JJ NNP NNS VBD DT JJ NN NN NNP . And in Helmand province , a Muslim cleric was wounded by unidentified gunmen riding a motorcycle . CC IN NNP NN , DT NNP NN VBD VBN IN JJ NNS VBG DT NN . A purported Taleban spokesman claimed responsibility for those two attacks . DT JJ NNP NN VBD NN IN DT CD NNS . Meanwhile , the United States and Afghanistan agreed in principle to transfer most Afghans in U.S. custody to the Afghan government . RB , DT NNP NNPS CC NNP VBD IN NN TO VB RBS NNS IN NNP NN TO DT JJ NN . A spokesman for Afghan President Hamid Karzai says prisoners from the Guantanamo Bay detention center and U.S. facilities in Afghanistan will be among those handed over . DT NN IN JJ NNP NNP NNP VBZ NNS IN DT NNP NNP NN NN CC NNP NNS IN NNP MD VB IN DT VBN RP . Former world number one women 's tennis player Kim Clijsters of Belgium has beaten Russia 's Vera Douchevina at the Eastbourne , England grass court tennis tournament to claim her third tournament title this year . JJ NN NN CD NNS POS NN NN NNP NNP IN NNP VBZ VBN NNP POS NNP NNP IN DT NNP , NNP VBZ NN NN NN TO VB PRP$ JJ NN NN DT NN . Clijsters , seeded seventh , ousted Douchevina in straight sets , 07-May , 6-0 . NNP , VBD JJ , JJ NNP IN JJ NNS , CD , CD . Earlier this year , Clijsters won tournaments at Indian Wells , California , and Miami , Florida . RBR DT NN , NNP VBD NNS IN NNP NNP , NNP , CC NNP , NNP . Douchevina was the 2002 junior champion at Wimbledon and had beaten top-seeded Amelie Mauresmo of France on her way to the finals . NNP VBD DT CD NN NN IN NNP CC VBD VBN JJ NNP NNP IN NNP IN PRP$ NN TO DT NNS . The grass court tournament is a key warm-up for the Wimbledon championships , which start Monday in London . DT NN NN NN VBZ DT JJ NN IN DT NNP NNS , WDT VBP NNP IN NNP . Two suspected Taleban members blew themselves up while strapping on explosives in southern Afghanistan . CD JJ NNP NNS VBD PRP RP IN VBG IN NNS IN JJ NNP . The blast occurred Thursday near a market in an Afghan town near the Pakistani border . DT NN VBD NNP IN DT NN IN DT JJ NN IN DT JJ NN . Afghan officials say no one else was hurt in the explosion . JJ NNS VBP DT NN RB VBD VBN IN DT NN . The blast came a day after a roadside bomb ripped through a U.S. military vehicle in the eastern province of Kunar , killing one soldier and wounding two others . DT NN VBD DT NN IN DT NN NN VBD IN DT NNP JJ NN IN DT JJ NN IN NNP , VBG CD NN CC VBG CD NNS . Suicide attacks have increased in Afghanistan in recent months , primarily in southern and eastern regions where U.S.-led coalition forces are hunting Taleban and al-Qaida fighters . NN NNS VBP VBN IN NNP IN JJ NNS , RB IN JJ CC JJ NNS WRB JJ NN NNS VBP VBG NNP CC NNP NNS . United Nations peacekeepers in Haiti say they will increase patrols to prevent possible kidnappings when schools reopen next week . NNP NNP NNS IN NNP VBP PRP MD VB NNS TO VB JJ NNS WRB NNS VB JJ NN . In a statement , U.N. officials said troops and Haitian police will conduct vehicle searches and other security measures . IN DT NN , NNP NNS VBD NNS CC JJ NNS MD VB NN NNS CC JJ NN NNS . A U.N. spokesman told the Associated Press that officials fear that kidnappers may seek new victims as students return to class . DT NNP NN VBD DT NNP NNP IN NNS VBP IN NNS MD VB JJ NNS IN NNS VBP IN NN . The U.N. Children 's Fund has condemned recent abductions of children in and around the Haitian capital , Port-au-Prince . DT NNP NNP POS NNP VBZ VBN JJ NNS IN NNS IN CC IN DT JJ NN , NNP . Since 2004 , the U.N. force in Haiti has been working to restore security and battle impunity in the impoverished nation . IN CD , DT NNP NN IN NNP VBZ VBN VBG TO VB NN CC NN NN IN DT JJ NN . The United Nations torture investigator says he has been blocked from visiting Cuba to look into allegations of human rights abuses . DT NNP NNP NN NN VBZ PRP VBZ VBN VBN IN VBG NNP TO VB IN NNS IN JJ NNS NNS . Manfred Nowak said Wednesday he was disappointed when Cuba informed him they would be unable to accommodate his mission before his term ends several months from now on October 30 . NNP NNP VBD NNP PRP VBD VBN WRB NNP VBD PRP PRP MD VB JJ TO VB PRP$ NN IN PRP$ NN VBZ JJ NNS IN RB IN NNP CD . Nowak said Cuba had issued a ' clear invitation ' to allow him to assess the torture situation on the ground , but repeated attempts to schedule the trip had been blocked . NNP VBD NNP VBD VBN DT `` JJ NN `` TO VB PRP TO VB DT NN NN IN DT NN , CC VBN NNS TO VB DT NN VBD VBN VBN . There was no immediate comment from Cuba . EX VBD DT JJ NN IN NNP . Last week , the U.S.-based human rights group Freedom House named Cuba among the top 20 worst human rights abusers in the world , saying it and the other listed countries severely suppress political opposition , independent organization , and criticism of the state . JJ NN , DT JJ JJ NNS NN NNP NNP VBD NNP IN DT JJ CD JJS JJ NNS NNS IN DT NN , VBG PRP CC DT JJ JJ NNS RB JJ JJ NN , JJ NN , CC NN IN DT NN . President Bush was in the state of Tennessee Friday , to highlight some of his administration 's environmental accomplishments . NNP NNP VBD IN DT NN IN NNP NNP , TO VB DT IN PRP$ NN POS JJ NNS . He stopped there after bad weather forced him to cancel an Earth Day visit to the Great Smoky Mountains National Park . PRP VBD RB IN JJ NN VBD PRP TO VB DT NNP NNP NN TO DT NNP NNP NNP NNP NNP . The president said Earth Day is an opportunity for Americans to recommit themselves to good stewardship of the land . DT NN VBD NNP NNP VBZ DT NN IN NNS TO VB PRP TO JJ NN IN DT NN . He said that since the 1970s , ' the air 's cleaner , the land is better ... and the economy is growing . ' PRP VBD IN IN DT NNS , `` DT NN POS NN , DT NN VBZ JJR : CC DT NN VBZ VBG . `` He added that ozone levels have dropped , said he has enacted provisions to cut emissions from heavy diesel engines by 90 percent , and described how his administration is aggressively restoring , improving and protecting a total of three million acres of wetlands . PRP VBD IN NN NNS VBP VBN , VBD PRP VBZ VBN NNS TO VB NNS IN JJ NN NNS IN CD NN , CC VBD WRB PRP$ NN VBZ RB VBG , VBG CC VBG DT NN IN CD CD NNS IN NNS . But critics chide him for , among other things , allowing companies to sidestep anti-pollution regulations and seeking to open public lands to timber , oil and gas exploration . CC NNS VBP PRP IN , IN JJ NNS , VBG NNS TO VB JJ NNS CC VBG TO VB JJ NNS TO VB , NN CC NN NN . Colombia has rejected asylum requests by former Venezuelan military officers accused of plotting a 2002 coup against Venezuelan President Hugo Chavez . NNP VBZ VBN NN NNS IN JJ JJ JJ NNS VBN IN VBG DT CD NN IN JJ NNP NNP NNP . A Colombian government official said Tuesday the requests for refugee status had been denied but also said the decisions are being appealed . DT JJ NN NN VBD NNP DT NNS IN NN NN VBD VBN VBN CC RB VBD DT NNS VBP VBG VBN . Venezuelan former Admiral Hector Ramirez told Colombian television Tuesday that he and at least seven other former top officers face persecution if they go back to Venezuela . JJ JJ NNP NNP NNP VBD JJ NN NNP IN PRP CC IN JJS CD JJ JJ JJ NNS VBP NN IN PRP VBP RB TO NNP . The group has been in Colombia since late last year . DT NN VBZ VBN IN NNP IN RB JJ NN . Mr. Ramirez was named defense minister during the two-day long coup which temporarily deposed President Chavez . NNP NNP VBD VBN NN NN IN DT JJ JJ NN WDT RB VBD NNP NNP . Venezuelan business leader Pedro Carmona , who served as president during the coup , has been granted asylum by Colombia . JJ NN NN NNP NNP , WP VBD IN NN IN DT NN , VBZ VBN VBN NN IN NNP . Brazilian police have detained two men in connection with the recent theft of nearly $ 70 million from a bank vault in one of the largest bank robberies in history . JJ NNS VBP VBN CD NNS IN NN IN DT JJ NN IN RB $ CD CD IN DT NN NN IN CD IN DT JJS NN NNS IN NN . Authorities say the men were detained near the southeastern city of Belo Horizonte Wednesday , after police stopped their truck loaded with vehicles that were purchased in cash Saturday from a car dealership . NNS VBP DT NNS VBD VBN IN DT JJ NN IN NNP NNP NNP , IN NNS VBD PRP$ NN VBN IN NNS WDT VBD VBN IN NN NNP IN DT NN NN . Officials say they also found a fraction of the stolen money hidden in one of the vehicles . NNS VBP PRP RB VBD DT NN IN DT JJ NN VBN IN CD IN DT NNS . Police say Saturday 's daring theft at a central bank branch in the northeastern city of Fortaleza was carried out by 10 to 20 people taking three months to dig an 80-meter tunnel from a house where they had set up a phony landscaping company . NNS VBP NNP POS VBG NN IN DT JJ NN NN IN DT JJ NN IN NNP VBD VBN RP IN CD CC CD NNS VBG CD NNS TO VB DT JJ NN IN DT NN WRB PRP VBD VBN RP DT JJ NN NN . The thieves left behind tools used to dig the tunnel and get through the vault 's one-meter thick concrete and steel floor . DT NNS VBD IN NNS VBN TO VB DT NN CC VB IN DT NN POS JJ JJ NN CC NN NN . Russian lawmakers have voted to extend presidential term limits from four to six years . JJ NNS VBP VBN TO VB JJ NN NNS IN CD CC CD NNS . The lower house of parliament overwhelmingly approved the measure during its first reading Friday . DT JJR NN IN NN RB VBD DT NN IN PRP$ JJ NN NNP . It will need to pass through two more readings to change the constitution and become law . PRP MD VB TO VB IN CD JJR NNS TO VB DT NN CC VB NN . The lower house has fast tracked the measure , which was announced by President Dmitri Medvedev last week . DT JJR NN VBZ RB VBN DT NN , WDT VBD VBN IN NNP NNP NNP JJ NN . Opponents say the measure could allow former Russian President Vladimir Putin , who now is Russia 's prime minister , to quickly seek to return to the presidency . NNS VBP DT NN MD VB JJ JJ NNP NNP NNP , WP RB VBZ NNP POS JJ NN , TO RB VB TO VB TO DT NN . Mr. Medvedev has also proposed extending the term of the State Duma from four to five years . NNP NNP VBZ RB VBN VBG DT NN IN DT NNP NNP IN CD CC CD NNS . Britain 's Prime Minister Tony Blair has called a national election for May 5 . NNP POS NNP NNP NNP NNP VBZ VBN DT JJ NN IN NNP CD . Mr. Blair made the announcement Tuesday after asking Queen Elizabeth for permission to dissolve parliament , in line with pre-election protocol . NNP NNP VBD DT NN NNP IN VBG NNP NNP IN NN TO VB NN , IN NN IN JJ NN . The prime minister had been expected to call the election , with Britain enjoying a strong economy . DT JJ NN VBD VBN VBN TO VB DT NN , IN NNP VBG DT JJ NN . Several opinion polls published today show Mr. Blair 's Labor Party with a lead of two to five percentage points . JJ NN NNS VBN NN VBP NNP NNP POS NNP NNP IN DT NN IN CD CC CD NN NNS . The main opposition parties hope to overcome that lead by highlighting Mr. Blair 's support for the war in Iraq , which remains largely unpopular in Britain . DT JJ NN NNS VBP TO VB DT NN IN VBG NNP NNP POS NN IN DT NN IN NNP , WDT VBZ RB JJ IN NNP . The Labor Party enters the race with a commanding 161-seat majority in parliament . DT NNP NNP VBZ DT NN IN DT JJ JJ NN IN NN . Mr. Blair will be seeking his third term in office , following landslide victories in 1997 and 2001 . NNP NNP MD VB VBG PRP$ JJ NN IN NN , VBG NN NNS IN CD CC CD . Military officials in the Democratic Republic of Congo say rebel fighters have attacked an army camp in the eastern Ituri region . JJ NNS IN DT JJ NNP IN NNP VBP JJ NNS VBP VBN DT NN NN IN DT JJ NNP NN . There were few details about Saturday night 's raid , but army officials said at least two militia fighters were killed in gunbattles . EX VBD JJ NNS IN NNP NN POS NN , CC NN NNS VBD IN JJS CD NN NNS VBD VBN IN NNS . Rebel groups regularly clash with military forces in the DRC . NN NNS RB VB IN JJ NNS IN DT NNP . The United Nations says the violence has caused some 1,70,000 Congolese to flee their homes in recent months . DT NNP NNP VBZ DT NN VBZ VBN DT CD NNS TO VB PRP$ NNS IN JJ NNS . Some 17,000 U.N. peacekeepers are stationed in Congo to secure the country for nationwide elections July 30 . DT CD NNP NNS VBP VBN IN NNP TO VB DT NN IN JJ NNS NNP CD . On Friday , the head of the notorious Mai Mai militia surrendered to U.N. forces and pledged to disarm his troops . IN NNP , DT NN IN DT JJ NNP NNP NN VBD TO NNP NNS CC VBD TO VB PRP$ NNS . Officials said it was a major victory for stabilizing the country . NNS VBD PRP VBD DT JJ NN IN VBG DT NN . Burma 's prime minister , General Thein Sein , will make official visits to Indonesia and Singapore later this month . NNP POS JJ NN , NNP NNP NNP , MD VB JJ NNS TO NNP CC NNP RB DT NN . Burma 's state-owned New Light of Myanmar newspaper said the prime minister would make the visits in the near future . NNP POS JJ NNP NNP IN NNP NN VBD DT JJ NN MD VB DT NNS IN DT JJ NN . It gave no further details of his plans . PRP VBD DT JJ NNS IN PRP$ NNS . However , Burmese officials said on condition of anonymity that General Thein Sein will depart Sunday for Indonesia . RB , JJ NNS VBD IN NN IN NN IN NNP NNP NNP MD VB NNP IN NNP . Burma , Indonesia and Singapore all belong to the 10-member Association of Southeast Asian nations , which held a summit in Thailand earlier this month . NNP , NNP CC NNP DT VBP TO DT JJ NN IN JJ JJ NNS , WDT VBD DT NN IN NNP RBR DT NN . During that meeting , Southeast Asian leaders encouraged Burma 's military government to release political detainees and open up next year 's election to more political parties . IN DT NN , NNP NNP NNS VBD NNP POS JJ NN TO VB JJ NNS CC VB RP JJ NN POS NN TO JJR JJ NNS . The military has ruled Burma since 1962 . DT NN VBZ VBN NNP IN CD . The government has created a ' roadmap to democracy , ' but critics say it further strengthens the generals ' grip on power . DT NN VBZ VBN DT `` NN TO NN , `` CC NNS VBP PRP RBR VBZ DT NNS POS NN IN NN . Pakistani officials say security forces and helicopter gunships have killed at least 21 suspected militants in the northwestern tribal region of Orakzai . JJ NNS VBP NN NNS CC NN NNS VBP VBN IN JJS CD JJ NNS IN DT JJ JJ NN IN NNP . They say troops and aircraft attacked militant compounds in the area on Wednesday , destroying a training center , a bunker and an ammunition dump . PRP VBP NNS CC NN VBD JJ NNS IN DT NN IN NNP , VBG DT NN NN , DT NN CC DT NN NN . In the past year Pakistani forces have been carrying out anti-Taliban offensives in the country 's northwestern tribal regions , particularly South Waziristan . IN DT JJ NN JJ NNS VBP VBN VBG RP JJ NNS IN DT NN POS JJ JJ NNS , RB NNP NNP . U.S. missile strikes in the tribal areas are also targeting Taliban and al-Qaida commanders , often in the North Waziristan region . NNP NN NNS IN DT JJ NNS VBP RB VBG NNP CC NNP NNS , RB IN DT NNP NNP NN . Militants based in the region have retaliated by launching gun and bomb attacks against government workers , police and civilians in Pakistan 's cities . NNS VBN IN DT NN VBP VBN IN VBG NN CC NN NNS IN NN NNS , NNS CC NNS IN NNP POS NNS . President Bush said nations around the world need to stand with moderate reformers in the MIddle East . NNP NNP VBD NNS IN DT NN VBP TO VB IN JJ NNS IN DT NNP NNP . He said the world must seek stability in the region through the establishment of free and just societies . PRP VBD DT NN MD VB NN IN DT NN IN DT NN IN JJ CC RB NNS . Mr. Bush also pledged to continue to support the government of Iraq in its struggle with terrorists . NNP NNP RB VBD TO VB TO VB DT NN IN NNP IN PRP$ NN IN NNS . In addition , the president said Iran must abandon what he called its ambition for nuclear weapons . IN NN , DT NN VBD NNP MD VB WP PRP VBD PRP$ NN IN JJ NNS . He said the United States is working for a diplomatic solution to the issue , and said the U.S. does not oppose a truly peaceful nuclear program for Iran . PRP VBD DT NNP NNPS VBZ VBG IN DT JJ NN TO DT NN , CC VBD DT NNP VBZ RB VB DT RB JJ JJ NN IN NNP . Hong Kong police have released 944 protesters detained after sometimes violent demonstrations during last week 's World Trade Organization meetings . NNP NNP NNS VBP VBN CD NNS VBN IN RB JJ NNS IN JJ NN POS NNP NNP NNP NNS . More than 1000 anti-free trade protesters were arrested . JJR IN CD JJ NN NNS VBD VBN . Most of them were South Korean farmers . JJS IN PRP VBD JJ JJ NNS . On Saturday , the demonstrators attacked riot police with bamboo poles , pipes and bottles as they tried to force their way into the conference hall where trade ministers were meeting . IN NNP , DT NNS VBD NN NNS IN NN NNS , NNS CC NNS IN PRP VBD TO VB PRP$ NN IN DT NN NN WRB NN NNS VBD VBG . Hong Kong police say they are charging 14 people with unlawful assembly . NNP NNP NNS VBP PRP VBP VBG CD NNS IN JJ NN . Nearly 200 of the demonstrators had been released earlier . RB CD IN DT NNS VBD VBN VBN RBR . South Korea 's Deputy Foreign Minister Lee Kyu-hyung arrived in Hong Kong Monday to express his government 's regret over the violence . NNP NNP POS NNP NNP NNP NNP NNP VBD IN NNP NNP NNP TO VB PRP$ NN POS NN IN DT NN . The government of Colombia says it will allow no more international missions seeking the release of hostages held by leftist rebels . DT NN IN NNP VBZ PRP MD VB DT JJR JJ NNS VBG DT NN IN NNS VBN IN JJ NNS . Foreign Minister Fernando Araujo said Monday that the failed mission led by Venezuelan President Hugo Chavez left what he called ' a bad taste ' . NNP NNP NNP NNP VBD NNP IN DT JJ NN VBN IN JJ NNP NNP NNP VBD WP PRP VBD `` DT JJ NN `` . Araujo said Mr. Chavez and the leftist observers came to criticize the government and defend the guerrillas . NNP VBD NNP NNP CC DT JJ NNS VBD TO VB DT NN CC VB DT NNS . In late December Mr. Chavez assembled the observers to oversee the release of three hostages held by the Revolutionary Armed Forces of Colombia or FARC . IN JJ NNP NNP NNP VBD DT NNS TO VB DT NN IN CD NNS VBN IN DT NNP NNP NNS IN NNP CC NNP . On New Year 's Eve , the release collapsed amid accusations from the FARC that Colombian military operations interfered with the release . IN NNP NNP POS NNP , DT NN VBD IN NNS IN DT NNP IN JJ JJ NNS VBD IN DT NN . It was later learned that one of the hostages , a three-year-old boy , was not under the control of the FARC , but had been released in 2005 . PRP VBD RB VBN IN CD IN DT NNS , DT JJ NN , VBD RB IN DT NN IN DT NNP , CC VBD VBN VBN IN CD . French authorities say violence flared for the 13th night in several cities despite night-time curfews , but the number of attacks dropped sharply . JJ NNS VBP NN VBD IN DT JJ NN IN JJ NNS IN JJ NNS , CC DT NN IN NNS VBD RB . Official say rampaging youths burned more than 600 vehicles across the country , about half the number set aflame night before . NNP VBP VBG NNS VBD JJR IN CD NNS IN DT NN , IN PDT DT NN VBN JJ NN IN . Police say 204 people were arrested in the latest violence , which has been carried out mainly by Muslim youths of North African descent . NNS VBP CD NNS VBD VBN IN DT JJS NN , WDT VBZ VBN VBN IN RB IN NNP NNS IN JJ JJ NN . A state of emergency went into effect at midnight permitting such cities as Amiens , Orleans and the Paris suburb of Savigny-sur-Orge to declare curfews . DT NN IN NN VBD IN NN IN NN VBG JJ NNS IN NNP , NNP CC DT NNP NN IN NNP TO VB NNS . In the southern city of Lyon , officials shut the entire subway system after a firebomb exploded in one station late Tuesday . IN DT JJ NN IN NNP , NNS VBD DT JJ NN NN IN DT NN VBD IN CD NN JJ NNP . No injuries were reported . DT NNS VBD VBN . Prime Minister Dominique de Villepin Tuesday announced a number of measures to address what many French say are the main causes of the riots - youth unemployment , poor schools and discrimination . NNP NNP NNP NNP NNP NNP VBD DT NN IN NNS TO VB WP JJ NNS VBP VBP DT JJ NNS IN DT NNS IN NN NN , JJ NNS CC NN . Cuban state media say former President Fidel Castro will appear at a special session of parliament Saturday for the first time since 2006 , when he ceded power to his younger brother , Raul . JJ NN NNS VBP JJ NNP NNP NNP MD VB IN DT JJ NN IN NN NNP IN DT JJ NN IN CD , WRB PRP VBD NN TO PRP$ JJR NN , NNP . The reports said Wednesday that the Cuban National Assembly will debate several issues relating to the international situation , but did not elaborate . DT NNS VBD NNP IN DT JJ NNP NNP MD VB JJ NNS VBG TO DT JJ NN , CC VBD RB VB . The elder Castro said last week that he would ask for such a session to discuss his concerns that a nuclear war involving the United States and Iran will erupt in the near future . DT NN NNP VBD JJ NN IN PRP MD VB IN PDT DT NN TO VB PRP$ NNS IN DT JJ NN VBG DT NNP NNPS CC NNP MD VB IN DT JJ NN . The former president , who turns 84 later this month , has increased his public appearances in recent weeks following a long period of seclusion , resulting from an illness suffered in 2006 . DT JJ NN , WP VBZ CD RB DT NN , VBZ VBN PRP$ JJ NNS IN JJ NNS VBG DT JJ NN IN NN , VBG IN DT NN VBD IN CD . Fidel Castro underwent intestinal surgery that year and turned over power on a provisional basis to his brother , who formally assumed the presidency in February 2008 . NNP NNP VBD JJ NN IN NN CC VBD RP NN IN DT JJ NN TO PRP$ NN , WP RB VBD DT NN IN NNP CD . Military officials in the Philippines say the death toll from a fuel truck explosion in the country 's south has risen to 50 , with more than 40 others injured . JJ NNS IN DT NNPS VBP DT NN NN IN DT NN NN NN IN DT NN POS NN VBZ VBN TO CD , IN JJR IN CD NNS VBN . The truck exploded Friday on a road in Zamoanga del Sur province , destroying the tanker , as well as a passenger bus on the opposite side of the road . DT NN VBD NNP IN DT NN IN NNP NNP NNP NN , VBG DT NN , RB RB IN DT NN NN IN DT JJ NN IN DT NN . Soldiers are still recovering bodies . NNS VBP RB VBG NNS . There are disagreements as to what the truck was carrying . EX VBP NNS IN TO WP DT NN VBD VBG . Some reports say it was hauling compressed carbon dioxide , while others say it was carrying liquified petroleum gas . DT NNS VBP PRP VBD VBG JJ NN NN , IN NNS VBP PRP VBD VBG JJ NN NN . Top finance officials of the Group of Eight industrialized nations meet Friday in London in an effort to work out an agreement on debt relief for the world 's poorest countries . JJ NN NNS IN DT NNP IN CD JJ NNS VBP NNP IN NNP IN DT NN TO VB RP DT NN IN NN NN IN DT NN POS JJS NNS . The finance ministers will try to settle differences over the issue before a G8 summit next month in Scotland . DT NN NNS MD VB TO VB NNS IN DT NN IN DT NNP NN JJ NN IN NNP . President Bush and British Prime Minister Tony Blair said earlier this week after meeting in Washington that they were close to completing a proposal to cancel all debt for the world 's poorest countries . NNP NNP CC JJ NNP NNP NNP NNP VBD RBR DT NN IN NN IN NNP IN PRP VBD JJ TO VBG DT NN TO VB DT NN IN DT NN POS JJS NNS . The New York Times Friday quotes an unidentified senior official in Washington as saying an agreement has been reached . DT NNP NNP NNP NNP VBZ DT JJ JJ NN IN NNP IN VBG DT NN VBZ VBN VBN . The report says the plan would free 18 mostly African countries from their entire debt obligation . DT NN VBZ DT NN MD VB CD RB JJ NNS IN PRP$ JJ NN NN . However , other G8 countries are sharply divided on how to finance debt relief . RB , JJ NNP NNS VBP RB VBN IN WRB TO VB NN NN . Bernie Mac says he intends to retire from stand-up comedy after 30 years . NNP NNP VBZ PRP VBZ TO VB IN JJ NN IN CD NNS . The 49-year-old comic - real name Bernard McCullogh - made the announcement Monday March 19 on David Letterman 's U.S. television talk show . DT JJ NN IN JJ NN NNP NNP : VBD DT NN NNP NNP CD IN NNP NNP POS NNP NN NN NN . He says the move will allow him to continue producing and acting in films , while spending more time at home . PRP VBZ DT NN MD VB PRP TO VB VBG CC VBG IN NNS , IN VBG JJR NN IN NN . Later this year , he 'll release his final performance film , The Whole Truth , Nothing But The Truth , So Help Me Mac . RB DT NN , PRP MD VB PRP$ JJ NN NN , DT NNP NNP , DT CC DT NNP , RB VB NNP NNP . Bernie Mac 's next film , the sports drama Pride , opens March 23 in the United States . NNP NNP POS JJ NN , DT NNS NN NNP , VBZ NNP CD IN DT NNP NNPS . The husband of former Pakistani Prime Minister Benazir Bhutto says he wants to improve relations between India and Pakistan . DT NN IN JJ JJ NNP NNP NNP NNP VBZ PRP VBZ TO VB NNS IN NNP CC NNP . Asif Ali Zardari , leader of the Pakistan People 's Party , says he wants to set aside the dispute over the Kashmir region so the two countries can focus on other issues , including boosting trade . NNP NNP NNP , NN IN DT NNP NNP POS NNP , VBZ PRP VBZ TO VB RP DT NN IN DT NNP NN IN DT CD NNS MD VB IN JJ NNS , VBG VBG NN . He made the remarks during an interview broadcast on India 's CNN-IBN television network Friday . PRP VBD DT NNS IN DT NN NN IN NNP POS JJ NN NN NNP . Kashmir is divided between India and Pakistan , but is claimed in total by both . NNP VBZ VBN IN NNP CC NNP , CC VBZ VBN IN JJ IN DT . The two countries have fought two wars over the disputed territory located in the Himalayan mountain valley . DT CD NNS VBP VBN CD NNS IN DT JJ NN VBN IN DT NNP NN NN . Zardari says relations between India and Pakistan should not be held hostage to the Kashmir situation , and that both countries can agree to disagree on the issue . NNP VBZ NNS IN NNP CC NNP MD RB VB VBN NN TO DT NNP NN , CC IN DT NNS MD VB TO VB IN DT NN . Violence in Indian-controlled Kashmir has declined since India and Pakistan entered into a peace process in 2004 . NN IN JJ NNP VBZ VBN IN NNP CC NNP VBD IN DT NN NN IN CD . Ceremonies are being held Wednesday in the United States to mark the 64th anniversary of the Japanese attack on Pearl Harbor , Hawaii , which drew America into World War II . NNS VBP VBG VBN NNP IN DT NNP NNPS TO VB DT JJ NN IN DT JJ NN IN NNP NNP , NNP , WDT VBD NNP IN NNP NNP NNP . One ceremony is taking place at the USS Arizona Memorial , the site at Pearl Harbor where that battleship was sunk in the attack . CD NN VBZ VBG NN IN DT NNP NNP NNP , DT NN IN NNP NNP WRB DT NN VBD VBN IN DT NN . Guests at the memorial observed a moment of silence at the same time the Japanese attack began on December 7 , 1941 . NNS IN DT NN VBD DT NN IN NN IN DT JJ NN DT JJ NN VBD IN NNP CD , CD . The attack killed more than 2,400 people and destroyed most of the U.S. Pacific fleet , which was based at Pearl Harbor . DT NN VBD JJR IN CD NNS CC VBD JJS IN DT NNP NNP NN , WDT VBD VBN IN NNP NNP . In a speech Wednesday in Washington , President Bush honored Americans who fought in World War II , saying the United States did not waver in the cause for freedom . IN DT NN NNP IN NNP , NNP NNP VBD NNS WP VBD IN NNP NNP NNP , VBG DT NNP NNPS VBD RB VB IN DT NN IN NN . Mr. Bush also said the victory by Allied forces in the war laid a foundation of peace for generations . NNP NNP RB VBD DT NN IN JJ NNS IN DT NN VBD DT NN IN NN IN NNS . A series of bombings has killed at least 14 people in Baghdad , ahead of the highly anticipated transfer of operational command of Iraq 's armed forces from the U.S.-led coalition to Iraqi authorities . DT NN IN NNS VBZ VBN IN JJS CD NNS IN NNP , RB IN DT RB VBN NN IN JJ NN IN NNP POS JJ NNS IN DT JJ NN TO JJ NNS . Officials say more than 30 others were wounded in suicide car bombings and roadside bomb blasts across the city Thursday . NNS VBP JJR IN CD NNS VBD VBN IN NN NN NNS CC NN NN NNS IN DT NN NNP . The deadliest attack took place in the Karrada neighborhood , where a suicide bomber detonated his explosives-filled car at the entrance of a gas station for police vehicles . DT JJS NN VBD NN IN DT NNP NN , WRB DT NN NN VBD PRP$ JJ NN IN DT NN IN DT NN NN IN NN NNS . At least 10 people died and 17 others were wounded in that attack . IN JJS CD NNS VBD CC CD NNS VBD VBN IN DT NN . Meanwhile , senior Iraqi military officials are preparing for the country 's prime minister to take control of the armed forces at a ceremony that was originally scheduled five days ago . RB , JJ JJ NN NNS VBP VBG IN DT NN POS JJ NN TO VB NN IN DT JJ NNS IN DT NN WDT VBD RB VBN CD NNS RB . Separately , the Iraqi government said 27 ' terrorists ' convicted of killings and rapes were executed Wednesday . RB , DT JJ NN VBD CD `` NNS `` VBN IN NNS CC NNS VBD VBN NNP . The top U.S. presidential candidates say the latest unemployment numbers make it much more important for Congress to act quickly and responsibly to address the country 's financial crisis . DT JJ NNP JJ NNS VBP DT JJS NN NNS VBP PRP RB RBR JJ IN NNP TO VB RB CC RB TO VB DT NN POS JJ NN . Republican John McCain and Democrat Barack Obama released statements Friday , calling on the House of Representatives to pass a financial bailout package for troubled financial institutions . NNP NNP NNP CC NNP NNP NNP VBD NNS NNP , VBG IN DT NNP IN NNPS TO VB DT JJ NN NN IN JJ JJ NNS . Both candidates are U.S. senators , and voted in favor of a revised rescue plan earlier this week . DT NNS VBP NNP NNS , CC VBD IN NN IN DT VBN NN NN RBR DT NN . McCain says Friday 's jobs report from the Labor Department shows the nation 's economy is on the wrong track . NNP VBZ NNP POS NNS NN IN DT NNP NNP VBZ DT NN POS NN VBZ IN DT JJ NN . He says if elected president he will ' clean up the mess ' created by the greed of financial firms , and fix the root causes of the crisis . PRP VBZ IN VBN NN PRP MD `` VB RP DT NN `` VBN IN DT NN IN JJ NNS , CC VB DT NN NNS IN DT NN . Obama says if elected he will rebuild the middle class and create millions of new jobs by investing in the country 's infrastructure and in renewable energy . NNP VBZ IN VBN PRP MD VB DT JJ NN CC VB NNS IN JJ NNS IN VBG IN DT NN POS NN CC IN JJ NN . Iraq 's interim defense minister says one of Saddam Hussein 's closest aides , Ali Hassan al-Majid - better known as Chemical Ali - will be the first member of the ousted regime to go on trial for war crimes . NNP POS JJ NN NN VBZ CD IN NNP NNP POS JJS NNS , NNP NNP NNP : RB VBN IN NNP NNP : MD VB DT JJ NN IN DT JJ NN TO VB IN NN IN NN NNS . The minister , Hazem Shaalan , told reporters in Baghdad Wednesday , the trial could begin as early as next week , and that he did not expect it to be a long process . DT NN , NNP NNP , VBD NNS IN NNP NNP , DT NN MD VB RB JJ IN JJ NN , CC IN PRP VBD RB VB PRP TO VB DT JJ NN . On Tuesday , interim Prime Minister Iyad Allawi announced that trials against Saddam 's top deputies would start next week , but did not specify which officials would appear in court . IN NNP , JJ NNP NNP NNP NNP VBD IN NNS IN NNP POS JJ NNS MD VB JJ NN , CC VBD RB VB WDT NNS MD VB IN NN . Meanwhile , campaigning for Iraq 's January 30 election officially got under way Wednesday . RB , VBG IN NNP POS NNP CD NN RB VBD IN NN NNP . Mr. Allawi was among the first to officially announce his candidacy Wednesday , appealing to the country 's diverse ethnic and religious groups . NNP NNP VBD IN DT JJ TO RB VB PRP$ NN NNP , VBG TO DT NN POS JJ JJ CC JJ NNS . Egypt 's health ministry says a teenage girl who tested positive for the H5N1 avian flu has died -- raising the number of deaths from the disease in Egypt to 14 . NNP POS NN NN VBZ DT NN NN WP VBD JJ IN DT NNP JJ NN VBZ VBN : VBG DT NN IN NNS IN DT NN IN NNP TO CD . The health ministry said the 15-year-old girl died at a Cairo hospital late Tuesday , despite being treated with the antiviral drug Tamiflu and being placed on a respirator . DT NN NN VBD DT JJ NN VBD IN DT NNP NN JJ NNP , IN VBG VBN IN DT JJ NN NNP CC VBG VBN IN DT NN . The girl was hospitalized last week . DT NN VBD VBN JJ NN . Officials say none of her family members was found to have the deadly form of bird flu . NNS VBP NN IN PRP$ NN NNS VBD VBN TO VB DT JJ NN IN NN NN . The Egyptian government and the World Health Organization say 34 Egyptians , including several children , have contracted the H5N1 form of avian flu . DT JJ NN CC DT NNP NNP NNP VBP CD NNS , VBG JJ NNS , VBP VBN DT NNP NN IN JJ NN . Fourteen of them have now died died . CD IN PRP VBP RB VBN VBD . Egypt has the largest number of human bird flu cases outside of Asia . NNP VBZ DT JJS NN IN JJ NN NN NNS IN IN NNP . Australian Prime Minister John Howard says the apparent killing of international aid worker Margaret Hassan in Iraq is shocking and inhumane . JJ NNP NNP NNP NNP VBZ DT JJ NN IN JJ NN NN NNP NNP IN NNP VBZ VBG CC NN . Mr. Howard also told the parliament Thursday in Canberra that the body of a woman found in Fallujah appears to be that of Ms. Hassan . NNP NNP RB VBD DT NN NNP IN NNP IN DT NN IN DT NN VBN IN NNP VBZ TO VB IN IN NNP NNP . However , when questioned by reporters afterwards , Mr. Howard would not elaborate on the statement , saying only that Ms. Hassan 's killers have not returned her body . RB , WRB VBN IN NNS RB , NNP NNP MD RB VB IN DT NN , VBG RB IN NNP NNP POS NNS VBP RB VBN PRP$ NN . On Sunday , U.S. Marines in Fallujah found the mutilated body of what appeared to be a Western woman . IN NNP , NNP NNPS IN NNP VBD DT JJ NN IN WP VBD TO VB DT JJ NN . Days earlier , Arabic television network al-Jazeera had said it received a video that appeared to show the killing . NNS RB , JJ NN NN NNP VBD VBN PRP VBD DT NN WDT VBD TO VB DT NN . Unidentified kidnappers abducted Ms. Hassan last month and called on Britain to withdraw its troops from Iraq . JJ NNS VBD NNP NNP JJ NN CC VBN IN NNP TO VB PRP$ NNS IN NNP . Ms. Hassan headed Iraqi operations of the international charity CARE , as an employee of the group 's Australian branch . NNP NNP VBD JJ NNS IN DT JJ NN NN , IN DT NN IN DT NN POS JJ NN . Police in southern Kyrgyzstan say a clash between protesters and security guards outside a hotel in the city of Osh has injured four people . NNS IN JJ NNP VBP DT NN IN NNS CC NN NNS IN DT NN IN DT NN IN NNP VBZ VBN CD NNS . Local authorities say security guards fired at the demonstrators with automatic weapons to disperse them . JJ NNS VBP NN NNS VBN IN DT NNS IN JJ NNS TO VB PRP . The hotel is believed to be owned by prominent politician , Bayaman Erkinbayev , who survived an attempt on his life by unknown assailants six weeks ago . DT NN VBZ VBN TO VB VBN IN JJ NN , NNP NNP , WP VBD DT NN IN PRP$ NN IN JJ NNS CD NNS RB . Monday 's clash in Osh follows a similar incident at a market place in the border town of Kara-Suu Thursday , which Mr. Erkinbayev says belongs to his wife . NNP POS NN IN NNP VBZ DT JJ NN IN DT NN NN IN DT NN NN IN NNP NNP , WDT NNP NNP VBZ VBZ TO PRP$ NN . Kyrgyzstan , a mountainous Central Asian country , has been unstable since President Askar Akayev 's ouster in March . NNP , DT JJ JJ JJ NN , VBZ VBN JJ IN NNP NNP NNP POS NN IN NNP . Presidential elections to replace Mr. Akayev are scheduled for July 10 . JJ NNS TO VB NNP NNP VBP VBN IN NNP CD . Mr. Erkinbayev is one of the candidates . NNP NNP VBZ CD IN DT NNS . Brazilian President Luiz Inacio Lula da Silva and his Colombian counterpart , Alvaro Uribe , have held talks that included the diplomatic dispute between Colombia and Venezuela . JJ NNP NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBP VBN NNS WDT VBD DT JJ NN IN NNP CC NNP . The two presidents met in a Colombian town to discuss the rift over Colombia 's capture of a FARC rebel leader in Caracas last month . DT CD NNS VBD IN DT JJ NN TO VB DT NN IN NNP POS NN IN DT NNP NN NN IN NNP JJ NN . Brazil and Mexico have offered to mediate the rift , which began after Colombia acknowledged paying bounty hunters to capture Rodrigo Granda . NNP CC NNP VBP VBN TO VB DT NN , WDT VBD IN NNP VBD VBG NN NNS TO VB NNP NNP . Venezuelan President Hugo Chavez says Colombia violated his country 's sovereignty . JJ NNP NNP NNP VBZ NNP VBD PRP$ NN POS NN . Last week , Venezuela froze trade relations with Colombia and recalled its ambassador from Bogota . JJ NN , NNP VBD NN NNS IN NNP CC VBD PRP$ NN IN NNP . The Colombians say they plan to send Caracas proof that Colombian guerrillas are in Venezuelan territory . DT NNS VBP PRP VBP TO VB NNP NN IN JJ NNS VBP IN JJ NN . Colombia is mired in a long-running civil war involving leftist rebels , rightist paramilitaries and the government . NNP VBZ VBN IN DT JJ JJ NN VBG JJ NNS , JJ NNS CC DT NN . The conflict leaves thousands dead each year . DT NN VBZ NNS JJ DT NN . Australian scientists have unveiled fossils of what they say are the largest dinosaurs ever found in Australia . JJ NNS VBP VBN NNS IN WP PRP VBP VBP DT JJS NNS RB VBN IN NNP . Fossilized bones of two titanosaurs went on display Thursday at the Queensland Museum in the eastern city of Brisbane . VBN NNS IN CD NNS VBD IN NN NNP IN DT NNP NNP IN DT JJ NN IN NNP . The 25-meter-long dinosaurs , nicknamed Cooper and George , were found by ranchers in 2005 and 2006 , near the town of Eromanga , in southwest Queensland state . DT JJ NNS , VBN NNP CC NNP , VBD VBN IN NNS IN CD CC CD , IN DT NN IN NNP , IN JJ NNP NN . The discoveries were kept secret until now to allow scientists to dig them up and study them . DT NNS VBD VBN JJ IN RB TO VB NNS TO VB PRP RP CC VB PRP . A single leg bone from one of the titanosaurs measures 1.5 meters long , and weighs 100 kilograms . DT JJ NN NN IN CD IN DT NNS VBZ CD NNS RB , CC VBZ CD NNS . The titanosaurs were among the largest and heaviest prehistoric animals ever to roam the Earth , with extremely long necks and tails . DT NNS VBD IN DT JJS CC JJS JJ NNS RB TO VB DT NN , IN RB JJ NNS CC NNS . The titanosaurs were plant-eating dinosaurs , called sauropods , that lived more than 100 million years ago . DT NNS VBD JJ NNS , VBD NNS , WDT VBD JJR IN CD CD NNS RB . Trial began in Amman Monday , for an Iraqi woman charged with taking part in a triple bomb attack that killed 60 people in the Jordanian capital last year . NNP VBD IN NNP NNP , IN DT JJ NN VBN IN VBG NN IN DT JJ NN NN WDT VBD CD NNS IN DT JJ NN JJ NN . Sajida Mubarak al-Rishawi was captured when her explosives belt failed to detonate during the suicide attack at three hotels on November 9 . NNP NNP NNP VBD VBN WRB PRP$ NNS NN VBD TO VB IN DT NN NN IN CD NNS IN NNP CD . Al-Rishawi , whose husband blew himself up in the bombings , is the only defendant in custody . NNP , WP$ NN VBD PRP RP IN DT NNS , VBZ DT JJ NN IN NN . Jordanian-born terrorist Abu Musab al-Zarqawi , the accused mastermind of the attacks , and others were charged in absentia . JJ JJ NNP NNP NNP , DT VBN NN IN DT NNS , CC NNS VBD VBN IN NN . Al-Zarqawi 's al-Qaida in Iraq group claimed responsibility for the attacks , which were aimed at foreign visitors but wound up killing mostly Jordanians . NNP POS NNP IN NNP NN VBD NN IN DT NNS , WDT VBD VBN IN JJ NNS CC VBD RP VBG RB NNS . John Bolton appearing before Senate President Bush 's choice for U.S. ambassador to the United Nations is fielding tough questions at his confirmation hearing Monday . NNP NNP VBG IN NNP NNP NNP POS NN IN NNP NN TO DT NNP NNP VBZ VBG JJ NNS IN PRP$ NN NN NNP . In his opening statement , John Bolton pledged to work with other countries to make the United Nations stronger and more effective . IN PRP$ NN NN , NNP NNP VBD TO VB IN JJ NNS TO VB DT NNP NNPS JJR CC JJR JJ . But Senate Democrats remain clearly opposed to Mr. Bolton , who has in the past condemned the world body and bluntly criticized a number of countries . CC NNP NNPS VBP RB VBN TO NNP NNP , WP VBZ IN DT NN VBN DT NN NN CC RB VBD DT NN IN NNS . Democrats today raised questions about an incident in which Mr. Bolton pressured State Department intelligence analysts who challenged his assertion that Cuba possessed banned weapons . NNS NN VBD NNS IN DT NN IN WDT NNP NNP VBD NNP NNP NN NNS WP VBD PRP$ NN IN NNP VBD VBN NNS . In testimony , Mr. Bolton admitted that he tried to have the men moved to other jobs . IN NN , NNP NNP VBD IN PRP VBD TO VB DT NNS VBD TO JJ NNS . Senator Christopher Dodd called that ' dreadfully wrong . ' NNP NNP NNP VBD DT `` RB JJ . `` Mr. Bolton currently serves as undersecretary of state for arms control . NNP NNP RB VBZ IN NN IN NN IN NNS NN . His hearing continues through Wednesday . PRP$ NN VBZ IN NNP . The first group of United Nations peacekeepers has left Burundi as part of a gradual 12-month withdrawal plan from the central African country . DT JJ NN IN NNP NNP NNS VBZ VBN NNP IN NN IN DT JJ JJ NN NN IN DT JJ JJ NN . U.N. officials say some 170 Mozambican peacekeepers departed Saturday from an airport in the capital , Bujumbura . NNP NNS VBP DT CD NNP NNS VBD NNP IN DT NN IN DT NN , NNP . The United Nations plans to reduce its 5,500-member peacekeeping force in Burundi by 40 percent by April . DT NNP NNPS VBZ TO VB PRP$ JJ NN NN IN NNP IN CD NN IN NNP . Next to leave will be the Kenyans , followed by the Ethiopians and other nationalities which make up the force . NNP TO VB MD VB DT NNS , VBN IN DT NNS CC JJ NNS WDT VBP RP DT NN . U.N. peacekeepers have been in Burundi since 2004 , when the government and rebels signed an agreement ending their 12-year civil war . NNP NNS VBP VBN IN NNP IN CD , WRB DT NN CC NNS VBD DT NN VBG PRP$ JJ JJ NN . Some 3,00,000 people died in the long ethnic conflict between Hutu rebels and the politically-dominant Tutsis . DT CD NNS VBD IN DT JJ JJ NN IN NNP NNS CC DT JJ NN . Water levels are receding in India 's desert state of Rajasthan and relief workers there have stepped up efforts to rescue thousands of stranded villagers . NN NNS VBP VBG IN NNP POS NN NN IN NNP CC NN NNS RB VBP VBN RP NNS TO VB NNS IN JJ NNS . Officials say floods caused by monsoon rains killed at least 140 people in the past week , most of them in the district of Barmer . NNS VBP NNS VBN IN NN NNS VBD IN JJS CD NNS IN DT JJ NN , JJS IN PRP IN DT NN IN NNP . More than 7,00,000 people have been stranded . JJR IN CD NNS VBP VBN VBN . In western and southern India , more than 500 people have been killed and millions left homeless since the annual monsoon rains began in June . IN JJ CC JJ NNP , JJR IN CD NNS VBP VBN VBN CC NNS VBD JJ IN DT JJ NN NNS VBD IN NNP . Floods have also killed at least 31 people in neighboring Nepal in the past three days . NNS VBP RB VBN IN JJS CD NNS IN VBG NNP IN DT JJ CD NNS . Soldiers have been using helicopters and rubber boats to rescue hundreds of people . NNS VBP VBN VBG NNS CC NN NNS TO VB NNS IN NNS . Officials say most of the deaths came in the worst-hit seven districts in the plains of western Nepal . NNS VBP JJS IN DT NNS VBD IN DT JJ CD NNS IN DT NNS IN JJ NNP . U.S. and Iraqi forces are continuing a major security operation in restive al-Anbar province , west of Baghdad . NNP CC JJ NNS VBP VBG DT JJ NN NN IN JJ JJ NN , NN IN NNP . American military officials say strict security measures were imposed Sunday on several cities along the Euphrates River , including Ramadi , where a curfew was ordered . JJ JJ NNS VBP JJ NN NNS VBD VBN NNP IN JJ NNS IN DT NNP NNP , VBG NNP , WRB DT NN VBD VBN . In another development , the Indonesian foreign ministry confirmed Monday that kidnappers in Iraq have freed two Indonesian journalists who were abducted last week . IN DT NN , DT JJ JJ NN VBD NNP IN NNS IN NNP VBP VBN CD JJ NNS WP VBD VBN JJ NN . Meanwhile , Iraqi officials in the northern city of Mosul say an anchorwoman for a regional television station was abducted at gunpoint late Sunday . RB , JJ NNS IN DT JJ NN IN NNP VBP DT NN IN DT JJ NN NN VBD VBN IN NN JJ NNP . A videotape said to come from al-Qaida has been seen on al-Jazeera television . DT NN VBN TO VB IN NNP VBZ VBN VBN IN NNP NN . The tape carries a message in the name of the terrorist group 's No. 2 leader , Ayman al-Zawahiri , denouncing U.S. calls for reform in the Muslim world . DT NN VBZ DT NN IN DT NN IN DT JJ NN POS NN CD NN , NNP NNP , VBG NNP NNS IN NN IN DT NNP NN . Lebanese troops have unearthed the remains of 25 bodies from a mass grave in an eastern town near the former headquarters of Syrian intelligence in Lebanon . JJ NNS VBP VBN DT NNS IN CD NNS IN DT NN NN IN DT JJ NN IN DT JJ NN IN JJ NN IN NNP . Officials Saturday said the bodies were found in the Bekaa Valley town of Anjar . NNP NNP VBD DT NNS VBD VBN IN DT NNP NNP NN IN NNP . They say the bodies , one of which was dressed in a Lebanese military uniform , have been buried for years . PRP VBP DT NNS , CD IN WDT VBD VBN IN DT JJ JJ NN , VBP VBN VBN IN NNS . The Syrian headquarters was notorious for the arrest and torture of Lebanese prisoners during its nearly three-decade presence in Lebanon . DT JJ NN VBD JJ IN DT NN CC NN IN JJ NNS IN PRP$ RB JJ NN IN NNP . Authorized by the Arab League , Syria first moved troops into Lebanon in 1976 to try to maintain order one year after the outbreak of the country 's devastating 15-year civil war . VBN IN DT NNP NNP , NNP RB VBD NNS IN NNP IN CD TO VB TO VB NN CD NN IN DT NN IN DT NN POS JJ JJ JJ NN . Damascus was forced to withdraw its troops earlier this year under intense domestic and international pressure after senior Syrian officials were implicated in the murder of former Lebanese prime minister Rafik Hariri . NNP VBD VBN TO VB PRP$ NNS RBR DT NN IN JJ JJ CC JJ NN IN JJ JJ NNS VBD VBN IN DT NN IN JJ JJ JJ NN NNP NNP . Syria has denied any role in the killing . NNP VBZ VBN DT NN IN DT NN . India and Pakistan have begun a trial run of a bus service linking the Sikh holy city of Amritsar in India with the Pakistani city of Lahore . NNP CC NNP VBP VBN DT NN NN IN DT NN NN VBG DT NNP JJ NN IN NNP IN NNP IN DT JJ NN IN NNP . Indian transport officials were on board the yellow bus as it left Amritsar Sunday for the 60-kilometer journey to Lahore . JJ NN NNS VBD IN NN DT JJ NN IN PRP VBD NNP NNP IN DT JJ NN TO VB . The bus crossed into Pakistan at Wagah . DT NN VBD IN NNP IN NNP . A Pakistani bus will carry out a trial run to Amritsar on December 13 , and the full twice-weekly passenger service between the two cities is expected to begin on December 23 . DT JJ NN MD VB RP DT NN NN TO VB IN NNP CD , CC DT JJ JJ NN NN IN DT CD NNS VBZ VBN TO VB IN NNP CD . The bus link is part of efforts started two years ago to ease decades of hostility between India and Pakistan . DT NN NN VBZ NN IN NNS VBD CD NNS RB TO VB NNS IN NN IN NNP CC NNP . In early April , buses started running across divided Kashmir to reunite families , some of whom have been separated for almost 60 years . IN JJ NNP , NNS VBD VBG IN VBN NNP TO VB NNS , DT IN WP VBP VBN VBN IN RB CD NNS . Haiti 's government says it is seeking the arrest of ousted President Jean-Bertrand Aristide on corruption charges . NNP POS NN VBZ PRP VBZ VBG DT NN IN JJ NNP NNP NNP IN NN NNS . Prime Minister Gerard Latortue announced Friday that formal instructions have been sent to the Justice Ministry for an arrest warrant to be issued as quickly as possible . NNP NNP NNP NNP VBD NNP IN JJ NNS VBP VBN VBN TO DT NNP NNP IN DT NN NN TO VB VBN RB RB IN JJ . Mr. Aristide is in exile in South Africa . NNP NNP VBZ IN NN IN NNP NNP . Mr. Latortue made the remarks as the government opened a commission to investigate the charges against Mr. Aristide , who fled Haiti during an armed uprising in February . NNP NNP VBD DT NNS IN DT NN VBD DT NN TO VB DT NNS IN NNP NNP , WP VBD NNP IN DT JJ NN IN NNP . Mr. Aristide 's Miami-based lawyer , Ira Kurzban , says the allegations are politically motivated and have no basis in fact . NNP NNP POS JJ NN , NNP NNP , VBZ DT NNS VBP RB JJ CC VBP DT NN IN NN . Mr. Kurzban also tells VOA the charges are a public relations ploy to divert attention from a government he says was not elected and that is engaged in gross human rights violations . NNP NNP RB VBZ NNP DT NNS VBP DT JJ NNS NN TO VB NN IN DT NN PRP VBZ VBD RB VBN CC DT VBZ VBN IN JJ JJ NNS NNS . Medical personnel in the stricken city of New Orleans are desperately trying to continue to aid patients amid depleting supplies and deteriorating conditions . NNP NNS IN DT JJ NN IN NNP NNP VBP RB VBG TO VB TO VB NNS IN VBG NNS CC JJ NNS . Hospitals are severely crippled in the flooding that has submerged most of the city . NNS VBP RB VBN IN DT NN WDT VBZ VBN JJS IN DT NN . Some patients , including babies , have been airlifted to other facilities . DT NNS , VBG NNS , VBP VBN VBN TO JJ NNS . The Associated Press says doctors from two hospitals have issued a plea for their facilities to be evacuated , saying conditions are dire and they are nearly out of food and emergency power . DT NNP NNP VBZ NNS IN CD NNS VBP VBN DT NN IN PRP$ NNS TO VB VBN , VBG NNS VBP JJ CC PRP VBP RB IN IN NN CC NN NN . In the streets of New Orleans , corpses are lying in the open and anxious refugees are pleading for water and food . IN DT NNS IN NNP NNP , NNS VBP VBG IN DT JJ CC JJ NNS VBP VBG IN NN CC NN . Field hospitals are overwhelmed with the sick . NNP NNS VBP VBN IN DT NN . U.S. officials say shots have been fired at emergency personnel and the security situation remains a problem . NNP NNS VBP NNS VBP VBN VBN IN NN NNS CC DT NN NN VBZ DT NN . The New Orleans mayor has issued a desperate SOS ( plea for help ) . DT NNP NNP NN VBZ VBN DT JJ NNP LRB NN IN NN RRB . China has confirmed that senior envoys from the United States , North Korea , and China met in Beijing this week in an effort to restart six-nation talks on Pyongyang 's nuclear program . NNP VBZ VBN IN JJ NNS IN DT NNP NNPS , NNP NNP , CC NNP VBD IN NNP DT NN IN DT NN TO VB JJ NNS IN NNP POS JJ NN . A Chinese foreign ministry spokesman said Thursday Wednesday 's talks included the top U.S. envoy to the nuclear negotiations , Christopher Hill . DT JJ JJ NN NN VBD NNP NNP POS NNS VBD DT JJ NNP NN TO DT JJ NNS , NNP NNP . Further details were not provided . JJ NNS VBD RB VBN . Wednesday , North Korea 's official news agency confirmed leader Kim Jong il recently visited China , and held talks with Chinese President Hu Jintao . NNP , NNP NNP POS JJ NN NN VBD NN NNP NNP NNP RB VBD NNP , CC VBD NNS IN JJ NNP NNP NNP . It said during the talks Mr. Kim reaffirmed a commitment to rid the Korean Peninsula of nuclear weapons and pursue the six-party talks . PRP VBD IN DT NNS NNP NNP VBD DT NN TO VB DT JJ NNP IN JJ NNS CC VB DT JJ NNS . Pyongyang has demanded that the United States first lift economic sanctions against North Korea as a precondition for returning to the stalled talks . NNP VBZ VBN IN DT NNP NNPS RB VBP JJ NNS IN NNP NNP IN DT NN IN VBG TO DT VBN NNS . Washington has rejected the demand . NNP VBZ VBN DT NN . Ukrainian President Viktor Yushchenko met with leaders of parliamentary factions Tuesday in an effort to end a standoff that has prevented the formation of a new government . JJ NNP NNP NNP VBD IN NNS IN JJ NNS NNP IN DT NN TO VB DT NN WDT VBZ VBN DT NN IN DT JJ NN . Representatives of the country 's pro-Western coalition say talks scheduled for Monday were canceled after Viktor Yanukovych , the leader of the opposition pro-Russian Party of Regions failed to attend . NNS IN DT NN POS JJ NN VBP NNS VBN IN NNP VBD VBN IN NNP NNP , DT NN IN DT NN JJ NN IN NNS VBD TO VB . But a spokesman for the opposition group said the meeting was intended for experts , not top leaders . CC DT NN IN DT NN NN VBD DT NN VBD VBN IN NNS , RB JJ NNS . The pro-Russian party has been blocking parliamentary proceedings for the past week by barring access to the podium . DT JJ NN VBZ VBN VBG JJ NNS IN DT JJ NN IN VBG NN TO DT NN . Party members are dissatisified with the role they have been offered in the new government . NNP NNS VBP VBN IN DT NN PRP VBP VBN VBN IN DT JJ NN . They contend that because they won more seats in parliament than any other group in the March elections , they deserve a bigger role . PRP VBP IN IN PRP VBD JJR NNS IN NN IN DT JJ NN IN DT NNP NNS , PRP VBP DT JJR NN . The pro-Western coalition is made up of three parties that led the 2004 Orange Revolution and brought Mr. Yushchenko to power . DT JJ NN VBZ VBN IN IN CD NNS WDT VBD DT CD NNP NNP CC VBD NNP NNP TO NN . American Andy Roddick , Czech Tomas Berdych and Spaniard David Ferrer have claimed the remaining qualifying spots for the Association of Tennis Professionals ( ATP ) World Tour Finals in London . NNP NNP NNP , JJ NNP NNP CC NN NNP NNP VBP VBN DT VBG VBG NNS IN DT NNP IN NNP NNP LRB NNP RRB NNP NNP NNP IN NNP . The players will be joining Spaniard Rafael Nadal , Swiss Roger Federer , Serbian Novak Djokovic , Scott Andy Murray and Swede Robin Soderling in the eight-man tournament that takes place from November 21 - 28 . DT NNS MD VB VBG NN NNP NNP , JJ NNP NNP , JJ NNP NNP , NNP NNP NNP CC NNP NNP NNP IN DT JJ NN WDT VBZ NN IN NNP CD IN CD . It will be the first appearance at the season finale for 2010 Wimbledon finalist Berdych . PRP MD VB DT JJ NN IN DT NN NN IN CD NNP NN NNP . The final spots were decided when Frenchman Gael Monfils scored a third-round victory over Spain 's Fernando Verdasco at the Paris Masters . DT JJ NNS VBD VBN WRB NNP NNP NNP VBD DT JJ NN IN NNP POS NNP NNP IN DT NNP NNPS . Verdasco needed to reach the final to have any hope of qualifying for the elite indoor hard-court tournament . NNP VBD TO VB DT JJ TO VB DT NN IN VBG IN DT NN JJ NN NN . Russian Nikolay Davydenko defeated Argentine Juan Martin del Potro to claim the 2009 title . JJ NNP NNP VBD JJ NNP NNP NNP NNP TO VB DT CD NN . Neither will be playing in this year 's edition . DT MD VB VBG IN DT NN POS NN . NATO peacekeepers in Bosnia-Herzegovina have raided a business owned by the son-in-law of fugitive Bosnian Serb war crimes suspect Radovan Karadzic . NNP NNS IN NNP VBP VBN DT NN VBN IN DT NN IN JJ JJ JJ NN NNS VBP NNP NNP . Alliance officials say the raid on a photography and electronics business in Pale run by Branislav Jovicevic was aimed at gaining additional information about the supply network assisting Mr. Karadzic and was aimed at disrupting it . NN NNS VBP DT NN IN DT NN CC NNS NN IN NNP VBN IN NNP NNP VBD VBN IN VBG JJ NN IN DT NN NN VBG NNP NNP CC VBD VBN IN VBG PRP . The United Nations war crimes tribunal has indicted Mr. Karadzic for his role in attacks on civilians during the Bosnian conflict of the 1990s . DT NNP NNPS NN NNS JJ VBZ VBN NNP NNP IN PRP$ NN IN NNS IN NNS IN DT JJ NN IN DT NNS . He is believed to be hiding in Bosnia or in neighboring Montenegro . PRP VBZ VBN TO VB VBG IN NNP CC IN JJ NNP . The U.S. military says it has not found the pilot of an F-16 fighter jet that crashed in Iraq Monday . DT NNP NN VBZ PRP VBZ RB VBN DT NN IN DT NN NN NN WDT VBD IN NNP NNP . Officials say the pilot was not at the crash site northwest of Baghdad when U.S. ground forces arrived . NNS VBP DT NN VBD RB IN DT NN NN NN IN NNP WRB NNP NN NNS VBD . The Air Force says it can not confirm whether the pilot is alive or dead . DT NNP NNP VBZ PRP MD RB VB IN DT NN VBZ JJ CC JJ . Military officials say fighter aircraft spotted insurgents in the area of the crash site immediately after the warplane went down . JJ NNS VBP NN NN VBD NNS IN DT NN IN DT NN NN RB IN DT NN VBD RB . Air Force officials say the cause of the crash is being investigated but that it is unlikely the jet was shot down . NNP NNP NNS VBP DT NN IN DT NN VBZ VBG VBN CC IN PRP VBZ JJ DT NN VBD VBN RB . A scientist watches a rocket carrying CARTOSAT-1 and HAMSAT on a screen just before the take-off at Sriharokota , India India has launched a rocket carrying two satellites , as part of the country 's ambitious space program that aims to send a probe to the moon . DT NN VBZ DT NN VBG NNP CC NNP IN DT NN RB IN DT NN IN NNP , NNP NNP VBZ VBN DT NN VBG CD NNS , IN NN IN DT NN POS JJ NN NN WDT VBZ TO VB DT NN TO DT NN . The indigenous high-tech rocket , called the Polar Satellite Launch Vehicle , or PSLAV blasted off from India 's spaceport of Sriharokota on the coast of the Bay of Bengal Thursday . DT JJ NN NN , VBD DT NNP NNP NNP NNP , CC NNP VBD RP IN NNP POS NN IN NNP IN DT NN IN DT NNP IN NNP NNP . Among the two satellites , the heavier CARTOSAT-1 is designed to supply high-resolution pictures for more precise maps for a wide range of uses , including water resources management , town planning and environmental assessment . IN DT CD NNS , DT JJR NN VBZ VBN TO VB JJ NNS IN JJR JJ NNS IN DT JJ NN IN NNS , VBG NN NNS NN , NN NN CC JJ NN . The smaller HAMSAT communication satellite will provide high radio frequencies . DT JJR NNP NN NN MD VB JJ NN NNS . Indian space scientists say they plan to use a version of the PSLAV rocket for their moon mission which they hope to complete by 2008 . JJ NN NNS VBP PRP VBP TO VB DT NN IN DT NNP NN IN PRP$ NN NN WDT PRP VBP TO VB IN CD . Two Lebanese soldiers were killed in fighting , as the army continues its assault against Islamic militants holed up inside a Palestinian refugee camp . CD JJ NNS VBD VBN IN NN , IN DT NN VBZ PRP$ NN IN NNP NNS VBD RP IN DT JJ NN NN . Army officials say the soldiers were killed Wednesday inside the Nahr el-Bared refugee camp in northern Lebanon . NNP NNS VBP DT NNS VBD VBN NNP IN DT NNP JJ NN NN IN JJ NNP . More than 130 people - including 63 soldiers and at least 20 civilians - have been killed since fighting between Lebanese troops and the militant group Fatah al-Islam broke out at the camp more than three weeks ago . JJR IN CD NNS : VBG CD NNS CC IN JJS CD NNS : VBP VBN VBN IN VBG IN JJ NNS CC DT JJ NN NNP NNP VBD RP IN DT NN RBR IN CD NNS RB . Tens of thousands of Palestinian refugees managed to flee the area , but thousands more remain inside . NNS IN NNS IN JJ NNS VBD TO VB DT NN , CC NNS JJR VBP JJ . In related news , the U.S.-based rights group Human Rights Watch has accused the Lebanese army of physically abusing and illegally detaining civilians fleeing the camp . IN JJ NN , DT JJ NNS NN NNP NNP NNP VBZ VBN DT JJ NN IN RB VBG CC RB VBG NNS VBG DT NN . Lebanese officials would not comment on the allegations . JJ NNS MD RB VB IN DT NNS . Oil prices hit new record highs Tuesday on heightened concerns about a potential Turkish incursion into northern Iraq to pursue Kurdish rebels . NN NNS VBD JJ NN NNS NNP IN JJ NNS IN DT JJ JJ NN IN JJ NNP TO VB JJ NNS . The price of U.S. crude for November delivery settled up $ 1.48 at a record $ 87.61 per barrel . DT NN IN NNP NN IN NNP NN VBD RP $ CD IN DT NN $ CD IN NN . Earlier , the price climbed as high as $ 88.2 . RB , DT NN VBD RB JJ IN $ CD . Dealers say there is concern that an escalation of fighting along the Turkish-Iraqi border could affect oil production and pipelines in northern Iraq . NNS VBP EX VBZ NN IN DT NN IN VBG IN DT JJ NN MD VB NN NN CC NNS IN JJ NNP . They say another factor driving up the prices is low supplies of oil in the United States and other consumer nations heading into winter . PRP VBP DT NN VBG RP DT NNS VBZ JJ NNS IN NN IN DT NNP NNPS CC JJ NN NNS VBG IN NN . In a statement Tuesday , the chief of powerful oil cartel OPEC , Abdullah Al-Badri , said the group does not favor higher prices , and insists the market is well-supplied . IN DT NN NNP , DT NN IN JJ NN NN NNP , NNP NNP , VBD DT NN VBZ RB VB JJR NNS , CC VBZ DT NN VBZ JJ . Iraq 's defense ministry says security forces have arrested 93 suspects in an al-Qaida crackdown in the western Anbar province . NNP POS NN NN VBZ NN NNS VBP VBN CD NNS IN DT NNP NN IN DT JJ NNP NN . A defense ministry spokesman , Major General Mohammed al-Askari , said Thursday the arrests included 60 wanted men . DT NN NN NN , NNP NNP NNP NNP , VBD NNP DT NNS VBD CD JJ NNS . He said the detentions resulted from a series of raids launched late Tuesday that included help from police , the army , pro-government tribal forces and members of an anti-al-Qaida militia . PRP VBD DT NNS VBD IN DT NN IN NNS VBN RB NNP WDT VBD NN IN NNS , DT NN , JJ JJ NNS CC NNS IN DT JJ NN . Earlier this week , Iraqi Prime Minister Nouri al-Maliki named security as one of his top priorities after parliament approved cabinet ministers for his new government . RBR DT NN , JJ NNP NNP NNP NNP VBD NN IN CD IN PRP$ JJ NNS IN NN VBD NN NNS IN PRP$ JJ NN . Meanwhile , Iraqi officials say gunmen using silencers have killed a brigadier general and wounded a police lieutenant colonel . RB , JJ NNS VBP NNS VBG NNS VBP VBN DT NN NN CC VBD DT NN NN NN . Both incidents occurred late Wednesday in Baghdad . DT NNS VBD JJ NNP IN NNP . Turkey has detained 10 people with suspected links to the al-Qaida terrorist network . NNP VBZ VBN CD NNS IN JJ NNS TO DT NNP JJ NN . Among those arrested was a lawyer who identified himself as the leader of the group in Turkey . IN DT VBN VBD DT NN WP VBD PRP IN DT NN IN DT NN IN NNP . The official Anatolia news agency said Saturday the suspects were detained in simultaneous operations begun in November in the capital , Ankara , Istanbul and the western city of Izmir . DT JJ NNP NN NN VBD NNP DT NNS VBD VBN IN JJ NNS VBN IN NNP IN DT NN , NNP , NNP CC DT JJ NN IN NNP . Turkey has suffered several attacks blamed on al-Qaida . NNP VBZ VBN JJ NNS VBN IN NNP . In November 2003 , more than 60 people were killed in bombings of two synagogues , the British Consulate and a bank office in Istanbul . IN NNP CD , JJR IN CD NNS VBD VBN IN NNS IN CD NNS , DT JJ NNP CC DT NN NN IN NNP . The United States Supreme Court has ruled that lawsuits are permitted against tobacco companies who allegedly use deceptive tactics to advertise ' light ' brand cigarettes . DT NNP NNP NNP NNP VBZ VBN IN NNS VBP VBN IN NN NNS WP RB VBP JJ NNS TO VB `` JJ `` NN NNS . By a narrow 05-Apr vote Monday , the justices said smokers may use state consumer protection laws to sue companies for the way they promote ' low tar ' or ' light ' cigarettes . IN DT JJ JJ NN NNP , DT NNS VBD NNS MD VB NN NN NN NNS TO VB NNS IN DT NN PRP VBP `` JJ NN `` CC `` JJ `` NNS . The case stems from a class action lawsuit from three residents in the northeastern state of Maine who alleged manufacturers hid information that ' light ' cigarettes are as dangerous as regular ones . DT NN VBZ IN DT NN NN NN IN CD NNS IN DT JJ NN IN NNP WP VBD NNS JJ NN IN `` JJ `` NNS VBP RB JJ IN JJ NNS . Tobacco companies argued that a federal cigarette-labeling law does not allow states to regulate any aspect of cigarette advertising involving smoking and health . NNP NNS VBD IN DT JJ JJ NN VBZ RB VB NNS TO VB DT NN IN NN NN VBG NN CC NN . The high court decision Monday is a blow to Altria Group 's Philip Morris unit and other tobacco companies , who face scores of similar lawsuits across the country . DT JJ NN NN NNP VBZ DT NN TO NNP NNP POS NNP NNP NN CC JJ NN NNS , WP VBP NNS IN JJ NNS IN DT NN . The European Union has announced a $ 195 million humanitarian aid package for 10 African nations , including Sudan and the Democratic Republic of Congo . DT NNP NNP VBZ VBN DT $ CD CD JJ NN NN IN CD JJ NNS , VBG NNP CC DT JJ NNP IN NNP . EU Development Commissioner Louis Michel says millions of Africans remain vulnerable to ' silent tsunamis ' such as droughts , floods and armed conflicts . NNP NNP NNP NNP NNP VBZ NNS IN NNS VBP JJ TO `` JJ NNS `` JJ IN NNS , NNS CC JJ NNS . Nearly $ 57 million has been earmarked to help displaced persons return to Sudan 's violence-plagued Darfur region , while $ 45 million will be spent to improve health care for women and children in the war weary Congo . RB $ CD CD VBZ VBN VBN TO VB JJ NNS NN TO NNP POS JJ NNP NN , IN $ CD CD MD VB VBN TO VB NN NN IN NNS CC NNS IN DT NN JJ NNP . The rest of the money will fund aid efforts in Uganda , Burundi , Comoros , Liberia , Ivory Coast , Madagascar , Chad and Tanzania . DT NN IN DT NN MD VB NN NNS IN NNP , NNP , NNP , NNP , NNP NNP , NNP , NNP CC NNP . The money will be funneled through several humanitarian aid organizations , including the United Nations and Red Cross . DT NN MD VB VBN IN JJ JJ NN NNS , VBG DT NNP NNPS CC NNP NNP . Leaders of Germany 's two main political parties will hold a special meeting Thursday to determine who should lead a so-called ' grand coalition ' government , after last month 's general election ended without a clear winner . NNS IN NNP POS CD JJ JJ NNS MD VB DT JJ NN NNP TO VB WP MD VB DT JJ `` JJ NN `` NN , IN JJ NN POS JJ NN VBD IN DT JJ NN . The announcement followed Wednesday 's third round of coalition talks between Christian Democratic leader Angela Merkel and Chancellor Gerhard Schroeder , who heads the ruling Social Democrats . DT NN VBD NNP POS JJ NN IN NN NNS IN NNP JJ NN NNP NNP CC NNP NNP NNP , WP VBZ DT NN NNP NNPS . Ms. Merkel , who is battling to become chancellor , told reporters she is more optimistic than pessimistic . NNP NNP , WP VBZ VBG TO VB NN , VBD NNS PRP VBZ RBR JJ IN JJ . The Social Democrats have insisted that Mr. Schroeder remain in office even though the Christian Democrats hold a slight lead in parliament after recent elections . DT NNP NNPS VBP VBN IN NNP NNP VBP IN NN RB IN DT NNP NNPS VBP DT JJ NN IN NN IN JJ NNS . Both parties failed to win enough seats to govern with their respective small party allies . DT NNS VBD TO VB JJ NNS TO VB IN PRP$ JJ JJ NN NNS . A poll released Wednesday shows 34 percent of Germans supporting Ms. Merkel as chancellor and 26 percent for Mr. Schroeder . DT NN VBN NNP VBZ CD NN IN NNS VBG NNP NNP IN NN CC CD NN IN NNP NNP . U.S. and Iraqi officials say insurgents killed at least 13 people in several attacks across Iraq Monday . NNP CC JJ NNS VBP NNS VBN IN JJS CD NNS IN JJ NNS IN NNP NNP . The officials say two car bombs in western Baghdad killed five people each . DT NNS VBP CD NN NNS IN JJ NNP VBD CD NNS DT . One of the cars exploded near a courthouse . CD IN DT NNS VBD IN DT NN . Insurgents killed at least two people in drive-by shootings outside the capital . NNS VBD IN JJS CD NNS IN JJ NNS IN DT NN . Elsewhere , the U.S. military in Iraq says a roadside bomb killed an American soldier southeast of Baghdad . RB , DT NNP NN IN NNP VBZ DT NN NN VBD DT JJ NN NN IN NNP . And the bodies of two Iraqi journalists were found Monday , one day after they were abducted . CC DT NNS IN CD JJ NNS VBD VBN NNP , CD NN IN PRP VBD VBN . Authorities also found the bodies of three police commandos kidnapped last week . NNS RB VBD DT NNS IN CD NNS VBZ VBN JJ NN . In a separate statement , the U.S. military says troops killed Ali Wali , an explosives expert and member of the Ansar al-Islam terrorist group , during a counterterrorist raid in ( the Mansur district of ) Baghdad on Saturday . IN DT JJ NN , DT NNP NN VBZ NNS VBD NNP NNP , DT NNS NN CC NN IN DT NNP NNP JJ NN , IN DT NN NN IN LRB DT NNP NN IN RRB NNP IN NNP . Heather Mills vows she 's ready to hit the dance floor on U.S. television . NNP NNP VBZ PRP VBZ JJ TO VB DT NN NN IN NNP NN . The model-turned-activist , currently divorcing her husband of four years , Paul McCartney , says her decision to compete on the popular U.S. TV series Dancing With The Stars is no publicity stunt . DT NN , RB VBG PRP$ NN IN CD NNS , NNP NNP , VBZ PRP$ NN TO VB IN DT JJ NNP NN NN VBG IN DT NNP VBZ DT NN NN . Mills , who lost her left leg below the knee in a 1993 motorcycle accident , will be the show 's first contestant with an artificial limb . NNP , WP VBD PRP$ JJ NN IN DT NN IN DT CD NN NN , MD VB DT NN POS JJ NN IN DT JJ NN . She will dance with a sleeve over her prosthesis to prevent it slipping off , and says she also has a spare if necessary . PRP MD VB IN DT NN IN PRP$ NN TO VB PRP VBG RP , CC VBZ PRP RB VBZ DT JJ IN JJ . Heather Mills plans to donate her appearance fee to the animal rights organization Viva . NNP NNP VBZ TO VB PRP$ NN NN TO DT NN NNS NN NNP . One of the highest-rated shows on U.S. television , Dancing With The Stars begins its fourth season on March 19 . CD IN DT JJ NNS IN NNP NN , VBG IN DT NNP VBZ PRP$ JJ NN IN NNP CD . At least 30 people were killed in a theater fire that broke out Monday night in the Egyptian town of Beni Suef , about 100 kilometers south of Cairo . IN JJS CD NNS VBD VBN IN DT NN NN WDT VBD RP NNP NN IN DT JJ NN IN NNP NNP , IN CD NNS RB IN NNP . At least 45 were injured . IN JJS CD VBD VBN . Candles being used by performers came into contact with the stage curtains during a play , panicking the crowd of about 1000 people who fled the theater . NNS VBG VBN IN NNS VBD IN NN IN DT NN NNS IN DT NN , VBG DT NN IN IN CD NNS WP VBD DT NN . Some of the victims are believed to have been trampled underfoot . DT IN DT NNS VBP VBN TO VB VBN VBN NN . Senate Democrats are asking President Bush not to choose a hard-line conservative to replace retiring U.S. Supreme Court Justice Sandra Day O'Connor . NNP NNPS VBP VBG NNP NNP RB TO VB DT JJ JJ TO VB VBG NNP NNP NNP NNP NNP NNP NNP . Senate Minority Leader Harry Reid said the president should nominate a candidate ' whose views are within the broad constitutional mainstream , ' as former President Ronald Reagan did when he nominated Ms. O'Connor . NNP NNP NNP NNP NNP VBD DT NN MD VB DT NN `` WP$ NNS VBP IN DT JJ JJ NN , `` IN JJ NNP NNP NNP VBD WRB PRP VBD NNP NNP . She was approved by the Senate unanimously . PRP VBD VBN IN DT NNP RB . Senator Ted Kennedy said Democrats will oppose a candidate who , in his words , wants to roll back the freedoms of the American people . NNP NNP NNP VBD NNPS MD VB DT NN WP , IN PRP$ NNS , VBZ TO VB RP DT NNS IN DT JJ NNS . Mr. Bush and Senate Democrats waged an extended political battle earlier this year over several of the president 's nominees for U.S. appeals court positions . NNP NNP CC NNP NNPS VBD DT JJ JJ NN RBR DT NN IN NN IN DT NN POS NNS IN NNP NNS NN NNS . A Supreme Court nominee has to win a majority of Senate votes for confirmation . DT NNP NNP NN VBZ TO VB DT NN IN NNP NNS IN NN . Republicans control the Senate by a 55-to-45 margin . NNPS VBP DT NNP IN DT JJ NN . A Nigerian militant group has released the nationalities of seven hostages abducted Sunday from an offshore oil rig in Akwa Ibom state . DT JJ JJ NN VBZ VBN DT NNS IN CD NNS VBN NNP IN DT JJ NN NN IN NNP NNP NN . The Movement for the Emancipation of the Niger Delta said Friday its hostages are two Americans , two French nationals , one Canadian and two Indonesians . DT NN IN DT NN IN DT NNP NNP VBD NNP PRP$ NNS VBP CD NNS , CD JJ NNS , CD JJ CC CD NNS . MEND says they are in good health . NNP VBZ PRP VBP IN JJ NN . The seven were abducted during an attack on a rig operated by Afren . DT CD VBD VBN IN DT NN IN DT NN VBN IN NNP . At least two of the rig 's crew members were wounded in the attack and left on the rig . IN JJS CD IN DT NN POS NN NNS VBD VBN IN DT NN CC VBN IN DT NN . U.S. State Department spokesman P.J. Crowley said earlier this week that the United States is working with Nigerian officials to secure freedom for the hostages . NNP NNP NNP NN NNP NNP VBD RBR DT NN IN DT NNP NNPS VBZ VBG IN JJ NNS TO VB NN IN DT NNS . The Niger Delta is home to criminal gangs that steal oil and take hostages for ransom . DT NNP NNP VBZ NN TO JJ NNS WDT VBP NN CC VB NNS IN NN . The region also has militants who say they are fighting for a fairer distribution of oil wealth . DT NN RB VBZ NNS WP VBP PRP VBP VBG IN DT JJR NN IN NN NN . South Korea 's Defense Ministry says the country will draw up plans by the end of June to withdraw its remaining troops from Iraq . NNP NNP POS NNP NNP VBZ DT NN MD VB RP NNS IN DT NN IN NNP TO VB PRP$ VBG NNS IN NNP . The ministry said Friday , that a plan on the termination of the mission will be sent to parliament . DT NN VBD NNP , IN DT NN IN DT NN IN DT NN MD VB VBN TO NN . Speaking in Seoul Thursday , visiting Iraqi Prime Minister Nouri al-Maliki said South Korea can begin reducing its troops in northern Iraq next month , after Iraqi forces take over security in the Kurdish region . VBG IN NNP NNP , VBG JJ NNP NNP NNP NNP VBD NNP NNP MD VB VBG PRP$ NNS IN JJ NNP JJ NN , IN JJ NNS VBP RP NN IN DT JJ NN . South Korea sent nearly 3600 soldiers to Iraq in 2004 - the third-largest contingent after the United States and Britain . NNP NNP VBD RB CD NNS TO NNP IN CD IN DT JJ JJ IN DT NNP NNPS CC NNP . Seoul has been gradually withdrawing its troops since then . NNP VBZ VBN RB VBG PRP$ NNS IN RB . Mr. Maliki is the highest-ranking Iraqi official to visit South Korea since the Iraqi government took office last May . NNP NNP VBZ DT JJ JJ NN TO VB NNP NNP IN DT JJ NN VBD NN JJ NNP . During his three-day visit , he also urged South Korean companies to take part in his country 's postwar reconstruction projects . IN PRP$ JJ NN , PRP RB VBD JJ JJ NNS TO VB NN IN PRP$ NN POS JJ NN NNS . Regulators say they will publish results of a special examination of the 19 largest U.S. banks on May 4 . NNS VBP PRP MD VB NNS IN DT JJ NN IN DT CD JJS NNP NNS IN NNP CD . Worries that the large banks might not be strong enough to cope with a deepening recession prompted officials to institute a series of ' stress tests . ' NNS IN DT JJ NNS MD RB VB JJ RB TO VB IN DT VBG NN VBD NNS TO VB DT NN IN `` NN NNS . `` Experts looked over the banks ' assets and tried to figure out if they would need financial help if unemployment rose even higher or other economic conditions deteriorated . NNS VBD IN DT NNS POS NNS CC VBD TO VB RP IN PRP MD VB JJ NN IN NN VBD RB JJR CC JJ JJ NNS VBD . A suspected U.S. missile strike has killed two people in Pakistan 's North Waziristan tribal region . DT JJ NNP NN NN VBZ VBN CD NNS IN NNP POS NNP NNP JJ NN . Pakistani intelligence officials say the strike Saturday hit a house near the region 's main town of Miran Shah . JJ NN NNS VBP DT NN NNP VBD DT NN IN DT NN POS JJ NN IN NNP NNP . The Pakistani government has strongly condemned the suspected U.S. strikes in the country , saying they undermine Pakistan 's counter-terrorism efforts . DT JJ NN VBZ RB VBN DT JJ NNP NNS IN DT NN , VBG PRP VBP NNP POS NN NNS . Pakistan 's defense minister , Ahmed Mukhtar , says officials will meet in early December to discuss the strikes , which allegedly are carried out by unmanned ( drone ) U.S. aircraft . NNP POS NN NN , NNP NNP , VBZ NNS MD VB IN JJ NNP TO VB DT NNS , WDT RB VBP VBN RP IN JJ LRB NN RRB NNP NN . Iran says it stands by its U.N. commitments not to use violence against another country , amid international criticism over the Iranian president 's call for Israel 's destruction . NNP VBZ PRP VBZ IN PRP$ NNP NNS RB TO VB NN IN DT NN , IN JJ NN IN DT JJ NN POS NN IN NNP POS NN . The foreign ministry said Saturday Iran has never resorted to , nor threatened to resort to force against another country . DT JJ NN VBD NNP NNP VBZ RB VBN TO , CC VBD TO VB IN NN IN DT NN . Iranian President Mahmoud Ahmadinejad caused an international outcry on Wednesday by saying Israel should be ' wiped off the map . ' JJ NNP NNP NNP VBD DT JJ NN IN NNP IN VBG NNP MD VB `` VBN RP DT NN . `` He stood by those comments Friday during massive anti-Israeli protests in Tehran . PRP VBD IN DT NNS NNP IN JJ JJ NNS IN NNP . Palestinian chief negotiator Saeb Erekat said Palestinians have recognized Israel 's right to exist . JJ NN NN NNP NNP VBD NNS VBP VBN NNP POS NN TO VB . He said what the international community should be discussing is adding a Palestinian state to the map , not wiping Israel from it . PRP VBD WP DT JJ NN MD VB VBG VBZ VBG DT JJ NN TO DT NN , RB VBG NNP IN PRP . Friday , the U.N. Security Council condemned the Iranian president 's remarks . NNP , DT NNP NNP NNP VBD DT JJ NN POS NNS . Iraqi officials say a car bomb has exploded in northern Baghdad , killing at least seven people . JJ NNS VBP DT NN NN VBZ VBN IN JJ NNP , VBG IN JJS CD NNS . Authorities say the blast in the Kadhimiya district on Wednesday evening injured at least 14 others . NNS VBP DT NN IN DT NNP NN IN NNP NN NN IN JJS CD NNS . Bomb attacks and other violence Wednesday in Iraq killed about 50 people overall , many in the Baghdad area . NN NNS CC JJ NN NNP IN NNP VBD IN CD NNS JJ , JJ IN DT NNP NN . The attacks included a roadside bomb blast that killed five police officers in Samarra , north of the capital , while gunmen killed four policemen in an ambush near Kirkuk . DT NNS VBD DT NN NN NN WDT VBD CD NNS NNS IN NNP , NN IN DT NN , IN NNS VBD CD NNS IN DT NN IN NNP . In other news , the U.S. military says a high-level al-Qaida leader , Mehmet Yilmaz , and his associate Mehmet Resit Isik were killed in a coalition raid Saturday south of Hawija . IN JJ NN , DT NNP NN VBZ DT JJ NNP NN , NNP NNP , CC PRP$ JJ NNP NNP NNP VBD VBN IN DT NN NN NNP NN IN NNP . A military spokesman described the men as dangerous and significant international terrorists . DT JJ NN VBD DT NNS IN JJ CC JJ JJ NNS . The military also announced the combat-related deaths of two U.S. troops , one in eastern Baghdad Wednesday and the other in al-Anbar province on Tuesday . DT NN RB VBD DT JJ NNS IN CD NNP NNS , CD IN JJ NNP NNP CC DT JJ IN JJ NN IN NNP . A leading American newspaper says police and security forces in the northern Iraqi city of Kirkuk have abducted hundreds of Arabs and Turkmens - sometimes with the knowledge of U.S. forces in the region . DT JJ JJ NN VBZ NNS CC NN NNS IN DT JJ JJ NN IN NNP VBP VBN NNS IN NNS CC NNS : RB IN DT NN IN NNP NNS IN DT NN . Citing U.S. government documents and victims ' families , the Washington Post said the men have been abducted in raids led by Kurdish political parties and the detainees transferred secretly to prisons in Kurdish cities in northern Iraq . VBG NNP NN NNS CC NNS POS NNS , DT NNP NNP VBD DT NNS VBP VBN VBN IN NNS VBN IN NNP JJ NNS CC DT NNS VBD RB TO NNS IN JJ NNS IN JJ NNP . The newspaper says it has obtained a confidential U.S. State Department cable addressed to the White House , the Defense Department and the U.S. Embassy in Baghdad that raises concern about the unlawful detentions and transfers . DT NN VBZ PRP VBZ VBN DT JJ NNP NNP NNP NN VBD TO DT NNP NNP , DT NNP NNP CC DT NNP NNP IN NNP WDT VBZ NN IN DT JJ NNS CC NNS . Kirkuk is claimed by three Iraqi ethnic groups - Kurds , Arabs and Turkmens . NNP VBZ VBN IN CD JJ JJ NNS : NNPS , NNS CC NNPS . There has been a sharp rise of violence and tension in the oil-rich city in recent months EX VBZ VBN DT JJ NN IN NN CC NN IN DT JJ NN IN JJ NNS President Bush plans to meet Turkish Prime Minister Recep Tayyip Erdogan in Washington next month for talks on cooperation in the war against terrorism . NNP NNP VBZ TO VB JJ NNP NNP NNP NNP NNP IN NNP JJ NN IN NNS IN NN IN DT NN IN NN . The White House released a statement Tuesday that said the talks will be held October second and will include discussion on how to counter Kurdish rebels in Turkey . DT NNP NNP VBD DT NN NNP WDT VBD DT NNS MD VB VBN NNP JJ CC MD VB NN IN WRB TO VB JJ NNS IN NNP . The statement said the two leaders also will discuss ways to advance freedom in Lebanon , Iraq and other parts of the Middle East . DT NN VBD DT CD NNS RB MD VB NNS TO VB NN IN NNP , NNP CC JJ NNS IN DT NNP NNP . And they will talk about political and economic reforms in Turkey , as well as U.S. support for Turkey 's efforts to join the European Union . CC PRP MD VB IN JJ CC JJ NNS IN NNP , RB RB IN NNP NN IN NNP POS NNS TO VB DT NNP NNP . The human rights group Amnesty International has issued a critical report charging that Israel prevents Palestinians in the occupied West Bank and Gaza Strip from receiving adequate water supplies . DT JJ NNS NN NNP NNP VBZ VBN DT JJ NN VBG IN NNP VBZ NNS IN DT JJ NNP NNP CC NNP NNP IN VBG JJ NN NNS . The report , issued Tuesday , says Israel is pumping more than its share of water from an aquifer it controls in the West Bank . DT NN , VBN NNP , VBZ NNP VBZ VBG JJR IN PRP$ NN IN NN IN DT NN PRP VBZ IN DT NNP NNP . According to Amnesty , on a per-capita basis , Israelis use four times as much water as Palestinians , whose water supply is far below the minimum recommended by the World Health Organization . VBG TO NNP , IN DT JJ NN , NNS VBP CD NNS RB RB NN IN NNS , WP$ NN NN VBZ RB IN DT NN VBN IN DT NNP NNP NNP . Israeli officials say the Amnesty report is biased and incorrect . JJ NNS VBP DT JJ NN VBZ JJ CC JJ . They contend water shortages result from the Palestinians ' failure to develop their own water infrastructure . PRP VBP NN NNS VBP IN DT NNS POS NN TO VB PRP$ JJ NN NN . The scarcity of water in Israel and the Palestinian territories has led to steep price increases for all residents . DT NN IN NN IN NNP CC DT JJ NNS VBZ VBN TO JJ NN NNS IN DT NNS . U.N. Secretary-General Ban Ki-moon is offering to hold an international summit on global finance reform by early December . NNP NNP NNP NNP VBZ VBG TO VB DT JJ NN IN JJ NN NN IN JJ NNP . The secretary-general Saturday agreed to host the gathering at the U.N. headquarters in the northeastern U.S. state of New York . DT JJ NNP VBD TO VB DT NN IN DT NNP NN IN DT JJ NNP NN IN NNP NNP . Mr. Ban says French President Nicolas Sarkozy , who holds the rotating EU presidency , has agreed to the gathering . NNP NNP VBZ JJ NNP NNP NNP , WP VBZ DT VBG NNP NN , VBZ VBN TO DT NN . The U.N. chief says it is important to work quickly to reform the global financial system . DT NNP NN VBZ PRP VBZ JJ TO VB RB TO VB DT JJ JJ NN . In September , President Sarkozy told the U.N. General Assembly the international community has a political and moral responsibility to act quickly . IN NNP , NNP NNP VBD DT NNP NNP NNP DT JJ NN VBZ DT JJ CC JJ NN TO VB RB . Mr. Sarkozy called for the creation of global institutions to regulate and rebuild the financial system . NNP NNP VBD IN DT NN IN JJ NNS TO VB CC VB DT JJ NN . U.S. Government experts are drawing a more complete picture of hurricane damage to the southern United States . NNP NN NNS VBP VBG DT RBR JJ NN IN NN NN TO DT JJ NNP NNPS . The Commerce Department said Friday , Hurricane Katrina caused $ 100 billion in damage that will not be covered by insurance . DT NNP NNP VBD NNP , NNP NNP VBD $ CD CD IN NN WDT MD RB VB VBN IN NN . Higher energy prices sparked by hurricanes also helped to depress one measure of consumer spending by about one percent - the steepest drop since the terror attacks in 2001 . JJR NN NNS VBN IN NNS RB VBD TO VB CD NN IN NN NN IN IN CD NN IN DT JJS NN IN DT NN NNS IN CD . Experts track consumer spending because consumer demand drives most U.S. economic activity . NNS VBP NN NN IN NN NN VBZ RBS NNP JJ NN . A separate report from the non-partisan Congressional Budget Office on Thursday says the hurricanes will temporarily cut U.S. economic growth by about 0.5 percent . DT JJ NN IN DT JJ NNP NNP NNP IN NNP VBZ DT NNS MD RB VB NNP JJ NN IN IN CD NN . That is less than first thought , and the CBO says the reduction will probably be offset by a surge of rebuilding activity by early next year . DT VBZ JJR IN JJ NN , CC DT NNP VBZ DT NN MD RB VB VBN IN DT NN IN NN NN IN JJ JJ NN . Russia 's natural gas firm Gazprom is seeking at least a threefold increase in the price for gas sold to Belarus next year . NNP POS JJ NN NN NNP VBZ VBG IN JJS DT JJ NN IN DT NN IN NN VBN TO NNP JJ NN . The firm 's deputy chairman , Alexander Ryazanov , said Tuesday that the two sides will negotiate a price but stressed that the hike would be an economic decision , not a political one . DT NN POS NN NN , NNP NNP , VBD NNP IN DT CD NNS MD VB DT NN CC VBD IN DT NN MD VB DT JJ NN , RB DT JJ NN . He said Belarus is the only member of the Commonwealth of Independent States not paying market prices for Russian gas . PRP VBD NNP VBZ DT JJ NN IN DT NNP IN NNP NNPS RB VBG NN NNS IN JJ NN . Ryazanov said Belarus now pays about $ 47 for 1,000 cubic meters of gas . NNP VBD NNP RB VBZ IN $ CD IN CD JJ NNS IN NN . The world price stands at about $ 230 per 1,000 cubic meters . DT NN NN VBZ IN IN $ CD IN CD JJ NNS . Earlier this year , Gazprom temporarily shut off gas supplies to Ukraine when Kiev initially refused to pay a sharp hike in prices . RBR DT NN , NNP RB VBD RP NN NNS TO VB WRB NNP RB VBD TO VB DT JJ NN IN NNS . Pakistan and India have opened a fifth and final crossing point along the Line of Control in the divided Kashmir region to exchange earthquake relief aid . NNP CC NNP VBP VBN DT JJ CC JJ VBG NN IN DT NN IN NN IN DT VBN NNP NN TO VB NN NN NN . Officials say permission to people to cross the de~facto border will be given at a later date . NNS VBP NN TO NNS TO VB DT JJ NN MD VB VBN IN DT JJ NN . Meanwhile , British military helicopters have joined the airlift of relief supplies from the capital of Pakistani Kashmir , Muzaffarabad , to remote villages devastated by October 8 quake . RB , JJ JJ NNS VBP VBN DT NN IN NN NNS IN DT NN IN JJ NNP , NNP , TO VB NNS VBN IN NNP CD NN . Aid agencies and governments are trying to help quake survivors before the harsh Himalayan winter sets in . JJ NNS CC NNS VBP VBG TO VB NN NNS IN DT JJ JJ NN NNS IN . Donors are to meet in Islamabad on Saturday . NNS VBP TO VB IN NNP IN NNP . President Pervez Musharraf has appealed for more than five billion dollars for quake relief and reconstruction . NNP NNP NNP VBZ VBN IN JJR IN CD CD NNS IN NN NN CC NN . He also says the disaster presents an opportunity for Pakistan and India to resolve their long-running dispute over Kashmir . PRP RB VBZ DT NN VBZ DT NN IN NNP CC NNP TO VB PRP$ JJ NN IN NNP . The Pakistani president said the final and most accurate death toll in the quake now stands at more than 73,000 . DT JJ NN VBD DT JJ CC RBS JJ NN NN IN DT NN RB VBZ IN JJR IN CD . A relatively strong earthquake rocked southeastern Iran , Saturday , a day after a 5.7 magnitude quake shook a northeastern province , injuring at least 170 people . DT RB JJ NN VBD JJ NNP , NNP , DT NN IN DT CD NN NN VBD DT JJ NN , VBG IN JJS CD NNS . Iranian state media say Saturday 's quake had a 5.7 magnitude . JJ NN NNS VBP NNP POS NN VBD DT CD NN . The U.S. Geological Survey says it had a magnitude of 5.3 . DT NNP NNP NNP VBZ PRP VBD DT NN IN CD . The quake jolted the Negar region of Kerman province around mid-morning , local time . DT NN VBD DT JJ NN IN NNP NN IN NN , JJ NN . There have been no reports of damage or injuries . EX VBP VBN DT NNS IN NN CC NNS . The U.S. Geological Survey says Friday 's quake was centered near the northeastern city of Torbat-e-Heydariyeh . DT NNP NNP NNP VBZ NNP POS NN VBD VBN IN DT JJ NN IN NNP . Iran is located on major seismic fault lines . NNP VBZ VBN IN JJ JJ NN NNS . The worst recent quake in Iran occurred in 2003 , killing about 30,000 people and destroying much of the ancient southern city of Bam . DT JJS JJ NN IN NNP VBD IN CD , VBG IN CD NNS CC VBG NN IN DT JJ JJ NN IN NNP . Lindsay Lohan has reportedly checked into a Utah rehabilitation center . NNP NNP VBZ RB VBN IN DT NNP NN NN . CBS News reports the 21-year-old actress has checked into the Cirque Lodge drug and alcohol treatment center in Sundance , Utah . NNP NNP VBZ DT JJ NN VBZ VBN IN DT NNP NNP NN CC NN NN NN IN NNP , NNP . It would be her third stint in rehab , following two stays at Wonderland and Promises in the Los Angeles area . PRP MD VB PRP$ JJ NN IN NN , VBG CD NNS IN NNP CC NNP IN DT NNP NNP NN . Town and Country Magazine recently named Cirque Lodge as one of the nation 's top substance abuse treatment facilities . NNP CC NNP NNP RB VBD NNP NNP IN CD IN DT NN POS JJ NN NN NN NNS . The New York Post reported that Lohan had on August 3 gone to her mother 's home on Long Island . DT NNP NNP NNP VBD IN NNP VBD IN NNP CD VBN TO PRP$ NN POS NN IN NNP NNP . The exact day of her reported check-in to Cirque Lodge is not known . DT JJ NN IN PRP$ VBN NN TO NNP NNP VBZ RB VBN . Lohan 's representatives did not comment on her whereabouts . NNP POS NNS VBD RB VB IN PRP$ NNS . She is due in court in Santa Monica , CA on August 24 , when she faces charges from her July 24 arrest for suspicion of driving under the influence and driving on a suspended license . PRP VBZ JJ IN NN IN NNP NNP , NNP IN NNP CD , WRB PRP VBZ NNS IN PRP$ NNP CD NN IN NN IN VBG IN DT NN CC VBG IN DT JJ NN . She also faces previous DUI-related charges . PRP RB VBZ JJ JJ NNS . Officials say the clinic in Mexico where Coretta Scott King died has been shut down . NNS VBP DT NN IN NNP WRB NNP NNP NNP VBD VBZ VBN VBN RP . The health department in Mexico 's Baja California state announced the closure of the Hospital Santa Monica Thursday because it was performing some procedures without authorization . DT NN NN IN NNP POS NN NNP NN VBD DT NN IN DT NNP NNP NNP NNP IN PRP VBD VBG DT NNS IN NN . The statement said the alternative-medicine clinic , located some 26 kilometers south of San Diego , was performing surgeries , X-rays and unconventional treatments without permission . DT NN VBD DT JJ NN , VBN DT CD NNS RB IN NNP NNP , VBD VBG NNS , NNS CC JJ NNS IN NN . It also said unknown substances were found there . PRP RB VBD JJ NNS VBD VBN RB . A spokesman for the clinic told the Atlanta Journal-Constitution newspaper Friday that Mrs. King was only receiving nutrition and had not yet started treatments . DT NN IN DT NN VBD DT NNP NNP NN NNP IN NNP NNP VBD RB VBG NN CC VBD RB RB VBN NNS . She checked into the clinic January 26 , suffering from ovarian cancer and the effects of a stroke and heart attack sustained last year . PRP VBD IN DT NN NNP CD , VBG IN JJ NN CC DT NNS IN DT NN CC NN NN VBD JJ NN . North Korea has rejected a recent United Nations resolution that criticized Pyongyang 's human rights record . NNP NNP VBZ VBN DT JJ NNP NNP NN WDT VBD NNP POS JJ NNS NN . North Korea 's foreign ministry said the report was politically motivated and baseless . NNP NNP POS JJ NN VBD DT NN VBD RB JJ CC JJ . Last week , the 53-country U.N. Human Rights Commission passed a resolution condemning what it called ' systematic ' violations of human rights in North Korea . JJ NN , DT JJ NNP NNP NNP NNP VBD DT NN VBG WP PRP VBD `` JJ `` NNS IN JJ NNS IN NNP NNP . The vote was 30 to nine . DT NN VBD CD TO CD . The U.S. State Department says North Korea remains one of the most repressive countries in the world , where an estimated 1,50,000 to 2,00,000 people are held in detention camps for political reasons . DT NNP NNP NNP VBZ NNP NNP VBZ CD IN DT RBS JJ NNS IN DT NN , WRB DT VBN CD TO CD NNS VBP VBN IN NN NNS IN JJ NNS . It says defectors report many prisoners have died from torture , starvation , disease or exposure . PRP VBZ NNS VBP JJ NNS VBP VBN IN NN , NN , NN CC NN . Several Burmese government departments reportedly are preparing to move from Rangoon to a more secure location , as protection against what leaders of the military junta fear might be a possible U.S. invasion . JJ JJ NN NNS RB VBP VBG TO VB IN NNP TO DT RBR JJ NN , IN NN IN WP NNS IN DT JJ NN NN MD VB DT JJ NNP NN . News reports from the Burmese capital quote diplomatic analysts as saying the Ministries of Agriculture , Defense , Energy and Information will relocate to Pyinmana , just over 150 kilometers north of Rangoon , within a few months . NNP NNS IN DT JJ NN VBZ JJ NNS IN VBG DT NNS IN NNP , NNP , NNP CC NNP MD VB TO NNP , RB IN CD NNS RB IN NNP , IN DT JJ NNS . A series of major construction projects in the area already has begun , with office buildings , bunkers , hospitals , underground tunnels and military airstrips reportedly nearing completion . DT NN IN JJ NN NNS IN DT NN RB VBZ VBN , IN NN NNS , NNS , NNS , JJ NNS CC JJ NNS RB VBG NN . Pyinmana , in central Burma , was the military headquarters of Burma 's resistance movement against occupying Japanese forces during World War II , and the rugged area also served as a hideout for Communist insurgents . NNP , IN JJ NNP , VBD DT JJ NN IN NNP POS NN NN IN VBG JJ NNS IN NNP NNP NNP , CC DT JJ NN RB VBD IN DT NN IN JJ NNS . Some analysts say the ruling generals fear an Iraq-style invasion by the United States and want a defensible fallback position . DT NNS VBP DT NN NNS VBP DT JJ NN IN DT NNP NNPS CC VBP DT JJ NN NN . The head of the United Nations mission in Kosovo is in Belgrade for two days of talks with top Serbian officials . DT NN IN DT NNP NNPS NN IN NNP VBZ IN NNP IN CD NNS IN NNS IN JJ JJ NNS . U.N. representative Soren Jessen-Petersen met Sunday with Serbia-Montenegro 's Foreign Minister Vuk Draskovic . NNP NN NNP NNP VBD NNP IN NNP POS NNP NNP NNP NNP . A statement later issued by Mr. Draskovic 's office said that he had demanded protection for the province 's Serb minority . DT NN RB VBN IN NNP NNP POS NN VBD IN PRP VBD VBN NN IN DT NN POS JJ NN . On Monday , Mr. Jessen-Petersen is scheduled to meet with Serbian President Boris Tadic and Prime Minister Vojislav Kostunica . IN NNP , NNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP CC NNP NNP NNP NNP . Talks on the province 's future between Kosovo 's ethnic Albanian-led government and Serbian leaders are due to begin later this year . NNS IN DT NN POS NN IN NNP POS JJ JJ NN CC JJ NNS VBP JJ TO VB RB DT NN . Kosovo 's ethnic Albanian majority wants independence , while its Serb minority wants the province to remain part of Serbia . NNP POS JJ JJ NN VBZ NN , IN PRP$ JJ NN VBZ DT NN TO VB NN IN NNP . The U.N. has been administering the area since 1999 . DT NNP VBZ VBN VBG DT NN IN CD . Former Pakistani Prime Minister Nawaz Sharif is calling on the U.S. to abandon ties to President Pervez Musharraf . JJ JJ NNP NNP NNP NNP VBZ VBG IN DT NNP TO VB NNS TO NNP NNP NNP . During an appearance on Voice of America , Mr. Sharif said Pakistan was going through a major security and political crisis and that President Musharraf should be excluded from the national government . IN DT NN IN NNP IN NNP , NNP NNP VBD NNP VBD VBG IN DT JJ NN CC JJ NN CC IN NNP NNP MD VB VBN IN DT JJ NN . Mr. Sharif also said the government has done nothing to improve security after the December 27 assassination of former prime minister Benazir Bhutto . NNP NNP RB VBD DT NN VBZ VBN DT TO VB NN IN DT NNP CD NN IN JJ JJ NN NNP NNP . He criticized his own security detail , saying he had not been given a bullet and bomb-proof vehicle . PRP VBD PRP$ JJ NN NN , VBG PRP VBD RB VBN VBN DT NN CC JJ NN . Mr. Sharif has accused President Musharraf of ordering anti-terror operations that have left the country ' drowned in blood . ' NNP NNP VBZ VBN NNP NNP IN VBG JJ NNS WDT VBP VBN DT NN `` VBN IN NN . `` The former Pakistani prime minister has been campaigning for his Pakistan Muslim League-Nawaz party ahead of the February 18 parliamentary elections . DT JJ JJ JJ NN VBZ VBN VBG IN PRP$ NNP NNP NNP NN RB IN DT NNP CD JJ NNS . Mr. Sharif has been barred from running . NNP NNP VBZ VBN VBN IN VBG . He was deposed by President Musharraf in coup in 1999 . PRP VBD VBN IN NNP NNP IN NN IN CD . Afghan police say Taliban militants attacked a police patrol in southern Helmand province overnight Saturday , killing four officers and wounding seven others . JJ NNS VBP NNP NNS VBD DT NN NN IN JJ NNP NN JJ NNP , VBG CD NNS CC VBG CD NNS . The local police commander , Khair Mohammad Shuja , said the attack took place in the Gereshk district and that his forces detained wounded Taliban at the scene early Sunday . DT JJ NN NN , NNP NNP NNP , VBD DT NN VBD NN IN DT NNP NN CC IN PRP$ NNS VBD VBN NNP IN DT NN JJ NNP . News reports say two additional attacks took place in Afghanistan Sunday resulting in more police and civilian deaths but details are still emerging about those incidents . NNP NNS VBP CD JJ NNS VBD NN IN NNP NNP VBG IN JJR NN CC JJ NNS CC NNS VBP RB VBG IN DT NNS . Mauritania has extradited to Mali a Malian national convicted of kidnapping three Spanish aid workers last year . NNP VBZ VBN IN NNP DT JJ NN VBN IN VBG CD JJ NN NNS JJ NN . Mauritanian authorities say Omar Sid-Ahmed Ould Hamma was extradited late Monday . JJ NNS VBP NNP NNP NNP NNP VBD VBN JJ NNP . No further details were released . DT JJ NNS VBD VBN . Ould Hamma was sentenced in July to 12 years in prison for organizing the kidnapping of the aid workers and for handing them over to an al-Qaida-linked group in the region , al-Qaida in the Islamic Maghreb . NNP NNP VBD VBN IN NNP TO CD NNS IN NN IN VBG DT NN IN DT NN NNS CC IN VBG PRP RP TO DT JJ NN IN DT NN , NNP IN DT NNP NNP . The three Spanish aid workers were seized last November on a road that links the Mauritanian capital , Nouakchott , with the city of Nouadhibou to the north . DT CD JJ NN NNS VBD VBN JJ NNP IN DT NN WDT VBZ DT JJ NN , NNP , IN DT NN IN NNP TO DT NN . One of the captives was released in March , but the other two are still being held in an unknown location in the vast Sahara desert . CD IN DT NNS VBD VBN IN NNP , CC DT JJ CD VBP RB VBG VBN IN DT JJ NN IN DT JJ NNP NN . The region stretches through Mauritania , Mali , Algeria and Niger , all countries struggling to contain Islamist militant groups . DT NN VBZ IN NNP , NNP , NNP CC NNP , DT NNS VBG TO VB JJ JJ NNS . N.V. DSM said net income in the third quarter jumped 63 % as the company had substantially lower extraordinary charges to account for a restructuring program . NN NNP VBD JJ NN IN DT JJ NN VBD CD NN IN DT NN VBD RB JJR JJ NNS TO VB IN DT NN NN . The Dutch chemical group said net income gained to 235 million guilders ( $ 113.2 million ) , or 6.7 guilders a share , from 144 million guilders , or 4.1 guilders a share , a year ago . DT JJ NN NN VBD JJ NN VBD TO CD CD NNS LRB $ CD CD RRB , CC CD NNS DT NN , IN CD CD NNS , CC CD NNS DT NN , DT NN RB . The 32 % state-owned DSM had eight million guilders of extraordinary charges in the latest quarter , mainly to reflect one-time losses in connection with the disposal of some operations . DT CD NN JJ NNP VBD CD CD NNS IN JJ NNS IN DT JJS NN , RB TO VB JJ NNS IN NN IN DT NN IN DT NNS . The charges were offset in part by a gain from the sale of the company 's construction division . DT NNS VBD VBN IN NN IN DT NN IN DT NN IN DT NN POS NN NN . Last year , DSM had 71 million guilders of extraordinary charges for the restructuring program and other transactions . JJ NN , NNP VBD CD CD NNS IN JJ NNS IN DT NN NN CC JJ NNS . The earnings growth also was fueled by the company 's ability to cut net financing spending by half to around 15 million guilders . DT NNS NN RB VBD VBN IN DT NN POS NN TO VB JJ NN NN IN NN TO IN CD CD NNS . Also , substantially lower Dutch corporate tax rates helped the company keep its tax outlay flat relative to earnings growth , the company added . RB , RB JJR JJ JJ NN NNS VBD DT NN VB PRP$ NN NN JJ NN TO NNS NN , DT NN VBD . Sales , however , were little changed at 2.46 billion guilders , compared with 2.42 billion guilders . NNS , RB , VBD RB JJ IN CD CD NNS , VBN IN CD CD NNS . The economy of Saint Barthelemy is based upon high-end tourism and duty-free luxury commerce , serving visitors primarily from North America . DT NN IN NNP NNP VBZ VBN IN JJ NN CC JJ NN NN , VBG NNS RB IN NNP NNP . The luxury hotels and villas host 70,000 visitors each year with another 1,30,000 arriving by boat . DT NN NNS CC NNS VBP CD NNS DT NN IN DT CD NN IN NN . The relative isolation and high cost of living inhibits mass tourism . DT JJ NN CC JJ NN IN VBG NNS JJ NN . The construction and public sectors also enjoy significant investment in support of tourism . DT NN CC JJ NNS RB VBP JJ NN IN NN IN NN . With limited fresh water resources , all food must be imported , as must all energy resources and most manufactured goods . IN JJ JJ NN NNS , DT NN MD VB VBN , IN MD DT NN NNS CC RBS JJ NNS . Employment is strong and attracts labor from Brazil and Portugal . NN VBZ JJ CC VBZ NN IN NNP CC NNP . Until recently , only two autocratic presidents had ruled Gabon since its independence from France in 1960 . IN RB , RB CD JJ NNS VBD VBN NNP IN PRP$ NN IN NNP IN CD . The recent president of Gabon , El Hadj Omar BONGO Ondimba - one of the longest-serving heads of state in the world - had dominated the country 's political scene for four decades . DT JJ NN IN NNP , NNP NNP NNP NNP NNP IN CD IN DT JJ NNS IN NN IN DT NN : VBD VBN DT NN POS JJ NN IN CD NNS . President BONGO introduced a nominal multiparty system and a new constitution in the early 1990s . NNP NNP VBD DT JJ NN NN CC DT JJ NN IN DT JJ NNS . However , allegations of electoral fraud during local elections in 2002 - 3 and the presidential elections in 2005 exposed the weaknesses of formal political structures in Gabon . RB , NNS IN JJ NN IN JJ NNS IN CD IN CD CC DT JJ NNS IN CD VBD DT NNS IN JJ JJ NNS IN NNP . President BONGO died in June 2009 . NNP NNP VBD IN NNP CD . New elections in August 2009 brought Ali Ben BONGO , son of the former president , to power . JJ NNS IN NNP CD VBD NNP NNP NNP , NN IN DT JJ NN , TO NN . Despite political conditions , a small population , abundant natural resources , and considerable foreign support have helped make Gabon one of the more prosperous and stable African countries . IN JJ NNS , DT JJ NN , JJ JJ NNS , CC JJ JJ NN VBP VBN VB NNP CD IN DT JJR JJ CC JJ JJ NNS . In January 2010 , Gabon assumed a nonpermanent seat on the UN Security Council for the 2010 - 11 term . IN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD IN CD NN . The third smallest state in Europe ( after the Holy See and Monaco ) , San Marino also claims to be the world 's oldest republic . DT JJ JJS NN IN NNP LRB IN DT NNP NNP CC NNP RRB , NNP NNP RB VBZ TO VB DT NN POS JJS NN . According to tradition , it was founded by a Christian stonemason named Marinus in A.D. 301 . VBG TO NN , PRP VBD VBN IN DT JJ NN VBN NNP IN NNP CD . San Marino 's foreign policy is aligned with that of the European Union , although it is not a member ; social and political trends in the republic track closely with those of its larger neighbor , Italy . NNP NNP POS JJ NN VBZ VBN IN DT IN DT NNP NNP , IN PRP VBZ RB DT NN ; JJ CC JJ NNS IN DT NN NN RB IN DT IN PRP$ JJR NN , NNP . Almost five centuries as a Portuguese colony came to a close with independence in 1975 . RB CD NNS IN DT JJ NN VBD TO DT NN IN NN IN CD . Large-scale emigration , economic dependence on South Africa , a severe drought , and a prolonged civil war hindered the country 's development until the mid 1990s . JJ NN , JJ NN IN NNP NNP , DT JJ NN , CC DT JJ JJ NN VBD DT NN POS NN IN DT JJ NNS . The ruling Front for the Liberation of Mozambique ( Frelimo ) party formally abandoned Marxism in 1989 , and a new constitution the following year provided for multiparty elections and a free market economy . DT NN NN IN DT NN IN NNP LRB NNP RRB NN RB VBD NNP IN CD , CC DT JJ NN DT JJ NN VBN IN JJ NNS CC DT JJ NN NN . A UN-negotiated peace agreement between Frelimo and rebel Mozambique National Resistance ( Renamo ) forces ended the fighting in 1992 . DT JJ NN NN IN NNP CC JJ NNP NNP NNP LRB NNP RRB NNS VBD DT NN IN CD . In December 2004 , Mozambique underwent a delicate transition as Joaquim CHISSANO stepped down after 18 years in office . IN NNP CD , NNP VBD DT JJ NN IN NNP NNP VBD RP IN CD NNS IN NN . His elected successor , Armando Emilio GUEBUZA , promised to continue the sound economic policies that have encouraged foreign investment . PRP$ VBN NN , NNP NNP NNP , VBD TO VB DT JJ JJ NNS WDT VBP VBN JJ NN . President GUEBUZA was reelected to a second term in October 2009 . NNP NNP VBD VBN TO DT JJ NN IN NNP CD . However , the elections were flawed by voter fraud , questionable disqualification of candidates , and Frelimo use of government resources during the campaign . RB , DT NNS VBD VBN IN NN NN , JJ NN IN NNS , CC NNP NN IN NN NNS IN DT NN . As a result , Freedom House removed Mozambique from its list of electoral democracies . IN DT NN , NNP NNP VBD NNP IN PRP$ NN IN JJ NNS . Ecuador is substantially dependent on its petroleum resources , which have accounted for more than half of the country 's export earnings and approximately one-third of public sector revenues in recent years . NNP VBZ RB JJ IN PRP$ NN NNS , WDT VBP VBN IN JJR IN NN IN DT NN POS NN NNS CC RB NN IN JJ NN NNS IN JJ NNS . In 1999 / 2000 , Ecuador suffered a severe economic crisis , with GDP contracting by 5.3 % . IN CD NN CD , NNP VBD DT JJ JJ NN , IN NN NN IN CD NN . Poverty increased significantly , the banking system collapsed , and Ecuador defaulted on its external debt . NN VBD RB , DT NN NN VBD , CC NNP VBD IN PRP$ JJ NN . In March 2000 , the Congress approved a series of structural reforms that also provided for the adoption of the US dollar as legal tender . IN NNP CD , DT NNP VBD DT NN IN JJ NNS WDT RB VBD IN DT NN IN DT NNP NN IN JJ NN . Dollarization stabilized the economy , and positive growth returned in the years that followed , helped by high oil prices , remittances , and increased non-traditional exports . NN VBD DT NN , CC JJ NN VBD IN DT NNS WDT VBD , VBN IN JJ NN NNS , NNS , CC JJ JJ NNS . From 2002 - 6 the economy grew an average of 5.2 % per year , the highest five-year average in 25 years . IN CD : CD DT NN VBD DT NN IN CD NN IN NN , DT JJS JJ NN IN CD NNS . After moderate growth in 2007 , the economy reached a growth rate of 7.2 % in 2008 , in large part due to high global petroleum prices and increased public sector investment . IN JJ NN IN CD , DT NN VBD DT NN NN IN CD NN IN CD , IN JJ NN JJ TO JJ JJ NN NNS CC JJ JJ NN NN . President Rafael CORREA , who took office in January 2007 , defaulted in December 2008 on Ecuador 's sovereign debt , which , with a total face value of approximately US $ 3.2 billion , represented about 80 % of Ecuador 's private external debt . NNP NNP NNP , WP VBD NN IN NNP CD , VBN IN NNP CD IN NNP POS JJ NN , WDT , IN DT JJ NN NN IN RB NNP $ CD CD , VBD IN CD NN IN NNP POS JJ JJ NN . In May 2009 , Ecuador bought back 91 % of its ' defaulted ' bonds via an international auction . IN NNP CD , NNP VBD RB CD NN IN PRP$ `` JJ `` NNS IN DT JJ NN . Economic policies under the CORREA administration - including an announcement in late 2009 of its intention to terminate 13 bilateral investment treaties , including one with the United States - have generated economic uncertainty and discouraged private investment . JJ NNS IN DT NNP NN : VBG DT NN IN JJ CD IN PRP$ NN TO VB CD JJ NN NNS , VBG CD IN DT NNP NNPS : VBP VBN JJ NN CC JJ JJ NN . The Ecuadorian economy contracted 0.4 % in 2009 due to the global financial crisis and to the sharp decline in world oil prices and remittance flows . DT JJ NN VBD CD NN IN CD JJ TO DT JJ JJ NN CC TO DT JJ NN IN NN NN NNS CC NN NNS . Growth picked up to a 3.7 % rate in 2010 , according to Ecuadorian government estimates . NN VBD RP TO DT CD NN NN IN CD , VBG TO JJ NN NNS . One time I had to go to a funeral at 6 AM . CD NN PRP VBD TO VB TO DT NN IN CD NNP . I should n't have been there . PRP MD RB VB VBN RB . I 'm not a mourning person . PRP VBP RB DT VBG NN . The United Nations ' food agency says the battle to contain the lethal form of avian flu in Indonesia is failing . DT NNP NNPS POS NN NN VBZ DT NN TO VB DT JJ NN IN JJ NN IN NNP VBZ VBG . Joseph Domenech , the head of the U.N. 's Food and Agricultural Organization , says the East Asian archipelago is facing ' an uphill battle ' trying to control the H5N1 form of the virus . NNP NNP , DT NN IN DT NNP POS NNP CC NNP NNP , VBZ DT NNP NNP NN VBZ VBG `` DT JJ NN `` VBG TO VB DT NNP NN IN DT NN . Domenech says he is concerned that the high levels of infected birds in Indonesia could help the virus mutate into a form that could be passed among humans , triggering a worldwide pandemic that could kill millions . NNP VBZ PRP VBZ VBN IN DT JJ NNS IN JJ NNS IN NNP MD VB DT NN NN IN DT NN WDT MD VB VBN IN NNS , VBG DT JJ NN WDT MD VB NNS . The H5N1 form of avian flu has killed nearly 240 people across Asia since it was first detected in 2003 , including 105 in Indonesia . DT NNP NN IN JJ NN VBZ VBN RB CD NNS IN NNP IN PRP VBD RB VBN IN CD , VBG CD IN NNP . Domenech says major financial and human resources , stronger political commitment and better coordination between all levels of government in Indonesia are needed to fight the virus . NNP VBZ JJ JJ CC JJ NNS , JJR JJ NN CC JJR NN IN DT NNS IN NN IN NNP VBP VBN TO VB DT NN . French aviation authorities say they have banned Cameroon Airlines flights from France because of safety concerns . JJ NN NNS VBP PRP VBP VBN NNP NNPS NNS IN NNP IN IN NN NNS . The civil aviation authority said in a statement Friday that Cameroon Airlines was not respecting international standards for safety . DT JJ NN NN VBD IN DT NN NNP IN NNP NNPS VBD RB VBG JJ NNS IN NN . The statement said the concerns were notably in the areas of loading , transport of dangerous materials , navigation documentation and tire maintenance . DT NN VBD DT NNS VBD RB IN DT NNS IN NN , NN IN JJ NNS , NN NN CC NN NN . The statement said French and Cameroonian authorities agreed on a plan of action earlier this year to correct the situation , but new tests carried out in July and August still showed persistent problems . DT NN VBD JJ CC JJ NNS VBD IN DT NN IN NN RBR DT NN TO VB DT NN , CC JJ NNS VBN RP IN NNP CC NNP RB VBD JJ NNS . Earlier this month , France banned six African , Caribbean , and Asian airlines from its airspace for safety reasons , following a string of recent aviation accidents . RBR DT NN , NNP VBD CD NNP , NNP , CC JJ NNS IN PRP$ NN IN NN NNS , VBG DT NN IN JJ NN NNS . Brad Delp was found dead March 9 , at his home in the northeastern state of New Hampshire . NNP NNP VBD VBN JJ NNP CD , IN PRP$ NN IN DT JJ NN IN NNP NNP . The 55-year-old musician , who sang for the popular rock act Boston , was apparently alone at the time of his death . DT JJ NN , WP VBD IN DT JJ NN NN NNP , VBD RB RB IN DT NN IN PRP$ NN . A police investigation is ongoing . DT NN NN VBZ JJ . Formed in the early 1970s , Boston remains a staple on U.S. classic rock radio playlists . VBN IN DT JJ NNS , NNP VBZ DT NN IN NNP JJ NN NN NNS . The band was reportedly planning a mid-year tour . DT NN VBD RB VBG DT JJ NN . Kenya 's President Mwai Kibaki has announced the resignation of two senior cabinet members implicated in corruption scandals . NNP POS NNP NNP NNP VBZ VBN DT NN IN CD JJ NN NNS VBN IN NN NNS . Speaking on state television today , Mr. Kibaki said his energy minister and education minister have stepped down so investigations into the scandals can proceed . VBG IN NN NN NN , NNP NNP VBD PRP$ NN NN CC NN NN VBP VBN RP RB NNS IN DT NNS MD VB . The Kibaki government has been shaken by accusations of multi-million dollar graft against several top officials , including Vice President Moody Awori . DT NNP NN VBZ VBN VBN IN NNS IN JJ NN NN IN JJ JJ NNS , VBG NNP NNP NNP NNP . The allegations led former finance minister David Mwiraria to resign last month . DT NNS VBD JJ NN NN NNP NNP TO VB JJ NN . The accused officials have denied any wrongdoing . DT VBN NNS VBP VBN DT NN . The Kibaki government took power in 2002 pledging to stamp out corruption , which was prevalent under previous Kenyan governments . DT NNP NN VBD NN IN CD VBG TO VB RP NN , WDT VBD JJ IN JJ JJ NNS . Iraqi police say an Italian journalist , a reporter for the Italian newspaper Il Manifesto , has been kidnapped in Baghdad . JJ NNS VBP DT JJ NN , DT NN IN DT JJ NN NNP NNP , VBZ VBN VBN IN NNP . Unknown gunmen abducted Giuliana Sgrena Friday as she was conducting an interview near Baghdad University . JJ NNS VBD NNP NNP NNP IN PRP VBD VBG DT NN IN NNP NNP . Several Italians have been kidnapped in Iraq over the past 18 months . JJ NNS VBP VBN VBN IN NNP IN DT JJ CD NNS . Two Italian aid workers were abducted in Baghdad last September and threatened with death before being released unharmed several weeks later . CD JJ NN NNS VBD VBN IN NNP JJ NNP CC VBN IN NN IN VBG VBN JJ JJ NNS RB . Another Italian journalist was snatched in August and was killed after Rome refused to yield to the kidnappers ' demand that Italy withdraw its nearly 3,000 troops from Iraq . DT JJ NN VBD VBN IN NNP CC VBD VBN IN NNP VBD TO VB TO DT NNS POS NN IN NNP VB PRP$ RB CD NNS IN NNP . Indonesian President Susilo Bambang Yudhoyono says his country plans to build a hospital for Palestinians in Gaza Strip . JJ NNP NNP NNP NNP VBZ PRP$ NN VBZ TO VB DT NN IN NNS IN NNP NNP . Mr. Yudhoyono made the pledge during a meeting Saturday with visiting Palestinian President Mahmoud Abbas . NNP NNP VBD DT NN IN DT NN NNP IN VBG JJ NNP NNP NNP . He said Indonesia will contribute more than $ 2 million to fund the project . PRP VBD NNP MD VB JJR IN $ CD CD TO VB DT NN . Speaking to reporters in Jakarta after the meeting , he also said Indonesia is ready to play a role in the Middle East peace process . VBG TO NNS IN NNP IN DT NN , PRP RB VBD NNP VBZ JJ TO VB DT NN IN DT NNP NNP NN NN . Mr. Abbas said he had asked President Yudhoyono to support of his efforts to end Israel 's siege of Gaza . NNP NNP VBD PRP VBD VBN NNP NNP TO VB IN PRP$ NNS TO VB NNP POS NN IN NNP . Israel has blockaded the Palestinian territory for three years , after the militant group Hamas seized power from the moderate government . NNP VBZ VBN DT JJ NN IN CD NNS , IN DT JJ NN NNP VBD NN IN DT JJ NN . Indonesia is the world 's most populous Muslim nation . NNP VBZ DT NN POS RBS JJ NN NN . It has long supported the Palestinian cause and does not have diplomatic relations with Israel . PRP VBZ RB VBN DT JJ NN CC VBZ RB VB JJ NNS IN NNP . President Abbas is on an Asian tour that will also take him to Vietnam and Malaysia . NNP NNP VBZ IN DT JJ NN WDT MD RB VB PRP TO NNP CC NNP . Japan and South Korea have announced plans to create tens of thousands of new jobs aimed at boosting the economy while protecting the environment . NNP CC NNP NNP VBP VBN NNS TO VB NNS IN NNS IN JJ NNS VBN IN VBG DT NN IN VBG DT NN . The Japanese environment ministry says it is preparing a so-called ' Green New Deal Plan ' to create at least one million new jobs in energy-saving and other environment-friendly technologies . DT JJ NN NN VBZ PRP VBZ VBG DT JJ `` NNP NNP NNP NNP `` TO VB IN JJS CD CD JJ NNS IN JJ CC JJ JJ NNS . The plan could include incentives to encourage the production and purchase of electric cars and energy-efficient household electronics . DT NN MD VB NNS TO VB DT NN CC NN IN JJ NNS CC JJ NN NNS . South Korea 's government Tuesday also unveiled a so-called Green New Job Creation Plan , expected to create 9,60,000 new jobs . NNP NNP POS NN NNP RB VBD DT JJ NNP NNP NNP NNP NNP , VBD TO VB CD JJ NNS . About 1,40,000 new jobs are targeted for this year . IN CD JJ NNS VBP VBN IN DT NN . Officials say they will invest about $ 38 billion in the next few years to clean-up the country 's four main rivers , maintain forests , develop cleaner transportation and conserve energy . NNS VBP PRP MD VB IN $ CD CD IN DT JJ JJ NNS TO VB DT NN POS CD JJ NNS , VBP NNS , VB JJR NN CC NN NN . A new report by the United Nations Children 's Fund ( UNICEF ) says millions of children in Eastern Europe and Central Asia still live in poverty , despite economic progress across the regions . DT JJ NN IN DT NNP NNP NNP POS NNP LRB NNP RRB VBZ NNS IN NNS IN NNP NNP CC NNP NNP RB VBP IN NN , IN JJ NN IN DT NNS . UNICEF says its findings indicate economic growth alone does not necessarily improve the lives of children . NNP VBZ PRP$ NNS VBP JJ NN RB VBZ RB RB VB DT NNS IN NNS . At Wednesday 's unveiling of the report in Moscow , UNICEF director Carol Bellamy said poverty leads to poor nutrition and sick children , as well as young people not being able to attend school . IN NNP POS NN IN DT NN IN NNP , NNP NN NNP NNP VBD NN VBZ TO JJ NN CC JJ NNS , RB RB IN JJ NNS RB VBG JJ TO VB NN . She said , at worst , it also ' means violence and desperation , with more children in institutions , ' plus ' soaring drug and alcohol abuse among the young . ' PRP VBD , IN JJS , PRP RB `` VBZ NN CC NN , IN JJR NNS IN NNS , `` CC `` VBG NN CC NN NN IN DT JJ . `` The report laments that economic growth in the regions has rarely been accompanied by initiatives to tackle serious problems affecting children . DT NN VBZ IN JJ NN IN DT NNS VBZ RB VBN VBN IN NNS TO VB JJ NNS VBG NNS . Chinese state media say a fire in a popular restaurant in the northeastern province of Liaoning has killed 11 people and injured 16 others . JJ NN NNS VBP DT NN IN DT JJ NN IN DT JJ NN IN NNP VBZ VBN CD NNS CC VBN CD NNS . The official Xinhua news agency reports Sunday that the fire broke out in the kitchen and fully engulfed the Baixinglou restaurant in the city of Chaoyang Saturday evening . DT JJ NNP NN NN VBZ NNP IN DT NN VBD RP IN DT NN CC RB VBD DT NNP NN IN DT NN IN NNP NNP NN . Firefighters put out the blaze after battling the flames for more than hour . NNS VBD RP DT NN IN VBG DT NNS IN JJR IN NN . Xinhua says the victims included diners and waiters at the restaurant . NNP VBZ DT NNS VBD NNS CC NNS IN DT NN . They are hospitalized and are reported in stable condition . PRP VBP VBN CC VBP VBN IN JJ NN . The news agency says initial investigations show improper use of a stove sparked the fire . DT NN NN VBZ JJ NNS VBP JJ NN IN DT NN VBD DT NN . India 's trade minister says rich countries must be flexible if negotiations on a new global trade treaty are to be revived . NNP POS NN NN VBZ JJ NNS MD VB JJ IN NNS IN DT JJ JJ NN NN VBP TO VB VBN . Commerce and Industry Minister Kamal Nath says he has been speaking with trade ministers of several other countries in an effort to revive the talks . NNP CC NNP NNP NNP NNP VBZ PRP VBZ VBN VBG IN NN NNS IN JJ JJ NNS IN DT NN TO VB DT NNS . Trade ministers from the United States , the European Union , Japan , Australia , India and Brazil halted the talks last month because of differences over farm subsidies . NNP NNS IN DT NNP NNPS , DT NNP NNP , NNP , NNP , NNP CC NNP VBD DT NNS JJ NN IN IN NNS IN NN NNS . The World Trade Organization or WTO organized the talks . DT NNP NNP NNP CC NNP VBD DT NNS . Nath says the talks collapsed because the United States and EU sought to backtrack on their commitments to reduce agricultural subsidies and tariffs in coming years to help poor countries . NNP VBZ DT NNS VBD IN DT NNP NNPS CC NNP VBD TO VB IN PRP$ NNS TO VB JJ NNS CC NNS IN VBG NNS TO VB JJ NNS . He said the rich countries want greater market access for their exports before helping poorer nations . PRP VBD DT JJ NNS VBP JJR NN NN IN PRP$ NNS IN VBG JJR NNS . He said that WTO talks could go no where until that mind-set changed . PRP VBD IN NNP NNS MD VB DT WRB IN DT NN VBD . Christians on a rampage in southern Nigeria have burned two mosques in retaliation for Muslim protests last weekend in which dozens of people , many of them Christian , died . NNS IN DT NN IN JJ NNP VBP VBN CD NNS IN NN IN NNP NNS JJ NN IN WDT NNS IN NNS , NN IN PRP JJ , VBD . Today 's riots took place in Onitsha , the capital of the mostly Christian state of Anambra . NN POS NNS VBD NN IN NNP , DT NN IN DT RB JJ NN IN NNP . At least one person has died . IN JJS CD NN VBZ VBN . An Anambra police spokesman told the French news agency that a scuffle broke out between Hausas , who are Muslim , and Ibos , ethnic Christians from the south . DT NNP NN NN VBD DT JJ NN NN IN DT NN VBD RP IN NNS , WP VBP NNP , CC NNS , JJ NNS IN DT NN . Christian rioters then set the mosques on fire . NNP NNS RB VBD DT NNS IN NN . The spokesman said order has been restored . DT NN VBD NN VBZ VBN VBN . Muslim protests last weekend in northern Nigeria were the deadliest yet since cartoons of the Prophet Muhammad appeared in a Danish newspaper last year . NNP VBZ JJ NN IN JJ NNP VBD DT JJS RB IN NNS IN DT NNP NNP VBD IN DT JJ NN JJ NN . Rioters attacked Christians and burned down churches . NNS VBD NNS CC VBD RP NNS . Nigeria is mostly Muslim in the North and Christian in the south . NNP VBZ RB NN IN DT NNP CC NNP IN DT NN . Sectarian violence in one part of the country frequently sparks reprisals elsewhere . JJ NN IN CD NN IN DT NN RB VBZ NNS RB . U.S. military spokesmen say four American soldiers have been wounded by an insurgent 's roadside bomb that hit their armored vehicle in northeastern Afghanistan . NNP JJ NNS VBP CD JJ NNS VBP VBN VBN IN DT NN POS NN NN WDT VBD PRP$ JJ NN IN JJ NNP . The troops were attacked as they returned from defusing another bomb near Asadabad town , in Kunar province . DT NNS VBD VBN IN PRP VBD IN VBG DT NN IN NNP NN , IN NNP NN . A military statement says the wounded were evacuated to Bagram Air Base , north of Kabul , where they are in stable condition . DT JJ NN VBZ DT VBN VBD VBN TO NNP NNP NNP , NN IN NNP , WRB PRP VBP IN JJ NN . The statement also says U.S. and Afghan troops have begun a search ' to kill or capture those responsible . ' DT NN RB VBZ NNP CC JJ NNS VBP VBN DT NN `` TO VB CC VB DT JJ . `` Similar attacks in the past have been blamed on the Taleban , which was ousted by a U.S.-led invasion four years ago . JJ NNS IN DT NN VBP VBN VBN IN DT NNP , WDT VBD VBN IN DT JJ NN CD NNS RB . U.S. Secretary of State Condoleezza Rice says great democracies have an obligation to respect the rule of law . NNP NNP IN NNP NNP NNP VBZ JJ NNS VBP DT NN TO VB DT NN IN NN . She also told reporters Thursday in Brussels that if allegations of human rights abuses by U.S. personnel are reported , they will be investigated and punished . PRP RB VBD NNS NNP IN NNP IN IN NNS IN JJ NNS NNS IN NNP NNS VBP VBN , PRP MD VB VBN CC VBN . Ms. Rice discussed U.S. policy on detainees with NATO officials on Wednesday . NNP NNP VBD NNP NN IN NNS IN NNP NNS IN NNP . Afterward , NATO Secretary-General Jaap De Hoop Scheffer said Ms. Rice had cleared the air about Washington 's views on secret prisons and the treatment of terrorist suspects overseas . RB , NNP NNP NNP NNP NNP NNP VBD NNP NNP VBD VBN DT NN IN NNP POS NNS IN JJ NNS CC DT NN IN JJ NNS RB . He did not elaborate . PRP VBD RB VB . Ms. Rice 's four-nation European tour has been overshadowed by reports that the CIA has used European airports to fly terror suspects to secret prisons in eastern Europe . NNP NNP POS JJ JJ NN VBZ VBN VBN IN NNS IN DT NNP VBZ VBN JJ NNS TO VB NN NNS TO JJ NNS IN JJ NNP . She has not confirmed or denied the existence of the prisons , but on Wednesday she said the United Nations Convention Against Torture applies to U.S. personnel both at home and abroad . PRP VBZ RB VBN CC VBN DT NN IN DT NNS , CC IN NNP PRP VBD DT NNP NNP NNP NNP NNP VBZ TO NNP NNS DT IN NN CC RB . Hundreds of truckers gathered in Washington DC on April 28 to protest the high cost of fuel . NNS IN NNS VBN IN NNP NNP IN NNP CD TO VB DT JJ NN IN NN . The truckers say Washington lawmakers have been far too silent on an issue that has grave repercussions for the U.S. economy . DT NNS VBP NNP NNS VBP VBN RB RB JJ IN DT NN WDT VBZ JJ NNS IN DT NNP NN . They called on Congress to stop subsidizing big oil companies and demanded a cap on the cost of fuel . PRP VBD IN NNP TO VB VBG JJ NN NNS CC VBD DT NN IN DT NN IN NN . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . A U.S.-based press watchdog group has sent a delegation to Venezuela to study allegations of repression against journalists in the country . DT JJ NN NN NN VBZ VBN DT NN TO NNP TO VB NNS IN NN IN NNS IN DT NN . Members of the Inter American Press Association say they hoped to discuss the concerns with officials , but add Information Minister William Lara had refused to meet them . NNS IN DT NNP NNP NNP NNP VBP PRP VBD TO VB DT NNS IN NNS , CC VBP NNP NNP NNP NNP VBD VBN TO VB PRP . Tuesday , the delegation visited the offices of Correo del Caroni newspaper , which local lawmakers had slated for demolition . NNP , DT NN VBD DT NNS IN NNP NNP NNP NN , WDT JJ NNS VBD VBN IN NN . In a report last year , the group said press freedom is ' seriously threatened ' in Venezuela , and accused officials of persecuting opposition journalists . IN DT NN JJ NN , DT NN VBD NN NN VBZ `` RB VBN `` IN NNP , CC VBN NNS IN VBG NN NNS . It also expressed concern about recent laws that restrict television and radio broadcasts . PRP RB VBD NN IN JJ NNS WDT VBP NN CC NN NNS . Venezuela 's government has defended the laws , saying they are intended to raise media standards and not limit free speech . NNP POS NN VBZ VBN DT NNS , VBG PRP VBP VBN TO VB NNS NNS CC RB VB JJ NN . Asia-Pacific Economic Cooperation leaders , meeting in Singapore , have called for more cooperation on global economic recovery efforts , and have warned against withdrawing economic stimulus measures too early . NNP NNP NNP NNS , VBG IN NNP , VBP VBN IN JJR NN IN JJ JJ NN NNS , CC VBP VBN IN VBG JJ NN NNS RB RB . Russian President Dmitri Medvedev Saturday called for broad international cooperation to overcome the global crisis and achieve sustainable growth . JJ NNP NNP NNP NNP VBD IN JJ JJ NN TO VB DT JJ NN CC VB JJ NN . Australian Prime Minister Kevin Rudd proposed creating an Asia-Pacific Community , styled after the European Union . JJ NNP NNP NNP NNP VBD VBG DT NNP NNP , VBN IN DT NNP NNP . Chinese President Hu Jintao said promoting openness in international trade and curbing protectionism would help revive the world economy . JJ NNP NNP NNP VBD VBG NN IN JJ NN CC VBG NN MD VB VB DT NN NN . Mexican President Felipe Calderon singled out Washington for ' going in the opposite sense of free trade . ' JJ NNP NNP NNP VBD RP NNP IN `` VBG IN DT JJ NN IN JJ NN . `` Russian President Dmitri Medvedev made the same point . JJ NNP NNP NNP VBD DT JJ NN . In Tokyo earlier Saturday , U.S. President Barack Obama called on Asian countries to break their dependence on exports to the United States , and to pursue ' balanced ' and sustainable economic growth . IN NNP RBR NNP , NNP NNP NNP NNP VBD IN JJ NNS TO VB PRP$ NN IN NNS TO DT NNP NNPS , CC TO VB `` VBN `` CC JJ JJ NN . The leader of Al-Qaida in Iraq has called on weapons experts to supply his fighters with biological weapons and dirty bombs . DT NN IN NNP IN NNP VBZ VBN IN NNS NNS TO VB PRP$ NNS IN JJ NNS CC NN NNS . In an audio recording posted Thursday on the Internet , a man who identified himself as Abu Hamza al-Muhajer also urged militants in Iraq to kidnap Western Christians to swap for a Muslim cleric jailed for life in the U.S. Egyptian cleric Omar Abdel-Rahman was convicted of plotting to attack New York city landmarks , including the 1993 bombing of the World Trade Center . IN DT NN NN VBD NNP IN DT NNP , DT NN WP VBD PRP IN NNP NNP NNP RB VBD NNS IN NNP TO VB JJ NNS TO VB IN DT NNP NN VBN IN NN IN DT NNP JJ NN NNP NNP VBD VBN IN VBG TO VB NNP NNP NN NNS , VBG DT CD NN IN DT NNP NNP NNP . The voice on the recording could not be independently verified . DT NN IN DT NN MD RB VB RB VBN . In violence Thursday , more than 20 people were killed in Iraq . IN NN NNP , JJR IN CD NNS VBD VBN IN NNP . Bombings and shootings in and around Baghdad targeted civilians , Iraqi soldiers and police . NNS CC NNS IN CC IN NNP VBD NNS , JJ NNS CC NNS . Officials also reported finding 40 bodies showing signs of torture . NNS RB VBD VBG CD NNS VBG NNS IN NN . U.S. military intelligence officials warned that illegal militias are returning to Baghdad neighborhoods recently cleared by U.S. and Iraqi troops . NNP JJ NN NNS VBD IN JJ NNS VBP VBG TO NNP NNS RB VBN IN NNP CC JJ NNS . The United Nations says U.N. and Congolese troops have launched an offensive against a militia group in the eastern Democratic Republic of Congo . DT NNP NNP VBZ NNP CC JJ NNS VBP VBN DT NN IN DT NN NN IN DT JJ JJ NNP IN NNP . The U.N. peacekeeping force in Congo says one government soldier and at least six militia fighters have been killed in fighting this week in Ituri province . DT NNP NN NN IN NNP VBZ CD NN NN CC IN JJS CD NN NNS VBP VBN VBN IN VBG DT NN IN NNP NN . A spokesman for the force said at least 1,000 Congolese government troops are involved in the operation . DT NN IN DT NN VBD IN JJS CD JJ NN NNS VBP VBN IN DT NN . Reuters news agency cites him as saying the militiamen are ethnic Lendu fighters who have refused to join the U.N.-backed disarmament process . NNP NN NN VBZ PRP IN VBG DT NNS VBP JJ NNP NNS WP VBP VBN TO VB DT JJ NN NN . Some 15,000 U.N. troops are in Congo trying to restore order after years of instability and war . DT CD NNP NNS VBP IN NNP VBG TO VB NN IN NNS IN NN CC NN . Wednesday , the U.N. Security Council passed a resolution deploring that foreign armed groups continue to operate in the eastern DRC , and demanded that they immediately disarm . NNP , DT NNP NNP NNP VBD DT NN VBG IN JJ JJ NNS VBP TO VB IN DT JJ NNP , CC VBD IN PRP RB VBP . Palestinian witnesses say Israeli forces have shot and killed four Palestinians during a raid on a town in the northern West Bank . JJ NNS VBP JJ NNS VBP VBN CC VBN CD NNS IN DT NN IN DT NN IN DT JJ NNP NNP . Witnesses say Israeli troops killed two Palestinian gunmen during the raid Thursday , including a local leader of the al-Aqsa Martyrs Brigade . NNS VBP JJ NNS VBD CD JJ NNS IN DT NN NNP , VBG DT JJ NN IN DT NNP NNP NNP . The militant group is linked to the Fatah faction of Palestinian President Mahmoud Abbas . DT JJ NN VBZ VBN TO DT NNP NN IN JJ NNP NNP NNP . In fierce exchanges of fire , two unarmed Palestinians were also killed and at least 10 others wounded . IN JJ NNS IN NN , CD JJ NNS VBD RB VBN CC IN JJS CD NNS VBD . In other news , Arab League foreign ministers met in Cairo Wednesday to discuss ways to revive the Middle East peace process . IN JJ NN , NNP NNP JJ NNS VBD IN NNP NNP TO VB NNS TO VB DT NNP NNP NN NN . Bahrain 's foreign minister , Khalid bin Ahmed al-Khalifa , told the opening session that a new and effective mechanism from the United Nations Security Council is needed to re-launch the process . NNP POS JJ NN , NNP NNP NNP NNP , VBD DT NN NN IN DT JJ CC JJ NN IN DT NNP NNP NNP NNP VBZ VBN TO VB DT NN . For most of the countries of the former Yugoslavia , the ride from armed conflict during the 1990s to the calmer waters of European integration has been stormy , with various degrees of success . IN JJS IN DT NNS IN DT JJ NNP , DT NN IN JJ NN IN DT NNS TO DT NN NNS IN JJ NN VBZ VBN JJ , IN JJ NNS IN NN . VOA 's Jela de Franceschi takes a closer look at progress made in transforming the Western Balkans into a region of economic and political stability . NNP POS NNP NNP NNP VBZ DT JJR NN IN NN VBN IN VBG DT JJ NNS IN DT NN IN JJ CC JJ NN . Reports from China say a woman in southwestern Sichuan province has died of bird flu . NNS IN NNP VBP DT NN IN JJ NNP NN VBZ VBN IN NN NN . China 's Health Ministry confirmed Monday that the 29-year-old woman was the seventh person to succumb to the deadly H5N1 form of the bird flu virus . NNP POS NNP NNP VBD NNP IN DT JJ NN VBD DT JJ NN TO VB TO DT JJ NNP NN IN DT NN NN NN . Indonesian health officials said Wednesday local tests have confirmed that a chicken seller in Jakarta has the deadly strain of the virus . JJ NN NNS VBD NNP JJ NNS VBP VBN IN DT NN NN IN NNP VBZ DT JJ NN IN DT NN . World Health Organization officials in Indonesia say they are focusing on the need to improve hygiene at markets to reduce exposure to the disease . NNP NNP NNP NNS IN NNP VBP PRP VBP VBG IN DT NN TO VB NN IN NNS TO VB NN TO DT NN . Friday , health workers from refugee camps and migrant communities on Burma 's border are to meet with local officials and donors in Thailand to prepare for possible bird flu outbreaks . NNP , NN NNS IN NN NNS CC JJ NNS IN NNP POS NN VBP TO VB IN JJ NNS CC NNS IN NNP TO VB IN JJ NN NN NNS . Bird flu has killed at least 81 people in East Asia and Turkey since 2003 . NN NN VBZ VBN IN JJS CD NNS IN NNP NNP CC NNP IN CD . European Union leaders are meeting at Britain 's Hampton Court Palace near London to consider policies that will help the grouping compete in the world economy and deal with challenges posed by globalization . NNP NNP NNS VBP VBG IN NNP POS NNP NNP NNP IN NNP TO VB NNS WDT MD VB DT NN VB IN DT NN NN CC NN IN NNS VBN IN NN . British Prime Minister Tony Blair , whose country holds the rotating EU presidency , wants leaders to reach consensus on how the block will deal with such issues as free trade . JJ NNP NNP NNP NNP , WP$ NN VBZ DT VBG NNP NN , VBZ NNS TO VB NN IN WRB DT NN MD VB IN JJ NNS IN JJ NN . He also hopes the one-day informal summit will help resolve the stalemate over the bloc 's upcoming five-year budget for the period beginning in 2007 . PRP RB VBZ DT JJ JJ NN MD VB VB DT NN IN DT NN POS JJ JJ NN IN DT NN VBG IN CD . Budget talks collapsed in June after a dispute between Britain and France on EU spending . NNP NNS VBD IN NNP IN DT NN IN NNP CC NNP IN NNP NN . Ahead of Thursday 's meeting , Mr. Blair told the European Parliament in Strasbourg that Europe is facing competition from such emerging economies as China and India . NN IN NNP POS NN , NNP NNP VBD DT NNP NNP IN NNP IN NNP VBZ VBG NN IN JJ VBG NNS IN NNP CC NNP . Meanwhile , the parliament asked EU countries to contribute more money for research , development , and to aid poor regions . RB , DT NN VBD NNP NNS TO VB JJR NN IN NN , NN , CC TO VB JJ NNS . Russian news reports say police have arrested the governor of a mineral-rich region on suspicion of embezzlement . JJ NN NNS VBP NNS VBP VBN DT NN IN DT JJ NN IN NN IN NN . The reports say Alexi Barinov , governor of the Nenets autonomous region in Russia 's Arctic , is in police custody and has begun a hunger strike . DT NNS VBP NNP NNP , NN IN DT NNPS JJ NN IN NNP POS NNP , VBZ IN NN NN CC VBZ VBN DT NN NN . Prosecutors reportedly opened a case against Barinov last week . NNS RB VBD DT NN IN NNP JJ NN . The suspect was previously the chief executive officer for a unit of the oil company Lukoil . DT NN VBD RB DT JJ NN NN IN DT NN IN DT NN NN NNP . Barinov said last week that while at Lukoil prosecutors had dropped a criminal case against him for lack of evidence . NNP VBD JJ NN IN IN IN NNP NNS VBD VBN DT JJ NN IN PRP IN NN IN NN . The RIA-Novosti news service says the probe centers on allegations that Barinov used his post at Lukoil to purchase several apartments illegally through the company . DT JJ NN NN VBZ DT NN NNS IN NNS IN NNP VBD PRP$ NN IN NNP TO VB JJ NNS RB IN DT NN . A Barinov spokesman has denied the charges . DT NNP NN VBZ VBN DT NNS . Iraq 's oil minister says government forces could be ready to take over security responsibility from international forces by the end of next year . NNP POS NN NN VBZ NN NNS MD VB JJ TO VB RP NN NN IN JJ NNS IN DT NN IN JJ NN . Hussain al-Shahristani , who is making his first visit to Australia , told reporters in Canberra Thursday that it would not take years for foreign troops to withdraw from Iraq . NNP NNP , WP VBZ VBG PRP$ JJ NN TO NNP , VBD NNS IN NNP NNP IN PRP MD RB VB NNS IN JJ NNS TO VB IN NNP . He said more than half of country is now under total control of Iraqi forces . PRP VBD JJR IN NN IN NN VBZ RB IN JJ NN IN JJ NNS . He said for the rest of the country , the government is planning to have sufficient trained and equipped Iraqi forces by the end of 2007 or - perhaps 2008 . PRP VBD IN DT NN IN DT NN , DT NN VBZ VBG TO VB JJ VBN CC VBN JJ NNS IN DT NN IN CD CC : RB CD . But Australian Foreign Minister Alexander Downer called the Iraqi official 's timeframe ' optimistic . ' CC JJ NNP NNP NNP NNP VBD DT JJ NN POS NN `` JJ . `` Downer cautioned against a premature withdrawal of international forces from Iraq , saying the insurgents are likely to call that a victory and use that argument to recruit more terrorists . NNP VBD IN DT JJ NN IN JJ NNS IN NNP , VBG DT NNS VBP JJ TO VB DT DT NN CC VB DT NN TO VB JJR NNS . French Prime Minister Dominique de Villepin says European Union membership negotiations with Turkey can not begin unless Ankara recognizes all EU member states , including Cyprus . JJ NNP NNP NNP NNP NNP VBZ NNP NNP NN NNS IN NNP MD RB VB IN NNP VBZ DT NNP NN NNS , VBG NNP . Mr. de Villepin made the comment during a radio interview Tuesday . NNP NNP NNP VBD DT NN IN DT NN NN NNP . In response , Turkish Foreign Minister Abdullah Gul said Ankara expects France 's continued support for Turkey 's EU process . IN NN , JJ JJ NN NNP NNP VBD NNP VBZ NNP POS JJ NN IN NNP POS NNP NN . The 25-nation bloc plans to open membership talks with Turkey in October . DT JJ NN VBZ TO VB NN NNS IN NNP IN NNP . Last week , Turkey signed an accord that extends its customs agreement with the European Union to new member states . JJ NN , NNP VBD DT NN WDT VBZ PRP$ NNS NN IN DT NNP NNP TO JJ NN NNS . These include the divided island of Cyprus , which joined the bloc last year . DT VBP DT VBN NN IN NNP , WDT VBD DT NN JJ NN . But Turkey said the agreement does not represent a diplomatic recognition of the Greek Cypriot government . CC NNP VBD DT NN VBZ RB VB DT JJ NN IN DT JJ JJ NN . The EU and most nations view the Greek Cypriot government as the divided island 's legitimate authority . DT NNP CC JJS NNS VBP DT JJ JJ NN IN DT VBN NN POS JJ NN . Ankara recognizes a separate government dominated by ethnic Turks . NNP VBZ DT JJ NN VBN IN JJ NNS . A jury has been selected for the trial of pop star Michael Jackson on child molestation charges . DT NN VBZ VBN VBN IN DT NN IN NN NN NNP NNP IN NN NN NNS . Attorneys Wednesday settled on a jury of four men and eight women , ranging from 20 to 79 years old . NNP NNP VBD IN DT NN IN CD NNS CC CD NNS , VBG IN CD CC CD NNS JJ . The jury reportedly contains eight whites , three Hispanics , one Asian , and no African-Americans . DT NN RB VBZ CD NNS , CD NNS , CD NN , CC DT NNS . The selection process took only two-and-a-half days after being delayed for a week by Jackson 's hospitalization with flu-like symptoms . DT NN NN VBD RB JJ NNS IN VBG VBN IN DT NN IN NNP POS NN IN JJ NNS . The entertainer is accused of sexually molesting a 13-year-old boy at the singer 's Neverland ranch . DT NN VBZ VBN IN RB VBG DT JJ NN IN DT NN POS NNP NN . Jackson has pleaded not guilty and predicted his acquittal . NNP VBZ VBN RB JJ CC VBD PRP$ NN . In 1993 , he paid more than $ 23 million to settle a separate child molestation case out of court . IN CD , PRP VBD JJR IN $ CD CD TO VB DT JJ NN NN NN IN IN NN . Sri Lanka 's Tamil Tiger rebels say new government air raids have killed 14 people , but the military denies that civilians were targeted in the attacks . NNP NNP POS NNP NNP NNS VBP JJ NN NN NNS VBP VBN CD NNS , CC DT NN VBZ IN NNS VBD VBN IN DT NNS . A rebel statement Tuesday said fighter jets dropped bombs on Mannar in northwest Sri Lanka , destroying residential homes . DT JJ NN NNP VBD NN NNS VBD NNS IN NNP IN NNP NNP NNP , VBG JJ NNS . It said six children were among those killed , and that dozens of other civilians were wounded . PRP VBD CD NNS VBD IN DT VBN , CC IN NNS IN JJ NNS VBD VBN . But the military strongly denied targeting civilians . CC DT NN RB VBD VBG NNS . A military spokesman said one raid focused on a rebel naval base in Mannar , while another air attack was carried out on a rebel position in the east . DT JJ NN VBD CD NN VBD IN DT JJ JJ NN IN NNP , IN DT NN NN VBD VBN RP IN DT JJ NN IN DT NN . Violence has flared in Sri Lanka despite a 2002 truce between the government and rebels , who are fighting for independence . NN VBZ VBN IN NNP NNP IN DT CD NN IN DT NN CC NNS , WP VBP VBG IN NN . More than 3,000 people were killed last year . JJR IN CD NNS VBD VBN JJ NN . Since 1983 , some 67,000 civilians , troops and rebels have died in the conflict . IN CD , DT CD NNS , NNS CC NNS VBP VBN IN DT NN . Top-seeded Ivan Ljubicic of Croatia has broken Spaniard Carlos Moya 's hold on the Chennai Open tennis tournament by beating the two-time defending champion 07-Jun , 06-Feb in the title match in India . JJ NNP NNP IN NNP VBZ VBN NN NNP NNP POS NN IN DT NNP NNP NN NN IN VBG DT JJ VBG NN CD , CD IN DT NN NN IN NNP . The third-seeded Moya , who was trying for his third straight title at this event , squandered a 4-0 lead in the first set tiebreaker Sunday . DT JJ NNP , WP VBD VBG IN PRP$ JJ JJ NN IN DT NN , VBD DT JJ NN IN DT JJ NN NN NNP . Ljubicic then dominated Moya in the second set . NNP RB VBD NNP IN DT JJ NN . But before making it to the title match , Ljubicic had to get past Belgium 's Kristof Vliegen in a semifinal match disrupted by heavy rain Saturday night . CC IN VBG PRP TO DT NN NN , NNP VBD TO VB JJ NNP POS NNP NNP IN DT JJ NN VBN IN JJ NN NNP NN . Ljubicic led the match 03-Jan in the first set when the match was suspended . NNP VBD DT NN CD IN DT JJ NN WRB DT NN VBD VBN . Resuming Sunday , Ljubicic won the first set 06-Mar , before dropping the second set 03-Jun . VBG NNP , NNP VBD DT JJ NN CD , IN VBG DT JJ NN CD . The Croatian then survived a scare from Vliegen by rallying from 0-3 and 02-May deficits in the final set tiebreaker to win the match , 06-Mar , 03-Jun , 07-Jun . DT NN RB VBD DT NN IN NNP IN VBG IN CD CC CD NNS IN DT JJ NN NN TO VB DT NN , CD , CD , CD . A published report says the Bush administration is planning new measures against anyone doing business with Iranian , North Korean and Syrian companies Washington believes are involved in weapons programs . DT JJ NN VBZ DT NNP NN VBZ VBG JJ NNS IN DT VBG NN IN JJ , JJ JJ CC JJ NNS NNP VBZ VBP VBN IN NNS NNS . The Washington Post quotes unidentified U.S. officials in its report Monday saying the plan would initially target eight entities mostly suspected of working with missile programs in those three countries . DT NNP NNP VBZ JJ NNP NNS IN PRP$ NN NNP VBG DT NN MD RB VB CD NNS RB VBN IN VBG IN NN NNS IN DT CD NNS . An internal government memo indicates the plan would provide a new tool against the trafficking of weapons of mass destruction . DT JJ NN NN VBZ DT NN MD VB DT JJ NN IN DT NN IN NNS IN NN NN . The newspaper says new measures would include freezing assets of any U.S. or foreign individual or company conducting business with the suspected Iranian , North Korean and Syrian companies . DT NN VBZ JJ NNS MD VB VBG NNS IN DT NNP CC JJ JJ CC NN VBG NN IN DT JJ JJ , JJ JJ CC JJ NNS . White House officials are reported to be hopeful President Bush will sign the executive order before he heads to Scotland late this week for the Group of Eight summit . NNP NNP NNS VBP VBN TO VB JJ NNP NNP MD VB DT NN NN IN PRP VBZ TO NNP RB DT NN IN DT NNP IN CD NN . Heavy monsoon rains in Pakistan 's south have killed at least 26 people and cut off electricity in the country 's largest city , Karachi . JJ NN NNS IN NNP POS NN VBP VBN IN JJS CD NNS CC VB RP NN IN DT NN POS JJS NN , NNP . The rainfall started Saturday and flooded areas of the port city . DT NN VBD NNP CC VBN NNS IN DT JJ NN . Officials say some of the victims died from drowning and electrocution . NNS VBP DT IN DT NNS VBD IN VBG CC NN . Others were killed by collapsing homes . NNS VBD VBN IN VBG NNS . The 15 centimeters of rainfall damaged hundreds of buildings and downed power lines across the city . DT CD NNS IN NN VBN NNS IN NNS CC JJ NN NNS IN DT NN . Pakistani officials say they are working to restore electricity and control the situation . JJ NNS VBP PRP VBP VBG TO VB NN CC VB DT NN . Despite the downpour , meteorologists are predicting almost a third less rainfall this year . IN DT NN , NNS VBP VBG RB DT JJ JJR NN DT NN . Karachi suffers from outdated infrastructure and a poor drainage system that leaves parts of the city vulnerable to flooding . NNP VBZ IN VBN NN CC DT JJ NN NN WDT VBZ NNS IN DT NN NN TO NN . The Court of Arbitration for Sport has denied the appeal by Greek sprinters Konstantinos Kenteris and Ekaterina Thanou to be allowed to return to competition . DT NNP IN NNP IN NNP VBZ VBN DT NN IN JJ NNS NNP NNP CC NNP NNP TO VB VBN TO VB TO NN . The court refused to lift the sprinters ' provisional ban until after it rules whether Kenteris and Thanou deserve suspensions for missing three doping tests before the 2004 Olympics in Athens . DT NN VBD TO VB DT NNS POS JJ NN IN IN PRP VBZ IN NNP CC NNP VBP NNS IN VBG CD NN NNS IN DT CD NNS IN NNP . The Lausanne-based court said Monday it will take up the case again on June 26 , and plans to render its ruling within two to three days . DT JJ NN VBD NNP PRP MD VB RP DT NN RB IN NNP CD , CC VBZ TO VB PRP$ NN IN CD CC CD NNS . But the ban will stand until a decision is reached . CC DT NN MD VB IN DT NN VBZ VBN . Kenteris was the 200-meter Sydney Olympics champion in 2000 , while Thanou won the women 's 100-meter silver medal at the same Games . NNP VBD DT JJ NNP NNP NN IN CD , IN NNP VBD DT NNS POS JJ NN NN IN DT JJ NNPS . They were provisionally suspended by the athletics world governing body , IAAF last year after the Greek Athletics Federation refused to punish them . PRP VBD RB VBN IN DT NNS NN NN NN , NNP JJ NN IN DT JJ NNP NNP VBD TO VB PRP . Chilean President Ricardo Lagos is promising that his country will give a fair extradition trial to jailed former Peruvian President Alberto Fujimori . JJ NNP NNP NNP VBZ VBG IN PRP$ NN MD VB DT JJ NN NN TO JJ JJ JJ NNP NNP NNP . President Lagos said in Santiago that Mr. Fujimori will be accorded due process in line with the tradition of Chile 's judicial system . NNP NNP VBD IN NNP IN NNP NNP MD VB VBN JJ NN IN NN IN DT NN IN NNP POS JJ NN . Peru is seeking Mr. Fujimori 's extradition so he can face charges that include corruption and human rights abuses . NNP VBZ VBG NNP NNP POS NN IN PRP MD VB NNS WDT VBP NN CC JJ NNS NNS . He fled Peru in 2000 , after 10 years in office , and spent the past five years in his parents ' native Japan . PRP VBD NNP IN CD , IN CD NNS IN NN , CC VBD DT JJ CD NNS IN PRP$ NNS POS JJ NNP . Mr. Fujimori arrived in Chile Sunday , despite an international warrant for his arrest . NNP NNP VBD IN NNP NNP , IN DT JJ NN IN PRP$ NN . He was later arrested by Chilean police and was refused bond Japanese Embassy officials met with him at his detention facility on Wednesday . PRP VBD RB VBN IN JJ NN CC VBD VBN NN JJ NNP NNS VBD IN PRP IN PRP$ NN NN IN NNP . They say that Mr. Fujimori , who holds Japanese citizenship , expressed satisfaction with his living conditions . PRP VBP IN NNP NNP , WP VBZ JJ NN , VBD NN IN PRP$ NN NNS . The government of the Netherlands has suspended education , environment and water programs in Kenya , citing concerns over corruption . DT NN IN DT NNP VBZ VBN NN , NN CC NN NNS IN NNP , VBG NNS IN NN . In a statement , the Dutch government said it was suspending aid worth nearly $ 150 million to the east African country , because it has not seen enough proof the Kenyan government is fighting corruption . IN DT NN , DT JJ NN VBD PRP VBD VBG NN JJ RB $ CD CD TO DT JJ JJ NN , IN PRP VBZ RB VBN JJ NN DT JJ NN VBZ VBG NN . The Dutch government said it will continue to fund judicial reform and good governance programs . DT JJ NN VBD PRP MD VB TO VB JJ NN CC JJ NN NNS . The government of Kenyan President Mwai Kibaki has been hit by two major multimillion dollar corruption scandals that have forced the ministers of energy , finance and education to resign . DT NN IN JJ NNP NNP NNP VBZ VBN VBN IN CD JJ JJ NN NN NNS WDT VBP VBN DT NNS IN NN , NN CC NN TO VB . Kenya 's vice president , central bank governor , former intelligence and security ministers and other officials are being investigated in connection with the scandals . NNP POS NN NN , JJ NN NN , JJ NN CC NN NNS CC JJ NNS VBP VBG VBN IN NN IN DT NNS . Mr. Kibaki won the presidency in 2002 and pledged to root out the systemic corruption that marked former President Daniel arap Moi 's 24 years in power . NNP NNP VBD DT NN IN CD CC VBD TO VB RP DT JJ NN WDT VBD JJ NNP NNP NNP NNP POS CD NNS IN NN . Police in Iraq say 17 people have been killed in a car bomb explosion south of Baghdad . NNS IN NNP VBP CD NNS VBP VBN VBN IN DT NN NN NN NN IN NNP . Officials say Saturday 's blast occurred near a hospital in Musayyib , about 55 kilometers south of the Iraqi capital . NNS VBP NNP POS NN VBD IN DT NN IN NNP , IN CD NNS RB IN DT JJ NN . About 20 people were injured . IN CD NNS VBD VBN . Earlier Saturday , masked assailants in the southern city of Basra shot and killed a judge , Taha al-Amiri , who had worked in Saddam Hussein 's regime . RBR NNP , VBN NNS IN DT JJ NN IN NNP VBD CC VBD DT NN , NNP NNP , WP VBD VBN IN NNP NNP POS NN . Meanwhile , police in the northern city of Mosul say they have discovered the bodies of at least six Iraqis who had been shot in the head and chest . RB , NNS IN DT JJ NN IN NNP VBP PRP VBP VBN DT NNS IN IN JJS CD NNS WP VBD VBN VBN IN DT NN CC NN . The violence comes one day after 23 people were killed in attacks against Shi'ite Muslim targets in Iraq . DT NN VBZ CD NN IN CD NNS VBD VBN IN NNS IN NNP NNP NNS IN NNP . About 20,000 Mexican union workers clogged rush hour traffic in the capital Tuesday demanding that the recently ousted miners ' union boss be reinstated . IN CD JJ NN NNS VBD NN NN NN IN DT NN NNP VBG IN DT RB VBN NNS POS NN NN VB VBN . Union leaders threatened to call a general strike if the government did not retract its support for the newly installed General Secretary of the miners ' union , Elias Morales . NNP NNS VBD TO VB DT JJ NN IN DT NN VBD RB VB PRP$ NN IN DT RB VBN NNP NNP IN DT NNS POS NN , NNP NNPS . The government had earlier removed Napoleon Gomez from the elected position . DT NN VBD RBR VBN NNP NNP IN DT VBN NN . Gomez has been under investigation by the government for alleged corruption . NNP VBZ VBN IN NN IN DT NN IN JJ NN . Tuesday 's march comes days after the 250,000-member National Miners and Metal Workers Union shut down most mining and steel operations across the country in a two-day strike to support Gomez . NNP POS NN VBZ NNS IN DT JJ NNP NNPS CC NNP NNP NNP VBD RP RBS NN CC NN NNS IN DT NN IN DT JJ NN TO VB NNP . Egypt 's ruling party said Wednesday that it will back 82-year-old Hosni Mubarak if he decides run for another term as president in 2011 , even though Mr. Mubarak has yet to say whether he will seek another term . NNP POS NN NN VBD NNP IN PRP MD VB JJ NNP NNP IN PRP VBZ VBN IN DT NN IN NN IN CD , RB IN NNP NNP VBZ RB TO VB IN PRP MD VB DT NN . Egypt 's state-run MENA news agency quotes National Democratic Party leader Safwat Sherif as saying his party is just waiting for President Mubarak 's decision on whether he will run again in 2011 . NNP POS JJ NNP NN NN VBZ NNP NNP NNP NN NNP NNP IN VBG PRP$ NN VBZ RB VBG IN NNP NNP POS NN IN IN PRP MD VB RB IN CD . The 82-year-old leader has ruled Egypt for nearly 30 years . DT JJ NN VBZ VBN NNP IN RB CD NNS . There has been speculation about his health and whether he will again seek office since his gallbladder surgery in March . EX VBZ VBN NN IN PRP$ NN CC IN PRP MD RB VB NN IN PRP$ NN NN IN NNP . Also , many political experts believe Mr. Mubarak is grooming his son , Gamal , to take over . RB , JJ JJ NNS VBP NNP NNP VBZ VBG PRP$ NN , NNP , TO VB RP . Mr. Mubarak and his son have both denied any succession plan , but the Reuters news agency quotes one party official as saying Gamal Mubarak could be a candidate , along with others in the 2011 contest . NNP NNP CC PRP$ NN VBP DT VBN DT NN NN , CC DT NNP NN NN VBZ CD NN NN IN VBG NNP NNP MD VB DT NN , IN IN NNS IN DT CD NN . A hamstring injury will keep Olympic triple jump champion Christian Olsson of Sweden out of the Summer Games in Beijing . DT VBG NN MD VB NNP JJ NN NN NNP NNP IN NNP IN IN DT NNPS NNPS IN NNP . Olsson says he pulled a muscle Tuesday in his fourth jump at the DN Galan athletic meet in Stockholm . NNP VBZ PRP VBD DT NN NNP IN PRP$ JJ NN IN DT NNP NNP JJ VB IN NNP . The 28-year-old Swede has been plagued by injuries since winning the gold medal in Athens four years ago . DT JJ NN VBZ VBN VBN IN NNS IN VBG DT NN NN IN NNP CD NNS RB . He was competing this week for the first time after a long break . PRP VBD VBG DT NN IN DT JJ NN IN DT JJ NN . Olsson placed third with a jump of 17-meters from a second round jump at Olympic Stadium . NNP VBD JJ IN DT NN IN NNS IN DT JJ NN NN IN NNP NNP . But Olsson says he will have to consider if he should continue his career . CC NNP VBZ PRP MD VB TO VB IN PRP MD VB PRP$ NN . Marian Oprea of Romania won Tuesday 's triple jump with an effort of 17 meters , 25 centimeters . NNP NNP IN NNP VBD NNP POS JJ NN IN DT NN IN CD NNS , CD NNS . Dmitrij Valukevic of Slovakia was second - 17 meters , one centimeter . NNP NNP IN NNP VBD JJ IN CD NNS , CD NN . Sri Lankan President Chandrika Kumaratunga says the unprecedented tragedy gripping the country offers an opportunity to find a permanent solution to the ethnic conflict plaguing the island nation . NNP NNP NNP NNP NNP VBZ DT JJ NN VBG DT NN VBZ DT NN TO VB DT JJ NN TO DT JJ NN VBG DT NN NN . In a New Year 's message , Mrs. Kumaratunga asked her country to unite - without regard to ethnicity , religion or class - to face the staggering destruction from Sunday 's tsunami . IN DT NNP NNP POS NN , NNP NNP VBD PRP$ NN TO VB : IN NN TO NN , NN CC NN : TO VB DT JJ NN IN NNP POS NN . The president 's attempts to revive peace talks with Tamil separatists have been deadlocked for 20 months and her remarks were being seen in Colombo as an overture for peace . DT NN POS NNS TO VB NN NNS IN NNP NNS VBP VBN VBN IN CD NNS CC PRP$ NNS VBD VBG VBN IN NNP IN DT NN IN NN . Relief supplies have begun arriving in Sri Lanka , but reports indicate that aid convoys continue to have difficulty reaching some of the hardest hit areas . NNP NNS VBP VBN VBG IN NNP NNP , CC NNS VBP IN NN NNS VBP TO VB NN VBG DT IN DT RBS VBN NNS . The Israeli parliament has voted down the 2005 state budget , triggering a political crisis that could stall or wreck Prime Minister Ariel Sharon 's plans to evacuate the Gaza Strip . DT JJ NN VBZ VBN IN DT CD NN NN , VBG DT JJ NN WDT MD VB CC VB NNP NNP NNP NNP POS NNS TO VB DT NNP NNP . The 69-43 vote comes as Mr. Sharon struggles to keep his minority Likud coalition together ahead of upcoming votes on the planned 2005 Gaza withdrawal . DT JJ NN VBZ IN NNP NNP VBZ TO VB PRP$ NN NNP NN RB RB IN VBG NNS IN DT JJ CD NNP NN . Opponents have vowed to scuttle the evacuation . NNS VBP VBN TO VB DT NN . The political crisis erupted Wednesday , when the secular Shinui party - upset with funding provisions for religious parties - defied Mr. Sharon 's orders and voted against the budget on its first reading . DT JJ NN VBD NNP , WRB DT JJ NNP NN : VBN IN NN NNS IN JJ NNS : VBD NNP NNP POS NNS CC VBD IN DT NN IN PRP$ JJ NN . A short while later , the prime minister fired the renegade Shinui ministers , leaving the Likud coalition in control of only 40 votes in the 120-seat Knesset . DT JJ NN RB , DT JJ NN VBD DT NN NNP NNS , VBG DT NNP NN IN NN IN RB CD NNS IN DT JJ NNP . Party officials say Mr. Sharon will soon begin negotiations to bring the opposition Labor Party 's 22 lawmakers into the government . NNP NNS VBP NNP NNP MD RB VB NNS TO VB DT NN NNP NNP POS CD NNS IN DT NN . The Israeli military says it has carried out three air strikes on Gaza following rocket attacks by Palestinian militants . DT JJ NN VBZ PRP VBZ VBN IN CD NN NNS IN NNP VBG NN NNS IN JJ NNS . Gaza officials say no injuries were reported from the strikes . NNP NNS VBP DT NNS VBD VBN IN DT NNS . The Israeli army says two of the strikes hit smuggling tunnels on the territory 's border with Egypt . DT JJ NN VBZ CD IN DT NNS VBD VBG NNS IN DT NN POS NN IN NNP . Aircraft also struck a building allegedly used by militants to store arms . NNP RB VBD DT NN RB VBN IN NNS TO VB NNS . Palestinian militants fired two rockets into Israel Sunday causing no injuries . JJ NNS VBD CD NNS IN NNP NNP VBG DT NNS . Israel launched a three-week offensive in late December against the Palestinian militant group Hamas , which rules the Gaza Strip . NNP VBD DT JJ NN IN JJ NNP IN DT JJ JJ NN NNP , WDT VBZ DT NNP NNP . The offensive was in response to continuing rocket attacks from Gaza . DT NN VBD IN NN TO VBG NN NNS IN NNP . Both Hamas and Israel declared unilateral cease-fires in January , but the violence continues almost daily . DT NNP CC NNP VBD JJ NNS IN NNP , CC DT NN VBZ RB RB . Chad 's president has urged Sudan 's government and rebels in the western Darfur region to respect a repeatedly violated cease-fire , and declare an end to their two-year civil war . NNP POS NN VBZ VBN NNP POS NN CC NNS IN DT JJ NNP NN TO VB DT RB VBN NN , CC VB DT NN TO PRP$ JJ JJ NN . President Idriss Deby told officials from both sides at a meeting in Chad Thursday that it is time for them to respect their commitments . NNP NNP NNP VBD NNS IN DT NNS IN DT NN IN NNP NNP IN PRP VBZ NN IN PRP TO VB PRP$ NNS . Wednesday , officials at the meeting , including Sudan 's President Omar Hassan al-Bashir , asked mediators to prepare for a new round of talks later this month . NNP , NNS IN DT NN , VBG NNP POS NNP NNP NNP NNP , VBD NNS TO VB IN DT JJ NN IN NNS RB DT NN . Three previous rounds of talks have failed to stop the violence in Darfur , which has left at least 70,000 people dead and 1.5 million others displaced . CD JJ NNS IN NNS VBP VBN TO VB DT NN IN NNP , WDT VBZ VBN IN JJS CD NNS JJ CC CD CD NNS VBD . U.N. Secretary-General Kofi Annan urged the Security Council Wednesday to act quickly to stop what he called ' further death and suffering ' in Darfur . NNP NNP NNP NNP VBD DT NNP NNP NNP TO VB RB TO VB WP PRP VBD `` RBR NN CC VBG `` IN NNP . Differences over an election bill and choice for interior minister have delayed Monday 's expected announcement of formation of a new government in Lebanon . NNS IN DT NN NN CC NN IN JJ NN VBP VBN NNP POS JJ NN IN NN IN DT JJ NN IN NNP . An official in Beirut said talks were under way to break the impasse , which threatens to delay parliamentary elections scheduled for May . DT NN IN NNP VBD NNS VBD IN NN TO VB DT NN , WDT VBZ TO VB JJ NNS VBN IN NNP . Lebanon has been without a government since mass protests erupted after the assassination of former Prime Minister Rafik Hariri . NNP VBZ VBN IN DT NN IN JJ NNS VBD IN DT NN IN JJ NNP NNP NNP NNP . Under intense domestic and international pressure following the demonstrations , pro-Syrian Prime Minister Omar Karami and his government resigned in February . IN JJ JJ CC JJ NN VBG DT NNS , JJ NNP NNP NNP NNP CC PRP$ NN VBD IN NNP . He was re-appointed two weeks later after pro-Syrian legislators refused to accept his resignation . PRP VBD JJ CD NNS RB IN JJ NNS VBD TO VB PRP$ NN . Anti-Syrian opposition leaders say Mr. Karami 's inability to form a new government is really a delaying tactic to try to derail the elections , which can not be held until a new government if formed . JJ NN NNS VBP NNP NNP POS NN TO VB DT JJ NN VBZ RB DT NN NN TO VB TO VB DT NNS , WDT MD RB VB VBN IN DT JJ NN IN VBN . U.S. President George Bush has signed a measure extending unemployment benefits for a growing number of out-of-work Americans . NNP NNP NNP NNP VBZ VBN DT NN VBG NN NNS IN DT VBG NN IN JJ NNS . Mr. Bush signed the legislation into law Friday and it allows unemployed Americans to receive government payment for an extra seven weeks . NNP NNP VBD DT NN IN NN NNP CC PRP VBZ JJ NNS TO VB NN NN IN DT JJ CD NNS . Those in states with higher unemployment rates can receive benefits even longer . DT IN NNS IN JJR NN NNS MD VB NNS RB RBR . The U.S. Senate passed the bill Thursday , after a new report showed the number of unemployed Americans signing up for benefits for the first time grew to the highest level in 16 years . DT NNP NNP VBD DT NN NNP , IN DT JJ NN VBD DT NN IN JJ NNS VBG RP IN NNS IN DT JJ NN VBD TO DT JJS NN IN CD NNS . The White House said the financial and credit crises has slowed the U.S. economy ' dramatically ' , and has had an impact on job creation . DT NNP NNP VBD DT JJ CC NN NNS VBZ VBN DT NNP NN `` RB `` , CC VBZ VBN DT NN IN NN NN . U.N. special envoy , former U.S. President George H.W. Bush , has toured a tent camp in the Pakistani capital , Islamabad , housing the survivors of last year 's devastating earthquake . NNP JJ NN , JJ NNP NNP NNP NNP NNP , VBZ VBN DT JJ NN IN DT JJ NN , NNP , NN DT NNS IN JJ NN POS JJ NN . But winter weather prevented him from visiting Pakistani Kashmir 's ruined capital , Muzaffarabad , and also grounded vital aid flights to survivors there for a third straight day . CC NN NN VBD PRP IN VBG JJ NNP POS JJ NN , NNP , CC RB VBD JJ NN NNS TO NNS RB IN DT JJ JJ NN . At a joint news conference with Pakistan 's Prime Minister Shaukat Aziz , Tuesday Mr. Bush said his role is to encourage those who have pledged relief and reconstruction aid to deliver on their pledges . IN DT JJ NN NN IN NNP POS NNP NNP NNP NNP , NNP NNP NNP VBD PRP$ NN VBZ TO VB DT WP VBP VBN NN CC NN NN TO VB IN PRP$ NNS . A U.N.-led relief operation is under way in Pakistan , but U.N. officials say the world body is still far short of the $ 500 million needed to sustain the effort . DT JJ NN NN VBZ IN NN IN NNP , CC NNP NNS VBP DT NN NN VBZ RB RB JJ IN DT $ CD CD VBN TO VB DT NN . The October 8 quake killed more than 73,000 people and left some three million homeless . DT NNP CD NN VBD JJR IN CD NNS CC VBD DT CD CD NN . Pope Benedict says the Catholic Church must examine failures that have allowed for ' an unimaginable dimension ' of sexual abuse by priests . NN NNP VBZ DT NNP NNP MD VB NNS WDT VBP VBN IN `` DT JJ NN `` IN JJ NN IN NNS . The pope said Monday that church authorities also must renew efforts to help victims and screen potential pedophiles from the priesthood . DT NN VBD NNP IN NN NNS RB MD VB NNS TO VB NNS CC NN JJ NNS IN DT NN . Speaking to cardinals and bishops gathered in Rome to hear the pontiff 's traditional Christmas message , the pope defended most priests for their good works but said the church had to ask itself what was wrong in its message that allowed such abuse to occur . VBG TO NNS CC NNS VBN IN NNP TO VB DT NN POS JJ NNP NN , DT NN VBD RBS NNS IN PRP$ JJ NNS CC VBD DT NN VBD TO VB PRP WP VBD JJ IN PRP$ NN WDT VBD JJ NN TO VB . Catholics in Ireland , Germany , the Netherlands and Belgium have demanded church accountability for the abuses , which began coming to light eight years ago in the United States and later became apparent in Europe . NNS IN NNP , NNP , DT NNP CC NNP VBP VBN NN NN IN DT NNS , WDT VBD VBG TO NN CD NNS RB IN DT NNP NNPS CC RB VBD JJ IN NNP . Victims have accused the church hierarchy of failing for decades to act swiftly to punish errant priests . NNS VBP VBN DT NN NN IN VBG IN NNS TO VB RB TO VB JJ NNS . Peru 's economy expanded 9.8 percent in 2008 as strong commodity prices helped it grow at the fastest rate in 14 years . NNP POS NN VBD CD NN IN CD IN JJ NN NNS VBD PRP VB IN DT JJS NN IN CD NNS . News reports say growth slowed a bit at the end of 2008 and the beginning of this year . NN NNS VBP NN VBD DT NN IN DT NN IN CD CC DT NN IN DT NN . A report from Bloomberg also says Peru 's government is reporting a one percentage point increase in unemployment , putting the rate at 8.8 percent . DT NN IN NNP RB VBZ NNP POS NN VBZ VBG DT CD NN NN NN IN NN , VBG DT NN IN CD NN . Peruvian officials apparently hope to boost trade to help economic growth . JJ NNS RB VBP TO VB NN TO VB JJ NN . Japan 's Kyoto news service reports that Peru 's foreign and trade ministers plan a visit to Japan for talks on bilateral trade and other issues February 23 . NNP POS NNP NN NN VBZ IN NNP POS JJ CC NN NNS VBP DT NN TO NNP IN NNS IN JJ NN CC JJ NNS NNP CD . Japan is seeking lower duties on cars it sells to Peru while Peru wants better access to Japan 's farm and fisheries markets . NNP VBZ VBG JJR NNS IN NNS PRP VBZ TO NNP IN NNP VBZ JJR NN TO NNP POS NN CC NNS NNS . China has confirmed that the next round of six-country talks on North Korea 's nuclear weapons program will begin November 9 in Beijing . NNP VBZ VBN IN DT JJ NN IN JJ NNS IN NNP NNP POS JJ NNS NN MD VB NNP CD IN NNP . The date was announced Thursday , by China 's Foreign Ministry . DT NN VBD VBN NNP , IN NNP POS NNP NNP . Next Wednesday 's start for the six-party talks comes just ahead of the Asia-Pacific Economic Cooperation forum November 18 and 19 in Busan , South Korea . JJ NNP POS NN IN DT JJ NNS VBZ RB RB IN DT NNP NNP NNP NN NNP CD CC CD IN NNP , NNP NNP . At the last round of nuclear talks in September , North Korea agreed to abandon its nuclear programs in exchange for economic aid and security assurances . IN DT JJ NN IN JJ NNS IN NNP , NNP NNP VBD TO VB PRP$ JJ NNS IN NN IN JJ NN CC NN NNS . But Pyongyang then said it will not disarm unless it is first given a civilian light-water nuclear reactor for power generation - a demand U.S. officials say is unacceptable . CC NNP RB VBD PRP MD RB VB IN PRP VBZ RB VBN DT JJ NN JJ NN IN NN NN IN DT NN NNP NNS VBP VBZ JJ . The six party talks include both Koreas , China , Russia , Japan and the United States . DT CD NN NNS VBP DT NNP , NNP , NNP , NNP CC DT NNP NNPS . Former Ecuadorean President Lucio Gutierrez has formally requested political asylum in Colombia after receiving reports he is wanted in his homeland on treason charges . JJ NNP NNP NNP NNP VBZ RB VBN JJ NN IN NNP IN VBG NNS PRP VBZ VBN IN PRP$ NN IN NN NNS . Colombian officials say Mr. Gutierrez submitted his application after arriving from Peru Wednesday and that he has permission to remain in Colombia for 90 days while the asylum request is examined . JJ NNS VBP NNP NNP VBD PRP$ NN IN VBG IN NNP NNP CC IN PRP VBZ NN TO VB IN NNP IN CD NNS IN DT NN NN VBZ VBN . Last July , the Ecuadorean government issued an arrest warrant for the former president , charging him with harming national security . JJ NNP , DT JJ NN VBD DT NN NN IN DT JJ NN , VBG PRP IN VBG JJ NN . Aides to Mr. Gutierrez say the charges may be related to comments he made in the United States shortly after his ouster in April , claiming he remains Ecuador 's constitutional president . NNS TO NNP NNP VBP DT NNS MD VB VBN TO NNS PRP VBD IN DT NNP NNPS RB IN PRP$ NN IN NNP , VBG PRP VBZ NNP POS JJ NN . Ecuador 's Congress removed Mr. Gutierrez from office after weeks of mass protests . NNP POS NNP VBD NNP NNP IN NN IN NNS IN JJ NNS . Critics had demanded his resignation for what they called an abuse of power after he packed the Supreme Court with his allies . NNS VBD VBN PRP$ NN IN WP PRP VBD DT NN IN NN IN PRP VBD DT NNP NNP IN PRP$ NNS . Israeli media say the navy is building an underwater barrier off the coast of northern Gaza to stop potential Palestinian infiltrators . JJ NNS VBP DT NN VBZ VBG DT NN NN IN DT NN IN JJ NNP TO VB JJ JJ NNS . The Jerusalem Post newspaper quotes Israeli military officials as saying the barrier will stretch 950 meters into the sea from Israel 's border with the Gaza Strip . DT NNP NNP NN VBZ JJ NN NNS IN VBG DT NN MD VB CD NNS IN DT NN IN NNP POS NN IN DT NNP NNP . The report says the first 150 meters will consist of cement pilings buried into the sandy bottom while the remaining 800 meters will be formed by a floating fence . DT NN VBZ DT JJ CD NNS MD VB IN NN NNS VBN IN DT JJ NN IN DT VBG CD NNS MD VB VBN IN DT JJ NN . The structure is designed to stop Gaza-based militants from swimming to the Israeli coast once Israel pulls out of Gaza and parts of the West Bank . DT NN VBZ VBN TO VB JJ NNS IN NN TO DT JJ NN RB NNP VBZ IN IN NNP CC NNS IN DT NNP NNP . Israel is also building a land barrier along the West Bank . NNP VBZ RB VBG DT NN NN IN DT NNP NNP . The U.S. military says three more American service members have been killed in Iraq . DT NNP NN VBZ CD JJR JJ NN NNS VBP VBN VBN IN NNP . A military statement says two Marines died Thursday from wounds sustained in combat in Anbar province -- a Sunni insurgent stronghold west of Baghdad . DT JJ NN VBZ CD NNP VBD NNP IN NNS VBN IN NN IN NNP NN IN DT NNP JJ NN NN IN NNP . Another statement said a soldier died in combat this week in Ninewa province , northwest of Baghdad More than 2900 U.S. troops have been killed in Iraq since the 2003 invasion . DT NN VBD DT NN VBD IN NN DT NN IN NNP NN , NN IN NNP JJR IN CD NNP NNS VBP VBN VBN IN NNP IN DT CD NN . In Baghdad Thursday , Arizona Republican Senator John McCain called for 15,000 to 30,000 more U.S. troops in Iraq to help stop sectarian violence . IN NNP NNP , NNP NNP NNP NNP NNP VBD IN CD TO CD JJR NNP NNS IN NNP TO VB VB JJ NN . But the U.S. Army 's top general , Peter Schoomaker , warned of the strains on the Army from overseas deployments . CC DT NNP NNP POS JJ NN , NNP NNP , VBD IN DT NNS IN DT NN IN JJ NNS . The general said the Army ' will break ' without thousands more active duty soldiers . DT NN VBD DT NNP `` MD VB `` IN NNS RBR JJ NN NNS . The Israeli military says a rocket fired from the Gaza Strip has landed in southern Israel , further straining the fragile cease-fire between Israel and the Palestinian militant group Hamas . DT JJ NN VBZ DT NN VBN IN DT NNP NNP VBZ VBN IN JJ NNP , RB VBG DT JJ NN IN NNP CC DT JJ JJ NN NNP . Israeli officials did not report any injuries or damage from the rocket . JJ NNS VBD RB VB DT NNS CC NN IN DT NN . No one has claimed responsibility for Monday 's incident . DT NN VBZ VBN NN IN NNP POS NN . Hamas has warned it will take action against anyone who breaks the truce . NNP VBZ VBN PRP MD VB NN IN DT WP VBZ DT NN . On Sunday , Israel re-opened a border crossing with Gaza to allow about 80 truckloads of commercial goods into the Palestinian territory . IN NNP , NNP VBD DT NN VBG IN NNP TO VB IN CD NNS IN JJ NNS IN DT JJ NN . Israel closed the crossings after an Islamic Jihad rocket attack last week . NNP VBD DT NNS IN DT JJ NN NN NN JJ NN . The group said the attack was revenge for Israel 's killing of one of its commanders in the West Bank . DT NN VBD DT NN VBD NN IN NNP POS NN IN CD IN PRP$ NNS IN DT NNP NNP . The West Bank is not included in a cease-fire agreement between Israel and Hamas leaders in the Gaza Strip . DT NNP NNP VBZ RB VBN IN DT NN NN IN NNP CC NNP NNS IN DT NNP NNP . Supporters and opponents of the war in Iraq have faced off against each other at rival rallies outside President Bush 's Crawford , Texas ranch . NNS CC NNS IN DT NN IN NNP VBP VBN RP IN DT NN IN JJ NNS IN NNP NNP POS NNP , NNP NN . On Saturday , police kept dozens of Bush supporters and anti-war activists on separate sides of a narrow country road , as the two sides jeered at each other . IN NNP , NN VBD NNS IN NNP NNS CC JJ NNS IN JJ NNS IN DT JJ NN NN , IN DT CD NNS VBD IN DT NN . At least two people were arrested . IN JJS CD NNS VBD VBN . Elsewhere in town , thousands of people gathered for pro-Bush and anti-war rallies . RB IN NN , NNS IN NNS VBN IN JJ CC JJ NNS . Folk singer and peace activist Joan Baez led supporters in song at the anti-war gathering . NN NN CC NN NN NNP NNP VBD NNS IN NN IN DT JJ NN . The anti-war activists are led by Cindy Sheehan , whose son , Casey , was killed in Iraq last year . DT JJ NNS VBP VBN IN NNP NNP , WP$ NN , NNP , VBD VBN IN NNP JJ NN . Mrs. Sheehan began holding vigils in Crawford earlier this month and has demanded to meet with President Bush to discuss the war . NNP NNP VBD VBG NNS IN NNP RBR DT NN CC VBZ VBN TO VB IN NNP NNP TO VB DT NN . During his radio address Saturday , the president appealed for Americans to be patient with the military mission in Iraq . IN PRP$ NN NN NNP , DT NN VBD IN NNS TO VB JJ IN DT JJ NN IN NNP . Colombia 's Constitutional Court has approved a law that allows presidents to serve more than one term , which could pave the way for the current president to run again . NNP POS NNP NNP VBZ VBN DT NN WDT VBZ NNS TO VB JJR IN CD NN , WDT MD VB DT NN IN DT JJ NN TO VB RB . The decision from the country 's highest court came Wednesday . DT NN IN DT NN POS JJS NN VBD NNP . Colombian President Alvaro Uribe must wait for the court to decide on another measure that sets the rules for incumbents before his name can appear on the ballot for elections set for May . JJ NNP NNP NNP MD VB IN DT NN TO VB IN DT NN WDT VBZ DT NNS IN NNS IN PRP$ NN MD VB IN DT NN IN NNS VBN IN NNP . The president , who was elected in 2002 , has instituted tough policies against insurgents and drug traffickers . DT NN , WP VBD VBN IN CD , VBZ VBN JJ NNS IN NNS CC NN NNS . Colombia has been mired in four decades of civil war . NNP VBZ VBN VBN IN CD NNS IN JJ NN . Egypt 's intelligence chief Omar Suleiman met with Hamas leader Khaled Meshaal Tuesday in Cairo for talks on forging a power-sharing deal between Hamas and its political rival Fatah . NNP POS NN NN NNP NNP VBD IN NNP NN NNP NNP NNP IN NNP IN NNS IN VBG DT JJ NN IN NNP CC PRP$ JJ NN NNP . The meeting comes just days after Suleiman met with members of a Fatah delegation . DT NN VBZ RB NNS IN NNP VBD IN NNS IN DT NNP NN . Egypt has been trying to get the two groups to form a unity government , but tensions between the rival factions have been rising , with recent deadly clashes in the West Bank . NNP VBZ VBN VBG TO VB DT CD NNS TO VB DT NN NN , CC NNS IN DT JJ NNS VBP VBN VBG , IN JJ JJ NNS IN DT NNP NNP . In the West Bank Tuesday , Palestinian security forces shot and wounded a motorist who they believed was threatening a convoy carrying a senior aide to Palestinian President Mahmoud Abbas . IN DT NNP NNP NNP , JJ NN NNS VBD CC VBD DT NN WP PRP VBD VBD VBG DT NN VBG DT JJ NN TO JJ NNP NNP NNP . A spokesman for the security forces , Adnan Damiri , said the driver refused orders to move his car away from the convoy carrying Mr. Abbas ' aide , Tayyeb Abel-Rahim . DT NN IN DT NN NNS , NNP NNP , VBD DT NN VBD NNS TO VB PRP$ NN RB IN DT NN VBG NNP NNP POS NN , NNP NNP . The spokesman said it was not clear whether the man was posing a deliberate threat . DT NN VBD PRP VBD RB JJ IN DT NN VBD VBG DT JJ NN . Crude oil prices rose above $ 96 a barrel in Tuesday 's trading . JJ NN NNS VBD IN $ CD DT NN IN NNP POS NN . That is a rise of more than $ 2 . DT VBZ DT NN IN JJR IN $ CD . Oil traders say the rising price of oil is partly the result of the falling value of the U.S. dollar . NN NNS VBP DT VBG NN IN NN VBZ RB DT NN IN DT VBG NN IN DT NNP NN . The greenback hit a record low compared to the euro Tuesday . DT NN VBD DT NN NN VBN TO DT NN NNP . Oil has traditionally been priced in dollars , so when the value of the dollar falls , it puts upward pressure on the price of crude . NNP VBZ RB VBN VBN IN NNS , RB WRB DT NN IN DT NN VBZ , PRP VBZ JJ NN IN DT NN IN NN . Palestinian security forces have arrested a Hamas militant long wanted by both the Palestinian Authority and Israel . JJ NN NNS VBP VBN DT NNP NN RB VBN IN DT DT JJ NNP CC NNP . Senior Palestinian security officials , speaking on the condition of anonymity Friday , said forces captured Ayoub Al-Qawasmi near the West Bank city of Hebron . JJ JJ NN NNS , VBG IN DT NN IN NN NNP , VBD NNS VBD NNP NNP IN DT NNP NNP NN IN NNP . Officials said al-Qawasmi has been wanted since 1998 for a series of attacks on Israelis . NNS VBD NNP VBZ VBN VBN IN CD IN DT NN IN NNS IN NNS . Israel has also been conducting security sweeps near Hebron in recent days . NNP VBZ RB VBN VBG NN NNS IN NNP IN JJ NNS . Israeli forces on Thursday seized a Hamas member of the Palestinian parliament who had recently been released from an Israeli prison . JJ NNS IN NNP VBD DT NNP NN IN DT JJ NN WP VBD RB VBN VBN IN DT JJ NN . Separately , the French News Agency ( AFP ) Friday said Israel 's Shin Bet security service released a statement saying 2010 has had the fewest militant attacks against Israel since a Palestinian uprising began a decade ago . RB , DT NNP NNP NNP LRB NNP RRB NNP VBD NNP POS NNP NNP NN NN VBN DT NN VBG CD VBZ VBN DT JJS JJ NNS IN NNP IN DT JJ NN VBD DT NN RB . But , the statement also says Hamas leaders in the Gaza Strip have intensified efforts to smuggle in advanced weapons . CC , DT NN RB VBZ NNP NNS IN DT NNP NNP VBP VBN NNS TO VB IN JJ NNS . British Finance Minister Gordon Brown has outlined a series of measures to halt the funding of terrorists . NNP NNP NNP NNP NNP VBZ VBN DT NN IN NNS TO VB DT NN IN NNS . During a speech in London Tuesday , Mr. Brown said the new measures would allow the Treasury to act based on classified intelligence . IN DT NN IN NNP NNP , NNP NNP VBD DT JJ NNS MD VB DT NNP TO VB VBN IN JJ NN . He said there should be no safe haven for terrorists nor those who finance them anywhere in the world . PRP VBD EX MD VB DT JJ NN IN NNS CC DT WP VB PRP RB IN DT NN . Brown said the government measures would be accountable to parliament scrutiny . NNP VBD DT NN NNS MD VB JJ TO NN NN . Political analysts say the speech was designed to bolster Brown 's credentials to succeed Prime Minister Tony Blair , who has said he plans to step down within the next year . JJ NNS VBP DT NN VBD VBN TO VB NNP POS NNS TO VB NNP NNP NNP NNP , WP VBZ VBN PRP VBZ TO VB RP IN DT JJ NN . The British government already has tightened several anti-terrorism laws since four British Islamist suicide bombers killed 52 people on London 's transport network last July . DT JJ NN RB VBZ VBN JJ NN NNS IN CD JJ NNP NN NNS VBD CD NNS IN NNP POS NN NN JJ NNP . The traditional Christmas shopping season in the U.S. kicked off in surprising fashion this past weekend . DT JJ NNP NN NN IN DT NNP VBD RP IN JJ NN DT JJ NN . But , some analysts say the brief spending spree will not be enough to boost retail profits or spare the industry from the weakest holiday sales in decades . CC , DT NNS VBP DT JJ NN NN MD RB VB RB TO VB JJ NNS CC VB DT NN IN DT JJS NN NNS IN NNS . As Carolyn Presutti reports , the gains came at the expense of stores that slashed prices to lure shoppers . IN NNP NNP VBZ , DT NNS VBD IN DT NN IN NNS WDT VBD NNS TO VB NNS . Israeli troops have shot and killed three Hamas militants in separate incidents along Israel 's border with the Gaza Strip . JJ NNS VBP VBN CC VBN CD NNP NNS IN JJ NNS IN NNP POS NN IN DT NNP NNP . In the first incident Wednesday , Israeli soldiers killed two Hamas militants near the Karni cargo crossing . IN DT JJ NN NNP , JJ NNS VBD CD NNP NNS IN DT NNP NN VBG . Hours later , the Israeli military says troops opened fire at several gunmen who approached the border fence near the Erez crossing in northern Gaza . NNS RB , DT JJ NN VBZ NNS VBD NN IN JJ NNS WP VBD DT NN NN IN DT NNP VBG IN JJ NNP . One Hamas militant was reported killed and two others were wounded . CD NNP NN VBD VBN VBN CC CD NNS VBD VBN . Israeli troops frequently fire at Palestinians who approach Gaza 's border fence to prevent infiltrations and to stop militants from launching rockets into Israel . JJ NNS RB VBP IN NNS WP VBP NNP POS NN NN TO VB NNS CC TO VB NNS IN VBG NNS IN NNP . Hamas seized control of Gaza in mid-June after weeks of fighting with rival Fatah security forces loyal to Palestinian President Mahmoud Abbas . NNP VBD NN IN NNP IN NNP IN NNS IN VBG IN JJ NNP NN NNS JJ TO JJ NNP NNP NNP . Israel and the international community support the West Bank-based Palestinian government formed by Mr. Abbas and do not recognize Hamas as a legitimate governing body . NNP CC DT JJ NN NN DT NNP JJ JJ NN VBN IN NNP NNP CC VBP RB VB NNP IN DT JJ NN NN . A train accident in the Republic of Congo has killed around 60 people and injured hundreds of others . DT NN NN IN DT NNP IN NNP VBZ VBN IN CD NNS CC JJ NNS IN NNS . Officials with rail company CFCO say four train cars filled with passengers derailed and plunged into a ravine late on Monday . NNS IN NN NN NNP VBP CD NN NNS VBN IN NNS VBN CC VBN IN DT NN RB IN NNP . Media reports say at least 300 people were hurt in the crash . NNS NNS VBP IN JJS CD NNS VBD VBN IN DT NN . The accident occurred near the southern coastal city of Pointe Noire . DT NN VBD IN DT JJ JJ NN IN NNP NNP . The train was en route to the capital , Brazzaville . DT NN VBD IN NN TO DT NN , NNP . Pakistani officials say gunmen have killed 16 people in two separate attacks in the restive southwest of the country . JJ NNS VBP NNS VBP VBN CD NNS IN CD JJ NNS IN DT JJ NN IN DT NN . Police say the first incident took place Saturday in Aab-e-Ghum , a town near the Baluchistan provincial capital of Quetta . NNS VBP DT JJ NN VBD NN NNP IN NNP , DT NN IN DT NNP JJ NN IN NNP . Gunmen stopped a bus , forced some passengers off the vehicle and then killed 10 of them . NNS VBD DT NN , VBD DT NNS IN DT NN CC RB VBD CD IN PRP . Police say the victims were all non-ethnic Baluchis from the eastern Punjab province . NNS VBP DT NNS VBD DT JJ NNS IN DT JJ NNP NN . The second attack occurred in Quetta , where gunmen killed six people . DT JJ NN VBD IN NNP , WRB NNS VBD CD NNS . No group has so far claimed responsibility for the attacks and it was not clear whether they were linked . DT NN VBZ RB RB VBN NN IN DT NNS CC PRP VBD RB JJ IN PRP VBD VBN . Separatists have waged a low-level insurgency in Baluchistan for years , seeking more autonomy for the province and a greater share of the profits from its natural resources . NNS VBP VBN DT JJ NN IN NNP IN NNS , VBG JJR NN IN DT NN CC DT JJR NN IN DT NNS IN PRP$ JJ NNS . The region is also plagued by sectarian violence . DT NN VBZ RB VBN IN JJ NN . Nepalese journalists staged a protest in the capital , Kathmandu , to demand an end to government censorship . JJ NNS VBD DT NN IN DT NN , NNP , TO VB DT NN TO NN NN . More than 300 journalists marched through the city Tuesday , waving signs calling for freedom of the press and down with autocracy . JJR IN CD NNS VBD IN DT NN NNP , VBG NNS VBG IN NN IN DT NN CC RB IN NN . Police did not break up the rally or make any arrests , as in previous protests . NNS VBD RB VB RP DT NN CC VB DT NNS , IN IN JJ NNS . Nepal 's King Gyanendra dismissed the government on February 1 , suspended civil liberties and imposed emergency rule . NNP POS NNP NNP VBD DT NN IN NNP CD , VBN JJ NNS CC VBN NN NN . The Federation of Nepalese Journalists ( FNJ ) says at least 13 journalists have been detained since then . DT NNP IN JJ NNPS LRB NNP RRB VBZ IN JJS CD NNS VBP VBN VBN IN RB . The head of the organization says its members are going to fight until complete press freedom is restored in the country . DT NN IN DT NN VBZ PRP$ NNS VBP VBG TO VB IN JJ NN NN VBZ VBN IN DT NN . King Gyanendra said he made the power grab in order to subdue increasingly violent Maoist rebels . NNP NNP VBD PRP VBD DT NN NN IN NN TO VB RB JJ NNP NNS . U.N. humanitarian chief Jan Egeland says he may halt aid to the western Darfur region of Sudan if violence there continues to escalate . NNP JJ NN NNP NNP VBZ PRP MD VB NN TO DT JJ NNP NN IN NNP IN NN RB VBZ TO VB . Mr. Egeland told reporters at U.N. headquarters in Geneva Wednesday that the rising violence in the Darfur region has put aid workers at risk . NNP NNP VBD NNS IN NNP NN IN NNP NNP IN DT VBG NN IN DT NNP NN VBZ VBN NN NNS IN NN . He says if the situation worsens , they may not be able to continue the humanitarian operation for the 2.5 million people in the region who require assistance . PRP VBZ IN DT NN VBZ , PRP MD RB VB JJ TO VB DT JJ NN IN DT CD CD NNS IN DT NN WP VBP NN . Mr. Egeland says the situation has gotten so serious , the aid could stop within a day . NNP NNP VBZ DT NN VBZ VBN RB JJ , DT NN MD VB IN DT NN . Earlier this week , special U.N. advisor Juan Mendez said violence was continuing in Darfur despite the claims of the Sudanese government . RBR DT NN , JJ NNP NN NNP NNP VBD NN VBD VBG IN NNP IN DT NNS IN DT JJ NN . The fighting in Darfur pits rebels against government-backed Arab militia and has sent hundreds of thousands of people fleeing into Chad . DT NN IN NNP NNS NNS IN JJ JJ NN CC VBZ VBN NNS IN NNS IN NNS VBG IN NNP . Former South African Deputy President Jacob Zuma has held a fundraising rally on the eve of the verdict in his high-profile rape trial . JJ NNP NNP NNP NNP NNP NNP VBZ VBN DT JJ NN IN DT NN IN DT NN IN PRP$ JJ NN NN . Thousands of supporters attended a concert in the Johannesburg suburb of Soweto for the 64-year-old anti-apartheid veteran . NNS IN NNS VBD DT NN IN DT NNP NN IN NNP IN DT JJ JJ NN . Zuma is accused of raping a 31-year-old H.I.V. positive woman who is a longtime family friend . NNP VBZ VBN IN VBG DT JJ NNP JJ NN WP VBZ DT JJ NN NN . He claims the sex was consensual . PRP VBZ DT NN VBD JJ . The trial has drawn widespread interest across South Africa and Monday 's verdict ( at 700 UTC ) is scheduled to be broadcast live on television . DT NN VBZ VBN JJ NN IN NNP NNP CC NNP POS NN LRB IN CD NNP RRB VBZ VBN TO VB VBN RB IN NN . The three-month trial has focused attention on South Africa 's high incidence of rape and H.I.V. infection . DT JJ NN VBZ VBN NN IN NNP NNP POS JJ NN IN NN CC NNP NN . The 64-year-old Zuma was once considered a strong contender to succeed President Thabo Mbeki , who fired him because of corruption-related accusations last year . DT JJ NNP VBD RB VBN DT JJ NN TO VB NNP NNP NNP , WP VBD PRP IN IN JJ NNS JJ NN . Zuma is due to stand trial on corruption charges in July . NNP VBZ JJ TO VB NN IN NN NNS IN NNP . Russian lawmakers have passed a sweeping new anti-terrorism bill that would allow the military to attack planes and ships used in terrorist acts , even if hostages are aboard . JJ NNS VBP VBN DT JJ JJ JJ NN WDT MD VB DT NN TO VB NNS CC NNS VBN IN JJ NNS , RB IN NNS VBP RB . The 450-seat lower house of parliament , or Duma , overwhelmingly approved the legislation by a vote of 423-1 , Sunday . DT JJ JJR NN IN NN , CC NNP , RB VBD DT NN IN DT NN IN CD , NNP . The bill now goes to the upper house of parliament , where approval is expected , after which it would be signed into law by Russian President Vladimir Putin . DT NN RB VBZ TO DT JJ NN IN NN , WRB NN VBZ VBN , IN WDT PRP MD VB VBN IN NN IN JJ NNP NNP NNP . The legislation defines terrorism and what constitutes a terrorist act , and outlines procedures for carrying out counter-terrorism operations within and outside Russian territory . DT NN VBZ NN CC WP VBZ DT JJ NN , CC VBZ NNS IN VBG RP NN NNS IN CC IN JJ NN . The proposed law also would allow Russian authorities to monitor telephone conversations and control electronic communications for security reasons . DT VBN NN RB MD VB JJ NNS TO VB NN NNS CC VB JJ NNS IN NN NNS . Six Arab states on the Persian Gulf are considering a proposal to invite Iran to join in declaring the oil-rich region a nuclear-free zone . CD JJ NNS IN DT NNP NNP VBP VBG DT NN TO VB NNP TO VB IN VBG DT JJ NN DT JJ NN . Leaders of Bahrain , Kuwait , Oman , Qatar and Saudi Arabia joined UAE officials in Abu Dhabi Sunday under tight security for the two-day meeting . NNS IN NNP , NNP , NNP , NNP CC NNP NNP VBD NNP NNS IN NNP NNP NNP IN JJ NN IN DT JJ NN . Before the summit , the Gulf Cooperation Council 's secretary-general ( Abdul Rahman al-Attiya ) said the group trusts Iran , but wants to ensure that a nuclear power plant is not built close to the waters of member states . IN DT NN , DT NNP NNP NNP POS NN LRB NNP NNP NNP RRB VBD DT NN VBZ NNP , CC VBZ TO VB IN DT JJ NN NN VBZ RB VBN RB TO DT NNS IN NN NNS . Iran is under intense international pressure to halt work on its suspect nuclear fuel program and allow inspectors full access to its nuclear sites . NNP VBZ IN JJ JJ NN TO VB NN IN PRP$ JJ JJ NN NN CC VB NNS JJ NN TO PRP$ JJ NNS . The United States accuses Tehran of secretly trying to develop an atomic bomb , but Iran says its program is aimed at developing electricity . DT NNP NNPS VBZ NNP IN RB VBG TO VB DT JJ NN , CC NNP VBZ PRP$ NN VBZ VBN IN VBG NN . The Bush administration 's top economic advisors say immigration benefits native-born workers in the United States . DT NNP NN POS JJ JJ NNS VBP NN NNS JJ NNS IN DT NNP NNPS . A report issued Tuesday , by the President 's Council of Economic Advisors also says immigrants make up more than 15 percent of the U.S. workforce , and they pay more in taxes than they use in benefits . DT NN VBN NNP , IN DT NNP POS NNP IN NNP NNPS RB VBZ NNS VBP RP RBR IN CD NN IN DT NNP NN , CC PRP VBP RBR IN NNS IN PRP VBP IN NNS . Immigrants are concentrated in the lowest and highest economic levels - those without a high school diploma , and those who hold a doctorate degree . NNS VBP VBN IN DT JJS CC JJS JJ NNS IN DT IN DT JJ NN NN , CC DT WP VBP DT JJ NN . Fierce political debates have been going on in the United States over how to cope with the estimated 12 million people who have already migrated here illegally . JJ JJ NNS VBP VBN VBG IN IN DT NNP NNPS IN WRB TO VB IN DT VBN CD CD NNS WP VBP RB VBN RB RB . Congress and the Bush administration are also haggling over who should be allowed to immigrate in the future . NNP CC DT NNP NN VBP RB VBG IN WP MD VB VBN TO VB IN DT NN . The U.S. military says coalition forces killed between 15 to 20 militants in the past two days in Sangin district , of the southern Afghan province of Helmand . DT NNP NN VBZ NN NNS VBN IN CD CC CD NNS IN DT JJ CD NNS IN NNP NN , IN DT JJ JJ NN IN NNP . A statement says the militants were carrying assault rifles and grenade launchers . DT NN VBZ DT NNS VBD VBG NN NNS CC NN NNS . The violence continued Monday , with two suicide attacks and a roadside bomb blast . DT NN VBD NNP , IN CD NN NNS CC DT NN NN NN . Local officials say a suspected Taleban suicide attacker in a car exploded a bomb near a coalition convoy in Uruzgan province . JJ NNS VBP DT JJ NNP NN NN IN DT NN VBD DT NN IN DT NN NN IN NNP NN . The attacker died , and one soldier and one civilian were hurt . DT NN VBD , CC CD NN CC CD JJ VBD VBN . Another suicide attacker blew up his car near an Afghan army convoy in Helmand province , killing the attacker but hurting no one else . DT NN NN VBD RP PRP$ NN IN DT JJ NN NN IN NNP NN , VBG DT NN CC VBG DT NN RB . Meanwhile , a bomb exploded near a convoy of coalition forces traveling along a highway in southern Kandahar province , injuring two Canadian soldiers . RB , DT NN VBD IN DT NN IN NN NNS VBG IN DT NN IN JJ NNP NN , VBG CD JJ NNS . Violence has intensified in Afghanistan in recent months , as NATO builds up troop numbers in the restive south . NN VBZ VBN IN NNP IN JJ NNS , IN NNP VBZ RP NN NNS IN DT JJ NN . U.S. automaker Ford unveils its latest attempt to stem North American losses on Monday . NNP NN NNP VBZ PRP$ JJS NN TO VB JJ JJ NNS IN NNP . Media reports say Ford will cut 25,000 or more jobs over the next four to five years , and close some manufacturing facilities . NNS NNS VBP NNP MD VB CD CC JJR NNS IN DT JJ CD CC CD NNS , CC RB DT NN NNS . Chief Executive Officer William Clay Ford Jr. will announce the new plan , which has been dubbed ' Way Forward . ' NNP NNP NNP NNP NNP NNP NNP MD VB DT JJ NN , WDT VBZ VBN VBN `` NNP NNP . `` It will be the CEO 's second major restructuring of the company since taking over in 2001 . PRP MD VB DT NNP POS JJ JJ NN IN DT NN IN VBG RP IN CD . Ford is the world 's third-largest automaker . NNP VBZ DT NN POS JJ NN . It has endured 10 consecutive years of market-share losses to Asian carmakers , particularly Toyota . PRP VBZ VBN CD JJ NNS IN JJ NNS TO JJ NNS , RB NNP . Some of its most popular products , such as the Explorer SUV , have seen sales fall dramatically as fuel prices have risen to record levels . DT IN PRP$ RBS JJ NNS , JJ IN DT NNP NNP , VBP VBN NNS NN RB IN NN NNS VBP VBN TO NN NNS . Afghanistan and Italy have expressed confidence that kidnapped Italian aid worker Clementina Cantoni will be released safely . NNP CC NNP VBP VBN NN IN VBN JJ NN NN NNP NNP MD VB VBN RB . Afghan Interior Ministry spokesman Lutfullah Mashal told a Kabul news conference Saturday the government has been in regular contact with the kidnappers who seized Ms. Cantoni May 16th and that leaders are optimistic she will be freed . JJ NNP NNP NN NNP NNP VBD DT NNP NN NN NNP DT NN VBZ VBN IN JJ NN IN DT NNS WP VBD NNP NNP NNP JJ CC IN NNS VBP JJ PRP MD VB VBN . Later , Italian Prime Minister Silvio Berlusconi expressed similar views to journalists after speaking with Italy 's intelligence minister about the case . RB , JJ NNP NNP NNP NNP VBD JJ NNS TO NNS IN VBG IN NNP POS NN NN IN DT NN . The statements came a day after Afghan religious leaders issued a fatwa , or religious decree , pledging death to anyone killing a foreigner who is in the country legally . DT NNS VBD DT NN IN JJ JJ NNS VBD DT NN , CC JJ NN , VBG NN TO DT VBG DT NN WP VBZ IN DT NN RB . Ms. Cantoni , who is 32 , has run a Care International food distribution program in Kabul for three years , assisting thousands of widows and orphans . NNP NNP , WP VBZ CD , VBZ VBN DT NNP NNP NN NN NN IN NNP IN CD NNS , VBG NNS IN NNS CC NNS . A happy event has turned to tragedy at the Beijing Zoo , where officials say a giant panda accidentally crushed and killed her newborn cub . DT JJ NN VBZ VBN TO NN IN DT NNP NNP , WRB NNS VBP DT JJ NN RB VBN CC VBN PRP$ JJ NN . The cub was one of two born Friday to 8-year-old mother Yinghua . DT NN VBD CD IN CD VBN NNP TO JJ NN NNP . But in what zookeepers say is normal panda behavior , Yinghua abandoned one of the cubs , which has been removed to an incubator in Sichuan province . CC IN WP NNS VBP VBZ JJ NN NN , NNP VBD CD IN DT NNS , WDT VBZ VBN VBN TO DT NN IN NNP NN . Xinhua news agency quoted zoo official Zhang Jingguo saying the mother was looking for the remaining cub in order to nurse it when she rolled over and crushed it early Saturday . NNP NN NN VBN NN NN NNP NNP VBG DT NN VBD VBG IN DT VBG NN IN NN TO VB PRP WRB PRP VBD RB CC VBN PRP JJ NNP . He said pandas are known for their poor eyesight . PRP VBD NNS VBP VBN IN PRP$ JJ NN . Pandas are among the world 's most endangered species , with only about 300 living in captivity and 1,600 in the wild . NNS VBP IN DT NN POS RBS JJ NNS , IN RB IN CD NN IN NN CC CD IN DT NN . The Beijing Zoo has seven pandas . DT NNP NNP VBZ CD NNS . Ghana plans Friday to repatriate 45 Liberian refugees who were arrested earlier this week at a refugee camp outside the capital , Accra . NNP VBZ NNP TO VB CD JJ NNS WP VBD VBN RBR DT NN IN DT NN NN IN DT NN , NNP . Authorities say the refugees found their way illegally into the Gomoa Buduburam Refugee Camp . NNS VBP DT NNS VBD PRP$ NN RB IN DT NNP NNP NNP NNP . They are among the 600 refugees rounded up for fueling tensions in the camp with a month-long protest . PRP VBP IN DT CD NNS VBN RP IN VBG NNS IN DT NN IN DT JJ NN . The refugees had refused to stop the demonstration against a United Nations-funded program that provides refugees with a free trip and $ 100 to resettle in Liberia . DT NNS VBD VBN TO VB DT NN IN DT NNP JJ NN WDT VBZ NNS IN DT JJ NN CC $ CD TO VB IN NNP . Many refugees say they would rather settle in another country because they fear persecution at home . JJ NNS VBP PRP MD RB VB IN DT NN IN PRP VBP NN IN NN . U.N. officials have said large-scale resettlement outside Liberia is not an option , and that these refugees should make an effort to help rebuild their country . NNP NNS VBP VBN JJ NN IN NNP VBZ RB DT NN , CC IN DT NNS MD VB DT NN TO VB VB PRP$ NN . Ghana says 40,000 Liberian refugees remain in the country , even though the Liberian civil war ended in 2003 . NNP VBZ CD JJ NNS VBP IN DT NN , RB IN DT JJ JJ NN VBN IN CD . Iraqi authorities say a suicide bomber has killed at least 25 people outside an Iraqi army recruitment center near the border with Syria . JJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN NN NN IN DT NN IN NNP . Police say dozens more people were wounded in the attack in the town of Rabiah , about 10 kilometers east of the Syrian border . NNS VBP NNS JJR NNS VBD VBN IN DT NN IN DT NN IN NNP , IN CD NNS RB IN DT JJ NN . In an Internet statement , Abu Musab al-Zarqawi 's terror group , al-Qaida in Iraq , claimed responsibility for the bombing , saying one of their members carried out the attack using an explosives belt . IN DT NNP NN , NNP NNP NNP POS NN NN , NNP IN NNP , VBD NN IN DT NN , VBG CD IN PRP$ NNS VBD RP DT NN VBG DT NNS NN . It was not possible to authenticate the claim of responsibility . PRP VBD RB JJ TO VB DT NN IN NN . Iraqi security forces and police are frequent targets of insurgents . JJ NN NNS CC NNS VBP JJ NNS IN NNS . In other developments , ousted Iraqi leader Saddam Hussein appeared before the Iraqi Special Tribunal Thursday to answer questions about the repression of a Shi'ite uprising in 1991 . IN JJ NNS , JJ JJ NN NNP NNP VBD IN DT JJ NNP NNP NNP TO VB NNS IN DT NN IN DT NNP NN IN CD . Palestinian medical officials say two Palestinian children were killed in an explosion in the Gaza Strip that may have been caused by an Israeli tank shell . JJ JJ NNS VBP CD JJ NNS VBD VBN IN DT NN IN DT NNP NNP WDT MD VB VBN VBN IN DT JJ NN NN . The medical officials say the children , who were cousins aged 10 and 12 , died in the explosion Wednesday in the northern Gaza Strip . DT JJ NNS VBP DT NNS , WP VBD NNS VBN CD CC CD , VBD IN DT NN NNP IN DT JJ NNP NNP . The officials say a young female cousin was critically injured . DT NNS VBP DT JJ JJ NN VBD RB VBN . The Israeli military said it fired at rocket launchers in the area . DT JJ NN VBD PRP VBD IN NN NNS IN DT NN . Tuesday , the leaders of Israel and the Palestinian Authority met in Jerusalem to discuss some of the core issues of the Mideast conflict . NNP , DT NNS IN NNP CC DT JJ NNP VBD IN NNP TO VB DT IN DT NN NNS IN DT JJ NN . Israeli officials said Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas talked about the status of Jerusalem , Palestinian refugees and final borders . JJ NNS VBD NNP NNP NNP NNP CC JJ NNP NNP NNP VBD IN DT NN IN NNP , JJ NNS CC JJ NNS . The International Court of Justice has affirmed a decades-old treaty that granted Colombia three small islands in the Caribbean . DT NNP NNP IN NNP VBZ VBN DT JJ NN WDT VBD NNP CD JJ NNS IN DT NNP . The court in The Hague , Netherlands , Thursday said the sovereignty of the islands of San Andres , Providencia and Santa Catalina was settled in the 1928 treaty between Colombia and Nicaragua . DT NN IN DT NNP , NNP , NNP VBD DT NN IN DT NNS IN NNP NNP , NNP CC NNP NNP VBD VBN IN DT CD NN IN NNP CC NNP . Nicaragua had challenged the ownership to the islands , which lie some 220 kilometers off its coast in waters rich in fish and potential oil . NNP VBD VBN DT NN TO DT NNS , WDT VBZ DT CD NNS IN PRP$ NN IN NNS JJ IN NN CC JJ NN . The U.N. court is now to take up the question of sovereignty over other areas in the archipelago that are not addressed in the treaty . DT NNP NN VBZ RB TO VB RP DT NN IN NN IN JJ NNS IN DT NN WDT VBP RB VBN IN DT NN . Amnesty International is denouncing Algeria 's alleged use of torture to obtain information about terrorism from prisoners . NNP NNP VBZ VBG NNP POS JJ NN IN NN TO VB NN IN NN IN NNS . The human rights group says Algeria 's intelligence agency , the Department for Information and Security , is using the international ' war on terror ' to perpetuate abuses . DT JJ NNS NN VBZ NNP POS NN NN , DT NNP IN NNP CC NNP , VBZ VBG DT JJ `` NN IN NN `` TO VB NNS . The group says detainees are held for months without outside contact and are subject to beatings , electrical shocks and the forced ingestion of dirty water , urine or chemicals . DT NN VBZ NNS VBP VBN IN NNS IN JJ NN CC VBP JJ TO NNS , JJ NNS CC DT JJ NN IN JJ NN , NN CC NNS . Amnesty also urged foreign governments to not forcibly return Algerians likely to be abused . NNP RB VBD JJ NNS TO RB RB VB NNS JJ TO VB VBN . Amnesty issued its report Monday one day before Algeria 's President Abdelaziz Bouteflika is to meet British Prime Minister Tony Blair in London . NNP VBD PRP$ NN NNP CD NN IN NNP POS NNP NNP NNP VBZ TO VB JJ NNP NNP NNP NNP IN NNP . They are expected to discuss an agreement that would enable Britain to deport Algerian terror suspects . PRP VBP VBN TO VB DT NN WDT MD VB NNP TO VB JJ NN NNS . The Algerian Embassy in London declined comment on the Amnesty report . DT JJ NN IN NNP VBD NN IN DT NNP NN . The U.S. Treasury Department is putting tight financial restrictions on the Syria-based leader of a group linked to al-Qaida , accused of helping supply terrorists in Iraq . DT NNP NNP NNP VBZ VBG JJ JJ NNS IN DT JJ NN IN DT NN VBN TO NNP , VBN IN VBG NN NNS IN NNP . The Treasury announced Thursday it is freezing all assets held by Abu Khalaf under U.S. jurisdiction , and is prohibiting American citizens from doing business with him . DT NNP VBD NNP PRP VBZ VBG DT NNS VBN IN NNP NNP IN NNP NN , CC VBZ VBG JJ NNS IN VBG NN IN PRP . According to the department , Khalaf is a senior leader of al-Qaida in Iraq 's ' facilitation network , ' which controls the flow of resources -- including weapons , money and militants -- from Syria into Iraq . VBG TO DT NN , NNP VBZ DT JJ NN IN NNP IN NNP POS `` NN NN , `` WDT VBZ DT NN IN NNS : VBG NNS , NN CC NNS : IN NNP IN NNP . A Treasury official , Undersecretary for Terrorism and Financial Intelligence Stuart Levey , said the department will continue to target al-Qaida-linked terrorists who ' threaten the safety of Coalition Forces and the stability of Iraq . ' DT NNP NN , NNP IN NNP CC NNP NNP NNP NNP , VBD DT NN MD VB TO VB JJ NNS WP `` VBP DT NN IN NN NNS CC DT NN IN NNP . `` The Treasury Department has the authority to impose financial sanctions on foreign businesses and people considered a threat to U.S. national security and foreign policy goals . DT NNP NNP VBZ DT NN TO VB JJ NNS IN JJ NNS CC NNS VBD DT NN TO NNP JJ NN CC JJ NN NNS . Jordan 's largest opposition group says it will boycott the country 's November parliamentary elections . NNP POS JJS NN NN VBZ PRP MD VB DT NN POS NNP JJ NNS . The decision late Thursday deals a blow to polls the government hailed as a cornerstone of political reforms . DT NN RB NNP VBZ DT NN TO NNS DT NN VBD IN DT NN IN JJ NNS . The powerful Muslim Brotherhood Movement based its decision on the fallout from a new electoral law , which it says will undercut the group 's robust showing in past elections . DT JJ NNP NNP NNP VBD PRP$ NN IN DT NN IN DT JJ JJ NN , WDT PRP VBZ MD VB DT NN POS JJ NN IN JJ NNS . The new legislation reduced seats for lawmakers elected from urban areas , where the Brotherhood is popular . DT JJ NN VBN NNS IN NNS VBN IN JJ NNS , WRB DT NNP VBZ JJ . It increased seats from rural regions , dominated by pro-government Bedouin tribes . PRP VBD NNS IN JJ NNS , VBN IN JJ NNP NNS . The boycott by the country 's largest opposition group will leave it without a voice in parliament . DT NN IN DT NN POS JJS NN NN MD VB PRP IN DT NN IN NN . Kuwait 's Interior Ministry says a suspected Saudi militant has been killed in a lengthy gunbattle with police . NNP POS NNP NNP VBZ DT JJ NNP NN VBZ VBN VBN IN DT JJ NN IN NNS . Another militant , with Kuwaiti nationality , was captured , and authorities seized a large cache of weapons , ammunition and explosives in the daytime raid Saturday . DT NN , IN JJ NN , VBD VBN , CC NNS VBD DT JJ NN IN NNS , NN CC NNS IN DT JJ NN NNP . House-to-house searches were continuing in the residential Umm al-Haiman district , south of Kuwait City for several other suspects who fled . NN NNS VBD VBG IN DT JJ NNP NNP NN , NN IN NNP NNP IN JJ JJ NNS WP VBD . State television carried pictures of the scene , where two security officers also were wounded . NN NN VBD NNS IN DT NN , WRB CD NN NNS RB VBD VBN . Citizens were warned not to harbor any fugitives and to call police if they saw any suspicious activity . NNPS VBD VBN RB TO NN DT NNS CC TO VB NN IN PRP VBD DT JJ NN . Today 's incident is the second in less than a week . NN POS NN VBZ DT JJ IN JJR IN DT NN . A militant and two policemen were killed in a gunfight Monday in Kuwait City . DT JJ CC CD NNS VBD VBN IN DT NN NNP IN NNP NNP . Israel 's cabinet is set to vote Sunday on a final go-ahead for this month 's evacuation of Jewish settlers from the Gaza Strip . NNP POS NN VBZ VBN TO VB NNP IN DT JJ NN IN DT NN POS NN IN JJ NNS IN DT NNP NNP . Officials say the debate may be prolonged , but Prime Minister Ariel Sharon 's evacuation plan is likely to win final approval . NNS VBP DT NN MD VB VBN , CC NNP NNP NNP NNP POS NN NN VBZ JJ TO VB JJ NN . The cabinet is expected to begin by reviewing plans for evacuating the three most isolated settlements in Gaza - Netzarim , Morag and Kfar Darom - a stronghold of those who oppose the withdrawal . DT NN VBZ VBN TO VB IN VBG NNS IN VBG DT CD RBS JJ NNS IN NNP IN NNP , NNP CC NNP NNP IN DT NN IN DT WP VBP DT NN . Fears of violence have increased ahead of the August 15 pullout , since a Jewish militant boarded a bus and shot four Israeli Arabs to death , apparently to stir unrest and draw security forces away from Gaza . NNS IN NN VBP VBN RB IN DT NNP CD NN , IN DT JJ NN VBD DT NN CC VBD CD JJ NNS TO NN , RB TO VB NN CC VB NN NNS RB IN NNP . In the West Bank today , Palestinian militants opened fire on an Israeli car near the Jewish settlement of Ateret , north of Jerusalem . IN DT NNP NNP NN , JJ NNS VBD NN IN DT JJ NN IN DT JJ NN IN NNP , NN IN NNP . At least two people , including a 10-year-old boy , were wounded . IN JJS CD NNS , VBG DT JJ NN , VBD VBN . The United Nations Security Council is extending the mission of the joint U.N.-African Union peacekeeping force in Sudan 's war-torn Darfur region for another year . DT NNP NNP NNP NNP VBZ VBG DT NN IN DT JJ NNP NNP VBG NN IN NNP POS JJ NNP NN IN DT NN . In a resolution unanimously adopted Thursday , the council extended the mandate of the force ( UNAMID ) until July 31 , 2010 . IN DT NN RB VBD NNP , DT NN VBD DT NN IN DT NN LRB NNP RRB IN NNP CD , CD . The United Nations and African Union are in the final phase of deploying the world 's largest peacekeeping mission in the troubled region . DT NNP NNPS CC NNP NNP VBP IN DT JJ NN IN VBG DT NN POS JJS NN NN IN DT JJ NN . U.N. officials have said they expect 26,000 soldiers to be in Darfur by the end of this year . NNP NNS VBP VBN PRP VBP CD NNS TO VB IN NNP IN DT NN IN DT NN . Darfur rebel groups took up arms against Sudan 's government in 2003 , accusing it of neglecting Darfur . NNP NN NNS VBD RP NNS IN NNP POS NN IN CD , VBG PRP IN VBG NNP . The United Nations estimates 3,00,000 people have died during the conflict . DT NNP NNP VBZ CD NNS VBP VBN IN DT NN . Sudan 's government gives a much lower figure of 10,000 war-related deaths . NNP POS NN VBZ DT RB JJR NN IN CD JJ NNS . The head of the International Committee of the Red Cross has met with President Bush to discuss concerns about detainees held at U.S. facilities in Iraq and Guantanamo Bay , Cuba . DT NN IN DT NNP NNP IN DT NNP NNP VBZ VBN IN NNP NNP TO VB NNS IN NNS VBN IN NNP NNS IN NNP CC NNP NNP , NNP . Red Cross officials in Geneva say the Monday talks between ICRC President Jakob Kellenberger and Mr. Bush in Washington focused on the humanitarian agency 's concerns regarding U.S. detentions , ICRC relief operations and armed conflicts worldwide . NNP NNP NNS IN NNP VBP DT NNP NNS IN NNP NNP NNP NNP CC NNP NNP IN NNP VBD IN DT JJ NN POS NNS VBG NNP NNS , NNP NN NNS CC JJ NNS NN . A White House spokesman Tuesday said the president 's meeting with Mr. Kellenberger focused on a wide range of issues , but he did not give details . DT NNP NNP NN NNP VBD DT NN POS NN IN NNP NNP VBD IN DT JJ NN IN NNS , CC PRP VBD RB VB NNS . The spokesman said that when the ICRC has concerns , the Bush administration listens . DT NN VBD IN WRB DT NNP VBZ NNS , DT NNP NN NNS . Mr. Kellenberger also met Monday with Secretary of State Condoleezza Rice , and he is scheduled to meet with Defense Secretary Donald Rumsfeld later today . NNP NNP RB VBD NNP IN NNP IN NNP NNP NNP , CC PRP VBZ VBN TO VB IN NNP NNP NNP NNP RB NN . The ICRC has been at odds with the Bush administration over the status of prisoners since the 2001 U.S.-led war in Afghanistan . DT NNP VBZ VBN IN NNS IN DT NNP NN IN DT NN IN NNS IN DT CD JJ NN IN NNP . State media in Guinea say military leaders have put the army on high alert after learning of an alleged plot to overthrow the government . NNP NNS IN NNP VBP JJ NNS VBP VBN DT NN IN JJ NN IN VBG IN DT JJ NN TO VB DT NN . An official statement read on television said Captain Moussa ' Dadis ' Camara took the measures after learning that fighters in neighboring countries were planning to attack Guinea . DT JJ NN VBN IN NN VBD NNP NNP `` NNPS `` NNP VBD DT NNS IN VBG DT NNS IN JJ NNS VBD VBG TO VB NNP . It said the fighters are financed by drug traffickers who have fled Guinea to avoid arrest . PRP VBD DT NNS VBP VBN IN NN NNS WP VBP VBN NNP TO VB NN . The report did not say where the government was getting its information . DT NN VBD RB VB WRB DT NN VBD VBG PRP$ NN . Camara seized power in December just hours after the death of longtime dictator Lansana Conte . NNP VBD NN IN NNP RB NNS IN DT NN IN JJ NN NNP NNP . The military leader quickly suspended the constitution and dismissed the civilian government . DT JJ NN RB VBD DT NN CC VBD DT JJ NN . He won public support by vowing to crack down on corruption and drug trafficking . PRP VBD JJ NN IN VBG TO VB RP IN NN CC NN NN . But critics such as Human Rights Watch have accused Camara 's forces of restricting political activity and arbitrarily arresting and beating people . CC NNS JJ IN NNP NNP NNP VBP VBN NNP POS NNS IN VBG JJ NN CC RB VBG CC VBG NNS . The trial of Saddam Hussein is to resume Monday , but it remains unclear if the former Iraqi leader and his seven co-defendants will appear in court . DT NN IN NNP NNP VBZ TO VB NNP , CC PRP VBZ JJ IN DT JJ JJ NN CC PRP$ CD NNS MD VB IN NN . Saddam , his co-defendants and his defense team boycotted the last session of the trial , saying they would not return until the new chief judge is replaced . NNP , PRP$ NNS CC PRP$ NN NN VBD DT JJ NN IN DT NN , VBG PRP MD RB VB IN DT JJ NN NN VBZ VBN . They say the judge , Rauf Abdel Rahman , is biased against the defendants . PRP VBP DT NN , NNP NNP NNP , VBZ VBN IN DT NNS . Saddam 's legal team also said they were wrong in earlier reporting that he planned to go on a hunger strike to protest his trial . NNP POS JJ NN RB VBD PRP VBD JJ IN JJR NN IN PRP VBD TO VB IN DT NN NN TO VB PRP$ NN . They now say no hunger strike is planned . PRP RB VBP DT NN NN VBZ VBN . The former Iraqi dictator and his co-defendants are on trial for the killing of more than 140 Shi'ites , in the village of Dujail , following a 1982 assassination attempt against Saddam . DT JJ JJ NN CC PRP$ NNS VBP IN NN IN DT NN IN JJR IN CD NNS , IN DT NN IN NNP , VBG DT CD NN NN IN NNP . Israel 's top general has ordered the army to stop using Palestinian civilians as human shields in arrest raids . NNP POS JJ NN VBZ VBN DT NN TO VB VBG JJ NNS IN JJ NNS IN NN NNS . Thursday 's order from General Dan Halutz came hours after the Israeli Supreme Court ruled that the army 's practice of forcing Palestinian civilians to approach the homes of suspected militants violates international law . NNP POS NN IN NNP NNP NNP VBD NNS IN DT JJ NNP NNP VBD IN DT NN POS NN IN VBG JJ NNS TO VB DT NNS IN JJ NNS VBZ JJ NN . The court ruling grew out of a 2002 case brought by Israeli and Palestinian human rights groups , after a Palestinian teenager was forced to knock on the door of a suspected West Bank militant . DT NN NN VBD IN IN DT CD NN VBN IN JJ CC JJ JJ NNS NNS , IN DT JJ NN VBD VBN TO VB IN DT NN IN DT JJ NNP NNP NN . The teenager was shot dead when gunfire erupted moments later . DT NN VBD VBN JJ WRB NN VBD NNS RB . In August of 2002 , the court issued a temporary injunction against the practice . IN NNP IN CD , DT NN VBD DT JJ NN IN DT NN . But a 2004 photograph of a Palestinian boy strapped to the front of an Israeli jeep under attack by Palestinian stone-throwers prompted human rights activists to complain the army was ignoring the court order . CC DT CD NN IN DT JJ NN VBN TO DT NN IN DT JJ NN IN NN IN JJ NNS VBD JJ NNS NNS TO VB DT NN VBD VBG DT NN NN . The judge at the trial of Saddam Hussein has thrown out one of the former Iraqi leader 's co-defendants amid fierce arguments over the veracity of prosecution witnesses . DT NN IN DT NN IN NNP NNP VBZ VBN RP CD IN DT JJ JJ NN POS NNS IN JJ NNS IN DT NN IN NN NNS . The judge in Baghdad removed defendant Barzan al-Tikriti from the courtroom and threatened to keep him in a cell after a heated exchange of words between the two men Wednesday . DT NN IN NNP VBD NN NNP NNP IN DT NN CC VBD TO VB PRP IN DT NN IN DT JJ NN IN NNS IN DT CD NNS NNP . Earlier , the defense team accused a prosecution witness of perjury and presented a video disc , claiming it contained a contradictory statement from a witness who testified against Saddam late last year . RB , DT NN NN VBD DT NN NN IN NN CC VBD DT NN NN , VBG PRP VBD DT JJ NN IN DT NN WP VBD IN NNP RB JJ NN . The footage shown in the court shows the witness saying there was no attempt to kill Saddam in Dujail in 1982 , only celebratory firing to mark the former dictator 's visit . DT NN VBN IN DT NN VBZ DT NN VBG EX VBD DT NN TO VB NNP IN NNP IN CD , RB JJ NN TO VB DT JJ NN POS NN . Saddam and seven co-defendants are facing charges of crimes against humanity in connection to the deaths of 148 Shi'ite Muslims following the failed attempt on his life . NNP CC CD NNS VBP VBG NNS IN NNS IN NN IN NN TO DT NNS IN CD NNP NNPS VBG DT JJ NN IN PRP$ NN . China says a recent outbreak of avian flu in the northwestern Xinjiang region has killed nearly 5,000 birds . NNP VBZ DT JJ NN IN JJ NN IN DT JJ NNP NN VBZ VBN RB CD NNS . Official Chinese news agency Xinhua reported Friday that authorities killed 29,000 birds to control the outbreak in the city of Turpan . JJ JJ NN NN NNP VBD NNP IN NNS VBD CD NNS TO VB DT NN IN DT NN IN NNP . On Thursday , a government laboratory confirmed the presence in poultry of the deadly H5N1 strain of the virus . IN NNP , DT NN NN VBD DT NN IN NN IN DT JJ NNP NN IN DT NN . Bird flu outbreaks were reported also this week in Bangladesh , Israel and Vietnam . NN NN NNS VBD VBN RB DT NN IN NNP , NNP CC NNP . The World Health Organization says the virus has killed more than 200 people worldwide . DT NNP NNP NNP VBZ DT NN VBZ VBN JJR IN CD NNS JJ . The U.S. government says it has distributed nearly $ 690 million in direct aid to the victims of Hurricane Katrina . DT NNP NN VBZ PRP VBZ VBN RB $ CD CD IN JJ NN TO DT NNS IN NNP NNP . The Federal Emergency Management Agency says it has distributed the money among more than 3,30,000 families displaced by the catastrophic storm . DT NNP NNP NNP NNP VBZ PRP VBZ VBN DT NN IN JJR IN CD NNS VBN IN DT JJ NN . The majority of the money ( $ 551 million ) has been handed out to 2,68,000 families in the hard-hit state of Louisiana . DT NN IN DT NN LRB $ CD CD RRB VBZ VBN VBN RP TO CD NNS IN DT JJ NN IN NNP . Much of the money has been given out in the form of $ 2,000 grants . NN IN DT NN VBZ VBN VBN RP IN DT NN IN $ CD NNS . FEMA has been criticized for what many say was a slow response to Hurricane Katrina . NNP VBZ VBN VBN IN WP NN VBP VBD DT JJ NN TO NNP NNP . Michael Brown , the agency 's director , was removed this week from heading relief operations in the Gulf Coast . NNP NNP , DT NN POS NN , VBD VBN DT NN IN VBG NN NNS IN DT NNP NNP . U.S. officials say differences remain in talks with India on a civilian nuclear cooperation agreement , but there is hope a final deal can be reached before President Bush visits New Delhi next month . NNP NNS VBP NNS VBP IN NNS IN NNP IN DT JJ JJ NN NN , CC EX VBZ NN DT JJ NN MD VB VBN IN NNP NNP VBZ NNP NNP JJ NN . The U.S. Embassy released a statement Saturday expressing hope for an agreement after Washington 's negotiator , Nicholas Burns , left New Delhi following three days of talks . DT NNP NNP VBD DT NN NNP VBG NN IN DT NN IN NNP POS NN , NNP NNP , VBD NNP NNP VBG CD NNS IN NNS . Washington has offered to provide India with civilian nuclear technology , but wants assurances that the Indian government will not use the technology for military purposes . NNP VBZ VBN TO VB NNP IN JJ JJ NN , CC VBZ NNS IN DT JJ NN MD RB VB DT NN IN JJ NNS . President Bush has said he wants to return from India with a final nuclear cooperation pact so he can begin work on getting approval from Congress . NNP NNP VBZ VBN PRP VBZ TO VB IN NNP IN DT JJ JJ NN NN IN PRP MD VB NN IN VBG NN IN NNP . Mr. Bush 's national security advisor , Stephen Hadley , said Friday that if no deal is reached before the visit , negotiations will continue after the president 's trip . NNP NNP POS JJ NN NN , NNP NNP , VBD NNP IN IN DT NN VBZ VBN IN DT NN , NNS MD VB IN DT NN POS NN . Syria 's ambassador to Washington says his country has halted military and intelligence cooperation with the United States , because of what he calls unjust American allegations . NNP POS NN TO NNP VBZ PRP$ NN VBZ VBN JJ CC NN NN IN DT NNP NNPS , IN IN WP PRP VBZ JJ JJ NNS . In an interview with the New York Times published Monday , Ambassador Imad Moustapha said that in the last 10 days , Damascus severed all links with the U.S. military and Central Intelligence Agency . IN DT NN IN DT NNP NNP NNP VBD NNP , NNP NNP NNP VBD IN IN DT JJ CD NNS , NNP VBD DT NNS IN DT NNP NN CC NNP NNP NNP . Mr. Moustapha said he believes the Bush administration has decided to escalate the situation with Syria , despite steps it has taken against insurgents in Iraq and the pullout of its troops from Lebanon . NNP NNP VBD PRP VBZ DT NNP NN VBZ VBN TO VB DT NN IN NNP , IN NNS PRP VBZ VBN IN NNS IN NNP CC DT NN IN PRP$ NNS IN NNP . Bush administration officials have frequently complained that Syria is not doing enough to stem the flow of men and money to the insurgency in Iraq . NNP NN NNS VBP RB VBN IN NNP VBZ RB VBG RB TO VB DT NN IN NNS CC NN TO DT NN IN NNP . The New York Times says Syria 's action has prompted high-level debate within the Bush administration about steps that might be taken against the Syrian government . DT NNP NNP NNP VBZ NNP POS NN VBZ VBN JJ NN IN DT NNP NN IN NNS WDT MD VB VBN IN DT JJ NN . Afghan security forces have stopped a suspected al-Qaida assassination attempt on a provincial governor in northern Afghanistan . JJ NN NNS VBP VBN DT JJ NNP NN NN IN DT JJ NN IN JJ NNP . Police say bodyguards arrested an alleged al-Qaida member when he entered the home of the governor of Balkh province , Atta Mohammed , with explosives hidden under his clothes . NNS VBP NNS VBN DT JJ NNP NN WRB PRP VBD DT NN IN DT NN IN NNP NN , NNP NNP , IN NNS VBN IN PRP$ NNS . Police say the man is from the African nation of Mali , and they suspect he intended to blow himself up when he was with the governor . NNS VBP DT NN VBZ IN DT JJ NN IN NNP , CC PRP VBP PRP VBD TO VB PRP RP WRB PRP VBD IN DT NN . Atta Mohammed was a senior leader in the Northern Alliance , which teamed up with U.S.-led international forces to oust the Taleban in 2001 . NNP NNP VBD DT JJ NN IN DT NNP NNP , WDT VBD RP IN JJ JJ NNS TO VB DT NNP IN CD . In eastern Afghanistan , a U.S. soldier was killed in an attack on his patrol near Mihtarlam , in Laghman province . IN JJ NNP , DT NNP NN VBD VBN IN DT NN IN PRP$ NN IN NNP , IN NNP NN . A U.S. statement says the patrol returned fire and called in air support but the attackers fled . DT NNP NN VBZ DT NN VBD NN CC VBN IN NN NN CC DT NNS VBD . More people in divided Kashmir are being allowed to use the five crossing points opened by India and Pakistan on the military Line of Control after the October earthquake . JJR NNS IN VBN NNP VBP VBG VBN TO VB DT CD VBG NNS VBN IN NNP CC NNP IN DT JJ NN IN NNP IN DT NNP NN . Earlier , the openings were used mainly for exchanging materials for quake relief . RB , DT NNS VBD VBN RB IN VBG NNS IN NN NN . The crossing points have been opened to civilians so they can know the welfare of relatives on the other side . DT VBG NNS VBP VBN VBN TO NNS IN PRP MD VB DT NN IN NNS IN DT JJ NN . On Thursday , 25 people crossed the Line of Control , in the Uri sector of Indian Kashmir . IN NNP , CD NNS VBD DT NN IN NNP , IN DT NNP NN IN JJ NNP . Indian officials say 20 went to the Pakistani side , while five people returned home to the Indian side . JJ NNS VBP CD VBD TO DT JJ NN , IN CD NNS VBD NN TO DT JJ NN . Those crossing to the Pakistani side included four residents of Pakistani Kashmir who had been stranded in Indian Kashmir . DT VBG TO DT JJ NN VBD CD NNS IN JJ NNP WP VBD VBN VBN IN JJ NNP . The effort to reunite separated Kashmiri families by opening the de~facto border is seen as an offshoot of the almost two-year-old peace process between Pakistan and India . DT NN TO VB JJ JJ NNS IN VBG DT JJ NN VBZ VBN IN DT NN IN DT RB JJ NN NN IN NNP CC NNP . Iran has barred journalists from the Cable News Network from the country , following a mistaken translation that quoted Iran 's president as saying his country has a right to build nuclear weapons . NNP VBZ VBN NNS IN DT NNP NNP NNP IN DT NN , VBG DT JJ NN WDT VBD NNP POS NN IN VBG PRP$ NN VBZ DT NN TO VB JJ NNS . President Mahmoud Ahmadinejad told reporters Saturday that his nation has a right to pursue nuclear technology . NNP NNP NNP VBD NNS NNP IN PRP$ NN VBZ DT NN TO VB JJ NN . But CNN 's translator used the word ' weapon ' instead . CC NNP POS NN VBD DT NN `` NN `` RB . CNN has apologized for the error . NNP VBZ VBN IN DT NN . But Iran says the network 's reporters and stringers are barred until further notice . CC NNP VBZ DT NN POS NNS CC NNS VBP VBN IN JJ NN . The network said Monday it has not been officially notified of the ban . DT NN VBD NNP PRP VBZ RB VBN RB VBN IN DT NN . CNN does not have a permanent correspondent in Iran . NNP VBZ RB VB DT JJ NN IN NNP . But reporters have occasionally been allowed to enter the country for brief assignments . CC NNS VBP RB VBN VBN TO VB DT NN IN JJ NNS . Elco Industries Inc. said it expects net income in the year ending June 30 , 1990 , to fall below a recent analyst 's estimate of $ 1.65 a share . NNP NNPS NNP VBD PRP VBZ NN NN IN DT NN VBG NNP CD , CD , TO VB IN DT JJ NN POS NN IN $ CD DT NN . The Rockford , Ill. , maker of fasteners also said it expects to post sales in the current fiscal year that are ' slightly above ' fiscal 1989 sales of $ 155 million . DT NNP , NNP , NN IN NNS RB VBD PRP VBZ TO VB NNS IN DT JJ JJ NN WDT VBP `` RB IN `` JJ CD NNS IN $ CD CD . The company said its industrial unit continues to face margin pressures and lower demand . DT NN VBD PRP$ JJ NN VBZ TO VB NN NNS CC JJR NN . In fiscal 1989 , Elco earned $ 7.8 million , or $ 1.65 a share . IN JJ CD , NNP VBD $ CD CD , CC $ CD DT NN . The company 's stock fell $ 1.125 to $ 13.625 in over-the-counter trading yesterday . DT NN POS NN VBD $ CD TO $ CD IN JJ NN NN . Characterized by large and well-developed agricultural , mining , manufacturing , and service sectors , Brazil 's economy outweighs that of all other South American countries , and Brazil is expanding its presence in world markets . VBN IN JJ CC JJ JJ , NN , NN , CC NN NNS , NNP POS NN VBZ IN IN DT JJ JJ JJ NNS , CC NNP VBZ VBG PRP$ NN IN NN NNS . Since 2003 , Brazil has steadily improved its macroeconomic stability , building up foreign reserves , and reducing its debt profile by shifting its debt burden toward real denominated and domestically held instruments . IN CD , NNP VBZ RB VBN PRP$ JJ NN , VBG RP JJ NNS , CC VBG PRP$ NN NN IN VBG PRP$ NN NN IN JJ VBN CC RB VBN NNS . In 2008 , Brazil became a net external creditor and two ratings agencies awarded investment grade status to its debt . IN CD , NNP VBD DT JJ JJ NN CC CD NNS NNS VBN NN NN NN TO PRP$ NN . After record growth in 2007 and 2008 , the onset of the global financial crisis hit Brazil in September 2008 . IN NN NN IN CD CC CD , DT NN IN DT JJ JJ NN VBD NNP IN NNP CD . Brazil experienced two quarters of recession , as global demand for Brazil 's commodity-based exports dwindled and external credit dried up . NNP VBD CD NNS IN NN , IN JJ NN IN NNP POS JJ NNS VBD CC JJ NN VBD RP . However , Brazil was one of the first emerging markets to begin a recovery . RB , NNP VBD CD IN DT JJ VBG NNS TO VB DT NN . Consumer and investor confidence revived and GDP growth returned to positive in 2010 , boosted by an export recovery . NN CC NN NN VBN CC NN NN VBD TO JJ IN CD , VBN IN DT NN NN . Brazil 's strong growth and high interest rates make it an attractive destination for foreign investors . NNP POS JJ NN CC JJ NN NNS VBP PRP DT JJ NN IN JJ NNS . Large capital inflows over the past year have contributed to the rapid appreciation of its currency and led the government to raise taxes on some foreign investments . JJ NN NNS IN DT JJ NN VBP VBN TO DT JJ NN IN PRP$ NN CC VBD DT NN TO VB NNS IN DT JJ NNS . President Dilma ROUSSEFF has pledged to retain the previous administration 's commitment to inflation targeting by the Central Bank , a floating exchange rate , and fiscal restraint . NNP NNP NNP VBZ VBN TO VB DT JJ NN POS NN TO NN VBG IN DT NNP NNP , DT JJ NN NN , CC JJ NN . Greece achieved independence from the Ottoman Empire in 1829 . NNP VBD NN IN DT NNP NNP IN CD . During the second half of the 19th century and the first half of the 20th century , it gradually added neighboring islands and territories , most with Greek-speaking populations . IN DT JJ NN IN DT JJ NN CC DT JJ NN IN DT JJ NN , PRP RB VBD JJ NNS CC NNS , JJS IN JJ NNS . In World War II , Greece was first invaded by Italy ( 1940 ) and subsequently occupied by Germany ( 1941 - 44 ) ; fighting endured in a protracted civil war between supporters of the king and other anti-Communists and Communist rebels . IN NNP NNP NNP , NNP VBD JJ VBN IN NNP LRB CD RRB CC RB VBN IN NNP LRB CD : CD RRB ; VBG VBN IN DT JJ JJ NN IN NNS IN DT NN CC JJ NNS CC JJ NNS . Following the latter 's defeat in 1949 , Greece joined NATO in 1952 . VBG DT NN POS NN IN CD , NNP VBD NNP IN CD . In 1967 , a group of military officers seized power , establishing a military dictatorship that suspended many political liberties and forced the king to flee the country . IN CD , DT NN IN JJ NNS VBD NN , VBG DT JJ NN WDT VBD JJ JJ NNS CC VBD DT NN TO VB DT NN . In 1974 , democratic elections and a referendum created a parliamentary republic and abolished the monarchy . IN CD , JJ NNS CC DT NN VBD DT JJ NN CC VBD DT NN . In 1981 , Greece joined the EC ( now the EU ) ; it became the 12th member of the European Economic and Monetary Union in 2001 . IN CD , NNP VBD DT NNP LRB RB DT NNP RRB ; PRP VBD DT JJ NN IN DT JJ NNP CC NNP NNP IN CD . In 2010 , the prospect of a Greek default on its euro-denominated debt created severe strains within the EMU and raised the question of whether a member country might voluntarily leave the common currency or be removed . IN CD , DT NN IN DT JJ NN IN PRP$ JJ NN VBN JJ NNS IN DT NNP CC VBD DT NN IN IN DT NN NN MD RB VB DT JJ NN CC VB VBN . Tokelau 's small size ( three villages ) , isolation , and lack of resources greatly restrain economic development and confine agriculture to the subsistence level . NNP POS JJ NN LRB CD NNS RRB , NN , CC NN IN NNS RB VB JJ NN CC NN NN TO DT NN NN . The people rely heavily on aid from New Zealand - about $ 10 million annually in 2008 and 2009 - to maintain public services . DT NNS VBP RB IN NN IN NNP NNP IN IN $ CD CD RB IN CD CC CD : TO VB JJ NNS . New Zealand 's support amounts to 80 % of Tokelau 's recurrent government budget . NNP NNP POS NN NNS TO CD NN IN NNP POS JJ NN NN . An international trust fund , currently worth nearly US $ 32 million , was established in 2004 to provide Tokelau an independent source of revenue . DT JJ NN NN , RB JJ RB NNP $ CD CD , VBD VBN IN CD TO VB NNP DT JJ NN IN NN . The principal sources of revenue come from sales of copra , postage stamps , souvenir coins , and handicrafts . DT JJ NNS IN NN VBN IN NNS IN NN , NN NNS , NN NNS , CC NNS . Money is also remitted to families from relatives in New Zealand . NN VBZ RB VBN TO NNS IN NNS IN NNP NNP . Eastern Turkmenistan for centuries formed part of the Persian province of Khurasan ; in medieval times Merv ( today known as Mary ) was one of the great cities of the Islamic world and an important stop on the Silk Road . NNP NNP IN NNS VBN NN IN DT NNP NN IN NNP ; IN JJ NNS NNP LRB NN VBN IN NNP RRB VBD CD IN DT JJ NNS IN DT JJ NN CC DT JJ NN IN DT NNP NNP . Annexed by Russia between 1865 and 1885 , Turkmenistan became a Soviet republic in 1924 . VBN IN NNP IN CD CC CD , NNP VBD DT JJ NN IN CD . It achieved independence upon the dissolution of the USSR in 1991 . PRP VBD NN IN DT NN IN DT NNP IN CD . Extensive hydrocarbon / natural gas reserves could prove a boon to this underdeveloped country once extraction and delivery projects are expanded . JJ NN CC JJ NN NNS MD VB DT NN TO DT JJ NN RB NN CC NN NNS VBP VBN . The Turkmen Government is actively working to diversify its gas export routes beyond the still dominant Russian pipeline network . DT NNP NNP VBZ RB VBG TO VB PRP$ NN NN NNS IN DT RB JJ JJ NN NN . In 2010 , new gas export pipelines that carry Turkmen gas to China and to northern Iran began operating , effectively ending the Russian monopoly on Turkmen gas exports . IN CD , JJ NN NN NNS WDT VBP JJ NN TO NNP CC TO JJ NNP VBD VBG , RB VBG DT JJ NN IN JJ NN NNS . President for Life Saparmurat NYYAZOW died in December 2006 , and Turkmenistan held its first multi-candidate presidential election in February 2007 . NNP IN NNP NNP NNP VBD IN NNP CD , CC NNP VBD PRP$ JJ JJ JJ NN IN NNP CD . Gurbanguly BERDIMUHAMEDOW , a deputy cabinet chairman under NYYAZOW , emerged as the country 's new president . NNP NNP , DT NN NN NN IN NNP , VBD IN DT NN POS JJ NN . Like many other South Pacific island nations , the Cook Islands ' economic development is hindered by the isolation of the country from foreign markets , the limited size of domestic markets , lack of natural resources , periodic devastation from natural disasters , and inadequate infrastructure . IN JJ JJ NNP NNP NN NNS , DT NNP NNP POS JJ NN VBZ VBN IN DT NN IN DT NN IN JJ NNS , DT JJ NN IN JJ NNS , NN IN JJ NNS , JJ NN IN JJ NNS , CC JJ NN . Agriculture , employing more than one-quarter of the working population , provides the economic base with major exports made up of copra and citrus fruit . NNP , VBG JJR IN NN IN DT VBG NN , VBZ DT JJ NN IN JJ NNS VBN IN IN NN CC NN NN . Black pearls are the Cook Islands ' leading export . NNP NNS VBP DT NNP NNP POS VBG NN . Manufacturing activities are limited to fruit processing , clothing , and handicrafts . NNP NNS VBP VBN TO NN NN , NN , CC NNS . Trade deficits are offset by remittances from emigrants and by foreign aid overwhelmingly from New Zealand . NNP NNS VBP VBN IN NNS IN NNS CC IN JJ NN RB IN NNP NNP . In the 1980s and 1990s , the country lived beyond its means , maintaining a bloated public service and accumulating a large foreign debt . IN DT NNS CC NNS , DT NN VBD IN PRP$ NNS , VBG DT JJ JJ NN CC VBG DT JJ JJ NN . Subsequent reforms , including the sale of state assets , the strengthening of economic management , the encouragement of tourism , and a debt restructuring agreement , have rekindled investment and growth . JJ NNS , VBG DT NN IN NN NNS , DT NN IN JJ NN , DT NN IN NN , CC DT NN NN NN , VBP VBN NN CC NN . SOME White Christians engaged in driving Chinese Heathens out of an American town found a newspaper published in Peking in the Chinese tongue , and compelled one of their victims to translate an editorial . DT JJ NNS VBD IN VBG JJ NNS IN IN DT JJ NN VBD DT NN VBN IN VBG IN DT JJ NN , CC VBN CD IN PRP$ NNS TO VB DT NN . It turned out to be an appeal to the people of the Province of Pang Ki to drive the foreign devils out of the country and burn their dwellings and churches . PRP VBD RP TO VB DT NN TO DT NNS IN DT NNP IN NNP NNP TO VB DT JJ NNS IN IN DT NN CC VBP PRP$ NNS CC NNS . At this evidence of Mongolian barbarity the White Christians were so greatly incensed that they carried out their original design . IN DT NN IN JJ NN DT NNP NNPS VBD RB RB VBN IN PRP VBD RP PRP$ JJ NN . A MIND Reader made a wager that he would be buried alive and remain so for six months , then be dug up alive . DT NN NN VBD DT NN IN PRP MD VB VBN JJ CC VBP RB IN CD NNS , RB VB VBG RP JJ . In order to secure the grave against secret disturbance , it was sown with thistles . IN NN TO VB DT NN IN JJ NN , PRP VBD VBN IN NNS . At the end of three months , the Mind Reader lost his money . IN DT NN IN CD NNS , DT NN NN VBD PRP$ NN . He had come up to eat the thistles . PRP VBD VBN RP TO VB DT NNS . The church janitor was also the organist , and had to watch his keys and pews . DT NN NN VBD RB DT NN , CC VBD TO VB PRP$ NNS CC NNS . The White House is reported ready to eliminate funding to service the Hubble Space Telescope and has directed the U.S. space agency NASA to focus on de-orbiting the popular spacecraft . DT NNP NNP VBZ VBN JJ TO VB NN TO VB DT NNP NNP NNP CC VBZ VBN DT NNP NN NN NNP TO VB IN VBG DT JJ NN . According to a report by the online news service space.com Friday , NASA Administrator Sean O'Keefe will announce the decision to scrap the repair mission when he reveals the space agency 's 2006 budget request in February . VBG TO DT NN IN DT JJ NN NN NNP NNP , NNP NNP NNP NNP MD VB DT NN TO VB DT NN NN WRB PRP VBZ DT NN NN POS CD NN NN IN NNP . The Earth-orbiting observatory has operated continuously for 14 years , providing incredibly sharp celestial images that have made significant contributions to astronomical research . DT JJ NN VBZ VBN RB IN CD NNS , VBG RB JJ JJ NNS WDT VBP VBN JJ NNS TO JJ NN . NASA has been unable to complete the final repair mission for Hubble due to the grounding of the space shuttle fleet following the destruction of the Space Shuttle Columbia in February 2003 . NNP VBZ VBN JJ TO VB DT JJ NN NN IN NNP JJ TO DT NN IN DT NN NN NN VBG DT NN IN DT NNP NNP NNP IN NNP CD . Sources say lawmakers are likely to try to restore funding to repair the telescope , which has widespread support . NNS VBP NNS VBP JJ TO VB TO VB NN TO VB DT NN , WDT VBZ JJ NN . Haiti 's interim government has announced that the nation 's Supreme Court will no longer have the ability to overrule election officials . NNP POS JJ NN VBZ VBN IN DT NN POS NNP NNP MD RB RB VB DT NN TO VB NN NNS . The decision came Thursday , two days after the nation 's highest court ruled a Haitian-American businessman could run for office . DT NN VBD NNP , CD NNS IN DT NN POS JJS NN VBD DT JJ NN MD VB IN NN . Election authorities had previously told Haitian-born Dumarsais Simeus that he was not eligible to run because he holds U.S. citizenship . NN NNS VBD RB VBN JJ NNP NNP IN PRP VBD RB JJ TO VB IN PRP VBZ NNP NN . Also Thursday , Haiti 's government announced a committee would be created to review the nationalities of all candidates running for the presidency . RB NNP , NNP POS NN VBD DT NN MD VB VBN TO VB DT NNS IN DT NNS VBG IN DT NN . Haiti 's interim Prime Minister Gerard Latortue has said the nation 's elections will be delayed by several weeks , and not be held November 20 as scheduled . NNP POS JJ NNP NNP NNP NNP VBZ VBN DT NN POS NNS MD VB VBN IN JJ NNS , CC RB VB VBN NNP CD IN VBN . The upcoming election will be the first since President Jean-Bertrand Aristide 's ouster in February 2004 . DT JJ NN MD VB DT JJ IN NNP NNP NNP POS NN IN NNP CD . Ethiopia says scores of birds found dead recently have tested negative for the bird flu . NNP VBZ NNS IN NNS VBN JJ RB VBP VBN JJ IN DT NN NN . A spokesman for Ethiopia 's Agriculture Ministry , Mulgueta Debalk , says the birds that were tested died of the Newcastle virus , which is common among fowl but harmless to humans . DT NN IN NNP POS NNP NNP , NNP NNP , VBZ DT NNS WDT VBD VBN VBD IN DT NNP NN , WDT VBZ JJ IN JJ CC JJ TO NNS . Ethiopia tested a total of 62 birds after hundreds of pigeons , chickens and other birds were found dead in various parts of the country several weeks ago . NNP VBD DT NN IN CD NNS IN NNS IN NNS , NNS CC JJ NNS VBD VBN JJ IN JJ NNS IN DT NN JJ NNS RB . Ethiopia and other African nations have been watching for any sign of the deadly H5N1 bird flu virus . NNP CC JJ JJ NNS VBP VBN VBG IN DT NN IN DT JJ NNP NN NN NN . The virus has killed more than 70 people in Asia since 2003 . DT NN VBZ VBN JJR IN CD NNS IN NNP IN CD . There are fears that migratory birds could carry it to Africa . EX VBP NNS IN JJ NNS MD VB PRP TO NNP . The virus has already been found in birds in Europe and the Middle East . DT NN VBZ RB VBN VBN IN NNS IN NNP CC DT NNP NNP . The U.N. refugee agency says at least 33 migrants trying to reach Yemen have drowned in the Gulf of Aden . DT NNP NN NN VBZ IN JJS CD NNS VBG TO VB NNP VBP VBN IN DT NNP IN NNP . The agency says the drownings occurred after human smugglers forced all 137 passengers off a boat and into deep waters off the Yemeni coast . DT NN VBZ DT NNS VBD IN JJ NNS VBD DT CD NNS IN DT NN CC IN JJ NNS IN DT JJ NN . It says the boat had sailed from Somalia with 134 Somalis and three Ethiopians on board . PRP VBZ DT NN VBD VBN IN NNP IN CD NNS CC CD NNS IN NN . Some of the migrants reached shore , but others are still missing . DT IN DT NNS VBD NN , CC NNS VBP RB VBG . The agency says it learned of the tragedy on Saturday , but it was unclear when the incident actually occurred . DT NN VBZ PRP VBD IN DT NN IN NNP , CC PRP VBD JJ WRB DT NN RB VBD . Thousands of Somalis and Ethiopians try to cross the Gulf of Aden each year in hopes of escaping poverty and violence in their homelands . NNS IN NNS CC NNS VBP TO VB DT NNP IN NNP DT NN IN NNS IN VBG NN CC NN IN PRP$ NNS . The U.N. says many of the smugglers are ruthless , beating the migrants or making them swim long distances to shore . DT NNP VBZ NN IN DT NNS VBP JJ , VBG DT NNS CC VBG PRP VBP RB VBZ TO VB . Violence continues to flare in southern Thailand despite the government 's latest action to ease tension in the Muslim-dominated region , an air drop of millions of paper doves as a gesture of peace . NN VBZ TO VB IN JJ NNP IN DT NN POS JJS NN TO VB NN IN DT JJ NN , DT NN NN IN NNS IN NN NNS IN DT NN IN NN . Police say a bomb explosion in Narathiwat province Monday injured at least one soldier . NNS VBP DT NN NN IN NNP NN NNP VBD IN JJS CD NN . A second bomb exploded in the province several hours later , injuring an official . DT JJ NN VBD IN DT NN JJ NNS RB , VBG DT NN . Arson attacks in the same area on Sunday destroyed a home for teachers and damaged a school . NN NNS IN DT JJ NN IN NNP VBD DT NN IN NNS CC VBD DT NN . About 50 Thai air force planes flew over three restive southern provinces Sunday to drop 120 million ( origami ) birds made of folded paper , symbolizing the national wish for peace . IN CD JJ NN NN NNS VBD IN CD JJ JJ NNS NNP TO VB CD CD LRB NN RRB NNS VBN IN JJ NN , VBG DT JJ NN IN NN . All Thais were asked to take part in the campaign , which also marked the birthday of King Bhumibol Adulyadej . DT NNS VBD VBN TO VB NN IN DT NN , WDT RB VBD DT NN IN NNP NNP NNP . A suicide bomber blew himself up Sunday in a northern Iraqi cafe , killing at least 13 people and wounding 23 others in the town of Tuz Khurmatu . DT NN NN VBD PRP RP NNP IN DT JJ JJ NN , VBG IN JJS CD NNS CC VBG CD NNS IN DT NN IN NNP NNP . Elsewhere , Iraqi officials say gunmen who kidnapped 30 sports officials have freed six of them in Baghdad . RB , JJ NNS VBP NNS WP VBD CD NNS NNS VBP VBN CD IN PRP IN NNP . There was no word on the other hostages , including Iraq 's Olympic Committee chief . EX VBD DT NN IN DT JJ NNS , VBG NNP POS NNP NNP NN . Meanwhile , insurgents raided the detention wing of a hospital northeast of Baghdad and freed several wounded comrades . RB , NNS VBD DT NN NN IN DT NN NN IN NNP CC VBD JJ JJ NNS . Four security men were killed in the attack . CD NN NNS VBD VBN IN DT NN . In southern Iraq , British officials said gunmen killed a British soldier in Basra - the country 's first military death in Iraq since late May . IN JJ NNP , NNP NNS VBD NNS VBD DT JJ NN IN NNP IN DT NN POS JJ JJ NN IN NNP IN JJ NNP . Separately , two British soldiers were wounded by a roadside bomb . RB , CD JJ NNS VBD VBN IN DT NN NN . In Kirkuk , U.S. and Iraqi forces killed one gunman and captured two after the gunmen ambushed and wounded an Iraqi security officer . IN NNP , NNP CC JJ NNS VBD CD NN CC VBD CD IN DT NNS VBD CC VBD DT JJ NN NN . Venezuelan President Hugo Chavez says his country is willing to reconsider pulling out of the five-nation Andean Community trade bloc . JJ NNP NNP NNP VBZ PRP$ NN VBZ JJ TO VB VBG IN IN DT JJ NNP NNP NN NN . Mr. Chavez on Monday said Venezuela would reconsider its decision if Colombia and Peru reconsider their free trade deals with the United States . NNP NNP IN NNP VBD NNP MD VB PRP$ NN IN NNP CC NNP VB PRP$ JJ NN NNS IN DT NNP NNPS . Bolivian President Evo Morales has called on Mr. Chavez to reverse his decision , and he also called for a meeting to save the bloc . JJ NNP NNP NNP VBZ VBN IN NNP NNP TO VB PRP$ NN , CC PRP RB VBD IN DT NN TO VB DT NN . Last week , President Chavez said the bloc is ' fatally wounded ' because Colombia and Peru finalized free trade agreements with the U.S. Advocates say the free trade deals open up markets and create more jobs . JJ NN , NNP NNP VBD DT NN VBZ `` RB VBN `` IN NNP CC NNP VBD JJ NN NNS IN DT NNP NNS VBP DT JJ NN NNS VBP RP NNS CC VB JJR NNS . Critics say the pacts leave developing countries at a disadvantage with competition from cheaper U.S. products . NNS VBP DT NNS VBP VBG NNS IN DT NN IN NN IN JJR NNP NNS . A showdown looms in the U.S. Senate , which has begun debate on one of President Bush 's most contested judicial nominees and a possible rule change strongly opposed by Democrats . DT NN VBZ IN DT NNP NNP , WDT VBZ VBN NN IN CD IN NNP NNP POS JJS VBN JJ NNS CC DT JJ NN NN RB VBN IN NNPS . The debate began Wednesday with Republican Majority Leader Bill Frist raising the nomination of Judge Priscilla Owen . DT NN VBD NNP IN NNP NNP NNP NNP NNP VBG DT NN IN NNP NNP NNP . She is one of seven appeals court candidates Democrats have blocked using filibusters , a parliamentary delaying tactic . PRP VBZ CD IN CD NNS NN NNS NNPS VBP VBN VBG NNS , DT JJ NN NN . Republicans have said that unless Democrats allow votes on all seven , they will try to enact a new rule banning filibusters against judicial nominees . NNPS VBP VBN IN IN NNPS VBP NNS IN DT CD , PRP MD VB TO VB DT JJ NN VBG NNS IN JJ NNS . The minority Democrats , who consider the seven Bush nominees too conservative , accused Republicans of making a power grab . DT NN NNS , WP VBP DT CD NNP NNS RB JJ , VBN NNS IN VBG DT NN NN . The dispute has been intensified by the effect the proposed change could have on future Supreme Court nominations . DT NN VBZ VBN VBN IN DT NN DT VBN NN MD VB IN JJ NNP NNP NNS . It is unclear whether Republican leaders have the votes to achieve their goal , known as the ' nuclear option . ' PRP VBZ JJ IN JJ NNS VBP DT NNS TO VB PRP$ NN , VBN IN DT `` JJ NN . `` French President Jacques Chirac has completed his four-day visit to China with a tour of archaeological sites in the historic city of Xian . JJ NNP NNP NNP VBZ VBN PRP$ JJ NN TO NNP IN DT NN IN JJ NNS IN DT JJ NN IN NNP . Mr. Chirac visited an ancient tomb built more than 2,000 years ago for an emperor of China 's Han dynasty . NNP NNP VBD DT JJ NN VBD JJR IN CD NNS RB IN DT NN IN NNP POS NNP NN . He expressed a strong admiration for Chinese history and the efforts of archaeologists . PRP VBD DT JJ NN IN JJ NN CC DT NNS IN NNS . Mr. Chirac earlier traveled to the central Chinese city of Wuhan to lay the foundation stone for a new Peugeot-Citroen auto factory . NNP NNP RB VBD TO DT JJ JJ NN IN NNP TO VB DT NN NN IN DT JJ JJ NN NN . The plant is a joint venture with Chinese firm Dongfeng , and is expected to start producing cars in 2009 . DT NN VBZ DT JJ NN IN JJ NN NNP , CC VBZ VBN TO VB VBG NNS IN CD . In Beijing Thursday , the French president presided over the signing of 13 deals between French and Chinese businesses . IN NNP NNP , DT JJ NN VBD IN DT NN IN CD NNS IN JJ CC JJ NNS . The highlight was China 's decision to buy 150 Airbus passenger jets , worth about $ 10 billion . DT NN VBD NNP POS NN TO VB CD NNP NN NNS , JJ IN $ CD CD . Mr. Chirac also met with Chinese President Hu Jintao Thursday to discuss the nuclear disputes with Iran and North Korea . NNP NNP RB VBD IN JJ NNP NNP NNP NNP TO VB DT JJ NNS IN NNP CC NNP NNP . Pakistani officials say two bombings have killed more than 50 people and wounded nearly 100 others in the country 's northwest tribal area near the Afghan border . JJ NNS VBP CD NNS VBP VBN JJR IN CD NNS CC VBD RB CD NNS IN DT NN POS JJS JJ NN IN DT JJ NN . Police said Friday a suicide bomber on a motorcycle detonated explosives outside a government office in the Yakaghund village in Pakistan 's northwest Mohmand tribal region . NNP VBD NNP DT NN NN IN DT NN VBN NNS IN DT NN NN IN DT NNP NN IN NNP POS JJS NNP JJ NN . They suspected the second explosion was from a car bomb . PRP VBD DT JJ NN VBD IN DT NN NN . The early morning blasts flattened dozens of buildings . DT JJ NN NNS VBD NNS IN NNS . They occurred as officials nearby were distributing wheelchairs and other aid to those in need . PRP VBD IN NNS RB VBD VBG NNS CC JJ NN TO DT IN NN . Mohmand is part of Pakistan 's lawless tribal belt where Taliban and al-Qaida militants are believed to be hiding . NNP VBZ NN IN NNP POS JJ NN NN WRB NNP CC NNP NNS VBP VBN TO VB VBG . The Pakistani army has carried out operations in Mohmand , but it has been unable to extricate the militants . DT JJ NN VBZ VBN RP NNS IN NNP , CC PRP VBZ VBN JJ TO VB DT NNS . Pakistan is under pressure from the United States to go after the insurgents , who also have carried out attacks on Western forces in Afghanistan . NNP VBZ IN NN IN DT NNP NNPS TO VB IN DT NNS , WP RB VBP VBN RP NNS IN JJ NNS IN NNP . Iranian authorities have shut down two Kurdish language newspapers in northwestern Iran , a day after at least 11 people were killed in that region during a clash between Kurdish demonstrators and Iranian police . JJ NNS VBP VBN RP CD JJ NN NNS IN JJ NNP , DT NN IN IN JJS CD NNS VBD VBN IN DT NN IN DT NN IN JJ NNS CC JJ NN . The official Iranian news agency ( IRNA ) quotes the managing editor of the bilingual ( Kurdish and Iranian ) Ashti daily Thursday as saying a provincial court ordered the temporary closure of the paper . DT JJ JJ NN NN LRB NNP RRB VBZ DT NN NN IN DT NN LRB NNP CC JJ RRB NNP RB NNP IN VBG DT JJ NN VBD DT JJ NN IN DT NN . A Kurdish journalist in the region told VOA 's Kurdish service that a second paper , Aso , also was shut down because it reported on the recent wave of anti-Iranian protests in Iran 's northern Kurdish region . DT JJ NN IN DT NN VBD NNP POS JJ NN IN DT JJ NN , NNP , RB VBD VBN RB IN PRP VBD IN DT JJ NN IN JJ NNS IN NNP POS JJ NNP NN . The killing last month of a Kurdish activist by Iranian security forces sparked demonstrations , some of them violent , in several predominantly Kurdish cities in northwestern Iran . DT NN JJ NN IN DT JJ NN IN JJ NN NNS VBD NNS , DT IN PRP JJ , IN JJ RB JJ NNS IN JJ NNP . A Turkish court has jailed five suspects pending trial in the killing of three people at a Christian publishing house last week . DT JJ NN VBZ VBN CD NNS VBG NN IN DT NN IN CD NNS IN DT JJ NN NN JJ NN . No trial date has been set . DT NN NN VBZ VBN VBN . The court also released Sunday six other people who were in custody . DT NN RB VBD NNP CD JJ NNS WP VBD IN NN . It is unclear what charges they faced . PRP VBZ JJ WP VBZ PRP VBD . A German citizen and two Turks who had converted to Christianity were killed in the attack in Malatya . DT JJ NN CC CD NNS WP VBD VBN TO NNP VBD VBN IN DT NN IN NNP . They were found bound to chairs with their throats slit . PRP VBD VBN VBN TO NNS IN PRP$ NNS VBP . At least one of the victims also had several stab wounds . IN JJS CD IN DT NNS RB VBD JJ JJ NNS . Representatives of Turkey 's small Protestant community have blamed the killings on growing intolerance towards Christians and missionaries . NNS IN NNP POS JJ JJ NN VBP VBN DT NNS IN VBG NN IN NNS CC NNS . The Catholic and Greek Orthodox churches have condemned the attack , as has Turkish President Ahmet Necdet Sezer , who said there can be no justification for it . DT NNP CC JJ NNP NNS VBP VBN DT NN , IN VBZ JJ NNP NNP NNP NNP , WP VBD EX MD VB DT NN IN PRP . Chinese state media say an explosion at a chemical plant in eastern China has killed at least 14 people and injured 30 others . JJ NN NNS VBP DT NN IN DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN CD NNS . The official Xinhua news agency says the blast happened Friday at a chemical plant in Anhui province 's Dangtu County . DT JJ NNP NN NN VBZ DT NN VBD NNP IN DT NN NN IN NNP NN POS NNP NNP . It is not immediately clear how many workers were in the plant at the time of the explosion . PRP VBZ RB RB JJ WRB JJ NNS VBD IN DT NN IN DT NN IN DT NN . Xinhua says the plant produces explosives for civilian uses such as mining . NNP VBZ DT NN VBZ NNS IN JJ NNS JJ IN NN . World leaders and diplomats are uniting to condemn Saturday 's deadly suicide bombings on the Indonesian resort island of Bali . NNP NNS CC NNS VBP VBG TO VB NNP POS JJ NN NNS IN DT JJ NN NN IN NNP . U.S. Secretary of State Condoleezza Rice denounced the attacks and said the United States stands with Indonesia as it works to bring the perpetrators to justice . NNP NNP IN NNP NNP NNP VBD DT NNS CC VBD DT NNP NNPS VBZ IN NNP IN PRP VBZ TO VB DT NNS TO NN . British Prime Minister Tony Blair says his government is ready to help in any way possible , while Australian Prime Minister John Howard accused the attackers of trying to undermine Indonesia 's moderate government . NNP NNP NNP NNP NNP VBZ PRP$ NN VBZ JJ TO VB IN DT NN JJ , IN JJ NNP NNP NNP NNP VBD DT NNS IN VBG TO VB NNP POS JJ NN . A U.N. spokesman says Secretary-General Kofi Annan is ' dismayed ' that Bali is again the scene of an attack , and he urged authorities to promptly bring the perpetrators of what he called a ' cowardly attack ' to justice . DT NNP NN VBZ NNP NNP NNP VBZ `` VBN `` DT NNP VBZ RB DT NN IN DT NN , CC PRP VBD NNS TO RB VB DT NNS IN WP PRP VBD DT `` RB NN `` TO NN . Leaders of Japan , the Philippines , New Zealand , Singapore , Germany , France and other nations around the globe have also condemned the attacks . NNS IN NNP , DT NNPS , NNP NNP , NNP , NNP , NNP CC JJ NNS IN DT NN VBP RB VBN DT NNS . Sweden will have the chance to add the Olympic Games women 's curling title to its world and European crowns . NNP MD VB DT NN TO VB DT NNP NNPS NNS POS VBG NN TO PRP$ NN CC JJ NNS . The Swedes reached the tournament final at the Turin Winter Games with a 05-Apr semifinal victory over Norway Wednesday . DT NNS VBD DT NN JJ IN DT NNP NNP NNPS IN DT CD JJ NN IN NNP NNP . In the final on Thursday , Sweden will face Switzerland , which was a 07-May winner over 1998 Olympic champion Canada . IN DT JJ IN NNP , NNP MD VB NNP , WDT VBD DT CD NN IN CD JJ NN NNP . Both Sweden and Switzerland will compete for gold with identical records in Turin . DT NNP CC NNP MD VB IN NN IN JJ NNS IN NNP . Each finished the preliminary round with win-loss records of 07-Feb in the 10-nation tournament . DT VBD DT JJ NN IN JJ NNS IN CD IN DT JJ NN . Indonesian officials say a landslide has killed five people on Flores Island . JJ NNS VBP DT NN VBZ VBN CD NNS IN NNP NNP . Local officials said the landslide was triggered by several days of heavy rain . JJ NNS VBD DT NN VBD VBN IN JJ NNS IN JJ NN . Floods and landslides are common in Indonesia , especially during the rainy season . NNS CC NNS VBP JJ IN NNP , RB IN DT NN NN . Many landslides are caused by illegal logging or the clearing of farmland that strips away natural barriers . JJ NNS VBP VBN IN JJ NN CC DT NN IN NN WDT VBZ RB JJ NNS . Flores is an island in the southeastern part of the Indonesian archipelago , about 15 hundred kilometers from the capital , Jakarta . NNP VBZ DT NN IN DT JJ NN IN DT JJ NN , IN CD CD NNS IN DT NN , NNP . An Italian newspaper says Italy 's defense minister has ruled out a troop withdrawal from Afghanistan as demanded by the kidnappers of an Italian photojournalist . DT JJ NN VBZ NNP POS NN NN VBZ VBN RP DT NN NN IN NNP IN VBN IN DT NNS IN DT JJ NN . The Italian daily La Stampa reported Thursday that Defense Minister Arturo Parisi says the troops will stay in Afghanistan despite the new demand . DT JJ JJ NNP NNP VBD NNP IN NNP NNP NNP NNP VBZ DT NNS MD VB IN NNP IN DT JJ NN . Kidnappers who seized Italian photojournalist Gabriele Torsello in Afghanistan last week issued the demand late Wednesday . NNS WP VBD JJ NN NNP NNP IN NNP JJ NN VBD DT NN JJ NNP . Previously , the abductors said they would release Torsello if Italian authorities returned an Afghan convert to Christianity who was granted asylum in Italy . RB , DT NNS VBD PRP MD VB NNP IN JJ NNS VBD DT JJ NN TO NNP WP VBD VBN NN IN NNP . Torsello was kidnapped in Helmand province last week . NNP VBD VBN IN NNP NN JJ NN . Authorities blamed the abduction on the Taleban , but the radical Islamist group denies any involvement . NNS VBD DT NN IN DT NNP , CC DT JJ NN NN VBZ DT NN . In Rome , the Foreign Ministry said it was working for the release of the photographer . IN NNP , DT NNP NNP VBD PRP VBD VBG IN DT NN IN DT NN . U.S. Defense Secretary Donald Rumsfeld says there is reason for optimism in Afghanistan five years after the fall of the Taleban . NNP NNP NNP NNP NNP VBZ EX VBZ NN IN NN IN NNP CD NNS IN DT NN IN DT NNP . In an opinion piece in Saturday 's Washington Post newspaper , Rumsfeld wrote that despite Afghanistan 's rising opium production and violence in the south , ' the trajectory is a hopeful and promising one . ' IN DT NN NN IN NNP POS NNP NNP NN , NNP VBD IN IN NNP POS VBG NN NN CC NN IN DT NN , `` DT NN VBZ DT JJ CC JJ CD . `` The secretary cited several improvements including an economy that has tripled in five years , a military that has grown by 1,000 soldiers a month and a 500 percent increase in children attending school . DT NN VBD JJ NNS VBG DT NN WDT VBZ VBN IN CD NNS , DT NN WDT VBZ VBN IN CD NNS DT NN CC DT CD NN NN IN NNS VBG NN . Rumsfeld also mentioned a few setbacks , including a surge in drug production and rising violence by insurgents . NNP RB VBD DT JJ NNS , VBG DT NN IN NN NN CC VBG NN IN NNS . Pakistan has criticized remarks by a U.S. State Department counter-terrorism official who said Pakistan is not doing enough to remove Taleban and al-Qaida members from its soil . NNP VBZ VBN NNS IN DT NNP NNP NNP NN NN WP VBD NNP VBZ RB VBG RB TO VB NNP CC NNP NNS IN PRP$ NN . Henry Crumpton , in Kabul Saturday after talks in Pakistan , praised Pakistan for arresting hundreds of al-Qaida members but added that miliant leaders had found safe haven in Pakistan 's lawless semi-autonomous tribal region bordering Afghanistan . NNP NNP , IN NNP NNP IN NNS IN NNP , VBD NNP IN VBG NNS IN NNP NNS CC VBD IN JJ NNS VBD VBN JJ NN IN NNP POS JJ JJ JJ NN VBG NNP . Pakistan 's military and government spokesman , Major-General Shaukat Sultan , called Crumpton 's statement irresponsible , saying he did not make the same criticisms during his talks with Pakistani officials . NNP POS JJ CC NN NN , NNP NNP NNP , VBD NNP POS NN JJ , VBG PRP VBD RB VB DT JJ NNS IN PRP$ NNS IN JJ NNS . Pakistan , a key U.S. ally in the war against terrorism , has deployed about 80,000 troops to its tribal regions to root out foreign militants and their local allies . NNP , DT JJ NNP NN IN DT NN IN NN , VBZ VBN IN CD NNS TO PRP$ JJ NNS TO VB RP JJ NNS CC PRP$ JJ NNS . Pakistani officials say that 324 militants , including 76 foreigners had been killed in the area since last July . JJ NNS VBP IN CD NNS , VBG CD NNS VBD VBN VBN IN DT NN IN JJ NNP . Insurgents in Iraq have launched new attacks Thursday on police and U.S. troops , killing at least 17 people . NNS IN NNP VBP VBN JJ NNS NNP IN NN CC NNP NNS , VBG IN JJS CD NNS . In the deadliest blast , witnesses say a suicide bomber , dressed in a police uniform , drove into the compound of the Tikrit police headquarters and detonated his vehicle . IN DT JJS NN , NNS VBP DT NN NN , VBN IN DT NN NN , VBD IN DT NN IN DT NNP NN NN CC VBD PRP$ NN . The massive explosion in Saddam Hussein 's hometown killed at least 12 people , wounded 35 , and set a dozen cars on fire . DT JJ NN IN NNP NNP POS NN VBD IN JJS CD NNS , VBD CD , CC VBD DT NN NNS IN NN . South of the capital , in Iskandariya , an explosion near a police convoy killed two policemen and at least one civilian . NNP IN DT NN , IN NNP , DT NN IN DT NN NN VBD CD NNS CC IN JJS CD JJ . Despite the continued violence against Iraqi police , nearly 2,000 new recruits , including 46 women , graduated this week from police training courses in Sulaymaniyeh and Baghdad . IN DT JJ NN IN JJ NN , RB CD JJ NNS , VBG CD NNS , VBN DT NN IN NN NN NNS IN NNP CC NNP . Meanwhile , the U.S. military says two American soldiers were killed and another two were wounded in separate roadside bombings north of Baghdad . RB , DT NNP NN VBZ CD JJ NNS VBD VBN CC DT CD VBD VBN IN JJ NN NNS NN IN NNP . Iraqi police say a suicide truck bomb attack has killed at least 22 people and wounded 40 others in a small town in northern Iraq . JJ NNS VBP DT NN NN NN NN VBZ VBN IN JJS CD NNS CC VBN CD NNS IN DT JJ NN IN JJ NNP . Authorities say the blast ripped through a crowded outdoor market Saturday in Emerli , a village north of Baghdad . NNS VBP DT NN VBD IN DT JJ NN NN NNP IN NNP , DT NN NN IN NNP . On Friday , a car bombing in a Kurdish village killed at least 22 people and wounded about 17 others . IN NNP , DT NN NN IN DT JJ NN VBD IN JJS CD NNS CC VBD IN CD NNS . Police said they believe a suicide car bomber was responsible for the attack in the village of Ahmad Maref , northeast of the capital . NNS VBD PRP VBP DT NN NN NN VBD JJ IN DT NN IN DT NN IN NNP NNP , NN IN DT NN . The U.S. military Saturday reported the deaths of six American soldiers and an Iraqi interpreter over the past few days , mostly in Baghdad . DT NNP NN NNP VBD DT NNS IN CD JJ NNS CC DT JJ NN IN DT JJ JJ NNS , RB IN NNP . Six soldiers were wounded . CD NNS VBD VBN . In other news , Britain 's defense ministry says a British soldier has died in the southern city of Basra . IN JJ NN , NNP POS NN NN VBZ DT JJ NN VBZ VBN IN DT JJ NN IN NNP . A spokesman did not provide details . DT NN VBD RB VB NNS . Authorities in California say lightning strikes have sparked more than 400 fires in the northern part of the state , consuming thousands of hectares and forcing some residents to evacuate . NNS IN NNP VBP NN NNS VBP VBN JJR IN CD NNS IN DT JJ NN IN DT NN , VBG NNS IN NNS CC VBG DT NNS TO VB . The office of Governor Arnold Schwarzenegger says the fires stretch more than 500 kilometers from south of San Francisco to the border of the neighboring state of Oregon . DT NN IN NNP NNP NNP VBZ DT NNS VB JJR IN CD NNS IN NN IN NNP NNP TO DT NN IN DT JJ NN IN NNP . The governor has ordered the California National Guard to assist in fighting the blazes . DT NN VBZ VBN DT NNP NNP NNP TO VB IN VBG DT NNS . Meanwhile , much of California is bracing for a fifth straight day of record high temperatures . RB , NN IN NNP VBZ VBG IN DT JJ JJ NN IN NN JJ NNS . Forecasters say temperatures reached above 32 degrees Celsius on Saturday in San Jose , Los Angeles and the state capital of Sacramento . NNS VBP NNS VBD IN CD NNS NNP IN NNP IN NNP NNP , NNP NNP CC DT NN NN IN NNP . The heat wave has sent people scurrying to beaches and rivers to cool off , and strained regional power grids as millions of residents turn on air conditioners . DT NN NN VBZ VBN NNS VBG TO NNS CC NNS TO VB RP , CC VBD JJ NN NNS IN NNS IN NNS VBP IN NN NNS . Afghanistan 's foreign minister has met with top Pakistani officials in Islamabad to discuss issues that affect both countries ahead of a visit by the new U.S. special envoy . NNP POS JJ NN VBZ VBN IN JJ JJ NNS IN NNP TO VB NNS WDT VBP DT NNS RB IN DT NN IN DT JJ NNP JJ NN . The Pakistani foreign ministry says visiting Afghan Foreign Minister Rangin Dadfar Spanta met with his Pakistani counterpart , Shah Mahmood Qureshi , and with Pakistani President Asif Ali Zardari . DT JJ JJ NN VBZ VBG JJ NNP NNP NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP NNP , CC IN JJ NNP NNP NNP NNP . The ministry says they expressed readiness to strengthen their cross-border cooperation on fighting terrorism and militancy . DT NN VBZ PRP VBD NN TO VB PRP$ JJ NN IN VBG NN CC NN . The new U.S. envoy to Pakistan and Afghanistan , Richard Holbrooke , will visit South Asia next week as the Obama administration reviews its policy on the Afghan conflict . DT JJ NNP NN TO NNP CC NNP , NNP NNP , MD VB NNP NNP JJ NN IN DT NNP NN VBZ PRP$ NN IN DT JJ NN . A statement from Pakistan 's foreign ministry says Qureshi hopes what it called a ' military surge ' in Afghanistan will be paired with a politically and developmentaly-oriented surge . DT NN IN NNP POS JJ NN VBZ NNP VBZ WP PRP VBD DT `` JJ NN `` IN NNP MD VB VBN IN DT RB CC JJ NN . The United States says it is boosting its troop strength in Afghanistan by some 30,000 soldiers . DT NNP NNPS VBZ PRP VBZ VBG PRP$ NN NN IN NNP IN DT CD NNS . In Iran , a gunman on a motorcycle has shot dead a judge trying the high-profile case of jailed Iranian journalist Akbar Ganji . IN NNP , DT NN IN DT NN VBZ VBN JJ DT NN VBG DT JJ NN IN JJ JJ NN NNP NNP . A judiciary spokesman says the judge , Massoud Moghaddasi , was shot Tuesday while he was leaving his office in Tehran . DT NN NN VBZ DT NN , NNP NNP , VBD VBN NNP IN PRP VBD VBG PRP$ NN IN NNP . The judge has been presiding over the case of Mr. Ganji , who has been in jail since 2001 for publishing articles implicating government officials in the murders of prominent dissidents . DT NN VBZ VBN VBG IN DT NN IN NNP NNP , WP VBZ VBN IN NN IN CD IN NN NNS VBG NN NNS IN DT NNS IN JJ NNS . Mr. Ganji currently is in custody at a Tehran hospital . NNP NNP RB VBZ IN NN IN DT NNP NN . His family says his health is rapidly deteriorating because he has been on a hunger strike for more than 50 days . PRP$ NN VBZ PRP$ NN VBZ RB VBG IN PRP VBZ VBN IN DT NN NN IN JJR IN CD NNS . Deputy Secretary of State John Negroponte says US looks forward to working with new Pakistani leaders NNP NNP IN NNP NNP NNP VBZ NNP VBZ RB TO VBG IN JJ JJ NNS The U.S. National Hurricane Center says Tropical Storm Tomas is about 640 kilometers south-southeast of Haiti 's capital , Port-au-Prince , with maximum sustained winds of 75 kilometers per hour . DT NNP NNP NNP NNP VBZ NNP NNP NNP VBZ IN CD NNS NN IN NNP POS NN , NNP , IN JJ JJ NNS IN CD NNS IN NN . The storm was downgraded from a hurricane late Sunday , but forecasters expect it to gain strength again on Wednesday . DT NN VBD VBN IN DT NN JJ NNP , CC NNS VBP PRP TO VB NN RB IN NNP . Current projections put the storm on a path to Haiti , where hundreds of thousands of people are living in tent camps following an earthquake in January . JJ NNS VBD DT NN IN DT NN TO NNP , WRB NNS IN NNS IN NNS VBP VBG IN JJ NNS VBG DT NN IN NNP . United Nations agencies and other aid groups have ordered food , shelter and emergency supplies to be stockpiled in camps across Haiti and coastal communities threatened by the storm . NNP NNPS NNS CC JJ NN NNS VBP VBN NN , NN CC NN NNS TO VB VBN IN NNS IN NNP CC JJ NNS VBN IN DT NN . The country is also struggling to contain a cholera outbreak that has already killed more than 300 people . DT NN VBZ RB VBG TO VB DT NN NN WDT VBZ RB VBN JJR IN CD NNS . Somalia 's transitional government has announced plans to begin relocating to the capital Mogadishu from Kenya February 21 . NNP POS JJ NN VBZ VBN NNS TO VB VBG TO DT NN NNP IN NNP NNP CD . The government has been operating from Kenya since its formation last year , fearing continued instability in Somalia . DT NN VBZ VBN VBG IN NNP IN PRP$ NN JJ NN , VBG JJ NN IN NNP . Officials met Tuesday with clan leaders in Mogadishu who promised to hand over the city 's port and former government buildings . NNS VBD NNP IN JJ NNS IN NNP WP VBD TO VB RB DT NN POS NN CC JJ NN NNS . Somalia 's Prime Minister Mohammed Ali Gedi said today how quickly the relocation takes place depends on the support the new government receives from donor nations . NNP POS NNP NNP NNP NNP NNP VBD NN WRB RB DT NN VBZ NN VBZ IN DT NN DT JJ NN VBZ IN NN NNS . The government is seeking about $ 77 million to fund its transition . DT NN VBZ VBG RB $ CD CD TO VB PRP$ NN . Tuesday , the African Union authorized the deployment of east African troops to help the new government relocate . NNP , DT NNP NNP VBD DT NN IN JJ JJ NNS TO VB DT JJ NN NN . A former Haitian refugee is being sworn in Tuesday as Canada 's governor general , the representative of Britain 's Queen Elizabeth . DT JJ JJ NN VBZ VBG VBN IN NNP IN NNP POS NN NN , DT NN IN NNP POS NNP NNP . Michaelle Jean will be the first black and only the third woman to hold the position . NNP NNP MD VB DT JJ JJ CC RB DT JJ NN TO VB DT NN . At 48 , she is also one of Canada 's youngest governor generals . IN CD , PRP VBZ RB CD IN NNP POS JJS NN NNS . She replaces Adrienne Clarkson in the ceremonial role . PRP VBZ NNP NNP IN DT JJ NN . Ms. Jean immigrated to Canada 's French-speaking Quebec province as a child , after her parents fled Haiti to escape dictatorial rule . NNP NNP VBD TO NNP POS JJ NNP NN IN DT NN , IN PRP$ NNS VBD NNP TO VB JJ NN . Critics have accused her of ties to Quebec 's separatist movement , although the former broadcast journalist says she is committed to Canadian federalism . NNS VBP VBN PRP IN NNS TO NNP POS JJ NN , IN DT JJ NN NN VBZ PRP VBZ VBN TO JJ NN . Canada became a self-governing dominion in 1867 , but retains some ties to the British crown . NNP VBD DT JJ NN IN CD , CC VBZ DT NNS TO DT JJ NN . Vice President Dick Cheney says U.S. officials are not concerned that Iraq 's next government will seek to fashion an Islamic state like neighboring Iran . NNP NNP NNP NNP VBZ NNP NNS VBP RB VBN IN NNP POS JJ NN MD VB TO VB DT JJ NN IN VBG NNP . The vice president was responding a story in the New York Times that said leading Iraqi Shi'ite clerics want Islam to be the guiding principle in Iraq 's new constitution . DT NN NN VBD VBG DT NN IN DT NNP NNP NNP WDT VBD VBG JJ NNP NNS VBP NNP TO VB DT VBG NN IN NNP POS JJ NN . Asked about the story on the Fox News Sunday television program , Mr. Cheney said it is premature to say what the clerics are pushing for . VBN IN DT NN IN DT NNP NNP NNP NN NN , NNP NNP VBD PRP VBZ JJ TO VB WP DT NNS VBP VBG IN . But he said Shi'ite religious leader Ayatollah Ali al-Sistani has made it clear that clerics should not play a direct role in the new government . CC PRP VBD NNP JJ NN NNP NNP NNP VBZ VBN PRP JJ IN NNS MD RB VB DT JJ NN IN DT JJ NN . He said he thinks a ' great many people ' involved in Iraq 's political process want a balance between secular beliefs and religion . PRP VBD PRP VBZ DT `` JJ JJ NNS `` VBN IN NNP POS JJ NN VBP DT NN IN JJ NNS CC NN . Early returns from last Sunday 's Iraqi elections show the main Shi'ite coalition headed for victory . RB NNS IN JJ NNP POS JJ NNS VBP DT JJ NNP NN VBD IN NN . Luxembourg voters will cast ballots Sunday in a referendum on the European Union 's troubled constitution . NNP NNS MD VB NNS NNP IN DT NN IN DT NNP NNP POS JJ NN . Prime Minister Jean-Claude Juncker , who has been a strong promoter of passage of the constitution , has threatened to resign if Luxembourg voters reject it . NNP NNP NNP NNP , WP VBZ VBN DT JJ NN IN NN IN DT NN , VBZ VBN TO VB IN NNP NNS VBP PRP . A June opinion poll showed 45 percent of respondents oppose the constitution . DT NNP NN NN VBD CD NN IN NNS VBP DT NN . The Luxembourg vote comes despite the postponement of referendums in Britain , Denmark , Portugal , Sweden and Finland . DT NNP NN VBZ IN DT NN IN NNS IN NNP , NNP , NNP , NNP CC NNP . French and Dutch voters rejected the constitution in referendums , placing the future of the pact in doubt . JJ CC JJ NNS VBD DT NN IN NNS , VBG DT NN IN DT NN IN NN . EU leaders put the constitution issue on hold at a meeting last month in response to the rejections . NNP NNS VBD DT NN NN IN NN IN DT NN JJ NN IN NN TO DT NNS . The constitution requires unanimous backing from all 25 member nations . DT NN VBZ JJ NN IN DT CD NN NNS . So far , 11 countries have ratified the document . RB RB , CD NNS VBP VBN DT NN . NATO early warning surveillance aircraft will patrol the skies over alliance members Latvia and the Netherlands when President Bush visits the two countries later this week . NNP JJ NN NN NN MD VB DT NNS IN NN NNS NNP CC DT NNP WRB NNP NNP VBZ DT CD NNS RB DT NN . An alliance statement Wednesday , says NATO Airborne Early Warning and Control aircraft , commonly called AWACS , will monitor airspace over the two countries from Friday to Sunday at the request of their governments . DT NN NN NNP , VBZ NNP NNP NNP NNP CC NNP NN , RB VBN NNP , MD VB NN IN DT CD NNS IN NNP TO NNP IN DT NN IN PRP$ NNS . Mr. Bush is flying to the Latvian capital , Riga , Friday for talks on Saturday with the presidents of Estonia , Latvia and Lithuania . NNP NNP VBZ VBG TO DT JJ NN , NNP , NNP IN NNS IN NNP IN DT NNS IN NNP , NNP CC NNP . He then flies to the Netherlands , where he will meet with Dutch officials and mark the 60th anniversary of the end of World War II in Europe with a stop at an American military cemetery in Margraten . PRP RB VBZ TO DT NNP , WRB PRP MD VB IN JJ NNS CC VB DT JJ NN IN DT NN IN NNP NNP NNP IN NNP IN DT NN IN DT JJ JJ NN IN NNP . President Bush then travels to Moscow for Monday 's World War II observances in the Russian capital . NNP NNP RB VBZ TO NNP IN NNP POS NNP NNP NNP NNS IN DT JJ NN . Louisiana Governor Kathleen Blanco says a number of fishing villages in the state 's Cameron Parish have been ' erased from the map ' by Hurricane Rita . NNP NNP NNP NNP VBZ DT NN IN NN NNS IN DT NN POS NNP NNP VBP VBN `` VBN IN DT NN `` IN NNP NNP . Search and rescue operations are set to wrap up today in the state 's rural Vermilion Parish , also hard-hit by tidal surges from the storm that made landfall on Saturday . NNP CC NN NNS VBP VBN TO VB RP NN IN DT NN POS JJ NNP NNP , RB JJ IN JJ NNS IN DT NN WDT VBD NN IN NNP . Many streets and homes are more than one meter under water . JJ NNS CC NNS VBP JJR IN CD NN IN NN . Governor Blanco has asked the federal government for $ 34 billion in recovery aid for her state , which has been hit by two major hurricanes in four weeks . NNP NNP VBZ VBN DT JJ NN IN $ CD CD IN NN NN IN PRP$ NN , WDT VBZ VBN VBN IN CD JJ NNS IN CD NNS . In New Orleans , Mayor Ray Nagin is calling on residents of one neighborhood , Algiers , to return home and help rebuild the city . IN NNP NNP , NNP NNP NNP VBZ VBG IN NNS IN CD NN , NNP , TO VB NN CC NN VB DT NN . In Texas , thousands of residents are planning to return to Houston Monday . IN NNP , NNS IN NNS VBP VBG TO VB TO NNP NNP . The nation 's fourth largest city escaped the worst of the storm . DT NN POS JJ JJS NN VBD DT JJS IN DT NN . Police in northwest Pakistan say a suicide bomber has struck near a market , killing at least 18 people and wounding more than 30 . NNS IN JJ NNP VBP DT NN NN VBZ VBN IN DT NN , VBG IN JJS CD NNS CC VBG JJR IN CD . Authorities say the attack happened Wednesday in the town of Kohat . NNS VBP DT NN VBD NNP IN DT NN IN NNP . Police say the bomber blew himself by a passenger bus near Tirah market . NNS VBP DT NN VBD PRP IN DT NN NN IN NNP NN . Officials say the bus was headed to nearby Orakzai district . NNS VBP DT NN VBD VBN TO JJ NNP NN . No one has claimed responsibility for the blast . DT NN VBZ VBN NN IN DT NN . Meanwhile , a purported spokesman for the Pakistani Taliban has claimed responsibility for a deadly blast that took place Monday during an anti-Taliban meeting . RB , DT JJ NN IN DT JJ NNP VBZ VBN NN IN DT JJ NN WDT VBD NN NNP IN DT JJ NN . In that attack , two suicide bombers blew themselves in Mohmand near the Afghanistan border , killing 50 people . IN DT NN , CD NN NNS VBD PRP IN NNP IN DT NNP NN , VBG CD NNS . The Pakistani army has been fighting insurgents in the area but has been unable to defeat Taliban and al-Qaida linked groups . DT JJ NN VBZ VBN VBG NNS IN DT NN CC VBZ VBN JJ TO VB NNP CC NNP VBN NNS . Insurgents in Iraq launched a wave of suicide attacks against U.S. forces and kidnapped an American contractor Monday . NNS IN NNP VBD DT NN IN NN NNS IN NNP NNS CC VBD DT JJ NN NNP . A spokesman for the U.S. embassy says the contractor was abducted near Baghdad . DT NN IN DT NNP NN VBZ DT NN VBD VBN IN NNP . Earlier , suicide bombers blew up three vehicles at the entrance to a U.S. base in western Iraq . RB , NN NNS VBD RP CD NNS IN DT NN TO DT NNP NN IN JJ NNP . Three U.S. Marines and three Iraqi civilians were wounded . CD NNP NNS CC CD JJ NNS VBD VBN . Insurgents in another vehicle opened fire on the base before a U.S. helicopter destroyed their car . NNS IN DT NN VBD NN IN DT NN IN DT NNP NN VBD PRP$ NN . And in Samarra , a suicide car bomber killed three people and wounded 20 others when his vehicle exploded near a U.S. convoy . CC IN NNP , DT NN NN NN VBD CD NNS CC VBD CD NNS WRB PRP$ NN VBD IN DT NNP NN . Meanwhile , media reports say the U.S. Defense Department may withdraw tens of thousands of troops from Iraq by early next year . RB , NNS NNS VBP DT NNP NNP NNP MD VB NNS IN NNS IN NNS IN NNP IN JJ JJ NN . Lebanon 's prime minister-designate says he will offer his resignation to the Lebanese president , after failing to form a government of national unity . NNP POS JJ NN VBZ PRP MD VB PRP$ NN TO DT JJ NN , IN VBG TO VB DT NN IN JJ NN . Omar Karami told reporters Tuesday in Beirut he will inform President Emile Lahoud of his decision when they meet on Wednesday . NNP NNP VBD NNS NNP IN NNP PRP MD VB NNP NNP NNP IN PRP$ NN WRB PRP VBP IN NNP . The pro-Syrian Mr. Karami first resigned on February 28 , in the face of growing anti-Syrian protests sparked by the assassination of former Prime Minister Rafik Hariri . DT JJ NNP NNP RB VBD IN NNP CD , IN DT NN IN VBG JJ NNS VBN IN DT NN IN JJ NNP NNP NNP NNP . President Lahoud re-appointed him on March 10 , but he has not been able to bring the opposition into a new government . NNP NNP VBD PRP IN NNP CD , CC PRP VBZ RB VBN JJ TO VB DT NN IN DT JJ NN . Meanwhile , security officials say the pro-Syrian head of military intelligence in Lebanon , General Raymond Azar , will take a month-long leave of absence . RB , NN NNS VBP DT JJ NN IN JJ NN IN NNP , NNP NNP NNP , MD VB DT JJ NN IN NN . Opposition leaders have called for his resignation , along with those of several other security officials . NN NNS VBP VBN IN PRP$ NN , IN IN DT IN JJ JJ NN NNS . Defending Olympic women 's marathon champion Mizuki Noguchi of Japan has withdrawn from the Beijing Games because of a left thigh injury . VBG JJ NNS POS NN NN NNP NNP IN NNP VBZ VBN IN DT NNP NNPS IN IN DT JJ NN NN . The chief of Japan 's Olympic delegation Tomiaki Fukuda made the announcement Tuesday , saying the 30-year-old Noguchi has an injured muscle in her left thigh . DT NN IN NNP POS NNP NN NNP NNP VBD DT NN NNP , VBG DT JJ NNP VBZ DT JJ NN IN PRP$ NN NN . Japan will not send a replacement marathoner for Noguchi , because her substitute also is injured . NNP MD RB VB DT NN NN IN NNP , IN PRP$ NN RB VBZ VBN . No runner has won the women 's marathon gold in two consecutive Olympics . DT NN VBZ VBN DT NNS POS NN NN IN CD JJ NNS . This year 's field looks wide open , with Noguchi out and British world record holder Paula Radcliffe still attempting to recover from a stress fracture in her left thigh . DT NN POS NN VBZ JJ JJ , IN NNP IN CC JJ NN NN NN NNP NNP RB VBG TO VB IN DT NN NN IN PRP$ NN NN . The U.N. Security Council has unanimously approved a new mission to East Timor to help establish security in the country . DT NNP NNP NNP VBZ RB VBN DT JJ NN TO NNP NNP TO VB VB NN IN DT NN . The resolution passed on Friday sends more than 1,600 police and military liaison officers to East Timor for six months . DT NN VBD IN NNP VBZ JJR IN CD NNS CC JJ NN NNS TO NNP NNP IN CD NNS . There will be no military troops in the new mission , but the Australian-led peacekeeping force already in East Timor will remain in place . EX MD VB DT JJ NNS IN DT JJ NN , CC DT JJ NN NN RB IN NNP NNP MD VB IN NN . Australia sent 1,500 troops and 200 police officers to East Timor in May after weeks of street violence , sparked by a split in the ranks of East Timor 's armed forces . NNP VBD CD NNS CC CD NN NNS TO NNP NNP IN NNP IN NNS IN NN NN , VBN IN DT NN IN DT NNS IN NNP NNP POS JJ NNS . Another 600 peacekeepers come from Malaysia , New Zealand , and Portugal . DT CD NNS VBP IN NNP , NNP NNP , CC NNP . Earlier on Friday , the commander of the peacekeepers , Steve Lancaster , said officers have detained 62 people for questioning in an attack on one of the Australian police officers last week . RBR IN NNP , DT NN IN DT NNS , NNP NNP , VBD NNS VBP VBN CD NNS IN VBG IN DT NN IN CD IN DT JJ NN NNS JJ NN . With the HIV / AIDS epidemic now 25-years-old , the World Bank has launched a new strategy to combat the disease where it is the most prevalent -- Africa . IN DT NNP NNP NNP NN RB JJ , DT NNP NNP VBZ VBN DT JJ NN TO VB DT NN WRB PRP VBZ DT RBS JJ : NNP . Nearly two million have died on the continent and HIV has cost the World Bank $ 1.6 billion . RB CD CD VBP VBN IN DT NN CC NNP VBZ VBN DT NNP NNP $ CD CD . In Washington this week , World Bank officials said it 's time to move away from an initial ' emergency response ' to a new four-year action agenda . IN NNP DT NN , NNP NNP NNS VBD PRP VBZ NN TO VB RB IN DT JJ `` NN NN `` TO DT JJ JJ NN NN . Producer Zulima Palacio has the story . NNP NNP NNP VBZ DT NN . Carol Pearson narrates . NNP NNP VBZ . Witnesses in Somalia 's capital Mogadishu say fighting between rival militias has claimed the lives of at least 15 people since Saturday . NNS IN NNP POS NN NNP VBP VBG IN JJ NNS VBZ VBN DT NNS IN IN JJS CD NNS IN NNP . Residents say the clashes resumed Monday after a one-day lull . NNS VBP DT NNS VBD NNP IN DT JJ NN . The fighting was sparked by a territorial dispute between gunmen loyal to Mogadishu 's Islamic courts and fighters allied with local warlords . DT NN VBD VBN IN DT JJ NN IN NNS JJ TO NNP POS JJ NNS CC NNS VBN IN JJ NNS . Ten people were killed and 40 wounded in Saturday 's clashes . CD NNS VBD VBN CC CD VBN IN NNP POS NNS . Somalia has been without an effective central government since 1991 , when warlords overthrew former President Mohamed Siad Barre . NNP VBZ VBN IN DT JJ JJ NN IN CD , WRB NNS VBD JJ NNP NNP NNP NNP . The country 's interim government , set up in 2004 , has been hampered by disputes between political leaders . DT NN POS JJ NN , VBN RP IN CD , VBZ VBN VBN IN NNS IN JJ NNS . The interim parliament is scheduled to hold its first meeting on Somali soil this Sunday after previous meetings in Kenya . DT JJ NN VBZ VBN TO VB PRP$ JJ NN IN JJ NN DT NNP IN JJ NNS IN NNP . Acting Israeli Prime Minister Ehud Olmert has called a meeting of top military and political officials to discuss the possibility that the radical Hamas movement may make strong gains in upcoming Palestinian elections . VBG JJ NNP NNP NNP NNP VBZ VBN DT NN IN JJ JJ CC JJ NNS TO VB DT NN IN DT JJ NNP NN MD VB JJ NNS IN VBG JJ NNS . Hamas , whose military wing has claimed scores of attacks against Israel , has called for the destruction of the Jewish state . NNP , WP$ JJ NN VBZ VBN NNS IN NNS IN NNP , VBZ VBN IN DT NN IN DT JJ NN . Surveys ahead of Wednesday 's polls show a Hamas slate almost even with Fatah candidates . NNS RB IN NNP POS NNS VBP DT NNP NN RB RB IN NNP NNS . Sunday , Israeli cabinet minister Tzachi Hanegbi was quoted by Reuters as saying that Hamas ' presence in a post-election Palestinian Authority would have a ' tragic impact ' on any future peace talks . NNP , JJ NN NN NNP NNP VBD VBN IN NNP IN VBG IN NNP POS NN IN DT JJ JJ NNP MD VB DT `` JJ NN `` IN DT JJ NN NNS . Separately , a published report says the United States is providing financial assistance to boost political support for the ruling Fatah movement . RB , DT VBN NN VBZ DT NNP NNPS VBZ VBG JJ NN TO VB JJ NN IN DT NN NNP NN . The Washington Post says the U.S. Agency for International Development is using about $ 2 million to promote the Palestinian Authority ahead of the polls . DT NNP NNP VBZ DT NNP NNP IN NNP NNP VBZ VBG IN $ CD CD TO VB DT JJ NNP RB IN DT NNS . Italian police say a parcel bomb was found Monday at the Greek embassy in Rome . JJ NNS VBP DT NN NN VBD VBN NNP IN DT JJ NN IN NNP . Police say the device failed to explode and was defused by bomb disposal experts . NNS VBP DT NN VBD TO VB CC VBD VBN IN NN NN NNS . The bomb arrived just days after two similar packages exploded at the Chilean and Swiss embassies in the Italian capital . DT NN VBD RB NNS IN CD JJ NNS VBD IN DT JJ CC JJ NNS IN DT JJ NN . Two staffers were wounded in those blasts . CD NNS VBD VBN IN DT NNS . Members of an anarchist group claimed responsibility for last week 's parcel bombs , but there was no immediate claim for Monday 's attempt . NNS IN DT NN NN VBD NN IN JJ NN POS NN NNS , CC EX VBD DT JJ NN IN NNP POS NN . Police across much of Europe have been on heightened alert since a suicide bombing in Stockholm earlier this month killed the suspected bomber and wounded two others . NNS IN NN IN NNP VBP VBN IN JJ NN IN DT NN VBG IN NNP RBR DT NN VBD DT JJ NN CC VBD CD NNS . Last week , 12 terror suspects were arrested in Britain . JJ NN , CD NN NNS VBD VBN IN NNP . North Korea has barred border crossings with South Korea for a second straight day Saturday , stranding hundreds of people in the North . NNP NNP VBZ VBN NN NNS IN NNP NNP IN DT JJ JJ NN NNP , VBG NNS IN NNS IN DT NNP . Pyongyang banned border traffic on Friday , preventing more than 400 people who work at a joint industrial complex at Kaesong from returning South . NNP VBD NN NN IN NNP , VBG JJR IN CD NNS WP VBP IN DT JJ JJ NN IN NNP IN VBG NNP . Seoul 's Unification Ministry says five people were allowed to cross , including four foreigners and a bride-to-be . NNP POS NNP NNP VBZ CD NNS VBD VBN TO VB , VBG CD NNS CC DT NN . Earlier this week , North Korea switched off military military phones to the South to protest annual military exercises being conducted jointly by the United States and South Korea . RBR DT NN , NNP NNP VBD RP JJ JJ NNS TO DT NNP TO VB JJ JJ NNS VBG VBN RB IN DT NNP NNPS CC NNP NNP . North Korea routinely accuses the United States and South Korea of having aggressive intentions when they carry out the joint military drills . NNP NNP RB VBZ DT NNP NNPS CC NNP NNP IN VBG JJ NNS WRB PRP VBP RP DT JJ JJ NNS . The maneuvers include a U.S. aircraft carrier , 26,000 U.S. troops and more than 30,000 South Korean soldiers . DT NNS VBP DT NNP NN NN , CD NNP NNS CC JJR IN CD JJ JJ NNS . The drills are expected to conclude on March 20 . DT NNS VBP VBN TO VB IN NNP CD . The United Nations Security Council is considering a 12-month extension of the peacekeeping force in Haiti . DT NNP NNP NNP NNP VBZ VBG DT JJ NN IN DT NN NN IN NNP . The council met Monday but did not reach a decision about the force 's mandate , which is due to expire February 15 . DT NN VBD NNP CC VBD RB VB DT NN IN DT NN POS NN , WDT VBZ JJ TO VB NNP CD . Former U.N. Secretary General Kofi Annan had called for a 12-month extension before leaving his post last year . JJ NNP NNP NNP NNP NNP VBD VBN IN DT JJ NN IN VBG PRP$ NN JJ NN . After Monday 's meeting , Russia 's U.N. ambassador Vitaly Churkin said that some of the council 's 15 members continue to oppose extending the force . IN NNP POS NN , NNP POS NNP NN NNP NNP VBD IN DT IN DT NN POS CD NNS VBP TO VB VBG DT NN . There are almost 8,000 U.N. peacekeepers in Haiti currently working to root out violent gangs . EX VBP RB CD NNP NNS IN NNP RB VBG TO VB RP JJ NNS . The peacekeepers were deployed in 2004 after former President Jean-Bertrand Aristide was ousted in an uprising . DT NNS VBD VBN IN CD IN JJ NNP NNP NNP VBD VBN IN DT NN . Philippine President Gloria Arroyo says a Philippine hostage in Iraq has been released after nearly eight months in captivity . JJ NNP NNP NNP VBZ DT JJ NN IN NNP VBZ VBN VBN IN RB CD NNS IN NN . Ms. Arroyo announced Wednesday , that Roberto Tarongoy is in the custody of Philippine diplomats in Baghdad and that arrangements are being made for him to return home . NNP NNP VBD NNP , IN NNP NNP VBZ IN DT NN IN JJ NNS IN NNP CC IN NNS VBP VBG VBN IN PRP TO VB NN . President Arroyo did not provide further details . NNP NNP VBD RB VB JJ NNS . Mr. Tarongoy , who worked for a Saudi firm , was abducted in early November along with an American colleague , Roy Hallums , whose fate remains unknown . NNP NNP , WP VBD IN DT JJ NN , VBD VBN IN JJ NNP IN IN DT JJ NN , NNP NNP , WP$ NN VBZ JJ . Last year , the Philippines pulled out its small military contingent from Iraq , after a Philippine truck driver was kidnapped . JJ NN , DT NNPS VBD RP PRP$ JJ JJ NN IN NNP , IN DT JJ NN NN VBD VBN . The truck driver was later released . DT NN NN VBD RB VBN . The word tattoo is most often associated with artwork on someone 's body . DT NN NN VBZ RBS RB VBN IN NN IN DT POS NN . But it also a military tradition dating back to the 17th century of calling soldiers or sailors back to their quarters at night with a drum or bugle . CC PRP RB DT JJ NN VBG RB TO DT JJ NN IN VBG NNS CC NNS RB TO PRP$ NNS IN NN IN DT NN CC NN . Each year that tradition is recreated in Washington in a weekly sunset military pageant known as the ' Twilight Tattoo ' . DT NN IN NN VBZ VBN IN NNP IN DT JJ NN JJ NN VBN IN DT `` NNP NNP `` . VOA 's Jeff Feuer has more on this storied tradition . NNP POS NNP NNP VBZ RBR IN DT JJ NN . The European Union has insisted that Poland restructure the historic Gdansk shipyard , site of protests that led to the formation of the Solidarity labor union . DT NNP NNP VBZ VBN IN NNP VBP DT JJ NNP NN , NN IN NNS WDT VBD TO DT NN IN DT NNP NN NN . EU officials said Tuesday that the Gdansk shipyard must streamline its operations or repay hefty state subsidies , to come into line with rules allowing subsidies only for businesses working toward long-term sustainability . NNP NNS VBD NNP IN DT NNP NN MD VB PRP$ NNS CC VB JJ NN NNS , TO VB IN NN IN NNS VBG NNS RB IN NNS VBG IN JJ NN . Trade unions object to proposed changes at the shipyard , saying they will eliminate hundreds of jobs . NNP NNS VBP TO VBN NNS IN DT NN , VBG PRP MD VB NNS IN NNS . The Gdansk shipyard is the location where labor leader Lech Walesa led a strike that led to government recognition for the Solidarity labor union , a major development in the eventual collapse of European communism . DT NNP NN VBZ DT NN WRB NN NN NNP NNP VBD DT NN WDT VBD TO NN NN IN DT NNP NN NN , DT JJ NN IN DT JJ NN IN JJ NN . About 100 Polish workers demonstrated outside EU headquarters in Brussels last week to protest plans to restructure the shipyard . IN CD JJ NNS VBD JJ NNP NN IN NNP JJ NN TO VB NNS TO VB DT NN . It was the 27th anniversary of the ratification of the agreement that led to Solidarity 's creation . PRP VBD DT JJ NN IN DT NN IN DT NN WDT VBD TO NNP POS NN . Lebanese opposition leaders have called for a one-day national strike to demand that Beirut 's pro-Syrian government resign . JJ NN NNS VBP VBN IN DT JJ JJ NN TO VB IN NNP POS JJ NN VB . The strike , set for Monday , would come two weeks after the assassination of former Lebanese Prime Minister Rafik Hariri . DT NN , VBN IN NNP , MD VB CD NNS IN DT NN IN JJ JJ NNP NNP NNP NNP . It would also coincide with opposition plans to call for a no-confidence vote against the government . PRP MD RB VB IN NN NNS TO VB IN DT JJ NN IN DT NN . Opposition leaders blame Beirut and close-ally Syria for the car bombing that killed Mr. Hariri February 14 . NN NNS VBP NNP CC RB NNP IN DT NN NN WDT VBD NNP NNP NNP CD . Both Beirut and Damascus deny involvement . DT NNP CC NNP VBP NN . Earlier Wednesday , Egyptian President Hosni Mubarak dispatched his intelligence chief to Damascus , in a move to ease post-assassination tensions between Syria and Lebanon . RBR NNP , JJ NNP NNP NNP VBD PRP$ NN NN TO NNP , IN DT NN TO VB JJ NNS IN NNP CC NNP . A Mubarak spokesman said the mission was also triggered by growing pressure on Syria coming from a U.S.-European summit in Brussels . DT NNP NN VBD DT NN VBD RB VBN IN VBG NN IN NNP VBG IN DT JJ NN IN NNP . President Bush and European leaders are calling for Syria to withdraw its forces from Lebanon , and for a speedy investigation into the Hariri killing . NNP NNP CC JJ NNS VBP VBG IN NNP TO VB PRP$ NNS IN NNP , CC IN DT JJ NN IN DT NNP NN . Gunmen dressed in Iraqi police commando uniforms killed eight people during a raid on a Baghdad electronics store Wednesday . NNS VBN IN JJ NN NN NNS VBD CD NNS IN DT NN IN DT NNP NN NN NNP . Three women were among those killed . CD NNS VBD IN DT VBN . Another six people were wounded . DT CD NNS VBD VBN . The attack is the latest in the affluent Mansour district and comes after gunmen abducted more than 30 Iraqis in Baghdad this week . DT NN VBZ DT JJS IN DT JJ NNP NN CC VBZ IN NNS VBD JJR IN CD NNS IN NNP DT NN . North of the capital , a roadside bomb killed three Iraqi soldiers near Kirkuk . NNP IN DT NN , DT NN NN VBD CD JJ NNS IN NNP . And the U.S. military said Wednesday three insurgents were killed Tuesday when an unmanned aircraft fired a missile at them while they were planting a roadside bomb near Balad Air Base . CC DT NNP NN VBD NNP CD NNS VBD VBN NNP WRB DT JJ NN VBD DT NN IN PRP IN PRP VBD VBG DT NN NN IN NNP NNP NNP . In other violence Tuesday , two U.S. soldiers were killed in separate incidents . IN JJ NN NNP , CD NNP NNS VBD VBN IN JJ NNS . Iran has attacked President Bush 's planned trip to the Middle East and says it has no plans to normalize relations with the United States . NNP VBZ VBN NNP NNP POS JJ NN TO DT NNP NNP CC VBZ PRP VBZ DT NNS TO VB NNS IN DT NNP NNPS . Foreign Ministry spokesman Mohammad Ali Hosseini told a new conference Sunday that Iran sees Mr. Bush 's trip as interference in the countries of the region . NNP NNP NN NNP NNP NNP VBD DT JJ NN NNP IN NNP VBZ NNP NNP POS NN IN NN IN DT NNS IN DT NN . Hosseini also said Iran has no immediate plans to restore ties with America . NNP RB VBD NNP VBZ DT JJ NNS TO VB NNS IN NNP . Iranian leaders have often said they would not establish ties with the United States unless Washington changes its behavior towards the Islamic Republic . JJ NNS VBP RB VBN PRP MD RB VB NNS IN DT NNP NNPS IN NNP VBZ PRP$ NN IN DT NNP NNP . Iran 's Supreme Leader Ayatollah Ali Khamenei suggested last Thursday that ties with Washington might one day be possible , although he said it would harm Iran to restore relations now . NNP POS NNP NNP NNP NNP NNP VBD JJ NNP IN NNS IN NNP MD CD NN VB JJ , IN PRP VBD PRP MD VB NNP TO VB NNS RB . Gunmen in Iraq have assassinated a prominent tribal leader in the northern Iraqi city of Tikrit . NNS IN NNP VBP VBN DT JJ JJ NN IN DT JJ JJ NN IN NNP . Iraqi police said Tuesday Mahmoud al-Nida , the head of Saddam Hussein 's tribe , died following the attack Monday night . JJ NNS VBD NNP NNP NNP , DT NN IN NNP NNP POS NN , VBD VBG DT NN NNP NN . Meanwhile , an influential Shi'ite leader in Iraq said residents should be allowed to form self-defense units to protect themselves against sectarian attacks . RB , DT JJ NNP NN IN NNP VBD NNS MD VB VBN TO VB JJ NNS TO VB PRP IN JJ NNS . Abdul Aziz al-Hakim , the leader of the Supreme Council for the Islamic Revolution in Iraq , told the Washington Post that Iraqis should band together and take up arms to protect their neighborhoods against rampant violence . NNP NNP NNP , DT NN IN DT NNP NNP IN DT NNP NNP IN NNP , VBD DT NNP NNP IN NNS MD VB RB CC VB RP NNS TO VB PRP$ NNS IN JJ NN . The continuing violence comes as Iraqi Prime Minister Nouri al-Maliki met with President Bush Tuesday to discuss ways to end the rising sectarian violence in Baghdad . DT VBG NN VBZ IN JJ NNP NNP NNP NNP VBD IN NNP NNP NNP TO VB NNS TO VB DT VBG JJ NN IN NNP . French President Jacques Chirac says the U.S-led invasion of Iraq has destabilized the entire Middle East and boosted the spread of terrorism . JJ NNP NNP NNP VBZ DT JJ NN IN NNP VBZ VBN DT JJ NNP NNP CC VBD DT NN IN NN . In the latest in a series of speeches marking the New Year , Mr. Chirac Friday called the war in Iraq an American ' adventure . ' IN DT JJS IN DT NN IN NNS VBG DT NNP NNP , NNP NNP NNP VBD DT NN IN NNP DT JJ `` NN . `` He said it has increased divisions between Iraqi communities and undermined the integrity of the war-torn country . PRP VBD PRP VBZ VBN NNS IN JJ NNS CC VBD DT NN IN DT JJ NN . The French president also renewed his call for an international conference on the Middle East peace process . DT JJ NN RB VBD PRP$ NN IN DT JJ NN IN DT NNP NNP NN NN . In separate speeches earlier this week , Mr. Chirac addressed the French economy and homelessness in his country . IN JJ NNS RBR DT NN , NNP NNP VBD DT JJ NN CC NN IN PRP$ NN . Although widely seen as unlikely to run for a third term in this year 's presidential elections , the 74-year-old president has not yet announced his intentions for the April balloting . IN RB VBN IN JJ TO VB IN DT JJ NN IN DT NN POS JJ NNS , DT JJ NN VBZ RB RB VBN PRP$ NNS IN DT NNP NN . At the plaza in front of the Western Wall , Israeli police arrest an ultra-Orthodox Israeli Israeli police have prevented right-wing Jewish extremists from staging a rally at a disputed holy site in Jerusalem . IN DT NN IN NN IN DT NNP NNP , JJ NN NN DT JJ JJ JJ NNS VBP VBN JJ JJ NNS IN VBG DT NN IN DT JJ JJ NN IN NNP . Thousands of Israeli police encircled Jerusalem 's Old City Sunday , stopping cars and setting up roadblocks to prevent an ultranationalist group from entering a disputed holy site . NNS IN JJ NN VBD NNP POS NNP NNP NNP , VBG NNS CC VBG RP NNS TO VB DT NN NN IN VBG DT JJ JJ NN . Authorities say police arrested at least a dozen Israeli right-wing activists , including the leader of an ultranationalist group , Revava . NNS VBP NNS VBN IN JJS DT NN JJ JJ NNS , VBG DT NN IN DT JJ NN , NNP . The group planned to lead thousands of activists into the Al-Aqsa Mosque compound Sunday . DT NN VBD TO VB NNS IN NNS IN DT NNP NNP NN NNP . The hilltop compound is the most hotly contested site in Jerusalem , known to Muslims as the Noble Sanctuary and to Jews as the Temple Mount . DT NN NN VBZ DT RBS RB VBN NN IN NNP , VBN TO NNPS IN DT NNP NNP CC TO NNPS IN DT NNP NNP . Palestinian militants have warned of an uprising if the Jews try to enter the site . JJ NNS VBP VBN IN DT NN IN DT NNPS VBP TO VB DT NN . Crude oil prices are down more than $ 1 in New York after a U.S. government report showed inventories rose to the highest level in six years . JJ NN NNS VBP RB JJR IN $ CD IN NNP NNP IN DT NNP NN NN VBD NNS VBD TO DT JJS NN IN CD NNS . Crude oil for June delivery is down $ 1.17 , to $ 50.9 a barrel in New York Wednesday afternoon . JJ NN IN NNP NN VBZ RB $ CD , TO $ CD DT NN IN NNP NNP NNP NN . The U.S. Energy Department says supplies climbed 2.7 million barrels last week - more than twice what analysts were expecting . DT NNP NNP NNP VBZ NNS VBD CD CD NNS JJ NN IN JJR IN RB WP NNS VBD VBG . In London , Brent crude oil for June delivery fell 87 cents , to $ 50.56 a barrel on the International Petroleum Exchange . IN NNP , NNP JJ NN IN NNP NN VBD CD NNS , TO $ CD DT NN IN DT NNP NNP NNP . The International Energy Agency says oil demand around the world is lower due to an economic slowdown in China , Europe and the United States in the first quarter . DT NNP NNP NNP VBZ NN NN IN DT NN VBZ JJR JJ TO DT JJ NN IN NNP , NNP CC DT NNP NNPS IN DT JJ NN . Leaders from northern and southern Sudan are holding negotiations on how to run the country after next year 's referendum that will determine if the south becomes an independent state . NNS IN JJ CC JJ NNP VBP VBG NNS IN WRB TO VB DT NN IN JJ NN POS NN WDT MD VB IN DT NN VBZ DT JJ NN . Tuesday 's talks are focusing on a range of unresolved issues between the two sides -- including demarcating the border , citizenship and the sharing of oil revenues and Nile water resources . NNP POS NNS VBP VBG IN DT NN IN JJ NNS IN DT CD NNS : VBG VBG DT NN , NN CC DT NN IN NN NNS CC JJ NN NNS . The semi-autonomous south is scheduled to hold a referendum January 9 on whether to become an independent state . DT JJ NN VBZ VBN TO VB DT NN NNP CD IN IN TO VB DT JJ NN . The vote was a key part of the 2005 agreement ending Sudan 's north-south civil war . DT NN VBD DT JJ NN IN DT CD NN VBG NNP POS JJ JJ NN . Much of Sudan 's oil wealth is believed to lie along the disputed border . NN IN NNP POS NN NN VBZ VBN TO VB IN DT JJ NN . The oil-rich Abyei region holds a separate referendum January 9 on whether to be part of the north or the south . DT JJ NNP NN VBZ DT JJ NN NNP CD IN IN TO VB NN IN DT NN CC DT NN . As India prepares to hold next month 's state assembly elections in its part of Kashmir , a trade route has been reopened between the two Kashmirs . IN NNP VBZ TO VB JJ NN POS NN NN NNS IN PRP$ NN IN NNP , DT NN NN VBZ VBN VBN IN DT CD NNS . VOA 's Ravi Khanna reports Washington experts see these moves leading to an eventual end to the long-running conflict over the disputed territory . NNP POS NNP NNP VBZ NNP NNS VBP DT NNS VBG TO DT JJ NN TO DT JJ NN IN DT JJ NN . The mayor of New Orleans has ordered a mandatory evacuation for most of the residents of his southern U.S. city , as Hurricane Katrina nears with winds of 250 kilometers per hour . DT NN IN NNP NNP VBZ VBN DT JJ NN IN JJS IN DT NNS IN PRP$ JJ NNP NN , IN NNP NNP VBZ IN NNS IN CD NNS IN NN . Sunday , the U.S. National Weather Service upgraded Katrina to a rare category 5 storm , the most intense on the Saffir-Simpson hurricane scale . NNP , DT NNP NNP NNP NNP VBD NNP TO DT JJ NN CD NN , DT RBS JJ IN DT NNP NN NN . Forecasters expect Katrina to make landfall in the state of Louisiana sometime Monday , bringing heavy rains and a high storm surge along with the winds . NNS VBP NNP TO VB NN IN DT NN IN NNP RB NNP , VBG JJ NNS CC DT JJ NN NN IN IN DT NNS . Officials are especially concerned about New Orleans , most of which sits below sea level and is vulnerable to flooding . NNS VBP RB JJ IN NNP NNP , JJS IN WDT VBZ IN NN NN CC VBZ JJ TO NN . Weather officials have warned a major loss of life is possible unless residents take precautions immediately . NNP NNS VBP VBN DT JJ NN IN NN VBZ JJ IN NNS VBP NNS RB . At last report , the hurricane was located about 400 kilometers off the southern Louisiana coast , in the Gulf of Mexico . IN JJ NN , DT NN VBD VBN IN CD NNS IN DT JJ NNP NN , IN DT NNP IN NNP . President Bush has already declared a federal state of emergency for the state of Louisiana . NNP NNP VBZ RB VBN DT JJ NN IN NN IN DT NN IN NNP . German Chancellor Angela Merkel has arrived in Jordan for talks with King Abdullah about regional developments . JJ NNP NNP NNP VBZ VBN IN NNP IN NNS IN NNP NNP IN JJ NNS . It is the first stop of her three-day visit to the Middle East . PRP VBZ DT JJ NN IN PRP$ JJ NN TO DT NNP NNP . Ms. Merkel Saturday is expected to discuss with the Jordanian monarch the Arab peace plan for Israel , as well as the situation in Iraq . NNP NNP NNP VBZ VBN TO VB IN DT JJ NN DT JJ NN NN IN NNP , RB RB IN DT NN IN NNP . The trip will allow Ms. Merkel to continue the European Union 's diplomatic efforts in the Middle East while her country holds the EU 's rotating presidency . DT NN MD VB NNP NNP TO VB DT NNP NNP POS JJ NNS IN DT NNP NNP IN PRP$ NN VBZ DT NNP POS VBG NN . The German chancellor 's trip follows a recent agreement among Arab countries to revise a 2002 peace plan with Israel . DT JJ NN POS NN VBZ DT JJ NN IN JJ NNS TO VB DT CD NN NN IN NNP . Ms. Merkel acknowledged before her trip that the plan shows some progress , but she also warned that it poses some difficult challenges . NNP NNP VBD IN PRP$ NN IN DT NN VBZ DT NN , CC PRP RB VBD IN PRP VBZ DT JJ NNS . Ms. Merkel also is scheduled to travel to Israel , the Palestinian territories and Lebanon . NNP NNP RB VBZ VBN TO VB TO NNP , DT JJ NNS CC NNP . The Disney Channel now can claim the most-watched basic cable TV movie in broadcasting history . DT NNP NNP RB MD VB DT JJS JJ NN NN NN IN NN NN . High School Musical 2 drew an audience of 17.2 million for its August 17 premiere , more than doubling the viewership of its predecessor . NNP NNP NNP CD VBD DT NN IN CD CD IN PRP$ NNP CD NN , JJR IN VBG DT NN IN PRP$ NN . High School Musical attracted 7.7 million viewers in 2006 . NNP NNP NNP VBD CD CD NNS IN CD . The previous basic cable record-holder was CNN 's 1993 debate on the North American Free Trade Agreement , which drew 16.8 million viewers . DT JJ JJ NN NN VBD NNP POS CD NN IN DT NNP NNP NNP NNP NNP , WDT VBD CD CD NNS . If kids were watching TV on August 17 , they were probably watching High School Musical 2 . IN NNS VBD VBG NN IN NNP CD , PRP VBD RB VBG NNP NNP NNP CD . The Disney Channel said the movie attracted four out of five female viewers in the six-to-11-year-old age group . DT NNP NNP VBD DT NN VBD CD IN IN CD JJ NNS IN DT JJ NN NN . The High School Musicalphenomenon has made stars of cast members Zac Efron and Ashley Tisdale , while also spawning hit records and sold-out concerts . DT NNP NNP NNP VBZ VBN NNS IN NN NNS NNP NNP CC NNP NNP , IN RB VBG NN NNS CC JJ NNS . President Bush is holding a news conference Monday , just hours after defending the war in Iraq in a nationally televised speech late Sunday . NNP NNP VBZ VBG DT NN NN NNP , RB NNS IN VBG DT NN IN NNP IN DT RB JJ NN JJ NNP . Mr. Bush is expected to face questions about his authorization of a secret domestic surveillance program , which has drawn harsh criticism in Congress . NNP NNP VBZ VBN TO VB NNS IN PRP$ NN IN DT JJ JJ NN NN , WDT VBZ VBN JJ NN IN NNP . He is also expected to be questioned on Iraq , and about his efforts to renew the Patriot Act , which expanded the government 's search and surveillance powers after the September 11 , 2001 terrorist attacks . PRP VBZ RB VBN TO VB VBN IN NNP , CC IN PRP$ NNS TO VB DT NNP NNP , WDT VBD DT NN POS NN CC NN NNS IN DT NNP CD , CD JJ NNS . In Sunday 's speech , Mr. Bush said the United States is winning the war in Iraq and warned against a quick withdrawal . IN NNP POS NN , NNP NNP VBD DT NNP NNPS VBZ VBG DT NN IN NNP CC VBD IN DT JJ NN . The president lashed out at opposition Democrats , calling their criticism of his handling of the war ' defeatism ' , and said it is not justified by the facts . DT NN VBD RP IN NN NNS , VBG PRP$ NN IN PRP$ NN IN DT NN `` NN `` , CC VBD PRP VBZ RB VBN IN DT NNS . North Korea says banning nuclear weapons from the Korean peninsula should be the main goal of the six-party talks that resumed Tuesday in Beijing . NNP NNP VBZ VBG JJ NNS IN DT JJ NN MD VB DT JJ NN IN DT JJ NNS WDT VBD NNP IN NNP . But during the opening session Japan 's chief negotiator , Kenichiro Sasae , raised the issue of North Korea 's abduction of Japanese citizens during the 1970s and 80s , despite objections from South Korea . CC IN DT NN NN NNP POS NN NN , NNP NNP , VBD DT NN IN NNP NNP POS NN IN JJ NNS IN DT NNS CC NNS , IN NNS IN NNP NNP . Chief U.S. negotiator Christopher Hill said in his opening statement that the United States views North Korea as a sovereign nation and that Washington has ' absolutely no intention ' of attacking the Stalinist state . NNP NNP NN NNP NNP VBD IN PRP$ NN NN IN DT NNP NNPS VBZ NNP NNP IN DT JJ NN CC IN NNP VBZ `` RB DT NN `` IN VBG DT JJ NN . This fourth round of talks involving the two Koreas , the United States , China , Japan and Russia is aimed at convincing Pyongyang to abandon its nuclear ambitions . DT JJ NN IN NNS VBG DT CD NNP , DT NNP NNPS , NNP , NNP CC NNP VBZ VBN IN VBG NNP TO VB PRP$ JJ NNS . North Korea had boycotted the negotiations for more than a year , citing a hostile U.S. policy . NNP NNP VBD VBN DT NNS IN JJR IN DT NN , VBG DT JJ NNP NN . Iran says it wants to continue talks about its nuclear program with the European Union , despite a deadlock over Tehran 's desire to produce nuclear fuel . NNP VBZ PRP VBZ TO VB NNS IN PRP$ JJ NN IN DT NNP NNP , IN DT NN IN NNP POS NN TO VB JJ NN . Iran 's Foreign Minister Kamal Kharazzi told reporters Thursday that his country will continue the negotiations , provided they lead to a tangible outcome . NNP POS NNP NNP NNP NNP VBD NNS NNP IN PRP$ NN MD VB DT NNS , VBD PRP VBP TO DT JJ NN . Mr. Kharazzi spoke at the United Nations after meeting with Secretary-General Kofi Annan . NNP NNP VBD IN DT NNP NNPS IN VBG IN JJ NNP NNP . In a deal with Britain , France and Germany , Iran agreed late last year to suspend nuclear-fuel activities while the sides tried to negotiate an agreement regarding Iran 's nuclear ambitions . IN DT NN IN NNP , NNP CC NNP , NNP VBD RB JJ NN TO VB JJ NNS IN DT NNS VBD TO VB DT NN VBG NNP POS JJ NNS . But Iran recently said it will resume some work relating to enriched uranium , which can be used both as fuel for nuclear power plants and explosive material for atomic bombs . CC NNP RB VBD PRP MD VB DT NN VBG TO VBN NN , WDT MD VB VBN DT IN NN IN JJ NN NNS CC JJ NN IN JJ NNS . Washington accuses Tehran of running a secret nuclear weapons program , a charge Iran denies . NNP VBZ NNP IN VBG DT JJ JJ NNS NN , DT NN NNP VBZ . Palestinian officials say militants have agreed to halt mortar and rocket attacks on Jewish settlements in the Gaza Strip that have threatened to derail a three-month cease-fire with Israel . JJ NNS VBP NNS VBP VBN TO VB NN CC NN NNS IN JJ NNS IN DT NNP NNP WDT VBP VBN TO VB DT JJ NN IN NNP . A Palestinian Interior Ministry spokesman Saturday , said the groups , including Hamas , agreed to stop the attacks after meeting late Thursday with Interior Minister Nasser Youssef . DT JJ NNP NNP NN NNP , VBD DT NNS , VBG NNP , VBD TO VB DT NNS IN NN JJ NNP IN NNP NNP NNP NNP . Hamas unleashed intensive mortar strikes on Jewish settlements earlier in the week after Israeli soldiers killed several militants . NNP VBD JJ NN NNS IN JJ NNS RBR IN DT NN IN JJ NNS VBD JJ NNS . Israel has threatened to use all necessary means to halt the attacks . NNP VBZ VBN TO VB DT JJ NNS TO VB DT NNS . Israel 's Vice Prime Minister Shimon Peres says Iranian President Mahmoud Ahmadinejad , who said Israel should be wiped off the map , must know that Iran can also be destroyed . NNP POS NNP NNP NNP NNP NNP VBZ JJ NNP NNP NNP , WP VBD NNP MD VB VBN RP DT NN , MD VB IN NNP MD RB VB VBN . Mr. Peres told the Reuters News Agency that Israel would defend itself under any condition . NNP NNP VBD DT NNP NNP NNP IN NNP MD VB PRP IN DT NN . He said Iran is not just a threat to Israel , but a danger to the whole world . PRP VBD NNP VBZ RB RB DT NN TO NNP , CC DT NN TO DT JJ NN . He warned of a world arms race if Iran builds a nuclear weapon , saying some bombs could fall into the hands of terrorists . PRP VBD IN DT NN NNS NN IN NNP VBZ DT JJ NN , VBG DT NNS MD VB IN DT NNS IN NNS . Mr. Peres also said Iran 's defiance is making a mockery of the world . NNP NNP RB VBD NNP POS NN VBZ VBG DT NN IN DT NN . He called on the the United Nations Security Council to act or face endangering an important world body . PRP VBD IN DT DT NNP NNP NNP NNP TO VB CC VB VBG DT JJ NN NN . Ethiopia says it has broken off diplomatic relations with Qatar , accusing the Gulf state of supporting armed opposition groups in the Horn of Africa . NNP VBZ PRP VBZ VBN RP JJ NNS IN NNP , VBG DT NNP NN IN VBG JJ NN NNS IN DT NNP IN NNP . In a statement Monday , Ethiopia 's government charged that Qatar is a source of instability in the region . IN DT NN NNP , NNP POS NN VBD IN NNP VBZ DT NN IN NN IN DT NN . It alleged that Qatar supports armed opposition groups within Ethiopia as well as Islamic insurgents in Somalia , where Ethiopian troops are supporting the government . PRP VBD IN NNP VBZ JJ NN NNS IN NNP RB RB IN JJ NNS IN NNP , WRB JJ NNS VBP VBG DT NN . It also cited Qatar 's strong ties with Ethiopia 's rival Eritrea . PRP RB VBD NNP POS JJ NNS IN NNP POS JJ NNP . There was no immediate response from Qatar . EX VBD DT JJ NN IN NNP . The Ethiopian government said Qatar has been one of the most important supporters of terrorism and extremism in the region . DT JJ NN VBD NNP VBZ VBN CD IN DT RBS JJ NNS IN NN CC NN IN DT NN . The statement said Ethiopia had long observed what it called Qatar 's ' hostile behavior ' and had been patient before taking Monday 's measure . DT NN VBD NNP VBD RB VBN WP PRP VBD NNP POS `` JJ NN `` CC VBD VBN JJ IN VBG NNP POS NN . Turkish Prime Minister Recep Tayyip Erdogan says his country is ready to build ties with neighboring Armenia , despite disagreements over decades-old allegations of Turkish genocide against Armenians . JJ NNP NNP NNP NNP NNP VBZ PRP$ NN VBZ JJ TO VB NNS IN JJ NNP , IN NNS IN JJ NNS IN JJ NN IN NNS . In an interview with the newspaper Milliyet , Mr. Erdogan renewed his call for creation of a joint Turkish-Armenian commission to study the disputed genocide issue . IN DT NN IN DT NN NNP , NNP NNP VBD PRP$ NN IN NN IN DT JJ JJ NN TO VB DT JJ NN NN . He said this could coincide with the establishment of political relations between the two neighbors . PRP VBD DT MD VB IN DT NN IN JJ NNS IN DT CD NNS . The countries share a border , but have no diplomatic ties . DT NNS VBP DT NN , CC VBP DT JJ NNS . Tuesday , Armenian President Robert Kocharian said his country could take part in a commission , but he first called for improved ties . NNP , JJ NNP NNP NNP VBD PRP$ NN MD VB NN IN DT NN , CC PRP RB VBD IN JJ NNS . Armenia says 1.5 million of its nationals were slaughtered by the Turks during the final years of the Ottoman Empire 90 years ago , characterizing this as genocide . NNP VBZ CD CD IN PRP$ NNS VBD VBN IN DT NNS IN DT JJ NNS IN DT NNP NNP CD NNS RB , VBG DT IN NN . Turkey says 3,00,000 Armenians and thousands of Turks were killed during a Russia-backed Armenian uprising against Ottoman rule . NNP VBZ CD NNS CC NNS IN NNS VBD VBN IN DT JJ JJ NN IN NNP NN . A militant in southern Afghanistan has demanded the release of Taleban prisoners in exchange for four Afghan health workers and their driver who were kidnapped Tuesday in Kandahar province . DT NN IN JJ NNP VBZ VBN DT NN IN NNP NNS IN NN IN CD JJ NN NNS CC PRP$ NN WP VBD VBN NNP IN NNP NN . A man who claimed to be a local Taleban commander called news agencies Thursday , saying the kidnappers are demanding the release of Taleban prisoners in exchange for the five hostages . DT NN WP VBD TO VB DT JJ NNP NN VBD NN NNS NNP , VBG DT NNS VBP VBG DT NN IN NNP NNS IN NN IN DT CD NNS . He said the medics and their driver were safe . PRP VBD DT NNS CC PRP$ NN VBD JJ . The demand comes more than a week after the Afghan government released five Taleban prisoners in exchange for an Italian journalist who was abducted and held for two weeks . DT NN VBZ JJR IN DT NN IN DT JJ NN VBD CD NNP NNS IN NN IN DT JJ NN WP VBD VBN CC VBN IN CD NNS . The United States strongly criticized the deal , saying that agreeing to the demands of extremists only encourages more kidnappings and violence . DT NNP NNPS RB VBD DT NN , VBG IN VBG TO DT NNS IN NNS RB VBZ RBR NNS CC NN . Dominican authorities have quarantined and sacrificed a number of birds after detecting a strain of bird flu last month . JJ NNS VBP VBN CC VBN DT NN IN NNS IN VBG DT NN IN NN NN JJ NN . The World Organization for Animal Health said in a report that 130 birds were slaughtered after authorities discovered a case of the virus near the capital , Santo Domingo , and another some 145 kilometers to the east in the village of Higuey . DT NNP NNP IN NNP NNP VBD IN DT NN IN CD NNS VBD VBN IN NNS VBD DT NN IN DT NN IN DT NN , NNP NNP , CC DT DT CD NNS TO DT NN IN DT NN IN NNP . Officials say the virus is the H5N2 strain , which does not affect humans . NNS VBP DT NN VBZ DT NNP NN , WDT VBZ RB VB NNS . Government livestock director Angel Faxas said officials believe the virus reached the Dominican Republic through birds introduced into the country illegally . NN NN NN NNP NNP VBD NNS VBP DT NN VBD DT NNP NNP IN NNS VBN IN DT NN RB . The World Health Organization reports that the more virulent H5N1 strain of bird flu has killed 216 people worldwide since 2003 . DT NNP NNP NNP VBZ IN DT RBR JJ NNP NN IN NN NN VBZ VBN CD NNS JJ IN CD . Health officials in Vietnam say a 23-year-old woman has tested positive for a deadly strain of bird flu . NNP NNS IN NNP VBP DT JJ NN VBZ VBN JJ IN DT JJ NN IN NN NN . This is the second human case of bird flu diagnosed in Vietnam this year . DT VBZ DT JJ JJ NN IN NN NN VBN IN NNP DT NN . Officials in northern Quand Ninh province say the woman became sick after eating chicken . NNS IN JJ NNP NNP NN VBP DT NN VBD JJ IN VBG NN . Hospital director Nguyen Quoc Hung says the woman has been under treatment for five days . NN NN NNP NNP NNP VBZ DT NN VBZ VBN IN NN IN CD NNS . Last month , an eight-year old girl from northern Thanh Hoa province also tested positive for the H5N1 virus . JJ NN , DT JJ JJ NN IN JJ NNP NNP NN RB VBD JJ IN DT NNP NN . On Saturday , animal health authorities confirmed bird flu outbreaks in poultry in three provinces in Vietnam . IN NNP , JJ NN NNS VBD JJ NN NNS IN NN IN CD NNS IN NNP . The H5N1 strain of avian influenza remains largely a virus in birds , but experts fear it could mutate into a form that is easily transmitted by humans . DT NNP NN IN JJ NN VBZ RB DT NN IN NNS , CC NNS VBP PRP MD VB IN DT NN WDT VBZ RB VBN IN NNS . The World Health Organization says bird flu has killed 248 people since it resurfaced in Asia in 2003 . DT NNP NNP NNP VBZ NN NN VBZ VBN CD NNS IN PRP VBD IN NNP IN CD . More than 50 of the deaths have been in Vietnam . JJR IN CD IN DT NNS VBP VBN IN NNP . Chechen rebel leader Shamil Basayev has apparently claimed responsibility for last week 's raid on a city in southern Russia . JJ NN NN NNP NNP VBZ RB VBN NN IN JJ NN POS NN IN DT NN IN JJ NNP . A statement said to be written by Mr. Basayev posted on a rebel website Monday says he directed last Thursday 's coordinated attacks on Nalchik . DT NN VBN TO VB VBN IN NNP NNP VBD IN DT JJ NN NNP VBZ PRP VBD JJ NNP POS JJ NNS IN NNP . The message says militants from the group Caucasus Front carried out the operation . DT NN VBZ NNS IN DT NN NNP NNP VBD IN DT NN . More than 100 people were killed in the fighting in Nalchik , the provincial capital of Russia 's Kabardino-Balkaria region . JJR IN CD NNS VBD VBN IN DT NN IN NNP , DT JJ NN IN NNP POS NNP NN . The province borders the republic of Chechnya where Russian forces have been fighting Muslim separatists for more than a decade . DT NN VBZ DT NN IN NNP WRB JJ NNS VBP VBN VBG NNP NNS IN JJR IN DT NN . Shamil Basayev is the most wanted man in Russia . NNP NNP VBZ DT RBS JJ NN IN NNP . The Chechen warlord claimed responsibility for the 2004 Beslan school massacre that claimed 330 lives , most of them children . DT JJ NN VBD NN IN DT CD NNP NN NN WDT VBD CD NNS , JJS IN PRP NNS . The United Nations Children 's Fund says new initiatives in East Asia and the Pacific are leading the way in fighting the commercial sexual exploitation of children in the region . DT NNP NNP NNP POS NNP VBZ JJ NNS IN NNP NNP CC DT NNP VBP VBG DT NN IN VBG DT JJ JJ NN IN NNS IN DT NN . Delegates from more than 20 East Asian and Pacific countries met in Thailand this week to discuss new measures to protect children , help victims , and punish exploiters . NNS IN JJR IN CD NNP NNP CC NNP NNS VBD IN NNP DT NN TO VB JJ NNS TO VB NNS , VB NNS , CC VB NNS . They include a memorandum of understanding against trafficking , signed last month by Cambodia , China , Burma , Laos , Thailand , and Vietnam . PRP VBP DT NN IN NN IN NN , VBN JJ NN IN NNP , NNP , NNP , NNP , NNP , CC NNP . UNICEF says despite progress , a lack of reliable information continues to be a major obstacle to implementing effective strategies to stop the sex trade in children . NNP VBZ IN NN , DT NN IN JJ NN VBZ TO VB DT JJ NN TO VBG JJ NNS TO VB DT NN NN IN NNS . It says another concern is the exponential rise in child pornography on the Internet . PRP VBZ DT NN VBZ DT JJ NN IN NN NN IN DT NN . The Pakistani Taliban says it is open to holding talks with the country 's newly elected government . DT JJ NNP VBZ PRP VBZ JJ TO VBG NNS IN DT NN POS RB VBN NN . A spokesman for the militant group Tehrik-e-Taliban Pakistan , Maulvi Omar , says the group is ready to cooperate with the government and bring peace to tribal areas . DT NN IN DT JJ NN NNP NNP , NNP NNP , VBZ DT NN VBZ JJ TO VB IN DT NN CC VB NN TO JJ NNS . However , he urged Pakistani officials to end their cooperation with U.S.-led forces that are fighting an insurgency in neighboring Afghanistan . RB , PRP VBD JJ NNS TO VB PRP$ NN IN JJ NNS WDT VBP VBG DT NN IN VBG NNP . On Saturday , Pakistan 's newly-elected Prime Minister Yousuf Raza Gilani said that fighting terrorism will be his government 's top priority , but added that he is willing to talk to militants who are ready to lay down their arms . IN NNP , NNP POS JJ NNP NNP NNP NNP NNP VBD IN VBG NN MD VB PRP$ NN POS JJ NN , CC VBD IN PRP VBZ JJ TO VB TO NNS WP VBP JJ TO VB RP PRP$ NNS . Pakistan has suffered from a series of recent attacks blamed on al-Qaida and Taliban militants operating in the country 's tribal regions . NNP VBZ VBN IN DT NN IN JJ NNS VBN IN NNP CC NNP NNS VBG IN DT NN POS JJ NNS . The U.S. military says it has begun a major security operation in Iraq 's western al-Anbar province . DT NNP NN VBZ PRP VBZ VBN DT JJ NN NN IN NNP POS JJ NNP NN . The operation includes an overnight curfew in the provincial capital , Ramadi , and increased security measures in several cities along the Euphrates River , including Hit , Baghdadi , and Hadithah . DT NN VBZ DT JJ NN IN DT JJ NN , NNP , CC JJ NN NNS IN JJ NNS IN DT NNP NNP , VBG NNP , NNP , CC NNP . Iraqi security forces are said to be assisting with the operation , dubbed Operation River Blitz . JJ NN NNS VBP VBN TO VB VBG IN DT NN , VBD NNP NNP NNP . A statement from U.S. Marine Major-General Richard Natonski says the Iraqi government asked for the operation . DT NN IN NNP NN NN NNP NNP VBZ DT JJ NN VBD IN DT NN . Ramadi , located 110 kilometers west of Baghdad , has been a stronghold of insurgents fighting U.S. and Iraqi security forces . NNP , VBN CD NNS JJS IN NNP , VBZ VBN DT NN IN NNS VBG NNP CC JJ NN NNS . Separately , the U.S. military says a Marine was killed in al-Anbar during a security operation on Saturday . RB , DT NNP NN VBZ DT NN VBD VBN IN NNP IN DT NN NN IN NNP . Insurgents killed at least 40 people in attacks in and around Baghdad on Saturday . NNS VBD IN JJS CD NNS IN NNS IN CC IN NNP IN NNP . The U.N. Security Council has pushed for full implementation of Ivory Coast peace accords , threatening sanctions against those fail to comply . DT NNP NNP NNP VBZ VBN IN JJ NN IN NNP NNP NN NNS , VBG NNS IN DT VBP TO VB . In a statement issued Wednesday by its new president , Greek Ambassador Adamantios Vassilakis , the council said those who thwart the peace process face a year-long travel ban and the freezing of their financial assets . IN DT NN VBN NNP IN PRP$ JJ NN , JJ NNP NNP NNP , DT NN VBD DT WP VB DT NN NN VBP DT JJ NN NN CC DT NN IN PRP$ JJ NNS . The council president also said the people of Ivory Coast must begin putting their words into action . DT NN NN RB VBD DT NNS IN NNP NNP MD VB VBG PRP$ NNS IN NN . Although the war is over , Ivory Coast remains divided between the government and rebel-held territory . IN DT NN VBZ IN , NNP NNP VBZ VBN IN DT NN CC JJ NN . Peace accords to end the conflict have not been fully implemented . NN NNS TO VB DT NN VBP RB VBN RB VBN . An April deal to begin disarming was ignored and the warring parties returned to negotiations last month . DT NNP NN TO VB VBG VBD VBN CC DT NN NNS VBD TO NNS JJ NN . They recommitted themselves to a new date for disarmament along with other steps that will pave the way for new elections in October . PRP VBD PRP TO DT JJ NN IN NN IN IN JJ NNS WDT MD VB DT NN IN JJ NNS IN NNP . The U.S. military in Iraq says seven people have been killed and 20 others wounded in a suicide bombing at a government facility in Baquba . DT NNP NN IN NNP VBZ CD NNS VBP VBN VBN CC CD NNS VBN IN DT NN VBG IN DT NN NN IN NNP . A U.S. statement says the dead include a U.S. soldier , a U.S. contractor and five Iraqi government workers . DT NNP NN VBZ DT NN VBP DT NNP NN , DT NNP NN CC CD JJ NN NNS . At least 20 others , including nine U.S. personnel , were wounded . IN JJS CD NNS , VBG CD NNP NNS , VBD VBN . Meanwhile , Sunni , Shi'ite and Kurdish negotiators are scrambling Tuesday to reach an accord on a new Iraqi constitution , ahead of a parliament vote on the charter set for Thursday . RB , NNP , NNP CC NNP NNS VBP VBG NNP TO VB DT NN IN DT JJ JJ NN , RB IN DT NN NN IN DT NN VBN IN NNP . Officials say issues of federalism and the division of authority between the presidency and parliament remain unresolved . NNS VBP NNS IN NN CC DT NN IN NN IN DT NN CC NN VBP JJ . Majority Shi'ites and the Kurds are seeking a decentralized government that allows significant regional autonomy in the Kurdish north and Shi'ite southern Iraq . NNP NNP CC DT NNPS VBP VBG DT JJ NN WDT VBZ JJ JJ NN IN DT JJ NN CC NNP JJ NNP . Sunnis want a centralized government seen as protecting their minority interests in central Iraq . NNP VBP DT JJ NN VBN IN VBG PRP$ NN NNS IN JJ NNP . A published report says that shareholders in the Russian oil company , Yukos , are taking legal action in an effort to be compensated by the government for the sharp drop in the firm 's market value . DT JJ NN VBZ IN NNS IN DT JJ NN NN , NNP , VBP VBG JJ NN IN DT NN TO VB VBN IN DT NN IN DT JJ NN IN DT NN POS NN NN . Thursday 's edition of the London-based Financial Times newspaper says the director of Menatep , the group that controls 60 percent of Yukos , has filed a complaint against the Russian government under the Energy Charter signed by Russia designed to protect investors . NNP POS NN IN DT JJ NNP NNP NN VBZ DT NN IN NNP , DT NN WDT VBZ CD NN IN NNP , VBZ VBN DT NN IN DT JJ NN IN DT NNP NNP VBN IN NNP VBN TO VB NNS . The newspaper says Menatep 's legal action is the first aggressive effort made by the oil company 's investors to be compensated for losses incurred as share prices have plummeted since last year . DT NN VBZ NNP POS JJ NN VBZ DT JJ JJ NN VBN IN DT NN NN POS NNS TO VB VBN IN NNS VBN IN NN NNS VBP VBN IN JJ NN . This sharp drop in Yukos ' value is attributed to taxes imposed on the company by the Russian government . DT JJ NN IN NNP POS NN VBZ VBN TO NNS VBN IN DT NN IN DT JJ NN . Observers claim the taxes are politically motivated . NNS VBP DT NNS VBP RB JJ . The U.S. military in Afghanistan said 20 militants were killed by an airstrike in the Taliban stronghold of Helmand province . DT NNP NN IN NNP VBD CD NNS VBD VBN IN DT NN IN DT NNP NN IN NNP NN . A statement said the airstrike was ordered after Afghan and U.S. led coalition troops were ambushed while on foot patrol in Kajaki district on Wednesday . DT NN VBD DT NN VBD VBN IN JJ CC NNP VBD NN NNS VBD VBN IN IN NN NN IN NNP NN IN NNP . The U.S. military said troops made sure there were no civilians in the area before calling in air support . DT NNP NN VBD NNS VBD JJ EX VBD DT NNS IN DT NN IN VBG IN NN NN . Southern Afghanistan is the center of a growing Taliban-led insurgency , fueled in part by the illicit opium trade from Helmand 's poppy harvests . NNP NNP VBZ DT NN IN DT VBG JJ NN , VBN IN NN IN DT JJ NN NN IN NNP POS NN NNS . The Obama administration has announced a revised strategy to fight militants in Afghanistan and stabilize neighboring Pakistan . DT NNP NN VBZ VBN DT VBN NN TO VB NNS IN NNP CC VB JJ NNP . The new plan includes the deployment of thousands of additional U.S. troops to Afghanistan and more money to train Afghan police and develop tribal areas . DT JJ NN VBZ DT NN IN NNS IN JJ NNP NNS TO NNP CC JJR NN TO VB JJ NNS CC VB JJ NNS . The United States has warned Americans against flying on local airlines in Indonesia because of safety concerns raised by recent accidents . DT NNP NNP VBZ VBN NNS IN VBG IN JJ NNS IN NNP IN IN NN NNS VBN IN JJ NNS . The U.S. Embassy in Jakarta issued the warning Tuesday . DT NNP NNP IN NNP VBD DT NN NNP . The statement said the U.S. Federal Aviation Administration downgraded the country 's safety rating from one to two due to serious concerns about oversight and operational systems . DT NN VBD DT NNP NNP NNP NNP VBD DT NN POS NN NN IN CD TO CD JJ TO JJ NNS IN NN CC JJ NNS . An Indonesian airliner plunged into the sea in January , killing all 102 people on board . DT JJ NN VBD IN DT NN IN NNP , VBG DT CD NNS IN NN . In March , another plane overshot a runway and burst into flames , leaving 21 dead . IN NNP , DT NN VBD DT NN CC VBD IN NNS , VBG CD JJ . Indonesia 's Transportation Minister Hatta Radjasa defended the country 's safety initiatives Tuesday during a lunch with the Jakarta Foreign Correspondents ' Club . NNP POS NNP NNP NNP NNP VBD DT NN POS NN NNS NNP IN DT NN IN DT NNP NNP NNP POS NNP . He said enforcement has been stepped up after the recent airplane disasters . PRP VBD NN VBZ VBN VBN RP IN DT JJ NN NNS . Google , the world 's largest computer search company , will promote word processing and office software from Sun Microsystems . NNP , DT NN POS JJS NN NN NN , MD VB NN NN CC NN NN IN NNP NNPS . Some analysts say the alliance is a step toward challenging Microsoft 's dominance of the software industry . DT NNS VBP DT NN VBZ DT NN IN VBG NNP POS NN IN DT NN NN . At a news conference late Tuesday , Sun and Google offered a vision of working together to build the next generation of the Internet , but gave few specific details . IN DT NN NN JJ NNP , NNP CC NNP VBD DT NN IN VBG RB TO VB DT JJ NN IN DT NNP , CC VBD JJ JJ NNS . Google is used by 78 million people each month , which could help Sun draw users from Microsoft products . NNP VBZ VBN IN CD CD NNS DT NN , WDT MD VB NNP VB NNS IN NNP NNS . Currently , products made by software giant Microsoft run the vast majority of personal computers around the world . RB , NNS VBN IN NN NN NNP VBD DT JJ NN IN JJ NNS IN DT NN . The Israeli Housing Ministry is seeking bids to build an additional 228 housing units in West Bank settlements , despite a requirement for a freeze in settlement activity under the international ' road map ' peace plan . DT JJ NNP NNP VBZ VBG NNS TO VB DT JJ CD NN NNS IN NNP NNP NNS , IN DT NN IN DT NN IN NN NN IN DT JJ `` NN NN `` NN NN . According to a published tender , the construction plan is to build 150 units in the ultra-orthodox settlement of Beitar Illit and another 78 units in Efrat . VBG TO DT VBN NN , DT NN NN VBZ TO VB CD NNS IN DT JJ NN IN NNP NNP CC DT CD NNS IN NNP . Both settlements are within a few kilometers of East Jerusalem , where Palestinians hope to establish the capital of a future Palestinian state . DT NNS VBP IN DT JJ NNS IN NNP NNP , WRB NNS VBP TO VB DT NN IN DT JJ JJ NN . The ' road map ' peace process calls on Israel to halt all settlement activity in occupied territories . DT `` NN NN `` NN NN VBZ IN NNP TO VB DT NN NN IN JJ NNS . It also calls on the Palestinian Authority to crack down on militants attacking Israelis PRP RB VBZ IN DT JJ NNP TO VB RP IN NNS VBG NNS Incoming Bolivian President Evo Morales is pledging to launch an investigation into allegations that military officials worked with the United States to destroy shoulder-fired missiles owned by the Bolivian army . VBG JJ NNP NNP NNP VBZ VBG TO VB DT NN IN NNS IN JJ NNS VBD IN DT NNP NNPS TO VB JJ NNS VBN IN DT JJ NN . Mr. Morales Wednesday described the move as treason , saying disarming a country and its armed forces is a crime . NNP NNP NNP VBD DT NN IN NN , VBG VBG DT NN CC PRP$ JJ NNS VBZ DT NN . He previously filed a legal complaint against outgoing President Eduardo Rodriguez over the order . PRP RB VBD DT JJ NN IN JJ NNP NNP NNP IN DT NN . President Rodriguez says he authorized the missiles ' destruction , but not their transfer to the United States . NNP NNP VBZ PRP VBD DT NNS POS NN , CC RB PRP$ NN TO DT NNP NNPS . The president Tuesday fired Army chief General Marcelo Antezana over the matter and Defense Minister Gonzalo Mendez resigned . DT NN NNP VBD NNP NN NNP NNP NNP IN DT NN CC NNP NNP NNP NNP VBD . Washington has previously denied charges of a secret , U.S.-led operation to remove the missiles from Bolivia . NNP VBZ RB VBN NNS IN DT NN , JJ NN TO VB DT NNS IN NNP . The United States said Wednesday it complied in good faith with a Bolivian government request for assistance in disposing of outdated arms . DT NNP NNPS VBD NNP PRP VBD IN JJ NN IN DT JJ NN NN IN NN IN VBG IN JJ NNS . Time zone by time zone , nearly 4,000 cities and towns in 88 countries marked Earth Hour Saturday , by dimming nonessential lights from 8.30 to 9.30 p.m. NNP NN IN NN NN , RB CD NNS CC NNS IN CD NNS VBD NNP NNP NNP , IN VBG JJ NNS IN CD TO CD NN From an Antarctic research station , to the Great Pyramids of Egypt and several buildings in Washington , including the Smithsonian Castle , famous structures went dark in a campaign to highlight the threat of climate change . IN DT JJ NN NN , TO DT JJ NNS IN NNP CC JJ NNS IN NNP , VBG DT NNP NNP , JJ NNS VBD JJ IN DT NN TO VB DT NN IN NN NN . China participated for the fist time , cutting the lights at Beijing 's Bird 's Nest Stadium and the Water Cube . NNP VBD IN DT JJ NN , VBG DT NNS IN NNP POS NNP POS NNP NNP CC DT NNP NNP . In the Chilean capital of Santiago lights were turned off at a number of buildings , including the Presidential Palace where President Michelle Bachelet hosted a dinner by candlelight for U.S. Vice President Joseph Biden . IN DT JJ NN IN NNP NNS VBD VBN RP IN DT NN IN NNS , VBG DT NNP NNP WRB NNP NNP NNP VBD DT NN IN NN IN NNP NNP NNP NNP NNP . Earth Hour organizers say there is no uniform way to measure how much energy was saved worldwide . NNP NNP NNS VBP EX VBZ DT JJ NN TO VB WRB JJ NN VBD VBN NN . The event was first organized in Sydney in 2007 . DT NN VBD JJ VBN IN NNP IN CD . A deadly winter storm that swept across the United States this week has left more than people 50 dead and has destroyed nearly $ 1 billion worth of California 's produce industry . DT JJ NN NN WDT VBD IN DT NNP NNPS DT NN VBZ VBN JJR IN NNS CD JJ CC VBZ VBN RB $ CD CD NN IN NNP POS NN NN . The harsh winter mix of snow , sleet and freezing rain has left more than 3,00,000 people without power from the southwestern U.S. state of Texas to the northeastern U.S. state of Maine . DT JJ NN NN IN NN , NN CC VBG NN VBZ VBN JJR IN CD NNS IN NN IN DT JJ NNP NN IN NNP TO DT JJ NNP NN IN NNP . A separate bout of icy weather threatens to decimate California 's citrus crop . DT JJ NN IN NN NN VBZ TO VB NNP POS NN NN . On Tuesday , California Governor Arnold Schwarzenegger declared a state of emergency and asked the federal government for disaster aid . IN NNP , NNP NNP NNP NNP VBD DT NN IN NN CC VBD DT JJ NN IN NN NN . California is the nation 's top producer of fresh citrus fruits , and analysts say they expect some citrus prices to at least double at the wholesale level . NNP VBZ DT NN POS JJ NN IN JJ NN NNS , CC NNS VBP PRP VBP DT NN NNS TO IN JJS RB IN DT JJ NN . Forecasters say the cold temperatures will continue through Thursday , followed by a warming trend across most of the country . NNS VBP DT JJ NNS MD VB IN NNP , VBN IN DT NN NN IN JJS IN DT NN . Reports from central Somalia say fierce fighting between a pro-government militia and Islamist rebels has left at least 24 people dead and dozens others wounded . NNS IN JJ NNP VBP JJ NN IN DT JJ NN CC NN NNS VBZ VBN IN JJS CD NNS JJ CC NNS NNS VBD . Witnesses and officials said Wednesday the fighting a day earlier was the worst seen in months . NNS CC NNS VBD NNP DT VBG DT NN RBR VBD DT JJS VBN IN NNS . Witnesses say the al-Qaida-linked Al Shabab militia , which has been fighting a civil war with the government , attacked the towns of Dhusamareb and Marergur . NNS VBP DT JJ NNP NNP NN , WDT VBZ VBN VBG DT JJ NN IN DT NN , VBD DT NNS IN NNP CC NNP . The area has been under the control of the pro-government militia Ahlu Sunna Waljama . DT NN VBZ VBN IN DT NN IN DT JJ NN NNP NNP NNP . The witnesses said residents fled the fighting and bodies were strewn across the villages . DT NNS VBD NNS VBD DT NN CC NNS VBD VBN IN DT NNS . Somalia 's fragile central government controls only a few small parts of the capital , Mogadishu , with the help of African Union peacekeepers . NNP POS JJ JJ NN VBZ RB DT JJ JJ NNS IN DT NN , NNP , IN DT NN IN NNP NNP NNS . The rest of the city is controlled by the al-Shabab and fellow Islamist militant group Hizbul Islam . DT NN IN DT NN VBZ VBN IN DT JJ CC JJ NNP JJ NN NNP NNP . The two groups also control much of central and southern Somalia . DT CD NNS RB VBP NN IN JJ CC JJ NNP . Venezuelan President Hugo Chavez has promoted a diplomat who was thrown out of the United States in retaliation for Venezuela 's expulsion of a U.S. official accused of spying . JJ NNP NNP NNP VBZ VBN DT NN WP VBD VBN IN IN DT NNP NNPS IN NN IN NNP POS NN IN DT NNP NN VBN IN VBG . President Chavez told reporters Friday in Caracas that Jeny Figueredo Frias has been named deputy foreign minister for Europe . NNP NNP VBD NNS NNP IN NNP IN NNP NNP NNP VBZ VBN VBN JJ JJ NN IN NNP . The president was quoted by Reuters as saying the move is in recognition of Figueredo 's work and what she means for Venezuela . DT NN VBD VBN IN NNP IN VBG DT NN VBZ IN NN IN NNP POS NN CC WP PRP VBZ IN NNP . Figueredo served as chief of staff to the Venezuelan ambassador in Washington when she was ordered to leave the United States . NNP VBD IN NN IN NN TO DT JJ NN IN NNP WRB PRP VBD VBN TO VB DT NNP NNPS . She was not accused of wrongdoing , but State Department spokesman Sean McCormack said the U.S. had been ' forced to respond . ' PRP VBD RB VBN IN NN , CC NNP NNP NN NNP NNP VBD DT NNP VBD VBN `` VBN TO VB . `` Figueredo was ordered out after Venezuela expelled naval Captain John Correa for spying . NNP VBD VBN RP IN NNP VBD JJ NNP NNP NNP IN VBG . The State Department says none of the military attaches at the U.S. Embassy in Caracas has been involved in any inappropriate activity . DT NNP NNP VBZ NN IN DT JJ NNS IN DT NNP NNP IN NNP VBZ VBN VBN IN DT JJ NN . A South African judge is expected to hand down the verdict Monday in a high-profile rape trial involving former deputy president Jacob Zuma . DT JJ JJ NN VBZ VBN TO VB RP DT NN NNP IN DT JJ NN NN VBG JJ NN NN NNP NNP . Zuma is accused of raping a 31-year-old , HIV-positive woman who is a longtime family friend . NNP VBZ VBN IN VBG DT JJ , JJ NN WP VBZ DT JJ NN NN . He claims the sex was consensual . PRP VBZ DT NN VBD JJ . The trial has drawn widespread interest across South Africa , focusing attention on the country 's high incidence of rape and HIV infection . DT NN VBZ VBN JJ NN IN NNP NNP , VBG NN IN DT NN POS JJ NN IN NN CC NN NN . Monday 's verdict is scheduled to be broadcast live on television . NNP POS NN VBZ VBN TO VB VBN RB IN NN . Sunday , the 64-year-old Zuma attended a fundraising concert in the Johannesburg suburb of Soweto , where he thanked thousands of audience members for their support . NNP , DT JJ NNP VBD DT VBG NN IN DT NNP NN IN NNP , WRB PRP VBD NNS IN NN NNS IN PRP$ NN . The proceeds from the concert went to his legal fund . DT NNS IN DT NN VBD TO PRP$ JJ NN . Zuma was once considered a strong contender to succeed President Thabo Mbeki , who fired him because of corruption-related accusations last year . NNP VBD RB VBN DT JJ NN TO VB NNP NNP NNP , WP VBD PRP IN IN JJ NNS JJ NN . Zuma is due to stand trial on corruption charges in July . NNP VBZ JJ TO VB NN IN NN NNS IN NNP . Taleban militants have attacked a convoy in southern Afghanistan , killing up to 13 Afghan guards and wounding others who worked for a private security firm . NNP NNS VBP VBN DT NN IN JJ NNP , VBG RP TO CD JJ NNS CC VBG NNS WP VBD IN DT JJ NN NN . Officials said Monday that the convoy was attacked late Sunday on the road from the capital , Kabul , to Kandahar . NNS VBD NNP IN DT NN VBD VBN JJ NNP IN DT NN IN DT NN , NNP , TO NNP . That is the same road where a group of 23 South Korean Christian evangelicals was abducted on July 19 and where two Germans were kidnapped in a separate incident . DT VBZ DT JJ NN WRB DT NN IN CD JJ JJ JJ NNS VBD VBN IN NNP CD CC WRB CD NNS VBD VBN IN DT JJ NN . Sunday 's attack led to a long gun battle with insurgents that resulted in the death of five Taleban militants . NNP POS NN VBD TO DT JJ NN NN IN NNS WDT VBD IN DT NN IN CD NNP NNS . The International Atomic Energy Agency says Iran has obtained instructions from international smugglers for making nuclear weapons components . DT NNP NNP NNP NNP VBZ NNP VBZ VBN NNS IN JJ NNS IN VBG JJ NNS NNS . The IAEA accusation is included in a report for presentation to the 35-nation IAEA board Thursday in Vienna . DT NNP NN VBZ VBN IN DT NN IN NN TO DT JJ NNP NN NNP IN NNP . The report , obtained by Western journalists , also confirms that Tehran has begun renovation work at a key nuclear plant , but has not yet begun actual uranium enrichment work . DT NN , VBN IN JJ NNS , RB VBZ IN NNP VBZ VBN NN NN IN DT JJ JJ NN , CC VBZ RB RB VBN JJ NN NN NN . European and U.S. officials accuse Iran of seeking high-grade enriched uranium to make an atomic bomb , but Tehran insists it is seeking a lower grade to make electricity . JJ CC NNP NNS VBP NNP IN VBG JJ VBN NN TO VB DT JJ NN , CC NNP VBZ PRP VBZ VBG DT JJR NN TO VB NN . Tuesday , Britain , the United States , China , Russia and France said the IAEA should refer Iran to the United Nations Security Council for allegedly violating a key nuclear treaty with its atomic program . NNP , NNP , DT NNP NNPS , NNP , NNP CC NNP VBD DT NNP MD VB NNP TO DT NNP NNP NNP NNP IN RB VBG DT JJ JJ NN IN PRP$ JJ NN . However , Iran 's Foreign Minister said U.N. inspectors will be barred from its nuclear facilities starting Saturday if a referral is made . RB , NNP POS NNP NNP VBD NNP NNS MD VB VBN IN PRP$ JJ NNS VBG NNP IN DT NN VBZ VBN . German Chancellor Gerhard Schroeder is traveling to the United States for a meeting with President Bush on Monday . JJ NNP NNP NNP VBZ VBG TO DT NNP NNPS IN DT NN IN NNP NNP IN NNP . The two leaders are expected to discuss Iran 's nuclear program and reform of the United Nations . DT CD NNS VBP VBN TO VB NNP POS JJ NN CC NN IN DT NNP NNPS . A White House spokesman says they also intend to focus on how the U.S. and Europe can work together to resolve a broad agenda of global issues . DT NNP NNP NN VBZ PRP RB VBP TO VB IN WRB DT NNP CC NNP MD VB RB TO VB DT JJ NN IN JJ NNS . After his visit with the president , Mr. Schroeder is scheduled to speak to the U.S. Chamber of Commerce and to meet with members of Congress . IN PRP$ NN IN DT NN , NNP NNP VBZ VBN TO VB TO DT NNP NNP IN NNP CC TO VB IN NNS IN NNP . Mr. Schroeder was a strong critic of the U.S.-led war in Iraq , but tensions between the two countries eased somewhat after a meeting between President Bush and the Chancellor in the German city of Mainz in February . NNP NNP VBD DT JJ NN IN DT JJ NN IN NNP , CC NNS IN DT CD NNS VBD RB IN DT NN IN NNP NNP CC DT NNP IN DT JJ NN IN NNP IN NNP . Oshkosh Truck Corp. , Oshkosh , Wis. , estimated earnings for its fourth quarter ended Sept. 30 fell 50 % to 75 % below the year-earlier $ 4.5 million , or 51 cents a share . NNP NNP NNP , NNP , NNP , VBN NNS IN PRP$ JJ NN VBN NNP CD VBD CD NN TO CD NN IN DT JJ $ CD CD , CC CD NNS DT NN . The truck maker said the significant drop in net income will result in lower earnings for the fiscal year . DT NN NN VBD DT JJ NN IN JJ NN MD VB IN JJR NNS IN DT JJ NN . In fiscal 1988 , the company earned $ 17.3 million , or $ 1.92 a share , on revenue of $ 352.9 million . IN JJ CD , DT NN VBD $ CD CD , CC $ CD DT NN , IN NN IN $ CD CD . Oshkosh Truck attributed the downturn in its earnings to higher start-up costs of its new chassis division , a softer motor-home market and higher administrative costs of compliance with government contractor regulations . NNP NNP VBD DT NN IN PRP$ NNS TO JJR JJ NNS IN PRP$ JJ NN NN , DT JJR NN NN CC JJR JJ NNS IN NN IN NN NN NNS . The company said it is in the process of phasing out John Deere , its current source of production for midsized motor home chassis . DT NN VBD PRP VBZ IN DT NN IN VBG RP NNP NNP , PRP$ JJ NN IN NN IN JJ NN NN NN . In anticipation of the start-up of its new factory , the company said a larger-than-normal chassis supply has been built to carry it through the transition period . IN NN IN DT NN IN PRP$ JJ NN , DT NN VBD DT JJ NN NN VBZ VBN VBN TO VB PRP IN DT NN NN . The inhabitants of the area of Oman have long prospered on Indian Ocean trade . DT NNS IN DT NN IN NNP VBP JJ VBN IN NNP NNP NN . In the late 18th century , a newly established sultanate in Muscat signed the first in a series of friendship treaties with Britain . IN DT JJ JJ NN , DT RB VBN NN IN NNP VBD DT NN IN DT NN IN NN NNS IN NNP . Over time , Oman 's dependence on British political and military advisors increased , but it never became a British colony . IN NN , NNP POS NN IN JJ JJ CC JJ NNS VBD , CC PRP RB VBD DT JJ NN . In 1970 , QABOOS bin Said Al-Said overthrew the restrictive rule of his father ; he has ruled as sultan ever since . IN CD , NNP NNP NNP NNP VBD DT JJ NN IN PRP$ NN ; PRP VBZ VBN IN NN RB IN . His extensive modernization program has opened the country to the outside world while preserving the longstanding close ties with the UK . PRP$ JJ NN NN VBZ VBN DT NN TO DT JJ NN IN VBG DT JJ JJ NNS IN DT NNP . Oman 's moderate , independent foreign policy has sought to maintain good relations with all Middle Eastern countries . NNP POS JJ , JJ JJ NN VBZ VBN TO VB JJ NNS IN DT NNP NNP NNS . Inspired by the popular uprisings that swept the Middle East and North Africa in 2010 - 11 , Omanis began staging marches and demonstrations - a small number of which turned violent in clashes with government security forces - to demand economic benefits , an end to corruption , and greater political rights . VBN IN DT JJ NNS WDT VBD DT NNP NNP CC NNP NNP IN CD IN CD , NNP VBD VBG NNS CC NNS LRB DT JJ NN IN WDT VBD JJ IN NNS IN NN NN NNS RRB TO VB JJ NNS , DT NN TO NN , CC JJR JJ NNS . In February and March 2011 , in response to protester demands , QABOOS reshuffled his cabinet , pledged to create more government jobs , and promised to implement economic and political reforms , such as granting legislative and regulatory powers to the Council of Oman . IN NNP CC NNP CD , IN NN TO VB NNS , NNP VBD PRP$ NN , VBD TO VB JJR NN NNS , CC VBD TO VB JJ CC JJ NNS , JJ IN VBG JJ CC JJ NNS TO DT NNP IN NNP . Following World War I , France acquired a mandate over the northern portion of the former Ottoman Empire province of Syria . VBG NNP NNP NNP , NNP VBD DT NN IN DT JJ NN IN DT JJ NNP NNP NN IN NNP . The French administered the area as Syria until granting it independence in 1946 . DT NNS VBD DT NN IN NNP IN VBG PRP NN IN CD . The new country lacked political stability , however , and experienced a series of military coups during its first decades . DT JJ NN VBD JJ NN , RB , CC VBD DT NN IN JJ NNS IN PRP$ JJ NNS . Syria united with Egypt in February 1958 to form the United Arab Republic . NNP VBD IN NNP IN NNP CD TO VB DT NNP NNP NNP . In September 1961 , the two entities separated , and the Syrian Arab Republic was reestablished . IN NNP CD , DT CD NNS VBD , CC DT JJ NNP NNP VBD VBN . In November 1970 , Hafiz al-ASAD , a member of the Socialist Ba'th Party and the minority Alawite sect , seized power in a bloodless coup and brought political stability to the country . IN NNP CD , NNP NNP , DT NN IN DT NNP NNP NNP CC DT NN NNP NN , VBD NN IN DT JJ NN CC VBD JJ NN TO DT NN . In the 1967 Arab-Israeli War , Syria lost the Golan Heights to Israel . IN DT CD NNP NNP , NNP VBD DT NNP NNPS TO NNP . During the 1990s , Syria and Israel held occasional peace talks over its return . IN DT NNS , NNP CC NNP VBD JJ NN NNS IN PRP$ NN . Following the death of President al-ASAD , his son , Bashar al-ASAD , was approved as president by popular referendum in July 2000 . VBG DT NN IN NNP NNP , PRP$ NN , NNP NNP , VBD VBN IN NN IN JJ NN IN NNP CD . Syrian troops - stationed in Lebanon since 1976 in an ostensible peacekeeping role - were withdrawn in April 2005 . JJ NNS IN VBN IN NNP IN CD IN DT JJ NN NN : VBD VBN IN NNP CD . During the July-August 2006 conflict between Israel and Hizballah , Syria placed its military forces on alert but did not intervene directly on behalf of its ally Hizballah . IN DT NNP CD NN IN NNP CC NNP , NNP VBD PRP$ JJ NNS IN NN CC VBD RB VB RB IN NN IN PRP$ NN NNP . In May 2007 Bashar al-ASAD was elected to his second term as president . IN NNP CD NNP NNP VBD VBN TO PRP$ JJ NN IN NN . Influenced by major uprisings that began elsewhere in the region , antigovernment protests broke out in the southern province of Da'ra in March 2011 and spread to other Syrian cities . VBN IN JJ NNS WDT VBD RB IN DT NN , NN NNS VBD RP IN DT JJ NN IN NNP IN NNP CD CC VBN TO JJ JJ NNS . Protesters called for the repeal of the restrictive Emergency Law allowing arrests without charge , the legalization of political parties , and the removal of corrupt local officials . NNS VBD IN DT NN IN DT JJ NNP NNP VBG NNS IN NN , DT NN IN JJ NNS , CC DT NN IN JJ JJ NNS . The government responded with a mix of force and concessions , including the repeal of the Emergency Law , but as of mid-April 2011 had not succeeded in quelling protests . DT NN VBD IN DT NN IN NN CC NNS , VBG DT NN IN DT NNP NNP , CC IN IN NNP CD VBD RB VBN IN VBG NNS . Singapore has a highly developed and successful free-market economy . NNP VBZ DT RB VBN CC JJ JJ NN . It enjoys a remarkably open and corruption-free environment , stable prices , and a per capita GDP higher than that of most developed countries . PRP VBZ DT RB JJ CC JJ NN , JJ NNS , CC DT IN NN NN JJR IN DT IN RBS JJ NNS . The economy depends heavily on exports , particularly in consumer electronics , information technology products , pharmaceuticals , and on a growing financial services sector . DT NN VBZ RB IN NNS , RB IN NN NNS , NN NN NNS , NNS , CC IN DT VBG JJ NNS NN . Real GDP growth averaged 7.1 % between 2004 and 2007 . JJ NN NN VBD CD NN IN CD CC CD . The economy contracted 1.3 % in 2009 as a result of the global financial crisis , but rebounded nearly 14.7 % in 2010 , on the strength of renewed exports . DT NN VBD CD NN IN CD IN DT NN IN DT JJ JJ NN , CC VBD RB CD NN IN CD , IN DT NN IN VBN NNS . Over the longer term , the government hopes to establish a new growth path that focuses on raising productivity , which has sunk to 1 % growth per year in the last decade . IN DT JJR NN , DT NN VBZ TO VB DT JJ NN NN WDT VBZ IN VBG NN , WDT VBZ VBN TO CD NN NN IN NN IN DT JJ NN . Singapore has attracted major investments in pharmaceuticals and medical technology production and will continue efforts to establish Singapore as Southeast Asia 's financial and high-tech hub . NNP VBZ VBN JJ NNS IN NNS CC JJ NN NN CC MD VB NNS TO VB NNP IN NNP NNP POS JJ CC JJ NN . The Atlantic Ocean provides some of the world 's most heavily trafficked sea routes , between and within the Eastern and Western Hemispheres . DT NNP NNP VBZ DT IN DT NN POS RBS RB VBN NN NNS , IN CC IN DT NNP CC NNP NNP . Other economic activity includes the exploitation of natural resources , e.g. , fishing , dredging of aragonite sands ( The Bahamas ) , and production of crude oil and natural gas ( Caribbean Sea , Gulf of Mexico , and North Sea ) . JJ JJ NN VBZ DT NN IN JJ NNS , IN , NN , VBG IN JJ NNS LRB DT NNPS RRB , CC NN IN JJ NN CC JJ NN LRB NNP NNP , NNP IN NNP , CC NNP NNP RRB . THE Warden of a Penitentiary was one day putting locks on the doors of all the cells when a mechanic said to him : DT NN IN DT NN VBD CD NN VBG NNS IN DT NNS IN PDT DT NNS WRB DT NN VBD TO PRP : ' Those locks can all be opened from the inside - you are very imprudent . ' `` DT NNS MD RB VB VBN IN DT NN IN PRP VBP RB JJ . `` The Warden did not look up from his work , but said : DT NN VBD RB VB RB IN PRP$ NN , CC VBD : ' If that is called imprudence , I wonder what would be called a thoughtful provision against the vicissitudes of fortune . ' `` IN DT VBZ VBN NN , PRP VBP WP MD VB VBN DT JJ NN IN DT NNS IN NN . `` A Dog looking out for its afternoon nap jumped into the Manger of an Ox and lay there cosily upon the straw . DT NNP VBG RP IN PRP$ NN NN VBD IN DT NNP IN DT NNP CC VBD EX RB IN DT NN . But soon the Ox , returning from its afternoon work , came up to the Manger and wanted to eat some of the straw . CC RB DT NNP , VBG IN PRP$ NN NN , VBD RP TO DT NNP CC VBD TO VB DT IN DT NN . The Dog in a rage , being awakened from its slumber , stood up and barked at the Ox , and whenever it came near attempted to bite it . DT NNP IN DT NN , VBG VBN IN PRP$ NN , VBD RP CC VBN IN DT NNP , CC WRB PRP VBD RB VBN TO VB PRP . At last the Ox had to give up the hope of getting at the straw , and went away muttering : IN JJ DT NNP VBD TO VB RP DT NN IN VBG IN DT NN , CC VBD RB VBG : ' Ah , people often grudge others what they can not enjoy themselves . ' `` UH , NNS RB VBP NNS WP PRP MD RB VB PRP . `` The New York Times , among other papers , recently published a new Hubble photograph of distant galaxies colliding . DT NNP NNP NNP , IN JJ NNS , RB VBD DT JJ JJ NN IN JJ NNS VBG . Of course , astronomers have had pictures of colliding galaxies for quite some time now , but with the vastly improved resolution provided by the Hubble Space Telescope , you can actually see the lawyers rushing to the scene . IN NN , NNS VBP VBN NNS IN VBG NNS IN RB DT NN RB , CC IN DT RB VBN NN VBN IN DT NNP NNP NNP , PRP MD RB VB DT NNS VBG TO DT NN . Most elementary school children will be able to tell you that the first American flag was made by Betsy Ross . JJS JJ NN NNS MD VB JJ TO VB PRP IN DT JJ JJ NN VBD VBN IN NNP NNP . What they are not taught was that she was also a social scientist who developed the techniques now used by Gallop and others . WP PRP VBP RB VBN VBD IN PRP VBD RB DT JJ NN WP VBD DT NNS RB VBN IN NNP CC NNS . It started when she asked a group of colonists what they thought of the flag she had made . PRP VBD WRB PRP VBD DT NN IN NNS WP PRP VBD IN DT NN PRP VBD VBN . This was the origin of ... the flag poll . DT VBD DT NN IN : DT NN NN . Members of Aung San Suu Kyi 's opposition democracy party in Burma have sent a letter to the country 's military leaders asking for permission to meet with the detained Nobel laureate . NNS IN NNP NNP NNP NNP POS NN NN NN IN NNP VBP VBN DT NN TO DT NN POS JJ NNS VBG IN NN TO VB IN DT VBN NNP NN . National League for Democracy party chairman Aung Shwe told reporters Saturday that it has been three years since Aung San Suu Kyi 's party members met with her . NNP NNP IN NNP NN NN NNP NNP VBD NNS NNP IN PRP VBZ VBN CD NNS IN NNP NNP NNP NNP POS NN NNS VBD IN PRP . Aung Shwe said party members want to meet her to discuss appealing her detention , which was extended for another year late last month . NNP NNP VBD NN NNS VBP TO VB PRP TO VB VBG PRP$ NN , WDT VBD VBN IN DT NN RB JJ NN . Aung San Suu Kyi has spent most of the past 18 years under detention or house arrest . NNP NNP NNP NNP VBZ VBN JJS IN DT JJ CD NNS IN NN CC NN NN . Her National League for Democracy won free elections in 1990 , but the military-led government has never recognized the results of the election . PRP$ NNP NNP IN NNP VBD JJ NNS IN CD , CC DT JJ NN VBZ RB VBN DT NNS IN DT NN . African Union foreign ministers have developed a plan that would give the continent two permanent seats on the United Nations Security Council . NNP NNP JJ NNS VBP VBN DT NN WDT MD VB DT NN CD JJ NNS IN DT NNP NNP NNP NNP . The ministers decided on the plan Saturday during a meeting in the Libyan resort city of Sirte . DT NNS VBD IN DT NN NNP IN DT NN IN DT JJ NN NN IN NNP . In addition to the permanent seats , Africa wants three non-permanent members on the council . IN NN TO DT JJ NNS , NNP VBZ CD JJ NNS IN DT NN . The proposal approved by the AU ministers goes farther than a plan circulated by the so-called Group of Four nations of Brazil , Germany , India and Japan . DT NN VBN IN DT NNP NNS VBZ RB IN DT NN VBN IN DT JJ NNP IN CD NNS IN NNP , NNP , NNP CC NNP . That plan would give Africa just two non-permanent seats on the council . DT NN MD VB NNP RB CD JJ NNS IN DT NN . The 15-member U.N. body currently has five permanent members - a status that includes veto power for the United States , Britain , France , Russia and China . DT JJ NNP NN RB VBZ CD JJ NNS IN DT NN WDT VBZ NN NN IN DT NNP NNPS , NNP , NNP , NNP CC NNP . The AU ministers ' meeting was held in advance of the African Union summit Monday and Tuesday in Sirte . DT NNP NNS POS NN VBD VBN IN NN IN DT NNP NNP NN NNP CC NNP IN NNP . Japanese Prime Minister Junichiro Koizumi says he will push ahead with plans to privatize Japan 's postal service , despite growing resistance from some members of his ruling party . JJ NNP NNP NNP NNP VBZ PRP MD VB RB IN NNS TO VB NNP POS JJ NN , IN VBG NN IN DT NNS IN PRP$ VBG NN . With more than $ 3 trillion in deposits and insurance assets , Japan Post is the world 's biggest bank , and its privatization is the main pillar of the prime minister 's controversial economic reform program . IN JJR IN $ CD CD IN NNS CC NN NNS , NNP NNP VBZ DT NN POS JJS NN , CC PRP$ NN VBZ DT JJ NN IN DT JJ NN POS JJ JJ NN NN . As a new session of Parliament opened Friday , Mr. Koizumi told the lawmakers he intends to split the postal service 's mail delivery , insurance and savings systems into four separate businesses . IN DT JJ NN IN NNP VBD NNP , NNP NNP VBD DT NNS PRP VBZ TO VB DT JJ NN POS NN NN , NN CC NNS NNS IN CD JJ NNS . Many conservative lawmakers in the ruling Liberal Democratic Party oppose privatization , in part because this could lead to closure of small post offices in rural areas , a traditional stronghold of the party . JJ JJ NNS IN DT NN NNP NNP NNP VBP NN , IN NN IN DT MD VB TO NN IN JJ NN NNS IN JJ NNS , DT JJ NN IN DT NN . A Turkish court trying an Islamist militant accused of treason has adjourned until April . DT JJ NN VBG DT NN NN VBN IN NN VBZ VBN IN NNP . Metin Kaplan , also known as the ' Caliph of Cologne , ' faces charges of trying to overthrow Turkey 's constitutional order . NNP NNP , RB VBN IN DT `` NNP IN NNP , `` VBZ NNS IN VBG TO VB NNP POS JJ NN . He is accused of activities that include allegedly plotting to crash an airplane into the mausoleum of the founder of secular Turkey , Kemal Ataturk . PRP VBZ VBN IN NNS WDT VBP RB VBG TO VB DT NN IN DT NN IN DT NN IN JJ NNP , NNP NNP . During Monday 's start of his trial , the accused said he opposes terrorism and was not involved in any terrorist activity . IN NNP POS NN IN PRP$ NN , DT VBN VBD PRP VBZ NN CC VBD RB VBN IN DT JJ NN . Metin Kaplan was extradited from Germany in October , where he had served a prison sentence for inciting his followers to murder a rival . NNP NNP VBD VBN IN NNP IN NNP , WRB PRP VBD VBN DT NN NN IN VBG PRP$ NNS TO NN DT NN . His group ' Caliphate State ' lobbies for the creation of an Islamic government and is banned in Germany . PRP$ NN `` NNP NNP `` NNS IN DT NN IN DT JJ NN CC VBZ VBN IN NNP . Iran has confirmed that authorities recently arrested two Iranian journalists on charges of spreading propaganda against the government . NNP VBZ VBN IN NNS RB VBN CD JJ NNS IN NNS IN VBG NN IN DT NN . An Iranian justice spokesman , Alireza Jamshidi said Wednesday that journalists Soheil Asefi and Farshad Ghorbanpour are under investigation for publishing what he calls ' lies ' and giving information to foreign news Web sites . DT JJ NN NN , NNP NNP VBD NNP IN NNS NNP NNP CC NNP NNP VBP IN NN IN VBG WP PRP VBZ `` NNS `` CC VBG NN TO JJ NN NNP NNS . The media rights group Reporters Without Borders has called for the release of the two journalists . DT NNS NNS NN NNP NNP NNP VBZ VBN IN DT NN IN DT CD NNS . It said authorities arrested Ghorbanpour on July 31 and Asefi on August 4 . PRP VBD NNS VBN NNP IN NNP CD CC NNP IN NNP CD . The Iranian spokesman says authorities are considering granting Ghorbanpour a lower bail after it was initially set at $ 1,60,000 . DT JJ NN VBZ NNS VBP VBG VBG NNP DT JJR NN IN PRP VBD RB VBN IN $ CD . The Iranian official provided no information about a third journalist , Masood Bastani , who Reporters Without Borders said also was detained last month . DT JJ NN VBD DT NN IN DT JJ NN , NNP NNP , WP VBZ IN NNS VBD RB VBD VBN JJ NN . Reporters Without Borders says 11 journalists and cyber-dissidents are being held in Iran , which it describes as the region 's biggest media prison . NNP NNP NNP VBZ CD NNS CC NNS VBP VBG VBN IN NNP , WDT PRP VBZ IN DT NN POS JJS NNS NN . A Philippine court has sentenced to death seven members of the Abu Sayyaf terrorist group for an attack four years ago that killed 10 farm workers . DT JJ NN VBZ VBN TO NN CD NNS IN DT NNP NNP JJ NN IN DT NN CD NNS IN IN VBD CD NN NNS . Dozens of soldiers and police guarded the courthouse on the southern island of Basilan , as the verdict was read to six of the convicted men Wednesday . NNS IN NNS CC NNS VBD DT NN IN DT JJ NN IN NNP , IN DT NN VBD VBN TO CD IN DT VBN NNS NNP . A seventh man is still at large . DT JJ NN VBZ RB IN JJ . Officials say the attackers were disguised as soldiers when they abducted the farm workers in August of 2001 . NNS VBP DT NNS VBD VBN IN NNS WRB PRP VBD DT NN NNS IN NNP IN CD . They beheaded nine of them and shot another before some of the hostages escaped . PRP VBD CD IN PRP CC VBD DT IN DT IN DT NNS VBD . Abu Sayyaf militants have fought for decades to establish an Islamic state in the southern Philippines . NNP NNP NNS VBP VBN IN NNS TO VB DT JJ NN IN DT JJ NNP . The United States has formally declared it a terrorist group . DT NNP NNPS VBZ RB VBN PRP DT JJ NN . Mauritanian officials say unknown gunmen have killed at least three government soldiers in an attack on a military post . JJ NNS VBP JJ NNS VBP VBN IN JJS CD NN NNS IN DT NN IN DT JJ NN . News media have quoted officials who asked not to be named as saying the attack took place Thursday in the northeastern region , near the town of Ghalawiya , close to the Mauritanian-Algerian border . NNP NNS VBP VBN NNS WP VBD RB TO VB VBN IN VBG DT NN VBD NN NNP IN DT JJ NN , IN DT NN IN NNP , RB TO DT JJ NN . The attack follows the assassination of four French tourists on Monday in eastern Mauritania . DT NN VBZ DT NN IN CD JJ NNS IN NNP IN JJ NNP . The government has blamed an al-Qaida sleeper cell for the killings . DT NN VBZ VBN DT NNP NN NN IN DT NNS . A newspaper editor Isselmou Ould Moustapha in Mauritania 's capital , Nouakchott , told VOA it is believed that the same group attacked the military post Thursday . DT NN NN NNP NNP NNP IN NNP POS NN , NNP , VBD NNP PRP VBZ VBN IN DT JJ NN VBD DT JJ NN NNP . In 2005 , Islamic militants killed at least 15 government troops in a June attack on a military post near the border with Mali . IN CD , NNP NNS VBD IN JJS CD NN NNS IN DT NNP NN IN DT JJ NN IN DT NN IN NNP . Palestinian security forces in the Gaza Strip have destroyed three illegally-built homes of senior Palestinian officers - as part of what the Palestinian Authority says is a new anti-corruption campaign . JJ NN NNS IN DT NNP NNP VBP VBN CD JJ NNS IN JJ JJ NNS IN IN NN IN WP DT JJ NNP VBZ VBZ DT JJ JJ NN . A spokesman for the Palestinian Interior Ministry says bulldozers destroyed the homes built on illegally seized public land . DT NN IN DT JJ NNP NNP VBZ NNS VBD DT NNS VBN IN RB VBN JJ NN . He said the violators were informed ahead of Monday 's action , and that the buildings were not occupied . PRP VBD DT NNS VBD VBN RB IN NNP POS NN , CC IN DT NNS VBD RB JJ . Palestinian leader Mahmoud Abbas , who succeeded the late Yasser Arafat in January , has been under pressure to end growing chaos in the Gaza Strip and West Bank , and to root out corruption among senior Palestinian officials and commanders of security forces . JJ NN NNP NNP , WP VBD DT JJ NNP NNP IN NNP , VBZ VBN IN NN TO VB VBG NN IN DT NNP NNP CC NNP NNP , CC TO VB RP NN IN JJ JJ NNS CC NNS IN NN NNS . Brazilian President Luiz Inacio Lula da Silva says he plans to work for democracy in Cuba and against the U.S. economic embargo on the communist-run island . JJ NNP NNP NNP NNP NNP NNP VBZ PRP VBZ TO VB IN NN IN NNP CC IN DT NNP JJ NN IN DT JJ NN . President da Silva made the comment following a meeting in Rome with Cuban National Assembly speaker Ricardo Alarcon . NNP NNP NNP VBD DT NN VBG DT NN IN NNP IN JJ NNP NNP NN NNP NNP . The two officials met at Brazil 's embassy in Rome Friday after attending the funeral of Pope John Paul II . DT CD NNS VBD IN NNP POS NN IN NNP NNP IN VBG DT NN IN NNP NNP NNP NNP . Mr. da Silva said his country must help in the fight against the U.S. economic embargo , saying that Brazil has a chance to help restore normal relations for Cuba . NNP NNP NNP VBD PRP$ NN MD VB IN DT NN IN DT NNP JJ NN , VBG IN NNP VBZ DT NN TO VB VB JJ NNS IN NNP . Washington has consistently defended the four-decade-long embargo against Cuba , saying it is a necessary part of the strategy to liberate the island from Fidel Castro . NNP VBZ RB VBN DT JJ NN IN NNP , VBG PRP VBZ DT JJ NN IN DT NN TO VB DT NN IN NNP NNP . A snow storm that has swept across the central U.S. and upper midwest is blamed for at least 11 deaths . DT NN NN WDT VBZ VBN IN DT JJ NNP CC JJ NN VBZ VBN IN IN JJS CD NNS . Heavy snow , ice and fog Saturday and Sunday caused deadly road accidents and power outages . NNP NN , NN CC NN NNP CC NNP VBD JJ NN NNS CC NN NNS . The storm also grounded flights for Christmas holiday travelers . DT NN RB VBD NNS IN NNP NN NNS . The winter weather forced about 300 cancellations at Chicago 's busy O'Hare International Airport . DT NN NN VBD IN CD NNS IN NNP POS JJ NNP NNP NNP . The National Weather Service on Sunday issued winter storm warnings for parts of the Great Lakes region bordering Canada , with snow and powerful winds in the states of Minnesota , Wisconsin and Michigan . DT NNP NNP NNP IN NNP VBD NN NN NNS IN NNS IN DT NNP NNP NN VBG NNP , IN NN CC JJ NNS IN DT NNS IN NNP , NNP CC NNP . While precipitation was the most visible effect of the severe weather , bitter cold in some areas including the northern Plains where homes are still without power was more dangerous , with temperatures plunging below minus 17 degrees Celsius . IN NN VBD DT RBS JJ NN IN DT JJ NN , JJ NN IN DT NNS VBG DT JJ NNS WRB NNS VBP RB IN NN VBD RBR JJ , IN NNS VBG IN NN CD NNS NNP . Weather forecasters say the bulk of the storms have moved to the east coast , where precipitation is falling mostly as rain . NNP NNS VBP DT NN IN DT NNS VBP VBN TO DT JJ NN , WRB NN VBZ VBG RB IN NN . Afghan officials say ballot counting in last month 's legislative elections has been completed and authorities now are auditing the results and investigating reports of vote fraud . JJ NNS VBP NN NN IN JJ NN POS JJ NNS VBZ VBN VBN CC NNS RB VBP VBG DT NNS CC VBG NNS IN NN NN . Spokesman for the joint U.N.-Afghan election commission , Aleem Siddique says the physical count is complete with the exception of those materials that are subject to audit . NNP IN DT JJ JJ NN NN , NNP NNP VBZ DT JJ NN VBZ JJ IN DT NN IN DT NNS WDT VBP JJ TO NN . Officials say the unofficial results show that warlords and opponents of President Hamid Karzai have fared relatively well , and women lawmakers could hold the balance of power in the new national assembly . NNS VBP DT JJ NNS VBP IN NNS CC NNS IN NNP NNP NNP VBP VBN RB RB , CC NNS NNS MD VB DT NN IN NN IN DT JJ JJ NN . Final results from the September 18 vote , which also chose provincial councils , are due by October 22 , after complaints are resolved . JJ NNS IN DT NNP CD NN , WDT RB VBD JJ NNS , VBP JJ IN NNP CD , IN NNS VBP VBN . Suspected Taleban insurgents , who failed to stop more than six million people from voting , resumed their attacks this week . VBN NNP NNS , WP VBD TO VB JJR IN CD CD NNS IN NN , VBD PRP$ NNS DT NN . A bomb blast near the Pakistani border Tuesday killed three people . DT NN NN IN DT JJ NN NNP VBD CD NNS . The Russian foreign ministry says it will not renew the credentials of the American television network ABC after it aired an interview with a wanted Chechen rebel leader . DT JJ JJ NN VBZ PRP MD RB VB DT NNS IN DT JJ NN NN NNP IN PRP VBD DT NN IN DT JJ NN NN NN . The ministry Tuesday said Russian state agencies will now consider the network unwelcome after last week 's broadcast featuring Shamil Basayev , who has taken responsibility for numerous terrorist attacks in Russia . DT NN NNP VBD JJ NN NNS MD RB VB DT NN JJ IN JJ NN POS NN VBG NNP NNP , WP VBZ VBN NN IN JJ JJ NNS IN NNP . The ministry said the broadcast supported the propaganda of terrorism and made direct threats against Russian citizens . DT NN VBD DT NN VBD DT NN IN NN CC VBD JJ NNS IN JJ NNS . Moscow protested the interview to U.S. officials . NNP VBD DT NN TO NNP NNS . A U.S. State Department official said Washington considers Mr. Basayev a terrorist - but ABC had the constitutional right to broadcast the piece . DT NNP NNP NNP NN VBD NNP VBZ NNP NNP DT JJ : CC NNP VBD DT JJ NN TO VB DT NN . Mr. Basayev has taken responsibility for last year 's school seizure in the town of Beslan which killed more than 330 people . NNP NNP VBZ VBN NN IN JJ NN POS NN NN IN DT NN IN NNP WDT VBD JJR IN CD NNS . In the interview , he said he was planning more attacks . IN DT NN , PRP VBD PRP VBD VBG JJR NNS . Russian forces and separatists in Chechnya have been at war for most of the past decade . JJ NNS CC NNS IN NNP VBP VBN IN NN IN JJS IN DT JJ NN . Ecuadorean officials say troops have been sent to reinforce security at oil wells in a move to crush protests that have paralyzed oil exports . JJ NNS VBP NNS VBP VBN VBN TO VB NN IN NN NNS IN DT NN TO VB NNS WDT VBP VBN NN NNS . A report from Quito by Reuters says the forces have also taken control of government buildings in two Amazon provinces to stop the protests . DT NN IN NNP IN NNP VBZ DT NNS VBP RB VBN NN IN NN NNS IN CD NNP NNS TO VB DT NNS . Earlier , security forces fired tear gas to disperse protesters in the province of Sucumbios , forcing the state-owned oil company , Petroecuador to suspend production and exports . RB , NN NNS VBD JJ NN TO VB NNS IN DT NN IN NNS , VBG DT JJ NN NN , NNP TO VB NN CC NNS . Ecuador 's daily oil exports of nearly 1,50,000 barrels each day have been completely stopped . NNP POS JJ NN NNS IN RB CD NNS DT NN VBP VBN RB VBN . Most of the exports go to the United States . JJS IN DT NNS VBP TO DT NNP NNPS . Demonstrators seized 200 oil facilities and airports in the Lago Agrio and El NNS VBD CD NN NNS CC NNS IN DT NNP NNP CC NNP Coca provinces and are demanding new contract negotiations with foreign oil firms , along with increased spending on infrastructure and social programs . NNP NNS CC VBP VBG JJ NN NNS IN JJ NN NNS , IN IN JJ NN IN NN CC JJ NNS . Tuesday is scheduled to be a lucky day for two turkeys designated as the official U.S. national Thanksgiving turkey and its alternate . NNP VBZ VBN TO VB DT JJ NN IN CD NNS VBN IN DT JJ NNP JJ NNP NN CC PRP$ NN . President Bush is scheduled to give the turkeys the traditional Thanksgiving pardon during a ceremony at the White House . NNP NNP VBZ VBN TO VB DT NNS DT JJ NNP NN IN DT NN IN DT NNP NNP . The two turkeys will later be flown to Disneyland in California to be part of the holiday display and will also serve as honorary grand marshals for Disneyland 's Thanksgiving Day parade on Thursday . DT CD NNS MD RB VB VBN TO VB IN NNP TO VB NN IN DT NN NN CC MD RB VB IN JJ JJ NNS IN NNP POS NNP NNP NN IN NNP . They will spend the rest of their lives at a Disneyland ranch . PRP MD VB DT NN IN PRP$ NNS IN DT NNP NN . For the past 15 years , the national Thanksgiving turkey and its alternate have been retired to a farm just outside Washington , D.C. , in Virginia . IN DT JJ CD NNS , DT JJ NNP NN CC PRP$ NN VBP VBN VBN TO DT NN RB IN NNP , NNP , IN NNP . Millions of Americans traditionally enjoy a roasted turkey meal on this Thursday 's Thanksgiving Day holiday . NNS IN NNS RB VBP DT JJ NN NN IN DT NNP POS NNP NNP NN . U.N. Secretary-General Kofi Annan says the situation in Sudan 's Darfur region is deteriorating , and he is calling for a stronger international action to fix the matter . NNP NNP NNP NNP VBZ DT NN IN NNP POS NNP NN VBZ VBG , CC PRP VBZ VBG IN DT JJR JJ NN TO VB DT NN . Writing in Wednesday 's Washington Post newspaper , Mr. Annan says recent events in Darfur have changed his view of the region from hopeful to pessimistic . VBG IN NNP POS NNP NNP NN , NNP NNP VBZ JJ NNS IN NNP VBP VBN PRP$ NN IN DT NN IN JJ TO JJ . He says rebels and Sudanese government forces routinely break a cease-fire , and that many areas are now too dangerous for relief workers to reach . PRP VBZ NNS CC JJ NN NNS RB VBP DT NN , CC IN JJ NNS VBP RB RB JJ IN NN NNS TO VB . He says two million people have been displaced from their homes . PRP VBZ CD CD NNS VBP VBN VBN IN PRP$ NNS . Mr. Annan says African Union troops make a valiant effort to provide security but that there are too few of them to cover the vast region . NNP NNP VBZ NNP NNP NNS VBP DT JJ NN TO VB NN CC IN EX VBP RB JJ IN PRP TO VB DT JJ NN . He calls on U.N. members to increase the size of the peacekeeping force and pressure the combatants to put down their weapons and work towards peace . PRP VBZ IN NNP NNS TO VB DT NN IN DT NN NN CC NN DT NNS TO VB RP PRP$ NNS CC NN IN NN . Russian lawmakers have passed a new anti-terrorism bill allowing the military to shoot down hijacked passenger planes . JJ NNS VBP VBN DT JJ JJ NN VBG DT JJ TO VB RP JJ NN NNS . The lower house of parliament , the Duma overwhelmingly passed the bill Sunday 423 to 1 . DT JJR NN IN NN , DT NNP RB VBD DT NN NNP CD TO CD . It now goes to the upper house , where it is likely to pass , and then to President Vladimir Putin who is expected to sign it . PRP RB VBZ TO DT JJ NN , WRB PRP VBZ JJ TO VB , CC RB TO NNP NNP NNP WP VBZ VBN TO VB PRP . The new law would let the the military shoot down a hijacked jet if terrorists threaten to fly into a building or populated target . DT JJ NN MD VB DT DT NN NN IN DT JJ NN IN NNS VBP TO VB IN DT NN CC JJ NN . It also gives the Russian president the authorization to order a counter-terrorist operation outside Russian territory and allows authorities to monitor telephone calls and other electronic communications . PRP RB VBZ DT JJ NN DT NN TO VB DT NN NN IN JJ NN CC VBZ NNS TO VB NN NNS CC JJ JJ NNS . The bill also defines terrorism and what constitutes a terrorist act . DT NN RB VBZ NN CC WP VBZ DT JJ NN . The Venezuelan Congress has recommended that the state assume majority control over four key oil projects in the oil-rich Orinoco River basin . DT JJ NNP VBZ VBN IN DT NN VB NN NN IN CD JJ NN NNS IN DT JJ NNP NNP NN . The recommendation was made Thursday , days after President Hugo Chavez said he plans to raise taxes on foreign oil companies in Venezuela . DT NN VBD VBN NNP , NNS IN NNP NNP NNP VBD PRP VBZ TO VB NNS IN JJ NN NNS IN NNP . He described the move as an extraction tax , saying it would create $ 1 billion in new state revenue . PRP VBD DT NN IN DT NN NN , VBG PRP MD VB $ CD CD IN JJ NN NN . The new tax will be 33 percent , up from 16.7 percent . DT JJ NN MD VB CD NN , RB IN CD NN . The Chavez government has been taking measures to strengthen state control of the energy sector in the world 's fifth-largest oil exporter . DT NNP NN VBZ VBN VBG NNS TO VB NN NN IN DT NN NN IN DT NN POS JJ NN NN . He has accused foreign oil companies of exploiting his country 's vast petroleum reserves without paying sufficient taxes . PRP VBZ VBN JJ NN NNS IN VBG PRP$ NN POS JJ NN NNS IN VBG JJ NNS . Thirty two oil fields previously operated under contract by private companies are now run by ' mixed companies ' in which the state holds majority shares . CD CD NN NNS RB VBN IN NN IN JJ NNS VBP RB VBN IN `` JJ NNS `` IN WDT DT NN VBZ NN NNS . A new poll finds the front-runner in the race for the Mexican presidency has seen his lead narrow in recent weeks . DT JJ NN VBZ DT NN IN DT NN IN DT JJ NN VBZ VBN PRP$ JJ JJ IN JJ NNS . The survey by the Mitofsky polling agency says Andres Manuel Lopez Obrador 's popularity among voters dropped from 39 percent in February to 38 percent in March . DT NN IN DT NNP NN NN VBZ NNP NNP NNP NNP POS NN IN NNS VBD IN CD NN IN NNP TO CD NN IN NNP . Lopez Obrador represents the Democratic Revolution Party , or PRD . NNP NNP VBZ DT JJ NNP NNP , CC NNP . Released Tuesday , the poll also shows that Felipe Calderon of the ruling National Action Party , or PAN , had 31 percent of voter support , up one percentage point . VBN NNP , DT NN RB VBZ IN NNP NNP IN DT NN NNP NNP NNP , CC NNP , VBD CD NN IN NN NN , IN CD NN NN . Roberto Madrazo of the Institutional Revolutionary Party , PRI , also gained - rising to 29 percent from 28 percent . NNP NNP IN DT NNP NNP NNP , NNP , RB VBD : VBG TO CD NN IN CD NN . The polling company questioned 1,000 registered voters and says the survey has a margin of error of plus or minus 3.1 percent . DT VBG NN VBD CD JJ NNS CC VBZ DT NN VBZ DT NN IN NN IN JJ CC JJ CD NN . The winner of the July 2 election will replace President Vicente Fox , who by law can not seek a second six-year term . DT NN IN DT NNP CD NN MD VB NNP NNP NNP , WP IN NN MD RB VB DT JJ JJ NN . Nigerian Vice President Goodluck Jonathan says the country 's ailing president will return to Nigeria soon . JJ NNP NNP NNP NNP VBZ DT NN POS JJ NN MD VB TO NNP RB . The vice president , speaking in Abuja , did not indicate when President Umaru Yar'Adua is expected back . DT NN NN , NN IN NNP , VBD RB VB WRB NNP NNP NNP VBZ VBN RB . Mr. Yar'Adua left Nigeria in late November , when he traveled to a Saudi hospital to be treated for a heart condition . NNP NNP VBD NNP IN JJ NNP , WRB PRP VBD TO DT JJ NN TO VB VBN IN DT NN NN . He also suffers from a chronic kidney ailment . PRP RB VBZ IN DT JJ NN NN . On Wednesday , Nigeria 's cabinet and Senate made conflicting statements on whether Mr. Yar'Adua is fit to remain in office . IN NNP , NNP POS NN CC NNP VBD JJ NNS IN IN NNP NNP VBZ JJ TO VB IN NN . The cabinet , appointed by the president , ruled that Mr. Yar'Adua is capable of performing his duties . DT NN , VBN IN DT NN , VBD IN NNP NNP VBZ JJ IN VBG PRP$ NNS . The Senate said Mr. Yar'Adua should formally notify the National Assembly of what it called his ' medical vacation . ' DT NNP VBD NNP NNP MD RB VB DT NNP NNP IN WP PRP VBD PRP$ `` JJ NN . `` The constitution says if such notification is given , the vice president must take over temporarily . DT NN VBZ IN JJ NN VBZ VBN , DT NN NN MD VB RP RB . Witnesses in Somalia 's capital say a grenade attack on a gathering of Yemeni nationals has killed one person and wounded four others . NNS IN NNP POS NN VBP DT NN NN IN DT NN IN JJ NNS VBZ VBN CD NN CC VBD CD NNS . The witnesses say the Yemeni community was electing a local leader in southern Mogadishu Thursday when a grenade was thrown into the meeting hall . DT NNS VBP DT JJ NN VBD VBG DT JJ NN IN JJ NNP NNP WRB DT NN VBD VBN IN DT NN NN . An officer from the Yemeni embassy in Mogadishu was among those present at the gathering . DT NN IN DT JJ NN IN NNP VBD IN DT JJ IN DT NN . It is not clear who was behind the attack . PRP VBZ RB JJ WP VBD IN DT NN . Mogadishu has endured more than a year of chronic violence stemming from the conflict between Islamist militants and Ethiopian-backed government forces . NNP VBZ VBN JJR IN DT NN IN JJ NN VBG IN DT NN IN NNP NNS CC JJ NN NNS . The country as a whole has been plagued by unrest since since warlords overthrew dictator Mohamed Siad Barre in 1991 . DT NN IN DT NN VBZ VBN VBN IN NN IN IN NNS JJ NN NNP NNP NNP IN CD . Germany 's Christian Democrats and Christian Social Union have re-elected Angela Merkel as leader of their parliamentary group . NNP POS NNP NNPS CC NNP NNP NNP VBP VBN NNP NNP IN NN IN PRP$ JJ NN . Party officials say she received more than 98 percent support . NNP NNS VBP PRP VBD JJR IN CD NN NN . The vote , seen largely as a demonstration of confidence , comes after Ms. Merkel 's Christian Democrats edged out incumbent Chancellor Gerhard Schroeder 's Social Democrats by three seats in the 598-seat lower house of parliament . DT NN , VBN RB IN DT NN IN NN , VBZ IN NNP NNP POS NNP NNPS VBD RP JJ NNP NNP NNP POS NNP NNPS IN CD NNS IN DT JJ JJR NN IN NN . German political leaders say Mr. Schroeder and Ms. Merkel 's parties plan to meet for coalition talks on Thursday , even though both leaders have claimed the right to be chancellor . JJ JJ NNS VBP NNP NNP CC NNP NNP POS NNS VBP TO VB IN NN NNS IN NNP , RB IN DT NNS VBP VBN DT NN TO VB NN . Meanwhile , Foreign Minister Joschka Fischer says he will give up his role as leader of the Green Party , if the group gores into the opposition following Sunday 's vote . RB , NNP NNP NNP NNP VBZ PRP MD VB RP PRP$ NN IN NN IN DT NNP NNP , IN DT NN VBZ IN DT NN VBG NNP POS NN . An investigation is under way into the crash of a British military plane north of Baghdad Sunday , believed to have killed 10 military personnel . DT NN VBZ IN NN IN DT NN IN DT JJ JJ NN NN IN NNP NNP , VBN TO VB VBN CD JJ NNS . Officials in London say they are aware of reports that the C-130 aircraft may have been shot down , but say they can not draw any conclusions until the investigation is complete . NNS IN NNP VBP PRP VBP JJ IN NNS IN DT NN NN MD VB VBN VBN RB , CC VBP PRP MD RB VB DT NNS IN DT NN VBZ JJ . The aircraft went down on a flight between Baghdad airport and Balad airbase . DT NN VBD RB IN DT NN IN NNP NN CC NN NN . Two militant groups have separately claimed responsibility for downing the plane . CD JJ NNS VBP RB VBN NN IN VBG DT NN . Sunday 's crash is the deadliest single incident suffered by British troops since the war in Iraq began nearly two years ago . NNP POS NN VBZ DT JJS JJ NN VBN IN JJ NNS IN DT NN IN NNP VBD RB CD NNS RB . U.S. Deputy Secretary of State John Negroponte will travel to Central and South America next week to meet with regional officials on a range of issues , including security and trade . NNP NNP NNP IN NNP NNP NNP MD VB TO NNP CC NNP NNP JJ NN TO VB IN JJ NNS IN DT NN IN NNS , VBG NN CC NN . On Monday , Negroponte will begin a two-day visit to Medellin , Colombia , where he is leading the U.S. delegation to a meeting of the Organization of American States General Assembly . IN NNP , NNP MD VB DT JJ NN TO NNP , NNP , WRB PRP VBZ VBG DT NNP NN TO DT NN IN DT NNP IN NNP NNP NNP NNP . He will travel to El Salvador , Honduras and Guatemala from June 3 through June 6 . PRP MD VB TO NNP NNP , NNP CC NNP IN NNP CD IN NNP CD . While in those countries , Negroponte is scheduled to meet with government and business leaders on issues including the Merida Initiative , in which nations partner to fight criminal organizations . IN IN DT NNS , NNP VBZ VBN TO VB IN NN CC NN NNS IN NNS VBG DT NNP NNP , IN WDT NNS VBZ TO VB JJ NNS . Discussions are also expected to cover commercial relations , trade , development and security concerns . NNS VBP RB VBN TO VB JJ NNS , NN , NN CC NN NNS . Officials in Burundi say they have freed another 780 political prisoners as part of an accord to end the country 's civil war . NNS IN NNP VBP PRP VBP VBN DT CD JJ NNS IN NN IN DT NN TO VB DT NN POS JJ NN . The move follows the release of 673 political prisoners last month . DT NN VBZ DT NN IN CD JJ NNS JJ NN . Amnesty International has criticized the releases , saying they could allow war criminals to go unpunished . NNP NNP VBZ VBN DT NNS , VBG PRP MD VB NN NNS TO VB JJ . The human rights group says Burundi 's government has yet to create a truth and reconciliation commission it says the prisoners would have to appear before . DT JJ NNS NN VBZ NNP POS NN VBZ RB TO VB DT NN CC NN NN PRP VBZ DT NNS MD VB TO VB RB . In an interview with VOA , Burundi 's information minister also acknowledged criticism over the release of military personnel convicted of assassinating Burundi 's first democratically-elected president , Melchior Ndadaye . IN DT NN IN NNP , NNP POS NN NN RB VBD NN IN DT NN IN JJ NNS VBN IN VBG NNP POS JJ JJ NN , NNP NNP . Kalenga Ramadhani says it did not make sense to jail the people who executed the crime while the masterminds remain at large . NNP NNP VBZ PRP VBD RB VB NN TO NN DT NNS WP VBD DT NN IN DT NNS VBP IN JJ . Burundi 's 12-year-civil war ended in 2004 . NNP POS JJ NN VBN IN CD . Some 3,00,000 people were killed . DT CD NNS VBD VBN . The U.S. military says coalition forces have discovered a suspected insurgent chemical production facility and storage site in northern Iraq . DT NNP NN VBZ NN NNS VBP VBN DT JJ JJ NN NN NN CC NN NN IN JJ NNP . A senior military official says the chemicals collected at the site in Mosul are being analyzed to determine the type and quantity produced . DT JJ JJ NN VBZ DT NNS VBN IN DT NN IN NNP VBP VBG VBN TO VB DT NN CC NN VBN . But another official close to the investigation told VOA 's Baghdad correspondent that the materials are ' precursor chemicals commonly associated with the production of narcotics . ' CC DT NN RB TO DT NN VBD NNP POS NNP NN IN DT NNS VBP `` JJ NNS RB VBN IN DT NN IN NNS . `` In a statement earlier Saturday , the military said the raid , conducted Tuesday , was based on intelligence obtained during interrogation of detainees . IN DT NN RBR NNP , DT NN VBD DT NN , VBN NNP , VBD VBN IN NN VBN IN NN IN NNS . An investigation is continuing to determine which terrorist or insurgent group built and operated the covert facility . DT NN VBZ VBG TO VB WDT JJ CC JJ NN VBD CC VBD DT JJ NN . Authorities in Los Angeles have not filed charges against a 26-year-old punk rock musician , following a deadly stabbing . NNS IN NNP NNP VBP RB VBN NNS IN DT JJ NN NN NN , VBG DT JJ NN . Anthony Lovato , who sang in the defunct quartet Mest , was arrested March 25 , after telephoning police to report the altercation . NNP NNP , WP VBD IN DT JJ NN NNP , VBD VBN NNP CD , IN VBG NNS TO VB DT NN . Police say Lovato fought 25-year-old Wayne Hughes early Sunday morning in a Los Angeles parking structure . NNS VBP NNP VBD JJ NNP NNP JJ NNP NN IN DT NNP NNP NN NN . Hughes later died in a hospital . NNP RB VBD IN DT NN . The two had apparently been involved with the same woman at different times . DT CD VBD RB VBN VBN IN DT JJ NN IN JJ NNS . Authorities declined to file charges against Lovato , citing insufficient evidence . NNS VBD TO VB NNS IN NNP , VBG JJ NN . He was released from jail March 27 . PRP VBD VBN IN NN NNP CD . Anthony Lovato and his brother Matt formed Mest in 1995 . NNP NNP CC PRP$ NN NNP VBD NNP IN CD . They recorded several albums for Madonna 's Maverick label before disbanding in 2006 . PRP VBD JJ NNS IN NNP POS NNP NN IN VBG IN CD . The northeastern U.S. state of Connecticut has given its social services agencies permission to supply thousands of needy families with discounted heating oil from a Venezuelan-owned oil company . DT JJ NNP NN IN NNP VBZ VBN PRP$ JJ NNS NNS NN TO VB NNS IN JJ NNS IN JJ NN NN IN DT JJ NN NN . The state 's Attorney General Richard Blumenthal cautioned that the deal is politically sensitive , given Venezuela 's tense relationship with the United States , but he ruled that the program is legal . DT NN POS NNP NNP NNP NNP VBD IN DT NN VBZ RB JJ , VBN NNP POS NN NN IN DT NNP NNPS , CC PRP VBD IN DT NN VBZ JJ . Blumenthal also criticized the U.S. Congress for this year 's controversial cuts to federal heating assistance to the poor , saying that is what made outside help necessary . NNP RB VBD DT NNP NNP IN DT NN POS JJ NNS TO JJ NN NN TO DT NN , VBG DT VBZ WP VBD JJ NN JJ . Venezuela has already delivered oil through Citgo , its U.S. subsidiary , to communities in seven other U.S. states . NNP VBZ RB VBN NN IN NNP , PRP$ NNP NN , TO NNS IN CD JJ NNP NNS . The oil is sold at a 40 percent discount to low income families . DT NN VBZ VBN IN DT CD NN NN TO JJ NN NNS . Critics of the program say Venezuelan President Hugo Chavez is trying to embarrass President Bush and build support for himself . NNS IN DT NN VBP JJ NNP NNP NNP VBZ VBG TO VB NNP NNP CC VB NN IN PRP . Iraqi police say insurgents have killed four truck drivers and set their convoy on fire in an ambush north of Baghdad . JJ NNS VBP NNS VBP VBN CD NN NNS CC VBD PRP$ NN IN NN IN DT JJ NN IN NNP . Police say the drivers were carrying construction material Sunday to a U.S. military base when they were attacked in the al-Nabaie area . NNS VBP DT NNS VBD VBG NN NN NNP TO DT NNP JJ NN WRB PRP VBD VBN IN DT NNP NN . Separately , authorities say a police general and two of his bodyguards were killed in a roadside bombing near Kirkuk . RB , NNS VBP DT NN NN CC CD IN PRP$ NNS VBD VBN IN DT NN NN IN NNP . Elsewhere , officials say a shepherd led search teams to the wreckage of a small plane that crashed three days ago in a remote northern area . RB , NNS VBP DT NN VBD NN NNS TO DT NN IN DT JJ NN WDT VBD CD NNS RB IN DT JJ JJ NN . Authorities say all six people on board - including three German businessmen - were apparently killed in the crash . NNS VBP DT CD NNS IN NN : VBG CD JJ NNS : VBD RB VBN IN DT NN . The plane - headed to Sulaymaniya from Azerbaijan - went missing in a storm late Thursday . DT NN : VBN TO NNP IN NNP : VBD VBG IN DT NN JJ NNP . Authorities said there was no evidence that hostile action played any part in the crash . NNS VBD EX VBD DT NN IN JJ NN VBD DT NN IN DT NN . World oil prices rose to new record highs in New York and London as conflict spread in the Middle East and tensions continued in Iran and Nigeria . NNP NN NNS VBD TO JJ NN NNS IN NNP NNP CC NNP IN NN NN IN DT NNP NNP CC NNS VBD IN NNP CC NNP . The price of oil for future delivery hit $ 76.4 a barrel in New York trading Thursday . DT NN IN NN IN JJ NN VBD $ CD DT NN IN NNP NNP NN NNP . The price increases follow Israel 's attacks inside Lebanon in a campaign against the Hezbollah militant group . DT NN NNS VBP NNP POS NNS IN NNP IN DT NN IN DT NNP JJ NN . Dealers say the increases also are related to Iran 's standoff with Western nations over its suspected nuclear weapons program and explosions that hit two oil pipelines in Nigeria 's troubled Niger Delta region . NNS VBP DT NNS RB VBP VBN TO NNP POS NN IN JJ NNS IN PRP$ JJ JJ NNS NN CC NNS WDT VBD CD NN NNS IN NNP POS JJ NNP NNP NN . Strong demand for oil leaves little unused oil production capacity anywhere in the world . JJ NN IN NN NNS RB JJ NN NN NN RB IN DT NN . The tight balance between supply and demand means any disruption in oil supplies could cause prices to soar . DT JJ NN IN NN CC NN VBZ DT NN IN NN NNS MD VB NNS TO VB . Uzbek President Islam Karimov , right , inspects the Guard of honor alongside Chinese President Hu Jintao outside of Beijing 's Great Hall of the People China has welcomed embattled Uzbek President Islam Karimov . JJ NNP NNP NNP , RB , VBZ DT NN IN NN IN JJ NNP NNP NNP IN IN NNP POS NNP NNP IN DT NNS NNP VBZ VBN VBN JJ NNP NNP NNP . Mr. Karimov arrived in Beijing Wednesday , a day after China voiced support for his regime 's bloody crackdown on anti-government protesters . NNP NNP VBD IN NNP NNP , DT NN IN NNP VBD NN IN PRP$ NN POS JJ NN IN JJ NNS . The Chinese and Uzbek governments say Mr. Karimov 's visit was planned long before the May 13 uprising in Uzbekistan 's eastern city of Andijan . DT JJ CC JJ NNS VBP NNP NNP POS NN VBD VBN RB IN DT NNP CD NN IN NNP POS JJ NN IN NNP . President Karimov is facing harsh international criticism over the incident , which he blames on Muslim extremists . NNP NNP VBZ VBG JJ JJ NN IN DT NN , WDT PRP VBZ IN NNP NNS . But he has found support in China , which fears Islamic militancy in the region could spread to its own territory . CC PRP VBZ VBN NN IN NNP , WDT VBZ JJ NN IN DT NN MD VB TO PRP$ JJ NN . The number of people who died in Andijan is in dispute . DT NN IN NNS WP VBD IN NNP VBZ IN NN . The Uzbek government says 169 were killed but rights groups say many more people died . DT JJ NN VBZ CD VBD VBN CC NNS NNS VBP JJ JJR NNS VBD . The United Nations food agency estimates that between 30,000 and 50,000 Somalis are in need of immediate relief assistance following the Indian Ocean tsunami . DT NNP NNP NN NN VBZ IN IN CD CC CD NNS VBP IN NN IN JJ NN NN VBG DT NNP NNP NN . A World Food Program statement Wednesday said efforts to rush aid to one of the worst-hit Somali towns , Hafun , are being held up because waves have washed away the access road . DT NNP NNP NNP NN NNP VBD NNS TO VB NN TO CD IN DT JJ JJ NNS , NNP , VBP VBG VBN RP IN NNS VBP VBN RP DT NN NN . The agency said the town is in a state of total desolation , with most homes destroyed . DT NN VBD DT NN VBZ IN DT NN IN JJ NN , IN JJS NNS VBN . The United Nations says at least 114 Somalis died in the massive waves that were generated by an underwater earthquake thousands of kilometers away near Indonesia . DT NNP NNP VBZ IN JJS CD NNS VBD IN DT JJ NNS WDT VBD VBN IN DT JJ NN NNS IN NNS RB IN NNP . In Tanzania , officials have said at least 10 swimmers died when they were dragged out to sea by powerful water currents . IN NNP , NNS VBP VBN IN JJS CD NNS VBD WRB PRP VBD VBN RP TO NN IN JJ NN NNS . The tsunami is also blamed for killing two people in Seychelles and one tourist in Kenya . DT NN VBZ RB VBN IN VBG CD NNS IN NNP CC CD NN IN NNP . Ukraine 's prime minister is rejecting a planned price hike by Russia 's state-run natural gas company , Gazprom , as an unacceptable move aimed at putting direct economic pressure on Ukraine . NNP POS JJ NN VBZ VBG DT VBN NN NN IN NNP POS JJ JJ NN NN , NNP , IN DT JJ NN VBN IN VBG JJ JJ NN IN NNP . Yuriy Yekhanurov told officials in Kiev his country will take all necessary legal steps if the dispute is not resolved . NNP NNP VBD NNS IN NNP PRP$ NN MD VB DT JJ JJ NNS IN DT NN VBZ RB VBN . His comments came as Ukraine 's energy minister , Ivan Plachkov , left for Moscow for talks on a settlement . PRP$ NNS VBD IN NNP POS NN NN , NNP NNP , VBD IN NNP IN NNS IN DT NN . Gazprom intends to more than quadruple the price it charges Ukraine to bring its prices in line with the world market . NNP VBZ TO JJR IN VB DT NN PRP VBZ NNP TO VB PRP$ NNS IN NN IN DT NN NN . Kiev supports an increase but wants a gradual one to avoid damaging its economy . NNP VBZ DT NN CC VBZ DT JJ CD TO VB VBG PRP$ NN . Gazprom is threatening to cut supplies on January first if no deal is reached . NNP VBZ VBG TO VB NNS IN NNP JJ IN DT NN VBZ VBN . Ukraine says it has sent its proposals and will seek international arbitration if there is no agreement . NNP VBZ PRP VBZ VBN PRP$ NNS CC MD VB JJ NN IN EX VBZ DT NN . Organizers have unveiled the route for this year 's Dakar Rally . NNS VBP VBN DT NN IN DT NN POS NNP NNP . It 's a shorter , but more intense course that starts in Barcelona , Spain December 31 . PRP VBZ DT JJR , CC RBR JJ NN WDT VBZ IN NNP , NNP NNP CD . The race covers 8,956 kilometers in 16 stages , 2,000 kilometers shorter than last year 's race . DT NN VBZ CD NNS IN CD NNS , CD NNS JJR IN JJ NN POS NN . However , the rally has several sand dune crossings in succession , including six stages in Mauritania . RB , DT NN VBZ JJ NN NN NNS IN NN , VBG CD NNS IN NNP . The race starts with a four-kilometer special stage around Barcelona and then heads to Granada before passing into Morocco , Mauritania , Mali , and ending in Senegal January 16 . DT NN VBZ IN DT JJ JJ NN IN NNP CC RB VBZ TO NNP IN VBG IN NNP , NNP , NNP , CC VBG IN NNP NNP CD . In the motorcycle section , no rider will wear the number-one jersey out of respect for the late Richard Sainct , a three-time Dakar Rally champion who was killed in September during the Rally of the Pharaohs in Egypt . IN DT NN NN , DT NN MD VB DT JJ NN IN IN NN IN DT JJ NNP NNP , DT JJ NNP NNP NN WP VBD VBN IN NNP IN DT NN IN DT NNP IN NNP . The World Health Organization has confirmed two more human deaths from bird flu in Indonesia , bringing the country 's death toll from the virus to 18 . DT NNP NNP NNP VBZ VBN CD JJR JJ NNS IN NN NN IN NNP , VBG DT NN POS NN NN IN DT NN TO CD . The confirmation from a Hong Kong laboratory came Sunday after local tests showed that two women who died last week had contracted the deadly H5N1 strain of the virus . DT NN IN DT NNP NNP NN VBD NNP IN JJ NNS VBD IN CD NNS WP VBD JJ NN VBD VBN DT JJ NNP NN IN DT NN . Recent tests have also confirmed the H5N1 bird flu was found in wild swans in Italy , Greece and Bulgaria . JJ NNS VBP RB VBN DT NNP NN NN VBD VBN IN JJ NNS IN NNP , NNP CC NNP . Officials in Romania have also reported new cases of suspected bird flu in the Danube Delta . NNS IN NNP VBP RB VBN JJ NNS IN JJ NN NN IN DT NNP NNP . Italian veterinary officials are holding an emergency meeting Sunday , and in Greece , experts are checking poultry farms and homes ( around the northern city of Thessaloniki ) where the infected birds were found . JJ JJ NNS VBP VBG DT NN NN NNP , CC IN NNP , NNS VBP VBG JJ NNS CC NNS LRB IN DT JJ NN IN NNP RRB WRB DT JJ NNS VBD VBN . Bird flu has killed about 90 people worldwide since 2003 . NN NN VBZ VBN IN CD NNS JJ IN CD . Experts say migratory birds are spreading the virus . NNS VBP JJ NNS VBP VBG DT NN . World health officials are working to prevent a global pandemic . NNP NNP NNS VBP VBG TO VB DT JJ NN . A Labor Department Tuesday says U.S. wholesale prices jumped five-tenths of a percent in March , pushed upward by rising gasoline costs . DT NNP NNP NNP VBZ NNP JJ NNS VBD NNS IN DT NN IN NNP , VBN RB IN VBG NN NNS . Economists set aside volatile energy and food prices to gauge inflation in the rest of the economy . NNS VBD RB JJ NN CC NN NNS TO VB NN IN DT NN IN DT NN . By that measure , the so-called ' core ' inflation rate was up a modest one-tenth of a percent . IN DT NN , DT JJ `` NN `` NN NN VBD IN DT JJ NN IN DT NN . Analysts say strong price competition among businesses makes companies reluctant to pass rising costs along to customers . NNS VBP JJ NN NN IN NNS VBZ NNS JJ TO VB VBG NNS IN TO NNS . Wednesday , we will get a look at inflation at the consumer level when the government publishes the consumer price index . NNP , PRP MD VB DT NN IN NN IN DT NN NN WRB DT NN VBZ DT NN NN NN . Some analysts predict it will be up about four-tenths of a percent for the month . DT NNS VBP PRP MD VB RB IN NNS IN DT NN IN DT NN . A separate government report Tuesday showed further evidence that the U.S. housing market is cooling off as interest rates rise . DT JJ NN NN NNP VBD JJ NN IN DT NNP NN NN VBZ VBG RP IN NN NNS VBP . The number of new homes started in March fell nearly eight percent . DT NN IN JJ NNS VBN IN NNP VBD RB CD NN . Kuwait has reported two cases of bird flu , the first incidence of the virus in the Persian Gulf region . NNP VBZ VBN CD NNS IN NN NN , DT JJ NN IN DT NN IN DT NNP NNP NN . Kuwaiti agriculture officials said Thursday that the virus was discovered in two birds , one a migrating flamingo . JJ NN NNS VBD NNP IN DT NN VBD VBN IN CD NNS , CD DT NN NN . It is not clear if the birds were carrying the deadly H5N1 strain of the virus . PRP VBZ RB JJ IN DT NNS VBD VBG DT JJ NNP NN IN DT NN . Italian health officials say a wild duck in northern Italy tested positive for the virus , but posed no threat to humans . JJ NN NNS VBP DT JJ NN IN JJ NNP VBD JJ IN DT NN , CC VBD DT NN TO NNS . Meanwhile , China has reported two new outbreaks of bird flu among poultry in the northeastern province of Liaoning , bringing the total number of reported outbreaks in the country over the past month to six . RB , NNP VBZ VBN CD JJ NNS IN NN NN IN NN IN DT JJ NN IN NNP , VBG DT JJ NN IN VBN NNS IN DT NN IN DT JJ NN TO CD . EU Health Commissioner Markos Kyprianou told officials in Thailand Thursday that the European Union will provide financial assistance in fighting the spread of bird flu . NNP NNP NNP NNP NNP VBD NNS IN NNP NNP IN DT NNP NNP MD VB JJ NN IN VBG DT NN IN NN NN . Thailand 's government says it will provide free cable television in the country 's restive south in its latest effort to stem violence in the Muslim-dominated region . NNP POS NN VBZ PRP MD VB JJ NN NN IN DT NN POS JJ NN IN PRP$ JJS NN TO VB NN IN DT JJ NN . Under the plan announced Tuesday by Interior Minister Kongsak Wanthana , the government will install at least 500 television sets in local stores . IN DT NN VBN NNP IN NNP NNP NNP NNP , DT NN MD VB IN JJS CD NN NNS IN JJ NNS . Programming will be limited mainly to sports , including English Premier League soccer matches . NNP MD VB VBN RB TO NNS , VBG NNP NNP NNP NN NNS . Mr. Kongsak says the move could encourage the youth to become more interested in sports , and less interested in violence . NNP NNP VBZ DT NN MD VB DT NN TO VB RBR JJ IN NNS , CC RBR JJ IN NN . More than 800 people have been killed since violence broke out in the Muslim-dominated provinces of Pattani , Narathiwat and Yala in January 2004 . JJR IN CD NNS VBP VBN VBN IN NN VBD RP IN DT JJ NNS IN NNP , NNP CC NNP IN NNP CD . The Thai government has tried a range of measures to quell the violence , including martial law and air-dropping millions of paper birds as a goodwill gesture . DT JJ NN VBZ VBN DT NN IN NNS TO VB DT NN , VBG JJ NN CC NN NNS IN NN NNS IN DT NN NN . South Korean Unification Minister Chung Dong-Young will visit China this week to discuss stalled six-nation talks on North Korea 's nuclear program . NNP JJ NNP NNP NNP NNP MD VB NNP DT NN TO VB VBN JJ NNS IN NNP NNP POS JJ NN . Mr. Chung , who is also chairman of South Korea 's National Security Council , will arrive in Beijing on Tuesday . NNP NNP , WP VBZ RB NN IN NNP NNP POS NNP NNP NNP , MD VB IN NNP IN NNP . During four days in China , President Roh Moo-Hyun 's special envoy is expected to meet parliamentary chief Wu Bangguo , Foreign Minister Li Zhaoxing and other top Chinese officials , with the focus largely on North Korea . IN CD NNS IN NNP , NNP NNP NNP POS JJ NN VBZ VBN TO VB JJ NN NNP NNP , NNP NNP NNP NNP CC JJ JJ JJ NNS , IN DT NN RB IN NNP NNP . China has hosted three rounds of six-nation talks , bringing together representatives of the two Koreas , the United States , Japan and Russia in an effort to curb Pyongyang 's nuclear weapons program . NNP VBZ VBN CD NNS IN JJ NNS , VBG RB NNS IN DT CD NNP , DT NNP NNPS , NNP CC NNP IN DT NN TO VB NNP POS JJ NNS NN . North Korea boycotted a fourth round of talks scheduled for last September , refusing to take part due to what Pyongyang called Washington 's co-called ' hostile policy ' toward the communist state . NNP NNP VBD DT JJ NN IN NNS VBN IN JJ NNP , VBG TO VB NN JJ TO WP NNP VBD NNP POS JJ `` JJ NN `` IN DT JJ NN . Venezuelan Vice President Jose Rangel has dismissed U.S. concerns over his country 's plan to buy 1,00,000 Russian-made rifles . JJ NNP NNP NNP NNP VBZ VBN NNP NNS IN PRP$ NN POS NN TO VB CD JJ NNS . Mr. Rangel said Tuesday Venezuela is buying the rifles to strengthen its national defense , and that the purchase should not concern Washington . NNP NNP VBD NNP NNP VBZ VBG DT NNS TO VB PRP$ JJ NN , CC IN DT NN MD RB VB NNP . His remarks were in response to recent comments by Roger Noriega , Assistant Secretary of State for Western Hemisphere Affairs , expressing concern that the weapons could wind up in the hands of criminal groups . PRP$ NNS VBD IN NN TO JJ NNS IN NNP NNP , NNP NNP IN NNP IN NNP NNP NNP , VBG NN IN DT NNS MD VB RP IN DT NNS IN JJ NNS . Relations between the United States and Venezuela have been strained in recent years . NNP IN DT NNP NNPS CC NNP VBP VBN VBN IN JJ NNS . Washington has criticized Venezuelan President Hugo Chavez ' populist policies and his country 's close relationship with Cuba . NNP VBZ VBN JJ NNP NNP NNP POS JJ NNS CC PRP$ NN POS JJ NN IN NNP . President Chavez has accused the United States of backing attempts to oust him , including a 2002 coup which briefly removed him from power . NNP NNP VBZ VBN DT NNP NNPS IN VBG NNS TO VB PRP , VBG DT CD NN WDT RB VBD PRP IN NN . South African President Thabo Mbeki is meeting with Ivory Coast 's rebel leaders to discuss the latest peace initiatives . JJ JJ NNP NNP NNP VBZ VBG IN NNP NNP POS NN NNS TO VB DT JJS NN NNS . Tens of thousands of people with banners demanding that President Laurent Gbagbo quit welcomed Mr. Mebki as he arrived in the northern rebel-held stronghold of Bouake Sunday . NNS IN NNS IN NNS IN NNS VBG IN NNP NNP NNP VBD VBN NNP NNP IN PRP VBD IN DT JJ JJ NN IN NNP NNP . Mr. Mebki will try to persuade the rebels to accept a plan to hold a referendum on a constitutional revision . NNP NNP MD VB TO VB DT NNS TO VB DT NN TO VB DT NN IN DT JJ NN . The change would end a ban on Ivorians of foreign parents from running as presidential candidates . DT NN MD VB DT NN IN NNS IN JJ NNS IN VBG IN JJ NNS . Such a revision would allow former Prime Minister and rebel-backed leader Alassane Ouattara to run for president . JJ DT NN MD VB JJ NNP NNP CC JJ NN NNP NNP TO VB IN NN . The crisis in Ivory Coast escalated last month when government forces bombed rebel positions , breaking a 18-month cease-fire . DT NN IN NNP NNP VBD JJ NN WRB NN NNS VBD JJ NNS , VBG DT JJ NN . Because of the turmoil , the U.S State Department has warned Americans not to travel to Ivory Coast . IN IN DT NN , DT NNP NNP NNP VBZ VBN NNS RB TO VB TO NNP NNP . American Idol Thursday , March 8 narrowed the field of contestants to 12 . JJ NNP NNP , NNP CD VBD DT NN IN NNS TO CD . Viewers submitted 37 million phone calls and text messages , eliminating Antonella Barba , Jared Cotter , Jason ' Sundance ' Head , and Sabrina Sloan . NNS VBD CD CD NN NNS CC NN NNS , VBG NNP NNP , NNP NNP , NNP `` NNP `` NNP , CC NNP NNP . Six men and six women now vie for a record contract . CD NNS CC CD NNS RB VBP IN DT NN NN . Now in its sixth season , American Idol continues to dominate U.S. television ratings , attracting between 27 and 37 million viewers a week . RB IN PRP$ JJ NN , NNP NNP VBZ TO VB NNP NN NNS , VBG IN CD CC CD CD NNS DT NN . The winner will be announced May 23 . DT NN MD VB VBN NNP CD . Norwegian ski jumper Roar Ljoekelsoey has successfully defended his title at the Ski Flying World Championships in Bad Mitterndorf , Austria . JJ NN NN NNP NNP VBZ RB VBN PRP$ NN IN DT NNP NNP NNP NNP IN NNP NNP , NNP . Ljoekelsoey finished with two faultless jumps of 190 and 207.5 meters for a total of 788 points . NNP VBD IN CD JJ NNS IN CD CC CD NNS IN DT NN IN CD NNS . Austrian Andreas Widhoelzl was second ( 762.4 points ) with compatriot Thomas Morgenstern third ( 752.2 points ) . JJ NNP NNP VBD JJ LRB CD NNS RRB IN NN NNP NNP JJ LRB CD NNS RRB . The Norwegian also won the gold medal at the last World Championships in Planica , Slovenia , two years ago . DT NN RB VBD DT NN NN IN DT JJ NNP NNP IN NNP , NNP , CD NNS RB . For Widhoelzl , Saturday 's result was his second world silver medal - he also finished second in 2000 . IN NNP , NNP POS NN VBD PRP$ JJ NN NN NN : PRP RB VBD JJ IN CD . The team event is scheduled for Sunday . DT NN NN VBZ VBN IN NNP . A new audit of U.S. funds in Iraq has revealed overpayments and mismanagement of millions of dollars . DT JJ NN IN NNP NNS IN NNP VBZ VBN NNS CC NN IN NNS IN NNS . The report from the Office of the U.S. Special Inspector General for Iraq Reconstruction says American civilian and military personnel and contractors in south-central Iraq kept woefully inadequate records and lost track of millions of dollars . DT NN IN DT NNP IN DT NNP NNP NNP NNP IN NNP NNP VBZ JJ JJ CC JJ NNS CC NNS IN JJ NNP VBD RB JJ NNS CC VBD NN IN NNS IN NNS . The audit says contractors were paid in full for jobs that were never completed . DT NN VBZ NNS VBD VBN IN JJ IN NNS WDT VBD RB VBN . It says three people were killed when a hospital elevator , which was supposed to be replaced , crashed . PRP VBZ CD NNS VBD VBN WRB DT NN NN , WDT VBD VBN TO VB VBN , VBD . The report says one contracting officer kept about $ 2 million in cash in a personal safe ; while a paying agent kept some $ 6,78,000 in cash in an unlocked footlocker . DT NN VBZ CD NN NN VBD IN $ CD CD IN NN IN DT JJ NN ; IN DT VBG NN VBD DT $ CD IN NN IN DT JJ NN . It also says a U.S. soldier gambled away between $ 20,000 and $ 60,000 during a trip to the Philippines with the Iraqi Olympic boxing team . PRP RB VBZ DT NNP NN VBD RB IN $ CD CC $ CD IN DT NN TO DT NNPS IN DT JJ NNP VBG NN . U.S.-led coalition forces in Afghanistan say a roadside bomb hit a security patrol in the country 's south , killing one soldier and wounding two others . JJ NN NNS IN NNP VBP DT NN NN VBD DT NN NN IN DT NN POS NN , VBG CD NN CC VBG CD NNS . A coalition statement said the troops were on patrol with Afghan forces Tuesday when a mine exploded and hit their vehicle along the Helmand River . DT NN NN VBD DT NNS VBD IN NN IN JJ NNS NNP WRB DT NN VBD CC VBD PRP$ NN IN DT NNP NNP . There were no further details of the nationalities of the victims . EX VBD DT JJ NNS IN DT NNS IN DT NNS . The statement also said other soldiers in the patrol discovered and neutralized two additional improvised explosive devices in the area . DT NN RB VBD JJ NNS IN DT NN VBD CC VBD CD JJ JJ JJ NNS IN DT NN . Afghan authorities said five Afghan civilians were killed and another one wounded late Monday when a roadside blast struck a vehicle in Helmand province . JJ NNS VBD CD JJ NNS VBD VBN CC DT CD VBN RB NNP WRB DT NN NN VBD DT NN IN NNP NN . In neighboring Kandahar province , a roadside bomb hit a police patrol , killing two Afghan policemen and wounding three others . IN JJ NNP NN , DT NN NN VBD DT NN NN , VBG CD JJ NNS CC VBG CD NNS . Police have blamed that attack on the Taliban . NNS VBP VBN DT NN IN DT NNP . Suspected militants in Pakistan have blown up 36 oil tankers that supply fuel to U.S.-led forces in neighboring Afghanistan . VBN NNS IN NNP VBP VBN RP CD NN NNS WDT VBP NN TO JJ NNS IN VBG NNP . Pakistani officials Monday said the attackers set off two bombs near the trucks , triggering fires and explosions Sunday night in the Khyber tribal district . JJ NNS NNP VBD DT NNS VBD RP CD NNS IN DT NNS , VBG NNS CC NNS NNP NN IN DT NNP NN NN . At least 70 people were wounded . IN JJS CD NNS VBD VBN . More than 80 oil tankers bound for Afghanistan were parked in the area when the explosion happened . JJR IN CD NN NNS VBN IN NNP VBD VBN IN DT NN WRB DT NN VBD . No one has claimed responsibility . DT NN VBZ VBN NN . A senior U.S. commander says Washington could reduce its 18,000-strong combat force in Afghanistan next year if Taleban militants accept an amnesty to be drawn up jointly by Kabul and Islamabad . DT JJ NNP NN VBZ NNP MD VB PRP$ JJ NN NN IN NNP IN NN IN NNP NNS VBP DT NN TO VB VBN RP RB IN NNP CC NNP . In an interview with the Associated Press , Lt. Gen. David Barno said he will have a much better sense by next summer , after the April parliamentary polls , if the security threat has diminished or not . IN DT NN IN DT NNP NNP , NNP NNP NNP NNP VBD PRP MD VB DT JJ JJR NN IN JJ NN , IN DT NNP JJ NNS , IN DT NN NN VBZ VBN CC RB . Since Hamid Karzai 's landslide victory in the recent presidential election in Afghanistan , the government has unveiled a detailed plan to reconcile with the Taleban remnants . IN NNP NNP POS NN NN IN DT JJ JJ NN IN NNP , DT NN VBZ VBN DT JJ NN TO VB IN DT NNP NNS . General Barno said Mr. Karzai , who is to be sworn in as Afghanistan 's first popularly elected leader on Tuesday , will produce a list of Taleban leaders to be excluded from the amnesty and pass it to Islamabad . NNP NNP VBD NNP NNP , WP VBZ TO VB VBN IN IN NNP POS JJ JJ JJ NN IN NNP , MD VB DT NN IN NNP NNS TO VB VBN IN DT NN CC VB PRP TO NNP . Rwandan President Paul Kagame says his country may pull its troops from the African Union peacekeeping force in Sudan 's war-torn Darfur region . JJ NNP NNP NNP VBZ PRP$ NN MD VB PRP$ NNS IN DT NNP NNP VBG NN IN NNP POS JJ NNP NN . In remarks to reporters this week , Mr. Kagame said the troops are not getting the funding , equipment or support they need and are having little impact . IN NNS TO NNS DT NN , NNP NNP VBD DT NNS VBP RB VBG DT NN , NN CC NN PRP VBP CC VBP VBG JJ NN . The president says Rwandan officials are evaluating the situation and a decision will be made regarding the troops very soon . DT NN VBZ JJ NNS VBP VBG DT NN CC DT NN MD VB VBN VBG DT NNS RB RB . Rwanda has supplied about 2,000 of the 7,000 African Union troops in Darfur . NNP VBZ VBN IN CD IN DT CD NNP NNP NNS IN NNP . The force has not been able to stop violence in the region that has killed at least 2,00,000 people and displaced two million more . DT NN VBZ RB VBN JJ TO VB NN IN DT NN WDT VBZ VBN IN JJS CD NNS CC VBN CD CD JJR . The U.N. Security Council has authorized a larger peacekeeping force for Darfur . DT NNP NNP NNP VBZ VBN DT JJR NN NN IN NNP . But Sudanese President Omar al-Bashir has refused to allow U.N. forces to enter the country . CC JJ NNP NNP NNP VBZ VBN TO VB NNP NNS TO VB DT NN . A Nigerian militant group says at least 10 of its fighters have been killed in a clash with Nigerian soldiers . DT JJ JJ NN VBZ IN JJS CD IN PRP$ NNS VBP VBN VBN IN DT NN IN JJ NNS . The Movement for the Emancipation of the Niger Delta says Nigerian government troops in gunboats ambushed a group of its fighters late Sunday . DT NN IN DT NN IN DT NNP NNP VBZ JJ NN NNS IN NNS VBD DT NN IN PRP$ NNS JJ NNP . The ambush was in Baylesa state , in the oil-rich delta region . DT NN VBD IN NNP NN , IN DT JJ NN NN . Nigerian President Olusegun Obasanjo announced a clampdown on Niger Delta militants last week , after a series of kidnappings of foreign oil workers . JJ NNP NNP NNP VBD DT NN IN NNP NNP NNS JJ NN , IN DT NN IN NNS IN JJ NN NNS . The kidnappings and attacks on oil facilities have caused a 20 percent drop in Nigeria 's oil production since February . DT NNS CC NNS IN NN NNS VBP VBN DT CD NN NN IN NNP POS NN NN IN NNP . Nigeria 's army said Saturday that more than 100 militants had been detained in a military sweep . NNP POS NN VBD NNP IN JJR IN CD NNS VBD VBN VBN IN DT JJ NN . Iraqi medical officials said Saturday the death toll from a suicide bombing at a cafe northeast of Baghdad had risen to at least 26 . JJ JJ NNS VBD NNP DT NN NN IN DT NN VBG IN DT NN NN IN NNP VBD VBN TO IN JJS CD . The blast took place late Friday in the town of Balad Ruz , in Diyala province . DT NN VBD NN JJ NNP IN DT NN IN NNP NNP , IN NNP NN . The town is located in a predominately Kurdish Shi'ite region , about halfway between the city of Baquba and the Iranian border . DT NN VBZ VBN IN DT RB JJ NNP NN , IN NN IN DT NN IN NNP CC DT JJ NN . An Iraqi police official says the bomber detonated an explosives-filled belt inside a popular cafe . DT JJ NN NN VBZ DT NN VBD DT JJ NN IN DT JJ NN . At least 45 people were wounded . IN JJS CD NNS VBD VBN . The world economy 's downturn is having contrary effects on two leading U.S. food retailers . DT NN NN POS NN VBZ VBG JJ NNS IN CD VBG NNP NN NNS . Shares in Starbucks , a chain of pricey coffee shops , fell more than three percent Tuesday , one day after it reported a 97 percent drop in profits in the 4th quarter of this year . NNS IN NNP , DT NN IN JJ NN NNS , VBD RBR IN CD NN NNP , CD NN IN PRP VBD DT CD NN NN IN NNS IN DT JJ NN IN DT NN . The value of Starbucks ' shares has been falling sharply in recent months . DT NN IN NNP POS NNS VBZ VBN VBG RB IN JJ NNS . Earlier this year , the Seattle , Washington-based company cut 1,000 jobs , shut 600 stores in the United States , and closed another 61 stores in Australia . RBR DT NN , DT NNP , JJ NN VBD CD NNS , VBD CD NNS IN DT NNP NNPS , CC VBD DT CD NNS IN NNP . While coffee-drinkers are avoiding Starbucks ' expensive products , budget hamburgers are selling briskly . IN NNS VBP VBG NNS POS JJ NNS , NN NNS VBP VBG RB . McDonald 's announced Monday that its global sales jumped 8.2 percent in October . NNP POS VBD NNP IN PRP$ JJ NNS VBD CD NN IN NNP . McDonald 's sales rose more than five percent in the United States , nearly 10 percent in Europe and more than 11 percent in the Asia-Pacific , Middle East and Africa . NNP POS NNS VBD JJR IN CD NN IN DT NNP NNPS , RB CD NN IN NNP CC JJR IN CD NN IN DT NNP , NNP NNP CC NNP . Madonna has released a new digital song aiming to raise awareness about environmental issues . NNP VBZ VBN DT JJ JJ NN VBG TO VB NN IN JJ NNS . Titled ' Hey You , ' the ballad does n't specifically refer to saving the earth , instead choosing to speak of loving and saving each other . VBN `` NNP PRP , `` DT NN VBZ RB RB VB TO VBG DT NN , RB VBG TO VB IN VBG CC VBG DT NN . Produced by Madonna and Pharrell Williams , ' Hey You ' hit the market May 16 . VBN IN NNP CC NNP NNP , `` NNP PRP `` VBD DT NN NNP CD . The first one million downloads are free , and Microsoft will donate 25 cents per download to the Alliance For Climate Protection . DT JJ CD CD NNS VBP JJ , CC NNP MD VB CD NNS IN NN TO DT NNP IN NNP NNP . Madonna will perform the song July 7 at the London edition of Live Earth , a global environment-themed pop event . NNP MD VB DT NN NNP CD IN DT NNP NN IN NNP NNP , DT JJ JJ NN NN . Other shows will take place in New Jersey ; Tokyo ; Shanghai , China ; Rio De Janeiro , Brazil ; Sydney , Australia ; Johannesburg , South Africa ; Hamburg , Germany ; and Istanbul , Turkey . JJ NNS MD VB NN IN NNP NNP ; NNP ; NNP , NNP ; NNP NNP NNP , NNP ; NNP , NNP ; NNP , NNP NNP ; NNP , NNP ; CC NNP , NNP . Iraqi police say gunmen have killed seven members of a family belonging to Iraq 's minority Yazidi sect . JJ NNS VBP NNS VBP VBN CD NNS IN DT NN VBG TO NNP POS NN NNP NN . Police Monday said the family was assassinated in their home in the town of Sinjar , west of Mosul . NNP NNP VBD DT NN VBD VBN IN PRP$ NN IN DT NN IN NNP , NN IN NNP . The mayor of Sinjar , Dakhil Qasim , said the killings may have been part of what he called a ' social dispute ' - a reference that can be related to honor killings . DT NN IN NNP , NNP NNP , VBD DT NNS MD VB VBN NN IN WP PRP VBD DT `` JJ NN `` : DT NN WDT MD VB VBN TO VB NNS . Yazidis are part of a Kurdish-speaking , pre-Islamic religious sect , and have suffered in the violence of post-invasion Iraq . NNP VBP NN IN DT NN , JJ JJ NN , CC VBP VBN IN DT NN IN JJ NNP . Last year , suicide truck bombers killed at least 400 people in two Yazidi villages . JJ NN , NN NN NNS VBD IN JJS CD NNS IN CD NNP NNS . The explosions were one of the deadliest coordinated militant attacks in Iraq since the U.S.-led war began in 2003 . DT NNS VBD CD IN DT JJS VBN JJ NNS IN NNP IN DT JJ NN VBD IN CD . In a separate attack Monday , Iraqi police say a suicide bomber killed at least eight policemen at a checkpoint west of Baghdad . IN DT JJ NN NNP , JJ NNS VBP DT NN NN VBD IN JJS CD NNS IN DT NN NN IN NNP . A top Iranian nuclear official says Iran will resume nuclear research activities in the coming days , ending a suspension declared more than two years ago . DT JJ JJ JJ NN VBZ NNP MD VB JJ NN NNS IN DT JJ NNS , VBG DT NN VBD JJR IN CD NNS RB . Mohammad Saeedi , the deputy chief of Iran 's Atomic Energy Organization , says Tehran has informed the International Atomic Energy Agency by letter of its intention to restart research into nuclear fuel technology . NNP NNP , DT NN NN IN NNP POS NNP NNP NNP , VBZ NNP VBZ VBN DT NNP NNP NNP NNP IN NN IN PRP$ NN TO VB NN IN JJ NN NN . Speaking Tuesday in Tehran , Mr. Saeedi did not identify the new research . VBG NNP IN NNP , NNP NNP VBD RB VB DT JJ NN . But he stressed that no decision has been made to resume the actual production of nuclear fuel . CC PRP VBD IN DT NN VBZ VBN VBN TO VB DT JJ NN IN JJ NN . Iran suspended uranium enrichment activities in October of 2003 , under intense international pressure . NNP VBD NN NN NNS IN NNP IN CD , IN JJ JJ NN . Both the United States and the European Union have voiced grave concerns that Tehran is seeking highly enriched uranium to make an atomic bomb . DT DT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS IN NNP VBZ VBG RB VBN NN TO VB DT JJ NN . Tehran says it wants a lower grade of the enriched ore to fuel a nuclear power plant . NNP VBZ PRP VBZ DT JJR NN IN DT VBN NN TO VB DT JJ NN NN . Tamil Tiger rebels have rejected an offer from the Sri Lankan government to hold another round of peace talks because of a dispute over the venue for the session . NNP NNP NNS VBP VBN DT NN IN DT NNP NNP NN TO VB DT NN IN NN NNS IN IN DT NN IN DT NN IN DT NN . The government has suggested talks to take place in any Asian country . DT NN VBZ VBN NNS TO VB NN IN DT JJ NN . The rebels have turned down the offer , insisting that the talks be held in Norway . DT NNS VBP VBN RP DT NN , VBG IN DT NNS VB VBN IN NNP . The rejection comes just days after Japan offered to host the peace talks . DT NN VBZ RB NNS IN NNP VBD TO VB DT NN NNS . The rebels have been fighting for a separate homeland for the ethnic Tamil minority for more than two decades . DT NNS VBP VBN VBG IN DT JJ NN IN DT JJ NNP NN IN JJR IN CD NNS . The conflict claimed more 64,000 lives before Norway brokered a cease-fire between the rebels and the government that took effect in 2002 . DT NN VBD RBR CD NNS IN NNP VBD DT NN IN DT NNS CC DT NN WDT VBD NN IN CD . The deadlocked talks are threatening to further disrupt the already shaky truce . DT JJ NNS VBP VBG TO RB VB DT RB JJ NN . A couple of long-standing trade disputes saw new actions on Monday . DT NN IN JJ NN NNS VBD JJ NNS IN NNP . The World Trade Organization ruled that a new European Union tariff on imported bananas violates international agreements . DT NNP NNP NNP VBD IN DT JJ NNP NNP NN IN VBN NNS VBZ JJ NNS . Nine Latin American nations said the $ 279-a-ton levy would seriously harm their ability to export the fruit . CD NNP NNP NNS VBD DT $ JJ NN MD RB VB PRP$ NN TO VB DT NN . In a separate WTO case , Japan said it will slap 15 percent levies on U.S.-made steel imports at the beginning of September . IN DT JJ NNP NN , NNP VBD PRP MD VB CD NN NNS IN JJ NN NNS IN DT NN IN NNP . The move could cost American industry up to $ 50 million , and is retaliation for U.S. measures that the WTO has said unlawfully protected the U.S. steel industry . DT NN MD VB JJ NN IN TO $ CD CD , CC VBZ NN IN NNP NNS IN DT NNP VBZ VBN RB VBN DT NNP NN NN . Washington placed tariffs on certain steel products from Japan , Brazil and other nations several years ago , amid allegations that those nations sold their products at unfairly low prices . NNP VBD NNS IN JJ NN NNS IN NNP , NNP CC JJ NNS JJ NNS RB , IN NNS IN DT NNS VBD PRP$ NNS IN RB JJ NNS . The United Nations reports heavy fighting between Ugandan rebels and a joint U.N.-Congolese force in the eastern Democratic Republic of Congo . DT NNP NNPS VBZ JJ NN IN JJ NNS CC DT JJ JJ NN IN DT JJ JJ NNP IN NNP . The U.N. mission in Congo says 35 Ugandan rebels have been killed , along with three Congolese government troops and an Indian U.N. peacekeeping soldier . DT NNP NN IN NNP VBZ CD JJ NNS VBP VBN VBN , IN IN CD JJ NN NNS CC DT JJ NNP NN NN . The U.N.-Congolese force attacked the rebels Saturday south of Beni in North Kivu province . DT JJ NN VBD DT NNS NNP NN IN NNP IN NNP NNP NN . U.N. officials say the offensive was launched after the rebels , known as the Allied Democratic Forces , rejected repeated attempts to negotiate their return to Uganda . NNP NNS VBP DT NN VBD VBN IN DT NNS , VBN IN DT NNP JJ NNS , VBD VBN NNS TO VB PRP$ NN TO NNP . This is the second U.N.-Congolese offensive against militias in the region since last week 's constitutional referendum . DT VBZ DT JJ JJ NN IN NNS IN DT NN IN JJ NN POS JJ NN . The troops hope to assert government control in areas dominated by foreign-backed rebels or local militias . DT NNS VBP TO VB NN NN IN NNS VBN IN JJ NNS CC JJ NNS . U.N. and Congolese troops captured the town of Nioka from ethnic Lendu rebels on Saturday . NNP CC JJ NNS VBD DT NN IN NNP IN JJ NNP NNS IN NNP . A car bomb has exploded outside a Shi'ite mosque in the Iraqi town of Hillah , killing at least 25 people as Iraqi Shi'ites observed the first day of the holy month of Ramadan . DT NN NN VBZ VBN IN DT NNP NN IN DT JJ NN IN NNP , VBG IN JJS CD NNS IN JJ NNP VBD DT JJ NN IN DT JJ NN IN NNP . Police say nearly 90 others were wounded Wednesday evening as the faithful gathered at the mosque to pray before breaking their fast . NNS VBP RB CD NNS VBD VBN NNP NN IN DT NN VBD IN DT NN TO VB IN VBG PRP$ JJ . The attack comes 10 days before Iraqis are scheduled to vote in a referendum on a new constitution , and concerns are high about a possible upsurge in violence . DT NN VBZ CD NNS IN NNS VBP VBN TO VB IN DT NN IN DT JJ NN , CC NNS VBP JJ IN DT JJ NN IN NN . Earlier , parliament , under international pressure , voted to reverse controversial new election rules that Shi'ite and Kurdish legislators were accused of passing to ensure the document 's success . RB , NN , IN JJ NN , VBD TO VB JJ JJ NN NNS IN NNP CC NNP NNS VBD VBN IN VBG TO VB DT NN POS NN . Also Wednesday , a video dated September 12 was posted on the Internet and attributed to the Ansar al-Sunna militant group . RB NNP , DT NN VBN NNP CD VBD VBN IN DT NN CC VBN TO DT NNP NNP NN NN . It showed the apparent beheading of what the group claimed were two Iraqis who spied for the U.S. military . PRP VBD DT JJ NN IN WP DT NN VBD VBD CD NNS WP VBD IN DT NNP NN . Burundi has confirmed it sent an additional 850 soldiers to Somalia last week to bolster the African Union peacekeeping force . NNP VBZ VBN PRP VBD DT JJ CD NNS TO NNP JJ NN TO VB DT NNP NNP VBG NN . The deployment brings the AU force in the capital , Mogadishu , up to its full authorized strength of 8,000 . DT NN VBZ DT NNP NN IN DT NN , NNP , RB TO PRP$ JJ JJ NN IN CD . Officials with the Burundian army and the African Union mission , known as AMISOM , confirmed the deployment . NNS IN DT JJ NN CC DT NNP NNP NN , VBN IN NNP , VBD DT NN . The peacekeeping force helps the U.N.-backed Somali government hold off a fierce Islamist insurgency . DT NN NN VBZ DT JJ JJ NN VB RP DT JJ NN NN . Uganda , which provides the bulk of the AU troops , has offered to increase the force 's size to 20,000 , if other parties will provide funding , logistics , and equipment . NNP , WDT VBZ DT NN IN DT NNP NNS , VBZ VBN TO VB DT NN POS NN TO CD , IN JJ NNS MD VB NN , NNS , CC NN . Somalia has dealt with nearly two decades of violence and lawlessness since the fall of the last stable central government . NNP VBZ VBN IN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ JJ NN . Two journalists in Kenya have pleaded innocent to charges of inciting the public with an opinion article on the political struggle around the nation 's upcoming constitutional referendum . CD NNS IN NNP VBP VBN JJ TO NNS IN VBG DT NN IN DT NN NN IN DT JJ NN IN DT NN POS JJ JJ NN . The managing editor of the Kenya Times , Onyango Omollo , and reporter David Ochami were released on bail after appearing in court Thursday . DT NN NN IN DT NNP NNP , NNP NNP , CC NN NNP NNP VBD VBN IN NN IN VBG IN NN NNP . Their case will be heard November 8 . PRP$ NN MD VB VBN NNP CD . The charges against them stem from an opinion article on Sunday entitled , ' Coups in Africa Do Not Occur Out of Nothing . ' DT NNS IN PRP VBP IN DT NN NN IN NNP VBD , `` NNS IN NNP VBP RB NNP NNP IN DT . `` It focused on comments by ministers who have accused opponents of the draft constitution of wanting to overthrow President Mwai Kibaki . PRP VBD IN NNS IN NNS WP VBP VBN NNS IN DT NN NN IN VBG TO VB NNP NNP NNP . On November 21 , Kenyans are scheduled to vote on the document - in which the president retains his wide-ranging powers . IN NNP CD , NNS VBP VBN TO VB IN DT NN : IN WDT DT NN VBZ PRP$ JJ NNS . Rallies for and against the constitution recently have turned violent . NNS IN CC IN DT NN RB VBP VBN JJ . A top Iranian lawmaker says Supreme Leader Ayatollah Ali Khamenei played a role in parliament 's approval Thursday of nominees for President Mahmoud Ahmadinejad 's Cabinet . DT JJ JJ NN VBZ NNP NNP NNP NNP NNP VBD DT NN IN NN POS NN NNP IN NNS IN NNP NNP NNP POS NNP . Deputy speaker Mohammad Reza Bahonar said Friday the supreme leader had privately urged lawmakers to approve the nominees . NNP NN NNP NNP NNP VBD NNP DT JJ NN VBD RB VBN NNS TO VB DT NNS . Bahonar says at least eight of the nominees may have been rejected if Mr. Khamenei had not intervened . NNP VBZ IN JJS CD IN DT NNS MD VB VBN VBN IN NNP NNP VBD RB VBN . Parliament approved 18 nominees put forward by President Ahmadinejad for his 21-member Cabinet , including Ahmad Vahidi , a defense minister , accused of involvement in a 1994 bombing in Argentina . NNP VBD CD NNS VBN RB IN NNP NNP IN PRP$ JJ NNP , VBG NNP NNP , DT NN NN , VBN IN NN IN DT CD NN IN NNP . Lawmakers also approved Iran 's first female Cabinet member Marzieh Vahid Dastjerdi since the 1979 Islamic Revolution . NNS RB VBD NNP POS JJ JJ NNP NN NNP NNP NNP IN DT CD NNP NNP . Mr. Ahmadinejad was re-elected in a controversial vote in June . NNP NNP VBD VBN IN DT JJ NN IN NNP . Government opponents say the election was fraudulent , and it set off days of street demonstrations . NN NNS VBP DT NN VBD JJ , CC PRP VBD RP NNS IN NN NNS . Thousands of Iranians were arrested for protesting the outcome of the election . NNS IN NNS VBD VBN IN VBG DT NN IN DT NN . Prominent former judges and lawmakers in Pakistan are urging President Pervez Musharraf to quit his army post and let the Supreme Court hold elections through a neutral caretaker administration . NNP JJ NNS CC NNS IN NNP VBP VBG NNP NNP NNP TO VB PRP$ NN NN CC VB DT NNP NNP NN NNS IN DT JJ NN NN . In a letter to General Musharraf , they say the president has failed to respect the oath he took as army chief that he would not indulge in politics . IN DT NN TO NNP NNP , PRP VBP DT NN VBZ VBN TO VB DT NN PRP VBD IN NN NN IN PRP MD RB VB IN NNS . Two former chief justices of Pakistan , Sajjad Ali Shah and Seeduzzaman Siddiqui , and two former National Assembly speakers , Elahi Bakhsh Soomro and Syed Fakhar Imam , are among the eight prominent personalities who signed the letter . CD JJ JJ NNS IN NNP , NNP NNP NNP CC NNP NNP , CC CD JJ NNP NNP NNS , NNP NNP NNP CC NNP NNP NNP , VBP IN DT CD JJ NNS WP VBD DT NN . Last month , a similar letter was sent to President Musharraf by 18 prominent politicians , including several former aides to the military leader . JJ NN , DT JJ NN VBD VBN TO NNP NNP IN CD JJ NNS , VBG JJ JJ NNS TO DT JJ NN . The letters come amid criticism of the government in parliament for alleged corruption , a charge denied by the government . DT NNS VBP IN NN IN DT NN IN NN IN JJ NN , DT NN VBN IN DT NN . The opposition in parliament has said it plans to present a no-confidence motion on August 23 . DT NN IN NN VBZ VBN PRP VBZ TO VB DT JJ NN IN NNP CD . The U.S. military says American and Iraqi forces fighting insurgents near the Syrian border have cleared most of the western city of Ubaydi of insurgents , but pockets of resistance remain . DT NNP NN VBZ NNP CC JJ NNS VBG NNS IN DT JJ NN VBP VBN JJS IN DT JJ NN IN NNP IN NNS , CC NNS IN NN VBP . The military says coalition forces have encountered some of the heaviest fighting in Ubaydi since Operation Steel Curtain began 10 days ago . DT JJ VBZ NN NNS VBP VBN DT IN DT JJS NN IN NNP IN NNP NNP NNP VBD CD NNS RB . Officials say three Marines and 80 insurgents have been killed since coalition forces entered the city on Monday . NNS VBP CD NNS CC CD NNS VBP VBN VBN IN NN NNS VBD DT NN IN NNP . They have found houses and cars rigged with explosives , other explosive devices and mines , and weapons caches . PRP VBP VBN NNS CC NNS VBD IN NNS , JJ JJ NNS CC NNS , CC NNS NNS . The operation is intended to restore security along the Euphrates River Valley ahead of next month 's Iraqi parliamentary elections . DT NN VBZ VBN TO VB NN IN DT NNP NNP NNP RB IN JJ NN POS JJ JJ NNS . Meanwhile , insurgent attacks in Baghdad and Kirkuk killed eight policemen Tuesday . RB , JJ NNS IN NNP CC NNP VBD CD NNS NNP . And coalition forces say they captured a high-level Baath Party leader Hamid Sharki Shadid in Diyala province . CC NN NNS VBP PRP VBD DT JJ NNP NNP NN NNP NNP NNP IN NNP NN . The eldest son of North Korean leader Kim Jong il said Saturday he has no interest in leading the country and only his father can choose a successor . DT JJS NN IN JJ JJ NN NNP NNP NNP VBD NNP PRP VBZ DT NN IN VBG DT NN CC RB PRP$ NN MD VB DT NN . Kim Jong Nam 's comments came in Beijing while on a personal visit to China . NNP NNP NNP POS NNS VBD IN NNP IN IN DT JJ NN TO NNP . South Korea 's Yonhap news agency cited unnamed intelligence sources earlier this month in reporting Mr. Kim had selected his youngest son , Kim Jong Un , as his eventual successor . NNP NNP POS NNP NN NN VBD JJ NN NNS RBR DT NN IN VBG NNP NNP VBD VBN PRP$ JJS NN , NNP NNP NNP , IN PRP$ JJ NN . Chinese state media on Friday reported Mr. Kim met a visiting Chinese envoy in Pyongyang . JJ NN NNS IN NNP VBD NNP NNP VBD DT VBG JJ NN IN NNP . It was Mr. Kim 's first reported encounter with a foreign dignitary since August , when U.S. and South Korean officials say he suffered a stroke . PRP VBD NNP NNP POS JJ VBN NN IN DT JJ NN IN NNP , WRB NNP CC JJ JJ NNS VBP PRP VBD DT NN . North Korea has denied the claim and released a series of undated photos to show Mr. Kim is in good health . NNP NNP VBZ VBN DT NN CC VBD DT NN IN JJ NNS TO VB NNP NNP VBZ IN JJ NN . U.S.-based Intel Corporation , the world 's largest computer-chip manufacturer , has announced plans to invest one billion dollars in a new plant in Vietnam . JJ NNP NNP , DT NN POS JJS NN NN , VBZ VBN NNS TO VB CD CD NNS IN DT JJ NN IN NNP . Intel Vice President Brian Krzanich said Friday that , when completed in 2009 , the plant will be anywhere from 14,000 to 46,000 square meters and will employ up to 4,000 people . NNP NNP NNP NNP NNP VBD NNP IN , WRB VBN IN CD , DT NN MD VB RB IN CD TO CD JJ NNS CC MD VB RP TO CD NNS . It will be located in an industrial park outside Ho Chi Minh City . PRP MD VB VBN IN DT JJ NN IN NNP NNP NNP NNP . The company originally announced plans for the plant in February . DT NN RB VBD NNS IN DT NN IN NNP . At that time it had been planned to be a 300-million-dollar project . IN DT NN PRP VBD VBN VBN TO VB DT JJ NN . Intel 's announcement comes the same week the World Trade Organization ( WTO ) voted to accept Vietnam as a member , and one week before Hanoi is scheduled to host the Asia Pacific Economic Cooperation Summit . NNP POS NN VBZ DT JJ NN DT NNP NNP NNP LRB NNP RRB VBD TO VB NNP IN DT NN , CC CD NN IN NNP VBZ VBN TO VB DT NNP NNP NNP NNP NNP . Intel makes computer chips for use in personal computers and other electronic devices . NNP VBZ NN NNS IN NN IN JJ NNS CC JJ JJ NNS . Pakistan has closed the main supply route in the Khyber Pass for NATO forces operating in Afghanistan , as Pakistan launched an offensive against militants in the region . NNP VBZ VBN DT JJ NN NN IN DT NNP NNP IN NNP NNS VBG IN NNP , IN NNP VBD DT NN IN NNS IN DT NN . Tariq Hayat , Pakistan 's top administrator for the tribal Khyber region , told reporters Tuesday that helicopter gunships , tanks and artillery units have deployed in the area near the Afghan border . NNP NNP , NNP POS JJ NN IN DT JJ NNP NN , VBD NNS NNP IN NN NNS , NNS CC NN NNS VBP VBN IN DT NN IN DT JJ NN . Hayat says supplies to NATO forces through the pass will be ' suspended ' until the operation is complete . NNP VBZ NNS TO NNP NNS IN DT NN MD VB `` VBN `` IN DT NN VBZ JJ . Militants have carried out a series of attacks on NATO and U.S. military convoys along the vital supply route in recent weeks . NNS VBP VBN RP DT NN IN NNS IN NNP CC NNP JJ NNS IN DT JJ NN NN IN JJ NNS . The supplies are delivered through the Khyber Pass after arriving in the Pakistani port city of Karachi . DT NNS VBP VBN IN DT NNP NNP IN VBG IN DT JJ JJ NN IN NNP . Militants have also destroyed several supply depots in northwestern Pakistan . NNS VBP RB VBN JJ NN NNS IN JJ NNP . For the first time , Americans can go on the Internet to find out more about the quality of care at their local hospitals . IN DT JJ NN , NNS MD VB IN DT NN TO VB RP RBR IN DT NN IN NN IN PRP$ JJ NNS . The data also includes hospital death rates for the most common fatal illnesses , such as heart attacks , heart failure and pneumonia . DT NNS RB VBZ NN NN NNS IN DT RBS JJ JJ NNS , JJ IN NN NNS , NN NN CC NN . In the case of children , the survey also evaluates the medical treatment for asthma . IN DT NN IN NNS , DT NN RB VBZ DT JJ NN IN NN . VOA 's Melinda Smith says this information measures whether a hospital is performing up to national standards . NNP POS NNP NNP VBZ DT NN VBZ IN DT NN VBZ VBG RP TO JJ NNS . The Spanish government says police have seized three tons of cocaine from a cargo ship off the Canary Islands and arrested 16 people . DT JJ NN VBZ NNS VBP VBN CD NNS IN NN IN DT NN NN IN DT NNP NNP CC VBN CD NNS . Police boarded the Panamanian-flagged cargo ship Thursday . NNP VBD DT JJ NN NN NNP . The raid was the culmination of an investigation that lasted over a year . DT NN VBD DT NN IN DT NN WDT VBD IN DT NN . The vessel 's entire ten-man crew was taken into custody , as were six other people in the Canary Islands and Madrid . DT NN POS JJ JJ NN VBD VBN IN NN , IN VBD CD JJ NNS IN DT NNP NNP CC NNP . Cuban President Fidel Castro says he is not well enough to attend celebrations in Havana to belatedly mark his 80th birthday . JJ NNP NNP NNP VBZ PRP VBZ RB RB JJ TO VB NNS IN NNP TO RB VB PRP$ JJ NN . Mr. Castro made the comments late Tuesday in a statement read by a presenter to hundreds of people attending a gala in the Cuban capital . NNP NNP VBD DT NNS JJ NNP IN DT NN VBN IN DT NN TO NNS IN NNS VBG DT NN IN DT JJ NN . The Cuban leader turned 80 on August 13 . DT JJ NN VBD CD IN NNP CD . Celebrations to mark the occasion were postponed after he underwent intestinal surgery that forced him to hand over power temporarily to his younger brother , Raul , in late July . NNS TO VB DT NN VBD VBN IN PRP VBD JJ NN WDT VBD PRP TO VB RP NN RB TO PRP$ JJR NN , NNP , IN JJ NNP . Cuban officials say more than 1,300 people from around the world are expected to attend the five-day celebration . JJ NNS VBP JJR IN CD NNS IN IN DT NN VBP VBN TO VB DT JJ NN . They include Bolivian President Evo Morales , Haitian President Rene Preval and Nicaraguan President-elect Daniel Ortega . PRP VBP JJ NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP . Venezuelan President Hugo Chavez is not expected to attend because he faces a national election on Sunday . JJ NNP NNP NNP VBZ RB VBN TO VB IN PRP VBZ DT JJ NN IN NNP . The festivities in Cuba culminate on Saturday with a military parade in Havana . DT NNS IN NNP NN IN NNP IN DT JJ NN IN NNP . Iraqi President Jalal Talabani says leaders of the country 's political parties have agreed to form a national unity government - but that the details are yet to be worked out . JJ NNP NNP NNP VBZ NNS IN DT NN POS JJ NNS VBP VBN TO VB DT JJ NN NN : CC IN DT NNS VBP RB TO VB VBN RP . He made the comments after meeting Saturday in Baghdad with British Foreign Secretary Jack Straw - who also urged Shi'ite , Kurdish and Sunni leaders to form a broad-based unity government . PRP VBD DT NNS IN VBG NNP IN NNP IN NNP NNP NNP NNP NNP : WP RB VBD NNP , NNP CC NNP NNS TO VB DT JJ NN NN . In another development , police say a suicide car bomber attacked a passing police patrol in southeast Baghdad , wounding at least nine people . IN DT NN , NNS VBP DT NN NN NN VBD DT NN NN NN IN NN NNP , VBG IN JJS CD NNS . Meanwhile , police say an American journalist has been kidnapped and her translator killed in Baghdad . RB , NNS VBP DT JJ NN VBZ VBN VBN CC PRP$ NN VBN IN NNP . Authorities say the journalist - who was not identified - was en route to a meeting with a Sunni Arab leader Saturday , when gunmen stopped her car in west Baghdad . NNS VBP DT NN : WP VBD RB VBN : VBD IN NN TO DT NN IN DT NNP NNP NN NNP , WRB NNS VBD PRP$ NN IN NN NNP . Even though demand has fallen nearly two percent since last year , gasoline prices continued to break records across the United States this week . RB IN NN VBZ VBN RB CD NN IN JJ NN , NN NNS VBD TO VB NNS IN DT NNP NNPS DT NN . And the U.S. Oil Price Information Service warns that prices will go higher as the peak driving season approaches . CC DT NNP NNP NNP NNP NNP VBZ IN NNS MD VB RBR IN DT NN VBG NN NNS . U.S. lawmakers are busy looking for solutions , but some fear it may be too little , too late to help some Americans . NNP NNS VBP JJ VBG IN NNS , CC DT VBP PRP MD VB RB JJ , RB JJ TO VB DT NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Burma 's military junta has freed well-known journalist and key opposition figure U Win Tin and other prominent political figures in a mass release of prisoners . NNP POS JJ NN VBZ VBN JJ NN CC JJ NN NN NNP NNP NNP CC JJ JJ JJ NNS IN DT NN NN IN NNS . The ailing 74-year-old prize-winning writer , a member of the National League for Democracy headed by Aung San Suu Kyi , has spent the last 15 years in prison . DT JJ JJ JJ NN , DT NN IN DT NNP NNP IN NN VBN IN NNP NNP NNP NNP , VBZ VBN DT JJ CD NNS IN NN . Also freed were three NLD Members of Parliament Major Kyaw San , Ohn Maung , and Toe Bo and two other NLD members , Aung Zin and Khun Sai . RB VBN VBD CD NNP NNS IN NNP NNP NNP NNP , NNP NNP , CC NNP NNP CC CD JJ NNP NNS , NNP NNP CC NNP NNP . The junta announced Thursday evening that it would release 3,937 people who may have been wrongfully jailed by the recently disbanded National Intelligence Bureau . DT NN VBD NNP NN IN PRP MD VB CD NNS WP MD VB VBN RB VBN IN DT RB VBN NNP NNP NNP . General Khin Nyunt , the prime minister purged in mid-October , headed the feared NIB . NNP NNP NNP , DT JJ NN VBN IN NNP , VBD DT VBN NNP . He has been charged with corruption . PRP VBZ VBN VBN IN NN . Mexican President Vicente Fox has pledged to send buses to rescue thousands of tourists stranded in resort areas along the Yucatan peninsula that were hit hard by Hurricane Wilma . JJ NNP NNP NNP VBZ VBN TO VB NNS TO VB NNS IN NNS VBN IN NN NNS IN DT NNP NN WDT VBD VBN RB IN NNP NNP . President Fox toured the resort city of Cancun , where luxury hotels have been destroyed by the storm and shopping centers emptied by looters in its wake . NNP NNP VBD DT NN NN IN NNP , WRB NN NNS VBP VBN VBN IN DT NN CC NN NNS VBN IN NNS IN PRP$ NN . Mr. Fox said Cancun 's airport would not open until Tuesday and that tourists would be bused to the city of Merida and flown out from there . NNP NNP VBD NNP POS NN MD RB VB IN NNP CC IN NNS MD VB VBN TO DT NN IN NNP CC VBN RP IN RB . As many as 30,000 tourists faced a fourth night in crowded shelters Monday in Cancun and other resorts . RB JJ IN CD NNS VBD DT JJ NN IN JJ NNS NNP IN NNP CC JJ NNS . The storm is blamed for at least seven deaths in Mexico . DT NN VBZ VBN IN IN JJS CD NNS IN NNP . Meanwhile , rescue teams in rafts and boats pulled people from flooded homes in the Cuban capital , Havana , Monday after seas swollen by Wilma submerged parts of the city under water . RB , NN NNS IN NNS CC NNS VBD NNS IN VBN NNS IN DT JJ NN , NNP , NNP IN NNS VBN IN NNP VBD NNS IN DT NN IN NN . The African Union 's Peace and Security Council has affirmed its continuing support for the deployment of United Nations peacekeepers in Sudan 's violence-plagued Darfur region . DT NNP NNP POS NNP CC NNP NNP VBZ VBN PRP$ VBG NN IN DT NN IN NNP NNP NNS IN NNP POS JJ NNP NN . In a communique issued in Banjul , The Gambia , ahead of Saturday 's AU summit , the council said it is targeting September 30 for the U.N. to take over the African Union 's peacekeeping mission in Darfur . IN DT NN VBN IN NNP , DT NNP , RB IN NNP POS NNP NN , DT NN VBD PRP VBZ VBG NNP CD IN DT NNP TO VB RP DT NNP NNP POS VBG NN IN NNP . The Council also announced it would impose travel bans and freeze the assets of people undermining or obstructing the Darfur Peace Agreement of May 5 , or violating its ceasefire . DT NNP RB VBD PRP MD VB NN NNS CC VB DT NNS IN NNS VBG CC VBG DT NNP NNP NNP IN NNP CD , CC VBG PRP$ NN . Sudan 's President Omar al-Bashir has repeatedly refused to allow U.N. peacekeepers into the country . NNP POS NNP NNP NNP VBZ RB VBN TO VB NNP NNS IN DT NN . Mr. Bashir and U.N. Secretary-General Kofi Annan are expected to discuss the situation at the African Union summit taking place in The Gambia Saturday and Sunday . NNP NNP CC NNP NNP NNP NNP VBP VBN TO VB DT NN IN DT NNP NNP NN VBG NN IN DT NNP NNP CC NNP . President Bush has used his weekly radio address to repeat a pledge that he will focus during his second term on the challenges facing the American economy . NNP NNP VBZ VBN PRP$ JJ NN NN TO VB DT NN IN PRP MD VB IN PRP$ JJ NN IN DT NNS VBG DT JJ NN . Mr. Bush used a two-day economic conference this week to promote his economic plan , which includes a proposal for privatizing the federal retirement system known as Social Security . NNP NNP VBD DT JJ JJ NN DT NN TO VB PRP$ JJ NN , WDT VBZ DT NN IN VBG DT JJ NN NN VBN IN NNP NNP . In his radio address Saturday , the president repeated earlier calls for Congress to pass legislation that would make his tax cuts permanent and would simplify the tax code . IN PRP$ NN NN NNP , DT NN VBN JJR NNS IN NNP TO VB NN WDT MD VB PRP$ NN NNS JJ CC MD VB DT NN NN . He promised not to ignore the challenges that face the U.S. economy , like record high budget deficits and a net loss of jobs since he took office . PRP VBD RB TO VB DT NNS WDT VBP DT NNP NN , IN NN JJ NN NNS CC DT JJ NN IN NNS IN PRP VBD NN . The president pledged to work with both Republicans and Democrats in Congress to , in his words , keep the economy innovative and competitive . DT NN VBD TO VB IN DT NNPS CC NNPS IN NNP TO , IN PRP$ NNS , VB DT NN JJ CC JJ . Hospital officials in Afghanistan say an autopsy has confirmed that two bodies found in the southern part of the country are those of missing Japanese tourists . NN NNS IN NNP VBP DT NN VBZ VBN IN CD NNS VBN IN DT JJ NN IN DT NN VBP DT IN VBG JJ NNS . Hassan Halemi , head of the pathology department at Kabul University where the autopsies were carried out , said hours of testing Saturday confirmed the identities of teachers Jun Fukusho and Shinobu Hasegawa . NNP NNP , NN IN DT NN NN IN NNP NNP WRB DT NNS VBD VBN RP , VBD NNS IN NN NNP VBD DT NNS IN NNS NNP NNP CC NNP NNP . The pair had been shot and their bodies dumped near the Spin Boldak highway , which links the former Taleban stronghold of Kandahar with the Pakistani border town of Chaman . DT NN VBD VBN VBN CC PRP$ NNS VBN IN DT NNP NNP NN , WDT VBZ DT JJ NNP NN IN NNP IN DT JJ NN NN IN NNP . Officials say the two missing Japanese crossed into Afghanistan from Pakistan August 8 , and were believed to be sight-seeing . NNS VBP DT CD JJ NNS VBD IN NNP IN NNP NNP CD , CC VBD VBN TO VB JJ . The pair had not been seen or heard from since . DT NN VBD RB VBN VBN CC VBN IN IN . President Bush says he expects that Iran 's new president , Mahmoud Ahmadinejad , will receive a U.S. visa to attend an annual United Nations meet in New York City next month . NNP NNP VBZ PRP VBZ IN NNP POS JJ NN , NNP NNP , MD VB DT NNP NN TO VB DT JJ NNP NNPS VBP IN NNP NNP NNP JJ NN . Mr. Bush made the remark Thursday after meeting at his Crawford , Texas ranch with his top defense and foreign policy advisors , including Secretary of State Condoleezza Rice and Defense Secretary Donald Rumsfeld . NNP NNP VBD DT NN NNP IN VBG IN PRP$ NNP , NNP NN IN PRP$ JJ NN CC JJ NN NNS , VBG NNP IN NNP NNP NNP CC NNP NNP NNP NNP . The president also praised the International Atomic Energy Agency for demanding Iran suspend its recently resumed nuclear activity . DT NN RB VBD DT NNP NNP NNP NNP IN VBG NNP VB PRP$ RB VBN JJ NN . On Iraq , the president said he expects the country 's new constitution will be completed by August 15 . IN NNP , DT NN VBD PRP VBZ DT NN POS JJ NN MD VB VBN IN NNP CD . He also said that no decision has been made on U.S. troop reductions in Iraq . PRP RB VBD IN DT NN VBZ VBN VBN IN NNP NN NNS IN NNP . Mr. Bush added that he understands the frustration of anti-war activists and Americans who want a timetable for troop withdrawals from Iraq . NNP NNP VBD IN PRP VBZ DT NN IN JJ NNS CC NNS WP VBP DT NN IN NN NNS IN NNP . Recent opinion polls indicate that Americans are becoming increasingly disillusioned by the rate of progress in Iraq . JJ NN NNS VBP IN NNS VBP VBG RB VBN IN DT NN IN NN IN NNP . The Olympic torch will make two trips to the world 's highest peak as part of the build-up to the 2008 Summer Games in Beijing , China . DT NNP NN MD VB CD NNS TO DT NN POS JJS NN IN NN IN DT NN TO DT CD NNPS NNPS IN NNP , NNP . The Olympic flame will go to the top of Mount Everest twice , once as part of a run-through in 2007 and the second time during the actual torch relay in 2008 . DT NNP NN MD VB TO DT NN IN NNP NNP RB , RB IN NN IN DT JJ IN CD CC DT JJ NN IN DT JJ NN NN IN CD . Chinese Olympic officials say the torch , which is being specially designed to burn at such a high altitude , is in the final stage of design . JJ NNP NNS VBP DT NN , WDT VBZ VBG RB VBN TO VB IN PDT DT JJ NN , VBZ IN DT JJ NN IN NN . The full schedule of the torch relay , which still has to be approved by the International Olympic Committee , has not been released . DT JJ NN IN DT NN NN , WDT RB VBZ TO VB VBN IN DT NNP NNP NNP , VBZ RB VBN VBN . U.S. prosecutors have begun closing arguments in the trial of Michael Jackson , accused of giving alcohol to a boy and then molesting him . NNP NNS VBP VBN VBG NNS IN DT NN IN NNP NNP , VBN IN VBG NN TO DT NN CC RB VBG PRP . Prosecutor Ron Zonen told jurors Thursday , the case is about the exploitation and abuse of a 13-year-old cancer survivor at Mr. Jackson 's Neverland Ranch . NNP NNP NNP VBD NNS NNP , DT NN VBZ IN DT NN CC NN IN DT JJ NN NN IN NNP NNP POS NNP NNP . The judge Rodney Melville has said he will hand the case to the jury Friday , after the pop star 's defense team makes its closing arguments . DT NN NNP NNP VBZ VBN PRP MD VB DT NN TO DT NN NNP , IN DT NN NN POS NN NN VBZ PRP$ NN NNS . Mr. Jackson 's lawyers have questioned the credibility of the boy 's mother , saying she filed FALSE income tax returns and tried to extort money from other celebrities . NNP NNP POS NNS VBP VBN DT NN IN DT NN POS NN , VBG PRP VBD JJ NN NN NNS CC VBD TO VB NN IN JJ NNS . Last week , prosecutors showed a 2003 police video in which the boy said the pop star repeatedly molested him after nights of heavy drinking . JJ NN , NNS VBD DT CD NN NN IN WDT DT NN VBD DT NN NN RB VBD PRP IN NNS IN JJ NN . Hundreds of Somalis have marched in the capital , Mogadishu , to criticize the possible deployment of peacekeepers from Ethiopia and Djibouti . NNS IN NNS VBP VBN IN DT NN , NNP , TO VB DT JJ NN IN NNS IN NNP CC NNP . The city 's self-declared governor Abdullahi Ganey Firimbi helped organize Sunday 's demonstration , the latest in a series of protest marches . DT NN POS JJ NN NNP NNP NNP VBD VB NNP POS NN , DT JJS IN DT NN IN NN NNS . Some members of Somalia 's new government have rejected plans for an African peacekeeping force that includes troops from nations bordering Somalia . DT NNS IN NNP POS JJ NN VBP VBN NNS IN DT JJ NN NN WDT VBZ NNS IN NNS VBG NNP . Some clan leaders say no foreign troops at all should be allowed in the country . DT NN NNS VBP DT JJ NNS IN DT MD VB VBN IN DT NN . Somalia 's President Abdullahi Yusuf Ahmed has said international troops are needed to protect the new government when it moves home from its current base in Kenya this year . NNP POS NNP NNP NNP NNP VBZ VBN JJ NNS VBP VBN TO VB DT JJ NN WRB PRP VBZ NN IN PRP$ JJ NN IN NNP DT NN . Thursday , the U.S. State Department said a regional force should not include Somalia 's immediate neighbors , due to perceptions of bias . NNP , DT NNP NNP NNP VBD DT JJ NN MD RB VB NNP POS JJ NNS , JJ TO NNS IN NN . A U.S. Defense Department plan to cut military bases across the United States has suffered two setbacks . DT NNP NNP NNP NN TO VB JJ NNS IN DT NNP NNPS VBZ VBN CD NNS . A federal base-closing panel voted Friday to keep open South Dakota 's Ellsworth Air Base . DT JJ NN NN VBD NNP TO VB JJ NNP NNP POS NNP NNP NNP . It was a major political victory for the state 's new Republican senator , John Thune , who defeated last year the Senate 's top Democrat , former Minority Leader Tom Daschle . PRP VBD DT JJ JJ NN IN DT NN POS JJ JJ NN , NNP NNP , WP VBD JJ NN DT NNP POS JJ NNP , JJ NNP NNP NNP NNP . During campaigning , Mr. Thune argued he would be in a better position to save Ellsworth - South Dakota 's second-largest employer and home to a fleet of B-1 bombers . IN NN , NNP NNP VBD PRP MD VB IN DT JJR NN TO VB NNP IN NNP NNP POS JJ NN CC NN TO DT NN IN JJ NNS . In another decision , a federal judge threw out plans to close down a Pennsylvania Air National Guard division . IN DT NN , DT JJ NN VBD RP NNS TO VB RP DT NNP NNP NNP NNP NN . The judge said the Pentagon does not have the power to dissolve the 111th Fighter Wing without the approval of Governor Ed Rendell . DT NN VBD DT NNP VBZ RB VB DT NN TO VB DT JJ NNP NNP IN DT NN IN NNP NNP NNP . Rescuers in southern China have recovered the body of one of the 123 miners trapped in a flooded coal mine , and are holding out little chance any others will survive . NNS IN JJ NNP VBP VBN DT NN IN CD IN DT CD NNS VBN IN DT VBN NN NN , CC VBP VBG RP JJ NN DT NNS MD VB . The miners have been trapped in the Daxing mine at Xingning in Guangdong province since Sunday . DT NNS VBP VBN VBN IN DT NNP NN IN NNP IN NNP NN IN NNP . State media say that so far rescuers have been unable to find the source of the flooding . NNP NNS VBP IN RB RB NNS VBP VBN JJ TO VB DT NN IN DT NN . Chinese police have arrested 11 people for their roles in the disaster , including the mine 's owner , manager , board chairman and chief technician . JJ NNS VBP VBN CD NNS IN PRP$ NNS IN DT NN , VBG DT NN POS NN , NN , NN NN CC NN NN . The government also has suspended the mayors of the cities of Xingning and Meizhou for failing to supervise coal mine production . DT NN RB VBZ VBN DT NNS IN DT NNS IN VBG CC NNP IN VBG TO VB NN NN NN . China has the most dangerous mines in the world . NNP VBZ DT RBS JJ NNS IN DT NN . More than 2,700 miners have been killed in the first half of this year alone . JJR IN CD NNS VBP VBN VBN IN DT JJ NN IN DT NN RB . Hundreds of supporters of a coalition of radical Islamic groups have demonstrated in Pakistan 's central city of Lahore to press the country 's military president to resign . NNS IN NNS IN DT NN IN JJ JJ NNS VBP VBN IN NNP POS JJ NN IN NNP TO VB DT NN POS JJ NN TO VB . The Associated Press reports some 10,000 people participated in the rally . DT NNP NNP VBZ DT CD NNS VBD IN DT NN . The coalition known as the Mutahida Majlis-e-Amal has been holding rallies in Pakistan since December , when President Pervez Musharraf reneged on a promise to quit his second job as army chief . DT NN VBN IN DT NNP NNP VBZ VBN VBG NNS IN NNP IN NNP , WRB NNP NNP NNP VBD IN DT NN TO VB PRP$ JJ NN IN NN NN . Last year , he promised to quit his military post before the end of 2004 , if the religion-based coalition agreed to accept him as president until 2007 . JJ NN , PRP VBD TO VB PRP$ JJ NN IN DT NN IN CD , IN DT JJ NN VBD TO VB PRP IN NN IN CD . At the rally , coalition chief Qazi Hussain Ahmed said General Musharraf will soon be forced to resign , accusing him of serving the interests of the United States instead of working for the betterment of the masses . IN DT NN , NN NN NNP NNP NNP VBD NNP NNP MD RB VB VBN TO VB , VBG PRP IN VBG DT NNS IN DT NNP NNPS RB IN VBG IN DT NN IN DT NNS . Iran is warning that it could quit the Nuclear Non-Proliferation Treaty and resume enriching uranium if it is referred to the United Nations Security Council over its suspect nuclear program . NNP VBZ VBG IN PRP MD VB DT NNP NNP NNP CC VB VBG NN IN PRP VBZ VBN TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NN . Top Iranian negotiator Ali Larijani spoke Tuesday in Vienna , on the sidelines of an emergency session of the International Atomic Energy Agency . JJ JJ NN NNP NNP VBD NNP IN NNP , IN DT NNS IN DT NN NN IN DT NNP NNP NNP NNP . The IAEA is considering a European draft resolution alleging that Iran has breached the treaty by withholding information on its nuclear fuel cycle program . DT NNP VBZ VBG DT JJ NN NN VBG IN NNP VBZ VBN DT NN IN VBG NN IN PRP$ JJ NN NN NN . That draft , which the United States supports , cites what it calls Iran 's many failures and breaches of its obligations under the NPT treaty . DT NN , WDT DT NNP NNPS VBZ , VBZ WP PRP VBZ NNP POS JJ NNS CC NNS IN PRP$ NNS IN DT NNP NN . Tehran has repeatedly insisted its nuclear intentions are peaceful . NNP VBZ RB VBN PRP$ JJ NNS VBP JJ . Diplomats say Russia , China and many non-aligned member states oppose the referral , arguing that nuclear talks between Iran and European negotiators should be given more time . NNS VBP NNP , NNP CC JJ JJ NN NNS VBP DT NN , VBG IN JJ NNS IN NNP CC JJ NNS MD VB VBN JJR NN . Venezuelan President Hugo Chavez has reshuffled his cabinet . JJ NNP NNP NNP VBZ VBN PRP$ NN . Mr. Chavez announced late Saturday that Ali Rodriguez , who heads the state-run oil company , Petroleos de Venezuela , would replace Jesus Perez as foreign minister . NNP NNP VBD JJ NNP IN NNP NNP , WP VBZ DT JJ NN NN , NNP NNP NNP , MD VB NNP NNP IN JJ NN . Oil minister Rafael Ramirez will take over the state-run oil company , while also retaining his government oil portfolio . NN NN NNP NNP MD VB RP DT JJ NN NN , IN RB VBG PRP$ NN NN NN . The high-profile changes had been widely expected and come after Mr. Chavez consolidated his political power with a victory in an August 15 referendum on his government . DT JJ NNS VBD VBN RB VBN CC VBN IN NNP NNP VBD PRP$ JJ NN IN DT NN IN DT NNP CD NN IN PRP$ NN . Iran 's supreme leader Ayatollah Ali Khamenei said the nation 's nuclear program is necessary because its vast oil and gas reserves can not last forever . NNP POS JJ NN NNP NNP NNP VBD DT NN POS JJ NN VBZ JJ IN PRP$ JJ NN CC NN NNS MD RB VB RB . Iran 's state-run television Saturday quoted Khamenei as saying nations must have alternate energy sources to avoid being at the mercy of domineering countries . NNP POS JJ NN NNP VBD NNP IN VBG NNS MD VB JJ NN NNS TO VB VBG IN DT NN IN VBG NNS . Khamenei lashed out at critics of Iran 's nuclear program , calling them narrow-minded . NNP VBD RP IN NNS IN NNP POS JJ NN , VBG PRP JJ . The U.S. accuses Iran of using its civilian nuclear program as a cover up to build nuclear weapons . DT NNP VBZ NNP IN VBG PRP$ JJ JJ NN IN DT NN IN TO VB JJ NNS . Iran has always rejected those charges , insisting its atomic program is peaceful in nature . NNP VBZ RB VBN DT NNS , VBG PRP$ JJ NN VBZ JJ IN NN . Iranian officials have said it has every right to pursue its goals . JJ NNS VBP VBN PRP VBZ DT NN TO VB PRP$ NNS . Police in London arrested and questioned Hugh Grant , after a photographer claimed the actor attacked him with a tub of baked beans . NNS IN NNP VBN CC VBN NNP NNP , IN DT NN VBD DT NN VBD PRP IN DT NN IN JJ NNS . Speaking to the Daily Star newspaper , photographer Ian Whittaker said the 46-year-old Grant abused and kicked him on April 24 , prior to lobbing the beans . VBG TO DT NNP NNP NN , NN NNP NNP VBD DT JJ NNP VBD CC VBD PRP IN NNP CD , RB TO VBG DT NNS . The paper printed photos of Grant with a plastic tub of food raised over his head . DT NN VBD NNS IN NNP IN DT JJ NN IN NN VBN IN PRP$ NN . A police spokeswoman said a 46-year-old man had been arrested April 25 and questioned over an assault in west London . DT NN NN VBD DT JJ NN VBD VBN VBN NNP CD CC VBD IN DT NN IN JJ NNP . He was freed on bail and ordered to return in May . PRP VBD VBN IN NN CC VBN TO VB IN NNP . His lawyers were not immediately available for comment . PRP$ NNS VBD RB RB JJ IN NN . Hugh Grant 's screen credits include Four Weddings And A Funeral , Notting Hill , and Love Actually . NNP NNP POS NN NNS VBP NNP NNS NNP NNP NNP , NNP NNP , CC NNP NNPS . Travelers Corp. 's third-quarter net income rose 11 % , even though claims stemming from Hurricane Hugo reduced results $ 40 million . NNP NNP POS JJ JJ NN VBD CD NN , RB IN NNS VBG IN NNP NNP VBD NNS $ CD CD . Net advanced to $ 94.2 million , or 89 cents a share , from $ 85 million , or 83 cents a share , including net realized investment gains of $ 31 million , up from $ 10 million a year ago . NN VBD TO $ CD CD , CC CD NNS DT NN , IN $ CD CD , CC CD NNS DT NN , VBG NN VBD NN NNS IN $ CD CD , RB IN $ CD CD DT NN RB . But revenue declined to $ 3 billion from $ 3.2 billion . CC NN VBD TO $ CD CD IN $ CD CD . Travelers estimated that the California earthquake last month will result in a fourth-quarter pre-tax charge of less than $ 10 million . NNP VBD IN DT NNP NN JJ NN MD VB IN DT JJ JJ NN IN JJR IN $ CD CD . The insurer 's earnings from commercial property / casualty lines fell 59 % in the latest quarter , while it lost $ 7.2 million in its personal property / casualty business , compared with earnings of $ 6.1 million a year ago . DT NN POS NNS IN JJ NN NN NN NNS VBD CD NN IN DT JJS NN , IN PRP VBD $ CD CD IN PRP$ JJ NN NN NN NN , VBN IN NNS IN $ CD CD DT NN RB . Travelers 's employee benefits group , which includes its group health insurance operations , posted earnings of $ 24 million , compared with a loss of $ 3 million last year . NNP POS NN NNS NN , WDT VBZ PRP$ NN NN NN NNS , VBD NNS IN $ CD CD , VBN IN DT NN IN $ CD CD JJ NN . In the first nine months , net was $ 306 million , compared with a loss of $ 195 million in the 1988 period . IN DT JJ CD NNS , NN VBD $ CD CD , VBN IN DT NN IN $ CD CD IN DT CD NN . The year-ago results included a $ 415 million charge in the 1988 second quarter for underperforming real estate and mortgage loans . DT JJ NNS VBD DT $ CD CD NN IN DT CD JJ NN IN VBG JJ NN CC NN NNS . Small , landlocked , and mountainous , Lesotho relies on remittances from Basotho employed in South Africa , customs duties from the Southern Africa Customs Union ( SACU ) , and export revenue for the majority of government revenue . JJ , JJ , CC JJ , NNP VBZ IN NNS IN NNP VBN IN NNP NNP , NNS NNS IN DT NNP NNP NNP NNP LRB NNP RRB , CC NN NN IN DT NN IN NN NN . However , the government has recently strengthened its tax system to reduce dependency on customs duties . RB , DT NN VBZ RB VBN PRP$ NN NN TO VB NN IN NNS NNS . Completion of a major hydropower facility in January 1998 permitted the sale of water to South Africa and generated royalties for Lesotho . NN IN DT JJ NN NN IN NNP CD VBD DT NN IN NN TO NNP NNP CC VBD NNS IN NNP . Lesotho produces about 90 % of its own electrical power needs . NNP VBZ IN CD NN IN PRP$ JJ JJ NN NNS . As the number of mineworkers has declined steadily over the past several years , a small manufacturing base has developed based on farm products that support the milling , canning , leather , and jute industries , as well as an apparel-assembly sector . IN DT NN IN NNS VBZ VBN RB IN DT JJ JJ NNS , DT JJ NN NN VBZ VBN VBN IN NN NNS WDT VBP DT NN , NN , NN , CC JJ NNS , RB RB IN DT JJ NN . Despite Lesotho 's market-based economy being heavily tied to its neighbor South Africa , the US is an important trade partner because of the export sector 's heavy dependence on apparel exports . IN NNP POS JJ NN VBG RB VBN TO PRP$ NN NNP NNP , DT NNP VBZ DT JJ NN NN IN IN DT NN NN POS JJ NN IN NN NNS . Exports have grown significantly because of the trade benefits contained in the Africa Growth and Opportunity Act . NNS VBP VBN RB IN IN DT NN NNS VBN IN DT NNP NNP CC NNP NNP . Most of the labor force is engaged in subsistence agriculture , especially livestock herding , although drought has decreased agricultural activity . JJS IN DT NN NN VBZ VBN IN NN NN , RB JJ NN , IN NN VBZ VBN JJ NN . The extreme inequality in the distribution of income remains a major drawback . DT JJ NN IN DT NN IN NN VBZ DT JJ NN . Lesotho has signed an Interim Poverty Reduction and Growth Facility with the IMF . NNP VBZ VBN DT NNP NNP NNP CC NNP NN IN DT NNP . In July 2007 , Lesotho signed a Millennium Challenge Account Compact with the US worth $ 362.5 million . IN NNP CD , NNP VBD DT NNP NNP NNP NNP IN DT NNP JJ $ CD CD . Economic growth dropped in 2009 , due mainly to the effects of the global economic crisis as demand for the country 's exports declined and SACU revenue fell precipitously when South Africa - the primary contributor to the SACU revenue pool - went into recession , but growth returned to 3.5 % in 2010 . JJ NN VBD IN CD , JJ RB TO DT NNS IN DT JJ JJ NN IN NN IN DT NN POS NNS VBD CC NNP NN VBD RB WRB NNP NNP IN DT JJ NN TO DT NNP NN NN : VBD IN NN , CC NN VBD TO CD NN IN CD . In 1865 , Britain and Bhutan signed the Treaty of Sinchulu , under which Bhutan would receive an annual subsidy in exchange for ceding some border land to British India . IN CD , NNP CC NNP VBD DT NNP IN NNP , IN WDT NNP MD VB DT JJ NN IN NN IN VBG DT NN NN TO JJ NNP . Under British influence , a monarchy was set up in 1907 ; three years later , a treaty was signed whereby the British agreed not to interfere in Bhutanese internal affairs and Bhutan allowed Britain to direct its foreign affairs . IN JJ NN , DT NN VBD VBN RP IN CD ; CD NNS RB , DT NN VBD VBN WRB DT NNS VBD RB TO VB IN JJ JJ NNS CC NNP VBD NNP TO VB PRP$ JJ NNS . This role was assumed by independent India after 1947 . DT NN VBD VBN IN JJ NNP IN CD . Two years later , a formal Indo-Bhutanese accord returned the areas of Bhutan annexed by the British , formalized the annual subsidies the country received , and defined India 's responsibilities in defense and foreign relations . CD NNS RB , DT JJ JJ NN VBD DT NNS IN NNP VBN IN DT NNS , VBD DT JJ NNS DT NN VBD , CC VBD NNP POS NNS IN NN CC JJ NNS . A refugee issue of over 1,00,000 Bhutanese in Nepal remains unresolved ; 90 % of the refugees are housed in seven United Nations Office of the High Commissioner for Refugees ( UNHCR ) camps . DT NN NN IN IN CD NNS IN NNP VBZ JJ ; CD NN IN DT NNS VBP VBN IN CD NNP NNP NNP IN DT NNP NNP IN NNP LRB NNP RRB NNS . In March 2005 , King Jigme Singye WANGCHUCK unveiled the government 's draft constitution - which would introduce major democratic reforms - and pledged to hold a national referendum for its approval . IN NNP CD , NNP NNP NNP NNP VBD DT NN POS NN NN : WDT MD VB JJ JJ NNS : CC VBD TO VB DT JJ NN IN PRP$ NN . In December 2006 , the King abdicated the throne to his son , Jigme Khesar Namgyel WANGCHUCK , in order to give him experience as head of state before the democratic transition . IN NNP CD , DT NNP VBD DT NN TO PRP$ NN , NNP NNP NNP NNP , IN NN TO VB PRP NN IN NN IN NN IN DT JJ NN . In early 2007 , India and Bhutan renegotiated their treaty to allow Bhutan greater autonomy in conducting its foreign policy , although Thimphu continues to coordinate policy decisions in this area with New Delhi . IN JJ CD , NNP CC NNP VBD PRP$ NN TO VB NNP JJR NN IN VBG PRP$ JJ NN , IN NNP VBZ TO VB NN NNS IN DT NN IN NNP NNP . In July 2007 , seven ministers of Bhutan 's 10-member cabinet resigned to join the political process , and the cabinet acted as a caretaker regime until democratic elections for seats to the country 's first parliament were completed in March 2008 . IN NNP CD , CD NNS IN NNP POS JJ NN VBD TO VB DT JJ NN , CC DT NN VBD IN DT NN NN IN JJ NNS IN NNS TO DT NN POS JJ NN VBD VBN IN NNP CD . The king ratified the country 's first constitution in July 2008 . DT NN VBD DT NN POS JJ NN IN NNP CD . The islands have no indigenous economic activity , but the Australian Government allows limited fishing in the surrounding waters . DT NNS VBP DT JJ JJ NN , CC DT JJ NN VBZ JJ NN IN DT VBG NNS . The government continues to balance the need for economic loosening against a desire for firm political control . DT NN VBZ TO VB DT NN IN JJ NN IN DT NN IN JJ JJ NN . The government announced it would eliminate 5,00,000 state jobs by March 2011 and has expanded opportunities for self-employment . DT NN VBD PRP MD VB CD NN NNS IN NNP CD CC VBZ VBN NNS IN NN . President Raul CASTRO said such changes were needed to update the economic model to ensure the survival of socialism . NNP NNP NNP VBD JJ NNS VBD VBN TO VB DT JJ NN TO VB DT NN IN NN . The government has introduced limited reforms , some initially implemented in the 1990s , to increase enterprise efficiency and alleviate serious shortages of food , consumer goods , and services . DT NN VBZ VBN JJ NNS , DT RB VBN IN DT NNS , TO VB NN NN CC VB JJ NNS IN NN , NN NNS , CC NNS . The average Cuban 's standard of living remains at a lower level than before the downturn of the 1990s , which was caused by the loss of Soviet aid and domestic inefficiencies . DT JJ JJ POS NN IN NN VBZ IN DT JJR NN IN IN DT NN IN DT NNS , WDT VBD VBN IN DT NN IN JJ NN CC JJ NNS . Since late 2000 , Venezuela has been providing oil on preferential terms , and it currently supplies about 1,00,000 barrels per day of petroleum products . IN JJ CD , NNP VBZ VBN VBG NN IN JJ NNS , CC PRP RB VBZ IN CD NNS IN NN IN NN NNS . Cuba has been paying for the oil , in part , with the services of Cuban personnel in Venezuela including some 30,000 medical professionals . NNP VBZ VBN VBG IN DT NN , IN NN , IN DT NNS IN JJ NNS IN NNP VBG DT CD JJ NNS . The economy is limited to traditional subsistence agriculture , with about 80 % of labor force earnings from agriculture ( coconuts and vegetables ) , livestock ( mostly pigs ) , and fishing . DT NN VBZ VBN TO JJ NN NN , IN IN CD NN IN NN NN NNS IN NN LRB NNS CC NNS RRB , NN LRB RB NNS RRB , CC NN . About 4 % of the population is employed in government . RB CD NN IN DT NN VBZ VBN IN NN . Revenues come from French Government subsidies , licensing of fishing rights to Japan and South Korea , import taxes , and remittances from expatriate workers in New Caledonia . NNS VBP IN JJ NN NNS , NN IN NN NNS TO NNP CC NNP NNP , NN NNS , CC NNS IN JJ NNS IN NNP NNP . A Jay venturing into a yard where Peacocks used to walk , found there a number of feathers which had fallen from the Peacocks when they were moulting . DT NN VBG IN DT NN WRB NNS VBD TO VB , VBD EX DT NN IN NNS WDT VBD VBN IN DT NNS WRB PRP VBD VBG . He tied them all to his tail and strutted down towards the Peacocks . PRP VBD PRP DT TO PRP$ NN CC VBD RP IN DT NNS . When he came near them they soon discovered the cheat , and striding up to him pecked at him and plucked away his borrowed plumes . WRB PRP VBD IN PRP PRP RB VBD DT NN , CC VBG RP TO PRP VBN IN PRP CC VBN RP PRP$ VBN NNS . So the Jay could do no better than go back to the other Jays , who had watched his behaviour from a distance ; but they were equally annoyed with him , and told him : IN DT NN MD VB DT JJR IN VB RB TO DT JJ NNS , WP VBD VBN PRP$ NN IN DT NN ; CC PRP VBD RB JJ IN PRP , CC VBD PRP : ' It is not only fine feathers that make fine birds . ' `` PRP VBZ RB RB JJ NNS WDT VBP JJ NNS . `` A SEAGULL having bolted down too large a fish , burst its deep gullet-bag and lay down on the shore to die . DT NN VBG VBN RP RB JJ DT NN , VBP PRP$ JJ NN CC VBD RP IN DT NN TO VB . A Kite saw him and exclaimed : ' You richly deserve your fate ; for a bird of the air has no business to seek its food from the sea . ' DT NN VBD PRP CC VBD : `` PRP RB VB PRP$ NN ; IN DT NN IN DT NN VBZ DT NN TO VB PRP$ NN IN DT NN . `` Every man should be content to mind his own business . DT NN MD VB JJ TO VB PRP$ JJ NN . A SPENDTHRIFT , seeing a single swallow , pawned his cloak , thinking that Summer was at hand . DT NN , VBG DT JJ NN , VBD PRP$ NN , VBG IN NN VBD IN NN . It was . PRP VBD . A FOX , seeing some sour grapes hanging within an inch of his nose , and being unwilling to admit that there was anything he would not eat , solemnly declared that they were out of his reach . DT NN , VBG DT JJ NNS VBG IN DT NN IN PRP$ NN , CC VBG JJ TO VB IN EX VBD DT PRP MD RB VB , RB VBD IN PRP VBD IN IN PRP$ NN . SOME DOGS , finding the skin of a lion , began to tear it in pieces with their teeth . DT NNS , VBG DT NN IN DT NN , VBD TO VB PRP IN NNS IN PRP$ NNS . A Fox , seeing them , said , ' If this lion were alive , you would soon find out that his claws were stronger than your teeth . ' DT NN , VBG PRP , VBD , `` IN DT NN VBD JJ , PRP MD RB VB RP IN PRP$ NNS VBD JJR IN PRP$ NNS . `` It is easy to kick a man that is down . PRP VBZ JJ TO VB DT NN WDT VBZ RB . Oil cleanup efforts in the Gulf of Mexico soon could get a boost , if tests of a new skimming vessel go well . NN NN NNS IN DT NNP IN NNP RB MD VB DT NN , IN NNS IN DT JJ NN NN VBP RB . Crews began testing the massive Taiwanese tanker , dubbed A Whale , on Friday and continued those operations on Saturday . NNP VBD VBG DT JJ JJ NN , VBD DT NN , IN NNP CC VBD DT NNS IN NNP . The ship , about 275 meters long , takes in oil-laden sea water through vents , separating the oil and then pumping the cleaned water back into the Gulf . DT NN , IN CD NNS RB , VBZ IN JJ NN NN IN NNS , VBG DT NN CC RB VBG DT JJ NN RB IN DT NNP . Its makers say it can process up to 80 million liters of oily water a day . PRP$ NNS VBP PRP MD VB RB TO CD CD NNS IN JJ NN DT NN . A smaller group of oil skimmers also was hard at work Saturday , after halting operations for several days because of rough conditions created by then-Hurricane Alex . DT JJR NN IN NN NNS RB VBD JJ IN NN NNP , IN VBG NNS IN JJ NNS IN IN JJ NNS VBN IN JJ NNP . Alex also delayed the hookup of a third containment vessel that is set to double the amount of oil being collected to up to 53,000 barrels a day . NNP RB VBD DT NN IN DT JJ NN NN WDT VBZ VBN TO VB DT NN IN NN VBG VBN TO RB TO CD NNS DT NN . The vessel is now expected to be in place next week . DT NN VBZ RB VBN TO VB IN NN JJ NN . Separately , U.S. Environmental Protection Agency administrator Lisa Jackson visited Pensacola , Florida Saturday to inspect the ongoing response to the oil spill . RB , NNP NNP NNP NNP NN NNP NNP VBD NNP , NNP NNP TO VB DT JJ NN TO DT NN NN . Jackson was there to oversee beach cleanup operations . NNP VBD RB TO VB NN NN NNS . The oil crisis followed an explosion on a rig leased by oil company BP . DT NN NN VBD DT NN IN DT NN VBN IN NN NN NNP . The April 20 blast killed 11 workers . DT NNP CD NN VBD CD NNS . Government estimates say the broken well is gushing up to 60,000 barrels of oil into the Gulf each day . NN NNS VBP DT JJ NN VBZ VBG RP TO CD NNS IN NN IN DT NNP DT NN . Afghan election officials say they plan to increase the number of voting stations for next week 's presidential runoff election , despite concerns that could lead to more fraud than in the first vote . JJ NN NNS VBP PRP VBP TO VB DT NN IN NN NNS IN JJ NN POS JJ NN NN , IN NNS WDT MD VB TO JJR NN IN IN DT JJ NN . Afghanistan 's independent election commission says it will slightly increase the number of polling centers to 6,322 and have enough staff to ensure a credible process . NNP POS JJ NN NN VBZ PRP MD RB VB DT NN IN NN NNS TO CD CC VBP JJ NN TO VB DT JJ NN . Foreign election observers had recommended reducing the more than 6,000 polling centers used in the first round after auditors found more than one million fraudulent votes . JJ NN NNS VBD VBN VBG DT JJR IN CD NN NNS VBN IN DT JJ NN IN NNS VBD JJR IN CD CD JJ NNS . Many fake ballots are believed to have come from remote polling stations that never opened or did not have observers monitoring the vote . JJ JJ NNS VBP VBN TO VB VBN IN JJ NN NNS WDT RB VBD CC VBD RB VB NNS VBG DT NN . Meanwhile , the Taliban in Afghanistan has vowed to intensify its attacks leading up to the November 7 election . RB , DT NNP IN NNP VBZ VBN TO VB PRP$ NNS VBG RP TO DT NNP CD NN . A Taliban spokesman told the French news agency the militant group has new plans and tactics to disrupt the election . DT NNP NN VBD DT JJ NN NN DT JJ NN VBZ JJ NNS CC NNS TO VB DT NN . The United Nations has not responded to the Afghan announcement of an increase in polling centers . DT NNP NNPS VBZ RB VBN TO DT JJ NN IN DT NN IN NN NNS . On Wednesday , U.N. officials said workers will continue to help the country prepare for the vote , despite a deadly Taliban attack on a Kabul guesthouse that killed five U.N. staff members . IN NNP , NNP NNS VBD NNS MD VB TO VB DT NN VB IN DT NN , IN DT JJ NNP NN IN DT NNP NN WDT VBD CD NNP NN NNS . The Taliban said the attack Wednesday was the first step of a plan aimed at disrupting the vote , in which incumbent President Hamid Karzai is facing off against former Foreign Minister Abdullah Abdullah . DT NNP VBD DT NN NNP VBD DT JJ NN IN DT NN VBN IN VBG DT NN , IN WDT JJ NNP NNP NNP VBZ VBG RP IN JJ JJ NN NNP NNP . The United Nations says that some 100 villagers in the South Pacific island nation of Vanuatu have been forced to relocate because of rising seas , becoming one of the world 's first examples of ' climate change refugees . ' DT NNP NNP VBZ IN DT CD NNS IN DT NNP NNP NN NN IN NNP VBP VBN VBN TO VB IN IN VBG NNS , VBG CD IN DT NN POS JJ NNS IN `` NN NN NNS . `` Officials with the United Nations Environmental Program said Tuesday that locals on Tegua island in the northern part of the archipelago completed their move inland in August . NNS IN DT NNP NNP NNP NNP VBD NNP IN NNS IN NNP NN IN DT JJ NN IN DT NN VBD PRP$ NN RB IN NNP . Officials said more frequent flooding and accelerating erosion in recent years has routinely damaged houses and boosted waterborne diseases in the population . NNS VBD RBR JJ NN CC VBG NN IN JJ NNS VBZ RB VBN NNS CC VBN JJ NNS IN DT NN . The executive director of the U.N. agency said the rising sea levels and storm surges in Vanuatu are the first manifestation of global changes that eventually will touch everyone . DT NN NN IN DT NNP NN VBD DT VBG NN NNS CC NN NNS IN NNP VBP DT JJ NN IN JJ NNS IN RB MD VB DT . An international human rights group is urging Iran to stop executing people under the age of 18 . DT JJ JJ NNS NN VBZ VBG NNP TO VB VBG NNS IN DT NN IN CD . Human Rights Watch says Iran executes more minors than any other country in the world . NNP NNP NNP VBZ NNP VBZ RBR NNS IN DT JJ NN IN DT NN . It says Iran has carried out 17 such executions since 2004 . PRP VBZ NNP VBZ VBN IN CD JJ NNS IN CD . It says some juveniles were given death sentences for crimes they committed when they were 15 . PRP VBZ DT NNS VBD VBN NN NNS IN NNS PRP VBD WRB PRP VBD CD . An official with the rights group says Iran needs to stop sending children to the gallows and live up to its international obligations by banning the juvenile death penalty . DT NN IN DT NNS NN VBZ NNP VBZ TO VB VBG NNS TO DT NNS CC VB RP TO PRP$ JJ NNS IN VBG DT NN NN NN . Human Rights Watch says the only other countries known to have executed juveniles since 2004 are Sudan , which executed two juveniles and China and Pakistan , which each executed one . NNP NNP NNP VBZ DT JJ JJ NNS VBN TO VB VBN NNS IN CD VBP NNP , WDT VBD CD NNS CC NNP CC NNP , WDT DT VBD CD . Arabic language al-Jazeera television has broadcast what it says is a new videotape of kidnapped U.S. journalist Jill Carroll pleading for freedom for female Iraqi prisoners . JJ NN NNP NN VBZ VBN WP PRP VBZ VBZ DT JJ NN IN VBN NNP NN NNP NNP VBG IN NN IN JJ JJ NNS . The tape is time-stamped January 28 , showing Carroll dressed in traditional Islamic headscarf and crying . DT NN VBZ JJ NNP CD , VBG NNP VBN IN JJ JJ NN CC NN . Al Jazeera did not broadcast any sound with the tape Monday . NNP NNP VBD RB VB DT NN IN DT NN NNP . But a newscaster said Carroll appealed to the U.S. military in Iraq to free all women prisoners . CC DT NN VBD NNP VBD TO DT NNP NN IN NNP TO VB DT NNS NNS . This was the main demand of her captors who threatened to kill her if it was not met . DT VBD DT JJ NN IN PRP$ NNS WP VBD TO VB PRP IN PRP VBD RB VBN . Carroll is a journalist for the U.S. based Christian Science Monitor newspaper . NNP VBZ DT NN IN DT NNP VBN NNP NNP NNP NN . She was kidnapped January 7 . PRP VBD VBN NNP CD . The U.S. military freed five female prisoners in Iraq last week , but said their release was not connected to the Carroll case . DT NNP NN VBD CD JJ NNS IN NNP JJ NN , CC VBD PRP$ NN VBD RB VBN TO DT NNP NN . A U.S. soldier has been killed and four others wounded in a bomb attack in southeastern Afghanistan . DT NNP NN VBZ VBN VBN CC CD NNS VBN IN DT NN NN IN JJ NNP . The U.S. military says the troops were conducting security operations when the blast occurred Friday in Paktika province , near the border with Pakistan . DT NNP NN VBZ DT NNS VBD VBG NN NNS WRB DT NN VBD NNP IN NNP NN , IN DT NN IN NNP . American casualties have been mounting amid a major upsurge in violence across Afghanistan ahead of legislative elections scheduled on September 18 . JJ NNS VBP VBN VBG IN DT JJ NN IN NN IN NNP RB IN JJ NNS VBN IN NNP CD . With vote counting nearly completed , Liberia appears headed for a presidential run-off election between football ( soccer ) star George Weah and former World Bank economist Ellen Johnson-Sirleaf . IN NN VBG RB VBN , NNP VBZ VBN IN DT JJ NN NN IN NN LRB NN RRB NN NNP NNP CC JJ NNP NNP NN NNP NNP . Neither candidate captured the outright majority in last Tuesday 's vote to avoid the run-off , which is expected to be held November 8 . DT NN VBD DT JJ NN IN JJ NNP POS NN TO VB DT NN , WDT VBZ VBN TO VB VBN NNP CD . The latest tally shows Mr. Weah leading the field of 22 candidates with 28.9 percent of the vote . DT JJS RB VBZ NNP NNP VBG DT NN IN CD NNS IN CD NN IN DT NN . Ms. Johnson-Sirleaf is second with 19.7 percent . NNP NNP VBZ JJ IN CD NN . More than 90 percent of polling stations had reported results as of early Monday . JJR IN CD NN IN VBG NNS VBD VBN NNS IN IN JJ NNP . Last week 's presidential and parliamentary elections were the first in Liberia since a peace deal in 2003 ended 14 years of warfare and sent former President Charles Taylor into exile . JJ NN POS JJ CC JJ NNS VBD DT JJ IN NNP IN DT NN NN IN CD VBD CD NNS IN NN CC VBD JJ NNP NNP NNP IN NN . Chinese officials are urging the European Union to go ahead with the lifting of a ban on arms sales to Beijing . JJ NNS VBP VBG DT NNP NNP TO VB RB IN DT NN IN DT NN IN NNS NNS TO NNP . The EU had been moving towards a June date for ending the ban on arms deals , despite U.S. opposition . DT NNP VBD VBN VBG IN DT NNP NN IN VBG DT NN IN NNS NNS , IN NNP NN . Diplomats , however , say the Chinese parliament 's recent approval of a bill authorizing the use of force against Taiwan if it tries to declare independence has effectively stalled the action . NNS , RB , VBP DT JJ NN POS JJ NN IN DT NN VBG DT NN IN NN IN NNP IN PRP VBZ TO VB NN VBZ RB VBN DT NN . A Chinese foreign ministry official says linking the two issues is unreasonable and amounts to political discrimination not in keeping with the times . DT JJ JJ NN NN VBZ VBG DT CD NNS VBZ JJ CC VBZ TO JJ NN RB IN VBG IN DT NNS . The embargo was put into place after the Chinese crackdown on pro-democracy demonstrators in Tiananmen Square in 1989 . DT NN VBD VBN IN NN IN DT JJ NN IN JJ NNS IN NNP NNP IN CD . Diplomats have told various news organizations that the effort to lift the embargo , originally spearheaded by France , will probably not move forward until sometime next year . NNS VBP VBN JJ NN NNS IN DT NN TO VB DT NN , RB VBN IN NNP , MD RB RB VB RB IN RB JJ NN . An Iraqi woman suspected of being infected with the deadly H5N1 bird flu virus has died . DT JJ NN VBN IN VBG VBN IN DT JJ NNP NN NN NN VBZ VBN . Iraqi officials said Thursday further tests are being conducted in Baghdad and Cairo . JJ NNS VBD NNP JJ NNS VBP VBG VBN IN NNP CC NNP . If confirmed , the death would be the second caused by the virus in Iraq this year . IN VBN , DT NN MD VB DT JJ VBN IN DT NN IN NNP DT NN . Meanwhile , German officials are warning pet owners to keep cats inside and dogs on a leash after lab tests confirmed a cat died from the H5N1 virus , the same strain found in a dead swan in the region . RB , JJ NNS VBP VBG JJ NNS TO VB NNS IN CC NNS IN DT NN IN NN NNS VBD DT NN VBD IN DT NNP NN , DT JJ NN VBN IN DT JJ NN IN DT NN . The discoveries come a day after World Bank officials warned that an outbreak of bird flu in Nigeria is far from over . DT NNS VBP DT NN IN NNP NNP NNS VBD IN DT NN IN NN NN IN NNP VBZ RB IN RB . The World Bank said Wednesday Nigeria has failed to contain the spread of the H5N1 virus among chickens , and offered to fund a bird vaccination program there . DT NNP NNP VBD NNP NNP VBZ VBN TO VB DT NN IN DT NNP NN IN NNS , CC VBD TO VB DT JJ NN NN RB . Health officials say since 2003 , bird flu has killed more than 90 people worldwide , mostly Asians . NNP NNS VBP IN CD , NN NN VBZ VBN JJR IN CD NNS JJ , RB NNS . Two U.S. astronauts from the space shuttle Discovery have completed a third spacewalk to make external repairs on the International Space Station . CD NNP NNS IN DT NN NN NNP VBP VBN DT JJ NN TO VB JJ NNS IN DT NNP NNP NNP . Michael Fossum and Ronald Garan spent more than six hours Sunday outside the orbiting laboratory , where they replaced a nitrogen tank used to cool the station . NNP NNP CC NNP NNP VBD JJR IN CD NNS NNP IN DT NN NN , WRB PRP VBD DT NN NN VBN TO VB DT NN . They also inspected a problematic joint attached to the station 's solar power panels . PRP RB VBD DT JJ NN VBN TO DT NN POS JJ NN NNS . The astronauts collected samples of debris from the joint for analysis on Earth . DT NNS VBD NNS IN NN IN DT NN IN NN IN NNP . This was the astronauts ' final spacewalk of the 14-day shuttle mission . DT VBD DT NNS POS JJ NN IN DT JJ NN NN . The Discovery arrived at the station last week to install a new Japanese laboratory named Kibo . DT NN VBD IN DT NN JJ NN TO VB DT JJ JJ NN VBN NNP . On Saturday , Japanese Prime Minister Yasuo Fukuda spoke to Japanese astronaut Akihiko Hoshide through a video link to congratulate the team on its work . IN NNP , JJ NNP NNP NNP NNP VBD TO JJ NN NNP NNP IN DT NN NN TO VB DT NN IN PRP$ NN . Hoshide and the other astronauts tested the Kibo 's robotic arm for the first time on Saturday . NNP CC DT JJ NNS VBD DT NNP POS JJ NN IN DT JJ NN IN NNP . Kibo is Japanese for ' hope . ' NNP VBZ JJ IN `` NN . `` A Danish court has dismissed a legal case filed by citizens who accused Prime Minister Anders Fogh Rasmussen of violating the country 's constitution by sending troops to Iraq . DT JJ NN VBZ VBN DT JJ NN VBN IN NNS WP VBD NNP NNP NNP NNP NNP IN VBG DT NN POS NN IN VBG NNS TO NNP . The group , including the family of a Danish soldier killed in Iraq , had brought suit against the prime minister . DT NN , VBG DT NN IN DT JJ NN VBN IN NNP , VBD VBN NN IN DT JJ NN . The suit accused him of violating the constitution because he dispatched the troops in the absence of a United Nations resolution authorizing the Iraqi operation . DT NN VBD PRP IN VBG DT NN IN PRP VBD DT NNS IN DT NN IN DT NNP NNP NN VBG DT JJ NN . The plaintiffs have indicated readiness to appeal to Denmark 's Supreme Court . DT NNS VBP VBN NN TO VB TO NNP POS NNP NNP . Denmark has fewer than 500 troops serving in southern Iraq . NNP VBZ JJR IN CD NNS VBG IN JJ NNP . Mr. Rasmussen has announced plans to withdraw them later this year and replace them with four helicopters and an air force unit of about 50 . NNP NNP VBZ VBN NNS TO VB PRP RBR DT NN CC VB PRP IN CD NNS CC DT NN NN NN IN IN CD . Israeli and Palestinian security officials met Sunday for the first time since Israel froze contacts after a suicide bombing nearly two weeks ago . JJ CC JJ NN NNS VBD NNP IN DT JJ NN IN NNP NN NNS IN DT NN VBG RB CD NNS RB . Generals from both sides met to map out plans for the withdrawal of Israeli forces from five West Bank cities and towns that Israel re-occupied during the recently-halted Palestinian uprising . NNS IN DT NNS VBD TO VB RP NNS IN DT NN IN JJ NNS IN CD NNP NNP NNS CC NNS IN NNP VBD IN DT JJ JJ NN . The withdrawal is part of a package of pledges made by Israel during an Israeli-Palestinian summit early last month . DT NN VBZ NN IN DT NN IN NNS VBN IN NNP IN DT JJ NN RB JJ NN . As the generals met , Israeli security sources revealed that Defense Minister Shaul Mofaz will meet with Palestinian leader Mahmoud Abbas in the coming days to further the often-stalled Mideast peace process . IN DT NNS VBD , JJ NN NNS VBD IN NNP NNP NNP NNP MD VB IN JJ NN NNP NNP IN DT VBG NNS TO VB DT JJ JJ NN NN . Israel suspended its diplomacy after a Palestinian suicide bombing killed five Israelis February 25 in a Tel Aviv nightclub . NNP VBD PRP$ NN IN DT JJ NN NN VBD CD NNS NNP CD IN DT NNP NNP NN . Sudan 's Vice President , Salva Kiir Mayardit , has discussed the investigation into the death of his predecessor , John Garang , with the Ugandan president . NNP POS NNP NNP , NNP NNP NNP , VBZ VBN DT NN IN DT NN IN PRP$ NN , NNP NNP , IN DT JJ NN . A spokesman for Ugandan President Yoweri Museveni told the French News Agency that Mr. Salva Kiir expressed satisfaction with the progress of the investigation . DT NN IN JJ NNP NNP NNP VBD DT NNP NNP NNP IN NNP NNP NNP VBD NN IN DT NN IN DT NN . The two officials also discussed the possibility of Sudanese soldiers joining forces with the Ugandan army to fight the rebel Lord 's Resistance Army in northern Uganda . DT CD NNS RB VBD DT NN IN JJ NNS VBG NNS IN DT JJ NN TO VB DT NN NNP POS NN NN IN JJ NNP . Vice President Garang died on July 30 when the Ugandan military helicopter he was traveling in crashed . NNP NNP NNP VBD IN NNP CD WRB DT JJ JJ NN PRP VBD VBG IN VBN . Mr. Garang had been in Uganda to visit with President Museveni , a long-time ally . NNP NNP VBD VBN IN NNP TO VB IN NNP NNP , DT JJ NN . The investigation into Mr. Garang 's death is a multinational effort involving officials from Uganda , Sudan , Kenya the United States and the United Nations . DT NN IN NNP NNP POS NN VBZ DT JJ NN VBG NNS IN NNP , NNP , NNP DT NNP NNPS CC DT NNP NNPS . World leaders attending a conference on Islam 's global roles are calling on Muslim clerics and scholars to do more to denounce terrorism and its masterminds . NNP NNS VBG DT NN IN NNP POS JJ NNS VBP VBG IN NNP NNS CC NNS TO VB JJR TO VB NN CC PRP$ NNS . The gathering in Vienna of religious and political leaders is examining ways to improve contacts between the West and Muslim nations . DT NN IN NNP IN JJ CC JJ NNS VBZ VBG NNS TO VB NNS IN DT NNP CC NNP NNS . Iraqi President Jalal Talabani told the gathering that if terrorism is not denounced it might allow Islamic radicalism to spread . JJ NNP NNP NNP VBD DT NN IN IN NN VBZ RB VBN PRP MD VB NNP NN TO VB . He said Islamic leaders must declare that terrorist groups are only trying to deceive their followers and do nothing but create destruction . PRP VBD JJ NNS MD VB IN JJ NNS VBP RB VBG TO VB PRP$ NNS CC VB DT CC VB NN . Afghan President Hamid Karzai warned that failure to defeat Taleban-led terrorism in his country could have wider consequences , and predicted more attacks to come . JJ NNP NNP NNP VBD IN NN TO VB JJ NN IN PRP$ NN MD VB JJR NNS , CC VBD JJR NNS TO VB . But he vowed they will not stop him from democratizing the country and further strengthening the democratic institutions . CC PRP VBD PRP MD RB VB PRP IN VBG DT NN CC JJ VBG DT JJ NNS . Somali elders in the north of the country say pirates have released two German hostages who were kidnapped more than six weeks ago . JJ NNS IN DT NN IN DT NN VBP NNS VBP VBN CD JJ NNS WP VBD VBN RBR IN CD NNS RB . The Germans were freed Friday . DT NNS VBD VBN NNP . Elders say a ransom was paid for the two . NN VBP DT NN VBD VBN IN DT CD . They are now in the Somalia 's main port city Bossaso and are expected to be flown out of the country soon . PRP VBP RB IN DT NNP POS JJ NN NN NNP CC VBP VBN TO VB VBN IN IN DT NN RB . They were abducted from their yacht off the coast of Yemen when they were traveling to Thailand . PRP VBD VBN IN PRP$ NN IN DT NN IN NNP WRB PRP VBD VBG TO VB . Piracy is rife along Somalia 's coast and has increased over the last year . NN VBZ JJ IN NNP POS NN CC VBZ VBN IN DT JJ NN . An Indonesian health official says a chicken seller suspected of being infected with bird flu has died at Jakarta 's infectious diseases hospital . DT JJ NN NN VBZ DT NN NN VBN IN VBG VBN IN NN NN VBZ VBN IN NNP POS JJ NNS NN . A hospital spokesman said the 22-year-old dead man had a history of contact with poultry . DT NN NN VBD DT JJ JJ NN VBD DT NN IN NN IN NN . Indonesian authorities say their tests indicate the man was infected with the deadly H5N1 strain of the avian flu virus . JJ NNS VBP PRP$ NNS VBP DT NN VBD VBN IN DT JJ NNP NN IN DT JJ NN NN . If the World Health Organization laboratory in Hong Kong confirms the case , the man will be Indonesia 's 15th fatality from avian influenza . IN DT NNP NNP NNP NN IN NNP NNP VBZ DT NN , DT NN MD VB NNP POS JJ NN IN JJ NN . The Philippine government says it will resume peace talks with Muslim separatist rebels next month in neighboring Malaysia . DT JJ NN VBZ PRP MD VB NN NNS IN NNP JJ NNS JJ NN IN VBG NNP . Manila 's top negotiator Silvestre Afable said Friday that talks with the Moro Islamic Liberation Front ( MILF ) will begin in Kuala Lumpur on April 16 . NNP POS JJ NN NNP NNP VBD NNP IN NNS IN DT NNP NNP NNP NNP LRB NNP RRB MD VB IN NNP NNP IN NNP CD . Both sides have been observing a cease-fire for the past 20 months , monitored by a 60-member Malaysian-led international contingent . DT NNS VBP VBN VBG DT NN IN DT JJ CD NNS , VBN IN DT JJ JJ JJ JJ . The MILF , which has been fighting a three-decade-old insurgency in the southern Philippines , has renounced terrorism and pledged to help hunt down foreign extremists . DT NNP , WDT VBZ VBN VBG DT JJ NN IN DT JJ NNP , VBZ VBN NN CC VBD TO VB VB RP JJ NNS . But the group has been accused of sheltering operatives of the regional terror network Jemaah Islamiyah , accusations the MILF has repeatedly denied . CC DT NN VBZ VBN VBN IN VBG NNS IN DT JJ NN NN NNP NNP , NNS DT NNP VBZ RB VBN . The Olympic games now underway are not just about sports , they also are an opportunity for China to introduce its culture to the world . DT NNP NNS RB VBP VBP RB RB IN NNS , PRP RB VBP DT NN IN NNP TO VB PRP$ NN TO DT NN . But as China modernizes , some warn that one of its most traditional arts is in danger of disappearing . CC IN NNP VBZ , DT VBP IN CD IN PRP$ RBS JJ NNS VBZ IN NN IN VBG . Daniel Schearf reports from Beijing . NNP NNP VBZ IN NNP . The head of the U.N. nuclear agency says Iran will eventually need security assurances from the United States in exchange for guarantees not to develop nuclear weapons . DT NN IN DT NNP JJ NN VBZ NNP MD RB VB NN NNS IN DT NNP NNPS IN NN IN NNS RB TO VB JJ NNS . Mohamed ElBaradei , the chief of the International Atomic Energy Agency , spoke to reporters in Paris Monday on the sidelines of a conference on the future of nuclear energy . NNP NNP , DT NN IN DT NNP NNP NNP NNP , VBD TO NNS IN NNP NNP IN DT NNS IN DT NN IN DT NN IN JJ NN . He said Washington will have to get involved when the European Union and Iran discuss security issues . PRP VBD NNP MD VB TO VB VBN WRB DT NNP NNP CC NNP VB NN NNS . Mr. ElBaradei says ' regional security is not only a European affair . ' NNP NNP VBZ `` JJ NN VBZ RB RB DT JJ NN . `` Britain , France and Germany have offered Iran political and economic incentives if it abandons uranium enrichment activities capable of producing weapons grade material . NNP , NNP CC NNP VBP VBN NNP JJ CC JJ NNS IN PRP VBZ NN NN NNS JJ IN VBG NNS NN NN . The United States , which accuses Iran of secretly trying to develop nuclear weapons , is now supporting the European effort by offering added incentives . DT NNP NNPS , WDT VBZ NNP IN RB VBG TO VB JJ NNS , VBZ RB VBG DT JJ NN IN VBG JJ NNS . Iran insists its nuclear program is only for generating electricity . NNP VBZ PRP$ JJ NN VBZ RB IN VBG NN . Amid rising gasoline prices and slumping U.S. sales , international auto giant General Motors announced a plan Tuesday [ July 15th ] to cut expenses and shift production to more fuel-efficient cars . IN VBG NN NNS CC VBG NNP NNS , JJ NN NN NNP NNP VBD DT NN NNP LRB NNP CD RRB TO VB NNS CC NN NN TO JJR JJ NNS . Company officials say they will lay off workers , cut truck production and suspend its stock dividend . NN NNS VBP PRP MD VB RP NNS , VB NN NN CC VB PRP$ NN NN . VOA 's Jeff Swicord Reports . NNP POS NNP NNP VBZ . A group of veteran Chinese Communist Party members and academics has issued a joint statement criticizing the government for excessive media censorship . DT NN IN NN JJ NNP NNP NNS CC NNS VBZ VBN DT JJ NN VBG DT NN IN JJ NNS NN . The statement released to reporters Wednesday warned Beijing of unrest if some measures of free expression were not permitted . DT NN VBN IN NNS NNP VBD NNP IN NN IN DT NNS IN JJ NN VBD RB VBN . The statement in particular referred to last month 's closure of a popular supplement to the China Youth Daily . DT NN IN NN VBD TO JJ NN POS NN IN DT JJ NN TO DT NNP NNP NNP . Freezing Point was a more than 10-year old publication that gained popularity for its bold articles . VBG NN VBD DT JJR IN JJ JJ NN WDT VBD NN IN PRP$ JJ NNS . The joint statement was signed by 13 people , many of whom formerly were high-ranking officials . DT JJ NN VBD VBN IN CD NNS , NN IN WP RB VBD JJ NNS . Among the signatories were Chairman Mao 's former secretary Li Rui ; the former head of the Communist Party 's Propaganda Department , Zhu Houze ; and Li Pu , the retired deputy director of the official Xinhua news agency . IN DT NNS VBD NNP NNP POS JJ NN NNP NNP ; DT JJ NN IN DT NNP NNP POS NNP NNP , NNP NNP ; CC NNP NNP , DT JJ NN NN IN DT JJ NNP NN NN . During his two-day stay , Hu Jintao 's talks with British Prime Minister Tony Blair are expected to touch on a range of issues , including economic relations and global warming . IN PRP$ JJ NN , NNP NNP POS NNS IN JJ NNP NNP NNP NNP VBP VBN TO VB IN DT NN IN NNS , VBG JJ NNS CC JJ NN . Mr. Hu also is expected to discuss Beijing 's push for an end to a 16-year European Union arms embargo against China . NNP NNP RB VBZ VBN TO VB NNP POS NN IN DT NN TO DT JJ NNP NNP NNS NN IN NNP . The ban was imposed after China 's brutal crackdown on the 1989 Tiananmen Square pro-democracy protests . DT NN VBD VBN IN NNP POS JJ NN IN DT CD NNP NNP JJ NNS . The Chinese president also will attend a banquet with Queen Elizabeth II . DT JJ NN RB MD VB DT NN IN NNP NNP NNP . Following his visit to Britain , Mr. Hu is to travel to Germany and Spain before heading to South Korea for the Asia-Pacific Economic Cooperation forum that begins November 18 . VBG PRP$ NN TO NNP , NNP NNP VBZ TO VB TO NNP CC NNP IN VBG TO NNP NNP IN DT NNP NNP NNP NN WDT VBZ NNP CD . The Norwegian Nobel Institute has announced a near-record number of nominations for the Nobel Peace Prize in 2006 . DT JJ NNP NNP VBZ VBN DT JJ NN IN NNS IN DT NNP NNP NNP IN CD . The five-member awards committee says there are 191 nominations . DT JJ NNS NN VBZ EX VBP CD NNS . Last year 's award to the International Atomic Energy Agency ( IAEA ) and its leader Mohamed ElBaradei followed a record 199 nominees . JJ NN POS NN TO DT NNP NNP NNP NNP LRB NNP RRB CC PRP$ NN NNP NNP VBD DT NN CD NNS . The committee keeps the nomination list secret . DT NN VBZ DT NN NN NN . The institute 's director Geir Lundestad would only say 168 individuals and 23 organizations were suggested from all parts of the world . DT NN POS NN NNP NNP MD RB VB CD NNS CC CD NNS VBD VBN IN DT NNS IN DT NN . However , those who submit nominations can announce their selections . RB , DT WP VBP NNS MD VB PRP$ NNS . Nominees include a former Finnish President and Indonesian President for negotiating peace in Indonesia 's Aceh province . NNS VBP DT JJ JJ NNP CC JJ NNP IN VBG NN IN NNP POS NNP NN . Also on the list are U2 singer Bono and Live 8 organizer Bob Geldof for their work on poverty eradication . RB IN DT NN VBP NNP NN NNP CC NNP CD NN NNP NNP IN PRP$ NN IN NN NN . The Peace Prize is awarded on December 10 in Oslo . DT NNP NNP VBZ VBN IN NNP CD IN NNP . Vietnamese veterinary officials say bird flu has infected chickens on two farms in the capital , Hanoi . JJ JJ NNS VBP NN NN VBZ VBN NNS IN CD NNS IN DT NN , NNP . Officials say authorities have slaughtered the surviving chickens after a number of birds died on the farms in Hanoi 's Dong Anh district . NNS VBP NNS VBP VBN DT VBG NNS IN DT NN IN NNS VBD IN DT NNS IN NNP POS NNP NNP NN . Authorities say some of the dead chickens tested positive for the often-fatal H5N1 strain of the bird flu virus . NNS VBP DT IN DT JJ NNS VBD JJ IN DT JJ NNP NN IN DT NN NN NN . Wednesday 's announcement follows one from Ha Tay province , where a bird flu outbreak was reported Tuesday . NNP POS NN VBZ CD IN NNP NNP NN , WRB DT NN NN NN VBD VBN NNP . Last month , the virus was identified on farms in the provinces of Hai Duong and Vinh Long . JJ NN , DT NN VBD VBN IN NNS IN DT NNS IN NNP NNP CC NNP NNP . Bird flu emerged in Vietnam in 2003 and has killed 42 people in the country since then . NN NN VBD IN NNP IN CD CC VBZ VBN CD NNS IN DT NN IN RB . It has not reported any human cases of bird flu since late 2005 . PRP VBZ RB VBN DT JJ NNS IN NN NN IN JJ CD . The disease has killed 167 people worldwide . DT NN VBZ VBN CD NNS JJ . The president of India , Abdul Kalam , has donated the money meant to be used for the New Year 's celebrations at his presidential palace for the tsunami disaster relief fund . DT NN IN NNP , NNP NNP , VBZ VBN DT NN VBN TO VB VBN IN DT NNP NNP POS NNS IN PRP$ JJ NN IN DT NN NN NN NN . A spokesman says the president has canceled the New Year festivities in view of the grim situation in the Andaman & Nicobar Islands , Tamil Nadu , Pondicherry , Kerala and Andhra Pradesh . DT NN VBZ DT NN VBZ VBN DT NNP NNP NNS IN NN IN DT JJ NN IN DT NNP CC NNP NNP , NNP NNP , NNP , NNP CC NNP NNP . He also has urged well-to-do families of India to adopt at least one victim of the disaster . PRP RB VBZ VBN JJ NNS IN NNP TO VB IN JJS CD NN IN DT NN . Meanwhile , Prime Minister Manmohan Singh 's office says he will be traveling to the Andaman and Nicobar islands soon to assess the situation . RB , NNP NNP NNP NNP POS NN VBZ PRP MD VB VBG TO DT NNP CC NNP NNS RB TO VB DT NN . The announcement was made as he returned to New Delhi from a similar three-day trip to India 's tsunami-affected southern states of Tamil Nadu , Kerala and Andhra Pradesh . DT NN VBD VBN IN PRP VBD TO NNP NNP IN DT JJ JJ NN TO NNP POS JJ JJ NNS IN NNP NNP , NNP CC NNP NNP . Iran has warned that it will make what it calls ' unilateral decisions ' regarding its nuclear program if Europe refers the Islamic Republic to the United Nations Security Council for sanctions . NNP VBZ VBN IN PRP MD VB WP PRP VBZ `` JJ NNS `` VBG PRP$ JJ NN IN NNP VBZ DT NNP NNP TO DT NNP NNP NNP NNP IN NNS . The warning Sunday by an Iranian Foreign Ministry spokesman Hamid Reza Asefi comes just days before the resumption of high-level talks with France , Germany and Britain . DT NN NNP IN DT JJ NNP NNP NN NNP NNP NNP VBZ RB NNS IN DT NN IN JJ NNS IN NNP , NNP CC NNP . He told journalists that negotiations this week in Geneva will prove whether Tehran can reach an agreement with Europe . PRP VBD NNS IN NNS DT NN IN NNP MD VB IN NNP MD VB DT NN IN NNP . Iran has raised the stakes in the negotiations by threatening to resume processing uranium , a step in its nuclear program that could allow it to manufacture nuclear reactor fuel or weapons-grade nuclear material . NNP VBZ VBN DT NNS IN DT NNS IN VBG TO VB VBG NN , DT NN IN PRP$ JJ NN WDT MD VB PRP TO VB JJ NN NN CC JJ JJ NN . Tehran says its nuclear program is intended for peaceful purposes . NNP VBZ PRP$ JJ NN VBZ VBN IN JJ NNS . The United States says it is meant to hide a secret weapons program . DT NNP NNPS VBZ PRP VBZ VBN TO VB DT JJ NNS NN . At least 40 people were killed and more than 120 injured when a train packed with holiday travelers derailed in the early morning hours on Wednesday in southern Pakistan . IN JJS CD NNS VBD VBN CC JJR IN CD NN WRB DT NN VBN IN NN NNS VBN IN DT JJ NN NNS IN NNP IN JJ NNP . The train was heading from the port city of Karachi to Lahore when the majority of its cars slipped off the rails near the town of Mehrabpur in Sindh province . DT NN VBD VBG IN DT JJ NN IN NNP TO VB WRB DT NN IN PRP$ NNS VBD RP DT NNS IN DT NN IN NNP IN NNP NN . The manager of Pakistan 's railway system has ruled out sabotage as a cause . DT NN IN NNP POS NN NN VBZ VBN RP NN IN DT NN . He said initial reports indicate a welded joint in the track broke , due to contraction in the extreme cold . PRP VBD JJ NNS VBP DT JJ NN IN DT NN VBD , JJ TO NN IN DT JJ NN . Local villagers helped rescue those trapped in the wreckage in total darkness , before emergency crews arrived on the scene . JJ NNS VBD VB DT VBN IN DT NN IN JJ NN , IN NN NNS VBD IN DT NN . Many of the passengers were heading home to celebrate the Muslim festival of Eid al-Adha , the festival of sacrifice . NN IN DT NNS VBD VBG NN TO VB DT NNP NN IN NNP NNP , DT NN IN NN . Pakistan suffered its worst train accident in 2005 when more than 130 people were killed after three trains collided also in Sindh province . NNP VBD PRP$ JJS NN NN IN CD WRB JJR IN CD NNS VBD VBN IN CD NNS VBD RB IN NNP NN . Meterologists say a new tropical storm has formed off the east coast of Florida but do not expect the storm to become a hurricane . NNS VBP DT JJ JJ NN VBZ VBN RP DT JJ NN IN NNP CC VBP RB VB DT NN TO VB DT NN . The U.S. National Hurricane Center says Tropical Storm Tammy is centered about 32 kilometers east of Cape Canaveral , home of the United States ' space shuttle fleet . DT NNP NNP NNP NNP VBZ NNP NNP NNP VBZ VBN IN CD NNS NN IN NNP NNP , NN IN DT NNP NNPS POS NN NN NN . The storm is expected to move up the East Coast and dump heavy rain on the states of Florida , Georgia , and South Carolina . DT NN VBZ VBN TO VB RP DT NNP NNP CC VB JJ NN IN DT NNS IN NNP , NNP , CC NNP NNP . But forecasters say Tammy will likely spend only a short time over water , preventing it from gaining hurricane strength . CC NNS VBP NNP MD RB VB RB DT JJ NN IN NN , VBG PRP IN VBG NN NN . Tammy is the 19th named storm of this year 's unusually active Atlantic hurricane season . NNP VBZ DT JJ VBN NN IN DT NN POS RB JJ NNP NN NN . The 18th storm of the season , Tropical Storm Stan , is dissipating after passing over the mountains of southeastern Mexico . DT JJ NN IN DT NN , NNP NNP NNP , VBZ VBG IN VBG IN DT NNS IN JJ NNP . The Hollywood movie studio that produced well-known films like the James Bond series and ' The Wizard of Oz ' has filed for bankruptcy . DT NNP NN NN WDT VBD JJ NNS IN DT NNP NNP NN CC `` DT NNP IN NNP `` VBZ VBN IN NN . For decades , MGM has been making films that begin with the distinctive picture and sound of a lion roaring . IN NNS , NNP VBZ VBN VBG NNS WDT VBP IN DT JJ NN CC NN IN DT NN NN . The studio is to be restructured and given new leadership , but it will continue making movies . DT NN VBZ TO VB VBN CC VBN JJ NN , CC PRP MD VB VBG NNS . Executives from a rival film company , Spyglass Entertainment , will now run MGM . NNS IN DT JJ NN NN , NNP NNP , MD RB VB NNP . The creditors included billionaire Carl Icahn , who was pressing for a different company to take over the failing studio . DT NNS VBD NN NNP NNP , WP VBD VBG IN DT JJ NN TO VB RP DT VBG NN . After lengthy negotiations , the creditors agreed to exchange about $ 4 billion in debt for shares in the new company . IN JJ NNS , DT NNS VBD TO VB IN $ CD CD IN NN IN NNS IN DT JJ NN . The studio was hurt by some expensive films that sold too few tickets to make a profit , slumping sales of DVDs , and a heavy debt burden . DT NN VBD VBN IN DT JJ NNS WDT VBD RB JJ NNS TO VB DT NN , VBG NNS IN NNP , CC DT JJ NN NN . U.S. soldiers in Iraq have discovered a large cache of weapons and ammunition during a random house-to-house search in Baghdad . NNP NNS IN NNP VBP VBN DT JJ NN IN NNS CC NN IN DT JJ NN NN IN NNP . U.S. military officials say the soldiers also detained five suspected terrorists in Monday 's operation in the Al Rashid district of the capital . NNP JJ NNS VBP DT NNS RB VBD CD JJ NNS IN NNP POS NN IN DT NNP NNP NN IN DT NN . Rocket launchers , mortars , AK-47 rifles , explosives and 300 rounds of ammunition , along with several Iraqi police uniforms were among the items seized from the house . NNP NNS , NNS , NNP NNS , NNS CC CD NNS IN NN , IN IN JJ JJ NNS NNS VBD IN DT NNS VBN IN DT NN . Meanwhile , Iraqi and Egyptian official say there has been no contact from the assailants who abducted Egypt 's top envoy to Iraq . RB , JJ CC JJ NN VBP EX VBZ VBN DT NN IN DT NNS WP VBD NNP POS JJ NN TO NNP . Officials say the envoy , Ihab al-Sherif , was kidnapped Saturday near his home in Baghdad as he stopped to buy a newspaper . NNS VBP DT NN , NNP NNP , VBD VBN NNP IN PRP$ NN IN NNP IN PRP VBD TO VB DT NN . His abduction follows Cairo 's announcement that Egypt would become the first Arab nation to establish full diplomatic ties with Iraq 's new government . PRP$ NN VBZ NNP POS NN IN NNP MD VB DT JJ JJ NN TO VB JJ JJ NNS IN NNP POS JJ NN . Donor nations have pledged a record $ 25 billion to help fight poverty in the world 's poorest nations , which are home to two and a half billion people . NNP NNS VBP VBN DT NN $ CD CD TO VB VB NN IN DT NN POS JJS NNS , WDT VBP NN TO CD CC DT NN CD NNS . The new donations boost the bank 's International Development Association 's budget to more than $ 41 billion over the next three years . DT JJ NNS VBP DT NN POS NNP NNP NNP POS NN TO JJR IN $ CD CD IN DT JJ CD NNS . A total of 45 nations pledged donations , including six new countries -- China , Cyprus , Egypt , Estonia , Latvia and Lithuania . DT NN IN CD NNS VBD NNS , VBG CD JJ NNS IN NNP , NNP , NNP , NNP , NNP CC NNP . Egypt and China were once recipients of World Bank aid . NNP CC NNP VBD RB NNS IN NNP NNP NN . The International Development Association is one of the largest sources of assistance for the world 's poorest countries . DT NNP NNP NNP VBZ CD IN DT JJS NNS IN NN IN DT NN POS JJS NNS . The money addresses education , health , water , sanitation , environmental issues , business development and other issues . DT NN VBZ NN , NN , NN , NN , JJ NNS , NN NN CC JJ NNS . Former world number one women 's tennis player Martina Hingis has lost in the semifinals of the Australian women 's hard court tournament in Gold Coast , falling to fourth seeded Italian Plavia Pennetta 01-Jun , 07-Jun , 06-Feb . JJ NN NN CD NNS POS NN NN NNP NNP VBZ VBN IN DT NNS IN DT JJ NNS POS JJ NN NN IN NNP NNP , VBG TO JJ JJ JJ NNP NNP CD , CD , CD . The loss Friday ended Hingis ' three match winning streak in her first tournament since injuries forced the Swiss tennis player into retirement three years ago . DT NN NNP VBD NNP POS CD NN VBG NN IN PRP$ JJ NN IN NNS VBD DT JJ NN NN IN NN CD NNS RB . She also announced after the match that she would not play in a scheduled semifinal doubles match later Friday because of a hip injury . PRP RB VBD IN DT NN IN PRP MD RB VB IN DT VBN JJ NNS VBP RB NNP IN IN DT NN NN . Hingis still intends to play in the Sydney International Tournament next week and the Australian open which begins January 16 . NNP RB VBZ TO VB IN DT NNP NNP NNP JJ NN CC DT JJ JJ WDT VBZ NNP CD . In the other semifinal match Friday , the Czech Republic 's Lucie Safarova defeated third-seeded Dinara Safina of Russia , 06-Apr , 06-Feb . IN DT JJ JJ NN NNP , DT JJ NNP POS NNP NNP VBD JJ NNP NNP IN NNP , CD , CD . A member of an Islamic terrorist group in the U.S. has been sentenced to 12.5 years in prison for plotting attacks against targets in Los Angeles , California . DT NN IN DT JJ JJ NN IN DT NNP VBZ VBN VBN TO CD NNS IN NN IN VBG NNS IN NNS IN NNP NNP , NNP . Gregory Patterson pleaded guilty to conspiracy to wage war against the United States and possession of a firearm . NNP NNP VBD JJ TO NN TO VB NN IN DT NNP NNPS CC NN IN DT NN . The 24-year-old was sentenced Monday by a U.S. District Court . DT JJ VBD VBN NNP IN DT NNP NNP NNP . Patterson was among four men charged in connection with the plot . NNP VBD IN CD NNS VBN IN NN IN DT NN . Targets included the Los Angeles International Airport , U.S. military recruiting centers , and the Israeli Consulate . NNS VBD DT NNP NNP NNP NNP , NNP JJ NN NNS , CC DT JJ NN . Last month , co-conspirator Levar Washington was sentenced to 22 years imprisonment for conspiracy and weapons charges . JJ NN , NN NNP NNP VBD VBN TO CD NNS NN IN NN CC NNS NNS . The men belonged to Jam'iyyat Ul-Islam Is-Saheeh , a local terrorist cell founded by Kevin James in 1997 while he was in prison . DT NNS VBD TO NNP NNP NNP , DT JJ JJ NN VBN IN NNP NNP IN CD IN PRP VBD IN NN . James is expected to be sentenced early next year . NNP VBZ VBN TO VB VBN RB JJ NN . A fourth co-conspirator , Hammad Samana , was declared unfit to stand trial and is in a psychiatric facility . DT JJ NN , NNP NNP , VBD VBN JJ TO VB NN CC VBZ IN DT JJ NN . A Latina member of the U.S. Congress has accused Republicans of scapegoating illegal immigrants . DT NNP NN IN DT NNP NNP VBZ VBN NNS IN VBG JJ NNS . In the Democratic party 's weekly radio address Saturday , Hilda Solis of California said Republicans have steadily built up an assault on immigrants over the past few years to divide voters and win elections . IN DT JJ NN POS JJ NN NN NNP , NNP NNP IN NNP VBD NNS VBP RB VBN RP DT NN IN NNS IN DT JJ JJ NNS TO NN NNS CC VB NNS . The lawmaker , the child of Mexican and Nicaraguan immigrants , said a House bill that criminalizes being or helping illegal immigrants is alienating all Americans . DT NN , DT NN IN JJ CC JJ NNS , VBD DT NNP NN WDT VBZ VBG CC VBG JJ NNS VBZ VBG DT NNS . Solis called for renewed debate on immigration reform as soon as Congress returns from its two-week recess . NNP VBD IN JJ NN IN NN NN RB RB IN NNP NNS IN PRP$ JJ NN . She said reform should be tough , smart , and comprehensive , yet compassionate . PRP VBD NN MD VB JJ , JJ , CC JJ , RB JJ . Foreigners are flocking to the Chinese capital for the Olympic Games and Beijing has gone on the charm offensive . NNS VBP VBG TO DT JJ NN IN DT NNP NNPS CC NNP VBZ VBN IN DT NN NN . With an army of volunteers ready to help tourists , thousands of police on patrol , and floral displays providing a facelift , Beijing hopes to win over the world with its makeover . IN DT NN IN NNS JJ TO VB NNS , NNS IN NNS IN NN , CC JJ NNS VBG DT NN , NNP VBZ TO VB IN DT NN IN PRP$ NN . Mandy Clark reports from the Chinese capital for VOA . NNP NNP VBZ IN DT JJ NN IN NNP . Afghan officials say at least 10 civilians were killed Friday when a barrage of rockets targeting a U.S. military base in eastern Afghanistan hit a nearby village . JJ NNS VBP IN JJS CD NNS VBD VBN NNP WRB DT NN IN NNS VBG DT NNP JJ NN IN JJ NNP VBD DT JJ NN . Several others were wounded in the attack in Kunar province believed to be the work of Taleban militants . JJ NNS VBD VBN IN DT NN IN NNP NN VBN TO VB DT NN IN NNP NNS . Hours earlier , a suicide bomber blew up a car packed with explosives near an entrance to the Kabul International Airport , killing two Afghan soldiers and wounding about 10 others . NNS RB , DT NN NN VBD RP DT NN VBN IN NNS IN DT NN TO DT NNP NNP NNP , VBG CD JJ NNS CC VBG IN CD NNS . The bomber rammed the car into a NATO vehicle but the explosives did not go off immediately . DT NN VBD DT NN IN DT NNP NN CC DT NNS VBD RB VB RB RB . The car sped off and then exploded , hitting a group of Afghan soldiers waiting to fly to Italy for military training . DT NN VBD RB CC RB VBD , VBG DT NN IN JJ NNS VBG TO VB TO NNP IN JJ NN . The Taleban claimed responsibility for the attack . DT NNP VBD NN IN DT NN . The past 19 months in Afghanistan have been marked by a steady rise in militant attacks , marking the bloodiest period since the Taleban was ousted from power by U.S. troops in 2001 . DT JJ CD NNS IN NNP VBP VBN VBN IN DT JJ NN IN JJ NNS , VBG DT JJS NN IN DT NNP VBD VBN IN NN IN NNP NNS IN CD . The political leader of Hamas says the Palestinian militant group is ready to merge all armed factions to form an army that will defend the Palestinian people . DT JJ NN IN NNP VBZ DT JJ JJ NN VBZ JJ TO VB DT JJ NNS TO VB DT NN WDT MD VB DT JJ NNS . Speaking Saturday from his base in Damascus , Syria , Khaled Mashaal rejected U.S. , European and Israeli demands for Hamas to disarm . VBG NNP IN PRP$ NN IN NNP , NNP , NNP NNP VBD NNP , JJ CC JJ NNS IN NNP TO VB . But he said the group will honor existing agreements between the Palestinian Authority and Israel , provided they serve the Palestinians ' interests . CC PRP VBD DT NN MD VB VBG NNS IN DT JJ NNP CC NNP , VBD PRP VBP DT NNS POS NNS . Hamas has claimed many suicide attacks against Israel and has vowed to destroy the Jewish state . NNP VBZ VBN JJ NN NNS IN NNP CC VBZ VBN TO VB DT JJ NN . Meanwhile , armed activists of the Palestinian Fatah party have held protests in the West Bank and Gaza , following Hamas ' stunning election victory this week over Fatah . RB , JJ NNS IN DT JJ NNP NN VBP VBN NNS IN DT NNP NNP CC NNP , VBG NNP POS JJ NN NN DT NN IN NNP . Fatah gunmen fired shots in the air today from the roof of the Palestinian parliament building in the West Bank town of Ramallah , demanding the resignation of Fatah leaders . NNP NNS VBD NNS IN DT NN NN IN DT NN IN DT JJ NN NN IN DT NNP NNP NN IN NNP , VBG DT NN IN NNP NNS . There were no reports of casualties . EX VBD DT NNS IN NNS . The U.S. Embassy in Riyadh , Saudi Arabia , and the consulates in Jeddah and Dhahran will be closed on Monday and Tuesday due to terror threats against U.S. government buildings in the kingdom . DT NNP NNP IN NNP , NNP NNP , CC DT NNS IN NNP CC NNP MD VB VBN IN NNP CC NNP JJ TO JJ NNS IN NNP NN NNS IN DT NN . An embassy statement urges U.S. citizens in Saudi Arabia to maintain a high level of vigilance . DT JJ NN VBZ NNP NNS IN NNP NNP TO VB DT JJ NN IN NN . It says there is no specific information about the timing or targets in any possible attacks . PRP VBZ EX VBZ DT JJ NN IN DT NN CC NNS IN DT JJ NNS . But it notes that terrorist groups in the past have targeted housing compounds and other facilities frequented by Westerners . CC PRP VBZ IN JJ NNS IN DT NN VBP VBN NN NNS CC JJ NNS VBN IN NNS . Somali President Abdullahi Yusuf Amhed says he will hold a national reconciliation conference in the coming weeks to help the country return to peace . JJ NNP NNP NNP NNP VBZ PRP MD VB DT JJ NN NN IN DT VBG NNS TO VB DT NN NN TO NN . Speaking during a Thursday visit to London , Mr. Yusuf said the conference will be open to moderate Islamists . VBG IN DT NNP NN TO NNP , NNP NNP VBD DT NN MD VB JJ TO JJ NNS . He said the only conditions for taking part in the talks are to lay down weapons , renounce violence and be committed to a peaceful Somalia . PRP VBD DT JJ NNS IN VBG NN IN DT NNS VBP TO VB RP NNS , NN NN CC VB VBN TO DT JJ NNP . Ethiopian and Somali government troops drove Islamist forces from the capital , Mogadishu , late last year . JJ CC JJ NN NNS VBD JJ NNS IN DT NN , NNP , RB JJ NN . Since then , insurgents have mounted frequent attacks , which have killed many people , mainly civilians . IN RB , NNS VBP VBN JJ NNS , WDT VBP VBN JJ NNS , RB NNS . At least two mortar rounds landed near Mogadishu 's international airport Thursday , but no injuries were reported . IN JJS CD JJ NNS VBD IN NNP POS JJ NN NNP , CC DT NNS VBD VBN . And officials say unknown gunmen shot to death two local government officials in the capital late Wednesday . CC NNS VBP JJ NNS VBD TO NN CD JJ NN NNS IN DT NN JJ NNP . A sports agent based in the U.S. state of California has been found guilty of smuggling Cuban baseball players into the United States . DT NNS NN VBN IN DT NNP NN IN NNP VBZ VBN VBN JJ IN VBG JJ NN NNS IN DT NNP NNPS . A court in Key West , Florida , found Gustavo Dominguez guilty Thursday on 21 federal charges , including conspiracy , smuggling , transporting , and harboring illegal immigrants . DT NN IN NNP NNP , NNP , VBD NNP NNP JJ NNP IN CD JJ NNS , VBG NN , VBG , VBG , CC VBG JJ NNS . Most of the charges carry a maximum prison sentence of 10 years . JJS IN DT NNS VBP DT JJ NN NN IN CD NNS . Dominguez is free until his sentencing July 9 . NNP VBZ JJ IN PRP$ NN NNP CD . His lawyer says they will appeal . PRP$ NN VBZ PRP MD VB . Dominguez was on trial for smuggling five baseball players from Cuba to Florida in 2004 . NNP VBD IN NN IN VBG CD NN NNS IN NNP TO NNP IN CD . Only two are still playing baseball . RB CD VBP RB VBG NN . Osbek Castillo is a pitcher for the Arizona Diamondbacks ' feeder team in Alabama , while Francisely Bueno pitches for the Atlanta Braves ' feeder team in Mississippi . NNP NNP VBZ DT NN IN DT NNP NNPS POS NN NN IN NNP , IN NNP NNP VBZ IN DT NNP NNPS POS NN NN IN NNP . An international journalists ' rights group has called on the European Union to maintain its support for Cuban dissidents . DT JJ NNS POS NNS NN VBZ VBN IN DT NNP NNP TO VB PRP$ NN IN JJ NNS . In a statement released Friday , the Paris-based Reporters without Borders called Cuba the world 's biggest prison for the press after China . IN DT NN VBN NNP , DT JJ NNS IN NNP VBD NNP DT NN POS JJS NN IN DT NN IN NNP . The group criticized the EU Committee on Latin America 's recommendation to reestablish cooperation with Cuban authorities . DT NN VBD DT NNP NNP IN NNP NNP POS NN TO VB NN IN JJ NNS . It said resumption of dialogue with the communist nation would not result in significant progress in human rights . PRP VBD NN IN NN IN DT JJ NN MD RB VB IN JJ NN IN JJ NNS . The group said the EU should maintain the measures adopted after the ' Black Spring ' arrests in March 2003 , and recommended more active support for dissidents now being repressed in Cuba . DT NN VBD DT NNP MD VB DT NNS VBN IN DT `` NNP VBG `` NNS IN NNP CD , CC VBD JJR JJ NN IN NNS RB VBG VBN IN NNP . In a separate statement , the group also strongly condemned the January 22 kidnapping of photographer Hernan Arboleda in Colombia . IN DT JJ NN , DT NN RB RB VBD DT NNP CD NN IN NN NNP NNP IN NNP . It called on the Revolutionary Armed Forces of Colombia , known as FARC , to immediately release Mr. Arboleda . PRP VBD IN DT JJ JJ NNS IN NNP , VBN IN NNP , TO RB VB NNP NNP . Energy officials in Georgia say strong winds and heavy snow have downed power lines in the western part of the country , cutting power to millions of citizens . NNP NNS IN NNP VBP JJ NNS CC JJ NN VBP VBN NN NNS IN DT JJ NN IN DT NN , VBG NN TO NNS IN NNS . Deputy Energy Minister Alexander Khetaguri told the Associated Press Thursday fierce weather ruptured power lines leading from the Inguri hydroelectric station to eastern regions , leaving about three million people in the dark . NNP NNP NNP NNP NNP VBD DT NNP NNP NNP JJ NN VBD NN NNS VBG IN DT NNP JJ NN TO JJ NNS , VBG IN CD CD NNS IN DT NN . He said most of the capital , Tbilisi , was also without electricity today after a unit at a power station malfunctioned . PRP VBD JJS IN DT NN , NNP , VBD RB IN NN NN IN DT NN IN DT NN NN VBN . The small former Soviet country is already battling freezing winter temperatures with limited supplies of natural gas after two explosions Sunday hit a pipeline in Russia carrying supplies to Georgia . DT JJ JJ JJ NN VBZ RB VBG VBG NN NNS IN JJ NNS IN JJ NN IN CD NNS NNP VBD DT NN IN NNP VBG NNS TO NNP . Top-seeded Anabel Medina Garrigues of Spain is the winner of the Canberra International tennis tournament in Australia . JJ NNP NNP NNP IN NNP VBZ DT NN IN DT NNP NNP NN NN IN NNP . She overcame South Korea 's Cho Yoon-jeong in three sets on Friday , 06-Apr , 0-6 , 06-Apr . PRP VBP NNP NNP POS NNP NNP IN CD NNS IN NNP , CD , CD , CD . Medina Garrigues raced to a 05-Jan lead in the first set before Cho won the next three games . NNP NNPS VBD TO DT JJ NN IN DT JJ NN IN NNP VBD DT JJ CD NNS . The 23-year-old Spaniard served out the set to take it 06-Apr . DT JJ NN VBD RP DT NN TO VB PRP CD . Cho won the next eight games and led 2-0 in the deciding third set before Medina Garrigues rallied and claimed six of the next eight games to win her fifth WTA title . NNP VBD DT JJ CD NNS CC VBD CD IN DT JJ JJ NN IN NNP NNPS VBD CC VBD CD IN DT JJ CD NNS TO VB PRP$ JJ NNP NN . This was Cho 's third appearance in a WTA tour final , but her first since 2003 when she had jaw surgery . DT VBD NNP POS JJ NN IN DT NNP NN JJ , CC PRP$ JJ IN CD WRB PRP VBD VBN NN . She has a difficult opponent in her opening round match at next week 's Australian Open in Melbourne , as she has to face world number two Kim Clijsters of Belgium . PRP VBZ DT JJ NN IN PRP$ NN NN NN IN JJ NN POS JJ NN IN NNP , IN PRP VBZ TO VB NN NN CD NNP NNP IN NNP . A new government report says orders for certain U.S. goods rose in February , increasing for a third consecutive month . DT JJ NN NN VBZ NNS IN JJ NNP NNS VBD IN NNP , VBG IN DT JJ JJ NN . The Commerce Department said Wednesday that orders for so-called durable goods were up 0.5 percent in February , led by a jump in orders for airplanes and machinery . DT NNP NNP VBD NNP IN NNS IN JJ JJ NNS VBD RB CD NN IN NNP , VBN IN DT NN IN NNS IN NNS CC NN . Durable goods are items meant to last several years or more , and orders for such items are seen as a good measure of the country 's economic health . JJ NNS VBP NNS VBN TO JJ JJ NNS CC JJR , CC NNS IN JJ NNS VBP VBN IN DT JJ NN IN DT NN POS JJ NN . The Commerce Department also said that orders for durable goods were stronger in January than previously thought , rising 3.9 percent , more than the 2.6 percent increase initially reported . DT NNP NNP RB VBD IN NNS IN JJ NNS VBD JJR IN NNP IN RB VBN , VBG CD NN , JJR IN DT CD NN NN RB VBN . Officials also said that inventories of durable goods rose three-tenths of a percent , the biggest gain since December 2008 . NNS RB VBD IN NNS IN JJ NNS VBD NNS IN DT NN , DT JJS NN IN NNP CD . China and Cuba have signed 16 agreements as Chinese President Hu Jintao continues his visit to Havana . NNP CC NNP VBP VBN CD NNS IN JJ NNP NNP NNP VBZ PRP$ NN TO NNP . Mr. Hu and his Cuban counterpart , Fidel Castro , witnessed the signings late Monday in the Cuban capital , Havana . NNP NNP CC PRP$ JJ NN , NNP NNP , VBD DT NNS JJ NNP IN DT JJ NN , NNP . The accords include deals to build a nickel production plant in Cuba and setting up a joint venture to explore untapped Cuban nickel deposits . DT NNS VBP NNS TO VB DT NN NN NN IN NNP CC VBG RP DT JJ NN TO VB JJ JJ NN NNS . In addition , China agreed to a 10-year extension for repayment of loans given to Cuba in the 1990s . IN NN , NNP VBD TO DT JJ NN IN NN IN NNS VBN TO NNP IN DT NNS . Cuban state-run media say Mr. Hu 's visit is a sign of the high priority both countries give to the development of their bilateral relations . JJ JJ NNS VBP NNP NNP POS NN VBZ DT NN IN DT JJ NN DT NNS VBP TO DT NN IN PRP$ JJ NNS . Cuba has suffered economically since the collapse of its former backer , the Soviet Union , more than a decade ago . NNP VBZ VBN RB IN DT NN IN PRP$ JJ NN , DT NNP NNP , JJR IN DT NN RB . Ukraine 's parliament has voted to dismiss Prime Minister Yuri Yekhanurov 's government over a gas deal with Russia . NNP POS NN VBZ VBN TO VB NNP NNP NNP NNP POS NN IN DT NN NN IN NNP . Ukrainian President Viktor Yushchenko told reporters in Astana , Kazakhstan that the vote was unconstitutional . JJ NNP NNP NNP VBD NNS IN NNP , NNP IN DT NN VBD JJ . He said he will elaborate on the matter after consulting with his lawyers . PRP VBD PRP MD VB IN DT NN IN VBG IN PRP$ NNS . Even if he is dismissed , Mr. Yekhanurov will remain acting prime minister until a new cabinet is named . RB IN PRP VBZ VBN , NNP NNP MD VB JJ JJ NN IN DT JJ NN VBZ VBN . Ukraine 's Justice Minister , Serhiy Holovaty says a new cabinet can only be formed after parliamentary elections in March . NNP POS NNP NNP , NNP NNP VBZ DT JJ NN MD RB VB VBN IN JJ NNS IN NNP . The vote followed criticism of a deal reached last Wednesday under which Ukraine would pay $ 95 for 1,000 cubic meters of Russian gas . DT NN VBD NN IN DT NN VBN JJ NNP IN WDT NNP MD VB $ CD IN CD JJ NNS IN JJ NN . The price is double what Ukraine had been paying . DT NN VBZ JJ WP NNP VBD VBN VBG . Ukraine 's former Prime Minister Yulia Tymoshenko last week announced plans for court action to challenge the agreement . NNP POS JJ NNP NNP NNP NNP JJ NN VBD NNS IN NN NN TO VB DT NN . She said she would seek charges of betrayal of national interests and exceeding authority . PRP VBD PRP MD VB NNS IN NN IN JJ NNS CC VBG NN . The head of the International Atomic Energy Agency says Iran appears to have suspended its uranium-enrichment activities , as it had promised . DT NN IN DT NNP NNP NNP NNP VBZ NNP VBZ TO VB VBN PRP$ JJ NNS , IN PRP VBD VBN . Mohamed ElBaradei told reporters NNP NNP VBD NNS Monday , at IAEA headquarters in Vienna , he thinks ' pretty much everything has come to a halt ' at Iran 's nuclear laboratories , but that the U.N. agency will need a few days to verify Tehran 's compliance . NNP , IN NNP NN IN NNP , PRP VBZ `` RB RB DT VBZ VBN TO DT NN `` IN NNP POS JJ NNS , CC IN DT NNP NN MD VB DT JJ NNS TO VB NNP POS NN . Mr. ElBaradei says the IAEA should have a definite answer about Iran 's uranium-enrichment work by Thursday . NNP NNP VBZ DT NNP MD VB DT JJ NN IN NNP POS NN NN IN NNP . The enrichment process can be used to produce either nuclear fuel for peaceful purposes ( such as reactors to generate electricity ) or weapons-grade uranium suitable for warheads . DT NN NN MD VB VBN TO VB DT JJ NN IN JJ NNS LRB JJ IN NNS TO VB NN RRB CC JJ NN JJ IN NNS . The United States contends Iran is engaged in a secret plan to build nuclear weapons . DT NNP NNPS VBZ NNP VBZ VBN IN DT JJ NN TO VB JJ NNS . Last week , President Bush said he has seen evidence that Iran was trying to accelerate its military program ahead of today 's deadline . JJ NN , NNP NNP VBD PRP VBZ VBN NN IN NNP VBD VBG TO VB PRP$ JJ NN RB IN NN POS NN . Pakistani officials say U.S. drone aircraft have fired missiles into a suspected militant compound in the country 's northwest tribal belt , killing at least 10 militants . JJ NNS VBP NNP NN NN VBP VBN NNS IN DT JJ JJ NN IN DT NN POS JJS JJ NN , VBG IN JJS CD NNS . The strike took place in Datta Khel , about 45 kilometers west of Miranshah , in the North Waziristan district . DT NN VBD NN IN NNP NNP , IN CD NNS JJS IN NNP , IN DT NNP NNP NN . Elsewhere Sunday , Pakistani army helicopter gunships pounded suspected insurgent hideouts in the Shana Garhi area of neighboring Orakzai tribal region , and officials say at least eight militants were killed . RB NNP , JJ NN NN NNS VBD JJ JJ NNS IN DT NNP NNP NN IN VBG NNP JJ NN , CC NNS VBP IN JJS CD NNS VBD VBN . Pakistan 's northwestern tribal areas are considered strongholds of al-Qaida and the Taliban . NNP POS JJ JJ NNS VBP VBN NNS IN NNP CC DT NNP . European Union foreign policy chief Javier Solana is visiting Afghanistan Tuesday for talks with the country 's political leaders on the upcoming presidential election . NNP NNP JJ NN NN NNP NNP VBZ VBG NNP NNP IN NNS IN DT NN POS JJ NNS IN DT JJ JJ NN . Solana met with Afghan Foreign Minister Rangin Dadfar Spanta to discuss the latest developments in the region . NNP VBD IN JJ NNP NNP NNP NNP NNP TO VB DT JJS NNS IN DT NN . He is also scheduled to meet with Afghan President Hamid Karzai , several of the country 's election candidates , as well as , the head of the EU election observation mission in Afghanistan . PRP VBZ RB VBN TO VB IN JJ NNP NNP NNP , NN IN DT NN POS NN NNS , RB RB IN , DT NN IN DT NNP NN NN NN IN NNP . The European Union is deploying about 100 observers to help monitor Afghanistan 's presidential and provincial elections on August 20 . DT NNP NNP VBZ VBG IN CD NNS TO VB VB NNP POS JJ CC JJ NNS IN NNP CD . Seventeen EU experts are already in the country to monitor pre-election preparations . CD NNP NNS VBP RB IN DT NN TO VB JJ NNS . Solana 's visit follows talks in neighboring Pakistan where he pledged EU support for the nearly two million people displaced by an anti-Taliban operation in the country 's northwest . NNP POS NN VBZ NNS IN VBG NNP WRB PRP VBD NNP NN IN DT RB CD CD NNS VBN IN DT JJ NN IN DT NN POS NN . Muzaffarabad , a city of 6,00,000 people that was shaken to pieces by the Kashmir earthquake , is a scene of chaos Monday , with survivors ransacking shops in a desperate hunt for food and fuel . NNP , DT NN IN CD NNS WDT VBD VBN TO NNS IN DT NNP NN , VBZ DT NN IN NN NNP , IN NNS VBG NNS IN DT JJ NN IN NN CC NN . Reports from Pakistani Kashmir say angry crowds attacked military trucks that entered the city today , carrying the first shipments of tents , blankets and medicine for Muzaffarabad . NNS IN JJ NNP VBP JJ NNS VBD JJ NNS WDT VBD DT NN NN , VBG DT JJ NNS IN NNS , NNS CC NN IN NNP . Military officials say Saturday 's earthquake killed at least 11,000 people in Muzaffarabad and left more than 1,20,000 others in urgent need of shelter . JJ NNS VBP NNP POS NN VBD IN JJS CD NNS IN NNP CC VBD JJR IN CD NNS IN JJ NN IN NN . Aid agencies say conditions are even worse in many smaller towns and villages . JJ NNS VBP NNS VBP RB JJR IN JJ JJR NNS CC NNS . A VOA correspondent who traveled with a military convoy from Pakistan 's North-West Frontier Province into the disaster zone today says helicopters are airlifting the most seriously injured survivors out of Muzaffarabad . DT NNP NN WP VBD IN DT JJ NN IN NNP POS NNP NNP NNP IN DT NN NN NN VBZ NNS VBP VBG DT RBS RB JJ NNS IN IN NNP . Crowds have gathered at a stadium in the center of the city . NNS VBP VBN IN DT NN IN DT NN IN DT NN . Bodies of scores of dead are piled on the stadium steps . NNS IN NNS IN NN VBP VBN IN DT NN NNS . Security officials say at least 27 people have died in intense clashes between pro-government forces in Somalia and al-Shabab militants . NN NNS VBP IN JJS CD NNS VBP VBN IN JJ NNS IN JJ NNS IN NNP CC NNP NNS . The fighting erupted late Thursday and continued into Friday in Bula Hawo , an area bordering Ethiopia and Kenya . DT NN VBD JJ NNP CC VBD IN NNP IN NNP NNP , DT NN VBG NNP CC NNP . Officials say hundreds of residents have fled into Kenya . NNS VBP NNS IN NNS VBP VBN IN NNP . Government and African Union troops captured the long-time rebel stronghold earlier this week . NNP CC NNP NNP NNS VBD DT JJ NN NN RBR DT NN . The militants were trying to take it back , but government commanders said Friday they had been driven off . DT NNS VBD VBG TO VB PRP RB , CC NN NNS VBD NNP PRP VBD VBN VBN RP . Somalia has experienced nearly two decades of violence and lawlessness since the fall of the last stable central government . NNP VBZ VBN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ JJ NN . The current government has been wracked by infighting and has stayed in power only with the strong support of AU peacekeepers . DT JJ NN VBZ VBN VBN IN NN CC VBZ VBN IN NN RB IN DT JJ NN IN NNP NNS . The British and Irish prime ministers say much has been achieved in the Northern Ireland peace process but an accord on restoring the province 's power-sharing government is not yet complete . DT JJ CC JJ JJ NNS VBP NN VBZ VBN VBN IN DT NNP NNP NN NN CC DT NN IN VBG DT NN POS JJ NN VBZ RB RB JJ . Britain 's Tony Blair and his Irish counterpart , Bertie Ahern , spoke in Belfast Wednesday , their latest deadline for agreement . NNP POS NNP NNP CC PRP$ JJ NN , NNP NNP , VBD IN NNP NNP , PRP$ JJS NN IN NN . The two men insisted a deal on the issue is very close and reaffirmed their commitment to continue efforts for an accord . DT CD NNS VBD DT NN IN DT NN VBZ RB JJ CC VBD PRP$ NN TO VB NNS IN DT NN . The Irish Republican Army said Tuesday it turned down a demand by hard-line Protestants that it provide photographic evidence of its disarmament . DT JJ NNP NNP VBD NNP PRP VBD RP DT NN IN JJ NNS IN PRP VBP JJ NN IN PRP$ NN . The head of the IRA 's political wing says that to do so would mean public humiliation . DT NN IN DT NNP POS JJ NN VBZ IN TO VB RB MD VB JJ NN . Negotiators are trying to revive a power-sharing administration established under the 1998 Good Friday peace accord . NNS VBP VBG TO VB DT JJ NN VBN IN DT CD JJ NNP NN NN . Britain suspended the Northern Ireland government two years ago , amid charges of IRA spying on provincial officials . NNP VBD DT NNP NNP NN CD NNS RB , IN NNS IN NNP VBG IN JJ NNS . Former Maoist rebels attacked vehicles , forced shops to close and blocked highways Sunday in Nepal to enforce a general strike called to protest the president . JJ JJ NNS VBD NNS , VBD NNS TO VB CC VBD NNS NNP IN NNP TO VB DT JJ NN VBN TO VB DT NN . Maoists in Nepal began a three-day strike Sunday , forcing the closure of shops and businesses , and blocking roads and highways . NNS IN NNP VBD DT JJ NN NNP , VBG DT NN IN NNS CC NNS , CC VBG NNS CC NNS . The former rebels are protesting what they call the unconstitutional actions of Nepal 's president in overturning their decision to fire the head of the army . DT JJ NNS VBP VBG WP PRP VBP DT JJ NNS IN NNP POS NN IN VBG PRP$ NN TO VB DT NN IN DT NN . The protest has been largely peaceful , although police say some vehicles have been vandalized , and some protesters have been arrested . DT NN VBZ VBN RB JJ , IN NNS VBP DT NNS VBP VBN VBN , CC DT NNS VBP VBN VBN . Tensions have been high in Nepal since a Maoist-led government resigned in May amid a dispute with President Ram Baran Yadav concerning the army chief . NNS VBP VBN JJ IN NNP IN DT JJ NN VBD IN NNP IN DT NN IN NNP NNP NNP NNP VBG DT NN NN . The former rebels have since led a series of protests . DT JJ NNS VBP IN VBN DT NN IN NNS . Maoists ended a decade-long civil war in 2006 to join a peace process . NNS VBD DT JJ JJ NN IN CD TO VB DT NN NN . They won a majority of seats in parliament in elections last year . PRP VBD DT NN IN NNS IN NN IN NNS JJ NN . Leaders from the Palestinian militant group Hamas say Palestinian Authority President Mahmoud Abbas will formally ask their prime minister-designate to form a government on Tuesday . NNS IN DT JJ JJ NN NNP VBP JJ NNP NNP NNP NNP MD RB VB PRP$ JJ NN TO VB DT NN IN NNP . Following talks with Mr. Abbas , Hamas leaders said the president would present Ismail Haniyeh with a formal letter of appointment and officially begin the process of filling Cabinet posts . VBG NNS IN NNP NNP , NNP NNS VBD DT NN MD VB NNP NNP IN DT JJ NN IN NN CC RB VB DT NN IN VBG NNP NNS . Hamas dominated recent parliamentary elections , and the naming of Ismail Haniyeh as prime minister is a formality . NNP VBD JJ JJ NNS , CC DT NN IN NNP NNP IN JJ NN VBZ DT NN . Mr. Abbas said Sunday that the new government faces a financial crisis after Israel stopped the monthly transfer of millions of dollars in customs revenue it collects for the Palestinian Authority . NNP NNP VBD NNP IN DT JJ NN VBZ DT JJ NN IN NNP VBD DT JJ NN IN NNS IN NNS IN NNS NN PRP VBZ IN DT JJ NNP . Western nations have also threatened to cut funds unless Hamas renounces violence and accepts Israel 's right to exist . JJ NNS VBP RB VBN TO VB NNS IN NNP VBZ NN CC VBZ NNP POS NN TO VB . Also Monday , other Hamas leaders met with Iran 's supreme leader Ayatollah Ali Khamenei in Tehran . RB NNP , JJ NNP NNS VBD IN NNP POS JJ NN NNP NNP NNP IN NNP . The ayatollah urged Muslim nations to provide financial support to the Palestinian government . DT NN VBD NNP NNS TO VB JJ NN TO DT JJ NN . In a solemn ceremony , the United Nations has marked the third anniversary of the deadly attacks on the world body 's offices in Baghdad . IN DT NN NN , DT NNP NNP VBZ VBN DT JJ NN IN DT JJ NNS IN DT NN NN POS NNS IN NNP . In a statement Friday , U.N. Secretary-General Kofi Annan said the bombing dealt a fatal blow to the illusion that wearing a U.N. blue helmet or hoisting a U.N. flag placed peacekeepers out of reach of violence . IN DT NN NNP , NNP NNP NNP NNP VBD DT NN VBD DT JJ NN TO DT NN IN VBG DT NNP JJ NN CC VBG DT NNP NN VBD NNS IN IN NN IN NN . He said U.N. staff now confront direct and deadly threats to their safety . PRP VBD NNP NN RB VBP JJ CC JJ NNS TO PRP$ NN . He said , however , the world body remains committed to work for peace in such places as Lebanon , Darfur , Haiti and Iraq . PRP VBD , RB , DT NN NN VBZ JJ TO VB IN NN IN JJ NNS IN NNP , NNP , NNP CC NNP . Twenty-two people were killed and hundreds others injured when a bomb struck the U.N. offices in the Iraqi capital three years ago Saturday . CD NNS VBD VBN CC NNS NNS VBD WRB DT NN VBD DT NNP NNS IN DT JJ NN CD NNS IN NNP . Among those killed was the U.N. 's top envoy in Iraq and High Commissioner for Human Rights , Sergio Viera de Mello . IN DT VBN VBD DT NNP POS JJ NN IN NNP CC NNP NNP IN NNP NNP , NNP NNP IN NNP . Pakistani security forces say they have arrested a senior Taleban figure in northwestern Pakistan , near the Afghan border . JJ NN NNS VBP PRP VBP VBN DT JJ NNP NN IN JJ NNP , IN DT JJ NN . Pakistani Interior Minister Aftab Khan Sherpao says the head of the ousted Taleban 's Culture and Information Council , Maulvi Muhammad Yasir , was arrested last week and is being interrogated . JJ NNP NNP NNP NNP NNP VBZ DT NN IN DT JJ NNP POS NNP CC NNP NNP , NNP NNP NNP , VBD VBN JJ NN CC VBZ VBG VBN . He did not elaborate . PRP VBD RB VB . In another development , Muslim cleric Muhammad Adil Khan accused of having terror links and his son , Muhammad Hassan Adil , have arrived in Pakistan after being deported from the United States . IN DT NN , NNP NN NNP NNP NNP VBN IN VBG NN NNS CC PRP$ NN , NNP NNP NNP , VBP VBN IN NNP IN VBG VBN IN DT NNP NNPS . Pakistani officials say the two were detained upon their arrival in the city of Lahore and are being questioned by authorities . JJ NNS VBP DT CD VBD VBN IN PRP$ NN IN DT NN IN NNP CC VBP VBG VBN IN NNS . They are part of a group of five men arrested in June as part of an FBI probe into alleged terror activities involving the Islamic community in Lodi , California . PRP VBP NN IN DT NN IN CD NNS VBN IN NNP IN NN IN DT NNP NN IN JJ NN NNS VBG DT JJ NN IN NNP , NNP . A spokesman for Indonesia 's navy says five of its warships have left a disputed area in the Sulawesi Sea ahead of talks Wednesday with Malaysia . DT NN IN NNP POS NN VBZ CD IN PRP$ NNS VBP VBN DT JJ NN IN DT NNP NNP RB IN NNS NNP IN NNP . Indonesian Foreign Minister Hasan Wirayuda is to meet with his Malaysian counterpart , Syed Hamid Albar , in Jakarta to discuss competing claims in the oil and gas-rich area . JJ NN NN NNP NNP VBZ TO VB IN PRP$ JJ NN , NNP NNP NNP , IN NNP TO VB VBG NNS IN DT NN CC JJ NN . Both countries have vowed to solve the matter diplomatically . DT NNS VBP VBN TO VB DT NN RB . The dispute escalated in February when Malaysia awarded exploration contracts to Royal Dutch / Shell . DT NN VBD IN NNP WRB NNP VBD NN NNS TO NNP NNP NNP NNP . Indonesia responded by deploying seven warships and four NNP VBD IN VBG CD NNS CC CD F-16 fighter jets in the area . NN NN NNS IN DT NN . The issue has further strained relations between the two countries . DT NN VBZ RB VBN NNS IN DT CD NNS . Indonesians are also angry about Kuala Lumpur 's recent crackdown on several hundred thousand illegal migrant workers from Indonesia . NNS VBP RB JJ IN NNP NNP POS JJ NN IN JJ CD CD JJ NN NNS IN NNP . French President Jacques Chirac says his top priority is ending the two-week-old wave of urban unrest , as he pledged to address the root causes of the violence JJ NNP NNP NNP VBZ PRP$ JJ NN VBZ VBG DT JJ NN IN JJ NN , IN PRP VBD TO VB DT NN NNS IN DT NN The French leader told a Paris news conference Thursday the government will have to respond to problems in largely Muslim-inhabited working class suburbs , which have experienced most of the rioting . DT JJ NN VBD DT NNP NN NN NNP DT NN MD VB TO VB TO NNS IN RB JJ VBG NN NNS , WDT VBP VBN JJS IN DT NN . The violence has involved youths of immigrant background who have complained of police harassment , racism and job discrimination . DT NN VBZ VBN NNS IN JJ NN WP VBP VBN IN NN NN , NN CC NN NN . The violence began October 27 after the accidental deaths of two teenagers of North African descent who thought they were being chased by police . DT NN VBD NNP CD IN DT JJ NNS IN CD NNS IN JJ JJ NN WP VBD PRP VBD VBG VBN IN NNS . Police Thursday reported fewer violent incidents in France 's metropolitan centers . NNP NNP VBD JJR JJ NNS IN NNP POS JJ NNS . Authorities also said they have suspended eight police officers pending investigation into Monday 's beating of a young man in a northern suburb of Paris during the disturbances . NNS RB VBD PRP VBP VBN CD NNS NNS VBG NN IN NNP POS NN IN DT JJ NN IN DT JJ NN IN NNP IN DT NNS . Afghan and coalition forces have killed at least 48 suspected militants in two operations in southern Afghanistan . JJ CC NN NNS VBP VBN IN JJS CD JJ NNS IN CD NNS IN JJ NNP . An Afghan army general , Sher Mohammad Zazai , said Wednesday that 23 suspected Taliban fighters had been killed after Afghan and coalition forces stormed a Taliban stronghold near the capital of Uruzgan province . DT JJ NN NN , NNP NNP NNP , VBD NNP IN CD JJ NNP NNS VBD VBN VBN IN JJ CC NN NNS VBD DT NNP NN IN DT NN IN NNP NN . The general said regional Taliban commander Mullah Ismail was among the militants killed in the assault . DT NN VBD JJ NNP NN NNP NNP VBD IN DT NNS VBN IN DT NN . In neighboring Helmand province , Afghan officials said troops killed at least 25 suspected militants . IN JJ NNP NN , JJ NNS VBD NNS VBD IN JJS CD JJ NNS . The Taliban-dominated province is where more than 500 British soldiers began carrying out a major air assault on a Taliban stronghold late last week . DT JJ NN VBZ WRB JJR IN CD JJ NNS VBD VBG RP DT JJ NN NN IN DT NNP NN RB JJ NN . Meanwhile , Afghan officials said at least seven civilians were killed in a roadside bombing in Helmand province . RB , JJ NNS VBD IN JJS CD NNS VBD VBN IN DT NN VBG IN NNP NN . In southern Zabul province , local officials said two Afghan intelligence officers and four alleged Taliban fighters were killed Tuesday in separate incidents . IN JJ NNP NN , JJ NNS VBD CD JJ NN NNS CC CD JJ NNP NNS VBD VBN NNP IN JJ NNS . Marc Anthony has agreed to pay approximately $ 2.5 million in back taxes , after failing to file income tax returns for five years . NNP NNP VBZ VBN TO VB RB $ CD CD IN JJ NNS , IN VBG TO VB NN NN NNS IN CD NNS . Manhattan District Attorney Robert Morgenthau said the Latin music singer , who is married to singer-actress Jennifer Lopez , failed to file returns from 2000 through 2004 on $ 15.5 million in income . NNP NNP NNP NNP NNP VBD DT JJ NN NN , WP VBZ VBN TO JJ NNP NNP , VBD TO VB NNS IN CD IN CD IN $ CD CD IN NN . Morgenthau said he did file for 2005 . NNP VBD PRP VBD VB IN CD . Marc Anthony - born Marco Antonio Muniz - signed the payment agreement April 3 . NNP NNP : VBN NNP NNP NNP : VBD DT NN NN NNP CD . Morgenthau said his office did not prosecute the 38-year-old singer because he was apparently unaware of errors on the part of the professional accountant who prepared his tax returns . NNP VBD PRP$ NN VBD RB VB DT JJ NN IN PRP VBD RB JJ IN NNS IN DT NN IN DT JJ NN WP VBD PRP$ NN NNS . At least six people , including a U.S. soldier , have died in roadside bombs and shootings Saturday in Iraq . IN JJS CD NNS , VBG DT NNP NN , VBP VBN IN NN NNS CC NNS NNP IN NNP . In a town 80 kilometers south of Baghdad , gunmen abducted a policeman and his brother and shot them . IN DT NN CD NNS RB IN NNP , NNS VBD DT NN CC PRP$ NN CC VBD PRP . Also south of Baghdad , insurgents attacked an Iraqi army convoy , killing two soldiers . RB RB IN NNP , NNS VBD DT JJ NN NN , VBG CD NNS . In western Baghdad , a roadside bomb killed an Iraqi policeman and wounded two others . IN JJ NNP , DT NN NN VBD DT JJ NN CC VBD CD NNS . The U.S. military said an American soldier died when a roadside bomb hit his convoy southwest of Baghdad . DT NNP NN VBD DT JJ NN VBD WRB DT NN NN VBD PRP$ JJ NN IN NNP . The bodies of at least six men , apparently killed execution-style , were found in the capital . DT NNS IN IN JJS CD NNS , RB VBN JJ , VBD VBN IN DT NN . The violence comes as Iraqi leaders continue their efforts to form a new cabinet . DT NN VBZ IN JJ NNS VBP PRP$ NNS TO VB DT JJ NN . Washington says a national unity government will help stem the violence . NNP VBZ DT JJ NN NN MD VB VB DT NN . This month , about 70 U.S. soldiers have died in Iraq , making it the deadliest month for US troops this year . DT NN , IN CD NNP NNS VBP VBN IN NNP , VBG PRP DT JJS NN IN NNP NNS DT NN . China has ruled out holding a meeting with senior leaders from Japan and South Korea during an upcoming Asian economic meeting in Malaysia . NNP VBZ VBN RP VBG DT NN IN JJ NNS IN NNP CC NNP NNP IN DT JJ JJ JJ NN IN NNP . The three nations have met on the sidelines of the Association of Southeast Asian Nations summit for the past six years . DT CD NNS VBP VBN IN DT NNS IN DT NNP IN NNP NNP NNP NN IN DT JJ CD NNS . China 's foreign ministry spokesman said the three-way meeting would not take place due to reasons he described as ' known to all . ' NNP POS JJ NN NN VBD DT JJ NN MD RB VB NN JJ TO NNS PRP VBD IN `` VBN TO DT . `` That was an apparent reference to China 's objections to Japanese Prime Minister Junichiro Koizumi 's repeated visits to a controversial war shrine . DT VBD DT JJ NN TO NNP POS NNS TO JJ NNP NNP NNP NNP POS JJ NNS TO DT JJ NN NN . The Yasukuni shrine in Tokyo honors Japan 's war dead , including those guilty of criminal acts during World War II . DT NNP NN IN NNP NNS NNP POS NN NN , VBG DT JJ IN JJ NNS IN NNP NNP NNP . Critics say the shrine glorifies Japan 's wartime past , but Mr. Koizumi says he visits the shrine to pray for peace . NNS VBP DT NN VBZ NNP POS NN NN , CC NNP NNP VBZ PRP VBZ DT NN TO VB IN NN . Japan 's Prime Minister Taro Aso has unveiled a nearly $ 300 billion economic stimulus package to bolster the world 's second largest economy and help it survive the global financial crisis . NNP POS NNP NNP NNP NNP VBZ VBN DT RB $ CD CD JJ NN NN TO VB DT NN POS JJ JJS NN CC VB PRP VB DT JJ JJ NN . Mr. Aso announced the plan Thursday . NNP NNP VBD DT NN NNP . It includes tax cuts , benefits to households , a reduction in highway tolls , and loans to help small businesses . PRP VBZ NN NNS , NNS TO NNS , DT NN IN NN NNS , CC NNS TO VB JJ NNS . The stimulus package is the first drafted under Mr. Aso , who took over a month ago , replacing former Prime Minister Yasuo Fukuda . DT NN NN VBZ DT RB VBN IN NNP NNP , WP VBD RP DT NN RB , VBG JJ NNP NNP NNP NNP . Mr. Fukuda stepped down over political deadlock in parliament and perceived mishandling of the economy . NNP NNP VBD RB IN JJ NN IN NN CC VBN NN IN DT NN . The media and politicians have widely expected Mr. Aso to hold snap elections after taking office . DT NNS CC NNS VBP RB VBN NNP NNP TO VB JJ NNS IN VBG NN . But , he says he wants to first focus on the economy . CC , PRP VBZ PRP VBZ TO JJ NN IN DT NN . Elections in Japan must take place by September 2009 . NNS IN NNP MD VB NN IN NNP CD . Tokyo is calling for dialogue with Beijing after violent anti-Japanese protests in China during the weekend . NNP VBZ VBG IN NN IN NNP IN JJ JJ NNS IN NNP IN DT NN . Japan 's chief cabinet secretary , Hiroyuki Hosada , told reporters Monday that hard work must be done to prevent misunderstandings from growing . NNP POS JJ NN NN , NNP NNP , VBD NNS NNP IN JJ NN MD VB VBN TO VB NNS IN VBG . His remarks came a day after thousands of protesters mobbed Japan 's consulate in Guangzhou and a Japanese supermarket in Shenzhen Sunday . PRP$ NNS VBD DT NN IN NNS IN NNS VBD NNP POS NN IN NNP CC DT JJ NN IN NNP NNP . Two Japanese students were attacked in a Shanghai restaurant Sunday , and on Saturday , protesters in Beijing broke windows at the Japanese Embassy . CD JJ NNS VBD VBN IN DT NNP NN NNP , CC IN NNP , NNS IN NNP VBD NNS IN DT JJ NNP . The unrest was triggered by Tokyo 's decision to approve history textbooks that allegedly minimize Japan 's brutal occupation of China before and during the Second World War . DT NN VBD VBN IN NNP POS NN TO VB NN NNS WDT RB VB NNP POS JJ NN IN NNP IN CC IN DT JJ NNP NNP . China 's Foreign Ministry says Japan must find a way to address the feelings of the Chinese people . NNP POS NNP NNP VBZ NNP MD VB DT NN TO VB DT NNS IN DT JJ NNS . Afghan soldiers remove the wreckage of damaged tankers from the explosion site in Kandahar Suspected Taleban rebels set off a bomb that destroyed five oil tankers carrying fuel for a U.S. military base in southern Afghanistan . JJ NNS VBP DT NN IN JJ NNS IN DT NN NN IN NNP NNP NNP NNS VBD RP DT NN WDT VBD CD NN NNS VBG NN IN DT NNP JJ NN IN JJ NNP . Local officials say the pre-dawn attack Sunday blew up one of the trucks parked outside Kandahar airbase , and set off a chain of explosions that destroyed four other tankers . JJ NNS VBP DT JJ NN NNP VBD RP CD IN DT NNS VBN IN NNP NN , CC VBD RP DT NN IN NNS WDT VBD CD JJ NNS . Three truck drivers were critically injured in the incident . CD NN NNS VBD RB VBN IN DT NN . The attack comes a day after the top U.S. commander in the country , Lieutenant General David Barno , predicted the Taleban militia would collapse within the next 12 months . DT NN VBZ DT NN IN DT JJ NNP NN IN DT NN , NNP NNP NNP NNP , VBD DT NNP NN MD VB IN DT JJ CD NNS . He warned , however , that remaining militants financed and trained by al-Qaida allies may try to compensate by staging a ' high profile attack ' before the country 's first post-Taleban parliamentary elections . PRP VBD , RB , IN VBG NNS VBN CC VBN IN NNP NNS MD VB TO VB IN VBG DT `` JJ NN NN `` IN DT NN POS JJ JJ JJ NNS . Pakistani police have used batons to break up a protest march by survivors of the October 8 earthquake protesting their eviction from a makeshift camp in Pakistani Kashmir . JJ NNS VBP VBN NNS TO VB RP DT NN NN IN NNS IN DT NNP CD NN VBG PRP$ NN IN DT NN NN IN JJ NNP . Officials say the violence erupted Friday as some 200 people marched through the streets of Muzaffarabad . NNS VBP DT NN VBD NNP IN DT CD NNS VBD IN DT NNS IN NNP . Police blocked their way , then began dispersing the crowd with batons , rifle butts and canes . NNP VBD PRP$ NN , RB VBD VBG DT NN IN NNS , JJ NNS CC NNS . Several people were reported injured . JJ NNS VBD VBN JJ . Police made a number of arrests . NNS VBD DT NN IN NNS . Officials say quake survivors had been asked to leave the informal camps set up throughout the city because the facilities lacked adequate sanitation and posed a public health risk . NNS VBP NN NNS VBD VBN VBN TO VB DT JJ NNS VBN RP IN DT NN IN DT NNS VBD JJ NN CC VBD DT JJ NN NN . International organizations say the 7.6 magnitude earthquake killed at least 86,000 Pakistanis and made some three million homeless . JJ NNS VBP DT CD NN NN VBD IN JJS CD NNS CC VBD DT CD CD NN . More than 1,300 people were killed in Indian Kashmir . JJR IN CD NNS VBD VBN IN JJ NNP . Uruguay 's President-elect Tabare Vazquez has announced his administration will re-establish diplomatic relations with Cuba . NNP POS NN NNP NNP VBZ VBN PRP$ NN MD VB JJ NNS IN NNP . Mr. Vazquez announced his plans Wednesday in the Uruguayan capital , Montevideo , at a meeting of the leaders of his Broad Front coalition . NNP NNP VBD PRP$ NNS NNP IN DT JJ NN , NNP , IN DT NN IN DT NNS IN PRP$ JJ NNP NN . The socialist leader said Uruguay will resume diplomatic ties with Havana on March first , when he takes office . DT JJ NN VBD NNP MD VB JJ NNS IN NNP IN NNP RB , WRB PRP VBZ NN . Outgoing Uruguayan President Jorge Battle severed diplomatic ties with Cuba in April , 2002 . VBG JJ NN NNP NNP VBD JJ NNS IN NNP IN NNP , CD . Mr. Vazquez , an oncologist and former mayor of Montevideo , was elected president two weeks ago on the Broad Front ticket , with just slightly more than 50 percent of the vote . NNP NNP , DT NN CC JJ NN IN NNP , VBD VBN NN CD NNS RB IN DT JJ NNP NN , IN RB RB JJR IN CD NN IN DT NN . His election ended 170 years of conservative party dominance . PRP$ NN VBD CD NNS IN JJ NN NN . Venezuela has rejected accusations from U.S. Secretary of State-nominee Condoleezza Rice that it meddles in the affairs of other Latin American countries . NNP VBZ VBN NNS IN NNP NNP IN NNP NNP NNP IN PRP VBZ IN DT NNS IN JJ JJ JJ NNS . At a news conference in Caracas Wednesday , Venezuelan Foreign Minister Ali Rodriguez called the comments from Ms. Rice ' unacceptable . ' IN DT NN NN IN NNP NNP , JJ NNP NNP NNP NNP VBD DT NNS IN NNP NNP `` JJ . `` He denied that the government of President Hugo Chavez interferes in other countries ' affairs , and accused the United States of trying to meddle in Venezuela 's affairs . PRP VBD IN DT NN IN NNP NNP NNP VBZ IN JJ NNS POS NNS , CC VBD DT NNP NNPS IN VBG TO VB IN NNP POS NNS . Ms. Rice made her comments Tuesday at her U.S. Senate confirmation hearing . NNP NNP VBD PRP$ NNS NNP IN PRP$ NNP NNP NN NN . She called the Chavez government a ' negative force ' that affects other countries and suppresses opposing voices . PRP VBD DT NNP NN DT `` JJ NN `` WDT VBZ JJ NNS CC VBZ VBG NNS . She also said the relationship between the leftist Mr. Chavez and Cuban leader Fidel Castro has been ' deeply troubling . ' PRP RB VBD DT NN IN DT JJ NNP NNP CC JJ NN NNP NNP VBZ VBN `` RB JJ . `` U.S.-Venezuelan relations have been tense since Mr. Chavez took power in 1999 . JJ NNS VBP VBN JJ IN NNP NNP VBD NN IN CD . Norway has expelled an Iranian diplomat in a dispute that comes a week after Iran ordered a Norwegian diplomat to leave Tehran . NNP VBZ VBN DT JJ NN IN DT NN WDT VBZ DT NN IN NNP VBD DT JJ NN TO VB NNP . In a statement Wednesday , the Norwegian Foreign Ministry did not identify the diplomat , but characterized the expulsion as a strong reaction to a similar move by Tehran several weeks ago . IN DT NN NNP , DT JJ NNP NNP VBD RB VB DT NN , CC VBD DT NN IN DT JJ NN TO DT JJ NN IN NNP JJ NNS RB . The dispute erupted last month , when Oslo granted asylum to Iran 's former counsel-general , Mohammed Reza Heydari . DT NN VBD JJ NN , WRB NNP VBD NN TO NNP POS JJ NN , NNP NNP NNP . The Iranian quit his post in January to protest Iran 's deadly crackdown on opposition demonstrators in the Islamic republic a month earlier . DT NN VBD PRP$ NN IN NNP TO VB NNP POS JJ NN IN NN NNS IN DT JJ NN DT NN RBR . Heydari went into hiding immediately after his resignation , saying he feared for his life . NNP VBD IN VBG RB IN PRP$ NN , VBG PRP VBD IN PRP$ NN . The U.S. Energy Department says oil supplies fell by 8,00,000 barrels last week , as prices continue to climb toward $ 100 a barrel . DT NNP NNP NNP VBZ NN NNS VBD IN CD NNS JJ NN , IN NNS VBP TO VB IN $ CD DT NN . Crude oil prices rose above $ 98 a barrel during trading in New York Wednesday as the dollar weakened and investors anticipated the drop in U.S. stockpiles . JJ NN NNS VBD IN $ CD DT NN IN NN IN NNP NNP NNP IN DT NN VBD CC NNS VBD DT NN IN NNP NNS . Industry experts say it is inevitable that oil will reach the $ 100 mark . NN NNS VBP PRP VBZ JJ IN NN MD VB DT $ CD NN . Investors have been buying oil to counter the risks of inflation posed by the weak dollar . NNS VBP VBN VBG NN TO VB DT NNS IN NN VBN IN DT JJ NN . As the dollar declines in value , oil becomes cheaper for foreign investors . IN DT NN VBZ IN NN , NN VBZ JJR IN JJ NNS . A report from the International Energy Agency , IAEA , Wednesday says oil costs will continue to rise through the year 2030 , as demand rises , particularly in China and India . DT NN IN DT NNP NNP NNP , NNP , NNP VBZ NN NNS MD VB TO VB IN DT NN CD , IN NN NNS , RB IN NNP CC NNP . A major battle is shaping up in the U.S. Senate , with Democratic majority leader Harry Reid accusing congressional Republicans of abusing power for their own political good . DT JJ NN VBZ VBG RP IN DT NNP NNP , IN JJ NN NN NNP NNP VBG JJ NNS IN VBG NN IN PRP$ JJ JJ NN . Speaking in his party 's weekly radio address Saturday , Senator Reid of Nevada said plans by Republican leaders to ban the use of filibusters threatens the checks-and-balances system devised by the nation 's founding fathers . VBG IN PRP$ NN POS JJ NN NN NNP , NNP NNP IN NNP VBD NNS IN JJ NNS TO VB DT NN IN NNS VBZ DT NNS NN VBN IN DT NN POS NN NNS . He said stripping away the power of senators to use extended debate to stall or reject presidential judicial nominees would simply make the U.S. Senate a rubber stamp for the White House . PRP VBD VBG RB DT NN IN NNS TO VB JJ NN TO VB CC VB JJ JJ NNS MD RB VB DT NNP NNP DT NN NN IN DT NNP NNP . Mr. Reid has previously threatened to retaliate by bringing Senate business to a virtual halt if the Republican plan , called the nuclear option , is enacted . NNP NNP VBZ RB VBN TO VB IN VBG NNP NN TO DT JJ NN IN DT NNP NN , VBD DT JJ NN , VBZ VBN . Two surveys of Americans this week suggest support for President Bush is near or at an all-time low . CD NNS IN NNS DT NN VBP NN IN NNP NNP VBZ JJ CC IN DT JJ NN . A poll by CNN , USA Today and the Gallup released Friday indicates 38 percent of Americans approve of the way the president is handling his job , a point higher than the record low the group found last November . DT NN IN NNP , NNP NNP CC DT NNP VBN NNP VBZ CD NN IN NNS VBP IN DT NN DT NN VBZ VBG PRP$ NN , DT NN JJR IN DT NN NN DT NN VBN JJ NNP . Those surveyed noted concerns over the war in Iraq , the influence business has on the administration , and the state of health care . DT VBN VBD NNS IN DT NN IN NNP , DT NN NN VBZ IN DT NN , CC DT NN IN NN NN . The recent controversy over a Dubai company taking over management at some U.S. ports did not appear to have influenced respondents ' opinions . DT JJ NN IN DT NNP NN VBG RP NN IN DT NNP NNS VBD RB VB TO VB VBN NNS POS NNS . A poll earlier in the week by CBS News found Mr. Bush 's popularity at an all-time low , 34 percent , with those questioned voicing discontent with the port deal , the government response to Hurricane Katrina , and the Iraq war . DT NN RBR IN DT NN IN NNP NNP VBD NNP NNP POS NN IN DT JJ NN , CD NN , IN DT VBN VBG NN IN DT JJ NN , DT NN NN TO NNP NNP , CC DT NNP NN . The New York Times newspaper reports the Pentagon used military analysts working for U.S. television networks to generate favorable coverage of the war in Iraq and other issues . DT NNP NNP NNP NN VBZ DT NNP VBD JJ NNS VBG IN NNP NN NNS TO VB JJ NN IN DT NN IN NNP CC JJ NNS . The newspaper Sunday said the analysts were invited to private briefings with senior military leaders , taken on tours of Iraq and given access to classified intelligence . DT NN NNP VBD DT NNS VBD VBN TO JJ NNS IN JJ JJ NNS , VBN IN NNS IN NNP CC VBN NN TO JJ NN . The Times also said viewers were not made aware that most of the analysts have ties to military contractors . DT NNP RB VBD NNS VBD RB VBN JJ IN JJS IN DT NNS VBP NNS TO JJ NNS . Many of the analysts are retired high-ranking military officials . NN IN DT NNS VBP JJ JJ JJ NNS . The report says the companies included large defense businesses and smaller companies that had a vested interest in the war policies the analysts discussed . DT NN VBZ DT NNS VBD JJ NN NNS CC JJR NNS WDT VBD DT JJ NN IN DT NN NNS DT NNS VBD . The Times quotes a Pentagon spokesman , Bryan Whitman , as saying the analysts had been given only factual information about the war . DT NNP VBZ DT NNP NN , NNP NNP , IN VBG DT NNS VBD VBN VBN RB JJ NN IN DT NN . The newspaper says it based its report on 8,000 email messages , transcripts and records it secured after winning a lawsuit against the Pentagon . DT NN VBZ PRP VBD PRP$ NN IN CD NN NNS , NNS CC NNS PRP VBD IN VBG DT NN IN DT NNP . After September 11 , Russia , India , and China joined the United States ' anti-terrorism coalition . IN NNP CD , NNP , NNP , CC NNP VBD DT NNP NNPS POS JJ NN . Some political analysts suggest that a major motive was to gain international acceptance for these countries ' own policies toward minorities such as the Chechens , Kashmiris , Tibetans , and Uighurs . DT JJ NNS VBP IN DT JJ NN VBD TO VB JJ NN IN DT NNS POS JJ NNS IN NNS JJ IN DT NNS , NNS , NNS , CC NNS . Of these groups , the least well known are the Uighurs , a Turkic-speaking Muslim people of northwestern China . IN DT NNS , DT JJS RB VBN VBP DT NNS , DT JJ NN NNS IN JJ NNP . Since the People 's Republic of China was founded , the Uighurs have resisted Beijing 's attempts to control their religious and political activities . IN DT NNP POS NNP IN NNP VBD VBN , DT NNS VBP VBN NNP POS NNS TO VB PRP$ JJ CC JJ NNS . In the past few years , Uighur separatist groups have been blamed for attacks in northwest China as well as the capital . IN DT JJ JJ NNS , NNP NN NNS VBP VBN VBN IN NNS IN JJ NNP RB RB IN DT NN . Chinese officials have warned that Beijing will not tolerate separatism or social disturbances under the guise of religion . JJ NNS VBP VBN IN NNP MD RB VB NN CC JJ NNS IN DT NN IN NN . Judith Latham explores the condition of the ' Uighurs of China ' in this edition of Dateline . NNP NNP VBZ DT NN IN DT `` NNS IN NNP `` IN DT NN IN NNP . An Indian unmanned mission to the moon will carry two scientific instruments designed by the U.S. space agency , NASA , to find minerals and ice on the lunar surface . DT JJ JJ NN TO DT NN MD VB CD JJ NNS VBN IN DT NNP NN NN , NNP , TO VB NNS CC NN IN DT NN NN . The deal was signed Tuesday , by NASA administrator Michael Griffin and Indian space agency ISRO 's Chairman G. Madhavan Nair in the southern Indian city of Bangalore . DT NN VBD VBN NNP , IN NNP NN NNP NNP CC JJ NN NN NNP POS NNP NNP NNP NNP IN DT JJ JJ NN IN NNP . The mission has been named Chandrayaan-1 , and is set to launch in 2007 or 2008 . DT NN VBZ VBN VBN NNP , CC VBZ VBN TO VB IN CD CC CD . It will map the lunar surface using an array of sensors . PRP MD VB DT NN NN VBG DT NN IN NNS . This deal is being seen as another sign of the increasingly close ties between New Delhi and Washington after decades of distance during the Cold War era . DT NN VBZ VBG VBN IN DT NN IN DT RB JJ NNS IN NNP NNP CC NNP IN NNS IN NN IN DT NNP NNP NN . Chandrayaan-1 also will carry scientific instruments from European research centers . NNP RB MD VB JJ NNS IN JJ NN NNS . Burma 's pro-democracy leader , Aung San Suu Kyi , is resting at her home in Rangoon after being treated at a hospital for a stomach illness . NNP POS JJ NN , NNP NNP NNP NNP , VBZ VBG IN PRP$ NN IN NNP IN VBG VBN IN DT NN IN DT NN NN . A spokesman for her party , the National League for Democracy , tells reporters she was taken to the hospital Friday , but is now back at home . DT NN IN PRP$ NN , DT NNP NNP IN NNP , VBZ NNS PRP VBD VBN TO DT NN NNP , CC VBZ RB RB IN NN . He said she was suffering from acute diarrhea . PRP VBD PRP VBD VBG IN JJ NN . The Burmese military confirmed that the pro-democracy leader has been sick . DT JJ NN VBD IN DT JJ NN VBZ VBN JJ . It has confined her to her home for much of the past two decades . PRP VBZ VBN PRP$ TO PRP$ NN IN NN IN DT JJ CD NNS . On Friday , the military leadership confirmed that Aung San Suu Kyi 's house arrest was extended in May for another year . IN NNP , DT JJ NN VBD IN NNP NNP NNP NNP POS NN NN VBD VBN IN NNP IN DT NN . The government said she remains a threat to the state . DT NN VBD PRP VBZ DT NN TO DT NN . The United States , Britain and several of Burma 's neighbors in Southeast Asia have urged the military to release Aung San Suu Kyi and take steps toward political reconciliation in Burma . DT NNP NNPS , NNP CC JJ IN NNP POS NNS IN NNP NNP VBP VBN DT JJ TO VB NNP NNP NNP NNP CC VB NNS IN JJ NN IN NNP . Hundreds of Iraqis gathered Friday in a Christian church in Baghdad to mark 40 days since al-Qaida militants carried out a deadly October siege there . NNS IN NNS VBD NNP IN DT JJ NN IN NNP TO VB CD NNS IN NNP NNS VBD RP DT JJ NNP NN RB . Christians at the badly damaged Our Lady of Salvation ( Sayidat al-Nejat ) church remembered the 46 worshippers who died in the October 31 attack . NNS IN DT RB VBN PRP$ NN IN NNP LRB NNP NNP RRB NN VBD DT CD NNS WP VBD IN DT NNP CD NN . Witnesses say militants entered the church firing guns and immediately killed one of the priests at point-blank range . NNS VBP NNS VBD DT NN NN NNS CC RB VBD CD IN DT NNS IN JJ NN . The militants then held more than 100 worshippers as hostages until Iraqi forces stormed the church and ended the siege . DT NNS RB VBD RBR IN CD NNS IN NNS IN JJ NNS VBD DT NN CC VBD DT NN . The families of victims and survivors were among those who attended Friday 's mass . DT NNS IN NNS CC NNS VBD IN DT WP VBD NNP POS NN . As many as 1.2 million Christians lived in Iraq before the 2003 invasion to oust leader Saddam Hussein . RB JJ IN CD CD NNS VBD IN NNP IN DT CD NN TO VB NN NNP NNP . However , many have since fled abroad in the wake of stepped-up violence by al-Qaida-linked Muslim insurgents . RB , NN VBP IN VBN RB IN DT NN IN JJ NN IN JJ NNP NNS . Jamaica 's prime minister has announced plans for a huge economic stimulus package to stave off some of the side effects of the global financial slowdown . NNP POS JJ NN VBZ VBN NNS IN DT JJ JJ NN NN TO VB RP DT IN DT JJ NNS IN DT JJ JJ NN . In a televised broadcast Sunday night , Bruce Golding said the measures would mostly be aimed at small businesses , manufacturing and the ailing tourism industry . IN DT JJ NN NNP NN , NNP NNP VBD DT NNS MD RB VB VBN IN JJ NNS , NN CC DT JJ NN NN . The plan includes tax cuts and at least $ 6.4 million in loans for the tourism sector to help with cash flow . DT NN VBZ NN NNS CC IN JJS $ CD CD IN NNS IN DT NN NN TO VB IN NN NN . Another $ 4.5 million will go toward small businesses . DT $ CD CD MD VB IN JJ NNS . Mr. Golding also pledged to help workers who have lost their jobs and borrowers who are having difficulty making their mortgage payments . NNP NNP RB VBD TO VB NNS WP VBP VBN PRP$ NNS CC NNS WP VBP VBG NN VBG PRP$ NN NNS . Mr. Golding said the moves would help weather the crisis , but that further re-structuring would be needed to make Jamaica more business and investment friendly . NNP NNP VBD DT NNS MD VB VB DT NN , CC IN JJ NN MD VB VBN TO VB NNP RBR NN CC NN JJ . Colombian leftist rebels have attacked a local military post with homemade rockets , killing 14 marines and wounding 25 others . JJ JJ NNS VBP VBN DT JJ JJ NN IN JJ NNS , VBG CD NNS CC VBG CD NNS . Navy officials say members of the Revolutionary Armed Forces of Colombia , or FARC , carried out the attack in the southwestern county of Iscuande . NN NNS VBP NNS IN DT NNP NNP NNS IN NNP , CC NNP , VBD IN DT NN IN DT JJ NN IN NNP . The Associated Press reports some of the troops were natives of the area and were receiving military training . DT NNP NNP VBZ DT IN DT NNS VBD NNS IN DT NN CC VBD VBG JJ NN . Colombia is mired in a long-running conflict involving leftist rebels , rightist paramilitaries and the government . NNP VBZ VBN IN DT JJ NN VBG JJ NNS , JJ NNS CC DT NN . The violence leaves thousands dead each year . DT NN VBZ NNS JJ DT NN . Since 2000 , the United States has provided Colombia with about three million dollars in mostly military aid to combat the rebels and drug production . IN CD , DT NNP NNPS VBZ VBN NNP IN IN CD CD NNS IN RB JJ NN TO VB DT NNS CC NN NN . The United Nations says Somali gunmen who hijacked a U.N.-chartered vessel carrying food aid for tsunami victims have released the ship after holding it for more than two months . DT NNP NNP VBZ JJ NNS WP VBD DT JJ NN VBG NN NN IN NN NNS VBP VBN DT NN IN VBG PRP IN JJR IN CD NNS . A spokeswoman for the U.N. World Food Program , Rene McGuffin , says the vessel is en route to the Somali port of El-Maan and is expected to arrive in a few days . DT NN IN DT NNP NNP NNP NNP , NNP NNP , VBZ DT NN VBZ IN NN TO DT JJ NN IN NNP CC VBZ VBN TO VB IN DT JJ NNS . She says the U.N. agency has negotiated with El-Maan port authorities to ensure a free passage of the food aid to Somalia 's transitional government for distribution . PRP VBZ DT NNP NN VBZ VBN IN JJ NN NNS TO VB DT JJ NN IN DT NN NN TO NNP POS JJ NN IN NN . The World Food Program hired the Kenyan vessel to carry 850 metric tons of rice donated by Japan and Germany . DT NNP NNP NNP VBD DT JJ NN TO VB CD JJ NNS IN NN VBN IN NNP CC NNP . The ship and its 10-person crew was hijacked by pirates as it sailed from Kenya to Somalia in June . DT NN CC PRP$ JJ NN VBD VBN IN NNS IN PRP VBD IN NNP TO NNP IN NNP . The International Criminal Court 's chief prosecutor , Luis Moreno-Ocampo , has asked judges to report Sudan to the U.N. Security Council for failing to comply with court warrants . DT NNP NNP NNP POS NN NN , NNP NNP , VBZ VBN NNS TO VB NNP TO DT NNP NNP NNP IN VBG TO VB IN NN NNS . Earlier this week , Moreno-Ocampo formally requested the judges issue a finding of ' non-cooperation ' against Sudan 's government for failing to hand over former Humanitarian Affairs Minister Ahmed Harun and militia leader Ali Kushayb . RBR DT NN , NNP RB VBD DT NNS VBP DT NN IN `` JJ `` IN NNP POS NN IN VBG TO VB RP JJ NNP NNP NNP NNP NNP CC NNP NN NNP NNP . The two men were charged in 2007 with committing crimes against humanity and war crimes in Sudan 's war-torn Darfur region . DT CD NNS VBD VBN IN CD IN VBG NNS IN NN CC NN NNS IN NNP POS JJ NNP NN . Sudanese President Omar al-Bashir is also wanted by the court for alleged war crimes in Darfur . JJ NNP NNP NNP VBZ RB VBN IN DT NN IN JJ NN NNS IN NNP . He has refused to comply with a warrant for his arrest . PRP VBZ VBN TO VB IN DT NN IN PRP$ NN . Darfur rebel groups have been fighting the Sudanese government since 2003 . NNP NN NNS VBP VBN VBG DT JJ NN IN CD . The United Nations says the fighting and related violence has killed up to 3,00,000 people and displaced some 2.7 million others . DT NNP NNP VBZ DT NN CC JJ NN VBZ VBN RP TO CD NNS CC VBD DT CD CD NNS . Sudan puts the death toll at 10,000 . NNP VBZ DT NN NN IN CD . A Pakistani immigrant has been sentenced to 30 years in prison for helping an al-Qaida operative gain entrance to the United States . DT JJ NN VBZ VBN VBN TO CD NNS IN NN IN VBG DT NNP JJ NN NN TO DT NNP NNPS . Uzair Paracha had been convicted last November of posing as former U.S. resident Majid Khan , in order to obtain documents so the al-Qaida operative could slip back into the United States . NNP NNP VBD VBN VBN JJ NNP IN VBG IN JJ NNP NN NNP NNP , IN NN TO VB NNS IN DT NNP NN MD VB RB IN DT NNP NNPS . Prosecutors said Khan plotted to bomb underground gasoline storage tanks in the eastern U.S. state of Maryland in 2003 . NNS VBD NNP VBD TO VB JJ NN NN NNS IN DT JJ NNP NN IN NNP IN CD . Khan never arrived in the country and the plot was never carried out . NNP RB VBD IN DT NN CC DT NN VBD RB VBN RP . Paracha 's lawyers told the court that he had been duped into participating in the plot , and that his statements to investigators had occurred under pressure . NNP POS NNS VBD DT NN IN PRP VBD VBN VBN IN VBG IN DT NN , CC IN PRP$ NNS TO NNS VBD VBN IN NN . The judge in the case said Paracha was fully aware that he was dealing with al-Qaida when he agreed to help Khan . DT NN IN DT NN VBD NNP VBD RB JJ IN PRP VBD VBG IN NNP WRB PRP VBD TO VB NNP . The U.S. military is denying reports that Pakistani soldiers fired at two U.S. helicopters for allegedly violating Pakistani airspace . DT NNP NN VBZ VBG NNS IN JJ NNS VBD IN CD NNP NNS IN RB VBG JJ NN . Lieutenant Nathan Perry Monday told VOA that U.S. helicopters did not enter NNP NNP NNP NNP VBD NNP IN NNP NNS VBD RB VB Pakistan and that there was no operation going on in the border area that would cross into Pakistan . NNP CC IN EX VBD DT NN VBG IN IN DT NN NN WDT MD VB IN NNP . Local officials in Pakistan 's northern tribal region said the incident happened late Sunday when the helicopters crossed into Pakistan 's North Waziristan district . JJ NNS IN NNP POS JJ JJ NN VBD DT NN VBD JJ NNP WRB DT NNS VBD IN NNP POS NNP NNP NN . The Pakistani army has so far not commented on the alleged incident . DT JJ NN VBZ RB RB RB VBN IN DT JJ NN . Last week , Pakistani President Asif Ali Zardari said his government will not tolerate violations of Pakistan 's sovereignty by any power in the name of combating terrorism . JJ NN , JJ NNP NNP NNP NNP VBD PRP$ NN MD RB VB NNS IN NNP POS NN IN DT NN IN DT NN IN VBG NN . His comments were made after a series of suspected U.S. missile strikes and a ground attack against militant targets in Pakistan . PRP$ NNS VBD VBN IN DT NN IN JJ NNP NN NNS CC DT NN NN IN JJ NNS IN NNP . India 's prime minister has met with top nuclear scientists to discuss their objections to changes proposed by US lawmakers in the civilian nuclear agreement reached last year between New Delhi and Washington . NNP POS JJ NN VBZ VBN IN JJ JJ NNS TO VB PRP$ NNS TO NNS VBN IN NNP NNS IN DT JJ JJ NN VBN JJ NN IN NNP NNP CC NNP . Prime Minister Manmohan Singh met with the group of eight scientists Wednesday after they had urged India 's parliament to reject the changes . JJ NN NNP NNP VBD IN DT NN IN CD NNS NNP IN PRP VBD VBN NNP POS NN TO VB DT NNS . They said in an open letter earlier this week that the proposed modifications would place restraints on India 's nuclear options . PRP VBD IN DT JJ NN RBR DT NN IN DT VBN NNS MD VB NNS IN NNP POS JJ NNS . Mr. Singh is scheduled to speak to the upper house of parliament Thursday and is expected to reassure it that the government will not accept any changes to last year 's deal . NNP NNP VBZ VBN TO VB TO DT JJ NN IN NN NNP CC VBZ VBN TO VB PRP IN DT NN MD RB VB DT NNS TO JJ NN POS NN . The U.S. House of Representatives approved the changes in India-US civilian nuclear agreement in July . DT NNP NNP IN NNP VBD DT NNS IN JJ JJ JJ NN IN NNP . The U.S. Senate is expected to vote on it next month . DT NNP NNP VBZ VBN TO VB IN PRP JJ NN . Iraq 's parliament is due to hold a special session Sunday to try to resolve political disputes delaying the passage of a provincial elections law . NNP POS NN VBZ JJ TO VB DT JJ NN NNP TO VB TO VB JJ NNS VBG DT NN IN DT JJ NNS NN . Parliamentary speaker Mahmoud al-Mashhadani says a special session is needed to debate the measure because the assembly went into summer recess Wednesday . JJ NN NNP NNP VBZ DT JJ NN VBZ VBN TO VB DT NN IN DT NN VBD IN NN NN NNP . Iraq 's government had hoped to hold provincial elections in October , but disagreements between Iraqi factions about electoral guidelines mean the vote may be delayed until next year . NNP POS NN VBD VBN TO VB JJ NNS IN NNP , CC NNS IN JJ NNS IN JJ NNS VBP DT NN MD VB VBN IN JJ NN . Iraqi Kurdish lawmakers have rejected proposals to share provincial council seats in Kirkuk equally among the region 's ethnic groups . JJ NNP NNS VBP VBN NNS TO VB JJ NN NNS IN NNP RB IN DT NN POS JJ NNS . Iraqi Kurds and their allies currently hold the majority in Kirkuk 's assembly . JJ NNPS CC PRP$ NNS RB VBP DT NN IN NNP POS NN . Hundreds of Iraqi Kurds protested in the northern city of Sulaimaniya Wednesday against the proposal for power-sharing in Kirkuk . NNS IN JJ NNPS VBD IN DT JJ NN IN NNP NNP IN DT NN IN NN IN NNP . A similar protest in the city of Irbil on Tuesday drew thousands of people . DT JJ NN IN DT NN IN NNP IN NNP VBD NNS IN NNS . Ethiopia says it has accepted ' in principle ' an independent commission 's ruling on its border with former foe Eritrea . NNP VBZ PRP VBZ VBN `` IN NN `` DT JJ NN POS NN IN PRP$ NN IN JJ NN NN . Ethiopian Prime Minister Meles Zenawi told parliament members Thursday the government has accepted the ruling in the best interests of the country . JJ NNP NNP NNP NNP VBD NN NNS NNP DT NN VBZ VBN DT NN IN DT JJS NNS IN DT NN . Ethiopia and Eritrea fought a 2.5-year border war between May 1998 and December 2000 in which tens of thousands of people were killed . NNP CC NNP VBD DT JJ NN NN IN NNP CD CC NNP CD IN WDT NNS IN NNS IN NNS VBD VBN . As part of a deal to end the war , the two nations agreed to form an independent boundary commission and that its decision would be final and binding . IN NN IN DT NN TO VB DT NN , DT CD NNS VBD TO VB DT JJ JJ NN CC IN PRP$ NN MD VB JJ CC JJ . Eritrea accepted the April 2000 decision but Ethiopia said it disagreed with some aspects of its findings . NNP VBD DT NNP CD NN CC NNP VBD PRP VBD IN DT NNS IN PRP$ NNS . Irish officials have agreed to meet with representatives of about 40 Afghan asylum seekers on a hunger strike in Dublin 's Saint Patrick 's Cathedral after being denied permission to remain in Ireland . JJ NNS VBP VBN TO VB IN NNS IN IN CD JJ NN NNS IN DT NN NN IN NNP POS NNP NNP POS NNP IN VBG VBN NN TO VB IN NNP . Church and local authorities Tuesday said Justice Ministry officials will meet protest representatives to discuss their asylum requests . NNP CC JJ NNS NNP VBD NNP NNP NNS MD VB NN NNS TO VB PRP$ NN NNS . At least five protesters suffering from dehydration have been hospitalized since the hunger strike began Sunday . IN JJS CD NNS VBG IN NN VBP VBN VBN IN DT NN NN VBD NNP . Many in the group began taking water after the Irish officials agreed to meet with them . NN IN DT NN VBD VBG NN IN DT JJ NNS VBD TO VB IN PRP . Officials say the group is frustrated over the rejection of their applications to remain in Ireland . NNS VBP DT NN VBZ VBN IN DT NN IN PRP$ NNS TO VB IN NNP . They say their lives will be in danger if they are forced to return to Afghanistan . PRP VBP PRP$ NNS MD VB IN NN IN PRP VBP VBN TO VB TO NNP . Justice ministry officials have said all the asylum applications were handled in a comprehensive and fair manner . NN NN NNS VBP VBN PDT DT NN NNS VBD VBN IN DT JJ CC JJ NN . A purported spokesman for the Taleban says members of the group have killed four kidnapped foreigners but released their four Afghan colleagues . DT JJ NN IN DT NNP VBZ NNS IN DT NN VBP VBN CD VBN NNS CC VBD PRP$ CD JJ NNS . He said the foreigners were killed without demands because demands were never met in the past . PRP VBD DT NNS VBD VBN IN NNS IN NNS VBD RB VBN IN DT NN . But there is no independent confirmation about the fate of the eight men . CC EX VBZ DT JJ NN IN DT NN IN DT CD NNS . The four ethnic Albanians and four Afghans were abducted in an area between the restive southern provinces of Kandahar and Helmand . DT CD JJ NNS CC CD NNS VBD VBN IN DT NN IN DT JJ JJ NNS IN NNP CC NNP . They all worked for Ecolog , a German cleaning company contracted to U.S.-led forces . PRP DT VBD IN NNP , DT JJ NN NN VBD TO JJ NNS . In a separate development , U.S. military officials say coalition forces have detained 11 militants suspected of involvement in a bombing that killed four American troops in eastern Kunar province Sunday . IN DT JJ NN , NNP JJ NNS VBP NN NNS VBP VBN CD NNS VBN IN NN IN DT NN WDT VBD CD JJ NNS IN JJ NNP NN NNP . Meanwhile , the U.S. military says another American serviceman was killed Monday when his vehicle overturned during a combat operation in eastern Nangarhar province . RB , DT NNP NN VBZ DT JJ NN VBD VBN NNP WRB PRP$ NN VBD IN DT NN NN IN JJ NNP NN . Former Haitian President Jean-Bertrand Aristide says he hopes to return to Haiti as soon as possible , after nearly two years in exile in South Africa . JJ JJ NNP NNP NNP VBZ PRP VBZ TO VB TO NNP RB RB IN JJ , IN RB CD NNS IN NN IN NNP NNP . Mr. Aristide told South African television Tuesday , he is in talks with Haitian officials about his return , now that Haiti has elected a new president . NNP NNP VBD NNP NNP NN NNP , PRP VBZ IN NNS IN JJ NNS IN PRP$ NN , RB IN NNP VBZ VBN DT JJ NN . Aristide left the country after a popular revolt in 2004 that brought down his presidency . NNP VBD DT NN IN DT JJ NN IN CD WDT VBD RP PRP$ NN . Haiti 's new leader is former Aristide ally Rene Preval , who was declared the winner of this month 's election after a controversial change in the way blank ballots were counted . NNP POS JJ NN VBZ JJ NNP NN NNP NNP , WP VBD VBN DT NN IN DT NN POS NN IN DT JJ NN IN DT NN JJ NNS VBD VBN . Earlier Tuesday , Haiti 's chief elections official , Jacques Bernard , fled to the United States after receiving threats and finding his home ransacked . RBR NNP , NNP POS JJ NNS NN , NNP NNP , VBD TO DT NNP NNPS IN VBG NNS CC VBG PRP$ NN VBD . The United Nations says it will summon more Syrian officials for questioning in its probe of the assassination of former Lebanese Prime Minister Rafik al-Hariri . DT NNP NNP VBZ PRP MD VB RBR JJ NNS IN VBG IN PRP$ NN IN DT NN IN JJ JJ NNP NNP NNP NNP . In an interview with Lebanon 's al-Mustaqbal newspaper , which is owned by the Hariri family , U.N. chief investigator Detlev Mehlis says he will ask permission from Syria in the next few days to question more officials about the assassination . IN DT NN IN NNP POS JJ NN , WDT VBZ VBN IN DT NNP NN , NNP NN NN NNP NNP VBZ PRP MD VB NN IN NNP IN DT JJ JJ NNS TO VB RBR NNS IN DT NN . He did not specify which officials he wants to question . PRP VBD RB VB WDT NNS PRP VBZ TO VB . International investigators interrogated five Syrian officials in the Austrian capital , Vienna , this week in connection with the February 14 truck bomb that killed Mr. Hariri and 22 others . JJ NNS VBD CD JJ NNS IN DT JJ NN , NNP , DT NN IN NN IN DT NNP CD NN NN WDT VBD NNP NNP CC CD NNS . Mr. Mehlis said the Vienna interviews were more fruitful than a series of earlier interrogation sessions in Damascus . NNP NNP VBD DT NNP NNS VBD RBR JJ IN DT NN IN JJR NN NNS IN NNP . In an interim report in October , the U.N. investigator implicated senior Syrian security officials and their Lebanese allies in the murder . IN DT JJ NN IN NNP , DT NNP NN VBD JJ JJ NN NNS CC PRP$ JJ NNS IN DT NN . The U.S. military says American Marines accused of killing 19 Afghan civilians while responding to an ambush last year acted in accordance with military rules . DT NNP NN VBZ NNP NNP VBN IN VBG CD JJ NNS IN VBG TO DT NN JJ NN VBD IN NN IN JJ NNS . Military officials said Friday the commander of Marine Corps forces ( Central Command ) decided not to bring criminal charges against officers involved in the March 2007 operation . NN NNS VBD NNP DT NN IN NNP NNP NNS LRB NNP NNP RRB VBD RB TO VB JJ NNS IN NNS VBN IN DT NNP CD NN . Officials said Lieutenant General Samuel Helland determined the officers acted ' appropriately ' after coming under attack in Afghanistan 's eastern Nangarhar province . NNS VBD NNP NNP NNP NNP VBD DT NNS VBD `` RB `` IN VBG IN NN IN NNP POS JJ NNP NN . The military has called the incident a ' complex attack , ' in which a suicide car bomber rammed a U.S. convoy before other militants opened fire , sparking a gun battle . DT NN VBZ VBN DT NN DT `` JJ NN , `` IN WDT DT NN NN NN VBD DT NNP NN IN JJ NNS VBD NN , VBG DT NN NN . Afghan witnesses and police have said U.S. troops fired on civilians , killing up to 19 people and wounding several others . JJ NNS CC NNS VBP VBN NNP NNS VBD IN NNS , VBG RP TO CD NNS CC VBG JJ NNS . U.S. officials have said it is not clear whether the civilians were killed by American troops or the militants . NNP NNS VBP VBN PRP VBZ RB JJ IN DT NNS VBD VBN IN JJ NNS CC DT NNS . Argentine tennis player Juan Ignacio Chela and Spanish veteran Carlos Moya have reached the quarterfinals at the U.S. Open in Flushing Meadows , New York . JJ NN NN NNP NNP NNP CC JJ NN NNP NNP VBP VBN DT NNS IN DT NNP NNP IN NNP NNP , NNP NNP . Chela needed three hours and 41 minutes and five sets to defeat Stanilas Warwrinka of Switzerland , 04-Jun , 06-Feb , 07-Jun , 01-Jun , 06-Apr . NNP VBD CD NNS CC CD NNS CC CD NNS TO VB NNP NNP IN NNP , CD , CD , CD , CD , CD . The Argentine will next face the winner of all-Spanish encounter between second seed Rafael Nadal and 15th seed David Ferrer . DT NN MD RB VB DT NN IN JJ NN IN JJ NN NNP NNP CC JJ NN NNP NNP . Moya , the 17th seed , reached the quarterfinals for the first time since 1998 with a four-sets victory over 19-year-old Latvian Ernest Gulbis , 07-May , 06-Feb , 06-Jul , 06-Apr . NNP , DT JJ NN , VBD DT NNS IN DT JJ NN IN CD IN DT JJ NN IN JJ JJ NNP NNP , CD , CD , CD , CD . The 31-year-old Moya moves on to play third seed Novak Djokovic of Serbia , who ousted Argentine Juan Monaco , 07-May , 07-Jun , 06-Jul , 06-Jan . DT JJ NNP NNS IN TO VB JJ NN NNP NNP IN NNP , WP VBD JJ NNP NNP , CD , CD , CD , CD . The featured Tuesday night match on the women 's side will be top seed Justine Henin of Belgium against eighth seed Serena Williams of the United States . DT JJ NNP NN NN IN DT NNS POS NN MD VB JJ NN NNP NNP IN NNP IN JJ NN NNP NNP IN DT NNP NNPS . The Washington Post newspaper reports Wednesday that the U.S. government database of alleged international terrorism suspects and their associates now contains 3,25,000 names . DT NNP NNP NN VBZ NNP IN DT NNP NN NN IN JJ JJ NN NNS CC PRP$ NNS RB VBZ CD NNS . The paper says the list has quadrupled in size since it was created in 2003 . DT NN VBZ DT NN VBZ VBN IN NN IN PRP VBD VBN IN CD . The list is maintained by the National Counterterrorism Center . DT NN VBZ VBN IN DT NNP NNP NNP . Civil liberties advocates say they are concerned that innocent people may be on the list . JJ NNS NNS VBP PRP VBP VBN IN JJ NNS MD VB IN DT NN . Counterterrorism center officials say the actual number of people on the list is approximately 2,00,000 , because the same person may appear under different spellings or aliases . NN NN NNS VBP DT JJ NN IN NNS IN DT NN VBZ RB CD , IN DT JJ NN MD VB IN JJ NNS CC NNS . An administration official told the Post that U.S. citizens make up only a small fraction of the names . DT NN NN VBD DT NNP IN NNP NNS VBP RP RB DT JJ NN IN DT NNS . The newspaper report says the database is a compilation of reports supplied by the CIA , FBI , and other agencies . DT NN NN VBZ DT NN VBZ DT NN IN NNS VBN IN DT NNP , NNP , CC JJ NNS . Seven South American countries are launching a new development bank aimed at expanding regional trade and growth . CD NNP JJ NNS VBP VBG DT JJ NN NN VBN IN VBG JJ NN CC NN . The Banco del Sur , or Bank of the South , is to be officially established on November third in Caracas , Venezuela . DT NNP NNP NNP , CC NNP IN DT NNP , VBZ TO VB RB VBN IN NNP NN IN NNP , NNP . The date was agreed on by regional finance ministers meeting in Brazil Monday . DT NN VBD VBN IN IN JJ NN NNS VBG IN NNP NNP . The bank , championed by Venezuelan President Hugo Chavez , is also supported by Argentina , Brazil , Bolivia , Paraguay , Uruguay and Ecuador . DT NN , VBN IN JJ NNP NNP NNP , VBZ RB VBN IN NNP , NNP , NNP , NNP , NNP CC NNP . The presidents of each country must sign off on the deal before the bank can get underway . DT NNS IN DT NN MD VB RP IN DT NN IN DT NN MD VB NN . Mr. Chavez proposed the regional bank as part of a drive to counter the conditional lending practices of international institutions such as the World Bank and International Monetary Fund . NNP NNP VBD DT JJ NN IN NN IN DT NN TO VB DT JJ NN NNS IN JJ NNS JJ IN DT NNP NNP CC NNP NNP NNP . Officials say the bank will be open to all South American countries . NNS VBP DT NN MD VB JJ TO DT JJ JJ NNS . A senior Pakistani security official says security forces have arrested a suspected Al-Qaida militant believed to have been involved with the London terrorist attacks of July 2005 . DT JJ JJ NN NN VBZ NN NNS VBP VBN DT JJ NNP NN VBN TO VB VBN VBN IN DT NNP JJ NNS IN NNP CD . The official , who asked not to be named , told Western news agencies that Zabi ul-Taifi was arrested along with six fellow militants in a pre-dawn raid outside the northwestern city of Peshawar . DT NN , WP VBD RB TO VB VBN , VBD JJ NN NNS WDT NNP NNP VBD VBN IN IN CD JJ NNS IN DT JJ NN IN DT JJ NN IN NNP . He said Taifi is an Arab national wanted in connection to the July 7 , 2005 , terrorist attacks on London 's mass transit system . PRP VBD NNP VBZ DT JJ NN VBN IN NN TO DT NNP CD , CD , NN NNS IN NNP POS NN NN NN . The four coordinated bombings killed 52 commuters . DT CD VBD NNS VBN CD NNS . British police say three of the four bombers were British citizens of Pakistani origin who are believed to have trained in Al-Qaida camps in Pakistan or Afghanistan . JJ NNS VBP CD IN DT CD NNS VBD JJ NNS IN JJ NN WP VBP VBN TO VB VBN IN NNP NNS IN NNP CC NNP . Automobile sales in the United States fell in June as high gasoline prices kept consumers away from trucks and sports utility vehicles that require a lot of fuel . NNP NNS IN DT NNP NNPS VBD IN NNP IN JJ NN NNS VBD NNS RB IN NNS CC NNS NN NNS WDT VBP DT NN IN NN . U.S.-based General Motors , the world 's largest carmaker , Tuesday announced sales fell more than 18 percent in June from the same month last year . JJ NNP NNPS , DT NN POS JJS NN , NNP VBD NNS VBD RBR IN CD NN IN NNP IN DT JJ NN JJ NN . GM's Japanese rival Toyota reports its sales fell more than 21 percent . NNP JJ JJ NNP VBZ PRP$ NNS VBD JJR IN CD NN . In a statement , GM said its truck market has been affected by the sudden rise in fuel prices . IN DT NN , NNP VBD PRP$ NN NN VBZ VBN VBN IN DT JJ NN IN NN NNS . But , it says demand is continuing to grow for hybrid cars , which use less fuel than conventional vehicles because they combine a gasoline engine with high-tech batteries and electric motors . CC , PRP VBZ NN VBZ VBG TO VB IN JJ NNS , WDT VBP JJR NN IN JJ NNS IN PRP VBP DT NN NN IN JJ NNS CC JJ NNS . On Friday , a major U.S. credit-rating service announced renewed concerns about the top three American automakers , GM , Ford and Chrysler , due to the industry-wide sales slump . IN NNP , DT JJ NNP NN NN VBD VBN NNS IN DT JJ CD JJ NNS , NNP , NNP CC NNP , JJ TO DT JJ NNS NN . The death toll in the crash of a passenger plane in northern China now stands at 54 , with the discovery of one victim on the ground . DT NN NN IN DT NN IN DT NN NN IN JJ NNP RB VBZ IN CD , IN DT NN IN CD NN IN DT NN . The official Xinhua news agency had earlier reported two people had been killed on the ground , but later changed the figure to one . DT JJ NNP NN NN VBD RB VBN CD NNS VBD VBN VBN IN DT NN , CC RB VBD DT NN TO CD . The China Eastern Airlines jet , carrying 53 passengers and crew , plunged into a lake in Nanhai Park just seconds after taking off from Baotou city in Inner Mongolia at about 8.20 a.m. , local time [ 20 UTC ] . DT NNP NNP NNPS NN , VBG CD NNS CC NN , VBD IN DT NN IN NNP NNP RB NNS IN VBG RP IN NNP NN IN NNP NNP IN IN CD NN , JJ NN LRB CD NN RRB . Witnesses said they heard a blast while the plane was still in the air . NNS VBD PRP VBD DT NN IN DT NN VBD RB IN DT NN . The aircraft broke into flaming fragments as it came down , damaging a house near the lake and scorching several yachts . DT NN VBD IN NN NNS IN PRP VBD RB , VBG DT NN IN DT NN CC VBG JJ NNS . The aircraft was a Canadian-made Bombardier CRJ-200 , a commuter jet designed to carry 50 passengers . DT NN VBD DT JJ NNP NNP , DT NN NN VBN TO VB CD NNS . Australian police say they have foiled a large-scale terrorist attack , with at least 16 arrests in Melbourne and Sydney . JJ NNS VBP PRP VBP VBN DT JJ JJ NN , IN IN JJS CD NNS IN NNP CC NNP . Police say a suspect in the case was shot and wounded by police near Sydney , and that a bomb squad robot was being used to examine a backpack he was wearing . NNS VBP DT NN IN DT NN VBD VBN CC VBN IN NN IN NNP , CC IN DT NN NN NN VBD VBG VBN TO VB DT NN PRP VBD VBG . A lawyer for a Muslim cleric in Melbourne named Abu Bakr said his client was among those arrested early Tuesday . DT NN IN DT NNP NN IN NNP VBD NNP NNP VBD PRP$ NN VBD IN DT VBN JJ NNP . In August , Abu Bakr praised Osama Bin Laden during an interview aired by the Australian Broadcasting Corporation . IN NNP , NNP NNP VBD NNP NNP NNP IN DT NN VBN IN DT JJ NNP NNP . Police said the arrests disrupted a ' large scale ' terrorist attack in Australia . NNS VBD DT NNS VBD DT `` JJ NN `` JJ NN IN NNP . They said bomb-making materials were found during the raids . PRP VBD JJ NNS VBD VBN IN DT NNS . The arrests come just days after the federal government rushed an amendment through parliament that would give police the power to arrest people involved in the early stages of planning attacks . DT NNS VBP RB NNS IN DT JJ NN VBD DT NN IN NN WDT MD VB NNS DT NN TO VB NNS VBN IN DT JJ NNS IN NN NNS . Colombian President Alvaro Uribe says the country 's domestic intelligence agency will no longer be in charge of intercepting communications , after it came under investigation for an illegal wiretapping scandal . JJ NNP NNP NNP VBZ DT NN POS JJ NN NN MD RB RB VB IN NN IN VBG NNS , IN PRP VBD IN NN IN DT JJ NN NN . Mr. Uribe announced Thursday that all wiretaps will now be conducted by the national police , and will require judicial authorization . NNP NNP VBD NNP IN DT NNS MD RB VB VBN IN DT JJ NN , CC MD VB JJ NN . The domestic intelligence agency , known as DAS ( the Department of Administrative Security ) is under federal investigation over charges that its agents illegally wiretapped politicians , journalists and judges . DT JJ NN NN , VBN IN NNP LRB DT NNP IN NNP NNP RRB VBZ IN JJ NN IN NNS IN PRP$ NNS RB VBD NNS , NNS CC NNS . The agency is accused of passing intercepted information to drug traffickers and other illegal armed groups . DT NN VBZ VBN IN VBG JJ NN TO NN NNS CC JJ JJ JJ NNS . The accusations were first made by the Colombian news magazine ' Semana . ' DT NNS VBD RB VBN IN DT JJ NN NN `` NNP . `` DAS has been accused of wrongful spying in the past . NNP VBZ VBN VBN IN JJ NN IN DT NN . Last year , the head of the agency , Maria del Pilar Hurtado , resigned after it was revealed that agents were ordered to spy on opposition leaders . JJ NN , DT NN IN DT NN , NNP NNP NNP NNP , VBD IN PRP VBD VBN IN NNS VBD VBN TO VB IN NN NNS . A published report says the Bush administration is considering plans for permanently imprisoning some suspected terrorists held by the U.S. military and Central Intelligence Agency . DT JJ NN VBZ DT NNP NN VBZ VBG NNS IN RB VBG DT JJ NNS VBN IN DT NNP NN CC NNP NNP NNP . The Washington Post Sunday quotes unidentified U.S. officials as saying the White House is considering a plan to indefinitely hold certain detainees the administration does not want released or turned over to courts in the United States or other countries . DT NNP NNP NNP VBZ JJ NNP NNS IN VBG DT NNP NNP VBZ VBG DT NN TO RB VB JJ NNS DT NN VBZ RB VB VBN CC VBN RP TO NNS IN DT NNP NNPS CC JJ NNS . In some cases , the reason is said to be a lack of evidence . IN DT NNS , DT NN VBZ VBN TO VB DT NN IN NN . The newspaper says Washington is considering transferring large numbers of prisoners from Afghanistan , Yemen and Saudi Arabia held at the U.S. military prison at Guantanamo Bay , Cuba to U.S.-built prisons in their homelands . DT NN VBZ NNP VBZ VBG VBG JJ NNS IN NNS IN NNP , NNP CC NNP NNP VBD IN DT NNP JJ NN IN NNP NNP , NNP TO JJ NNS IN PRP$ NNS . International human rights groups have criticized the Bush administration for indefinitely detaining people without charges or allowing them access to legal counsel . JJ JJ NNS NNS VBP VBN DT NNP NN IN RB VBG NNS IN NNS CC VBG PRP NN TO JJ NN . Israeli Defense Minister Shaul Mofaz says Arab residents of East Jerusalem will be allowed to vote in this month 's Palestinian parliamentary elections . JJ NN NN NNP NNP VBZ JJ NNS IN NNP NNP MD VB VBN TO VB IN DT NN POS JJ JJ NNS . Mofaz said Tuesday that Arabs will be able to cast ballots at post offices , as they have in past Palestinian elections , under interim peace deals in the 1990s . NNP VBD NNP IN NNS MD VB JJ TO VB NNS IN NN NNS , IN PRP VBP IN JJ JJ NNS , IN JJ NN NNS IN DT NNS . But other Israeli officials say that decision has not yet been finalized . CC JJ JJ NNS VBP IN NN VBZ RB RB VBN VBN . Palestinian negotiator Saeb Erekat says he has not heard anything on the matter from Israeli officials . JJ NN NNP NNP VBZ PRP VBZ RB VBN DT IN DT NN IN JJ NNS . Palestinian President Mahmoud Abbas said Monday that U.S. officials assured him voting would take place in East Jerusalem as scheduled . JJ NNP NNP NNP VBD NNP IN NNP NNS VBD PRP VBG MD VB NN IN NNP NNP IN VBN . He had threatened to cancel the election if Israel barred voting in East Jerusalem , to protest the inclusion of candidates from the Hamas militant group . PRP VBD VBN TO VB DT NN IN NNP VBD NN IN NNP NNP , TO VB DT NN IN NNS IN DT NNP JJ NN . Two senior U.S. envoys are due in the region this week for talks with both sides ahead of the January 25 vote . CD JJ NNP NNS VBP JJ IN DT NN DT NN IN NNS IN DT NNS RB IN DT NNP CD NN . Human Rights Watch says the international community is not doing enough to stop the violence in Sudan 's western Darfur region . NNP NNP NNP VBZ DT JJ NN VBZ RB VBG RB TO VB DT NN IN NNP POS JJ NNP NN . Executive Director Kenneth Roth , in a statement , said the world has responded to the crisis by expressing concern and feigning action , but nothing more . NNP NNP NNP NNP , IN DT NN , VBD DT NN VBZ VBN TO DT NN IN VBG NN CC VBG NN , CC DT JJR . He said it is not enough to condemn atrocities in Darfur and to send a handful of African Union troops to , ' merely observe the slaughter ' of civilians . PRP VBD PRP VBZ RB JJ TO VB NNS IN NNP CC TO VB DT NN IN NNP NNP NNS TO , `` RB VBP DT NN `` IN NNS . A.U. troops in Darfur are not mandated to protect civilians . NNP NNS IN NNP VBP RB VBN TO VB NNS . Mr. Roth also said the international community has put no serious pressure on the Sudanese government to stop what he called its ' murderous campaign . ' NNP NNP RB VBD DT JJ NN VBZ VBN DT JJ NN IN DT JJ NN TO VB WP PRP VBD PRP$ `` JJ NN . `` The United Nations and western countries , including the United States , have accused Sudan of backing Arab militia who have waged a campaign of murder and rape . DT NNP NNPS CC JJ NNS , VBG DT NNP NNPS , VBP VBN NNP IN VBG JJ NN WP VBP VBN DT NN IN NN CC NN . Sudan denies the charge . NNP VBZ DT NN . Officials for the 2012 London Olympics have announced the costs and confirmed the builders for the Olympic Stadium and aquatic center . NNS IN DT CD NNP NNPS VBP VBN DT NNS CC VBD DT NNS IN DT NNP NNP CC JJ NN . The Olympic Delivery Authority ( ODA ) said Tuesday the 80,000 - seat Olympic Stadium will cost about $ 976 million and will be built by a consortium including HOK Sport , Buro Happold and Robert Alpine . DT NNP NNP NNP LRB NNP RRB VBD NNP DT CD : NN NNP NNP MD VB IN $ CD CD CC MD VB VBN IN DT NN VBG NNP NNP , NNP NNP CC NNP NNP . The price includes the cost of converting the stadium to a 25,000 seat multiple-use venue after the Olympics . DT NN VBZ DT NN IN VBG DT NN TO DT CD NN JJ NN IN DT NNS . Meanwhile , the Aquatics Center and land bridge that will be a main gateway into the Olympic Park will cost some $ 476 million . RB , DT NNP NNP CC NN NN WDT MD VB DT JJ NN IN DT NNP NNP MD VB DT $ CD CD . The venue , which will be built by Balfour Beatty , will seat 2,500 people when it is reconfigured after the Games . DT NN , WDT MD VB VBN IN NNP NNP , MD VB CD NNS WRB PRP VBZ VBN IN DT NNPS . Police say at least 20 people have been killed in an explosion set off by Maoist rebels in central India 's Chattisgarh state . NNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN VBN RP IN JJ NNS IN JJ NNP POS NNP NN . Police say the rebels blew up a vehicle filled with anti-Maoist activists Tuesday . NNS VBP DT NNS VBD RP DT NN VBN IN JJ NNS NNP . The killings come on the eve of President Bush 's visit to India . DT NNS VBP IN DT NN IN NNP NNP POS NN TO NNP . Maoist rebels say they are fighting for the rights of poor peasants and landless workers . JJ NNS VBP PRP VBP VBG IN DT NNS IN JJ NNS CC JJ NNS . They have battled authorities for decades . PRP VBP VBN NNS IN NNS . Pope John Paul is hailing the European Union 's newly-signed constitution , while urging Europe to remember its Christian roots . NNP NNP NNP VBZ VBG DT NNP NNP POS JJ NN , IN VBG NNP TO VB PRP$ JJ NNS . In his weekly appearance at St. Peter 's Square in Rome , the pope described Friday 's signing of the EU constitution as a significant moment in the creation of a new Europe . IN PRP$ JJ NN IN NNP NNP POS NNP IN NNP , DT NN VBD NNP POS NN IN DT NNP NN IN DT JJ NN IN DT NN IN DT JJ NNP . But the pope added that Europe 's Christian heritage remains a fundamental part of the Union 's future . CC DT NN VBD IN NNP POS JJ NN VBZ DT JJ NN IN DT NNP POS NN . The Vatican had pushed unsuccessfully for a reference to Europe 's Christian tradition in the constitution . DT NNP VBD VBN RB IN DT NN TO NNP POS JJ NN IN DT NN . On Saturday , Italy 's candidate for the European Union 's top executive body , Rocco Buttiglione - a conservative Catholic - stepped down from consideration following controversial remarks that included his description of homosexuality as a sin . IN NNP , NNP POS NN IN DT NNP NNP POS JJ NN NN , NNP NNP IN DT JJ JJ : VBD RB IN NN VBG JJ NNS WDT VBD PRP$ NN IN NN IN DT NN . Militants in Iraq detonated several roadside bombs Friday , killing at least two people and injuring eight others . NNS IN NNP VBD JJ NN NNS NNP , VBG IN JJS CD NNS CC VBG CD NNS . Police in Iraq say insurgents set off a bomb near a U.S. Army convoy in Baghdad 's exclusive Mansour district . NNS IN NNP VBP NNS VBD RP DT NN IN DT NNP NNP NN IN NNP POS JJ NNP NN . The explosion killed one person and wounded at least five others -- some seriously . DT NN VBD CD NN CC VBD IN JJS CD NNS : DT RB . Across town , a bomb targeting Iraqi National Guard troops killed one person and wounded at least three others . IN NN , DT NN VBG JJ NNP NNP NNS VBD CD NN CC VBD IN JJS CD NNS . The attacks followed twin suicide car-bomb blasts Thursday that killed at least 15 people and wounded more than 30 others . DT NNS VBD JJ NN NN NNS NNP WDT VBD IN JJS CD NNS CC VBD JJR IN CD NNS . A.L. Williams Corp. was merged into Primerica Corp. , New York , after a special meeting of Williams shareholders cleared the transaction , the companies said . NN NNP NNP VBD VBN IN NNP NNP , NNP NNP , IN DT JJ NN IN NNP NNS VBD DT NN , DT NNS VBD . Primerica , which had owned nearly 70 % of Williams , will pay about 16.7 million shares , currently valued at almost $ 472 million , for the rest of Williams . NNP , WDT VBD VBN RB CD NN IN NNP , MD VB IN CD CD NNS , RB VBN IN RB $ CD CD , IN DT NN IN NNP . The financial-services company will pay 0.82 share for each Williams share . DT NNS NN MD VB CD NN IN DT NNP NN . Williams shares , which were to be delisted from the New York Stock Exchange after the close of composite trading yesterday , closed at $ 23.25 , off 12.5 cents . NNP NNS , WDT VBD TO VB VBN IN DT NNP NNP NNP NNP IN DT NN IN JJ NN NN , VBD IN $ CD , IN CD NNS . Primerica closed at $ 28.25 , down 50 cents . NNP VBD IN $ CD , RB CD NNS . Williams , Duluth , Ga. , is an insurance and financial-services holding company . NNP , NNP , NNP , VBZ DT NN CC NNS VBG NN . Its subsidiaries ' services are marketed by closely held A.L. Williams & Associates . PRP$ NNS POS NNS VBP VBN IN RB VBN NN NNP CC NNP . Primerica , as expected , also acquired certain assets of the agency and assumed certain of its liabilities . NNP , IN VBN , RB VBD JJ NNS IN DT NN CC VBD JJ IN PRP$ NNS . Terms were n't disclosed . NNS VBD RB VBN . Fiji , endowed with forest , mineral , and fish resources , is one of the most developed of the Pacific island economies though still with a large subsistence sector . NNP , VBN IN NN , NN , CC NN NNS , VBZ CD IN DT RBS VBN IN DT NNP NN NNS IN RB IN DT JJ NN NN . Sugar exports , remittances from Fijians working abroad , and a growing tourist industry - with 4,00,000 to 5,00,000 tourists annually - are the major sources of foreign exchange . NNP NNS , NNS IN NNS VBG RB , CC DT VBG NN NN : IN CD TO CD NNS RB : VBP DT JJ NNS IN JJ NN . Fiji 's sugar has special access to European Union markets but will be harmed by the EU 's decision to cut sugar subsidies . NNP POS NN VBZ JJ NN TO NNP NNP NNS CC MD VB VBN IN DT NNP POS NN TO VB NN NNS . Sugar processing makes up one-third of industrial activity but is not efficient . NNP NN VBZ RP NN IN JJ NN CC VBZ RB JJ . Fiji 's tourism industry was damaged by the December 2006 coup and is facing an uncertain recovery time . NNP POS NN NN VBD VBN IN DT NNP CD NN CC VBZ VBG DT JJ NN NN . In 2007 tourist arrivals were down almost 6 % , with substantial job losses in the service sector , and GDP dipped . IN CD NN NNS VBD IN RB CD NN , IN JJ NN NNS IN DT NN NN , CC NN VBD . The coup has created a difficult business climate . DT NN VBZ VBN DT JJ NN NN . The EU has suspended all aid until the interim government takes steps toward new elections . DT NNP VBZ VBN DT NN IN DT JJ NN VBZ NNS IN JJ NNS . Long-term problems include low investment , uncertain land ownership rights , and the government 's inability to manage its budget . JJ NNS VBP JJ NN , JJ NN NN NNS , CC DT NN POS NN TO VB PRP$ NN . Overseas remittances from Fijians working in Kuwait and Iraq have decreased significantly . JJ NNS IN NNS VBG IN NNP CC NNP VBP VBN RB . Fiji 's current account deficit reached 23 % of GDP in 2006 . NNP POS JJ NN NN VBD CD NN IN NN IN CD . Ghana is well endowed with natural resources and agriculture accounts for roughly one-third of GDP and employs more than half of the workforce , mainly small landholders . NNP VBZ RB VBN IN JJ NNS CC NN NNS IN RB NN IN NN CC VBZ JJR IN NN IN DT NN , RB JJ NNS . The services sector accounts for 40 % of GDP . DT NNS NN NNS IN CD NN IN NN . Gold and cocoa production and individual remittances are major sources of foreign exchange . NN CC NN NN CC JJ NNS VBP JJ NNS IN JJ NN . Oil production at Ghana 's offshore Jubilee field began in mid-December and is expected to boost economic growth . NN NN IN NNP POS JJ NN NN VBD IN NNP CC VBZ VBN TO VB JJ NN . Ghana signed a Millennium Challenge Corporation ( MCC ) Compact in 2006 , which aims to assist in transforming Ghana 's agricultural sector . NNP VBD DT NNP NNP NNP LRB NNP RRB NN IN CD , WDT VBZ TO VB IN VBG NNP POS JJ NN . Ghana opted for debt relief under the Heavily Indebted Poor Country ( HIPC ) program in 2002 , and is also benefiting from the Multilateral Debt Relief Initiative that took effect in 2006 . NNP VBD IN NN NN IN DT NNP NNP NNP NNP LRB NNP RRB NN IN CD , CC VBZ RB VBG IN DT NNP NNP NNP NNP WDT VBD NN IN CD . In 2009 Ghana signed a three-year Poverty Reduction and Growth Facility with the IMF to improve macroeconomic stability , private sector competitiveness , human resource development , and good governance and civic responsibility . IN CD NNP VBD DT JJ NN NN CC NN NN IN DT NNP TO VB JJ NN , JJ NN NN , JJ NN NN , CC JJ NN CC JJ NN . Sound macro-economic management along with high prices for gold and cocoa helped sustain GDP growth in 2008 - 10 . JJ JJ NN IN IN JJ NNS IN NN CC NN VBD VB NN NN IN CD IN CD . In early 2010 President John Atta MILLS targeted recovery from high inflation and current account and budget deficits as his priorities . IN JJ CD NNP NNP NNP NNP VBD NN IN JJ NN CC JJ NN CC NN NNS IN PRP$ NNS . High population density , limited land and sea access , continuing isolation , and strict internal and external security controls have degraded economic conditions in the Gaza Strip - the smaller of the two areas in the Palestinian Territories . JJ NN NN , JJ NN CC NN NN , VBG NN , CC JJ JJ CC JJ NN NNS VBP VBN JJ NNS IN DT NNP NNP IN DT JJR IN DT CD NNS IN DT JJ NNS . Israeli-imposed crossings closures , which became more restrictive after HAMAS violently took over the territory in June 2007 , and fighting between HAMAS and Israel during December 2008 - January 2009 , resulted in the near collapse of most of the private sector , extremely high unemployment , and high poverty rates . VBN NNS NNS , WDT VBD RBR JJ IN NNP RB VBD RP DT NN IN NNP CD , CC VBG IN NNP CC NNP IN NNP CD IN NNP CD , VBD IN DT JJ NN IN JJS IN DT JJ NN , RB JJ NN , CC JJ NN NNS . Shortages of goods are met through large-scale humanitarian assistance - led by UNRWA - and the HAMAS-regulated black market tunnel trade that flourishes under the Gaza Strip 's border with Egypt . NNS IN NNS VBP VBN IN JJ JJ NN : VBN IN NNP : CC DT JJ JJ NN NN NN WDT VBZ IN DT NNP NNP POS NN IN NNP . However , changes to the blockade in 2010 included moving from a white list - in which only approved items were allowed into Gaza through the crossings - to a black list , where all but non-approved items were allowed into Gaza through the crossings . RB , NNS TO DT NN IN CD VBD VBG IN DT JJ NN : IN WDT RB VBN NNS VBD VBN IN NNP IN DT NNS IN TO DT JJ NN , WRB DT CC JJ NNS VBD VBN IN NNP IN DT NNS . Israeli authorities have recently signaled that exports from the territory might be possible in the future , but currently regular exports from Gaza are not permitted . JJ NNS VBP RB VBN IN NNS IN DT NN MD VB JJ IN DT NN , CC RB JJ NNS IN NNP VBP RB VBN . Chad 's primarily agricultural economy will continue to be boosted by major foreign direct investment projects in the oil sector that began in 2000 . NNP POS RB JJ NN MD VB TO VB VBN IN JJ JJ JJ NN NNS IN DT NN NN WDT VBD IN CD . At least 80 % of Chad 's population relies on subsistence farming and livestock raising for its livelihood . IN JJS CD NN IN NNP POS NN VBZ IN NN NN CC NN NN IN PRP$ NN . Chad 's economy has long been handicapped by its landlocked position , high energy costs , and a history of instability . NNP POS NN VBZ RB VBN VBN IN PRP$ JJ NN , JJ NN NNS , CC DT NN IN NN . Chad relies on foreign assistance and foreign capital for most public and private sector investment projects . NNP VBZ IN JJ NN CC JJ NN IN JJS JJ CC JJ NN NN NNS . A consortium led by two US companies has been investing $ 3.7 billion to develop oil reserves - estimated at 1 billion barrels - in southern Chad . DT NN VBN IN CD NNP NNS VBZ VBN VBG $ CD CD TO VB NN NNS : VBN IN CD CD NNS : IN JJ NNP . Chinese companies are also expanding exploration efforts and are currently building a 300-km pipeline and the country 's first refinery . JJ NNS VBP RB VBG NN NNS CC VBP RB VBG DT JJ NN CC DT NN POS JJ NN . The nation 's total oil reserves are estimated at 1.5 billion barrels . DT NN POS JJ NN NNS VBP VBN IN CD CD NNS . Oil production came on stream in late 2003 . NN NN VBD IN NN IN JJ CD . Chad began to export oil in 2004 . NNP VBD TO VB NN IN CD . Cotton , cattle , and gum arabic provide the bulk of Chad 's non-oil export earnings . NN , NNS , CC NN NN VB DT NN IN NNP POS JJ NN NNS . A DOG , crossing a bridge over a stream with a piece of flesh in his mouth , saw his own shadow in the water and took it for that of another Dog , with a piece of meat double his own in size . DT NNP , VBG DT NN IN DT NN IN DT NN IN NN IN PRP$ NN , VBD PRP$ JJ NN IN DT NN CC VBD PRP IN DT IN DT NNP , IN DT NN IN NN JJ PRP$ NN IN NN . He immediately let go of his own , and fiercely attacked the other Dog to get his larger piece from him . PRP RB VB NN IN PRP$ NN , CC RB VBD DT JJ NNP TO VB PRP$ JJR NN IN PRP . He thus lost both : that which he grasped at in the water , because it was a shadow ; and his own , because the stream swept it away . PRP RB VBD DT : IN WDT PRP VBD IN IN DT NN , IN PRP VBD DT NN ; CC PRP$ NN , IN DT NN VBD PRP RB . MERCURY ONCE DETERMINED to learn in what esteem he was held among mortals . NNP RB VBD TO VB IN WP NN PRP VBD VBN IN NNS . For this purpose he assumed the character of a man and visited in this disguise a Sculptor 's studio IN DT NN PRP VBD DT NN IN DT NN CC VBD IN DT NN DT NNP POS NN having looked at various statues , he demanded the price of two figures of Jupiter and Juno . VBG VBN IN JJ NNS , PRP VBD DT NN IN CD NNS IN NNP CC NNP . When the sum at which they were valued was named , he pointed to a figure of himself , saying to the Sculptor , ' You will certainly want much more for this , as it is the statue of the Messenger of the Gods , and author of all your gain . ' WRB DT NN IN WDT PRP VBD VBN VBD VBN , PRP VBD TO DT NN IN PRP , VBG TO DT NN , `` PRP MD RB VB RB JJR IN DT , IN PRP VBZ DT NN IN DT NN IN DT NNS , CC NN IN DT PRP$ NN . `` The Sculptor replied , ' Well , if you will buy these , I 'll fling you that into the bargain . ' DT NN VBD , `` UH , IN PRP MD VB DT , PRP MD VB PRP WDT IN DT NN . `` SOME TRAVELERS , journeying along the seashore , climbed to the summit of a tall cliff , and looking over the sea , saw in the distance what they thought was a large ship . DT NNS , VBG IN DT NN , VBD TO DT NN IN DT JJ NN , CC VBG IN DT NN , VBD IN DT NN WP PRP VBD VBD DT JJ NN . They waited in the hope of seeing it enter the harbor , but as the object on which they looked was driven nearer to shore by the wind , they found that it could at the most be a small boat , and not a ship . PRP VBD IN DT NN IN VBG PRP VB DT NN , CC IN DT NN IN WDT PRP VBD VBD VBN NN TO VB IN DT NN , PRP VBD IN PRP MD IN DT RBS VB DT JJ NN , CC RB DT NN . When however it reached the beach , they discovered that it was only a large faggot of sticks , and one of them said to his companions , ' We have waited for no purpose , for after all there is nothing to see but a load of wood . ' WRB RB PRP VBD DT NN , PRP VBD IN PRP VBD RB DT JJ NN IN NNS , CC CD IN PRP VBD TO PRP$ NNS , `` PRP VBP VBN IN DT NN , IN IN DT EX VBZ DT TO VB CC DT NN IN NN . `` Our mere anticipations of life outrun its realities . PRP$ JJ NNS IN NN VBP PRP$ NNS . SEEING a ship sailing by upon the sea of politics , an Ambitious Person started in hot pursuit along the strand ; but the people 's eyes being fixed upon the Presidency no one observed the pursuer . VBG DT NN NN IN IN DT NN IN NNS , DT JJ NN VBD IN JJ NN IN DT NN ; CC DT NNS POS NNS VBG VBN IN DT NN DT NN VBD DT NN . This greatly annoyed him , and recollecting that he was not aquatic , he stopped and shouted across the waves ' tumultous roar : DT RB VBD PRP , CC VBG IN PRP VBD RB JJ , PRP VBD CC VBD IN DT NNS POS JJ NN : ' Take my name off the passenger list . ' `` VB PRP$ NN IN DT NN NN . `` Back to him over the waters , hollow and heartless , like laughter in a tomb , rang the voice of the Skipper : ' 'T ai n't on ! ' RB TO PRP IN DT NNS , JJ CC JJ , IN NN IN DT NN , VBG DT NN IN DT NN IN `` PRP VBP RB IN . `` And there , in the focus of a million pairs of convergent eyes , the Ambitious Person sat him down between the sun and moon and murmured sadly to his own soul : CC RB , IN DT NN IN DT CD NNS IN JJ NNS , DT JJ NN VBD PRP RP IN DT NN CC NN CC VBD RB TO PRP$ JJ NN : ' Marooned , by thunder ! ' `` VBN , IN NN . `` A PUBLIC Treasury , feeling Two Arms lifting out its contents , exclaimed : DT NNP NNP , VBG CD NNS VBG RP PRP$ NNS , VBD : ' Mr. Shareman , I move for a division . ' `` NNP NNP , PRP VBP IN DT NN . `` ' You seem to know something about parliamentary forms of speech , ' said the Two Arms . `` PRP VBP TO VB DT IN JJ NNS IN NN , `` VBD DT CD NNS . ' Yes , ' replied the Public Treasury , ' I am familiar with the hauls of legislation . ' `` UH , `` VBD DT NNP NNP , `` PRP VBP JJ IN DT NNS IN NN . `` China 's government says passengers at Shanghai 's Pudong International Airport will be screened for bird flu . NNP POS NN VBZ NNS IN NNP POS NNP NNP NNP MD VB VBN IN NN NN . Starting Monday passengers entering or leaving China will be asked to fill out a health declaration form and have their temperature checked . VBG NNP NNS VBG CC VBG NNP MD VB VBN TO VB RP DT NN NN NN CC VBP PRP$ NN VBD . Any passenger whose body temperature is greater than 38 degrees ( Celsius ) will be further examined , and if the person has been in an area affected by bird flu , he or she will be required to undergo treatment at a hospital . DT NN WP$ NN NN VBZ JJR IN CD NNS LRB NNP RRB MD VB RBR VBN , CC IN DT NN VBZ VBN IN DT NN VBN IN NN NN , PRP CC PRP MD VB VBN TO VB NN IN DT NN . Meanwhile , China 's official Xinhua news agency quotes a health ministry official as saying the bird flu virus isolated from human patients in China is slightly different from that found in humans in Vietnam . RB , NNP POS JJ NNP NN NN VBZ DT NN NN NN IN VBG DT NN NN NN VBD IN JJ NNS IN NNP VBZ RB JJ IN DT VBN IN NNS IN NNP . However , the ministry says the changes do not make the virus any easier to spread . RB , DT NN VBZ DT NNS VBP RB VB DT NN DT JJR TO VB . British officials say they have reached preliminary agreement with Jordan , allowing Britain to deport Jordanian nationals with guarantees they will not be mistreated . JJ NNS VBP PRP VBP VBN JJ NN IN NNP , VBG NNP TO VB JJ NNS IN NNS PRP MD RB VB VBN . A spokesman for British Prime Minister Tony Blair Wednesday said the move could lead to similar agreements with several North African nations . DT NN IN JJ NNP NNP NNP NNP NNP VBD DT NN MD VB TO JJ NNS IN JJ JJ JJ NNS . Under international law , Britain must seek guarantees that deportees will not face torture or the death penalty before expelling them . IN JJ NN , NNP MD VB NNS IN NNS MD RB VB NN CC DT NN NN IN VBG PRP . The spokesman said once the formal agreement is signed several Jordanian nationals may face deportation proceedings . DT NN VBD RB DT JJ NN VBZ VBN JJ JJ NNS MD VB NN NNS . One cleric who could face deportation is Abu Qatada , who fled to Britain claiming persecution in Jordan . CD NN WP MD VB NN VBZ NNP NNP , WP VBD TO NNP VBG NN IN NNP . He has been convicted in absentia of terrorism in Jordan . PRP VBZ VBN VBN IN NN IN NN IN NNP . The Islamic militant group Hamas says one of its militants has been killed in an Israeli airstrike in the Gaza Strip . DT NNP JJ NN NNP VBZ CD IN PRP$ NNS VBZ VBN VBN IN DT JJ NN IN DT NNP NNP . Israel says it fired early Wednesday on a group of armed men in the border area . NNP VBZ PRP VBD JJ NNP IN DT NN IN JJ NNS IN DT NN NN . The attack came hours after Israeli troops killed two children in northern Gaza during fighting Tuesday with Palestinian militants . DT NN VBD NNS IN JJ NNS VBD CD NNS IN JJ NNP IN VBG NNP IN JJ NNS . Israel 's military says troops fired at two Palestinians seen next to a rocket launcher in an area where militants had fired rockets at Israel . NNP POS JJ VBZ NNS VBD IN CD NNS VBN IN TO DT NN NN IN DT NN WRB NNS VBD VBN NNS IN NNP . The Israeli military accused the militants of sending children to retrieve rocket launchers after the projectiles are fired . DT JJ NN VBD DT NNS IN VBG NNS TO VB NN NNS IN DT NNS VBP VBN . Earlier Tuesday , Israeli forces killed three Islamic Jihad militants in southern Gaza . RBR NNP , JJ NNS VBD CD NNP NNP NNS IN JJ NNP . Israeli forces have carried out frequent airstrikes and incursions into Gaza since Hamas seized the territory in June in fighting with the rival Fatah faction . JJ NNS VBP VBN RP JJ NNS CC NNS IN NNP IN NNP VBD DT NN IN NNP IN VBG IN DT JJ NNP NN . There has been some positive news coming out of the International Conference on Alzheimer 's , held July 26-31 in Chicago , Illinois . EX VBZ VBN DT JJ NN VBG IN IN DT NNP NNP IN NNP POS , VBN NNP CD IN NNP , NNP . Two preliminary studies show progress with use of an antihistamine and a nasal spray . CD JJ NNS VBP NN IN NN IN DT NN CC DT JJ NN . But researchers say lifestyle factors and heredity also play a crucial role in determining whether you develop Alzheimer 's . CC NNS VBP JJ NNS CC NN RB VB DT JJ NN IN VBG IN PRP VBP NNP POS . VOA 's Melinda Smith has more . NNP POS NNP NNP VBZ RBR . Tropical Storm Katrina has strengthened over the central Bahamas and is moving toward Florida , where it is expected to hit later this week . JJ NN NNP VBZ VBN IN DT JJ NNPS CC VBZ VBG IN NNP , WRB PRP VBZ VBN TO VB RB DT NN . The U.S. National Hurricane Center reports a tropical storm warning remains in effect for the central and northern Bahamas . DT NNP NNP NNP NNP VBZ DT JJ NN NN VBZ IN NN IN DT JJ CC JJ NNPS . It says Katrina is expected to bring heavy rains and batter the shore with large and dangerous waves . PRP VBZ NNP VBZ VBN TO VB JJ NNS CC VB DT NN IN JJ CC JJ NNS . The weather service also issued a tropical storm warning and a hurricane watch for the southeast Florida coast from Vero Beach southward to Florida City . DT NN NN RB VBD DT JJ NN NN CC DT NN NN IN DT NN NNP NN IN NNP NNP VBD TO NNP NNP . On Tuesday , tropical storm Jose dumped heavy rains on the Gulf of Mexico . IN NNP , JJ NN NNP VBD JJ NNS IN DT NNP IN NNP . Olympic officials in China have announced that more than half the available domestic tickets for the 2008 Beijing Games have been sold in the month since they went on sale in April . NNP NNS IN NNP VBP VBN IN JJR IN PDT DT JJ JJ NNS IN DT CD NNP NNPS VBP VBN VBN IN DT NN IN PRP VBD IN NN IN NNP . China made 2.2 million tickets available a month ago and 2,30,000 fans have bought almost 1.1 million of them . NNP VBD CD CD NNS JJ DT NN RB CC CD NNS VBP VBN RB CD CD IN PRP . Olympic Ticketing Center head Rong Jun said Tuesday that tickets to the opening ceremony , basketball and diving competitions have been the best sellers . NNP NNP NNP NN NNP NNP VBD NNP IN NNS TO DT NN NN , NN CC VBG NNS VBP VBN DT JJS NNS . Fans can purchase tickets to the opening and closing ceremonies as well as all 28 sports during the first phase , which ends June 30 . NNS MD VB NNS TO DT NN CC NN NNS RB RB IN DT CD NNS IN DT JJ NN , WDT VBZ NNP CD . Tickets will be assigned between July and August , with a random selection process utilized for oversold events . NNS MD VB VBN IN NNP CC NNP , IN DT JJ NN NN VBN IN JJ NNS . The second leg of domestic sales will run from October through December . DT JJ NN IN JJ NNS MD VB IN NNP IN NNP . Olympic committees of individual countries and territories are conducting overseas sales . NNP NNS IN JJ NNS CC NNS VBP VBG JJ NNS . Indonesia 's Health Ministry says a woman from Bali has died of bird flu - the second confirmed death from the virus on the Indonesian resort island . NNP POS NNP NNP VBZ DT NN IN NNP VBZ VBN IN NN NN IN DT NN VBD NN IN DT NN IN DT JJ NN NN . Authorities say the woman died Tuesday and had been in contact with poultry before becoming ill . NNS VBP DT NN VBD NNP CC VBD VBN IN NN IN NN IN VBG JJ . If confirmed by the World Health Organization it would bring to 84 the number of people in Indonesia who have died from the disease . IN VBN IN DT NNP NNP NNP PRP MD VB TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NN . Nearly 200 people worldwide , mostly in Asia , have died from bird flu since 2003 . RB CD NNS JJ , RB IN NNP , VBP VBN IN NN NN IN CD . The dangerous H5N1 strain of the virus is mainly transmitted by contact with infected animals , but experts fear it could mutate into a form that is easily passed between people . DT JJ NNP NN IN DT NN VBZ RB VBN IN NN IN JJ NNS , CC NNS VBP PRP MD VB IN DT NN WDT VBZ RB VBN IN NNS . The death toll from a bus accident Thursday afternoon in Indian Kashmir has risen to at least 42 , with an equal number of people injured . DT NN NN IN DT NN NN NNP NN IN NNP NNP VBZ VBN TO IN JJS CD , IN DT JJ NN IN NNS VBN . Local officials say the bus was carrying pilgrims to a holy site when it skidded off a mountain road some 165 kilometers north of Jammu and plunged into a deep ravine . JJ NNS VBP DT NN VBD VBG NNS TO DT JJ NN WRB PRP VBD RP DT NN NN DT CD NNS RB IN NNP CC VBD IN DT JJ NN . Meanwhile , violence in the disputed region continues . RB , NN IN DT JJ NN VBZ . The Indian army says government troops raided a militant hide-out near the Line of Control that divides Kashmir between India and Pakistan , killing four suspected Muslim separatists . DT JJ NN VBZ NN NNS VBD DT JJ NN IN DT NN IN NNP WDT VBZ NNP IN NNP CC NNP , VBG CD JJ NNP NNS . Hours later , suspected rebels lobbed a grenade in Srinagar , wounding at least 15 people including children . NNS RB , JJ NNS VBD DT NN IN NNP , VBG IN JJS CD NNS VBG NNS . Muslim separatists in Indian Kashmir are fighting for an independent Kashmir or its merger with neighboring Pakistan . NNP NNS IN JJ NNP VBP VBG IN DT JJ NNP CC PRP$ NN IN JJ NNP . The U.S. military says a helicopter has crashed in northern Iraq , killing all 12 Americans believed to be on board . DT NNP NN VBZ DT NN VBZ VBN IN JJ NNP , VBG DT CD NNS VBN TO VB IN NN . Military officials say they are investigating the crash of the Blackhawk in a sparsely populated area near the border with Syria on Sunday . JJ NNS VBP PRP VBP VBG DT NN IN DT NNP IN DT RB JJ NN IN DT NN IN NNP IN NNP . They said military personnel discovered the crash site 12 hours after losing communication with the helicopter . PRP VBD JJ NNS VBD DT NN NN CD NNS IN VBG NN IN DT NN . Elsewhere , U.S. officials said gunmen killed three Marines in separate incidents in Fallujah . RB , NNP NNS VBD NNS VBD CD NNS IN JJ NNS IN NNP . Members of the Sunni Association of Muslim Scholars criticized U.S. forces over a raid on a mosque in the Iraqi capital . NNS IN DT NNP NNP IN NNP NNP VBD NNP NNS IN DT NN IN DT NN IN DT JJ NN . U.S. officials said six people were detained in what they called an anti-terrorist operation . NNP NNS VBD CD NNS VBD VBN IN WP PRP VBD DT JJ NN . And a French engineer , Bernard Planche , has been freed nearly a month after being seized by insurgents . CC DT JJ NN , NNP NNP , VBZ VBN VBN RB DT NN IN VBG VBN IN NNS . On the political front , Iraqi President Jalal Talabani says leaders of the country 's political parties have agreed in principle to form a national unity government . IN DT JJ NN , JJ NNP NNP NNP VBZ NNS IN DT NN POS JJ NNS VBP VBN IN NN TO VB DT JJ NN NN . Thousands of opposition supporters marched in the Democratic Republic of Congo Wednesday to demand that voter registration be reopened . NNS IN NN NNS VBD IN DT JJ NNP IN NNP NNP TO VB DT NN NN VB VBN . Opposition party leader Etienne Tshisekedi asked supporters to join the rally and press for electoral concessions . NNP NN NN NNP NNP VBD NNS TO VB DT NN CC NN IN JJ NNS . The march to U.N. peacekeeping headquarters in Kinshasa coincided with a visit to the DRC by United Nations Secretary-General Kofi Annan . DT NN TO NNP VBG NN IN NNP VBD IN DT NN TO DT NNP IN NNP NNP NNP NNP NNP . Speaking Tuesday in Kinshasa , Mr. Annan said the June elections must be run by the rules , but also must be inclusive . VBG NNP IN NNP , NNP NNP VBD DT NNP NNS MD VB VBN IN DT NNS , CC RB MD VB JJ . The vote in June will be Congo 's first democratic elections in more than 40 years . DT NN IN NNP MD VB NNP POS JJ JJ NNS IN JJR IN CD NNS . Earlier this month , riot police used batons and tear gas to disperse opposition members during a similar political rally . RBR DT NN , NN NNS VBD NNS CC JJ NN TO VB NN NNS IN DT JJ JJ NN . Authorities in Iraq say a suicide attacker blew himself up among a group Iraqi army recruits in Baghdad Wednesday , killing at least 10 people and wounding several others . NNS IN NNP VBP DT NN NN VBD PRP RP IN DT NN JJ NN NNS IN NNP NNP , VBG IN JJS CD NNS CC VBG JJ NNS . Police say the bomber mingled with a crowd of men standing outside a recruiting center before detonating his explosives belt . NNS VBP DT NN VBN IN DT NN IN NNS VBG IN DT NN NN IN VBG PRP$ NNS NN . Insurgents have targeted the same recruiting center several times in the past . NNS VBP VBN DT JJ NN NN JJ NNS IN DT NN . In another development , a number of Sunni Muslims on the committee drafting Iraq 's new constitution suspended their membership - a day after two of their colleagues were assassinated in Baghdad . IN DT NN , DT NN IN NNP NNPS IN DT NN VBG NNP POS JJ NN VBD PRP$ NN IN DT NN IN CD IN PRP$ NNS VBD VBN IN NNP . Hours before Tuesday 's assassinations , Iraqi President Jalal Talabani said he hoped the draft constitution could be ready ahead of the August 15 deadline , if Sunni concerns could be quickly addressed . NNS IN NNP POS NNS , JJ NNP NNP NNP VBD PRP VBD DT NN NN MD VB JJ RB IN DT NNP CD NN , IN NNP NNS MD VB RB VBN . Mexico 's state-run Pemex oil monopoly says six explosions believed to be sabotage have damaged oil and natural gas pipelines in Veracruz state . NNP POS JJ NNP NN NN VBZ CD NNS VBN TO VB NN VBP VBN NN CC JJ NN NNS IN NNP NN . Officials say at least 21,000 people living near the explosions were evacuated , but there have been no confirmed casualties from the incident . NNS VBP IN JJS CD NNS VBG IN DT NNS VBD VBN , CC EX VBP VBN DT VBD NNS IN DT NN . The Associated Press reports that a secretive leftist rebel group named the People 's Revolutionary Army has claimed responsibility for the blasts . DT NNP NNP VBZ IN DT JJ JJ NN NN VBD DT NNS POS NNP NNP VBZ VBN NN IN DT NNS . The group took credit for similar Pemex pipeline attacks a few months ago . DT NN VBD NN IN JJ NNP NN VBZ DT JJ NNS RB . Also Monday , a truck loaded with chemical fertilizer exploded following a vehicle accident , creating a massive fireball that killed at least 29 people and wounded 150 others . RB NNP , DT NN VBN IN NN NN VBD VBG DT NN NN , VBG DT JJ NN WDT VBD IN JJS CD NNS CC VBD CD NNS . News reports say the truck collided with another vehicle in the mining state of Coahuila . NNP NNS VBP DT NN VBD IN DT NN IN DT NN NN IN NNP . As onlookers gathered around the crash , the vehicle exploded , killing rescue workers and bystanders . IN NNS VBD IN DT NN , DT NN VBD , VBG NN NNS CC NNS . Pakistan 's military says one soldier and seven militants were killed during a gun battle in the northwestern Swat Valley . NNP POS NN VBZ CD NN CC CD NNS VBD VBN IN DT NN NN IN DT JJ NNP NNP . An army statement Wednesday said forces were conducting a search operation in Charai when the clash broke out . DT NN NN NNP VBD NNS VBD VBG DT NN NN IN NNP WRB DT NN VBD RP . Two soldiers also were wounded . CD NNS RB VBD VBN . The army says it has captured at least 23 suspected militants in the area . DT NN VBZ PRP VBZ VBN IN JJS CD JJ NNS IN DT NN . Pakistan 's government launched an offensive in late April aimed at clearing militants from the greater Swat valley region . NNP POS NN VBD DT NN IN JJ NNP VBN IN VBG NNS IN DT JJR NN NN NN . The military says it has driven most of the Taliban from the valley , but sporadic fighting persists . DT NN VBZ PRP VBZ VBN JJS IN DT NNP IN DT NN , CC JJ NN NNS . President Bush is again calling on the U.S. Senate to give him authority to remove certain items from bills before signing them into law . NNP NNP VBZ RB VBG IN DT NNP NNP TO VB PRP NN TO VB JJ NNS IN NNS IN VBG PRP IN NN . Mr. Bush raised the issue Tuesday in a speech in Washington . NNP NNP VBD DT NN NNP IN DT NN IN NNP . It is called the line-item veto . PRP VBZ VBN DT JJ NN . He also talked about it Saturday in his weekly radio address . PRP RB VBD IN PRP NNP IN PRP$ JJ NN NN . The President said the move would help him get rid of wasteful spending measures tacked onto important legislation . DT NNP VBD DT NN MD VB PRP VB JJ IN JJ NN NNS VBN IN JJ NN . He said those last-minute additions , known as earmarks , have grown more common in recent years . PRP VBD DT JJ NNS , VBN IN NNS , VBP VBN RBR JJ IN JJ NNS . President Clinton briefly had line-item veto authority before the Supreme Court struck it down as unconstitutional in 1998 . NNP NNP RB VBD JJ NN NN IN DT NNP NNP VBD PRP RP IN JJ IN CD . The Court said it gave the president too much power . DT NNP VBD PRP VBD DT NN RB JJ NN . House lawmakers on Thursday voted to grant President Bush a modified line-item veto that would allow Congress to approve or reject his changes before they become law . NNP NNS IN NNP VBD TO VB NNP NNP DT VBN JJ NN WDT MD VB NNP TO VB CC VB PRP$ NNS IN PRP VBP NN . Taiwan President Chen Shui-bian has assured the United States that he will not push for independence from mainland China during the rest of his term . NNP NNP NNP NNP VBZ VBN DT NNP NNPS IN PRP MD RB VB IN NN IN JJ NNP IN DT NN IN PRP$ NN . Mr. Chen met with the new U.S. envoy to Taiwan , Stephen Young , Tuesday . NNP NNP VBD IN DT JJ NNP NN TO NNP , NNP NNP , NNP . He said there will be ' no more surprises . ' PRP VBD EX MD VB `` DT JJR NNS . `` Mr. Chen was referring to his decision last month to scrap a government body dedicated to unification with mainland China . NNP NNP VBD VBG TO PRP$ NN JJ NN TO VB DT NN NN VBN TO NN IN JJ NNP . The U.S. requested clarification on the issue . DT NNP VBD NN IN DT NN . China , meanwhile , reacted angrily to Taiwan , warning that the decision could bring disaster to the island . NNP , RB , VBD RB TO NNP , VBG IN DT NN MD VB NN TO DT NN . Mr. Chen says he will maintain the status quo with China , and that Taiwan 's government will continue to serve as a responsible contributor to maintaining peace across the Taiwan Strait . NNP NNP VBZ PRP MD VB DT NN NN IN NNP , CC IN NNP POS NN MD VB TO VB IN DT JJ NN TO VBG NN IN DT NNP NNP . China and Taiwan split in 1949 after a civil war , but Beijing considers Taiwan a renegade province . NNP CC NNP NN IN CD IN DT JJ NN , CC NNP VBZ NNP DT NN NN . Iran says it is ready , under certain circumstances , to help the United States withdraw its troops from Iraq . NNP VBZ PRP VBZ JJ , IN JJ NNS , TO VB DT NNP NNPS VB PRP$ NNS IN NNP . Iran Foreign Minister Manouchehr Mottaki made the comment Saturday in Manama , Bahrain at a conference of the International Institute of Strategic Studies . NNP NNP NNP NNP NNP VBD DT NN NNP IN NNP , NNP IN DT NN IN DT NNP NNP IN NNP NNP . Mottaki said Tehran would be willing to help with any troop withdrawal if Washington decides on such action , and changes its attitude . NNP VBD NNP MD VB JJ TO VB IN DT NN NN IN NNP VBZ IN JJ NN , CC VBZ PRP$ NN . He did not say what help Iran would offer . PRP VBD RB VB WP NN NNP MD VB . Opening a dialog with Iran and its regional ally Syria was one of the key recommendations of a bipartisan panel of former Washington policy makers reviewing U.S. policy in Iraq . VBG DT NN IN NNP CC PRP$ JJ NN NNP VBD CD IN DT JJ NNS IN DT JJ NN IN JJ NNP NN NNS VBG NNP NN IN NNP . President Bush said Thursday Iran and Syria must stop helping extremists and commit to help Iraq 's fledgling government before any talks . NNP NNP VBD NNP NNP CC NNP MD VB VBG NNS CC VB TO VB NNP POS JJ NN IN DT NNS . Namibian authorities have ordered two Americans deported for recruiting Namibians for security jobs in Iraq and Afghanistan . JJ NNS VBP VBN CD NNS VBD IN NN NNS IN NN NNS IN NNP CC NNP . The Namibian Security Council ordered the immediate closure of their company , called Special Operations Consulting-Security Management Group . DT JJ NNP NNP VBD DT JJ NN IN PRP$ NN , VBD NNP NNP NNP NNP NNP . Namibian officials declared the company 's representatives , Paul Grimes and Frederic Piry , as ' prohibited immigrants . ' JJ NNS VBD DT NN POS NNS , NNP NNP CC NNP NNP , IN `` VBN NNS . `` Grimes told local media earlier this week that the U.S.-based company had Namibian government approval to recruit within the country . NNP VBD JJ NNS RBR DT NN IN DT JJ NN VBD JJ NN NN TO VB IN DT NN . He said they were trying to recruit at least three thousand Namibians for security jobs abroad . PRP VBD PRP VBD VBG TO VB IN JJS CD CD NNS IN NN NNS RB . Namibian law prohibits its citizens from taking part in military or security operations in other countries , without written approval from the Namibian government . JJ NN VBZ PRP$ NNS IN VBG NN IN JJ CC NN NNS IN JJ NNS , IN VBN NN IN DT JJ NN . The Vatican says Pope Benedict XVI is deeply saddened about the situation in the U.S. Gulf Coast and is praying for the victims of Hurricane Katrina . DT NNP VBZ NNP NNP NNP VBZ RB VBN IN DT NN IN DT NNP NNP NNP CC VBZ VBG IN DT NNS IN NNP NNP . In a telegram , Vatican Secretary of State Cardinal Angelo Sodano said the pontiff is praying for all those affected by the tragedy . IN DT NN , NNP NNP IN NNP NNP NNP NNP VBD DT NN VBZ VBG IN PDT DT VBN IN DT NN . The telegram says Pope Benedict is also praying for the rescue workers and those helping the victims , and encouraging them to continue their efforts to bring relief and support . DT NN VBZ NNP NNP VBZ RB VBG IN DT NN NNS CC DT VBG DT NNS , CC VBG PRP TO VB PRP$ NNS TO VB NN CC NN . Japan has called for the United States to fully investigate why a recent shipment of American beef contained prohibited spinal material that could cause ' mad-cow ' disease . NNP VBZ VBN IN DT NNP NNPS TO RB VB WRB DT JJ NN IN JJ NN VBD VBN JJ NN WDT MD VB `` NN `` NN . Japanese Cabinet Secretary Shinzo Abe says no American beef will be allowed into Japan until the U.S. takes action to prevent a repeat of the incident . JJ NNP NNP NNP NNP VBZ DT JJ NN MD VB VBN IN NNP IN DT NNP VBZ NN TO VB DT NN IN DT NN . Abe says Tokyo will ask meat sellers to inspect all U.S. beef shipments already in Japan to see if they contain potentially dangerous cattle parts . NNP VBZ NNP MD VB NN NNS TO VB DT NNP NN NNS RB IN NNP TO VB IN PRP VBP RB JJ NNS NNS . U.S. Deputy Secretary of State Robert Zoellick apologized for the incident in talks with Japanese officials in Tokyo Monday . NNP NNP NNP IN NNP NNP NNP VBD IN DT NN IN NNS IN JJ NNS IN NNP NNP . He said the company that shipped the suspicious meat will be barred from further exports . PRP VBD DT NN WDT VBD DT JJ NN MD VB VBN IN JJ NNS . Japan resumed U.S. beef imports last month following a two-year halt , but reimposed the ban Friday after inspectors found spinal material in a shipment of veal . NNP VBD NNP NN NNS JJ NN VBG DT JJ NN , CC VBD DT NN NNP IN NNS VBD JJ NN IN DT NN IN NN . China and Russia will hold their first joint military exercises later this month . NNP CC NNP MD VB PRP$ JJ JJ JJ NNS RB DT NN . The Chinese Defense Ministry says the exercises , which have been dubbed ' Peace Mission 2005 , ' will take place August 18 through the August 25 in the Russian city of Vladivostok and on China 's coastal province of Shandong . DT JJ NNP NNP VBZ DT NNS , WDT VBP VBN VBN `` NNP NNP CD , `` MD VB NN NNP CD IN DT NNP CD IN DT JJ NN IN NNP CC IN NNP POS JJ NN IN NNP . More than 10,000 troops from both nations armies , navies , marines and air forces will be involved . JJR IN CD NNS IN DT NNS NNS , NNS , NNS CC NN NNS MD VB VBN . The ministry says the goal of the exercises is to ' deepen Sino-Russian trust ' and improve their capability to fight international terrorism . DT NN VBZ DT NN IN DT NNS VBZ TO `` VB JJ NN `` CC VB PRP$ NN TO VB JJ NN . The exercises are a symbol of the improving ties between the once-bitter Cold War rivals , who are dealing with Muslim separatists in their respective countries . DT NNS VBP DT NN IN DT VBG NNS IN DT JJ NNP NNP NNS , WP VBP VBG IN NNP NNS IN PRP$ JJ NNS . A suicide bomber driving a tractor near Iraq 's Abu Ghraib prison has blown himself up in the second attack on the facility in the past two days . DT NN NN VBG DT NN IN NNP POS NNP NNP NN VBZ VBN PRP RP IN DT JJ NN IN DT NN IN DT JJ CD NNS . Police say at least four civilians were hurt in Monday 's blast . NNS VBP IN JJS CD NNS VBD VBN IN NNP POS NN . The U.S. military says Saturday 's assault on the prison involved multiple , simultaneous attacks . DT NNP NN VBZ NNP POS NN IN DT NN VBN JJ , JJ NNS . It estimates the assailants suffered 50 casualties , and says 23 U.S. troops and 13 detainees were wounded . PRP VBZ DT NNS VBD CD NNS , CC VBZ CD NNP NNS CC CD NNS VBD VBN . Meanwhile , Iraqi Shi'ite and Kurdish negotiators seeking agreement on the makeup of a new government are meeting today , before parliament 's next session Wednesday . RB , JJ NNP CC NNP NNS VBG NN IN DT NN IN DT JJ NN VBP VBG NN , IN NN POS JJ NN NNP . Lawmakers say they hope to select a new president , two vice presidents and a prime minister when the session convenes . NNS VBP PRP VBP TO VB DT JJ NN , CD NN NNS CC DT JJ NN WRB DT NN VBZ . Sunday , lawmakers elected a Sunni Arab cabinet minister , Hajim al-Hassani , to head the new assembly . NNP , NNS VBD DT NNP JJ NN NN , NNP NNP , TO VB DT JJ NN . The U.S. Defense Department says it will comply with a federal judge 's order to release the identities of hundreds of terror suspects being held at the U.S. naval base in Guantanamo Bay , Cuba . DT NNP NNP NNP VBZ PRP MD VB IN DT JJ NN POS NN TO VB DT NNS IN NNS IN NN NNS VBG VBN IN DT NNP JJ NN IN NNP NNP , NNP . A Pentagon spokesman says the military is working with the U.S. Justice Department to release uncensored transcripts of military tribunal hearings at Guantanamo by a court-ordered deadline of March 3 . DT NNP NN VBZ DT NN VBZ VBG IN DT NNP NNP NNP TO VB JJ NNS IN JJ JJ NNS IN NNP IN DT JJ NN IN NNP CD . The judge 's order last month was part of a ruling issued in favor of the Associated Press , which filed a lawsuit to obtain the transcripts to determine whether detainees had been properly classified as enemy combatants . DT NN POS NN JJ NN VBD NN IN DT NN VBN IN NN IN DT NNP NNP , WDT VBD DT NN TO VB DT NNS TO VB IN NNS VBD VBN RB VBN IN NN NNS . The military released hundreds of transcripts last year , but blacked out the names and nationalities of detainees . DT JJ VBN NNS IN NNS JJ NN , CC VBD RP DT NNS CC NNS IN NNS . The Pentagon is strongly opposed to releasing the identities , but has ultimately decided not to appeal the order . DT NNP VBZ RB VBN TO VBG DT NNS , CC VBZ RB VBN RB TO VB DT NN . The United States has warned of possible terrorist attacks against its interests in the Middle East and North Africa , and has cautioned American citizens to be vigilant about their security in those areas . DT NNP NNP VBZ VBN IN JJ JJ NNS IN PRP$ NNS IN DT NNP NNP CC NNP NNP , CC VBZ VBN JJ NNS TO VB JJ IN PRP$ NN IN DT NNS . In a statement posted Saturday on the U.S. Embassy in Kuwait 's website , the State Department says potential attacks could include bombings , hijackings , hostage taking , kidnappings and assassinations . IN DT NN VBD NNP IN DT NNP NNP IN NNP POS NN , DT NNP NNP VBZ JJ NNS MD VB NNS , NNS , NN NN , NNS CC NNS . It also warned that chemical and biological agents must be considered a possible threat . PRP RB VBD IN NN CC JJ NNS MD VB VBN DT JJ NN . The State Department singled out Westerners , oil workers and U.S. contractors working with the military as potential targets . DT NNP NNP VBD RP NNS , NN NNS CC NNP NNS VBG IN DT JJ IN JJ NNS . The statement pointed to last month 's bombings of three Jordanian hotels as underscoring the desire of terrorists to target places perceived to cater to Westerners . DT NN VBD TO JJ NN POS NNS IN CD JJ NNS IN VBG DT NN IN NNS TO VB NNS VBN TO VB TO NNS . A Palestinian official says Israeli settlers stoned cars and set fire to Palestinian-owned olive trees in the West Bank Monday . DT JJ NN VBZ JJ NNS VBD NNS CC VBD NN TO JJ JJ NNS IN DT NNP NNP NNP . Official Ghassan Daglas said two Palestinians were lightly injured as the rampaging settlers torched fields and hurled rocks in the northern city of Nablus . NNP NNP NNP VBD CD NNS VBD RB VBN IN DT VBG NNS VBD NNS CC VBD NNS IN DT JJ NN IN NNP . He said some of the settlers were on horseback , leaving fires blazing in their wake . PRP VBD DT IN DT NNS VBD IN NN , VBG NNS VBG IN PRP$ NN . Reports of the crowd size vary , with between 10 and 30 settlers taking part in the unrest . NNS IN DT NN NN VBP , IN IN CD CC CD NNS VBG NN IN DT NN . An Israeli border guard spokesman said one settler was arrested . DT JJ NN NN NN VBD CD NN VBD VBN . The settlers were apparently retaliating because the army removed a settler 's caravan from an unauthorized settlement outpost in the area earlier in the day . DT NNS VBD RB VBG IN DT NN VBD DT NN POS NN IN DT JJ NN NN IN DT NN RBR IN DT NN . Al-Qaida loyalists in Iraq say they kidnapped Algeria 's top diplomat in Baghdad . NNP NNS IN NNP VBP PRP VBD NNP POS JJ NN IN NNP . In a statement posted Saturday on an Islamist Internet site , the group al-Qaida in Iraq said it targeted the chief of the Algerian mission in Baghdad as part of a campaign to drive out diplomats from other Muslim nations . IN DT NN VBD NNP IN DT NN NN NN , DT NN NNP IN NNP VBD PRP VBD DT NN IN DT JJ NN IN NNP IN NN IN DT NN TO VB RP NNS IN JJ NNP NNS . Al-Qaida in Iraq , which is headed by the country 's notorious fugitive Abu Musab al-Zarqawi , compared the Algerian envoy 's abduction this week to the kidnapping and murder earlier this month of Egypt 's ambassador to Iraq . NNP IN NNP , WDT VBZ VBN IN DT NN POS JJ JJ NNP NNP NNP , VBN DT JJ NN POS NN DT NN TO DT NN CC NN RBR DT NN IN NNP POS NN TO NNP . The Algerian mission chief , Ali Belaroussi , and another member of Algeria 's diplomatic staff in Iraq were snatched by gunmen on Thursday . DT JJ NN NN , NNP NNP , CC DT NN IN NNP POS JJ NN IN NNP VBD VBN IN NNS IN NNP . Saturday 's statement did not mention the second man . NNP POS NN VBD RB VB DT JJ NN . Attacks by insurgents in Iraq have driven many diplomats from Baghdad , undermining the U.S.-backed government 's efforts to gain support among Arab countries . NNS IN NNS IN NNP VBP VBN JJ NNS IN NNP , VBG DT JJ NN POS NNS TO VB NN IN JJ NNS . The foreign minister of the ousted Taleban regime in Afghanistan has decided to run for a seat in September 's parliamentary elections . DT JJ NN IN DT VBN NNP NN IN NNP VBZ VBN TO VB IN DT NN IN NNP POS JJ NNS . The election commission says Wakil Ahmed Muttawakil has nominated himself to run for a seat from the former Taleban stronghold of Kandahar in southern Afghanistan . DT NN NN VBZ NNP NNP NNP VBZ VBN PRP TO VB IN DT NN IN DT JJ NNP NN IN NNP IN JJ NNP . Mr. Muttawakil was considered by many as a moderate element in the ousted regime . NNP NNP VBD VBN IN JJ IN DT JJ NN IN DT VBN NN . He surrendered to U.S. troops after the fall of the Taleban in late 2001 . PRP VBD TO NNP NNS IN DT NN IN DT NNP IN JJ CD . After 18 months in custody , he was released by the U.S. military in October , 2003 . IN CD NNS IN NN , PRP VBD VBN IN DT NNP NN IN NNP , CD . Last year , Afghan President Hamid Karzai offered an olive branch to rank-and-file Taleban fighters , inviting them to join the political process . JJ NN , JJ NNP NNP NNP VBD DT JJ NN TO JJ NNP NNS , VBG PRP TO VB DT JJ NN . But he said his offer is not for those hardcore militants who are wanted for human rights violations . CC PRP VBD PRP$ NN VBZ RB IN DT JJ NNS WP VBP VBN IN JJ NNS NNS . Pope Benedict XVI has expressed understanding for a former Warsaw archbishop who resigned last month after admitting that he agreed to cooperate with Poland 's communist-era security police . NNP NNP NNP VBZ VBN NN IN DT JJ NNP NN WP VBD JJ NN IN VBG IN PRP VBD TO VB IN NNP POS JJ NN NN . In a letter to Stanislaw Wielgus published Tuesday , the pontiff said he is fully conscious of the exceptional circumstances under which Polish priests performed their duties while under Soviet domination . IN DT NN TO NNP NNP VBN NNP , DT NN VBD PRP VBZ RB JJ IN DT JJ NNS IN WDT JJ NNS VBD PRP$ NNS IN IN JJ NN . The letter contained what Benedict called a ' special apostolic blessing ' to the cleric . DT NN VBD WP NNP VBD DT `` JJ JJ NN `` TO DT NN . It also encouraged him to resume his religious duties . PRP RB VBD PRP TO VB PRP$ JJ NNS . Wielgus resigned his post on January 7 , after a church commission said it found numerous documents confirming the cleric had collaborated with communist security organizations for years . NNP VBD PRP$ NN IN NNP CD , IN DT NN NN VBD PRP VBD JJ NNS VBG DT NN VBD VBN IN JJ NN NNS IN NNS . Last week , lawyers for the former archbishop said they were moving to clear their client 's name of spy charges , claiming that he never actually collaborated . JJ NN , NNS IN DT JJ NN VBD PRP VBD VBG TO VB PRP$ NN POS NN IN NN NNS , VBG IN PRP RB RB VBN . Vatican authorities said in January there is no clear proof that Wielgus ' actions harmed anyone . NNP NNS VBD IN NNP EX VBZ DT JJ NN IN NNP POS NNS VBD DT . At least two cars driven by suicide bombers exploded Monday at the entrance to a U.S. military camp in western Iraq . IN JJS CD NNS VBN IN NN NNS VBD NNP IN DT NN TO DT NNP JJ NN IN JJ NNP . Early reports from the camp near Qaim say at least two U.S. personnel were wounded in the attack . RB NNS IN DT NN IN NNP VBP IN JJS CD NNP NNS VBD VBN IN DT NN . A military spokesman in Baghdad said officials were still gathering details early this afternoon . DT JJ NN IN NNP VBD NNS VBD RB VBG NNS RB DT NN . Meanwhile , Iraqi security forces backed by U.S. troops rounded up dozens of suspected insurgents during raids today in central Baghdad . RB , JJ NN NNS VBN IN NNP NNS VBD RP NNS IN JJ NNS IN NNS NN IN JJ NNP . A U.S. military statement says more than 500 Iraqi soldiers and police took part in the operation . DT NNP JJ NN VBZ JJR IN CD JJ NNS CC NNS VBD NN IN DT NN . In other developments , Pakistan says kidnappers are seeking ransom for the release of an embassy employee abducted Saturday in Baghdad . IN JJ NNS , NNP VBZ NNS VBP VBG NN IN DT NN IN DT JJ NN VBN NNP IN NNP . A Pakistani Foreign Ministry spokesman declined to disclose details , but he said the victim , Malik Mohammed Javed , is unharmed and in contact with embassy officials . DT JJ NNP NNP NN VBD TO VB NNS , CC PRP VBD DT NN , NNP NNP NNP , VBZ JJ CC IN NN IN JJ NNS . Venezuela 's Information Minister Andres Izarra has resigned to run a new satellite television channel backed by President Hugo Chavez . NNP POS NNP NNP NNP NNP VBZ VBN TO VB DT JJ NN NN NN VBN IN NNP NNP NNP . Mr. Izarra said Wednesday he was stepping down to ensure the ' independence ' of the Telesur channel , which began limited broadcasts this week . NNP NNP VBD NNP PRP VBD VBG RP TO VB DT `` NN `` IN DT NNP NN , WDT VBD JJ NNS DT NN . President Chavez and the governments of Argentina , Cuba and Uruguay have supported the new channel , saying it is needed to focus on news and issues in Latin America . NNP NNP CC DT NNS IN NNP , NNP CC NNP VBP VBN DT JJ NN , VBG PRP VBZ VBN TO VB IN NN CC NNS IN NNP NNP . Critics have expressed concern that Telesur may be a mouthpiece for propaganda by Mr. Chavez and Cuban President Fidel Castro . NNS VBP VBN NN IN NNP MD VB DT NN IN NN IN NNP NNP CC JJ NNP NNP NNP . Last week , the U.S. House of Representatives passed a measure calling for television and radio broadcasts to Venezuela to counter alleged ' anti-American ' rhetoric on the channel . JJ NN , DT NNP NNP IN NNPS VBD DT NN VBG IN NN CC NN NNS TO NNP TO VB VBN `` JJ `` NN IN DT NN . The Senate has yet to approve the bill . DT NNP VBZ RB TO VB DT NN . Police were also among the more than 11 people wounded in Wednesday 's blast , which happened in Quetta , the provincial capital . NNS VBD RB IN DT JJR IN CD NNS VBN IN NNP POS NN , WDT VBD IN NNP , DT JJ NN . Baluchistan has long been the site of a low-level insurgency seeking more autonomy for the province and a greater share of money from its natural resources . NNP VBZ RB VBN DT NN IN DT JJ NN VBG JJR NN IN DT NN CC DT JJR NN IN NN IN PRP$ JJ NNS . In recent weeks , the region has also seen several attacks on trucks carrying supplies to NATO troops in Afghanistan . IN JJ NNS , DT NN VBZ RB VBN JJ NNS IN NNS VBG NNS TO NNP NNS IN NNP . The U.S. military says four car bombings in the Iraqi capital Wednesday , killed at least 26 people and wounded more than 20 others . DT NNP NN VBZ CD NN NNS IN DT JJ NN NNP , VBD IN JJS CD NNS CC VBD JJR IN CD NNS . A statement said the bombings occurred within a span of 90 minutes and that security forces prevented the suicide bombers from reaching their intended targets . DT NN VBD DT NNS VBD IN DT NN IN CD NNS CC IN NN NNS VBD DT NN NNS IN VBG PRP$ JJ NNS . Two Iraqis were killed and two Australian solders wounded in the first blast near the Australian embassy . CD NNS VBD VBN CC CD JJ NNS VBN IN DT JJ NN IN DT JJ NN . Shortly afterwards , a car bomb exploded near a central Baghdad hospital , killing at least 18 people , including five Iraqi policemen . RB RB , DT NN NN VBD IN DT JJ NNP NN , VBG IN JJS CD NNS , VBG CD JJ NNS . Two other car bombings killed Iraqi soldiers , security guards and civilians . CD JJ NN NNS VBD JJ NNS , NN NNS CC NNS . Iraq said Tuesday it will close its borders and ban non-governmental vehicles from the roads to boost security for the country 's January 30 election . NNP VBD NNP PRP MD VB PRP$ NNS CC NN JJ NNS IN DT NNS TO VB NN IN DT NN POS NNP CD NN . The movie The Da Vinci Code will be released in Indian theaters on Friday after its distributors agreed to attach a disclaimer saying the film is a work of fiction . DT NN DT NNP NNP NNP MD VB VBN IN JJ NNS IN NNP IN PRP$ NNS VBD TO VB DT NN VBG DT NN VBZ DT NN IN NN . The film is opening in India a week later than originally planned because the distributors and India 's censorship board could not agree on the wording and placement of the disclaimer . DT NN VBZ VBG IN NNP DT NN RB IN RB VBN IN DT NNS CC NNP POS NN NN MD RB VB IN DT NN CC NN IN DT NN . Indian Christians had protested the film . JJ NNPS VBD VBN DT NN . The film board ruled that only adults could watch the film and that it must have a 15-second disclaimer at both the beginning and end of the movie . DT NN NN VBD IN JJ NNS MD VB DT NN CC IN PRP MD VB DT JJ NN IN DT DT NN CC NN IN DT NN . Both the book and the movie version of The Da Vinci Code have been controversial because of their assertion that Jesus married and had children and the Vatican tried to suppress that information . DT DT NN CC DT NN NN IN DT NNP NNP NNP VBP VBN JJ IN IN PRP$ NN WDT VBZ JJ CC VBD NNS CC DT NNP VBD TO VB DT NN . Christians view that as blasphemous . NNS VBP DT IN JJ . Spanish Prime Minister Jose Luis Rodriguez Zapatero has wrapped up a visit to Venezuela by signing a series of defense and energy deals with the Andean nation . JJ NNP NNP NNP NNP NNP NNP VBZ VBN RP DT NN TO NNP IN VBG DT NN IN NN CC NN NNS IN DT JJ NN . Prime Minister Zapatero and Venezuelan President Hugo Chavez Wednesday signed the agreements , which include sales of Spanish military transport planes and coastal patrol vessels to Venezuela . NNP NNP NNP CC JJ NNP NNP NNP NNP VBD DT NNS , WDT VBP NNS IN JJ JJ NN NNS CC JJ NN NNS TO NNP . Both President Chavez and Prime Minister Zapatero said the defense equipment will be used for peaceful purposes . DT NNP NNP CC NNP NNP NNP VBD DT NN NN MD VB VBN IN JJ NNS . Mr. Chavez said Venezuela would use the aircraft and vessels to patrol land and sea borders to prevent drug trafficking . NNP NNP VBD NNP MD VB DT NN CC NNS TO VB NN CC NN NNS TO VB NN NN . The two leaders also signed an accord that calls for Spain 's Repsol oil company to invest in Venezuela . DT CD NNS RB VBD DT NN WDT VBZ IN NNP POS NNP NN NN TO VB IN NNP . Another deal calls for Spain to build three ships , including an oil tanker , for Venezuela . DT NN VBZ IN NNP TO VB CD NNS , VBG DT NN NN , IN NNP . The Los Angeles Police Department earlier this year investigated possible threats against Britney Spears ' ex-husband Kevin Federline . DT NNP NNP NNP NNP RBR DT NN VBD JJ NNS IN NNP NNPS POS NN NNP NNP . On Monday , LAPD spokeswoman Norma Eisenman said the department probed allegations in June , but later determined there was not enough information to keep the investigation active . IN NNP , NNP NN NNP NNP VBD DT NN VBD NNS IN NNP , CC RB VBD EX VBD RB JJ NN TO VB DT NN JJ . The FBI 's Los Angeles field office received ' nonspecific , uncorroborated allegations regarding a threat against Mr. Federline , ' according to FBI spokeswoman Laura Eimiller . DT NNP POS NNP NNP NN NN VBD `` JJ , JJ NNS VBG DT NN IN NNP NNP , `` VBG TO NNP NN NNP NNP . She said the bureau passed the information to the LAPD because it was not a federal matter . PRP VBD DT NN VBD DT NN TO DT NNP IN PRP VBD RB DT JJ NN . Eimiller declined to say whether the FBI received the information and would not describe the threat . NNP VBD TO VB IN DT NNP VBD DT NN CC MD RB VB DT NN . Kevin Federline was married to Britney Spears from 2004 to 2006 . NNP NNP VBD VBN TO NNP NNPS IN CD TO CD . He is currently seeking primary custody of their sons , two-year-old Sean Preston and one-year-old Jayden James . PRP VBZ RB VBG JJ NN IN PRP$ NNS , JJ NNP NNP CC JJ NNP NNP . The men 's downhill highlights action at the 2006 Olympics Sunday with American Bode Miller hoping to add a gold medal to his trophy case . DT NNS POS NN VBZ NN IN DT CD NNPS NNP IN NNP NNP NNP VBG TO VB DT NN NN TO PRP$ NN NN . Miller will have to beat countryman Daron Rahlves and the strong Austrian Alpine team , including double Olympic champion Hermann Maier , World Cup downhill leader Michael Walchhofer , and reigning gold medalist Fritz Strobl . NNP MD VB TO VB NN NNP NNP CC DT JJ JJ NNP NN , VBG JJ JJ NN NNP NNP , NNP NNP NN NN NNP NNP , CC VBG JJ NN NNP NNP . Apollo Anton Ohno of the United States makes his first appearance in Turin when he skates in the men 's 1,500-meters short track speed skating race . NNP NNP NNP IN DT NNP NNP VBZ PRP$ JJ NN IN NNP WRB PRP VBZ IN DT NNS POS NNS JJ NN NN VBG NN . Germans Claudia Pechstein and Anni Friesinger go for gold in the women 's 3,000-meters long track speed skating event . NNS NNP NNP CC NNP NNP VB IN NN IN DT NNS POS NNS JJ NN NN VBG NN . Men 's luge will award a gold medal , with World Cup and Olympic champion Armin Zoeggeler of Italy hoping to take home the prize . NNS POS NN MD VB DT NN NN , IN NNP NNP CC NNP NN NNP NNP IN NNP VBG TO VB NN DT NN . Gold is also up for grabs in men 's half pipe snowboarding and in men 's and women 's cross-country skiing pursuit races . NN VBZ RB RB IN NNS IN NNS POS NN NN NN CC IN NNS POS CC NNS POS JJ NN NN NNS . Iraqi officials say a car bomb exploded outside a police crime lab in the northern city of Mosul Tuesday , killing two officers . JJ NNS VBP DT NN NN VBD IN DT NN NN NN IN DT JJ NN IN NNP NNP , VBG CD NNS . At least seven other people were wounded in the morning attack . IN JJS CD JJ NNS VBD VBN IN DT NN NN . In a similar incident last month , a suicide bomber struck a police forensics lab in Baghdad , killing 22 people . IN DT JJ NN JJ NN , DT NN NN VBD DT NN VBZ NN IN NNP , VBG CD NNS . A group affiliated with al-Qaida , the Islamic State of Iraq , claimed responsibility for that attack . DT NN VBN IN NNP , DT NNP NNP IN NNP , VBD NN IN DT NN . Also in Mosul Tuesday , a police official says gunmen opened fire on two Christian university students , killing one and wounding another . RB IN NNP NNP , DT NN NN VBZ NNS VBD NN IN CD JJ NN NNS , VBG CD CC VBG DT . On Monday , three bombings in western Iraq left one person dead , and wounded at least four others . IN NNP , CD NNS IN JJ NNP VBD CD NN JJ , CC VBD IN JJS CD NNS . Afghan authorities say a suicide bomber has killed eight people at a governor 's residence in southern Afghanistan . JJ NNS VBP DT NN NN VBZ VBN CD NNS IN DT NN POS NN IN JJ NNP . They say the attack in Helmand province killed guards , but did not harm the governor , Mohammed Daud . PRP VBP DT NN IN NNP NN VBD NNS , CC VBD RB VB DT NN , NNP NNP . In the same province , a British Marine was killed while on patrol . IN DT JJ NN , DT JJ NN VBD VBN IN IN NN . And in Khost , U.S.-led forces killed four people , including a teenage girl , during a raid . CC IN NNP , JJ NNS VBD CD NNS , VBG DT NN NN , IN DT NN . Meanwhile , Afghan President Hamid Karzai says resolving difficulties with neighboring Pakistan will put an end to the Taleban . RB , JJ NNP NNP NNP VBZ VBG NNS IN VBG NNP MD VB DT NN TO DT NNP . He says Pakistan is responsible for violence in Afghanistan . PRP VBZ NNP VBZ JJ IN NN IN NNP . In other developments , Human Rights Watch is calling on Mr. Karzai to quickly establish a truth and reconciliation court to deal with war crimes and human rights abuses committed in the country over the past 30 years . IN JJ NNS , NNP NNP NNP VBZ VBG IN NNP NNP TO RB VB DT NN CC NN NN TO VB IN NN NNS CC JJ NNS NNS VBN IN DT NN IN DT JJ CD NNS . Prince William County , in the Virginia suburbs outside of Washington , is drawing attention across the United States by enforcing local laws that lead to the deportation of hundreds of illegal immigrants . NNP NNP NNP , IN DT NNP NNS IN IN NNP , VBZ VBG NN IN DT NNP NNPS IN VBG JJ NNS WDT VBP TO DT NN IN NNS IN JJ NNS . Community activists say it has created a hostile environment toward all immigrants . NN NNS VBP PRP VBZ VBN DT JJ NN IN DT NNS . Producer Zulima Palacio prepared the story . NN NNP NNP VBD DT NN . African Union officials say the Republic of Congo will be named head of the African Union this year and Sudan will take the A.U. chair in 2007 under a compromise reached early Tuesday . NNP NNP NNS VBP DT NNP IN NNP MD VB VBN NN IN DT NNP NNP DT NN CC NNP MD VB DT NNP NN IN CD IN DT NN VBN JJ NNP . The officials say the decision resolves an impasse among summit delegates in Khartoum over host-country Sudan 's bid for the chairmanship . DT NNS VBP DT NN VBZ DT NN IN NN NNS IN NNP IN JJ NNP POS NN IN DT NN . The A.U. summit host country usually chairs the organization . DT NNP NN NN NN RB VBZ DT NN . But human rights groups objected to Sudan 's bid because of violence and abuses in the Darfur region . CC JJ NNS NNS VBD TO NNP POS NN IN IN NN CC NNS IN DT NNP NN . Five African leaders made a formal request for President Omar al-Bashir to forgo the post . CD JJ NNS VBD DT JJ NN IN NNP NNP NNP TO VB DT NN . Late Monday , officials appointed five African nations to pick a new chair candidate to propose to the 53-nation body on Tuesday . RB NNP , NNS VBD CD JJ NNS TO VB DT JJ NN NN TO VB TO DT JJ NN IN NNP . Tens of thousands of people in Darfur have been killed in fighting between government-backed Arab militias ( known as Janjaweed ) and rebel forces . NNS IN NNS IN NNS IN NNP VBP VBN VBN IN VBG IN JJ JJ NNS LRB VBN IN NNP RRB CC NN NNS . Syrian President Bashar al-Assad has banned smoking in a wide range of public places . JJ NNP NNP NNP VBZ VBN NN IN DT JJ NN IN JJ NNS . Mr. Assad announced the ban Sunday , forbidding smoking in restaurants , cafes , movie theaters , educational institutions and hospitals . NNP NNP VBD DT NN NNP , VBG NN IN NNS , NNS , NN NNS , JJ NNS CC NNS . Smoking will also be banned on public transportation . VBG MD RB VB VBN IN JJ NN . The measure includes the use of water pipes favored by locals and tourists alike . DT NN VBZ DT NN IN NN NNS VBN IN NNS CC NNS RB . Violators of the ban face a fine of about $ 45 . NNS IN DT NN VBP DT NN IN IN $ CD . Earlier this year , Syria issued a law forbidding the sale of tobacco to those under 18 years of age . RBR DT NN , NNP VBD DT NN VBG DT NN IN NN TO DT IN CD NNS IN NN . Afghan and foreign troops are getting ready to take back a southern Afghan town that is being controlled by Taliban militants . JJ CC JJ NNS VBP VBG JJ TO VB RP DT JJ JJ NN WDT VBZ VBG VBN IN NNP NNS . Afghan defense ministry spokesman General Mohammad Zahir Azimi says security forces are beginning an operation near Musa Qala , a town in southern Helmand province . JJ NN NN NN NNP NNP NNP NNP VBZ NN NNS VBP VBG DT NN IN NNP NNP , DT NN IN JJ NNP NN . Taliban militants overran Musa Qala in February , after British troops withdrew and handed over security responsibilities to local elders . NNP NNS VBD NNP NNP IN NNP , IN JJ NNS VBD CC VBD RP NN NNS TO JJ NNS . British military officials say the goal is to take back the town . JJ JJ NNS VBP DT NN VBZ TO VB RP DT NN . The Taliban says it has more than 2,000 armed fighters ready to defend Musa Qala . DT NNP VBZ PRP VBZ JJR IN CD JJ NNS JJ TO VB NNP NNP . Separately , NATO foreign ministers are discussing appointing an international ' super ' envoy to Afghanistan . RB , NNP JJ NNS VBP VBG VBG DT JJ `` JJ `` NN TO NNP . The envoy would help better coordinate U.N. and NATO civilian and military efforts within the country . DT NN MD VB JJR VB NNP CC NNP JJ CC JJ NNS IN DT NN . The leader of Iraq 's largest Shi'ite Muslim political party has endorsed the country 's draft constitution , urging Shi'ites to approve it in next month 's national referendum . DT NN IN NNP POS JJS JJ NN JJ NN VBZ VBN DT NN POS NN NN , VBG NNS TO VB PRP IN JJ NN POS JJ NN . Abdel Aziz al-Hakim of the Supreme Council of the Islamic Revolution in Iraq ( SCIRI ) told thousands of supporters at a rally in Baghdad Saturday that it is their religious duty to vote ' yes . ' NNP NNP NNP IN DT NNP NNP IN DT NNP NNP IN NNP LRB NNP RRB VBD NNS IN NNS IN DT NN IN NNP NNP IN PRP VBZ PRP$ JJ NN TO VB `` UH . `` His endorsement echoes a similar call Thursday from the top Shi'ite religious authority in Iraq , Grand Ayatollah Ali al-Sistani . PRP$ NN VBZ DT JJ NN NNP IN DT JJ NNP JJ NN IN NNP , NNP NNP NNP NNP . In a separate development , a judge in the southern city of Basra ordered the arrest of two British soldiers who were freed Monday in a controversial British raid on a local prison . IN DT JJ NN , DT NN IN DT JJ NN IN NNP VBD DT NN IN CD JJ NNS WP VBD VBN NNP IN DT JJ JJ NN IN DT JJ NN . The charges against them include killing an Iraqi policeman . DT NNS IN PRP VBP VBG DT JJ NN . British officials say their troops are not under Iraqi jurisdiction . JJ NNS VBP PRP$ NNS VBP RB IN JJ NN . In Baghdad , a suicide car bomb exploded near an Iraqi military checkpoint Saturday , killing two soldiers . IN NNP , DT NN NN NN VBD IN DT JJ JJ NN NNP , VBG CD NNS . China has reacted angrily to the United States ' decision to place sanctions on six Chinese companies accused of supplying Iran with sensitive military equipment . NNP VBZ VBN RB TO DT NNP NNPS POS NN TO VB NNS IN CD JJ NNS VBN IN VBG NNP IN JJ JJ NN . China 's Foreign Ministry Wednesday demanded that the U.S. lift the sanctions immediately . NNP POS NNP NNP NNP VBD IN DT NNP NN DT NNS RB . The ministry said the U.S. actions will not benefit the two countries ' cooperation in anti-proliferation efforts . DT NN VBD DT NNP NNS MD RB VB DT CD NNS POS NN IN JJ NNS . The year-long sanctions announced Tuesday block the firms from doing business with the U.S. government or obtaining American high-tech products . DT JJ NNS VBD NNP NN DT NNS IN VBG NN IN DT NNP NN CC VBG JJ JJ NNS . The State Department says the restrictions are an effective tool in blocking Iran from developing missiles and weapons of mass destruction . DT NNP NNP VBZ DT NNS VBP DT JJ NN IN VBG NNP IN VBG NNS CC NNS IN NN NN . The six Chinese companies are a missile exporter known as Norinco , the chemical equipment group Zibo Chemet Co. , China Aero-Technology Import-Export Corp. , Hongdu Aviation Industry Group , Ounion International Economic and Technical Cooperative Ltd. , and Limmt Metallurgy and Minerals Co. DT CD JJ NNS VBP DT NN NN VBN IN NNP , DT NN NN NN NNP NNP NNP , NNP NNP NNP NNP , NNP NNP NNP NNP , NNP NNP NNP CC NNP NNP NNP , CC NNP NNP CC NNP NNP Sanctions were also imposed on two Indian companies and an Austrian firm . NNS VBD RB VBN IN CD JJ NNS CC DT JJ NN . The Walt Disney Company has agreed to sell Miramax Films to an investor group for more than $ 660 million . DT NNP NNP NNP VBZ VBN TO VB NNP NNP TO DT NN NN IN JJR IN $ CD CD . Disney agreed to the deal late Thursday after Filmyard Holdings paid a nonrefundable $ 40-million deposit . NNP VBD TO DT NN RB NNP IN NNP NNP VBD DT JJ $ CD NN . Filmyard is an investment group headed by Los Angeles construction magnate Ron Tutor . NNP VBZ DT NN NN VBN IN NNP NNP NN NN NNP NNP . The financing for the transaction is expected to be finalized by the end of the year . DT NN IN DT NN VBZ VBN TO VB VBN IN DT NN IN DT NN . The Miramax library of 700 movies includes Pulp Fiction , Shakespeare in Love , Chicago and No Country for Old Men . DT NNP NN IN CD NNS VBZ NNP NNP , NNP IN NNP , NNP CC NNP NNP IN NNP NNP . Disney Chief Executive Robert Iger said in a statement , Disney 's current focus is on the development of - in his words - ' great motion pictures ' under the Disney , Pixar and Marvel brands . NNP NNP NNP NNP NNP VBD IN DT NN , NNP POS JJ NN VBZ IN DT NN IN : IN PRP$ NNS : `` JJ NN NNS `` IN DT NNP , NNP CC NNP NNS . The Filmyard deal marks the culmination of a drawn-out sale that had attracted various Los Angeles-based rival bidders , including Bob and Harvey Weinstein , the brothers who founded the studio . DT NNP NN VBZ DT NN IN DT JJ NN WDT VBD VBN JJ NNP JJ JJ NNS , VBG NNP CC NNP NNP , DT NNS WP VBD DT NN . North Korea has called Vice President Dick Cheney a ' bloodthirsty beast ' and said his comments describing ruler Kim Jong-il as ' irresponsible ' could keep Pyongyang away from future nuclear negotiations . NNP NNP VBZ VBN NNP NNP NNP NNP DT `` JJ NN `` CC VBD PRP$ NNS VBG NN NNP NNP IN `` JJ `` MD VB VBG RB IN JJ JJ NNS . North Korea 's official KCNA news agency quoted a Foreign Ministry spokesman Thursday as saying the U.S. vice president is a hated , cruel monster who drenched various parts of the world in blood . NNP NNP POS JJ NNP NN NN VBD DT NNP NNP NN NNP IN VBG DT NNP NN NN VBZ DT JJ , JJ NN WP VBD JJ NNS IN DT NN IN NN . White House spokesman Scott McCellan says such provocative statements only further isolate the country from the international community . NNP NNP NN NNP NNP VBZ JJ JJ NNS RB RB VB DT NN IN DT JJ NN . In an interview Sunday on the U.S. Cable News Network , Mr. Cheney called President Kim one of the world 's most irresponsible leaders , who runs a police state and has one of the most heavily militarized societies in the world . IN DT NN NNP IN DT NNP NNP NNP NNP , NNP NNP VBD NNP NNP CD IN DT NN POS RBS JJ NNS , WP VBZ DT NN NN CC VBZ CD IN DT RBS RB VBN NNS IN DT NN . The United States has been seeking diplomatic pressure to get the North to return to six party talks . DT NNP NNPS VBZ VBN VBG JJ NN TO VB DT NNP TO VB TO CD NN NNS . Palestinian sources say an Israeli helicopter gunship fired a missile at militants during a clash in northern Gaza , killing three of them . JJ NNS VBP DT JJ NN NN VBD DT NN IN NNS IN DT NN IN JJ NNP , VBG CD IN PRP . The Israeli army confirmed the air attack . DT JJ NN VBD DT NN NN . It said soldiers spotted militants trying to launch rockets at Israel and that a gunbattle followed involving Israeli aircraft . PRP VBD NNS VBD NNS VBG TO VB NNS IN NNP CC IN DT NN VBD VBG JJ NN . At least five people were wounded in the clash . IN JJS CD NNS VBD VBN IN DT NN . The militants involved were members of Islamic Jihad . DT NNS VBN VBD NNS IN NNP NNP . In other news , Israel 's interior minister says four Hamas lawmakers must quit the organization if they want to continue living in east Jerusalem . IN JJ NN , NNP POS JJ NN VBZ CD NNP NNS MD VB DT NN IN PRP VBP TO VB VBG IN JJ NNP . Ronnie Bar-On issued the ultimatum while speaking Monday on an Israeli TV station . NNP NNP VBD DT NN IN VBG NNP IN DT JJ NN NN . He said letters were sent to the Hamas lawmakers giving them 30 days to resign or risk being expelled . PRP VBD NNS VBD VBN TO DT NNP NNS VBG PRP CD NNS TO VB CC VB VBG VBN . Hamas ' charter calls for the destruction of Israel . NNP POS NN VBZ IN DT NN IN NNP . Madagascar 's Andry Rajoelina , who took power in a coup that toppled president Marc Ravalomanana in March , now says he is the only man who can provide leadership to the Indian Ocean island nation . NNP POS NNP NNP , WP VBD NN IN DT NN WDT VBD NN NNP NNP IN NNP , RB VBZ PRP VBZ DT JJ NN WP MD VB NN TO DT NNP NNP NN NN . Rajoelina , along with the ousted president Ravalomanana and two other former presidents last week negotiated an agreement to share power in a new consensus government to stay in place until next year 's elections . NNP , IN IN DT JJ NN NNP CC CD JJ JJ NNS JJ NN VBD DT NN TO VB NN IN DT JJ NN NN TO VB IN NN IN JJ NN POS NNS . In an interview on state-run radio and television stations , Rajoelina said it is unimaginable that anyone else should lead the transition . IN DT NN IN JJ NN CC NN NNS , NNP VBD PRP VBZ JJ IN DT RB MD VB DT NN . The agreement reached on August 9 calls for a 31-member unity transition government led by a prime minister and three deputy prime ministers . DT NN VBD IN NNP CD NNS IN DT JJ NN NN NN VBN IN DT JJ NN CC CD JJ JJ NNS . Further negotiations on power sharing issues are set for this week with elections to be held in 15 months . JJ NNS IN NN NN NNS VBP VBN IN DT NN IN NNS TO VB VBN IN CD NNS . Egypt says 12 small Palestinian factions have agreed to Egyptian proposals for a truce with Israel in the Gaza Strip . NNP VBZ CD JJ JJ NNS VBP VBN TO JJ NNS IN DT NN IN NNP IN DT NNP NNP . Egypt 's state news agency ( MENA ) quotes officials as saying the Palestinian groups approved the cease-fire offer at a meeting Wednesday in Cairo . NNP POS NN NN NN LRB NNP RRB VBZ NNS IN VBG DT JJ NNS VBD DT NN NN IN DT NN NNP IN NNP . It says the truce would begin in Gaza and be extended later to the West Bank . PRP VBZ DT NN MD VB IN NNP CC VB VBN RB TO DT NNP NNP . No timeframe was given . DT NN VBD VBN . The larger Hamas militant group that controls Gaza told Egypt last week it would support a six-month cease-fire with Israel in Gaza , to be followed by a similar truce in the West Bank . DT JJR NNP JJ NN WDT VBZ NNP VBD NNP JJ NN PRP MD VB DT JJ NN IN NNP IN NNP , TO VB VBN IN DT JJ NN IN DT NNP NNP . Egypt has been trying for months to mediate an Israeli-Palestinian deal that would include a truce , an exchange of prisoners and an opening of Gaza 's border crossings . NNP VBZ VBN VBG IN NNS TO VB DT JJ NN WDT MD VB DT NN , DT NN IN NNS CC DT NN IN NNP POS NN NNS . Israel has expressed doubts about the latest Palestinian truce offers , arguing they would give militants time to re-arm . NNP VBZ VBN NNS IN DT JJS JJ NN NNS , VBG PRP MD VB NNS NN TO VB . A report out of Kenya says Somali pirates have hijacked a German ship with 24 crew members on board . DT NN IN IN NNP VBZ JJ NNS VBP VBN DT JJ NN IN CD NN NNS IN NN . Andrew Mwangura , of the Mombasa-based East African Seafarers ' Assistance Program , says pirates seized the 20,000 ton container vessel Saturday in the Indian Ocean . NNP NNP , IN DT JJ JJ JJ NNS POS NN NN , VBZ NNS VBD DT CD NN NN NN NNP IN DT NNP NNP . He says the hijacking occurred about 740 kilometers off the coast of Kismayo , between Kenya and the Seychelles . PRP VBZ DT NN VBD IN CD NNS IN DT NN IN NNP , IN NNP CC DT NNS . Somali pirates have seized dozens of ships over the past 18 months , receving millions of dollars in ransom payments . JJ NNS VBP VBN NNS IN NNS IN DT JJ CD NNS , VBG NNS IN NNS IN NN NNS . The number of successful hijackings dropped off during January and February after the United States , China and other world powers deployed warships to the area . DT NN IN JJ NNS VBD RP IN NNP CC NNP IN DT NNP NNPS , NNP CC JJ NN NNS VBD NNS TO DT NN . But the pirates have seized at least six ships since mid-March , including four European commercial vessels and two yachts from Seychelles . CC DT NNS VBP VBN IN JJS CD NNS IN NN , VBG CD JJ JJ NNS CC CD NNS IN NNS . British Foreign Secretary Jack Straw says it is ' inconceivable ' that any military action will be taken against Iran over its nuclear program . JJ NNP NNP NNP NNP VBZ PRP VBZ `` JJ `` WDT DT JJ NN MD VB VBN IN NNP IN PRP$ JJ NN . The United States has accused Tehran of using its nuclear program to develop atomic weapons , and President Bush has previously said all options are on the table to resolve the issue . DT NNP NNPS VBZ VBN NNP IN VBG PRP$ JJ NN TO VB JJ NNS , CC NNP NNP VBZ RB VBN DT NNS VBP IN DT NN TO VB DT NN . But Mr. Straw told British radio Wednesday , that the use of military force is ' not on the agenda . ' CC NNP NNP VBD JJ NN NNP , IN DT NN IN JJ NN VBZ `` RB IN DT NN . `` He also says Mr. Bush is taking a position advocated by ' all United States presidents . ' PRP RB VBZ NNP NNP VBZ VBG DT NN VBN IN `` DT NNP NNPS NNS . `` The International Atomic Energy Agency passed a resolution last Saturday accusing Iran of failing to comply with international nuclear safeguard agreements . DT NNP NNP NNP NNP VBD DT NN JJ NNP VBG NNP IN VBG TO VB IN JJ JJ NN NNS . The resolution puts Iran on notice that it could be referred to the U.N. Security Council for possible sanctions if it fails to cooperate fully with IAEA inspectors . DT NN VBZ NNP IN NN IN PRP MD VB VBN TO DT NNP NNP NNP IN JJ NNS IN PRP VBZ TO VB RB IN NNP NNS . Ecuadoreans protest against Government of President Lucio Gutierrez shouting ' Out Lucio ' in Quito , Ecuador , Friday Ecuador 's President Lucio Gutierrez has dismissed the Supreme Court and declared a state of emergency in the capital , Quito , in an effort to ease a mounting political crisis . NNPS VB IN NN IN NNP NNP NNP VBG `` IN NNP `` IN NNP , NNP , NNP NNP POS NNP NNP NNP VBZ VBN DT NNP NNP CC VBD DT NN IN NN IN DT NN , NNP , IN DT NN TO VB DT VBG JJ NN . Mr. Gutierrez made the announcement late Friday in a nationally televised address . NNP NNP VBD DT NN RB NNP IN DT RB VBN NN . Thousands of pro-opposition activists have been staging mostly peaceful street rallies for the last few days to protest the government 's restructuring of the Supreme Court late last year . NNS IN JJ NNS VBP VBN VBG RB JJ NN NNS IN DT JJ JJ NNS TO VB DT NN POS NN IN DT NNP NNP RB JJ NN . In December , Congress fired 27 of 31 justices and designated new ones after President Gutierrez accused the judges of bias against him . IN NNP , NNP VBD CD IN CD NNS CC VBN JJ NNS IN NNP NNP VBD DT NNS IN NN IN PRP . The move outraged the opposition , which complained the restructuring by the ruling party dominated congress was an attempt by the Gutierrez government to establish control over the high court . DT NN VBD DT NN , WDT VBD DT NN IN DT NN NN VBD NN VBD DT NN IN DT NNP NN TO VB NN IN DT JJ NN . The president fired the new judges Friday . DT NN VBD DT JJ NNS NNP . Russian President Vladimir Putin has dissolved the government . JJ NNP NNP NNP VBZ VBN DT NN . Russian officials and news reports say Mr. Putin dismissed the government Wednesday after Prime Minister Mikhail Fradkov offered his resignation . JJ NNS CC NN NNS VBP NNP NNP VBD DT NN NNP IN NNP NNP NNP NNP VBD PRP$ NN . The reports say Mr. Fradkov decided to urge Mr. Putin to dissolve the government because of upcoming major political events , and a desire to give the president the full freedom to make decisions about staff . DT NNS VBP NNP NNP VBD TO VB NNP NNP TO VB DT NN IN IN VBG JJ JJ NNS , CC DT NN TO VB DT NN DT JJ NN TO VB NNS IN NN . Russia is set to hold parliamentary elections in December . NNP VBZ VBN TO VB JJ NNS IN NNP . Presidential elections are to be held three months after that . JJ NNS VBP TO VB VBN CD NNS IN DT . Burmese state media reported Wednesday that border police seized a large quantity of heroin and other illegal drugs near the border with Thailand this week . JJ NN NNS VBD NNP IN NN NNS VBD DT JJ NN IN NN CC JJ JJ NNS IN DT NN IN NNP DT NN . The reports say an anti-drug squad found more than 700 kilograms of heroin and nearly 3 million methamphetamine pills in the town of Tachilek Monday . DT NNS VBP DT JJ NN VBD JJR IN CD NNS IN NN CC RB CD CD NN NNS IN DT NN IN NNP NNP . Officers arrested four people and confiscated two guns and ammunition from the raid on two houses . NNS VBN CD NNS CC VBD CD NNS CC NN IN DT NN IN CD NNS . Last month , Burmese police seized about 760 kilograms of heroin and large quantities of other drugs in the same town . JJ NN , JJ NNS VBD IN CD NNS IN NN CC JJ NNS IN JJ NNS IN DT JJ NN . Burma is one of the world 's largest producers of heroin . NNP VBZ CD IN DT NN POS JJS NNS IN NN . It is also a major source of methamphetamine . PRP VBZ RB DT JJ NN IN NN . The illegal drugs are often smuggled into Thailand . DT JJ NNS VBP RB VBN IN NNP . The European Union is proposing to slap sanctions on U.S. exports in a dispute over a controversial U.S. anti-dumping law . DT NNP NNP VBZ VBG TO VB NNS IN NNP NNS IN DT NN IN DT JJ NNP JJ NN . The EU is considering additional duties of up to 15 percent as of May 1 , affecting such products as paper , textiles , machinery and farm produce . DT NNP VBZ VBG JJ NNS IN RB TO CD NN IN IN NNP CD , VBG JJ NNS IN NN , NNS , NN CC NN NN . The proposal is aimed at punishing Washington for not repealing an anti-dumping law ruled illegal by the World Trade Organization . DT NN VBZ VBN IN VBG NNP IN RB VBG DT JJ NN VBN JJ IN DT NNP NNP NNP . The law is known as the Byrd Amendment . DT NN VBZ VBN IN DT NNP NNP . It allows American companies to collect money from special duties on foreign goods that are found to be either illegally subsidized or dumped on the U.S. market . PRP VBZ JJ NNS TO VB NN IN JJ NNS IN JJ NNS WDT VBP VBN TO VB RB RB VBN CC VBN IN DT NNP NN . A maritime official says German forces have rescued an Egyptian ship from a pirate attack in the Gulf of Aden . DT NN NN VBZ JJ NNS VBP VBN DT JJ NN IN DT NN NN IN DT NNP IN NNP . Noel Choong of the International Maritime Bureau , IMB , says pirates tried to hijack a bulk carrier with 31 crew off the coast of Somalia Thursday . NNP NNP IN DT NNP NNP NNP , NNP , VBZ NNS VBD TO VB DT NN NN IN CD NN IN DT NN IN NNP NNP . He says a passing ship alerted the bureau , which asked a multinational coalition force in the area to help . PRP VBZ DT NN NN VBD DT NN , WDT VBD DT JJ NN NN IN DT NN TO VB . Choong says a German warship sent a helicopter that scared off the attackers , but not before the pirates shot and injured a crew member . NNP VBZ DT JJ NN VBD DT NN WDT VBD RP DT NNS , CC RB IN DT NNS VBD CC VBD DT NN NN . He says the injured man was airlifted to the German ship for treatment . PRP VBZ DT JJ NN VBD VBN TO DT JJ NN IN NN . Germany is one of several nations with ships patrolling the pirate-infested waters off Somalia . NNP VBZ CD IN JJ NNS IN NNS VBG DT JJ NNS IN NNP . The International Maritime Bureau says pirates have attacked 110 ships this year and hijacked 42 , most of which were released after hefty ransom payments . DT NNP NNP NNP VBZ NNS VBP VBN CD NNS DT NN CC VBN CD , JJS IN WDT VBD VBN IN JJ NN NNS . The pirates are currently holding 14 ships and their crews . DT NNS VBP RB VBG CD NNS CC PRP$ NNS . Colombian and Organization of American States officials have supervised the destruction of thousands of weapons surrendered by demobilized right-wing paramilitary fighters . JJ CC NNP IN NNP NNPS NNS VBP VBN DT NN IN NNS IN NNS VBN IN JJ JJ JJ NNS . More than 18,000 weapons were melted down Friday . JJR IN CD NNS VBD VBN IN NNP . They were handed over as part of a 2003 peace pact between the Colombian government and the United Self-Defense Force of Colombia , or AUC . PRP VBD VBN IN IN NN IN DT CD NN NN IN DT JJ NN CC DT NNP NNP NNP IN NNP , CC NNP . Former fighters and their victims , as well as foreign dignitaries , attended the event . JJ NNS CC PRP$ NNS , RB RB IN JJ NNS , VBD DT NN . The melted weapons will be used to make plagues honoring the 9,000 civilian victims of the AUC fighters . DT JJ NNS MD VB VBN TO VB NNS VBG DT CD JJ NNS IN DT NNP NNS . The 2003 peace accord resulted in the demobilization of over 30,000 men . DT CD NN NN VBD IN DT NN IN IN CD NNS . However , officials say there is evidence that some fighters are re-arming . RB , NNS VBP EX VBZ NN IN DT NNS VBP JJ . Iraqi police say insurgents have shot dead the governor of Baghdad province . JJ NNS VBP NNS VBP VBN JJ DT NN IN NNP NN . Police say Ali al-Haidari and his bodyguard were killed Tuesday while driving through the Baghdad city neighborhood of Hurriyah . NNS VBP NNP NNP CC PRP$ NN VBD VBN NNP IN VBG IN DT NNP NN NN IN NNP . In an separate attack , a suicide bomber rammed his explosives laden truck into a police post in central Baghdad , killing at least 10 people and wounding more than 50 others . IN DT JJ NN , DT NN NN VBD PRP$ NNS VBN NN IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS CC VBG JJR IN CD NNS . Insurgents have been increasingly targeting senior Iraqi government officials , police and other security personnel as they press on with a violent campaign to disrupt elections set for January 30 . NNS VBP VBN RB VBG JJ JJ NN NNS , NNS CC JJ NN NNS IN PRP VBP IN IN DT JJ NN TO VB NNS VBN IN NNP CD . Monday , at least 18 people - mostly Iraqi police and guardsmen - were killed in a series of ambushes , car bombings , and suicide attacks in Baghdad and several cities and towns to the north . NNP , IN JJS CD NNS : RB JJ NNS CC NNS : VBD VBN IN DT NN IN NNS , NN NNS , CC NN NNS IN NNP CC JJ NNS CC NNS TO DT NN . Palestinian radio says Israeli artillery fire killed an eight-year-old girl when the shell hit her home in the northern Gaza Strip . JJ NN VBZ JJ NN NN VBD DT JJ NN WRB DT NN VBD PRP$ NN IN DT JJ NNP NNP . Thirteen other children in the house were reported to be wounded . CD JJ NNS IN DT NN VBD VBN TO VB VBN . Witnesses said an artillery round set the house in Beit Lahiya on fire . NNS VBD DT NN NN VBD DT NN IN NNP NNP IN NN . A relative said all the casualties were members of the same family . DT NN VBD PDT DT NNS VBD NNS IN DT JJ NN . The Israeli military has not commented on the death , but confirmed that Israel has been shelling sites that it suspects Palestinian militants are using to fire rockets into southern Israel . DT JJ NN VBZ RB VBN IN DT NN , CC VBD IN NNP VBZ VBN VBG NNS IN PRP VBZ JJ NNS VBP VBG TO VB NNS IN JJ NNP . At least 16 Palestinians have been killed since last Friday , when Israel began stepping up air and artillery strikes in Gaza , in a push to curb the rocket fire . IN JJS CD NNS VBP VBN VBN IN JJ NNP , WRB NNP VBD VBG RP NN CC NN NNS IN NNP , IN DT NN TO VB DT NN NN . U.S. Secretary of State Condoleezza Rice says no U.S. aid will go to the Hamas-led Palestinian government , but the United States will still contribute to humanitarian programs like immunizing children in the Palestinian territories . NNP NNP IN NNP NNP NNP VBZ DT NNP NN MD VB TO DT JJ JJ NN , CC DT NNP NNPS MD RB VB TO JJ NNS IN VBG NNS IN DT JJ NNS . In testimony to a Senate committee Wednesday , Rice repeated the U.S. position that Hamas must meet international demands to renounce violence and recognize Israel 's right to exist . IN NN TO DT NNP NN NNP , NNP VBD DT NNP NN IN NNP MD VB JJ NNS TO VB NN CC VB NNP POS NN TO VB . Hamas is preparing to take control of the Palestinian parliament when it convenes Saturday . NNP VBZ VBG TO VB NN IN DT JJ NN WRB PRP VBZ NNP . On Wednesday , the group nominated Abdel Aziz Duaik as parliament speaker and Mahmoud Zahar as faction leader . IN NNP , DT NN VBD NNP NNP NNP IN NN NN CC NNP NNP IN JJ NN . In Israel , top policy makers began a three-day review of how to deal with a Hamas-dominated Palestinian government . IN NNP , JJ NN NNS VBD DT JJ NN IN WRB TO VB IN DT JJ JJ NN . Acting Prime Minister Ehud Olmert has said Israel will have no contacts with the Palestinians as long as Hamas is involved in terrorism and refuses to recognize Israel . VBG NNP NNP NNP NNP VBZ VBN NNP MD VB DT NNS IN DT NNS RB RB IN NNP VBZ VBN IN NN CC VBZ TO VB NNP . Colombian President Alvaro Uribe and two of his South American counterparts have opened a gas pipeline between Colombia and Venezuela . JJ NNP NNP NNP CC CD IN PRP$ JJ JJ NNS VBP VBN DT NN NN IN NNP CC NNP . Venezuela 's Hugo Chavez and Rafael Correa of Ecuador participated in a ceremony Friday by turning on the pipeline valves in Colombia 's Guajira region . NNP POS NNP NNP CC NNP NNP IN NNP VBD IN DT NN NNP IN VBG IN DT NN NNS IN NNP POS NNP NN . It connects Guajira with Venezuela 's Lake Maracaibo area . PRP VBZ NNP IN NNP POS NNP NNP NN . Venezuela 's state-owned oil company , PDVSA , invested millions of dollars in the 225-kilometer-long pipeline . NNP POS JJ NN NN , NNP , VBD NNS IN NNS IN DT JJ NN . All but 89 kilometers of the line are in Venezuelan territory . DT CC CD NNS IN DT NN VBP IN JJ NN . Officials say the pipeline will have the capacity to pump 14 million cubic meters of natural gas daily from Colombia to Venezuela . NNS VBP DT NN MD VB DT NN TO VB CD CD JJ NNS IN JJ NN NN IN NNP TO NNP . They also say that the pipeline is to carry gas to Venezuela until 2011 , then reverse course to take the gas in the other direction . PRP RB VBP IN DT NN VBZ TO VB NN TO NNP IN CD , RB VB NN TO VB DT NN IN DT JJ NN . Venezuela 's president has been promoting Latin American energy integration . NNP POS NN VBZ VBN VBG JJ JJ NN NN . He also wants to extend a vast gas pipeline across South America . PRP RB VBZ TO VB DT JJ NN NN IN NNP NNP . An Israeli newspaper reports Israel has agreed to pay some $ 2 million to the family of a British journalist killed by Israeli soldiers in 2003 . DT JJ NN NNS NNP VBZ VBN TO VB DT $ CD CD TO DT NN IN DT JJ NN VBN IN JJ NNS IN CD . The Israeli newspaper Haaretz reported the settlement on Sunday , saying it followed lengthy legal discussions . DT JJ NN NNP VBD DT NN IN NNP , VBG PRP VBD JJ JJ NNS . The attorney for the victim confirmed that a settlement had been reached with the Israeli government , although he would only say the amount was more than $ 1.4 million . DT NN IN DT NN VBD IN DT NN VBD VBN VBN IN DT JJ NN , IN PRP MD RB VB DT NN VBD JJR IN $ CD CD . Cameraman James Miller was shooting a documentary on Palestinian children in the Gazan border town of Rafah in 2003 when he was killed by Israeli gunfire despite carrying a white flag . NN NNP NNP VBD VBG DT NN IN JJ NNS IN DT NNP NN NN IN NNP IN CD WRB PRP VBD VBN IN JJ NN IN VBG DT JJ NN . The soldier who fired the shot was cleared in a court-martial , but a British inquest concluded the event constituted murder . DT NN WP VBD DT NN VBD VBN IN DT JJ , CC DT JJ NN VBD DT NN VBD NN . The Miller family lawyer said Sunday that the family believes the settlement is the closest thing to an admission of guilt that they can get . DT NNP NN NN VBD NNP IN DT NN VBZ DT NN VBZ DT JJS NN TO DT NN IN NN IN PRP MD VB . Microsoft says it will sell a stripped-down version of its Windows operating system in Europe after bickering with regulators over the name of the product . NNP VBZ PRP MD VB DT JJ NN IN PRP$ NNP NN NN IN NNP IN VBG IN NNS IN DT NN IN DT NN . The action is part of the software giant 's lengthy legal battle with European Union regulators who say the company abused its near-monoply in the operating system market to unfairly crush its competitors . DT NN VBZ NN IN DT NN NN POS JJ JJ NN IN NNP NNP NNS WP VBP DT NN VBD PRP$ NN IN DT NN NN NN TO RB VB PRP$ NNS . EU regulators last year fined Microsoft $ 650 million and demanded it change some business practices . NNP NNS JJ NN VBD NNP $ CD CD CC VBD PRP VB DT NN NNS . The EU ordered Microsoft to offer a version of its operating system that did not contain the Microsoft program that plays films and music on computers in the hope of allowing competitors to enter this growing market . DT NNP VBD NNP TO VB DT NN IN PRP$ NN NN WDT VBD RB VB DT NNP NN WDT VBZ NNS CC NN IN NNS IN DT NN IN VBG NNS TO VB DT VBG NN . Microsoft calls its reduced software package Windows XP Home Edition N . NNP VBZ PRP$ JJ NN NN NNP NNP NNP NNP NNP . Security sources say Palestinian forces loyal to President Mahmoud Abbas have shut down four charities and two printing shops in the West Bank for their alleged ties to rival political faction Hamas . NN NNS VBP JJ NNS JJ TO NNP NNP NNP VBP VBN RP CD NNS CC CD NN NNS IN DT NNP NNP IN PRP$ JJ NNS TO JJ JJ NN NNP . The stores and charities , located in an around the southern town of Hebron , were closed Friday . DT NNS CC NNS , VBN IN DT IN DT JJ NN IN NNP , VBD VBN NNP . Sources say the printing shops were publishing material that could incite violence against the government . NNS VBP DT NN NNS VBD VBG NN WDT MD VB NN IN DT NN . Mr. Abbas has recently intensified a crackdown on Hamas in the West Bank . NNP NNP VBZ RB VBN DT NN IN NNP IN DT NNP NNP . Last year , Hamas seized control of the Gaza Strip after routing Fatah forces loyal to the Palestinian president . JJ NN , NNP VBD NN IN DT NNP NNP IN VBG NNP NNS JJ TO DT JJ NN . Reports from Georgia say President Mikheil Saakashvili has fired reformist Prime Minister Lado Gurgenidze . NNS IN NNP VBP NNP NNP NNP VBZ VBN JJ NNP NNP NNP NNP . News agency reports quote senior Georgian officials as saying Georgia 's ambassador to Turkey , Grigol Mgalobishvili , will replace the prime minister . NNP NN NNS VBP JJ JJ NNS IN VBG NNP POS NN TO NNP , NNP NNP , MD VB DT JJ NN . An official statement is expected later Monday . DT JJ NN VBZ VBN RB NNP . Mr. Gurgenidze , a 37-year-old technocrat and former banker , became prime minister late last year , with the primary task of attracting foreign investment and maintaining a high rate of economic growth . NNP NNP , DT JJ NN CC JJ NN , VBD JJ NN RB JJ NN , IN DT JJ NN IN VBG JJ NN CC VBG DT JJ NN IN JJ NN . A five-day military conflict with Russia in August has since eroded investor confidence and slowed what otherwise was widely seen as a healthy economy . DT JJ JJ NN IN NNP IN NNP VBZ IN VBN NN NN CC VBD WP RB VBD RB VBN IN DT JJ NN . Mr. Gurgenidze visited Washington earlier this month , holding talks with U.S. National Security Advisor Stephen Hadley . NNP NNP VBD NNP RBR DT NN , VBG NNS IN NNP NNP NNP NNP NNP NNP . Authorities in Afghanistan say up to 22 insurgents were killed Thursday night during an operation led by coalition troops . NNS IN NNP VBP RP TO CD NNS VBD VBN NNP NN IN DT NN VBN IN NN NNS . The U.S. military says coalition and Afghan forces raided a compound in central Ghazni province , and that a number of militants were killed . DT NNP NN VBZ NN CC JJ NNS VBD DT NN IN JJ NNP NN , CC IN DT NN IN NNS VBD VBN . Afghan police put that number at 22 . JJ NN VBD DT NN IN CD . Officials also say troops found a cache of weapons , including grenades and ammunition . NNS RB VBP NNS VBD DT NN IN NNS , VBG NNS CC NN . In other clashes , two Afghan policemen and two British soldiers have died in separate incidents . IN JJ NNS , CD JJ NNS CC CD JJ NNS VBP VBN IN JJ NNS . Afghanistan 's Interior Ministry says a roadside bomb killed the two police officers near the southern border with Pakistan on Thursday . NNP POS NNP NNP VBZ DT NN NN VBD DT CD NNS NNS IN DT JJ NN IN NNP IN NNP . The latest British deaths were in southern Helmand province . DT JJS JJ NNS VBD IN JJ NNP NN . British and U.S. forces are conducting an offensive in southern Afghanistan to try to clear out Taliban militants . JJ CC NNP NNS VBP VBG DT NN IN JJ NNP TO VB TO VB RP NNP NNS . Nine British troops have been killed in as many days . CD JJ NNS VBP VBN VBN IN IN JJ NNS . The former Pakistan prime minister , Benazir Bhutto , has been served with an order placing her under house arrest in Islamabad . DT JJ NNP JJ NN , NNP NNP , VBZ VBN VBN IN DT NN VBG PRP$ IN NN NN IN NNP . But VOA 's Barry Newhouse spoke to a member of her political party , who said he is in a car with her outside her house , and they are trying to force their way through the hundreds of police surrounding the area . CC NNP POS NNP NNP VBD TO DT NN IN PRP$ JJ NN , WP VBD PRP VBZ IN DT NN IN PRP IN PRP$ NN , CC PRP VBP VBG TO VB PRP$ NN IN DT NNS IN NN VBG DT NN . Here is his report . RB VBZ PRP$ NN . ' I 'm standing at a police barricade about 200 meters from Benazir Bhutto 's private residence in Islamabad . `` PRP VBP VBG IN DT NN NN IN CD NNS IN NNP NNP POS JJ NN IN NNP . We have reports that she 's been served with an arrest warrant . PRP VBP NNS IN PRP VBZ VBN VBN IN DT NN NN . I just spoke with a senior party official in a car with her . PRP RB VBD IN DT JJ NN NN IN DT NN IN PRP . He says they and about 300 party supporters are trying to force their way through police barricades ... but so far have been unsuccessful at doing so . ' PRP VBZ PRP CC IN CD NN NNS VBP VBG TO VB PRP$ NN IN NN NNS : CC RB RB VBP VBN JJ IN VBG RB . `` Malaysian Foreign Minister Syed Hamid Albar says he hope to visit Burma soon to see evidence of democratic reform . JJ NNP NNP NNP NNP NNP VBZ PRP VBZ TO VB NNP RB TO VB NN IN JJ NN . The state Bernama news agency quoted Mr. Syed Hamid Saturday as saying discussions are being held with Burma 's Minister of Foreign Affairs to set a date for the trip . DT NN NNP NN NN VBD NNP NNP NNP NNP IN VBG NNS VBP VBG VBN IN NNP POS NNP IN NNP NNPS TO VB DT NN IN DT NN . The Malaysian diplomat said he hopes to visit the military-ruled country this month . DT JJ NN VBD PRP VBZ TO VB DT JJ NN DT NN . At the three-day Association of Southeast Nations ( ASEAN ) summit in Kuala Lumpur in December , Mr. Syed Hamid was chosen to lead an ASEAN delegation to visit Burma to observe democratic reforms . IN DT JJ NNP IN NNP NNP LRB NNP RRB NN IN NNP NNP IN NNP , NNP NNP NNP VBD VBN TO VB DT NNP NN TO VB NNP TO VB JJ NNS . Burma welcomed the visit , but did not set a specific date . NNP VBD DT NN , CC VBD RB VB DT JJ NN . Mr. Syed Hamid said results from the visit are vital in keeping up the integrity and credibility of ASEAN . NNP NNP NNP VBD NNS IN DT NN VBP JJ IN VBG RP DT NN CC NN IN NNP . Israel is continuing its month-long military offensive against Palestinian militants in the Gaza Strip in an attempt to stop rocket attacks on Israel and free a captured soldier . NNP VBZ VBG PRP$ JJ JJ NN IN JJ NNS IN DT NNP NNP IN DT NN TO VB NN NNS IN NNP CC VB DT VBN NN . Palestinian medics say Israeli fire killed 3 Palestinian civilians Thursday , including a 75-year-old woman . JJ NNS VBP JJ NN VBD CD JJ NNS NNP , VBG DT JJ NN . A tank shell hit her home near the Jabaliya refugee camp in northern Gaza . DT NN NN VBD PRP$ NN IN DT NNP NN NN IN JJ NNP . On Wednesday , Israeli forces and Palestinian gunmen fought fierce battles across the Gaza Strip resulting in the deaths of 23 Palestinians , including three children . IN NNP , JJ NNS CC JJ NNS VBD JJ NNS IN DT NNP NNP VBG IN DT NNS IN CD NNS , VBG CD NNS . Palestinians identified at least 12 of the dead as gunmen . NNS VBD IN JJS CD IN DT JJ IN NNS . Militants also kept up attacks with homemade rockets , despite the Israeli offensive . NNS RB VBD RP NNS IN JJ NNS , IN DT JJ NN . More than 140 Palestinians have been killed in Gaza since Israeli forces moved into the Palestinian territory after militants captured an Israeli soldier on June 25 . JJR IN CD NNS VBP VBN VBN IN NNP IN JJ NNS VBD IN DT JJ NN IN NNS VBD DT JJ NN IN NNP CD . The United Nations mission in Rwanda says government troops are gearing up to attack Rwandan Hutu rebels based in eastern Democratic Republic of Congo . DT NNP NNP NN IN NNP VBZ NN NNS VBP VBG RP TO VB JJ NNP NNS VBN IN JJ JJ NNP IN NNP . A spokeswoman , Patricia Tome , says the head of the mission , William Swing , received a telephone call from a Rwandan official , advising him of the action . DT NN , NNP NNP , VBZ DT NN IN DT NN , NNP NNP , VBD DT NN NN IN DT JJ NN , VBG PRP IN DT NN . She declined to identify the official . PRP VBD TO VB DT NN . Reuters news agency quotes an adviser to Rwanda 's President Paul Kagame , Richard Sezibera , who confirmed the possibility of clashes . NNP NN NN VBZ DT NN TO NNP POS NNP NNP NNP , NNP NNP , WP VBD DT NN IN NNS . He said Hutu rebels in Congo are massing near the border with Rwanda , adding that the government will take any means necessary to defend Rwandan territory . PRP VBD NNP NNS IN NNP VBP VBG IN DT NN IN NNP , VBG IN DT NN MD VB DT NNS JJ TO VB JJ NN . In recent years , Rwandan troops have entered Congo on two occasions to attack Hutu extremists who fled across the border after participating in the massacre of hundreds of thousands of minority ethnic Tutsis during Rwanda 's 1994 genocide . IN JJ NNS , JJ NNS VBP VBN NNP IN CD NNS TO VB NNP NNS WP VBD IN DT NN IN VBG IN DT NN IN NNS IN NNS IN NN JJ NN IN NNP POS CD NN . Human rights group Amnesty International says Mexican authorities have failed to prosecute police accused of sexually abusing women from the town of San Salvador Atenco . JJ NNS NN NNP NNP VBZ JJ NNS VBP VBN TO VB NNS VBN IN RB VBG NNS IN DT NN IN NNP NNP NNP . Amnesty says more than 20 women have complained of being abused or raped by police who were sent to the town in May to stop a protest by local residents . NNP VBZ JJR IN CD NNS VBP VBN IN VBG VBN CC VBN IN NNS WP VBD VBN TO DT NN IN NNP TO VB DT NN IN JJ NNS . The women were among more 200 people arrested and beaten by police during the riots . DT NNS VBD IN JJR CD NNS VBN CC VBN IN NNS IN DT NNS . Amnesty says Mexico 's federal government should investigate accusations of police brutality against women during the riots . NNP VBZ NNP POS JJ NN MD VB NNS IN NN NN IN NNS IN DT NNS . The group says local authorities are ignoring or covering up the alleged abuses , which it says amount to acts of torture . DT NN VBZ JJ NNS VBP VBG CC VBG RP DT JJ NNS , WDT PRP VBZ NN TO NNS IN NN . The unrest in San Salvador Atenco began when Mexican police tried to stop protests by a small farmers ' organization . DT NN IN NNP NNP NNP VBD WRB JJ NNS VBD TO VB NNS IN DT JJ NNS POS NN . Hundreds of protesters fought with police , and several officers were kidnapped . NNS IN NNS VBN IN NN , CC JJ NNS VBD VBN . The U.S. Embassy in Saudi Arabia is warning that extremists may be planning to attack Westerners in the central province of al-Qassim . DT NNP NNP IN NNP NNP VBZ VBG IN NNS MD VB VBG TO VB NNS IN DT JJ NN IN NNP . A message posted on the embassy 's website , and dated August 4 , said officials there have received credible information about a possible attack . DT NN VBN IN DT NN POS NN , CC JJ NNP CD , VBD NNS RB VBP VBN JJ NN IN DT JJ NN . It said the timing and method of the potential attacks are unknown and advises U.S. citizens to take necessary precautions . PRP VBD DT NN CC NN IN DT JJ NNS VBP JJ CC VBZ NNP NNS TO VB JJ NNS . The embassy says this is the first time this year it has warned of a possible attack by extremists . DT NN VBZ DT VBZ DT JJ NN DT NN PRP VBZ VBN IN DT JJ NN IN NNS . Afghan officials say NATO warplanes mistakenly killed 14 Afghan construction workers while hunting for Taliban militants in the rugged mountains of eastern Afghanistan . JJ NNS VBP NNP NNS RB VBD CD JJ NN NNS IN NN IN NNP NNS IN DT JJ NNS IN JJ NNP . The governor of Nuristan province , Tamin Nuristani , says the road workers were sleeping in tents when the aircraft attacked late Monday . DT NN IN NNP NN , NNP NNP , VBZ DT NN NNS VBD VBG IN NNS WRB DT NN VBN JJ NNP . He says NATO was acting on reports that militants were in the area . PRP VBZ NNP VBD VBG IN NNS IN NNS VBD IN DT NN . NATO Brigadier General Carlos Branco said the alliance fired air strikes against entrenched Taliban positions in the area , adding that an investigation is under way . NNP NNP NNP NNP NNP VBD DT NN VBD NN NNS IN JJ NNP NNS IN DT NN , VBG IN DT NN VBZ IN NN . NATO and other foreign troops in Afghanistan have come under scathing criticism this year for air strikes targeting militants that have seen hundreds of Afghan civilians killed . NNP CC JJ JJ NNS IN NNP VBP VBN IN JJ NN DT NN IN NN NNS VBG NNS WDT VBP VBN NNS IN JJ NNS VBN . Afghan President Hamid Karzai has denounced U.S. and NATO troops for the deaths , urging a change in military operating procedure . JJ NNP NNP NNP VBZ VBN NNP CC NNP NNS IN DT NNS , VBG DT NN IN JJ NN NN . A renewed Taliban insurgency has turned this year into the deadliest yet since the 2001 U.S.-led invasion ousted the Taliban government . DT JJ NNP NN VBZ VBN DT NN IN DT JJS RB IN DT CD JJ NN VBD DT NNP NN . A suicide bomber drove a car full of explosives into a police checkpoint in northwestern Pakistan , killing at least 16 people . DT NN NN VBD DT NN JJ IN NNS IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS . Local police officials say Wednesday 's attack in Charsadda , near the city of Peshawar , killed at least nine policemen and several civilians . JJ NN NNS VBP NNP POS NN IN NNP , IN DT NN IN NNP , VBD IN JJS CD NNS CC JJ NNS . Peshawar is the capital of Pakistan 's North West Frontier Province and the gateway to the tribal areas bordering Afghanistan . NNP VBZ DT NN IN NNP POS NNP NNP NNP NNP CC DT NN TO DT JJ NNS VBG NNP . Pakistani President Asif Ali Zardari and Prime Minister Yousuf Raza Giliani condemned the attack . JJ NNP NNP NNP NNP CC NNP NNP NNP NNP NNP VBD DT NN . In a statement , President Zardari said the perpetrators of ' such a heinous crime ' would be brought to justice . IN DT NN , NNP NNP VBD DT NNS IN `` PDT DT JJ NN `` MD VB VBN TO NN . The region has experienced a surge of militant attacks by Pakistani Taliban fighters and other Islamic groups . DT NN VBZ VBN DT NN IN JJ NNS IN JJ NNP NNS CC JJ JJ NNS . Attacks also have been carried out in other parts of Pakistan , including the capital , Islamabad , and the commerical center , Karachi . NNS RB VBP VBN VBN RP IN JJ NNS IN NNP , VBG DT NN , NNP , CC DT JJ NN , NNP . The head of the United Nations children 's agency , or UNICEF , says at least 17,000 children died in schools destroyed by the October 8 earthquake in Pakistan . DT NN IN DT NNP NNP NNS POS NN , CC NNP , VBZ IN JJS CD NNS VBD IN NNS VBN IN DT NNP CD NN IN NNP . Ann Veneman said those children who survived have been traumatized by injuries and loss of friends and teachers who died in the quake . NNP NNP VBD DT NNS WP VBD VBP VBN VBN IN NNS CC NN IN NNS CC NNS WP VBD IN DT NN . She repeated warnings about a ' second wave ' of deaths if tens of thousands of people who are still homeless are not provided with shelter , food , drinking water and proper health care . PRP VBD NNS IN DT `` JJ NN `` IN NNS IN NNS IN NNS IN NNS WP VBP RB JJ VBP RB VBN IN NN , NN , NN NN CC JJ NN NN . With a bitter Himalayan winter approaching , aid workers fear hunger , disease and untreated injuries could kill thousands more . IN DT JJ JJ NN VBG , NN NNS VBP NN , NN CC JJ NNS MD VB NNS RBR . Meanwhile , U.N. Secretary-General Kofi Annan is expected to attend a donors meeting in Islamabad on November 19 to raise funds for rebuilding earthquake-hit areas . RB , NNP NNP NNP NNP VBZ VBN TO VB DT NNS NN IN NNP IN NNP CD TO VB NNS IN VBG JJ NNS . The October 8 quake killed about 55,000 people , most of them in Pakistani Kashmir . DT NNP CD NN VBD IN CD NNS , JJS IN PRP IN JJ NNP . Palestinian militants have attacked a police station in the West Bank town of Nablus , sparking a gunfight with Palestinian police . JJ NNS VBP VBN DT NN NN IN DT NNP NNP NN IN NNP , VBG DT NN IN JJ NNS . Witnesses say several militants took up positions outside the police station Friday and began shooting , prompting police to return fire . NNS VBP JJ NNS VBD RP NNS IN DT NN NN NNP CC VBD VBG , VBG NNS TO VB NN . At least two people were reported wounded . IN JJS CD NNS VBD VBN VBN . The gunmen were from a small militant group al-Adwa , affiliated with Palestinian Authority President Mahmoud Abbas ' Fatah faction . DT NNS VBD IN DT JJ JJ NN NN , VBN IN JJ NNP NNP NNP NNP POS NNP NN . There are conflicting reports as to what the gunmen were upset about . EX VBP VBG NNS IN TO WP DT NNS VBD VBN RB . One report says a militant was refused permission to visit his jailed brother , while another quotes police as saying the group was upset that one of its members had been beaten while in police custody . CD NN VBZ DT NN VBD VBN NN TO VB PRP$ JJ NN , IN DT VBZ NN IN VBG DT NN VBD VBN IN CD IN PRP$ NNS VBD VBN VBN IN IN NN NN . Friday 's incident underscores the challenges facing Mr. Abbas as he tries to rein in militants and restore law and order . NNP POS NN VBZ DT NNS VBG NNP NNP IN PRP VBZ TO VB IN NNS CC VB NN CC NN . Wlodzimierz Cimoszewicz Poland 's parliamentary speaker W?odzimierz Cimoszewicz says he will run for president in October 's election , with recent opinion polls suggesting he could win . NNP NNP NNP POS JJ NN NNP NNP VBZ PRP MD VB IN NN IN NNP POS NN , IN JJ NN NNS VBG PRP MD VB . Mr. Cimoszewicz , of the ruling Democratic Left Alliance , has remained untouched by a string of scandals that have tarnished his party . NNP NNP , IN DT NN JJ NNP NNP , VBZ VBN JJ IN DT NN IN NNS WDT VBP VBN PRP$ NN . Polls have put him ahead of other hopefuls , including leading conservative Lech Kaczynski . NNS VBP VBN PRP RB IN JJ NNS , VBG VBG JJ NNP NNP . Poland 's President Alexander Kwasniewski can not run for re-election because he has already served two terms . NNP POS NNP NNP NNP MD RB VB IN NN IN PRP VBZ RB VBN CD NNS . Opinion polls indicate Polish leftists will be defeated in parliamentary elections , scheduled for September 25 . NN NNS VBP JJ NNS MD VB VBN IN JJ NNS , VBN IN NNP CD . Russian Foreign Minister Sergei Lavrov has signed an agreement allowing visa-free travel between Argentina and his country . JJ NNP NNP NNP NNP VBZ VBN DT NN VBG JJ NN IN NNP CC PRP$ NN . Argentine ambassador to Russia Leopoldo Bravo attended the signing ceremony Wednesday in Moscow . JJ NN TO NNP NNP NNP VBD DT NN NN NNP IN NNP . Argentine Foreign Minister Jorge Taiana signed the document last week in Buenos Aires . JJ NNP NNP NNP NNP VBD DT NN JJ NN IN NNP NNP . The agreement will take effect after ratification by parliaments of both countries . DT NN MD VB NN IN NN IN NNS IN DT NNS . Russia 's Itar-Tass news agency says under the agreement , citizens of Russia and Argentina will be able to enter and leave the territories of each others ' countries without visas . NNP POS JJ NN NN VBZ IN DT NN , NNS IN NNP CC NNP MD VB JJ TO VB CC VB DT NNS IN DT NNS POS NNS IN NNS . They will also be able to travel through or stay there for 90 to 180 days . PRP MD RB VB JJ TO VB IN CC VB RB IN CD CC CD NNS . Travelers seeking longer visits or those who wish to engage in business will still need visas . NNS VBG JJR NNS CC DT WP VBP TO VB IN NN MD RB VB NNS . Egyptian officials have announced the site for the country 's first nuclear power plant , settling the controversy over its location . JJ NNS VBP VBN DT NN IN DT NN POS JJ JJ NN NN , VBG DT NN IN PRP$ NN . A presidential spokesman said Wednesday the new plant will be located in el-Dabaa , an area northwest of Cairo on the Mediterranean coast . DT JJ NN VBD NNP DT JJ NN MD VB VBN IN NNP , DT NN NN IN NNP IN DT NNP NN . Local business officials had criticized the government for considering el-Dabaa , saying a power plant could have a negative impact on the region 's tourism . JJ NN NNS VBD VBN DT NN IN VBG NNP , VBG DT NN NN MD VB DT JJ NN IN DT NN POS NN . However , the presidential spokesman says President Hosni Mubarak reached a decision on the site during a meeting with the country 's nuclear energy council . RB , DT JJ NN VBZ NNP NNP NNP VBD DT NN IN DT NN IN DT NN IN DT NN POS JJ NN NN . Egyptian officials say the plant should be in operation by 2019 . JJ NNS VBP DT NN MD VB IN NN IN CD . The government also plans to have three other nuclear facilities up and running by 2025 . DT NN RB VBZ TO VB CD JJ JJ NNS IN CC VBG IN CD . Power outages across the country in addition to depleting oil and gas resources have forced officials to consider alternative energy solutions . NNP NNS IN DT NN IN NN TO VBG NN CC NN NNS VBP VBN NNS TO VB JJ NN NNS . The government has also begun using solar and wind energy . DT NN VBZ RB VBN VBG JJ CC NN NN . U.S. officials are about to announce indictments against three men charged with plotting to attack major U.S. financial buildings . NNP NNS VBP IN TO VB NNS IN CD NNS VBN IN VBG TO VB JJ NNP JJ NNS . Media reports identify the suspects as Dhiren Barot , Qaisar Shaffi , and Nadeem Tarmohammed . NN NNS VBP DT NNS IN NNP NNP , NNP NNP , CC NNP NNP . U.S. officials say Mr. Barot is a high-level al-Qaida figure also known as Esa al-Hindi . NNP NNS VBP NNP NNP VBZ DT JJ NNP NN RB VBN IN NNP NNP . The men are being held in Britain , where they were arrested along with five other terrorist suspects last year . DT NNS VBP VBG VBN IN NNP , WRB PRP VBD VBN IN IN CD JJ JJ NNS JJ NN . The suspects allegedly conducted surveillance of the financial buildings in 2000 and 2001 . DT NNS RB VBD NN IN DT JJ NNS IN CD CC CD . The buildings included the New York Stock Exchange , New York 's Citicorp Building , the Prudential Building in Newark , New Jersey , and the International Monetary Fund in Washington . DT NNS VBD DT NNP NNP NNP NNP , NNP NNP POS NNP NNP , DT NNP NNP IN NNP , NNP NNP , CC DT NNP NNP NNP IN NNP . Discovery of the surveillance led U.S. officials to raise the terrorism alert level around the buildings last August . NN IN DT NN VBD NNP NNS TO VB DT NN NN NN IN DT NNS JJ NNP . The House Highways and Transit Subcommittee is examining the impact of rising diesel prices on the trucking industry . DT NNP NNPS CC NNP NNP VBZ VBG DT NN IN VBG NN NNS IN DT NN NN . The Triple A automotive association says the price of diesel fuel , which is used by most transport trucks , has risen much faster than regular gasoline . DT NNP NNP JJ NN VBZ DT NN IN NN NN , WDT VBZ VBN IN JJS NN NNS , VBZ VBN RB RBR IN JJ NN . The trucking industry says record high fuel prices are cutting into profits and in some cases , destroying livelihoods . DT NN NN VBZ NN JJ NN NNS VBP VBG IN NNS CC IN DT NNS , VBG NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Afghan officials say two separate accidental explosions killed four children and three police officers in the capital , Kabul , Monday . JJ NNS VBP CD JJ JJ NNS VBD CD NNS CC CD NNS NNS IN DT NN , NNP , NNP . In the first incident , authorities said a group of children was playing with an old artillery shell when it exploded . IN DT JJ NN , NNS VBD DT NN IN NNS VBD VBG IN DT JJ NN NN WRB PRP VBD . The blast killed four of the children . DT NN VBD CD IN DT NNS . Afghanistan remains littered with unexploded munitions and landmines after decades of war . NNP VBZ VBN IN JJ NNS CC NNS IN NNS IN NN . The second blast happened as a group of police officers was preparing for a mission . DT JJ NN VBD IN DT NN IN NN NNS VBD VBG IN DT NN . A spokesman for the Interior Ministry said one of the officers accidentally dropped a rocket-propelled grenade . DT NN IN DT NNP NNP VBD CD IN DT NNS RB VBD DT JJ NN . The explosion killed three officers . DT NN VBD CD NNS . Ukrainian opposition leader Viktor Yushchenko has warned foreign nations against taking sides in the country 's new presidential runoff election . JJ NN NN NNP NNP VBZ VBN JJ NNS IN VBG NNS IN DT NN POS JJ JJ NN NN . Mr. Yushchenko said outsiders should only work to ensure the vote is fair . NNP NNP VBD NNS MD RB VB TO VB DT NN VBZ JJ . His comments followed pledges from the Organization for Security and Cooperation in Europe to support Ukraine 's new court-ordered presidential run-off election . PRP$ NNS VBD NNS IN DT NNP IN NNP CC NNP IN NNP TO VB NNP POS JJ JJ JJ NN NN . Thousands of Mr. Yushchenko 's supporters have continued their vigil in the capital Kiev , where Ukraine 's parliament remained deadlocked on proposals to amend the country 's election laws . NNS IN NNP NNP POS NNS VBP VBN PRP$ NN IN DT NN NNP , WRB NNP POS NN VBD VBN IN NNS TO VB DT NN POS NN NNS . Opposition lawmakers support legal changes aimed at preventing voter fraud . NN NNS VBP JJ NNS VBN IN VBG NN NN . Pro-government politicians are pushing for constitutional changes that would reduce the powers of the president . JJ NNS VBP VBG IN JJ NNS WDT MD VB DT NNS IN DT NN . On Saturday , Ukraine 's Supreme Court threw out results from the last presidential election and scheduled a new run-off for December 26 . IN NNP , NNP POS NNP NNP VBD RP NNS IN DT JJ JJ NN CC VBN DT JJ NN IN NNP CD . The top U.S. immigration enforcement official says federal agents expect to deport more than 2,00,000 immigrants this year who are in prisons across the country . DT JJ NNP NN NN NN VBZ JJ NNS VBP TO VB JJR IN CD NNS DT NN WP VBP IN NNS IN DT NN . The head of the Immigration and Customs Enforcement agency , Assistant Secretary of Homeland Security Julie Myers , made the remark in an interview published Tuesday in The New York Times newspaper . DT NN IN DT NNP CC NNP NNP NN , NNP NNP IN NNP NNP NNP NNPS , VBD DT NN IN DT NN VBN NNP IN DT NNP NNP NNP NN . She says the agency filed formal immigration charges in 2007 against 1,64,000 immigrants convicted of crimes in the United States , compared to 64,000 cases in 2006 . PRP VBZ DT NN VBD JJ NN NNS IN CD IN CD NNS VBN IN NNS IN DT NNP NNPS , VBN TO CD NNS IN CD . Myers says the move to speed the deportation of foreign-born criminals is aimed at helping U.S. prisons reduce the costs of housing immigrants . NNP VBZ DT NN TO VB DT NN IN JJ NNS VBZ VBN IN VBG NNP NNS VBP DT NNS IN NN NNS . She says imprisoned foreigners include immigrants who were legal residents but lost their legal status after their convictions . PRP VBZ JJ NNS VBP NNS WP VBD JJ NNS CC VBD PRP$ JJ NN IN PRP$ NNS . Mexican police have reopened a central square in the city of Oaxaca after clearing out protesters demanding that the state governor resign . JJ NNS VBP VBN DT JJ NN IN DT NN IN NNP IN VBG RP NNS VBG IN DT NN NN VB . Witnesses said federal police cleaned up trash and painted over graffiti left by activists who launched the protests five months ago . NNS VBD JJ NNS VBD RP NN CC VBN IN NNS VBN IN NNS WP VBD DT NNS CD NNS RB . Some foreign tourists also returned to the popular vacation spot on Tuesday . DT JJ NNS RB VBD TO DT JJ NN NN IN NNP . Protesters , however , remain in control of many other parts of the city . NNS , RB , VBP IN NN IN JJ JJ NNS IN DT NN . And organizers say they will not quit the protests until Governor Ulises Ruiz resigns over corruption allegations . CC NNS VBP PRP MD RB VB DT NNS IN NNP NNP NNP VBZ IN NN NNS . At least nine people , including a U.S. journalist , have been killed in the crisis in recent weeks . IN JJS CD NNS , VBG DT NNP NN , VBP VBN VBN IN DT NN IN JJ NNS . A United Nations human rights expert says he has received reports of abuse by paramilitary groups in the crackdown . DT NNP NNPS JJ NNS NN VBZ PRP VBZ VBN NNS IN NN IN JJ NNS IN DT NN . He urged Mexico 's government to investigate the claims of murder and arbitrary detention . PRP VBD NNP POS NN TO VB DT NNS IN NN CC JJ NN . In Africa , elephant conservation has always been threatened by the illegal ivory trade . IN NNP , NN NN VBZ RB VBN VBN IN DT JJ NN NN . This spring there was another new threat to the elephants when South Africa lifted its 13-year ban against culling . DT NN EX VBD DT JJ NN TO DT NNS WRB NNP NNP VBD PRP$ JJ NN IN NN . Officials announced plans to thin the herds by 5,000 . NNP VBD NNS TO JJ DT NNS IN CD . Yet , animal advocates argue that elephants are an endangered species . RB , NN NNS VBP IN NNS VBP DT JJ NNS . VOA 's Carolyn Turner reports on the background of the ivory politics . NNP POS NNP NNP VBZ IN DT NN IN DT NN NNS . U.S. military officials say 75 prisoners at the American naval base at Guantanamo Bay are on a hunger strike . NNP JJ NNS VBP CD NNS IN DT JJ JJ NN IN NNP NNP VBP IN DT NN NN . A military spokesman for the base Navy Commander Robert Durand says the hunger strike is an attempt to gain media attention . DT JJ NN IN DT NN NN NNP NNP NNP VBZ DT NN NN VBZ DT NN TO VB NNS NN . He said it may be related to May 18 clashes between detainees and military guards . PRP VBD PRP MD VB VBN TO NNP CD NNS IN NNS CC JJ NNS . Some of the detainees have been on the hunger strike since August . DT IN DT NNS VBP VBN IN DT NN NN IN NNP . In past months , the military has force-fed hunger strikers by placing a tube through their noses into their stomachs . IN JJ NNS , DT NN VBZ VBN NN NNS IN VBG DT NN IN PRP$ NNS IN PRP$ NNS . Earlier this month , lawyers for a detainee filed a complaint saying the force-feeding method amounts to torture . RBR DT NN , NNS IN DT NN VBD DT NN VBG DT JJ NN NNS TO VB . More than 400 prisoners are being held at Guantanamo on suspicion of links to al-Qaida or the Taleban . JJR IN CD NNS VBP VBG VBN IN NNP IN NN IN NNS TO NNP CC DT NNP . Pakistan security officials say a U.S. missile strike has killed four suspected militants in the country 's northwestern region , along the Afghan border . NNP NN NNS VBP DT NNP NN NN VBZ VBN CD JJ NNS IN DT NN POS JJ NN , IN DT JJ NN . Officials say three missiles hit a vehicle carrying the militants in the Datta Khel village in the North Waziristan tribal district . NNS VBP CD NNS VBD DT NN VBG DT NNS IN DT NNP NNP NN IN DT NNP NNP JJ NN . The U.S. has launched nearly 20 missile strikes against Taliban and al-Qaida-linked militant strongholds in Pakistan 's northwestern tribal region this month . DT NNP VBZ VBN RB CD NN NNS IN NNP CC JJ JJ NNS IN NNP POS JJ JJ NN DT NN . Pakistani officials publicly condemn the drone strikes , saying they violate the country 's territorial sovereignty . JJ NNS RB VB DT NN NNS , VBG PRP VBP DT NN POS JJ NN . U.S. officials do not publicly comment on the strikes , which Pakistan generally says are carried out by drones . NNP NNS VBP RB RB VB IN DT NNS , WDT NNP RB VBZ VBP VBN RP IN NNS . Pope Benedict XVI has received top officials of the World Jewish Congress , who pressed concern about threats from Iran and urged the pontiff to pursue dialogue with moderate Muslims . NNP NNP NNP VBZ VBN JJ NNS IN DT NNP NNP NNP , WP VBD NN IN NNS IN NNP CC VBD DT NN TO VB NN IN JJ NNPS . The Jewish organization 's President Ronald Lauder and its Secretary General Michael Schneider presented their concerns to the pope at a private audience at the Vatican . DT JJ NN POS NNP NNP NNP CC PRP$ NNP NNP NNP NNP VBD PRP$ NNS TO DT NN IN DT JJ NN IN DT NNP . The Jewish leaders noted anxiety over what they said is the continued appearance of instances of anti-Semitism in Europe and Iran . DT JJ NNS VBD NN IN WP PRP VBD VBZ DT JJ NN IN NNS IN NN IN NNP CC NNP . They specifically raised the issue of a Polish priest , accused of broadcasting anti-Semitic views on his influential radio station . PRP RB VBD DT NN IN DT JJ NN , VBN IN VBG JJ NNS IN PRP$ JJ NN NN . The delegation thanked the pontiff for his efforts in building interfaith relations and called building dialogue with moderate Muslim countries important in efforts to secure a peaceful future . DT NN VBD DT NN IN PRP$ NNS IN VBG JJ NNS CC VBD NN NN IN JJ NN NNS JJ IN NNS TO VB DT JJ NN . Delegation members also invited the pontiff to meet with senior Jewish leaders during his trip to New York next year . NNP NNS RB VBD DT NN TO VB IN JJ JJ NNS IN PRP$ NN TO NNP NNP JJ NN . Germany 's Foreign Minister Frank-Walter Steinmeier says there is still time for Iran to agree to talks on its nuclear program and avoid international sanctions . NNP POS NNP NNP NNP NNP VBZ EX VBZ RB NN IN NNP TO VB TO NNS IN PRP$ JJ NN CC VB JJ NNS . Steinmeier told a European radio broadcaster ( Inforadio ) that European Union leaders are set to meet Tuesday to discuss backing sanctions by the U.N. Security Council . NNP VBD DT JJ NN NN LRB NNP RRB IN NNP NNP NNS VBP VBN TO VB NNP TO VB NN NNS IN DT NNP NNP NNP . He called on Iran to agree to suspend enrichment activities , saying that currently there is no possibility for successful talks with Iran . PRP VBD IN NNP TO VB TO VB NN NNS , VBG IN RB EX VBZ DT NN IN JJ NNS IN NNP . Western nations say Iran must suspend enrichment before a new round of negotiations on its nuclear program . JJ NNS VBP NNP MD VB NN IN DT JJ NN IN NNS IN PRP$ JJ NN . Iran has rejected the suspension as a condition for talks . NNP VBZ VBN DT NN IN DT NN IN NNS . U.S. officials say the five permanent members of the Security Council - United States , Britain , Russia , France and China - plus Germany have reached broad agreement on sanctions against Iran . NNP NNS VBP DT CD JJ NNS IN DT NNP NNP : NNP NNP , NNP , NNP , NNP CC NNP : CC NNP VBP VBN JJ NN IN NNS IN NNP . Western nations accuse Iran of seeking nuclear weapons , which Iran denies . JJ NNS VBP NNP IN VBG JJ NNS , WDT NNP VBZ . The Israeli defense minister has approved a proposal to delay a withdrawal from the Gaza Strip by three weeks , clearing the way for top officials to make a final decision on the plan . DT JJ NN NN VBZ VBN DT NN TO VB DT NN IN DT NNP NNP IN CD NNS , VBG DT NN IN JJ NNS TO VB DT JJ NN IN DT NN . Defense Minister Shaul Mofaz previously had sent mixed signals about delaying the pullout from July 20 until after August 14 , when an annual Jewish mourning period ends . NNP NNP NNP NNP RB VBD VBN JJ NNS IN VBG DT NN IN NNP CD IN IN NNP CD , WRB DT JJ JJ NN NN VBZ . But he accepted the delay at a meeting with top officials Thursday . CC PRP VBD DT NN IN DT NN IN JJ NNS NNP . Prime Minister Ariel Sharon told reporters the Gaza pullout will go forward , but he also vowed to build more housing in the West Bank . NNP NNP NNP NNP VBD NNS DT NNP NN MD VB RB , CC PRP RB VBD TO VB JJR NN IN DT NNP NNP . The United States has repeatedly said that such construction violates the internationally-backed peace plan known as the ' road map ' . DT NNP NNP VBZ RB VBN IN JJ NN VBZ DT JJ NN NN VBN IN DT `` NN NN `` . Meanwhile , the Israeli army said Palestinian militants detonated a roadside bomb in Gaza Thursday , wounding one soldier . RB , DT JJ NN VBD JJ NNS VBD DT NN NN IN NNP NNP , VBG CD NN . Iranian officials say an explosion Wednesday near the southwestern port city of Daylam was caused by construction work , and was not a hostile attack . JJ NNS VBP DT NN NNP IN DT JJ JJ NN IN NNP VBD VBN IN NN NN , CC VBD RB DT JJ NN . News of the blast raised concerns , because it was in the same province where Iran and Russia are building a nuclear reactor . NN IN DT NN VBD NNS , IN PRP VBD IN DT JJ NN WRB NNP CC NNP VBP VBG DT JJ NN . However , the blasting site was about 150 kilometers north of the Bushehr nuclear facility . RB , DT VBG NN VBD IN CD NNS RB IN DT NNP JJ NN . Earlier state television reported that residents had seen an aircraft overhead at the time of the blast . RBR NN NN VBD IN NNS VBD VBN DT NN NN IN DT NN IN DT NN . The television channel reported that the explosion may have been caused by a fuel tank dropping from an Iranian airplane . DT NN NN VBD IN DT NN MD VB VBN VBN IN DT NN NN VBG IN DT JJ NN . A top Colombian official says his government will investigate Ecuador 's claim that Colombian military aircraft violated Ecuadorean territory . DT JJ JJ NN VBZ PRP$ NN MD VB NNP POS NN IN JJ JJ NN VBD JJ NN . Deputy Foreign Minister Camilo Reyes said Tuesday his government has received a protest note from Ecuador . NNP NNP NNP NNP NNP VBD NNP PRP$ NN VBZ VBN DT NN NN IN NNP . But he told reporters that the incursion , if it happened , was not premeditated . CC PRP VBD NNS IN DT NN , IN PRP VBD , VBD RB VBN . Reyes noted Colombian military forces have been pursuing leftist rebels in southern Colombia , near the border with Ecuador . NNP VBD JJ JJ NNS VBP VBN VBG JJ NNS IN JJ NNP , IN DT NN IN NNP . Ecuador says Colombian military aircraft and helicopters strayed into Ecuadorean air space Saturday and fired machine guns at targets in Ecuadorean territory . NNP VBZ JJ JJ NN CC NNS VBD IN JJ NN NN NNP CC VBD NN NNS IN NNS IN JJ NN . The Associated Press quotes Ecuador 's Defense Minister , Oswaldo Jarrin as demanding an apology from Colombia . DT NNP NNP VBZ NNP POS NNP NNP , NNP NNP IN VBG DT NN IN NNP . Ecuador has long expressed concern that violence from Colombia 's four-decade war against leftist rebels could spill across the lengthy border separating the two nations . NNP VBZ RB VBN NN IN NN IN NNP POS JJ NN IN JJ NNS MD VB IN DT JJ NN VBG DT CD NNS . NATO said two U.S. soldiers have been killed in a bomb blast in southern Afghanistan . NNP VBD CD NNP NNS VBP VBN VBN IN DT NN NN IN JJ NNP . The NATO-led force released no other details of the incident . DT JJ NN VBN DT JJ NNS IN DT NN . The U.S. military confirmed the soldiers were American . DT NNP NN VBD DT NNS VBD JJ . July has been the deadliest month for international forces in Afghanistan since the Taliban-led government was ousted in 2001 . NNP VBZ VBN DT JJS NN IN JJ NNS IN NNP IN DT JJ NN VBD VBN IN CD . In recent weeks , 4,000 U.S. Marines , along with British and Afghan troops , have launched a major offensive in southern Afghanistan , targeting Taliban insurgents in their traditional strongholds . IN JJ NNS , CD NNP NNPS , IN IN JJ CC JJ NNS , VBP VBN DT JJ NN IN JJ NNP , VBG NNP NNS IN PRP$ JJ NNS . The operation is aimed at ensuring security ahead of Afghanistan 's presidential election next month . DT NN VBZ VBN IN VBG NN RB IN NNP POS JJ NN JJ NN . The United Nations special envoy to Burma says that country 's foreign minister has refused to meet with him on the sidelines of this week 's Association of Southeast Asian Nations ministerial meeting in Laos . DT NNP NNPS JJ NN TO NNP VBZ IN NN POS JJ NN VBZ VBN TO VB IN PRP IN DT NNS IN DT NN POS NNP IN NNP NNP NNP JJ NN IN NNP . Razali Ismail says Foreign Minister Nyan Win told him in a message that he would be ' too busy ' during this week 's conference . NNP NNP VBZ NNP NNP NNP NNP VBD PRP IN DT NN IN PRP MD VB `` RB JJ `` IN DT NN POS NN . Mr. Razali met separately Monday with the foreign ministers of Thailand and the Philippines . NNP NNP VBD RB NNP IN DT JJ NNS IN NNP CC DT NNPS . He is hoping the ASEAN nations can convince Rangoon to let him return to Burma , which he last visited in 2004 . PRP VBZ VBG DT NNP NNS MD VB NN TO VB PRP VB TO NNP , WDT PRP RB VBD IN CD . The UN envoy is pushing for reconciliation between Burma 's military rulers and pro-democracy forces let by Aung San Suu Kyi . DT NNP NN VBZ VBG IN NN IN NNP POS JJ NNS CC JJ NNS VBN IN NNP NNP NNP NNP . Intelogic Trace Inc. , San Antonio , Texas , said it bought 2.7 million shares , or about 18 % , of its common stock from an unaffiliated shareholder for $ 3.625 a share , or $ 9.9 million . NNP NNP NNP , NNP NNP , NNP , VBD PRP VBD CD CD NNS , CC IN CD NN , IN PRP$ JJ NN IN DT JJ NN IN $ CD DT NN , CC $ CD CD . The move boosts Intelogic Chairman Asher Edelman 's stake to 20 % from 16.2 % and may help prevent Martin Ackerman from making a run at the computer-services concern . DT NN VBZ NNP NNP NNP NNP POS NN TO CD NN IN CD NN CC MD VB VB NNP NNP IN VBG DT NN IN DT NNS NN . Mr. Ackerman already is seeking to oust Mr. Edelman as chairman of Datapoint Corp. , an Intelogic affiliate . NNP NNP RB VBZ VBG TO VB NNP NNP IN NN IN NNP NNP , DT NNP NN . The action followed by one day an Intelogic announcement that it will retain an investment banker to explore alternatives ' to maximize shareholder value , ' including the possible sale of the company . DT NN VBN IN CD NN DT NNP NN IN PRP MD VB DT NN NN TO VB NNS `` TO VB NN NN , `` VBG DT JJ NN IN DT NN . In New York Stock Exchange composite trading yesterday , Intelogic shares rose 37.5 cents to close at $ 2.75 . IN NNP NNP NNP NNP JJ NN NN , NNP NNS VBD CD NNS TO VB IN $ CD . Mr. Edelman declined to specify what prompted the recent moves , saying they are meant only to benefit shareholders when ' the company is on a roll . ' NNP NNP VBD TO VB WP VBD DT JJ NNS , VBG PRP VBP VBN RB TO VB NNS WRB `` DT NN VBZ IN DT NN . `` He added , ' This has nothing to do with Marty Ackerman and it is not designed , particularly , to take the company private . ' PRP VBD , `` DT VBZ NN TO VB IN NNP NNP CC PRP VBZ RB VBN , RB , TO VB DT NN JJ . `` But Mr. Ackerman said the buy-back , and the above-market price paid , prove that Mr. Edelman is running scared . CC NNP NNP VBD DT NN , CC DT JJ NN VBD , VB IN NNP NNP VBZ VBG VBN . Some fishing takes place in adjacent waters . DT NN VBZ NN IN JJ NNS . There is a potential source of income from harvesting finfish and krill . EX VBZ DT JJ NN IN NN IN VBG NN CC NN . The islands receive income from postage stamps produced in the UK , sale of fishing licenses , and harbor and landing fees from tourist vessels . DT NNS VBP NN IN JJ NNS VBN IN DT NNP , NN IN NN NNS , CC NN CC NN NNS IN NN NNS . Tourism from specialized cruise ships is increasing rapidly . NNP IN JJ NN NNS VBZ VBG RB . Although ultimately a victor in World Wars I and II , France suffered extensive losses in its empire , wealth , manpower , and rank as a dominant nation-state . IN RB DT NN IN NNP NNP NNP CC NNP , NNP VBD JJ NNS IN PRP$ NN , NN , NN , CC NN IN DT JJ NN . Nevertheless , France today is one of the most modern countries in the world and is a leader among European nations . RB , NNP NN VBZ CD IN DT RBS JJ NNS IN DT NN CC VBZ DT NN IN JJ NNS . Since 1958 , it has constructed a hybrid presidential-parliamentary governing system resistant to the instabilities experienced in earlier more purely parliamentary administrations . IN CD , PRP VBZ VBN DT JJ JJ NN NN JJ TO DT NNS VBN IN JJR RBR RB JJ NNS . In recent decades , its reconciliation and cooperation with Germany have proved central to the economic integration of Europe , including the introduction of a common exchange currency , the euro , in January 1999 . IN JJ NNS , PRP$ NN CC NN IN NNP VBP VBN JJ TO DT JJ NN IN NNP , VBG DT NN IN DT JJ NN NN , DT NN , IN NNP CD . In the early 21st century , five French overseas entities - French Guiana , Guadeloupe , Martinique , Mayotte , and Reunion - became French regions and were made part of France proper . IN DT JJ CD NN , CD JJ JJ NNS IN JJ NNP , NNP , NNP , NNP , CC NNP : VBD JJ NNS CC VBD VBN NN IN NNP JJ . The economy has grown 05-Jun % per year since 1996 despite political instability , poor infrastructure , corruption , insufficient power supplies , and slow implementation of economic reforms . DT NN VBZ VBN CD NN IN NN IN CD IN JJ NN , JJ NN , NN , JJ NN NNS , CC JJ NN IN JJ NNS . Bangladesh remains a poor , overpopulated , and inefficiently-governed nation . NNP VBZ DT NN , VBN , CC JJ NN . Although more than half of GDP is generated through the service sector , 45 % of Bangladeshis are employed in the agriculture sector , with rice as the single-most-important product . IN JJR IN NN IN NN VBZ VBN IN DT NN NN , CD NN IN NNS VBP VBN IN DT NN NN , IN NN IN DT JJ NN . Bangladesh 's growth was resilient during the 2008 - 9 global financial crisis and recession . NNP POS NN VBD JJ IN DT CD : CD JJ JJ NN CC NN . Garment exports , totaling $ 12.3 billion in FY09 and remittances from overseas Bangladeshis , totaling $ 11 billion in FY10 , accounted for almost 25 % of GDP . NNP NNS , VBG $ CD CD IN CD CC NNS IN JJ NNS , VBG $ CD CD IN CD , VBD IN RB CD NN IN NN . Nepal is among the poorest and least developed countries in the world , with almost one-quarter of its population living below the poverty line . NNP VBZ IN DT JJS CC JJS JJ NNS IN DT NN , IN RB NN IN PRP$ NN NN IN DT NN NN . Agriculture is the mainstay of the economy , providing a livelihood for three-fourths of the population and accounting for about one-third of GDP . NNP VBZ DT NN IN DT NN , VBG DT NN IN NNS IN DT NN CC NN IN IN NN IN NN . Industrial activity mainly involves the processing of agricultural products , including pulses , jute , sugarcane , tobacco , and grain . JJ NN RB VBZ DT NN IN JJ NNS , VBG NNS , NN , NN , NN , CC NN . Nepal has considerable scope for exploiting its potential in hydropower , with an estimated 42,000 MW of feasible capacity , but political instability hampers foreign investment . NNP VBZ JJ NN IN VBG PRP$ NN IN NN , IN DT VBN CD NNP IN JJ NN , CC JJ NN NNS JJ NN . Additional challenges to Nepal 's growth include its landlocked geographic location , civil strife and labor unrest , and its susceptibility to natural disaster . JJ NNS TO NNP POS NN VBP PRP$ JJ JJ NN , JJ NN CC NN NN , CC PRP$ NN TO JJ NN . It happened that a Dog had got a piece of meat and was carrying it home in his mouth to eat it in peace . PRP VBD IN DT NNP VBD VBN DT NN IN NN CC VBD VBG PRP NN IN PRP$ NN TO VB PRP IN NN . Now on his way home he had to cross a plank lying across a running brook . RB IN PRP$ NN NN PRP VBD TO VB DT NN VBG IN DT VBG NN . As he crossed , he looked down and saw his own shadow reflected in the water beneath . IN PRP VBD , PRP VBD RB CC VBD PRP$ JJ NN VBN IN DT NN IN . Thinking it was another dog with another piece of meat , he made up his mind to have that also . VBG PRP VBD DT NN IN DT NN IN NN , PRP VBD RP PRP$ NN TO VB DT RB . So he made a snap at the shadow in the water , but as he opened his mouth the piece of meat fell out , dropped into the water and was never seen more . RB PRP VBD DT NN IN DT NN IN DT NN , CC IN PRP VBD PRP$ NN DT NN IN NN VBD RP , VBD IN DT NN CC VBD RB VBN RBR . Beware lest you lose the substance by grasping at the shadow . VB JJS PRP VBP DT NN IN VBG IN DT NN . America and Israel struck a deal to bolster each others Armies . NNP CC NNP VBD DT NN TO VB DT NNS NNS . The Israelis said they would like to exchange three generals for three generals . DT NNS VBD PRP MD VB TO VB CD NNS IN CD NNS . The Americans agreed , stating they wanted an IDF General to teach tactics , an armor General to teach desert warfare , and a Mossad General to teach espionage . DT NNS VBD , VBG PRP VBD DT NNP NNP TO VB NNS , DT NN NNP TO VB NN NN , CC DT NNP NNP TO VB NN . The Israelis replied and said they wanted General Electric , General Motors , and General Dynamics . DT NNS VBD CC VBD PRP VBD NNP NNP , NNP NNPS , CC NNP NNPS . Russian Defense Minister Sergei Ivanov says Moscow will go ahead with a controversial weapons sale to Syria . JJ NNP NNP NNP NNP VBZ NNP MD VB RB IN DT JJ NNS NN TO NNP . Russian news agencies quote Mr. Ivanov as saying Russia will supply Strelets air defense systems to Syria . JJ NN NNS VBP NNP NNP IN VBG NNP MD VB NNS NN NN NNS TO NNP . He said Moscow believes the sale will not disrupt the balance of forces in the region . PRP VBD NNP VBZ DT NN MD RB VB DT NN IN NNS IN DT NN . Mr. Ivanov spoke after meeting with Ukraine 's defense minister , Anatoliy Hrytsenko , in Moscow . NNP NNP VBD IN VBG IN NNP POS NN NN , NNP NNP , IN NNP . Tuesday 's comments come one day before Russian President Vladimir Putin is to travel to Israel . NNP POS NNS VBP CD NN IN JJ NNP NNP NNP VBZ TO VB TO NNP . The Israeli government has expressed concern that the weapons could fall into the hands of terrorists . DT JJ NN VBZ VBN NN IN DT NNS MD VB IN DT NNS IN NNS . Mr. Ivanov also said Moscow theoretically could begin withdrawing from the two remaining Soviet-era bases in Georgia this year if there is an agreement on a date for completing the pullout . NNP NNP RB VBD NNP RB MD VB VBG IN DT CD VBG JJ NNS IN NNP DT NN IN EX VBZ DT NN IN DT NN IN VBG DT NN . Russia 's foreign minister made similar comments Monday . NNP POS JJ NN VBD JJ NNS NNP . Georgia has demanded a quick pullout , while Moscow says it could take years . NNP VBZ VBN DT JJ NN , IN NNP VBZ PRP MD VB NNS . NATO officials say a cargo helicopter chartered by a military contractor is missing in Afghanistan , and that NATO troops are assisting in the search . NNP NNS VBP DT NN NN VBN IN DT JJ NN VBZ VBG IN NNP , CC IN NNP NNS VBP VBG IN DT NN . NATO spokesmen Thursday declined to say where the search is taking place , citing security reasons . NNP NNS NNP VBD TO VB WRB DT NN VBZ VBG NN , VBG NN NNS . The firm Supreme Global Services , which handles catering and logistics , chartered the helicopter . DT NN NNP NNP NNPS , WDT VBZ NN CC NNS , VBD DT NN . It disappeared this week , but there are conflicting reports about which day it went missing . PRP VBD DT NN , CC EX VBP JJ NNS IN WDT NN PRP VBD VBG . Officials in central Afghanistan 's Logar province say there were reports Wednesday night of a helicopter making an emergency landing . NNS IN JJ NNP POS NNP NN VBP EX VBD NNS NNP NN IN DT NN VBG DT NN NN . It was not immediately clear if that was the cargo helicopter reported missing . PRP VBD RB RB JJ IN DT VBD DT NN NN VBD VBG . Venezuela lawmakers have given preliminary approval for a referendum to scrap presidential term limits . NNP NNS VBP VBN JJ NN IN DT NN TO VB JJ NN NNS . The National Assembly debated the constitutional amendment Thursday . DT NNP NNP VBD DT JJ NN NNP . It would allow President Hugo Chavez to run for re-election in 2012 and beyond . PRP MD VB NNP NNP NNP TO VB IN NN IN CD CC IN . Election officials said the referendum on the amendment could be held in March if the lawmakers give their approval on the second reading of the draft amendment in January . NNP NNS VBD DT NN IN DT NN MD VB VBN IN NNP IN DT NNS VBP PRP$ NN IN DT JJ NN IN DT NN NN IN NNP . Government officials said Chavez supporters collected nearly five million signatures to symbolically support the amendment sought by the socialist leader . NN NNS VBD NNP NNS VBD RB CD CD NNS TO RB VB DT NN VBN IN DT JJ NN . Last year , Venezuelans narrowly rejected a broad package of constitutional amendments that lifted term limits for the presidency . JJ NN , NNS RB VBD DT JJ NN IN JJ NNS WDT VBD NN NNS IN DT NN . Mr. Chavez has asked voters to change Venezuela 's constitution to move the country toward what he called 21st century socialism . NNP NNP VBZ VBN NNS TO VB NNP POS NN TO VB DT NN IN WP PRP VBD JJ NN NN . Tens of thousands of people in insurgency-plagued Indian Kashmir voted Saturday in the territory 's first local elections in a quarter-century . NNS IN NNS IN NNS IN JJ JJ NNP VBD NNP IN DT NN POS JJ JJ NNS IN DT NN . Witnesses say large numbers of voters turned out despite freezing weather and the threat of rebel attacks . NNS VBP JJ NNS IN NNS VBD RP IN VBG NN CC DT NN IN NN NNS . Gunmen killed one candidate and wounded two others Friday , but no violence was reported once voting began . NNS VBD CD NN CC VBD CD NNS NNP , CC DT NN VBD VBN RB NN VBD . More than 96,000 people were eligible to cast ballots today in two districts bordering the portion of Kashmir administered by Pakistan . JJR IN CD NNS VBD JJ TO VB NNS NN IN CD NNS VBG DT NN IN NNP VBN IN NNP . Voting for mayors and town council members in other districts will take place during the next two weeks . NN IN NNS CC NN NN NNS IN JJ NNS MD VB NN IN DT JJ CD NNS . Militants who want to drive India out of Kashmir called for a boycott of the election , which they contend is an attempt by New Delhi to show that Kashmir is a legitimate part of India . NNS WP VBP TO VB NNP IN IN NNP VBD IN DT NN IN DT NN , WDT PRP VBP VBZ DT NN IN NNP NNP TO VB DT NNP VBZ DT JJ NN IN NNP . A U.S. helicopter has crashed late Friday in eastern Afghanistan , killing all 10 American soldiers on board . DT NNP NN VBZ VBN JJ NNP IN JJ NNP , VBG DT CD JJ NNS IN NN . U.S. military officials say the crash late Friday occurred during combat operations in Kunar province . NNP JJ NNS VBP DT NN RB NNP VBD IN NN NNS IN NNP NN . The CH-47 Chinook went down about 240 kilometers east of the capital , Kabul , not far from the Pakistan border . DT NNP NNP VBD RB RB CD NNS RB IN DT NN , NNP , RB RB IN DT NNP NN . Military spokeswoman Lieutenant Tamara Lawrence says an investigation is under way to determine the cause of the crash . NNP NN NNP NNP NNP VBZ DT NN VBZ IN NN TO VB DT NN IN DT NN . ' But it is important to note that the crash was not due to any hostile action or enemy fire , ' she said . `` CC PRP VBZ JJ TO VB IN DT NN VBD RB JJ TO DT JJ NN CC NN NN , `` PRP VBD . She says the bodies of all 10 soldiers have been recovered . PRP VBZ DT NNS IN DT CD NNS VBP VBN VBN . More than 2,000 U.S. and Afghan soldiers have been targeting al-Qaida and Taleban insurgents in Kunar province since last month . JJR IN CD NNP CC JJ NNS VBP VBN VBG NNP CC NNP NNS IN NNP NN IN JJ NN . It is one of the largest offensives since the U.S.-led coalition ousted the Taleban from power in 2001 . PRP VBZ CD IN DT JJS NNS IN DT JJ NN VBD DT NNP IN NN IN CD . Syria has rejected Israel 's call to hold unconditional peace talks with Damascus . NNP VBZ VBN NNP POS NN TO VB JJ NN NNS IN NNP . The official Tishrin newspaper said in an editorial Wednesday that Israel 's reported air strike in Syria earlier this month shows that Israel is not interested in peace . DT JJ NNP NN VBD IN DT NN NNP IN NNP POS VBN NN NN IN NNP RBR DT NN VBZ IN NNP VBZ RB JJ IN NN . The editorial also cites Israel 's fighting in Lebanon last year . DT NN RB VBZ NNP POS NN IN NNP JJ NN . Syria has accused Israel of violating its air space and dropping munitions on its territory on September 6 . NNP VBZ VBN NNP IN VBG PRP$ NN NN CC VBG NNS IN PRP$ NN IN NNP CD . The Israeli government has refused to comment on the alleged incident . DT JJ NN VBZ VBN TO VB IN DT JJ NN . On Monday , Israeli Prime Minister Ehud Olmert said Israel is ready to negotiate with Syria without preconditions . IN NNP , JJ NNP NNP NNP NNP VBD NNP VBZ JJ TO VB IN NNP IN NNS . The Syrian newspaper is calling on Israeli officials to show sincerity by resuming negotiations at the point where they broke down in 2000 . DT JJ NN VBZ VBG IN JJ NNS TO VB NN IN VBG NNS IN DT NN WRB PRP VBD RP IN CD . Israel-Syria peace talks collapsed over the Golan Heights . NNP NN NNS VBD IN DT NNP NNP . Israel seized the territory from Syria during the 1967 war . NNP VBD DT NN IN NNP IN DT CD NN . Syria has repeated its willingness to cooperate with the U.N. investigation into the murder of former Lebanese Prime Minister Rafik Hariri . NNP VBZ VBN PRP$ NN TO VB IN DT NNP NN IN DT NN IN JJ JJ NNP NNP NNP NNP . In a statement released Friday , Syrian President Bashar al-Assad said Damascus would ' continue ' to cooperate with the international probe into Mr. Hariri 's assassination . IN DT NN VBN NNP , JJ NNP NNP NNP VBD NNP MD `` VB `` TO VB IN DT JJ NN IN NNP NNP POS NN . The announcement comes hours after Mr. al-Assad held talks with Egyptian President Hosni Mubarak in the Syrian capital . DT NN VBZ NNS IN NNP NNP VBD NNS IN JJ NNP NNP NNP IN DT JJ NN . The U.N. Security Council is expected to resume talks next week on a draft resolution , co-sponsored by the United States , Britain and France , that threatens Syria with sanctions if it does not fully cooperate with the U.N. investigation . DT NNP NNP NNP VBZ VBN TO VB NNS JJ NN IN DT NN NN , VBN IN DT NNP NNPS , NNP CC NNP , WDT VBZ NNP IN NNS IN PRP VBZ RB RB VB IN DT NNP NN . Last week , a U.N. report on the investigation implicated Syrian officials in the assassination of Mr. Hariri . JJ NN , DT NNP NN IN DT NN VBD JJ NNS IN DT NN IN NNP NNP . In Beirut , Hezbollah leader Sheik Hassan Nasrallah said the Shi'ite group would stand by Damascus in the wake of the U.N. report . IN NNP , NNP NN NNP NNP NNP VBD DT NNP NN MD VB IN NNP IN DT NN IN DT NNP NN . Crude oil prices have closed at a record high level in New York in part because of the market 's uncertainty about Iranian policies following that country 's presidential election . JJ NN NNS VBP VBN IN DT NN JJ NN IN NNP NNP IN NN IN IN DT NN POS NN IN JJ NNS VBG IN NN POS JJ NN . Crude oil closed at $ 60.45 a barrel Monday on the New York Mercantile Exchange after hitting a high of $ 60.95 earlier in the day . NNP NN VBD IN $ CD DT NN NNP IN DT NNP NNP NNP NNP IN VBG DT NN IN $ CD RB IN DT NN . New York prices hit a record of 59.85 dollars last Thursday . NNP NNP NNS VBD DT NN IN CD NNS JJ NNP . Market analysts cited investor concerns about a possible worsening of U.S.-Iranian tensions following the election of conservative Mahmoud Ahmadinejad as president last Friday . NN NNS VBD NN NNS IN DT JJ VBG IN JJ NNS VBG DT NN IN JJ NNP NNP IN NN JJ NNP . Market watchers also speculate that oil prices keep climbing because of worries that refineries will struggle to meet a likely increase in demand . NN NNS RB VBP IN NN NNS VBP VBG IN IN NNS IN NNS MD VB TO VB DT JJ NN IN NN . Lebanon has asked foreign experts to help in the investigation of the killing of former Prime Minister Rafik Hariri . NNP VBZ VBN JJ NNS TO VB IN DT NN IN DT NN IN JJ NNP NNP NNP NNP . Judiciary officials say Swiss DNA and explosives experts will be helping with the probe into Monday 's car bombing in Beirut that killed Mr. Hariri and at least 14 others . JJ NNS VBP JJ NN CC NNS NNS MD VB VBG IN DT NN IN NNP POS NN NN IN NNP WDT VBD NNP NNP CC IN JJS CD NNS . Mr. Hariri was laid to rest at a Beirut mosque Wednesday after an emotional and politically charged funeral . NNP NNP VBD VBN TO VB IN DT NNP NN NNP IN DT JJ CC RB VBN NN . Hundreds of thousands of mourners jammed the city for the funeral . NNS IN NNS IN NNS VBD DT NN IN DT NN . Many mourners chanted anti-Syrian slogans . JJ NNS VBD JJ NNS . Lebanese opposition politicians blamed the killing on Syria , the main power broker in Lebanon . JJ NN NNS VBD DT NN IN NNP , DT JJ NN NN IN NNP . Damascus insists it had no role in the murder . NNP VBZ PRP VBD DT NN IN DT NN . U.S. Assistant Secretary of State William Burns has called for the withdrawal of Syria 's 14,000 troops from Lebanon . NNP NNP NNP IN NNP NNP NNP VBZ VBN IN DT NN IN NNP POS CD NNS IN NNP . Washington recalled its ambassador to Syria earlier this week . NNP VBD PRP$ NN TO NNP RBR DT NN . A new poll indicates a majority of both Republicans and Democrats think President Bush should disclose contacts between his staff and disgraced lobbyist Jack Abramoff . DT JJ NN VBZ DT NN IN DT NNPS CC NNPS VBP NNP NNP MD VB NNS IN PRP$ NN CC JJ NN NNP NNP . A Washington Post / ABC poll released Saturday says 76 percent of the 1,000 people surveyed say President Bush should release lists of all meetings between Abramoff and his staff . DT NNP NNP NNP NNP NN VBN NNP VBZ CD NN IN DT CD NNS VBN VBP NNP NNP MD VB NNS IN DT NNS IN NNP CC PRP$ NN . Broken down by party lines , two-thirds of Republicans favored disclosure , as well as eighty percent of Democrats and independents . VBN RB IN NN NNS , NNS IN NNPS VBD NN , RB RB IN CD NN IN NNPS CC NNS . At a news conference Thursday , President Bush said federal prosecutors are welcome to look into those meetings , but he denied knowing Abramoff . IN DT NN NN NNP , NNP NNP VBD JJ NNS VBP JJ TO VB IN DT NNS , CC PRP VBD VBG NNP . Jack Abramoff pleaded guilty to fraud charges earlier this month and agreed to cooperate with a federal corruption probe . NNP NNP VBD JJ TO NN NNS RBR DT NN CC VBD TO VB IN DT JJ NN NN . The poll also found that 56 percent of respondents disapprove of the way President Bush is handling ethics in government . DT NN RB VBD IN CD NN IN NNS NN IN DT NN NNP NNP VBZ VBG NNS IN NN . U.S. military officials say three U.S. service members have been killed by a roadside bomb in southern Afghanistan . NNP JJ NNS VBP CD NNP NN NNS VBP VBN VBN IN DT NN NN IN JJ NNP . Officials made the announcement Wednesday but have not provided any more information . NNS VBD DT NN NNP CC VBP RB VBN DT JJR NN . The bombing comes amid a wave of attacks by Afghan insurgents against U.S. and NATO forces . DT NN VBZ IN DT NN IN NNS IN JJ NNS IN NNP CC NNP NNS . Last month was the deadliest for U.S. forces in Afghanistan since the Taliban-led government was ousted in 2001 . JJ NN VBD DT JJS IN NNP NNS IN NNP IN DT JJ NN VBD VBN IN CD . Violence has risen steadily in Afghanistan in recent years as the Taliban has fought to extend control across wide swaths of the countryside . NN VBZ VBN RB IN NNP IN JJ NNS IN DT NNP VBZ VBN TO VB NN IN JJ NNS IN DT NN . The U.S. military and NATO have deployed a record number of troops to try to help Afghan forces crush the insurgency . DT NNP NN CC NNP VBP VBN DT NN NN IN NNS TO VB TO VB JJ NNS VB DT NN . Officials in Afghanistan say a suicide car bomb attack in the southern city of Kandahar has killed at least eight civilians and wounded at least 25 other people . NNS IN NNP VBP DT NN NN NN NN IN DT JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD JJ NNS . Police say the car bomber targeted a NATO convoy passing through Kandahar . NNS VBP DT NN NN VBD DT NNP NN VBG IN NNP . Three coalition soldiers and two Afghan policemen were among the wounded in Thursday 's blast . CD NN NNS CC CD JJ NNS VBD IN DT VBN IN NNP POS NN . A NATO spokesman declined to give the nationalities of the soldiers . DT NNP NN VBD TO VB DT NNS IN DT NNS . Afghan , NATO and U.S. troops are fighting a resurgent Taliban and other rebels who have strongholds in the southern and eastern parts of the country . JJ , NNP CC NNP NNS VBP VBG DT JJ NNP CC JJ NNS WP VBP NNS IN DT JJ CC JJ NNS IN DT NN . British newspapers say Britain 's terrorist attack threat level has been secretly lowered for the first time since the July 7 bombings in London . JJ NNS VBP NNP POS JJ NN NN NN VBZ VBN RB VBN IN DT JJ NN IN DT NNP CD NNS IN NNP . The Sunday Telegraph and Sunday Times say the decision to lower the security threat level was made Thursday because intelligence agencies had no specific information on possible attacks . DT NNP NNP CC NNP NNP VBP DT NN TO VB DT NN NN NN VBD VBN NNP IN NN NNS VBD DT JJ NN IN JJ NNS . Meanwhile , London police chief Ian Blair says he did not know his officers had killed an innocent Brazilian man at a subway station last month until a full day after the shooting incident . RB , NNP NN NN NNP NNP VBZ PRP VBD RB VB PRP$ NNS VBD VBN DT JJ JJ NN IN DT NN NN JJ NN IN DT JJ NN IN DT NN NN . British authorities have come under increasing criticism for the July 22 killing as conflicting reports emerge about circumstances leading up to the shooting of 27-year-old Jean-Charles de Menezes . JJ NNS VBP VBN IN VBG NN IN DT NNP CD NN IN JJ NNS VBP IN NNS VBG RP TO DT NN IN JJ NNP NNP NNP . Police wrongly suspected the man was a suicide bomber . NNP RB VBD DT NN VBD DT NN NN . Britain 's Home Secretary Charles Clarke has expressed confidence in the way police are handling the investigation . NNP POS NNP NNP NNP NNP VBZ VBN NN IN DT NN NNS VBP VBG DT NN . Canadian Prime Minister Stephen Harper says the country will not pull its troops out of Afghanistan , despite opposition calls for debate on the issue . JJ NNP NNP NNP NNP VBZ DT NN MD RB VB PRP$ NNS IN IN NNP , IN NN NNS IN NN IN DT NN . Mr. Harper said Tuesday , that debating the deployment could weaken the troops and put them in danger . NNP NNP VBD NNP , IN VBG DT NN MD VB DT NNS CC VBD PRP IN NN . Canada has 2,300 troops in Kandahar as part of a NATO mission and was originally scheduled to pull them out after a short time . NNP VBZ CD NNS IN NNP IN NN IN DT NNP NN CC VBD RB VBN TO VB PRP RP IN DT JJ NN . But military officials say the troops ' return likely will be delayed . CC JJ NNS VBP DT NNS POS NN RB MD VB VBN . Over the past week , two Canadian soldiers have died in traffic accidents and another was attacked with an axe . IN DT JJ NN , CD JJ NNS VBP VBN IN NN NNS CC DT VBD VBN IN DT NN . Ten Canadian troops and one diplomat have died in Afghanistan since 2001 . CD JJ NNS CC CD NN VBP VBN IN NNP IN CD . Thousands of Afghan students have held another protest against the reprinting of a Danish cartoon showing the Prophet Muhammad wearing a bomb-shaped turban . NNS IN JJ NNS VBP VBN DT NN IN DT NN IN DT JJ NN VBG DT NNP NNP VBG DT JJ NN . The latest demonstration came Sunday in the eastern city of Jalalabad . DT JJS NN VBD NNP IN DT JJ NN IN NNP . The protesters shouted slogans against Denmark and the Netherlands and denounced an upcoming Dutch film that reportedly criticizes the Koran . DT NNS VBD NNS IN NNP CC DT NNP CC VBD DT JJ JJ NN WDT RB VBZ DT NNP . They also called for Danish and Dutch troops to be expelled from the NATO-led force in Afghanistan . PRP RB VBD IN JJ CC JJ NNS TO VB VBN IN DT JJ NN IN NNP . On Saturday , thousands of people marched through the western city of Herat . IN NNP , NNS IN NNS VBD IN DT JJ NN IN NNP . Muslims consider any depiction of the Prophet Muhammad as blasphemous . NNPS VBP DT NN IN DT NNP NNP IN JJ . The cartoon published in Denmark was one of 12 that led to deadly riots across the Muslim world when they were first published in 2006 . DT NN VBN IN NNP VBD CD IN CD WDT VBD TO JJ NNS IN DT NNP NN WRB PRP VBD JJ VBN IN CD . Several Danish newspapers reprinted the cartoon last month in a show of support for the cartoonist , after police said they had uncovered a plot to kill him . JJ JJ NNS VBD DT NN JJ NN IN DT NN IN NN IN DT NN , IN NNS VBD PRP VBD VBN DT NN TO VB PRP . The leader of the former Soviet republic of Uzbekistan , Islam Karimov , is warning the West not to try to foment revolution in his country . DT NN IN DT JJ JJ NN IN NNP , NNP NNP , VBZ VBG DT NNP RB TO VB TO VB NN IN PRP$ NN . In an address to parliament in Tashkent on Friday , Mr. Karimov said he has enough power to crush any groups who violate Uzbek law . IN DT NN TO NN IN NNP IN NNP , NNP NNP VBD PRP VBZ JJ NN TO VB DT NNS WP VBP JJ NN . Mr. Karimov specifically warned against using the political upheavals in Georgia and Ukraine as a model for Uzbekistan and neighboring Kyrgyzstan . NNP NNP RB VBD IN VBG DT JJ NNS IN NNP CC NNP IN DT NN IN NNP CC JJ NNP . The revolutions in Georgia and Ukraine brought pro-Western leaders to power . DT NNS IN NNP CC NNP VBD JJ NNS TO NN . Uzbekistan has long drawn international criticism for its lack of democratic reforms and a poor human rights record . NNP VBZ RB VBN JJ NN IN PRP$ NN IN JJ NNS CC DT JJ JJ NNS NN . European markets opened mixed Wednesday , following gains in Tokyo and Hong Kong . JJ NNS VBD JJ NNP , VBG NNS IN NNP CC NNP NNP . Markets in London and Paris are up 5 and 6 percent , while Frankfurt is down nearly 2 percent . NNS IN NNP CC NNP VBP IN CD CC CD NN , IN NNP VBZ RB RB CD NN . Tokyo 's Nikkei index rallied late in the day to close up nearly 7.75 percent , following speculation that Japan 's central bank might cut interest rates . NNP POS NNP NN VBD RB IN DT NN TO VB RP RB CD NN , VBG NN IN NNP POS JJ NN MD VB NN NNS . The Hang Seng in Hong Kong finished about one percent higher . DT NNP NNP IN NNP NNP VBD IN CD NN JJR . An announcement by the U.S. central bank on interest rates is expected later Wednesday . DT NN IN DT NNP JJ NN IN NN NNS VBZ VBN RB NNP . Rate cuts reduce the cost of borrowing and can boost economic activity . NN NNS VBP DT NN IN NN CC MD VB JJ NN . On Tuesday in New York , the benchmark Dow Jones Industrial Average jumped nearly 11 percent and other U.S. indexes also gained . IN NNP IN NNP NNP , DT JJ NNP NNP NNP NNP VBD RB CD NN CC JJ NNP NNS RB VBD . The gains recovered some of the losses of previous trading sessions , and follow a series of government efforts to bolster the battered global economy . DT NNS VBD DT IN DT NNS IN JJ NN NNS , CC VB DT NN IN NN NNS TO VB DT JJ JJ NN . A spokesman for the International Security Assistance Force says NATO and Afghan forces have killed about 50 Taleban insurgents in an operation in southern Afghanistan . DT NN IN DT NNP NNP NNP NNP VBZ NNP CC JJ NNS VBP VBN IN CD NNP NNS IN DT NN IN JJ NNP . The NATO spokesman said there were no casualties among NATO and Afghan troops . DT NNP NN VBD EX VBD DT NNS IN NNP CC JJ NNS . The operation began last week in two districts ( Panjwayi and Zhari ) of Kandahar province . DT NN VBD JJ NN IN CD NNS LRB NNP CC NNP RRB IN NNP NN . The spokesman said so far , alliance forces have cleared three villages of Taleban insurgents . DT NN VBD RB RB , NN NNS VBP VBN CD NNS IN NNP NNS . In mid-September , NATO forces carried out another operation in the same area , during which a large number of Taleban were reported killed . IN NNP , NNP NNS VBD RP DT NN IN DT JJ NN , IN WDT DT JJ NN IN NNP VBD VBN VBN . The Taleban are mostly active in southern and eastern parts of Afghanistan , close to the border with Pakistan . DT NNP VBP RB JJ IN JJ CC JJ NNS IN NNP , RB TO DT NN IN NNP . Violence tied to the insurgency has killed at least 4,000 people in 2006 . NN VBN TO DT NN VBZ VBN IN JJS CD NNS IN CD . Afghan President Hamid Karzai says Afghanistan is not a hideout for terrorism , but a victim of it . JJ NNP NNP NNP VBZ NNP VBZ RB DT NN IN NN , CC DT NN IN PRP . During an address Wednesday marking the Muslim festival of Eid al-Adha , Mr. Karzai urged the U.S. and its allies to target terrorists outside of Afghanistan . IN DT NN NNP VBG DT NNP NN IN NNP NNP , NNP NNP VBD DT NNP CC PRP$ NNS TO VB NNS IN IN NNP . The Afghan leader says militants are being trained in sanctuaries and centers outside the country . DT JJ NN VBZ NNS VBP VBG VBN IN NNS CC NNS IN DT NN . He did not name any location , but such comments from Afghan officials usually refer to Pakistan . PRP VBD RB VB DT NN , CC JJ NNS IN JJ NNS RB VBP TO NNP . Mr. Karzai 's comments come as the United States launches a review of its mission and goals in Afghanistan . NNP NNP POS NNS VBP IN DT NNP NNPS VBZ DT NN IN PRP$ NN CC NNS IN NNP . More than 6,000 people have died so far this year , in violence related to a growing Taliban insurgency . JJR IN CD NNS VBP VBN RB RB DT NN , IN NN VBN TO DT VBG NNP NN . Mr. Karzai has reached out to Taliban leaders , asking those not involved with al-Qaida to lay down their weapons and join the government . NNP NNP VBZ VBN RP TO NNP NNS , VBG DT RB VBN IN NNP TO VB RP PRP$ NNS CC VB DT NN . A basketball game between China and visiting Puerto Rico deteriorated into a brawl Friday night in an incident state media termed a bad example by the future Olympic hosts . DT NN NN IN NNP CC VBG NNP NNP VBD IN DT NN NNP NN IN DT NN NN NNS VBD DT JJ NN IN DT JJ NNP NNS . The fighting erupted at Beijing Capital Gymnasium when two Chinese players charged off the bench after seeing teammate Yi Jianlian fouled hard by Puerto Rican center Manuel Narvaez . DT NN VBD IN NNP NNP NNP WRB CD JJ NNS VBD RP DT NN IN VBG NN NNP NNP VBD JJ IN NNP JJ NN NNP NNP . The bad feelings spilled into the stands , where 3,000 home fans hurled insults and missiles . DT JJ NNS VBD IN DT NN , WRB CD NN NNS VBD NNS CC NNS . Officials ended the game as the visitors fled to the locker room , one shielding his head with a plastic chair . NNS VBD DT NN IN DT NNS VBD TO DT NN NN , CD VBG PRP$ NN IN DT NN NN . China 's basketball association deplored the violence as setting a poor example three years before Beijing hosts the summer Olympics . NNP POS NN NN VBD DT NN IN VBG DT JJ NN CD NNS IN NNP VBZ DT NN NNS . The association says it will adopt measures to prevent such violence in the future . DT NN VBZ PRP MD VB NNS TO VB JJ NN IN DT NN . Hundreds of thousands of Cubans have attended a May Day rally in Havana , where a local labor leader encouraged Cubans to stay on the path set out by former President Fidel Castro . NNS IN NNS IN NNS VBP VBN DT NNP NNP NN IN NNP , WRB DT JJ NN NN VBD NNS TO VB IN DT NN VBN RP IN JJ NNP NNP NNP . Many of the marchers wore red T-shirts and waved Cuban flags Thursday as they marched through Revolution Square . NN IN DT NNS VBD JJ NNS CC VBD JJ NNS NNP IN PRP VBD IN NNP NNP . During the rally , President Raul Castro made his first May Day appearance as Cuban leader , but did not speak . IN DT NN , NNP NNP NNP VBD PRP$ JJ NNP NNP NN IN JJ NN , CC VBD RB VB . Since succeeding his older brother in February , Raul Castro has lifted several restrictions on Cubans , including the purchase of cell phones , DVD's and computers . IN VBG PRP$ JJR NN IN NNP , NNP NNP VBZ VBN JJ NNS IN NNS , VBG DT NN IN NN NNS , NNS CC NNS . Cubans are also now able to stay in hotels if they can afford it . NNS VBP RB RB JJ TO VB IN NNS IN PRP MD VB PRP . The average salary is about $ 17 per month . DT JJ NN VBZ RB $ CD IN NN . May Day celebrations are being held around the world . NNP NNP NNS VBP VBG VBN IN DT NN . The annual event marks International Workers Day . DT JJ NN NNS NNP NNP NNP . Condoleezza Rice U.S. Secretary of State Condoleezza Rice has arrived in Chile , the third stop of her five-day Latin American tour . NNP NNP NNP NNP IN NNP NNP NNP VBZ VBN IN NNP , DT JJ NN IN PRP$ JJ JJ JJ NN . Secretary Rice is due to hold separate meetings Thursday with Chilean President Ricardo Lagos and Foreign Minister Ignacio Walker . NNP NNP VBZ JJ TO VB JJ NNS NNP IN JJ NNP NNP NNP CC NNP NNP NNP NNP . She will later join officials from some 140 countries for a two-day meeting in Santiago of the informal Community of Democracies . PRP MD RB VB NNS IN DT CD NNS IN DT JJ NN IN NNP IN DT JJ NN IN NNS . In Colombia on Wednesday , Secretary Rice pledged continued U.S. support for the country 's war against armed insurgents and drug traffickers . IN NNP IN NNP , NNP NNP VBD JJ NNP NN IN DT NN POS NN IN JJ NNS CC NN NNS . She said the Bush administration is asking Congress for more than $ 600 million in security aid for Colombia . PRP VBD DT NNP NN VBZ VBG NNP IN JJR IN $ CD CD IN NN NN IN NNP . Ms. Rice will stop in El Salvador on the final leg of her trip , before flying back to Washington . NNP NNP MD VB IN NNP NNP IN DT JJ NN IN PRP$ NN , IN VBG RB TO NNP . U.S. weather forecasters say Hurricane Stan has slammed into Mexico 's Gulf Coast , hitting the eastern state of Veracruz with high winds and heavy rain . NNP NN NNS VBP NNP NNP VBZ VBN IN NNP POS NNP NNP , VBG DT JJ NN IN NNP IN JJ NNS CC JJ NN . The U.S. National Hurricane Center said Tuesday the storm is now moving southwest with maximum sustained winds of 130 kilometers an hour . DT NNP NNP NNP NNP VBD NNP DT NN VBZ RB VBG JJS IN JJ JJ NNS IN CD NNS DT NN . Forecasters said the storm is centered about 140 minutes southeast of the port city of Veracruz . NNS VBD DT NN VBZ VBN IN CD NNS NN IN DT JJ NN IN NNP . The Mexican government had earlier issued a hurricane warning from Palma Sola in the south to Chilitepic in the east . DT JJ NN VBD RB VBN DT NN NN IN NNP NNP IN DT NN TO NNP IN DT NN . Mexico 's state oil monopoly Pemex - a major oil supplier to the United States - says it has evacuated 270 workers from five oil platforms in the Gulf of Mexico . NNP POS NN NN NN NNP IN DT JJ NN NN TO DT NNP NNPS : VBZ PRP VBZ VBN CD NNS IN CD NN NNS IN DT NNP IN NNP . Stan dumped heavy rains over Central America last week , causing flooding and mudslides that killed at least 31 people in El Salvador and four others in neighboring Guatemala . NNP VBD JJ NNS IN NNP NNP JJ NN , VBG NN CC NNS WDT VBD IN JJS CD NNS IN NNP NNP CC CD NNS IN JJ NNP . Indonesian health officials say seven people from a village in northern Sumatra are being treated for what doctors suspect may be bird flu . JJ NN NNS VBP CD NNS IN DT NN IN JJ NNP VBP VBG VBN IN WP NNS VBP MD VB JJ NN . The villagers come from the same district where bird flu killed seven members of an extended family in May . DT NNS VBP IN DT JJ NN WRB NN NN VBD CD NNS IN DT JJ NN IN NNP . Officials say the suspected new cases include two young siblings and a neighbor 's baby . NNS VBP DT JJ JJ NNS VBP CD JJ NNS CC DT NN POS NN . They have been admitted to a hospital in the city of Medan . PRP VBP VBN VBN TO DT NN IN DT NN IN NNP . Local authorities are carrying out tests on the seven villagers to determine whether they have the dangerous H5N1 strain of the virus . JJ NNS VBP VBG RP NNS IN DT CD NNS TO VB IN PRP VBP DT JJ NNP NN IN DT NN . The previous cluster of bird flu deaths in northern Sumatra was the largest of its kind since the global outbreak began , and raised concerns about human-to-human transmission of the virus . DT JJ NN IN NN NN NNS IN JJ NNP VBD DT JJS IN PRP$ NN IN DT JJ NN VBD , CC VBD NNS IN JJ NN IN DT NN . Indonesia has confirmed 42 deaths from bird flu , tying Vietnam for the world 's highest number of fatalities . NNP VBZ VBN CD NNS IN NN NN , VBG NNP IN DT NN POS JJS NN IN NNS . Oil prices rose above $ 50 a barrel Friday , rebounding from a 3.5 year low as dealers sought to stock up on cheaper oil . NN NNS VBD IN $ CD DT NN NNP , VBG IN DT CD NN JJ IN NNS VBD TO VB RP IN JJR NN . Oil prices on the New York Mercantile Exchange rose to $ 50.65 , up from about $ 49 on Thursday . NN NNS IN DT NNP NNP NNP NNP VBD TO $ CD , RB IN IN $ CD IN NNP . Brent Crude , which trades in London and prices two-thirds of the world 's crude , rose to $ 49.7 . NNP NNP , WDT VBZ IN NNP CC NNS NNS IN DT NN POS NN , VBD TO $ CD . Key benchmarks for crude oil are down almost two-thirds since a July high of more than $ 147 . NNP NNS IN JJ NN VBP RB RB NNS IN DT NNP NN IN JJR IN $ CD . Bloomberg financial news service says sales also increased on speculation that oil-producing OPEC countries will cut production levels when they meet later this month in Cairo . NNP JJ NN NN VBZ NNS RB VBD IN NN IN JJ NNP NNS MD VB NN NNS WRB PRP VBP RB DT NN IN NNP . Last month , the Organization of Petroleum Exporting Countries slashed its official oil output quota by about 1.5 million barrels a day . JJ NN , DT NNP IN NNP NNP NNPS VBD PRP$ JJ NN NN NN IN RB CD CD NNS DT NN . Some analysts say prices will continue to decline in 2009 as the economic slowdown continues . DT NNS VBP NNS MD VB TO VB IN CD IN DT JJ NN VBZ . Interim Iraqi Prime Minister Iyad Allawi says he will more than double the size of Iraq 's army to 1,50,000 troops , in the face of a deadly insurgency that has killed more than 100 Iraqis over the past week alone . NNP JJ NNP NNP NNP NNP VBZ PRP MD RBR IN VB DT NN IN NNP POS NN TO CD NNS , IN DT NN IN DT JJ NN WDT VBZ VBN JJR IN CD NNS IN DT JJ NN RB . In Baghdad , Mr. Allawi said Tuesday he has allocated $ 2.2 billion in this year 's budget to expand the army and upgrade its weaponry . IN NNP , NNP NNP VBD NNP PRP VBZ VBN $ CD CD IN DT NN POS NN TO VB DT NN CC VB PRP$ NN . Meanwhile , violence across Iraq continues . RB , NN IN NNP VBZ . Abu Musab al-Zarqawi 's terrorist network claimed responsibility for a car bomb attack in Tikrit that killed six policemen and wounded several others . NNP NNP NNP POS JJ NN VBD NN IN DT NN NN NN IN NNP WDT VBD CD NNS CC VBD JJ NNS . In an area known as the ' triangle of death ' south of Baghdad , a roadside bomb exploded , killing at least seven people in a passing minibus . IN DT NN VBN IN DT `` NN IN NN `` NN IN NNP , DT NN NN VBD , VBG IN JJS CD NNS IN DT NN NN . And following an explosion , firefighters battled a pipeline fire north of the capital . CC VBG DT NN , NNS VBD DT NN NN NN IN DT NN . U.S. military officials say the United States will dispatch up to 1,500 Marines and a ship carrying 20 helicopters to Sri Lanka to help relief efforts in areas devastated by last Sunday 's tsunami . NNP JJ NNS VBP DT NNP NNPS MD VB RP TO CD NNS CC DT NN VBG CD NNS TO NNP NNP TO VB NN NNS IN NNS VBN IN JJ NNP POS NN . A U.S. spokesman in Colombo said the first contingent of 200 Marines will arrive in Sri Lanka shortly from a base in Okinawa , Japan . DT NNP NN IN NNP VBD DT JJ NN IN CD NNS MD VB IN NNP NNP RB IN DT NN IN NNP , NNP . He said the Marines will operate from an offshore platform south of the port city of Galle . PRP VBD DT NNPS MD VB IN DT JJ NN NN IN DT JJ NN IN NNP . Meanwhile , flash floods in eastern Sri Lanka are hampering relief efforts . RB , NN NNS IN JJ NNP NNP VBP VBG NN NNS . Local officials say heavy rains forced the evacuation of thousands of people already affected by the tsunami . JJ NNS VBP JJ NNS VBD DT NN IN NNS IN NNS RB VBN IN DT NN . Aid convoys continue to have difficulty reaching some of the hardest-hit areas . NNP NNS VBP TO VB NN VBG DT IN DT JJ NNS . Nearly one million Sri Lankans have been displaced and are living in temporary camps . RB CD CD NNP NNPS VBP VBN VBN CC VBP VBG IN JJ NNS . The nationwide death toll is approaching 29,000 . DT JJ NN NN VBZ VBG CD . The husband of Iraqi aid worker Margaret Hassan has asked Islamic militants to return his wife 's body to him so that she can , in his words , rest in peace . DT NN IN JJ NN NN NNP NNP VBZ VBN NNP NNS TO VB PRP$ NN POS NN TO PRP RB IN PRP MD , IN PRP$ NNS , NN IN NN . Tahseen Hassan spoke Wednesday after the al-Jazeera television network obtained a video that appears to show the murder of Mrs. Hassan . NNP NNP VBD NNP IN DT JJ NN NN VBD DT NN WDT VBZ TO VB DT NN IN NNP NNP . Britain 's Prime Minister Tony Blair called the apparent killing of the British-born humanitarian an abhorrent act . NNP POS NNP NNP NNP NNP VBD DT JJ NN IN DT JJ NN DT JJ NN . Poul Nielsen , A top European Union Development official , said her abduction and killing make it almost impossible for relief agencies to continue working in Iraq . NNP NNP , DT JJ NNP NNP NNP NN , VBD PRP$ NN CC VBG VB PRP RB JJ IN NN NNS TO VB VBG IN NNP . Mrs. Hassan spent 30 years caring for Iraq 's poorest citizens , particularly children . NNP NNP VBD CD NNS VBG IN NNP POS JJS NNS , RB NNS . She was the head of the CARE International humanitarian group in Iraq , and a vocal opponent of the U.S.-led invasion . PRP VBD DT NN IN DT NNP NNP JJ NN IN NNP , CC DT JJ NN IN DT JJ NN . Her abduction last month was widely condemned by Iraqi civilians and Islamic groups . PRP$ NN JJ NN VBD RB VBN IN JJ NNS CC JJ NNS . Iraqi President Jalal Talabani says Baghdad has ordered light military equipment from China because the United States is unable to provide them and is too slow to deliver arms shipments . JJ NNP NNP NNP VBZ NNP VBZ VBN JJ JJ NN IN NNP IN DT NNP NNPS VBZ JJ TO VB PRP CC VBZ RB JJ TO VB NNS NNS . Mr. Talabani told the Washington Post Wednesday that the weapons , worth $ 100 million , are intended for Iraq 's police force . NNP NNP VBD DT NNP NNP NNP IN DT NNS , JJ $ CD CD , VBP VBN IN NNP POS NN NN . He said U.S. factories do not have the capacity to meet Baghdad 's requirements . PRP VBD NNP NNS VBP RB VB DT NN TO VB NNP POS NNS . Mr. Talabani , who was in Washington for talks with President Bush , also called for faster deliveries of U.S. weapons to strengthen the Iraqi army . NNP NNP , WP VBD IN NNP IN NNS IN NNP NNP , RB VBD IN JJR NNS IN NNP NNS TO VB DT JJ NN . U.S. officials have acknowledged that Washington faced problems delivering everything Iraq needed . NNP NNS VBP VBN IN NNP VBD NNS VBG DT NNP VBD . But they also point out that Iraqi security forces have been unable to account for nearly 2,00,000 U.S. supplied weapons . CC PRP RB VBP RP IN JJ NN NNS VBP VBN JJ TO VB IN RB CD NNP VBN NNS . It is feared that many of those weapons might have gone to various insurgent and militia groups seeking to destabilize Iraq and target U.S. troops . PRP VBZ VBN IN NN IN DT NNS MD VB VBN TO JJ NN CC NN NNS VBG TO VB NNP CC VB NNP NNS . A new poll in Kenya indicates more than 60 percent of Kenyans will vote in favor of a new constitution next month . DT JJ NN IN NNP VBZ JJR IN CD NN IN NNS MD VB IN NN IN DT JJ NN JJ NN . The poll shows 62 percent of voters want a new constitution , with 20 percent opposed . DT NN VBZ CD NN IN NNS VBP DT JJ NN , IN CD NN VBN . Of those in favor of the new constitution , most said it needs some amendments . IN DT IN NN IN DT JJ NN , RBS VBD PRP VBZ DT NNS . The random survey of 3,000 Kenyans ( by Strategic Research ) also found 18 percent of voters are still undecided . DT JJ NN IN CD NNS LRB IN NNP NNP RRB RB VBD CD NN IN NNS VBP RB JJ . The proposed constitution grew out of the 2008 power-sharing deal between President Mwai Kibaki and Prime Minister Raila Odinga after a disputed election triggered riots and ethnic violence across Kenya . DT VBN NN VBD IN IN DT CD JJ NN IN NNP NNP NNP CC NNP NNP NNP NNP IN DT JJ NN VBD NNS CC JJ NN IN NNP . Some 1,300 people were killed before the violence was brought under control . DT CD NNS VBD VBN IN DT NN VBD VBN IN NN . The city of Fort Wayne in the midwestern state of Indiana is home to one of the largest Burmese immigrant and refugee communities in the United States . DT NN IN NNP NNP IN DT JJ NN IN NNP VBZ NN TO CD IN DT JJS JJ NN CC NN NNS IN DT NNP NNPS . Now , the community is struggling to deal with the aftermath of a devastating cyclone that has affected most of their families in Burma . RB , DT NN VBZ VBG TO VB IN DT NN IN DT JJ NN WDT VBZ VBN JJS IN PRP$ NNS IN NNP . VOA 's Kane Farabaugh traveled to Fort Wayne . NNP POS NNP NNP VBD TO NNP NNP . He reports that the biggest challenge for many Burmese in the United States is learning the fate of their loved ones . PRP VBZ IN DT JJS NN IN JJ NNS IN DT NNP NNPS VBZ VBG DT NN IN PRP$ VBN NNS . President Bush met at the White House Monday with Burmese human rights activist Charm Tong . NNP NNP VBD IN DT NNP NNP NNP IN JJ JJ NNS NN NNP NNP . In an interview with Voice of America 's Burmese service , Charm Tong said she expressed her concerns to President Bush about what she called the desperate human rights situation in Burma -- including forced labor and extra judicial killings . IN DT NN IN NNP IN NNP POS JJ NN , NNP NNP VBD PRP VBD PRP$ NNS TO NNP NNP IN WP PRP VBD DT JJ JJ NNS NN IN NNP : VBG VBN NN CC JJ JJ NNS . Charm Tong said the president was very concerned and asked what the United States could do to help . NNP NNP VBD DT NN VBD RB JJ CC VBD WP DT NNP NNPS MD VB TO VB . Charm Tong , a 23-year-old ethnic Shan , fled to Thailand as a small child to escape ethnic persecution in Burma . NNP NNP , DT JJ JJ NNP , VBD TO VB IN DT JJ NN TO VB JJ NN IN NNP . She has co-founded a network of human rights monitors on the Thai-Burmese border and established a school for other Shan refugees . PRP VBZ VBN DT NN IN JJ NNS NNS IN DT JJ NN CC VBN DT NN IN JJ NNP NNS . Charm Tong was among four Burmese women nominated this year for the Nobel Peace Prize and was awarded the Reebok Human Rights Award given to young people who risk personal safety to fight injustice . NNP NNP VBD IN CD JJ NNS VBN DT NN IN DT NNP NNP NNP CC VBD VBN DT NNP NNP NNP NNP VBN TO JJ NNS WP VBP JJ NN TO VB NN . The U.S. military says two American pilots were killed in a military helicopter crash in northern Iraq , which was likely caused by hostile fire . DT NNP NN VBZ CD JJ NNS VBD VBN IN DT JJ NN NN IN JJ NNP , WDT VBD JJ VBN IN JJ NN . A U.S. commander in Iraq , Lieutenant General John Vines , said the aircraft was lost near Mosul , and indicators point to hostile fire as the cause of the crash . DT NNP NN IN NNP , NNP NNP NNP NNP , VBD DT NN VBD VBN IN NNP , CC NNS NN TO JJ NN IN DT NN IN DT NN . Thursday , the U.S. military predicted an increase in insurgent attacks as the newly elected Iraqi government forms , and final results from last month 's general elections are released . NNP , DT NNP NN VBD DT NN IN JJ NNS IN DT RB VBN JJ NN NNS , CC JJ NNS IN JJ NN POS JJ NNS VBP VBN . Brigadier-General Don Alston said insurgents may use Iraq 's transition to a new government as an opportunity to try to derail the democratic process . JJ NNP NNP VBD NNS MD VB NNP POS NN TO DT JJ NN IN DT NN TO VB TO VB DT JJ NN . Ivorian opposition leader Alassane Ouattara says he will return to Ivory Coast from exile in France to run for president of the west African nation . JJ NN NN NNP NNP VBZ PRP MD VB TO NNP NNP IN NN IN NNP TO VB IN NN IN DT JJ JJ NN . In an interview published Sunday by a French newspaper , Nord Eclair , the former prime minister said he would stand for office as head of the ' Rally for Republicans ' party . IN DT NN VBN NNP IN DT JJ NN , NNP NNP , DT JJ JJ NN VBD PRP MD VB IN NN IN NN IN DT `` NNP IN NNPS `` NN . Ouattara was prevented from running for president in 2000 because of questions about his citizenship . NNP VBD VBN IN VBG IN NN IN CD IN IN NNS IN PRP$ NN . He left Ivory Coast in 2002 for self-imposed exile in France . PRP VBD NNP NNP IN CD IN JJ NN IN NNP . The government of Ivory Coast accuses Ouattara of backing rebels who control the northern half of the country . DT NN IN NNP NNP VBZ NNP IN VBG NNS WP VBP DT JJ NN IN DT NN . No date has been set for the presidential election , but it is expected to be held before the end of October . DT NN VBZ VBN VBN IN DT JJ NN , CC PRP VBZ VBN TO VB VBN IN DT NN IN NNP . The body of a young Brazilian man has arrived in Brazil six days after he was gunned down by London police who mistook him for a terror suspect . DT NN IN DT JJ JJ NN VBZ VBN IN NNP CD NNS IN PRP VBD VBN RP IN NNP NNS WP VBD PRP IN DT NN NN . The remains of Jean Charles de Menezes arrived Thursday at an airport in his home state of Minas Gerais . DT NNS IN NNP NNP NNP NNP VBD NNP IN DT NN IN PRP$ NN NN IN NNP NNP . The Brazilian Air Force then flew his casket to Gobernador Valadares , where mourners gathered to pay their respects . DT JJ NNP NNP RB VBD PRP$ NN TO NNP NNP , WRB NNS VBD TO VB PRP$ NNS . The 27-year-old electrician 's funeral is to be held on Friday . DT JJ NN POS NN VBZ TO VB VBN IN NNP . Earlier this week , a group of people mostly linked to leftist parties and movements gathered outside the British embassy in Brazil to protest the killing . RBR DT NN , DT NN IN NNS RB VBN TO JJ NNS CC NNS VBD IN DT JJ NN IN NNP TO VB DT NN . British Prime Minister Tony Blair has publicly apologized and pledged to investigate the shooting incident . JJ JJ NN NNP NNP VBZ RB VBN CC VBN TO VB DT NN NN . The top human rights court in Latin America has upheld the conviction of Lori Berenson , a U.S. woman who has been imprisoned in Peru for terrorist collaboration . DT JJ JJ NNS NN IN NNP NNP VBZ VBN DT NN IN NNP NNP , DT NNP NN WP VBZ VBN VBN IN NNP IN JJ NN . President Alejandro Toledo Thursday welcomed the decision of the Inter-American Court of Human Rights . NNP NNP NNP NNP VBD DT NN IN DT JJ NNP IN NNP NNP . Berenson had appealed to the court after the Peruvian Supreme Court upheld her conviction . NNP VBD VBN TO DT NN IN DT JJ NNP NNP VBD PRP$ NN . Her family and lawyers argued that she had not been given a fair trial . PRP$ NN CC NNS VBD IN PRP VBD RB VBN VBN DT JJ NN . Berenson was arrested in 1995 and accused of involvement in a failed attempt by the rebel Tupac Amaru Revolutionary Movement to seize Peru 's Congress . NNP VBD VBN IN CD CC VBN IN NN IN DT VBN NN IN DT NN NNP NNP NNP NNP TO VB NNP POS NNP . She has maintained her innocence . PRP VBZ VBN PRP$ NN . The U.S. Air Force says it will send 300 airmen home from Iraq and Afghanistan to help their families cope with emergencies from devastating Hurricane Katrina . DT NNP NNP NNP VBZ PRP MD VB CD NNS NN IN NNP CC NNP TO VB PRP$ NNS VB IN NNS IN JJ NNP NNP . A military spokesman said Saturday the airmen - all based at Keesler Air Base in Biloxi , Mississippi - would begin flying home over the next two weeks . DT JJ NN VBD NNP DT NNS IN DT VBN IN NNP NNP NNP IN NNP , NNP : MD VB VBG NN IN DT JJ CD NNS . The group includes personnel who were scheduled to rotate home in September and others whose deployments would be cut short . DT NN VBZ NNS WP VBD VBN TO VB NN IN NNP CC NNS WP$ NNS MD VB VBN JJ . Hurricane Katrina did serious damage to Keesler Air Base , wiping out much of its housing and infrastructure . NNP NNP VBD JJ NN TO NNP NNP NNP , VBG RP RB IN PRP$ NN CC NN . An open microphone at Monday 's lunch of Group of Eight leaders recorded President Bush speaking bluntly about the situation in the Middle East . DT JJ NN IN NNP POS NN IN NNP IN CD NNS VBD NNP NNP VBG RB IN DT NN IN DT NNP NNP . While he thought he was talking privately with British Prime Minister Tony Blair , the microphone picked up Mr. Bush using an expletive to describe Hezbollah 's attacks on Israel . IN PRP VBD PRP VBD VBG RB IN JJ NNP NNP NNP NNP , DT NN VBD RP NNP NNP VBG DT NN TO VB NNP POS NNS IN NNP . Mr. Blair realized the microphone was on and quickly turned it off . NNP NNP VBD DT NN VBD IN CC RB VBD PRP RP . White House spokesman Tony Snow says Mr. Bush rolled his eyes and laughed when he was told his private comments were recorded . NNP NNP NN NNP NNP VBZ NNP NNP VBD PRP$ NNS CC VBD WRB PRP VBD VBN PRP$ JJ NNS VBD VBN . A court in central Russia has convicted a scientist on charges of illegally selling technology abroad that authorities say could be used in weapons . DT NN IN JJ NNP VBZ VBN DT NN IN NNS IN RB VBG NN RB IN NNS VBP MD VB VBN IN NNS . The Bashkortostan Supreme Court sentenced academic Oskar Kaibyshev Tuesday to a six-year suspended prison term . DT NNP NNP NNP VBD JJ NNP NNP NNP TO DT JJ JJ NN NN . It also fined him $ 1,30,000 and barred him from heading research teams for the next three years . PRP RB VBD PRP $ CD CC VBD PRP IN VBG NN NNS IN DT JJ CD NNS . The 67-year-old Kaibyshev has steadfastly maintained his innocence . DT JJ NNP VBZ RB VBN PRP$ NN . He claimed the technology developed at a research institute that he headed had already been patented in the United States and other countries . PRP VBD DT NN VBN IN DT NN NN IN PRP VBD VBD RB VBN VBN IN DT NNP NNPS CC JJ NNS . Defense lawyers say they will appeal . NN NNS VBP PRP MD VB . Russia 's Interfax news agency quotes veteran human rights activist Lyudmila Alekseyeva as saying she is grateful for Kaibyshev 's suspended sentence . NNP POS NNP NN NN VBZ JJ JJ NNS NN NNP NNP IN VBG PRP VBZ JJ IN NNP POS JJ NN . However , she called the verdict ' outrageous . ' RB , PRP VBD DT NN `` JJ . `` She said she believes that Russian security officials framed the scientist . PRP VBD PRP VBZ IN JJ NN NNS VBD DT NN . Police in northwestern Pakistan say a suicide bomber detonated his explosives-laden vehicle near a checkpoint Wednesday , wounding four soldiers . NNS IN JJ NNP VBP DT NN NN VBD PRP$ JJ NN IN DT NN NNP , VBG CD NNS . Only the attacker was killed in this blast in the town of Bannu , in volatile North West Frontier province . RB DT NN VBD VBN IN DT NN IN DT NN IN NNP , IN JJ NNP NNP NNP NN . The assembly rewriting Ecuador 's constitution is meeting Thursday to debate the new charter that would grant President Rafael Correa broad powers . DT NN VBG NNP POS NN VBZ VBG NNP TO VB DT JJ NN WDT MD VB NNP NNP NNP JJ NNS . The assembly has been working on the changes since November . DT NN VBZ VBN VBG IN DT NNS IN NNP . If the new constitution is approved , voters will decide in September whether to adopt it . IN DT JJ NN VBZ VBN , NNS MD VB IN NNP IN TO VB PRP . President Correa has said the constitution should be changed to limit the power of Ecuador 's major political parties . NNP NNP VBZ VBN DT NN MD VB VBN TO VB DT NN IN NNP POS JJ JJ NNS . The proposed constitution also would allow Mr. Correa to seek re-election to a new four-year term . DT VBN NN RB MD VB NNP NNP TO VB NN TO DT JJ JJ NN . Separately , it would transfer to the president functions currently performed by the Central Bank . RB , PRP MD VB TO DT NN NNS RB VBN IN DT NNP NNP . Earlier this week , the Constitutional Assembly announced that the Central Bank president , Robert Andrade , resigned but gave no reason for his decision . RBR DT NN , DT NNP NNP VBD IN DT NNP NNP NN , NNP NNP , VBD CC VBD DT NN IN PRP$ NN . United Nations monitors say the Sudanese military is indiscriminately bombing villages in the north Darfur region , killing and injuring scores of civilians . NNP NNP NNS VBP DT JJ NN VBZ RB VBG NNS IN DT JJ NNP NN , VBG CC VBG NNS IN NNS . A spokesman , Jose Diaz , for the U.N. High Commissioner on Human Rights says Friday government bombing raids have forced hundreds of civilians in north Darfur to flee their homes . DT NN , NNP NNP , IN DT NNP NNP NNP IN NNP NNP VBZ NNP NN VBG NNS VBP VBN NNS IN NNS IN JJ NNP TO VB PRP$ NNS . He says a new report shows the government is waging a campaign against rebel groups who have not signed a peace agreement . PRP VBZ DT JJ NN VBZ DT NN VBZ VBG DT NN IN JJ NNS WP VBP RB VBN DT NN NN . U.N. monitors also report ongoing sexual violence and rape of women who venture outside their villages to seek food or firewood in south Darfur , particularly near the village of Gereida . NNP NNS RB VBP JJ JJ NN CC NN IN NNS WP VBP IN PRP$ NNS TO VB NN CC NN IN JJ NNP , RB IN DT NN IN NNP . The U.N. report says the alleged incidents took place earlier this month in the troubled region . DT NNP NN VBZ DT JJ NNS VBD NN RBR DT NN IN DT JJ NN . Some 2,00,000 people have been killed in Darfur since the start of fighting three years ago . DT CD NNS VBP VBN VBN IN NNP IN DT NN IN VBG CD NNS RB . U.S. Secretary of State Colin Powell and United Nations Secretary-General Kofi Annan met in Washington Thursday , for talks that focused mainly on Iraq . NNP NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP VBD IN NNP NNP , IN NNS WDT VBD RB IN NNP . Speaking to reporters after the meeting , Mr. Annan said U.N. efforts to help Iraq prepare for upcoming elections are ' on track . ' VBG TO NNS IN DT NN , NNP NNP VBD NNP NNS TO VB NNP VB IN JJ NNS VBP `` IN NN . `` Mr. Annan has said he will boost the number of U.N. staffers in Iraq , most of whom he withdrew last year after the bombing of the U.N. headquarters in Baghdad . NNP NNP VBZ VBN PRP MD VB DT NN IN NNP NNS IN NNP , JJS IN WP PRP VBD JJ NN IN DT NN IN DT NNP NN IN NNP . Mr. Powell said the United States ' has confidence ' in the secretary-general , who has come under fire for scandals that plagued the U.N. oil-for-food program for Iraq . NNP NNP VBD DT NNP NNPS `` VBZ NN `` IN DT JJ , WP VBZ VBN IN NN IN NNS WDT VBD DT NNP NN NN IN NNP . The two men said their talks also covered Afghanistan , Sudan and Haiti . DT CD NNS VBD PRP$ NNS RB VBD NNP , NNP CC NNP . Mr. Annan meets next with Condoleezza Rice , who President Bush has nominated to be Mr. Powell 's successor . NNP NNP VBZ JJ IN NNP NNP , WP NNP NNP VBZ VBN TO VB NNP NNP POS NN . Later , he speaks to an independent group , the Council on Foreign Relations . RB , PRP VBZ TO DT JJ NN , DT NNP IN NNP NNP . Tropical Storm Katrina has been upgraded to a hurricane as it bears down on the southeastern U.S. state of Florida , on a path toward cities along the Atlantic coast . JJ NN NNP VBZ VBN VBN TO DT NN IN PRP VBZ RP IN DT JJ NNP NN IN NNP , IN DT NN IN NNS IN DT NNP NN . At last report , the 11th named storm of this year 's Atlantic hurricane season was 40 kilometers east-northeast of Fort Lauderdale , a popular destination for tourists . IN JJ NN , DT JJ VBN NN IN DT NN POS NNP NN NN VBD CD NNS NN IN NNP NNP , DT JJ NN IN NNS . Katrina had winds of 120 kilometers per hour . NNP VBD NNS IN CD NNS IN NN . Many Florida residents are stocking up on gasoline , water and other supplies in preparation for the storm , which formed Wednesday over the Bahamas . JJ NNP NNS VBP VBG RP IN NN , NN CC JJ NNS IN NN IN DT NN , WDT VBD NNP IN DT NNPS . Katrina is expected to make landfall late Thursday or early Friday . NNP VBZ VBN TO VB NN JJ NNP CC JJ NNP . Forecasters warn the storm could dump several centimeters of rain in spots as it moves over the state toward the Gulf of Mexico . NNS VBP DT NN MD VB JJ NNS IN NN IN NNS IN PRP VBZ IN DT NN IN DT NNP IN NNP . Egypt is holding talks in Cairo with Palestinian militant leaders , as part of a push to strengthen Palestinian support for a de~facto ceasefire with Israel . NNP VBZ VBG NNS IN NNP IN JJ JJ NNS , IN NN IN DT NN TO VB JJ NN IN DT JJ NN IN NNP . The talks are taking place as Egypt prepares to host an Israeli-Palestinian summit aimed at formalizing the truce and re-starting talks on the internationally brokered road map peace plan . DT NNS VBP VBG NN IN NNP VBZ TO VB DT JJ NN VBN IN VBG DT NN CC JJ NNS IN DT RB VBN NN NN NN NN . Militant sources say Hamas leader Khaled Meshaal and Islamic Jihad leader Ramadan Shallah were both meeting Wednesday with Egyptian negotiators . JJ NNS VBP NNP NN NNP NNP CC NNP NNP NN NNP NNP VBD DT NN NNP IN JJ NNS . Egypt has not commented on the talks . NNP VBZ RB VBN IN DT NNS . Venezuela 's President Hugo Chavez has defended his plan to pass legislation by decree , calling U.S. reservations about his actions unacceptable meddling in Venezuela 's affairs . NNP POS NNP NNP NNP VBZ VBN PRP$ NN TO VB NN IN NN , VBG NNP NNS IN PRP$ NNS JJ NN IN NNP POS NNS . Mr. Chavez cursed at U.S. officials in a Sunday broadcast saying Venezuela is exercising the legal authority of a free nation . NNP NNP VBD IN NNP NNS IN DT NNP NN VBG NNP VBZ VBG DT JJ NN IN DT JJ NN . On Friday , U.S. State Department spokesman Tom Casey said Mr. Chavez 's plan to rule by decree is an odd proposal in a democratic system . IN NNP , NNP NNP NNP NN NNP NNP VBD NNP NNP POS NN TO VB IN NN VBZ DT JJ NN IN DT JJ NN . Venezuela 's legislature is expected this week to give Mr. Chavez the power to rule by decree for 18 months . NNP POS NN VBZ VBN DT NN TO VB NNP NNP DT NN TO VB IN NN IN CD NNS . During his inauguration address earlier this month , Mr. Chavez said he will seek to amend the constitution to allow unlimited consecutive presidential terms . IN PRP$ NN NN RBR DT NN , NNP NNP VBD PRP MD VB TO VB DT NN TO VB JJ JJ JJ NNS . Opposition lawmakers accuse the president of moving Venezuela toward a totalitarian form of government that resembles Cuba . NNP NNS VBP DT NN IN VBG NNP IN DT JJ NN IN NN WDT VBZ NNP . Chinese officials say the world 's oldest panda in captivity has died at the age of 36 . JJ NNS VBP DT NN POS JJS NN IN NN VBZ VBN IN DT NN IN CD . Mei Mei passed away Tuesday at the zoo in the southwestern city of Guilin , where she had lived for the last 20 years . NNP NNP VBD RP NNP IN DT NN IN DT JJ NN IN NNP , WRB PRP VBD VBN IN DT JJ CD NNS . Experts say Mei Mei 's age made her the equivalent of more than 100 in human years . NNS VBP NNP NNP POS NN VBD PRP$ DT NN IN JJR IN CD IN JJ NNS . Mei Mei 's death came on the same day that Chinese media reported the birth of a second set of rare twin panda cubs at the Wolong panda reserve in the southwest province of Sichuan . NNP NNP POS NN VBD IN DT JJ NN IN JJ NNS VBD DT NN IN DT JJ NN IN JJ JJ NN NNS IN DT NNP NN NN IN DT JJS NN IN NNP . Russia says a third round of talks with the United States on reducing their nuclear arsenals will take place in Geneva on June 23 and 24 . NNP VBZ DT JJ NN IN NNS IN DT NNP NNPS IN VBG PRP$ JJ NNS MD VB NN IN NNP IN NNP CD CC CD . Russian Foreign Ministry spokesman Andrei Nesterenko said Thursday that President Dmitri Medvedev and his U.S. counterpart Barack Obama are hoping to announce the talks ' progress when Mr. Obama visits Moscow in early July . JJ NNP NNP NN NNP NNP VBD NNP IN NNP NNP NNP CC PRP$ NNP NN NNP NNP VBP VBG TO VB DT NNS POS NN WRB NNP NNP VBZ NNP IN JJ NNP . The goal of the talks is to replace the 1991 Strategic Arms Reduction Treaty ( START I ) before it expires on December 5 . DT NN IN DT NNS VBZ TO VB DT CD NNP NNP NNP NNP LRB NNP NNP RRB IN PRP VBZ IN NNP CD . Nestrenko told reporters the negotiations were proceeding in a ' constructive ' manner . NNP VBD NNS DT NNS VBD VBG IN DT `` JJ `` NN . START I led to major reductions in the U.S. and Russian nuclear arsenal at the end of the Cold War . NNP NNP VBD TO JJ NNS IN DT NNP CC JJ JJ NN IN DT NN IN DT NNP NNP . Talks of finding a new agreement had made little progress under the administration of former U.S. President George W. Bush . NNS IN VBG DT JJ NN VBD VBN JJ NN IN DT NN IN JJ NNP NNP NNP NNP NNP . Iranian state media say Iran has arrested seven people linked to U.S.-funded Radio Farda and has accused some of working for U.S. spy agencies . JJ NN NNS VBP NNP VBZ VBN CD NNS VBN TO JJ NN NNP CC VBZ VBN DT IN VBG IN NNP NN NNS . The official new agency IRNA says the seven are suspected of provoking protesters during the violent anti-government demonstration last December . DT JJ JJ NN NNP VBZ DT CD VBP VBN IN VBG NNS IN DT JJ NN NN JJ NNP . At least eight people died on Ashura , the day of ritual Shi'ite Muslim mourning , after clashes broke out between security forces and opposition supporters . IN JJS CD NNS VBD IN NNP , DT NN IN JJ NNP NNP NN , IN NNS VBD RP IN NN NNS CC NN NNS . IRNA did not identify those arrested . NNP VBD RB VB DT VBN . Radio Farda is a Farsi-language broadcast service based in Prague , Czech Republic , and funded by the U.S. government . NNP NNP VBZ DT JJ NN NN VBN IN NNP , JJ NNP , CC VBN IN DT NNP NN . The arrests come as Iran is beginning to mark the 31st anniversary of the 1979 Islamic revolution that toppled the U.S.-backed shah . DT NNS VBP IN NNP VBZ VBG TO VB DT JJ NN IN DT CD JJ NN WDT VBD DT JJ NN . Opposition leaders Mir Hossein Mousavi and Mehdi Karroubi have urged their supporters to make their voices heard when Iranians march on February 11 . NN NNS NNP NNP NNP CC NNP NNP VBP VBN PRP$ NNS TO VB PRP$ NNS VBN WRB NNS VBP IN NNP CD . Iran 's government has threatened severe reprisals if the protests take place . NNP POS NN VBZ VBN JJ NNS IN DT NNS VBP NN . Mexican authorities say they have found the second flight data recorder from the airplane crash that killed Interior Minister Juan Camilo Mourino . JJ NNS VBP PRP VBP VBN DT JJ NN NNS NN IN DT NN NN WDT VBD NNP NNP NNP NNP NNP . Transportation Minister Luis Tellez says Thursday that investigators found the ' black box ' containing voice recordings of the crew . NNP NNP NNP NNP VBZ NNP IN NNS VBD DT `` JJ NN `` VBG NN NNS IN DT NN . The data recorder with navigation information was recovered on Wednesday . DT NNS NN IN NN NN VBD VBN IN NNP . Tellez says both boxes will be examined in the United States . NNP VBZ DT NNS MD VB VBN IN DT NNP NNPS . The small government plane crashed Tuesday during evening rush hour near Mexico 's City 's main avenue , Paseo de la Reforma . DT JJ NN NN VBD NNP IN NN NN NN IN NNP POS NNP POS JJ NN , NNP NNP NNP NNP . Among those killed was the former prosecutor for drug crimes , Jose Luis Santiago Vasconcelos , and at least a dozen other people in the aircraft and on the ground . IN DT VBN VBD DT JJ NN IN NN NNS , NNP NNP NNP NNP , CC IN JJS DT NN JJ NNS IN DT NN CC IN DT NN . Interior Minister Mourino had led a government campaign against mounting violence by drug cartels . NNP NNP NNP VBD VBN DT NN NN IN VBG NN IN NN NNS . The violence has killed about 4,000 people this year , including several top officials . DT NN VBZ VBN IN CD NNS DT NN , VBG JJ JJ NNS . A man says he was paid to throw a grenade at a mosque during Friday prayers in Indian Kashmir , an attack that killed five people , including two young girls . DT NN VBZ PRP VBD VBN TO VB DT NN IN DT NN IN NNP NNS IN NNP NNP , DT NN WDT VBD CD NNS , VBG CD JJ NNS . Local residents captured Ghulam Nadi Mir immediately after the attack in the village of Tahab and turned him over to police . JJ NNS VBD NNP NNP NNP RB IN DT NN IN DT NN IN NNP CC VBD PRP RP TO NNS . He told reporters Saturday he was paid $ 20 to throw the grenade . PRP VBD NNS NNP PRP VBD VBN $ CD TO VB DT NN . Police suspect the incident involved the militant group Hizb-ul-Mujahedeen , but the group denied any involvement . NNS VBP DT NN VBD DT JJ NN NNP , CC DT NN VBD DT NN . The region has been rocked by a series of grenade attacks by separatist militants in recent months . DT NN VBZ VBN VBN IN DT NN IN NN NNS IN JJ NNS IN JJ NNS . Protesters in Venezuela have clashed with police as thousands demonstrated against constitutional reforms that some critics say will turn the country into an authoritarian state . NNS IN NNP VBP VBN IN NNS IN NNS VBD IN JJ NNS IN DT NNS VBP MD VB DT NN IN DT JJ NN . Venezuelan police fired tear gas Tuesday at the student-led demonstrators after clashes broke out in Caracas . JJ NN VBD JJ NN NNP IN DT JJ NNS IN NNS VBD RP IN NNP . The proposed amendments include eliminating presidential term limits , detaining citizens without charge during national emergencies , and restricting the public 's access to information during an emergency . DT VBN NNS VBP VBG JJ NN NNS , VBG NNS IN NN IN JJ NNS , CC VBG DT NN POS NN TO NN IN DT NN . Leaders of Venezuela 's Roman Catholic Church are opposed to the changes , saying they amount to the concentration of power in the president 's hands . NNS IN NNP POS NNP NNP NNP VBP VBN TO DT NNS , VBG PRP VBP TO DT NN IN NN IN DT NN POS NNS . Human rights groups , including Human Rights Watch and Reporters Without Borders , have also condemned the proposed constitutional amendments . JJ NNS NNS , VBG NNP NNPS NNP CC NNPS IN NNS , VBP RB VBN DT VBN JJ NNS . Venezuela 's legislature plans to finalize the language for the 58 amendments by the end of this month , and a national vote on the changes is expected in December . NNP POS NN VBZ TO VB DT NN IN DT CD NNS IN DT NN IN DT NN , CC DT JJ NN IN DT NNS VBZ VBN IN NNP . China says Beijing 's already snarled traffic situation is likely to get worse in the run up to the 2008 Olympics . NNP VBZ NNP POS RB VBN NN NN VBZ JJ TO VB JJR IN DT NN RB TO DT CD NNS . The official Xinhua news agency said Monday that Beijing registered more than 22,000 new vehicles in the first 18 days of this year . DT JJ NNP NN NN VBD NNP IN NNP VBD JJR IN CD JJ NNS IN DT JJ CD NNS IN DT NN . Xinhua said the capital city already has more than 20,00,000 registered vehicles and more than 40,00,000 people have a drivers license . NNP VBD DT NN NN RB VBZ JJR IN CD JJ NNS CC JJR IN CD NNS VBP DT NNS NN . The paper said officials predict the number of cars is expected to reach over 30,00,000 by the 2008 Olympic Games . DT NN VBD NNS VBP DT NN IN NNS VBZ VBN TO VB IN CD IN DT CD NNP NNPS . Cars contribute to choking air pollution in major Chinese cities . NNS VBP TO VBG NN NN IN JJ JJ NNS . The government has urged people to use public transportation , but officials say it probably will not do much to help chronic traffic congestion . DT NN VBZ VBN NNS TO VB JJ NN , CC NNS VBP PRP RB MD RB VB RB TO VB JJ NN NN . The Pentagon says it has a well planned schedule to improve the armor of military vehicles in Iraq . DT NNP VBZ PRP VBZ DT RB VBN NN TO VB DT NN IN JJ NNS IN NNP . In a briefing Thursday , Lieutenant General Steven Whitcomb said the military had enough resources and was installing additional armor on military vehicles already in Iraq and Kuwait . IN DT NN NNP , NNP NNP NNP NNP VBD DT NN VBD JJ NNS CC VBD VBG JJ NN IN JJ NNS RB IN NNP CC NNP . He acknowledged , however , the increased armor would not protect troops from improvised explosive devices detonated from underneath the vehicles . PRP VBD , RB , DT VBN NN MD RB VB NNS IN JJ JJ NNS VBN IN NN DT NNS . General Whitcomb stressed that increasing the armor on vehicles is just one part of the Army 's strategy to protect troops . NNP NNP VBD IN VBG DT NN IN NNS VBZ RB CD NN IN DT NNP POS NN TO VB NNS . He said a high priority is finding and stopping the insurgents from building the explosive devices . PRP VBD DT JJ NN VBZ VBG CC VBG DT NNS IN VBG DT JJ NNS . The briefing comes one day after Defense Secretary Donald Rumsfeld , visiting troops in Kuwait , was asked by servicemembers why their vehicles were not adequately protected . DT NN VBZ CD NN IN NNP NNP NNP NNP , VBG NNS IN NNP , VBD VBN IN NNS WRB PRP$ NNS VBD RB RB VBN . China 's Agriculture Ministry has reported two new outbreaks of bird flu among poultry in the northwestern Xinjiang region and the central province of Hunan . NNP POS NNP NNP VBZ VBN CD JJ NNS IN NN NN IN NN IN DT JJ NNP NN CC DT JJ NN IN NNP . The ministry said Tuesday , that tens of thousands of birds were culled in both infected areas . DT NN VBD NNP , IN NNS IN NNS IN NNS VBD VBN IN DT JJ NNS . China has confirmed three cases of bird flu in humans . NNP VBZ VBN CD NNS IN NN NN IN NNS . Elsewhere , the Asian Development Bank has announced a $ 30 million grant for Vietnam , Cambodia and Laos to help contain the spread of bird flu and other diseases . RB , DT NNP NNP NNP VBZ VBN DT $ CD CD NN IN NNP , NNP CC NNP TO VB VB DT NN IN NN NN CC JJ NNS . The Manila-based bank says the grant will be funded in conjunction with the World Health Organization . DT JJ NN VBZ DT NN MD VB VBN IN NN IN DT NNP NNP NNP . And in several Australian cities Tuesday , emergency workers began an exercise to test the government 's response to a simulated outbreak of bird flu . CC IN JJ JJ NNS NNP , NN NNS VBD DT NN TO VB DT NN POS NN TO DT JJ NN IN NN NN . About 1,000 people are expected to participate in the three-day drill . RB CD NNS VBP VBN TO VB IN DT JJ NN . Afghan officials say a suicide blast has killed at least 10 people in a city in central Uruzgan province during a visit by the U.S. ambassador . JJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT NN IN JJ NNP NN IN DT NN IN DT NNP NN . Police say the attacker detonated explosives strapped to his body near the governor 's headquarters in the city of Tarin Kot . NNS VBP DT NN VBD NNS VBN TO PRP$ NN IN DT NN POS NN IN DT NN IN NNP NNP . Some 50 people were wounded in the attack , but the ambassador , Ronald Neumann and other U.S. officials were unhurt . DT CD NNS VBD VBN IN DT NN , CC DT NN , NNP NNP CC JJ NNP NNS VBD JJ . Shortly after the blast , local news agencies said a Taleban spokesman phoned claiming responsibility for the attack . RB IN DT NN , JJ NN NNS VBD DT NNP NN VBD VBG NN IN DT NN . Earlier this week , a suicide car bomber wounded an American soldier and two other people in southern Afghanistan . RBR DT NN , DT NN NN NN VBD DT JJ NN CC CD JJ NNS IN JJ NNP . This week 's attacks are the latest in an upsurge in attacks by suspected Taleban supporters in southern and central Afghanistan , where more than 1,500 people were killed in insurgent-related violence last year . DT NN POS NNS VBP DT JJS IN DT NN IN NNS IN JJ NNP NNS IN JJ CC JJ NNP , WRB JJR IN CD NNS VBD VBN IN JJ NN JJ NN . The Israeli military is imposing a three-day closure on the West Bank , banning Palestinians from entering Israel during a Jewish festival . DT JJ NN VBZ VBG DT JJ NN IN DT NNP NNP , VBG NNS IN VBG NNP IN DT JJ NN . The military says it began the closure early Monday and will maintain it throughout the holiday of Purim , which ends at midnight Wednesday . DT JJ VBZ PRP VBD DT NN RB NNP CC MD VB PRP IN DT NN IN NNP , WDT VBZ IN NN NNP . Israel considers Jewish festivals likely times for Palestinian attacks . NNP VBZ JJ NNS JJ NNS IN JJ NNS . The military regularly imposes closures during such holidays . DT NN RB VBZ NNS IN JJ NNS . Meanwhile , a British relief convoy carrying aid for Palestinians in the Gaza Strip arrived Sunday at the Rafah border crossing in Egypt . RB , DT JJ NN NN VBG NN IN NNS IN DT NNP NNP VBD NNP IN DT NNP NN VBG IN NNP . The convoy led by British Parliamentarian George Galloway has traveled more than 14,000 kilometers from London over the past three weeks to reach the Palestinian territory . DT NN VBN IN JJ NN NNP NNP VBZ VBN JJR IN CD NNS IN NNP IN DT JJ CD NNS TO VB DT JJ NN . It is unclear whether Egyptian authorities will allow the food and medical aid to pass into the Hamas-controlled Gaza Strip , which was crippled by Israel 's recent military offensive . PRP VBZ JJ IN JJ NNS MD VB DT NN CC JJ NN TO VB IN DT JJ NNP NNP , WDT VBD VBN IN NNP POS JJ JJ NN . As Americans remember Martin Luther King , Junior Monday , his family remains divided over the future of his memorial center in Atlanta . IN NNS VBP NNP NNP NNP , NNP NNP , PRP$ NN VBZ VBN IN DT NN IN PRP$ JJ NN IN NNP . Two of Reverend King 's four children favor selling the King Center to the U.S. National Park Service . CD IN NNP NNP POS CD NNS VBP VBG DT NNP NNP TO DT NNP NNP NNP NNP . But another son and daughter want the center to remain in control of the King family . CC DT NN CC NN VBP DT NN TO VB IN NN IN DT NNP NN . King 's widow , Coretta Scott King , who is recovering from a stroke , relinquished control of the center years ago . NNP POS NN , NNP NNP NNP , WP VBZ VBG IN DT NN , VBD NN IN DT NN NNS RB . Son Martin Luther King said selling the center would sell his father 's legacy and barter his mother 's vision . NNP NNP NNP NNP VBD VBG DT NN MD VB PRP$ NN POS NN CC VB PRP$ NN POS NN . The center features programs and services on Reverend King 's legacy and racial equality , but has fallen into debt and disrepair over the years . DT NN VBZ NNS CC NNS IN NNP NNP POS NN CC JJ NN , CC VBZ VBN IN NN CC NN IN DT NNS . The work of Cuban artists is finding an outlet in Miami , despite objections from some Cuban Americans who believe some of the artwork portrays the communist nation in a positive light . DT NN IN JJ NNS VBZ VBG DT NN IN NNP , IN NNS IN DT JJ NNS WP VBP DT IN DT NN VBZ DT JJ NN IN DT JJ NN . A small number of fledgling galleries showcasing art from the island have appeared in the city 's Little Havana district - a hotbed of anti-Castro sentiment . DT JJ NN IN NN NNS VBG NN IN DT NN VBP VBN IN DT NN POS JJ NNP NN IN DT NN IN JJ NN . The owner of one of the galleries says she has faced criticism but continues traveling to the island to buy paintings , photographs and sculptures to showcase in her gallery . DT NN IN CD IN DT NNS VBZ PRP VBZ VBN NN CC VBZ VBG TO DT NN TO VB NNS , NNS CC NNS TO VB IN PRP$ NN . Steve Mort reports from Miami . NNP NNP VBZ IN NNP . Several members of Iran 's parliament have told President Mahmoud Ahmadinejad to pick experienced members for his Cabinet . JJ NNS IN NNP POS NN VBP VBN NNP NNP NNP TO VB JJ NNS IN PRP$ NNP . Mr. Ahmadinejad will submit his new cabinet line-up next week , and he has vowed to appoint more young people . NNP NNP MD VB PRP$ JJ NN NN JJ NN , CC PRP VBZ VBN TO VB RBR JJ NNS . Iranian state media report that lawmakers are urging Mr. Ahmadinejad to make wise selections of experienced ministers if he is to win a vote of confidence in parliament . JJ NN NNS NN IN NNS VBP VBG NNP NNP TO VB JJ NNS IN JJ NNS IN PRP VBZ TO VB DT NN IN NN IN NN . The president 's reelection on June 12 set off a political crisis in Iran . DT NN POS NN IN NNP CD VBD RP DT JJ NN IN NNP . Iranian authorities have arrested thousands of demonstrators who say the presidential vote was rigged . JJ NNS VBP VBN NNS IN NNS WP VBP DT JJ NN VBD VBN . Influential cleric and former president Akbar Hashemi Rafsanjani this week canceled his turn to lead Friday prayers in an effort to avoid further unrest . JJ NN CC JJ NN NNP NNP NNP DT NN VBD PRP$ NN TO VB NNP NNS IN DT NN TO VB JJ NN . Opposition supporters staged demonstrations during Rafsanjani 's most recent sermon . NN NNS VBD NNS IN NNP POS RBS JJ NN . Rafsanjani 's office released a statement saying the cleric wanted to avoid any possible clashes resulting from the post-election fall out . NNP POS NN VBD DT NN VBG DT NN VBD TO VB DT JJ NNS VBG IN DT JJ NN RB . An Indonesian court has sentenced two Australian men to death by firing squad for leading a drug smuggling ring on the Indonesian island of Bali . DT JJ NN VBZ VBN CD JJ NNS TO NN IN VBG NN IN VBG DT NN VBG NN IN DT JJ NN IN NNP . The district court in Bali 's provincial capital , Denpasar , said Tuesday that Andrew Chan and Myuran Sukumaran were the masterminds of the so-called Bali Nine . DT NN NN IN NNP POS JJ NN , NNP , VBD NNP IN NNP NNP CC NNP NNP VBD DT NNS IN DT JJ NNP NNP . The same court also sentenced Michael Czugaj and Martin Stephens to life in prison Tuesday for their part in the drug smuggling operation . DT JJ NN RB VBD NNP NNP CC NNP NNP TO NN IN NN NNP IN PRP$ NN IN DT NN NN NN . Two others , Renae Lawrence and Scott Rush , were handed the same sentence on Monday . CD NNS , NNP NNP CC NNP NNP , VBD VBN DT JJ NN IN NNP . The nine Australians were arrested in April of last year for allegedly trying to smuggle more than eight kilograms of heroin from Bali to Australia . DT CD NNS VBD VBN IN NNP IN JJ NN IN RB VBG TO VB JJR IN CD NNS IN NN IN NNP TO NNP . The cases are among a series of arrests in Indonesia involving Australians accused of smuggling illegal drugs . DT NNS VBP IN DT NN IN NNS IN NNP VBG NNS VBN IN VBG JJ NNS . The Vatican says Pope John Paul 's body will lie in state at St. Peter 's Basilica beginning Monday afternoon at the earliest . DT NNP VBZ NNP NNP NNP POS NN MD VB IN NN IN NNP NNP POS NNP NN NNP NN IN DT JJS . Nine days of official mourning began Sunday at the Vatican . CD NNS IN JJ NN VBD NNP IN DT NNP . The pope 's body is to be transferred from the papal apartment , where he died , to prepare it to lie in state . DT NN POS NN VBZ TO VB VBN IN DT JJ NN , WRB PRP VBD , TO VB PRP TO VB IN NN . A number of world leaders are expected to attend the pope 's funeral later this week . DT NN IN NN NNS VBP VBN TO VB DT NN POS NN RB DT NN . Roman Catholic tradition says the funeral and burial must be held between the fourth and sixth day after death . NNP NNP NN VBZ DT NN CC NN MD VB VBN IN DT JJ CC JJ NN IN NN . Traditionally a pope 's body is buried in a crypt beneath St. Peter 's Basilica . RB DT NN POS NN VBZ VBN IN DT NN IN NNP NNP POS NNP . However , news media reports have mentioned that John Paul might have chosen to be buried in his native Poland . RB , NN NNS NNS VBP VBN IN NNP NNP MD VB VBN TO VB VBN IN PRP$ JJ NNP . The Kenyan government is lambasting U.S. Senator Barack Obama , one day after the lawmaker concluded a visit to his late father 's homeland . DT JJ NN VBZ VBG NNP NNP NNP NNP , CD NN IN DT NN VBD DT NN TO PRP$ JJ NN POS NN . A government spokesman in Nairobi Thursday said Obama 's criticisms of Kenyan politics show the lawmaker is ' very poorly informed . ' DT NN NN IN NNP NNP VBD NNP POS NNS IN JJ NNS VBP DT NN VBZ `` RB RB VBN . `` In speeches to adoring crowds , Obama harshly criticized Kenyan officials for engaging in graft and political divisiveness based on ethnicity . IN NNS TO VBG NNS , NNP RB VBD JJ NNS IN VBG IN NN CC JJ NN VBN IN NN . He said transparent government is needed to encourage Kenya 's economic growth . PRP VBD JJ NN VBZ VBN TO VB NNP POS JJ NN . Kenyan President Mwai Kibaki pledged to end rampant corruption when he came to power in 2002 , but allegations of graft continue to plague the government . JJ NNP NNP NNP VBD TO VB JJ NN WRB PRP VBD TO NN IN CD , CC NNS IN NN VBP TO VB DT NN . Obama is a Democratic Party lawmaker representing the midwestern U.S. state of Illinois . NNP VBZ DT JJ NNP NN VBG DT JJ NNP NN IN NNP . He visited the east African nation during a two-week tour of Africa , and was embraced by many Kenyans as a native son . PRP VBD DT JJ JJ NN IN DT JJ NN IN NNP , CC VBD VBN IN JJ NNS IN DT JJ NN . Obama 's father was born and worked as an economist in Kenya . NNP POS NN VBD VBN CC VBN IN DT NN IN NNP . The United States has asked Israel to investigate an incident in which a U.S. student lost an eye during a pro-Palestinian protest in Jerusalem . DT NNP NNP VBZ VBN NNP TO VB DT NN IN WDT DT NNP NN VBD DT NN IN DT JJ NN IN NNP . A U.S. embassy spokesman in Tel Aviv Monday said officials there have passed the investigation request to the Israeli Foreign Ministry . DT NNP NN NN IN NNP NNP NNP VBD NNS RB VBP VBN DT NN NN TO DT JJ NNP NNP . Twenty-one-year-old Emily Henochowicz lost her eye after being struck by an Israeli tear-gas canister during a protest at a Jerusalem checkpoint last week . JJ NNP NNP VBD PRP$ NN IN VBG VBN IN DT JJ JJ NN IN DT NN IN DT NNP NN JJ NN . Henochowicz was demonstrating with a pro-Palestinian group against Israel 's raid on a Gaza-bound flotilla that killed nine Turkish activists . NNP VBD VBG IN DT JJ NN IN NNP POS NN IN DT JJ NN WDT VBD CD JJ NNS . Witnesses say Israeli border guards deliberately fired tear-gas canisters at the protesters . NNS VBP JJ NN NNS RB VBD NNS NNS IN DT NNS . The military says the injured American was not targeted . DT NN VBZ DT JJ NNP VBD RB VBN . A growing number of Americans are finding the best way to stretch a dollar is to use it sparingly . DT VBG NN IN NNS VBP VBG DT JJS NN TO VB DT NN VBZ TO VB PRP RB . Many are turning to the practice of bartering - or trading goods and services without exchanging money . NN VBP VBG TO DT NN IN VBG : CC VBG NNS CC NNS IN VBG NN . It 's a practice that 's quickly catching on during these tough economic times . PRP VBZ DT NN WDT VBZ RB VBG RP IN DT JJ JJ NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Police in Belgium raided homes and made at least one arrest early Wednesday in connection with a suicide bombing in Iraq several weeks ago . NNS IN NNP VBD NNS CC VBD IN JJS CD NN JJ NNP IN NN IN DT NN VBG IN NNP JJ NNS RB . Belgian news reports say a Belgian woman blew herself up on November 9 in an attack on an American patrol in Baghdad . JJ NN NNS VBP DT JJ NN VBD PRP RP IN NNP CD IN DT NN IN DT JJ NN IN NNP . No one besides the bomber was killed in the attack . DT NN IN DT NN VBD VBN IN DT NN . A police spokeswoman confirmed that Wednesday 's raids were carried out to find the woman 's co-conspirators . DT NN NN VBD IN NNP POS NNS VBD VBN IN TO VB DT NN POS NNS . Thirteen people of Belgian and Moroccan origin accused of belonging to an Islamic militant group are currently on trial in Brussels . CD NNS IN JJ CC JJ NN VBN IN VBG TO DT JJ JJ NN VBP RB IN NN IN NNP . Their group is suspected of bomb attacks in Spain and Morocco that killed a total of 236 people . PRP$ NN VBZ VBN IN NN NNS IN NNP CC NNP WDT VBD DT NN IN CD NNS . That trial is the first under a new anti-terror law in Belgium that makes it a crime to associate with terrorists . DT NN VBZ DT JJ IN DT JJ JJ NN IN NNP WDT VBZ PRP DT NN TO NN IN NNS . A powerful bomb has ripped through a section of the Philippine House of Representatives in Manila , killing at least two people and injuring at least nine others . DT JJ NN VBZ VBN IN DT NN IN DT JJ NNP IN NNPS IN NNP , VBG IN JJS CD NNS CC VBG IN JJS CD NNS . The blast occurred in the south wing of the building Tuesday evening local time , as the House was ending its session . DT NN VBD IN DT JJ NN IN DT NN NNP NN JJ NN , IN DT NNP VBD VBG PRP$ NN . Emergency crews rushed to the scene , and police have sealed off streets around the building , in the Quezon City area . NN NNS VBD TO DT NN , CC NNS VBP VBN RP NNS IN DT NN , IN DT NNP NNP NN . One of those killed was a Philippine lawmaker . CD IN DT VBN VBD DT JJ NN . There was no immediate claim of responsibility for the bombing . EX VBD DT JJ NN IN NN IN DT NN . Members of the U.S. Senate are demanding that oil companies take steps to bring down high gasoline and heating oil prices being paid by U.S. consumers . NNS IN DT NNP NNP VBP VBG IN NN NNS VBP NNS TO VB RP JJ NN CC NN NN NNS VBG VBN IN NNP NNS . The demands came Wednesday as a Senate committee questioned top executives from five major oil companies . DT NNS VBD NNP IN DT NNP NN VBD JJ NNS IN CD JJ NN NNS . The companies recently reported record profits as the price of crude oil hit $ 70 a barrel and gasoline prices soared after supply disruptions caused by Hurricanes Katrina and Rita . DT NNS RB VBD NN NNS IN DT NN IN JJ NN VBD $ CD DT NN CC NN NNS VBD IN NN NNS VBN IN NNP NNP CC NNP . Republican Senator Pete Domenici said many Americans believe the companies are exploiting current conditions to reap excess profits . NNP NNP NNP NNP VBD JJ NNS VBP DT NNS VBP VBG JJ NNS TO VB JJ NNS . The executives defended their profits , saying most of the money is re-invested into energy exploration projects . DT NNS VBD PRP$ NNS , VBG JJS IN DT NN VBZ VBN IN NN NN NNS . They cautioned senators against imposing government measures to lower prices , saying market forces will lead to reasonable prices . PRP VBD NNS IN VBG NN NNS TO JJR NNS , VBG NN NNS MD VB TO JJ NNS . The Indian government 's key communist allies have rejected a landmark U.S.-India nuclear deal , criticizing it for promoting U.S. influence . DT JJ NN POS JJ NN NNS VBP VBN DT NN NNP JJ NN , VBG PRP IN VBG NNP NN . In a statement Tuesday , India 's four-party communist alliance said it can not accept the civilian nuclear agreement between India and the United States and called on Prime Minister Manmohan Singh not to pursue it . IN DT NN NNP , NNP POS JJ NN NN VBD PRP MD RB VB DT JJ JJ NN IN NNP CC DT NNP NNPS CC VBN IN NNP NNP NNP NNP RB TO VB PRP . Hindu nationalists have also rejected the terms of the accord . NNP NNS VBP RB VBN DT NNS IN DT NN . Reversing 30 years of U.S. non-proliferation nuclear policy with India , the controversial agreement would give India access to U.S. nuclear fuel and equipment in exchange for inspections of its civilian nuclear reactors . VBG CD NNS IN NNP JJ JJ NN IN NNP , DT JJ NN MD VB NNP NN TO NNP JJ NN CC NN IN NN IN NNS IN PRP$ JJ JJ NNS . The U.S. Congress must approve the deal before it can take effect , but it does not require approval by the Indian parliament . DT NNP NNP MD VB DT NN IN PRP MD VB NN , CC PRP VBZ RB VB NN IN DT JJ NN . India 's prime minister and Cabinet are empowered to sign treaties without parliamentary backing . NNP POS JJ NN CC NNP VBP VBN TO VB NNS IN JJ NN . But some Indian lawmakers are trying to make international agreements subject to parliamentary approval . CC DT JJ NNS VBP VBG TO VB JJ NNS JJ TO JJ NN . Indian police say 11 people , including nine soldiers , have been killed in a landmine explosion in India-controlled Kashmir . JJ NNS VBP CD NNS , VBG CD NNS , VBP VBN VBN IN DT NN NN IN JJ NNP . Authorities said Sunday a jeep carrying the soldiers was blown apart when it ran over the landmine late Saturday in Pulwama , south of Kashmir 's summer capital , Srinagar . NNS VBD NNP DT NN VBG DT NNS VBD VBN RB WRB PRP VBD IN DT NN JJ NNP IN NNP , NN IN NNP POS NN NN , NNP . Kashmir 's pro-Pakistan rebel group Hizbul Mujahedin claimed responsibility for the attack . NNP POS JJ NN NN NNP NNP VBD NN IN DT NN . In a separate incident early Sunday in the disputed Himalayan region , an army spokesman says Indian troops shot dead three militants who had taken shelter in a mosque . IN DT JJ NN JJ NNP IN DT JJ JJ NN , DT NN NN VBZ JJ NNS VBD JJ CD NNS WP VBD VBN NN IN DT NN . Guerrilla violence has increased in Kashmir in recent weeks . NN NN VBZ VBN IN NNP IN JJ NNS . Violence in the region has claimed at least 30,000 lives since the start of a revolt against India in 1989 . NN IN DT NN VBZ VBN IN JJS CD NNS IN DT NN IN DT NN IN NNP IN CD . India blames neighboring Pakistan for supporting the militants - a claim Islamabad denies . NNP VBZ VBG NNP IN VBG DT NNS IN DT NN NNP VBZ . Lebanon 's parliament has postponed the vote for a new president for the eighth time . NNP POS NN VBZ VBN DT NN IN DT JJ NN IN DT JJ NN . Parliament Speaker Nabih Berri issued a statement Monday , saying the election scheduled for Tuesday has been postponed until December 17 . NN NN NNP NNP VBD DT NN NNP , VBG DT NN VBN IN NNP VBZ VBN VBN IN NNP CD . The delay gives rival political leaders more time to reach a consensus . DT NN VBZ JJ JJ NNS RBR NN TO VB DT NN . The ruling coalition and opposition lawmakers are divided on several issues , including how to amend the constitution to enable army chief General Michel Suleiman to be elected . DT VBG NN CC NN NNS VBP VBN IN JJ NNS , VBG WRB TO VB DT NN TO VB NN NN NNP NNP NNP TO VB VBN . Lebanon has been without a president since November 23 , when pro-Syrian Emile Lahoud 's term ended . NNP VBZ VBN IN DT NN IN NNP CD , WRB JJ NNP NNP POS NN VBD . General Suleiman is seen as a neutral figure who could resolve the conflict between the Western-backed majority and the pro-Syrian opposition . NNP NNP VBZ VBN IN DT JJ NN WP MD VB DT NN IN DT JJ NN CC DT JJ NN . Israeli President Moshe Katsav has shaken hands with Syrian President Bashar al-Assad as both attended the funeral of Pope John Paul II in Rome . JJ NNP NNP NNP VBZ VBN NNS IN JJ NNP NNP NNP IN DT VBD DT NN IN NNP NNP NNP NNP IN NNP . Israel Radio reports Iranian-born President Katsav also spoke in his native Farsi with Iranian President Mohammad Khatami . NNP NNP VBZ JJ NNP NNP RB VBD IN PRP$ JJ NNP IN JJ NNP NNP NNP . The radio says the two spoke about the Iranian town where they were both born . DT NN VBZ DT CD VBD IN DT JJ NN WRB PRP VBD DT VBN . Syria is officially at war with Israel and Iran does not recognize the Jewish state . NNP VBZ RB IN NN IN NNP CC NNP VBZ RB VB DT JJ NN . Israel Radio says after the funeral , the Syrian leader approached the Israeli president for a second time and again shook his hand . NNP NNP VBZ IN DT NN , DT JJ NN VBD DT JJ NN IN DT JJ NN CC RB VBD PRP$ NN . Syria has recently made peace overtures to Israel , but Israeli officials have demanded that Syria first pull out of Lebanon and stop its support of radical Palestinian groups . NNP VBZ RB VBN NN NNS TO NNP , CC JJ NNS VBP VBN IN NNP RB VB IN IN NNP CC VB PRP$ NN IN JJ JJ NNS . The Turkish parliament has overwhelmingly approved a constitutional amendment to allow the direct election of the president instead of election by parliament . DT JJ NN VBZ RB VBN DT JJ NN TO VB DT JJ NN IN DT NN RB IN NN IN NN . Thursday 's vote is the second time lawmakers approved the article , which is part of a package of reforms . NNP POS NN VBZ DT JJ NN NNS VBD DT NN , WDT VBZ NN IN DT NN IN NNS . If lawmakers approve the entire package , Turkish President Ahmet Necdet Sezer , who has vetoed it once already , must either approve the reforms or call for a referendum . IN NNS VBP DT JJ NN , JJ NNP NNP NNP NNP , WP VBZ VBN PRP RB RB , MD RB VB DT NNS CC NN IN DT NN . Turkey 's ruling Islamist-rooted AK Party proposed the reform package after parliament failed to elect its candidate for president , Foreign Minister Abdullah Gul . NNP POS NN NNP NNP NNP VBD DT NN NN IN NN VBD TO VB PRP$ NN IN NN , NNP NNP NNP NNP . Secularists opposed Gul 's candidacy for president , and they have accused the AK Party of attempting to undermine Turkey 's secular order . NNS VBD NNP POS NN IN NN , CC PRP VBP VBN DT NNP NNP IN VBG TO VB NNP POS JJ NN . Turkish Prime Minister Recep Tayyip Erdogan has said he is committed to Turkey 's secular system . JJ NNP NNP NNP NNP NNP VBZ VBN PRP VBZ VBN TO NNP POS JJ NN . Mr. Erdogan also called for early parliamentary elections over the political deadlock . NNP NNP RB VBD IN JJ JJ NNS IN DT JJ NN . Dow Jones & Co. said it extended its $ 18-a-share offer for Telerate Inc. common stock until 5 p.m. EST Nov. 9 . NNP NNP CC NNP VBD PRP VBD PRP$ $ JJ NN IN NNP NNP JJ NN IN CD NN NNP NNP CD . The offer , valued at about $ 576 million for the 33 % of Telerate that Dow Jones does n't already own , had been set to expire Nov. 6 . DT NN , VBN IN IN $ CD CD IN DT CD NN IN NNP IN NNP NNP VBZ RB RB VB , VBD VBN VBN TO VB NNP CD . Dow Jones , which owns about 64 million of Telerate 's 95 million common shares outstanding , said that about 24,000 shares have been tendered under its offer . NNP NNP , WDT VBZ RB CD CD IN NNP POS CD CD JJ NNS JJ , VBD IN IN CD NNS VBP VBN VBN IN PRP$ NN . Telerate 's two independent directors have rejected the offer as inadequate . NNP POS CD JJ NNS VBP VBN DT NN IN JJ . In composite trading on the New York Stock Exchange , Telerate shares closed at $ 19.5 , up 12.5 cents . IN JJ NN IN DT NNP NNP NNP NNP , NNP NNS VBD IN $ CD , RB CD NNS . Telerate provides an electronic financial information network . NNP VBZ DT JJ JJ NN NN . Dow Jones publishes The Wall Street Journal , Barron 's magazine , and community newspapers and operates financial news services and computer data bases . NNP NNP VBZ DT NNP NNP NNP , NNP POS NN , CC NN NNS CC VBZ JJ NN NNS CC NN NNS NNS . The economy is heavily dependent on the extraction and processing of minerals for export . DT NN VBZ RB JJ IN DT NN CC NN IN NNS IN NN . Mining accounts for 8 % of GDP , but provides more than 50 % of foreign exchange earnings . NN NNS IN CD NN IN NN , CC VBZ JJR IN CD NN IN JJ NN NNS . Rich alluvial diamond deposits make Namibia a primary source for gem-quality diamonds . NNP JJ NN NNS VBP NNP DT JJ NN IN NN NNS . Namibia is the world 's fourth-largest producer of uranium . NNP VBZ DT NN POS JJ NN IN NN . It also produces large quantities of zinc and is a small producer of gold and other minerals . PRP RB VBZ JJ NNS IN NN CC VBZ DT JJ NN IN NN CC JJ NNS . The mining sector employs only about 3 % of the population while about 35-40 % of the population depends on subsistence agriculture for its livelihood . DT NN NN VBZ RB IN CD NN IN DT NN IN IN CD NN IN DT NN VBZ IN NN NN IN PRP$ NN . Namibia normally imports about 50 % of its cereal requirements ; in drought years food shortages are a major problem in rural areas . NNP RB VBZ IN CD NN IN PRP$ NN NNS ; IN NN NNS NN NNS VBP DT JJ NN IN JJ NNS . A high per capita GDP , relative to the region , hides one of the world 's most unequal income distributions , as shown by Namibia 's 70.7 GINI coefficient . DT JJ IN NN NN , JJ TO DT NN , VBZ CD IN DT NN POS RBS JJ NN NNS , IN VBN IN NNP POS CD NNP NN . The Namibian economy is closely linked to South Africa with the Namibian dollar pegged one-to-one to the South African rand . DT JJ NN VBZ RB VBN TO NNP NNP IN DT JJ NN VBD JJ TO DT JJ JJ NN . Until 2010 , Namibia drew 40 % of its budget revenues from the Southern African Customs Union ( SACU ) . IN CD , NNP VBD CD NN IN PRP$ NN NNS IN DT NNP NNP NNP NNP LRB NNP RRB . Increased payments from SACU put Namibia 's budget into surplus in 2007 for the first time since independence . JJ NNS IN NNP VBD NNP POS NN IN NN IN CD IN DT JJ NN IN NN . SACU allotments to Namibia increased in 2009 , but will drop for 2010 and 2011 because South Africa went into recession during the global economic crisis , reducing overall SACU income . NNP VBZ TO NNP VBD IN CD , CC MD VB IN CD CC CD IN NNP NNP VBD IN NN IN DT JJ JJ NN , VBG JJ NNP NN . Increased fish production and mining of zinc , copper , and uranium spurred growth in 2003 - 8 , but growth in recent years was undercut by poor fish catches , a dramatic decline in demand for diamonds , higher costs of producing metals , and the global recession . JJ NN NN CC NN IN NN , NN , CC NN VBN NN IN CD : CD , CC NN IN JJ NNS VBD VBN IN JJ NN NNS , DT JJ NN IN NN IN NNS , JJR NNS IN VBG NNS , CC DT JJ NN . A rebound in diamond and uranium prices in 2010 provided a significant boost to Namibia 's mining sector . DT NN IN NN CC NN NNS IN CD VBD DT JJ NN TO NNP POS NN NN . Copper mines , which closed in 2008 , are slated to reopen in 2011 . NN NNS , WDT VBD IN CD , VBP VBN TO VB IN CD . The Principality of Liechtenstein was established within the Holy Roman Empire in 1719 . DT NN IN NNP VBD VBN IN DT NNP NNP NNP IN CD . Occupied by both French and Russian troops during the Napoleonic wars , it became a sovereign state in 1806 and joined the Germanic Confederation in 1815 . VBN IN DT JJ CC JJ NNS IN DT NNP NNS , PRP VBD DT JJ NN IN CD CC VBD DT NNP NNP IN CD . Liechtenstein became fully independent in 1866 when the Confederation dissolved . NNP VBD RB JJ IN CD WRB DT NNP VBD . Until the end of World War I , it was closely tied to Austria , but the economic devastation caused by that conflict forced Liechtenstein to enter into a customs and monetary union with Switzerland . IN DT NN IN NNP NNP NNP , PRP VBD RB VBN TO NNP , CC DT JJ NN VBN IN DT NN VBD NNP TO VB IN DT NNS CC JJ NN IN NNP . Since World War II ( in which Liechtenstein remained neutral ) , the country 's low taxes have spurred outstanding economic growth . IN NNP NNP NNP LRB IN WDT NNP VBD JJ RRB , DT NN POS JJ NNS VBP VBN JJ JJ NN . In 2000 , shortcomings in banking regulatory oversight resulted in concerns about the use of financial institutions for money laundering . IN CD , NNS IN NN JJ NN VBD IN NNS IN DT NN IN JJ NNS IN NN NN . However , Liechtenstein implemented anti-money-laundering legislation and a Mutual Legal Assistance Treaty with the US that went into effect in 2003 . RB , NNP VBD JJ NN CC DT JJ NNP NNP NNP IN DT NNP WDT VBD IN NN IN CD . Colonized by the Portuguese in the 16th century , Macau was the first European settlement in the Far East . VBN IN DT NNS IN DT JJ NN , NNP VBD DT JJ JJ NN IN DT NNP NNP . Pursuant to an agreement signed by China and Portugal on 13 April 1987 , Macau became the Macau Special Administrative Region ( SAR ) of the People 's Republic of China on 20 December 1999 . JJ TO DT NN VBN IN NNP CC NNP IN CD NNP CD , NNP VBD DT NNP NNP NNP NNP LRB NNP RRB IN DT NNP POS NNP IN NNP IN CD NNP CD . In this agreement , China promised that , under its ' one country , two systems ' formula , China 's socialist economic system would not be practiced in Macau , and that Macau would enjoy a high degree of autonomy in all matters except foreign and defense affairs for the next 50 years . IN DT NN , NNP VBD IN , IN PRP$ `` CD NN , CD NNS `` NN , NNP POS JJ JJ NN MD RB VB VBN IN NNP , CC IN NNP MD VB DT JJ NN IN NN IN DT NNS IN JJ CC NN NNS IN DT JJ CD NNS . The evolution of what is today the European Union ( EU ) from a regional economic agreement among six neighboring states in 1951 to today 's hybrid intergovernmental and supranational organization of 27 countries across the European continent stands as an unprecedented phenomenon in the annals of history . DT NN IN WP VBZ NN DT NNP NNP LRB NNP RRB IN DT JJ JJ NN IN CD JJ NNS IN CD TO NN POS JJ JJ CC JJ NN IN CD NNS IN DT JJ NN VBZ IN DT JJ NN IN DT NNS IN NN . Dynastic unions for territorial consolidation were long the norm in Europe ; on a few occasions even country-level unions were arranged - the Polish-Lithuanian Commonwealth and the Austro-Hungarian Empire were examples . NNP NNS IN JJ NN VBD RB DT NN IN NNP ; IN DT JJ NNS RB JJ NNS VBD VBN IN DT JJ NN CC DT JJ NN VBD NNS . But for such a large number of nation-states to cede some of their sovereignty to an overarching entity is unique . CC IN PDT DT JJ NN IN NNS TO VB DT IN PRP$ NN TO DT JJ NN VBZ JJ . North Yemen became independent of the Ottoman Empire in 1918 . NNP NNP VBD JJ IN DT NNP NNP IN CD . The British , who had set up a protectorate area around the southern port of Aden in the 19th century , withdrew in 1967 from what became South Yemen . DT NNS , WP VBD VBN RP DT JJ NN IN DT JJ NN IN NNP IN DT JJ NN , VBD IN CD IN WP VBD NNP NNP . Three years later , the southern government adopted a Marxist orientation . CD NNS RB , DT JJ NN VBD DT JJ NN . The massive exodus of hundreds of thousands of Yemenis from the south to the north contributed to two decades of hostility between the states . DT JJ NN IN NNS IN NNS IN NNS IN DT NN TO DT NN VBD TO CD NNS IN NN IN DT NNS . The two countries were formally unified as the Republic of Yemen in 1990 . DT CD NNS VBD RB VBN IN DT NNP IN NNP IN CD . A southern secessionist movement in 1994 was quickly subdued . DT JJ NN NN IN CD VBD RB VBN . In 2000 , Saudi Arabia and Yemen agreed to a delimitation of their border . IN CD , NNP NNP CC NNP VBD TO DT NN IN PRP$ NN . Fighting in the northwest between the government and Huthi rebels , a group seeking a return to traditional Zaydi Islam , began in 2004 and has since resulted in seven rounds of fighting - the last ended in early 2010 with a tentative ceasefire . VBG IN DT JJS IN DT NN CC NNP NNS , DT NN VBG DT NN TO JJ NNP NNP , VBD IN CD CC VBZ IN VBN IN CD NNS IN VBG IN DT JJ VBN IN JJ CD IN DT JJ NN . The southern secessionist movement was revitalized in 2008 when a popular socioeconomic protest movement initiated the prior year took on political goals including secession . DT JJ NN NN VBD VBN IN CD WRB DT JJ JJ NN NN VBD DT JJ NN VBD IN JJ NNS VBG NN . Public rallies in Sana'a against President SALIH - inspired by similar demonstrations in Tunisia and Egypt - slowly built momentum starting in late January 2011 fueled by complaints over high unemployment , poor economic conditions , and corruption . JJ NNS IN NNP IN NNP NNP : VBN IN JJ NNS IN NNP CC NNP : RB VBN NN VBG IN JJ NNP CD VBN IN NNS IN JJ NN , JJ JJ NNS , CC NN . By the following month , some protests had resulted in violence , and the demonstrations had spread to other major cities . IN DT VBG NN , DT NNS VBD VBN IN NN , CC DT NNS VBD VBN TO JJ JJ NNS . By March the opposition had hardened its demands and was unifying behind calls for SALIH 's immediate ouster . IN NNP DT NN VBD VBN PRP$ NNS CC VBD VBG IN NNS IN NNP POS JJ NN . Media reports indicated that as many as 100 protesters had been killed and many more injured amid the protests . NNS NNS VBD IN RB JJ IN CD NNS VBD VBN VBN CC JJ JJR NN IN DT NNS . Domestic and international efforts to mediate a resolution to the political crisis had not yielded a deal as of mid April . JJ CC JJ NNS TO VB DT NN TO DT JJ NN VBD RB VBN DT NN IN IN JJ NNP . A SERPENT and an Eagle were struggling with each other in deadly conflict . DT NN CC DT NNP VBD VBG IN DT NN IN JJ NN . The Serpent had the advantage , and was about to strangle the bird . DT NNP VBD DT NN , CC VBD IN TO VB DT NN . A countryman saw them , and running up , loosed the coil of the Serpent and let the Eagle go free . DT NN VBD PRP , CC VBG RP , VBD DT NN IN DT NNP CC VB DT NNP VB JJ . The Serpent , irritated at the escape of his prey , injected his poison into the drinking horn of the countryman . DT NNP , VBD IN DT NN IN PRP$ NN , VBD PRP$ NN IN DT NN NN IN DT NN . The rustic , ignorant of his danger , was about to drink , when the Eagle struck his hand with his wing , and , seizing the drinking horn in his talons , carried it aloft . DT JJ , NN IN PRP$ NN , VBD IN TO VB , WRB DT NNP VBD PRP$ NN IN PRP$ NN , CC , VBG DT NN NN IN PRP$ NNS , VBD PRP RB . A CERTAIN rich man reared a Goose and a Swan , the one for his table , the other because she was reputed a good singer . DT JJ JJ NN VBD DT NN CC DT NN , DT CD IN PRP$ NN , DT JJ IN PRP VBD VBN DT JJ NN . One night when the Cook went to kill the Goose he got hold of the Swan instead . CD NN WRB DT NN VBD TO VB DT NN PRP VBD NN IN DT NN RB . Thereupon the Swan , to induce him to spare her life , began to sing ; but she saved him nothing but the trouble of killing her , for she died of the song . RB DT NN , TO VB PRP TO VB PRP$ NN , VBD TO VB ; CC PRP VBD PRP DT CC DT NN IN VBG PRP , IN PRP VBD IN DT NN . At one Army base , the annual trip to the rifle range had been canceled for the second year in a row , but the semi-annual physical fitness test was still on as planned . IN CD NNP NN , DT JJ NN TO DT JJ NN VBD VBN VBN IN DT JJ NN IN DT NN , CC DT JJ JJ NN NN VBD RB IN IN VBN . One soldier mused , ' Does it bother anyone else that the Army does n't seem to care how well we can shoot , but they are extremely interested in how fast we can run ? ' CD NN VBD , `` VBZ PRP VB DT RB IN DT NNP VBZ RB VB TO VB WRB RB PRP MD VB , CC PRP VBP RB JJ IN WRB JJ PRP MD VB . `` I accidentally knocked my television over the other day . PRP RB VBD PRP$ NN RP DT JJ NN . When I turned it on I noticed the screen was cracked , but I put it back together with video tape and now it works fine . WRB PRP VBD PRP IN PRP VBD DT NN VBD VBN , CC PRP VBD PRP RB RB IN NN NN CC RB PRP VBZ RB . A top South Korean official says he hopes there will be a break this year in the impasse over North Korea 's nuclear weapons program . DT JJ JJ JJ NN VBZ PRP VBZ EX MD VB DT NN DT NN IN DT NN IN NNP NNP POS JJ NNS NN . Unification Minister Chung Dong-Young told the World Economic Forum in Davos , Switzerland , Sunday that South Korea is ready to provide large-scale economic aid if the North gives up its nuclear weapons program . NNP NNP NNP NNP VBD DT NNP NNP NNP IN NNP , NNP , NNP IN NNP NNP VBZ JJ TO VB JJ JJ NN IN DT NNP VBZ RP PRP$ JJ NNS NN . Mr. Chung said he hopes for a breakthrough by November , when South Korea hosts an Asia-Pacific Economic Cooperation summit . NNP NNP VBD PRP VBZ IN DT NN IN NNP , WRB NNP NNP VBZ DT JJ NNP NNP NN . Mr. Chung said if there is a resolution of the dispute , North Korea could attend the summit . NNP NNP VBD IN EX VBZ DT NN IN DT NN , NNP NNP MD VB DT NN . Sunday was the final day of the World Economic Forum - an annual gathering of international political and business leaders in the Swiss resort town of Davos . NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT JJ NN IN JJ JJ CC NN NNS IN DT JJ NN NN IN NNP . Venezuela has signed a deal with Russia for the purchase of 98 Ilyushin aircraft , which can be used for passengers and cargo . NNP VBZ VBN DT NN IN NNP IN DT NN IN CD NNP NN , WDT MD VB VBN IN NNS CC NN . Russian newspapers reported Friday that the state arms exporter , Rosoboronexport , signed the agreement during an air show near Moscow . JJ NNS VBD NNP IN DT NN NNS NN , NNP , VBD DT NN IN DT NN NN IN NNP . The value of the contract has not been disclosed . DT NN IN DT NN VBZ RB VBN VBN . The Izvestia newspaper quoted experts as saying the deal could be worth several billion dollars . DT NNP NN VBD NNS IN VBG DT NN MD VB JJ JJ CD NNS . Russia has already sold 24 Sukhoi jets and 53 helicopters to Venezuela . NNP VBZ RB VBN CD NNP NNS CC CD NNS TO NNP . Last year during a visit to Moscow , Venezuelan President Hugo Chavez signed a long-term deal with Russia to purchase $ 3 billion worth of helicopters , fighter jets and arms . JJ NN IN DT NN TO NNP , JJ NNP NNP NNP VBD DT JJ NN IN NNP TO VB $ CD CD NN IN NNS , NN NNS CC NNS . The United States bans sales of arms to Venezuela . DT NNP NNPS VBZ NNS IN NNS TO NNP . NATO officials say British troops are pulling out of a troubled district in southern Afghanistan after reaching an agreement with local elders and Afghan officials . NNP NNS VBP JJ NNS VBP VBG IN IN DT JJ NN IN JJ NNP IN VBG DT NN IN JJ NNS CC JJ NNS . NATO said Tuesday , that the withdrawal from the Musa Qala district of Helmand province was made at the demand of tribal leaders , and that the Taleban had no part in the agreement . NNP VBD NNP , IN DT NN IN DT NNP NNP NN IN NNP NN VBD VBN IN DT NN IN JJ NNS , CC IN DT NNP VBD DT NN IN DT NN . The move was made on the same day that NATO officials said coalition warplanes killed a mid-level Taleban commander and up to 15 other militants in an airstrike in southern Afghanistan . DT NN VBD VBN IN DT JJ NN IN NNP NNS VBD NN NNS VBD DT JJ NNP NN CC RB TO CD JJ NNS IN DT NN IN JJ NNP . A NATO statement said aircraft bombed an insurgent compound in the southern province of Uruzgan . DT NNP NN VBD NN VBD DT JJ NN IN DT JJ NN IN NNP . NATO did not identify the Taleban commander . NNP VBD RB VB DT NNP NN . Venezuelan President Hugo Chavez says he has evidence of a U.S. plan to invade his country . JJ NNP NNP NNP VBZ PRP VBZ NN IN DT NNP NN TO VB PRP$ NN . In a Nightline , ABC News television interview Friday in New York , Mr. Chavez said he has documentation of a U.S. military plan called ' Balboa ' detailing a U.S. invasion , which he said involves planes and aircraft carriers . IN DT NNP , NNP NNP NN NN NNP IN NNP NNP , NNP NNP VBD PRP VBZ NN IN DT NNP JJ NN VBD `` NNP `` VBG DT NNP NN , WDT PRP VBD VBZ NNS CC NN NNS . He was quoted as saying that if the United States attempts to invade his country , ' it would be embarking on a 100-year war . ' PRP VBD VBN IN VBG IN IN DT NNP NNPS NNS TO VB PRP$ NN , `` PRP MD VB VBG IN DT JJ NN . `` Mr. Chavez has repeatedly accused Washington of trying to topple his government , an accusation the United States denies . NNP NNP VBZ RB VBN NNP IN VBG TO VB PRP$ NN , DT NN DT NNP NNPS VBZ . Mr. Chavez has been attending the United Nations General Assembly summit in New York . NNP NNP VBZ VBN VBG DT NNP NNP NNP NNP NN IN NNP NNP . On Thursday , he lashed out at the United States , characterizing the country as a ' terrorist state . ' IN NNP , PRP VBD RP IN DT NNP NNPS , VBG DT NN IN DT `` JJ NN . `` U.S. President George Bush used his weekly radio address Saturday to mark the nation 's Independence Day by celebrating new U.S. citizens and honoring the armed forces . NNP NNP NNP NNP VBD PRP$ JJ NN NN NNP TO VB DT NN POS NN NN IN VBG JJ NNP NNS CC VBG DT JJ NNS . On Friday , the 232nd anniversary of the birth of the U.S. as an independent nation , Mr. Bush watched more than 70 people take an oath of citizenship . IN NNP , DT JJ NN IN DT NN IN DT NNP IN DT JJ NN , NNP NNP VBD JJR IN CD NNS VBP DT NN IN NN . In his address Saturday , the president said these new citizens reminded everyone at the ceremony that ' the promise of America is open to all . ' IN PRP$ NN NNP , DT NN VBD DT JJ NNS VBD DT IN DT NN IN `` DT NN IN NNP VBZ JJ TO DT . `` Mr. Bush noted that the new citizens came from many countries , including Iraq and Afghanistan . NNP NNP VBD IN DT JJ NNS VBD IN JJ NNS , VBG NNP CC NNP . He also praised the men and women of the U.S. armed forces who are risking their lives fighting in those countries . PRP RB VBD DT NNS CC NNS IN DT NNP JJ NNS WP VBP VBG PRP$ NNS VBG IN DT NNS . The president said Americans should be proud to live in a nation that he says has done ' more than any other to spread the light of liberty throughout the world . ' DT NN VBD NNS MD VB JJ TO VB IN DT NN IN PRP VBZ VBZ VBN `` RBR IN DT JJ TO VB DT NN IN NN IN DT NN . `` Afghan officials say at least eight police have been killed following an ambush by suspected Taleban rebels in southeastern Afghanistan . JJ NNS VBP IN JJS CD NNS VBP VBN VBN VBG DT NN IN JJ NNP NNS IN JJ NNP . Security officials say four Taleban insurgents were also killed in the attack Friday in Helmand province . NN NNS VBP CD NNP NNS VBD RB VBN IN DT NN NNP IN NNP NN . No other details were immediately available . DT JJ NNS VBD RB JJ . An interior ministry spokesman said captured Taleban insurgents led police there to look for a large Taleban hideout . DT JJ NN NN VBD VBN NNP NNS VBD NNS RB TO VB IN DT JJ NNP NN . A group of journalists marched through Port-au-Prince Thursday , demanding tougher action against rising violence as mourners attended the funeral of slain Haitian journalist Jacques Roche . DT NN IN NNS VBD IN NNP NNP , VBG JJR NN IN VBG NN IN NNS VBD DT NN IN NN JJ NN NNP NNP . During the religious ceremony , a priest close to ex-president Jean Bertrand Aristide , Gerard Jean Juste was attacked by an angry crowd . IN DT JJ NN , DT NN NN TO JJ NNP NNP NNP , NNP NNP NNP VBD VBN IN DT JJ NN . He was taken away to a police station for protection . PRP VBD VBN RB TO DT NN NN IN NN . Mr. Aristide 's supporters have been accused by some government officials of Mr. Roche 's murder . NNP NNP POS NNS VBP VBN VBN IN DT NN NNS IN NNP NNP POS NN . Haitian authorities found the body of Mr. Roche last week , days after gunmen abducted him . JJ NNS VBD DT NN IN NNP NNP JJ NN , NNS IN NNS VBD PRP . They said he was burned and tortured before being shot several times . PRP VBD PRP VBD VBN CC VBN IN VBG VBN JJ NNS . Haiti has seen a mounting wave of violence as it prepares for elections later this year . NNP VBZ VBN DT JJ NN IN NN IN PRP VBZ IN NNS RBR DT NN . The next U.S. president is likely to have an impact that extends far beyond a four-year term . DT JJ NNP NN VBZ JJ TO VB DT NN WDT VBZ RB IN DT JJ NN . As president , Republican John McCain or Democrat Barack Obama would have the chance to appoint at least one new justice to the U.S. Supreme Court . IN NN , NNP NNP NNP CC NNP NNP NNP MD VB DT NN TO VB IN JJS CD JJ NN TO DT NNP NNP NNP . Alex Moradi has this report , narrated by Leta Hong Fincher . NNP NNP VBZ DT NN , VBN IN NNP NNP NNP . A prosecutor at the war crimes trial of former Yugoslav President Slobodan Milosevic in The Hague has accused the defendant of trying to prolong the proceedings for self-promotion . DT NN IN DT NN NNS NN IN JJ JJ NNP NNP NNP IN DT NNP VBZ VBN DT NN IN VBG TO VB DT NNS IN NN . Prosecutor Geoffrey Nice made the comment Thursday , as Mr. Milosevic sought additional time beyond the 150 days the court has allotted for his defense . NNP NNP NNP VBD DT NN NNP , IN NNP NNP VBD JJ NN IN DT CD NNS DT NN VBZ VBN IN PRP$ NN . The former Yugoslav president wants to call hundreds of witnesses , including British Prime Minister Tony Blair and former U.S. President Bill Clinton . DT JJ JJ NN VBZ TO VB NNS IN NNS , VBG JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP . Mr. Milosevic 's trial began in 2002 and has been repeatedly delayed because of concerns over his health . NNP NNP POS NN VBD IN CD CC VBZ VBN RB VBN IN IN NNS IN PRP$ NN . Mr. Milosevic is charged with war crimes and genocide from conflicts in the former Yugoslavia in the 1990s . NNP NNP VBZ VBN IN NN NNS CC NN IN NNS IN DT JJ NNP IN DT NNS . He has refused to recognize the tribunal and is conducting his own defense . PRP VBZ VBN TO VB DT NN CC VBZ VBG PRP$ JJ NN . Japan says it will withdraw its air defense forces from Iraq by the end of the year . NNP VBZ PRP MD VB PRP$ NN NN NNS IN NNP IN DT NN IN DT NN . Defense Minister Yoshimasa Hayashi announced the plan Thursday in Tokyo . NNP NNP NNP NNP VBD DT NN NNP IN NNP . Japan 's Air Self-Defense Force has been airlifting materials and troops between Kuwait and locations in Iraq since 2006 . NNP POS NNP NNP NNP VBZ VBN VBG NNS CC NNS IN NNP CC NNS IN NNP IN CD . White House spokesman Gordon Johndroe issued a statement praising Japan 's contributions in Iraq . NNP NNP NN NNP NNP VBD DT NN VBG NNP POS NNS IN NNP . He said Japan will continue to be a ' significant partner in the war on terrorism . ' PRP VBD NNP MD VB TO VB DT `` JJ NN IN DT NN IN NN . `` Japan initially deployed ground forces to Iraq in 2003 , in support of the U.S. led-invasion . NNP RB VBD NN NNS TO NNP IN CD , IN NN IN DT NNP NN . The troops conducted a humanitarian mission in the south , building schools and roads , and providing clean water . DT NNS VBD DT JJ NN IN DT NN , VBG NNS CC NNS , CC VBG JJ NN . It was the first overseas deployment of Japanese troops since World War II . PRP VBD DT JJ JJ NN IN JJ NNS IN NNP NNP NNP . Many Japanese opposed the mission because they were against the war or believed it violated Japan 's pacifist constitution . JJ NNS VBD DT NN IN PRP VBD IN DT NN CC VBD PRP VBD NNP POS NN NN . US President Barack Obama returned to Washington Saturday , following a surprise visit to Afghanistan , where he visited troops and spoke with Afghan leaders . NNP NNP NNP NNP VBD TO NNP NNP , VBG DT NN NN TO NNP , WRB PRP VBD NNS CC VBD IN JJ NNS . Mr. Obama told U.S troops Friday at Bagram air base outside Kabul that the United States will not let Afghanistan be a safe haven for terrorists to attack America . NNP NNP VBD NNP NNS NNP IN NNP NN NN IN NNP IN DT NNP NNPS MD RB VB NNP VB DT JJ NN IN NNS TO VB NNP . He said the troops are making progress against the Taliban and will succeed in their mission . PRP VBD DT NNS VBP VBG NN IN DT NNP CC MD VB IN PRP$ NN . The president landed unannounced in Afghanistan Friday for an almost four hour visit , days before the White House is set to release a much anticipated review of the increasingly unpopular war . DT NN VBD JJ IN NNP NNP IN DT RB CD NN NN , NNS IN DT NNP NNP VBZ VBN TO VB DT JJ JJ NN IN DT RB JJ NN . Bad weather forced the White House to cancel plans for the president to meet face-to-face with Afghan President Hamid Karzai in Kabul . JJ NN VBD DT NNP NNP TO VB NNS IN DT NN TO VB JJ IN JJ NNP NNP NNP IN NNP . He instead held a phone conversation with Mr. Karzai from the air base . PRP RB VBD DT NN NN IN NNP NNP IN DT NN NN . U.S. Treasury Secretary Henry Paulson has arrived in China for a four-day visit expected to include an appeal for China to speed up reforms to its economy . NNP NNP NNP NNP NNP VBZ VBN IN NNP IN DT JJ NN VBN TO VB DT NN IN NNP TO VB RP NNS TO PRP$ NN . Officials say Paulson arrived late Tuesday in the eastern city of Hangzhou in Zhejiang province . NNS VBP NNP VBD JJ NNP IN DT JJ NN IN NNP IN NNP NN . There he met with provincial Communist Party leader Xi Jinping . EX PRP VBD IN JJ NNP NNP NN NNP NNP . The two met previously when Paulson was chief of the investment bank Goldman Sachs . DT CD VBD RB WRB NNP VBD NN IN DT NN NN NNP NNP . The U.S. treasury secretary flew into Hangzhou from meetings in Singapore . DT NNP NN NN VBD IN NNP IN NNS IN NNP . Before leaving for China , Paulson warned U.S. critics of Chinese economic policies not to expect a ' quick fix ' to the issues that divide the two nations . IN VBG IN NNP , NNP VBD NNP NNS IN JJ JJ NNS RB TO VB DT `` JJ NN `` TO DT NNS WDT VBP DT CD NNS . U.S. lawmakers are considering measures to punish Beijing for its growing trade gap with the United States . NNP NNS VBP VBG NNS TO VB NNP IN PRP$ VBG NN NN IN DT NNP NNPS . U.S. and European officials say China 's currency , the yuan , is undervalued , giving Chinese-made products an unfair advantage over foreign competitors . NNP CC JJ NNS VBP NNP POS NN , DT NN , VBZ VBN , VBG JJ NNS DT JJ NN IN JJ NNS . A coalition of Iraq 's majority Shi'ite Muslims has won nearly half the votes in last month 's landmark elections for a transitional national assembly . DT NN IN NNP POS NN NNP NNP VBZ VBN RB PDT DT NNS IN JJ NN POS NN NNS IN DT JJ JJ NN . A slate of Kurdish parties finished second with about 25 percent of the nearly 8.5 million votes cast January 30 . DT NN IN JJ NNS VBD JJ IN RB CD NN IN DT RB CD CD NNS VBN NNP CD . A slate led by interim Prime Minister Iyad Allawi finished third with 14 percent . DT NN VBN IN JJ NNP NNP NNP NNP VBD JJ IN CD NN . Speaking Sunday in Baghdad , an elections commission spokesman hailed the poll results as ' a new birth for Iraq . ' VBG NNP IN NNP , DT NNS NN NN VBD DT NN NNS IN `` DT JJ NN IN NNP . `` The 275-seat assembly will pick a new government to succeed the interim administration now in power . DT JJ NN MD VB DT JJ NN TO VB DT JJ NN RB IN NN . The assembly is to be dissolved and a new parliament elected by the end of this year . DT NN VBZ TO VB VBN CC DT JJ NN VBN IN DT NN IN DT NN . The tally shows only two percent of eligible voters in Sunni-dominated al-Anbar province went to the polls , while 17 percent voted in Ninevah province . DT NN VBZ RB CD NN IN JJ NNS IN JJ NNP NN VBD TO DT NNS , IN CD NN VBD IN NNP NN . Parties have three days to file protests against to the vote tally , before results become official . NNS VBP CD NNS TO VB NNS IN TO DT NN RB , IN NNS VBP JJ . For more a year , the U.S. military in Iraq , with its reinforcements , has been on the offensive in an effort to wipe out insurgents from their strongholds . IN RBR DT NN , DT NNP NN IN NNP , IN PRP$ NNS , VBZ VBN IN DT NN IN DT NN TO VB RP NNS IN PRP$ NNS . The Bush administration claims ' the surge , ' as the reinforcement was called , has helped reduce violence around the country . DT NNP NN VBZ `` DT NN , `` IN DT NN VBD VBN , VBZ VBN VB NN IN DT NN . One key area of focus , just south of Baghdad , was once known as the ' Triangle of Death . ' CD JJ NN IN NN , RB RB IN NNP , VBD RB VBN IN DT `` NNP IN NNP . `` VOA 's Deborah Block went to a village there with the U.S. Army 's 2nd Battalion , 502nd Infantry , 101st Airborne , on a mission to find suspected al-Qaida militants . NNP POS NNP NNP VBD TO DT NN RB IN DT NNP NNP POS JJ NN , JJ NNP , CD NNP , IN DT NN TO VB JJ NNP NNS . Belarusian opposition leader Alexander Milinkevich says the democratic movement in Belarus will eventually achieve success despite the repressive policies of President Alexander Lukashenko . JJ NN NN NNP NNP VBZ DT JJ NN IN NNP MD RB VB NN IN DT JJ NNS IN NNP NNP NNP . Mr. Milinkevich told reporters in Warsaw the persistent protests of opposition activists against what they saw as Mr. Lukashenko 's fraudulent victory in elections earlier this month had surprised and shocked the Belarusian leader . NNP NNP VBD NNS IN NNP DT JJ NNS IN NN NNS IN WP PRP VBD IN NNP NNP POS JJ NN IN NNS RBR DT NN VBD VBN CC VBN DT JJ NN . Security police last week broke up five days of protests by pro-democracy activists in Minsk , arresting hundreds . NNP NNS JJ NN VBD RP CD NNS IN NNS IN JJ NNS IN NNP , VBG NNS . In comments after meeting with Polish President Lech Kaczynski , Mr. Milinkevich thanked Poland and other European Union countries for their support for democracy in Belarus . IN NNS IN VBG IN JJ NNP NNP NNP , NNP NNP VBD NNP CC JJ NNP NNP NNS IN PRP$ NN IN NN IN NNP . The meeting came ahead of the signing of a document under which Poland agreed to provide scholarships for at least 300 Belarusian youths dismissed from universities in Belarus for supporting the opposition . DT NN VBD RB IN DT NN IN DT NN IN WDT NNP VBD TO VB NNS IN IN JJS CD JJ NNS VBN IN NNS IN NNP IN VBG DT NN . Gunmen from the Palestinian Fatah movement have announced formation of a two thousand member militia , in an apparent move to counter a new security force unveiled by the rival group Hamas . NNS IN DT JJ NNP NN VBP VBN NN IN DT CD CD NN NN , IN DT JJ NN TO VB DT JJ NN NN VBN IN DT JJ NN NNP . Last week , Hamas , which swept to power in parliamentary elections in January , said it was forming a four thousand-strong paramilitary force to maintain order in the Palestinian territories . JJ NN , NNP , WDT VBD TO NN IN JJ NNS IN NNP , VBD PRP VBD VBG DT CD JJ JJ NN TO VB NN IN DT JJ NNS . The specter of competing Palestinian security forces has raised concern for potential violence between the factions . DT NN IN VBG JJ NN NNS VBZ VBN NN IN JJ NN IN DT NNS . Fatah sources Wednesday told a VOA reporter their new force is not designed to compete with Hamas . NNP NNS NNP VBD DT NNP NN PRP$ JJ NN VBZ RB VBN TO VB IN NNP . Those comments contradicted those of a Fatah spokesman who told Reuters news agency the force is being organized in a challenge to the Hamas militia . DT NNS VBD DT IN DT NNP NN WP VBD NNP NN NN DT NN VBZ VBG VBN IN DT NN TO DT NNP NN . Several dozen people were wounded last month in factional clashes after Palestinian President Mahmoud Abbas rejected Hamas ' appointment of a leading Gaza militant to head the Hamas-dominated security unit . JJ NN NNS VBD VBN JJ NN IN JJ NNS IN JJ NNP NNP NNP VBD NNP POS NN IN DT VBG NNP NN TO VB DT JJ NN NN . Lebanon 's pro-Syrian President Emile Lahoud has rejected a proposal for a United Nations-backed court probe into the murder of former Prime Minister Rafik Hariri . NNP POS JJ NNP NNP NNP VBZ VBN DT NN IN DT NNP NNP NN NN IN DT NN IN JJ NNP NNP NNP NNP . Lahoud said Saturday he is returning the draft for review by the Cabinet , which approved the planned court last month . NNP VBD NNP PRP VBZ VBG DT NN IN NN IN DT NNP , WDT VBD DT VBN NN JJ NN . He said the Cabinet 's decision was not valid because it came after six ministers from the pro-Syrian opposition resigned . PRP VBD DT NNP POS NN VBD RB JJ IN PRP VBD IN CD NNS IN DT JJ NN VBD . Hezbollah leaders have called mass demonstrations on Sunday to press for more participation by opposition parties in the government . NNP NNS VBP VBN JJ NNS IN NNP TO VB IN JJR NN IN NN NNS IN DT NN . Prime Minister Fuad Siniora has accused the militant group of threatening a coup against his U.S.-backed government . NNP NNP NNP NNP VBZ VBN DT JJ NN IN VBG DT NN IN PRP$ JJ NN . On Friday , U.S. Secretary of State Condoleezza Rice expressed concern that extremist forces and Syria and Iran are trying to destabilize Lebanon . IN NNP , NNP NNP IN NNP NNP NNP VBD NN IN NN NNS CC NNP CC NNP VBP VBG TO VB NNP . She said such pressure on Mr. Siniora 's government can not be tolerated . PRP VBD JJ NN IN NNP NNP POS NN MD RB VB VBN . Authorities in Malawi say two youths were shot and wounded when a guard fired on a crowd fighting to get government-subsidized maize . NNS IN NNP VBP CD NNS VBD VBN CC VBN WRB DT NN VBN IN DT NN VBG TO VB JJ NN . The incident occurred earlier this week in Malawi 's drought-stricken southern district of Nsanje . DT NN VBD RBR DT NN IN NNP POS JJ JJ NN IN NNP . Police say the guard fired while trying to control a crush of people attempting to force their way into a government depot . NNS VBP DT NN VBD IN VBG TO VB DT NN IN NNS VBG TO VB PRP$ NN IN DT NN NN . Malawi is facing a general food crisis brought on by poor rainfall , inadequate planting supplies , and the impact of the AIDS pandemic . NNP VBZ VBG DT JJ NN NN VBN RP IN JJ NN , JJ NN NNS , CC DT NN IN DT NNP NN . In October , the government declared a national disaster and appealed for help . IN NNP , DT NN VBD DT JJ NN CC VBD IN NN . Aid agencies say five million of Malawi 's 12 million people are in need of food aid . JJ NNS VBP CD CD IN NNP POS CD CD NNS VBP IN NN IN NN NN . The kidnappers of an Italian photojournalist in Afghanistan say he is in good health after the deadline for their demands expired Sunday night . DT NNS IN DT JJ NN IN NNP VBP PRP VBZ IN JJ NN IN DT NN IN PRP$ NNS VBN NNP NN . The Italian aid group Emergency said Monday the kidnappers contacted its staff in an Italian-run hospital in southern Helmand province . DT JJ NN NN NNP VBD NNP DT NNS VBD PRP$ NN IN DT JJ NN IN JJ NNP NN . Italian photographer Gabriele Torsello and his interpreter disappeared between October 12 and 14 . JJ NN NNP NNP CC PRP$ NN VBD IN NNP CD CC CD . They were traveling from the Helmand provincial capital , Lashkar Gah , to neighboring Kandahar . PRP VBD VBG IN DT NNP JJ NN , NNP NNP , TO JJ NNP . The abductors demanded a withdrawal of Italian forces from Afghanistan by the end of the Muslim holy month of Ramadan , which ended Sunday evening in that country . DT NNS VBD DT NN IN JJ NNS IN NNP IN DT NN IN DT NNP JJ NN IN NNP , WDT VBD NNP NN IN DT NN . Torsello 's abductors have been in contact with the Emergency group since the abduction . NNP POS NNS VBP VBN IN NN IN DT NN NN IN DT NN . They said earlier they would kill him if their demands were not met . PRP VBD RBR PRP MD VB PRP IN PRP$ NNS VBD RB VBN . A U.S. immigration official says several nations have refused to accept a 78-year-old Cuban militant awaiting deportation from the United States . DT NNP NN NN VBZ JJ NNS VBP VBN TO VB DT JJ JJ NN VBG NN IN DT NNP NNPS . The official , Donald George , testified at a U.S. hearing on Monday for Luis Posada Carriles who was detained on immigration charges more than a year ago . DT NN , NNP NNP , VBD IN DT NNP NN IN NNP IN NNP NNP NNPS WP VBD VBN IN NN NNS RBR IN DT NN RB . Lawyers for Posada Carriles say the nations that have refused to take him are Canada , Mexico , Costa Rica , Honduras , Guatemala and El Salvador . NNS IN NNP NNP VBP DT NNS WDT VBP VBN TO VB PRP VBP NNP , NNP , NNP NNP , NNP , NNP CC NNP NNP . The militant has asked to be released from custody to live with relatives in Florida while U.S. officials process the deportation order . DT NN VBZ VBN TO VB VBN IN NN TO VB IN NNS IN NNP IN NNP NNS VBP DT NN NN . But U.S. officials say he is a threat and should remain in jail . CC NNP NNS VBP PRP VBZ DT NN CC MD VB IN NN . Venezuela 's government has accused Posada Carriles in the 1976 bombing of a Cuban airliner that killed 73 people . NNP POS NN VBZ VBN NNP NNP IN DT CD NN IN DT JJ NN WDT VBD CD NNS . U.S. officials have refused to send him to Venezuela or to Cuba , saying he could be tortured or killed . NNP NNS VBP VBN TO VB PRP TO NNP CC TO NNP , VBG PRP MD VB VBN CC VBN . The White House says President Bush will welcome Rwandan President Paul Kagame next Wednesday for talks on a range of issues , including development , AIDS and the conflict in Sudan . DT NNP NNP VBZ NNP NNP MD VB JJ NNP NNP NNP JJ NNP IN NNS IN DT NN IN NNS , VBG NN , NNP CC DT NN IN NNP . A White House spokesman says President Bush looks forward to discussing Rwanda 's successful participation in the president 's emergency plan for AIDS relief ( PEPFAR ) , as well as U.S. development assistance for the continent ( the African Growth and Opportunity Act ) . DT NNP NNP NN VBZ NNP NNP VBZ RB TO VBG NNP POS JJ NN IN DT NN POS NN NN IN NNP NN LRB NN RRB , RB RB IN NNP NN NN IN DT NN LRB DT JJ NN CC NNP NNP RRB . He said the two will also talk about Rwanda 's strides toward democracy and reconciliation and the important role of women in advancing these issues . PRP VBD DT CD MD RB VB IN NNP POS NNS IN NN CC NN CC DT JJ NN IN NNS IN VBG DT NNS . The spokesman said President Bush will recognize Rwanda 's contributions to stability in the Great Lakes region and its peacekeeping contributions to Sudan . DT NN VBD NNP NNP MD VB NNP POS NNS TO NN IN DT NNP NNP NN CC PRP$ NN NNS TO NNP . Indonesian health officials say local tests show an eight-year-old boy in Jakarta has died of bird flu . JJ NN NNS VBP JJ NNS VBP DT JJ NN IN NNP VBZ VBN IN NN NN . The child died last week . DT NN VBD JJ NN . A World Health Organization ( WHO ) laboratory in Hong Kong is testing samples from the boy as well as from a 39-year-old man who was earlier reported to have contracted the disease . DT NNP NNP NNP LRB NNP RRB NN IN NNP NNP VBZ VBG NNS IN DT NN RB RB IN IN DT JJ NN WP VBD RB VBN TO VB VBN DT NN . Indonesian health officials announced Friday that local tests showed the man had died earlier in the week of bird flu . JJ NN NNS VBD NNP IN JJ NNS VBD DT NN VBD VBN RBR IN DT NN IN NN NN . Results from the WHO testing are expected in several days . NNS IN DT NNP NN VBP VBN IN JJ NNS . If the deaths are confirmed to be caused by the bird flu virus , they will bring Indonesia 's human toll from the disease to eleven . IN DT NNS VBP VBN TO VB VBN IN DT NN NN NN , PRP MD VB NNP POS JJ NN IN DT NN IN CD . So far , avian flu is known to have killed nine people in Indonesia , and more than 70 in Asia since 2003 . RB RB , JJ NN VBZ VBN TO VB VBN CD NNS IN NNP , CC JJR IN CD IN NNP IN CD . Cameroon has become the fourth African country to report a case of the deadly bird flu virus . NNP VBZ VBN DT JJ JJ NN TO VB DT NN IN DT JJ NN NN NN . A government statement released Sunday said the H5N1 strain was detected at a duck farm in the northern town of Maroua . DT NN NN VBN NNP VBD DT NNP NN VBD VBN IN DT NN NN IN DT JJ NN IN NNP . Cameroon had already implemented a ban on importing birds after the H5N1 virus was reported in neighboring Nigeria . NNP VBD RB VBN DT NN IN VBG NNS IN DT NNP NN VBD VBN IN JJ NNP . Health officials are concerned that Africa is not prepared to combat the avian flu because of a lack of money and other resources . NNP NNS VBP VBN IN NNP VBZ RB JJ TO VB DT JJ NN IN IN DT NN IN NN CC JJ NNS . Avian flu has also been found in Asia , Europe and the Middle East . JJ NN VBZ RB VBN VBN IN NNP , NNP CC DT NNP NNP . The World Health Organization reports the virus has killed 97 people since 2003 , mostly in Asia . DT NNP NNP NNP VBZ DT NN VBZ VBN CD NNS IN CD , RB IN NNP . Palestinian witnesses say an Israeli aircraft has fired missiles at suspected Hamas militants preparing to fire rockets at Israeli targets in the Gaza Strip . JJ NNS VBP DT JJ NN VBZ VBN NNS IN JJ NNP NNS VBG TO VB NNS IN JJ NNS IN DT NNP NNP . There were no immediate reports of casualties near the Khan Younis refugee camp , where the suspected militants were located . EX VBD DT JJ NNS IN NNS IN DT NNP NNP NN NN , WRB DT JJ NNS VBD VBN . Witnesses said that several men apparently targeted by the aircraft escaped unharmed . NNS VBD IN JJ NNS RB VBN IN DT NN VBD JJ . On Tuesday , four Palestinians and a Chinese laborer were killed in the Palestinian territories , in the deadliest day of violence since Israel and the Palestinians began observing a ceasefire four months ago . IN NNP , CD NNS CC DT JJ NN VBD VBN IN DT JJ NNS , IN DT JJS NN IN NN IN NNP CC DT NNS VBD VBG DT JJ CD NNS RB . Three of the dead were killed by Hamas rocket fire in Gaza . CD IN DT NN VBD VBN IN NNP NN NN IN NNP . In related developments , Israeli media say some top security officials are lobbying the government to deliver a ' crushing blow ' to Hamas , ahead of Israel 's planned evacuation of the Gaza Strip in August . IN JJ NNS , JJ NNS VBP DT JJ NN NNS VBP VBG DT NN TO VB DT `` VBG NN `` TO NNP , RB IN NNP POS JJ NN IN DT NNP NNP IN NNP . Ecuador 's constituent assembly has approved a new draft constitution that will be put to a referendum in September . NNP POS JJ NN VBZ VBN DT JJ NN NN WDT MD VB VBN TO DT NN IN NNP . The new charter approved late Thursday would grant President Rafael Correa broad powers , including functions currently held by the Central Bank . DT JJ NN VBN JJ NNP MD VB NNP NNP NNP JJ NNS , VBG NNS RB VBN IN DT NNP NNP . It would also modify term limits , allowing him to seek re-election . PRP MD RB VB NN NNS , VBG PRP TO VB NN . President Correa has said the constitution should be changed to limit the power of Ecuador 's major political parties . NNP NNP VBZ VBN DT NN MD VB VBN TO VB DT NN IN NNP POS JJ JJ NNS . However opposition members say the real reason for the change of constitution is to keep the leftist president in power and increase his control of the country . RB NN NNS VBP DT JJ NN IN DT NN IN NN VBZ TO VB DT JJ NN IN NN CC VB PRP$ NN IN DT NN . Pakistan says it will postpone the purchase of F-16 fighter jets from the United States in order to provide more relief to victims of the devastating October eighth earthquake . NNP VBZ PRP MD VB DT NN IN NN NN NNS IN DT NNP NNPS IN NN TO VB JJR NN TO NNS IN DT JJ NNP JJ NN . President Pervez Musharraf made the announcement during a tour of quake-hit areas Friday . NNP NNP NNP VBD DT NN IN DT NN IN JJ NNS NNP . He said the government wants to provide maximum relief and reconstruction efforts . PRP VBD DT NN VBZ TO VB JJ NN CC NN NNS . General Musharraf had earlier said his country did not plan to cut into its defense budget to increase funds for relief efforts . NNP NNP VBD JJR VBD PRP$ NN VBD RB VB TO VB IN PRP$ NN NN TO VB NNS IN NN NNS . On Thursday , Jordan 's Queen Rania , speaking on behalf of the United Nations children 's fund , called for help to immunize Pakistani children against disease . IN NNP , NNP POS NNP NNP , VBG IN NN IN DT NNP NNP NNS POS NN , VBD IN NN TO VB JJ NNS IN NN . Quake survivors marked a normally joyous Muslim festival of Eid-al-Fitr today with somber prayers amid ruins and debris , and visits to the graves of their relatives who died in the catastrophe . NN NNS VBD DT RB JJ NNP NN IN NNP NN IN JJ NNS IN NNS CC NN , CC NNS TO DT NNS IN PRP$ NNS WP VBD IN DT NN . Pakistan this week raised its death toll from the quake to more than 73,000 . NNP DT NN VBD PRP$ NN NN IN DT NN TO JJR IN CD . A shootout between gunmen and security forces has killed nine people at the offices of an Italian oil company in southern Nigeria . DT NN IN NNS CC NN NNS VBZ VBN CD NNS IN DT NNS IN DT JJ NN NN IN JJ NNP . The company , Eni , says it has temporarily evacuated staff and contractors from its base in the city of Port Harcourt . DT NN , NNP , VBZ PRP VBZ RB VBN NN CC NNS IN PRP$ NN IN DT NN IN NNP NNP . Witnesses say the dead include eight policemen and one civilian . NNS VBP DT NN VBP CD NNS CC CD JJ . The company says a number of people were also wounded in Tuesday 's attack . DT NN VBZ DT NN IN NNS VBD RB VBN IN NNP POS NN . According to several accounts , the gunmen raided the offices , exchanged fire with police , and robbed a bank on the premises before making their escape . VBG TO JJ NNS , DT NNS VBD DT NNS , VBD NN IN NN , CC VBN DT NN IN DT NNS IN VBG PRP$ NN . It was unclear if the gunmen are linked to militants who have staged a recent series of attacks on Nigerian oil facilities . PRP VBD JJ IN DT NNS VBP VBN TO NNS WP VBP VBN DT JJ NN IN NNS IN JJ NN NNS . The attacks have led to an estimated 10-percent drop in Nigerian oil production , putting pressure on world prices . DT NNS VBP VBN TO DT JJ JJ NN IN JJ NN NN , VBG NN IN NN NNS . A major winter storm has hit both the U.S. midwest and northeastern part of the country , as well as eastern Canada . DT JJ NN NN VBZ VBN DT DT NNP NN CC JJ NN IN DT NN , RB RB IN JJ NNP . Sunday 's wintry blast caused hazardous driving conditions and resulted in hundreds of flight cancellations at local airports . NNP POS NN NN VBD JJ NN NNS CC VBD IN NNS IN NN NNS IN JJ NNS . Officials say both Chicago and Boston have received up more than 25 centimeters of snow . NNS VBP DT NNP CC NNP VBP VBN RP RBR IN CD NNS IN NN . In addition , authorities say at least 40 centimeters is expected in Canada . IN NN , NNS VBP IN JJS CD NNS VBZ VBN IN NNP . The storm follows last week 's ice storm in the U.S. Midwest which contributed to the death of at least 13 people and left thousands of homes and businesses without power . DT NN VBZ JJ NN POS NN NN IN DT NNP NNP WDT VBD TO DT NN IN IN JJS CD NNS CC VBD NNS IN NNS CC NNS IN NN . Canadian meteorologists call the storm a dangerous one . JJ NNS VBP DT NN DT JJ CD . Pakistani authorities confirm that a deadly strain of the bird flu virus has been detected near the southern city of Karachi . JJ NNS VBP IN DT JJ NN IN DT NN NN NN VBZ VBN VBN IN DT JJ NN IN NNP . Authorities say the H5N1 virus has been found at a poultry farm on the outskirts of Pakistan 's largest city . NNS VBP DT NNP NN VBZ VBN VBN IN DT NN NN IN DT NNS IN NNP POS JJS NN . The farm has been quarantined to prevent further spread of the virus . DT NN VBZ VBN VBN TO VB JJ NN IN DT NN . Health officials say they are monitoring farm workers , but so far there is no sign of human infection . NNP NNS VBP PRP VBP VBG NN NNS , CC RB RB EX VBZ DT NN IN JJ NN . Pakistan recorded its first human death from bird flu in December . NNP VBD PRP$ JJ JJ NN IN NN NN IN NNP . A man who worked on a poultry farm in North West Frontier Province died . DT NN WP VBD IN DT NN NN IN NNP NNP NNP NNP VBD . His brother had recently died as well , but was not tested for the virus . PRP$ NN VBD RB VBN RB RB , CC VBD RB VBN IN DT NN . Kyrgyzstan 's provisional leader Roza Otunbayeva was sworn in as president Saturday , making her the first female president in the history of ex-Soviet Central Asia . NNP POS JJ NN NNP NNP VBD VBN IN IN NN NNP , VBG PRP DT JJ NN NN IN DT NN IN NNP NNP NNP . Her inauguration in a concert hall in Bishkek comes just days after the country overwhelmingly approved a new constitution . PRP$ NN IN DT NN NN IN NNP VBZ RB NNS IN DT NN RB VBD DT JJ NN . Over the course of her tenure as caretaker president , which lasts to the end of 2011 , Ms. Otunbayeva will oversee the implementation of the new constitution and the establishment of the region 's first parliamentary democracy . IN DT NN IN PRP$ NN IN NN NN , WDT VBZ TO DT NN IN CD , NNP NNP MD VB DT NN IN DT JJ NN CC DT NN IN DT NN POS JJ JJ NN . Parliamentary elections are set for October 10 . JJ NNS VBP VBN IN NNP CD . Kyrgyzstan 's interim government has struggled to impose order since it took power following the April 7 deadly uprising that ousted President Kurmanbek Bakiyev . NNP POS JJ NN VBZ VBN TO VB NN IN PRP VBD NN VBG DT NNP CD JJ NN WDT VBD NNP NNP NNP . An estimated 2,000 people were killed during ethnic clashes between Kyrgyz and Uzbeks that began June 10 in the southern cities of Osh and Jalalabad . DT VBN CD NNS VBD VBN IN JJ NNS IN NNS CC NNS WDT VBD NNP CD IN DT JJ NNS IN NNP CC NNP . Russian news reports say the military has deployed another batch of intercontinental ballistic missiles . JJ NN NNS VBP DT NN VBZ VBN DT NN IN JJ JJ NNS . The announcement Sunday says three new Topol-M truck-mounted missile units have been positioned about 250 kilometers northeast of Moscow , in the Ivanovo region near Teikovo . DT NN NNP VBZ CD JJ NNP JJ NN NNS VBP VBN VBN IN CD NNS RB IN NNP , IN DT NNP NN IN NNP . A first batch of the mobile missiles were deployed in the area last year . DT JJ NN IN DT JJ NNS VBD VBN IN DT NN JJ NN . Analysts say the missile has an effective range of 10,000 kilometers and can carry a more than one-ton payload . NNS VBP DT NN VBZ DT JJ NN IN CD NNS CC MD VB DT JJR IN JJ NN . Russian military chiefs have been quoted as saying the mobile Topol missiles are aimed at countering U.S. missile shield plans in central Europe . JJ JJ NNS VBP VBN VBN IN VBG DT JJ NNP NNS VBP VBN IN VBG NNP NN NN NNS IN JJ NNP . Russia opposes U.S. plans for 10 missile interceptors in Poland and guidance radar in the Czech Republic . NNP VBZ NNP NNS IN CD NN NNS IN NNP CC NN NN IN DT JJ NNP . Washington says the missile shield will protect the United States and its European allies from potential missile attacks from Iran . NNP VBZ DT NN NN MD VB DT NNP NNPS CC PRP$ JJ NNS IN JJ NN NNS IN NNP . But Moscow insists the U.S. deployment will destabilize central and eastern Europe and lead to a new arms race . CC NNP VBZ DT NNP NN MD VB JJ CC JJ NNP CC NN TO DT JJ NNS NN . Representatives from hundreds of oil companies around the world are bidding for new oil exploration contracts in Nigeria . NNS IN NNS IN NN NNS IN DT NN VBP VBG IN JJ NN NN NNS IN NNP . Nigeria is offering the rights to over 70 parcels of land Friday in the largest open bidding in the country 's history . NNP VBZ VBG DT NNS TO IN CD NNS IN NN NNP IN DT JJS JJ NN IN DT NN POS NN . The land stretches from Lake Chad in the northeast to the Gulf of Guinea in the south , where huge oil discoveries have already been made . DT NN VBZ IN NNP NNP IN DT NN TO DT NNP IN NNP IN DT NN , WRB JJ NN NNS VBP RB VBN VBN . Also Friday , the Nigerian government raised domestic oil prices by about 40 percent . RB NNP , DT JJ NN VBD JJ NN NNS IN IN CD NN . Although Nigeria is the continent 's top crude oil exporter , it has to import refined oil and has been affected by record high oil prices . IN NNP VBZ DT NN POS JJ NN NN NN , PRP VBZ TO VB JJ NN CC VBZ VBN VBN IN NN JJ NN NNS . Nigerian labor unions say they will fight the price hike . JJ NN NNS VBP PRP MD VB DT NN NN . Belarus has set December 19 as the date for the next presidential election . NNP VBZ VBN NNP CD IN DT NN IN DT JJ JJ NN . Incumbent Alexander Lukashenko , who has been in power since 1994 , is likely to run for another term . NNP NNP NNP , WP VBZ VBN IN NN IN CD , VBZ JJ TO VB IN DT NN . The political opposition in Belarus is fragmented and Mr. Lukashenko 's government maintains tight control over the media . DT JJ NN IN NNP VBZ VBN CC NNP NNP POS NN VBZ JJ NN IN DT NNS . The autocratic Mr. Lukashenko has done away with presidential term limits and international observers have declared past elections as undemocratic . DT JJ NNP NNP VBZ VBN RP IN JJ NN NNS CC JJ NNS VBP VBN JJ NNS IN JJ . Former U.S. President George W. Bush dubbed Mr. Lukashenko as ' Europe 's last dictator . ' JJ NNP NNP NNP NNP NNP VBD NNP NNP IN `` NNP POS JJ NN . `` Egypt says it plans to deport some 650 Sudanese asylum-seekers dispersed by police from a make-shift camp in downtown Cairo last week . NNP VBZ PRP VBZ TO VB DT CD JJ NNS VBN IN NNS IN DT JJ NN IN NN NNP JJ NN . A foreign ministry spokeswoman , Fatma el-Zahraa Etman , said that those set for deportation on Thursday were found to be illegal immigrants or had broken Egyptian law . DT JJ NN NN , NNP NNP NNP , VBD IN DT VBN IN NN IN NNP VBD VBN TO VB JJ NNS CC VBD VBN JJ NN . The Sudanese migrants were among a group of about 1,000 who clashed with police last week . DT JJ NNS VBD IN DT NN IN IN CD WP VBD IN NN JJ NN . Twenty-seven people were killed in the violence . CD NNS VBD VBN IN DT NN . Egyptian officials said the deaths were caused by a stampede , but witnesses said police beat the Sudanese . JJ NNS VBD DT NNS VBD VBN IN DT NN , CC NNS VBD NNS VBD DT JJ . The migrants had been camped out for three months near the offices of the U.N. refugee agency , demanding to be resettled in a third country . DT NNS VBD VBN VBN RP IN CD NNS IN DT NNS IN DT NNP NN NN , VBG TO VB VBN IN DT JJ NN . Officials for the U.N. agency expressed shock at the last week 's clashes , saying they had been trying to negotiate a peaceful resolution . NNS IN DT NNP NN VBD NN IN DT JJ NN POS NNS , VBG PRP VBD VBN VBG TO VB DT JJ NN . Iran has warned the European Union that Tehran will never surrender its right to nuclear fuel . NNP VBZ VBN DT NNP NNP IN NNP MD RB VB PRP$ NN TO JJ NN . A spokesman for Iran 's Supreme National Security Council said Saturday EU negotiators can offer no incentive that would compel the Islamic republic to abandon its nuclear program . DT NN IN NNP POS NNP NNP NNP NNP VBD NNP NNP NNS MD VB DT NN WDT MD VB DT JJ NN TO VB PRP$ JJ NN . Britain , France and Germany have asked Tehran to surrender its fuel-making program in return for economic incentives . NNP , NNP CC NNP VBP VBN NNP TO VB PRP$ JJ NN IN NN IN JJ NNS . Tehran insists it has every right to enrich uranium for reactors to make electricity . NNP VBZ PRP VBZ DT NN TO VB NN IN NNS TO VB NN . The United States accuses Iran of secretly developing nuclear weapons . DT NNP NNPS VBZ NNP IN RB VBG JJ NNS . Tehran says its nuclear program is only for peaceful purposes . NNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS . Award-winning choreographer Michael Kidd has died at his home in Los Angeles . JJ NN NNP NNP VBZ VBN IN PRP$ NN IN NNP NNP . A family member says Kidd was 92-years-old , and died of cancer Sunday night . DT NN NN VBZ NNP VBD JJ , CC VBD IN NN NNP NN . The choreographer was best known for producing exuberant dance numbers for Broadway shows such as Guys and Dolls and Can-Can . DT NN VBD RB VBN IN VBG JJ NN NNS IN NNP NNS JJ IN NNP CC NNP CC NNP . He also worked on movies , including the 1954 film , Seven Brides for Seven Brothers . PRP RB VBD IN NNS , VBG DT CD NN , NNP NNP IN NNP NNPS . During his long career , Kidd won five Tony Awards for his theater work . IN PRP$ JJ NN , NNP VBD CD NNP NNS IN PRP$ NN NN . He also earned a special Academy Award in 1997 in recognition of his choreography for movies . PRP RB VBD DT JJ NNP NNP IN CD IN NN IN PRP$ NN IN NNS . Authorities in Laos say they have detected the country 's first outbreak of the H5N1 bird flu virus in almost seven months . NNS IN NNP VBP PRP VBP VBN DT NN POS JJ NN IN DT NNP NN NN NN IN RB CD NNS . Government spokesman Yong Chanthalangsy said Tuesday at least 17 birds have died of the virus in Non-Sawang , a village just outside the capital , Vientiane . NNP NN NNP NNP VBD NNP IN JJS CD NNS VBP VBN IN DT NN IN NNP , DT NN RB IN DT NN , NNP . He said at least 1,000 birds have been killed in an effort to stop the virus from spreading . PRP VBD IN JJS CD NNS VBP VBN VBN IN DT NN TO VB DT NN IN VBG . The H5N1 virus usually affects poultry , but it has spread to humans in some cases . DT NNP NN RB VBZ NN , CC PRP VBZ VBN TO NNS IN DT NNS . 167 people have died from the virus worldwide since 2003 . CD NNS VBP VBN IN DT NN NN IN CD . Syria 's official news agency says President Bashar al-Assad has pardoned and released 112 political prisoners . NNP POS JJ NN NN VBZ NNP NNP NNP VBZ VBN CC VBN CD JJ NNS . SANA reports that the mass release is part of what it calls the president 's open and tolerant approach in dealing with the issue of political detainees . NNP VBZ IN DT NN NN VBZ NN IN WP PRP VBZ DT NN POS JJ CC JJ NN IN VBG IN DT NN IN JJ NNS . Last month , Damascus freed 20 political prisoners , but Tuesday 's was said to be the largest release in three years . JJ NN , NNP VBD CD JJ NNS , CC NNP POS VBD VBN TO VB DT JJS NN IN CD NNS . President Assad succeeded his late father , Hafez al-Assad , in July 2000 , committing to political reform . NNP NNP VBD PRP$ JJ NN , NNP NNP , IN NNP CD , VBG TO JJ NN . However , rights groups have been critical of his administration , accusing him of cracking down on pro-democracy groups . RB , NNS NNS VBP VBN JJ IN PRP$ NN , VBG PRP IN VBG RP IN JJ NNS . Ukraine 's Prime Minister Yuriy Yekhanurov says the signing of a controversial natural gas deal with Russia has been postponed again . NNP POS NNP NNP NNP NNP VBZ DT NN IN DT JJ JJ NN NN IN NNP VBZ VBN VBN RB . The signing had already been delayed from Saturday to Wednesday . DT NN VBD RB VBN VBN IN NNP TO NNP . But Yekhanurov says experts continue to work on documents . CC NNP VBZ NNS VBP TO VB IN NNS . A draft agreement , reached January 4 , calls for Ukraine to pay Russia $ 95 per 1,000 cubic meters of natural gas , nearly twice as much as the previous rate . DT NN NN , VBD NNP CD , VBZ IN NNP TO VB NNP $ CD IN CD JJ NNS IN JJ NN , RB RB RB JJ IN DT JJ NN . The agreement triggered a political crisis in Ukraine , and parliament voted to dismiss the government . DT NN VBD DT JJ NN IN NNP , CC NN VBD TO VB DT NN . Meanwhile , the prime minister urged Ukrainian industry to sharply cut the use of natural gas , warning that otherwise authorities will have to cut off supplies . RB , DT JJ NN VBD JJ NN TO RB VB DT NN IN JJ NN , VBG IN RB NNS MD VB TO VB RP NNS . Earlier , Russian officials again accused Ukraine of siphoning off supplies Russia is sending through Ukrainian pipelines to other European countries . RB , JJ NNS RB VBD NNP IN VBG RP NNS NNP VBZ VBG IN JJ NNS TO JJ JJ NNS . Some had complained of reduced flows as they sought to deal with frigid temperatures . DT VBD VBN IN JJ NNS IN PRP VBD TO VB IN JJ NNS . A bomb exploded in an industrial zone of a predominantly Christian neighborhood of Beirut Saturday night , injuring at least eight . DT NN VBD IN DT JJ NN IN DT RB JJ NN IN NNP NNP NN , VBG IN JJS CD . Police say the bomb was placed at the site in the Dikweneh neighborhood - in an area of factories , warehouses and car repair shops . NNS VBP DT NN VBD VBN IN DT NN IN DT NNP NN : IN DT NN IN NNS , NNS CC NN NN NNS . The blast shattered windows and set several building ablaze . DT NN VBD NNS CC VBD JJ NN NN . Police and soldiers were at the scene to cordon off the area and ambulances and fire trucks were rushed in . NNS CC NNS VBD IN DT NN TO VB RP DT NN CC NNS CC NN NNS VBD VBN IN . The blast is making residents increasingly nervous . DT NN VBZ VBG NNS RB JJ . This is the third bombing in a week - all have occurred in predominantly Christian areas of the city . DT VBZ DT JJ NN IN DT NN IN DT VBP VBN IN RB JJ NNS IN DT NN . Lebanese opposition leaders have blamed Syria and pro-Syrian Lebanese authorities of being behind the attacks in an effort to instill fear in the community . JJ NN NNS VBP VBN NNP CC JJ JJ NNS IN VBG IN DT NNS IN DT NN TO VB NN IN DT NN . Lebanon has been in political turmoil since former Prime Minister Rafik Hariri was killed in a massive bomb blast in Beirut last month . NNP VBZ VBN IN JJ NN IN JJ NNP NNP NNP NNP VBD VBN IN DT JJ NN NN IN NNP JJ NN . French Foreign Minister Michel Barnier says negotiations that could lead to European Union membership for Turkey will likely not begin before late 2005 or early 2006 . JJ NNP NNP NNP NNP VBZ NNS WDT MD VB TO NNP NNP NN IN NNP MD RB RB VB IN JJ CD CC RB CD . Mr. Barnier made the comments in an interview published Wednesday by the Parisian newspaper Le Figaro . NNP NNP VBD DT NNS IN DT NN VBN NNP IN DT JJ NN NNP NNP . EU leaders are expected to agree to membership negotiations with Turkey at a summit next month . NNP NNS VBP VBN TO VB TO NN NNS IN NNP IN DT NN JJ NN . Opinion surveys show that public opinion in many EU countries is sharply divided on the question of Turkish membership . NN NNS VBP IN JJ NN IN JJ NNP NNS VBZ RB VBN IN DT NN IN JJ NN . French President Jacques Chirac says he supports Turkish membership , but has promised to put the question to a referendum in his country . JJ NNP NNP NNP VBZ PRP VBZ JJ NN , CC VBZ VBN TO VB DT NN TO DT NN IN PRP$ NN . British police have detained three people at Heathrow Airport under the nation 's anti-terrorism act , but officials did not connect the arrests to the London bombings . JJ NNS VBP VBN CD NNS IN NNP NNP IN DT NN POS JJ NN , CC NNS VBD RB VB DT NNS TO DT NNP NNS . At a news conference Sunday , a senior police official , Commander Brian Paddick , called the arrests routine and said it would be inappropriate to draw any direct link with last week 's terror attacks . IN DT NN NN NNP , DT JJ NN NN , NNP NNP NNP , VBD DT NNS JJ CC VBD PRP MD VB JJ TO VB DT JJ NN IN JJ NN POS NN NNS . The official said police have so far received 1,700 calls to a special anti-terrorist tip line . DT NN VBD NNS VBP RB RB VBN CD NNS TO DT JJ JJ NN NN . Authorities have asked people to send in cell-phone camera images or other information that might help identify the bombers . NNS VBP VBN NNS TO VB IN JJ NN NNS CC JJ NN WDT MD VB VB DT NNS . Meanwhile , crime scene and recovery crews continued working in a narrow , dark subway tunnel near Russell Square Sunday . RB , NN NN CC NN NNS VBD VBG IN DT JJ , JJ NN NN IN NNP NNP NNP . The official count of fatalities remained at 49 but is expected to rise as workers search through the debris . DT JJ NN IN NNS VBD IN CD CC VBZ VBN TO VB IN NNS NN IN DT NN . Former New York City Police Commissioner Bernard Kerik has abruptly withdrawn his name from consideration to be U.S. Homeland Security Secretary , prompting the search for a new candidate . JJ NNP NNP NNP NNP NNP NNP NNP VBZ RB VBN PRP$ NN IN NN TO VB NNP NNP NNP NNP , VBG DT NN IN DT JJ NN . In a letter to the White House , Mr. Kerik says he has uncovered information which has caused him to question the immigration status of a nanny he had employed . IN DT NN TO DT NNP NNP , NNP NNP VBZ PRP VBZ VBN NN WDT VBZ VBN PRP TO VB DT NN NN IN DT NN PRP VBD VBN . He said that it had also come to his attention that he had not paid the required taxes for her employment with his family . PRP VBD IN PRP VBD RB VBN TO PRP$ NN IN PRP VBD RB VBN DT JJ NNS IN PRP$ NN IN PRP$ NN . Mr. Kerik informed the president of his decision late Friday . NNP NNP VBD DT NN IN PRP$ NN RB NNP . The White House said President Bush accepted Mr. Kerik 's decision . DT NNP NNP VBD NNP NNP VBD NNP NNP POS NN . Mr. Bush nominated Mr. Kerik last week to succeed Tom Ridge as head of the 1,80,000 employee department . NNP NNP VBD NNP NNP JJ NN TO VB NNP NNP IN NN IN DT CD NN NN . British Prime Minister Gordon Brown has made an unannounced visit to Afghanistan . NNP NNP NNP NNP NNP VBZ VBN DT JJ NN TO NNP . Mr. Brown arrived Saturday and spoke to British troops at camps in the southern Helmand province . NNP NNP VBD NNP CC VBD TO JJ NNS IN NNS IN DT JJ NNP NN . He thanked them for their role in a February assault in Marjah , a former Taliban stronghold in the province . PRP VBD PRP IN PRP$ NN IN DT NNP NN IN NNP , DT JJ NNP NN IN DT NN . And he promised additional equipment and resources . CC PRP VBD JJ NN CC NNS . On Friday in London , Mr. Brown defended Britain 's decision to help invade Iraq . IN NNP IN NNP , NNP NNP VBD NNP POS NN TO VB VB NNP . He served as treasury chief when his country entered the war in 2003 , and he made decisions about defense spending . PRP VBD IN NN NN WRB PRP$ NN VBD DT NN IN CD , CC PRP VBD NNS IN NN NN . In Afghanistan , the prime minister rejected criticism from conservatives who said he made the trip to divert attention away from the Iraq inquiry . IN NNP , DT JJ NN VBD NN IN NNS WP VBD PRP VBD DT NN TO VB NN RB IN DT NNP NN . Mr. Brown said he had planned the trip to Afghanistan for some time . NNP NNP VBD PRP VBD VBN DT NN TO NNP IN DT NN . British troops were withdrawn from Iraq , but about 10,000 are now serving in Afghanistan alongside U.S. and NATO forces . JJ NNS VBD VBN IN NNP , CC IN CD VBP RB VBG IN NNP IN NNP CC NNP NNS . Iraqi officials say at least $ 1 billion disappeared from Iraq 's defense ministry during the interim government of Iyad Allawi . JJ NNS VBP IN JJS $ CD CD VBN IN NNP POS NN NN IN DT JJ NN IN NNP NNP . The officials call the situation one of the largest thefts in history . DT NNS VBP DT NN CD IN DT JJS NNS IN NN . They say it left the Defense Ministry with almost no money to buy arms , further complicating its fight against insurgents . PRP VBP PRP VBD DT NNP NNP IN RB DT NN TO VB NNS , RB VBG PRP$ NN IN NNS . The money was supposed to be spent on weapons , but current Iraqi officials say contracts for the arms were awarded without bidding , signed with intermediaries instead of directly with the suppliers , and prices were inflated . DT NN VBD VBN TO VB VBN IN NNS , CC JJ JJ NNS VBP NNS IN DT NNS VBD VBN IN NN , VBN IN NNS IN IN RB IN DT NNS , CC NNS VBD VBN . Among the items purchased during the period in question were 28-year-old Polish helicopters . IN DT NNS VBN IN DT NN IN NN VBD JJ JJ NNS . Mr. Allawi 's defense minister , Hazem Shaalan , denied allegations of irregularities , saying government committees oversaw all the deals . NNP NNP POS NN NN , NNP NNP , VBD NNS IN NNS , VBG NN NNS VB PDT DT NNS . A Kuwaiti activist says the first of 12 Kuwaitis captured by U.S. forces in Afghanistan and held at a U.S. military prison at Guantanamo Bay , Cuba , has returned home after three years in captivity . DT JJ NN VBZ DT NN IN CD NNS VBN IN NNP NNS IN NNP CC VBN IN DT NNP JJ NN IN NNP NNP , NNP , VBZ VBN NN IN CD NNS IN NN . The head of a committee seeking the release of the detainees said the man , Nasser al-Mutairi , arrived in Kuwait City early Sunday aboard a plane sent by the Kuwaiti government . DT NN IN DT NN VBG DT NN IN DT NNS VBD DT NN , NNP NNP , VBD IN NNP NNP JJ NNP IN DT NN VBN IN DT JJ NN . The United States designated more than 600 people captured in Afghanistan as enemy combatants . DT NNP NNPS VBN JJR IN CD NNS VBN IN NNP IN NN NNS . Most have been held without charges , legal representation or trials . JJS VBP VBN VBN IN NNS , JJ NN CC NNS . About 200 have been released . RB CD VBP VBN VBN . Families of the Kuwaiti detainees said the men were doing charity work in Afghanistan when they were captured in the U.S.-led war against the Taleban and al-Qaida after the 2001 terror attacks in the United States . NNS IN DT JJ NNS VBD DT NNS VBD VBG NN NN IN NNP WRB PRP VBD VBN IN DT JJ NN IN DT NNP CC NNP IN DT CD NN NNS IN DT NNP NNPS . Pakistani President Pervez Musharraf says the search for Osama bin Laden has gone completely cold , and his nation 's intelligence and security forces have no recent information about the whereabouts of the leader of the al-Qaida terrorist network . JJ NNP NNP NNP VBZ DT NN IN NNP NNP NNP VBZ VBN RB JJ , CC PRP$ NN POS NN CC NN NNS VBP DT JJ NN IN DT NNS IN DT NN IN DT NNP JJ NN . General Musharraf , who has been meeting with President Bush and other U.S. officials in Washington , says in an interview published Sunday that Pakistani forces are aggressively pursuing Osama bin Laden , but have only been able to determine that he is still alive . NNP NNP , WP VBZ VBN VBG IN NNP NNP CC JJ NNP NNS IN NNP , VBZ IN DT NN VBN NNP IN JJ NNS VBP RB VBG NNP NNP NNP , CC VBP RB VBN JJ TO VB IN PRP VBZ RB JJ . Mr. Musharraf says the United States must share responsibility for the failure to track down the al-Qaida leader , because the U.S.-led coalition does not have enough troops in neighboring Afghanistan . NNP NNP VBZ DT NNP NNPS MD VB NN IN DT NN TO VB RP DT NNP NN , IN DT JJ NN VBZ RB VB JJ NNS IN JJ NNP . After their meetings at the White House Saturday , Mr. Bush said ' there is nobody more dedicated ' to tracking down Osama bin Laden than Mr. Musharraf , who has twice survived assassination attempts that reportedly were traced to al-Qaida extremists . IN PRP$ NNS IN DT NNP NNP NNP , NNP NNP VBD `` EX VBZ DT RBR JJ `` TO VBG RP NNP NNP NNP IN NNP NNP , WP VBZ RB VBN NN NNS WDT RB VBD VBN TO NNP NNS . A South African court has ordered four white South African men to pay fines for making a video degrading black university workers three years ago . DT JJ JJ NN VBZ VBN CD JJ JJ JJ NNS TO VB NNS IN VBG DT NN VBG JJ NN NNS CD NNS RB . The Bloemfontein court Friday instructed each of the former University of Free State students to pay $ 2,720 in lieu of a one year jail sentence , provided they stay out of trouble . DT NNP NN NNP VBD DT IN DT JJ NNP IN NNP NNP NNS TO VB $ CD IN NN IN DT CD NN NN NN , VBD PRP VBP IN IN NN . The men pleaded guilty Wednesday to deliberately harming the integrity of the workers . DT NNS VBD JJ NNP TO RB VBG DT NN IN DT NNS . The 2007 video includes scenes in which the black employees are fed soup apparently drenched in urine . DT CD NN VBZ NNS IN WDT DT JJ NNS VBP VBN NN RB VBN IN NN . The men , who no longer attend the university , have not identified what liquid was put in the soup and only described the liquid as harmless . DT NNS , WP RB RB VB DT NN , VBP RB VBN WP NN VBD VBN IN DT NN CC RB VBD DT NN IN JJ . They say the video was made as a protest to racial integration . PRP VBP DT NN VBD VBN IN DT NN TO JJ NN . The case conjured up bitter feelings of when South Africa 's apartheid dominance prevailed . DT NN VBD RP JJ NNS IN WRB NNP NNP POS NN NN VBD . Russian President Vladimir Putin says he will press for expanding trade and economic ties with Slovakia during his visit to the former communist region . JJ NNP NNP NNP VBZ PRP MD VB IN VBG NN CC JJ NNS IN NNP IN PRP$ NN TO DT JJ NN NN . Following Thursday 's meeting with President Bush in Bratislava , Mr. Putin will hold talks with Slovak President Ivan Gasparovic and other officials during his two-day visit . VBG NNP POS NN IN NNP NNP IN NNP , NNP NNP MD VB NNS IN JJ NNP NNP NNP CC JJ NNS IN PRP$ JJ NN . Mr. Putin told Slovak media Tuesday relations between the two countries were improving and in keeping with Moscow 's strategy of increasing ties with countries throughout Central Europe . NNP NNP VBD JJ NNS NNP NNS IN DT CD NNS VBD VBG CC IN VBG IN NNP POS NN IN VBG NNS IN NNS IN NNP NNP . He said Moscow valued cooperation in the gas and oil sectors , adding that Russian companies were interested in helping Slovakia further develop its nuclear power industry . PRP VBD NNP VBD NN IN DT NN CC NN NNS , VBG IN JJ NNS VBD JJ IN VBG NNP RB VB PRP$ JJ NN NN . Mr. Putin 's visit is the first by a Russian president to the country since Slovakia and the Czech Republic were formed in 1993 with the peaceful split of Czechoslovakia . NNP NNP POS NN VBZ DT JJ IN DT JJ NN TO DT NN IN NNP CC DT JJ NNP VBD VBN IN CD IN DT JJ NN IN NNP . Companies in the United States slashed their stockpiles of goods and supplies in December , a sign the U.S. economy may be forced to shed more jobs . NNS IN DT NNP NNPS VBD PRP$ NNS IN NNS CC NNS IN NNP , DT NN DT NNP NN MD VB VBN TO VB JJR NNS . Wholesale inventories have now fallen for four consecutive months as companies try to reduce their inventories to match the drop in consumer spending . JJ NNS VBP RB VBN IN CD JJ NNS IN NNS VBP TO VB PRP$ NNS TO VB DT NN IN NN NN . But the data suggests they are not slashing stockpiles fast enough . CC DT NN VBZ PRP VBP RB VBG NNS RB RB . The Commerce Department report says wholesale inventories fell 1.4 percent last month , while sales at the wholesale level fell at a faster 3.6 percent pace . DT NNP NNP NN VBZ JJ NNS VBD CD NN JJ NN , IN NNS IN DT JJ NN VBD IN DT RBR CD NN NN . The data mean that wholesalers are ordering fewer goods , which could force factories to lower production and eliminate jobs . DT NNS VBP IN NNS VBP VBG JJR NNS , WDT MD VB NNS TO JJR NN CC VB NNS . Hundreds of Iraqi Shi'ites have gathered on the streets of Baghdad 's Sadr City district to celebrate the death sentence handed down to deposed Iraqi leader Saddam Hussein . NNS IN JJ NNPS VBP VBN IN DT NNS IN NNP POS NNP NNP NN TO VB DT NN NN VBN RP TO JJ JJ NN NNP NNP . Residents of the Shi'ite suburb danced , waved flags and set fire to pictures of Saddam . NNS IN DT NNP NN VBD , VBD NNS CC VBN NN TO NNS IN NNP . The district is controlled by the Shi'ite Mahdi militia , which largely ignored a strict curfew imposed on the rest of the Iraqi capital . DT NN VBZ VBN IN DT NNP NNP NN , WDT RB VBD DT JJ NN VBN IN DT NN IN DT JJ NN . Other parts of the Iraqi capital were largely quiet as the curfew remains in place . JJ NNS IN DT JJ NN VBD RB JJ IN DT NN VBZ IN NN . It is aimed at preventing outbreaks of sectarian fighting over the Saddam verdict . PRP VBZ VBN IN VBG NNS IN JJ NN IN DT NNP NN . However , officials say gunmen fought with police in northern Baghdad 's Azamiyah district , which is dominated by Sunni Muslims . RB , NNS VBP NNS VBN IN NNS IN JJ NNP POS NNP NN , WDT VBZ VBN IN NNP NNPS . Several Iraqi Sunni politicians have criticized the death sentence on Saddam - a Sunni - and warned it could spark greater bloodshed between Sunnis and Shi'ites . JJ JJ NNP NNS VBP VBN DT NN NN IN NNP IN DT NNP : CC VBD PRP MD VB JJR NN IN NNP CC NNP . A list of victims of accused swindler Bernard Madoff has been made public . DT NN IN NNS IN VBN NN NNP NNP VBZ VBN VBN JJ . The 162-page document names several thousand clients who invested with Madoff , including charitable foundations , celebrities , Madoff 's relatives and even his attorney . DT JJ NN VBZ JJ CD NNS WP VBD IN NNP , VBG JJ NNS , NNS , NNP POS NNS CC RB PRP$ NN . The document was filed late Wednesday with the U.S. Bankruptcy Court in Manhattan . DT NN VBD VBN JJ NNP IN DT NNP NNP NNP IN NNP . Among the names are legendary baseball pitcher Sandy Koufax , New York Mets owner Fred Wilpon , Columbia University , and finance institutions Bank of America Corporation and Citigroup . IN DT NNS VBP JJ NN NN NNP NNP , NNP NNP NNPS NN NNP NNP , NNP NNP , CC NN NNS NNP IN NNP NNP CC NNP . Prosecutors accuse the 70-year-old Madoff of operating a years-long massive pyramid scheme that illegally used money from new investors to pay previous ones . NNS VBP DT JJ NN IN VBG DT JJ JJ JJ NN WDT RB VBD NN IN JJ NNS TO VB JJ NNS . Officials say the fraud may have cost investors $ 50 billion . NNS VBP DT NN MD VB VBN NNS $ CD CD . Madoff has not been indicted and is currently under house arrest at his multi-million dollar apartment in New York . NNP VBZ RB VBN VBN CC VBZ RB IN NN NN IN PRP$ JJ NN NN IN NNP NNP . Dozens of Egyptians protested in front of the country 's high court Tuesday calling for the release of an opposition leader who was jailed four weeks ago on what his supporters say are FALSE charges . NNS IN NNS VBD IN NN IN DT NN POS JJ NN NNP NN IN DT NN IN DT NN NN WP VBD VBN CD NNS RB IN WP PRP$ NNS VBP VBP JJ NNS . Riot police stood nearby , as supporters of al-Ghad party leader Ayman Nour peacefully protested , chanting slogans and waving photos of the imprisoned legislator . NN NN VBD RB , IN NNS IN JJ NN NN NNP NNP RB VBD , VBG NNS CC VBG NNS IN DT JJ NN . Mr. Nour has been held on charges of forging signatures to secure a license to establish his al-Ghad party last year . NNP NNP VBZ VBN VBN IN NNS IN VBG NNS TO VB DT NN TO VB PRP$ JJ NN JJ NN . He denies the accusations . PRP VBZ DT NNS . His supporters say his arrest was politically motivated , because he has been a vocal advocate of constitutional reform . PRP$ NNS VBP PRP$ NN VBD RB JJ , IN PRP VBZ VBN DT JJ NN IN JJ NN . The United States voiced its concern over Mr. Nour 's detention during a meeting in Washington two weeks ago between Secretary of State Condoleezza Rice and Egyptian Foreign Minister Ahmed Aboul Gheit . DT NNP NNPS VBD PRP$ NN IN NNP NNP POS NN IN DT NN IN NNP CD NNS IN IN NNP IN NNP NNP NNP CC JJ NNP NNP NNP NNP NNP . Iraqi police say gunmen have killed two police officers , one soldier , a grandmother and her grandchild , in a series of attacks in the restive northern city of Mosul . JJ NNS VBP NNS VBP VBN CD NNS NNS , CD NN , DT NN CC PRP$ NN , IN DT NN IN NNS IN DT JJ JJ NN IN NNP . Police say the three security officers died as assailants carried out drive-by shootings on multiple checkpoints in the city . NNS VBP DT CD NN NNS VBD IN NNS VBD RP JJ NNS IN JJ NNS IN DT NN . In a separate incident , unknown gunmen stormed a house in western Mosul , killing a woman and her young grandchild , who was about 2 or 3 years old . IN DT JJ NN , JJ NNS VBD DT NN IN JJ NNP , VBG DT NN CC PRP$ JJ NN , WP VBD IN CD CC CD NNS JJ . Police did not provide further details about that attack . NNS VBD RB VB JJ NNS IN DT NN . Elsewhere in Iraq , authorities say at least six people were wounded in a car bombing in the capital Sunday . RB IN NNP , NNS VBP IN JJS CD NNS VBD VBN IN DT NN NN IN DT NN NNP . They say the bomb blast occurred in eastern Baghdad 's Shi'ite Baladiyat district . PRP VBP DT NN NN VBD IN JJ NNP POS NNP NNP NN . Israeli doctors say Prime Minister Ariel Sharon has moved his right arm and leg in response to pain tests as they gradually bring him out of a medically-induced coma . JJ NNS VBP NNP NNP NNP NNP VBZ VBN PRP$ JJ NN CC NN IN NN TO NN NNS IN PRP RB VBP PRP IN IN DT JJ NN . Dr. Shlomo Mor-Yosef told reporters at Jerusalem 's Hadassah Hospital that Mr. Sharon 's movements became increasingly significant as doctors reduced his anesthesia dosage Monday . NNP NNP NNP VBD NNS IN NNP POS NNP NNP IN NNP NNP POS NNS VBD RB JJ IN NNS VBD PRP$ NN NN NNP . But he added that Mr. Sharon remains sedated and in serious condition . CC PRP VBD IN NNP NNP VBZ JJ CC IN JJ NN . Doctors had kept Mr. Sharon , 77 , in a deep state of unconsciousness since he suffered a brain hemorrhage last Wednesday . NNS VBD VBN NNP NNP , CD , IN DT JJ NN IN NN IN PRP VBD DT NN NN JJ NNP . Doctors say they are monitoring Mr. Sharon 's condition and that it is too early to discuss his brain function . NNS VBP PRP VBP VBG NNP NNP POS NN CC IN PRP VBZ RB JJ TO VB PRP$ NN NN . The doctors have said the Israeli leader 's chances of survival are good , but that he will probably not be able to continue as prime minister . DT NNS VBP VBN DT JJ NN POS NNS IN NN VBP JJ , CC IN PRP MD RB RB VB JJ TO VB IN JJ NN . The United States has announced a $ 481- million aid package aimed at reducing poverty in Burkina Faso . DT NNP NNPS VBZ VBN DT $ CD CD NN NN VBN IN VBG NN IN NNP NNP . A statement from the U.S. government 's Millennium Challenge Corporation says the five-year agreement will help the west African nation improve roads , agricultural productivity , and primary education for girls . DT NN IN DT NNP NN POS NNP NNP NNP VBZ DT JJ NN MD VB DT JJ JJ NN VB NNS , JJ NN , CC JJ NN IN NNS . The grant was announced Monday in Washington after a signing ceremony attended by Burkina Faso 's President Blaise Compaore and U.S. Secretary of State Condoleezza Rice . DT NN VBD VBN NNP IN NNP IN DT NN NN VBN IN NNP NNP POS NNP NNP NNP CC NNP NNP IN NNP NNP NNP . The Millennium Challenge Corporation gives grants to countries that show a commitment to good governance , economic freedom and the elimination of extreme poverty . DT NNP NNP NNP VBZ NNS TO NNS WDT VBP DT NN TO JJ NN , JJ NN CC DT NN IN JJ NN . The Bush administration launched the fund in 2004 . DT NNP NN VBD DT NN IN CD . Egypt 's culture minister says police have recovered the Vincent van Gogh painting that was stolen from a Cairo museum earlier Saturday . NNP POS NN NN VBZ NNS VBP VBN DT NNP NNP NNP NN WDT VBD VBN IN DT NNP NN JJR NNP . Farouk Hosni said security officials at the Cairo airport have arrested two Italian nationals who were trying to leave the country with the painting . NNP NNP VBD NN NNS IN DT NNP NN VBP VBN CD JJ NNS WP VBD VBG TO VB DT NN IN DT NN . The painting by the Dutch artist is valued at about $ 50 million . DT NN IN DT JJ NN VBZ VBN IN IN $ CD CD . It goes by two titles , Poppy Flowers and Vase with Flowers . PRP VBZ IN CD NNS , NNP NNPS CC NNP IN NNPS . Crude oil prices are climbing with news of a potential hurricane along the southern gulf coast of the United States and Iran 's ongoing nuclear dispute with western nations . JJ NN NNS VBP VBG IN NN IN DT JJ NN IN DT JJ NN NN IN DT NNP NNPS CC NNP POS JJ JJ NN IN JJ NNS . Oil prices rose more than $ 1 Friday to $ 73 a barrel . NN NNS VBD JJR IN $ CD NNP TO $ CD DT NN . Financial analysts say they are closely watching a tropical depression that weather forecasters are tracking as it makes its way to the U.S. gulf coast . JJ NNS VBP PRP VBP RB VBG DT JJ NN IN NN NNS VBP VBG IN PRP VBZ PRP$ NN TO DT NNP NN NN . Last year 's storms , particularly Hurricane Katrina , damaged off shore oil refineries , disrupting U.S. oil supplies and driving oil prices to record highs . JJ NN POS NNS , RB NNP NNP , VBN RP NN NN NNS , VBG NNP NN NNS CC VBG NN NNS TO VB NNS . An August 31 U.N. Security Council deadline for Iran to halt its nuclear activities is also weighing heavily on oil prices . DT NNP CD NNP NNP NNP NN IN NNP TO VB PRP$ JJ NNS VBZ RB VBG RB IN NN NNS . Traders are concerned that Iran may block oil exports if the security council imposes sanctions against it . NNS VBP VBN IN NNP MD VB NN NNS IN DT NN NN VBZ NNS IN PRP . Iran is the world 's fourth largest oil producer . NNP VBZ DT NN POS JJ JJS NN NN . The Asian Development Bank has issued a $ 2.7-million grant to Afghanistan to improve the country 's road system in rural areas . DT NNP NNP NNP VBZ VBN DT $ CD NN TO NNP TO VB DT NN POS NN NN IN JJ NNS . The grant will go to training highway engineers at Kabul Polytechnic University as well as to the Ministry of Public Works . DT NN MD VB TO NN NN NNS IN NNP NNP NNP RB RB IN TO DT NNP IN NNP NNP . The ADB said on Tuesday that the purpose of the grants is to help people in Afghanistan 's backcountry gain better access to the center of the country . DT NNP VBD IN NNP IN DT NN IN DT NNS VBZ TO VB NNS IN NNP POS JJ NN JJR NN TO DT NN IN DT NN . The grants will be applied to a road master plan that was earlier developed with ADB assistance . DT NNS MD VB VBN TO DT NN NN NN WDT VBD RB VBN IN NNP NN . India has boosted security in the northern town of Ayodhya , one day before the 12th anniversary of a mosque demolition that sparked bloody riots between Hindus and Muslims . NNP VBZ VBN NN IN DT JJ NN IN NNP , CD NN IN DT JJ NN IN DT NN NN WDT VBD JJ NNS IN NNP CC NNPS . Hundreds of soldiers are standing guard at the disputed site where Hindu extremists destroyed the 16th century Babri mosque , saying it was built by destroying a temple at the birthplace of their god-king Rama . NNS IN NNS VBP VBG NN IN DT JJ NN WRB NNP NNS VBD DT JJ NN NNP NN , VBG PRP VBD VBN IN VBG DT NN IN DT NN IN PRP$ JJ NNP . They say want to rebuild the temple . PRP VBP VBP TO VB DT NN . The demolition triggered nationwide riots that left about 2,000 people dead , the bloodiest in India since the 1947 partition with Pakistan . DT NN VBD JJ NNS WDT VBD IN CD NNS JJ , DT JJS IN NNP IN DT CD NN IN NNP . Two Hindu extremist groups , the World Hindu Council and Shiv Sena , have called for a rally near the temple town on Monday to mark the anniversary . CD NNP NN NNS , DT NNP NNP NNP CC NNP NNP , VBP VBN IN DT NN IN DT NN NN IN NNP TO VB DT NN . The dispute is now before the Indian courts . DT NN VBZ RB IN DT JJ NNS . Delegates from most African countries are attending a U.N.-sponsored conference in Zimbabwe on improving food safety on the continent . NNS IN JJS JJ NNS VBP VBG DT JJ NN IN NNP IN VBG NN NN IN DT NN . During Monday 's session , the Food and Agriculture Organization and the World Health Organization warned that food-borne diseases are a serious threat in Africa . IN NNP POS NN , DT NNP CC NNP NNP CC DT NNP NNP NNP VBD IN JJ NNS VBP DT JJ NN IN NNP . Both U.N. agencies said improved food safety would help reduce an estimated 2,000 deaths per day in Africa from food and waterborne diseases . DT NNP NNS VBD VBN NN NN MD VB VB DT JJ CD NNS IN NN IN NNP IN NN CC NN NNS . Experts at the four-day conference will try to strengthen existing systems to ensure safer food to improve health and agricultural trade opportunities . NNS IN DT JJ NN MD VB TO VB VBG NNS TO VB JJR NN TO VB NN CC JJ NN NNS . Host Zimbabwe President Robert Mugabe opened the conference in Harare . NNP NNP NNP NNP NNP VBD DT NN IN NNP . The French news agency reports Mr. Mugabe defended his seizure of white-owned farms to be given to landless blacks as a way of bringing food to the people . DT JJ NN NN VBZ NNP NNP VBD PRP$ NN IN JJ NNS TO VB VBN TO JJ NNS IN DT NN IN VBG NN TO DT NNS . Relief agencies blame the policy for disrupting Zimbabwe 's agricultural output and creating serious food shortages . NN NNS VBP DT NN IN VBG NNP POS JJ NN CC VBG JJ NN NNS . Controversial British historian David Irving is to go on trial in Austria Monday on charges of denying the Nazi Holocaust during World War II . JJ JJ NN NNP NNP VBZ TO VB IN NN IN NNP NNP IN NNS IN VBG DT NNP NNP IN NNP NNP NNP . Irving has been in custody since November when he was arrested for allegedly denying the Holocaust at meetings in Austria in 1989 . NNP VBZ VBN IN NN IN NNP WRB PRP VBD VBN IN RB VBG DT NN IN NNS IN NNP IN CD . He faces up to 10 years in prison for his public denial , which is illegal in Austria . PRP VBZ RP TO CD NNS IN NN IN PRP$ JJ NN , WDT VBZ JJ IN NNP . The 67-year-old Irving has written a number of controversial books including Hitler 's War , in which he challenges the extent of the Holocaust . DT JJ NNP VBZ VBN DT NN IN JJ NNS VBG NNP POS NNP , IN WDT PRP VBZ DT NN IN DT NNP . He says Hitler knew nothing about the extermination of some six million Jews and actually tried to protect them . PRP VBZ NNP VBD DT IN DT NN IN DT CD CD NNPS CC RB VBD TO VB PRP . Over the years , Irving has lost several legal battles over his views . IN DT NNS , NNP VBZ VBN JJ JJ NNS IN PRP$ NNS . The World Health Organization says that despite a global effort to eradicate polio by the end of 2005 , the number of cases rose by almost 30 percent last year . DT NNP NNP NNP VBZ IN IN DT JJ NN TO VB NN IN DT NN IN CD , DT NN IN NNS VBD IN RB CD NN JJ NN . Organization officials say more than 1,170 cases were reported last year compared to 784 in 2003 . NNP NNS VBP JJR IN CD NNS VBD VBN JJ NN VBN TO CD IN CD . Ninety percent of the incidents occurred in Nigeria , India and Pakistan . CD NN IN DT NNS VBD IN NNP , NNP CC NNP . Nigeria , Africa 's most populous country , accounts for 65 percent of the 2004 total . NNP , NNP POS JJS JJ NN , NNS IN CD NN IN DT CD NN . Eradication efforts have been hampered by a months-long vaccine boycott in that country 's northern region . NNP NNS VBP VBN VBN IN DT JJ NN NN IN DT NN POS JJ NN . Opponents there had said the polio vaccine was contaminated with infertility agents . NNS RB VBD VBN DT NN NN VBD VBN IN NN NNS . That boycott led to the spread of the virus to neighboring countries , including Ghana , Benin , Chad and Togo . DT NN VBD TO DT NN IN DT NN TO JJ NNS , VBG NNP , NNP , NNP CC NNP . Conflicts in Ivory Coast and Sudan also have hindered eradication efforts . NNS IN NNP NNP CC NNP RB VBP VBN NN NNS . Polio is a disease that attacks the nervous system , causing paralysis , muscle atrophy and sometimes death . NNP VBZ DT NN WDT VBZ DT JJ NN , VBG NN , NN NN CC RB NN . China 's official news agency says a 31-year-old poultry farmer is the country 's fifth confirmed human case of bird flu , but the woman has since been released from the hospital after her condition improved . NNP POS JJ NN NN VBZ DT JJ NN NN VBZ DT NN POS NN VBD JJ NN IN NN NN , CC DT NN VBZ IN VBN VBN IN DT NN IN PRP$ NN VBN . The Xinhua news agency says the woman from Heishan County , Liaoning province in China 's northeast became sick with pneumonia-like symptoms on October 30 and was hospitalized . DT NNP NN NN VBZ DT NN IN NNP NNP , VBG NN IN NNP POS NN VBD JJ IN JJ NNS IN NNP CD CC VBD VBN . Her condition improved and she was discharged on November 29 . PRP$ NN VBD CC PRP VBD VBN IN NNP CD . Tests later showed the woman had contracted the deadly H5N1 strain of avian flu . NNS RB VBD DT NN VBD VBN DT JJ NNP NN IN JJ NN . Health officials are now monitoring people who had contact with her . NNP NNS VBP RB VBG NNS WP VBD NN IN PRP . Wednesday , China announced its fourth human victim of bird flu , a 10-year-old girl in southern Guangxi region . NNP , NNP VBD PRP$ JJ JJ NN IN NN NN , DT JJ NN IN JJ NNP NN . She remains hospitalized . PRP VBZ VBN . Since 2003 , the H5N1 virus has killed nearly 70 people , mostly in southeast Asia . IN CD , DT NNP NN VBZ VBN RB CD NNS , RB IN JJ NNP . Pakistani officials say a man accused of being an al-Qaida computer expert has been released without charge following three years in custody . JJ NNS VBP DT NN VBN IN VBG DT NNP NN NN VBZ VBN VBN IN NN VBG CD NNS IN NN . Mohammed Naeem Noor Khan was arrested in Lahore in July 2004 . NNP NNP NNP NNP VBD VBN IN NNP IN NNP CD . Pakistani officials said investigations of his computer led to information on active al-Qaida networks . JJ NNS VBD NNS IN PRP$ NN VBD TO NN IN JJ NNP NNS . Khan 's lawyer Babar Awan told reporters Monday that he has returned to his home in the southern port city of Karachi . NNP POS NN NNP NNP VBD NNS NNP IN PRP VBZ VBN TO PRP$ NN IN DT JJ JJ NN IN NNP . Officials alleged that Khan acted as a link between top al-Qaida leaders and the organizations ' operational cells . NNS VBD IN NNP VBD IN DT NN IN JJ NNP NNS CC DT NNS POS JJ NNS . Pakistani intelligence officials say information from his computer led them to a Tanzanian wanted for the 1998 U.S. embassy bombings in East Africa , as well as terror plots in both the United States and Britain . JJ NN NNS VBP NN IN PRP$ NN VBD PRP TO DT NN VBN IN DT CD NNP NN NNS IN NNP NNP , RB RB IN NN NNS IN DT DT NNP NNPS CC NNP . Khan was never charged with a crime or brought before a court . NNP VBD RB VBN IN DT NN CC VBN IN DT NN . Haiti 's interim leader , Gerard Latortue , has called on donor nations to help rebuild his country . NNP POS JJ NN , NNP NNP , VBZ VBN IN NN NNS TO VB VB PRP$ NN . Diplomats attending a one-day conference in Cayenne , French Guiana , Friday are discussing ways to jumpstart desperately needed donations to Haiti . NNS VBG DT JJ NN IN NNP , NNP NNP , NNP VBP VBG NNS TO VB RB VBN NNS TO NNP . They are trying to set infrastructure and development goals needed for the Caribbean nation to overcome last February 's armed rebellion that ousted former President Jean-Bertrand Aristide . PRP VBP VBG TO VB NN CC NN NNS VBN IN DT JJ NN TO VB JJ NNP POS JJ NN WDT VBD JJ NNP NNP NNP . In the months following last year 's political crisis , donor nations and organizations pledged $ 1.3 million for reconstruction efforts in Haiti , the Western Hemisphere 's poorest nation . IN DT NNS VBG JJ NN POS JJ NN , NN NNS CC NNS VBD $ CD CD IN NN NNS IN NNP , DT NNP NNP POS JJS NN . But officials say the actual amount provided , so far , is far less than donor nations promised . CC NNS VBP DT JJ NN VBN , RB RB , VBZ RB JJR IN NN NNS VBD . Chinese Premier Wen Jiabao has ordered officials in southern China to brace for Typhoon Damrey . JJ NNP NNP NNP VBZ VBN NNS IN JJ NNP TO VB IN NNP NNP . He says authorities must make preparations for the typhoon , which is expected to make landfall late Sunday or early Monday and pound the region with heavy rains and strong winds . PRP VBZ NNS MD VB NNS IN DT NN , WDT VBZ VBN TO VB NN JJ NNP CC JJ NNP CC VB DT NN IN JJ NNS CC JJ NNS . Earlier this month , Typhoon Khanun killed at least 14 people in coastal provinces of eastern China . RBR DT NN , NNP NNP VBD IN JJS CD NNS IN JJ NNS IN JJ NNP . And Typhoon Talim killed at least 42 people when it hit Zhejiang province . CC NNP NNP VBD IN JJS CD NNS WRB PRP VBD NNP NN . Ukraine 's security service has denied any involvement in the poisoning of opposition presidential candidate Viktor Yushchenko . NNP POS NN NN VBZ VBN DT NN IN DT NN IN NN JJ NN NNP NNP . In a statement Thursday , the State Security Service said it had nothing to do with what it called Mr. Yushchenko 's worsening health . IN DT NN NNP , DT NNP NNP NNP VBD PRP VBD DT TO VB IN WP PRP VBD NNP NNP POS VBG NN . The pro-Western opposition leader fell ill in September during a heated presidential campaign and his face became disfigured . DT JJ NN NN VBD RB IN NNP IN DT JJ JJ NN CC PRP$ NN VBD JJ . Doctors say he was poisoned with dioxin . NNS VBP PRP VBD VBN IN NN . Mr. Yushchenko told the Associated Press last week that he was probably poisoned at a September dinner with Ukrainian security agents . NNP NNP VBD DT NNP NNP JJ NN IN PRP VBD RB VBN IN DT NNP NN IN JJ NN NNS . Mr. Yushchenko faces pro-Russian Prime Minister Viktor Yanukovych Sunday in a court-ordered re-vote to replace last month 's fraudulent balloting . NNP NNP VBZ JJ NNP NNP NNP NNP NNP IN DT JJ JJ TO VB JJ NN POS JJ NN . Russian President Vladimir Putin told reporters today he is willing to work with whoever wins . JJ NNP NNP NNP VBD NNS NN PRP VBZ JJ TO VB IN JJ NNS . An Iraqi commander involved in a daring rescue by Iraqi and U.S. troops says accounts of the incident by some Shi'ite officials are not TRUE . DT JJ NN VBN IN DT NN NN IN JJ CC NNP NNS VBZ NNS IN DT NN IN DT NNP NNS VBP RB JJ . At least 16 people were killed in the operation Sunday . IN JJS CD NNS VBD VBN IN DT NN NNP . The Iraqi special forces commander , whose identity was not disclosed , spoke Wednesday to Western reporters from Time magazine and CBS News . DT JJ JJ NNS NN , WP$ NN VBD RB VBN , VBD NNP TO JJ NNS IN NNP NN CC NNP NNP . He disputed accusations from some Shi'ite officials that U.S. forces raided a Baghdad mosque and killed innocent civilians . PRP VBD NNS IN DT NNP NNS IN NNP NNS VBD DT NNP NN CC VBD JJ NNS . He insisted his troops had to fight their way into the target building and kill gunmen guarding a hostage . PRP VBD PRP$ NNS VBD TO VB PRP$ NN IN DT NN NN CC VB NNS VBG DT NN . He said his men did not find prayer mats or books , which are usually found in a mosque . PRP VBD PRP$ NNS VBD RB VB NN NNS CC NNS , WDT VBP RB VBN IN DT NN . He said they found weapons and instruments of torture . PRP VBD PRP VBD NNS CC NNS IN NN . The hostage freed in the operation confirms the commander 's version . DT NN VBD IN DT NN VBZ DT NN POS NN . Palestinians formally opened the campaign to replace their late leader Yasser Arafat Saturday , as the registration period began for potential candidates for the January 9 ballot . NNS RB VBD DT NN TO VB PRP$ JJ NN NNP NNP NNP , IN DT NN NN VBD IN JJ NNS IN DT NNP CD NN . Former Prime Minister Mahmoud Abbas , Mr. Arafat 's successor as head of the powerful Palestine Liberation Organization , is expected to be the leading contender if his Fatah faction chooses him as its candidate . JJ NNP NNP NNP NNP , NNP NNP POS NN IN NN IN DT JJ NNP NNP NNP , VBZ VBN TO VB DT VBG NN IN PRP$ NNP NN VBZ PRP IN PRP$ NN . Candidates not put forward by a party must submit 5,000 signatures of support and $ 3,000 . NNS RB VBN RB IN DT NN MD VB CD NNS IN NN CC $ CD . Among those planning to make bids are former Hamas leader Sheikh Talal Sidr and university professor Abdel Sattar Qassem . IN DT VBG TO VB NNS VBP JJ NNP NN NNP NNP NNP CC NN NN NNP NNP NNP . On Friday , French officials released Mr. Arafat 's medical records to his wife Suha . IN NNP , JJ NNS VBD NNP NNP POS JJ NNS TO PRP$ NN NNP . They said they will also give them to Mr. Arafat 's nephew , Palestinian envoy Nasser al-Kidwa , if he asks for them . PRP VBD PRP MD RB VB PRP TO NNP NNP POS NN , JJ NN NNP NNP , IN PRP VBZ IN PRP . Palestinian officials say they want to get the records to know Mr. Arafat 's cause of death . JJ NNS VBP PRP VBP TO VB DT NNS TO VB NNP NNP POS NN IN NN . European government ministers have pledged nearly $ 13 billion to fund an ambitious plan for space exploration , including a mission to place a robotic exploration vehicle on Mars . JJ NN NNS VBP VBN RB $ CD CD TO VB DT JJ NN IN NN NN , VBG DT NN TO VB DT JJ NN NN IN NNP . European Space Agency director Jean-Jacques Dordain said the projects agreed on Wednesday by the agency 's 18 member states include satellites to monitor climate change and a long list of experiments for the International Space Station . NNP NNP NNP NN NNP NNP VBD DT NNS VBD IN NNP IN DT NN POS CD NN NNS VBP NNS TO VB NN NN CC DT JJ NN IN NNS IN DT NNP NNP NNP . The money will also fund updates to the Ariane rocket , which carries European payloads into space . DT NN MD RB VB NNS TO DT NNP NN , WDT VBZ JJ NNS IN NN . The so-called ExoMars project is set to blast off in 2016 , carrying a landing rover to Mars which will drill two meters into the planet 's surface to take soil samples . DT JJ NNP NN VBZ VBN TO VB RP IN CD , VBG DT NN NN TO NNP WDT MD VB CD NNS IN DT NN POS NN TO VB NN NNS . Ministers capped ExoMars at nearly $ 1.3 billion , a sum that falls short of its target . NNS VBD NNS IN RB $ CD CD , DT NN WDT VBZ RB IN PRP$ NN . The remaining $ 260 million is expected to be raised with funding from the United States or Russia . DT VBG $ CD CD VBZ VBN TO VB VBN IN NN IN DT NNP NNPS CC NNP . A huge slick of toxic chemicals has entered Russian territory from China after flowing downstream from a chemical-plant explosion last month . DT JJ NN IN JJ NNS VBZ VBN JJ NN IN NNP IN VBG NN IN DT JJ NN JJ NN . Russia 's Emergency Situations Minister , Sergei Shoigu , says the slick crossed the border Friday , but initial tests show pollution levels in the Amur River lower than feared . NNP POS NNP NNP NNP , NNP NNP , VBZ DT NN VBD DT NN NNP , CC JJ NNS VBP NN NNS IN DT NNP NNP JJR IN VBN . The blast on November 13 poured 100 tons of benzene and other poisons into the Songhua River , which flowed past the Chinese city of Harbin into Russia . DT NN IN NNP CD VBD CD NNS IN NN CC JJ NNS IN DT NNP NNP , WDT VBD IN DT JJ NN IN NNP IN NNP . Harbin residents were without running water as the toxic slick passed . NNP NNS VBD IN VBG NN IN DT JJ NN VBN . Russia 's Far East Meteorological Service says foul water will begin flowing past Khabarovsk , a city of more than 5,00,000 people , within a week . NNP POS NNP NNP NNP NNP VBZ JJ NN MD VB VBG JJ NNP , DT NN IN JJR IN CD NNS , IN DT NN . Environmental officials say the benzene in the river should be so diluted that no interruption of municipal water service in Khabarovsk will be necessary . JJ NNS VBP DT NN IN DT NN MD VB RB VBN IN DT NN IN JJ NN NN IN NNP MD VB JJ . The husband of outed CIA operative Valerie Plame , Ambassador Joseph Wilson , says the indictment of vice presidential aide , Lewis Libby , is a sad day for America . DT NN IN JJ NNP NN NNP NNP , NNP NNP NNP , VBZ DT NN IN NN JJ NN , NNP NNP , VBZ DT JJ NN IN NNP . In a statement read Friday by Mr. Wilson 's attorney , the diplomat said the leaked revelation of his wife 's identity in 2003 was harmful to the nation . IN DT NN VBN NNP IN NNP NNP POS NN , DT NN VBD DT JJ NN IN PRP$ NN POS NN IN CD VBD JJ TO DT NN . Mr. Wilson said he feels his family was attacked because he , in his words , spoke the truth about the events that led the United States to war . NNP NNP VBD PRP VBZ PRP$ NN VBD VBN IN PRP , IN PRP$ NNS , VBD DT NN IN DT NNS WDT VBD DT NNP NNPS TO NN . Mr. Wilson underscored that the day is not a day to celebrate , because when indictments are delivered to the front door of the White House , the Office of the President is defiled . NNP NNP VBD IN DT NN VBZ RB DT NN TO VB , IN WRB NNS VBP VBN TO DT JJ NN IN DT NNP NNP , DT NNP IN DT NNP VBZ VBN . The former ambassador said he is confident justice will be served . DT JJ NN VBD PRP VBZ JJ NN MD VB VBN . He commended Special Counsel Patrick Fitzgerald for his professionalism , diligence and courage . PRP VBD JJ NNP NNP NNP IN PRP$ NN , NN CC NN . China 's government-run media say the country 's top advisory body ended its annual session Monday after adopting a resolution to strongly oppose Taiwan independence efforts . NNP POS JJ NNS VBP DT NN POS JJ JJ NN VBD PRP$ JJ NN NNP IN VBG DT NN TO RB VB NNP NN NNS . The Xinhua news agency reports the resolution noted that Taiwan 's leaders have accelerated what it termed ' dangerous ' steps toward independence . DT NNP NN NN VBZ DT NN VBD IN NNP POS NNS VBP VBN WP PRP VBD `` JJ `` NNS IN NN . The agency urged all Chinese to resolutely oppose and check independence forces and activities . DT NN VBD DT NNS TO RB VB CC VB NN NNS CC NNS . The resolution wrapped up the National Committee of the Chinese People 's Political Consultative Conference that opened March 3 in Beijing . DT NN VBD RP DT NNP NNP IN DT JJ NNS POS JJ JJ NN WDT VBD NNP CD IN NNP . Xinhua says the purpose of the body is to conduct political consultation and debate issues of state . NNP VBZ DT NN IN DT NN VBZ TO VB JJ NN CC VB NNS IN NN . This year 's session was attended by more than two thousand advisors from across the country . DT NN POS NN VBD VBN IN JJR IN CD CD NNS IN IN DT NN . Taiwan President Chen Shui-bian recently raised cross-strait tensions by scrapping guidelines and a group dedicated to Taiwan 's eventual unification with mainland China . NNP NNP NNP NNP RB VBD JJ NNS IN VBG NNS CC DT NN VBN TO NNP POS JJ NN IN JJ NNP . Colombian rebels have released all 29 police officers taken hostage during a recent attack on the remote western village of San Marino . JJ NNS VBP VBN DT CD NN NNS VBN NN IN DT JJ NN IN DT JJ JJ NN IN NNP NNP . Officials in Bogota say army troops found the officers walking in the jungle in Choco state Tuesday . NNS IN NNP VBP NN NNS VBD DT NNS VBG IN DT NN IN NNP NN NNP . They were taken hostage last Saturday in a raid by rebels that left eight other police officers dead . PRP VBD VBN NN JJ NNP IN DT NN IN NNS WDT VBD CD JJ NNS NNS JJ . One of the released officers said his captors included rebels from Colombia 's two main guerrilla groups - the Revolutionary Armed Forces of Colombia , known as FARC , and the smaller National Liberation Army , or ELN . CD IN DT VBN NNS VBD PRP$ NNS VBD NNS IN NNP POS CD JJ NN NNS IN DT JJ JJ NNS IN NNP , VBN IN NNP , CC DT JJR NNP NNP NNP , CC NNP . Meanwhile , in Havana , exploratory peace talks between Colombian President Alvaro Uribe 's government and the ELN rebels are nearing completion . RB , IN NNP , JJ NN NNS IN JJ NNP NNP NNP POS NN CC DT NNP NNS VBP VBG NN . Officials say details on an agenda for formal talks should be available Wednesday . NNS VBP NNS IN DT NN IN JJ NNS MD VB JJ NNP . The ELN and the FARC have been battling to topple the government in 41 years of civil war . DT NNP CC DT NNP VBP VBN VBG TO VB DT NN IN CD NNS IN JJ NN . The conflict leaves thousands dead each year . DT NN VBZ NNS JJ DT NN . The Ford Motor Company announced multi-billion dollar losses for the second quarter of 2008 , as well as major changes in its American auto plants . DT NNP NNP NNP VBD JJ NN NNS IN DT JJ NN IN CD , RB RB IN JJ NNS IN PRP$ JJ NN NNS . High oil prices continue to take a toll on the U.S. automobile industry . JJ NN NNS VBP TO VB DT NN IN DT NNP NN NN . VOA 's Carolyn Presutti drives our story . NNP POS NNP NNP VBZ PRP$ NN . The U.S. dollar dropped to another record low compared to the euro on Tuesday . DT NNP NN VBD TO DT NN NN VBN TO DT NN IN NNP . At one point , it took more than $ 1.31 to buy each euro . IN CD NN , PRP VBD JJR IN $ CD TO VB DT NN . The latest record-low for the dollar follows speculation that Russia may increase the number of euros it holds in foreign currency reserves . DT JJS NN IN DT NN VBZ NN IN NNP MD VB DT NN IN NNS PRP VBZ IN JJ NN NNS . Analysts say the American currency is declining largely because of concern over the huge U.S. trade deficit . NNS VBP DT JJ NN VBZ VBG RB IN IN NN IN DT JJ NNP NN NN . The weak dollar makes U.S.-made exports more competitive on world markets . DT JJ NN VBZ JJ NNS RBR JJ IN NN NNS . It also makes French wines , German cars and other goods imported to the U.S. market more expensive for U.S. consumers . PRP RB VBZ JJ NNS , JJ NNS CC JJ NNS VBN TO DT NNP NN RBR JJ IN NNP NNS . Economists say the dollar 's decline will help close the gap between what U.S. companies sell abroad and what U.S. consumers buy from foreign companies . NNS VBP DT NN POS NN MD VB VB DT NN IN WP NNP NNS VBP RB CC WP NNP NNS VBP IN JJ NNS . Israeli forces hunting for militants in northern Gaza shot and killed a 16-year-old Palestinian Sunday . JJ NNS VBG IN NNS IN JJ NNP VBD CC VBD DT JJ NN NNP . Witnesses in the town of Beit Lahiya say it appeared Israeli fire was aimed at the teenager because he had been standing near a rocket launcher used by militants a short time earlier . NNS IN DT NN IN NNP NNP VBP PRP VBD JJ NN VBD VBN IN DT NN IN PRP VBD VBN VBG IN DT NN NN VBN IN NNS DT JJ NN RB . Palestinian security officials ( who asked not to be identified ) say the teenager may have been in the area by accident , and that he had no connection with the rocket fired into Israel . JJ NN NNS LRB WP VBD RB TO VB VBN RRB VBP DT NN MD VB VBN IN DT NN IN NN , CC IN PRP VBD DT NN IN DT NN VBN IN NNP . Israeli military officials gave a roughly similar account of the incident , but said they believed they were firing at a member of a militant group . JJ JJ NNS VBD DT RB JJ NN IN DT NN , CC VBD PRP VBD PRP VBD VBG IN DT NN IN DT JJ NN . Israel 's military has been trying to suppress Palestinian rocket fire from Gaza for months . NNP POS NN VBZ VBN VBG TO VB JJ NN NN IN NNP IN NNS . Fighting intensified recently when Israeli troops staged major incursions into northern Gaza . VBG VBD RB WRB JJ NNS VBD JJ NNS IN JJ NNP . Indian and U.S. officials are holding more talks in New Delhi Friday to try to reach an agreement on nuclear energy cooperation before President Bush visits India next week . JJ CC NNP NNS VBP VBG JJR NNS IN NNP NNP NNP TO VB TO VB DT NN IN JJ NN NN IN NNP NNP VBZ NNP JJ NN . Indian Foreign Secretary Shyam Saran and U.S. Undersecretary of State Nicholas Burns are leading the negotiations . JJ NNP NNP NNP NNP CC NNP NNP IN NNP NNP NNP VBP VBG DT NNS . Washington has offered to provide India with civilian nuclear technology , but wants to ensure New Delhi does not use the equipment for military purposes . NNP VBZ VBN TO VB NNP IN JJ JJ NN , CC VBZ TO VB NNP NNP VBZ RB VB DT NN IN JJ NNS . Burns said Thursday that differences remain between the two sides , and he is not sure an agreement will be ready by next week . NNP VBD NNP IN NNS VBP IN DT CD NNS , CC PRP VBZ RB JJ DT NN MD VB JJ IN JJ NN . President Bush said Wednesday he wants to come home from India with a deal on the nuclear issue so he can start promoting it to Congress , which must give its approval . NNP NNP VBD NNP PRP VBZ TO VB NN IN NNP IN DT NN IN DT JJ NN IN PRP MD VB VBG PRP TO NNP , WDT MD VB PRP$ NN . Some U.S. lawmakers oppose transferring nuclear technology to India , arguing that would undermine the Nuclear Non-Proliferation treaty , which India has not signed . DT NNP NNS VBP VBG JJ NN TO NNP , VBG DT MD VB DT NNP NNP NN , WDT NNP VBZ RB VBN . Japan Airlines says it will purchase 30 Boeing 7.00E+07 Dreamliner aircraft , with an option to buy 20 more . NNP NNP VBZ PRP MD VB CD NNP NNP NNP NN , IN DT NN TO VB CD JJR . The price of the deal was not disclosed , but could be around $ 4 billion . DT NN IN DT NN VBD RB VBN , CC MD VB IN $ CD CD . Japan Airlines is expected to receive its first Boeing Dreamliner in 2008 . NNP NNP VBZ VBN TO VB PRP$ JJ NNP NNP IN CD . Boeing and European rival Airbus were competing for the Japan Airlines deal . NNP CC JJ NN NNP VBD VBG IN DT NNP NNPS NN . Boeing and Airbus have been battling in recent months to win contracts with Asian airliners . NNP CC NNP VBP VBN VBG IN JJ NNS TO VB NNS IN JJ NNS . Boeing recently reached a deal with Japan 's All Nippon Airways , while Airbus inked a contract with Malaysia 's AirAsia . NNP RB VBD DT NN IN NNP POS NNP NNP NNP , IN NNP VBD DT NN IN NNP POS NNP . Witnesses say three British citizens have been kidnapped by gunmen in the southern Gaza Strip , after crossing into the territory from Egypt . NNS VBP CD JJ NNS VBP VBN VBN IN NNS IN DT JJ NNP NNP , IN VBG IN DT NN IN NNP . Security officials in Gaza say one of the victims is a human rights worker . NN NNS IN NNP VBP CD IN DT NNS VBZ DT JJ NNS NN . There was no claim of responsibility , and Palestinian authorities say they have begun a search . EX VBD DT NN IN NN , CC JJ NNS VBP PRP VBP VBN DT NN . Recent kidnappings in Gaza have ended peacefully with the hostages released unharmed . JJ NNS IN NNP VBP VBN RB IN DT NNS VBN JJ . In several cases , the kidnappers were either seeking jobs with the Palestinian Authority , or the release of imprisoned relatives . IN JJ NNS , DT NNS VBD RB VBG NNS IN DT JJ NNP , CC DT NN IN JJ NNS . The U.S. military has filed charges against six Marines accused of assaulting Iraqi civilians in the Iraqi town Hamdania . DT NNP NN VBZ VBN NNS IN CD NNS VBN IN VBG JJ NNS IN DT JJ NN NNP . The men , charged Thursday , are being held in a military jail at Camp Pendleton , a Marine base in southern California . DT NNS , VBN NNP , VBP VBG VBN IN DT JJ NN IN NNP NNP , DT NN NN IN JJ NNP . The alleged assaults occurred April 10 . DT JJ NNS VBD NNP CD . Three of the Marines charged are also accused of involvement in a separate case , the killing of an Iraqi civilian April 26 , also in Hamdania . CD IN DT NNPS VBD VBP RB VBN IN NN IN DT JJ NN , DT NN IN DT JJ JJ NNP CD , RB IN NNP . Five other Marines are also charged with that crime . CD JJ NNS VBP RB VBN IN DT NN . Thursday 's assault case is the latest in charges of violence by U.S. servicemen against Iraqi civilians . NNP POS NN NN VBZ DT JJS IN NNS IN NN IN NNP NNS IN JJ NNS . The military is investigating allegations that U.S. Marines killed 24 Iraqis in the town of Haditha , while four U.S. Army soldiers have been charged in the rape and murder of an Iraqi girl . DT NN VBZ VBG NNS IN NNP NNPS VBD CD NNS IN DT NN IN NNP , IN CD NNP NNP NNS VBP VBN VBN IN DT NN CC NN IN DT JJ NN . Those soldiers are also charged with killing three members of her family . DT NNS VBP RB VBN IN VBG CD NNS IN PRP$ NN . Egypt 's President Hosni Mubarak says he advised the United States not to launch military action against Iran , saying it could trigger violence across the Middle East . NNP POS NNP NNP NNP VBZ PRP VBD DT NNP NNPS RB TO VB JJ NN IN NNP , VBG PRP MD VB NN IN DT NNP NNP . A state-run newspaper , al-Gomhouria , Wednesday quoted Mr. Mubarak as saying he discussed the issue with Vice President Dick Cheney , who visited Egypt in January . DT JJ NN , NNP , NNP VBD NNP NNP IN VBG PRP VBD DT NN IN NNP NNP NNP NNP , WP VBD NNP IN NNP . President Bush has said he is open to all possible options for dealing with Iran , including military intervention . NNP NNP VBZ VBN PRP VBZ JJ TO DT JJ NNS IN VBG IN NNP , VBG JJ NN . But he said that would be the last option . CC PRP VBD DT MD VB DT JJ NN . Washington accuses Iran of sponsoring terrorists and secretly trying to develop nuclear weapons . NNP VBZ NNP IN VBG NNS CC RB VBG TO VB JJ NNS . In Wednesday 's published comments , Mr. Mubarak said he warned that a possible attack on Iran would anger Shi'ites in Iraq and other Middle Eastern nations . IN NNP POS VBN NNS , NNP NNP VBD PRP VBD IN DT JJ NN IN NNP MD VB NNS IN NNP CC JJ NNP NNP NNS . He said military action would spark revenge attacks from Hezbollah militants in Lebanon and insurgents in Iraq . PRP VBD JJ NN MD VB NN NNS IN NNP NNS IN NNP CC NNS IN NNP . Kenya 's President Mwai Kibaki has denied ever making a pledge to stay in office for just one term . NNP POS NNP NNP NNP VBZ VBN RB VBG DT NN TO VB IN NN IN RB CD NN . A former ally of the president , Ralia Odinga , has said that Mr. Kibaki made the pledge in 2002 , during negotiations to form the alliance that won that year 's Kenyan elections . DT JJ NN IN DT NN , NNP NNP , VBZ VBN IN NNP NNP VBD DT NN IN CD , IN NNS TO VB DT NN WDT VBD DT NN POS JJ NNS . But Thursday , Mr. Kibaki said he had no intention of giving up the chance to run for a second term . CC NNP , NNP NNP VBD PRP VBD DT NN IN VBG RP DT NN TO VB IN DT JJ NN . He said he has never indicated to anyone that he had any other intention . PRP VBD PRP VBZ RB VBN TO DT IN PRP VBD DT JJ NN . President Kibaki has yet to formally announce that he will run for re-election in polls expected later this year . NNP NNP VBZ RB TO RB VB IN PRP MD VB IN NN IN NNS VBN RB DT NN . The Kenyan economy has thrived under Mr. Kibaki but the administration has lost support at home and abroad because of a series of corruption scandals . DT JJ NN VBZ VBN IN NNP NNP CC DT NN VBZ VBN NN IN NN CC RB IN IN DT NN IN NN NNS . The U.S. military is delivering 50,000 hand-held radios to Haiti for survivors of the recent earthquakes . DT NNP NN VBZ VBG CD JJ NNS TO NNP IN NNS IN DT JJ NNS . The U.S. Department of Defense said Wednesday it expects the radios to arrive later this week . DT NNP NNP IN NNP VBD NNP PRP VBZ DT NNS TO VB RB DT NN . It said the joint task force will then distribute the radios to the public . PRP VBD DT JJ NN NN MD RB VB DT NNS TO DT NN . The military said survivors can use the radios to receive news and important information concerning international relief efforts . DT NN VBD NNS MD VB DT NNS TO VB NN CC JJ NN VBG JJ NN NNS . It also says its forces are working closely with the Haitian government to broadcast public safety messages for survivors on FM frequencies of 92.4 mhz and 104.1 mhz and the AM radio frequency of 1030 khz . PRP RB VBZ PRP$ NNS VBP VBG RB IN DT JJ NN TO VB JJ NN NNS IN NNS IN NNP NNS IN CD NN CC CD NN CC DT NNP NN NN IN CD NN . The radios are powered by solar energy and hand cranks instead of batteries , a potentially helpful asset in a nation short on basic supplies . DT NNS VBP VBN IN JJ NN CC NN NNS RB IN NNS , DT RB JJ NN IN DT NN JJ IN JJ NNS . Iraqi security forces say they have captured the alleged leader of a Sunni Arab militant group suspected of several bombings and assassinations . JJ NN NNS VBP PRP VBP VBN DT JJ NN IN DT NNP NNP JJ NN VBN IN JJ NNS CC NNS . A military spokesman Sunday said officials have linked Thayer Kadhim Abid al-Suraiwi to some Iraqi politicians and neighboring countries , but he did not elaborate . DT JJ NN NNP VBD NNS VBP VBN NNP NNP NNP NNP TO DT JJ NNS CC JJ NNS , CC PRP VBD RB VB . Authorities arrested Suraiwi last month in Baghdad . NNS VBN NNP JJ NN IN NNP . They accuse him of being the commander of Ansar al-Sunna . PRP VBP PRP IN VBG DT NN IN NNP NNP . They say the group was responsible for a June car bombing that killed dozens of people in Baghdad 's Shi'ite neighborhood of Hurriyah . PRP VBP DT NN VBD JJ IN DT NNP NN NN WDT VBD NNS IN NNS IN NNP POS NNP NN IN NNP . Meanwhile , Iraqi police say unknown gunmen killed three policemen today in Mosul . RB , JJ NNS VBP JJ NNS VBD CD NNS NN IN NNP . There are fresh allegations that prisoners under U.S. custody in Iraq and Guantanamo Bay , Cuba , suffered serious physical abuse from their interrogators . EX VBP JJ NNS IN NNS IN NNP NN IN NNP CC NNP NNP , NNP , VBD JJ JJ NN IN PRP$ NNS . Agents from the U.S. Federal Bureau of Investigation describe the abuse in newly-released e-mails obtained by the American Civil Liberties Union . NNS IN DT NNP NNP NNP IN NNP VBP DT NN IN JJ NNS VBN IN DT NNP NNP NNP NNP . In one e-mail , an FBI agent says he saw Guantanamo prisoners chained to the floor for up to 24 hours and left to defacate on themselves . IN CD NN , DT NNP NN VBZ PRP VBD NNP NNS VBD TO DT NN IN RB TO CD NNS CC VBD TO VB IN PRP . In another , the FBI reports that an unnamed individual saw Iraqi civilian detainees being beaten and strangled . IN DT , DT NNP VBZ IN DT JJ NN VBD JJ JJ NNS VBG VBN CC VBN . The e-mails also allege that Guantanamo military interrogators posed as FBI agents to avoid accountability for their deeds . DT NNS RB VBP IN NNP JJ NNS VBD IN NNP NNS TO VB NN IN PRP$ NNS . The White House has denied one allegation in the e-mail that President Bush signed an executive order approving certain interrogation techniques . DT NNP NNP VBZ VBN CD NN IN DT NN IN NNP NNP VBD DT JJ NN VBG JJ NN NNS . A U.S.-launched spacecraft orbiting the planet Mars has begun sending back some of the most finely detailed pictures ever of the surface of the so-called red planet . DT JJ NN VBG DT NN NNP VBZ VBN VBG RP DT IN DT RBS RB JJ NNS RB IN DT NN IN DT JJ JJ NN . The U.S. space agency , NASA , announced Friday that images from the Mars Reconnaissance Orbiter have begun arriving . DT NNP NN NN , NNP , VBD NNP IN NNS IN DT NNP NNP NNP VBP VBN VBG . They show rocks and features as small as armchairs on the planet 's surface . PRP VBP NNS CC NNS RB JJ IN NNS IN DT NN POS NN . The craft is particularly close to the planet 's surface during this point in its orbit , giving scientists extra help in their hunt for surface details that may indicate the presence of water sometime in the past . DT NN VBZ RB JJ TO DT NN POS NN IN DT NN IN PRP$ NN , VBG NNS JJ NN IN PRP$ NN IN NN NNS WDT MD VB DT NN IN NN RB IN DT NN . Scientists theorize that water may have made it possible for Mars to sustain life . NNS VBP IN NN MD VB VBN PRP JJ IN NNP TO VB NN . This spacecraft began orbiting Mars in March . DT NN VBD VBG NNP IN NNP . Scientists say it will return more data about the planet than all past Mars missions combined . NNS VBP PRP MD VB JJR NNS IN DT NN IN DT JJ NNP NNS VBN . Opposition parties in Ethiopia say they will boycott parliamentary elections scheduled for Sunday in a remote eastern part of the country . NN NNS IN NNP VBP PRP MD VB JJ NNS VBN IN NNP IN DT JJ JJ NN IN DT NN . The main opposition parties in the Somali region accused the ruling party Tuesday of harassing their supporters and illegally distributing ballots . DT JJ NN NNS IN DT JJ NN VBD DT VBG NN NNP IN VBG PRP$ NNS CC RB VBG NNS . Voters in Somali are electing members of parliament more than three months after the rest of the country went to the polls because of heavy rains in the region . NNS IN JJ VBP VBG NNS IN NN RBR IN CD NNS IN DT NN IN DT NN VBD TO DT NNS IN IN JJ NNS IN DT NN . Ethiopia 's election board has already announced the ruling Ethiopian People 's Revolutionary Democratic Front party has won a majority of seats in parliament . NNP POS NN NN VBZ RB VBN DT NN NNP NNP POS NNP NNP NNP NN VBZ VBN DT NN IN NNS IN NN . The opposition has rejected those results and said it may challenge the ruling in court . DT NN VBZ VBN DT NNS CC VBD PRP MD VB DT NN IN NN . Both the opposition and ruling parties have accused the other of fraud in the May 15 poll . DT DT NN CC NN NNS VBP VBN DT NN IN NN IN DT NNP CD NN . Shortly after the vote , security forces fired on anti-government protesters , killing 36 people . RB IN DT NN , NN NNS VBN IN JJ NNS , VBG CD NNS . President Viktor Yushchenko says he will dismiss Ukraine 's chief veterinary official , Petro Verbytsky , for his handling of the bird flu crisis . NNP NNP NNP VBZ PRP MD VB NNP POS NN JJ NN , NNP NNP , IN PRP$ NN IN DT NN NN NN . President Yushchenko made the announcement Monday as he was visiting an area of the Crimea suddenly hit by the deadly virus . NNP NNP VBD DT NN NNP IN PRP VBD VBG DT NN IN DT NNP RB VBN IN DT JJ NN . He said the veterinary service had not been prepared for the health crisis . PRP VBD DT JJ NN VBD RB VBN VBN IN DT NN NN . The president also urged local authorities to consider firing Crimean veterinary service leaders . DT NN RB VBD JJ NNS TO VB VBG JJ JJ NN NNS . Experts are investigating the recent deaths of hundreds of birds . NNS VBP VBG DT JJ NNS IN NNS IN NNS . It is not yet known whether they succumbed to the H5N1 strain of the flu , which can be spread to humans . PRP VBZ RB RB VBN IN PRP VBD TO DT NNP NN IN DT NN , WDT MD VB VBN TO NNS . Also Monday , Russia banned poultry imports from Ukraine . RB NNP , NNP VBD JJ NNS IN NNP . The swollen waters of the Mississippi River in the central U.S. have broken through another embankment , threatening to flood more houses and farmland . DT JJ NNS IN DT NNP NNP IN DT JJ NNP VBP VBN IN DT NN , VBG TO VB JJR NNS CC NN . The sandbag-reinforced levee broke early this Friday morning near the city of Winfield , in the state of Missouri , about 70 kilometers northeast of St. Louis . DT JJ NN VBD RB DT NNP NN IN DT NN IN NNP , IN DT NN IN NNP , IN CD NNS NN IN NNP NNP . Officials say it will ' ultimately inundate ' the town . NNS VBP PRP MD `` RB VB `` DT NN . It is the latest of dozens of embankments to fail to contain the rain-flooded Mississippi over the past 10 days , ruining buildings and huge areas of farmland . PRP VBZ DT JJS IN NNS IN NNS TO VB TO VB DT JJ NNP IN DT JJ CD NNS , VBG NNS CC JJ NNS IN NN . Authorities say the worst of the flooding is over . NNS VBP DT JJS IN DT NN VBZ IN . But the effects are likely to continue . CC DT NNS VBP JJ TO VB . The farms are major producers of corn , wheat and soybeans , prompting fears that crop losses will result in higher worldwide food prices . DT NNS VBP JJ NNS IN NN , NN CC NNS , VBG NNS IN NN NNS MD VB IN JJR JJ NN NNS . Citizens of Nepal 's capital , Kathmandu , have begun to suffer shortages of food and fuel as pro-democracy protests and strikes entered their 11th day . NNP IN NNP POS NN , NNP , VBP VBN TO VB NNS IN NN CC NN IN JJ NNS CC NNS VBD PRP$ JJ NN . On Sunday , police used teargas and rubber bullets against demonstrators , while an alliance of seven political parties urged people to stop paying taxes to put pressure on King Gyanendra to restore democracy . IN NNP , NN VBD NNS CC NN NNS IN NNS , IN DT NN IN CD JJ NNS VBD NNS TO VB VBG NNS TO VB NN IN NNP NNP TO VB NN . The political parties also called on international donors to halt aid to the royalist government . DT JJ NNS RB VBD IN JJ NNS TO VB NN TO DT NN NN . Gasoline has become hard to find , and the price of vegetables has skyrocketed since strikes interrupted deliveries of food and gasoline to the capital . NNP VBZ VBN JJ TO VB , CC DT NN IN NNS VBZ VBN IN NNS VBN NNS IN NN CC NN TO DT NN . The street campaign has intensified since the king dismissed the elected government and seized absolute power 14 months ago . DT NN NN VBZ VBN IN DT NN VBD DT JJ NN CC VBD JJ NN CD NNS RB . The king said he took the action because the politicians failed to control a Maoist rebellion . DT NN VBD PRP VBD DT NN IN DT NNS VBD TO VB DT NNP NN . Anti-royalists have called for a mass protest on Thursday . NNS VBP VBN IN DT JJ NN IN NNP . Iraq has welcomed Iran 's foreign minister to Baghdad , as the two former warring nations continue to improve relations . NNP VBZ VBN NNP POS JJ NN TO NNP , IN DT CD JJ VBG NNS VBP TO VB NNS . Kamal Kharrazi is the highest-ranking Iranian official to visit Iraq since the fall of Saddam Hussein more than two years ago . NNP NNP VBZ DT JJ JJ NN TO VB NNP IN DT NN IN NNP NNP JJR IN CD NNS RB . Mr. Kharrazi is due to hold talks with Iraq 's Shi'ite prime minister , Ibrahim al-Jaafari . NNP NNP VBZ JJ TO VB NNS IN NNP POS JJ JJ NN , NNP NNP . He also will meet with his Iraqi counterpart , Hoshyar Zebari . PRP RB MD VB IN PRP$ JJ NN , NNP NNP . Iraq 's new prime minister and several members of his Shi'ite-dominated government have close ties with the Islamic regime in mainly Shi'ite Iran . NNP POS JJ JJ NN CC JJ NNS IN PRP$ JJ NN VBP JJ NNS IN DT JJ NN IN RB NNP NNP . Under Saddam Hussein , Iraq fought a devastating eight-year war with Iran , and more than a million people were killed . IN NNP NNP , NNP VBD DT JJ JJ NN IN NNP , CC JJR IN DT CD NNS VBD VBN . Afghan authorities say two suicide bombers have killed three people and wounded eight in the southern city of Kandahar . JJ NNS VBP CD NN NNS VBP VBN CD NNS CC VBD CD IN DT JJ NN IN NNP . One of the attackers killed a former factional commander , Agha Shah , and two bystanders outside Agha Shah 's house . CD IN DT NNS VBD DT JJ JJ NN , NNP NNP , CC CD NNS IN NNP NNP POS NN . Later , a second bomber blew himself up , but caused no other casualties , when police ordered him to stop near the main U.S. military base in Kandahar . RB , DT JJ NN VBD PRP RP , CC VBD DT JJ NNS , WRB NNS VBD PRP TO VB IN DT JJ NNP JJ NN IN NNP . There have been two other suicide bombings in the Afghan city in less than a week , one against British officials and the other targeting Canadian troops . EX VBP VBN CD JJ NN NNS IN DT JJ NN IN JJR IN DT NN , CD IN JJ NNS CC DT JJ VBG JJ NNS . Meanwhile , the U.S. military says an American soldier was killed and another wounded Sunday during fighting with insurgents in Zabul province . RB , DT NNP NN VBZ DT JJ NN VBD VBN CC DT VBN NNP IN VBG IN NNS IN NNP NN . Separately , a U.S. military helicopter made a hard landing and caught fire during an anti-militant operation in eastern Afghanistan . RB , DT NNP JJ NN VBD DT JJ NN CC VBD NN IN DT JJ NN IN JJ NNP . The helicopter was destroyed , but all onboard escaped unhurt . DT NN VBD VBN , CC DT RB VBN NN . The U.S. government is expressing doubts about a threat posted on the Internet which warns officials in seven U.S. cities about a dirty bomb attack on professional football stadiums in the coming days . DT NNP NN VBZ VBG NNS IN DT NN VBN IN DT NN WDT VBZ NNS IN CD NNP NNS IN DT JJ NN NN IN JJ NN NNS IN DT JJ NNS . The U.S. Department of Homeland Security said Wednesday the threat was being viewed ' with strong skepticism , ' but that an alert was being issued ' out of an abundance of caution . ' DT NNP NNP IN NNP NNP VBD NNP DT NN VBD VBG VBN `` IN JJ NN , `` CC IN DT NN VBD VBG VBN `` IN IN DT NN IN NN . `` Authorities say the threat was posted on an Internet web site and mentions National Football League , or NFL , stadiums in New York , Miami , Atlanta , Seattle , Houston , Oakland and Cleveland . NNS VBP DT NN VBD VBN IN DT NNP NN NN CC NNS NNP NNP NNP , CC NNP , NNS IN NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP . Officials , however , say people are strongly encouraged to continue to go about their plans , including attending events that involve large public gatherings such as football games . NNS , RB , VBP NNS VBP RB VBN TO VB TO VB IN PRP$ NNS , VBG VBG NNS WDT VBP JJ JJ NNS JJ IN NN NNS . Tony Lama Co. said that Equus Investment II Limited Partnership has proposed changing the offer for the company to $ 13.65 in cash and stock from an all-cash transaction . NNP NNP NNP VBD IN NNP NNP NNP NNP NNP VBZ VBN VBG DT NN IN DT NN TO $ CD IN NN CC NN IN DT JJ NN . Under terms of the new proposal , Equus , managed by Equus Capital Corp. , Houston , would pay $ 12 cash and one new preferred share with a liquidation preference of $ 1.65 a share for each of Tony Lama 's 2.1 million shares outstanding . IN NNS IN DT JJ NN , NNP , VBN IN NNP NNP NNP , NNP , MD VB $ CD NN CC CD JJ VBN NN IN DT NN NN IN $ CD DT NN IN DT IN NNP NNP POS CD CD NNS JJ . Previously , it offered $ 13.65 a share in cash , or $ 29 million . RB , PRP VBD $ CD DT NN IN NN , CC $ CD CD . The El~Paso , Texas , maker of Western boots and leather accessories said the preferred stock would accrue dividends at a 12 % rate , but would n't be paid for the first two years . DT NNP , NNP , NN IN NNP NNS CC NN NNS VBD DT JJ NN MD VB NNS IN DT CD NN NN , CC MD RB VB VBN IN DT JJ CD NNS . The stock would be redeemed in five years , subject to terms of the surviving company 's debt . DT NN MD VB VBN IN CD NNS , JJ TO NNS IN DT VBG NN POS NN . Neither Equus nor Tony Lama gave a reason for the changed offer and Tony Lama could n't be reached for comment . DT NNP CC NNP NNP VBD DT NN IN DT VBN NN CC NNP NNP MD RB VB VBN IN NN . However , Tony Lama said it would promptly submit the offer to a special committee of the company 's board . RB , NNP NNP VBD PRP MD RB VB DT NN IN DT JJ NN IN DT NN POS NN . Dutch traders landed at the southern tip of modern day South Africa in 1652 and established a stopover point on the spice route between the Netherlands and the Far East , founding the city of Cape Town . JJ NNS VBD IN DT JJ NN IN JJ NN NNP NNP IN CD CC VBD DT NN NN IN DT NN NN IN DT NNP CC DT NNP NNP , VBG DT NN IN NNP NNP . After the British seized the Cape of Good Hope area in 1806 , many of the Dutch settlers ( the Boers ) trekked north to found their own republics . IN DT NNS VBD DT NNP IN NNP NNP NN IN CD , NN IN DT JJ NNS LRB DT NNS RRB VBD NN TO VBD PRP$ JJ NNS . The discovery of diamonds ( 1867 ) and gold ( 1886 ) spurred wealth and immigration and intensified the subjugation of the native inhabitants . DT NN IN NNS LRB CD RRB CC NN LRB CD RRB VBN NN CC NN CC VBD DT NN IN DT JJ NNS . The Boers resisted British encroachments but were defeated in the Boer War ( 1899 - 1902 ) ; however , the British and the Afrikaners , as the Boers became known , ruled together beginning in 1910 under the Union of South Africa , which became a republic in 1961 after a whites-only referendum . DT NNS VBD JJ NNS CC VBD VBN IN DT NNP NNP LRB CD : CD RRB ; RB , DT JJ CC DT NNPS , IN DT NNS VBD VBN , VBD RB VBG IN CD IN DT NNP IN NNP NNP , WDT VBD DT NN IN CD IN DT JJ NN . In 1948 , the National Party was voted into power and instituted a policy of apartheid - the separate development of the races - which favored the white minority at the expense of the black majority . IN CD , DT NNP NNP VBD VBN IN NN CC VBD DT NN IN NN IN DT JJ NN IN DT NNS : WDT VBD DT JJ NN IN DT NN IN DT JJ NN . The African National Congress ( ANC ) led the opposition to apartheid and many top ANC leaders , such as Nelson MANDELA , spent decades in South Africa 's prisons . DT NNP NNP NNP LRB NNP RRB VBD DT NN TO NN CC JJ JJ NNP NNS , JJ IN NNP NNP , VBD NNS IN NNP NNP POS NNS . Internal protests and insurgency , as well as boycotts by some Western nations and institutions , led to the regime 's eventual willingness to negotiate a peaceful transition to majority rule . NNP NNS CC NN , RB RB IN NNS IN DT JJ NNS CC NNS , VBD TO DT NN POS JJ NN TO VB DT JJ NN TO NN NN . The first multi-racial elections in 1994 brought an end to apartheid and ushered in majority rule under an ANC-led government . DT JJ JJ NNS IN CD VBD DT NN TO NN CC VBD IN NN NN IN DT JJ NN . South Africa since then has struggled to address apartheid-era imbalances in decent housing , education , and health care . NNP NNP IN RB VBZ VBN TO VB JJ NNS IN JJ NN , NN , CC NN NN . ANC infighting , which has grown in recent years , came to a head in September 2008 when President Thabo MBEKI resigned , and Kgalema MOTLANTHE , the party 's General-Secretary , succeeded him as interim president . NNP NN , WDT VBZ VBN IN JJ NNS , VBD TO DT NN IN NNP CD WRB NNP NNP NNP VBD , CC NNP NNP , DT NN POS JJ , VBD PRP IN JJ NN . Jacob ZUMA became president after the ANC won general elections in April 2009 . NNP NNP VBD NN IN DT NNP VBD JJ NNS IN NNP CD . In January 2011 , South Africa assumed a nonpermanent seat on the UN Security Council for the 2011 - 12 term . IN NNP CD , NNP NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD : CD NN . The SANTOS administration has highlighted five ' locomotives ' to stimulate economic growth : extractive industries ; agriculture ; infrastructure ; housing ; and innovation . DT NNP NN VBZ VBN CD `` NNS `` TO VB JJ NN IN JJ NNS ; NN ; NN ; NN ; CC NN . Colombia is third largest exporter of oil to the United States . NNP VBZ JJ JJS NN IN NN TO DT NNP NNPS . President SANTOS , inaugurated in August 2010 , introduced unprecedented legislation to better distribute extractive industry royalties and compensate Colombians who lost their land due to decades of violence . NNP NNP , VBD IN NNP CD , VBN JJ NN TO RB VB JJ NN NNS CC VB NNPS WP VBD PRP$ NN JJ TO NNS IN NN . He also seeks to build on improvements in domestic security and on President URIBE 's promarket economic policies . PRP RB VBZ TO VB IN NNS IN JJ NN CC IN NNP NNP POS NN JJ NNS . Foreign direct investment reached a record $ 10 billion in 2008 , but dropped to $ 7.2 billion in 2009 , before beginning to recover in 2010 , notably in the oil sector . JJ JJ NN VBD DT NN $ CD CD IN CD , CC VBD TO $ CD CD IN CD , IN VBG TO VB IN CD , RB IN DT NN NN . Pro-business reforms in the oil and gas sectors and export-led growth , fueled mainly by the Andean Trade Promotion and Drug Eradication Act , have enhanced Colombia 's investment climate . NN NNS IN DT NN CC NN NNS CC JJ NN , VBN RB IN DT NNP NNP NNP CC NNP NNP NNP , VBP VBN NNP POS NN NN . Inequality , underemployment , and narcotrafficking remain significant challenges , and Colombia 's infrastructure requires major improvements to sustain economic expansion . NNP , NN , CC VBG VBP JJ NNS , CC NNP POS NN VBZ JJ NNS TO VB JJ NN . Because of the global financial crisis and weakening demand for Colombia 's exports , Colombia 's economy grew only 2.7 % in 2008 , and 0.8 % in 2009 but rebounded to around 4.4 % in 2010 . IN IN DT JJ JJ NN CC VBG NN IN NNP POS NNS , NNP POS NN VBD RB CD NN IN CD , CC CD NN IN CD CC VBD TO IN CD NN IN CD . In late 2010 , Colombia experienced its most severe flooding in decades , with damages estimated to exceed $ 6 billion . IN JJ CD , NNP VBD PRP$ RBS JJ NN IN NNS , IN NNS VBN TO VB $ CD CD . The government has encouraged exporters to diversify their customer base beyond the United States and Venezuela , traditionally Colombia 's largest trading partners ; the SANTOS administration continues to pursue free trade agreements with Asian and South American partners and a trade accord with Canada is expected to go into effect in 2011 , while a negotiated trade agreement with the EU has yet to be approved by the EU parliament . DT NN VBZ VBN NNS TO VB PRP$ NN NN IN DT NNP NNPS CC NNP , RB NNP POS JJS NN NNS ; DT NNP NN VBZ TO VB JJ NN NNS IN JJ CC JJ JJ NNS CC DT NN NN IN NNP VBZ VBN TO VB IN NN IN CD , IN DT JJ NN NN IN DT NNP VBZ RB TO VB VBN IN DT NNP NN . Improved relations with Venezuela have eased worries about restrictions on bilateral trade , but the business sector remains concerned about the pending US Congressional approval of the US-Colombia Trade Promotion Agreement . JJ NNS IN NNP VBP VBN NNS IN NNS IN JJ NN , CC DT NN NN VBZ JJ IN DT VBG NNP NNP NN IN DT NNP NNP NNP NNP . The Arctic Ocean is the smallest of the world 's five oceans ( after the Pacific Ocean , Atlantic Ocean , Indian Ocean , and the recently delimited Southern Ocean ) . DT NNP NNP VBZ DT JJS IN DT NN POS CD NNS LRB IN DT NNP NNP , NNP NNP , NNP NNP , CC DT RB VBN NNP NNP RRB . The Northwest Passage ( US and Canada ) and Northern Sea Route ( Norway and Russia ) are two important seasonal waterways . DT NNP NN LRB NNP CC NNP RRB CC NNP NNP NNP LRB NNP CC NNP RRB VBP CD JJ JJ NNS . In recent years the polar ice pack has thinned allowing for increased navigation and raising the possibility of future sovereignty and shipping disputes among countries bordering the Arctic Ocean . IN JJ NNS DT JJ NN NN VBZ VBN VBG IN VBN NN CC VBG DT NN IN JJ NN CC NN NNS IN NNS VBG DT NNP NNP . Jersey and the other Channel Islands represent the last remnants of the medieval Dukedom of Normandy that held sway in both France and England . NNP CC DT JJ NNP NNP VBP DT JJ NNS IN DT JJ NN IN NNP WDT VBD NN IN DT NNP CC NNP . These islands were the only British soil occupied by German troops in World War II . Jersey is a British crown dependency but is not part of the UK or of the European Union . DT NNS VBD DT JJ JJ NN VBN IN JJ NNS IN NNP NNP NNP . NNP VBZ DT JJ NN NN CC VBZ RB NN IN DT NNP CC IN DT NNP NNP . However , the UK Government is constitutionally responsible for its defense and international representation . RB , DT NNP NNP VBZ RB JJ IN PRP$ NN CC JJ NN . In 1603 , after decades of civil warfare , the Tokugawa shogunate ( a military-led , dynastic government ) ushered in a long period of relative political stability and isolation from foreign influence . IN CD , IN NNS IN JJ NN , DT NNP NN LRB DT JJ , JJ NN RRB VBD IN DT JJ NN IN JJ JJ NN CC NN IN JJ NN . For more than two centuries this policy enabled Japan to enjoy a flowering of its indigenous culture . IN JJR IN CD NNS DT NN VBD NNP TO VB DT NN IN PRP$ JJ NN . Japan opened its ports after signing the Treaty of Kanagawa with the US in 1854 and began to intensively modernize and industrialize . NNP VBD PRP$ NNS IN VBG DT NNP IN NNP IN DT NNP IN CD CC VBD TO RB VB CC VB . During the late 19th and early 20th centuries , Japan became a regional power that was able to defeat the forces of both China and Russia . IN DT JJ JJ CC JJ JJ NNS , NNP VBD DT JJ NN WDT VBD JJ TO VB DT NNS IN DT NNP CC NNP . It occupied Korea , Formosa ( Taiwan ) , and southern Sakhalin Island . PRP VBD NNP , NNP LRB NNP RRB , CC JJ NNP NNP . In 1931 - 32 Japan occupied Manchuria , and in 1937 it launched a full-scale invasion of China . IN CD IN CD NNP JJ NNP , CC IN CD PRP VBD DT JJ NN IN NNP . Japan attacked US forces in 1941 - triggering America 's entry into World War II - and soon occupied much of East and Southeast Asia . NNP VBD NNP NNS IN CD : VBG NNP POS NN IN NNP NNP NNP : CC RB JJ NN IN NNP CC NNP NNP . After its defeat in World War II , Japan recovered to become an economic power and an ally of the US . IN PRP$ NN IN NNP NNP NNP , NNP VBD TO VB DT JJ NN CC DT NN IN DT NNP . While the emperor retains his throne as a symbol of national unity , elected politicians hold actual decision-making power . IN DT NN VBZ PRP$ NN IN DT NN IN JJ NN , VBN NNS VBP JJ JJ NN . Following three decades of unprecedented growth , Japan 's economy experienced a major slowdown starting in the 1990s , but the country remains a major economic power . VBG CD NNS IN JJ NN , NNP POS NN VBD DT JJ NN VBG IN DT NNS , CC DT NN VBZ DT JJ JJ NN . In March 2011 , Japan 's strongest-ever earthquake , and an accompanying tsunami , devastated the northeast part of Honshu island , killing thousands and damaging several nuclear power plants . IN NNP CD , NNP POS JJ NN , CC DT JJ NN , VBD DT NN NN IN NNP NN , VBG NNS CC VBG JJ JJ NN NNS . The catastrophe hobbled the country 's economy and its energy infrastructure , and severely strained its capacity to deal with the humanitarian disaster . DT NN VBD DT NN POS NN CC PRP$ NN NN , CC RB VBD PRP$ NN TO VB IN DT JJ NN . Niger became independent from France in 1960 and experienced single-party and military rule until 1991 , when Gen. Ali SAIBOU was forced by public pressure to allow multiparty elections , which resulted in a democratic government in 1993 . NNP VBD JJ IN NNP IN CD CC VBD JJ CC JJ NN IN CD , WRB NNP NNP NNP VBD VBN IN JJ NN TO VB JJ NNS , WDT VBD IN DT JJ NN IN CD . Political infighting brought the government to a standstill and in 1996 led to a coup by Col. Ibrahim BARE . JJ NN VBD DT NN TO DT NN CC IN CD VBD TO DT NN IN NNP NNP NNP . In 1999 , BARE was killed in a counter coup by military officers who restored democratic rule and held elections that brought Mamadou TANDJA to power in December of that year . IN CD , NNP VBD VBN IN DT NN NN IN JJ NNS WP VBD JJ NN CC VBD NNS WDT VBD NNP NNP TO NN IN NNP IN DT NN . TANDJA was reelected in 2004 and in 2009 spearheaded a constitutional amendment that would allow him to extend his term as president . NNP VBD VBN IN CD CC IN CD VBD DT JJ NN WDT MD VB PRP TO VB PRP$ NN IN NN . In February 2010 , a military coup deposed TANDJA , immediately suspended the constitution and dissolved the Cabinet , and promised that elections would be held following a transitional period of unspecified duration . IN NNP CD , DT JJ NN VBN NNP , RB VBD DT NN CC VBD DT NNP , CC VBD IN NNS MD VB VBN VBG DT JJ NN IN JJ NN . Niger is one of the poorest countries in the world with minimal government services and insufficient funds to develop its resource base . NNP VBZ CD IN DT JJS NNS IN DT NN IN JJ NN NNS CC JJ NNS TO VB PRP$ NN NN . The largely agrarian and subsistence-based economy is frequently disrupted by extended droughts common to the Sahel region of Africa . DT RB JJ CC JJ NN VBZ RB VBN IN JJ NNS JJ TO DT NNP NN IN NNP . A predominately Tuareg ethnic group emerged in February 2007 , the Nigerien Movement for Justice , and attacked several military targets in Niger 's northern region throughout 2007 and 2008 . DT RB JJ JJ NN VBD IN NNP CD , DT NNP NNP IN NNP , CC VBD JJ JJ NNS IN NNP POS JJ NN IN CD CC CD . Successful government offensives in 2009 limited the rebels ' operational capabilities . JJ NN NNS IN CD VBD DT NNS POS JJ NNS . A DOG lay in a manger , and by his growling and snapping prevented the oxen from eating the hay which had been placed for them . DT NN VBD IN DT NN , CC IN PRP$ NN CC VBG VBD DT NNS IN VBG DT NN WDT VBD VBN VBN IN PRP . ' What a selfish Dog ! ' said one of them to his companions ; ' he can not eat the hay himself , and yet refuses to allow those to eat who can . ' `` WP DT JJ NN . `` VBD CD IN PRP TO PRP$ NNS ; `` PRP MD RB VB DT NN PRP , CC RB VBZ TO VB DT TO VB WP MD . `` THE BEASTS of the field and forest had a Lion as their king . DT NNS IN DT NN CC NN VBD DT NN IN PRP$ NN . He was neither wrathful , cruel , nor tyrannical , but just and gentle as a king could be . PRP VBD RB JJ , JJ , CC JJ , CC RB CC VB IN DT NN MD VB . During his reign he made a royal proclamation for a general assembly of all the birds and beasts , and drew up conditions for a universal league , in which the Wolf and the Lamb , the Panther and the Kid , the Tiger and the Stag , the Dog and the Hare , should live together in perfect peace and amity . IN PRP$ NN PRP VBD DT JJ NN IN DT JJ NN IN PDT DT NNS CC NNS , CC VBD RP NNS IN DT JJ NN , IN WDT DT NN CC DT NN , DT NN CC DT NN , DT NN CC DT NN , DT NN CC DT NN , MD VB RB IN JJ NN CC NN . The Hare said , ' Oh , how I have longed to see this day , in which the weak shall take their place with impunity by the side of the strong . ' DT NN VBD , `` UH , WRB PRP VBP VBN TO VB DT NN , IN WDT DT JJ MD VB PRP$ NN IN NN IN DT NN IN DT JJ . `` And after the Hare said this , he ran for his life . CC IN DT NN VBD DT , PRP VBD IN PRP$ NN . An Eagle swooped down upon a Serpent and seized it in his talons with the intention of carrying it off and devouring it . DT NN VBD RP IN DT NN CC VBD PRP IN PRP$ NNS IN DT NN IN VBG PRP RP CC VBG PRP . But the Serpent was too quick for him and had its coils round him in a moment ; and then there ensued a life-and-death struggle between the two . CC DT NN VBD RB JJ IN PRP CC VBD PRP$ NNS VBP PRP IN DT NN ; CC RB EX VBD DT JJ NN IN DT CD . A countryman , who was a witness of the encounter , came to the assistance of the eagle , and succeeded in freeing him from the Serpent and enabling him to escape . DT NN , WP VBD DT NN IN DT NN , VBD TO DT NN IN DT NN , CC VBD IN VBG PRP IN DT NN CC VBG PRP TO VB . In revenge , the Serpent spat some of his poison into the man 's drinking-horn . IN NN , DT NN VBD DT IN PRP$ NN IN DT NN POS NN . Heated with his exertions , the man was about to slake his thirst with a draught from the horn , when the Eagle knocked it out of his hand , and spilled its contents upon the ground . VBN IN PRP$ NNS , DT NN VBD RB TO VB PRP$ NN IN DT NN IN DT NN , WRB DT NN VBD PRP IN IN PRP$ NN , CC VBD PRP$ NNS IN DT NN . ' One good turn deserves another . ' `` CD JJ NN VBZ DT . `` HAVING been summoned to serve as a juror , a Prominent Citizen sent a physician 's certificate stating that he was afflicted with softening of the brain . VBG VBN VBN TO VB IN DT NN , DT JJ NN VBD DT NN POS NN VBG IN PRP VBD VBN IN NN IN DT NN . ' The gentleman is excused , ' said the Judge , handing back the certificate to the person who had brought it , ' he has a brain . ' `` DT NN VBZ VBN , `` VBD DT NN , VBG RB DT NN TO DT NN WP VBD VBN PRP , `` PRP VBZ DT NN . `` My housecat went down to the local military recruiting depot to sign up for the service . PRP$ NN VBD RB TO DT JJ JJ NN NN TO VB RP IN DT NN . He came back about two hours later and sadly explained that he could n't enlist because he would have to be ' de-furred ' . PRP VBD RB IN CD NNS RB CC RB VBD IN PRP MD RB VB IN PRP MD VB TO VB `` JJ `` . U.S. Secretary of State Condoleezza Rice has met with Egyptian President Hosni Mubarak for talks on democracy in Egypt and regional issues . NNP NNP IN NNP NNP NNP VBZ VBN IN JJ NNP NNP NNP IN NNS IN NN IN NNP CC JJ NNS . The two met in the southern Egyptian city of Aswan Sunday . DT CD VBD IN DT JJ JJ NN IN NNP NNP . Following their talks , Rice voiced concern about Monday 's referendum to include tough anti-terrorism laws in Egypt 's constitution . VBG PRP$ NNS , NNP VBD NN IN NNP POS NN TO VB JJ NN NNS IN NNP POS NN . Opposition groups say the amendments would be a setback for basic freedoms in Egypt and strengthen the ruling party 's grip on power . NN NNS VBP DT NNS MD VB DT NN IN JJ NNS IN NNP CC VB DT VBG NN POS NN IN NN . Egyptian Foreign Minister Ahmed Abul Gheit , who also met with Rice , defended the proposed laws , saying Egypt 's security is its own responsibility . JJ NNP NNP NNP NNP NNP , WP RB VBD IN NNP , VBD DT VBN NNS , VBG NNP POS NN VBZ PRP$ JJ NN . Rice also discussed regional issues with the Egyptian officials and said she appreciates Egypt 's support in the Israeli-Palestinian peace process . NNP RB VBD JJ NNS IN DT JJ NNS CC VBD PRP VBZ NNP POS NN IN DT JJ NN NN . North Korea 's defense minister is promising retaliation against tough new U.N. sanctions put in place following its missile and nuclear tests . NNP NNP POS NN NN VBZ VBG NN IN JJ JJ NNP NNS VBN IN NN VBG PRP$ NN CC JJ NNS . North Korean state media reported Sunday that Kim Yong-Chun said Pyongyang would deal ' unimaginably deadly blows ' at the United States and South Korea if they attack the communist nation . JJ JJ NN NNS VBD NNP IN NNP NNP VBD NNP MD VB `` RB JJ NNS `` IN DT NNP NNPS CC NNP NNP IN PRP VBP DT JJ NN . Kim was speaking at a public meeting held on the eve of the anniversary of the armistice that ended the Korean War on July 27 , 1953 . NNP VBD VBG IN DT JJ NN VBN IN DT NN IN DT NN IN DT NN WDT VBD DT JJ NNP IN NNP CD , CD . In a separate announcement , North Korea repeated its routine denunciations of an upcoming U.S. and South Korean military exercise , saying the maneuvers ' lay bare the black-hearted aim ' lurking behind the ' talk of dialogue . ' IN DT JJ NN , NNP NNP VBD PRP$ NN NNS IN DT JJ NNP CC NNP JJ JJ NN , VBG DT NNS `` VBP NN DT JJ NN `` VBG IN DT `` NN IN NN . `` Washington and Seoul say they are not planning to invade North Korea . NNP CC NNP VBP PRP VBP RB VBG TO VB NNP NNP . North Korea regularly issues aggressive statements and rhetoric against its neighbors and the U.S. NNP NNP RB VBZ JJ NNS CC NN IN PRP$ NNS CC DT NNP Israeli police are investigating the desecration of the graves of slain Prime Minister Yitzhak Rabin and his wife , Leah . JJ NNS VBP VBG DT NN IN DT NNS IN NN NNP NNP NNP NNP CC PRP$ NN , NNP . Police said Monday the words ' murderous dog ' were written with black paint on the tomb of Mr. Rabin , who was assassinated in 1995 by a Jewish extremist for his land-for-peace deals with the Palestinians . NNP VBD NNP DT NNS `` JJ NN `` VBD VBN IN JJ NN IN DT NN IN NNP NNP , WP VBD VBN IN CD IN DT JJ NN IN PRP$ NN NNS IN DT NNS . Last week , the grave of Theodore Herzl , the founder of the Zionist movement , was defaced with the words ' Neo Nazi Hail Beilin . ' JJ NN , DT NN IN NNP NNP , DT NN IN DT NNP NN , VBD VBN IN DT NNS `` NNP NNP NNP NNP . `` Israel 's founding father David Ben Gurion 's grave was also desecrated . NNP POS NN NN NNP NNP NNP POS NN VBD RB VBN . Police say they suspect right-wing extremists opposed to Israel 's planned withdrawal from the Gaza Strip and four West Bank settlements were responsible for the graveyard vandalism . NNS VBP PRP VBP JJ NNS VBN TO NNP POS VBN NN IN DT NNP NNP CC CD NNP NNP NNS VBD JJ IN DT NN NN . The U.S. military has launched a new operation in western Iraq aimed at rooting-out foreign fighters and insurgents in a bid to boost security ahead of the October 15 referendum on the country 's new constitution . DT NNP NN VBZ VBN DT JJ NN IN JJ NNP VBN IN NN JJ NNS CC NNS IN DT NN TO VB NN RB IN DT NNP CD NN IN DT NN POS JJ NN . The U.S. military says about 1,000 marines , soldiers and sailors launched the offensive early Saturday in the town of Sadah , near Qaim , about 12 kilometers from the Syrian border . DT NNP NN VBZ IN CD NNS , NNS CC NNS VBD DT JJ JJ NNP IN DT NN IN NNP , IN NNP , IN CD NNS IN DT JJ NN . Meanwhile , in the northern city of Kirkuk , police say a roadside bomb exploded near one of their patrols , killing at least three officers . RB , IN DT JJ NN IN NNP , NNS VBP DT NN NN VBD IN CD IN PRP$ NNS , VBG IN JJS CD NNS . Also Saturday , the U.S. military reports that two American soldiers were killed in separate incidents in Baghdad and Bayji . RB NNP , DT NNP NN VBZ IN CD JJ NNS VBD VBN IN JJ NNS IN NNP CC NNP . Also a Danish soldier was killed and two were wounded in the southern city of Basra , where about 500 Danish soldiers are based . RB DT JJ NN VBD VBN CC CD VBD VBN IN DT JJ NN IN NNP , WRB IN CD JJ NNS VBP VBN . The West Indies ' cricket team has scored 240-8 on the first day of its second test match against South Africa at Newlands in Cape Town , South Africa . DT NNP NNPS POS NN NN VBZ VBN CD IN DT JJ NN IN PRP$ JJ NN NN IN NNP NNP IN NNPS IN NNP NNP , NNP NNP . Shivnarine Chanderpaul of the West Indies led the visitors with 64 runs while Marlon Samuels added another 51 for the Caribbean squad . NNP NNP IN DT NNP NNPS VBD DT NNS IN CD NNS IN NNP NNP VBD DT CD IN DT NNP NN . Chanderpaul was at the crease for 297 minutes and faced 214 deliveries . NNP VBD IN DT NN IN CD NNS CC VBD CD NNS . South African bowlers Makhaya Ntini and Dale Steyn led the home team with Steyn taking four wickets while allowing 60 runs while Ntini finished at Feb-63 . JJ JJ NNS NNP NNP CC NNP NNP VBD DT NN NN IN NNP VBG CD NNS IN VBG CD NNS IN NNP VBD IN CD . The West Indies won the first test of the three-match series by 128 runs in Port Elizabeth . DT NNP NNPS VBD DT JJ NN IN DT JJ NNS IN CD NNS IN NNP NNP . The third test starts January 10th in Durban . DT JJ NN VBZ NNP CD IN NNP . The two sides will also play five one-day international matches . DT CD NNS MD RB VB CD JJ JJ NNS . North Korea has marked the 60th anniversary of the founding of its ruling party with a mass gathering in the capital . NNP NNP VBZ VBN DT JJ NN IN DT NN IN PRP$ VBG NN IN DT NN NN IN DT NN . Supreme leader Kim Jong-il presided over the festivities Sunday night at Pyongyang 's May Day Stadium . NNP NN NNP NNP VBD IN DT NNS NNP NN IN NNP POS NNP NNP NNP . The ruling Workers ' Party was founded in 1945 by Kim Jong-il 's father the late President Kim il-Sung , shortly after the Korean Peninsula was divided at the end of World War II . DT NN NNS POS NN VBD VBN IN CD IN NNP NNP POS NN DT JJ NNP NNP NNP , RB IN DT JJ NNP VBD VBN IN DT NN IN NNP NNP NNP . There was no mention of the country 's nuclear ambitions in speeches during Monday 's celebrations . EX VBD DT NN IN DT NN POS JJ NNS IN NNS IN NNP POS NNS . North Korea agreed last month during six-nation talks in Beijing to abandon its nuclear weapons program in return for economic aid , energy assistance and security assurances . NNP NNP VBD JJ NN IN JJ NNS IN NNP TO VB PRP$ JJ NNS NN IN NN IN JJ NN , NN NN CC NN NNS . The fifth round of six-nation talks is scheduled for early next month in Beijing . DT JJ NN IN JJ NNS VBZ VBN IN JJ JJ NN IN NNP . U.S. military authorities have released 260 people from two detention facilities in Iraq after a security review board determined the detainees no longer pose a threat . NNP JJ NNS VBP VBN CD NNS IN CD NN NNS IN NNP IN DT NN NN NN VBD DT NNS RB RB VB DT NN . A military spokesman Saturday said the release brings to 9,000 the number of detainees in Iraq who were freed in 2004 . DT JJ NN NNP VBD DT NN VBZ TO CD DT NN IN NNS IN NNP WP VBD VBN IN CD . He said about 7,000 prisoners are still being held at Baghdad 's Abu Ghraib prison and Camp Bucca in southern Iraq . PRP VBD IN CD NNS VBP RB VBG VBN IN NNP POS NNP NNP NN CC NNP NNP IN JJ NNP . Meanwhile , the U.S. military says a Marine was killed in Iraq 's western province of al-Anbar . RB , DT NNP NN VBZ DT NN VBD VBN IN NNP POS JJ NN IN NNP . The latest death marked an end to the U.S. military 's deadliest six-month period since the April 2003 invasion - with more than 500 U.S. soldiers killed in the last six months of 2004 . DT JJS NN VBD DT NN TO DT NNP NN POS JJS JJ NN IN DT NNP CD NN IN IN JJR IN CD NNP NNS VBN IN DT JJ CD NNS IN CD . Also Saturday , a Lebanese man was killed and another wounded by sniper fire in the U.S. controlled Green Zone . RB NNP , DT JJ NN VBD VBN CC DT VBN IN NN NN IN DT NNP JJ NN NNP . World oil prices have fallen about eight percent from last week 's $ 70 high . NNP NN NNS VBP VBN IN CD NN IN JJ NN POS $ CD JJ . The markets are reacting to Friday 's announcement that industrialized nations were releasing emergency reserves to make up for interruptions caused by Hurricane Katrina . DT NNS VBP VBG TO NNP POS NN IN JJ NNS VBD VBG NN NNS TO VB RP IN NNS VBN IN NNP NNP . In London Monday , the price of a barrel of crude oil for October delivery dropped to $ 64.7 , falling nearly $ 1.5 from Friday 's close . IN NNP NNP , DT NN IN DT NN IN JJ NN IN NNP NN VBD TO $ CD , VBG RB $ CD IN NNP POS NN . New York markets are closed for the Labor Day holiday . NNP NNP NNS VBP VBN IN DT NNP NNP NN . Analysts say the release of two million barrels of oil per day from International Energy Agency strategic stockpiles will ease the oil crisis in the United States caused by Katrina . NNS VBP DT NN IN CD CD NNS IN NN IN NN IN NNP NNP NNP JJ NNS MD VB DT NN NN IN DT NNP NNPS VBN IN NNP . The devastating hurricane shut down refineries , offshore production , oil imports and shipping throughout the entire U.S. Gulf Coast region . DT JJ NN VBD RP NNS , JJ NN , NN NNS CC NN IN DT JJ NNP NNP NNP NN . World oil prices rebounded in Wednesday 's trading . NN NN NNS VBD IN NNP POS NN . The price of a barrel of crude oil for future delivery gained nearly $ 4 to go as high as $ 95 a barrel in New York . DT NN IN DT NN IN JJ NN IN JJ NN VBD RB $ CD TO VB RB JJ IN $ CD DT NN IN NNP NNP . Oil prices had fallen earlier in the week as investors worried that problems in the U.S. financial sector could hurt the economy and slow demand for energy . NN NNS VBD VBN RBR IN DT NN IN NNS VBD IN NNS IN DT NNP JJ NN MD VB DT NN CC VB NN IN NN . Oil buyers were apparently reassured when Washington helped insurance giant AIG and took other actions to calm the markets . NN NNS VBD RB VBN WRB NNP VBD NN NN NNP CC VBD JJ NNS TO VB DT NNS . Oil prices have fallen more than one-third since hitting an all-time high price above $ 147 a barrel in July . NN NNS VBP VBN JJR IN NN IN VBG DT JJ JJ NN IN $ CD DT NN IN NNP . United Nations officials in Somalia say a cargo ship held for nearly 100 days at sea by pirates has finally arrived in port . NNP NNP NNS IN NNP VBP DT NN NN VBD IN RB CD NNS IN NN IN NNS VBZ RB VBN IN NN . The MV Semlow and its 10-man crew arrived Monday in the Somali port of El-Maan , one day after the pirates left . DT NNP NNP CC PRP$ JJ NN VBD NNP IN DT JJ NN IN NNP , CD NN IN DT NNS VBD . It was towed into port by another cargo ship that had been hijacked several days earlier . PRP VBD VBN IN NN IN DT NN NN WDT VBD VBN VBN JJ NNS RBR . Pirates seized the U.N.-chartered ship on June 27 . NNP VBD DT JJ NN IN NNP CD . It carried 850 metric tons of rice donated by Japan and Germany for Somali victims of last year 's tsunami . PRP VBD CD JJ NNS IN NN VBN IN NNP CC NNP IN JJ NNS IN JJ NN POS NN . The pirates frequently changed their demands and reneged on agreements with the World Food Program to free the ship . DT NNS RB VBD PRP$ NNS CC VBN IN NNS IN DT NNP NNP NNP TO VB DT NN . The vessel will spend the next few days at El-Maan being offloaded before heading back to its home port in Mombasa , Kenya . DT NN MD VB DT JJ JJ NNS IN JJ VBG VBN IN VBG RB TO PRP$ NN NN IN NNP , NNP . The International Monetary Fund has sharply lowered its economic forecast and now says the world economy will shrink for the first time in 60 years during 2009 . DT NNP NNP NNP VBZ RB VBN PRP$ JJ NN CC RB VBZ DT NN NN MD VB IN DT JJ NN IN CD NNS IN CD . As the report was published Thursday , IMF officials urged governments to do more to fight the downturn . IN DT NN VBD VBN NNP , NNP NNS VBD NNS TO VB JJR TO VB DT NN . The global lender said the world economy could shrink as much as one percent . DT JJ NN VBD DT NN NN MD VB RB JJ IN CD NN . The IMF study says advanced economies will suffer a ' deep recession , ' with the United States economy declining at a 2.6 percent rate , and Japan falling at a sharp 5.8 percent . DT NNP NN VBZ JJ NNS MD VB DT `` JJ NN , `` IN DT NNP NNPS NN VBG IN DT CD NN NN , CC NNP VBG IN DT JJ CD NN . The IMF cut growth projections for emerging and developing countries in half , saying they will expand 2.5 percent or less this year . DT NNP NN NN NNS IN VBG CC VBG NNS IN NN , VBG PRP MD VB CD NN CC RBR DT NN . The report predicts a modest economic recovery in 2010 for most nations . DT NN VBZ DT JJ JJ NN IN CD IN JJS NNS . This global economic forecast is sharply lower than the IMF 's projections issued in January , which predicted slow growth . DT JJ JJ NN VBZ RB JJR IN DT NNP POS NNS VBN IN NNP , WDT VBD JJ NN . Australia 's foreign minister says Japan has agreed to free two anti-whaling activists being held aboard a Japanese whaling vessel in Antarctic waters . NNP POS JJ NN VBZ NNP VBZ VBN TO VB CD JJ NNS VBG VBN IN DT JJ NN NN IN NNP NNS . Foreign Minister Stephen Smith told Australia 's national radio early Wednesday that Japan has not yet handed the men back to their own ship . NNP NNP NNP NNP VBD NNP POS JJ NN RB NNP IN NNP VBZ RB RB VBN DT NNS RB TO PRP$ JJ NN . Smith added that Australian police are investigating whether there had been any unlawful activity . NNP VBD IN JJ NNS VBP VBG IN EX VBD VBN DT JJ NN . Japanese crewmembers seized the men - an Australian and a Briton - Tuesday when they boarded a vessel belonging to Japan 's Institute for Cetacean Research . JJ NNS VBD DT NNS IN DT NN CC DT NN IN NNP WRB PRP VBD DT NN VBG TO NNP POS NNP IN NNP NNP . The Japanese research institute says the men attacked their vessel with bottles of acid after illegally boarding it . DT JJ NN NN VBZ DT NNS VBD PRP$ NN IN NNS IN NN IN RB VBG PRP . An Australian court issued a ruling earlier Tuesday that bans Japanese whaling in an area near Antarctica that Australia has designated a whale sanctuary . DT JJ NN VBD DT NN RBR NNP WDT VBZ JJ NN IN DT NN IN NNP IN NNP VBZ VBN DT NN NN . Japan does not recognize the sanctuary and has said it will ignore any such injunction . NNP VBZ RB VB DT NN CC VBZ VBN PRP MD VB DT JJ NN . The United States and China have reportedly reached a tentative agreement on imported Chinese textiles . DT NNP NNPS CC NNP VBP RB VBN DT JJ NN IN VBN JJ NNS . News reports in the Washington Post and by Bloomberg Business News cite unnamed sources who say negotiators have agreed to allow U.S. imports of Chinese textile and apparel products to increase up to 10 percent in 2006 and 16 percent in 2007 . NNP NNS IN DT NNP NNP CC IN NNP NNP NNP VBP JJ NNS WP VBP NNS VBP VBN TO VB NNP NNS IN JJ NN CC NN NNS TO VB RP TO CD NN IN CD CC CD NN IN CD . While the accord is not yet complete , the sources say the agreement could be signed as soon as next week . IN DT NN VBZ RB RB JJ , DT NNS VBP DT NN MD VB VBN RB RB IN JJ NN . Washington and Beijing have been trying for a comprehensive agreement on Chinese exports that compete with U.S. made clothing and textiles . NNP CC NNP VBP VBN VBG IN DT JJ NN IN JJ NNS WDT VBP IN NNP VBD NN CC NNS . The issue flared because of a surge in Chinese exports to the United States after textile quotas were lifted at the start of the year . DT NN VBD IN IN DT NN IN JJ NNS TO DT NNP NNPS IN JJ NNS VBD VBN IN DT NN IN DT NN . The United States and Mexico have announced a plan to coordinate law enforcement efforts to stop drug trafficking and related violence along the border between the two countries . DT NNP NNPS CC NNP VBP VBN DT NN TO VB NN NN NNS TO VB NN NN CC JJ NN IN DT NN IN DT CD NNS . U.S. Attorney General Alberto Gonzales and his Mexican counterpart Daniel Cabeza de Vaca spoke to reporters about the new plan Thursday in San Antonio , Texas . NNP NNP NNP NNP NNP CC PRP$ JJ NN NNP NNP NNP NNP VBD TO NNS IN DT JJ NN NNP IN NNP NNP , NNP . They said the plan includes improved communication , including regular meetings , between law enforcement officials in Mexico and the United States . PRP VBD DT NN VBZ VBN NN , VBG JJ NNS , IN NN NN NNS IN NNP CC DT NNP NNPS . It also calls for the United States to provide training and technical assistance to Mexico . PRP RB VBZ IN DT NNP NNPS TO VB NN CC JJ NN TO NNP . The two men also pledged to work together to provide prompt responses to threats from violent criminal organizations against officials , victims and witnesses . DT CD NNS RB VBD TO VB RB TO VB JJ NNS TO NNS IN JJ JJ NNS IN NNS , NNS CC NNS . The US-Mexican border region has seen escalating drug-related violence in recent years . DT JJ NN NN VBZ VBN VBG JJ NN IN JJ NNS . An international media rights group says Burma 's military government has been harassing journalists since anti-government demonstrations in September . DT JJ NNS NNS NN VBZ NNP POS JJ NN VBZ VBN VBG NNS IN JJ NNS IN NNP . Reporters Without Borders said Wednesday police continue to search for journalists and activists who photographed and filmed the crackdown on the demonstrations led by Buddhist monks . NNS IN NNS VBD NNP NNS VBP TO VB IN NNS CC NNS WP VBD CC VBD DT NN IN DT NNS VBN IN NNP NNS . It says at least nine journalists have fled to Thailand , and at least three others have been arrested and are still being held . PRP VBZ IN JJS CD NNS VBP VBN TO VB , CC IN JJS CD NNS VBP VBN VBN CC VBP RB VBG VBN . The group said that while privately-owned media in Burma has resumed publishing , the country 's Censorship Board has stepped up its controls . DT NN VBD IN IN JJ NNS IN NNP VBZ VBN NN , DT NN POS NN NNP VBZ VBN RP PRP$ NNS . It also says the government is strictly controlling the sales of foreign publications and that surveillance at Internet cafes has increased . PRP RB VBZ DT NN VBZ RB VBG DT NNS IN JJ NNS CC DT NN IN NNP NNS VBZ VBN . The Burmese government detained thousands of protesters during the September pro-democracy demonstrations . DT JJ NN VBD NNS IN NNS IN DT NNP JJ NNS . Burma says 15 people died in the protests but the United Nations puts the figure at 31 . NNP VBZ CD NNS VBD IN DT NNS CC DT NNP NNPS VBZ DT NN IN CD . Zambian officials have discovered more than 40 dead wild birds in the southern city of Livingstone , and have asked residents who ate any meat from the birds to report for medical examinations . JJ NNS VBP VBN RBR IN CD JJ JJ NNS IN DT JJ NN IN NNP , CC VBP VBN NNS WP VBP DT NN IN DT NNS TO VB IN JJ NNS . The chief veterinary officer in the southern tourist town , Jack Shoko , said he sent samples of the dead birds to the capital of Lusaka to be tested for bird flu . DT NN JJ NN IN DT JJ NN NN , NNP NNP , VBD PRP VBD NNS IN DT JJ NNS TO DT NN IN NNP TO VB VBN IN NN NN . Zambia has not yet reported any cases of bird flu in animals or humans . NNP VBZ RB RB VBN DT NNS IN NN NN IN NNS CC NNS . In March , the government banned poultry imports . IN NNP , DT NN VBD JJ NNS . The World Health Organization says the bird flu virus can not be contracted by eating cooked poultry . DT NNP NNP NNP VBZ DT NN NN NN MD RB VB VBN IN VBG VBN NN . But it warns people should not eat improperly cooked meat in areas where there are outbreaks of the virus . CC PRP VBZ NNS MD RB VB RB VBN NN IN NNS WRB EX VBP NNS IN DT NN . Two African countries , Egypt and Djibouti , have confirmed cases of bird flu in humans this year . CD JJ NNS , NNP CC NNP , VBP VBN NNS IN NN NN IN NNS DT NN . Iran says Israel should return the disputed Golan Heights to Syria unconditionally . NNP VBZ NNP MD VB DT JJ NNP NNPS TO NNP RB . Iranian Foreign Minister Manouchehr Mottaki says Israel is in no position to set conditions on the return of the Golan Heights . JJ NNP NNP NNP NNP VBZ NNP VBZ IN DT NN TO VB NNS IN DT NN IN DT NNP NNP . Israel captured the strategic plateau from Syria during the 1967 Six-Day war . NNP VBD DT JJ NN IN NNP IN DT CD JJ NN . Mottaki also called for Israel to pull out of the Palestinian territories . NNP RB VBD IN NNP TO VB IN IN DT JJ NNS . Israel and Syria recently confirmed they are holding indirect peace talks mediated by Turkey , eight years after U.S.-mediated peace negotiations between Syria and Israel collapsed over the fate of the Golan Heights . NNP CC NNP RB VBD PRP VBP VBG JJ NN NNS VBN IN NNP , CD NNS IN JJ NN NNS IN NNP CC NNP VBD IN DT NN IN DT NNP NNP . Israeli Prime Minister Ehud Olmert has said his government is prepared to make substantial concessions for peace with Syria . JJ NNP NNP NNP NNP VBZ VBN PRP$ NN VBZ VBN TO VB JJ NNS IN NN IN NNP . He has not specified the nature of those concessions . PRP VBZ RB VBN DT NN IN DT NNS . Syrian Foreign Minister Walid Muallem said Wednesday that Israel has expressed a willingness to return the Golan Heights . JJ NNP NNP NNP NNP VBD NNP IN NNP VBZ VBN DT NN TO VB DT NNP NNP . The United States has expressed concern over an escalation in violence in Sudan 's troubled Darfur region , after rebels captured a southern village . DT NNP NNPS VBZ VBN NN IN DT NN IN NN IN NNP POS JJ NNP NN , IN NNS VBD DT JJ NN . A State Department spokesman said Wednesday both rebels and the government-backed militia have contributed to the increase in violence in Darfur . DT NNP NNP NN VBD NNP DT NNS CC DT JJ NN VBP VBN TO DT NN IN NN IN NNP . He said African Union cease-fire monitors are critical to bringing the situation under control . PRP VBD NNP NNP NN NNS VBP JJ TO VBG DT NN IN NN . Monday , the rebel Sudan Liberation Movement violated a cease-fire and launched a surprise attack on the town of Sheiria . NNP , DT NN NNP NNP NNP VBD DT NN CC VBD DT NN NN IN DT NN IN NNP . The Sudanese government has threatened to retake the town . DT JJ NN VBZ VBN TO VB DT NN . Rebels have also recently accused the government-backed militia of incursions into rebel-held territory . NNS VBP RB RB VBN DT JJ NN IN NNS IN JJ NN . The violence comes during a sixth round of African Union-sponsored peace talks between Darfur rebel groups and the Sudanese government . DT NN VBZ IN DT JJ NN IN JJ JJ NN NNS IN NNP NN NNS CC DT JJ NN . AU officials said the renewed fighting could mar the talks and urged both sides to exercise restraint . NNP NNS VBD DT VBN NN MD VB DT NNS CC VBD DT NNS TO VB NN . Iraqi police say eight people were killed and 10 others wounded Thursday in a bomb attack on a Sunni political party 's office in Baquba , north of Baghdad . JJ NNS VBP CD NNS VBD VBN CC CD NNS VBN NNP IN DT NN NN IN DT NNP JJ NN POS NN IN NNP , NN IN NNP . Police say the bomb exploded inside the headquarters of the Reform and Development Party in Diyala province around the time that some party members were holding a meeting . NNS VBP DT NN VBD IN DT NN IN DT NN CC NNP NNP IN NNP NN IN DT NN IN DT NN NNS VBD VBG DT NN . In western Iraq , police say a suicide bomber blew up his vehicle , killing at least five people and wounding 15 others . IN JJ NNP , NNS VBP DT NN NN VBD RP PRP$ NN , VBG IN JJS CD NNS CC VBG CD NNS . Authorities say the attack happened close to a police station in al-Qaim near the Iraq-Syria border . NNS VBP DT NN VBD RB TO DT NN NN IN JJ IN DT NNP NN . A police official said multiple houses collapsed after the bomb exploded , and several civilians are trapped under the rubble . DT NN NN VBD JJ NNS VBD IN DT NN VBD , CC JJ NNS VBP VBN IN DT NN . Violence in Iraq has dropped sharply during the past year , but attacks increased in the weeks leading up to and following the June 30 withdrawal of U.S. combat troops from Iraqi cities . NN IN NNP VBZ VBN RB IN DT JJ NN , CC NNS VBD IN DT NNS VBG RP TO CC VBG DT NNP CD NN IN NNP NN NNS IN JJ NNS . Hundreds of supporters of former Pakistani Prime Minister Nawaz Sharif are protesting a court ruling that bans him from running for parliament in this week 's by-election . NNS IN NNS IN JJ JJ NNP NNP NNP NNP VBP VBG DT NN NN WDT VBZ PRP IN VBG IN NN IN DT NN POS NN . The protesters , who burned effigies , gathered outside parliament in Islamabad Tuesday . DT NNS , WP VBD NNS , VBD JJ NN IN NNP NNP . They blame President Pervez Musharraf for the court 's decision . PRP VBP NNP NNP NNP IN DT NN POS NN . Prime Minister Yousuf Raza Gilani says the government will challenge the court 's decision . NNP NNP NNP NNP NNP VBZ DT NN MD VB DT NN POS NN . The Lahore High Court ruled Monday that Mr. Sharif is not qualified to run in Thursday 's election because of convictions related to his overthrow in a 1999 military coup . DT NNP NNP NNP VBD NNP IN NNP NNP VBZ RB VBN TO VB IN NNP POS NN IN IN NNS VBN TO PRP$ NN IN DT CD JJ NN . The decision prevents him from running for prime minister . DT NN VBZ PRP IN VBG IN JJ NN . In 1999 , Mr. Sharif allegedly ordered the hijacking of a commercial plane carrying Mr. Musharraf , who was then the army chief . IN CD , NNP NNP RB VBD DT NN IN DT JJ NN VBG NNP NNP , WP VBD RB DT NN NN . The former prime minister faced charges related to the incident . DT JJ JJ NN VBD NNS VBN TO DT NN . He has denied the allegations . PRP VBZ VBN DT NNS . Haitian President-elect Rene Preval is in Cuba Thursday , for a visit that will include talks with Cuban President Fidel Castro . JJ NNP NNP NNP VBZ IN NNP NNP , IN DT NN WDT MD VB NNS IN JJ NNP NNP NNP . The president-elect is traveling with a delegation that includes several members of his future government . DT NN VBZ VBG IN DT NN WDT VBZ JJ NNS IN PRP$ JJ NN . Mr. Preval was elected in February and is due to take office next month . NNP NNP VBD VBN IN NNP CC VBZ JJ TO VB NN JJ NN . The Associated Press quotes a Haitian government spokesman as saying that the two leaders are expected to discuss Cuban aid for Haiti . DT NNP NNP VBZ DT JJ NN NN IN VBG IN DT CD NNS VBP VBN TO VB JJ NN IN NNP . Mr. Preval was president of Haiti from 1996 to 2001 . NNP NNP VBD NN IN NNP IN CD TO CD . During that time , ties between Cuba and Haiti were warmer . IN DT NN , NNS IN NNP CC NNP VBD JJR . But relations have suffered since a U.S.-backed interim government was appointed to replace former Haitian president Jean-Bertrand Aristide , who was ousted by a revolt in 2004 . CC NNS VBP VBN IN DT JJ JJ NN VBD VBN TO VB JJ JJ NN NNP NNP , WP VBD VBN IN DT NN IN CD . At least five people have died in grass fires tearing across the southern U.S. states of Oklahoma and Texas . IN JJS CD NNS VBP VBN IN NN NNS VBG IN DT JJ NNP NNS IN NNP CC NNP . Drought , high winds , and low humidity have helped spread the flames . NNP , JJ NNS , CC JJ NN VBP VBN VB DT NNS . Officials in Texas say the fires have destroyed more than 100 buildings in their state , some three-quarters of them private homes . NNS IN NNP VBP DT NNS VBP VBN RBR IN CD NNS IN PRP$ NN , DT NNS IN PRP JJ NNS . At least two of the deaths were women who could not escape as flames overcame their houses . IN JJS CD IN DT NNS VBD NNS WP MD RB VB IN NNS VBP PRP$ NNS . Authorities said Wednesday that decreased winds and slightly cooler temperatures helped firefighters check the spread of the flames . NNS VBD NNP WDT JJ NNS CC RB JJR NNS VBD NNS VB DT NN IN DT NNS . But weather forecasts for the next few days show more low humidity and little chance of rain . CC NN NNS IN DT JJ JJ NNS VBP JJR JJ NN CC JJ NN IN NN . Texas governor Rick Perry has declared the fires a disaster and dispatched National Guard troops to help battle the blazes . NNP NN NNP NNP VBZ VBN DT NNS DT NN CC VBD NNP NNP NNS TO VB VB DT NNS . Venezuela 's Supreme Court has ruled that an opposition-aligned television station can keep operating through cable systems for now . NNP POS NNP NNP VBZ VBN IN DT JJ NN NN MD VB VBG IN NN NNS IN RB . The court Wednesday suspended an order by the telecommunications commission that would have forced RCTV International to stop transmitting its programs if it did not register with the government , and follow regulations that would require it to interrupt regular programming for speeches by President Hugo Chavez . DT NN NNP VBD DT NN IN DT NNS NN WDT MD VB VBN NNP NNP TO VB VBG PRP$ NNS IN PRP VBD RB VB IN DT NN , CC VB NNS WDT MD VB PRP TO VB JJ NN IN NNS IN NNP NNP NNP . RCTV began showing its programs via cable and satellite last month . NNP VBD VBG PRP$ NNS IN NN CC NN JJ NN . It was forced to stop regular over-the - air broadcasting by President Chavez in May . PRP VBD VBN TO VB JJ JJ : NN NN IN NNP NNP IN NNP . Mr. Chavez refused to renew RCTV 's license to broadcast on a public frequency for allegedly backing a failed coup against him in 2002 . NNP NNP VBD TO VB NNP POS NN TO VB IN DT JJ NN IN RB VBG DT VBN NN IN PRP IN CD . RCTV denies the accusations . NNP VBZ DT NNS . Other national private networks also opposed Mr. Chavez , but their criticism of the government is now softer and they have kept their licenses . JJ JJ JJ NNS RB VBD NNP NNP , CC PRP$ NN IN DT NN VBZ RB JJR CC PRP VBP VBN PRP$ NNS . The United States has condemned the jailing of a former member of Syria 's parliament and has demanded his immediate release . DT NNP NNPS VBZ VBN DT NN IN DT JJ NN IN NNP POS NN CC VBZ VBN PRP$ JJ NN . Tom Casey , a U.S. State Department spokesman , expressed concern Tuesday about Riad Seif , who was arrested Monday as part of a crackdown against opposition activists . NNP NNP , DT NNP NNP NNP NN , VBD NN NNP IN NNP NNP , WP VBD VBN NNP IN NN IN DT NN IN NN NNS . In August , the State Department urged Syria to allow Seif to travel outside the country to receive urgent medical treatment . IN NNP , DT NNP NNP VBD NNP TO VB NNP TO VB IN DT NN TO VB JJ JJ NN . A spokesman said Syria denies freedom of movement to hundreds of its citizens who peacefully question the political system under which they live . DT NN VBD NNP VBZ NN IN NN TO NNS IN PRP$ NNS WP RB VBP DT JJ NN IN WDT PRP VBP . President Bush issued a statement in December calling on Syria to release hundreds of opposition activists jailed for their political beliefs . NNP NNP VBD DT NN IN NNP VBG IN NNP TO VB NNS IN NN NNS VBN IN PRP$ JJ NNS . Since December , at least 10 opposition activists have been detained by Syrian authorities . IN NNP , IN JJS CD NN NNS VBP VBN VBN IN JJ NNS . President Bush has again defended Defense Secretary Donald Rumsfeld from critics who are calling for his resignation . NNP NNP VBZ RB VBN NNP NNP NNP NNP IN NNS WP VBP VBG IN PRP$ NN . Mr. Bush said at the White House Tuesday , that Rumsfeld is doing a ' fine ' job . NNP NNP VBD IN DT NNP NNP NNP , IN NNP VBZ VBG DT `` JJ `` NN . Several retired generals have recently called for Rumsfeld 's resignation , faulting his leadership and accusing him of making a series of major errors in the Iraq war . JJ JJ NNS VBP RB VBN IN NNP POS NN , VBG PRP$ NN CC VBG PRP IN VBG DT NN IN JJ NNS IN DT NNP NN . On Friday , President Bush said in a statement that Rumsfeld 's energetic and steady leadership is what the country needs at this critical period . IN NNP , NNP NNP VBD IN DT NN IN NNP POS JJ CC JJ NN VBZ WP DT NN VBZ IN DT JJ NN . In a radio interview Monday , Rumsfeld dismissed the generals ' criticism . IN DT NN NN NNP , NNP VBD DT NNS POS NN . He also said he was pleased that two retired generals have come to his defense - former Army General Tommy Franks , who executed the 2003 Iraq invasion , and former Chairman of the Joint Chiefs of Staff Richard Myers . PRP RB VBD PRP VBD VBN IN CD JJ NNS VBP VBN TO PRP$ NN IN JJ NNP NNP NNP NNP , WP VBD DT CD NNP NN , CC JJ NNP IN DT NNP NNP IN NNP NNP NNP . Former Argentine President Carlos Menem has been charged with fraud in connection with a contract awarded to a local subsidiary of a French defense company . JJ JJ NNP NNP NNP VBZ VBN VBN IN NN IN NN IN DT NN VBN TO DT JJ NN IN DT JJ NN NN . Mr. Menem 's government awarded a concession to electronics firm Thales Spectrum in the 1990s to oversee the South American country 's broadcast frequencies . NNP NNP POS NN VBD DT NN TO NNS JJ NNPS NNP IN DT NNS TO VB DT NNP NNP NN POS NN NNS . But the contract was canceled by Mr. Menem 's successor , Nestor Kirchner , after allegations of irregularities surfaced . CC DT NN VBD VBN IN NNP NNP POS NN , NNP NNP , IN NNS IN NNS VBD . A document released Monday by a federal judge accuses Mr. Menem of actions that undermined the interests of the state . DT NN VBN NNP IN DT JJ NN VBZ NNP NNP IN NNS WDT VBD DT NNS IN DT NN . Prosecutors also are investigating whether officials in Mr. Menem 's government received bribes from Thales Spectrum . NNS RB VBP VBG IN NNS IN NNP NNP POS NN VBD NNS IN NNP NNP . Menem 's lawyer denounced the charges as politically motivated . NNP POS NN VBD DT NNS IN RB VBN . The 78-year-old former president , now a senator , is already on trial for allegedly being involved in the illegal sale of weapons to Ecuador and Croatia between 1991 and 1995 . DT JJ JJ NN , RB DT NN , VBZ RB IN NN IN RB VBG VBN IN DT JJ NN IN NNS TO NNP CC NNP IN CD CC CD . He faces up to 12 years in prison if convicted . PRP VBZ RP TO CD NNS IN NN IN VBN . Officials in Benin say tests have confirmed the presence of the deadly H5N1 bird flu virus on two poultry farms . NNS IN NNP VBP NNS VBP VBN DT NN IN DT JJ NNP NN NN NN IN CD JJ NNS . Agriculture Minister Roger Dovonou says tests from a laboratory in Italy confirmed the virus has struck one farm in the city of Cotonou and another in the town of Adjarra , outside the capital Porto Novo . NNP NNP NNP NNP VBZ NNS IN DT NN IN NNP VBD DT NN VBZ VBN CD NN IN DT NN IN NNP CC DT IN DT NN IN NNP , IN DT NN NNP NNP . Benin reported its first suspected cases of bird flu on December 7th . NNP VBD PRP$ JJ JJ NNS IN NN NN IN NNP CD . Workers slaughtered several hundred chickens at the two farms as a precautionary measure , and also disinfected the sites . NNS VBD JJ CD NNS IN DT CD NNS IN DT JJ NN , CC RB VBD DT NNS . H5N1 mainly affects birds but is capable of infecting humans . NNP RB VBZ NNS CC VBZ JJ IN VBG NNS . The virus has killed more than 200 people around the world , mostly in Asia , since 2003 . DT NN VBZ VBN JJR IN CD NNS IN DT NN , RB IN NNP , IN CD . Several west African countries have reported cases of the virus . JJ JJ JJ NNS VBP VBN NNS IN DT NN . Benin 's neighbor Nigeria reported the area 's first human fatality from H5N1 early this year . NNP POS NN NNP VBD DT NN POS JJ JJ NN IN NNP RB DT NN . Hundreds of mourners have gathered in Vienna to say good-bye to Nazi hunter Simon Wiesenthal , who died Tuesday at the age of 96 . NNS IN NNS VBP VBN IN NNP TO VB NN TO NNP NNP NNP NNP , WP VBD NNP IN DT NN IN CD . Diplomats and political leaders , including Austrian Chancellor Wolfgang Scheussel , packed into a hall at the city 's Central Cemetery for the ceremony . NNS CC JJ NNS , VBG JJ NNP NNP NNP , VBD IN DT NN IN DT NN POS NNP NNP IN DT NN . Mr. Wiesenthal will be buried Friday in Israel . NNP NNP MD VB VBN NNP IN NNP . Tributes to the Holocaust survivor have poured in from leaders around the world . NNS TO DT NNP NN VBP VBN IN IN NNS IN DT NN . President Bush called him a tireless advocate for justice . NNP NNP VBD PRP DT JJ NN IN NN . United Nations Secretary-General Kofi Annan said Mr. Wiesenthal proved there can be no immunity from prosecution for genocide . NNP NNP NNP NNP NNP VBD NNP NNP VBD EX MD VB DT NN IN NN IN NN . Mr. Wiesenthal was born in present-day Ukraine and was an architect before he was sent to a Nazi concentration camp . NNP NNP VBD VBN IN JJ NNP CC VBD DT NN IN PRP VBD VBN TO DT JJ NN NN . After U.S. forces freed him in 1945 , he spent the rest of his life pursuing escaped Nazi war criminals , including the mastermind of the Holocaust , Adolf Eichmann . IN NNP NNS VBD PRP IN CD , PRP VBD DT NN IN PRP$ NN NN VBD NNP NN NNS , VBG DT NN IN DT NNP , NNP NNP . Protests have erupted around the world against Israel 's bombardment of Lebanon and military action in the Gaza Strip . NNS VBP VBN IN DT NN IN NNP POS NN IN NNP CC JJ NN IN DT NNP NNP . Thousands of Egyptians gathered at Cairo 's al-Azhar Mosque , waving Lebanese and Palestinian flags and chanting support to Hezbollah - the militant group that is the focus of Israel 's attacks . NNS IN NNS VBD IN NNP POS JJ NN , VBG JJ CC JJ NNS CC VBG NN TO NNP IN DT JJ NN WDT VBZ DT NN IN NNP POS NNS . Two thousand protesters also marched through the Jordanian capital of Amman and called on Hezbollah to destroy the Israeli city of Haifa . CD CD NNS RB VBD IN DT JJ NN IN NNP CC VBN IN NNP TO VB DT JJ NN IN NNP . Thousands of people also took to the streets of Yemen to support the Lebanese and Palestinian people . NNS IN NNS RB VBD TO DT NNS IN NNP TO VB DT JJ CC JJ NNS . Several other protests were held across South Asia , in India Kashmir , cities across Pakistan and the Bangladeshi capital of Dhaka . JJ JJ NNS VBD VBN IN NNP NNP , IN NNP NNP , NNS IN NNP CC DT JJ NN IN NNP . Demonstrators also have taken to the streets in Venezuela and El Salvador . NNS RB VBP VBN TO DT NNS IN NNP CC NNP NNP . And in Moscow , Russians gathered outside the Israeli embassy to protest the escalating violence . CC IN NNP , NNS VBD IN DT JJ NN TO VB DT VBG NN . A new report says U.S. home prices continued to fall in August , declining five percent over the past year . DT JJ NN VBZ NNP NN NNS VBD TO VB IN NNP , VBG CD NN IN DT JJ NN . Tuesday 's report from Standard & Poors and Case-Shiller tracks home prices in cities across the United States . NNP POS NN IN NNP CC NNP CC NNP VBZ NN NNS IN NNS IN DT NNP NNPS . The housing sector 's problems have been made worse by defaults among subprime borrowers . DT NN NN POS NNS VBP VBN VBN JJR IN NNS IN JJ NNS . That has prompted investors to avoid lending even to well-qualified borrowers . DT VBZ VBN NNS TO VB NN RB TO JJ NNS . Economists tell journalists that they are worried falling home prices will make homeowners curb spending . NNS VBP NNS IN PRP VBP JJ VBG NN NNS MD VB NNS VB NN . Consumer demand drives about two-thirds of U.S. economic activity , so declining consumer spending raises the risk of recession . NN NN VBZ IN NNS IN NNP JJ NN , RB VBG NN NN VBZ DT NN IN NN . The risk of a shrinking economy is one of many things that top officials from the U.S. central bank , known as the Federal Reserve , are considering as they decide whether to cut interest rates to boost the economy . DT NN IN DT VBG NN VBZ CD IN JJ NNS WDT VBP NNS IN DT NNP JJ NN , VBN IN DT NNP NNP , VBP VBG IN PRP VBP IN TO VB NN NNS TO VB DT NN . They are scheduled to announce a decision on Wednesday . PRP VBP VBN TO VB DT NN IN NNP . Nobel laureate and former U.S. Vice President Al Gore has endorsed fellow Democrat , Senator Barack Obama , for president . NNP NN CC JJ NNP NNP NNP NNP NNP VBZ VBN JJ NNP , NNP NNP NNP , IN NN . Gore told supporters Monday at a rally in Detroit , Michigan , that Obama is the candidate to lead the country toward a better future . NNP VBD NNS NNP IN DT NN IN NNP , NNP , IN NNP VBZ DT NN TO VB DT NN IN DT JJR NN . Gore said that over the next four years , the United States will face many challenges such as bringing American troops home from Iraq , fixing the economy and solving the climate crisis . NNP VBD IN IN DT JJ CD NNS , DT NNP NNPS MD VB JJ NNS JJ IN VBG JJ NNS NN IN NNP , VBG DT NN CC VBG DT NN NN . He said Obama is the candidate best able to solve these problems and bring change to America . PRP VBD NNP VBZ DT NN RB JJ TO VB DT NNS CC VB NN TO NNP . Gore won the Nobel Peace prize last year for his campaign against global warming . NNP VBD DT NNP NNP NN JJ NN IN PRP$ NN IN JJ NN . People across southern Asia have paused to remember the powerful Indian Ocean earthquake and tsunami that occurred one month ago Wednesday . NNS IN JJ NNP VBP VBN TO VB DT JJ NNP NNP NN CC NN WDT VBD CD NN IN NNP . Thousands of Sri Lankans observed a minute of silence , and the Tamil Tiger rebels declared a day of mourning . NNS IN NNP NNS VBD DT NN IN NN , CC DT NNP NNP NNS VBD DT NN IN NN . In Indonesia 's hard-hit Banda Aceh province , teachers and students opened their first day of classes since the tragedy with prayers for missing friends . IN NNP POS JJ NNP NNP NN , NNS CC NNS VBD PRP$ JJ NN IN NNS IN DT NN IN NNS IN VBG NNS . A senior USAID official tells VOA that aid workers continue to focus on survivors ' emergency needs , but says there are signs that relief efforts have begun moving into a rehabilitation phase . DT JJ NNP NN VBZ NNP IN NN NNS VBP TO VB IN NNS POS NN NNS , CC VBZ EX VBP NNS IN NN NNS VBP VBN VBG IN DT NN NN . The Oxfam international charity says the response to the disaster has been so overwhelming that some aid groups are conducting relief work without the necessary experience or skills . DT NNP JJ NN VBZ DT NN TO DT NN VBZ VBN RB JJ IN DT NN NNS VBP VBG NN NN IN DT JJ NN CC NNS . Israel has suspended its offensive into the Gaza Strip following a lull in rocket attacks by Palestinian militants . NNP VBZ VBN PRP$ NN IN DT NNP NNP VBG DT NN IN NN NNS IN JJ NNS . Israeli security officials said Sunday the operation , which included a series of airstrikes on weapons factories , storage facilities and launching areas , achieved its goal of weakening militants ' ability to attack Israel from Gaza . JJ NN NNS VBD NNP DT NN , WDT VBD DT NN IN NNS IN NNS NNS , NN NNS CC NN NNS , VBD PRP$ NN IN VBG NNS POS NN TO VB NNP IN NNP . But the officials say the military is ready to restart the operation if the rocket fire resumes . CC DT NNS VBP DT NN VBZ JJ TO VB DT NN IN DT NN NN VBZ . The fighting erupted after an explosion at a Gaza rally by the Islamic group Hamas killed 21 people on September 23rd . DT NN VBD IN DT NN IN DT NNP NN IN DT NNP NN NNP VBD CD NNS IN NNP CD . Hamas blames Israel for the blast , even though Palestinian officials say the explosion was caused by the mishandling of explosives . NNP VBZ NNP IN DT NN , RB IN JJ NNS VBP DT NN VBD VBN IN DT NN IN NNS . Hamas fired dozens of rockets into southern Israeli towns after the blast . NNP VBD NNS IN NNS IN JJ JJ NNS IN DT NN . French officials say rioters burned cars and shot at police while protesting the police shooting of a man accused of robbing a casino . JJ NNS VBP NNS VBD NNS CC VBD IN NN IN VBG DT NN NN IN DT NN VBN IN VBG DT NN . The riot erupted late Friday night in the southeastern city of Grenoble . DT NN VBD JJ NNP NN IN DT JJ NN IN NNP . Officials said the rioters also torched shops and attacked a streetcar ( tramway ) line . NNS VBD DT NNS RB VBD NNS CC VBD DT NN LRB NN RRB NN . Police said some rioters also shot at officers and that they returned fire . NNS VBD DT NNS RB VBD IN NNS CC IN PRP VBD NN . The French newspaper Le Monde says the youths started their rampage after hearing a Muslim imam give a ceremony for an alleged robber , who died Thursday night after being chased by police and exchanging gunfire . DT JJ NN NNP NNP VBZ DT NNS VBD PRP$ NN IN VBG DT NN NN VBP DT NN IN DT JJ NN , WP VBD NNP NN IN VBG VBN IN NNS CC VBG NN . Typhoon Longwang is swirling toward mainland China after pounding Taiwan Sunday , leaving one person dead , one missing , and 46 injured while disrupting flights and downing power lines . NNP NNP VBZ VBG IN JJ NNP IN VBG NNP NNP , VBG CD NN JJ , CD JJ , CC CD NN IN VBG NNS CC VBG NN NNS . Officials say a 60-year-old man died after he was hit by flying debris . NNS VBP DT JJ NN VBD IN PRP VBD VBN IN VBG NN . A woman is missing and feared dead after being washed away by flash floods in the central town of Hoping . DT NN VBZ VBG CC VBD JJ IN VBG VBN RB IN NN NNS IN DT JJ NN IN NNP . Authorities say most of the injuries were caused by flying debris . NNS VBP JJS IN DT NNS VBD VBN IN VBG NN . Taiwan 's Central Weather Bureau said the typhoon made landfall early Sunday and left in the afternoon . NNP POS NNP NNP NNP VBD DT NN VBD NN JJ NNP CC VBD IN DT NN . The foreign ministry says the storm interrupted Taiwan President Chen Shui-bian 's flight home from a two-week trip abroad . DT JJ NN VBZ DT NN JJ NNP NNP NNP NNP POS NN NN IN DT JJ NN RB . Officials said he landed on the Indonesian island of Bali Sunday rather than fly to Taiwan . NNS VBD PRP VBD IN DT JJ NN IN NNP NNP RB IN VB TO NNP . The ministry says the president will stay in Bali until the weather clears in Taiwan . DT NN VBZ DT NN MD VB IN NNP IN DT NN VBZ IN NNP . A top U.S. State Department official is traveling to Ecuador , Colombia and Peru to discuss security cooperation , governance and human rights . DT JJ NNP NNP NNP NN VBZ VBG TO NNP , NNP CC NNP TO VB NN NN , NN CC JJ NNS . The State Department says Arturo Valenzuela , the U.S. assistant secretary of state for Western Hemisphere affairs , departs Sunday on the week-long trip . DT NNP NNP VBZ NNP NNP , DT NNP NN NN IN NN IN NNP NNP NNS , VBZ NNP IN DT JJ NN . It says Valenzuela will meet with students at a university in Ecuador , the University Tecnica Particular de Loja , and deliver a speech on U.S. foreign policy at the Latin American Faculty for Social Sciences . PRP VBZ NNP MD VB IN NNS IN DT NN IN NNP , DT NNP NNP NNP NNP NNP , CC VB DT NN IN NNP JJ NN IN DT JJ JJ NN IN NNP NNPS . While in Colombia , he is to give a speech in Bogota at the Universidad de los Andes , and participate in the World Economic Forum in Cartagena . IN IN NNP , PRP VBZ TO VB DT NN IN NNP IN DT NNP NNP NNP NNP , CC VB IN DT NNP NNP NNP IN NNP . In Peru , the last stop of the trip , he is to meet with government officials and political and economic analysts , and visit alternative development projects . IN NNP , DT JJ NN IN DT NN , PRP VBZ TO VB IN NN NNS CC JJ CC JJ NNS , CC VB JJ NN NNS . Triple Olympic champion Janica Kostelic of Croatia has won her first ever World Cup downhill title in Bad Kleinkirchheim , Austria . NNP NNP NN NNP NNP IN NNP VBZ VBN PRP$ JJ RB NNP NNP NN NN IN NNP NNP , NNP . Kostelic finished the 2,633-meter Franz Klammer course in 0.068472222 minutes , 0.17 seconds ahead of Sweden 's Nike Bent . NNP VBD DT JJ NNP NNP NN IN CD NNS , CD NNS RB IN NNP POS NNP NNP . Michaela Dorfmeister of Austria was third ( 1.38.53 ) . NNP NNP IN NNP VBD JJ LRB CD RRB . Before Saturday , Kostelic had never done better in World Cup downhills than two second-place finishes last year . IN NNP , NNP VBD RB VBN RBR IN NNP NNP VBZ IN CD JJ NNS JJ NN . The victory strengthened the 24-year-old Croatian 's hold on the World Cup overall lead . DT NN VBD DT JJ JJ POS NN IN DT NNP NNP JJ NN . Kostelic has 882 points after 17 events , 197 points ahead of Sweden 's Anja Paerson . NNP VBZ CD NNS IN CD NNS , CD NNS RB IN NNP POS NNP NNP . Dorfmeister is third with 650 points . NNP VBZ JJ IN CD NNS . The U.S. Senate has approved more than $ 81 billion to sustain combat operations in Iraq and Afghanistan . DT NNP NNP VBZ VBN JJR IN $ CD CD TO VB NN NNS IN NNP CC NNP . This would push the total cost of combat and reconstruction beyond $ 300 billion . DT MD VB DT JJ NN IN NN CC NN IN $ CD CD . The U.S. House of Representatives passed a similar bill last month . DT NNP NNP IN NNPS VBD DT JJ NN JJ NN . The two bills differ mainly on two issues - immigration reforms and plans of construction of a new embassy in Baghdad . DT CD NNS VBP RB IN CD NNS IN NN NNS CC NNS IN NN IN DT JJ NN IN NNP . The Senate has included $ 592 million for the embassy , but the House has not . DT NNP VBZ VBN $ CD CD IN DT NN , CC DT NNP VBZ RB . Once the differences between the two versions are worked out , it will go to President Bush for his signature . RB DT NNS IN DT CD NNS VBP VBN RP , PRP MD VB TO NNP NNP IN PRP$ NN . Both versions of the measure would give President Bush much of the money he requested . DT NNS IN DT NN MD VB NNP NNP NN IN DT NN PRP VBD . U.S. Democratic Party officials say President-elect Barack Obama has chosen a former congressman and Clinton White House chief of staff to lead the Central Intelligence Agency . NNP NNP NNP NNS VBP JJ NNP NNP VBZ VBN DT JJ NN CC NNP NNP NNP NN IN NN TO VB DT NNP NNP NNP . Officials say Leon Panetta will be nominated as director of the CIA in the new Obama administration . NNS VBP NNP NNP MD VB VBN IN NN IN DT NNP IN DT JJ NNP NN . Mr. Obama takes office in two weeks , but the nomination must be confirmed by the U.S. Senate . NNP NNP VBZ NN IN CD NNS , CC DT NN MD VB VBN IN DT NNP NNP . Panetta served as White House chief of staff for former President Bill Clinton . NNP VBD IN NNP NNP NN IN NN IN JJ NNP NNP NNP . The former congressman from California was also a member of the Iraq Study Group , a bipartisan commission charged with assessing the situation in Iraq and advising how the United States should proceed there . DT JJ NN IN NNP VBD RB DT NN IN DT NNP NNP NNP , DT JJ NN VBN IN VBG DT NN IN NNP CC VBG WRB DT NNP NNPS MD VB RB . Democratic Party officials say Mr. Obama is also expected to name retired U.S. Admiral Dennis Blair as his choice for director of national intelligence . NNP NNP NNS VBP NNP NNP VBZ RB VBN TO VB JJ NNP NNP NNP NNP IN PRP$ NN IN NN IN JJ NN . Admiral Blair is the former commander of U.S. forces in the Pacific . NNP NNP VBZ DT JJ NN IN NNP NNS IN DT NNP . Iraqi officials say suicide bombing in the north killed 2 people , including a district council chief . JJ NNS VBP NN NN IN DT NN VBD CD NNS , VBG DT NN NN NN . Police say the attacker targeted the local politician 's car Monday in the city of Tal Afar . NNS VBP DT NN VBD DT JJ NN POS NN NNP IN DT NN IN NNP NNP . One of the politician 's bodyguards also was killed . CD IN DT NN POS NNS RB VBD VBN . In another development , Iraqi authorities say a court has sentenced a deputy minister of transport to eight years in prison for corruption . IN DT NN , JJ NNS VBP DT NN VBZ VBN DT NN NN IN NN TO CD NNS IN NN IN NN . Adnan al-Obeidi was arrested in September on suspicion of trying to extort half a million dollars from a foreign security company in return for granting it a contract . NNP NNP VBD VBN IN NNP IN NN IN VBG TO VB PDT DT CD NNS IN DT JJ NN NN IN NN IN VBG PRP DT NN . Iraqi officials say the company informed anti-corruption officials about the extortion attempt and worked with authorities to catch al-Obeidi in the act of taking a bribe . JJ NNS VBP DT NN VBD JJ NNS IN DT NN NN CC VBD IN NNS TO VB NNP IN DT NN IN VBG DT NN . Police later filmed him demanding $ 1,00,000 as a first installment of the bribe . NNS RB VBD PRP VBG $ CD IN DT JJ NN IN DT NN . Governments across the world are evacuating more of their citizens trapped by Israel 's bombardment of Lebanon . NNS IN DT NN VBP VBG JJR IN PRP$ NNS VBN IN NNP POS NN IN NNP . Many of the evacuees are passing through Cyprus , which has appealed for help in dealing with the thousands of people arriving on the island daily . NN IN DT NNS VBP VBG IN NNP , WDT VBZ VBN IN NN IN VBG IN DT NNS IN NNS VBG IN DT NN RB . Officials say more than 25,000 people have so far come to Cyprus . NNS VBP JJR IN CD NNS VBP RB RB VBN TO NNP . The United States , France , Britain , Canada , Germany , Australia and India are among the countries organizing evacuations . DT NNP NNPS , NNP , NNP , NNP , NNP , NNP CC NNP VBP IN DT NNS VBG NNS . Meanwhile , the Geneva-based International Organization for Migration says tens of thousands of migrants from developing countries are stranded in Lebanon . RB , DT JJ NNP NNP IN NNP VBZ NNS IN NNS IN NNS IN VBG NNS VBP VBN IN NNP . It says Sri Lanka , the Philippines and Ethiopia are asking for help to get their nationals to Syria and Jordan . PRP VBZ NNP NNP , DT NNPS CC NNP VBP VBG IN NN TO VB PRP$ NNS TO NNP CC NNP . And thousands more Lebanese are heading north from southern Lebanon as Israel presses on with its military action . CC NNS JJR NNS VBP VBG RB IN JJ NNP IN NNP VBZ IN IN PRP$ JJ NN . Israeli medical officials say a Lebanese woman wounded in Saturday 's fighting is receiving treatment in a northern Israeli hospital . JJ JJ NNS VBP DT JJ NN VBN IN NNP POS NN VBZ VBG NN IN DT JJ JJ NN . Thousands of women marched in the Democratic Republic of Congo Sunday to demand an end to mass rapes and sexual violence . NNS IN NNS VBD IN DT JJ NNP IN NNP NNP TO VB DT NN TO JJ NNS CC JJ NN . Congo 's first lady Lembe Kabila led the march through the eastern town of Bukavu . NNP POS JJ NN NNP NNP VBD DT NN IN DT JJ NN IN NNP . The United Nations has paid increased attention to the problem of sexual violence in Congo since rebels raped at least 300 people , including some men , during an attack on an eastern village in August . DT NNP NNP VBZ VBN VBN NN TO DT NN IN JJ NN IN NNP IN NNS VBD IN JJS CD NNS , VBG DT NNS , IN DT NN IN DT JJ NN IN NNP . A later U.N. report acknowledged that U.N. peacekeepers in the area did nothing to stop the rapes . DT JJ NNP NN VBD IN NNP NNS IN DT NN VBD DT TO VB DT NNS . The U.N. says about 15,000 rapes are reported in Congo each year . DT NNP VBZ IN CD NNS VBP VBN IN NNP DT NN . Both rebel groups and government forces are accused of committing the rapes , as well as killings and other crimes . DT NN NNS CC NN NNS VBP VBN IN VBG DT NNS , RB RB IN NNS CC JJ NNS . Iraqi political leaders are meeting Tuesday for a second round of talks aimed at resolving differences over key points in the Iraqi constitution . JJ JJ NNS VBP VBG NNP IN DT JJ NN IN NNS VBN IN VBG NNS IN JJ NNS IN DT JJ NN . A draft of the constitution is due Monday , but issues such as federalism , women 's rights , the role of Islam and the country 's official language still need to be agreed upon , raising concerns that the deadline might not be met . DT NN IN DT NN VBZ JJ NNP , CC NNS JJ IN NN , NNS POS NNS , DT NN IN NNP CC DT NN POS JJ NN RB VBP TO VB VBN IN , VBG NNS IN DT NN MD RB VB VBN . Speaking at the Pentagon , U.S. Defense Secretary Donald Rumsfeld urged the Iraqis to meet that deadline , saying the constitution could turn out to be a powerful weapon against insurgents . VBG IN DT NNP , NNP NNP NNP NNP NNP VBD DT NNS TO VB DT NN , VBG DT NN MD VB RP TO VB DT JJ NN IN NNS . Meanwhile , a wave of shooting attacks across Baghdad killed 10 police officers , and a suicide car bomber killed at least three civilians and an American soldier . RB , DT NN IN NN NNS IN NNP VBD CD NNS NNS , CC DT NN NN NN VBD IN JJS CD NNS CC DT JJ NN . Also , the U.S. military announced Tuesday that a Marine was shot and killed Monday in Ramadi . RB , DT NNP NN VBD NNP IN DT NN VBD VBN CC VBN NNP IN NNP . An American company helping to repatriate the bodies of foreign tsunami victims in Thailand says efforts are being hampered by a lack of coordination . DT JJ NN VBG TO VB DT NNS IN JJ NN NNS IN NNP VBZ NNS VBP VBG VBN IN DT NN IN NN . Kenyon International Emergency Services of Houston , Texas is calling on the governments involved to set up a single coordinated DNA lab to speed up the identification process . NNP NNP NNP NNPS IN NNP , NNP VBZ VBG IN DT NNS VBN TO VB RP DT JJ JJ NN NN TO VB RP DT NN NN . Kenyon president Robert Jensen said Sunday that more than 20 countries are taking part in the identification process , with each using its own DNA methods to process bodies . NNP NN NNP NNP VBD NNP IN JJR IN CD NNS VBP VBG NN IN DT NN NN , IN DT VBG PRP$ JJ NN NNS TO VB NNS . He added that DNA laboratories currently being used in Phuket are unable to deal with the overwhelming number of samples being taken . PRP VBD IN NNP NNS RB VBG VBN IN NNP VBP JJ TO VB IN DT JJ NN IN NNS VBG VBN . Hundreds of bodies have been sent back to their home countries since the December 26 disaster , but thousands more remain unidentified . NNS IN NNS VBP VBN VBN RB TO PRP$ NN NNS IN DT NNP CD NN , CC NNS JJR VBP JJ . Tornadoes ripped through the southern U.S. Saturday , killing at least 10 people , including three children . NNP VBD IN DT JJ NNP NNP , VBG IN JJS CD NNS , VBG CD NNS . Dozens of other people were injured . NNS IN JJ NNS VBD VBN . A tornado more than a kilometer wide tore through central Mississippi , killing residents , destroying homes , blocking highways and knocking out power . DT NN JJR IN DT NN JJ NN IN JJ NNP , VBG NNS , VBG NNS , VBG NNS CC VBG RP NN . Yazoo City was hit the hardest . NNP NNP VBD VBN DT JJS . Mississippi 's governor , Haley Barbour , declared a state of emergency in the affected counties . NNP POS NN , NNP NNP , VBD DT NN IN NN IN DT JJ NNS . He directed National Guard troops to help local officials responding to the storms . PRP VBD NNP NNP NNS TO VB JJ NNS VBG TO DT NNS . Tornadoes also struck other southern states . NNP RB VBD JJ JJ NNS . Bosnian authorities say forensic experts have exhumed more than 120 bodies from a mass grave near the town of Zvornik . JJ NNS VBP JJ NNS VBP VBN JJR IN CD NNS IN DT NN NN IN DT NN IN NNP . Officials said Friday that 16 complete and 113 incomplete skeletons were found in a village in eastern Bosnia-Herzegovina . NNS VBD NNP IN CD JJ CC CD JJ NNS VBD VBN IN DT NN IN JJ NNP . The remains are believed to be those of people killed in the Srebrenica massacre . DT NNS VBP VBN TO VB DT IN NNS VBN IN DT NNP NN . Serb forces killed an estimated 8,000 Muslim men and boys after capturing Srebrenica , an enclave the United Nations had declared a Muslim safe area . JJ NNS VBD DT VBN CD NNP NNS CC NNS IN VBG NNP , DT NN DT NNP NNPS VBD VBN DT NNP JJ NN . The burial site is one of several so-called secondary graves were Bosnian Serbs reburied victims in order to cover up the mass killing . DT JJ NN VBZ CD IN JJ JJ JJ NNS VBD JJ NNS VBN NNS IN NN TO VB RP DT NN NN . The massacre is considered an act of genocide and the worst atrocity in Europe since World War II . DT NN VBZ VBN DT NN IN NN CC DT JJS NN IN NNP IN NNP NNP NNP . About 3,000 remains have been identified and reburied . IN CD NNS VBP VBN VBN CC VBN . The partial remains of 5,000 more victims are still waiting to be identified . DT JJ NNS IN CD JJR NNS VBP RB VBG TO VB VBN . Pakistani authorities say an unknown gunman has killed three foreign militants in a semi-autonomous tribal region bordering Afghanistan . JJ NNS VBP DT JJ NN VBZ VBN CD JJ NNS IN DT JJ JJ NN VBG NNP . Security officials say the incident occurred Thursday in North Waziristan . NN NNS VBP DT NN VBD NNP IN NNP NNP . They say one of the dead is believed to be an Arab and the other two are Uzbeks . PRP VBP CD IN DT NN VBZ VBN TO VB DT JJ CC DT JJ CD VBP NNS . The attacker managed to flee the scene . DT NN VBD TO VB DT NN . It was not immediately clear who the gunman was or what was his motive . PRP VBD RB RB JJ WP DT NN VBD CC WP VBD PRP$ NN . But local government officials say a dispute among the militants could have triggered the shooting . CC JJ NN NNS VBP DT NN IN DT NNS MD VB VBN DT NN . Pakistan 's military has been trying to flush out foreign militants from the region since last March . NNP POS NN VBZ VBN VBG TO VB RP JJ NNS IN DT NN IN JJ NNP . The area is also considered a possible hideout for al-Qaida leader Osama bin Laden . DT NN VBZ RB VBN DT JJ NN IN NNP NN NNP NNP NNP . A prominent Somali peace activist has been killed by unknown gunmen at his home in the capital , Mogadishu . DT JJ JJ NN NN VBZ VBN VBN IN JJ NNS IN PRP$ NN IN DT NN , NNP . The victim , Abdulkadir Yahya Ali , was a co-founder of a think tank , the Center for Research and Dialogue , considered one of the most effective NGOs in Somalia . DT NN , NNP NNP NNP , VBD DT NN IN DT NN NN , DT NNP IN NNP CC NNP , VBD CD IN DT RBS JJ NNS IN NNP . The co-director of the center , Jabril Ibrahim Abdulle , told Voice of America reporter William Eagle that the assailants raided Mr. Abdulkadir 's home , tied up the security guards , and cut telephone lines . DT NN IN DT NN , NNP NNP NNP , VBD NNP IN NNP NN NNP NNP IN DT NNS VBD NNP NNP POS NN , VBD RP DT NN NNS , CC VBD NN NNS . He says Mr. Abdulkadir was bound and shot in front of his wife . PRP VBZ NNP NNP VBD VBN CC VBN IN NN IN PRP$ NN . Kidnappings and killings are common in Somalia , where a new government is trying to establish security after 14 years without a central administration . NNS CC NNS VBP JJ IN NNP , WRB DT JJ NN VBZ VBG TO VB NN IN CD NNS IN DT JJ NN . Scores of people have died in tidal waves that hit Africa 's eastern coast after Sunday 's massive earthquake in southern Asia . NNS IN NNS VBP VBN IN JJ NNS WDT VBD NNP POS JJ NN IN NNP POS JJ NN IN JJ NNP . Aid workers and one Somali official say around 50 people are reported dead in northeastern Somalia . JJ NNS CC CD JJ NN VBP IN CD NNS VBP VBN JJ IN JJ NNP . But some reports put the death toll at more than 100 . CC DT NNS VBD DT NN NN IN JJR IN CD . A Somali government spokesman says some coastal towns are submerged , and dozens of fishermen are missing . DT JJ NN NN VBZ DT JJ NNS VBP VBN , CC NNS IN NNS VBP VBG . In Tanzania , officials say at least 10 swimmers died when they were swept out to sea Sunday near the beach at Dar es Salaam . IN NNP , NNS VBP IN JJS CD NNS VBD WRB PRP VBD VBN RP IN NN NNP IN DT NN IN NNP NNP NNP . Police say most of the dead are children . NNS VBP JJS IN DT NN VBP NNS . And further east , at least two people were killed in the island nation of Seychelles . CC RBR JJ , IN JJS CD NNS VBD VBN IN DT NN NN IN NNS . Several others are reported missing . JJ NNS VBP VBN VBG . One tourist was killed in the Kenyan coastal town of Malindi . CD NN VBD VBN IN DT JJ JJ NN IN NNP . Sunday 's massive waves also left parts of the Mauritian island of Rodrigues under water . NNP POS JJ NNS RB VBD NNS IN DT JJ NN IN NNP IN NN . Taiwan authorities say they have found a cancer causing chemical in fresh fish from farms on the island , following recent scares in Hong Kong about tainted fish . NNP NNS VBP PRP VBP VBN DT NN VBG NN IN JJ NN IN NNS IN DT NN , VBG JJ NNS IN NNP NNP IN JJ NN . Health officials in Taiwan Thursday said tests at Taipei markets of grouper fish from farms in the south of the island turned up traces of the chemical , called malachite green . NNP NNS IN NNP NNP VBD NNS IN NNP NNS IN JJ NN IN NNS IN DT NN IN DT NN VBD RP NNS IN DT NN , VBD JJ NN . The officials did not identify the farms , saying the investigation was continuing . DT NNS VBD RB VB DT NNS , VBG DT NN VBD VBG . Malachite green is used to treat certain kinds of infections in fish . JJ NN VBZ VBN TO VB JJ NNS IN NNS IN NN . The development comes after Hong Kong health officials found the chemical in eels and other fish shipped from the mainland . DT NN VBZ IN NNP NNP NN NNS VBD DT NN IN NNS CC JJ NN VBN IN DT NN . Hong Kong said traces of the chemical had also turned up in some fish from Taiwan . NNP NNP VBD NNS IN DT NN VBD RB VBN RP IN DT NN IN NNP . The Dutch military chief says his forces in Afghanistan have killed 18 suspected militants during a special operation in the southern province of Uruzgan . DT JJ NN NN VBZ PRP$ NNS IN NNP VBP VBN CD JJ NNS IN DT JJ NN IN DT JJ NN IN NNP . He said there were no Dutch casualties in the fighting which occurred after militants set up positions in the hills overlooking a Dutch camp . PRP VBD EX VBD DT JJ NNS IN DT NN WDT VBD IN NNS VBD RP NNS IN DT NNS VBG DT JJ NN . Separately , the U.S. military said a coalition soldier was killed following a rocket and mortar attack late Thursday by militants on a coalition compound in southeastern Afghanistan . RB , DT NNP NN VBD DT NN NN VBD VBN VBG DT NN CC NN NN JJ NNP IN NNS IN DT NN NN IN JJ NNP . The soldier , whose nationality was not released , died before he could be medically evacuated from the base in Paktika province . DT NN , WP$ NN VBD RB VBN , VBD IN PRP MD VB RB VBN IN DT NN IN NNP NN . Meanwhile , NATO chiefs who are visiting Afghanistan toured volatile areas of southern Afghanistan Friday and vowed they are ready to take on resurgent Taleban . RB , NNP NNS WP VBP VBG NNP VBD JJ NNS IN JJ NNP NNP CC VBD PRP VBP JJ TO VB RP JJ NNP . NATO peacekeeping troops will take over security command from the U.S.-led coalition in the southern provinces at the end of July . NNP VBG NNS MD VB RP NN NN IN DT JJ NN IN DT JJ NNS IN DT NN IN NNP . Venezuela is offering some poor families in the eastern U.S. city of Philadelphia discounted heating oil , following up on its offer to people in several other communities . NNP VBZ VBG DT JJ NNS IN DT JJ NNP NN IN NNP VBD NN NN , VBG RP IN PRP$ NN TO NNS IN JJ JJ NNS . U.S. Congresswoman , Chaka Fattah who brokered the deal said Friday it fills a real need among poor families who have used up their state and federal aid . NNP NNP , NNP NNP WP VBD DT NN VBD NNP PRP VBZ DT JJ NN IN JJ NNS WP VBP VBN RP PRP$ NN CC JJ NN . The agreement with U.S.-based Citgo , which is owned by Venezuela 's national oil company , allows more than 7,000 Philadelphia families to buy their heating oil at a 40 percent discount . DT NN IN JJ NNP , WDT VBZ VBN IN NNP POS JJ NN NN , VBZ JJR IN CD NNP NNS TO VB PRP$ NN NN IN DT CD NN NN . Venezuela previously made such deals with communities in the U.S. states of New York , Rhode Island , Vermont , Massachusetts and Maine . NNP RB VBD JJ NNS IN NNS IN DT NNP NNS IN NNP NNP , NNP NNP , NNP , NNP CC NNP . Critics say it is a political ploy by Venezuelan President Hugo Chavez to make President Bush look bad . NNS VBP PRP VBZ DT JJ NN IN JJ NNP NNP NNP TO VB NNP NNP VBP JJ . But supporters say it is purely a humanitarian gesture . CC NNS VBP PRP VBZ RB DT JJ NN . U.S. heating oil prices have increased substantially this year because of rising oil prices worldwide . NNP NN NN NNS VBP VBN RB DT NN IN IN VBG NN NNS VBD . News reports from Brazil say police and suspected armed gang members have clashed again Sunday in Rio de Janeiro , but city officials are boosting security and moving forward with plans for traditionally massive New Year 's eve celebrations . NNP NNS IN NNP VBP NNS CC JJ JJ NN NNS VBP VBN RB NNP IN NNP IN NNP , CC NN NNS VBP VBG NN CC VBG RB IN NNS IN RB JJ NNP NNP POS JJ NNS . Early Sunday , gangs fired on police stations , but there were no reports of casualties . RB NNP , NNS VBD IN NN NNS , CC EX VBD DT NNS IN NNS . Since Thursday , gunfights and arson attacks by gang members have killed at least 18 people . IN NNP , NNS CC NN NNS IN NN NNS VBP VBN IN JJS CD NNS . The attacks started Thursday when gang members set fire to several city buses , burning some passengers alive . DT NNS VBD NNP WRB NN NNS VBD NN TO JJ NN NNS , VBG DT NNS JJ . Some 20,000 police are now patrolling streets and mass transit routes throughout the city . DT CD NNS VBP RB VBG NNS CC NN NN NNS IN DT NN . Some two million people are expected to gather on Brazil 's famous Copacabana and Ipanema beaches for New Year 's celebrations . DT CD CD NNS VBP VBN TO VB IN NNP POS JJ NNP CC NNP NNS IN NNP NNP POS NNS . Costa Rica 's constitutional court has blocked a referendum that would have let voters decide if same-sex civil unions should be allowed in the Central American country . NNP NNP POS JJ NN VBZ VBN DT NN WDT MD VB VBN NNS VB IN JJ JJ NNS MD VB VBN IN DT JJ JJ NN . The court said Tuesday a referendum would put a minority at a disadvantage in the predominantly Roman Catholic country . DT NN VBD NNP DT NN MD VB DT NN IN DT NN IN DT JJ NNP NNP NN . The court said the rights of minorities should be decided by the Costa Rica 's lawmakers , not by a popular vote . DT NN VBD DT NNS IN NNS MD VB VBN IN DT NNP NNP POS NNS , RB IN DT JJ NN . The referendum was originally scheduled for December 5 . DT NN VBD RB VBN IN NNP CD . Last month , Argentina became the first country in Latin America to legalize same-sex marriage . JJ NN , NNP VBD DT JJ NN IN NNP NNP TO VB JJ NN . Mexico 's Supreme Court ruled last week that same-sex weddings are constitutional in the capital , Mexico City . NNP POS NNP NNP VBD JJ NN IN JJ NNS VBP JJ IN DT NN , NNP NNP . In Uruguay and Colombia , civil unions are approved nationwide . IN NNP CC NNP , JJ NNS VBP VBN JJ . The U.S. Justice Department says a Taiwanese-American man has pleaded guilty to spying for the Chinese government . DT NNP NNP NNP VBZ DT JJ NN VBZ VBN JJ TO VBG IN DT JJ NN . The department says Tai Shen Kuo , 58 , admitted in a Virginia court near Washington to a charge of conspiracy to deliver national defense information . DT NN VBZ NNP NNP NNP , CD , VBN IN DT NNP NN IN NNP TO DT NN IN NN TO VB JJ NN NN . The New Orleans businessman , who faces up to life in prison , will be sentenced on August 8 . DT NNP NNP NN , WP VBZ RP TO NN IN NN , MD VB VBN IN NNP CD . According to court documents , the alleged offenses took place from March 2007 to February 2008 . VBG TO NN NNS , DT JJ NNS VBD NN IN NNP CD TO NNP CD . Kuo is accused of obtaining secret information from Gregg Bergersen , who was a U.S. Defense Department analyst , and then passing it on to a Chinese official . NNP VBZ VBN IN VBG JJ NN IN NNP NNP , WP VBD DT NNP NNP NNP NN , CC RB VBG PRP IN TO DT JJ NN . He allegedly provided Bergersen with gifts , cash and trips . PRP RB VBD NNP IN NNS , NN CC NNS . The Justice Department says the Chinese official paid Kuo approximately $ 50,000 . DT NNP NNP VBZ DT JJ NN VBD NNP RB $ CD . Bergersen had previously pleaded guilty in the case and faces up to 10 years in jail . NNP VBD RB VBN JJ IN DT NN CC VBZ RP TO CD NNS IN NN . Chinese officials say they are training more than 40,000 police officers to provide security and prevent terrorism during the 2008 Olympics . JJ NNS VBP PRP VBP VBG JJR IN CD NN NNS TO VB NN CC VB NN IN DT CD NNS . The official news agency Xinhua reports that party officials launched the training program Thursday with a hostage rescue demonstration at Beijing 's People 's Police College . DT JJ NN NN NNP VBZ IN NN NNS VBD DT NN NN NNP IN DT NN NN NN IN NNP POS NNS POS NNP NNP . The report quotes Beijing Olympic Security chief Qiang Wei as saying the city will need a strong force to handle or prevent any unexpected incidents . DT NN VBZ NNP NNP NNP NN NNP NNP IN VBG DT NN MD VB DT JJ NN TO VB CC VB DT JJ NNS . A spokesman for the Beijing Public Security Bureau says the officers will receive a three-phased program over the next 18 months or so , including language training and basic skills , including strength training . DT NN IN DT NNP NNP NNP NNP VBZ DT NNS MD VB DT JJ NN IN DT JJ CD NNS CC RB , VBG NN NN CC JJ NNS , VBG NN NN . German Chancellor Gerhard Schroeder and French President Jacques Chirac have met in Berlin to discuss the crisis surrounding the European Union 's constitution . JJ NNP NNP NNP CC JJ NNP NNP NNP VBP VBN IN NNP TO VB DT NN VBG DT NNP NNP POS NN . Both leaders have called for the ratification process to continue , despite votes in France and the Netherlands earlier this week rejecting the constitution . DT NNS VBP VBN IN DT NN NN TO VB , IN NNS IN NNP CC DT NNP RBR DT NN VBG DT NN . The two met Saturday as EU leaders prepare to meet in Brussels on June 16 and 17 . DT CD VBD NNP IN NNP NNS VBP TO VB IN NNP IN NNP CD CC CD . Mr. Chirac and Mr. Schroeder have been close allies in the European Union , but both have been weakened in recent weeks . NNP NNP CC NNP NNP VBP VBN JJ NNS IN DT NNP NNP , CC DT VBP VBN VBN IN JJ NNS . Sunday 's referendum defeat prompted Mr. Chirac to reshuffle his government . NNP POS NN NN VBD NNP NNP TO VB PRP$ NN . Germany 's upper house of parliament ratified the EU constitution last week , but Mr. Schroeder 's ruling party suffered a critical state election loss , prompting him to call national elections for this fall , one year early . NNP POS JJ NN IN NN VBD DT NNP NN JJ NN , CC NNP NNP POS VBG NN VBD DT JJ NN NN NN , VBG PRP TO VB JJ NNS IN DT NN , CD NN RB . NATO ministers are meeting in Brussels Thursday to discuss a wide range of issues - from expanding the alliance 's role in Afghanistan and Iraq to the situation in Ukraine . NNP NNS VBP VBG IN NNP NNP TO VB DT JJ NN IN NNS : IN VBG DT NN POS NN IN NNP CC NNP TO DT NN IN NNP . U.S. Secretary of State Colin Powell reached out to European nations ahead of the meeting . NNP NNP IN NNP NNP NNP VBD RP TO JJ NNS RB IN DT NN . He acknowledged that tensions over the Iraq war had affected relations with Europe , but said the United States is making new efforts to mend ties . PRP VBD IN NNS IN DT NNP NN VBD VBN NNS IN NNP , CC VBD DT NNP NNPS VBZ VBG JJ NNS TO VB NNS . President Bush is expected in Brussels in February . NNP NNP VBZ VBN IN NNP IN NNP . High on Thursday 's NATO agenda will be expansion of the alliance 's peacekeeping operations in Afghanistan and a training mission for Iraqi officers being set in Baghdad . JJ IN NNP POS NNP NN MD VB NN IN DT NN POS NN NNS IN NNP CC DT NN NN IN JJ NNS VBG VBN IN NNP . The ministers will also discuss the crisis in Ukraine with their Russian counterpart , Sergei Lavrov . DT NNS MD RB VB DT NN IN NNP IN PRP$ JJ NN , NNP NNP . There are growing tensions between the West and Russia over Ukraine . EX VBP VBG NNS IN DT NNP CC NNP IN NNP . Russia has warned against foreign interference in Ukraine 's political crisis . NNP VBZ VBN IN JJ NN IN NNP POS JJ NN . Zimbabwe 's Information Minister , Tichaona Jokonya , has been found dead in a hotel room in the capital , Harare . NNP POS NN NN , NNP NNP , VBZ VBN VBN JJ IN DT NN NN IN DT NN , NNP . There was no information on the cause of death . EX VBD DT NN IN DT NN IN NN . Local media reported the 68-year-old Jokonya had been ill earlier this year . JJ NNS VBD DT JJ NNP VBD VBN RB RBR DT NN . Jokonya was appointed to the post last year after President Robert Mugabe fired the previous information minister , Jonathan Moyo . NNP VBD VBN TO DT NN JJ NN IN NNP NNP NNP VBD DT JJ NN NN , NNP NNP . In a recent press conference , Jokonya threatened Zimbabwe 's journalists , telling them traitors would die . IN DT JJ NN NN , NNP VBD NNP POS NNS , VBG PRP NNS MD VB . Jokonya was a career diplomat , and served as Zimbabwe 's ambassador to the United Nations for ten years . NNP VBD DT NN NN , CC VBD IN NNP POS NN TO DT NNP NNPS IN CD NNS . A South African editor says the press , which predicted a low turnout and great violence in Iraq on election day , has been proved wrong . DT JJ JJ NN VBZ DT NN , WDT VBD DT JJ NN CC JJ NN IN NNP IN NN NN , VBZ VBN VBN JJ . But the foreign editor of Business Day newspaper in Johannesburg , Jonathan Katzenellenbogen , told English to Africa reporter William Eagle that observers are looking to see how Iraq 's Sunni -- many of whom boycotted the polls -- can be included in the writing of the country 's constitution . CC DT JJ NN IN NNP NNP NN IN NNP , NNP NNP , VBD NNP TO NNP NN NNP NNP IN NNS VBP VBG TO VB WRB NNP POS NNP : NN IN WP VBD DT NNS : MD VB VBN IN DT NN IN DT NN POS NN . As for Iraq 's insurgency , Mr. Katzenellenbogen notes that groups who turned to violence during his own country 's first all-race elections in 1994 were left out of the political process , and have for the most part withered away . IN IN NNP POS NN , NNP NNP VBZ IN NNS WP VBD TO NN IN PRP$ JJ NN POS JJ JJ NNS IN CD VBD VBN IN IN DT JJ NN , CC VBP IN DT JJS NN VBN RB . He also says South Africans are also looking to see if the Iraqi elections will bring about the announcement of an American exit strategy . PRP RB VBZ NNP NNS VBP RB VBG TO VB IN DT JJ NNS MD VB IN DT NN IN DT JJ NN NN . China has acknowledged for the first time that a clash between demonstrators and police in a southern village this week turned deadly . NNP VBZ VBN IN DT JJ NN IN DT NN IN NNS CC NNS IN DT JJ NN DT NN VBD JJ . The official Xinhua news agency Saturday said demonstrators at a power plant in the Guangdong provincial village of Dongzhou attacked police and threw explosives , forcing officers to open fire . DT JJ NNP NN NN NNP VBD NNS IN DT NN NN IN DT NNP JJ NN IN NNP VBD NN CC VBD NNS , VBG NNS TO JJ NN . Xinhua said at least three villagers were killed and several others were injured . NNP VBD IN JJS CD NNS VBD VBN CC JJ NNS VBD VBN . Witnesses to the Tuesday incident put the death toll as high as 20 . NNS TO DT NNP NN VBD DT NN NN RB JJ IN CD . They say at least 1,000 people had gathered at the power plant to protest inadequate compensation for land that the government seized for the plant 's construction . PRP VBP IN JJS CD NNS VBD VBN IN DT NN NN TO VB JJ NN IN NN IN DT NN VBD IN DT NN POS NN . Authorities have sealed the village off , with police patrolling the streets and blocking roads leading in . NNS VBP VBN DT NN RP , IN NN VBG DT NNS CC VBG NNS VBG IN . If the casualty figure of 20 is confirmed , the incident would be the largest known use of force by Chinese security personnel since the killing of hundreds around Tiananmen Square in 1989 . IN DT NN NN IN CD VBZ VBN , DT NN MD VB DT JJS VBN NN IN NN IN JJ NN NNS IN DT NN IN NNS IN NNP NNP IN CD . U.S. President Barack Obama is hailing progress made on financial reform and unemployment benefits , but he says more needs to be done to boost the country 's economy . NNP NNP NNP NNP VBZ VBG NN VBN IN JJ NN CC NN NNS , CC PRP VBZ JJR NNS TO VB VBN TO VB DT NN POS NN . Mr. Obama spoke Friday after signing into law this week the most sweeping set of financial regulatory reforms since the Great Depression of the 1930s . NNP NNP VBD NNP IN VBG IN NN DT NN DT RBS JJ NN IN JJ JJ NNS IN DT NNP NNP IN DT NNS . He said the new law will protect Americans from the reckless behavior that sparked the financial crisis . PRP VBD DT JJ NN MD VB NNS IN DT JJ NN WDT VBD DT JJ NN . He also praised Congress for voting this week to restore unemployment insurance to about 2.5 million Americans . PRP RB VBD NNP IN NN DT NN TO VB NN NN TO IN CD CD NNS . The president said his ultimate goal is to make sure that all Americans looking for work can get jobs . DT NN VBD PRP$ JJ NN VBZ TO VB JJ IN DT NNS VBG IN NN MD VB NNS . He also called on lawmakers to pass legislation designed to helpe small businesses , adding that the success of those businesses is crucial to the health of the U.S. economy . PRP RB VBD IN NNS TO VB NN VBN TO VB JJ NNS , VBG IN DT NN IN DT NNS VBZ JJ TO DT NN IN DT NNP NN . A bill emerging in the U.S. Senate would create a $ 30 billion government lending fund for small businesses . DT NN VBG IN DT NNP NNP MD VB DT $ CD CD NN NN NN IN JJ NNS . Haitian soldiers who helped the United States fight for independence from Britain in the Revolutionary War may soon get a monument in their honor in the southeastern U.S. state of Georgia . JJ NNS WP VBD DT NNP NNPS VB IN NN IN NNP IN DT NNP NNP MD RB VB DT NN IN PRP$ NN IN DT JJ NNP NN IN NNP . Officials in the city of Savannah are considering a proposal by the non-profit Haitian American Historical Society to erect a bronze monument in the city . NNS IN DT NN IN NNP VBP VBG DT NN IN DT JJ JJ NNP NNP NNP TO VB DT NN NN IN DT NN . The Society says the monument will represent the Chasseurs-Volontaires de Saint-Domingue , a regiment of soldiers who were free men of color from Haiti . DT NNP VBZ DT NN MD VB DT NNP NNP NNP , DT NN IN NNS WP VBD JJ NNS IN NN IN NNP . The group says the men were part of the American army unit that fought to drive the British from the coastal city in 1779 . DT NN VBZ DT NNS VBD NN IN DT JJ NN NN WDT VBD TO VB DT NNS IN DT JJ NN IN CD . Interim Haitian Prime Minister Gerard Latortue is scheduled to meet with potential monument donors in Savannah Saturday when he returns from Rome , where he attended Pope John Paul the Second 's funeral . JJ JJ NNP NNP NNP NNP VBZ VBN TO VB IN JJ NN NNS IN NNP NNP WRB PRP VBZ IN NNP , WRB PRP VBD NNP NNP NNP DT NNP POS NN . Superstar Will Smith is enjoying his latest success with the new film Hitch . NN NNP NNP VBZ VBG PRP$ JJS NN IN DT JJ NN NNP . Since the movie opened over four weeks ago it has earned almost $ 200 million ( US ) . IN DT NN VBD IN CD NNS IN PRP VBZ VBN RB $ CD CD LRB NNP RRB . Will plays a Date Doctor attempting to help a client through the problems and challenges that come along with dating . NNP VBZ DT NNP NNP VBG TO VB DT NN IN DT NNS CC NNS WDT VBP IN IN VBG . Will has a new album coming out on March 29 called Lost And Found . NNP VBZ DT JJ NN VBG RP IN NNP CD VBD NNP NNP NNP . Will Smith has enjoyed tremendous success as an actor and singer since his musical debut in 1991 . NNP NNP VBZ VBN JJ NN IN DT NN CC NN IN PRP$ JJ NN IN CD . Ukraine 's opposition has ended a blockade of government buildings , hours after parliament adopted a series of electoral reforms and outgoing President Leonid Kuchma signed them into law . NNP POS NN VBZ VBN DT NN IN NN NNS , NNS IN NN VBD DT NN IN JJ NNS CC VBG NNP NNP NNP VBD PRP IN NN . The move allows many government employees to return to work for the first time in weeks . DT NN VBZ JJ NN NNS TO VB TO VB IN DT JJ NN IN NNS . Opposition leader Viktor Yushchenko Wednesday thanked his supporters for their continuous protests following last month 's fraudulent runoff vote . NNP NN NNP NNP NNP VBD PRP$ NNS IN PRP$ JJ NNS VBG JJ NN POS JJ NN NN . He told the cheering crowd their 17 days of peaceful protests helped bring about the new laws . PRP VBD DT VBG NN PRP$ CD NNS IN JJ NNS VBD VB IN DT JJ NNS . The measures , proposed by the opposition , are aimed at preventing fraud in the December 26 repeat of the flawed election . DT NNS , VBN IN DT NN , VBP VBN IN VBG NN IN DT NNP CD NN IN DT JJ NN . Also included are constitutional changes that transfer some presidential powers to parliament . RB VBN VBP JJ NNS IN VBP DT JJ NNS TO NN . But presidential rival , pro-Russian Prime Minister Viktor Yanukovych , called the parliamentary vote illegal . CC JJ NN , JJ NNP NNP NNP NNP , VBD DT JJ NN JJ . He said the new laws will do nothing to stop election fraud . PRP VBD DT JJ NNS MD VB DT TO VB NN NN . U.S. forecasters say Tropical Storm Beta is strengthening as it churns off the coast of Central America and is likely to become a hurricane later Friday . NNP NNS VBP JJ NN NN VBZ VBG IN PRP VBZ IN DT NN IN NNP NNP CC VBZ JJ TO VB DT NN RB NNP . The National Weather Service says hurricane warnings are in effect for the Colombian islands of San Andres and Providencia , as the slow-moving storm churns 60 kilometers east of San Andres . DT NNP NNP NNP VBZ NN NNS VBP IN NN IN DT JJ NNS IN NNP NNP CC NNP , IN DT JJ NN VBZ CD NNS RB IN NNP NNP . Beta is the record 23rd named storm of this year 's Atlantic hurricane season . NN VBZ DT NN CD VBN NN IN DT NN POS NNP NN NN . It is moving toward the north at six kilometers per hour . PRP VBZ VBG IN DT NN IN CD NNS IN NN . Forecasters say the center of the storm could reach mainland Nicaragua by Sunday . NNS VBP DT NN IN DT NN MD VB JJ NNP IN NNP . The storm 's maximum sustained winds are near 100 kilometers per hour and are expected to strengthen Friday . DT NN POS NN VBD NNS VBP IN CD NNS IN NN CC VBP VBN TO VB NNP . Beta is expected to dump as much as 38 centimeters of rain across Honduras , Nicaragua , San Andres and Providencia . NN VBZ VBN TO VB RB JJ IN CD NNS IN NN IN NNP , NNP , NNP NNP CC NNP . Europe 's top security organization is meeting in the Bulgarian capital Sofia Monday to discuss Ukraine 's turb ulent politics and efforts to combat international terrorism . NNP POS JJ NN NN VBZ VBG IN DT JJ NN NNP NNP TO VB NNP POS NN JJ NNS CC NNS TO VB JJ NN . U.S. Secretary of State Colin Powell is attending the two-day meeting of the Organization for Security and Cooperation in Europe , along with Russian Foreign Minister Sergei Lavrov and senior officials of OSCE 's 55 member states . NNP NNP IN NNP NNP NNP VBZ VBG DT JJ NN IN DT NNP IN NNP CC NNP IN NNP , IN IN JJ NNP NNP NNP NNP CC JJ NNS IN NNP POS CD NN NNS . Solomon Passy , the foreign minister of Bulgaria , is expected to propose reforms within the organization that would expand its focus from human rights to security and economic issues . NNP NNP , DT JJ NN IN NNP , VBZ VBN TO VB NNS IN DT NN WDT MD VB PRP$ NN IN JJ NNS TO NN CC JJ NNS . The meeting is taking place under unprecedented security measures . DT NN VBZ VBG NN IN JJ NN NNS . A new study says China 's economy will surpass the United States by 2035 , and double by mid-century . DT JJ NN VBZ NNP POS NN MD VB DT NNP NNPS IN CD , CC VB IN NN . The study released Tuesday by a Washington-based research institute predicts that China 's economic growth is driven by domestic demand , and not exports . DT NN VBN NNP IN DT JJ NN NN VBZ IN NNP POS JJ NN VBZ VBN IN JJ NN , CC RB NNS . For that reason , the report 's author Albert Keidel says strong growth will continue into the 21st century regardless of a downturn in the world market . IN DT NN , DT NN POS NN NNP NNP VBZ JJ NN MD VB IN DT JJ NN RB IN DT NN IN DT NN NN . China 's economy has grown at an average annual rate of more than 10 percent over the last decade . NNP POS NN VBZ VBN IN DT JJ JJ NN IN JJR IN CD NN IN DT JJ NN . The country 's Gross Domestic Product currently ranks fourth behind the United States , Japan and Germany based on 2007 figures . DT NN POS NNP NNP NNP RB VBZ JJ IN DT NNP NNPS , NNP CC NNP VBN IN CD NNS . Keidel is an expert on China 's economy at the Carnegie Endowment for International Peace . NNP VBZ DT NN IN NNP POS NN IN DT NNP NNP IN NNP NNP . He formerly held positions at the U.S. Treasury Department and the World Bank . PRP RB VBD NNS IN DT NNP NNP NNP CC DT NNP NNP . Liberian President-elect Ellen Johnson-Sirleaf has arrived in Ivory Coast Tuesday for her first foreign trip since her election earlier this month . JJ NNP NNP NNP VBZ VBN IN NNP NNP NNP IN PRP$ JJ JJ NN IN PRP$ NN RBR DT NN . Few details of the trip have been released . JJ NNS IN DT NN VBP VBN VBN . However , the Reuters news agency quotes her as saying she will be discussing how Liberia and the Ivory Coast can work together for regional peace and stability . RB , DT NNP NN NN VBZ PRP IN VBG PRP MD VB VBG WRB NNP CC DT NNP NNP MD VB RB IN JJ NN CC NN . Ms. Johnson-Sirleaf was confirmed last week as winner of Liberia 's first post-war election after a fiercely contested run-off vote against former soccer George Weah . NNP NNP VBD VBN JJ NN IN NN IN NNP POS JJ JJ NN IN DT RB VBN JJ NN IN JJ NN NNP NNP . Mr. Weah 's party - the Congress for Democratic Change - has claimed the vote was fraudulent . NNP NNP POS NN IN DT NNP IN JJ NN : VBZ VBN DT NN VBD JJ . International observers say there was no evidence of widespread fraud . JJ NNS VBP EX VBD DT NN IN JJ NN . Iraqi police say a suicide car bomber has killed at least 26 people and wounded about 70 others in the southern town of Hillah . JJ NNS VBP DT NN NN NN VBZ VBN IN JJS CD NNS CC VBN IN CD NNS IN DT JJ NN IN NNP . Authorities say the blast Tuesday went off near a hospital in a commercial district . NNS VBP DT NN NNP VBD RP IN DT NN IN DT JJ NN . Many of the dead are said to be women and children . NN IN DT NN VBP VBN TO VB NNS CC NNS . Hillah is 100 kilometers south of Baghdad . NNP VBZ CD NNS RB IN NNP . In other news , the U.S. military said coalition forces detained 20 suspected terrorists Tuesday in raids targeting al-Qaida in Iraq operations north of Baghdad . IN JJ NN , DT NNP NN VBD NN NNS VBD CD JJ NNS NNP IN NNS VBG NNP IN NNP NNS NN IN NNP . The military said one of those detained is a foreign terrorist suspected of involvement in a suicide truck bomb attack in May in the town of Samarra . DT NN VBD CD IN DT VBN VBZ DT JJ JJ JJ IN NN IN DT NN NN NN NN IN NNP IN DT NN IN NNP . The statement did not say where the suspect is from . DT NN VBD RB VB WRB DT NN VBZ IN . Moroccan authorities say they have dismantled two terrorist cells with al-Qaida links and detained the groups ' members . JJ NNS VBP PRP VBP VBN CD JJ NNS IN NNP NNS CC VBD DT NNS POS NNS . The Interior Ministry says one cell , called Sahrawi Jihad Front , had four members . DT NNP NNP VBZ CD NN , VBD NNP NNP NNP , VBD CD NNS . In a Friday statement , the ministry said the cell was being led by a so-called ' extremist ' who formerly lived in Italy . IN DT NNP NN , DT NN VBD DT NN VBD VBG VBN IN DT JJ `` NN `` WP RB VBD IN NNP . The ministry says a second , five-member cell had been recruiting volunteers for ' jihad ' in Iraq . DT NN VBZ DT JJ , JJ NN VBD VBN VBG NNS IN `` NN `` IN NNP . It says the group had been coordinating efforts with al-Qaida networks . PRP VBZ DT NN VBD VBN VBG NNS IN NNP NNS . The government also says one of the detainees is a Yemeni national who is wanted in his country for al-Qaida links . DT NN RB VBZ CD IN DT NNS VBZ DT JJ NN WP VBZ VBN IN PRP$ NN IN NNP NNS . A ministry statement does not say when the arrests took place . DT NN NN VBZ RB VB WRB DT NNS VBD NN . Morocco has announced a series of arrests of suspected militants since a 2003 bombing in Casablanca killed 45 people . NNP VBZ VBN DT NN IN NNS IN JJ NNS IN DT CD NN IN NNP VBD CD NNS . In April , the country announced the arrests of 24 people with suspected al-Qaida links . IN NNP , DT NN VBD DT NNS IN CD NNS IN JJ NNP NNS . A Democratic Party lawmaker has called for the Republican-led Congress to repeal tax breaks for big oil companies . DT JJ NNP NN VBZ VBN IN DT JJ NNP TO VB NN NNS IN JJ NN NNS . In the Democrats ' weekly radio address , Representative Bart Stupak of Michigan accused Republicans of ignoring alleged price gauging by oil companies . IN DT NNPS POS JJ NN NN , JJ NNP NNP IN NNP VBD NNS IN VBG JJ NN VBG IN NN NNS . He noted the rising gasoline prices in the United States come as big oil companies are making huge profits . PRP VBD DT VBG NN NNS IN DT NNP NNPS VBP IN JJ NN NNS VBP VBG JJ NNS . He called for the development of alternative types of fuel , and for aggressive policies to prevent price gauging . PRP VBD IN DT NN IN JJ NNS IN NN , CC IN JJ NNS TO VB NN NN . President Bush on Friday expressed concern about rising gas prices , but he said there was no evidence of over-pricing . NNP NNP IN NNP VBD NN IN VBG NN NNS , CC PRP VBD EX VBD DT NN IN JJ . He called for investment in renewable sources of energy and the development of alternative sources of energy . PRP VBD IN NN IN JJ NNS IN NN CC DT NN IN JJ NNS IN NN . The Mexican music group Camila and Dominican singer Juan Luis Guerra were the big winners at the 11th Latin Grammyawards , picking up three awards each at the event Thursday in Las Vegas . DT JJ NN NN NNP CC JJ NN NNP NNP NNP VBD DT JJ NNS IN DT JJ JJ NNS , VBG RP CD NNS DT IN DT NN NNP IN NNP NNP . Trio Camila , comprised of Mario Domm , Pablo Hurtado and Samuel ' Samo ' Parra won for recording of the year and song of the year for ' Mientes , ' and also picked up best group pop album for ' Dejarte de Amar . ' NNP NNP , VBD IN NNP NNP , NNP NNP CC NNP `` NNP `` NNP VBD IN NN IN DT NN CC NN IN DT NN IN `` NNP , `` CC RB VBD RP JJS NN NN NN IN `` NNP NNP NNP . `` Singer-songwriter Guerra won Grammys for best album of the year , best contemporary tropical album for A Son de Guerraas well as best tropical song for ' Bachata en Fukuoko . ' NN NNP VBD NNS IN JJS NN IN DT NN , JJS JJ JJ NN IN NNP NNP NNP NNP RB IN JJS JJ NN IN `` NNP NNP NNP . `` He has now won 15 Latin Grammys in his career . PRP VBZ RB VBN CD JJ NNS IN PRP$ NN . The awards were broadcast live in the United States and Latin America on the Univision Spanish-language television network . DT NNS VBD VBN RB IN DT NNP NNPS CC NNP NNP IN DT NNP NNP NN NN . The Latin Grammys are awarded each year by the Latin Recording Academy to recognize recordings released in Spanish or Portuguese . DT JJ NNS VBP VBN DT NN IN DT NNP NNP NNP TO VB NNS VBN IN NNP CC NNP . Hilary Duff says she feels pressure to be thin . NNP NNP VBZ PRP VBZ NN TO VB JJ . Speaking to People Magazine , the 19-year-old actress-singer says the media can be ' judgmental and mean ' in their incessant attention to her weight . VBG TO NNS NNP , DT JJ NN VBZ DT NNS MD VB `` JJ CC JJ `` IN PRP$ JJ NN TO PRP$ NN . The starlet says while she has never had a weight problem , she realizes critics will never be happy with her appearance . DT NN VBZ IN PRP VBZ RB VBN DT NN NN , PRP VBZ NNS MD RB VB JJ IN PRP$ NN . Hilary Duff , who has sold more than 13 albums worldwide , releases her latest effort Dignity on April 3 in the U.S. While several songs deal with her ex-boyfriend Joel Madden of the rock band Good Charlotte , Hilary denies criticizing his present girlfriend Nicole Richie on the song ' Gypsy Woman . ' NNP NNP , WP VBZ VBN JJR IN CD NNS JJ , VBZ PRP$ JJS NN NN IN NNP CD IN DT NNP IN JJ NNS VBP IN PRP$ JJ NNP NNP IN DT NN NN NNP NNP , NNP VBZ VBG PRP$ JJ NN NNP NNP IN DT NN `` NNP NNP . `` A report in The New York Times Sunday says the United States is working on a plan that expands government access to international banking records in an effort to deter terrorist transactions . DT NN IN DT NNP NNP NNP NNP VBZ DT NNP NNPS VBZ VBG IN DT NN WDT VBZ NN NN TO JJ NN NNS IN DT NN TO VB JJ NNS . The newspaper reports a U.S. Treasury Department working group is examining ways the government can gain access to logs of international wire transfers into and out of U.S. banks . DT NN VBZ DT NNP NNP NNP VBG NN VBZ VBG NNS DT NN MD VB NN TO NNS IN JJ NN NNS IN CC IN IN NNP NNS . The Times quotes unnamed government officials who say they are mindful of concerns about privacy and potential misuse of the system . DT NNP VBZ JJ NN NNS WP VBP PRP VBP JJ IN NNS IN NN CC JJ NN IN DT NN . It says the plan is still in its preliminary stages . PRP VBZ DT NN VBZ RB IN PRP$ JJ NNS . A recent U.S. law authorizes the Treasury Department to develop regulations requiring U.S. banks to turn over suspected ' cross-border ' electronic transactions . DT JJ NNP NN VBZ DT NNP NNP TO VB NNS VBG NNP NNS TO VB RP JJ `` JJ `` JJ NNS . U.S. stocks surged more than three percent higher in Tuesday 's trading as some investors expressed confidence that the worst of the credit crisis is over . NNP NNS VBD JJR IN CD NN JJR IN NNP POS NN IN DT NNS VBD NN IN DT JJS IN DT NN NN VBZ IN . Shares of Lehman Brothers Holdings and Swiss bank UBS rose after the two raised a combined $ 19 billion in capital by issuing new stocks . NNS IN NNP NNP NNPS CC JJ NN NNS VBD IN DT CD VBD DT VBN $ CD CD IN NN IN VBG JJ NNS . The successful effort by the banks eased fears that they might need government help like that given to the investment bank Bear Stearns recently . DT JJ NN IN DT NNS VBD NNS IN PRP MD VB NN NN IN DT VBN TO DT NN NN NNP NNP RB . Investors were also encouraged by the news from the manufacturing sector . NNS VBD RB VBN IN DT NN IN DT NN NN . The Institute for Supply Management 's March index rose slightly , beating the expectations of some economists . DT NNP IN NNP NNP POS NNP NN VBD RB , VBG DT NNS IN DT NNS . New data also showed U.S. construction spending fell less than some economists predicted . JJ NNS RB VBD NNP NN NN VBD JJR IN DT NNS VBD . U.S. Secretary of State Condoleezza Rice is returning to Washington after talks with British Prime Minister Tony Blair and a visit to the Middle East this week . NNP NNP IN NNP NNP NNP VBZ VBG TO NNP IN NNS IN JJ NNP NNP NNP NNP CC DT NN TO DT NNP NNP DT NN . Saturday 's meeting at Mr. Blair 's country residence was private . NNP POS NN IN NNP NNP POS NN NN VBD JJ . A spokesman for the British leader said the talks focused on Middle East issues , including Iran 's nuclear program , and the U.S. secretary of state 's efforts to promote peace in the region . DT NN IN DT JJ NN VBD DT NNS VBD IN NNP NNP NNS , VBG NNP POS JJ NN , CC DT NNP NN IN NN POS NNS TO VB NN IN DT NN . Neither official issued a statement after the talks . DT NN VBD DT NN IN DT NNS . Rice visited Saudi Arabia , Egypt , Israel , the Palestinian territories and Iraq . NNP VBD NNP NNP , NNP , NNP , DT JJ NNS CC NNP . During her tour , she called on world powers to take a tougher stance toward Iran . IN PRP$ NN , PRP VBD IN NN NNS TO VB DT JJR NN IN NNP . Iran continues to refuse to meet an August 31 Security Council deadline to stop enriching uranium , which can be used to make nuclear weapons . NNP VBZ TO VB TO VB DT NNP CD NNP NNP NN TO VB VBG NN , WDT MD VB VBN TO VB JJ NNS . Tehran says it needs the fuel to produce electricity . NNP VBZ PRP VBZ DT NN TO VB NN . One of Africa 's most renowed musicians , Ali Farka Toure , has died in his home country of Mali . CD IN NNP POS JJS JJ NNS , NNP NNP NNP , VBZ VBN IN PRP$ NN NN IN NNP . Mali 's Culture Ministry announced Tuesday that Toure passed away after a long illness . NNP POS NNP NNP VBD NNP IN NNP VBD RB IN DT JJ NN . He was about 66 years old . PRP VBD IN CD NNS JJ . Toure was a singer and accomplished guitar player , and helped create a genre known as Mali Blues , which combined traditional African sounds with black American music . NNP VBD DT NN CC JJ NN NN , CC VBD VB DT NN VBN IN NNP NNP , WDT VBD JJ JJ NNS IN JJ JJ NN . He cited many Western musicians as a source of inspiration , with special praise for the American blues legend John Lee Hooker . PRP VBD JJ JJ NNS IN DT NN IN NN , IN JJ NN IN DT JJ NNS NN NNP NNP NNP . Toure was best known overseas for his mid-1990s collaboration with American guitarist Ry Cooder . NNP VBD RB VBN RB IN PRP$ NNS NN IN JJ NN NNP NNP . Their Talking Timbuktu album netted Toure his first Grammy Award He won a second Grammy this year for his In the Heart of the Moon album . PRP$ VBG NNP NN VBD NNP PRP$ JJ NNP NNP PRP VBD DT JJ NN DT NN IN PRP$ IN DT NN IN DT NNP NN . Toure was beloved in Mali , and radio stations suspended their normal programming Tuesday to play his songs . NNP VBD VBN IN NNP , CC NN NNS VBD PRP$ JJ NN NNP TO VB PRP$ NNS . Officials in Somalia say at least 16 people have been killed in factional fighting that began Monday and continued into Tuesday . NNS IN NNP VBP IN JJS CD NNS VBP VBN VBN IN JJ NN WDT VBD NNP CC VBD IN NNP . Witnesses say the fighting took place in and around the town of Belet Weyn , some 300 kilometers north of the capital . NNS VBP DT NN VBD NN IN CC IN DT NN IN NNP NNP , DT CD NNS RB IN DT NN . Officials say the clash was the result of an on-going dispute between rival factions over the use of pasture land . NNS VBP DT NN VBD DT NN IN DT JJ NN IN JJ NNS IN DT NN IN NN NN . Somalia has been without a central government since 1991 when clan-based warlords over-threw dictator Said Barre . NNP VBZ VBN IN DT JJ NN IN CD WRB JJ NNS VBD NN NNP NNP . Since then , in-fighting between the clans has plunged the nation into anarchy . IN RB , NN IN DT NNS VBZ VBN DT NN IN NN . A new government was formed last year in Kenya but it is opposed by Islamic extremists and other factions . DT JJ NN VBD VBN JJ NN IN NNP CC PRP VBZ VBN IN NNP NNS CC JJ NNS . The government has not relocated to Mogadishu because of lack of security . DT NN VBZ RB VBN TO NNP IN IN NN IN NN . Afghan officials say insurgents in western Afghanistan have attacked a police patrol , sparking a clash that left four policemen and four insurgents dead . JJ NNS VBP NNS IN JJ NNP VBP VBN DT NN NN , VBG DT NN WDT VBD CD NNS CC CD NNS JJ . Officials say at least four police were wounded in Wednesday 's clash in western Farah province . NNS VBP IN JJS CD NNS VBD VBN IN NNP POS NN IN JJ NNP NN . The attack took place close to where gunmen killed a United Nations aid worker in the provincial capital , Farah city . DT NN VBD NN RB TO WRB NNS VBD DT NNP NNP NN NN IN DT JJ NN , NNP NN . Police say militants fired on the car of the Afghan employee of U.N. Habitat , the organization 's human settlements program . NNS VBP NNS VBN IN DT NN IN DT JJ NN IN NNP NNP , DT NN POS JJ NNS NN . In the southern city of Kandahar , Afghan police say a suspected suicide bomber is the sole victim of an attack on a mosque . IN DT JJ NN IN NNP , JJ NNS VBP DT JJ NN NN VBZ DT JJ NN IN DT NN IN DT NN . Police say the bomber detonated explosives inside an empty mud-brick mosque Wednesday . NNS VBP DT NN VBD NNS IN DT JJ NN NN NNP . The blast destroyed several rooms and walls in the building , but police say there were no other casualties . DT NN VBD JJ NNS CC NNS IN DT NN , CC NNS VBP EX VBD DT JJ NNS . Astronauts at the International Space Station have put in place a new Canadian robotic device designed to assist future astronauts with delicate maintenance tasks at the orbiting facility . NNS IN DT NNP NNP NNP VBP VBN IN NN DT JJ JJ JJ NN VBN TO VB JJ NNS IN JJ NN NNS IN DT VBG NN . The astronauts attached the robot , called Dextre , to the U.S. laboratory Destiny , at the space station Tuesday . DT NNS VBD DT NN , VBD NNP , TO DT NNP NN NN , IN DT NN NN NNP . Two crew members of the U.S. shuttle Endeavour assembled Dextre during a seven-hour spacewalk earlier this week . CD NN NNS IN DT NNP NN NNP VBD NNP IN DT JJ NN RBR DT NN . The astronauts are to begin the mission 's fourth spacewalk Thursday to test a new procedure for repairing damaged heat-shielding tiles . DT NNS VBP TO VB DT NN POS JJ NN NNP TO VB DT JJ NN IN VBG VBN JJ NNS . On an earlier spacewalk , astronauts attached a storage compartment for a Japanese laboratory scheduled to be delivered by another space shuttle in May . IN DT JJR NN , NNS VBD DT NN NN IN DT JJ NN VBN TO VB VBN IN DT NN NN IN NNP . Astronauts have set up scientific experiments for various nations , though difficulties with one project saw it returned to the loading bay instead of being installed on the outside of the station . NNS VBP VBN RP JJ NNS IN JJ NNS , IN NNS IN CD NN VBD PRP VBD TO DT NN NN IN IN VBG VBN IN DT NN IN DT NN . Iraqi authorities say insurgents have shot dead at least three policemen , including the chief of a central Baghdad police station . JJ NNS VBP NNS VBP VBN JJ IN JJS CD NNS , VBG DT NN IN DT JJ NNP NN NN . Police say the gunmen fired on a vehicle in which police officers were traveling to work Thursday morning . NNS VBP DT NNS VBD IN DT NN IN WDT NN NNS VBD VBG TO VB NNP NN . The attack came a day after a suicide truck bombing claimed by Abu Musab al-Zarqawi 's terror group killed three people near the Agriculture Ministry and a Baghdad hotel used by Westerners . DT NN VBD DT NN IN DT NN NN VBG VBN IN NNP NNP NNP POS NN NN VBD CD NNS IN DT NNP NNP CC DT NNP NN VBN IN NNS . Also Wednesday , Iraqi officials said they discovered the bodies of 41 people killed execution-style in two separate locations , in Qaim , near the Syrian border , and near Latifiya , south of Baghdad . RB NNP , JJ NNS VBD PRP VBD DT NNS IN CD NNS VBN JJ IN CD JJ NNS , IN NNP , IN DT JJ NN , CC IN NNP , NN IN NNP . In other incidents in Baghdad , Iraq 's planning minister Mahdi al-Hafidh escaped an assassination attempt when gunmen fired on his car , killing two of his bodyguards . IN JJ NNS IN NNP , NNP POS NN NN NNP NNP VBD DT NN NN WRB NNS VBD IN PRP$ NN , VBG CD IN PRP$ NNS . And , an American soldier was killed in a roadside bomb blast . CC , DT JJ NN VBD VBN IN DT NN NN NN . At least seven people have been killed in separate insurgent bomb attacks across Iraq , Saturday . IN JJS CD NNS VBP VBN VBN IN JJ JJ NN NNS IN NNP , NNP . Iraqi authorities say five people were killed when a roadside bomb exploded near the headquarters of one of Iraq 's main Sunni Arab political parties in al-Khalis , 60 kilometers north of Baghdad . JJ NNS VBP CD NNS VBD VBN WRB DT NN NN VBD IN DT NN IN CD IN NNP POS JJ NNP NNP JJ NNS IN NNP , CD NNS RB IN NNP . At least two policemen were killed in a bomb attack in Baghdad . IN JJS CD NNS VBD VBN IN DT NN NN IN NNP . The latest violence comes as Sudan announced plans to close its Baghdad embassy in an effort to win the release of five Sudanese hostages , including one of its top diplomats in Iraq . DT JJS NN VBZ IN NNP VBD NNS TO VB PRP$ NNP NN IN DT NN TO VB DT NN IN CD JJ NNS , VBG CD IN PRP$ JJ NNS IN NNP . Al-Qaida in Iraq said the Sudanese , who were kidnapped in Baghdad last week , will be killed Saturday unless Khartoum closes the diplomatic mission . NNP IN NNP VBD DT JJ , WP VBD VBN IN NNP JJ NN , MD VB VBN NNP IN NNP VBZ DT JJ NN . Salvadoran lawmakers have approved the extension of their country 's military mission in Iraq . JJ NNS VBP VBN DT NN IN PRP$ NN POS JJ NN IN NNP . They voted late Thursday to keep soldiers in the war-torn country for humanitarian and reconstruction work for another year . PRP VBD RB NNP TO VB NNS IN DT JJ NN IN JJ CC NN NN IN DT NN . El Salvador is the last Latin American country with military forces in Iraq . NNP NNP VBZ DT JJ JJ JJ NN IN JJ NNS IN NNP . Honduras , Nicaragua and the Dominican Republic have withdrawn their troops . NNP , NNP CC DT NNP NNP VBP VBN PRP$ NNS . El Salvador sent its first group of more than 350 soldiers to Iraq in August 2003 . NNP NNP VBD PRP$ JJ NN IN JJR IN CD NNS TO NNP IN NNP CD . Kyrgyzstan 's old parliament has formally agreed to step down , deferring to newly elected deputies in an effort to reduce political tensions in the central Asian country . NNP POS JJ NN VBZ RB VBN TO VB RB , VBG TO RB VBN NNS IN DT NN TO VB JJ NNS IN DT JJ JJ NN . The move to disband came after the new parliament confirmed opposition leader Kurmanbek Bakiyev as prime minister and appointed him acting president . DT NN TO NN VBD IN DT JJ NN VBD NN NN NNP NNP IN JJ NN CC VBD PRP VBG NN . The development Monday angered opposition protesters who said the new parliament was chosen in rigged elections . DT NN NNP VBD NN NNS WP VBD DT JJ NN VBD VBN IN JJ NNS . Mass protests over the disputed balloting brought down the previous government and led to the ouster of President Askar Akayev . NN NNS IN DT JJ NN VBD RP DT JJ NN CC VBD TO DT NN IN NNP NNP NNP . Kyrgyz lawmakers have set June 26 for new presidential elections . JJ NNS VBP VBN NNP CD IN JJ JJ NNS . A maritime official says Somali pirates have hijacked a Yemeni cargo ship in the Gulf of Aden . DT NN NN VBZ JJ NNS VBP VBN DT JJ NN NN IN DT NNP IN NNP . Andrew Mwangura , of the East African Seafarers Assistance Program , identified the vessel Tuesday as the MV Amani . NNP NNP , IN DT NNP NNP NNPS NNP NNP , VBD DT NN NNP IN DT NNP NNP . It was not immediately clear when the ship was hijacked . PRP VBD RB RB JJ WRB DT NN VBD VBN . Somali pirates have hijacked nearly 40 ships this year . JJ NNS VBP VBN RB CD NNS DT NN . In Malaysia Monday , an international association of tanker owners called for a military blockade along the coast of Somalia . IN NNP NNP , DT JJ NN IN NN NNS VBD IN DT JJ NN IN DT NN IN NNP . NATO Secretary-General Jaap de Hoop Scheffer said the alliance is not considering such a move . NNP NNP NNP NNP NNP NNP VBD DT NN VBZ RB VBG PDT DT NN . NATO is among the world powers that have sent ships to patrol the waters off Somalia . NNP VBZ IN DT NN NNS WDT VBP VBN NNS TO VB DT NNS IN NNP . Somali pirates are wreaking havoc in shipping lanes near the country . JJ NNS VBP VBG NN IN NN NNS IN DT NN . The Somali government , which is threatened by an Islamist insurgency , lacks the power to stop the attacks . DT JJ NN , WDT VBZ VBN IN DT NNP NN , VBZ DT NN TO VB DT NNS . Lebanon has a free-market economy and a strong laissez-faire commercial tradition . NNP VBZ DT JJ NN CC DT JJ JJ JJ NN . The government does not restrict foreign investment ; however , the investment climate suffers from red tape , corruption , arbitrary licensing decisions , high taxes , tariffs , and fees , archaic legislation , and weak intellectual property rights . DT NN VBZ RB VB JJ NN ; RB , DT NN NN VBZ IN JJ NN , NN , JJ NN NNS , JJ NNS , NNS , CC NNS , JJ NN , CC JJ JJ NN NNS . The Lebanese economy is service-oriented ; main growth sectors include banking and tourism . DT JJ NN VBZ JJ ; JJ NN NNS VBP NN CC NN . The 1975 - 90 civil war seriously damaged Lebanon 's economic infrastructure , cut national output by half , and all but ended Lebanon 's position as a Middle Eastern entrepot and banking hub . DT CD IN CD JJ NN RB VBD NNP POS JJ NN , VBD JJ NN IN NN , CC DT CC VBN NNP POS NN IN DT NNP NNP NN CC NN NN . In the years since , Lebanon has rebuilt much of its war-torn physical and financial infrastructure by borrowing heavily - mostly from domestic banks . IN DT NNS IN , NNP VBZ VBN NN IN PRP$ JJ JJ CC JJ NN IN VBG RB : RB IN JJ NNS . In an attempt to reduce the ballooning national debt , the Rafiq HARIRI government in 2000 began an austerity program , reining in government expenditures , increasing revenue collection , and passing legislation to privatize state enterprises , but economic and financial reform initiatives stalled and public debt continued to grow despite receipt of more than $ 2 billion in bilateral assistance at the 2002 Paris II Donors Conference . IN DT NN TO VB DT NN JJ NN , DT NNP NNP NN IN CD VBD DT NN NN , VBG IN NN NNS , VBG NN NN , CC VBG NN TO VB NN NNS , CC JJ CC JJ NN NNS VBD CC JJ NN VBD TO VB IN NN IN JJR IN $ CD CD IN JJ NN IN DT CD NNP NNP NNP NNP . The Israeli-Hizballah conflict in July-August 2006 caused an estimated $ 3.6 billion in infrastructure damage , and prompted international donors to pledge nearly $ 1 billion in recovery and reconstruction assistance . DT JJ NN IN NNP CD VBD DT JJ $ CD CD IN NN NN , CC VBD JJ NNS TO NN RB $ CD CD IN NN CC NN NN . Donors met again in January 2007 at the Paris III Donor Conference and pledged more than $ 7.5 billion to Lebanon for development projects and budget support , conditioned on progress on Beirut 's fiscal reform and privatization program . NNS VBD RB IN NNP CD IN DT NNP NNP NNP NNP CC VBD JJR IN $ CD CD TO NNP IN NN NNS CC NN NN , VBN IN NN IN NNP POS JJ NN CC NN NN . An 18-month political stalemate and sporadic sectarian and political violence hampered economic activity , particularly tourism , retail sales , and investment , until the new government was formed in July 2008 . DT JJ JJ NN CC JJ NN CC JJ NN VBN JJ NN , RB NN , JJ NNS , CC NN , IN DT JJ NN VBD VBN IN NNP CD . Political stability following the Doha Accord of May 2008 helped boost tourism and , together with a strong banking sector , enabled real GDP growth of 7 % per year in 2009 - 10 despite a slowdown in the region . JJ NN VBG DT NNP NNP IN NNP CD VBD VB NN CC , RB IN DT JJ NN NN , VBD JJ NN NN IN CD NN IN NN IN CD : CD IN DT NN IN DT NN . Jan Mayen is a volcanic island with no exploitable natural resources , although surrounding waters contain substantial fish stocks and potential untapped petroleum resources . NNP NNP VBZ DT JJ NN IN DT JJ JJ NNS , IN VBG NNS VBP JJ NN NNS CC JJ VBN NN NNS . Economic activity is limited to providing services for employees of Norway 's radio and meteorological stations on the island . JJ NN VBZ VBN TO VBG NNS IN NNS IN NNP POS NN CC JJ NNS IN DT NN . Angola 's high growth rate in recent years was driven by high international prices for its oil . NNP POS JJ NN NN IN JJ NNS VBD VBN IN JJ JJ NNS IN PRP$ NN . Angola became a member of OPEC in late 2006 and in late 2007 was assigned a production quota of 1.9 million barrels a day ( bbl/day ) , somewhat less than the 2-2.5 million bbl/day Angola 's government had wanted . NNP VBD DT NN IN NNP IN JJ CD CC IN JJ CD VBD VBN DT NN NN IN CD CD NNS DT NN LRB NN RRB , RB JJR IN DT CD CD JJ NNP POS NN VBD VBN . Oil production and its supporting activities contribute about 85 % of GDP . NN NN CC PRP$ JJ NNS VBP IN CD NN IN NN . Diamond exports contribute an additional 5 % . NNP NNS VBP DT JJ CD NN . Subsistence agriculture provides the main livelihood for most of the people , but half of the country 's food is still imported . JJ NN VBZ DT JJ NN IN JJS IN DT NNS , CC NN IN DT NN POS NN VBZ RB VBN . Increased oil production supported growth averaging more than 15 % per year from 2004 to 2008 . JJ NN NN VBD NN VBG JJR IN CD NN IN NN IN CD TO CD . A postwar reconstruction boom and resettlement of displaced persons has led to high rates of growth in construction and agriculture as well . DT JJ NN NN CC NN IN JJ NNS VBZ VBN TO JJ NNS IN NN IN NN CC NN RB RB . Much of the country 's infrastructure is still damaged or undeveloped from the 27-year-long civil war . NN IN DT NN POS NN VBZ RB JJ CC JJ IN DT JJ JJ NN . Land mines left from the war still mar the countryside , even though peace was established after the death of rebel leader Jonas SAVIMBI in February 2002 . NNP NNS VBD IN DT NN RB VBZ DT NN , RB IN NN VBD VBN IN DT NN IN JJ NN NNP NNP IN NNP CD . Since 2005 , the government has used billions of dollars in credit lines from China , Brazil , Portugal , Germany , Spain , and the EU to rebuild Angola 's public infrastructure . IN CD , DT NN VBZ VBN NNS IN NNS IN NN NNS IN NNP , NNP , NNP , NNP , NNP , CC DT NNP TO VB NNP POS JJ NN . The global recession temporarily stalled economic growth . DT JJ NN RB VBN JJ NN . Lower prices for oil and diamonds during the global recession led to a contraction in GDP in 2009 , and many construction projects stopped because Luanda accrued $ 9 billion in arrears to foreign construction companies when government revenue fell in 2008 and 2009 . JJR NNS IN NN CC NNS IN DT JJ NN VBD TO DT NN IN NN IN CD , CC JJ NN NNS VBD IN NNP VBN $ CD CD IN NNS TO JJ NN NNS WRB NN NN VBD IN CD CC CD . Angola abandoned its currency peg in 2009 , and in November 2009 signed onto an IMF Stand-By Arrangement loan of $ 1.4 billion to rebuild international reserves . NNP VBD PRP$ NN NN IN CD , CC IN NNP CD VBD IN DT NNP NNP NNP NN IN $ CD CD TO VB JJ NNS . Although consumer inflation declined from 325 % in 2000 to under 14 % in 2010 , Luanda has been unable to reduce inflation below 10 % . IN NN NN VBD IN CD NN IN CD TO IN CD NN IN CD , NNP VBZ VBN JJ TO VB NN IN CD NN . The Angolan kwanza depreciated again in mid 2010 , which , along with higher oil prices , should boost economic growth in all sectors . DT JJ NN VBD RB IN JJ CD , WDT , IN IN JJR NN NNS , MD VB JJ NN IN DT NNS . Corruption , especially in the extractive sectors , also is a major challenge . NNP , RB IN DT JJ NNS , RB VBZ DT JJ NN . Sierra Leone is an extremely poor nation with tremendous inequality in income distribution . NNP NNP VBZ DT RB JJ NN IN JJ NN IN NN NN . While it possesses substantial mineral , agricultural , and fishery resources , its physical and social infrastructure has yet to recover from the civil war , and serious social disorders continue to hamper economic development . IN PRP VBZ JJ NN , JJ , CC JJ NNS , PRP$ JJ CC JJ NN VBZ RB TO VB IN DT JJ NN , CC JJ JJ NNS VBP TO VB JJ NN . Nearly half of the working-age population engages in subsistence agriculture . RB NN IN DT NN NN VBZ IN NN NN . Manufacturing consists mainly of the processing of raw materials and of light manufacturing for the domestic market . NNP VBZ RB IN DT NN IN JJ NNS CC IN JJ NN IN DT JJ NN . Alluvial diamond mining remains the major source of hard currency earnings , accounting for nearly half of Sierra Leone 's exports . JJ NN NN VBZ DT JJ NN IN JJ NN NNS , NN IN RB NN IN NNP NNP POS NNS . The fate of the economy depends upon the maintenance of domestic peace and the continued receipt of substantial aid from abroad , which is essential to offset the severe trade imbalance and supplement government revenues . DT NN IN DT NN VBZ IN DT NN IN JJ NN CC DT JJ NN IN JJ NN IN RB , WDT VBZ JJ TO VB DT JJ NN NN CC NN NN NNS . The IMF has completed a Poverty Reduction and Growth Facility program that helped stabilize economic growth and reduce inflation and in 2010 approved a new program worth $ 45 million over three years . DT NNP VBZ VBN DT NN NN CC NN NN NN WDT VBD VB JJ NN CC VB NN CC IN CD VBD DT JJ NN JJ $ CD CD IN CD NNS . Political stability has led to a revival of economic activity such as the rehabilitation of bauxite and rutile mining , which are set to benefit from planned tax incentives . JJ NN VBZ VBN TO DT NN IN JJ NN JJ IN DT NN IN NN CC NN NN , WDT VBP VBN TO VB IN JJ NN NNS . A number of offshore oil discoveries were announced in 2009 and 2010 . DT NN IN JJ NN NNS VBD VBN IN CD CC CD . The development on these reserves , which could be significant , is still several years away . DT NN IN DT NNS , WDT MD VB JJ , VBZ RB JJ NNS RB . During the late 18th and 19th centuries , Great Britain established colonies and protectorates in the area of current Malaysia ; these were occupied by Japan from 1942 to 1945 . IN DT JJ JJ CC JJ NNS , NNP NNP VBD NNS CC NNS IN DT NN IN JJ NNP ; DT VBD VBN IN NNP IN CD TO CD . In 1948 , the British-ruled territories on the Malay Peninsula formed the Federation of Malaya , which became independent in 1957 . IN CD , DT JJ NNS IN DT NNP NNP VBD DT NNP IN NNP , WDT VBD JJ IN CD . Malaysia was formed in 1963 when the former British colonies of Singapore and the East Malaysian states of Sabah and Sarawak on the northern coast of Borneo joined the Federation . NNP VBD VBN IN CD WRB DT JJ JJ NNS IN NNP CC DT NNP JJ NNS IN NNP CC NNP IN DT JJ NN IN NNP VBD DT NNP . The first several years of the country 's history were marred by a Communist insurgency , Indonesian confrontation with Malaysia , Philippine claims to Sabah , and Singapore 's secession from the Federation in 1965 . DT JJ JJ NNS IN DT NN POS NN VBD VBN IN DT JJ NN , JJ NN IN NNP , JJ NNS TO NNP , CC NNP POS NN IN DT NNP IN CD . During the 22-year term of Prime Minister MAHATHIR bin Mohamad ( 1981 - 2003 ) , Malaysia was successful in diversifying its economy from dependence on exports of raw materials to expansion in manufacturing , services , and tourism . IN DT JJ NN IN NNP NNP NNP NNP NNP LRB CD IN CD RRB , NNP VBD JJ IN VBG PRP$ NN IN NN IN NNS IN JJ NNS TO NN IN NN , NNS , CC NN . Current Prime Minister Mohamed NAJIB bin Abdul Razak ( in office since April 2009 ) has continued these pro-business policies . NNP NNP NNP NNP NNP NNP NNP NNP LRB IN NN IN NNP CD RRB VBZ VBN DT JJ NNS . A Serpent in the course of its wanderings came into an armourer 's shop . DT NN IN DT NN IN PRP$ NNS VBD IN DT NN POS NN . As he glided over the floor he felt his skin pricked by a file lying there . IN PRP VBD IN DT NN PRP VBD PRP$ NN VBN IN DT NN VBG RB . In a rage he turned round upon it and tried to dart his fangs into it ; but he could do no harm to heavy iron and had soon to give over his wrath . IN DT NN PRP VBD JJ IN PRP CC VBD TO VB PRP$ NNS IN PRP ; CC PRP MD VB DT NN TO JJ NN CC VBD RB TO VB RP PRP$ NN . It is useless attacking the insensible . PRP VBZ JJ VBG DT JJ . Politicians are an honest , moral , ethical and outstanding group of people . NNS VBP DT JJ , JJ , JJ CC JJ NN IN NNS . I say this because I 've just spent a week dealing with car salesmen . PRP VBP DT IN PRP VBP RB VBN DT NN VBG IN NN NNS . Lindsay Lohan 's father Michael flew to Utah September 5 , and is currently visiting the actress at the Cirque Lodge treatment center . NNP NNP POS NN NNP VBD TO NNP NNP CD , CC VBZ RB VBG DT NN IN DT NNP NNP NN NN . Sources close to the pair confirmed the visit to Access Hollywood . NNS RB TO DT NN VBD DT NN TO NNP NNP . Michael Lohan , who served nearly two years in a New York prison for driving while intoxicated and other charges , has publicly expressed his desire to reunite with his daughter since his release in March . NNP NNP , WP VBD RB CD NNS IN DT NNP NNP NN IN VBG IN JJ CC JJ NNS , VBZ RB VBN PRP$ NN TO VB IN PRP$ NN IN PRP$ NN IN NNP . Sources told Access that Lindsay Lohan has not seen her father since before he went to prison . NNS VBD NNP IN NNP NNP VBZ RB VBN PRP$ NN IN IN PRP VBD TO NN . The 21-year-old actress checked into Cirque Lodge on August 3 . DT JJ NN VBD IN NNP NNP IN NNP CD . She has been visited by her mother Dina and siblings Cody and Ali , but this marks the first visit from her father . PRP VBZ VBN VBN IN PRP$ NN NNP CC NNS NNP CC NNP , CC DT VBZ DT JJ NN IN PRP$ NN . The U.S. military says American troops in northern Iraq have killed 14 insurgents in two attacks initiated by U.S. forces late Sunday and early Monday . DT NNP NN VBZ JJ NNS IN JJ NNP VBP VBN CD NNS IN CD NNS VBN IN NNP NNS JJ NNP CC JJ NNP . A U.S. statement says the fighting took place in the northern town of Tal Afar , and says there were no U.S. casualties . DT NNP NN VBZ DT NN VBD NN IN DT JJ NN IN NNP NNP , CC VBZ EX VBD DT NNP NNS . In separate fighting near Baquba , insurgents stormed an Iraqi army checkpoint at daybreak , killing nine Iraqi soldiers . IN JJ NN IN NNP , NNS VBD DT JJ NN NN IN NN , VBG CD JJ NNS . A short while later , a car bomb explosion in the area killed at least two people and wounded several others . DT JJ NN RB , DT NN NN NN IN DT NN VBD IN JJS CD NNS CC VBD JJ NNS . Two U.S. Marines were killed in combat on Sunday in the town of Hit near Iraq 's border with Syria . CD NNP NNS VBD VBN IN NN IN NNP IN DT NN IN NNP IN NNP POS NN IN NNP . A burst of insurgent violence on Sunday killed at least 43 other people - most of them Iraqi army recruits and police . DT NN IN NN NN IN NNP VBD IN JJS CD JJ NNS : JJS IN PRP JJ NN NNS CC NNS . Russia 's industrial output plunged nearly 20 percent in January from December , as the country experienced its worst economic slump in a decade . NNP POS JJ NN VBD RB CD NN IN NNP IN NNP , IN DT NN VBD PRP$ JJS JJ NN IN DT NN . Figures released Monday by the federal statistics service indicated a month-to-month drop in industrial output of 19.9 percent . NNS VBN NNP IN DT JJ NNS NN VBD DT JJ NN IN JJ NN IN CD NN . The largest slumps were recorded in steel , cement and automobile production as worldwide demand eroded for cars , trucks and construction material . DT JJS NNS VBD VBN IN NN , NN CC NN NN IN JJ NN VBD IN NNS , NNS CC NN NN . Russia 's economy has also been hit by the fall in the price of oil . NNP POS NN VBZ RB VBN VBN IN DT NN IN DT NN IN NN . Economists are also worried by massive capital amounts of investment leaving the country . NNS VBP RB VBN IN JJ NN NNS IN NN VBG DT NN . The government has pledged more than $ 200 billion to shore up Russia 's economy since the world financial turmoil spread in September . DT NN VBZ VBN JJR IN $ CD CD TO VB RP NNP POS NN IN DT NN JJ NN VBD IN NNP . An apparent suicide car bomb attack has killed at least six people outside the Somali government 's seat of Baidoa . DT JJ NN NN NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN POS NN IN NNP . Witnesses say between one and three suicide car bombers drove up to a checkpoint and exploded their vehicles Thursday . NNS VBP IN CD CC CD NN NN NNS VBD RP TO DT NN CC VBD PRP$ NNS NNP . They say the drivers were killed along with some passengers in the vehicles . PRP VBP DT NNS VBD VBN IN IN DT NNS IN DT NNS . Local officials say several civilians were hurt in the blasts , and that authorities have taken at least one survivor into custody . JJ NNS VBP JJ NNS VBD VBN IN DT NNS , CC IN NNS VBP VBN IN JJS CD NN IN NN . There was no immediate claim of responsibility . EX VBD DT JJ NN IN NN . Baidoa is the sole outpost held by Somalia 's weak transitional government , which is being challenged by Islamists who control the capital , Mogadishu , and much of the country 's south . NNP VBZ DT JJ NN VBN IN NNP POS JJ JJ NN , WDT VBZ VBG VBN IN NNS WP VBP DT NN , NNP , CC NN IN DT NN POS NN . Islamist forces are positioned nearby but have not mounted any attacks on the town . JJ NNS VBP VBN JJ CC VBP RB VBN DT NNS IN DT NN . African leaders and French President Jacques Chirac have opened a two-day summit focusing on problems faced by African youth and on the continent 's political troubles . JJ NNS CC JJ NNP NNP NNP VBP VBN DT JJ NN VBG IN NNS VBN IN JJ NN CC IN DT NN POS JJ NNS . Heads of state and government officials from at least 35 African countries attended the opening of the summit Saturday in Mali 's capital , Bamako . NNS IN NN CC NN NNS IN IN JJS CD JJ NNS VBD DT NN IN DT NN NNP IN NNP POS NN , NNP . Participants were expected to address the high unemployment rates among Africans under age 30 . NNS VBD VBN TO VB DT JJ NN NNS IN NNS IN NN CD . The conflict in Sudan 's western Darfur region and the faltering peace process in Ivory Coast were also likely to top the agenda . DT NN IN NNP POS JJ NNP NN CC DT JJ NN NN IN NNP NNP VBD RB JJ TO VB DT NN . France has 4,000 soldiers in Ivory Coast , alongside a 7,000-member United Nations peacekeeping force . NNP VBZ CD NNS IN NNP NNP , IN DT JJ NNP NNPS VBG NN . Observers say a number of other issues sensitive to Africans are likely to be discussed on the sidelines of the summit . NNS VBP DT NN IN JJ NNS JJ TO NNS VBP JJ TO VB VBN IN DT NNS IN DT NN . Among them are French plans to tighten immigration legislation . IN PRP VBP JJ NNS TO VB NN NN . A U.S. delegation crossed the heavily-guarded border from South Korea into North Korea Tuesday , for talks on Pyongyang 's overdue declaration of its nuclear activities . DT NNP NN VBD DT JJ NN IN NNP NNP IN NNP NNP NNP , IN NNS IN NNP POS JJ NN IN PRP$ JJ NNS . The team , led by Sung Kim - the top U.S. State Department expert on the Koreas - will stay in North Korea for three days to discuss the North 's nuclear declaration and how to verify it . DT NN , VBN IN NNP NNP IN DT JJ NNP NNP NNP NN IN DT NNP : MD VB IN NNP NNP IN CD NNS TO VB DT NNP POS JJ NN CC WRB TO VB PRP . Six-country talks on ending the North 's nuclear activities have been stalled for months , after Pyongyang missed a December 31 deadline to give a declaration of its nuclear programs in return for diplomatic concessions and energy aid . JJ NNS IN VBG DT NNP POS JJ NNS VBP VBN VBN IN NNS , IN NNP VBD DT NNP CD NN TO VB DT NN IN PRP$ JJ NNS IN NN IN JJ NNS CC NN NN . The six-party agreement was hammered out among the two Koreas , the United States , Japan , Russia and China . DT JJ NN VBD VBN RP IN DT CD NNP , DT NNP NNPS , NNP , NNP CC NNP . Diplomats from the United States , Japan and South Korea will meet in Seoul later this week to discuss restarting six-party talks on ending North Korea 's nuclear program . NNS IN DT NNP NNPS , NNP CC NNP NNP MD VB IN NNP RB DT NN TO VB VBG JJ NNS IN VBG NNP NNP POS JJ NN . South Korean Deputy Foreign Minister Song Min-soon will meet Saturday with Christopher Hill , the U.S. Ambassador to Seoul , and Kenichiro Sasae , the head of the Japanese Foreign Ministry 's Asia-Oceania bureau . NNP JJ NNP NNP NNP NNP NNP MD VB NNP IN NNP NNP , DT NNP NN TO NNP , CC NNP NNP , DT NN IN DT JJ NNP NNP POS NNP NN . North Korea announced on February 10 that it had produced nuclear weapons and was withdrawing from negotiations with the three nations , plus China and Russia , to end its nuclear program . NNP NNP VBD IN NNP CD IN PRP VBD VBN JJ NNS CC VBD VBG IN NNS IN DT CD NNS , CC NNP CC NNP , TO VB PRP$ JJ NN . But North Korean leader Kim Jong-il told a visiting Chinese diplomat this week that it will resume talks if conditions are right . CC JJ JJ NN NNP NNP VBD DT VBG JJ NN DT NN IN PRP MD VB NNS IN NNS VBP JJ . South Korea 's foreign minister said Wednesday that Pyongyang should return to the talks without setting any conditions . NNP NNP POS JJ NN VBD NNP IN NNP MD VB TO DT NNS IN VBG DT NNS . State media in Sudan say a leader of the Darfur rebel group that attacked the capital earlier this month has been arrested . NNP NNS IN NNP VBP DT NN IN DT NNP NN NN WDT VBD DT NN RBR DT NN VBZ VBN VBN . The reports Thursday say authorities have captured Abdel Aziz Ashr of the rebel Justice and Equality Movement , JEM . DT NNS NNP VBP NNS VBP VBN NNP NNP NNP IN DT NN NN CC NN NN , NNP . A state radio report says Ashr is the half-brother of top JEM leader Khalil Ibrahim . DT NN NN NN VBZ NNP VBZ DT NN IN JJ NNP NN NNP NNP . There were no immediate details on where or when the arrest took place . EX VBD DT JJ NNS IN WRB CC WRB DT NN VBD NN . The rebel group launched an attack on Khartoum and the neighboring city of Omdurman on May 10 after traveling across hundreds of kilometers of desert . DT NN NN VBD DT NN IN NNP CC DT JJ NN IN NNP IN NNP CD IN VBG IN NNS IN NNS IN NN . Soldiers pushed back the rebels in fighting that killed more than 200 people . NNS VBD RB DT NNS IN VBG DT VBD JJR IN CD NNS . The attack marked the first time rebels from Sudan 's western Darfur region reached the capital . DT NN VBD DT JJ NN NNS IN NNP POS JJ NNP NN VBD DT NN . The government has offered a reward of $ 2,50,000 for information leading to the capture of JEM leader Ibrahim . DT NN VBZ VBN DT NN IN $ CD IN NN VBG TO DT NN IN NNP NN NNP . Pakistani officials say at least 16 people killed by Afghan forces this week were Pakistani civilians and not Taleban fighters as previously claimed . JJ NNS VBP IN JJS CD NNS VBN IN JJ NNS DT NN VBD JJ NNS CC RB NNP NNS IN RB VBN . Officials said some of the victims ' bodies have been returned to the Pakistani border town of Chaman for funerals . NNS VBD DT IN DT NNS POS NNS VBP VBN VBN TO DT JJ NN NN IN NNP IN NNS . Residents of Chaman said the victims were local villagers on their way to a festival when they were killed . NNS IN NNP VBD DT NNS VBD JJ NNS IN PRP$ NN TO DT NN WRB PRP VBD VBN . The governor of Afghanistan 's Kandahar province , where the incident took place late Tuesday , said a team of investigators was sent to the area . DT NN IN NNP POS NNP NN , WRB DT NN VBD NN JJ NNP , VBD DT NN IN NNS VBD VBN TO DT NN . Earlier , an Afghan commander had said his soldiers killed at least 16 suspected Taleban militants after they crossed the border from neighboring Pakistan , near Spin Boldak . RB , DT JJ NN VBD VBN PRP$ NNS VBD IN JJS CD JJ NNP NNS IN PRP VBD DT NN IN VBG NNP , IN NNP NNP . He said that among the dead were two Taleban commanders believed to have organized several attacks . PRP VBD IN IN DT NN VBD CD NNP NNS VBN TO VB VBN JJ NNS . The international police organization , Interpol , has issued wanted notices for 16 more suspects in connection with the killing of a Hamas leader in Dubai . DT JJ NN NN , NNP , VBZ VBN JJ NNS IN CD JJR NNS IN NN IN DT NN IN DT NNP NN IN NNP . Monday 's announcement brought to 27 the total number of suspects named in the January assassination of Mahmoud al-Mabhouh . NNP POS NN VBD TO CD DT JJ NN IN NNS VBN IN DT NNP NN IN NNP NNP . Interpol says the notices were made at the request of Dubai authorities . NNP VBZ DT NNS VBD VBN IN DT NN IN NNP NNS . It says Dubai authorities have identified two teams of individuals linked to the murder . PRP VBZ NNP NNS VBP VBN CD NNS IN NNS VBN TO DT NN . The Interpol red notice allows Dubai to circulate its arrest warrant worldwide with the request that the wanted individuals be arrested and extradited for prosecution . DT NNP NN NN VBZ NNP TO VB PRP$ NN NN NN IN DT NN IN DT JJ NNS VB VBN CC VBN IN NN . The suspects in the case carried FALSE passports from Britain , Ireland , France , Germany and Australia . DT NNS IN DT NN VBD JJ NNS IN NNP , NNP , NNP , NNP CC NNP . Dubai authorities suspect Israel 's Mossad spy agency was responsible for the killing . NNP NNS VBP NNP POS NNP NN NN VBD JJ IN DT NN . Israel has neither confirmed nor denied having a role . NNP VBZ RB VBN CC VBN VBG DT NN . A well-known journalist in Gambia has been shot and killed in the capital , Banjul . DT JJ NN IN NNP VBZ VBN VBN CC VBN IN DT NN , NNP . Colleagues and family members say newspaper editor and news-agency correspondent Deyda Hydara died at the spot where he was gunned down after leaving work late Thursday . NNS CC NN NNS VBP NN NN CC NN NN NNP NNP VBD IN DT NN WRB PRP VBD VBN RP IN VBG NN RB NNP . No attacker was identified . DT NN VBD VBN . Mr. Hydara was an editor for the newspaper The Point and a correspondent for the French news agency , AFP . NNP NNP VBD DT NN IN DT NN DT NN CC DT NN IN DT JJ NN NN , NNP . Russian President Vladimir Putin indirectly has criticized Britain for its refusal to extradite people who Russia considers terrorist suspects . JJ NNP NNP NNP RB VBZ VBN NNP IN PRP$ NN TO VB NNS WP NNP VBZ JJ NNS . Mr. Putin spoke Wednesday in Moscow at a conference of European prosecutors . NNP NNP VBD NNP IN NNP IN DT NN IN JJ NNS . He said that he does not understand why people who are accused of terrorism are not extradited , and instead are granted political asylum . PRP VBD IN PRP VBZ RB VB WRB NNS WP VBP VBN IN NN VBP RB VBN , CC RB VBP VBN JJ NN . He did not specifically name Britain . PRP VBD RB RB NN NNP . He referred only to what he called certain countries that grant asylum to people accused of terrorism . PRP VBD RB TO WP PRP VBD JJ NNS WDT VBP NN TO NNS VBN IN NN . Mr. Putin also warned European officials against using human rights issues to promote their own political interests . NNP NNP RB VBD JJ NNS IN VBG JJ NNS NNS TO VB PRP$ JJ JJ NNS . Last month , Russia 's new prosecutor general said he is sending a team of specialists to Britain to deal with cases in which British courts have refused Russian extradition requests . JJ NN , NNP POS JJ NN NN VBD PRP VBZ VBG DT NN IN NNS TO NNP TO VB IN NNS IN WDT JJ NNS VBP VBN JJ NN NNS . Russia for years has sought the extradition of business tycoon Boris Berezovsky and Chechen separatist envoy Akhmed Zakayev . NNP IN NNS VBZ VBN DT NN IN NN NN NNP NNP CC JJ JJ NN VBN NNP . British authorities have granted both men political asylum . JJ NNS VBP VBN DT NNS JJ NN . Hong Kong health officials say a nine-month old girl has tested positive for a mild strain of the bird flu virus . NNP NNP NN NNS VBP DT JJ JJ NN VBZ VBN JJ IN DT JJ NN IN DT NN NN NN . Officials said Tuesday that it was most likely the baby was infected when she was taken to a food market that sold live poultry . NNS VBD NNP IN PRP VBD RBS JJ DT NN VBD VBN WRB PRP VBD VBN TO DT NN NN WDT VBD JJ NN . Doctors have isolated the baby at a local hospital , but say her condition is not that serious . NNS VBP VBN DT NN IN DT JJ NN , CC VBP PRP$ NN VBZ RB IN JJ . The head of Hong Kong 's Center for Health Protection , Thomas Tsang , says the baby 's case is the third time that the H9N2 strain of bird flu has been detected in humans . DT NN IN NNP NNP POS NNP IN NNP NNP , NNP NNP , VBZ DT NN POS NN VBZ DT JJ NN IN DT NNP NN IN NN NN VBZ VBN VBN IN NNS . Bird flu has many subtypes . NN NN VBZ JJ NNS . The more dangerous H5N1 strain of the virus has killed more than 160 people since 2003 . DT RBR JJ NNP NN IN DT NN VBZ VBN JJR IN CD NNS IN CD . Bird flu first appeared in Hong Kong in 1997 . NN NN RB VBD IN NNP NNP IN CD . The virus killed six people and led to the slaughter of more than a million birds . DT NN VBD CD NNS CC VBD TO DT NN IN JJR IN DT CD NNS . U.S. federal authorities have charged a young man with making a FALSE threat against professional football stadiums in seven U.S. cities . NNP JJ NNS VBP VBN DT JJ NN IN VBG DT JJ NN IN JJ NN NNS IN CD NNP NNS . Officials say the 20-year-old suspect will appear in court later Friday . NNS VBP DT JJ NN MD VB IN NN RB NNP . He is alleged to be connected to an Internet hoax threatening ' dirty bomb ' attacks on those stadiums . PRP VBZ VBN TO VB VBN TO DT NN NN VBG `` JJ NN `` NNS IN DT NNS . A ' dirty bomb ' is an explosive device combined with radioactive material . DT `` NN NN `` VBZ DT JJ NN VBN IN JJ NN . On Wednesday , the Department of Homeland Security warned National Football League officials in the seven cities about the threat , but also expressed doubts about its credibility . IN NNP , DT NNP IN NNP NNP VBD NNP NNP NNP NNS IN DT CD NNS IN DT NN , CC RB VBD NNS IN PRP$ NN . Thursday , federal investigators announced the threat turned out to be a hoax . NNP , JJ NNS VBD DT NN VBD RP TO VB DT NN . A message posted recently on a web site mentioned stadiums in New York , Miami , Atlanta , Seattle , Houston , Oakland and Cleveland . DT NN VBD RB IN DT NN NN VBN NNS IN NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP . NATO says a heavily armed Taliban commander has been killed in a shootout at a mosque in eastern Afghanistan . NNP VBZ DT RB JJ NNP NN VBZ VBN VBN IN DT NN IN DT NN IN JJ NNP . NATO officials say international and Afghan forces went Saturday to a compound in Wardak province to look for the commander , who fled to a nearby mosque as troops approached . NNP NNS VBP JJ CC JJ NNS VBD NNP TO DT NN IN NNP NN TO VB IN DT NN , WP VBD TO DT JJ NN IN NNS VBD . Security forces surrounded the mosque and ordered him to surrender . NN NNS VBN DT NN CC VBD PRP TO VB . But he refused to do so and opened fire as the shootout started . CC PRP VBD TO VB RB CC VBD NN IN DT NN VBD . Officials say the Taliban commander was armed with grenades and rounds of ammunition . NNS VBP DT NNP NN VBD VBN IN NNS CC NNS IN NN . He was wanted for buying weapons and components for explosive devices , and for helping plan attacks . PRP VBD VBN IN VBG NNS CC NNS IN JJ NNS , CC IN VBG NN NNS . NATO also says a U.S. soldier died Friday from a roadside bomb in southern Afghanistan . NNP RB VBZ DT NNP NN VBD NNP IN DT NN NN IN JJ NNP . In the Afghan capital , Kabul , a rocket landed Saturday near the Afghan Defense ministry . IN DT JJ NN , NNP , DT NN VBD NNP IN DT JJ NNP NN . It was unclear if there were casualties . PRP VBD JJ IN EX VBD NNS . Afghan officials say at least 12 civilian construction workers have been killed in airstrikes by U.S.-led coalition forces in eastern Afghanistan .. JJ NNS VBP IN JJS CD JJ NN NNS VBP VBN VBN IN NNS IN JJ NN NNS IN JJ NNP . The governor of eastern Nuristan province , Tamin Nuristani , says the workers were sleeping in tents when the attack happened earlier this week . DT NN IN JJ NNP NN , NNP NNP , VBZ DT NNS VBD VBG IN NNS WRB DT NN VBD RBR DT NN . He says U.S. military officials launched the airstrikes after receiving information that Taliban insurgents were in the the area . PRP VBZ NNP JJ NNS VBD DT NNS IN VBG NN IN NNP NNS VBD IN DT DT NN . Coalition officials have not confirmed that any airstrikes took place , but say they are looking into the incident . NN NNS VBP RB VBN IN DT NNS VBD NN , CC VBP PRP VBP VBG IN DT NN . The construction workers were building a road in the remote region . DT NN NNS VBD VBG DT NN IN DT JJ NN . Afghan President Hamid Karzai has repeatedly pleaded with NATO and coalition troops to use more caution before conducting airstrikes , which have killed a number of civilians . JJ NNP NNP NNP VBZ RB VBN IN NNP CC NN NNS TO VB JJR NN IN VBG NNS , WDT VBP VBN DT NN IN NNS . The U.N. 's International Atomic Energy Agency has approved the formation of a $ 150 million nuclear fuel ' bank ' aimed at reducing the number countries seeking to produce nuclear fuel . DT NNP POS NNP NNP NNP NNP VBZ VBN DT NN IN DT $ CD CD JJ NN `` NN `` VBN IN VBG DT NN NNS VBG TO VB JJ NN . The IAEA 's action Friday was motivated by a $ 50 million pledge by U.S. billionaire investor Warren Buffett , who says the bank is an investment in a safer world . DT NNP POS NN NNP VBD VBN IN DT $ CD CD NN IN NNP NN NN NNP NNP , WP VBZ DT NN VBZ DT NN IN DT JJR NN . The United States is among countries contributing to the fund . DT NNP NNPS VBZ IN NNS VBG TO DT NN . The intent of the fuel bank is to reduce the proliferation of nuclear weapons by providing an alternative to countries producing their own nuclear fuel or buying it from other countries . DT NN IN DT NN NN VBZ TO VB DT NN IN JJ NNS IN VBG DT NN TO NNS VBG PRP$ JJ JJ NN CC VBG PRP IN JJ NNS . The nuclear fuel bank system is limited to countries in good standing with the energy watchdog agency . DT JJ NN NN NN VBZ VBN TO NNS IN JJ NN IN DT NN NN NN . Buffett told The New York Times the spread of nuclear weaponry is the number one problem facing society , and that the fuel bank helps lower the risks . NNP VBD DT NNP NNP NNP DT NN IN JJ NN VBZ DT NN CD NN VBG NN , CC IN DT NN NN VBZ JJR DT NNS . Authorities in northwestern Pakistan say a minibus - hit by falling rock - has plunged into a ravine , killing 15 people . NNS IN JJ NNP VBP DT NN IN VBN IN VBG NN : VBZ VBN IN DT NN , VBG CD NNS . Four others survived with injuries . CD NNS VBD IN NNS . The authorities say the driver to lost control of the bus Sunday on the road to Mansehra from Balakot , a town devastated by last year 's earthquake . DT NNS VBP DT NN TO JJ NN IN DT NN NNP IN DT NN TO NNP IN NNP , DT NN VBN IN JJ NN POS NN . Landslides are common in the mountainous region , where the October 8 quake last year killed more than 73,000 people . NNS VBP JJ IN DT JJ NN , WRB DT NNP CD NN JJ NN VBD JJR IN CD NNS . Detained Burmese opposition leader Aung San Suu Kyi has requested a meeting with the chief of the country 's ruling military . VBN JJ NN NN NNP NNP NNP NNP VBZ VBN DT NN IN DT NN IN DT NN POS NN NN . The Nobel peace laureate wrote a letter to the military government on November 11 asking to meet reclusive Senior General Than Shwe . DT NNP NN NN VBD DT NN TO DT JJ NN IN NNP CD VBG TO VB JJ NNP NNP NNP NNP . On Sunday , U.S. President Barack Obama offered Burma the prospect of better ties with Washington if it pursues democratic reform and frees political prisoners , including Aung San Suu Kyi . IN NNP , NNP NNP NNP NNP VBD NNP DT NN IN JJR NNS IN NNP IN PRP VBZ JJ NN CC VBZ JJ NNS , VBG NNP NNP NNP NNP . Last month the opposition leader met with a minister from the ruling regime , and in September she made a formal offer to the government to help negotiate with Western countries to lift sanctions . JJ NN DT NN NN VBD IN DT NN IN DT NN NN , CC IN NNP PRP VBD DT JJ NN TO DT NN TO VB VB IN JJ NNS TO VB NNS . Aung San Suu Kyi has been under some sort of detention for 14 of the last 20 years . NNP NNP NNP NNP VBZ VBN IN DT NN IN NN IN CD IN DT JJ CD NNS . The United States says it looks forward to working with a new Pakistani government and President Pervez Musharraf . DT NNP NNPS VBZ PRP VBZ RB TO VBG IN DT JJ JJ NN CC NNP NNP NNP . State Department spokesman Richard Boucher said Thursday that the Bush administration will work with whoever emerges as Pakistan 's prime minister , as well as Mr. Musharraf , who now serves as Pakistan 's civilian president . NNP NNP NN NNP NNP VBD NNP IN DT NNP NN MD VB IN WP VBZ IN NNP POS JJ NN , RB RB IN NNP NNP , WP RB VBZ IN NNP POS JJ NN . The administration also confirmed Thursday that President Bush phoned Mr. Musharraf on Tuesday , a day after his party 's sweeping defeat in parliamentary elections . DT NN RB VBD NNP IN NNP NNP VBD NNP NNP IN NNP , DT NN IN PRP$ NN POS JJ NN IN JJ NNS . A spokeswoman for Mr. Bush declined to say what the two leaders discussed . DT NN IN NNP NNP VBD TO VB WP DT CD NNS VBD . President Musharraf is considered a key ally in the U.S.-led global war on terror . NNP NNP VBZ VBN DT JJ NN IN DT JJ JJ NN IN NN . With Mr. Musharraf 's political future in question , the U.S. has expressed hope this week that Pakistan 's emerging government will continue to be a partner in the fight against violent extremists . IN NNP NNP POS JJ NN IN NN , DT NNP VBZ VBN NN DT NN IN NNP POS VBG NN MD VB TO VB DT NN IN DT NN IN JJ NNS . Burma 's military rulers announced plans Thursday to hold a gem auction in October , despite international calls to boycott the sale . NNP POS JJ NNS VBD NNS NNP TO VB DT NN NN IN NNP , IN JJ NNS TO VB DT NN . Officials say jade , pearls , and precious gems will be among the lots on sale at the auction . NNS VBP NN , NNS , CC JJ NNS MD VB IN DT NNS IN NN IN DT NN . Burma 's last gem auction was held in June , just one month after Cyclone Nargis swept across the country 's south , leaving more than 1,30,000 people dead or missing . NNP POS JJ NN NN VBD VBN IN NNP , RB CD NN IN NNP NNP VBD IN DT NN POS NN , VBG JJR IN CD NNS JJ CC JJ . Burma is one of the main producers of jade and other gems , as well as the source of up to 90 percent of the world 's rubies . NNP VBZ CD IN DT JJ NNS IN NN CC JJ NNS , RB RB IN DT NN IN RB TO CD NN IN DT NN POS NNS . Gem auctions are a major revenue earner for Burma 's military government . NNP NNS VBP DT JJ NN NN IN NNP POS JJ NN . Jewelry companies and human rights groups have urged buyers to boycott Burmese gems to protest rights violations in the country . NN NNS CC JJ NNS NNS VBP VBN NNS TO VB JJ NNS TO VB NNS NNS IN DT NN . In July , the United States passed legislation banning the import of gems from Burma through third-party countries . IN NNP , DT NNP NNPS VBD NN VBG DT NN IN NNS IN NNP IN JJ NNS . Brazilian police say at least 16 people have been killed in a series of attacks on police stations and public buses in Rio de Janeiro . JJ NNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN IN NNS IN NN NNS CC JJ NNS IN NNP NNP NNP . Officials said gunmen stopped one bus on a highway in the city , robbed the passengers and then torched the vehicle . NNS VBD NNS VBD CD NN IN DT NN IN DT NN , VBN DT NNS CC RB VBD DT NN . They said at least six bodies were found on the charred bus . PRP VBD IN JJS CD NNS VBD VBN IN DT JJ NN . Gunmen also opened fire on several police posts and buildings , killing two policemen . NNS RB VBD NN IN JJ NNS NNS CC NNS , VBG CD NNS . Police said the motive for the apparently coordinated overnight attacks was not immediately clear . NNS VBD DT NN IN DT RB VBN JJ NNS VBD RB RB JJ . Some officials said it may be linked to anti-drug efforts in the city . DT NNS VBD PRP MD VB VBN TO JJ NNS IN DT NN . Some 200 people in Sao Paulo died earlier this year in a series of attacks by criminal gangs . DT CD NNS IN NNP NNP VBD RBR DT NN IN DT NN IN NNS IN JJ NNS . Former president Bill Clinton has criticized the U.S.-led war in Iraq as a ' big mistake , ' saying officials failed to plan for what would follow the ouster of Saddam Hussein . JJ NN NNP NNP VBZ VBN DT JJ NN IN NNP IN DT `` JJ NN , `` VBG NNS VBD TO VB IN WP MD VB DT NN IN NNP NNP . Speaking to students at the American University in Dubai , Mr. Clinton said it is a good thing that Saddam is gone , but he does n't agree with what was done . VBG TO NNS IN DT NNP NNP IN NNP , NNP NNP VBD PRP VBZ DT JJ NN IN NNP VBZ VBN , CC PRP VBZ RB VB IN WP VBD VBN . He said U.S. officials made several errors , such as not sending enough troops and dismantling Iraq 's authority structure . PRP VBD NNP NNS VBD JJ NNS , JJ IN RB VBG JJ NNS CC VBG NNP POS NN NN . Mr. Clinton added that U.S.-led forces failed to secure the country 's borders , allowing foreign terrorists to enter Iraq . NNP NNP VBD IN JJ NNS VBD TO VB DT NN POS NNS , VBG JJ NNS TO VB NNP . The Bush administration in recent days has defended the war , noting that many current critics had warned that Saddam was a threat before the war started . DT NNP NN IN JJ NNS VBZ VBN DT NN , VBG IN JJ JJ NNS VBD VBN IN NNP VBD DT NN IN DT NN VBD . Tuesday , Defense Secretary Donald Rumsfeld said , Mr. Clinton , as president , had warned that Saddam was planning to use weapons of mass destruction . NNP , NNP NNP NNP NNP VBD , NNP NNP , IN NN , VBD VBN IN NNP VBD VBG TO VB NNS IN NN NN . Iraqi police say at least 13 people were killed when gunmen attacked a bus carrying workers to a U.S. base in Baquba Tuesday . JJ NNS VBP IN JJS CD NNS VBD VBN WRB NNS VBD DT NN VBG NNS TO DT NNP NN IN NNP NNP . Police say the assailants riding in two cars blocked the bus and opened fire , killing the driver and nine workers . NNS VBP DT NNS VBG IN CD NNS VBD DT NN CC VBD NN , VBG DT NN CC CD NNS . Three other civilians were killed when the bus rammed their car . CD JJ NNS VBD VBN WRB DT NN VBD PRP$ NN . Some 170 people have been killed in violence across Iraq in the past week , including at least 14 in a string of attacks Monday DT CD NNS VBP VBN VBN IN NN IN NNP IN DT JJ NN , VBG IN JJS CD IN DT NN IN NNS NNP The chairman of the U.S. Joint Chiefs of Staff , General Richard Myers , said Monday the recent wave attacks will not derail the drafting of an Iraqi constitution and the election of a new government later this year . DT NN IN DT NNP NNP NNP IN NNP , NNP NNP NNP , VBD NNP DT JJ NN NNS MD RB VB DT NN IN DT JJ NN CC DT NN IN DT JJ NN RB DT NN . Iraqi President Jalal Talabani said today the committee working to draft the constitution is making ' good progress , ' and that the document could be ready ahead of the August 15 deadline . JJ NNP NNP NNP VBD NN DT NN VBG TO VB DT NN VBZ VBG `` JJ NN , `` CC IN DT NN MD VB JJ RB IN DT NNP CD NN . Hundreds of Afghan security troops backed by U.S. forces have killed at least 32 suspected Taleban rebels in a district capital of Kandahar province . NNS IN JJ NN NNS VBN IN NNP NNS VBP VBN IN JJS CD JJ NNP NNS IN DT NN NN IN NNP NN . Rebels overran the Mian Nishin district last week , taking 31 police hostage and later killing eight of them . NNS VBP DT JJ NNP NN JJ NN , VBG CD NN NN CC RB VBG CD IN PRP . Militants say they have released the remaining 23 hostages . NNS VBP PRP VBP VBN DT VBG CD NNS . Before dawn Tuesday , some 400 Afghan troops entered the area , capturing 15 suspected militants and killing at least 11 others . IN NN NNP , DT CD JJ NNS VBD DT NN , VBG CD JJ NNS CC VBG IN JJS CD NNS . U.S. airstrikes in the area killed some 21 other suspected militants . NNP NNS IN DT NN VBD DT CD JJ JJ NNS . Elsewhere in Kandahar province , United Nations and Afghan officials say militants killed an Afghan election worker in an ambush . RB IN NNP NN , NNP NNPS CC JJ NNS VBP NNS VBD DT JJ NN NN IN DT NN . It was the second killing of an election worker ahead of the September parliamentary election . PRP VBD DT JJ NN IN DT NN NN RB IN DT NNP JJ NN . Taiwan 's ruling party is hoping to win a huge upset in presidential elections on Saturday just weeks after the opposition candidate seemed poised to easily win . NNP POS NN NN VBZ VBG TO VB DT JJ NN IN JJ NNS IN NNP RB NNS IN DT NN NN VBD VBN TO RB VB . The wide lead by opposition candidate Ma Ying-jeou over ruling party challenger Frank Hsieh has narrowed since China 's crackdown on Tibet . DT JJ NN IN NN NN NNP NNP IN VBG NN NN NNP NNP VBZ VBN IN NNP POS NN IN NNP . Ma , who heads the Nationalist Party , has promised to improve relations with China and establish a common market with Taiwan 's communist neighbor . NNP , WP VBZ DT NNP NNP , VBZ VBN TO VB NNS IN NNP CC VB DT JJ NN IN NNP POS JJ NN . Hsieh , of the ruling Democratic Progressive Party , says China views Taiwan as it does Tibet and has warned that the island 's democracy could be in jeopardy if Ma is elected . NNP , IN DT NN JJ NNP NNP , VBZ NNP VBZ NNP IN PRP VBZ NNP CC VBZ VBN IN DT NN POS NN MD VB IN NN IN NNP VBZ VBN . Taiwan and China split amid a civil war in 1949 , but Beijing still considers the island part of its territory and has threatened military force to reclaim it . NNP CC NNP VBD IN DT JJ NN IN CD , CC NNP RB VBZ DT NN NN IN PRP$ NN CC VBZ VBN JJ NN TO VB PRP . Ma has accused Hsieh of exploiting the Tibet issue for political gain . NNP VBZ VBN NNP IN VBG DT NNP NN IN JJ NN . Malawi 's constitutional court has stopped impeachment proceedings against President Bingu wa Mutharika , pending a review of the parliamentary guidelines on how to remove him . NNP POS JJ NN VBZ VBN NN NNS IN NNP NNP NNP NNP , VBG DT NN IN DT JJ NNS IN WRB TO VB PRP . The court 's ruling Wednesday comes after a private lawyer challenged the legality of the impeachment motion against the president . DT NN POS NN NNP VBZ IN DT JJ NN VBD DT NN IN DT NN NN IN DT NN . He said Mr. Mutharika is arguing that the procedures , which were to begin Thursday , are unconstitutional and are not in accordance with the rules of natural justice . PRP VBD NNP NNP VBZ VBG IN DT NNS , WDT VBD TO VB NNP , VBP JJ CC VBP RB IN NN IN DT NNS IN JJ NN . Malawi 's parliament last week introduced the impeachment motion against Mr. Mutharika , charging him with misuse of public funds in setting up his own party . NNP POS NN JJ NN VBD DT NN NN IN NNP NNP , VBG PRP IN NN IN JJ NNS IN VBG RP PRP$ JJ NN . Mr. Mutharika - a former economist - has won praise from donor nations and aid agencies for his efforts to adopt economic reforms and stamp out corruption . NNP NNP IN DT JJ NN : VBZ VBN NN IN NN NNS CC NN NNS IN PRP$ NNS TO VB JJ NNS CC VB RP NN . A Hungarian government spokesman says the deadly strain of bird flu virus has been found in southern Hungary . DT JJ NN NN VBZ DT JJ NN IN NN NN NN VBZ VBN VBN IN JJ NNP . The spokesman , Andras Batiz , said Tuesday three wild swans found last week have tested positive for the H5N1 virus . DT NN , NNP NNP , VBD NNP CD JJ NNS VBN JJ NN VBP VBN JJ IN DT NNP NN . A British laboratory confirmed the test results . DT JJ NN VBD DT NN NNS . German veterinary officials Tuesday confirmed 22 new cases of flu in birds on the island of Ruegen . JJ JJ NNS NNP VBD CD JJ NNS IN NN IN NNS IN DT NN IN NNP . The German government announced Monday the virus had spread to the mainland . DT JJ NN VBD NNP DT NN VBD VBN TO DT NN . 103 cases have now been found in wild birds in Germany . CD NNS VBP RB VBN VBN IN JJ NNS IN NNP . Troops have been deployed to control the outbreak . NNS VBP VBN VBN TO VB DT NN . In Malaysia Tuesday , officials began culling birds and launched house-to-house inspections for sick people a day after the nation 's first outbreak in more than a year . IN NNP NNP , NNS VBD VBG NNS CC VBD NN NNS IN JJ NNS DT NN IN DT NN POS JJ NN IN JJR IN DT NN . No human infections have been reported . DT JJ NNS VBP VBN VBN . And in India , officials wrapped up the culling of thousands of birds to control the latest outbreak in Maharastra state . CC IN NNP , NNS VBD RP DT NN IN NNS IN NNS TO VB DT JJS NN IN NNP NN . Senegal says its security forces have conducted ' minimal ' acts of torture , but says the country is and always has been committed to investigating and prosecuting such acts . NNP VBZ PRP$ NN NNS VBP VBN `` JJ `` NNS IN NN , CC VBZ DT NN VBZ CC RB VBZ VBN VBN TO VBG CC VBG JJ NNS . Responding to a report by Amnesty International , government spokesman Moustapha Guirassy said Thursday that Senegal respects the rule of law and works to preserve and defend human rights . VBG TO DT NN IN NNP NNP , NN NN NNP NNP VBD NNP IN NNP VBZ DT NN IN NN CC VBZ TO VB CC VB JJ NNS . In its report , the rights group said 12 years of research showed that Senegal 's security forces have electrocuted , burned , beaten , and asphyxiated prisoners . IN PRP$ NN , DT NNS NN VBD CD NNS IN NN VBD IN NNP POS NN NNS VBP VBN , VBN , NN , CC VBD NNS . Researcher Salvatore Sagues said at least six prisoners have died in Senegalese custody in the last three years . NN NNP NNP VBD IN JJS CD NNS VBP VBN IN JJ NN IN DT JJ CD NNS . He said that due to a requirement for government permission , cases against police and soldiers are rarely prosecuted . PRP VBD IN JJ TO DT NN IN NN NN , NNS IN NNS CC NNS VBP RB VBN . Guirassy Thursday denied there is impunity for officers . NNP NNP VBD EX VBZ NN IN NNS . He said prosecutions must proceed slowly while a thorough investigation is made . PRP VBD NNS MD VB RB IN DT JJ NN VBZ VBN . A strong earthquake that rattled southeastern Turkey Monday has injured at least 37 people while causing minor damage to buildings . DT JJ NN WDT VBD JJ NNP NNP VBZ VBN IN JJS CD NNS IN VBG JJ NN TO NNS . The Kandill Observatory in Istanbul says a preliminary estimate of the quake 's magnitude was 5.7 . DT NNP NNP IN NNP VBZ DT JJ NN IN DT NN POS NN VBD CD . It was centered near the town of Karliova in Bingol province . PRP VBD VBN IN DT NN IN NNP IN NNP NN . Turkish officials have sent rescue teams , tents and blankets to the area . JJ NNS VBP VBN NN NNS , NNS CC NNS TO DT NN . Earthquakes are frequent in Turkey , which sits atop a major tectonic faultline . NNS VBP JJ IN NNP , WDT VBZ IN DT JJ JJ NN . A powerful quake that hit northwestern Turkey in 1999 killed more than 17,000 people . DT JJ NN WDT VBD JJ NNP IN CD VBD JJR IN CD NNS . Zimbabwe 's High Court has ruled that 64 suspected mercenaries may appeal their jail terms on convictions related to a coup plot in oil-rich Equatorial Guinea . NNP POS NNP NNP VBZ VBN IN CD JJ NNS MD VB PRP$ NN NNS IN NNS VBN TO DT NN NN IN JJ NNP NNP . A court judge , Chenembiri Bhunu , granted their petition to appeal to Zimbabwe 's Supreme Court . DT NN NN , NNP NNP , VBD PRP$ NN TO VB TO NNP POS NNP NNP . No date has been set . DT NN VBZ VBN VBN . The 64 men , mostly South Africans , were convicted in September on minor immigration and aviation charges . DT CD NNS , RB NNP NNS , VBD VBN IN NNP IN JJ NN CC NN NNS . Sentences ranged from 12 to 16 months in prison . NNS VBD IN CD CC CD NNS IN NN . They were among 70 men arrested last March when their plane landed in Harare . PRP VBD IN CD NNS VBN JJ NNP WRB PRP$ NN VBD IN NNP . Zimbabwe accused the group of involvement in a plot to oust the president of Equatorial Guinea , Teodoro Obiang Nguema . NNP VBD DT NN IN NN IN DT NN TO VB DT NN IN NNP NNP , NNP NNP NNP . The defendants denied the charges , insisting they were headed to Congo to guard mining installations . DT NNS VBD DT NNS , VBG PRP VBD VBN TO NNP TO VB NN NNS . Last month , a court in Equatorial Guinea handed down stiff prison sentences to some 24 suspects convicted of involvement in the foiled plot . JJ NN , DT NN IN NNP NNP VBD RP JJ NN NNS TO DT CD NNS VBN IN NN IN DT VBN NN . Poland says it will re-route plans for a major highway away from one of Europe 's last unspoiled wetlands . NNP VBZ PRP MD VB NNS IN DT JJ NN RB IN CD IN NNP POS JJ JJ NNS . Environment Minister Maciej Nowicki said Tuesday the new route is cheaper than the original plans and makes the highway just two kilometers longer . NNP NNP NNP NNP VBD NNP DT JJ NN VBZ JJR IN DT JJ NNS CC VBZ DT NN RB CD NNS RB . He says he will ask the European Union to stop its lawsuit aimed at forcing Poland to cancel the highway . PRP VBZ PRP MD VB DT NNP NNP TO VB PRP$ NN VBN IN VBG NNP TO VB DT NN . Poland had originally planned to build its section of the Via Baltica on pillars through the Rospuda Valley - a pristine peat bog home to rare plants and eagles , wolves , and lynx . NNP VBD RB VBN TO VB PRP$ NN IN DT NNP NNP IN NNS IN DT NNP NNP IN DT JJ NN NN NN TO JJ NNS CC NNS , NNS , CC NN . The plans outraged environmentalists and brought legal action from the EU . DT NNS VBD NNS CC VBD JJ NN IN DT NNP . Residents of the northern town of Augustow are demanding a highway , saying heavy truck traffic is destroying their city . NNS IN DT JJ NN IN NNP VBP VBG DT NN , VBG JJ NN NN VBZ VBG PRP$ NN . The Via Baltica will link Poland with Finland . DT NNP NNP MD VB NNP IN NNP . A 37-year-old woman has become the 13th person in Egypt to die of the H5N1 strain of bird flu . DT JJ NN VBZ VBN DT JJ NN IN NNP TO VB IN DT NNP NN IN NN NN . Nadia Mohammed Abdel Hafez died in a hospital in Cairo early Friday . NNP NNP NNP NNP VBD IN DT NN IN NNP JJ NNP . Health officials initially reported that her condition was stable and that she was being treated with the drug Tamiflu . NNP NNS RB VBD IN PRP$ NN VBD JJ CC IN PRP VBD VBG VBN IN DT NN NNP . The woman raised poultry in her home in the province of Fayoum , south of Cairo , where a teenage girl died of bird flu earlier this month . DT NN VBD NN IN PRP$ NN IN DT NN IN NNP , NN IN NNP , WRB DT NN NN VBD IN NN NN RBR DT NN . Health officials announced separately Friday that a five-year-old boy has tested positive for bird flu . NNP NNS VBD RB NNP IN DT JJ NN VBZ VBN JJ IN NN NN . He is the 22nd confirmed human case of bird flu in Egypt . PRP VBZ DT NN VBD JJ NN IN NN NN IN NNP . Egypt has become the largest cluster of human cases of bird flu outside of Asia , where the disease originated . NNP VBZ VBN DT JJS NN IN JJ NNS IN NN NN IN IN NNP , WRB DT NN VBN . Cases have been discovered in 19 of Egypt 's 26 provinces . NNS VBP VBN VBN IN CD IN NNP POS CD NNS . Vietnam and the United States have signed an agreement that will allow U.S. companies to work in Vietnam to develop atomic power for energy . NNP CC DT NNP NNPS VBP VBN DT NN WDT MD VB NNP NNS TO VB IN NNP TO VB JJ NN IN NN . US Ambassador Michael Michalak described Tuesday 's agreement as an important moment in bilateral relations between the two nations , adding that it is a key step in advancing non-proliferation goals . NNP NNP NNP NNP VBD NNP POS NN IN DT JJ NN IN JJ NNS IN DT CD NNS , VBG IN PRP VBZ DT JJ NN IN VBG JJ NNS . In November , Vietnam approved plans to build the country 's first two nuclear power plants in the south central province of Ninh Thuan . IN NNP , NNP VBD NNS TO VB DT NN POS JJ CD JJ NN NNS IN DT JJ JJ NN IN NNP NNP . Media reports say Vietnam signed a deal with a Russian firm to build the first plant . NNS NNS VBP NNP VBD DT NN IN DT JJ NN TO VB DT JJ NN . This year marks the 15th anniversary of the re-establishment of diplomatic relations between the United States and Vietnam , following the Vietnam War . DT NN VBZ DT JJ NN IN DT NN IN JJ NNS IN DT NNP NNPS CC NNP , VBG DT NNP NNP . A U.S. Congressional report says it finds no overall improvement in human rights conditions in China during the past year , and that citizens who challenge state controls continue to face severe repression . DT NNP JJ NN VBZ PRP VBZ DT JJ NN IN JJ NNS NNS IN NNP IN DT JJ NN , CC IN NNS WP VBP NN NNS VBP TO VB JJ NN . In its annual report released Tuesday , the Congressional-Executive Commission on China says Beijing continues to pursue certain judicial and criminal justice reforms that have potential to improve human rights . IN PRP$ JJ NN VBN NNP , DT JJ NN IN NNP VBZ NNP VBZ TO VB JJ JJ CC JJ NN NNS WDT VBP NN TO VB JJ NNS . But it says these steps are ' clouded by new detentions and government policies designed to protect the Communist Party 's rule . ' CC PRP VBZ DT NNS VBP `` VBN IN JJ NNS CC NN NNS VBN TO VB DT NNP NNP POS NN . `` The commission says China continues to harass , abuse and detain religious believers who practice their faith outside state-controlled religious venues , in particular the Muslim Uighur minority . DT NN VBZ NNP VBZ TO VB , NN CC NN JJ NNS WP VB PRP$ NN IN JJ JJ NNS , IN JJ DT NNP NNP NN . The report calls on President Bush and Congress to urge Chinese officials not to use the global war against terrorism as a pretext to suppress minorities ' rights . DT NN VBZ IN NNP NNP CC NNP TO VB JJ NNS RB TO VB DT JJ NN IN NN IN DT NN TO VB NNS POS NNS . Prosecutors in the Netherlands have filed new charges against a Dutch-born Islamic extremist who was convicted of killing filmmaker Theo van Gogh . NNS IN DT NNP VBP VBN JJ NNS IN DT JJ JJ NN WP VBD VBN IN VBG NN NNP NNP NNP . Mohammed Bouyeri , 27 , and 12 other defendants appeared in a Dutch court Tuesday to face charges of membership in a terrorist movement authorities have called the ' Hofstad Group . ' NNP NNP , CD , CC CD JJ NNS VBD IN DT JJ NN NNP TO VB NNS IN NN IN DT JJ NN NNS VBP VBN DT `` NNP NNP . `` The 12 defendants were arrested shortly after Van Gogh 's killing . DT CD NNS VBD VBN RB IN NNP NNP POS NN . Lawyers for Bouyeri say the prosecution wants to punish their client further , adding that he has already received the maximum sentence of life in prison . NNS IN NNP VBP DT NN VBZ TO VB PRP$ NN RB , VBG IN PRP VBZ RB VBN DT JJ NN IN NN IN NN . The new charges carry a maximum 15-year prison term . DT JJ NNS VBP DT JJ JJ NN NN . Dutch authorities believe Van Gogh 's murder was a response to his criticism of Islam and its treatment of women in his film ' Submission . ' JJ NNS VBP NNP NNP POS NN VBD DT NN TO PRP$ NN IN NNP CC PRP$ NN IN NNS IN PRP$ NN `` NNP . `` Fresh fighting broke out early Saturday in northeastern Burma after days of clashes between government troops and ethnic rebels . JJ NN VBD RP RB NNP IN JJ NNP IN NNS IN NNS IN NN NNS CC JJ NNS . Thousands of people have fled to the border town of Nansan in China 's Yunnan province this month to escape clashes in Kokang in Burma 's Shan state , following the deployment of government troops in the area . NNS IN NNS VBP VBN TO DT NN NN IN NNP IN NNP POS NNP NN DT NN TO VB NNS IN NNP IN NNP POS NNP NN , VBG DT NN IN NN NNS IN DT NN . The UN High Commissioner for Refugees says up to 30,000 people have fled into China . DT NNP NNP NNP IN NNP VBZ RP TO CD NNS VBP VBN IN NNP . The Chinese Red Cross told the Chinese Daily newspaper that one person was killed and several were injured Friday when someone threw a bomb across the Chinese border . DT JJ NNP NNP VBD DT JJ JJ NN IN CD NN VBD VBN CC JJ VBD VBN NNP WRB DT VBD DT NN IN DT JJ NN . China has called on Burma to maintain stability in the border region and urged more measures to protect the security and legal rights of Chinese citizens there . NNP VBZ VBN IN NNP TO VB NN IN DT NN NN CC VBD JJR NNS TO VB DT NN CC JJ NNS IN JJ NNS RB . The Afghan defense ministry says a top Taleban commander and several of his fighters have been killed in clashes with U.S.-led coalition forces in southern Afghanistan . DT JJ NN NN VBZ DT NN NNP NN CC NN IN PRP$ NNS VBP VBN VBN IN NNS IN JJ NN NNS IN JJ NNP . The ministry says the fighting , which also involved air support , took place early Thursday in Helmand province - a known Taleban stronghold . DT NN VBZ DT NN , WDT RB VBD NN NN , VBD NN RB NNP IN NNP NN IN DT VBN NNP NN . It identified the dead commander , Mullah Brader , as a relative and close associate of Taleban chief Mullah Omar . PRP VBD DT JJ NN , NNP NNP , IN DT JJ CC JJ NN IN NNP NN NNP NNP . The U.S. military in Afghanistan has not commented . DT NNP NN IN NNP VBZ RB VBN . Elsewhere in southern Afghanistan , one NATO soldier and an Afghan interpreter were killed while on patrol in the insurgency-hit southern part of the country RB IN JJ NNP , CD NNP NN CC DT JJ NN VBD VBN IN IN NN IN DT JJ JJ NN IN DT NN Thursday . NNP . A NATO statement said two other soldiers were wounded . DT NNP NN VBD CD JJ NNS VBD VBN . It did not give details of the incident . PRP VBD RB VB NNS IN DT NN . Two U.S. senators are calling for an investigation into a suspected terrorist 's claims that he was physically abused while he was held in secret CIA prisons . CD NNP NNS VBP VBG IN DT NN IN DT JJ NN POS NNS IN PRP VBD RB VBN IN PRP VBD VBN IN JJ NNP NNS . Democrat Carl Levin and Republican Lindsey Graham observed the March 10 military hearing at Guantanamo Bay , Cuba for Khalid Sheikh Mohammed . NNP NNP NNP CC NNP NNP NNP VBD DT NNP CD JJ NN IN NNP NNP , NNP IN NNP NNP NNP . The suspected al-Qaida operative confessed to planning the September 11 , 2001 terrorist attacks on the United States , and several other terrorist plots . DT JJ NNP NN VBD TO VBG DT NNP CD , CD JJ NNS IN DT NNP NNPS , CC JJ JJ JJ NNS . During the hearing , Mohammed issued a written statement alleging he had been mistreated before he was transferred to Guantanamo . IN DT NN , NNP VBD DT JJ NN VBG PRP VBD VBN VBN IN PRP VBD VBN TO NNP . In a joint statement issued Friday , Levin and Graham said it ' would reflect poorly ' on the United States if Mohammed 's allegations were not investigated . IN DT JJ NN VBN NNP , NNP CC NNP VBD PRP `` MD VB RB `` IN DT NNP NNPS IN NNP POS NNS VBD RB VBN . Military officials in charge of the hearing say the allegations were being submitted to the appropriate authorities . JJ NNS IN NN IN DT NN VBP DT NNS VBD VBG VBN TO DT JJ NNS . Pakistani President Pervez Musharraf has said in an interview with the Financial Times that he will go ahead with plans to build a natural gas pipeline to Iran , despite U.S. pressure to scrap the project . JJ NNP NNP NNP VBZ VBN IN DT NN IN DT NNP NNP IN PRP MD VB RB IN NNS TO VB DT JJ NN NN TO NNP , IN NNP NN TO VB DT NN . In an article published Thursday , Mr. Musharraf tells the newspaper that Pakistan needs the pipeline to provide sufficient energy for industrial growth and foreign investment . IN DT NN VBN NNP , NNP NNP VBZ DT NN IN NNP VBZ DT NN TO VB JJ NN IN JJ NN CC JJ NN . He says no country can order Pakistan to abandon the pipeline . PRP VBZ DT NN MD VB NNP TO VB DT NN . But Mr. Musharraf also says that anyone who wants the Iran pipeline stopped should pay compensation , leaving open the possibility Washington could compensate Pakistan for giving up the plan . CC NNP NNP RB VBZ IN DT WP VBZ DT NNP NN VBN MD VB NN , VBG JJ DT NN NNP MD VB NNP IN VBG RP DT NN . Earlier this month , the United Sates said it opposes the building of a natural gas pipeline linking Iran with Pakistan and India . RBR DT NN , DT NNP NNP VBD PRP VBZ DT NN IN DT JJ NN NN VBG NNP IN NNP CC NNP . Taiwan President Chen Shui-bian says he will make an important policy statement in his National Day address on Oct. 10 , aimed at soothing tensions with China . NNP NNP NNP NNP VBZ PRP MD VB DT JJ NN NN IN PRP$ NNP NNP NN IN NNP CD , VBN IN VBG NNS IN NNP . Mr. Chen told a visiting Japanese delegation Monday that his address would be positive and constructive . NNP NNP VBD DT VBG JJ NN NNP IN PRP$ NN MD VB JJ CC JJ . He gave no further details , but said he hoped the message would help narrow the gap between Beijing and Taipei . PRP VBD DT JJ NNS , CC VBD PRP VBD DT NN MD VB VB DT NN IN NNP CC NNP . Mr. Chen has said he wants to revise Taiwan 's constitution , a move China has criticized as a dangerous step towards formal independence . NNP NNP VBZ VBN PRP VBZ TO VB NNP POS NN , DT NN NNP VBZ VBN IN DT JJ NN IN JJ NN . The mainland has threatened to use force to crush any moves towards separatism . DT NN VBZ VBN TO VB NN TO VB DT NNS IN NN . Normalization talks between the two sides have been frozen since 1999 , when Mr. Chen 's predecessor , President Lee Teng-hui , defined bilateral relations as being between two states . NN NNS IN DT CD NNS VBP VBN VBN IN CD , WRB NNP NNP POS NN , NNP NNP NNP , VBD JJ NNS IN VBG IN CD NNS . The United Nations mission in Congo says it has spotted fresh camps and well-equipped soldiers it believes are from Rwanda 's armed forces . DT NNP NNP NN IN NNP VBZ PRP VBZ VBN JJ NNS CC JJ NNS PRP VBZ VBP IN NNP POS JJ NNS . A mission spokesman says the fighters were sighted in new aerial photographs taken in eastern Congo . DT NN NN VBZ DT NNS VBD VBN IN JJ JJ NNS VBN IN JJ NNP . Wednesday , U.N. officials in Congo reported sighting 100 fighters believed to be Rwandan troops . NNP , NNP NNS IN NNP VBD VBG CD NNS VBN TO VB JJ NNS . Rwanda 's government has refused to confirm or deny sending its troops into Democratic Republic of Congo . NNP POS NN VBZ VBN TO VB CC VB VBG PRP$ NNS IN JJ NNP IN NNP . Rwandan President Paul Kagame has said any invasion into Congo would target Rwandan Hutu rebels and not Congolese forces . JJ NNP NNP NNP VBZ VBN DT NN IN NNP MD VB JJ NNP NNS CC RB JJ NNS . He has blamed the Congolese government and the United Nations for failing to disarm Hutu militiamen who fled across the border after perpetrating Rwanda 's 1994 genocide . PRP VBZ VBN DT JJ NN CC DT NNP NNPS IN VBG TO VB NNP NNS WP VBD IN DT NN IN VBG NNP POS CD NN . The U.N. Security Council is due to hold an emergency session Thursday to discuss the crisis . DT NNP NNP NNP VBZ JJ TO VB DT NN NN NNP TO VB DT NN . The United States and the European Union are calling on Congo and Rwanda to resolve the situation diplomatically . DT NNP NNPS CC DT NNP NNP VBP VBG IN NNP CC NNP TO VB DT NN RB . The European Union and several of its member states have congratulated Viktor Yushchenko on his victory in the Ukrainian presidential election . DT NNP NNP CC JJ IN PRP$ NN NNS VBP VBN NNP NNP IN PRP$ NN IN DT JJ JJ NN . In a letter to Mr. Yushchenko Tuesday , German Chancellor Gerhard Schroeder expressed optimism that Ukraine will continue what he called its transition toward the rule of law and a market economy . IN DT NN TO NNP NNP NNP , JJ NNP NNP NNP VBD NN IN NNP MD VB WP PRP VBD PRP$ NN IN DT NN IN NN CC DT NN NN . Lithuanian President Valdas Adamkus congratulated Mr. Yushchenko in a telephone conversation . JJ NNP NNP NNP VBD NNP NNP IN DT NN NN . In Paris , the foreign ministry said France and its European Union partners are determined to support democracy and modernization in Ukraine . IN NNP , DT JJ NN VBD NNP CC PRP$ NNP NNP NNS VBP VBN TO VB NN CC NN IN NNP . The EU 's Dutch presidency , meanwhile , urged Ukrainians to work to maintain the country 's internal cohesion . DT NNP POS JJ NN , RB , VBD NNS TO VB TO VB DT NN POS JJ NN . Meanwhile , Russia has questioned the objectivity of monitors for the Organization for Security and Cooperation in Europe . RB , NNP VBZ VBN DT NN IN NNS IN DT NNP IN NNP CC NNP IN NNP . That organization characterized last month 's presidential election re-run as flawed , while saying that Sunday 's poll vastly improved upon the last vote . DT NN VBD JJ NN POS JJ NN NN IN JJ , IN VBG IN NNP POS NN RB VBD IN DT JJ NN . Russia backed Mr. Yushchenko 's opponent NNP VBD NNP NNP POS NN Authorities in India say at least 17 policemen were killed Saturday when Maoist rebels blew up their bus in northern India . NNS IN NNP VBP IN JJS CD NNS VBD VBN NNP WRB NNP NNS VBD RP PRP$ NN IN JJ NNP . Police officials say rebels detonated a landmine as the police bus approached a bridge in India 's northern state of Uttar Pradesh . NN NNS VBP NNS VBD DT NN IN DT NN NN VBD DT NN IN NNP POS JJ NN IN NNP NNP . Maoist rebels , who claim to be fighting for the rights of landless peasants , operate in southern and eastern India . NNP NNS , WP VBP TO VB VBG IN DT NNS IN JJ NNS , VBP IN JJ CC JJ NNP . They often attack the police through ambushes and landmines . PRP RB VBP DT NN IN NNS CC NNS . They are also active in Nepal , which borders both Uttar Pradesh and neighboring Bihar state . PRP VBP RB JJ IN NNP , WDT VBZ DT NNP NNP CC JJ NNP NN . European Union foreign ministers are meeting in Brussels to discuss support for an emerging Palestinian unity government that could replace the current Hamas-led one . NNP NNP JJ NNS VBP VBG IN NNP TO VB NN IN DT VBG JJ NN NN WDT MD VB DT JJ JJ NN . The ministers Friday are to debate whether to support a Palestinian plan to form a new government with the ruling Hamas movement and President Mahmoud Abbas ' Fatah party . DT NNS NNP VBP TO VB IN TO VB DT JJ NN TO VB DT JJ NN IN DT NN NNP NN CC NNP NNP NNP POS NNP NN . Finland 's foreign minister , Erkki Tuomioja , says the EU should view the new Palestinian government as an opportunity to renew the Middle East peace process . NNP POS JJ NN , NNP NNP , VBZ DT NNP MD VB DT JJ JJ NN IN DT NN TO VB DT NNP NNP NN NN . Finland holds the rotating EU presidency . NNP VBZ DT VBG NNP NN . The European Union and the United States cut off aid to the Hamas-led government because it refuses to recognize Israel , renounce violence and accept past peace accords . DT NNP NNP CC DT NNP NNPS VBD RP NN TO DT JJ NN IN PRP VBZ TO VB NNP , NN NN CC VB JJ NN NNS . Washington has cautioned against lifting those restrictions in the absence of details on the policies of the new unity government . NNP VBZ VBN IN VBG DT NNS IN DT NN IN NNS IN DT NNS IN DT JJ NN NN . Kyrgyzstan 's interim government has announced the country will hold parliamentary elections on October 10 . NNP POS JJ NN VBZ VBN DT NN MD VB JJ NNS IN NNP CD . President Roza Otunbayeva signed a decree Tuesday , ordering the interim government to take measures to uphold law and order and provide security ahead of the vote . NNP NNP NNP VBD DT NN NNP , VBG DT JJ NN TO VB NNS TO VB NN CC NN CC VB NN RB IN DT NN . Voters overwhelmingly endorsed a new constitution in a June referendum , clearing the way for the October elections . NNS RB VBD DT JJ NN IN DT NNP NN , VBG DT NN IN DT NNP NNS . Officials said more than 90 percent of voters backed the measure that gives greater power to the parliament . NNS VBD JJR IN CD NN IN NNS VBD DT NN WDT VBZ JJR NN TO DT NN . The interim government has struggled to maintain stability since former president Kurmanbek Bakiyev was deposed in a deadly April uprising . DT JJ NN VBZ VBN TO VB NN IN JJ NN NNP NNP VBD VBN IN DT JJ NNP NN . A wave of ethnic clashes in June killed more than 350 people in the country 's south . DT NN IN JJ NNS IN NNP VBD JJR IN CD NNS IN DT NN POS NN . Interim leader Roza Otunbayeva is set to serve as president until the end of 2011 . NNP NN NNP NNP VBZ VBN TO VB IN NN IN DT NN IN CD . A roadside bomb has killed five people in southern Afghanistan , including four children . DT NN NN VBZ VBN CD NNS IN JJ NNP , VBG CD NNS . The other victim was a woman . DT JJ NN VBD DT NN . Local officials in Kandahar province say the blast occurred in the Spin Boldak district Friday as the five were on their way home from a shrine . JJ NNS IN NNP NN VBP DT NN VBD IN DT NNP NNP NN NNP IN DT CD VBD IN PRP$ NN NN IN DT NN . Afghan civilians have increasingly been caught in the middle as violence rises amid an influx of U.S. and other foreign forces fighting the Taliban . JJ NNS VBP RB VBN VBN IN DT NN IN NN VBZ IN DT NN IN NNP CC JJ JJ NNS VBG DT NNP . A United Nations report this week said the number of civilians killed in war-related violence reached its highest level last year since the U.S.-led invasion in 2001 . DT NNP NNPS NN DT NN VBD DT NN IN NNS VBN IN JJ NN VBD PRP$ JJS NN JJ NN IN DT JJ NN IN CD . In a separate development , a rocket hit the central part of the capital Kabul Friday , near Western embassies . IN DT JJ NN , DT NN VBD DT JJ NN IN DT NN NNP NNP , IN JJ NNS . Police rushed to the scene , but no other information was immediately available . NNS VBD TO DT NN , CC DT JJ NN VBD RB JJ . The Organization of American States is trying to elect a new secretary general . DT NNP IN NNP NNPS VBZ VBG TO VB DT JJ NN NN . Several rounds of voting have ended in a tie between candidates from Chile and Mexico . JJ NNS IN NN VBP VBN IN DT NN IN NNS IN NNP CC NNP . Panama 's foreign minister says Chilean Interior Minister Jose Miguel Insulza and Mexican Foreign Minister Luis Ernesto Derbez received 17 votes each during five rounds of voting . NNP POS JJ NN VBZ JJ NNP NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBD CD NNS DT IN CD NNS IN NN . Eighteen votes are needed for a win . CD NNS VBP VBN IN DT NN . OAS diplomats recessed for consultations earlier Monday after the first three rounds of voting at the organization 's Washington headquarters . NNP NNS VBD IN NNS JJR NNP IN DT JJ CD NNS IN NN IN DT NN POS NNP NN . They are again taking a short break . PRP VBP RB VBG DT JJ NN . The two men are running to succeed Miguel Angel Rodriguez , who abruptly resigned in October after only two weeks on the job because of corruption charges in his native Costa Rica . DT CD NNS VBP VBG TO VB NNP NNP NNP , WP RB VBD IN NNP IN RB CD NNS IN DT NN IN IN NN NNS IN PRP$ JJ NNP NNP . A third candidate with strong U.S. backing , former El Salvador president Francisco Flores , dropped out of the race last Friday . DT JJ NN IN JJ NNP NN , JJ NNP NNP NN NNP NNP , VBD IN IN DT NN JJ NNP . New data shows the recession has eased in Europe , where the two largest economies , Germany and France , returned to growth after a period of decline . NNP NNS VBZ DT NN VBZ VBN IN NNP , WRB DT CD JJS NNS , NNP CC NNP , VBD TO NN IN DT NN IN NN . Some analysts say the new figures may show the worst of the recession has passed . DT NNS VBP DT JJ NNS MD VB DT JJS IN DT NN VBZ VBN . For the 16 nations that use the euro , the sum of all the goods and services produced shrank by 0.1 percent in April , May and June . IN DT CD NNS WDT VBP DT NN , DT NN IN PDT DT NNS CC NNS VBD JJ IN CD NN IN NNP , NNP CC NNP . Those gross domestic product figures are a significant improvement over the previous quarter , and better than most economists had predicted . DT JJ JJ NN NNS VBP DT JJ NN IN DT JJ NN , CC JJR IN JJS NNS VBD VBN . The GDP in Germany and France grew 0.3 percent in the second quarter , a sharp improvement over the declines registered in the early months of the year . DT NN IN NNP CC NNP VBD CD NN IN DT JJ NN , DT JJ NN IN DT NNS VBN IN DT JJ NNS IN DT NN . Pakistani officials say an accidental blast has killed five militants near the Afghan border , but residents dispute their account . JJ NNS VBP DT JJ NN VBZ VBN CD NNS IN DT JJ NN , CC NNS VBP PRP$ NN . Officials said three foreign militants - possibly from Uzbekistan - and two local Pakistanis were killed when they accidentally detonated explosives stored in a home . NNS VBD CD JJ NNS : RB IN NNP : CC CD JJ NNS VBD VBN WRB PRP RB VBD NNS VBN IN DT NN . But local residents in Pakistan 's restive northwest tribal region blamed the military , saying assailants fired missiles into the house , in Haisori village . CC JJ NNS IN NNP POS JJ JJ JJ NN VBD DT NN , VBG NNS VBD NNS IN DT NN , IN NNP NN . They also said the two Pakistanis killed were children . PRP RB VBD DT CD NNS VBN VBD NNS . Several hundred people later gathered at the nearby village of Mir Ali to denounce the alleged attack . JJ CD NNS RB VBD IN DT JJ NN IN NNP NNP TO VB DT JJ NN . Tens of thousands of Pakistani forces are deployed in the rugged , semi-autonomous North Waziristan region , searching for foreign militants . NNS IN NNS IN JJ NNS VBP VBN IN DT JJ , JJ NNP NNP NN , VBG IN JJ NNS . The Rwandan army says it has arrested the brother of the former army chief of staff on charges of ' destabilization . ' DT JJ NN VBZ PRP VBZ VBN DT NN IN DT JJ NN NN IN NN IN NNS IN `` NN . `` Lieutenant Colonel Rugigana Ngabo is the brother of General Faustin Kayumba Nyamwasa , who was chief of staff until 2001 and went into exile in South Africa in February . NNP NNP NNP NNP VBZ DT NN IN NNP NNP NNP NNP , WP VBD NN IN NN IN CD CC VBD IN NN IN NNP NNP IN NNP . The army said Ngabo was arrested Friday arrest had nothing to do with his relationship to Nyamwasa . DT NN VBD NNP VBD VBN NNP NN VBD DT TO VB IN PRP$ NN TO NNP . Military officials said they are still investigating Ngabo 's activities . NNP NNS VBD PRP VBP RB VBG NNP POS NNS . Nyamwasa is a leading critic of Rwandan President Paul Kagame . NNP VBZ DT VBG NN IN JJ NNP NNP NNP . The country 's chief prosecutor accused Nyamwasa and the other officer of being involved in three grenade attacks in the capital , Kigali , in February . DT NN POS JJ NN VBN NNP CC DT JJ NN IN VBG VBN IN CD NN NNS IN DT NN , NNP , IN NNP . Two people were killed and 30 others were wounded . CD NNS VBD VBN CC CD NNS VBD VBN . He denies any involvement . PRP VBZ DT NN . The Canadian government and U.S. philanthropist Bill Gates have announced a multimillion-dollar initiative to combat the AIDS virus . DT JJ NN CC NNP NN NNP NNP VBP VBN DT JJ NN TO VB DT NNP NN . Canadian Prime Minister Stephen Harper and Gates announced the Canadian HIV Vaccine Initiative in Ottawa , Canada 's capital , Tuesday . JJ NNP NNP NNP NNP CC NNP VBD DT JJ NNP NNP NNP IN NNP , NNP POS NN , NNP . Mr. Harper says the Canadian government will contribute about $ 95 million and the Bill and Melinda Gates Foundation is expected to contribute about $ 24 million . NNP NNP VBZ DT JJ NN MD VB IN $ CD CD CC DT NNP CC NNP NNP NNP VBZ VBN TO VB IN $ CD CD . The money will be used to build a new research facility in Canada that will focus on producing a vaccine to help fight HIV , the virus that causes AIDS . DT NN MD VB VBN TO VB DT JJ NN NN IN NNP WDT MD VB IN VBG DT NN TO VB VB NNP , DT NN WDT VBZ NNP . The United Nations estimates close to three million people died from AIDS in 2006 . DT NNP NNP NNS RB TO CD CD NNS VBD IN NNP IN CD . Forbes magazine says Bill Gates , the chairman of Microsoft , is the world 's richest man , with a fortune estimated at $ 53 billion . NNP NN VBZ NNP NNP , DT NN IN NNP , VBZ DT NN POS JJS NN , IN DT NN VBN IN $ CD CD . Britain has suspended a planned increase in aid to Ethiopia over post-election violence that has left at least 36 people dead . NNP VBZ VBN DT JJ NN IN NN TO NNP IN JJ NN WDT VBZ VBN IN JJS CD NNS JJ . Britain 's International Development Minister Hilary Benn says $ 35 million in aid has been put on hold while Britain waits to see how the situation in Ethiopia develops . NNP POS NNP NNP NNP NNP NNP VBZ $ CD CD IN NN VBZ VBN VBN IN NN IN NNP VBZ TO VB WRB DT NN IN NNP VBZ . Mr. Benn , who is visiting Ethiopia , says he expressed Britain 's concern about the violence to Prime Minister Meles Zenawi . NNP NNP , WP VBZ VBG NNP , VBZ PRP VBD NNP POS NN IN DT NN TO NNP NNP NNP NNP . Last week , Ethiopian security forces opened fire on protesters who said the ruling party fixed parliamentary elections last month . JJ NN , JJ NN NNS VBD NN IN NNS WP VBD DT VBG NN VBN JJ NNS JJ NN . Human Rights Watch said Wednesday that police have arrested thousands of people across the country in response to the protests . NNP NNP NNP VBD NNP IN NNS VBP VBN NNS IN NNS IN DT NN IN NN TO DT NNS . Preliminary election results show the ruling party has won a majority of seats , but the opposition also has claimed victory . JJ NN NNS VBP DT NN NN VBZ VBN DT NN IN NNS , CC DT NN RB VBZ VBN NN . U.S. Secretary of State Condoleezza Rice is in Bahrain to meet with regional officials , after taking an unannounced one-day trip to Iraq Friday . NNP NNP IN NNP NNP NNP VBZ IN NNP TO VB IN JJ NNS , IN VBG DT JJ JJ NN TO NNP NNP . During her visit to Baghdad and Mosul , Ms. Rice urged Iraqi citizens to put sectarian differences aside ahead of the December 15 parliamentary election . IN PRP$ NN TO NNP CC NNP , NNP NNP VBD JJ NNS TO VB JJ NNS RB RB IN DT NNP CD JJ NN . Ms. Rice also held talks with Prime Minister Ibrahim al-Jaafari and Sunni leaders . NNP NNP RB VBD NNS IN NNP NNP NNP NNP CC NNP NNS . She called for greater participation in the election , saying the future of Iraq is in many ways key to the future of the Middle East . PRP VBD IN JJR NN IN DT NN , VBG DT NN IN NNP VBZ IN JJ NNS JJ TO DT NN IN DT NNP NNP . Elsewhere in Baghdad , gunmen fired on the compound of the Embassy of Oman , killing two people . RB IN NNP , NNS VBD IN DT NN IN DT NNP IN NNP , VBG CD NNS . Meanwhile , a statement from ousted dictator Saddam Hussein 's Baath party says top military aide , Izzat Ibrahim al-Douri , is dead . RB , DT NN IN JJ NN NNP NNP POS NNP NN VBZ JJ JJ NN , NNP NNP NNP , VBZ JJ . There has been no independent confirmation . EX VBZ VBN DT JJ NN . Bangladesh has raised the minimum wage for its garment industry workers following months of violent protests over low salaries and poor working conditions . NNP VBZ VBN DT NN NN IN PRP$ NN NN NNS VBG NNS IN JJ NNS IN JJ NNS CC JJ VBG NNS . The 80-percent pay hike was announced Tuesday following an emergency meeting of the country 's wage board committee . DT JJ NN NN VBD VBN NNP VBG DT NN NN IN DT NN POS NN NN NN . The increase raised the minimum monthly wage for garment workers from $ 25 to $ 43 . DT NN VBD DT JJ JJ NN IN NN NNS IN $ CD TO $ CD . Bangladesh has been the scene of massive protests by textile workers calling for higher pay . NNP VBZ VBN DT NN IN JJ NNS IN JJ NNS VBG IN JJR NN . Workers were demanding that the minimum salary be increased to $ 72 a month . NNS VBD VBG IN DT JJ NN VB VBN TO $ CD DT NN . Textile factories accounted for 80 percent of Bangladesh 's annual export earnings last year , with many producing clothes for several global brands . JJ NNS VBD IN CD NN IN NNP POS JJ NN NNS JJ NN , IN JJ VBG NNS IN JJ JJ NNS . Prime Minister Sheikh Hasina had criticized the country 's clothing manufacturers saying the wages were not only insufficient but ' inhuman . ' NNP NNP NNP NNP VBD VBN DT NN POS NN NNS VBG DT NNS VBD RB RB JJ CC `` NN . `` A Russian spaceship is set to dock at the International Space Station Saturday to deliver badly needed food to the two-man crew . DT JJ NN VBZ VBN TO NN IN DT NNP NNP NNP NNP TO VB RB VBN NN TO DT JJ NN . The crew members have been forced to ration their food , after U.S. and Russian space officials discovered their supplies were quickly running out . DT NN NNS VBP VBN VBN TO VB PRP$ NN , IN NNP CC JJ NN NNS VBD PRP$ NNS VBD RB VBG RP . The Russian cargo vessel is carrying more than two tons of food , water and equipment . DT JJ NN NN VBZ VBG JJR IN CD NNS IN NN , NN CC NN . It is scheduled to arrive at the space station at around 23.30 UTC . PRP VBZ VBN TO VB IN DT NN NN IN IN CD NNP . NASA officials say Russian cosmonaut Salizhan Sharipov and U.S. astronaut Leroy Chiao will be forced to return to Earth if the cargo vessel does not successfully dock at the station . NNP NNS VBP JJ NN NNP NNP CC NNP NN NNP NNP MD VB VBN TO VB TO NNP IN DT NN NN VBZ RB RB VB IN DT NN . In addition to food , the vessel will be bringing the men Christmas presents from their family and friends . IN NN TO NN , DT NN MD VB VBG DT NNS NNP NNS IN PRP$ NN CC NNS . Police in Nepal have detained more than 20 demonstrators who were demanding the restoration of democracy in the Himalayan nation . NNS IN NNP VBP VBN JJR IN CD NNS WP VBD VBG DT NN IN NN IN DT JJ NN . Some 200 human rights activists , lawyers , journalists and professors rallied in the capital , Kathmandu , Monday chanting slogans against King Gyanendra , who seized absolute power on February 1 . DT CD JJ NNS NNS , NNS , NNS CC NNS VBD IN DT NN , NNP , NNP VBG NNS IN NNP NNP , WP VBD JJ NN IN NNP CD . Witnesses say a line of police officers blocked the protesters from entering a restricted zone , and when they tried to force their way through , police arrested about two dozen of them . NNS VBP DT NN IN NN NNS VBD DT NNS IN VBG DT JJ NN , CC WRB PRP VBD TO VB PRP$ NN IN , NNS VBN IN CD NN IN PRP . Student groups and political parties are among a number of organizations that have held protests against the king 's move . NN NNS CC JJ NNS VBP IN DT NN IN NNS WDT VBP VBN NNS IN DT NN POS NN . The king says he needed to seize full political power to curb corruption and quell a communist insurgency that has claimed more than 11,500 lives . DT NN VBZ PRP VBD TO VB JJ JJ NN TO VB NN CC VB DT NN NN WDT VBZ VBN JJR IN CD NNS . Prosecutors at the war crimes trial of former Yugoslav President Slobodan Milosevic have shown a videotape of the 1995 execution of six Bosnian Muslims allegedly by Serbian forces . NNS IN DT NN NNS NN IN JJ JJ NNP NNP NNP VBP VBN DT NN IN DT CD NN IN CD JJ NNPS RB IN JJ NNS . Prosecutor Geoffrey Nice said Wednesday a paramilitary unit of the Serbian Interior Minister called the ' Scorpions ' unit carried out the shootings . NNP NNP NNP VBD NNP DT JJ NN IN DT JJ NNP NNP VBD DT `` NNPS `` NN VBD IN DT NNS . The tape was shot during the massacre of more than 7,000 Muslim males at Srebrenica . DT NN VBD VBN IN DT NN IN JJR IN CD NN NNS IN NNP . Mr. Milosevic is on trial at the Hague War Crimes Tribunal in connection with the war in Bosnia-Herzegovina in the 1990s . NNP NNP VBZ IN NN IN DT NNP NNP NNP NNP IN NN IN DT NN IN NNP IN DT NNS . Also Wednesday , a former mayor of the Bosnian town of Zvornik turned himself in to a war crimes court in Serbia . RB NNP , DT JJ NN IN DT JJ NN IN NNP VBD PRP IN TO DT NN NNS NN IN NNP . Branko Grujic has been charged with helping deport more than 1,800 Muslims to Hungary and the killings of 15 Muslims in 1992 . NNP NNP VBZ VBN VBN IN VBG NN JJR IN CD NNPS TO NNP CC DT NNS IN CD NNS IN CD . Iranian President Mahmoud Ahmadinejad has criticized Paul the octopus , who gained fame by correctly predicting the outcome of eight World Cup matches . JJ NNP NNP NNP VBZ VBN NNP DT NN , WP VBD NN IN RB VBG DT NN IN CD NNP NNP NNS . The Iranian leader called Paul a symbol of decadence and decay in the Western world . DT JJ NN VBD NNP DT NN IN NN CC NN IN DT JJ NN . Mr. Ahmadinejad also said those who believe in a psychic octopus can not be leaders of nations like Iran ' that aspire to human perfection . ' NNP NNP RB VBD DT WP VBP IN DT JJ NN MD RB VB NNS IN NNS IN NNP `` WDT VBP TO JJ NN . `` Iran 's state-run media said the president discussed the octopus during a speech to a youth festival in Tehran on Friday . NNP POS JJ NNS VBD DT NN VBD DT NN IN DT NN TO DT NN NN IN NNP IN NNP . Paul lives at the Oberhausen Sea Life Center in Germany . NNP VBZ IN DT NNP NNP NNP NNP IN NNP . The eight-legged sea creature picked the outcome of this year 's World Cup matches in South Africa by choosing to eat from a box of mussels labeled with the flag of the winning team . DT JJ NN NN VBD DT NN IN DT NN POS NNP NNP NNS IN NNP NNP IN VBG TO VB IN DT NN IN NNS VBN IN DT NN IN DT VBG NN . Paul correctly predicted the winner of all seven of Germany 's matches . NNP RB VBD DT NN IN DT CD IN NNP POS NNS . He also picked Spain to defeat the Netherlands in the final . PRP RB VBD NNP TO VB DT NNP IN DT JJ . Foreigners have again become the targets of kidnappers in Iraq . NNS VBP RB VBN DT NNS IN NNS IN NNP . Iraqi officials in Balad , north of Baghdad , say six Iranian pilgrims were abducted Monday . JJ NNS IN NNP , NN IN NNP , VBP CD JJ NNS VBD VBN NNP . They say two women were released Tuesday , but the fate of the remaining four pilgrims is still not clear . PRP VBP CD NNS VBD VBN NNP , CC DT NN IN DT VBG CD NNS VBZ RB RB JJ . They were the second group of Shi'ite pilgrims targeted Monday . PRP VBD DT JJ NN IN NNP NNS VBD NNP . Three British pilgrims were killed during a bus ambush south of the capital . CD JJ NNS VBD VBN IN DT NN JJ NN IN DT NN . Meanwhile , Germany has called for the immediate release of one of its missing nationals . RB , NNP VBZ VBN IN DT JJ NN IN CD IN PRP$ JJ NNS . Archaeologist Susanne Osthoff and her driver disappeared Friday . NN NNP NNP CC PRP$ NN VBD NNP . The aid group , Christian Peacemaker Teams , confirms that four of its employees - said to be an American , a Briton and two Canadians - were kidnapped in Baghdad Saturday . DT NN NN , NNP NNP NNP , VBZ IN CD IN PRP$ NNS : VBN TO VB DT NN , DT NN CC CD NNS : VBD VBN IN NNP NNP . Elsewhere , the U.S. military reports that a roadside bomb blast killed two American soldiers north of Baghdad today . RB , DT NNP JJ NNS IN DT NN NN NN VBD CD JJ NNS NN IN NNP NN . A wave of insurgent attacks across Iraq killed at least 12 people , mostly Iraqi policemen Monday . DT NN IN JJ NNS IN NNP VBD IN JJS CD NNS , RB JJ NNS NNP . In Baghdad , five bombs killed six Iraqis , including three policemen . IN NNP , CD NNS VBN CD NNS , VBG CD NNS . North of the city , in Diyala province , gunmen killed five policemen at a checkpoint near Baquba . NNP IN DT NN , IN NNP NN , NNS VBD CD NNS IN DT NN IN NNP . Six of the attackers were killed . CD IN DT NNS VBD VBN . Separately , the province 's governor survived a bomb attack that killed his bodyguard . RB , DT NN POS NN VBD DT NN NN WDT VBD PRP$ NN . Meanwhile , Ukrainian President Viktor Yushchenko traveled to Iraq Monday to visit Ukrainian troops before they withdraw from the country . RB , JJ NNP NNP NNP VBD TO NNP NNP TO VB JJ NNS IN PRP VB IN DT NN . Officials say he plans to attend a ceremony where Ukrainian troops will hand over equipment to Iraqi forces . NNS VBP PRP VBZ TO VB DT NN WRB JJ NNS MD VB IN NN TO JJ NNS . And The New York Times reports that a Shi'ite alliance has refused to give 10 of its parliament seats to Sunni Arabs . CC DT NNP NNP NNP VBZ IN DT NNP NN VBZ VBN TO VB CD IN PRP$ NN NNS TO NNP NNS . Sunni Arabs complained of fraud in the December 15 election and asked for the seats to defuse tensions . NNP NNS VBD IN NN IN DT NNP CD NN CC VBD IN DT NNS TO VB NNS . New Orleans Mayor Ray Nagin has unveiled a plan to rebuild following last year 's devastation by Hurricane Katrina , saying residents will be allowed to reconstruct their homes in all parts of the city . NNP NNP NNP NNP NNP VBZ VBN DT NN TO VB VBG JJ NN POS NN IN NNP NNP , VBG NNS MD VB VBN TO VB PRP$ NNS IN DT NNS IN DT NN . Nagin 's announcement followed public consultations on rebuilding proposals made by an advisory commission in January . NNP POS NN VBD JJ NNS IN NN NNS VBN IN DT JJ NN IN NNP . The commission had suggested converting parts of ruined neighborhoods into parks and imposing a ban on building permits in some areas . DT NN VBD VBN VBG NNS IN JJ NNS IN NNS CC VBG DT NN IN NN NNS IN DT NNS . Nagin says he rejected such ideas , which were criticized by many residents . NNP VBZ PRP VBD JJ NNS , WDT VBD VBN IN JJ NNS . The mayor says residents can now make their own decisions about reconstructing their homes . DT NN VBZ NNS MD RB VB PRP$ JJ NNS IN VBG PRP$ NNS . But Nagin warned that some New Orleans neighborhoods will remain prone to flooding , and people who rebuild there will do so at their own risk . CC NNP VBD IN DT NNP NNP NNS MD VB JJ TO NN , CC NNS WP VB EX MD VB RB IN PRP$ JJ NN . Nagin 's revival plan also calls for restructuring New Orleans ' government for greater efficiency and improving public transportation . NNP POS NN NN RB VBZ IN VBG NNP NNP POS NN IN JJR NN CC VBG JJ NN . He is using the plans as part of his campaign for re-election . PRP VBZ VBG DT NNS IN NN IN PRP$ NN IN NN . Chinese officials say at least 27 workers are confirmed dead after a gas explosion tore through a coal mine in China 's northwest Shaanxi province . JJ NNS VBP IN JJS CD NNS VBP VBN JJ IN DT NN NN VBD IN DT NN NN IN NNP POS JJS NNP NN . China 's official Xinhua news agency says 39 miners were working at the Wayaobao mine in Zichang county when the blast happened Saturday . NNP POS JJ NNP NN NN VBZ CD NNS VBD VBG IN DT NNP NN IN NNP NN WRB DT NN VBD NNP . Five workers remain missing . CD NNS VBP JJ . Seven miners escaped with minor injuries . CD NNS VBD IN JJ NNS . China 's mines are the world 's deadliest . NNP POS NNS VBP DT NN POS JJS . Thousands of workers are killed each year in fires , explosions , floods and cave-ins , despite government efforts to improve safety . NNS IN NNS VBP VBN DT NN IN NNS , NNS , NNS CC NNS , IN NN NNS TO VB NN . Americans are celebrating Columbus Day Monday . NNS VBP VBG NNP NNP NNP . Columbus Day is a federal holiday observed on the second Monday in October , marking the anniversary of arrival of Christopher Columbus to the Americas . NNP NNP VBZ DT JJ NN VBD IN DT JJ NNP IN NNP , VBG DT NN IN NN IN NNP NNP TO DT NNPS . Columbus , an Italian explorer sailing under the Spanish flag , led four expeditions to the New World , but never accomplished his original goal -- to find a western ocean route to Asia . NNP , DT JJ NN NN IN DT JJ NN , VBD CD NNS TO DT NNP NNP , CC RB VBN PRP$ JJ NN : TO VB DT JJ NN NN TO NNP . Instead , Columbus ushered in a new era in world history by opening up the Americas to exploration . RB , NNP VBD IN DT JJ NN IN NN NN IN VBG RP DT NNPS TO NN . Columbus Day became a U.S. holiday in 1971 . NNP NNP VBD DT NNP NN IN CD . It is generally observed by banks , the bond market , the Postal Service and other federal agencies , along with most state government offices and some school districts . PRP VBZ RB VBN IN NNS , DT NN NN , DT NNP NNP CC JJ JJ NNS , IN IN JJS NN NN NNS CC DT NN NNS . However , many businesses and stock exchanges remain open . RB , JJ NNS CC NN NNS VBP JJ . There is a trend among some states away from observing the holiday . EX VBZ DT NN IN DT NNS RB IN VBG DT NN . Afghanistan 's interior ministry says suspected Taleban insurgents have ambushed a police convoy in southern Helmand province , killing 19 policemen . NNP POS JJ NN VBZ VBN NNP NNS VBP VBN DT NN NN IN JJ NNP NN , VBG CD NNS . A ministry spokesman said a senior provincial police official , Amanullah Khan , was among the dead . DT NN NN VBD DT JJ JJ NN NN , NNP NNP , VBD IN DT NN . He said four officers were wounded in the attack late Monday and at least five others are missing . PRP VBD CD NNS VBD VBN IN DT NN JJ NNP CC IN JJS CD NNS VBP VBG . The convoy was traveling along a remote mountain road when dozens of militants ambushed it , triggering a gunbattle that lasted for several hours . DT NN VBD VBG IN DT JJ NN NN WRB NNS IN NNS VBD PRP , VBG DT NN WDT VBD IN JJ NNS . The spokesman blamed the attack on ' enemies of peace , ' a term frequently used by Afghan officials to refer to Taleban rebels . DT NN VBD DT NN IN `` NNS IN NN , `` DT NN RB VBN IN JJ NNS TO VB TO NNP NNS . Earlier Monday , insurgents carried out two suicide bombings in the nearby southern city of Kandahar . RBR NNP , NNS VBD RP CD NN NNS IN DT JJ JJ NN IN NNP . Three people , including a former factional commander , Agha Shah , were killed in one of the attacks . CD NNS , VBG DT JJ JJ NN , NNP NNP , VBD VBN IN CD IN DT NNS . The number of Chinese using the Internet has risen sharply to include almost a third of the population . DT NN IN NNS VBG DT NNP VBZ VBN RB TO VB RB DT NN IN DT NN . A government-backed agency , the China Internet Network Information Center , reported Thursday that the number of Internet users has grown by 36 million since it last reported the official tally in late 2009 . DT JJ NN , DT NNP NNP NNP NNP NNP , VBD NNP IN DT NN IN NN NNS VBZ VBN IN CD CD IN PRP JJ VBD DT JJ NN IN JJ CD . It said about 277 million people go online using mobile devices such as cell phones . PRP VBD IN CD CD NNS VBP JJ VBG JJ NNS JJ IN NN NNS . China 's government , which keeps tight control on traditional media , has tried to control online information as well , through censorship and Web monitoring . NNP POS NN , WDT VBZ JJ NN IN JJ NNS , VBZ VBN TO VB JJ NN IN RB , IN NN CC NNP NN . Beijing 's attempt to control what people read and say on the Internet was highlighted by its recent dispute with the Google company , which provides a popular search engine . NNP POS NN TO VB WP NNS VBP CC VBP IN DT NN VBD VBN IN PRP$ JJ NN IN DT NNP NN , WDT VBZ DT JJ NN NN . The American company was told its license to operate in China would not be renewed unless it stopped its practice of automatically transferring Chinese users to an uncensored website in Hong Kong . DT JJ NN VBD VBN PRP$ NN TO VB IN NNP MD RB VB VBN IN PRP VBD PRP$ NN IN RB VBG JJ NNS TO DT JJ NN IN NNP NNP . Burma says it is not interested in discussing possible democratic reforms at this week 's meeting of Asian and African leaders in Indonesia . NNP VBZ PRP VBZ RB JJ IN VBG JJ JJ NNS IN DT NN POS NN IN NNP CC JJ NNS IN NNP . Speaking in Jakarta Thursday , after meetings with Indonesian officials , Burmese Foreign Minister Nyan Win said his delegation came to discuss the summit , not Burma 's internal affairs . VBG IN NNP NNP , IN NNS IN JJ NNS , JJ NNP NNP NNP NNP VBD PRP$ NN VBD TO VB DT NN , RB NNP POS JJ NNS . He said Rangoon would also not be pressured into giving up its turn at leading the southeast Asian regional bloc , ASEAN . PRP VBD NNP MD RB RB VB VBN IN VBG RP PRP$ NN IN VBG DT NN JJ JJ NN , NNP . Rangoon has faced growing international demands to step aside from ASEAN 's rotating leadership because of Burma 's human rights record . NNP VBZ VBN VBG JJ NNS TO VB RB IN NNP POS VBG NN IN IN NNP POS JJ NNS NN . Thailand 's foreign minister Kantathi Supamongkhon told reporters Thursday , Burmese officials have assured him they are aware of the world 's concerns and that Burma will not be an obstacle to ASEAN unity . NNP POS JJ NN NNP NNP VBD NNS NNP , JJ NNS VBP VBN PRP PRP VBP JJ IN DT NN POS NNS CC IN NNP MD RB VB DT NN TO VB NN . The Thai official says he is convinced the chairmanship situation will be resolved in a very good way . DT JJ NN VBZ PRP VBZ VBN DT NN NN MD VB VBN IN DT RB JJ NN . South Koreans are now counting the days to their country 's historic first astronaut in space , set to launch aboard a Russian Soyuz rocket on 8 April . NNP NNS VBP RB VBG DT NNS TO PRP$ NN POS JJ JJ NN IN NN , VBN TO VB IN DT JJ NN NN IN CD NNP . The mission is full of landmarks : it will be the first time a South Korean woman has headed into orbit , and it will also be the first time that ' kimchi ' - that spicy , garlicky cabbage dish that epitomizes South Korea - will be served at the zero-gravity dinner table . DT NN VBZ JJ IN NNS IN PRP MD VB DT JJ NN DT JJ JJ NN VBZ VBN IN NN , CC PRP MD RB VB DT JJ NN IN `` NN `` : IN NN , JJ NN NN WDT VBZ NNP NNP : MD VB VBN IN DT NN NN NN . VOA Seoul Correspondent Kurt Achin headed to the high-tech kitchen where kimchi was getting a pre-launch makeover . NNP NNP NN NNP NNP VBD IN DT JJ NN WRB NNS VBD VBG DT JJ NN . The head of the United Nations nuclear watchdog agency says he hopes to be able to go to North Korea to discuss resuming inspections of its nuclear facilities . DT NN IN DT NNP NNP JJ NN NN VBZ PRP VBZ TO VB JJ TO VB TO NNP NNP TO VB VBG NNS IN PRP$ JJ NNS . Mohamed ElBaradei made the comment after giving a speech Saturday in Germany . NNP NNP VBD DT NN IN VBG DT NN NNP IN NNP . He said North Korea has not invited him to visit , but that he still hopes to go . PRP VBD NNP NNP VBZ RB VBN PRP TO VB , CC IN PRP RB VBZ TO VB . Last year , Pyongyang indicated it might be willing to invite officials from the International Atomic Energy Agency , possibly including ElBaradei , under certain conditions . JJ NN , NNP VBD PRP MD VB JJ TO VB NNS IN DT NNP NNP NNP NNP , RB VBG NNP , IN JJ NNS . Six-party talks to discuss North Korea 's nuclear intentions have been deadlocked for months . JJ NNS TO VB NNP NNP POS JJ NNS VBP VBN VBN IN NNS . North Korea blames the United States for the impasse . NNP NNP VBZ DT NNP NNPS IN DT NN . Earlier Saturday , Pyongyang said again it would be willing to return to the talks if the United States drops its economic sanctions against the North . RBR NNP , NNP VBD RB PRP MD VB JJ TO VB TO DT NNS IN DT NNP NNPS VBZ PRP$ JJ NNS IN DT NNP . Washington has called on North Korea to return to the talks without preconditions . NNP VBZ VBN IN NNP NNP TO VB TO DT NNS IN NNS . Asian and Pacific nations have begun a disaster exercise to test preparations for a possible bird-flu pandemic . JJ CC JJ NNS VBP VBN DT NN NN TO VB NNS IN DT JJ NN NN . Australia is coordinating Wednesday 's exercise with 21 members of the Asia Pacific Economic Cooperation group , testing how authorities would respond to a hypothetical outbreak in which a new form of bird-flu virus becomes a major threat to human life . NNP VBZ VBG NNP POS NN IN CD NNS IN DT NNP NNP NNP NNP NN , VBG WRB NNS MD VB TO DT JJ NN IN WDT DT JJ NN IN JJ NN VBZ DT JJ NN TO JJ NN . During the 24-hour exercise , governments are practicing how to coordinate information about managing a virus outbreak . IN DT JJ NN , NNS VBP VBG WRB TO VB NN IN VBG DT NN NN . Indonesia and Vietnam already have suffered significant human losses from bird flu . NNP CC NNP RB VBP VBN JJ JJ NNS IN NN NN . The World Health Organization is investigating the bird-flu deaths of seven members of one family in Indonesia , a ' cluster ' of infections that sounded an alarm about possible human-to-human transmission of the virus . DT NNP NNP NNP VBZ VBG DT JJ NNS IN CD NNS IN CD NN IN NNP , DT `` NN `` IN NNS WDT VBD DT NN IN JJ JJ NN IN DT NN . More than 120 people , most of them in Asia , have died of bird flu since late 2003 . JJR IN CD NNS , JJS IN PRP IN NNP , VBP VBN IN NN NN IN JJ CD . Health experts say tests have confirmed a new outbreak of deadly Ebola virus in the Republic of Congo , killing nine people . NNP NNS VBP NNS VBP VBN DT JJ NN IN JJ NNP NN IN DT NNP IN NNP , VBG CD NNS . World Health Organization representative Doctor Alzouma Yada Adamou said Wednesday two others have been diagnosed with Ebola in the northwestern Cuvette region of Congo , near the border with Gabon . NNP NNP NNP NN NNP NNP NNP NNP VBD NNP CD NNS VBP VBN VBN IN NNP IN DT JJ NNP NN IN NNP , IN DT NN IN NNP . He said a total of 11 cases have been reported this month . PRP VBD DT NN IN CD NNS VBP VBN VBN DT NN . In 2003 , more than 120 people died of the highly contagious disease in the same area . IN CD , JJR IN CD NNS VBD IN DT RB JJ NN IN DT JJ NN . Ebola , a hemorrhagic fever , causes rapid death through internal and external bleeding . NNP , DT JJ NN , VBZ JJ NN IN JJ CC JJ NN . The World Heath Organization says the disease kills between 50 and 90 percent of victims , depending on the strain . DT NNP NNP NNP VBZ DT NN VBZ IN CD CC CD NN IN NNS , VBG IN DT NN . Scientists believe outbreaks are caused by people eating infected bush meat . NNS VBP NNS VBP VBN IN NNS VBG VBN NN NN . Sri Lanka 's President Chandrika Kumaratunga has appointed her brother as the country 's new foreign minister , to replace Lakshman Kadirgamar , who was assassinated earlier this month by suspected Tamil Tiger rebels . NNP NNP POS NNP NNP NNP VBZ VBN PRP$ NN IN DT NN POS JJ JJ NN , TO VB NNP NNP , WP VBD VBN RBR DT NN IN JJ NNP NNP NNS . A presidential statement says Anura Bandaranaike will retain his current post as tourist minister , but that Finance Minister Sarath Amunugama will take over his Industry and Investment portfolios . DT JJ NN VBZ NNP NNP MD VB PRP$ JJ NN IN NN NN , CC IN NNP NNP NNP NNP MD VB RP PRP$ NN CC NN NNS . Also Monday , Sri Lanka 's chief justice said the country 's Supreme Court will rule Friday when the next presidential election should be held . RB NNP , NNP NNP POS NN NN VBD DT NN POS NNP NNP MD VB NNP WRB DT JJ JJ NN MD VB VBN . The opposition says Mrs. Kumaratunga 's second and final six-year term ends in December . DT NN VBZ NNP NNP POS JJ CC JJ JJ NN VBZ IN NNP . But the ruling Freedom Party insists she is entitled to be in office until the end of next year , because she ended her first term one year ahead of schedule by calling snap polls . CC DT NN NNP NNP VBZ PRP VBZ VBN TO VB IN NN IN DT NN IN JJ NN , IN PRP VBD PRP$ JJ NN CD NN RB IN NN IN VBG JJ NNS . A newspaper quotes a U.S. Army official as saying the military has made a ' mediocre ' effort in Iraq , and remains in peril of losing the war . DT NN VBZ DT NNP NNP NN IN VBG DT NN VBZ VBN DT `` JJ `` NN IN NNP , CC VBZ IN NN IN VBG DT NN . The Washington Post Saturday printed excerpts from an essay by Major Isaiah Wilson , who served as an Army historian of the campaign and war planner in Iraq . DT NNP NNP NNP VBD NNS IN DT NN IN NNP NNP NNP , WP VBD IN DT NNP NN IN DT NN CC NN NN IN NNP . It quotes Major Wilson as saying the U.S. military did not have a formal plan for stabilizing the country after toppling Saddam Hussein . PRP VBZ NNP NNP IN VBG DT NNP NN VBD RB VB DT JJ NN IN VBG DT NN IN VBG NNP NNP . The major says U.S. forces lost their dominance in Iraq a few months after Saddam 's overthrow , and that the Army still does not recognize that it is fighting what he calls a ' war of rebellion . ' DT JJ VBZ NNP NNS VBD PRP$ NN IN NNP DT JJ NNS IN NNP POS NN , CC IN DT NNP RB VBZ RB VB IN PRP VBZ VBG WP PRP VBZ DT `` NN IN NN . `` The Wilson essay has been delivered at several academic conferences but remains unpublished . DT NNP NN VBZ VBN VBN IN JJ JJ NNS CC VBZ JJ . In his recent memoir , Retired Army General Tommy Franks said a post-war plan for Iraq did exist , and expressed confidence in the plan . IN PRP$ JJ NN , JJ NN NNP NNP NNP VBD DT JJ NN IN NNP VBD VB , CC VBD NN IN DT NN . The United Nations nuclear watchdog agency is preparing to decide on a resolution Saturday calling for Iran to be reported to the United Nations Security Council over its suspect nuclear program . DT NNP NNP JJ NN NN VBZ VBG TO VB IN DT NN NNP NN IN NNP TO VB VBN TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NN . A vote in Vienna by the 35-nation board of the International Atomic Energy Agency was postponed from Friday . DT NN IN NNP IN DT JJ NN IN DT NNP NNP NNP NNP VBD VBN IN NNP . The delay came after the United States opposed a last-minute move by Egypt to declare the entire Middle East a nuclear-free zone . DT NN VBD IN DT NNP NNPS VBD DT JJ NN IN NNP TO VB DT JJ NNP NNP DT JJ NN . The move appeared aimed at pressuring Israel to give up its suspected nuclear arsenal . DT NN VBD VBN IN VBG NNP TO VB RP PRP$ JJ JJ NN . Envoys familiar with the situation say France , Britain and Germany , the three nations that authored the resolution on Iran , were working overnight to resolve the dispute between Cairo and Washington . NNS JJ IN DT NN VBP NNP , NNP CC NNP , DT CD NNS WDT VBD DT NN IN NNP , VBD VBG JJ TO VB DT NN IN NNP CC NNP . Diplomats say a majority on the IAEA board appear ready to back the measure . NNS VBP DT NN IN DT NNP NN VBP JJ TO VB DT NN . Western governments accuse Iran of seeking nuclear weapons . JJ NNS VBP NNP IN VBG JJ NNS . Iran says its nuclear program is for peaceful purposes only . NNP VBZ PRP$ JJ NN VBZ IN JJ NNS RB . The euro has hit an all-time high against the U.S. dollar , climbing to 1.294 in late trading Friday . DT NN VBZ VBN DT JJ NN IN DT NNP NN , VBG TO CD IN JJ NN NNP . The rise of the 12-nation currency surpasses the previous record of 1.2927 in February of this year . DT NN IN DT JJ NN VBZ DT JJ NN IN CD IN NNP IN DT NN . Traders say they were struck by the dollar 's inability to sustain a rally earlier Friday following the release of a strong U.S. employment report . NNS VBP PRP VBD VBN IN DT NN POS NN TO VB DT NN RBR NNP VBG DT NN IN DT JJ NNP NN NN . Analysts say the euro 's increase was due to concerns over the U.S. trade and federal budget deficits , as well the high price of oil . NNS VBP DT NN POS NN VBD JJ TO NNS IN DT NNP NN CC JJ NN NNS , RB RB DT JJ NN IN NN . French President Jacques Chirac said he was concerned with the downward trend of the dollar and called for action by the European Central Bank . JJ NNP NNP NNP VBD PRP VBD VBN IN DT JJ NN IN DT NN CC VBD IN NN IN DT NNP NNP NNP . A stronger euro makes European exports more expensive . DT JJR NN VBZ JJ NNS RBR JJ . Sunni Arab groups in Iraq are blaming Shi'ite-led security forces for the killing of 14 Sunni Arab men whose bodies were found Friday in Baghdad . NNP NNP NNS IN NNP VBP VBG JJ NN NNS IN DT NN IN CD NNP NNP NNS WP$ NNS VBD VBN NNP IN NNP . The Sunni Arab groups say Interior Ministry forces picked up the 14 men at a Baghdad mosque last month . DT NNP JJ NNS VBP NNP NNP NNS VBD RP DT CD NNS IN DT NNP NN JJ NN . Major-General Hussein Ali Kamal of the Interior Ministry told the Associated Press that officials are investigating reports that the men were detained by government forces . NN NNP NNP NNP IN DT NNP NNP VBD DT NNP NNP IN NNS VBP VBG NNS IN DT NNS VBD VBN IN NN NNS . The discovery of the bodies threatens to further polarize Iraq 's Sunni Arab , Kurdish and majority Shi'ite communities . DT NN IN DT NNS VBZ TO JJ NN NNP POS NNP NNP , NNP CC NN NNP NNS . Politicians from the three groups are holding talks on forming a national unity government following the elections in December . NNS IN DT CD NNS VBP VBG NNS IN VBG DT JJ NN NN VBG DT NNS IN NNP . The United States is hoping the formation of a unity government will help curb the insurgency in Iraq . DT NNP NNPS VBZ VBG DT NN IN DT NN NN MD VB VB DT NN IN NNP . The Organization of Petroleum Exporting Countries says it will make another two million barrels of crude oil available to refiners each day . DT NNP IN NNP NNP NNPS VBZ PRP MD VB DT CD CD NNS IN JJ NN JJ TO NNS DT NN . The decision was expected , and was formally announced Tuesday in Vienna , where top OPEC officials have been discussing oil production and prices . DT NN VBD VBN , CC VBD RB VBN NNP IN NNP , WRB JJ NNP NNS VBP VBN VBG NN NN CC NNS . Some analysts say the gesture is largely symbolic because most OPEC member nations have been producing all the oil they can as demand and prices have hit new highs . DT NNS VBP DT NN VBZ RB JJ IN JJS NNP NN NNS VBP VBN VBG PDT DT NN PRP MD IN NN CC NNS VBP VBN JJ NNS . Only Saudi Arabia is thought to have significant unused capacity . RB NNP NNP VBZ VBN TO VB JJ JJ NN . Some experts say high gasoline prices that have sparked protests in some European countries grow out of a shortage of refining capacity , rather than a lack of crude oil . DT NNS VBP JJ NN NNS WDT VBP VBN NNS IN DT JJ NNS VBP IN IN DT NN IN NN NN , RB IN DT NN IN JJ NN . Champion points leader Fernando Alonso has driven his Renault for the third fastest time in Friday 's first practice session for the Brazilian Grand Prix in Sao Paulo . NNP VBZ NN NNP NNP VBZ VBN PRP$ NNP IN DT JJ JJS NN IN NNP POS JJ NN NN IN DT JJ NNP NNP IN NNP NNP . The Spaniard drove the Interlagos circuit at a time of 0.060092593 . DT NN VBD DT NNP NN IN DT NN IN CD . The fastest time of the session was clocked by McLaren-Mercedes test driver Alexander Wurz of Austria . DT JJS NN IN DT NN VBD VBN IN NNP NN NN NNP NNP IN NNP . Wurz completed the circuit with a time of 0.050474537 . NNP VBD DT NN IN DT NN IN CD . McLaren-Mercedes driver Kimi Raikkonen of Finland posted the fifth best time of the session , 0.193 seconds slower than Alonso . NNP NN NNP NNP IN NNP VBD DT NN JJS NN IN DT NN , CD NNS JJR IN NNP . Raikkonen is second in the championship point standings . NNP VBZ JJ IN DT NN NN NNS . He trails Alonso 85 to 111 . PRP VBZ NNP CD IN CD . Realistically , the series championship is out of his reach . RB , DT NN NN VBZ IN IN PRP$ NN . With only two races remaining in the season after Sunday , Alonso needs just one third-place finish to become the first champion other than Ferrari 's Michael Schumacher of Germany since 1999 . IN RB CD NNS VBG IN DT NN IN NNP , NNP VBZ RB CD JJ NN TO VB DT JJ NN JJ IN NNP POS NNP NNP IN NNP IN CD . At 21 years old , Alonso would become the youngest series champion ever . IN CD NNS JJ , NNP MD VB DT JJS NN NN RB . Indonesian health officials say local tests confirm that a one-year-old girl who died recently was infected with the H5N1 strain of bird flu . JJ NN NNS VBP JJ NNS VBP IN DT JJ NN WP VBD RB VBD VBN IN DT NNP NN IN NN NN . If confirmed by the World Health Organization , her death would bring to 23 the number of people in Indonesia who have died from the virus . IN VBN IN DT NNP NNP NNP , PRP$ NN MD VB TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NN . Meanwhile , in Hong Kong , authorities say a dead falcon has tested positive for the H5N1 strain . RB , IN NNP NNP , NNS VBP DT JJ NN VBZ VBN JJ IN DT NNP NN . Officials there have confirmed several cases of H5N1 in birds this year . NNS RB VBP VBN JJ NNS IN NNP IN NNS DT NN . In Burma , state-run media say authorities have slaughtered more than 76,000 chickens and quails since the country 's first outbreak was reported this month . IN NNP , JJ NNS VBP NNS VBP VBN JJR IN CD NNS CC NNS IN DT NN POS JJ NN VBD VBN DT NN . Elsewhere , China confirmed that a 29-year-old woman in Shanghai died of bird flu . RB , NNP VBD IN DT JJ NN IN NNP VBD IN NN NN . The deadly form of bird flu has killed more than 100 people since 2003 , mostly in East Asia . DT JJ NN IN NN NN VBZ VBN JJR IN CD NNS IN CD , RB IN NNP NNP . Colombia has apologized to Ecuador for its warplanes ' violating Ecuador 's airspace Saturday . NNP VBZ VBN TO NNP IN PRP$ NNS POS VBG NNP POS NN NNP . President Alvaro Uribe sent a letter to officials in Ecuador Thursday , saying the intrusion had been an accident . NNP NNP NNP VBD DT NN TO NNS IN NNP NNP , VBG DT NN VBD VBN DT NN . An Ecuadorian government spokesman said the incident prompted Quito to put its own war planes on a alert . DT JJ NN NN VBD DT NN VBD NNP TO VB PRP$ JJ NN NNS IN DT NN . The government had also threatened to withdraw its ambassador to Colombia . DT NN VBD RB VBN TO VB PRP$ NN TO NNP . Ecuador said the Colombian war planes also fired on targets in Ecuadorian territory . NNP VBD DT JJ NN NNS RB VBD IN NNS IN JJ NN . Ecuador has long expressed concern that violence from Colombia 's four-decade war against leftist rebels could spill across their lengthy border . NNP VBZ RB VBN NN IN NN IN NNP POS JJ NN IN JJ NNS MD VB IN PRP$ JJ NN . The government has said its policy is to avoid involvement in Colombia 's civil conflict . DT NN VBZ VBN PRP$ NN VBZ TO VB NN IN NNP POS JJ NN . Tropical Storm Alpha , following on the heels of brutal Hurricane Wilma , has caused at least 12 deaths in Haiti . JJ NN NNP , VBG IN DT NNS IN JJ NNP NNP , VBZ VBN IN JJS CD NNS IN NNP . Officials announced the deaths Tuesday , as Alpha weakened into a tropical depression and drifted out to sea . NNS VBD DT NNS NNP , IN NNP VBD IN DT JJ NN CC VBD RP TO NN . Alpha 's rains caused floods and mudslides in Haiti that cut off roads and swept houses and people away . NNP POS NNS VBD NNS CC NNS IN NNP WDT VBD RP NNS CC VBD NNS CC NNS RB . In addition to the 12 deaths , officials say an uncertain number of people are missing . IN NN TO DT CD NNS , NNS VBP DT JJ NN IN NNS VBP VBG . They also predict the death toll could rise as emergency workers search remote areas . PRP RB VBP DT NN NN MD VB IN NN NNS NN JJ NNS . Alpha became the 22nd named storm of 2005 , which is now the most prolific hurricane season on record . NNP VBD DT CD VBN NN IN CD , WDT VBZ RB DT RBS JJ NN NN IN NN . Earlier this month , the island of Hispaniola bore the assault from Hurricane Wilma . RBR DT NN , DT NN IN NNP VBD DT NN IN NNP NNP . The leaders of Japan and South Korea have agreed to meet soon to try to repair the two countries ' frayed relations . DT NNS IN NNP CC NNP NNP VBP VBN TO VB RB TO VB TO VB DT CD NNS POS JJ NNS . Japan 's new prime minister , Shinzo Abe , and South Korean President Roh Moo-hyun agreed to the meeting during a telephone conversation Thursday . NNP POS JJ JJ NN , NNP NNP , CC JJ JJ NNP NNP NNP VBD TO DT NN IN DT NN NN NNP . No specific date was set for their talks . DT JJ NN VBD VBN IN PRP$ NNS . South Korea and China have shunned summits with Japan since last year , due to Beijing and Seoul 's anger over former Japanese Prime Minister Junichiro Koizumi 's repeated visits to a controversial wartime shrine in Tokyo . NNP NNP CC NNP VBP VBN NNS IN NNP IN JJ NN , JJ TO NNP CC NNP POS NN IN JJ JJ NNP NNP NNP NNP POS JJ NNS TO DT JJ NN NN IN NNP . The Yasukuni shrine honors all of Japan 's war dead , including convicted World War Two criminals . DT NNP NN NNS DT IN NNP POS NN NN , VBG VBN NNP NNP CD NNS . Mr. Abe 's foreign minister , Taro Aso , has said the new prime minister may visit China for a summit as early as October . NNP NNP POS JJ NN , NNP NNP , VBZ VBN DT JJ JJ NN MD VB NNP IN DT NN RB RB IN NNP . Japan 's parliament elected Mr. Abe prime minister on Tuesday . NNP POS NN VBD NNP NNP JJ NN IN NNP . A spokesman for Iraq 's interim government has rejected calls , mainly by Sunni and Kurdish groups , to postpone the country 's first national elections . DT NN IN NNP POS JJ NN VBZ VBN NNS , RB IN NNP CC NNP NNS , TO VB DT NN POS JJ JJ NNS . The political groups have demanded that the government delay the scheduled January 30 poll by at least six months because of ongoing violence . DT JJ NNS VBP VBN IN DT NN VB DT VBN NNP CD NN IN IN JJS CD NNS IN IN JJ NN . Iraq 's majority Shi'ites have consistently rejected those demands . NNP POS NN NNS VBP RB VBN DT NNS . Several political factions have called for a boycott of the elections , and various groups have expressed concern that fear of violence would discourage Iraqis from voting . JJ JJ NNS VBP VBN IN DT NN IN DT NNS , CC JJ NNS VBP VBN NN IN NN IN NN MD VB NNS IN NN . But a spokesman for Prime Minister Iyad Allawi says the Iraqi leader is not convinced that delaying the elections would increase participation . CC DT NN IN NNP NNP NNP NNP VBZ DT JJ NN VBZ RB VBN IN VBG DT NNS MD VB NN . Meanwhile , insurgent attacks continue in Iraq . RB , JJ NNS VBP IN NNP . U.S. military officials say two soldiers were wounded Sunday when a car bomb blew up next to their convoy on a road leading to the Baghdad airport . NNP JJ NNS VBP CD NNS VBD VBN NNP WRB DT NN NN VBD RP JJ TO PRP$ NN IN DT NN VBG TO DT NNP NN . President Bush says U.S. and Iraqi forces have delivered justice to the most wanted terrorist in Iraq - Abu Musab al-Zarqawi . NNP NNP VBZ NNP CC JJ NNS VBP VBN NN TO DT RBS JJ JJ IN NNP : NNP NNP NNP . Mr. Bush said at the White House that Zarqawi will never murder again , and that his death is a severe blow to al-Qaida . NNP NNP VBD IN DT NNP NNP IN NNP MD RB VB RB , CC IN PRP$ NN VBZ DT JJ NN TO NNP . The president said Zarqawi personally led a campaign of beheadings , killings , and suicide attacks . DT NN VBD NNP RB VBD DT NN IN NNS , NNS , CC NN NNS . However , Mr. Bush warned that the terrorists will try to continue without Zarqawi , and vowed that the U.S. mission in Iraq will continue . RB , NNP NNP VBD IN DT NNS MD VB TO VB IN NNP , CC VBD IN DT NNP NN IN NNP MD VB . The African Union is set to hold a meeting Thursday in Addis Ababa , Ethiopia , to consider sanctions against Togo . DT NNP NNP VBZ VBN TO VB DT NN NNP IN NNP NNP , NNP , TO VB NNS IN NNP . International criticism against Togolese authorities has increased since the military installed Faure Gnassingbe as president to succeed his father , who died earlier this month . JJ NN IN NNP NNS VBZ VBN IN DT JJ JJ NN NNP IN NN TO VB PRP$ NN , WP VBD RBR DT NN . Last week , the West African Economic Community imposed sanctions on Togo demanding the country restore constitutional rule . JJ NN , DT NNP NNP NNP NNP VBD NNS IN NNP VBG DT NN VB JJ NN . Togo 's constitution had called for the speaker of parliament to succeed the late president and call a new election in two months . NNP POS NN VBD VBN IN DT NN IN NN TO VB DT JJ NN CC VB DT JJ NN IN CD NNS . On Monday , the Togolese parliament restored the original provision calling for elections within 60 days when a president dies - but decided to keep Mr. Gnassingbe as interim president . IN NNP , DT NNP NN VBD DT JJ NN VBG IN NNS IN CD NNS WRB DT NN VBZ : CC VBD TO VB NNP NNP IN JJ NN . However , the African Union , the European Union and the United States have called on Mr. Gnassingbe to step down immediately . RB , DT NNP NNP , DT NNP NNP CC DT NNP NNPS VBP VBN IN NNP NNP TO VB RB RB . The President of Bosnia and Herzegovina says the Bosnian people are committed to taking back ownership of the country from the United Nations . DT NNP IN NNP CC NNP VBZ DT JJ NNS VBP VBN TO VBG RP NN IN DT NN IN DT NNP NNPS . Addressing the U.N. General Assembly Thursday , Ivo Jovic described Bosnia as a non-functional structure left to the Bosnian people by the 1995 Dayton Peace Accords . VBG DT NNP NNP NNP NNP , NNP NNP VBD NNP IN DT JJ NN VBD TO DT JJ NNS IN DT CD NNP NNP NNP . He said Bosnian Serbs , Muslims , and Croats are committed to the highest standards of human and civil rights . PRP VBD JJ NNS , NNP , CC NNS VBP VBN TO DT JJS NNS IN JJ CC JJ NNS . President Jovic said Bosnia belongs to the European family of nations and can be a factor of stability in the Balkans . NNP NNP VBD NNP VBZ TO DT JJ NN IN NNS CC MD VB DT NN IN NN IN DT NNPS . The 1995 peace accords , which ended the war in the former Yugoslavia , split Bosnia into a Serb Republic and a Muslim-Croat Federation . DT CD NN NNS , WDT VBD DT NN IN DT JJ NNP , VBD NNP IN DT JJ NNP CC DT NNP NNP . It is administered by a U.N. representative appointed by the Security Council . PRP VBZ VBN IN DT NNP NN VBN IN DT NNP NNP . Billboard magazine lists the band Chicago as the leading singles chart group of the 1970s . NNP NN VBZ DT NN NNP IN DT VBG NNS VBP NN IN DT NNS . With more than 21 million-selling albums , Chicago has secured a place in music history . IN JJR IN CD JJ NNS , NNP VBZ VBN DT NN IN NN NN . With its legendary horn section and distinctive vocals , Chicago remains one of the longest-running and most-successful pop / rock groups . IN PRP$ JJ NN NN CC JJ NNS , NNP VBZ CD IN DT JJ CC JJ NN JJ NN NNS . VOA 's Larry London had the opportunity to talk with founder and lead singer Robert Lamm , and trumpet player Lee Loughnane at Wolf Trap National Park for the Performing Arts in Vienna , Virginia . NNP POS NNP NNP VBD DT NN TO VB IN NN CC NN NN NNP NNP , CC NN NN NNP NNP IN NNP NNP NNP NNP IN DT VBG NNS IN NNP , NNP . Sri Lanka 's top defense officials say the military is ready for renewed conflict with Tamil Tiger rebels , but will not break a three-year cease-fire . NNP NNP POS JJ NN NNS VBP DT NN VBZ JJ IN JJ NN IN NNP NNP NNS , CC MD RB VB DT JJ NN . Sri Lankan Defense chief Admiral Daya Sandagiri told reporters Friday the military was ready to meet any rebel challenge . NNP NNP NNP NN NNP NNP NNP VBD NNS NNP DT NN VBD JJ TO VB DT NN NN . He added however that the military did not expect the country to slip back to full-scale war . PRP VBD RB IN DT JJ VBD RB VB DT NN TO VB RB TO JJ NN . At least 14 soldiers were killed earlier this week in two separate attacks in the minority Tamil-dominated north , the biggest breaches , so far , of a 2002 cease-fire . IN JJS CD NNS VBD VBN RBR DT NN IN CD JJ NNS IN DT NN JJ NN , DT JJS NNS , RB RB , IN DT CD NN . The rebels have denied any involvement in the attacks . DT NNS VBP VBN DT NN IN DT NNS . The 2002 cease-fire halted two decades of civil war in the island nation , but it has come under increasing strain in recent days . DT CD NN VBD CD NNS IN JJ NN IN DT NN NN , CC PRP VBZ VBN IN VBG NN IN JJ NNS . Indonesia 's health ministry says a three-year-old boy with symptoms of bird flu has died , days after the virus killed his sister . NNP POS NN NN VBZ DT JJ NN IN NNS IN NN NN VBZ VBN , NNS IN DT NN VBD PRP$ NN . A health ministry official says the boy died Tuesday at a hospital in the West Java city of Bandung . DT NN NN NN VBZ DT NN VBD NNP IN DT NN IN DT NNP NNP NN IN NNP . Medical tests are being carried out to see if the boy was infected with the H5N1 strain of bird flu . JJ NNS VBP VBG VBN RP TO VB IN DT NN VBD VBN IN DT NNP NN IN NN NN . Samples from the two dead siblings have been sent to a World Health Organization laboratory in Hong Kong for more testing . NNS IN DT CD JJ NNS VBP VBN VBN TO DT NNP NNP NNP NN IN NNP NNP IN JJR NN . The toddler 's 13-year-old sister died Saturday , and a 15-year-old sister is being tested for the virus . DT NN POS JJ NN VBD NNP , CC DT JJ NN VBZ VBG VBN IN DT NN . The official says the three siblings may have contracted avian flu through contact with dead chickens . DT NN VBZ DT CD NNS MD VB VBN JJ NN IN NN IN JJ NNS . If they are confirmed to have died of bird flu , Indonesia 's death toll from the disease will rise to 14 . IN PRP VBP VBN TO VB VBN IN NN NN , NNP POS NN NN IN DT NN MD VB TO CD . China says the death toll from an earthquake that hit a Tibetan region in the country 's west last month has risen to 2,698 . NNP VBZ DT NN NN IN DT NN WDT VBD DT JJ NN IN DT NN POS JJS JJ NN VBZ VBN TO CD . China 's official Xinhua news agency says another 270 people remain missing after the April 14 quake in Qinghai province . NNP POS JJ NNP NN NN VBZ DT CD NNS VBP VBG IN DT NNP CD NN IN NNP NN . The new death toll is a significant increase from the previous figure of around 2,200 fatalities reported by Chinese authorities in late April . DT JJ NN NN VBZ DT JJ NN IN DT JJ NN IN IN CD NNS VBN IN JJ NNS IN JJ NNP . The 6.9 magnitude quake flattened thousands of homes in Qinghai 's ethnically-Tibetan Yushu county . DT CD NN NN VBD NNS IN NNS IN NNP POS JJ NNP NN . The remote location posed logistical difficulties for rescuers . DT JJ NN VBD JJ NNS IN NNS . Xinhua quotes Qinghai Vice Governor Zhang Guangrong as saying the dead include 199 students . NNP VBZ NNP NNP NNP NNP NNP IN VBG DT NN VBP CD NNS . The U.S. State Department and the United Nations say they are seriously concerned about reports that Burma 's military junta has ordered the removal of a security detail at the home of detained democracy leader Aung San Suu Kyi . DT NNP NNP NNP CC DT NNP NNPS VBP PRP VBP RB JJ IN NNS IN NNP POS JJ NN VBZ VBN DT NN IN DT NN NN IN DT NN IN JJ NN NN NNP NNP NNP NNP . American officials say they are worried about the welfare of the Nobel laureate , who is under house arrest at her home in Rangoon . JJ NNS VBP PRP VBP VBN IN DT NN IN DT NNP NN , WP VBZ IN NN NN IN PRP$ NN IN NNP . U.N. Secretary-General Kofi Annan expressed similar thoughts and called on Burmese authorities to remember their responsibility to ensure Aung San Suu Kyi 's well being . NNP NNP NNP NNP VBD JJ NNS CC VBN IN JJ NNS TO VB PRP$ NN TO VB NNP NNP NNP NNP POS RB VBG . Members of Aung San Suu Kyi 's National League for Democracy reported Thursday that the government has ordered the removal of NLD members who had been providing security and other assistance to the pro-democracy leader . NNS IN NNP NNP NNP NNP POS NNP NNP IN NNP VBD NNP IN DT NN VBZ VBN DT NN IN NNP NNS WP VBD VBN VBG NN CC JJ NN TO DT JJ NN . The junta also reportedly has said she will have reduced access to her personal physician . DT NN RB RB VBZ VBN PRP MD VB VBN NN TO PRP$ JJ NN . Kenyan President Mwai Kibaki has ordered an inquiry into a major security breach at his country 's main airport . JJ NNP NNP NNP VBZ VBN DT NN IN DT JJ NN NN IN PRP$ NN POS JJ NN . Mr. Kibaki ordered the investigation Tuesday , one day after suspending the country 's chief police investigator , Joseph Kamau , and 10 other officials . NNP NNP VBD DT NN NNP , CD NN IN VBG DT NN POS JJ NN NN , NNP NNP , CC CD JJ NNS . The breach involved two Armenian men who drew pistols on customs officials when asked to open their luggage at the airport last Thursday . DT NN VBD CD JJ NNS WP VBD NNS IN NNS NNS WRB VBN TO VB PRP$ NN IN DT NN JJ NNP . The men , known as the Artur brothers , were deported without being charged , prompting accusations that they had government protection . DT NNS , VBN IN DT NNP NNS , VBD VBN IN VBG VBN , VBG NNS IN PRP VBD NN NN . Opposition lawmakers say the Armenians led a controversial police raid on Kenya 's Standard Media Group in March . NN NNS VBP DT NNS VBD DT JJ NN NN IN NNP POS NNP NNP NNP IN NNP . The British government has issued a protest note demanding an explanation for the airport incident . DT JJ NN VBZ VBN DT NN NN VBG DT NN IN DT NN NN . Britain says it has concerns about the airport 's security . NNP VBZ PRP VBZ NNS IN DT NN POS NN . The United States government has frozen the assets of four people and two companies that allegedly have ties to a suspected Colombian drug kingpin . DT NNP NNPS NN VBZ VBN DT NNS IN CD NNS CC CD NNS WDT RB VBP NNS TO DT JJ JJ NN NN . The U.S. Treasury announced Tuesday it has taken financial sanctions against the parents of accused drug trafficker Juan Carlos Ramirez , two of his business associates and two companies he founded . DT NNP NNP VBD NNP PRP VBZ VBN JJ NNS IN DT NNS IN VBN NN NN NNP NNP NNP , CD IN PRP$ NN NNS CC CD NNS PRP VBD . A Treasury news release says Ramirez 's parents , along with Jorge Rodrigo Salinas and Edgar Marina Otalora , operated a Colombian pharmaceutical distribution company Ramirez built with his alleged narcotics proceeds . DT NNP NN NN VBZ NNP POS NNS , IN IN NNP NNP NNP CC NNP NNP NNP , VBD DT JJ JJ NN NN NNP VBD IN PRP$ JJ NNS NNS . The Treasury also accused Ramirez of using a Colombian holding company for keeping real estate and other assets while the U.S. investigated his finances . DT NNP RB VBD NNP IN VBG DT JJ NN NN IN VBG JJ NN CC JJ NNS IN DT NNP VBD PRP$ NNS . Ramirez faces federal indictments on drug trafficking charges in the United States . NNP VBZ JJ NNS IN NN NN NNS IN DT NNP NNPS . He is allegedly one of the leaders of Colombia 's Norte del Valle drug cartel . PRP VBZ RB CD IN DT NNS IN NNP POS NNP NNP NNP NN NN . Authorities say the cartel has exported about 500 metric tons of cocaine to the U.S. since 1990 . NNS VBP DT NN VBZ VBN IN CD JJ NNS IN NN TO DT NNP IN CD . Venezuelan President Hugo Chavez says his nation wants to continue doing business with the United States , and would like to see more positive relations between the two countries . JJ NNP NNP NNP VBZ PRP$ NN VBZ TO VB VBG NN IN DT NNP NNPS , CC MD VB TO VB JJR JJ NNS IN DT CD NNS . Speaking to reporters in Caracas Thursday , Mr. Chavez said Venezuela wants to continue its oil sales to the United States - 1.5 million barrels per day - at the present level . VBG TO NNS IN NNP NNP , NNP NNP VBD NNP VBZ TO VB PRP$ NN NNS TO DT NNP NNPS IN CD CD NNS IN NN : IN DT JJ NN . The Venezuelan president 's latest comments contrasted sharply with his recent accusations that the United States is backing a plot to assassinate him . DT JJ NN POS JJS NNS VBD RB IN PRP$ JJ NNS IN DT NNP NNPS VBZ VBG DT NN TO VB PRP . Secretary of State Condoleeza Rice has dismissed Mr. Chavez 's allegations are ' ludicrous . ' NNP IN NNP NNP NNP VBZ VBN NNP NNP POS NNS VBP `` JJ . `` She says the United States does not want bad relations with Venezuela , but does want assurances that Mr. Chavez is committed to democracy . PRP VBZ DT NNP NNPS VBZ RB VB JJ NNS IN NNP , CC VBZ VB NNS IN NNP NNP VBZ VBN TO NN . President Bush 's administration is concerned about the treatment of opposition groups and independent news media in Venezuela . NNP NNP POS NN VBZ JJ IN DT NN IN NN NNS CC JJ NN NNS IN NNP . Heavy rains in Brazil have caused deadly mudslides that have killed at least seven people , mostly children . JJ NNS IN NNP VBP VBN JJ NNS WDT VBP VBN IN JJS CD NNS , RB NNS . Authorities say the victims lived in a shantytown in the industrial suburb of Sao Bernardo do Campo , near the city of Sao Paulo . NNS VBP DT NNS VBD IN DT NN IN DT JJ NN IN NNP NNP VBP NNP , IN DT NN IN NNP NNP . Torrential rains have lashed the Sao Paulo region since Tuesday . NNP NNS VBP VBN DT NNP NNP NN IN NNP . The U.S. military in Afghanistan says 15 militants along with an Afghan woman and two children were killed during a battle with insurgents in the south . DT NNP NN IN NNP VBZ CD NNS IN IN DT JJ NN CC CD NNS VBD VBN IN DT NN IN NNS IN DT NN . In a statement , the U.S.-led coalition said U.S.-led troops were raiding compounds suspected of housing bomb makers in Helmand province on Sunday when militants attacked them with heavy fire . IN DT NN , DT JJ NN VBD JJ NNS VBD VBG NNS VBN IN NN NN NNS IN NNP NN IN NNP WRB NNS VBD PRP IN JJ NN . The statement said several militant fighters barricaded themselves inside a house on the compound and fired at coalition forces . DT NN VBD JJ JJ NNS VBD PRP IN DT NN IN DT NN CC VBD IN NN NNS . Coalition forces threw a grenade at the house , which collapsed . NN NNS VBD DT NN IN DT NN , WDT VBD . Troops later recovered the bodies of an Afghan woman and two children , along with several militants and their weapons . NNS RB VBD DT NNS IN DT JJ NN CC CD NNS , IN IN JJ NNS CC PRP$ NNS . In eastern Afghanistan , NATO said two of its troops were killed and another wounded Monday , after a roadside bomb exploded . IN JJ NNP , NNP VBD CD IN PRP$ NNS VBD VBN CC DT VBN NNP , IN DT NN NN VBD . No other details were available . DT JJ NNS VBD JJ . Police say suspected Taliban militants have killed a pro-government tribal leader in Pakistan 's northwest . NNS VBP VBN NNP NNS VBP VBN DT JJ JJ NN IN NNP POS NN . The tribal leader was shot and killed Wednesday in Shangla district near Swat Valley . DT JJ NN VBD VBN CC VBN NNP IN NNP NN IN NNP NNP . The Pakistani military launched an offensive in the region against the Taliban about three months ago , after the collapse of a peace deal to impose strict Islamic law ( Sharia ) in Swat Valley . DT JJ NN VBD DT NN IN DT NN IN DT NNP IN CD NNS RB , IN DT NN IN DT NN NN TO VB JJ JJ NN LRB NNP RRB IN NNP NNP . Militants have retaliated by stepping up attacks , including a suicide bombing last month in Lahore that killed a prominent Islamic cleric , Sarfraz Naeemi , who supported the military crackdown on the Taliban . NNS VBP VBN IN VBG RP NNS , VBG DT NN VBG JJ NN IN NNP WDT VBD DT JJ NNP NN , NNP NNP , WP VBD DT JJ NN IN DT NNP . Elsewhere in the northwest , police say a Shi'ite Muslim lawyer was wounded and his guard killed when a bomb ripped through the parking area of a court in the city of Dera Ismail Khan , in North West Frontier Province , Wednesday . RB IN DT JJS , NNS VBP DT NNP NNP NN VBD VBN CC PRP$ NN VBN WRB DT NN VBD IN DT NN NN IN DT NN IN DT NN IN NNP NNP NNP , IN NNP NNP NNP NNP , NNP . DD Acquisition Corp. , a partnership of Unicorp Canada Corp. 's Kingsbridge Capital Group and Cara Operations Ltd. , extended to Nov. 20 its $ 45-a-share offer for all Dunkin' Donuts Inc. shares outstanding . NNP NNP NNP , DT NN IN NNP NNP NNP POS NNP NNP NNP CC NNP NNP NNP , VBN TO NNP CD PRP$ $ JJ NN IN DT NNP NNP NNP NNS JJ . The offer , which was due to expire yesterday , is conditional on 50.1 % of Dunkin' common shares , on a fully diluted basis , being tendered and on the withdrawal of the company 's poison pill rights plan . DT NN , WDT VBD JJ TO VB NN , VBZ JJ IN CD NN IN NNP JJ NNS , IN DT RB VBN NN , VBG VBN CC IN DT NN IN DT NN POS NN NN NNS NN . DD Acquisition has launched a suit in a Delaware court seeking the withdrawal of Dunkin 's poison pill rights and employee stock ownership plans , which it claims were put in place to deter bidders . NNP NNP VBZ VBN DT NN IN DT NNP NN VBG DT NN IN NNP POS NN NN NNS CC NN NN NN NNS , WDT PRP VBZ VBD VBN IN NN TO VB NNS . DD Acquisition said 2.2 million shares , or about 38.5 % of the shares outstanding , have been tendered under its offer . NNP NNP VBD CD CD NNS , CC IN CD NN IN DT NNS JJ , VBP VBN VBN IN PRP$ NN . The partners said they already hold 15 % of all shares outstanding . DT NNS VBD PRP RB VBP CD NN IN DT NNS JJ . Dunkin' has set Nov. 10 as the deadline for the receipt of any competing bids . NNP VBZ VBN NNP CD IN DT NN IN DT NN IN DT VBG NNS . DD Acquisition said the extension is to allow this process to be completed . NNP NNP VBD DT NN VBZ TO VB DT NN TO VB VBN . Dunkin' is based in Randolph , Mass. NNP VBZ VBN IN NNP , NNP Cara , a food services chain operator and Unicorp , a holding company , are based in Toronto . NNP , DT NN NNS VBP NN CC NNP , DT VBG NN , VBP VBN IN NNP . Macau 's economy slowed dramatically in 2009 as a result of the global economic slowdown , but strong growth resumed in 2010 , largely on the back of strong tourism and gaming sectors . NNP POS NN VBD RB IN CD IN DT NN IN DT JJ JJ NN , CC JJ NN VBD IN CD , RB IN DT NN IN JJ NN CC NN NNS . After opening up its locally-controlled casino industry to foreign competition in 2001 , the territory attracted tens of billions of dollars in foreign investment , transforming Macau into one of the world 's largest gaming center . IN VBG RP PRP$ JJ NN NN TO JJ NN IN CD , DT NN VBD NNS IN NNS IN NNS IN JJ NN , VBG NNP IN CD IN DT NN POS JJS NN NN . Macau 's gaming and tourism businesses were fueled by China 's decision to relax travel restrictions on Chinese citizens wishing to visit Macau . NNP POS NN CC NN NNS VBD VBN IN NNP POS NN TO VB NN NNS IN JJ NNS VBG TO VB NNP . By 2006 , Macau 's gaming revenue surpassed that of the Las Vegas strip , and gaming-related taxes accounted for more than 70 % of total government revenue . IN CD , NNP POS NN NN VBD IN IN DT NNP NNP NN , CC JJ NNS VBD IN JJR IN CD NN IN JJ NN NN . In 2008 , Macau introduced measures to cool the rapidly developing sector . IN CD , NNP VBD NNS TO VB DT RB VBG NN . This city of nearly 5,52,300 hosted nearly 25 million visitors in 2010 . DT NN IN RB CD VBD RB CD CD NNS IN CD . Almost 53 % came from mainland China . RB CD NN VBD IN JJ NNP . Macau 's traditional manufacturing industry has virtually disappeared since the termination of the Multi-Fiber Agreement in 2005 . NNP POS JJ NN NN VBZ RB VBN IN DT NN IN DT NNP NNP IN CD . In 2010 , total exports were less than US $ 900 million , while gaming receipts were almost US $ 24 billion , a 58 % increase over 2009 . IN CD , JJ NNS VBD JJR IN NNP $ CD CD , IN VBG NNS VBD RB NNP $ CD CD , DT CD NN NN IN CD . The Macau government plans to tighten control over the opening of new casinos and strengthen supervision of local casino operations in 2011 and has introduced measures to diversify the economy . DT NNP NN VBZ TO VB NN IN DT NN IN JJ NNS CC VB NN IN JJ NN NNS IN CD CC VBZ VBN NNS TO VB DT NN . The Closer Economic Partnership Agreement ( CEPA ) between Macau and mainland China that came into effect on 1 January 2004 offers Macau-made products tariff-free access to the mainland ; nevertheless , China is Macau 's second largest goods export market , behind Hong Kong , and followed by the United States . DT NNP NNP NNP NNP LRB NNP RRB IN NNP CC NNP NNP WDT VBD IN NN IN CD NNP CD VBZ JJ NNS JJ NN TO DT NN ; RB , NNP VBZ NNP POS JJ JJS NNS NN NN , IN NNP NNP , CC VBN IN DT NNP NNPS . Macau 's currency , the pataca , is closely tied to the Hong Kong dollar , which is also freely accepted in the territory . NNP POS NN , DT NN , VBZ RB VBN TO DT NNP NNP NN , WDT VBZ RB RB VBN IN DT NN . Malaysia , a middle-income country , has transformed itself since the 1970s from a producer of raw materials into an emerging multi-sector economy . NNP , DT JJ NN , VBZ VBN PRP IN DT NNS IN DT NN IN JJ NNS IN DT VBG JJ NN . Under current Prime Minister NAJIB , Malaysia is attempting to achieve high-income status by 2020 and to move farther up the value-added production chain by attracting investments in Islamic finance , high technology industries , biotechnology , and services . IN JJ NNP NNP NNP , NNP VBZ VBG TO VB JJ NN IN CD CC TO VB RB IN DT JJ NN NN IN VBG NNS IN JJ NN , JJ NN NNS , NN , CC NNS . The NAJIB administration also is continuing efforts to boost domestic demand and reduce the economy 's dependence on exports . DT NNP NN RB VBZ VBG NNS TO VB JJ NN CC VB DT NN POS NN IN NNS . Nevertheless , exports - particularly of electronics , oil and gas , palm oil and rubber - remain a significant driver of the economy . RB , NNS : RB IN NNS , NN CC NN , NN NN CC NN : VBP DT JJ NN IN DT NN . As an oil and gas exporter , Malaysia has profited from higher world energy prices , although the rising cost of domestic gasoline and diesel fuel , combined with strained government finances , has forced Kuala Lumpur begin to reduce government subsidies . IN DT NN CC NN NN , NNP VBZ VBN IN JJR NN NN NNS , IN DT VBG NN IN JJ NN CC NN NN , VBN IN JJ NN NNS , VBZ VBN NNP NNP VBP TO VB NN NNS . The government is also trying to lessen its dependence on state oil producer Petronas , which supplies more than 40 % of government revenue . DT NN VBZ RB VBG TO VB PRP$ NN IN NN NN NN NNP , WDT VBZ JJR IN CD NN IN NN NN . The central bank maintains healthy foreign exchange reserves and its well-developed regulatory regime has limited Malaysia 's exposure to riskier financial instruments and the global financial crisis . DT JJ NN VBZ JJ JJ NN NNS CC PRP$ JJ JJ NN VBZ VBN NNP POS NN TO NN JJ NNS CC DT JJ JJ NN . Nevertheless , decreasing worldwide demand for consumer goods hurt Malaysia 's exports and economic growth in 2009 , although both showed signs of recovery in 2010 . RB , VBG JJ NN IN NN NNS VBP NNP POS NNS CC JJ NN IN CD , IN DT VBD NNS IN NN IN CD . In order to attract increased investment , NAJIB has raised possible revisions to the special economic and social preferences accorded to ethnic Malays under the New Economic Policy of 1970 , but he has encountered significant opposition , especially from Malay nationalists and other vested interests . IN NN TO VB VBN NN , NNP VBZ VBN JJ NNS TO DT JJ JJ CC JJ NNS VBN TO JJ NNS IN DT NNP NNP NNP IN CD , CC PRP VBZ VBN JJ NN , RB IN NNP NNS CC JJ JJ NNS . Originally settled by Polynesian emigrants from surrounding island groups , the Tokelau Islands were made a British protectorate in 1889 . RB VBN IN JJ NNS IN VBG NN NNS , DT NNP NNP VBD VBN DT JJ NN IN CD . They were transferred to New Zealand administration in 1925 . PRP VBD VBN TO NNP NNP NN IN CD . Referenda held in 2006 and 2007 to change the status of the islands from that of a New Zealand territory to one of free association with New Zealand did not meet the needed threshold for approval . NNS VBN IN CD CC CD TO VB DT NN IN DT NNS IN DT IN DT NNP NNP NN TO CD IN JJ NN IN NNP NNP VBD RB VB DT VBN NN IN NN . Fisheries in 2006 - 7 landed 1,26,976 metric tons , of which 82 % ( 1,04,586 tons ) was krill ( Euphausia superba ) and 9.5 % ( 12,027 tons ) Patagonian toothfish ( Dissostichus eleginoides - also known as Chilean sea bass ) , compared to 1,27,910 tons in 2005 - 6 of which 83 % ( 1,06,591 tons ) was krill and 9.7 % ( 12,396 tons ) Patagonian toothfish ( estimated fishing from the area covered by the Convention of the Conservation of Antarctic Marine Living Resources ( CCAMLR ) , which extends slightly beyond the Southern Ocean area ) . NNS IN CD : CD VBD CD JJ NNS , IN WDT CD NN LRB CD NNS RRB VBD NN LRB NNP NNP RRB CC CD NN LRB CD NNS RRB JJ NN LRB NNP NNP : RB VBN IN JJ NN NN RRB , VBN TO CD NNS IN CD : CD IN WDT CD NN LRB CD NNS RRB VBD NN CC CD NN LRB CD NNS RRB JJ NN LRB JJ NN IN DT NN VBN IN DT NN IN DT NN IN NNP NNP NNP NNP LRB NNP RRB , WDT VBZ RB IN DT NNP NNP NN RRB . International agreements were adopted in late 1999 to reduce illegal , unreported , and unregulated fishing , which in the 2000 - 1 season landed , by one estimate , 8,376 metric tons of Patagonian and Antarctic toothfish . JJ NNS VBD VBN IN JJ CD TO VB JJ , JJ , CC JJ NN , WDT IN DT CD : CD NN VBD , IN CD NN , CD JJ NNS IN JJ CC JJ NN . In the 2007 - 8 Antarctic summer , 45,213 tourists visited the Southern Ocean , compared to 35,552 in 2006 - 7 , and 29,799 in 2005 - 6 ( estimates provided to the Antarctic Treaty by the International Association of Antarctica Tour Operators ( IAATO ) , and does not include passengers on overflights and those flying directly in and out of Antarctica ) . IN DT CD : CD JJ NN , CD NNS VBD DT NNP NNP , VBN TO CD IN CD : CD , CC CD IN CD : CD LRB NNS VBD TO DT NNP NNP IN DT NNP NNP IN NNP NNP NNP LRB NNP RRB , CC VBZ RB VB NNS IN NNS CC DT VBG RB IN CC IN IN NNP RRB . Democracy is slowly being reestablished after the civil war from 1991 to 2002 that resulted in tens of thousands of deaths and the displacement of more than 2 million people ( about a third of the population ) . NN VBZ RB VBG VBN IN DT JJ NN IN CD TO CD WDT VBD IN NNS IN NNS IN NNS CC DT NN IN JJR IN CD CD NNS LRB IN DT NN IN DT NN RRB . The military , which took over full responsibility for security following the departure of UN peacekeepers at the end of 2005 , is increasingly developing as a guarantor of the country 's stability . DT NN , WDT VBD RP JJ NN IN NN VBG DT NN IN NNP NNS IN DT NN IN CD , VBZ RB VBG IN DT NN IN DT NN POS NN . The armed forces remained on the sideline during the 2007 presidential election , but still look to the UN Integrated Office in Sierra Leone ( UNIOSIL ) - a civilian UN mission - to support efforts to consolidate peace . DT JJ NNS VBD IN DT NN IN DT CD JJ NN , CC RB VB TO DT NNP NNP NNP IN NNP NNP LRB NNP RRB IN DT JJ NNP NN : TO VB NNS TO VB NN . The new government 's priorities include furthering development , creating jobs , and stamping out endemic corruption . DT JJ NN POS NNS VBP VBG NN , VBG NNS , CC VBG RP JJ NN . Spain 's powerful world empire of the 16th and 17th centuries ultimately yielded command of the seas to England . NNP POS JJ NN NN IN DT JJ CC JJ NNS RB VBD NN IN DT NNS TO NNP . Subsequent failure to embrace the mercantile and industrial revolutions caused the country to fall behind Britain , France , and Germany in economic and political power . JJ NN TO VB DT NN CC JJ NNS VBD DT NN TO VB IN NNP , NNP , CC NNP IN JJ CC JJ NN . Spain remained neutral in World Wars I and II but suffered through a devastating civil war ( 1936 - 39 ) . NNP VBD JJ IN NNP NNP NNP CC NNP CC VBD IN DT JJ JJ NN LRB CD IN CD RRB . A peaceful transition to democracy following the death of dictator Francisco FRANCO in 1975 , and rapid economic modernization ( Spain joined the EU in 1986 ) gave Spain a dynamic and rapidly growing economy and made it a global champion of freedom and human rights . DT JJ NN TO NN VBG DT NN IN NN NNP NNP IN CD , CC JJ JJ NN LRB NNP VBD DT NNP IN CD RRB VBD NNP DT JJ CC RB VBG NN CC VBD PRP DT JJ NN IN NN CC JJ NNS . The government continues to battle the Basque Fatherland and Liberty ( ETA ) terrorist organization , but its major focus for the immediate future will be on measures to reverse the severe economic recession that started in mid-2008 . DT NN VBZ TO VB DT NNP NNP CC NNP LRB NNP RRB JJ NN , CC PRP$ JJ NN IN DT JJ NN MD VB IN NNS TO VB DT JJ JJ NN WDT VBD IN CD . IN THE WINTERTIME , a Dog curled up in as small a space as possible on account of the cold , determined to make himself a house . IN DT NN , DT NN VBD RB IN IN JJ DT NN IN JJ IN NN IN DT NN , VBN TO VB PRP DT NN . However when the summer returned again , he lay asleep stretched at his full length and appeared to himself to be of a great size . RB WRB DT NN VBD RB , PRP VBD JJ VBN IN PRP$ JJ NN CC VBD TO PRP TO VB IN DT JJ NN . Now he considered that it would be neither an easy nor a necessary work to make himself such a house as would accommodate him . RB PRP VBD IN PRP MD VB RB DT JJ CC DT JJ NN TO VB PRP PDT DT NN IN MD VB PRP . TEE KITES of olden times , as well as the Swans , had the privilege of song . NN NNS IN JJ NNS , RB RB IN DT NNS , VBD DT NN IN NN . But having heard the neigh of the horse , they were so enchanted with the sound , that they tried to imitate it ; and , in trying to neigh , they forgot how to sing . CC VBG VBN DT NN IN DT NN , PRP VBD RB VBN IN DT NN , IN PRP VBD TO VB PRP ; CC , IN VBG TO VB , PRP VBP WRB TO VB . The desire for imaginary benefits often involves the loss of present blessings . DT NN IN JJ NNS RB VBZ DT NN IN JJ NNS . OF two Writers one was brilliant but indolent ; the other though dull , industrious . IN CD NNS CD VBD JJ CC JJ ; DT JJ IN JJ , JJ . They set out for the goal of fame with equal opportunities . PRP VBD RP IN DT NN IN NN IN JJ NNS . Before they died the brilliant one was detected in seventy languages as the author of but two or three books of fiction and poetry , while the other was honoured in the Bureau of Statistics of his native land as the compiler of sixteen volumes of tabulated information relating to the domestic hog . IN PRP VBD DT JJ CD VBD VBN IN CD NNS IN DT NN IN CC CD CC CD NNS IN NN CC NN , IN DT NN VBD VBN IN DT NNP IN NNP IN PRP$ JJ NN IN DT NN IN CD NNS IN JJ NN VBG TO DT JJ NN . TWO Game Cocks , having fought a battle , the defeated one skulked away and hid , but the victor mounted a wall and crowed lustily . CD NN NN , VBG VBN DT NN , DT VBN CD VBN RB CC JJ , CC DT NN VBD DT NN CC VBD RB . This attracted the attention of a hawk , who said : DT VBD DT NN IN DT NN , WP VBD : ' Behold ! how pride goeth before a fall . ' `` VB . WRB NN NN IN DT NN . `` So he swooped down upon the boasting bird and was about to destroy him , when the vanquished Cock came out of his hiding-place , and between the two the Hawk was calamitously defeated . RB PRP VBD RP IN DT VBG NN CC VBD IN TO VB PRP , WRB DT JJ NN VBD IN IN PRP$ NN , CC IN DT CD DT NN VBD RB VBN . A Lion used to prowl about a field in which Four Oxen used to dwell . DT NN VBD TO VB IN DT NN IN WDT CD NNS VBD TO VB . Many a time he tried to attack them ; but whenever he came near they turned their tails to one another , so that whichever way he approached them he was met by the horns of one of them . JJ DT NN PRP VBD TO VB PRP ; CC WRB PRP VBD IN PRP VBD PRP$ NNS TO CD DT , RB IN WDT NN PRP VBD PRP PRP VBD VBN IN DT NNS IN CD IN PRP . At last , however , they fell a-quarrelling among themselves , and each went off to pasture alone in a separate corner of the field . IN JJ , RB , PRP VBD JJ IN PRP , CC DT VBD RB TO VB RB IN DT JJ NN IN DT NN . Then the Lion attacked them one by one and soon made an end of all four . RB DT NN VBD PRP CD IN CD CC RB VBD DT NN IN DT CD . United we stand , divided we fall . VBN PRP VBP , VBN PRP VBP . The sales manager was wrapping up her pep talk to new staff members . DT NNS NN VBD VBG RP PRP$ NN NN TO JJ NN NNS . ' Just remember this , ' she said . `` RB VB DT , `` PRP VBD . ' Always be sincere , whether you mean it or not . ' `` RB VB JJ , IN PRP VBP PRP CC RB . `` Israeli officials say despite heavy fighting in southern Lebanon they have not committed the bulk of their force to the battle - to give time for diplomatic efforts to bring about a cease-fire . JJ NNS VBP IN JJ NN IN JJ NNP PRP VBP RB VBN DT NN IN PRP$ NN TO DT NN : TO VB NN IN JJ NNS TO VB IN DT NN . Some of the heaviest fighting of the month-long conflict is now underway . DT IN DT JJS NN IN DT JJ NN VBZ RB JJ . Israeli ground troops on Thursday say they have largely gained control of the town of Marjayoun , a strategic hilltop location near the Litani river . JJ NN NNS IN NNP VBP PRP VBP RB VBN NN IN DT NN IN NNP , DT JJ NN NN IN DT NNP NN . Large numbers of Israeli troops are battling Hezbollah militants in southern Lebanon . JJ NNS IN JJ NNS VBP VBG NNP NNS IN JJ NNP . Hezbollah says it has destroyed a number of Israeli tanks so far . NNP VBZ PRP VBZ VBN DT NN IN JJ NNS RB RB . On Wednesday , Israel 's Cabinet authorized the army to push north to the Litani , about 20 kilometers from the border . IN NNP , NNP POS NNP VBD DT NN TO VB RB TO DT NNP , IN CD NNS IN DT NN . However Israeli officials like Foreign Minister Tzipi Livni say the bulk of their invasion force has not yet entered Lebanon , saying Israel will give U.N. diplomats a little more time to reach a cease-fire . RB JJ NNS IN NNP NNP NNP NNP VBP DT NN IN PRP$ NN NN VBZ RB RB VBN NNP , VBG NNP MD VB NNP NNS DT RB JJR NN TO VB DT NN . Livni says it is important to allow diplomatic efforts to continue as part of the effort to get Hezbollah militants out of southern Lebanon . NNP VBZ PRP VBZ JJ TO VB JJ NNS TO VB IN NN IN DT NN TO VB NNP NNS IN IN JJ NNP . Afghanistan 's president wants international donors to redirect their financial contributions away from non-governmental organizations in his country , saying a lack of funding for the government is undermining reconstruction efforts . NNP POS NN VBZ JJ NNS TO VB PRP$ JJ NNS RB IN JJ NNS IN PRP$ NN , VBG DT NN IN NN IN DT NN VBZ VBG NN NNS . President Hamid Karzai told Britain 's Financial Times Saturday that he will ask for another $ 4 billion to boost reconstruction efforts , when he addresses representatives at a donor conference in London Tuesday . NNP NNP NNP VBD NNP POS NNP NNP NNP IN PRP MD VB IN DT $ CD CD TO VB NN NNS , WRB PRP VBZ NNS IN DT NN NN IN NNP NNP . He said the Afghan people want a stronger government and civil service , and that goal can be met if donors give directly to the government . PRP VBD DT JJ NNS VBP DT JJR NN CC JJ NN , CC DT NN MD VB VBN IN NNS VBP RB TO DT NN . The Afghan president acknowledged in the interview that the country is still struggling with problems including narcotics trafficking and corruption . DT JJ NN VBD IN DT NN IN DT NN VBZ RB VBG IN NNS VBG NNS NN CC NN . Mr. Karzai also addressed the insurgent violence plaguing his country , saying the acts are a sign of desperation . NNP NNP RB VBD DT JJ NN VBG PRP$ NN , VBG DT NNS VBP DT NN IN NN . Egyptian President Hosni Mubarak 's son , Gamal , says he will not run for president in elections set for September . JJ NNP NNP NNP POS NN , NNP , VBZ PRP MD RB VB IN NN IN NNS VBN IN NNP . Speaking Wednesday in Cairo , 41-year-old Gamal Mubarak said recent moves to amend Egypt 's constitution to allow for a multi-candidate election has not changed his mind . VBG NNP IN NNP , JJ NNP NNP VBD JJ NNS TO VB NNP POS NN TO VB IN DT JJ NN VBZ RB VBN PRP$ NN . He also denied his father ordered the amendments so that his son could run . PRP RB VBD PRP$ NN VBD DT NNS RB IN PRP$ NN MD VB . President Mubarak , age 76 and in power since 1981 , has not said whether he will seek a fifth six-year term , although he is widely expected to do so . NNP NNP , NN CD CC IN NN IN CD , VBZ RB VBN IN PRP MD VB DT JJ JJ NN , IN PRP VBZ RB VBN TO VB RB . Gamal Mubarak 's rapid rise in Egyptian politics has fueled speculation he was being groomed to succeed his father . NNP NNP POS JJ NN IN JJ NNS VBZ VBN NN PRP VBD VBG VBN TO VB PRP$ NN . He currently serves as policy secretary for the ruling National Democratic Party PRP RB VBZ IN NN NN IN DT NN NNP NNP NNP New mobile phone buyers in China must register their personal data under a new rule that many see as an invasion of privacy . NNP JJ NN NNS IN NNP MD VB PRP$ JJ NNS IN DT JJ NN IN NN VBP IN DT NN IN NN . As of Wednesday , customers buying numbers for mobile phones must show their identity cards and foreigners must produce passports . IN IN NNP , NNS VBG NNS IN JJ NNS MD VB PRP$ NN NNS CC NNS MD VB NNS . The Ministry of Industry and Information Technology says the measure is aimed at curbing spam and telecommunication fraud . DT NNP IN NNP CC NNP NNP VBZ DT NN VBZ VBN IN VBG NN CC NN NN . But critics say they think the government is trying to increase its control over new communications technologies . CC NNS VBP PRP VBP DT NN VBZ VBG TO VB PRP$ NN IN JJ NNS NNS . The official Xinhua news agency says services will not be affected for those who already have pre-paid SIM cards in their mobile phones . DT JJ NNP NN NN VBZ NNS MD RB VB VBN IN DT WP RB VBP JJ NNP NNS IN PRP$ JJ NNS . Xinhua says China has more than 800 million mobile phone users compared to 300 million fixed-line users . NNP VBZ NNP VBZ JJR IN CD CD JJ NN NNS VBN TO CD CD JJ NNS . Leading operators China Mobile , China Unicom and China Telecom all say they will implement the new rules . VBG NNS NNP NNP , NNP NNP CC NNP NNP DT VBP PRP MD VB DT JJ NNS . The U.S. Gulf Coast states of Mississippi and Louisiana have declared states of emergency , in preparation for Hurricane Katrina , which is forecast to make landfall somewhere along the coast on Monday . DT NNP NNP NNP NNS IN NNP CC NNP VBP VBN NNS IN NN , IN NN IN NNP NNP , WDT VBZ VBN TO VB NN RB IN DT NN IN NNP . Mississippi Governor Haley Barbour and Louisiana 's Kathleen Blanco issued the declarations as the dangerous hurricane strengthened over the warm Gulf waters Saturday and evacuations of low-lying areas began . NNP NNP NNP NNP CC NNP POS NNP NNP VBD DT NNS IN DT JJ NN VBD IN DT JJ NNP NNS NNP CC NNS IN JJ NNS VBD . At last report , the 11th named storm of this year 's Atlantic hurricane season was 628 kilometers southeast of the mouth of the Mississippi River . IN JJ NN , DT JJ VBN NN IN DT NN POS NNP NN NN VBD CD NNS NN IN DT NN IN DT NNP NNP . The slow-moving system had 185 kilometer-per-hour winds as it moved in a westerly direction . DT JJ NN VBD CD JJ NNS IN PRP VBD IN DT JJ NN . Hurricane Katrina slammed into southeast Florida Thursday , leaving at least seven people dead . NNP NNP VBD IN NN NNP NNP , VBG IN JJS CD NNS JJ . The storm caused widespread flooding , toppled trees and left about a million people without electricity . DT NN VBD JJ NN , VBD NNS CC VBD IN DT CD NNS IN NN . Insured losses from Katrina 's first strike are now estimated at $ 1 billion . JJ NNS IN NNP POS JJ NN VBP RB VBN IN $ CD CD . Australian striker Harry Kewell has been cleared to play in his team 's crucial World Cup match against Croatia , following an animated argument with the referee after the Aussies ' 2-0 loss to Brazil in Munich on Sunday . JJ NN NNP NNP VBZ VBN VBN TO VB IN PRP$ NN POS JJ NNP NNP NN IN NNP , VBG DT JJ NN IN DT NN IN DT NNS POS JJ NN TO NNP IN NNP IN NNP . FIFA head of communications Markus Siegler said Tuesday , the disciplinary committee for football 's world governing body cleared the Liverpool striker because of inconsistent reports from the referee . NNP NN IN NNS NNP NNP VBD NNP , DT JJ NN IN NN POS NN VBG NN VBD DT NNP NN IN IN JJ NNS IN DT NN . Match referee Markus Merk of Germany had complained that Kewell insulted him during a confrontation that lasted several minutes . NNP NN NNP NNP IN NNP VBD VBN IN NNP VBD PRP IN DT NN WDT VBD JJ NNS . Merk called 25 fouls against Australia but just nine on defending champion Brazil . NNP VBD CD NNS IN NNP CC RB CD IN VBG JJ NNP . Kewell characterized his exchange with Merk as ' heat of the moment stuff . ' NNP VBD PRP$ NN IN NNP IN `` NN IN DT NN NN . `` Australia is making its first World Cup appearance in 32 years and needs at least a draw against Croatia Thursday in Stuttgart to advance to the second round . NNP VBZ VBG PRP$ JJ NNP NNP NN IN CD NNS CC VBZ IN JJS DT NN IN NNP NNP IN NNP TO VB TO DT JJ NN . Sri Lanka 's president has acknowledged she had asked United Nations Secretary-General Kofi Annan not to visit a tsunami-hit area controlled by Tamil rebels . NNP NNP POS NN VBZ VBN PRP VBD VBN NNP NNP NNP NNP NNP RB TO VB DT JJ NN VBN IN NNP NNS . President Chandrika Kumaratunga said in Colombo Monday she advised Mr. Annan not go to the northern town of Jaffna held by Tamil Tiger rebels because of concerns over security . NNP NNP NNP VBD IN NNP NNP PRP VBD NNP NNP RB VB TO DT JJ NN IN NNP VBN IN NNP NNP NNS IN IN NNS IN NN . Rebel officials expressed anger , and hundreds of Tamils demonstrated Sunday outside the U.N. offices in Jaffna to protest the cancellation of Mr. Annan 's planned visit . NN NNS VBD NN , CC NNS IN NNS VBN NNP IN DT NNP NNS IN NNP TO VB DT NN IN NNP NNP POS JJ NN . Mr. Annan said although he was the guest of the Sri Lankan government , he was concerned about everyone who needs humanitarian aid . NNP NNP VBD IN PRP VBD DT NN IN DT NNP NNP NN , PRP VBD VBN IN DT WP VBZ JJ NN . He also urged the government and the Tamil rebels to put aside their differences as the region struggles to rebuild . PRP RB VBD DT NN CC DT NNP NNS TO VB RP PRP$ NNS IN DT NN VBZ TO VB . Iran is denying an opposition group 's claim that it is building a clandestine underground nuclear enrichment facility west of Tehran . NNP VBZ VBG DT NN NN POS NN IN PRP VBZ VBG DT JJ JJ JJ NN NN NN IN NNP . On Thursday , the People 's Mujahedeen Organization of Iran claimed that it had discovered evidence of the site 120 kilometers west of the capital . IN NNP , DT NNS POS NNP NNP IN NNP VBD IN PRP VBD VBN NN IN DT NN CD NNS JJS IN DT NN . A group spokesman said the project was about 85 percent complete . DT NN NN VBD DT NN VBD IN CD NN JJ . But Iranian nuclear chief Ali Akbar Salehi said Friday Tehran does not have such a facility . CC JJ JJ NN NNP NNP NNP VBD NNP NNP VBZ RB VB JJ DT NN . Salehi said if the opposition group had any details of a secret nuclear facility it should inform Iran ' so that we can thank them . ' NNP VBD IN DT NN NN VBD DT NNS IN DT JJ JJ NN PRP MD VB NNP `` RB IN PRP MD VB PRP . `` A U.S. government official also disputed the claim , telling the Associated Press that the U.S. has known about the facility for years and that it does not appear to have a nuclear role . DT NNP NN NN RB VBD DT NN , VBG DT NNP NNP IN DT NNP VBZ VBN IN DT NN IN NNS CC IN PRP VBZ RB VB TO VB DT JJ NN . Authorities in southern India say a shootout between security forces and suspected Maoist rebels has killed eight rebels , including four women . NNS IN JJ NNP VBP DT NN IN NN NNS CC JJ NN NNS VBZ VBN CD NNS , VBG CD NNS . Officials in Andhra Pradesh say police commandos led a raid against a group of rebels meeting in a densely forested area Sunday . NNS IN NNP NNP VBP NNS NNS VBD DT NN IN DT NN IN NNS VBG IN DT RB VBN NN NNP . The officials say a senior Maoist leader was among those killed in the clash , some 400 kilometers south of the state capital , Hyderabad . DT NNS VBP DT JJ NNP NN VBD IN DT VBN IN DT NN , DT CD NNS RB IN DT NN NN , NNP . Andhra Pradesh is one of several Indian states where the Maoists are active . NNP NNP VBZ CD IN JJ JJ NNS WRB DT NNS VBP JJ . Thousands of people have been killed in the violence over the past two decades . NNS IN NNS VBP VBN VBN IN DT NN IN DT JJ CD NNS . The rebels claim to be inspired by the teachings of Chinese revolutionary Mao Zedong . DT NNS VBP TO VB VBN IN DT NNS IN JJ JJ NNP NNP . They say they are fighting for the rights of India 's poor and landless farmers . PRP VBP PRP VBP VBG IN DT NNS IN NNP POS JJ CC JJ NNS . Japan 's Emperor Akihito , together with Empress Michiko , lays a wreath for U.S. soldiers killed in World War II NNP POS NNP NNP , RB IN NNP NNP , VBZ DT NN IN NNP NNS VBN IN NNP NNP NNP China says the Japanese emperor 's surprise visit to a memorial honoring Koreans who died on the island of Saipan during World War II is a positive sign . NNP VBZ DT JJ NN POS NN NN TO DT NN VBG NNS WP VBD IN DT NN IN NNP IN NNP NNP NNP VBZ DT JJ NN . Emperor Akihito and Empress Michiko traveled to the U.S. territory Monday to pay tribute to the tens of thousands of people killed in fighting between U.S. and Japanese forces on the island in June of 1944 . NNP NNP CC NNP NNP VBD TO DT NNP NN NNP TO VB NN TO DT NNS IN NNS IN NNS VBN IN VBG IN NNP CC JJ NNS IN DT NN IN NNP IN CD . Japan occupied much of Asia , including China and the Korean peninsula , in the years before and during the war and sent some 1,000 Korean forced laborers to Saipan . NNP VBD NN IN NNP , VBG NNP CC DT JJ NN , IN DT NNS IN CC IN DT NN CC VBD DT CD JJ JJ NNS TO NNP . The official Xinhua news agency quotes a spokesman for the Chinese foreign ministry says the royal couple 's visit to the Korean war memorial shows that Japan correctly understands its history of wartime aggression . DT JJ NNP NN NN VBZ DT NN IN DT JJ JJ NN VBZ DT NN NN POS NN TO DT JJ NN NN VBZ IN NNP RB VBZ PRP$ NN IN NN NN . Chinese state media say the number of people who died in a mudslide at an illegal mine in northern China has risen to 128 . JJ NN NNS VBP DT NN IN NNS WP VBD IN DT NN IN DT JJ NN IN JJ NNP VBZ VBN TO CD . China Central Television says rescue workers continue their search for possible survivors , but hope was fading two days after the slide occurred . NNP NNP NNP VBZ NN NNS VBP PRP$ NN IN JJ NNS , CC NN VBD VBG CD NNS IN DT NN VBD . On Monday , heavy rains triggered the collapse of a reservoir of iron-ore waste at the mine in Shanxi province . IN NNP , JJ NNS VBD DT NN IN DT NN IN JJ NN IN DT NN IN NNP NN . The torrent of mud and mining waste plowed into buildings . DT NN IN NN CC NN NN VBD IN NNS . State media say 35 people were injured by the massive torrent of mud and debris . NNP NNS VBP CD NNS VBD VBN IN DT JJ NN IN NN CC NN . An unknown number of others are still believed to be trapped beneath the rubble . DT JJ NN IN NNS VBP RB VBN TO VB VBN IN DT NN . Chinese work safety officials are blaming the illegal mine for the disaster . JJ NN NN NNS VBP VBG DT JJ NN IN DT NN . Police have already detained nine of its employees , including the boss of the mine . NNS VBP RB VBN CD IN PRP$ NNS , VBG DT NN IN DT NN . Cuban bassist Orlando ' Cachaito ' Lopez , a member of the island nation 's legendary Buena Vista Social Club , has died at the age of 76 . JJ NN NNP `` NNP `` NNP , DT NN IN DT NN NN POS JJ NNP NNP NNP NNP , VBZ VBN IN DT NN IN CD . Lopez 's fellow musicians say the bassist died of complications associated with prostate surgery . NNP POS NN NNS VBP DT NN VBD IN NNS VBN IN NN NN . Lopez was one of several veteran Cuban musicians brought together in 1996 by U.S. guitarist and music producer Ry Cooder as part of a film documentary and music album . NNP VBD CD IN JJ JJ JJ NNS VBN RB IN CD IN NNP NN CC NN NN NNP NNP IN NN IN DT NN NN CC NN NN . The musicians had all been a part of the glory days of the Cuban nightclub scene before the rise of former Cuban leader Fidel Castro in 1959 . DT NNS VBD DT VBN DT NN IN DT NN NNS IN DT JJ NN NN IN DT NN IN JJ JJ NN NNP NNP IN CD . The band , which has gained international acclaim since the release of the film and album , has lost many of its key members in recent years , including singers Compay Segundo and Ibrahim Ferrer , and pianist Ruben Gonzalez . DT NN , WDT VBZ VBN JJ NN IN DT NN IN DT NN CC NN , VBZ VBN NN IN PRP$ JJ NNS IN JJ NNS , VBG NNS NNP NNP CC NNP NNP , CC NN NNP NNP . A new report from a private research group says the U.S. economy was declining even before the most recent financial market turmoil . DT JJ NN IN DT JJ NN NN VBZ DT NNP NN VBD VBG RB IN DT RBS JJ JJ NN NN . The Conference Board 's index of leading indicators for August shows the index falling five-tenths of one percentage point to a reading of 100.8 . DT NNP NNP POS NN IN VBG NNS IN NNP VBZ DT NN VBG NNS IN CD NN NN TO DT NN IN CD . The index was published Thursday and is intended to forecast trends three to six months in advance . DT NN VBD VBN NNP CC VBZ VBN TO VB NNS CD CC CD NNS IN NN . A separate government report pointed to one bright spot in the economy , as exports are boosting the manufacturing sector . DT JJ NN NN VBD TO CD JJ NN IN DT NN , IN NNS VBP VBG DT NN NN . A report on Philadelphia area factories shows their activity increasing this month . DT NN IN NNP NN NNS VBZ PRP$ NN VBG DT NN . Economists watch this area report for clues about the health of the factory sector nationwide . NNS VBP DT NN NN IN NNS IN DT NN IN DT NN NN NN . Suspected Taleban insurgents have killed an Afghan intelligence officer in southeastern Zabul province and wounded a Muslim cleric in southern Helmand province . VBN NNP NNS VBP VBN DT JJ NN NN IN JJ NNP NN CC VBN DT NN NN IN JJ NNP NN . Afghan officials say the intelligence officer was shot dead early Thursday in Zabul 's Dai Chopan district . JJ NNS VBP DT NN NN VBD VBN RB RB NNP IN NNP POS NNP NNP NN . They say the attackers managed to flee the scene and that despite a massive manhunt no suspects have been arrested . PRP VBP DT NNS VBD TO VB DT NN CC IN IN DT JJ NN DT NNS VBP VBN VBN . Meanwhile , in Helmand 's Nurja district , a Muslim cleric was wounded by unidentified gunmen riding a motorcycle . RB , IN NNP POS NNP NN , DT NNP NN VBD VBN IN JJ NNS VBG DT NN . He was taken to a local hospital for treatment . PRP VBD VBN TO DT JJ NN IN NN . A purported Taleban spokesman claimed responsibility for both incidents . DT JJ NNP NN VBD NN IN DT NNS . Taleban militants and their supporters have stepped up their violent campaign aimed at disrupting Afghanistan 's parliamentary elections scheduled for September 18 . NNP NNS CC PRP$ NNS VBP VBN RP PRP$ JJ NN VBN IN VBG NNP POS JJ NNS VBN IN NNP CD . A series of five stamps issued by Mexican government depicting an exaggerated black cartoon character known as Memin Pinguin A newly issued Mexican postage stamp of a once-popular black comic book character has sparked controversy . DT NN IN CD NNS VBN IN JJ NN VBG DT JJ JJ NN NN VBN IN NNP NNP NNP RB VBD JJ NN NN IN DT JJ JJ JJ NN NN VBZ VBN NN . Local and U.S. activists have called for the withdrawal of the stamp , which depicts a 1940 's comic character called Memin Pinguin who has exaggerated thick lips and wide-opened eyes . JJ CC NNP NNS VBP VBN IN DT NN IN DT NN , WDT VBZ DT CD POS JJ NN VBD NNP NNP WP VBZ VBN JJ NNS CC JJ NNS . American civil rights activist Jesse Jackson has called the stamp racist . JJ JJ NNS NN NNP NNP VBZ VBN DT NN NN . But a presidential spokesman says the stamp is a celebration of Mexico 's pop culture . CC DT JJ NN VBZ DT NN VBZ DT NN IN NNP POS NN NN . The release of the stamp comes just weeks after Mexican President Vicente Fox angered many African-Americans by saying illegal Mexican immigrants are willing to do jobs in the United States not even blacks want to do . DT NN IN DT NN VBZ RB NNS IN JJ NNP NNP NNP VBD JJ NNPS IN VBG JJ JJ NNS VBP JJ TO VB NNS IN DT NNP NNPS RB RB NNS VBP TO VB . Mr. Fox apologized for any misunderstanding , saying he was only trying to highlight the important contribution of Mexican workers in the United States . NNP NNP VBD IN DT NN , VBG PRP VBD RB VBG TO VB DT JJ NN IN JJ NNS IN DT NNP NNPS . Venezuela 's state-run oil company has cut the time for foreign companies to pay for oil purchases from 30 days to eight days . NNP POS JJ NN NN VBZ VBN DT NN IN JJ NNS TO VB IN NN NNS IN CD NNS TO CD NNS . Petroleos de Venezuela SA ( PDVSA ) said in a statement Tuesday that the decision was made , in part , because of the falling value of the U.S. dollar . NNP NNP NNP NNP LRB NNP RRB VBD IN DT NN NNP IN DT NN VBD VBN , IN NN , IN IN DT VBG NN IN DT NNP NN . PDVSA also said having the payments sooner will allow it to re-invest its income quickly and remain competitive in the world oil market . NNP RB VBD VBG DT NNS RB MD VB PRP TO VB PRP$ NN RB CC VBP JJ IN DT NN NN NN . Last year , the Venezuelan government took majority control of large oil projects from foreign companies . JJ NN , DT JJ NN VBD NN NN IN JJ NN NNS IN JJ NNS . Oil companies like ExxonMobil and ConocoPhillips refused to accept new terms as junior partners . NN NNS IN NNP CC NNP VBD TO VB JJ NNS IN JJ NNS . The U.S. State Department has said Venezuela has the right to nationalize its assets but should provide fair compensation . DT NNP NNP NNP VBZ VBN NNP VBZ DT NN TO VB PRP$ NNS CC MD VB JJ NN . Venezuela said it would not pay cash for the oil assets it takes over . NNP VBD PRP MD RB VB NN IN DT NN NNS PRP VBZ RP . Every year millions of unwanted dogs and cats in the U.S. are brought to animal shelters , where the hope is that they will be adopted . DT NN NNS IN JJ NNS CC NNS IN DT NNP VBP VBN TO NN NNS , WRB DT NN VBZ IN PRP MD VB VBN . The reality is that about half of them will be euthanized , because there are simply not enough homes for them . DT NN VBZ IN IN NN IN PRP MD VB VBN , IN EX VBP RB RB JJ NNS IN PRP . Dealing with abandoned , abused and unwanted pets is a public health and safety issue that concerns most local governments in the U.S. VBG IN JJ , JJ CC JJ NNS VBZ DT JJ NN CC NN NN WDT VBZ RBS JJ NNS IN DT NNP But the task would be immensely more difficult if it were not for the support and expertise of privately funded animal rescue clinics . CC DT NN MD VB RB RBR JJ IN PRP VBD RB IN DT NN CC NN IN RB VBN NN NN NNS . VOA 's George Dwyer reports on how one American animal shelter is working to help control the local pet population . NNP POS NNP NNP VBZ IN WRB CD JJ NN NN VBZ VBG TO VB VB DT JJ NN NN . Ruth Reader narrates . NNP NNP VBZ . U.S. President George Bush has approved an extension of a trade agreement with four South American nations . NNP NNP NNP NNP VBZ VBN DT NN IN DT NN NN IN CD JJ JJ NNS . Mr. Bush Thursday said the Andean Trade Preference Act shows the U.S. commitment to economic growth in the region . NNP NNP NNP VBD DT NNP NNP NNP NNP VBZ DT NNP NN TO JJ NN IN DT NN . The measure , first enacted in 1991 , lifts trade barriers with Bolivia , Colombia , Ecuador and Peru . DT NN , RB VBN IN CD , VBZ NN NNS IN NNP , NNP , NNP CC NNP . But , the president said he has proposed suspending Bolivia 's trade preferences because the country has failed to cooperate with the United Sates on efforts to fight drug trafficking . CC , DT NN VBD PRP VBZ VBN VBG NNP POS NN NNS IN DT NN VBZ VBN TO VB IN DT NNP NNP IN NNS TO VB NN NN . Mr. Bush also reiterated his call for Congress to approve free trade agreements with Colombia , Panama and South Korea . NNP NNP RB VBD PRP$ NN IN NNP TO VB JJ NN NNS IN NNP , NNP CC NNP NNP . Citing the current financial crisis , Mr. Bush said keeping markets open to trade and investment is one of the best ways to restore global economic confidence . VBG DT JJ JJ NN , NNP NNP VBD VBG NNS JJ TO VB CC NN VBZ CD IN DT JJS NNS TO VB JJ JJ NN . Turkish Prime Minister Recep Tayyip Erdogan has met with a leading pro-Kurdish politician after the government expressed interest in granting more rights to minority Kurds . JJ NNP NNP NNP NNP NNP VBZ VBN IN DT VBG JJ NN IN DT NN VBD NN IN VBG JJR NNS TO NN NNS . Mr. Erdogan held talks Wednesday with Ahmet Turk , the head of the pro-Kurdish Democratic Society Party . NNP NNP VBD NNS NNP IN NNP NNP , DT NN IN DT JJ JJ NNP NNP . The meeting is linked to an effort to end the 25-year insurgency by Kurdish rebels . DT NN VBZ VBN TO DT NN TO VB DT JJ NN IN NNP NNS . Officials did not give details about topics under discussion . NNS VBD RB VB NNS IN NNS IN NN . Mr. Erdogan has criticized the pro-Kurdish party for not denouncing members of the outlawed Kurdistan Workers ' Party as terrorists . NNP NNP VBZ VBN DT JJ NN IN RB VBG NNS IN DT JJ NNP NNP POS NN IN NNS . The PKK is listed as a terrorist group by Ankara and much of the international community . DT NNP VBZ VBN IN DT JJ NN IN NNP CC NN IN DT JJ NN . Separatist rebels have been fighting for Kurdish rule in southeastern Turkey for a quarter-century . NNP NNS VBP VBN VBG IN JJ NN IN JJ NNP IN DT NN . Tens of thousands of people have died in the conflict . NNS IN NNS IN NNS VBP VBN IN DT NN . A brother of Afghan President Hamid Karzai says he survived an attack Monday on his motorcade that killed one of his bodyguards . DT NN IN JJ NNP NNP NNP VBZ PRP VBD DT NN NNP IN PRP$ NN WDT VBD CD IN PRP$ NNS . Ahmad Wali Karzai said he was traveling from eastern Afghanistan to the capital of Kabul at the time of the attack . NNP NNP NNP VBD PRP VBD VBG IN JJ NNP TO DT NN IN NNP IN DT NN IN DT NN . It was not immediately clear who was behind the attack , but the country is in the middle of a growing Taliban insurgency . PRP VBD RB RB JJ WP VBD IN DT NN , CC DT NN VBZ IN DT NN IN DT VBG NNP NN . Afghan authorities said militants attacked a police post and killed six officers Sunday in southern Helmand province . JJ NNS VBD NNS VBD DT NN NN CC VBD CD NNS NNP IN JJ NNP NN . The Afghan Defense Ministry also said a roadside bomb in neighboring Zabul province killed an Afghan army soldier and wounded three others Sunday . DT JJ NNP NNP RB VBD DT NN NN IN JJ NNP NN VBD DT JJ NN NN CC VBD CD NNS NNP . Afghan and international forces have been fighting Taliban militants since 2001 . JJ CC JJ NNS VBP VBN VBG NNP NNS IN CD . U.S. President Barack Obama is sending an extra 21,000 troops to Afghanistan to try to crush the insurgency . NNP NNP NNP NNP VBZ VBG DT JJ CD NNS TO NNP TO VB TO VB DT NN . President Bush has again defended his defense secretary , Donald Rumsfeld , saying the secretary cares deeply about U.S. troops and the grief war causes . NNP NNP VBZ RB VBN PRP$ NN NN , NNP NNP , VBG DT NN VBZ RB IN NNP NNS CC DT NN NN NNS . Asked at a news conference if he was offended that Mr. Rumsfeld has not been personally signing condolence letters to families of troops killed in Iraq , Mr. Bush said he ' knows Mr. Rumsfeld 's heart . ' VBN IN DT NN NN IN PRP VBD VBN IN NNP NNP VBZ RB VBN RB VBG NN NNS TO NNS IN NNS VBN IN NNP , NNP NNP VBD PRP `` VBZ NNP NNP POS NN . `` He said the secretary 's demeanor may be rough , but underneath he is a good , decent man . PRP VBD DT NN POS NN MD VB JJ , CC IN PRP VBZ DT JJ , JJ NN . The defense secretary is under criticism from a number of Republican and Democratic senators over his handling of operations in Iraq . DT NN NN VBZ IN NN IN DT NN IN JJ CC JJ NNS IN PRP$ NN IN NNS IN NNP . Mr. Rumsfeld said in a statement Sunday that from now on , he will sign condolence letters in his own hand , instead of using a machine . NNP NNP VBD IN DT NN NNP IN IN RB IN , PRP MD VB NN NNS IN PRP$ JJ NN , RB IN VBG DT NN . Two leading Republican senators said Sunday it would be disruptive to have Mr. Rumsfeld leave office now . CD VBG JJ NNS VBD NNP PRP MD VB JJ TO VB NNP NNP VB NN RB . Electoral officials in Iraq say they do not have the authority to postpone the nation 's January elections , as demanded by leading Iraqi political groups . JJ NNS IN NNP VBP PRP VBP RB VB DT NN TO VB DT NN POS NNP NNS , IN VBN IN VBG JJ JJ NNS . At least 15 mostly Sunni and Kurdish political groups asked the electoral commission Friday to delay the January 30 poll by up to six months because of ongoing violence in the country . IN JJS CD RB NNP CC NNP JJ NNS VBD DT JJ NN NNP TO VB DT NNP CD NN IN RB IN CD NNS IN IN JJ NN IN DT NN . But the commission 's chairman , Abdel Hussein al-Hindawi , said Saturday , that any delay would have to be discussed among various groups , including the Iraqi interim government , parliament and the United Nations . CC DT NN POS NN , NNP NNP NNP , VBD NNP , IN DT NN MD VB TO VB VBN IN JJ NNS , VBG DT JJ JJ NN , NN CC DT NNP NNPS . Meanwhile , a U.S. soldier was killed Saturday , by a roadside bomb near the town of Duluiya , 90 kilometers north of Baghdad . RB , DT NNP NN VBD VBN NNP , IN DT NN NN IN DT NN IN NNP , CD NNS RB IN NNP . The U.S. military also says several Iraqi insurgents were killed while attacking a police station and other targets in the town of Khalis , north of Baghdad . DT NNP NN RB VBZ JJ JJ NNS VBD VBN IN VBG DT NN NN CC JJ NNS IN DT NN IN NNP , NN IN NNP . Haitian president-elect Rene Preval says Haiti 's constitution permits former president Jean-Bertrand Aristide to return from exile in South Africa . JJ JJ NNP NNP VBZ NNP POS NN VBZ JJ NN NNP NNP TO VB IN NN IN NNP NNP . In a news conference Wednesday , Mr. Preval said his position on Mr. Aristide is simple : the constitution says no Haitian citizen needs a visa to enter or leave the country . IN DT NN NN NNP , NNP NNP VBD PRP$ NN IN NNP NNP VBZ JJ IN DT NN VBZ DT JJ NN VBZ DT NN TO VB CC VB DT NN . Earlier Wednesday , Mr. Aristide told reporters in Pretoria , South Africa , that the date of his return to Haiti depends upon negotiations between Mr. Preval , the United Nations and other interested parties . RBR NNP , NNP NNP VBD NNS IN NNP , NNP NNP , IN DT NN IN PRP$ NN TO NNP VBZ IN NNS IN NNP NNP , DT NNP NNPS CC JJ JJ NNS . He said when he returns he will not be involved in politics , but instead would like to teach . PRP VBD WRB PRP VBZ PRP MD RB VB VBN IN NNS , CC RB MD VB TO VB . Mr. Aristide has been living in exile since he was forced out of office in February 2004 after an armed uprising . NNP NNP VBZ VBN VBG IN NN IN PRP VBD VBN IN IN NN IN NNP CD IN DT JJ NN . Mr. Preval was once a close political ally to Mr. Aristide , but has distanced himself in recent years . NNP NNP VBD RB DT JJ JJ NN TO NNP NNP , CC VBZ VBN PRP IN JJ NNS . NATO Secretary-General Jaap de Hoop Scheffer has called on Pakistan and NATO countries to step up their fight against Islamist militants along the Pakistani-Afghan border . NNP NNP NNP IN NNP NNP VBZ VBN IN NNP CC NNP NNS TO VB RP PRP$ NN IN NNP NNS IN DT JJ NN . He said that a planned troop increase in Afghanistan will help foreign forces control some areas of the country , but that the international community must help with development and reconstruction to bring peace and stability to the nation . PRP VBD IN DT JJ NN NN IN NNP MD VB JJ NNS VBP DT NNS IN DT NN , CC IN DT JJ NN MD VB IN NN CC NN TO VB NN CC NN TO DT NN . The NATO chief spoke in Islamabad Thursday after talks with Pakistani Foreign Minister Shah Mehmood Qureshi , President Asif Ali Zardari and Prime Minister Yousuf Raza Gilani . DT NNP NN VBD IN NNP NNP IN NNS IN JJ NNP NNP NNP NNP NNP , NNP NNP NNP NNP CC NNP NNP NNP NNP NNP . Their talks centered on security in the border region and Pakistan 's growing relationship with the alliance . PRP$ NNS VBD IN NN IN DT NN NN CC NNP POS VBG NN IN DT NN . Also Thursday , Pakistani security officials said government forces backed by helicopter gunships killed 11 militants in the country 's restive Swat Valley . RB NNP , JJ NN NNS VBD NN NNS VBN IN NN NNS VBD CD NNS IN DT NN POS JJ NNP NNP . U.S. and NATO officials say Pakistan 's northwest tribal regions have become a safe haven for militants linked to the Taliban and al-Qaida . NNP CC NNP NNS VBP NNP POS JJS JJ NNS VBP VBN DT JJ NN IN NNS VBN TO DT NNP CC NNP . The Economic Commission for Latin America and the Caribbean says the percentage of people living in poverty in the region has declined for the second straight year . DT NNP NNP IN NNP NNP CC DT NNP VBZ DT NN IN NNS VBG IN NN IN DT NN VBZ VBN IN DT JJ JJ NN . In a report released Friday , the U.N. panel said 13 million people have climbed out of poverty since 2003 . IN DT NN VBN NNP , DT NNP NN VBD CD CD NNS VBP VBN IN IN NN IN CD . It says better economic conditions and remittances sent home by emigrants working abroad have contributed to the decline . PRP VBZ JJR JJ NNS CC NNS VBD NN IN NNS VBG RB VBP VBN TO DT NN . The organization 's executive director , Jose Luis Machinea , said projected figures for this year show the lowest poverty rates since the early 1980s , but he cautioned that two years of growth will not solve the region 's problems . DT NN POS NN NN , NNP NNP NNP , VBD VBN NNS IN DT NN VBP DT JJS NN NNS IN DT JJ NNS , CC PRP VBD IN CD NNS IN NN MD RB VB DT NN POS NNS . The U.N. report says 213 million people , or nearly 41 percent of Latin Americans , live in poverty . DT NNP NN VBZ CD CD NNS , CC RB CD NN IN NNP NNS , VBP IN NN . European Union foreign policy chief Javier Solana says he has no information to confirm that the Central Intelligence Agency operated secret flights carrying terrorism suspects over Europe . NNP NNP JJ NN NN NNP NNP VBZ PRP VBZ DT NN TO VB IN DT NNP NNP NNP VBD JJ NNS VBG NN NNS IN NNP . Mr. Solana made the comment Tuesday in testimony to a European Parliament committee investigating the claims . NNP NNP VBD DT NN NNP IN NN TO DT JJ NNP NN VBG DT NNS . He also told the panel that he had no authority to demand that EU member states hand over information about probes into the reported flights . PRP RB VBD DT NN IN PRP VBD DT NN TO VB DT NNP NN NNS VBP RP NN IN NNS IN DT JJ NNS . Last week , aviation data was presented to the committee showing the CIA conducted more than one thousand secret flights in Europe over the past five years . JJ NN , NN NNS VBD VBN TO DT NN VBG DT NNP VBD JJR IN CD CD JJ NNS IN NNP IN DT JJ CD NNS . The panel is also studying claims that the CIA used secret prisons in some eastern European countries . DT NN VBZ RB VBG NNS IN DT NNP VBD JJ NNS IN DT JJ JJ NNS . The probe was sparked by news reports that said CIA agents had interrogated al-Qaida suspects at the prisons . DT NN VBD VBN IN NN NNS WDT VBD NNP NNS VBD VBN NNP NNS IN DT NNS . Aid workers and government officials in southern Ethiopia say continued clan violence has displaced nearly 90,000 people . JJ NNS CC NN NNS IN JJ NNP VBP VBN JJ NN VBZ VBN RB CD NNS . United Nations officials say fighting between the Guji and Borena clans has forced residents to flee homes in and around the towns of Shakiso , Arero and Yabello - all south of Addis Ababa . NNP NNP NNS VBP VBG IN DT NNP CC NNP NNS VBZ VBN NNS TO VB NNS IN CC IN DT NNS IN NNP , NNP CC NNP : DT NN IN NNP NNP . A regional administrator , Jaatanni Taadhii , says up to 29,000 have fled their homes in Arero , while an aid worker in Yabello says the number of displaced there may be as high as 39,000 . DT JJ NN , NNP NNP , VBZ RP TO CD VBP VBN PRP$ NNS IN NNP , IN DT NN NN IN NNP VBZ DT NN IN JJ EX MD VB RB JJ IN CD . The aid group Oxfam says more than 20,000 people have fled Shakiso since mid-June . DT NN NN NNP VBZ JJR IN CD NNS VBP VBN NNP IN NNP . This fighting began early last month after the government sided with the Guji community in a land dispute against its Borena neighbors . DT NN VBD RB JJ NN IN DT NN VBD IN DT NNP NN IN DT NN NN IN PRP$ NNP NNS . Aid groups say more than 100 people have died in the violence . JJ NNS VBP JJR IN CD NNS VBP VBN IN DT NN . President Bush has surprised his close ally Japanese Prime Minister Junichiro Koizumi by giving him an electric scooter called a Segway . NNP NNP VBZ VBN PRP$ JJ NN JJ NNP NNP NNP NNP IN VBG PRP DT JJ NN VBD DT NN . Mr. Bush rode the upright two-wheeled vehicle around the State Guest House compound in Kyoto , Japan , before handing it over to Mr. Koizumi and urging him to try it out . NNP NNP VBD DT NN JJ NN IN DT NNP NNP NNP NN IN NNP , NNP , IN VBG PRP IN TO NNP NNP CC VBG PRP TO VB PRP RP . The Japanese prime minister took a one-meter-long journey before saying , ' Oh , very good , ' and stepping off . DT JJ JJ NN VBD DT JJ NN IN VBG , `` UH , RB JJ , `` CC VBG RP . The $ 4,000 scooter uses gyroscopes , computers and motors to travel up to 19 kilometers an hour . DT $ CD NN VBZ NNS , NNS CC NNS TO VB RP TO CD NNS DT NN . It can be tricky to ride - Mr. Bush was photographed falling off of a Segway in 2003 . PRP MD VB JJ TO VB IN NNP NNP VBD VBN VBG IN IN DT NN IN CD . Unfortunately for Mr. Koizumi , Japan has banned the scooters on public streets . RB IN NNP NNP , NNP VBZ VBN DT NNS IN JJ NNS . U.S. Vice President Dick Cheney has defended eavesdropping on Americans without court approval , saying the practice is critical to national security . NNP NNP NNP NNP NNP VBZ VBN VBG IN NNS IN NN NN , VBG DT NN VBZ JJ TO JJ NN . Speaking to a conservative policy institute , the Manhattan Institute , in New York , Cheney said the practice is a wartime measure , limited in scope and fully consistent with both the president 's legal powers and Americans ' civil liberties . VBG TO DT JJ NN NN , DT NNP NNP , IN NNP NNP , NNP VBD DT NN VBZ DT NN NN , VBN IN NN CC RB JJ IN DT DT NN POS JJ NNS CC NNS POS JJ NNS . Warrantless wiretaps on e-mails and telephone calls that cross U.S. boundaries was revealed by the New York Times last month . JJ NNS IN NNS CC NN NNS WDT VBP NNP NNS VBD VBN IN DT NNP NNP NNP JJ NN . Administration critics describe the policy as an unprecedented expansion of presidential powers and violation of civil liberties . NNP NNS VBP DT NN IN DT JJ NN IN JJ NNS CC NN IN JJ NNS . Senators have promised to hold hearings on the legality of the program . NNS VBP VBN TO VB NNS IN DT NN IN DT NN . Cheney said Thursday that the policy was approved by Congress , although the leader of the Senate at the time denies this . NNP VBD NNP IN DT NN VBD VBN IN NNP , IN DT NN IN DT NNP IN DT NN VBZ DT . Iran will call for a cut in OPEC 's , the Organization of Petroleum Exporting Countries , oil output during the cartel 's meeting next week in Algeria . NNP MD VB IN DT NN IN NNP POS , DT NNP IN NNP NNP NNPS , NN NN IN DT NN POS NN JJ NN IN NNP . Iran 's oil minster said Sunday that Tehran will push for a production cut of 1.5 million to two million barrels of oil per day , in an attempt to raise prices . NNP POS NN NN VBD NNP IN NNP MD VB IN DT NN NN IN CD CD TO CD CD NNS IN NN IN NN , IN DT NN TO VB NNS . After reaching a record high in July , oil prices have been falling fast as the faltering global economy lowers demand for energy . IN VBG DT NN NN IN NNP , NN NNS VBP VBN VBG RB IN DT VBG JJ NN NNS NN IN NN . But last month members of OPEC decided to delay possible supply cuts despite the steep drop in crude oil prices . CC JJ NN NNS IN NNP VBD TO VB JJ NN NNS IN DT JJ NN IN JJ NN NNS . OPEC nations produce 40 percent of the world 's oil . NNP NNS VBP CD NN IN DT NN POS NN . Russia , a major non-OPEC oil producer , has said it may coordinate a production cut to bolster prices . NNP , DT JJ JJ NN NN , VBZ VBN PRP MD VB DT NN NN TO VB NNS . U.N. officials say peacekeepers in the Democratic Republic of Congo have killed more than 50 militiamen in a gun battle in the troubled northeastern Ituri province . NNP NNS VBP NNS IN DT JJ NNP IN NNP VBP VBN JJR IN CD NNS IN DT NN NN IN DT JJ JJ NNP NN . A U.N. spokesman said Wednesday that the clash occurred Tuesday , some 30 kilometers from the town of Bunia . DT NNP NN VBD NNP IN DT NN VBD NNP , DT CD NNS IN DT NN IN NNP . The spokesman said the U.N. forces responded using an attack helicopter . DT NN VBD DT NNP NNS VBD VBG DT NN NN . The clash comes one week after nine peacekeepers from Bangladesh were killed by militiamen in the same area . DT NN VBZ CD NN IN CD NNS IN NNP VBD VBN IN NNS IN DT JJ NN . Congolese security forces announced Tuesday that they arrested militia leader Floribert Ndjabu in the capital , Kinshasa and are questioning two other suspects in connection with the killings Mr. Ndjabu is the leader of the ethnic Lendu militia known as the Nationalist and Integrationist Front . JJ NN NNS VBD NNP IN PRP VBN NN NN NNP NNP IN DT NN , NNP CC VBP VBG CD JJ NNS IN NN IN DT NNS NNP NNP VBZ DT NN IN DT JJ NNP NN VBN IN DT NNP CC NNP NNP . It is one of several militias operating in eastern Congo . PRP VBZ CD IN JJ NNS VBG IN JJ NNP . Spain 's Constitutional Court has ruled that the nation 's courts may investigate allegations of human rights abuses even if no Spanish citizens are involved . NNP POS NNP NNP VBZ VBN IN DT NN POS NNS MD VB NNS IN JJ NNS NNS RB IN DT JJ NNS VBP VBN . The court said in its decision Wednesday that the principle of universal jurisdiction takes precedence over the existence , or not , of national interests . DT NN VBD IN PRP$ NN NNP IN DT NN IN JJ NN VBZ NN IN DT NN , CC RB , IN JJ NNS . The decision came from a case brought by Guatemalan Nobel peace laureate Rigoberta Menchu . DT NN VBD IN DT NN VBN IN JJ NNP NN NN NNP NNP . She sought a probe of alleged genocide , murder , torture , and illegal detention of ethnic Indians in Guatemala between 1978 and 1986 , while the country was under military rule . PRP VBD DT NN IN JJ NN , NN , NN , CC JJ NN IN JJ NNS IN NNP IN CD CC CD , IN DT NN VBD IN JJ NN . Events covered in the lawsuit include a 1980 attack on the Spanish Embassy in Guatemala City , in which more than 35 people died . NNS VBN IN DT NN VBP DT CD NN IN DT JJ NNP IN NNP NNP , IN WDT JJR IN CD NNS VBD . Wednesday 's decision reversed earlier rulings that Spain could only investigate cases in which the victims were Spanish . NNP POS NN VBD JJR NNS IN NNP MD RB VB NNS IN WDT DT NNS VBD JJ . Bosnian Croat war crimes suspect Miroslav Bralo has pleaded not guilty to 21 counts of war crimes and crimes against humanity during the 1993 Muslim-Croat fighting in Bosnia-Herzegovina . JJ JJ NN NNS VBP NNP NNP VBZ VBN RB JJ TO CD NNS IN NN NNS CC NNS IN NN IN DT CD JJ NN IN NNP . Mr. Bralo appeared before United Nations war crimes tribunal in The Hague to answer such charges as murder , rape , torture , and illegal detention of civilians . NNP NNP VBD IN NNP NNPS NN NNS JJ IN DT NNP TO VB JJ NNS IN NN , NN , NN , CC JJ NN IN NNS . The indictment says Mr. Bralo committed the crimes as a member of a Bosnian Croat special unit called ' The Jokers ' that operated against Muslim forcers in central Bosnia . DT NN VBZ NNP NNP VBD DT NNS IN DT NN IN DT JJ JJ JJ NN VBD `` DT NNPS `` WDT VBD IN NNP NNS IN JJ NNP . He voluntarily surrendered to authorities last month . PRP RB VBD TO NNS JJ NN . Romanian voters go to the polls Sunday in presidential and parliamentary elections . JJ NNS VBP TO DT NNS NNP IN JJ CC JJ NNS . Opinion polls indicate Socialist Democrat Prime Minister Adrian Nastase and Bucharest mayor Traian Basescu - the nominee of the Justice and Truth alliance-head the list of 12 presidential candidates . NN NNS VBP JJ NN NNP NNP NNP NNP CC NNP NNP NNP NNP IN DT NN IN DT NNP CC NNP VBD DT NN IN CD JJ NNS . If no candidate wins a majority a runoff is scheduled for December 12 . IN DT NN VBZ DT NN DT NN VBZ VBN IN NNP CD . Candidates of the Socialist Democrats and Justice and Truth alliance are also in tight races for seats in the country 's parliament . NNS IN DT NNP NNPS CC NNP CC NNP NN VBP RB IN JJ NNS IN NNS IN DT NN POS NN . Sunday 's balloting comes as the Socialist Democrats fight new charges of corruption against the governing party . NNP POS NN VBZ IN DT NNP NNPS VBP JJ NNS IN NN IN DT VBG NN . Documents said to be transcripts of top-level meetings are reported to highlight abuses of power . NNS VBN TO VB NNS IN JJ NNS VBP VBN TO VB NNS IN NN . Prime Minister Nastase calls the documents fake . JJ NN NNP VBZ DT NNS NN . Corruption is a major problem in Romania . NN VBZ DT JJ NN IN NNP . The government has been seeking to implement reforms in hopes of moving the country towards European Union membership in 2007 . DT NN VBZ VBN VBG TO VB NNS IN NNS IN VBG DT NN IN NNP NNP NN IN CD . The judge hearing British 100-meter sprint champion Dwain Chambers ' appeal of a lifetime Olympic ban has delayed his decision until Thursday . DT NN VBG JJ JJ NN NN NNP NNP POS NN IN DT NN JJ NN VBZ VBN PRP$ NN IN NNP . Chambers served a two-year doping ban between 2003 and 2005 and appealed to London 's High Court for an injunction against the British Olympic Association 's ban for drug cheats . NNP VBD DT JJ NN NN IN CD CC CD CC VBD TO NNP POS NNP NNP IN DT NN IN DT JJ NNP NNP POS NN IN NN NNS . The 30-year-old Chambers earned an Olympic qualifying time Saturday when he won the 100 meters in 10 seconds flat at the British Olympic trials . DT JJ NNP VBD DT JJ NN NN NNP WRB PRP VBD DT CD NNS IN CD NNS JJ IN DT JJ NNP NNS . The one-day delay leaves selection of Britain 's team up in the air and leaves even less time for either Chambers or the British Olympic Association to appeal the judge 's verdict . DT JJ NN VBZ NN IN NNP POS NN RB IN DT NN CC VBZ RB JJR NN IN DT NNS CC DT JJ NNP NNP TO VB DT NN POS NN . Sunday is the deadline to submit the squad to the International Olympic Committee . NNP VBZ DT NN TO VB DT NN TO DT NNP NNP NNP . Three of Russia 's smaller political parties are set to merge . CD IN NNP POS JJR JJ NNS VBP VBN TO VB . The leader of the Party of Life , Sergei Mironov , said Tuesday that the move will unite his party with the Rodina Party and the Party of Pensioners . DT NN IN DT NNP IN NNP , NNP NNP , VBD NNP IN DT NN MD VB PRP$ NN IN DT NNP NNP CC DT NN IN NNS . Mironov chairs Russia 's upper chamber of parliament . NNP VBZ NNP POS JJ NN IN NN . The Itar-Tass news agency says he suggested ' Rodina , Pensioners and Life - Union of Trust ' as the working title for the new group . DT JJ NN NN VBZ PRP VBD `` NNP , NNP CC NNP : NNP IN NNP `` IN DT VBG NN IN DT JJ NN . Some politicians called the merger an attempt to isolate opponents of Russian President Vladimir Putin , whose supporters hold a majority in the lower house of parliament , the State Duma . DT NNS VBD DT NN DT NN TO VB NNS IN JJ NNP NNP NNP , WP$ NNS VBP DT NN IN DT JJR NN IN NN , DT NNP NNP . But Mironov , who is said to have close ties to Mr. Putin , dismissed claims that the maneuver is being orchestrated by the Kremlin . CC NNP , WP VBZ VBN TO VB JJ NNS TO NNP NNP , VBD NNS IN DT NN VBZ VBG VBN IN DT NNP . Russia will hold parliamentary elections next year and presidential elections in 2008 . NNP MD VB JJ NNS IN NN CC JJ NNS IN CD . Assimilating the visually impaired has always been difficult , with the United States often cited as an example of what can be done with the help of modern technology . VBG DT RB VBN VBZ RB VBN JJ , IN DT NNP NNPS RB VBN IN DT NN IN WP MD VB VBN IN DT NN IN JJ NN . Now call centers in India are trying to do the same by using technology to employ the blind . RB NN NNS IN NNP VBP VBG TO VB DT NN IN VBG NN TO VB DT NN . VOA 's Ravi Khanna has the story . NNP POS NNP NNP VBZ DT NN . In a key warm-up for the Wimbledon Championships , Croatian tennis player Mario Ancic has defeated Czech player Jan Hernych , 06-Apr , 06-Apr to reach the finals of the Ordina Open in Den Bosch , the Netherlands . IN DT JJ NN IN DT NNP NNP , JJ NN NN NNP NNP VBZ VBN JJ NN NNP NNP , CD , CD TO VB DT NNS IN DT NNP NNP IN NNP NNP , DT NNP . The Croatian next takes on Frenchman Michael Llodra , who scored a three-set win over Australian Mark Philippoussis ( 07-Jun , 06-Jul , 06-Mar ) . DT NN RB VBZ IN NN NNP NNP , WP VBD DT JJ NN IN JJ NNP NNP LRB CD , CD , CD RRB . Llodra and Ancic have met once before , in Bratislava in 2002 with the Croatian winning in straight sets ( 06-Apr , 07-Jun ) . NNP CC NNP VBP VBN RB RB , IN NNP IN CD IN DT NN VBG IN JJ NNS LRB CD , CD RRB . In women 's play , Czech player Klara Koukalova overcame a first-set loss to beat countrywoman Lucie Safarova in three sets , 03-Jun , 06-Feb , 06-Feb . IN NNS POS NN , JJ NN NNP NNP VBD DT JJ NN TO VB NN NNP NNP IN CD NNS , CD , CD , CD . The victory was Koukalova 's first WTA tournament title . DT NN VBD NNP POS JJ NNP NN NN . The tournament is one of several grass-court events players are using to prepare for Wimbledon , which starts Monday in London . DT NN VBZ CD IN JJ JJ NNS NNS VBP VBG TO VB IN NNP , WDT VBZ NNP IN NNP . Macedonian government officials say the U.N. war crimes tribunal has indicted former Interior Minister Ljube Boskovski on war crime charges . JJ NN NNS VBP DT NNP NN NNS JJ VBZ VBN JJ NNP NNP NNP NNP IN NN NN NNS . Details of the indictment are not yet clear , but media reports say Mr. Boskovski was arrested for his role in the killings of 10 ethnic Albanians during a 2001 clash with Macedonian security forces in the village of Ljubotno , near the capital of Skopje . NNS IN DT NN VBP RB RB JJ , CC NNS NNS VBP NNP NNP VBD VBN IN PRP$ NN IN DT NNS IN CD JJ NNS IN DT CD NN IN JJ NN NNS IN DT NN IN NNP , IN DT NN IN NNP . Officials say Mr. Boskovski was indicted with another Macedonian officer , Johan Tarulovski . NNS VBP NNP NNP VBD VBN IN DT JJ NN , NNP NNP . It is not clear whether Mr. Tarulovski has been connected to the same incident . PRP VBZ RB JJ IN NNP NNP VBZ VBN VBN TO DT JJ NN . The charges mark Macedonia 's first indictments by the tribunal . DT NNS VBP NNP POS JJ NNS IN DT NN . Mr. Boskovski is currently in jail in Croatia , where he was charged last month with trying to disguise the killing of seven economic immigrants three years ago as an anti-terrorist raid . NNP NNP VBZ RB IN NN IN NNP , WRB PRP VBD VBN JJ NN IN VBG TO VB DT NN IN CD JJ NNS CD NNS RB IN DT JJ NN . He has denied all allegations . PRP VBZ VBN DT NNS . A United Nations report issued last month said global food prices will ease from recent record highs because of good grain harvests . DT NNP NNPS NN VBN JJ NN VBD JJ NN NNS MD VB IN JJ NN NNS IN IN JJ NN NNS . But it predicted prices are unlikely to go back to pre-2007 levels , which is grim news for those who can not afford to eat and others who seek to feed the hungry . CC PRP VBD NNS VBP JJ TO VB RB TO JJ NNS , WDT VBZ JJ NN IN DT WP MD RB VB TO VB CC NNS WP VBP TO VB DT NN . While the world food crisis is most acute in the world 's least developed nations , the elevated costs of staple foodstuffs and fuel are also hitting America 's poor . IN DT NN NN NN VBZ RBS JJ IN DT NN POS JJS JJ NNS , DT JJ NNS IN NN NNS CC NN VBP RB VBG NNP POS NN . The evidence can be seen on the shelves of a large warehouse , used to feed those who need assistance in the eastern U.S. state of Maryland . DT NN MD VB VBN IN DT NNS IN DT JJ NN , VBN TO VB DT WP VBP NN IN DT JJ NNP NN IN NNP . That is where VOA 's Malcolm Brown reports . DT VBZ WRB NNP POS NNP NNP VBZ . Jordan 's government says it has arrested an Iraqi woman who planned to blow herself up during Wednesday 's suicide bombings at hotels in Amman . NNP POS NN VBZ PRP VBZ VBN DT JJ NN WP VBD TO VB PRP RP IN NNP POS NN NNS IN NNS IN NNP . Officials say the woman is the wife of one of the three Iraqi suicide bombers who killed 57 people at three hotels . NNS VBP DT NN VBZ DT NN IN CD IN DT CD JJ NN NNS WP VBD CD NNS IN CD NNS . They say her bomb failed to go off at a wedding reception at the Radisson Hotel and that her husband made her leave before blowing himself up . PRP VBP PRP$ NN VBD TO VB RP IN DT NN NN IN DT NNP NNP CC IN PRP$ NN VBD PRP$ NN IN VBG PRP RP . Jordanian authorities say the woman also had a brother who was a key aide to al-Qaida in Iraq leader Abu Musab al-Zarqawi and who was killed in the Iraqi city of Fallujah . JJ NNS VBP DT NN RB VBD DT NN WP VBD DT JJ NN TO NNP IN NNP NN NNP NNP NNP CC WP VBD VBN IN DT JJ NN IN NNP . The group claimed responsibility for the hotel bombings . DT NN VBD NN IN DT NN NNS . They say the woman will appear on Jordanian television later Sunday to identify herself and make a confession . PRP VBP DT NN MD VB IN JJ NN RB NNP TO VB PRP CC VB DT NN . Hong Kong Chief Executive Tung Chee-hwa met Saturday with Chinese President Hu Jintao , amid expectations the territory 's unpopular leader will resign . NNP NNP NNP NNP NNP NNP VBD NNP IN JJ NNP NNP NNP , IN NNS DT NN POS JJ NN MD VB . Mr. Tung is in Beijing to attend a meeting of China 's nominal lower house , the Chinese People 's Political Consultative Conference ( CPPCC ) . NNP NNP VBZ IN NNP TO VB DT NN IN NNP POS JJ JJR NN , DT JJ NNP POS NNP NNP NNP LRB NNP RRB . President Hu congratulated the Hong Kong leader on becoming a CPPCC member . NNP NNP VBD DT NNP NNP NN IN VBG DT NNP NN . He told Mr. Tung that his experience in ruling Hong Kong would be useful for his work in the body . PRP VBD NNP NNP IN PRP$ NN IN VBG NNP NNP MD VB JJ IN PRP$ NN IN DT NN . Expectations that Mr. Tung would retire as Hong Kong 's leader more than two years from the end of his term have intensified since it was announced last week he was joining the CPPCC . NNS IN NNP NNP MD VB IN NNP NNP POS NN JJR IN CD NNS IN DT NN IN PRP$ NN VBP VBN IN PRP VBD VBN JJ NN PRP VBD VBG DT NNP . However , Mr. Tung has yet to indicate he will quit . RB , NNP NNP VBZ RB TO VB PRP MD VB . Iran 's Supreme Leader Ayatollah Ali Khamenei has repeated that his country has no interest in building nuclear bombs , but that possessing nuclear technology is its legal right . NNP POS NNP NNP NNP NNP NNP VBZ VBN IN PRP$ NN VBZ DT NN IN VBG JJ NNS , CC IN VBG JJ NN VBZ PRP$ JJ NN . Ayatollah Khamenei told thousands of worshippers at Friday prayers in Tehran that Western nations are trying to mislead public opinion with accusations that Tehran is seeking to build nuclear weapons . NNP NNP VBD NNS IN NNS IN NNP NNS IN NNP IN NNP NNS VBP VBG TO VB JJ NN IN NNS IN NNP VBZ VBG TO VB JJ NNS . He said Iran only seeks to generate nuclear power for electricity . PRP VBD NNP RB VBZ TO VB JJ NN IN NN . The Europeans have offered to sell Iran nuclear fuel , but Ayatollah Khamenei rejected that , saying it would mean Iranian dependence on foreign powers . DT NNS VBP VBN TO VB NNP JJ NN , CC NNP NNP VBD IN , VBG PRP MD VB JJ NN IN JJ NNS . The Europeans have been conducting negotiations with Iran in hopes of persuading Tehran to permanently halt their uranium enrichment activities in exchange for a package of political and economic incentives . DT NNS VBP VBN VBG NNS IN NNP IN NNS IN VBG NNP TO RB VB PRP$ NN NN NNS IN NN IN DT NN IN JJ CC JJ NNS . North Korea announced Saturday it will close two aviation routes through its air space from April 4 through April 8 during a planned rocket launch . NNP NNP VBD NNP PRP MD VB CD NN NNS IN PRP$ NN NN IN NNP CD IN NNP CD IN DT JJ NN NN . The North says it will launch a communication satellite . DT NNP VBZ PRP MD VB DT NN NN . The United States , Japan and South Korea say Pyongyang intends to test a long-range ballistic missile . DT NNP NNPS , NNP CC NNP NNP VBP NNP VBZ TO VB DT JJ JJ NN . They say the launch would violate a U.N. Security Council resolution imposed in 2006 after North Korea tested long range missiles and a nuclear weapon . PRP VBP DT NN MD VB DT NNP NNP NNP NN VBN IN CD IN NNP NNP VBD JJ NN NNS CC DT JJ NN . Japan and South Korea have warned North Korea it will face a strong international response if it goes ahead with the launch . NNP CC NNP NNP VBP VBN NNP NNP PRP MD VB DT JJ JJ NN IN PRP VBZ RB IN DT NN . Japan has said it will attempt to shoot down missiles headed toward its territory . NNP VBZ VBN PRP MD VB TO VB RP NNS VBN IN PRP$ NN . Top U.S. military commanders told members of Congress this week the American military is probably capable of shooting down a long-range North Korean missile if it threatens U.S. territory . JJ NNP NN NNS VBD NNS IN NNP DT NN DT JJ NN VBZ RB JJ IN VBG RP DT JJ JJ JJ NN IN PRP VBZ NNP NN . Arab broadcaster Al Jazeera has telecast a videotape that shows an Afghan warlord wanted by the United States as saying that he and his followers want to support Osama bin Laden . JJ NN NNP NNP VBZ VBN DT NN WDT VBZ DT JJ NN VBN IN DT NNP NNPS IN VBG IN PRP CC PRP$ NNS VBP TO VB NNP NNP NNP . On the tape , Gulbuddin Hekmatyar says he hopes to participate and support bin Laden 's battle . IN DT NN , NNP NNP VBZ PRP VBZ TO VB CC VB NNP NNP POS NN . Hekmatyar 's Hizb-e-Islami faction helped end the Soviet occupation of Afghanistan . NNP POS NNP NN VBD VB DT JJ NN IN NNP . After that , he was Afghanistan 's prime minister from June 1993 to June 1994 . IN DT , PRP VBD NNP POS JJ NN IN NNP CD TO NNP CD . The Taleban chased him out of Kabul in 1996 . DT NNP VBD PRP IN IN NNP IN CD . His group has been blamed for several recent attacks against U.S.-led coalition forces in Afghanistan . PRP$ NN VBZ VBN VBN IN JJ JJ NNS IN JJ NN NNS IN NNP . Hekmatyar 's videotape comes less than two weeks after bin Laden and his number two Ayman al-Zawahiri issued messages on the so-called war on Islam and the political and security situations in Iraq . NNP POS NN VBZ JJR IN CD NNS IN NNP NNP CC PRP$ NN CD NNP NNP VBD NNS IN DT JJ NN IN NNP CC DT JJ CC NN NNS IN NNP . Al Jazeera did not say how it received the tape and it was not clear when it was made . NNP NNP VBD RB VB WRB PRP VBD DT NN CC PRP VBD RB JJ WRB PRP VBD VBN . Egypt 's former foreign minister Ahmed Maher has died at the age of 75 . NNP POS JJ JJ NN NNP NNP VBZ VBN IN DT NN IN CD . Egypt 's MENA news agency says Maher died in a hospital Monday due to unspecified health problems . NNP POS NNP NN NN VBZ NNP VBD IN DT NN NNP JJ TO JJ NN NNS . Maher served as Egypt 's top diplomat from 2001 until 2004 . NNP VBD IN NNP POS JJ NN IN CD IN CD . A career diplomat , he participated in the Camp David peace talks between Israel and Egypt in 1978 . DT NN NN , PRP VBD IN DT NNP NNP NN NNS IN NNP CC NNP IN CD . Maher was attacked by Palestinian activists in 2003 while visiting al-Aqsa mosque in Jerusalem . NNP VBD VBN IN JJ NNS IN CD IN VBG JJ NN IN NNP . The activists threw shoes at him , a deep insult in the Arab world . DT NNS VBD NNS IN PRP , DT JJ NN IN DT JJ NN . The incident did not seriously injure Maher , but it underscored tensions surrounding efforts at the time to restart peace talks between Israelis and Palestinians . DT NN VBD RB RB JJ NNP , CC PRP VBD NNS VBG NNS IN DT NN TO VB NN NNS IN NNS CC NNS . Suspected Islamic militants fired a barrage of rockets into a town in northwest Pakistan Wednesday , killing at least nine civilians . VBN JJ NNS VBD DT NN IN NNS IN DT NN IN JJ NNP NNP , VBG IN JJS CD NNS . Homes were destroyed and around 40 people were wounded during the attack in Bannu , a town in Pakistan 's troubled Northwest Frontier Province . NNP VBD VBN CC IN CD NNS VBD VBN IN DT NN IN NNP , DT NN IN NNP POS JJ NNP NNP NNP . That area is where the United States says Osama bin Laden 's al-Qaida network has set up safe havens . DT NN VBZ WRB DT NNP NNP VBZ NNP NNP NNP POS NNP NN VBZ VBN RP JJ NNS . Pakistan has seen a wave of militant attacks and suicide bombings since security forces raided a radical mosque in Islamabad . NNP VBZ VBN DT NN IN JJ NNS CC NN NNS IN NN NNS VBD DT JJ NN IN NNP . More than 100 people were killed in the operation , including a top cleric . JJR IN CD NNS VBD VBN IN DT NN , VBG DT JJ NN . On Tuesday , a top Taleban militant blew himself up to avoid arrest by Pakistani forces who had surrounded his hideout in the southwestern Baluchistan province . IN NNP , DT JJ NNP NN VBD PRP RP TO VB NN IN JJ NNS WP VBD VBN PRP$ NN IN DT JJ NNP NN . Pakistani officials called Abdullah Mehsud 's death a major achievement for the government as it faces U.S. pressure to crack down on extremists . JJ NNS VBD NNP NNP POS NN DT JJ NN IN DT NN IN PRP VBZ NNP NN TO VB RP IN NNS . NATO Secretary-General Jaap de Hoop Scheffer says the door is open for the former Soviet republic of Georgia to join the alliance . NNP NNP NNP IN NNP NNP VBZ DT NN VBZ JJ IN DT JJ JJ NN IN NNP TO VB DT NN . De Hoop Scheffer said Thursday he is encouraged by Georgia 's improvements in recent years . NNP NNP NNP VBD NNP PRP VBZ VBN IN NNP POS NNS IN JJ NNS . But he added Tbilisi still needs to implement judicial and other democratic reforms before Georgia can gain NATO entry . CC PRP VBD NNP RB VBZ TO VB JJ CC JJ JJ NNS IN NNP MD VB NNP NN . The NATO chief made his comments at a news conference after conferring with Georgia 's president , Mikhail Saakashvili , in the town of Singnaghi . DT NNP NN VBD PRP$ NNS IN DT NN NN IN VBG IN NNP POS NN , NNP NNP , IN DT NN IN NNP . Earlier in the day , de Hoop Scheffer also met with other senior Georgian officials RBR IN DT NN , IN NNP NNP RB VBD IN JJ JJ JJ NNS Georgia has been striving to build closer ties with the United States and other Western countries as it actively seeks NATO entry . NNP VBZ VBN VBG TO VB JJR NNS IN DT NNP NNPS CC JJ JJ NNS IN PRP RB VBZ NNP NN . Neighboring Russia opposes Georgia 's NATO membership aspirations . NNP NNP VBZ NNP POS NNP NN NNS . Israel allowed three Turkish ships from the fatal Gaza-bound flotilla to leave on Thursday and head back to Turkey . NNP VBD CD JJ NNS IN DT JJ JJ NN TO VB IN NNP CC NN RB TO NNP . Turkish tugboats at the port of Haifa Thursday morning towed the Mavi Marmaraout to sea . JJ NNS IN DT NN IN NNP NNP NN VBD DT NNP NNP TO NN . The passenger ship was at the center of a high seas Israeli raid on May 31 that left nine people dead . DT NN NN VBD IN DT NN IN DT JJ NNS JJ NN IN NNP CD WDT VBD CD NNS JJ . Israel says it was acting in self-defense but the action raised international outrage . NNP VBZ PRP VBD VBG IN JJ CC DT NN VBD JJ NN . Two other boats also commandeered by Israel were due to be towed out of the southern port of Ashdod . CD JJ NNS RB VBN IN NNP VBD JJ TO VB VBN IN IN DT JJ NN IN NNP . Israel says it complied with Turkey 's demands to return the ships . NNP VBZ PRP VBD IN NNP POS NNS TO VB DT NNS . Earlier this week , Israeli Prime Minister Benjamin Netanyahu announced that Israel will be cooperating with a probe into the flotilla incident ordered by United Nations Chief Ban Ki-moon . RBR DT NN , JJ NNP NNP NNP NNP VBD IN NNP MD VB VBG IN DT NN IN DT NN NN VBN IN NNP NNP NNP NNP NNP . Leading opposition candidate Emmanuel Akitani-Bob Togo 's opposition says its main candidate who lost disputed presidential elections has suffered a stroke and was flown to France . VBG NN NN NNP NNP NNP POS NN VBZ PRP$ JJ NN WP VBD JJ JJ NNS VBZ VBN DT NN CC VBD VBN IN NNP . Opposition officials say Emmanuel Akitani-Bob , 74 , is being treated at the American Hospital in Neuilly , outside Paris . NN NNS VBP NNP NNP , CD , VBZ VBG VBN IN DT NNP NNP IN NNP , IN NNP . Medical staff say Mr. Akitani-Bob has suffered partial paralysis to the left side of his body . JJ NN VBP NNP NNP VBZ VBN JJ NN TO DT JJ NN IN PRP$ NN . He lost presidential elections in April to Faure Gnassingbe , the son of Togo 's late ruler Gnassingbe Eyadema . PRP VBD JJ NNS IN NNP TO NNP NNP , DT NN IN NNP POS JJ NN NNP NNP . But the opposition says the poll was rigged , and Mr. Akitani-Bob proclaimed himself president . CC DT NN VBZ DT NN VBD VBN , CC NNP NNP VBD PRP NN . He is widely seen as a stand-in candidate for Gilchrist Olympio , an opposition leader who was barred from running in the poll because he has lived outside Togo since the 1990s . PRP VBZ RB VBN IN DT JJ NN IN NNP NNP , DT NN NN WP VBD VBN IN VBG IN DT NN IN PRP VBZ VBN IN NNP IN DT NNS . Afghan police say a suicide bomber has killed two soldiers and a child in southern Afghanistan . JJ NNS VBP DT NN NN VBZ VBN CD NNS CC DT NN IN JJ NNP . Provincial police chief Mohammad Hussein Andiwal says the bomber was on foot when he blew himself up near an Afghan military convoy Saturday in Marja district of Helmand province . NNP NN NN NNP NNP NNP VBZ DT NN VBD IN NN WRB PRP VBD PRP RP IN DT JJ JJ NN NNP IN NNP NN IN NNP NN . At least four other people were wounded in the blast . IN JJS CD JJ NNS VBD VBN IN DT NN . Elsewhere in southern Afghanistan , provincial police chief Jalani Khan says four Afghan police officers were killed Saturday when a roadside bomb exploded in Zabul province . RB IN JJ NNP , JJ NN NN NNP NNP VBZ CD JJ NNS NNS VBD VBN NNP WRB DT NN NN VBD IN NNP NN . There was no immediate claim of responsibility for either of the blasts . EX VBD DT JJ NN IN NN IN DT IN DT NNS . Taliban militants have stepped up attacks on Afghan and foreign troops in recent months . NNP NNS VBP VBN RP NNS IN JJ CC JJ NNS IN JJ NNS . Venezuelan President Hugo Chavez says he is prepared to meet with Colombian President Alvaro Uribe to defuse tensions over the seizure of a top Colombian rebel leader in Venezuela last month . JJ NNP NNP NNP VBZ PRP VBZ VBN TO VB IN JJ NNP NNP NNP TO VB NNS IN DT NN IN DT JJ JJ NN NN IN NNP JJ NN . Mr. Chavez spoke Sunday , a day after Mr. Uribe offered to discuss the issue with him . NNP NNP VBD NNP , DT NN IN NNP NNP VBD TO VB DT NN IN PRP . There has been no announcement from either side about whether such a meeting will take place . EX VBZ VBN DT NN IN DT NN IN IN JJ DT NN MD VB NN . Mr. Chavez accuses neighboring Colombia of paying bounty hunters to catch Rodrigo Granda , a member of the Revolutionary Armed Forces of Colombia ( FARC ) . NNP NNP VBZ VBG NNP IN VBG NN NNS TO VB NNP NNP , DT NN IN DT NNP NNP NNS IN NNP LRB NNP RRB . Venezuela froze trade relations with Colombia Friday , and Mr. Chavez said they would remain suspended until Colombia apologizes . NNP VBD NN NNS IN NNP NNP , CC NNP NNP VBD PRP MD VB JJ IN NNP VBZ . Mr. Chavez also said Sunday the United States is trying to divide South America by supporting Colombia in the dispute . NNP NNP RB VBD NNP DT NNP NNPS VBZ VBG TO NN NNP NNP IN VBG NNP IN DT NN . The family of a former U.S. federal agent missing in Iran since March says Iranian authorities have blocked a U.S. request for Swiss diplomats to visit his last known location . DT NN IN DT JJ NNP JJ NN VBG IN NNP IN NNP VBZ JJ NNS VBP VBN DT NNP NN IN JJ NNS TO VB PRP$ JJ VBN NN . Former Federal Bureau of Investigation agent Bob Levinson was last seen in the Iranian resort of Kish Island while on a business trip . JJ NNP NNP IN NNP NN NNP NNP VBD JJ VBN IN DT JJ NN IN NNP NNP IN IN DT NN NN . His wife , Christine Levinson , told the Washington Post that she is particularly interested in locating her husband 's missing duffle bag . PRP$ NN , NNP NNP , VBD DT NNP NNP IN PRP VBZ RB JJ IN VBG PRP$ NN POS JJ NN NN . She did not provide further details . PRP VBD RB VB JJ NNS . The Iranian government has denied any knowledge of the missing man , but the U.S. State Department says it finds that claim hard to believe . DT JJ NN VBZ VBN DT NN IN DT VBG NN , CC DT NNP NNP NNP VBZ PRP VBZ DT NN JJ TO VB . South Africa 's cricket team has scored 218-5 in its first innings in response to the West Indies ' total of 243 on the second day of their second test match at Newlands in Cape Town . NNP NNP POS NN NN VBZ VBN CD IN PRP$ JJ NN IN NN TO DT NNP NNPS POS NN IN CD IN DT JJ NN IN PRP$ JJ NN NN IN NNP IN NNP NNP . Ashwell Prince and Mark Boucher had an 87-run partnership for South Africa after the home side fell to 131-5 . NNP NNP CC NNP NNP VBD DT JJ NN IN NNP NNP IN DT NN NN VBD TO CD . Prince and Boucher scored 52 runs in the last 10 overs . NNP CC NNP VBD CD NNS IN DT JJ CD NNS . West Indian bowler Dwayne Bravo was Mar-46 and Jerome Taylor was Feb-45 . NNP JJ NN NNP NNP VBD CD CC NNP NNP VBD CD . The West Indies leads the three-match series , 1-0 , after taking the first test by 128 runs . DT NNP NNPS VBZ DT JJ NN , CD , IN VBG DT JJ NN IN CD NNS . The win was the Caribbean squad 's first in South Africa and its first significant road win since 2000 . DT NN VBD DT NNP NN POS JJ IN NNP NNP CC PRP$ JJ JJ NN NN IN CD . The third test begins January 10th in Durban . DT JJ NN VBZ NNP CD IN NNP . The two sides also will play five one-day international matches beginning January 20th in Centurion . DT CD NNS RB MD VB CD JJ JJ NNS VBG NNP JJ IN NNP . The U.S. military has released some high-level detainees from Saddam Hussein 's former regime , including two scientists known as ' Dr. Germ ' and ' Mrs. Anthrax . ' DT NNP NN VBZ VBN DT JJ NNS IN NNP NNP POS JJ NN , VBG CD NNS VBN IN `` NNP NNP `` CC `` NNP NNP . `` An Iraqi lawyer said Monday Rihab Taha and Huda Saleh Mahdi Amash were among 24 people freed . DT JJ NN VBD NNP NNP NNP CC NNP NNP NNP NNP VBD IN CD NNS VBN . The U.S. military put the number of high-value detainees released at eight . DT NNP NN VBD DT NN IN JJ NNS VBN IN CD . Officials say the detainees were freed after a board found they were no longer a security threat . NNS VBP DT NNS VBD VBN IN DT NN VBD PRP VBD RB RB DT NN NN . Meanwhile , at least five people were killed in two insurgent attacks aimed at senior police and government officials in Baghdad Monday . RB , IN JJS CD NNS VBD VBN IN CD JJ NNS VBN IN JJ NNS CC NN NNS IN NNP NNP . And the US military says a Marine was killed in action in Ramadi Sunday . CC DT NNP NN VBZ DT NN VBD VBN IN NN IN NNP NNP . And an Iraqi militant group posted a video on the Internet it says shows the killing of American hostage Ronald Allen Schultz , who was abducted this month . CC DT JJ NN NN VBD DT NN IN DT NN PRP VBZ VBZ DT NN IN NNP NN NNP NNP NNP , WP VBD VBN DT NN . But the video does not show the victim 's face . CC DT NN VBZ RB VB DT NN POS NN . A group of 50 foreign policy experts and former government officials from Europe and the United States have drafted a partnership agreement - a move aimed at restoring transatlantic ties ahead of President Bush 's trip to Europe next week . DT NN IN CD JJ NN NNS CC JJ NN NNS IN NNP CC DT NNP NNPS VBP VBN DT NN NN IN DT NN VBN IN VBG JJ NNS RB IN NNP NNP POS NN TO NNP JJ NN . The group released the pact Thursday , saying it demonstrates that a common strategy between the United States and Europe can be forged to deal with international challenges . DT NN VBD DT NN NNP , VBG PRP VBZ IN DT JJ NN IN DT NNP NNPS CC NNP MD VB VBN TO VB IN JJ NNS . The agreement covers a host of key foreign policy concerns , including Iraq , Afghanistan , the Geneva Conventions , climate change , peace in the Middle East , China and Iran 's nuclear activities . DT NN VBZ DT NN IN JJ JJ NN NNS , VBG NNP , NNP , DT NNP NNPS , NN NN , NN IN DT NNP NNP , NNP CC NNP POS JJ NNS . On Iraq , the pact calls on the United States to start a ' strategic dialogue ' with European allies . IN NNP , DT NN VBZ IN DT NNP NNPS TO VB DT `` JJ NN `` IN JJ NNS . The European Union would commit to training 5,000 civil servants and 25,000 Iraqi security and police forces per year . DT NNP NNP MD VB TO NN CD JJ NNS CC CD JJ NN CC NN NNS IN NN . The agreement was hammered out during meetings at a Washington think tank , the Brookings Institution . DT NN VBD VBN RP IN NNS IN DT NNP NN NN , DT NNP NNP . Numerous health studies have found exercise directly impacts people 's well being . JJ NN NNS VBP VBN NN RB VBZ NNS POS RB VBG . An organization in Washington is taking this a step further : promoting good health while also building camaraderie among women . DT NN IN NNP VBZ VBG DT DT NN RB IN VBG JJ NN IN RB VBG NN IN NNS . Washington Women Outdoors is an organization that is helping women develop their leadership skills through outdoor sports and activities . NNP NNP NNP VBZ DT NN WDT VBZ VBG NNS VB PRP$ NN NNS IN JJ NNS CC NNS . VOA 's Monaliza Noormohammadi has more . NNP POS NNP NNP VBZ RBR . Sunni Arab leaders in western Iraq have condemned a joint U.S.-Iraqi offensive in the region , saying it endangers civilians . NNP JJ NNS IN JJ NNP VBP VBN DT JJ JJ NN IN DT NN , VBG PRP VBZ NNS . The U.S. military launched Operation Steel Curtain early Saturday to restore security along the porous Iraqi-Syrian border and destroy the al-Qaida in Iraq network operating in the area . DT NNP NN VBD NNP NNP NNP JJ NNP TO VB NN IN DT JJ JJ NN CC VB DT NNP IN NNP NN VBG IN DT NN . Some Sunni Arab politicians and tribal leaders complained that the operation endangers civilians and could lead to greater instability in Sunni sections of the country . DT NNP NNP NNS CC JJ NNS VBD IN DT NN VBZ NNS CC MD VB TO JJR NN IN NNP NNS IN DT NN . Residents of the town of Husaybah , 320 kilometers northwest of Baghdad , say thunderous explosions shook the town as some 2,500 U.S. troops and 1,000 Iraqi soldiers fought their way through the town . NNS IN DT NN IN NNP , CD NNS JJS IN NNP , VBP JJ NNS VBD DT NN IN DT CD NNP NNS CC CD JJ NNS VBD PRP$ NN IN DT NN . Elsewhere , at least 11 people were killed when gunmen ambushed a minibus in Balad Ruz , 60 kilometers northeast of Baghdad . RB , IN JJS CD NNS VBD VBN WRB NNS VBD DT NN IN NNP NNP , CD NNS NN IN NNP . Also , the U.S. military said at least three more soldiers have been killed in separate incidents across Iraq . RB , DT NNP NN VBD IN JJS CD JJR NNS VBP VBN VBN IN JJ NNS IN NNP . The United Nations says funding problems may force it to ground the helicopters that are delivering relief to Pakistani earthquake survivors in remote mountainous regions . DT NNP NNP VBZ NN NNS MD VB PRP TO VB DT NNS WDT VBP VBG NN TO JJ NN NNS IN JJ JJ NNS . U.N. agencies say they have only received one quarter of the money countries pledged for earthquake aid . NNP NNS VBP PRP VBP RB VBN CD NN IN DT NN NNS VBD IN NN NN . They say the funding shortfall is delaying their work to help survivors before the Himalayan winter . PRP VBP DT NN NN VBZ VBG PRP$ NN TO VB NNS IN DT NNP NN . But U.S. military officials promised Tuesday they will continue flying their helicopter missions to help survivors . CC NNP JJ NNS VBD NNP PRP MD VB VBG PRP$ NN NNS TO VB NNS . Hours later , the U.S. military says a rocket-propelled grenade was fired at a helicopter delivering aid . NNS RB , DT NNP NN VBZ DT JJ NN VBD VBN IN DT NN VBG NN . It says the helicopter was not hit and no one was injured . PRP VBZ DT NN VBD RB VBN CC DT NN VBD VBN . Pakistani officials say there was no attack and that the helicopter crew heard dynamite being used to clear mudslides triggered by the quake . JJ NNS VBP EX VBD DT NN CC IN DT NN NN VBD NN VBG VBN TO VB NNS VBN IN DT NN . The October 8 earthquake killed more than 58,000 people , most of them in Pakistani-controlled Kashmir . DT NNP CD NN VBD JJR IN CD NNS , JJS IN PRP IN JJ NNP . The Israeli military says Israeli warplanes have destroyed offices of an armed wing of the Fatah Movement of Palestinian President Mahmoud Abbas . DT JJ NN VBZ JJ NNS VBP VBN NNS IN DT JJ NN IN DT NNP NN IN JJ NNP NNP NNP . Military officials say helicopters fired missiles at two offices Friday of the Al-Aqsa Martyrs Brigades in Gaza City . JJ NNS VBP NNS VBD NNS IN CD NNS NNP IN DT NNP NNP NNP IN NNP NNP . Palestinian sources say there were no casualties . JJ NNS VBP EX VBD DT NNS . Israel blamed Al-Aqsa for firing rockets at its towns and cities on Thursday . NNP VBD NNP IN VBG NNS IN PRP$ NNS CC NNS IN NNP . The Israeli army says one of the rockets fired from Gaza struck an Israeli factory near the town of Ashkelon and set it ablaze , injuring one Israeli . DT JJ NN VBZ CD IN DT NNS VBN IN NNP VBD DT JJ NN IN DT NN IN NNP CC VBD PRP VB , VBG CD NN . The army says another rocket hit in the town of Sderot but caused no injuries or damage . DT NN VBZ DT NN VBD IN DT NN IN NNP CC VBD DT NNS CC NN . Yemeni authorities said Sunday that an unidentified gunman has killed a senior security official in the southern part of the country , where separatist tensions are mounting . JJ NNS VBD NNP IN DT JJ NN VBZ VBN DT JJ NN NN IN DT JJ NN IN DT NN , WRB JJ NNS VBP VBG . A provincial official said Jalal al-Uthmani , a high-ranking intelligence officer , was killed late Saturday in a hail of gunfire outside his home in restive Abyan Province . DT JJ NN VBD NNP NNP , DT JJ NN NN , VBD VBN JJ NNP IN DT NN IN NN IN PRP$ NN IN JJ NNP NNP . Also Saturday , tribesmen in eastern Maarib Province blew up an oil pipeline in retaliation for raids targeting al-Qaida sympathizers . RB NNP , NNS IN JJ NNP NNP VBD RP DT NN NN IN NN IN NNS VBG NNP NNS . North and South Yemen formally united in 1990 but many in the south say the northern-based government has used unification to funnel resources out of their territories , while denying southerners political rights . NNP CC NNP NNP RB VBD IN CD CC NN IN DT NN VBP DT JJ NN VBZ VBN NN TO VB NNS IN IN PRP$ NNS , IN VBG NNS JJ NNS . Most of Yemen 's oil facilities are located in the south , which lost a brief 1994 civil war that ended with the region overrun by northern troops . JJS IN NNP POS NN NNS VBP VBN IN DT NN , WDT VBD DT JJ CD JJ NN WDT VBD IN DT NN VBN IN JJ NNS . Italian opera star Luciano Pavarotti has been hospitalized for medical tests in his hometown in northern Italy . JJ NN NN NNP NNP VBZ VBN VBN IN JJ NNS IN PRP$ NN IN JJ NNP . A spokesman for the Modena Polyclinic says Pavarotti was admitted earlier this week . DT NN IN DT NNP NNP VBZ NNP VBD VBN RBR DT NN . The hospital is to issue a statement later Thursday . DT NN VBZ TO VB DT NN RB NNP . The 71-year-old underwent surgery for pancreatic cancer last year . DT JJ VBD NN IN NN NN JJ NN . The illness forced him to cancel his 2006 farewell opera tour . DT NN VBD PRP TO VB PRP$ CD JJ NN NN . The beloved classical singer has impressed opera aficionados with his tenor voice , performing challenging works in nearly every major opera and concert hall around the world . DT JJ NN NN VBZ VBN NN NNS IN PRP$ NN NN , VBG JJ NNS IN RB DT JJ NN CC NN NN IN DT NN . He has also won fans with his warm personality off the stage . PRP VBZ RB VBN NNS IN PRP$ JJ NN IN DT NN . Throughout his career , Pavarotti has used his celebrity to raise millions of dollars for the U.N. refugee agency and other charitable causes . IN PRP$ NN , NNP VBZ VBN PRP$ NN TO VB NNS IN NNS IN DT NNP NN NN CC JJ JJ NNS . The Chinese city of Harbin has restored running water for nearly four-million people , after a five-day cutoff forced by toxic pollution in the river that supplies the city . DT JJ NN IN NNP VBZ VBN VBG NN IN RB JJ NNS , IN DT JJ NN VBN IN JJ NN IN DT NN WDT VBZ DT NN . State television showed the local governor drinking a glass of boiled water and reassuring locals it was safe to drink . NN NN VBD DT JJ NN VBG DT NN IN JJ NN CC VBG NNS PRP VBD JJ TO VB . But the Associated Press quotes the deputy general of the Harbin water department saying residents should not immediately drink the water - even if it is boiled . CC DT NNP NNP VBZ DT NN NN IN DT NNP NN NN VBG NNS MD RB RB VB DT NN IN RB IN PRP VBZ VBN . Wang Minghe said the water is still dangerous because it has been sitting in pipes and may be contaminated from the benzene spill . NNP NNP VBD DT NN VBZ RB JJ IN PRP VBZ VBN VBG IN NNS CC MD VB VBN IN DT NN NN . Officials say the 80-kilometer-long chemical slick in the Songhua River has passed Harbin . NNS VBP DT JJ NN NN IN DT NNP NNP VBZ VBN NNP . It is expected to reach Russia within days . PRP VBZ VBN TO VB NNP IN NNS . A November 13 factory explosion caused 100 tons of potentially cancer-causing benzene to spill into the river upstream from the city . DT NNP CD NN NN VBD CD NNS IN RB JJ NN TO VB IN DT NN NN IN DT NN . Four more ministers in Somalia 's transitional government have resigned , citing criticism of Prime Minister Mohammed Ali Gedi . CD JJR NNS IN NNP POS JJ NN VBP VBN , VBG NN IN NNP NNP NNP NNP NNP . Water and Mineral Resources minister , Mohamud Salad Nur , and three deputy ministers announced their decision Tuesday , accusing Mr. Ali Gedi of failing to restore stability in Somalia . NNP CC NNP NNP NN , NNP NNP NNP , CC CD NN NNS VBD PRP$ NN NNP , VBG NNP NNP NNP IN VBG TO VB NN IN NNP . Last week , 18 ministers quit the government and another minister was killed by gunmen . JJ NN , CD NNS VBD DT NN CC DT NN VBD VBN IN NNS . The interim government based in Baidoa has been struggling to launch peace talks with Islamists who oppose the prime minister 's decision to allow Ethiopian troops into the country . DT JJ NN VBN IN NNP VBZ VBN VBG TO VB NN NNS IN NNS WP VBP DT JJ NN POS NN TO VB JJ NNS IN DT NN . Meanwhile , regional officials met Tuesday in neighboring Kenya to discuss the situation in Somalia and plans to deploy an international peacekeeping mission . RB , JJ NNS VBD NNP IN VBG NNP TO VB DT NN IN NNP CC VBZ TO VB DT JJ NN NN . And one Islamic group - the Supreme Islamic Council of Somalia - based in the capital , Mogadishu , said it was opening a sharia court in the central town of Adaado . CC CD JJ NN IN DT NNP NNP NNP IN NNP : VBN IN DT NN , NNP , VBD PRP VBD VBG DT NN NN IN DT JJ NN IN NNP . The U.S. military in Iraq says coalition forces have rounded up 32 suspected militants and uncovered a stockpile of more than 500 artillery rounds in a region south of Baghdad . DT NNP NN IN NNP VBZ NN NNS VBP VBN RP CD JJ NNS CC VBD DT NN IN JJR IN CD NN NNS IN DT NN NN IN NNP . The military issued the statement Monday . DT JJ VBD DT NN NNP . Thousands of American , British and Iraqi troops are continuing operations to root out insurgents across Iraq ahead of the January elections in the country . NNS IN NNP , NNP CC JJ NNS VBP VBG NNS TO VB RP NNS IN NNP RB IN DT NNP NNS IN DT NN . Sunday , Abu Musab al-Zarqawi 's terror group claimed responsibility for killing at least 17 Iraqi troops in the northern city of Mosul . NNP , NNP NNP NNP POS NN NN VBD NN IN VBG IN JJS CD JJ NNS IN DT JJ NN IN NNP . Al-Qaida in Iraq made the claim in an Internet posting that could not be independently verified . NNP IN NNP VBD DT NN IN DT NN VBG DT MD RB VB RB VBN . In recent days , U.S. forces in Mosul have found the bodies of more than 50 people -- most of them Iraqi security personnel , who were killed execution-style . IN JJ NNS , NNP NNS IN NNP VBP VBN DT NNS IN JJR IN CD NNS : JJS IN PRP JJ NN NNS , WP VBD VBN JJ . India has suspended railway service to and from Pakistan in the wake of the assassination of former Pakistani Prime Minister Benazir Bhutto . NNP VBZ VBN NN NN TO CC IN NNP IN DT NN IN DT NN IN JJ JJ NNP NNP NNP NNP . Officials in New Delhi did not say when the service would be restored . NNS IN NNP NNP VBD RB VB WRB DT NN MD VB VBN . Authorities are concerned that violence by angry Bhutto supporters in Pakistan will spill across the border into India . NNS VBP VBN IN NN IN JJ NNP NNS IN NNP MD VB IN DT NN IN NNP . Militants have targeted trains in the past , including the fatal firebombing of a Pakistan-bound train in India earlier this year . NNS VBP VBN NNS IN DT NN , VBG DT JJ NN IN DT JJ NN IN NNP RBR DT NN . Sixty-eight people were killed in that February attack . CD NNS VBD VBN IN DT NNP NN . Tony Bennett thinks American Idol is too cruel - and said so to celebrity judge Simon Cowell . NNP NNP VBZ NNP NNP VBZ RB JJ : CC VBD RB TO NN NN NNP NNP . Speaking to the British edition of Time Out Magazine , the 80-year-old crooner says his recent appearance on the popular TV talent contest left him dismayed at its treatment of contestants . VBG TO DT JJ NN IN NNP NNP NNP , DT JJ NN VBZ PRP$ JJ NN IN DT JJ NN NN NN VBD PRP VBD IN PRP$ NN IN NNS . ' I had it out with Simon [ Cowell ] when I met him and suggested that he should open up tiny clubs across the countries so the kids could break in and learn properly , ' he said . `` PRP VBD PRP RP IN NNP LRB NNP RRB WRB PRP VBD PRP CC VBD IN PRP MD VB RP JJ NNS IN DT NNS IN DT NNS MD VB IN CC VB RB , `` PRP VBD . Bennett says Cowell shrugged off his suggestion , saying he was too busy making money . NNP VBZ NNP VBD RP PRP$ NN , VBG PRP VBD RB JJ VBG NN . China 's state media report a sixth person in the country has been diagnosed with bird flu , while a new outbreak of the disease has been spotted in a flock of ducks . NNP POS NN NNS VBP DT JJ NN IN DT NN VBZ VBN VBN IN NN NN , IN DT JJ NN IN DT NN VBZ VBN VBN IN DT NN IN NNS . The Xinhua news agency says the Health Ministry has identified the latest human victim as a 35-year-old man in Suichuan County in the eastern province of Jiangxi . DT NNP NN NN VBZ DT NNP NNP VBZ VBN DT JJS JJ NN IN DT JJ NN IN NNP NNP IN DT JJ NN IN NNP . There were no further details . EX VBD DT JJ NNS . Earlier , the Agriculture Ministry reported an outbreak in a flock of ducks , also in Jiangxi province . RB , DT NNP NNP VBD DT NN IN DT NN IN NNS , RB IN NNP NN . It is not clear if the two incidents are linked . PRP VBZ RB JJ IN DT CD NNS VBP VBN . The H5N1 strain of bird flu has killed more than 70 people in East Asia since 2003 . DT NNP NN IN NN NN VBZ VBN JJR IN CD NNS IN NNP NNP IN CD . Scientists fear it could mutate and be passed from human to human . NNS VBP PRP MD VB CC VB VBN IN JJ TO JJ . Crude oil prices fell below $ 70 a barrel Thursday after coalition forces in Iraq killed a key terrorist leader . JJ NN NNS VBD IN $ CD DT NN NNP IN NN NNS IN NNP VBD DT JJ JJ NN . The price of oil for future delivery fell more than one dollar in electronic trading in New York to $ 69.54 a barrel . DT NN IN NN IN JJ NN VBD JJR IN CD NN IN JJ NN IN NNP NNP TO $ CD DT NN . Oil prices also declined for London 's benchmark Brent crude oil . NN NNS RB VBD IN NNP POS JJ JJ NN NN . Some investors speculate that the death of Abu Musab al-Zarqawi will ease the attacks and sabotage that have slowed Iraqi oil exports for the past three years . DT NNS VBP IN DT NN IN NNP NNP NNP MD VB DT NNS CC NN WDT VBP VBN JJ NN NNS IN DT JJ CD NNS . Iraq has the world 's third largest oil reserves , but it exports less oil now than it did before the U.S.-led invasion . NNP VBZ DT NN POS JJ JJS NN NNS , CC PRP VBZ JJR NN RB IN PRP VBD IN DT JJ NN . But analysts point out that prices were declining even before Zarqawi death , as investors reacted to rising oil inventories in the United States and easing tensions over Iran 's nuclear program . CC NNS VBP RP IN NNS VBD VBG RB IN NNP NN , IN NNS VBD TO VBG NN NNS IN DT NNP NNPS CC VBG NNS IN NNP POS JJ NN . Turkish authorities say two earthquakes have shaken the country 's third largest city , Izmir . JJ NNS VBP CD NNS VBP VBN DT NN POS JJ JJS NN , NNP . They say the earthquakes , measuring 5.7 and 5.9 on the Richter scale , were centered beneath the Aegean Sea near the Turkish coast . PRP VBP DT NNS , VBG CD CC CD IN DT NNP NN , VBD VBN IN DT NNP NNP IN DT JJ NN . Several other Turkish cities and Greek islands were rattled by the quakes . JJ JJ JJ NNS CC JJ NNS VBD VBN IN DT NNS . At least 30 people were injured . IN JJS CD NNS VBD VBN . No severe building damage was reported , but several house chimneys collapsed , and cracks opened in building walls . DT JJ NN NN VBD VBN , CC JJ NN NNS VBD , CC NNS VBD IN VBG NNS . Turkey lies on several geological fault lines and is often hit by earthquakes . NNP VBZ IN JJ JJ NN NNS CC VBZ RB VBN IN NNS . A major quake in 1999 killed more than 17,000 people in the northwestern part of the country . DT JJ NN IN CD VBD JJR IN CD NNS IN DT JJ NN IN DT NN . Still embarrased by the last Super Bowl halftime show , the National Football League has announced Paul McCartney will be the featured performer at the championship game on February 6 in Jacksonville , Florida . RB VBN IN DT JJ NNP NNP NN NN , DT NNP NNP NNP VBZ VBN NNP NNP MD VB DT JJ NN IN DT NN NN IN NNP CD IN NNP , NNP . Janet Jackson 's breast was bared last February during a duet with pop star Justin Timberlake , which spurred hundreds of thousands of complaints to federal broadcast regulators . NNP NNP POS NN VBD VBN JJ NNP IN DT NN IN NN NN NNP NNP , WDT VBD NNS IN NNS IN NNS TO JJ NN NNS . NFL spokesman Brian McCarthy says all facets of the upcoming 12-minute show have been reviewed , including talent selection , song selection and costume selection . NNP NN NNP NNP VBZ DT NNS IN DT JJ JJ NN VBP VBN VBN , VBG NN NN , NN NN CC NN NN . Watched by more than 144 million viewers in the United States last year , the Super Bowl is the nation 's highest-rated TV program and the most-watched single-day sporting event . VBN IN JJR IN CD CD NNS IN DT NNP NNPS JJ NN , DT NNP NNP VBZ DT NN POS JJ NN NN CC DT JJ JJ NN NN . The game will be broadcast in more than 200 countries worldwide . DT NN MD VB VBN IN JJR IN CD NNS NN . Iraq 's electoral commission says partial results from Sunday 's elections show the main Shi'ite coalition is leading in six mainly Shi'ite provinces where most of the votes have been counted . NNP POS JJ NN VBZ JJ NNS IN NNP POS NNS VBP DT JJ NNP NN VBZ VBG IN CD RB JJ NNS WRB JJS IN DT NNS VBP VBN VBN . The United Iraqi Alliance , which has the support of influential Shi'ite cleric Grand Ayatollah Ali al-Sistani , is ahead with about 75 percent of the 1.6 million ballots counted . DT NNP JJ NNP , WDT VBZ DT NN IN JJ NNP NN NNP NNP NNP NNP , VBZ RB IN IN CD NN IN DT CD CD NNS VBN . The candidate list led by interim Prime Minister Iyad Allawi , who is also a Shi'ite , has about 20 percent of the vote in those provinces . DT NN NN VBN IN JJ NNP NNP NNP NNP , WP VBZ RB DT NNP , VBZ RB CD NN IN DT NN IN DT NNS . Final results from all 18 provinces are not expected for another week . JJ NNS IN DT CD NNS VBP RB VBN IN DT NN . In another development , the head of the Patriotic Union of Kurdistan , Jalal Talabani , said he would seek the post of either prime minister or president in the new government . IN DT NN , DT NN IN DT NNP NNP IN NNP , NNP NNP , VBD PRP MD VB DT NN IN DT JJ NN CC NN IN DT JJ NN . Meanwhile , at least 10 Iraqis have been killed in attacks Thursday . RB , IN JJS CD NNS VBP VBN VBN IN NNS NNP . Iraqi police say a suicide car bombing in the northern city of Arbil has killed at least 11 people and wounded dozens more - mostly new police recruits . JJ NNS VBP DT NN NN NN IN DT JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN NNS RBR : RB JJ NN NNS . Officials say the death toll could rise as many of the wounded were in serious condition . NNS VBP DT NN NN MD VB IN NN IN DT VBN VBD IN JJ NN . Witness say security forces fired on the car in an effort to stop the suicide bomber , but he raced his vehicle into a field where some 200 new recruits had gathered for training early Monday . NNS VBP NN NNS VBN IN DT NN IN DT NN TO VB DT NN NN , CC PRP VBD PRP$ NN IN DT NN WRB DT CD JJ NNS VBD VBN IN NN JJ NNP . Hours earlier , at least five Iraqi policemen were killed and nearly 20 others wounded in a car bomb explosion near a police station in Baghdad . NNS RB , IN JJS CD JJ NNS VBD VBN CC RB CD NNS VBN IN DT NN NN NN IN DT NN NN IN NNP . The U.S. military said the explosion occurred as police responded to an insurgent attack on the Baya police station . DT NNP NN VBD DT NN VBD IN NN VBD TO DT JJ NN IN DT NNP NN NN . Iraqi and U.S. officials say an Iraqi military helicopter has crashed in northern Iraq , killing all eight people aboard , including a U.S. soldier . JJ CC NNP NNS VBP DT JJ JJ NN VBZ VBN IN JJ NNP , VBG DT CD NNS RB , VBG DT NNP NN . Officials say the Russian-made helicopter was found Tuesday near the town of Beiji . NNS VBP DT JJ NN VBD VBN NNP IN DT NN IN NNP . The aircraft had disappeared in bad weather south of the main northern city of Mosul . DT NN VBD VBN IN JJ NN NN IN DT JJ JJ NN IN NNP . Separately , Iraqi Prime Minister Nouri al-Maliki Tuesday ordered Iraqi security forces to work hard to find a kidnapped Chaldean Catholic archbishop . RB , JJ NNP NNP NNP NNP NNP VBD JJ NN NNS TO VB JJ TO VB DT VBN NNP NNP NN . Paulos Faraj Rahho was kidnapped last Friday in Mosul after three of his companions were killed in a shootout . NNP NNP NNP VBD VBN JJ NNP IN NNP IN CD IN PRP$ NNS VBD VBN IN DT NN . The prime minister 's office said Mr. Maliki has ordered the interior minister and security officials in Nineveh province to closely follow the case and make every effort to free the archbishop . DT JJ NN POS NN VBD NNP NNP VBZ VBN DT JJ NN CC NN NNS IN NNP NN TO RB VB DT NN CC VB DT NN TO VB DT NN . The U.S. military in Iraq says two American soldiers were killed in separate incidents in the country 's north . DT NNP NN IN NNP VBZ CD JJ NNS VBD VBN IN JJ NNS IN DT NN POS NN . A statement issued Saturday said one soldier died Friday near Mosul , about 370 kilometers north of Baghdad . DT NN VBN NNP VBD CD NN VBD NNP IN NNP , IN CD NNS RB IN NNP . The statement gave no other details about how the soldier died . DT NN VBD DT JJ NNS IN WRB DT NN VBD . A second statement said a U.S. soldier died Thursday of injuries sustained in a non-combat related incident . DT JJ NN VBD DT NNP NN VBD NNP IN NNS VBN IN DT JJ JJ NN . The military says it is investigating both deaths . DT NN VBZ PRP VBZ VBG DT NNS . Meanwhile , a spokesman for the Kurdistan Workers ' Party , also known as the PKK , said Turkish air strikes on Kurdish rebel targets in northern Iraq killed four rebels earlier this week . RB , DT NN IN DT NNP NNP POS NNP , RB VBN IN DT NNP , VBD JJ NN NNS IN JJ NN NNS IN JJ NNP VBD CD NNS RBR DT NN . The spokesman Saturday said the air strikes also wounded five others . DT NN NNP VBD DT NN NNS RB VBD CD NNS . German Chancellor Angela Merkel has vowed that her government will not be ' blackmailed ' by insurgents who have kidnapped a German archaeologist in Iraq . JJ NN NNP NNP VBZ VBN IN PRP$ NN MD RB VB `` VBN `` IN NNS WP VBP VBN DT JJ NN IN NNP . In her first major speech to parliament , Ms. Merkel said Germany is doing everything in its power to return the archeologist , Susanne Osthoff and her driver to safety . IN PRP$ JJ JJ NN TO NN , NNP NNP VBD NNP VBZ VBG DT IN PRP$ NN TO VB DT NN , NNP NNP CC PRP$ NN TO NN . On the domestic front , Ms. Merkel vowed to re-energize Germany 's sluggish economy . IN DT JJ NN , NNP NNP VBD TO VB NNP POS JJ NN . She said that her coalition wants to create the conditions that will make Germany again one of the three fastest growing economies in Europe in 10 years ' time . PRP VBD IN PRP$ NN VBZ TO VB DT NNS WDT MD VB NNP RB CD IN DT CD JJS VBG NNS IN NNP IN CD NNS POS NN . Ms. Merkel was sworn in as Germany 's first ever woman Chancellor on November 22 . NNP NNP VBD VBN IN IN NNP POS JJ RB NN NNP IN NNP CD . She heads a government made up of her conservative Christian Democratic Union party and her predecessor Gerhard Schroeder 's more liberal Social Democrats . PRP VBZ DT NN VBN IN IN PRP$ JJ NNP NNP NNP NN CC PRP$ NN NNP NNP POS JJR JJ NNP NNPS . Amnesty International is calling on the U.N. Security Council to impose an immediate arms embargo on Burma for its violent crackdown on peaceful pro-democracy demonstrators . NNP NNP VBZ VBG IN DT NNP NNP NNP TO VB DT JJ NNS NN IN NNP IN PRP$ JJ NN IN JJ JJ NNS . The London-based human rights group says a comprehensive and mandatory embargo should remain in place until Burma 's military rulers verifiably improve human rights , including the release of all political prisoners . DT JJ JJ NNS NN VBZ DT JJ CC JJ NN MD VB IN NN IN NNP POS JJ NNS RB VBP JJ NNS , VBG DT NN IN DT JJ NNS . Amnesty International 's deputy program director for the Asia / Pacific region , Catherine Baber , spoke to VOA 's Mandy Clark about the treatment of protesters in Burma . NNP NNP POS NN NN NN IN DT NNP NNP NNP NN , NNP NNP , VBD TO NNP POS NNP NNP IN DT NN IN NNS IN NNP . Louisiana state officials say the flooding of New Orleans has created environmental problems that may take years to correct . NNP NN NNS VBP DT NN IN NNP NNP VBZ VBN JJ NNS WDT MD VB NNS TO VB . The state 's top environmental official , Mike McDaniel , told reporters on Tuesday that Hurricane Katrina has left the city with ' almost unimaginable ' problems . DT NN POS JJ JJ NN , NNP NNP , VBD NNS IN NNP IN NNP NNP VBZ VBN DT NN IN `` RB JJ `` NNS . Concern is centered on the floodwaters contaminated from raw sewage , debris , and other hazardous substances . NN VBZ VBN IN DT NNS VBN IN JJ NN , NN , CC JJ JJ NNS . The water has been further tainted by two oil spills from local storage facilities . DT NN VBZ VBN RB VBN IN CD NN NNS IN JJ NN NNS . The U.S. Environmental Protection Agency has warned people to limit contact with the water due to the risk of illness . DT NNP NNP NNP NNP VBZ VBN NNS TO VB NN IN DT NN JJ TO DT NN IN NN . Some experts have expressed concern that the water may kill fish and destroy ecosystems as engineers pump it back into Lake Pontchartrain and the Mississippi River . DT NNS VBP VBN NN IN DT NN MD VB NN CC VB NNS IN NNS VBP PRP RB IN NNP NNP CC DT NNP NNP . But Mr. McDaniel remains hopeful for the long-term , saying nature is resilient and is likely to recover . CC NNP NNP VBZ JJ IN DT JJ , VBG NN VBZ JJ CC VBZ JJ TO VB . North Korea has asked Japan to return remains Pyongyang claims belong to a Japanese woman kidnapped decades ago . NNP NNP VBZ VBN NNP TO VB NNS JJ NNS VBP TO DT JJ NN VBN NNS RB . The demand , published by North Korean state-run media , comes after Japanese forensic experts said the remains were not those of Megumi Yokota , who was kidnapped in 1977 . DT NN , VBN IN JJ JJ JJ NNS , VBZ IN JJ JJ NNS VBD DT NNS VBD RB DT IN NNP NNP , WP VBD VBN IN CD . North Korea says Ms. Yokota committed suicide in 1994 , and accused certain forces in Japan of faking the test results to promote anti-Pyongyang sentiment . NNP NNP VBZ NNP NNP VBD NN IN CD , CC VBD JJ NNS IN NNP IN VBG DT NN NNS TO VB JJ NN . Japanese media reported Wednesday that Tokyo will ask North Korea conduct another investigation into the fate of eight kidnap victims from the 1970s and 1980s that Pyongyang says have died , as well as two more whose status is unclear . JJ NNS VBD NNP IN NNP MD VB NNP NNP NN DT NN IN DT NN IN CD NN NNS IN DT NNS CC NNS WDT NNP VBZ VBP VBN , RB RB IN CD JJR WP$ NN VBZ JJ . U.S. intelligence officials have concluded with what they call ' high confidence ' that an audiotape posted on an Islamist website contains the voice of terrorist mastermind Osama bin Laden . NNP NN NNS VBP VBN IN WP PRP VBP `` JJ NN `` IN DT NN VBN IN DT NN NN VBZ DT NN IN NN NN NNP NNP NNP . Officials say the tape , which surfaced Thursday , is consistent in tone and message with previous ones . NNS VBP DT NN , WDT VBD NNP , VBZ JJ IN NN CC NN IN JJ NNS . The message , which runs more than one hour in length , criticizes the Saudi monarchy for unrest in the country , and mocks its attempts at reform , saying change will only come when the monarchy is removed . DT NN , WDT VBZ JJR IN CD NN IN NN , VBZ DT JJ NN IN NN IN DT NN , CC VBZ PRP$ NNS IN NN , VBG NN MD RB VB WRB DT NN VBZ VBN . The speaker on the tape also encourages attacks against oil installations in Iraq and the Persian Gulf , and praises the militants who attacked the U.S. consulate in the Saudi city of Jeddah earlier this month , killing five non-American staff members . DT NN IN DT NN RB VBZ NNS IN NN NNS IN NNP CC DT NNP NNP , CC VBZ DT NNS WP VBD DT NNP NN IN DT JJ NN IN NNP RBR DT NN , VBG CD JJ NN NNS . This was the latest in a wave of attacks against Saudi and Western interests in the kingdom , which has been battling suspected al-Qaida-linked militants since May 2003 . DT VBD DT JJS IN DT NN IN NNS IN JJ CC JJ NNS IN DT NN , WDT VBZ VBN VBG JJ JJ NNS IN NNP CD . Sudan 's government and two rebel groups have pledged to continue seeking an end to more than two years of fighting in the western Darfur region . NNP POS NN CC CD JJ NNS VBP VBN TO VB VBG DT NN TO JJR IN CD NNS IN VBG IN DT JJ NNP NN . Representatives meeting in Nigeria Tuesday signed a ' declaration of principles ' intended to guide future peace talks sponsored by the African Union . NNP NN IN NNP NNP VBD DT `` NN IN NNS `` VBN TO VB JJ NN NNS VBN IN DT NNP NNP . AU officials say the next round of talks will begin August 24 . NNP NNS VBP DT JJ NN IN NNS MD VB NNP CD . The latest deal calls for a solution to refugee and security problems , but does not include detailed proposals . DT JJS NN VBZ IN DT NN TO VB CC NN NNS , CC VBZ RB VB JJ NNS . Meantime , a top U.S. official has expressed concern at humanitarian conditions in Darfur , despite an apparent decline in violence there . RB , DT JJ NNP NN VBZ VBN NN IN JJ NNS IN NNP , IN DT JJ NN IN NN RB . Deputy Secretary of State Robert Zoellick says health conditions remain serious in Darfur , where fighting has displaced more than 2 million people . NNP NNP IN NNP NNP NNP VBZ NN NNS VBP JJ IN NNP , WRB NN VBZ VBN JJR IN CD CD NNS . He is to travel to Darfur and Khartoum later this week . PRP VBZ TO VB TO NNP CC NNP RB DT NN . Mexican security forces have seized 105 tons of marijuana in the border city of Tijuana , the largest drug bust in the Latin American nation in recent years . JJ NN NNS VBP VBN CD NNS IN NN IN DT NN NN IN NNP , DT JJS NN NN IN DT JJ JJ NN IN JJ NNS . Authorities say the drugs were seized Monday during a series of raids conducted by soldiers and police in three neighborhoods that led to the arrest of 11 people . NNS VBP DT NNS VBD VBN NNP IN DT NN IN NNS VBN IN NNS CC NNS IN CD NNS WDT VBD TO DT NN IN CD NNS . Army General Alfonso Duarte said the marijuana carried a street value of more than $ 340 million . NNP NNP NNP NNP VBD DT NN VBD DT NN NN IN JJR IN $ CD CD . Duarte said the marijuana was wrapped in 10,000 separate packages , and labeled with various signs and logos . NNP VBD DT NN VBD VBN IN CD JJ NNS , CC VBN IN JJ NNS CC NNS . He said the drugs were being prepared for shipment and distribution to the United States . PRP VBD DT NNS VBD VBG VBN IN NN CC NN TO DT NNP NNPS . Mexican military forces have been engaged in a brutal struggle against the country 's violent drug cartels . JJ JJ NNS VBP VBN VBN IN DT JJ NN IN DT NN POS JJ NN NNS . Nearly 30,000 people have been killed in Mexico 's drug war since President Felipe Calderon took office in late 2006 and began cracking down on the cartels . RB CD NNS VBP VBN VBN IN NNP POS NN NN IN NNP NNP NNP VBD NN IN JJ CD CC VBD VBG RP IN DT NNS . At least 223 people in Latin America have been killed in several days of severe weather triggered by Hurricane Stan . IN JJS CD NNS IN NNP NNP VBP VBN VBN IN JJ NNS IN JJ NN VBN IN NNP NNP . The region has been pounded with heavy rains , mudslides and flooding from the storm , which came ashore Tuesday on Mexico 's eastern Gulf Coast . DT NN VBZ VBN VBN IN JJ NNS , NNS CC NN IN DT NN , WDT VBD RB NNP IN NNP POS JJ NNP NNP . Rescuers in Guatemala Thursday pulled 40 bodies from a mudslide about 100 kilometers west of Guatemala City . NNS IN NNP NNP VBD CD NNS IN DT NN IN CD NNS JJS IN NNP NNP . Dozens of other people were killed elsewhere in Central America and Mexico after the storm ripped through the region , triggering the floods and mudslides and knocking down power lines and ripping apart houses . NNS IN JJ NNS VBD VBN RB IN NNP NNP CC NNP IN DT NN VBD IN DT NN , VBG DT NNS CC NNS CC VBG RP NN NNS CC VBG RB NNS . Tens of thousands of people fled their homes , and many remain homeless . NNS IN NNS IN NNS VBD PRP$ NNS , CC JJ VBP JJ . The United Nations says it is rushing assistance to El Salvador and Costa Rica , and remains ready to mobilize international support for emergency relief and recovery efforts . DT NNP NNP VBZ PRP VBZ VBG NN TO NNP NNP CC NNP NNP , CC VBZ JJ TO VB JJ NN IN NN NN CC NN NNS . Former Sudanese rebels say government forces entered rebel territory in eastern Sudan and threatened to evict them . JJ JJ NNS VBP NN NNS VBD JJ NN IN JJ NNP CC VBD TO VB PRP . The former southern rebels from the Sudan People 's Liberation Movement say about three-thousand soldiers entered the eastern town of Hamesh Koreb Wednesday and ordered them to leave . DT JJ JJ NNS IN DT NNP NNP POS NNP NNP VBP IN JJ NNS VBD DT JJ NN IN NNP NNP NNP CC VBD PRP TO VB . A spokesman for the former rebels called the move a violation of the peace deal signed one year ago between the southern rebels and the government . DT NN IN DT JJ NNS VBD DT NN DT NN IN DT NN NN VBD CD NN IN IN DT JJ NNS CC DT NN . The former rebels had agreed to leave the town by January 9 . DT JJ NNS VBD VBN TO VB DT NN IN NNP CD . But the rebel spokesman said that deadline could not be met due to logistical problems - and that the rebels had informed Khartoum of the delay . CC DT NN NN VBD IN NN MD RB VB VBN JJ TO JJ NNS : CC IN DT NNS VBD VBN NNP IN DT NN . Earlier Wednesday , eastern rebels said they had been attacked in the area by Sudanese armed forces . RBR NNP , JJ NNS VBD PRP VBD VBN VBN IN DT NN IN JJ JJ NNS . During the southern civil war , southern rebels fought alongside eastern rebels . IN DT JJ JJ NN , JJ NNS VBD RB JJ NNS . The southern rebels have joined in a power-sharing government , while the eastern rebels have not . DT JJ NNS VBP VBN IN DT JJ NN , IN DT JJ NNS VBP RB . Burma is reporting new cases of bird flu among poultry at a farm north of Rangoon , the fifth such outbreak in the country in recent weeks . NNP VBZ VBG JJ NNS IN NN NN IN NN IN DT NN NN IN NNP , DT NN JJ NN IN DT NN IN JJ NNS . Burmese state media say 1,600 chickens died from the H5N1 strain of the virus on a farm in Hmawbi township ( 40 kilometers north of Rangoon ) over the past week . JJ NN NNS VBP CD NNS VBD IN DT NNP NN IN DT NN IN DT NN IN NNP NN LRB CD NNS RB IN NNP RRB IN DT JJ NN . The farm 's remaining 20,000 poultry were culled as a precautionary measure . DT NN POS VBG CD NN VBD VBN IN DT JJ NN . The state-controlled New Light of Myanmar newspaper says the new outbreak may have been caused by the movement of people and birds in the area . DT JJ NNP NNP IN NNP NN VBZ DT JJ NN MD VB VBN VBN IN DT NN IN NNS CC NNS IN DT NN . It says authorities have banned the sale and transport of poultry within six-kilometers of the farm . PRP VBZ NNS VBP VBN DT NN CC NN IN NN IN NNS IN DT NN . The latest series of bird flu outbreaks in and around Rangoon began last month . DT JJS NN IN NN NN NNS IN CC IN NNP VBD JJ NN . They are the first reported in Burma since March 2006 . PRP VBP DT JJ VBN IN NNP IN NNP CD . A group of leading Muslim scholars has sent holiday greetings to Christians worldwide . DT NN IN VBG NNP NNS VBZ VBN NN NNS TO NNPS NN . In wishing a joyful and peaceful Christmas , the group also gave thanks for what it calls the ' beautiful and gracious ' response to its call for more openness between the faiths . IN VBG DT JJ CC JJ NNP , DT NN RB VBD NNS IN WP PRP VBZ DT `` JJ CC JJ `` NN TO PRP$ NN IN JJR NN IN DT NNS . The group said it hopes the coming year will be one of forgiveness and where the dignity of human life is upheld . DT NN VBD PRP VBZ DT JJ NN MD VB CD IN NN CC WRB DT NN IN JJ NN VBZ VBN . Pope Benedict last month accepted an invitation by the 138 Muslim scholars to meet and talk about more cooperation between Muslims and Christians . NNP NNP JJ NN VBD DT NN IN DT CD NNP NNS TO VB CC VB IN JJR NN IN NNPS CC NNPS . Authorities in Indian Kashmir say two suspected Islamic militants have been killed and 15 people wounded in two separate incidents . NNS IN JJ NNP VBP CD JJ JJ NNS VBP VBN VBN CC CD NNS VBN IN CD JJ NNS . Indian army officials say the militants were shot and killed after they crossed into Indian Kashmir from the Pakistani side of the disputed region . JJ NN NNS VBP DT NNS VBD VBN CC VBN IN PRP VBD IN JJ NNP IN DT JJ NN IN DT JJ NN . They say one Indian security officer was wounded in the fighting . PRP VBP CD JJ NN NN VBD VBN IN DT NN . In the town of Bijbehera , south of Srinagar , suspected militants hurled a grenade at a police patrol , wounding 15 people . IN DT NN IN NNP , NN IN NNP , JJ NNS VBD DT NN IN DT NN NN , VBG CD NNS . Militant separatist groups in Indian Kashmir continue their attacks against government targets , saying they oppose the ongoing peace process between India and Pakistan . JJ NN NNS IN NNP NNP VBP PRP$ NNS IN NN NNS , VBG PRP VBP DT JJ NN NN IN NNP CC NNP . Kashmiri militants have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan . JJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP . The insurgency has claimed tens of thousand of lives . DT NN VBZ VBN NNS IN CD IN NNS . Three contractors working for the U.N. World Food Program have been kidnapped in Sudan 's Darfur region . CD NNS VBG IN DT NNP NNP NNP NNP VBP VBN VBN IN NNP POS NNP NN . A WFP spokeswoman Amor Almagro said the three are members of a helicopter crew managed by the agency . DT NNP NN NNP NNP VBD DT CD VBP NNS IN DT NN NN VBN IN DT NN . She said they were abducted Thursday at an airstrip southeast of Geneina , the capital of West Darfur state . PRP VBD PRP VBD VBN NNP IN DT NN NN IN NNP , DT NN IN NNP NNP NN . Bulgaria 's foreign ministry says all three men are Bulgarian nationals . NNP POS JJ NN VBZ DT CD NNS VBP JJ NNS . Bandits and armed groups frequently kidnap U.N. and international aid workers in Darfur . NNS CC JJ NNS RB VBP NNP CC JJ NN NNS IN NNP . The kidnappings have increased since March 2009 , when the International Criminal Court indicted Sudanese President Omar al-Bashir for alleged war crimes in the region . DT NNS VBP VBN IN NNP CD , WRB DT NNP NNP NNP VBD JJ NNP NNP NNP IN JJ NN NNS IN DT NN . Most of the hostages have been released unharmed . JJS IN DT NNS VBP VBN VBN JJ . Darfur has experienced more than seven years of conflict since rebels took up arms against Mr. Bashir 's government in 2003 . NNP VBZ VBN JJR IN CD NNS IN NN IN NNS VBD RP NNS IN NNP NNP POS NN IN CD . The United Nations says some 3,00,000 people have died in the conflict , with another 2.7 million displaced from their homes . DT NNP NNP VBZ DT CD NNS VBP VBN IN DT NN , IN DT CD CD VBN IN PRP$ NNS . The Indonesian government has sued Newmont Mining Corporation for $ 133 million over alleged pollution near one of its gold mines . DT JJ NN VBZ VBN NNP NNP NNP IN $ CD CD IN JJ NN IN CD IN PRP$ NN NNS . The Indonesian subsidiary of the American mining giant faces charges that it released waste and heavy metals into the air and water at Buyat Bay in northern Sulawesi province . DT JJ NN IN DT JJ NN NN VBZ NNS IN PRP VBD NN CC JJ NNS IN DT NN CC NN IN NNP NNP IN JJ NNP NN . Newmont 's American president also faces charges in the suit . NNP POS JJ NN RB VBZ NNS IN DT NN . A lawyer for the mining company says Jakarta 's case is baseless . DT NN IN DT NN NN VBZ NNP POS NN VBZ JJ . Tests on the bay 's water have produced conflicting results . NNS IN DT NN POS NN VBP VBN JJ NNS . Two studies indicated no pollution in the bay . CD NNS VBD DT NN IN DT NN . However a subsequent government probe reported elevated arsenic levels . RB DT JJ NN NN VBD VBN JJ NNS . Newmont has admitted releasing mercury into the environment at the gold mine , but denies that it sickened local people . NNP VBZ VBN VBG NN IN DT NN IN DT NN NN , CC VBZ IN PRP VBD JJ NNS . Lebanon has again rejected calls from the United Nations to disarm Shi'ite Hezbollah militants , saying it regards the group as a legitimate organization opposing the Israeli occupation of Arab lands . NNP VBZ RB VBN NNS IN DT NNP NNPS TO VB NNP NNP NNS , VBG PRP VBZ DT NN IN DT JJ NN VBG DT JJ NN IN JJ NNS . In Beirut Thursday , Information Minister Ghazi Aridi said any differences between the government and Hezbollah would be settled through internal dialogue . IN NNP NNP , NNP NNP NNP NNP VBD DT NNS IN DT NN CC NNP MD VB VBN IN JJ NN . He spoke one day after the U.N. Security Council received a report saying Lebanon has not done enough to disarm militias in the country . PRP VBD CD NN IN DT NNP NNP NNP VBD DT NN VBG NNP VBZ RB VBN RB TO VB NNS IN DT NN . The report singled out the Iranian- and Syrian-backed Hezbollah , which the United States has labeled a terrorist organization . DT NN VBD RP DT NNP CC JJ NNP , WDT DT NNP NNPS VBZ VBN DT JJ NN . It cited Hezbollah for a series of attacks on Israeli forces occupying a disputed area near the borders of Syria , Israel and Lebanon . PRP VBD NNP IN DT NN IN NNS IN JJ NNS VBG DT JJ NN IN DT NNS IN NNP , NNP CC NNP . Meanwhile , Lebanese troops near the Syrian border remained deployed Thursday near Syrian-backed Palestinian militant bases , where gunmen shot and killed a civilian contractor on Tuesday . RB , JJ NNS IN DT JJ NN VBD VBN NNP IN JJ JJ JJ NNS , WRB NNS VBD CC VBD DT JJ NN IN NNP . A bomb blast at a police station in central Bosnia-Herzegovina has killed one police officer and injured six others . DT NN NN IN DT NN NN IN JJ NNP VBZ VBN CD NN NN CC VBD CD NNS . It is unclear whether someone threw the bomb in the town of Bugojno or it was planted in the building . PRP VBZ JJ IN DT VBD DT NN IN DT NN IN NNP CC PRP VBD VBN IN DT NN . Witnesses say the blast seriously damaged nearby buildings and destroyed parked cars . NNS VBP DT NN RB VBN JJ NNS CC VBN JJ NNS . Police have arrested at least three suspects , but no one has yet claimed responsibility for the attack . NNS VBP VBN IN JJS CD NNS , CC DT NN VBZ RB VBN NN IN DT NN . Germany has freed a Lebanese man who was sentenced to life in prison for hijacking an American airliner and killing a U.S. Navy diver 20 years ago . NNP VBZ VBN DT JJ NN WP VBD VBN TO NN IN NN IN VBG DT JJ NN CC VBG DT NNP NNP NN CD NNS RB . German justice officials confirmed Tuesday that Mohammed Ali Hamadi was released on parole after a routine review of his case , and they say he already has left Germany . JJ NN NNS VBD NNP IN NNP NNP NNP VBD VBN IN NN IN DT JJ NN IN PRP$ NN , CC PRP VBP PRP RB VBZ VBN NNP . Sources in Lebanon say Hamadi , a member of the Hezbollah militant group , has returned to Beirut , the focal point of the 1985 hijacking . NNS IN NNP VBP NNP , DT NN IN DT NNP JJ NN , VBZ VBN TO NNP , DT JJ NN IN DT CD NN . Hamadi was convicted in the hijacking of a TWA airliner that took off from Athens in 1985 . NNP VBD VBN IN DT NN IN DT NNP NN WDT VBD RP IN NNP IN CD . U.S. Navy diver Robert Stethem , a passenger on the plane , was killed while the commandeered jet was on the ground in Beirut . NNP NNP NN NNP NNP , DT NN IN DT NN , VBD VBN IN DT JJ NN VBD IN DT NN IN NNP . The German Foreign Ministry has denied any link between Hamadi 's parole and the recent release of a German hostage in Iraq . DT JJ NNP NNP VBZ VBN DT NN IN NNP POS NN CC DT JJ NN IN DT JJ NN IN NNP . Chocolate lovers around the world are invited to Armenia to take a bite of the world 's largest chocolate bar . NNP NNS IN DT NN VBP VBN TO NNP TO VB DT NN IN DT NN POS JJS NN NN . The 4,410-kilogram dark chocolate treat will be offered up to the public on October 16 . DT JJ JJ NN NN MD VB VBN RP TO DT NN IN NNP CD . The Guinness Book of World Records certified the giant bar as the world 's largest in a ceremony in Yerevan over the weekend . DT NNP NNP IN NNP NNP VBD DT JJ NN IN DT NN POS JJS IN DT NN IN NNP IN DT NN . Made by the Grand Candy factory , the massive chocolate is 70 percent cocoa mass and was made from all natural ingredients using cocoa beans from Ghana . VBN IN DT NNP NNP NN , DT JJ NN VBZ CD NN NN NN CC VBD VBN IN RB JJ NNS VBG NN NNS IN NNP . It is more than 5.5 meters long , 2.7 meters wide and 25 centimeters thick . PRP VBZ JJR IN CD NNS RB , CD NNS JJ CC CD NNS JJ . The previous record was for a 3,587-kilogram chocolate bar made by Elah Dufour-Novi in Alessandria , Piemonte , Italy , in October 2007 . DT JJ NN VBD IN DT JJ NN NN VBN IN NNP NNP IN NNP , NNP , NNP , IN NNP CD . The mayor of Mexico City has resigned in order to pursue the presidency in next year 's national elections . DT NN IN NNP NNP VBZ VBN IN NN TO VB DT NN IN JJ NN POS JJ NNS . Andres Manuel Lopez Obrador , who is seen as a champion of the poor , announced Friday to thousands of cheering supporters in the Mexican capital that he would fight to transform Mexico . NNP NNP NNP NNP , WP VBZ VBN IN DT NN IN DT NN , VBD NNP TO NNS IN VBG NNS IN DT JJ NN IN PRP MD VB TO VB NNP . He listed his numerous achievements as mayor , although some residents say he has not done enough to tackle crime in a city where kidnapping is rampant . PRP VBD PRP$ JJ NNS IN NN , IN DT NNS VBP PRP VBZ RB VBN RB TO VB NN IN DT NN WRB NN VBZ JJ . Mr. Lopez Obrador is known for social policies that include construction projects and government funding for single mothers , the elderly and the disabled . NNP NNP NNP VBZ VBN IN JJ NNS WDT VBP NN NNS CC NN NN IN JJ NNS , DT NN CC DT NN . The popular 51-year-old mayor leads public opinion polls ahead of the 2006 presidential race . DT JJ JJ NN VBZ JJ NN NNS RB IN DT CD JJ NN . The election of Mr. Lopez Obrador would mark a clear change in direction from the free-market reforms supported by incumbent President Vicente Fox , who is limited to one term in office . DT NN IN NNP NNP NNP MD VB DT JJ NN IN NN IN DT JJ NNS VBN IN JJ NNP NNP NNP , WP VBZ VBN TO CD NN IN NN . Savin Corp. reported a third-quarter net loss of $ 35.2 million , or 31 cents a share , compared with year-earlier profit of $ 3.8 million , or one cent a share . NNP NNP VBD DT JJ JJ NN IN $ CD CD , CC CD NNS DT NN , VBN IN JJ NN IN $ CD CD , CC CD NN DT NN . A spokesman for the Stamford , Conn. based company said operations had a loss of $ 5.5 million for the quarter ; in addition , the loss was magnified by nonrecurring charges totaling $ 23.5 million and $ 8.2 million in asset-valuation adjustments that he described as ' unusual . ' DT NN IN DT NNP , NN VBN NN VBD NNS VBD DT NN IN $ CD CD IN DT NN : IN NN , DT NN VBD VBN IN VBG NNS VBG $ CD CD CC $ CD CD IN JJ NNS IN PRP VBD IN `` JJ . `` The charges were partly offset by a $ 2 million gain on the sale of investments of two joint ventures , he said . DT NNS VBD RB VBN IN DT $ CD CD NN IN DT NN IN NNS IN CD JJ NNS , PRP VBD . Revenue declined 8 % to $ 85.7 million , from $ 93.3 million a year earlier . NN VBD CD NN TO $ CD CD , IN $ CD CD DT NN RBR . Savin cited ' a general softening in the demand for office products in the market segments in which Savin competes . ' NNP VBD `` DT JJ NN IN DT NN IN NN NNS IN DT NN NNS IN WDT NNP VBZ . `` Finland has a highly industrialized , largely free-market economy with per capita output roughly that of Austria , Belgium , the Netherlands , and Sweden . NNP VBZ DT RB VBN , RB JJ NN IN IN NN NN RB IN IN NNP , NNP , DT NNP , CC NNP . Trade is important with exports accounting for over one third of GDP in recent years . NNP VBZ JJ IN NNS VBG IN IN CD NN IN NN IN JJ NNS . Finland is strongly competitive in manufacturing - principally the wood , metals , engineering , telecommunications , and electronics industries . NNP VBZ RB JJ IN VBG : RB DT NN , NNS , NN , NN , CC NNS NNS . Finland excels in high-tech exports such as mobile phones . NNP NNS IN JJ NNS JJ IN JJ NNS . Except for timber and several minerals , Finland depends on imports of raw materials , energy , and some components for manufactured goods . IN IN NN CC JJ NNS , NNP VBZ IN NNS IN JJ NNS , NN , CC DT NNS IN JJ NNS . Because of the climate , agricultural development is limited to maintaining self-sufficiency in basic products . IN IN DT NN , JJ NN VBZ VBN TO VBG NN IN JJ NNS . Forestry , an important export earner , provides a secondary occupation for the rural population . NN , DT JJ NN NN , VBZ DT JJ NN IN DT JJ NN . Finland had been one of the best performing economies within the EU in recent years and its banks and financial markets avoided the worst of global financial crisis . NNP VBD VBN CD IN DT JJS VBG NNS IN DT NNP IN JJ NNS CC PRP$ NNS CC JJ NNS VBD DT JJS IN JJ JJ NN . However , the world slowdown hit exports and domestic demand hard in 2009 , with Finland experiencing one of the deepest contractions in the euro zone . RB , DT NN NN VBD NNS CC JJ NN RB IN CD , IN NNP VBG CD IN DT JJS NNS IN DT NN NN . A recovery of exports , domestic trade , and household consumption stimulated economic growth in 2010 . DT NN IN NNS , JJ NN , CC NN NN VBD JJ NN IN CD . The recession left a deep mark on general government finances and the debt ratio , turning previously strong budget surpluses into deficits . DT NN VBD DT JJ NN IN JJ NN NNS CC DT NN NN , VBG RB JJ NN NNS IN NNS . Despite good growth prospects , general government finances will remain in deficit during the next few years . IN JJ NN NNS , JJ NN NNS MD VB IN NN IN DT JJ JJ NNS . The great challenge of economic policy will be to implement a post-recession exit strategy in which measures supporting growth will be combined with general government adjustment measures . DT JJ NN IN JJ NN MD VB TO VB DT JJ NN NN IN WDT NNS VBG NN MD VB VBN IN JJ NN NN NNS . Longer-term , Finland must address a rapidly aging population and decreasing productivity that threaten competitiveness , fiscal sustainability , and economic growth . RB , NNP MD VB DT RB VBG NN CC VBG NN WDT VBP NN , JJ NN , CC JJ NN . Most Cambodians consider themselves to be Khmers , descendants of the Angkor Empire that extended over much of Southeast Asia and reached its zenith between the 10th and 13th centuries . JJS NNS VBP PRP TO VB NNS , NNS IN DT NNP NN WDT VBD IN NN IN NNP NNP CC VBD PRP$ NN IN DT JJ CC JJ NNS . Attacks by the Thai and Cham ( from present-day Vietnam ) weakened the empire , ushering in a long period of decline . NNS IN DT JJ CC NNP LRB IN JJ NNP RRB VBD DT NN , VBG IN DT JJ NN IN NN . The king placed the country under French protection in 1863 and it became part of French Indochina in 1887 . DT NN VBD DT NN IN JJ NN IN CD CC PRP VBD NN IN JJ NNP IN CD . Following Japanese occupation in World War II , Cambodia gained full independence from France in 1953 . VBG JJ NN IN NNP NNP NNP , NNP VBD JJ NN IN NNP IN CD . In April 1975 , after a five-year struggle , Communist Khmer Rouge forces captured Phnom Penh and evacuated all cities and towns . IN NNP CD , IN DT JJ NN , NNP NNP NNP NNS VBD NNP NNP CC VBD DT NNS CC NNS . At least 1.5 million Cambodians died from execution , forced hardships , or starvation during the Khmer Rouge regime under POL POT . IN JJS CD CD NNS VBD IN NN , JJ NNS , CC NN IN DT NNP NNP NN IN NNP NNP . A December 1978 Vietnamese invasion drove the Khmer Rouge into the countryside , began a 10-year Vietnamese occupation , and touched off almost 13 years of civil war . DT NNP CD JJ NN VBD DT NNP NNP IN DT NN , VBD DT JJ JJ NN , CC VBD RP RB CD NNS IN JJ NN . The 1991 Paris Peace Accords mandated democratic elections and a ceasefire , which was not fully respected by the Khmer Rouge . DT CD NNP NNP NNP VBD JJ NNS CC DT NN , WDT VBD RB RB VBN IN DT NNP NNP . UN-sponsored elections in 1993 helped restore some semblance of normalcy under a coalition government . JJ NNS IN CD VBD VB DT NN IN NN IN DT NN NN . Factional fighting in 1997 ended the first coalition government , but a second round of national elections in 1998 led to the formation of another coalition government and renewed political stability . JJ NN IN CD VBD DT JJ NN NN , CC DT JJ NN IN JJ NNS IN CD VBD TO DT NN IN DT NN NN CC VBN JJ NN . The remaining elements of the Khmer Rouge surrendered in early 1999 . DT VBG NNS IN DT NNP NNP VBD IN JJ CD . Some of the surviving Khmer Rouge leaders have been tried or are awaiting trial for crimes against humanity by a hybrid UN-Cambodian tribunal supported by international assistance . DT IN DT VBG NNP NNP NNS VBP VBN VBN CC VBP VBG NN IN NNS IN NN IN DT JJ JJ NN VBN IN JJ NN . Elections in July 2003 were relatively peaceful , but it took one year of negotiations between contending political parties before a coalition government was formed . NNS IN NNP CD VBD RB JJ , CC PRP VBD CD NN IN NNS IN VBG JJ NNS IN DT NN NN VBD VBN . In October 2004 , King Norodom SIHANOUK abdicated the throne and his son , Prince Norodom SIHAMONI , was selected to succeed him . IN NNP CD , NNP NNP NNP VBD DT NN CC PRP$ NN , NNP NNP NNP , VBD VBN TO VB PRP . Local elections were held in Cambodia in April 2007 , with little of the pre-election violence that preceded prior elections . JJ NNS VBD VBN IN NNP IN NNP CD , IN NN IN DT JJ NN IN VBD JJ NNS . National elections in July 2008 were relatively peaceful . JJ NNS IN NNP CD VBD RB JJ . Aboriginal settlers arrived on the continent from Southeast Asia about 40,000 years before the first Europeans began exploration in the 17th century . NNP NNS VBD IN DT NN IN NNP NNP IN CD NNS IN DT JJ NNS VBD NN IN DT JJ NN . No formal territorial claims were made until 1770 , when Capt. James COOK took possession of the east coast in the name of Great Britain ( all of Australia was claimed as British territory in 1829 with the creation of the colony of Western Australia ) . DT JJ JJ NNS VBD VBN IN CD , WRB NNP NNP NNP VBD NN IN DT JJ NN IN DT NN IN NNP NNP LRB DT IN NNP VBD VBN IN JJ NN IN CD IN DT NN IN DT NN IN NNP NNP RRB . Six colonies were created in the late 18th and 19th centuries ; they federated and became the Commonwealth of Australia in 1901 . CD NNS VBD VBN IN DT JJ JJ CC JJ NNS ; PRP VBD CC VBD DT NN IN NNP IN CD . The new country took advantage of its natural resources to rapidly develop agricultural and manufacturing industries and to make a major contribution to the British effort in World Wars I and II . DT JJ NN VBD NN IN PRP$ JJ NNS TO RB VB JJ CC NN NNS CC TO VB DT JJ NN TO DT JJ NN IN NNP NNP NNP CC NNP . In recent decades , Australia has transformed itself into an internationally competitive , advanced market economy . IN JJ NNS , NNP VBZ VBN PRP IN DT RB JJ , JJ NN NN . It boasted one of the OECD 's fastest growing economies during the 1990s , a performance due in large part to economic reforms adopted in the 1980s . PRP VBD CD IN DT NNP POS JJS VBG NNS IN DT NNS , DT NN JJ IN JJ NN TO JJ NNS VBN IN DT NNS . Long-term concerns include ageing of the population , pressure on infrastructure , and environmental issues such as frequent droughts . JJ NNS VBP VBG IN DT NN , NN IN NN , CC JJ NNS JJ IN JJ NNS . The economy depends largely on financial assistance from the UK , which amounted to about $ 27 million in FY06/07 or more than twice the level of annual budgetary revenues . DT NN VBZ RB IN JJ NN IN DT NNP , WDT VBD TO IN $ CD CD IN CD CC JJR IN RB DT NN IN JJ JJ NNS . The local population earns income from fishing , raising livestock , and sales of handicrafts . DT JJ NN VBZ NN IN NN , VBG NN , CC NNS IN NNS . Because there are few jobs , 25 % of the work force has left to seek employment on Ascension Island , on the Falklands , and in the UK . IN EX VBP JJ NNS , CD NN IN DT NN NN VBZ VBN TO VB NN IN NNP NNP , IN DT NNS , CC IN DT NNP . Economic activity is limited to providing services to the military and their families located in Dhekelia . JJ NN VBZ VBN IN VBG NNS TO DT NN CC PRP$ NNS VBN IN NNP . All food and manufactured goods must be imported . DT NN CC JJ NNS MD VB VBN . A SHEPHERD penning his sheep in the fold for the night was about to shut up a wolf with them , when his Dog perceiving the wolf said , ' Master , how can you expect the sheep to be safe if you admit a wolf into the fold ? ' DT NN VBG PRP$ NNS IN DT NN IN DT NN VBD RB TO VB RP DT NN IN PRP , WRB PRP$ NN VBG DT NN VBD , `` NNP , WRB MD PRP VB DT NNS TO VB JJ IN PRP VBP DT NN IN DT NN . `` A HARE having ridiculed the slow movements of a Tortoise , was challenged by the latter to run a race , a Fox to go to the goal and be the judge . DT NN VBG VBN DT JJ NNS IN DT NN , VBD VBN IN DT NN TO VB DT NN , DT NN TO VB TO DT NN CC VB DT NN . They got off well together , the hare at the top of her speed , the Tortoise , who had no other intention than making his antagonist exert herself , going very leisurely . PRP VBD RB RB RB , DT NN IN DT NN IN PRP$ NN , DT NN , WP VBD DT JJ NN IN VBG PRP$ JJ VB PRP , VBG RB RB . After sauntering along for some time he discovered the Hare by the wayside , apparently asleep , and seeing a chance to win pushed on as fast as he could , arriving at the goal hours afterward , suffering from extreme fatigue and claiming the victory . IN VBG RP IN DT NN PRP VBD DT NN IN DT NN , RB JJ , CC VBG DT NN TO VB VBD IN RB RB IN PRP MD , VBG IN DT NN NNS RB , VBG IN JJ NN CC VBG DT NN . ' Not so , ' said the Fox ; ' the Hare was here long ago , and went back to cheer you on your way . ' `` RB RB , `` VBD DT NNP ; `` DT NN VBD RB JJ RB , CC VBD RB TO VB PRP IN PRP$ NN . `` A FOX caught in a trap escaped , but in so doing lost his tail . DT NN VBN IN DT NN VBN , CC IN RB VBG VBN PRP$ NN . Thereafter , feeling his life a burden from the shame and ridicule to which he was exposed , he schemed to convince all the other Foxes that being tailless was much more attractive , thus making up for his own deprivation . RB , VBG PRP$ NN DT NN IN DT NN CC NN TO WDT PRP VBD VBN , PRP VBD TO VB PDT DT JJ NNS IN VBG JJ VBD RB RBR JJ , RB VBG RP IN PRP$ JJ NN . He assembled a good many Foxes and publicly advised them to cut off their tails , saying that they would not only look much better without them , but that they would get rid of the weight of the brush , which was a very great inconvenience . PRP VBD DT JJ JJ NNS CC RB VBD PRP TO VB RP PRP$ NNS , VBG IN PRP MD RB RB VB RB JJR IN PRP , CC IN PRP MD VB JJ IN DT NN IN DT NN , WDT VBD DT RB JJ NN . One of them interrupting him said , ' If you had not yourself lost your tail , my friend , you would not thus counsel us . ' CD IN PRP VBG PRP VBD , `` IN PRP VBD RB PRP VBD PRP$ NN , PRP$ NN , PRP MD RB RB VB PRP . `` Spider-Man 3 spun a solid gold web in Asia , setting box-office records in Japan , South Korea , and Hong Kong . JJ CD VBD DT JJ NN NN IN NNP , VBG NN NNS IN NNP , NNP NNP , CC NNP NNP . The special effects-laden thriller took in an estimated $ 3.5 million in its first day of Japanese release , while grossing $ 3.4 million in South Korea . DT JJ JJ NN VBD IN DT VBN $ CD CD IN PRP$ JJ NN IN JJ NN , IN VBG $ CD CD IN NNP NNP . Both figures top opening day tallies for the first two entries in the series . DT NNS JJ VBG NN NNS IN DT JJ CD NNS IN DT NN . It also enjoyed the largest opening-day performance for any film in Hong Kong and South Korean history . PRP RB VBD DT JJS JJ NN IN DT NN IN NNP NNP CC JJ JJ NN . The U.S. envoy to the International Atomic Energy Agency says he is ' fairly confident ' the IAEA board will report Iran to the United Nations Security Council next month . DT NNP NN TO DT NNP NNP NNP NNP VBZ PRP VBZ `` RB JJ `` DT NNP NN MD VB NNP TO DT NNP NNP NNP NNP JJ NN . Ambassador Greg Schulte told VOA 's Persian service Tuesday that in recent talks about the Iranian nuclear standoff , U.S. , European , Russian and Chinese envoys have discussed gradually increasing diplomatic pressure on Tehran if it fails to suspend its uranium enrichment activities . NNP NNP NNP VBD NNP POS JJ NN NNP IN IN JJ NNS IN DT JJ JJ NN , NNP , NNP , JJ CC JJ NNS VBP VBN RB VBG JJ NN IN NNP IN PRP VBZ TO VB PRP$ NN NN NNS . Russia and China oppose U.N. sanctions on Iran , and they have urged Europe and the United States to first use diplomacy . NNP CC NNP VBP NNP NNS IN NNP , CC PRP VBP VBN NNP CC DT NNP NNPS TO JJ NN NN . But Mr. Schulte said Moscow and Beijing also are growing increasingly frustrated with Iran 's recent actions . CC NNP NNP VBD NNP CC NNP RB VBP VBG RB JJ IN NNP POS JJ NNS . Iran broke the seals on its uranium enrichment facilities earlier this month , effectively ending a two-year moratorium on its nuclear fuel research . NNP VBD DT NNS IN PRP$ NN NN NNS RBR DT NN , RB VBG DT JJ NN IN PRP$ JJ NN NN . Tehran insists its nuclear program is peaceful . NNP VBZ PRP$ JJ NN VBZ JJ . A Vatican spokesman says Pope Benedict is willing to meet with victims of pedophile priests . DT NNP NN VBZ NNP NNP VBZ JJ TO VB IN NNS IN JJ NNS . Reverend Federico Lombardi made the statement to Vatican Radio on Friday . NNP NNP NNP VBD DT NN TO NNP NNP IN NNP . Lombardi said the church must also cooperate with police and judicial authorities because it is the only way to regain trust . NNP VBD DT NN MD RB VB IN NNS CC JJ NNS IN PRP VBZ DT JJ NN TO VB NN . The pope and the Vatican have been heavily criticized in Europe following newly revealed cases of sex abuse by priests . DT NN CC DT NNP VBP VBN RB VBN IN NNP VBG RB VBN NNS IN NN NN IN NNS . Church officials in Belgium , Germany and Ireland also have openly criticized the Vatican for failing to come to terms with the crisis and for failing to help its victims . NNP NNS IN NNP , NNP CC NNP RB VBP RB VBN DT NNP IN VBG TO VB TO NNS IN DT NN CC IN VBG TO VB PRP$ NNS . Despite the criticism , a top cleric defended Pope Benedict 's handling of the scandal during Easter Sunday services . IN DT NN , DT JJ NN VBD NNP NNP POS NN IN DT NN IN NNP NNP NNS . Cardinal Angelo Sodano said the church should not be influenced by what he called ' petty gossip . ' NNP NNP NNP VBD DT NN MD RB VB VBN IN WP PRP VBD `` JJ NN . `` The president of Venezuela , Hugo Chavez , is visiting Honduras and Nicaragua to discuss regional cooperation and energy deals . DT NN IN NNP , NNP NNP , VBZ VBG NNP CC NNP TO VB JJ NN CC NN NNS . Mr. Chavez was meeting Tuesday , with his Honduran counterpart , Manuel Zelaya , at the presidential residence in the capital , Tegucigalpa . NNP NNP VBD VBG NNP , IN PRP$ JJ NN , NNP NNP , IN DT JJ NN IN DT NN , NNP . Mr. Chavez was previously in Guatemala , where he attended the presidential inauguration Monday of Alvaro Colom . NNP NNP VBD RB IN NNP , WRB PRP VBD DT JJ NN NNP IN NNP NNP . News reports say Mr. Chavez and his Honduran counterpart were to discuss a possible contract between Honduras and Petrocaribe , a Venezuelan initiative that allows the purchase of Venezuelan oil at preferential rates . NNP NNS VBP NNP NNP CC PRP$ JJ NN VBD TO VB DT JJ NN IN NNP CC NNP , DT JJ NN WDT VBZ DT NN IN JJ NN IN JJ NNS . Mr. Chavez travels on to Nicaragua , where he is to meet with President Daniel Ortega . NNP NNP VBZ IN TO NNP , WRB PRP VBZ TO VB IN NNP NNP NNP . Reports say the two will lay plans for the activities of the regional trade area called the Bolivarian Alternative for the Americas , which includes Nicaragua , Bolivia , Venezuela and Cuba . NNS VBP DT CD MD VB NNS IN DT NNS IN DT JJ NN NN VBD DT NNP NNP IN DT NNPS , WDT VBZ NNP , NNP , NNP CC NNP . Venezuelan President Hugo Chavez is introducing a series of measures aimed at fighting inflation and boosting the nation 's economy . JJ NNP NNP NNP VBZ VBG DT NN IN NNS VBN IN VBG NN CC VBG DT NN POS NN . In announcing an economic stimulus package , President Chavez said Wednesday that he will create a $ 1 billion fund to encourage joint public-private projects in sectors such as food and manufacturing . IN VBG DT JJ NN NN , NNP NNP VBD NNP IN PRP MD VB DT $ CD CD NN TO VB JJ JJ NNS IN NNS JJ IN NN CC NN . The president also said a 1.5 percent tax on financial transactions for businesses would be eliminated on the grounds it was causing inflation . DT NN RB VBD DT CD NN NN IN JJ NNS IN NNS MD VB VBN IN DT NNS PRP VBD VBG NN . Inflation has been accelerating while economic growth dropped to 4.8 percent in the first quarter of this year . NN VBZ VBN VBG IN JJ NN VBD TO CD NN IN DT JJ NN IN DT NN . The South American oil-exporting country 's inflation rate is the highest in the region , climbing to 31.4 percent last month . DT NNP NNP NN NN POS NN NN VBZ DT JJS IN DT NN , VBG TO CD NN JJ NN . In April , Venezuela said it planned to sell $ 3 billion worth of government bonds on local markets , in a bid to slow inflation and strengthen the currency , known as the strong bolivar . IN NNP , NNP VBD PRP VBD TO VB $ CD CD NN IN NN NNS IN JJ NNS , IN DT NN TO VB NN CC VB DT NN , VBN IN DT JJ NN . Colombia has extradited 13 alleged drug traffickers to stand trial in U.S. courts in the states of Florida and New York . NNP VBZ VBN CD VBN NN NNS TO VB NN IN NNP NNS IN DT NNS IN NNP CC NNP NNP . Officials say the Colombian suspects were flown Wednesday to the United States , where they have been charged with cocaine trafficking and money laundering . NNS VBP DT JJ NNS VBD VBN NNP TO DT NNP NNPS , WRB PRP VBP VBN VBN IN NN NN CC NN NN . Colombian authorities say they have extradited at least 63 drug suspects to the United States this year . JJ NNS VBP PRP VBP VBN IN JJS CD NN NNS TO DT NNP NNPS DT NN . In 1997 , Colombia restored a law to extradite nationals charged with drug offenses , which had been suspended amid a campaign of violence by Colombian drug cartels . IN CD , NNP VBD DT NN TO VB NNS VBN IN NN NNS , WDT VBD VBN VBN IN DT NN IN NN IN JJ NN NNS . Leaders of the Iraq Study Group have called on President Bush to implement all their recommendations about changing U.S. policy in Iraq . NNS IN DT NNP NNP NNP VBP VBN IN NNP NNP TO VB DT PRP$ NNS IN VBG NNP NN IN NNP . The group 's co-chairman , former Congressman Lee Hamilton , told U.S. lawmakers Thursday that the proposals must be taken as a whole in order to be effective . DT NN POS NN , JJ NNP NNP NNP , VBD NNP NNS NNP IN DT NNS MD VB VBN IN DT NN IN NN TO VB JJ . The bipartisan panel issued the report Wednesday , saying the situation in Iraq is grave and deteriorating . DT JJ NN VBD DT NN NNP , VBG DT NN IN NNP VBZ JJ CC JJ . It called for enhanced diplomacy and the withdrawal of most U.S. combat troops in Iraq by early 2008 . PRP VBD IN JJ NN CC DT NN IN JJS NNP NN NNS IN NNP IN RB CD . President Bush has said he will consider the report , as well as separate studies by other government agencies before making a decision . NNP NNP VBZ VBN PRP MD VB DT NN , RB RB IN JJ NNS IN JJ NN NNS IN VBG DT NN . Speaking to lawmakers Thursday , the group 's other co-chairman , former Secretary of State James Baker , called on both political parties and the American people to come together to support the proposals . VBG TO NNS NNP , DT NN POS JJ NN , JJ NNP IN NNP NNP NNP , VBD IN DT JJ NNS CC DT JJ NNS TO VB RB TO VB DT NNS . Salma Hayek gave birth to a baby girl , Valentina Paloma Pinault , on September 21 . NNP NNP VBD NN TO DT NN NN , NNP NNP NNP , IN NNP CD . ' Mother and child are doing well , ' said publicist Carl Ross in a statement . `` NNP CC NN VBP VBG RB , `` VBD NN NNP NNP IN DT NN . No further details are released . DT JJ NNS VBP VBN . It is the first child for the 41-year-old actress , who is engaged to French businessman Francois-Henri Pinault . PRP VBZ DT JJ NN IN DT JJ NN , WP VBZ VBN TO JJ NN NNP NNP . Hayek , who has appeared in more than thirty films , is currently enjoying success as an executive producer of the hit U.S. TV series Ugly Betty . NNP , WP VBZ VBN IN JJR IN CD NNS , VBZ RB VBG NN IN DT NN NN IN DT VBN NNP NN NN RB NNP . She is also chief executive of Ventanazul , a production company she formed with Metro-Goldwyn-Mayer , Inc. PRP VBZ RB JJ NN IN NNP , DT NN NN PRP VBD IN NNP , NNP Pinault , 45 , is the chief executive officer for luxury goods company PPR SA , which owns such high end labels as Gucci , Yves Saint Laurent , Balenciaga , and Puma . NNP , CD , VBZ DT JJ NN NN IN NN NNS NN NNP NNP , WDT VBZ JJ JJ NN NNS IN NNP , NNP NNP NNP , NNP , CC NNP . He has two children from a previous marriage which ended in divorce in 2004 . PRP VBZ CD NNS IN DT JJ NN WDT VBD IN NN IN CD . Israeli Prime Minister Ariel Sharon says he will try to form a governing coalition with the opposition Labor Party . JJ NNP NNP NNP NNP VBZ PRP MD VB TO VB DT NN NN IN DT NN NNP NNP . Mr. Sharon was speaking a day after dismissing his main coalition partner , the Shinui Party , over its opposition to the 2005 state budget . NNP NNP VBD VBG DT NN IN VBG PRP$ JJ NN NN , DT NNP NNP , IN PRP$ NN TO DT CD NN NN . The move left Mr. Sharon in control of only 40 of the 120 seats in parliament . DT NN VBD NNP NNP IN NN IN RB CD IN DT CD NNS IN NN . Mr. Sharon said he intends to press ahead with plans to withdraw from the Gaza Strip next year , a plan that could run into trouble if he is forced to call early national elections . NNP NNP VBD PRP VBZ TO VB RB IN NNS TO VB IN DT NNP NNP JJ NN , DT NN WDT MD VB IN NN IN PRP VBZ VBN TO VB JJ JJ NNS . He also said Palestinian militant Marwan Barghouti will remain in jail despite his plans to run in the Palestinian Authority presidential election on January 9 . PRP RB VBD JJ NN NNP NNP MD VB IN NN IN PRP$ NNS TO VB IN DT JJ NNP JJ NN IN NNP CD . Liberia 's government has announced that electricity will be restored to parts of the capital , Monrovia , by the end of July . NNP POS NN VBZ VBN IN NN MD VB VBN TO NNS IN DT NN , NNP , IN DT NN IN NNP . The director of the Liberia Electricity Corporation , Harry Yuan , told VOA that his company will turn on the lights July 26 . DT NN IN DT NNP NNP NNP , NNP NNP , VBD NNP IN PRP$ NN MD VB IN DT NNS NNP CD . The day marks Liberia 's 159th anniversary of independence . DT NN VBZ NNP POS JJ NN IN NN . The public utility has not operated since the civil war broke out in the west African country 14 years ago . DT JJ NN VBZ RB VBN IN DT JJ NN VBD RP IN DT JJ JJ NN CD NNS RB . Yuan says Britain has supplied two generators to help power the system , and Ghana provided electric poles . NNP VBZ NNP VBZ VBN CD NNS TO VB NN DT NN , CC NNP VBD JJ NNS . He said two sections of the capital , either the Paynesville or Congotown neighborhoods and areas near the John F. Kennedy Hospital , will be the first to receive electricity . PRP VBD CD NNS IN DT NN , CC DT NNP CC NNP NNS CC NNS IN DT NNP NNP NNP NNP , MD VB DT JJ TO VB NN . Liberia 's new electrical system will be compatible with 220 volt European systems . NNP POS JJ JJ NN MD VB JJ IN CD NN JJ NNS . The country 's previous system was compatible with the 110 volt U.S. system . DT NN POS JJ NN VBD JJ IN DT CD JJ NNP NN . A reformist candidate in Iran 's upcoming presidential race is vowing to reverse current President Mahmoud Ahmadinejad 's policies if elected . DT JJ NN IN NNP POS JJ JJ NN VBZ VBG TO VB JJ NNP NNP NNP POS NNS IN VBN . Moderate cleric Mahdi Karroubi said Tuesday that Mr. Ahmadinejad has pushed Iran into international isolation . JJ NN NNP NNP VBD NNP IN NNP NNP VBZ VBN NNP IN JJ NN . He said he would favor more diplomatic policies that would engage with world powers . PRP VBD PRP MD VB JJR JJ NNS WDT MD VB IN NN NNS . The former parliament speaker said Mr. Ahmadinejad needlessly antagonizes the West by claiming the Holocaust is a myth , calling the president 's comments ' uncalculated ' and ' harmful ' to Iran 's interests . DT JJ NN NN VBD NNP NNP RB VBZ DT NN IN VBG DT NNP VBZ DT NN , VBG DT NN POS NNS `` JJ `` CC `` JJ `` TO NNP POS NNS . Karroubi is one of four candidates running in Iran 's presidential elections on June 12 . NNP VBZ CD IN CD NNS VBG IN NNP POS JJ NNS IN NNP CD . Reformist candidate Mir Hossein Mousavi is considered to be the leading challenger to Mr. Ahmadinejad . JJ NN NNP NNP NNP VBZ VBN TO VB DT VBG NN TO NNP NNP . Turkish authorities say a large explosion in Ankara has killed four people . JJ NNS VBP DT JJ NN IN NNP VBZ VBN CD NNS . Ankara 's mayor , Melih Gokcek , says the blast wounded more than 50 others in a busy shopping area of the capital city . NNP POS NN , NNP NNP , VBZ DT NN VBD JJR IN CD NNS IN DT JJ NN NN IN DT NN NN . Police say they believe a bomb caused the explosion . NNS VBP PRP VBP DT NN VBD DT NN . In 1993 , 14 imprisoned Buddhist nuns secretly recorded protest songs and smuggled the tape out of Drapchi Prison in Tibet . IN CD , CD VBD NNP NNS RB VBN NN NNS CC VBD DT NN IN IN NNP NNP IN NNP . When word of the recording got out , the nuns say Chinese authorities added five to nine years to their sentences . WRB NN IN DT NN VBD RP , DT NNS VBP JJ NNS VBD CD TO CD NNS TO PRP$ NNS . Seven nuns eventually were released , but remain in Tibet . CD NNS RB VBD VBN , CC VBP IN NNP . One died in custody and six others now live in exile . CD VBD IN NN CC CD NNS RB VBP IN NN . Four are currently visiting London to help raise awareness of the Tibetan struggle for independence and religious freedom . CD VBP RB VBG NNP TO VB VB NN IN DT JJ NN IN NN CC JJ NN . Catherine Drew has more . NNP NNP VBZ RBR . U.S. Embassy officials in Ankara say two U.S. warplanes accidentally violated Turkish airspace last week near the Iraq border . NNP NNP NNS IN NNP VBP CD NNP NNS RB VBD JJ NN JJ NN IN DT NNP NN . U.S. and Turkish officials said they are investigating the incident . NNP CC JJ NNS VBD PRP VBP VBG DT NN . The Turkish military said on its Web site that two F-16s briefly crossed into Turkish airspace on May 24 . DT JJ NN VBD IN PRP$ NNP NN IN CD NNS RB VBD IN JJ NN IN NNP CD . Officials said the incursion lasted about four minutes . NNS VBD DT NN VBD IN CD NNS . The incursion happened in an area of southeast Turkey near where thousands of Turkish troops are reported to be gathering . DT NN VBD IN DT NN IN NN NNP IN WRB NNS IN JJ NNS VBP VBN TO VB VBG . The airspace violation comes as speculation grows over whether Turkish troops will launch a cross-border operation against Kurdish militants in Iraq . DT NN NN VBZ IN NN VBZ IN IN JJ NNS MD VB DT JJ NN IN NNP NNS IN NNP . Last week , Turkish Foreign Minister Abdullah Gul said no plans were underway for such a raid . JJ NN , JJ JJ NN NNP NNP VBD DT NNS VBD JJ IN PDT DT NN . Mexico City 's former mayor has officially registered as a candidate in next year 's presidential election . NNP NNP POS JJ NN VBZ RB VBN IN DT NN IN JJ NN POS JJ NN . Andres Manuel Lopez Obrador signed up as a candidate for the Democratic Revolution Party 's nomination Saturday , making him the first person to register with the party . NNP NNP NNP NNP VBD RP IN DT NN IN DT JJ NNP NNP POS NN NNP , VBG PRP DT JJ NN TO VB IN DT NN . Mr. Lopez Obrador addressed hundreds of supporters outside party offices , just one day after he stepped down as the capital city 's mayor . NNP NNP NNP VBD NNS IN NNS IN NN NNS , RB CD NN IN PRP VBD RP IN DT NN NN POS NN . The popular 51-year-old leads public opinion polls ahead of the 2006 presidential race . DT JJ JJ NNS JJ NN NNS RB IN DT CD JJ NN . President Vicente Fox is not eligible to run for re-election because Mexican law allows just one six-year term . NNP NNP NNP VBZ RB JJ TO VB IN NN IN JJ NN VBZ RB CD JJ NN . Costa Rican elections officials have formally declared Nobel Peace laureate Oscar Arias the country 's president-elect . JJ JJ NNS NNS VBP RB VBN NNP NNP NN NNP NNP DT NN POS NN . Tuesday 's announcement came more than a month after the election . NNP POS NN VBD JJR IN DT NN IN DT NN . Arias won the original vote by a very narrow margin , and a dispute over the results forced a manual recount . NNP VBD DT JJ NN IN DT RB JJ NN , CC DT NN IN DT NNS VBD DT JJ NN . After weeks of feuding , Arias ' main rival - Otton Solis of the Citizens ' Action Party - conceded defeat on Friday . IN NNS IN NN , NNP POS JJ JJ : NNP NNP IN DT NNPS POS NNP NNP : VBD NN IN NNP . Mr. Arias supports free trade with the United States . NNP NNP VBZ JJ NN IN DT NNP NNPS . Costa Rica , however , is the only country within the Central American Free Trade Agreement , or CAFTA , that has not yet ratified the agreement . NNP NNP , RB , VBZ DT JJ NN IN DT NNP NNP NNP NNP NNP , CC NNP , WDT VBZ RB RB VBN DT NN . CAFTA also comprises El Salvador , Guatemala , Honduras , Nicaragua and the Dominican Republic . NNP RB VBZ NNP NNP , NNP , NNP , NNP CC DT NNP NNP . The International Court of Justice has dismissed a case filed by Serbia and Montenegro that accused eight NATO countries of genocide for the 1999 airstrike campaign against Yugoslavia . DT NNP NNP IN NNP VBZ VBN DT NN VBN IN NNP CC NNP WDT VBD CD NNP NNS IN NN IN DT CD NN NN IN NNP . The court in the Hague , which is the top legal body of the United Nations , ruled Wednesday it has no jurisdiction in the case . DT NN IN DT NNP , WDT VBZ DT JJ JJ NN IN DT NNP NNPS , VBD NNP PRP VBZ DT NN IN DT NN . It said that at the time of the airstrikes , the jurisdiction of Serbia and Montenegro was not a U.N. member and thus not a party to the court 's statute . PRP VBD IN IN DT NN IN DT NNS , DT NN IN NNP CC NNP VBD RB DT NNP NN CC RB RB DT NN TO DT NN POS NN . The unanimous court decision involved Belgrade 's complaint against Belgium , Britain , Canada , France , Germany , Italy , the Netherlands and Portugal . DT JJ NN NN VBN NNP POS NN IN NNP , NNP , NNP , NNP , NNP , NNP , DT NNP CC NNP . NATO initiated the airstrike campaign in response to the Kosovo crisis , forcing Serbian and Yugoslav troops out of the Serbian province . NNP VBD DT NN NN IN NN TO DT NNP NN , VBG JJ CC JJ NNS IN IN DT JJ NN . The U.S. military said Thursday that four more American military personnel have been killed in Iraq . DT NNP NN VBD NNP IN CD JJR JJ NN NNS VBP VBN VBN IN NNP . Three American soldiers were killed Wednesday night in a roadside bomb blast in Baghdad . CD JJ NNS VBD VBN NNP NN IN DT NN NN NN IN NNP . A U.S. Marine was also killed Wednesday during combat operations in the volatile western city of Ramadi . DT NNP NN VBD RB VBN NNP IN NN NNS IN DT JJ JJ NN IN NNP . The latest casualties came on the same day as the deaths of 14 U.S. Marines and their civilian translator in a bomb blast near the town of Haditha , northwest of Baghdad . DT JJS NNS VBD IN DT JJ NN IN DT NNS IN CD NNP NNPS CC PRP$ JJ NN IN DT NN NN IN DT NN IN NNP , NN IN NNP . In total , 25 American troops have been killed since Monday . IN NN , CD JJ NNS VBP VBN VBN IN NNP . Violence Thursday also claimed at least eight Iraqis in reported attacks across the country . NN NNP RB VBD IN JJS CD NNS IN JJ NNS IN DT NN . Against this bloody backdrop , Iraq 's constitutional committee continued working to meet the August 15 deadline for drafting the country 's permanent constitution . IN DT JJ NN , NNP POS JJ NN VBD VBG TO VB DT NNP CD NN IN VBG DT NN POS JJ NN . Hundreds of Afghans have staged a protest in central Afghanistan denouncing a spate of suicide bombings that many demonstrators are blaming on Pakistan . NNS IN NNS VBP VBN DT NN IN JJ NNP VBG DT NN IN NN NNS WDT JJ NNS VBP VBG IN NNP . Protesters gathered in the city of Ghazni Saturday , 120 kilometers southwest of the capital , Kabul . NNS VBD IN DT NN IN NNP NNP , CD NNS JJS IN DT NN , NNP . At least 13 suicide bombings have struck Afghanistan in the last several months , including last Monday when more than 20 people were killed in a town near the border with Pakistan . IN JJS CD NN NNS VBP VBN NNP IN DT JJ JJ NNS , VBG JJ NNP WRB JJR IN CD NNS VBD VBN IN DT NN IN DT NN IN NNP . Afghan protesters accuse officials in neighboring Pakistan of aiding suspected terrorists behind such bombings . JJ NNS VBP NNS IN VBG NNP IN VBG JJ NNS IN JJ NNS . Afghan President Hamid Karzai has expressed concern over the increase of suicide bombings , saying Afghanistan and the international community are in a joint struggle against terrorism . JJ NNP NNP NNP VBZ VBN NN IN DT NN IN NN NNS , VBG NNP CC DT JJ NN VBP IN DT JJ NN IN NN . He says if Western countries do not fight terrorism in Afghanistan , they will have to deal with it in their own capitals . PRP VBZ IN JJ NNS VBP RB VB NN IN NNP , PRP MD VB TO VB IN PRP IN PRP$ JJ NNS . A European Union adviser says the Palestinian Authority will ask international donors for $ 187 million in aid to support security in the Palestinian territories . DT NNP NNP NN VBZ DT JJ NNP MD VB JJ NNS IN $ CD CD IN NN TO VB NN IN DT JJ NNS . The head of the EU police training mission in Palestinian territories , Colin Smith , says the aid will go towards police training as well as the construction of police stations , prisons , courts and a forensics laboratory . DT NN IN DT NNP NN NN NN IN JJ NNS , NNP NNP , VBZ DT NN MD VB IN NN NN RB RB IN DT NN IN NN NNS , NNS , NNS CC DT NNS NN . Smith says the bulk of the money will come from the more than $ 7 billion already pledged to the Palestinian Authority . NNP VBZ DT NN IN DT NN MD VB IN DT JJR IN $ CD CD RB VBN TO DT JJ NNP . The request will be presented next week at an international security conference in Berlin , Germany . DT NN MD VB VBN JJ NN IN DT JJ NN NN IN NNP , NNP . Cambodia has criticized a report from a top U.N. official that the Southeast Asian country could become a breeding ground for terrorists . NNP VBZ VBN DT NN IN DT JJ NNP NN IN DT JJ JJ NN MD VB DT NN NN IN NNS . The chairman of the U.N. Security Council committee on al-Qaida , Heraldo Munoz , said Cambodia needed to tighten up its defense measures to protect itself from terrorist networks . DT NN IN DT NNP NNP NNP NN IN NNP , NNP NNP , VBD NNP VBD TO VB RP PRP$ NN NNS TO VB PRP IN JJ NNS . He said Phnom Penh lacks the resources to do so . PRP VBD NNP NNP VBZ DT NNS TO VB RB . But Cambodian government officials dismissed the report , saying Phnom Penh is doing what it can to prevent terrorists from using the country as a base . CC JJ NN NNS VBD DT NN , VBG NNP NNP VBZ VBG WP PRP MD TO VB NNS IN VBG DT NN IN DT NN . Cambodia is currently holding an Egyptian and two Thai nationals on suspicion of having links to terror groups . NNP VBZ RB VBG DT JJ CC CD JJ NNS IN NN IN VBG NNS TO NN NNS . A bomb blast late Tuesday in India 's northeastern state of Manipur killed at least 17 people and wounded more than 30 others . DT NN NN JJ NNP IN NNP POS JJ NN IN NNP VBD IN JJS CD NNS CC VBD JJR IN CD NNS . Local police say the bomb was concealed in a motorcycle outside a police training center in the city of Imphal , the state capital . JJ NNS VBP DT NN VBD VBN IN DT NN IN DT NN NN NN IN DT NN IN NNP , DT NN NN . Authorities say several people are in critical condition and the death toll is likely to rise . NNS VBP JJ NNS VBP IN JJ NN CC DT NN NN VBZ JJ TO VB . No one has claimed responsibility for the attack , but there are more than a dozen rebel groups operating in the region . DT NN VBZ VBN NN IN DT NN , CC EX VBP JJR IN DT NN NN NNS VBG IN DT NN . On Sunday , a grenade exploded outside the fortified home of Manipur 's chief minister , Okram Ibobi Singh . IN NNP , DT NN VBD IN DT JJ NN IN NNP POS JJ NN , NNP NNP NNP . No one was hurt . DT NN VBD VBN . Separatist violence in northeastern India has killed some 20,000 people since 1979 . NNP NN IN JJ NNP VBZ VBN DT CD NNS IN CD . Iran 's official media are reporting that a high-ranking Iranian naval commander attended a meeting on regional piracy where U.S. Navy commanders were present . NNP POS JJ NNS VBP VBG IN DT JJ JJ JJ NN VBD DT NN IN JJ NN WRB NNP NNP NNS VBD JJ . The dispatch Thursday in Iran is the first public word that navy officers of both countries were present in Sri Lanka earlier this month in discussions on fighting piracy in the Gulf of Aden . DT NN NNP IN NNP VBZ DT JJ JJ NN IN NN NNS IN DT NNS VBD JJ IN NNP NNP RBR DT NN IN NNS IN VBG NN IN DT NNP IN NNP . The report says representatives of 22 countries , including the U.S. , Britain , France and Russia , attended the meeting . DT NN VBZ NNS IN CD NNS , VBG DT NNP , NNP , NNP CC NNP , VBD DT NN . Iran says the discussions were part of a multi-national celebration of the 60th anniversary of Sri Lanka 's navy . NNP VBZ DT NNS VBD NN IN DT JJ NN IN DT JJ NN IN NNP NNP POS NN . Iran opposes the presence of the U.S. Navy fleet in the Persian Gulf , and the two countries have had no diplomatic ties since 1979 . NNP VBZ DT NN IN DT NNP NNP NN IN DT NNP NNP , CC DT CD NNS VBP VBN DT JJ NNS IN CD . Australia 's cricket team has scored 282-4 - a lead of 213 runs - on a rain-interrupted fourth day of the second test against India in Sydney . NNP POS NN NN VBZ VBN CD IN DT NN IN CD NNS : IN DT JJ JJ NN IN DT JJ NN IN NNP IN NNP . Mike Hussey was on 87 and Andrew Symonds was on 14 at stumps after officials rejected Anil Kumble 's appeal for Symonds to be out lbw . NNP NNP VBD IN CD CC NNP NNPS VBD IN CD IN NNS IN NNS VBD NNP NNP POS NN IN NNP TO VB IN NN . Earlier , Kumble dismissed Matthew Hayden and Michael Clarke on consecutive balls . RB , NNP VBD NNP NNP CC NNP NNP IN JJ NNS . Hayden scored 123 runs in Australia 's second innings before he was caught out . NNP VBD CD NNS IN NNP POS JJ NN IN PRP VBD VBN RP . Clarke was out for no runs . NNP VBD RP IN DT NNS . Australia is hoping to win a record-tying 16th test match in a row after taking the first test of this tour by 337 runs in Melbourne . NNP VBZ VBG TO VB DT JJ JJ NN NN IN DT NN IN VBG DT JJ NN IN DT NN IN CD NNS IN NNP . A suspected suicide bomb attack in Southern Afghanistan has killed at least 17 people and injured more than 40 others . DT JJ NN NN NN IN NNP NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD NNS . Officials say the bomb went off Monday in the middle of a crowded market area in Lashkar Gah , capital of Helmand province . NNS VBP DT NN VBD RP NNP IN DT NN IN DT JJ NN NN IN NNP NNP , NN IN NNP NN . Interior Ministry spokesman Yousef Stanizai blamed the attack on ' enemies of the state , ' a phrase typically used to refer to Taleban insurgents . NNP NNP NN NNP NNP VBD DT NN IN `` NNS IN DT NN , `` DT NN RB VBN TO VB TO NNP NNS . ' This is a terrorist act which has killed defenseless civilians and children , ' he said . `` DT VBZ DT JJ NN WDT VBZ VBN JJ NNS CC NNS , `` PRP VBD . Afghanistan 's insurgents are increasingly borrowing tactics from their counterparts in Iraq . NNP POS NNS VBP RB VBG NNS IN PRP$ NNS IN NNP . This was one of the bloodiest suicide attacks in Afghanistan to date , in what has already been the country 's deadliest year since U.S. forces ousted the Taleban regime in 2001 . DT VBD CD IN DT JJS NN NNS IN NNP TO NN , IN WP VBZ RB VBN DT NN POS JJS NN IN NNP NNS VBD DT NNP NN IN CD . More than two thousand people , mostly militants , have killed since January . JJR IN CD CD NNS , RB NNS , VBP VBN IN NNP . Wrestler Luo Meng has become the second Chinese Olympic hopeful to be banned for life after testing positive for a banned substance . NN NNP NNP VBZ VBN DT JJ JJ JJ NN TO VB VBN IN NN IN VBG JJ IN DT VBN NN . The state-run Xinhua news agency made the announcement Wednesday . DT JJ NNP NN NN VBD DT NN NNP . Luo tested positive for a banned diuretic that can be used to purge by-products of performance-enhancing drugs . NNP VBD JJ IN DT VBN NN WDT MD VB VBN TO VB NNS IN JJ NNS . The wrestler 's coach , Zhang Hua , also received a permanent ban . DT NN POS NN , NNP NNP , RB VBD DT JJ NN . First-time offenders usually receive a two-year ban . JJ NNS RB VBP DT JJ NN . But Chinese officials have cracked down on doping ahead of the Beijing Games next month . CC JJ NNS VBP VBN RP IN VBG RB IN DT NNP NNPS JJ NN . In March , China 's sports ministry said any national athlete who tested positive would be banned for life with their coach . IN NNP , NNP POS NNS NN VBD DT JJ NN WP VBD JJ MD VB VBN IN NN IN PRP$ NN . Luo followed top swimmer Ouyang Kunpeng , whose positive test for a banned steroid was confirmed last week with a lifetime ban . NNP VBD JJ NN NNP NNP , WP$ JJ NN IN DT VBN NN VBD VBN JJ NN IN DT NN NN . The West Indies cricket team has scored 281-4 by the close of play on the first day of its first test match against South Africa at St. George 's Park in Port Elizabeth . DT NNP NNP NN NN VBZ VBN CD IN DT NN IN NN IN DT JJ NN IN PRP$ JJ NN NN IN NNP NNP IN NNP NNP POS NNP IN NNP NNP . Marlon Samuels led the visitors with 94 runs while captain Chris Gayle scored 66 runs on the easy-paced pitch . NNP NNP VBD DT NNS IN CD NNS IN JJ NNP NNP VBD CD NNS IN DT JJ NN . Gayle , the opening batsman , had 13 fours and scored his runs off 49 balls in his first innings since injuring a right leg muscle against Zimbabwe nearly a month ago . NNP , DT NN NN , VBD CD NNS CC VBD PRP$ NNS IN CD NNS IN PRP$ JJ NN IN VBG DT JJ NN NN IN NNP RB DT NN RB . Samuels scored his runs in 267 minutes , facing 195 balls with 12 fours . NNP VBD PRP$ NNS IN CD NNS , VBG CD NNS IN CD NNS . Bad light forced play to close six overs early . JJ NN VBD NN TO VB CD NNS RB . The two sides will play three tests and five one-day internationals during the Caribbean squad 's tour . DT CD NNS MD VB CD NNS CC CD JJ NNS IN DT NNP NN POS NN . The second test starts in Cape Town January second . DT JJ NN VBZ IN NNP NNP NNP NN . The third test begins January 10th in Durban . DT JJ NN VBZ NNP CD IN NNP . Iraqi authorites say at least 10 people were killed in a suicide car bomb attack on a police academy south of Baghdad . JJ NNS VBP IN JJS CD NNS VBD VBN IN DT NN NN NN NN IN DT NN NN NN IN NNP . The attack in the town of Hilla Wednesday occured as Iraq 's interim Prime Minister Iyad Allawi insisted that the country 's January 30 elections would take place as scheduled . DT NN IN DT NN IN NNP NNP VBD IN NNP POS JJ NNP NNP NNP NNP VBD IN DT NN POS NNP CD NNS MD VB NN IN VBN . Mr. Allawi told reporters in Baghdad that ' violence , terrorists and the outlaws will not be allowed to stop the political process and destroy the country . ' NNP NNP VBD NNS IN NNP WDT `` NN , NNS CC DT NNS MD RB VB VBN TO VB DT JJ NN CC VB DT NN . `` Hours earlier , a car bomb explosion in Baghdad 's Amiriyah neighborhood killed two civilians and wounded four others . NNS RB , DT NN NN NN IN NNP POS NNP NN VBD CD NNS CC VBD CD NNS . Tuesday , insurgents shot dead Ali al-Haidari , the Baghdad provincial governor , and also carried out a suicide truck bombing at a security checkpoint that killed 10 people . NNP , NNS VBD JJ NNP NNP , DT NNP JJ NN , CC RB VBD RP DT NN NN VBG IN DT NN NN WDT VBD CD NNS . Two major U.S. airlines have won approval to merge . CD JJ NNP NNS VBP VBN NN TO VB . United Airlines is to purchase Continental Airlines to create the world 's largest air carrier . NNP NNPS VBZ TO VB NNP NNPS TO VB DT NN POS JJS NN NN . In order for the merger to overcome anti-trust concerns , rival Southwest Airlines had to be given take-off and landing rights at the international airport in Newark , New Jersey - just outside New York City . IN NN IN DT NN TO VB JJ NNS , JJ NNP NNPS VBD TO VB VBN NN CC NN NNS IN DT JJ NN IN NNP , NNP NNP : RB IN NNP NNP NNP . The airport is a key Continental Airlines hub . DT NN VBZ DT JJ NNP NNPS NN . Shareholders are scheduled to meet September 17 to approve the deal . NNS VBP VBN TO VB NNP CD TO VB DT NN . This is the first major airline merger in the United States since 2008 when Delta Airlines acquired Northwest . DT VBZ DT JJ JJ NN NN IN DT NNP NNPS IN CD WRB NNP NNP VBD NNP . Government approval followed an antitrust review by the U.S. Justice Department . NN NN VBD DT JJ NN IN DT NNP NNP NNP . The merger is expected to be completed by October 1 . DT NN VBZ VBN TO VB VBN IN NNP CD . World Health Organization officials are meeting in Geneva to consider the possibility of a global human bird flu pandemic as the deadly H5N1 strain continues to spread rapidly in birds . NNP NNP NNP NNS VBP VBG IN NNP TO VB DT NN IN DT JJ JJ NN NN NN IN DT JJ NNP NN VBZ TO VB RB IN NNS . Top influenza official Margaret Chan said the outbreak in poultry is historically unprecedented . NN NN NN NNP NNP VBD DT NN IN NN VBZ RB JJ . She said the deadly virus presents a greater challenge to the world than any other emerging infectious disease . PRP VBD DT JJ NN VBZ DT JJR NN TO DT NN IN DT JJ VBG JJ NN . The meeting was called to plan a response in case the bird flu virus mutates into a widespread human flu virus . DT NN VBD VBN TO VB DT NN IN NN DT NN NN NN VBZ IN DT JJ JJ NN NN . So far , the virus has killed 94 people , mostly in Asia . RB RB , DT NN VBZ VBN CD NNS , RB IN NNP . It has infected birds in 30 countries , and it has appeared in cats in Austria and Germany . PRP VBZ VBN NNS IN CD NNS , CC PRP VBZ VBN IN NNS IN NNP CC NNP . French officials confirmed a new case in a dead swan . JJ NNS VBD DT JJ NN IN DT JJ NN . Russian news agencies reported Monday mass deaths of birds in the south in Stavropol Territory , and Serbia confirmed it in dead swans in several areas . JJ NN NNS VBD NNP NN NNS IN NNS IN DT NN IN NNP NNP , CC NNP VBD PRP IN JJ NNS IN JJ NNS . Palestinian militant Marwan Barghouti , imprisoned in Israel , has reversed himself and decided to seek the presidency of the Palestinian Authority . JJ NN NNP NNP , VBN IN NNP , VBZ VBN PRP CC VBD TO VB DT NN IN DT JJ NNP . Late last week , Barghouti , who is serving five life sentences for planning suicide attacks on Israeli civilians , said he would not run . RB JJ NN , NNP , WP VBZ VBG CD NN NNS IN VBG NN NNS IN JJ NNS , VBD PRP MD RB VB . But Wednesday his wife filed registration papers for the January 9 poll on behalf of her husband , a Fatah movement leader . CC NNP PRP$ NN VBD NN NNS IN DT NNP CD NN IN NN IN PRP$ NN , DT NNP NN NN . Analysts have warned that Barghouti 's candidacy could split the Fatah organization and undermine its chosen candidate , interim leader Mahmoud Abbas . NNS VBP VBN IN NNP POS NN MD VB DT NNP NN CC VB PRP$ JJ NN , JJ NN NNP NNP . Mr. Abbas began his campaign for the presidency today , hours before the Barghouti announcement . NNP NNP VBD PRP$ NN IN DT NN NN , NNS IN DT NNP NN . Earlier Wednesday , the radical Palestinian group Hamas said it will boycott the polls . RBR NNP , DT JJ JJ NN NNP VBD PRP MD VB DT NNS . The group said it will not nominate a presidential candidate because it rejects the 1993 treaty with Israel that created the Palestinian Authority . DT NN VBD PRP MD RB VB DT JJ NN IN PRP VBZ DT CD NN IN NNP WDT VBD DT JJ NNP . International Olympic Committee president Jacques Rogge has rejected accusations that British Prime Minister Tony Blair broke the rules in his attempts to help London win the bid to host the 2012 Summer Games . NNP NNP NNP NN NNP NNP VBZ VBN NNS IN NNP NNP NNP NNP NNP VBD DT NNS IN PRP$ NNS TO VB NNP VB DT NN TO VB DT CD NNPS NNPS . Paris mayor Bertrand Delanoe said Blair and London bid chief Sebastian Coe ' crossed over the line ' by criticizing other bid candidates . NNP NN NNP NNP VBD NNP CC NNP NN NN NNP NNP `` VBN IN DT NN `` IN VBG JJ NN NNS . Paris officials were also reportedly upset that the British prime minister met privately with IOC members in his hotel suite in Singapore in an effort to persuade them to vote for London . NNP NNS VBD RB RB VBN IN DT JJ JJ NN VBD RB IN NNP NNS IN PRP$ NN NN IN NNP IN DT NN TO VB PRP TO VB IN NNP . IOC president Jacques Rogge has already said none of the cities broke rules designed to stamp out corruption in the bidding process . NNP NN NNP NNP VBZ RB VBN NN IN DT NNS VBD NNS VBN TO VB RP NN IN DT NN NN . In his words , ' There is nothing wrong with having a conversation with a major politician from a bid city . ' IN PRP$ NNS , `` EX VBZ DT JJ IN VBG DT NN IN DT JJ NN IN DT NN NN . `` Rogge also made it clear that he sees no reason to move the Games from London in the wake of terrorist bombings there . NNP RB VBD PRP JJ IN PRP VBZ DT NN TO VB DT NNPS IN NNP IN DT NN IN JJ NNS RB . Exact details for the lavish opening ceremonies at the Beijing Olympics this August are still secret , but some information on what audiences can expect to see has been released . JJ NNS IN DT JJ NN NNS IN DT NNP NNPS DT NNP VBP RB JJ , CC DT NN IN WP NNS MD VB TO VB VBZ VBN VBN . Chinese state media reported Wednesday that the ceremony , designed by famous film director Zhang Yimou , will include a huge fireworks display , colorful ethnic dancing , dragons , pandas and a cast of thousands highlighting 5,000 years of Chinese history . JJ NN NNS VBD NNP IN DT NN , VBN IN JJ NN NN NNP NNP , MD VB DT JJ NNS NN , JJ JJ NN , NNS , NNS CC DT NN IN NNS VBG CD NNS IN JJ NN . The extravagant three-and-one-half hour opening ceremony will represent China 's culture from ancient to modern times under the theme of ' Civilization and Harmony . ' DT JJ JJ NN VBG NN MD VB NNP POS NN IN JJ TO JJ NNS IN DT NN IN `` NNP CC NNP . `` Organizers say the process for lighting the Olympic flame has been set . NNS VBP DT NN IN VBG DT NNP NN VBZ VBN VBN . But the name of the torchbearer who will light the Olympic cauldron at the end of the ceremony has not yet been announced . CC DT NN IN DT NN WP MD VB DT NNP NN IN DT NN IN DT NN VBZ RB RB VBN VBN . A deadly explosion has hit a convoy escorting Somalia 's prime minister in the capital of Mogadishu , but he escaped unhurt and later appeared in public . DT JJ NN VBZ VBN DT NN VBG NNP POS JJ NN IN DT NN IN NNP , CC PRP VBD JJ CC RB VBD IN NN . At least five people were killed Sunday when the explosion ripped through a vehicle carrying bodyguards , just moments after the prime minister had passed by . IN JJS CD NNS VBD VBN NNP WRB DT NN VBD IN DT NN VBG NNS , RB NNS IN DT JJ NN VBD VBN IN . News reports said the blast might have been from a land mine , remote-controlled bomb or rocket-launched grenade . NNP NNS VBD DT NN MD VB VBN IN DT NN NN , JJ NN CC JJ NN . Prime Minister Ali Mohamed Gedi was visiting the capital , an opposition stronghold , from his base in the town of Jowhar . NNP NNP NNP NNP NNP VBD VBG DT NN , DT NN NN , IN PRP$ NN IN DT NN IN NNP . He later took part in a planned meeting . PRP RB VBD NN IN DT JJ NN . Mr. Gedi escaped unharmed from another deadly blast in Mogadishu when he visited in May . NNP NNP VBD JJ IN DT JJ NN IN NNP WRB PRP VBD IN NNP . Somalia has had no effective central government since 1991 and has been ruled by warring factions . NNP VBZ VBN DT JJ JJ NN IN CD CC VBZ VBN VBN IN VBG NNS . The Organization of American States has agreed to oversee Venezuela 's upcoming Congressional elections on December 4 . DT NNP IN NNP NNP VBZ VBN TO VB NNP POS JJ JJ NNS IN NNP CD . Ruben Perina , the OAS mission chief in Venezuela , said election authorities have agreed to give his organization free access to all necessary information and to the technology that will be used for voting . NNP NNP , DT NNP NN NN IN NNP , VBD NN NNS VBP VBN TO VB PRP$ NN JJ NN TO DT JJ NN CC TO DT NN WDT MD VB VBN IN NN . Several opposition groups had called for outside observers , arguing that the Venezuelan electoral commission is biased in favor of President Hugo Chavez 's ruling party . JJ NN NNS VBD VBN IN JJ NNS , VBG IN DT JJ JJ NN VBZ VBN IN NN IN NNP NNP NNP POS VBG NN . Several other opposition parties have called for a boycott of the vote . JJ JJ NN NNS VBP VBN IN DT NN IN DT NN . Mr. Chavez 's party hopes to expand its slim majority in the Congress to two-thirds of the seats . NNP NNP POS NN VBZ TO VB PRP$ JJ NN IN DT NNP TO NNS IN DT NNS . Such an increase would make it easier to pass constitutional reforms . JJ DT NN MD VB PRP JJR TO VB JJ NNS . European Union peacekeepers in Bosnia-Herzegovina have raided the homes of relatives of most wanted Balkan war crimes suspect Radovan Karadzic . NNP NNP NNS IN NNP VBP VBN DT NNS IN NNS IN JJS JJ JJ NN NNS VBP NNP NNP . Soldiers and police simultaneously searched the homes of Karadzic 's wife , son and daughter in the former Bosnian Serb stronghold of Pale , 16 kilometers southeast of Sarajevo . NNS CC NNS RB VBD DT NNS IN NNP POS NN , NN CC NN IN DT JJ JJ JJ NN IN NNP , CD NNS NN IN NNP . EU troops conducted similar raids in Pale on Monday . NNP NNS VBD JJ NNS IN NNP IN NNP . Officials say the U.N. war crimes tribunal in The Hague ordered the searches to find clues about Karadzic 's whereabouts . NNS VBP DT NNP NN NNS JJ IN DT NNP VBD DT NNS TO VB NNS IN NNP POS NNS . The former Bosnian Serb political leader has been in hiding for more than 12 years since the Hague-based court indicted him . DT JJ JJ JJ JJ NN VBZ VBN IN VBG IN JJR IN CD NNS IN DT JJ NN VBD PRP . Karadzic is charged with war crimes , genocide , crimes against humanity and severe breaches of the Geneva Conventions during the 1990s ethnic conflict in Bosnia-Herzegovina . NNP VBZ VBN IN NN NNS , NN , NNS IN NN CC JJ NNS IN DT NNP NNS IN DT NNS JJ NN IN NNP . Karadzic 's military commander , General Ratko Mladic - the second most wanted Bosnian war crimes suspect - also remains in hiding . NNP POS JJ NN , NNP NNP NNP IN DT JJ RBS JJ JJ NN NNS VBP : RB VBZ IN NN . U.S. and Iraqi troops have carried out airstrikes in the Euphrates River Valley , killing 37 insurgents . NNP CC JJ NNS VBP VBN RP NNS IN DT NNP NNP NNP , VBG CD NNS . The U.S. military says coalition air strikes hit five targets in a small western town near the Syrian border . DT NNP NN VBZ NN NN NNS VBD CD NNS IN DT JJ JJ NN IN DT JJ NN . Officials say 25 insurgents were captured . NNS VBP CD NNS VBD VBN . Monday 's airstrikes were part of Operation Steel Curtain , which began last week to stem the flow of insurgents and supplies from across the border , ahead of next month 's parliamentary elections . NNP POS NNS VBD NN IN NNP NNP NNP , WDT VBD JJ NN TO VB DT NN IN NNS CC NNS IN IN DT NN , RB IN JJ NN POS JJ NNS . In central Baghdad , authorities say two South African security guards were killed in a car bomb explosion near the heavily fortified Green Zone , where the headquarters of the Iraqi government , U.S. forces and most foreign missions are located . IN JJ NNP , NNS VBP CD JJ JJ NN NNS VBD VBN IN DT NN NN NN IN DT RB VBN NNP NNP , WRB DT NN IN DT JJ NN , NNP NNS CC JJS JJ NNS VBP VBN . Three others were wounded . CD NNS VBD VBN . Separately in the western town of Ramadi , police say a roadside bomb exploded shortly after a US convoy passed , killing five people and wounding at least 20 others . RB IN DT JJ NN IN NNP , NNS VBP DT NN NN VBD RB IN DT NNP NN VBD , VBG CD NNS CC VBG IN JJS CD NNS . Iraqi officials say a double suicide bombing south of Baghdad has killed at least 27 people and wounded more than 100 others . JJ NNS VBP DT JJ NN VBG NN IN NNP VBZ VBN IN JJS CD NNS CC VBD JJR IN CD NNS . Al-Qaida in Iraq has claimed responsibility for the attack , which occurred Monday in the town of Hillah . NNP IN NNP VBZ VBN NN IN DT NN , WDT VBD NNP IN DT NN IN NNP . Officials say two suicide bombers blew themselves up in a crowd of former police commandos who were protesting a decision to disband their unit . NNS VBP CD NN NNS VBD PRP RP IN DT NN IN JJ NNS NNS WP VBD VBG DT NN TO VB PRP$ NN . Earlier , the terrorist group said it has launched an offensive to counter a joint U.S.-Iraqi operation aimed at rooting out insurgents from Baghdad . RB , DT JJ NN VBD PRP VBZ VBN DT NN TO VB DT JJ JJ NN VBN IN VBG RP NNS IN NNP . Iraqi officials have said 40,000 Iraqi troops will take part in the operation , dubbed Operation Lightning . JJ NNS VBP VBN CD JJ NNS MD VB NN IN DT NN , VBD NNP NNP . The troops began setting up checkpoints and searching houses around Baghdad on Sunday . DT NNS VBD VBG RP NNS CC VBG NNS IN NNP IN NNP . Meanwhile , U.S. forces have released the head of Iraq 's top Sunni political party after a brief detention today . RB , NNP NNS VBP VBN DT NN IN NNP POS JJ NNP JJ NN IN DT JJ NN NN . The U.S.-led coalition says Mohsen Abdul-Hamid was detained by mistake . DT JJ NN VBZ NNP NNP VBD VBN IN NN . Syrian President Bashar al-Assad says he expects to withdraw his troops from Lebanon in a matter of months . JJ NNP NNP NNP VBZ PRP VBZ TO VB PRP$ NNS IN NNP IN DT NN IN NNS . In a Time magazine interview published Tuesday , Mr. Assad did not give a timetable for pulling out the 14,000 Syrian troops , but said it should be ' very soon . ' IN DT NNP NN NN VBN NNP , NNP NNP VBD RB VB DT NN IN VBG RP DT CD JJ NNS , CC VBD PRP MD VB `` RB RB . `` Meanwhile , in Beirut , thousands of protesters vowed to keep up demonstrations until Syria gets its troops out of Lebanon . RB , IN NNP , NNS IN NNS VBD TO VB RP NNS IN NNP VBZ PRP$ NNS IN IN NNP . Earlier this week , Lebanon 's pro-Syrian government resigned as the protesters packed Beirut streets over the assassination of former Prime Minister Rafik Hariri . RBR DT NN , NNP POS JJ NN VBD IN DT NNS VBD NNP NNS IN DT NN IN JJ NNP NNP NNP NNP . The killing has increased pressure on Syria to end its long involvement in its neighbor 's affairs . DT NN VBZ VBN NN IN NNP TO VB PRP$ JJ NN IN PRP$ NN POS NNS . U.S. Secretary of State Condoleezza Rice , in London for a Palestinian conference , issued a joint statement with French Foreign Minister Michel Barnier Tuesday , calling for an immediate Syrian withdrawal from Lebanon . NNP NNP IN NNP NNP NNP , IN NNP IN DT JJ NN , VBD DT JJ NN IN NNP NNP NNP NNP NNP NNP , VBG IN DT JJ JJ NN IN NNP . Spain - which first brought tobacco back from America more than 500 years ago - has started off 2006 with new restrictions on smoking in public places . NNP : WDT RB VBD NN RB IN NNP JJR IN CD NNS RB : VBZ VBN RP CD IN JJ NNS IN NN IN JJ NNS . Starting New Year 's Day , smoking is banned in Spain in offices , bus and subway stations , and other public places such as stores . VBG NNP NNP POS NN , NN VBZ VBN IN NNP IN NNS , NN CC NN NNS , CC JJ JJ NNS JJ IN NNS . Bars and restaurants with more than 1,100 square meters must have separate non-smoking areas . NNS CC NNS IN JJR IN CD JJ NNS MD VB JJ JJ NNS . Spain has Europe 's second highest rate of smoking after Greece . NNP VBZ NNP POS JJ JJS NN IN NN IN NNP . Government health officials say cigarettes kill 50,000 Spaniards a year , Despite complaints from some smokers and business owners , one poll says more than 70 percent of Spaniards approve of the new restrictions . NNP NN NNS VBP NNS VBP CD NNS DT NN , IN NNS IN DT NNS CC NN NNS , CD NN VBZ JJR IN CD NN IN NNS VBP IN DT JJ NNS . New anti-smoking laws also took effect New Year 's Day in Belgium . NNP JJ NNS RB VBD NN NNP NNP POS NN IN NNP . Officials in Haiti say several days of heavy rains have killed at least 11 people , with nearly half the deaths occurring in the northern Artibonite area . NNS IN NNP VBP JJ NNS IN JJ NNS VBP VBN IN JJS CD NNS , IN RB PDT DT NNS VBG IN DT JJ NNP NN . Authorities said Thursday that hundreds of homes have been flooded or destroyed by the torrential rains pounding Haiti ahead of the Atlantic hurricane season , which starts June 1 . NNS VBD NNP IN NNS IN NNS VBP VBN VBN CC VBN IN DT JJ NNS VBG NNP RB IN DT NNP NN NN , WDT VBZ NNP CD . Last year , four storms devastated Haiti , killing hundreds of people and wiping out 15 percent of the country 's economic output . JJ NN , CD NNS VBN NNP , VBG NNS IN NNS CC VBG RP CD NN IN DT NN POS JJ NN . Haiti is the Western Hemisphere 's poorest country . NNP VBZ DT NNP NNP POS JJS NN . It is vulnerable to floods in part because of massive deforestation and poorly constructed houses . PRP VBZ JJ TO NNS IN NN IN IN JJ NN CC RB VBN NNS . In April , Haiti received $ 324 million in new aid commitments from international donors . IN NNP , NNP VBD $ CD CD IN JJ NN NNS IN JJ NNS . Earlier this week , United Nations Secretary-General Ban Ki-moon named former U.S. President Bill Clinton as his special envoy to Haiti . RBR DT NN , NNP NNP NNP NNP NNP VBD JJ NNP NNP NNP NNP IN PRP$ JJ NN TO NNP . Both men visited Haiti in March to refocus international attention on restoring economic security to the Caribbean country . DT NNS VBD NNP IN NNP TO VB JJ NN IN VBG JJ NN TO DT NNP NN . Kyrgyzstan 's interim government says it has formally asked Belarus to extradite ousted President Kurmanbek Bakiyev . NNP POS JJ NN VBZ PRP VBZ RB VBN NNP TO VB JJ NNP NNP NNP . The deputy leader of the interim government , Azimbek Beknazarov , said Friday that the request has been sent to Belarus , where Mr. Bakiyev took refuge last month . DT JJ NN IN DT JJ NN , NNP NNP , VBD NNP IN DT NN VBZ VBN VBN TO NNP , WRB NNP NNP VBD NN JJ NN . Mr. Bakiyev fled Kyrgyzstan after he was toppled on April 7 during massive protests that killed 85 people . NNP NNP VBD NNP IN PRP VBD VBN IN NNP CD IN JJ NNS WDT VBD CD NNS . The opposition took power after the president was ousted amid allegations of corruption and nepotism . DT NN VBD NN IN DT NN VBD VBN IN NNS IN NN CC NN . The interim government has charged Mr. Bakiyev with mass killing , accusing him of ordering security forces to open fire on anti-government protesters during the uprising . DT JJ NN VBZ VBN NNP NNP IN JJ NN , VBG PRP IN VBG NN NNS TO VB NN IN JJ NNS IN DT NN . On Thursday , the international police agency Interpol said it has issued an arrest warrant for one of Mr. Bakiyev 's sons , Maksim , on fraud charges . IN NNP , DT JJ NN NN NNP VBD PRP VBZ VBN DT NN NN IN CD IN NNP NNP POS NNS , NNP , IN NN NNS . The Kyrgyz interim government this week offered cash rewards for information leading to fugitive relatives and colleagues of the deposed leader , including Maksim Bakiyev . DT JJ JJ NN DT NN VBD NN NNS IN NN VBG TO JJ NNS CC NNS IN DT JJ NN , VBG NNP NNP . A Tony Award-winning musical ' Spring Awakening ' explores the stage in adolescence when the discovery of sexuality brings sudden changes . DT NNP JJ NN `` VBG VBG `` VBZ DT NN IN NN WRB DT NN IN NN VBZ JJ NNS . Based on a 19th century German play , the musical is set to a rock and roll score and examines the tortured inner lives of a group of adolescents . VBN IN DT JJ NN JJ NN , DT NN VBZ VBN TO DT NN CC NN NN CC VBZ DT JJ JJ NNS IN DT NN IN NNS . VOA 's Zhang Zheng and Joseph Mok have this report from Broadway , narrated by Elaine Lu . NNP POS NNP NNP CC NNP NNP VBP DT NN IN NNP , VBN IN NNP NNP . Venezuela has placed advertisements in U.S. newspapers highlighting its offer of low-cost fuel to America 's poor . NNP VBZ VBN NNS IN NNP NNS VBG PRP$ NN IN JJ NN TO NNP POS NN . Full-page ads in the New York Times and the Washington Post say that Venezuela 's state-owned oil company is giving the discounted fuel because the United States always helps others in times of disaster . JJ NNS IN DT NNP NNP NNP CC DT NNP NNP VBP IN NNP POS JJ NN NN VBZ VBG DT JJ NN IN DT NNP NNPS RB VBZ NNS IN NNS IN NN . Noting the high cost of fuel , Venezuela says it wants to reciprocate with a humanitarian gesture . VBG DT JJ NN IN NN , NNP VBZ PRP VBZ TO VB IN DT JJ NN . The ad copy says the program ' is n't about politics . ' DT NN NN VBZ DT NN `` VBZ RB IN NNS . `` The low-cost oil comes as Venezuelan President Hugo Chavez is at odds with the White House over Iraq , Cuba and regional trade policies . DT JJ NN VBZ IN JJ NNP NNP NNP VBZ IN NNS IN DT NNP NNP IN NNP , NNP CC JJ NN NNS . The low-cost fuel program , aimed at low-income families , hospitals and schools in Massachusetts , is expected to expand to New York state and other cold-weather areas . DT JJ NN NN , VBN IN JJ NNS , NNS CC NNS IN NNP , VBZ VBN TO VB TO NNP NNP NN CC JJ JJ NNS . The International Monetary Fund says the U.S. economy is poised for a gradual , if sluggish , recovery . DT NNP NNP NNP VBZ DT NNP NN VBZ VBN IN DT JJ , IN JJ , NN . The IMF issued its revised forecast Friday , predicting flat economic growth for the U.S. this year , and two percent growth in 2009 . DT NNP VBD PRP$ VBN NN NNP , VBG JJ JJ NN IN DT NNP DT NN , CC CD NN NN IN CD . In April , the Fund 's economists had predicted the U.S. economy would contract slightly and warned the U.S. credit crisis was threatening to cause a global recession . IN NNP , DT NNP POS NNS VBD VBN DT NNP NN MD VB RB CC VBD DT NNP NN NN VBD VBG TO VB DT JJ NN . But Friday 's report said the U.S. slowdown had been ' less than feared . ' CC NNP POS NN VBD DT NNP NN VBD VBN `` JJR IN VBN . `` The IMF praised the Federal Reserve 's handling of the financial crisis and urged the U.S. central bank to keep interest rates low . DT NNP VBD DT NNP NNP POS NN IN DT JJ NN CC VBD DT NNP JJ NN TO VB NN NNS JJ . However , the IMF also said the Federal Reserve may need to act quickly and raise interest rates to counter the threat of inflation . RB , DT NNP RB VBD DT NNP NNP MD VB TO VB RB CC VB NN NNS TO VB DT NN IN NN . An IMF official , First Deputy Managing Director John Lipsky , also said the U.S. may face further fallout from rising fuel and commodity prices . DT NNP NN , NNP NNP NNP NNP NNP NNP , RB VBD DT NNP MD VB JJ NN IN VBG NN CC NN NNS . Haiti 's top appeals court has ruled that a businessman with dual U.S. and Haitian citizenship should be allowed to run for president . NNP POS JJ NNS NN VBZ VBN IN DT NN IN JJ NNP CC JJ NN MD VB VBN TO VB IN NN . In a ruling published Thursday , the court rejected a petition from Haiti 's Provisional Election Board , which argued against allowing businessman Dumarsais Simeus to run for president because he held U.S. citizenship . IN DT NN VBN NNP , DT NN VBD DT NN IN NNP POS NNP NNP NNP , WDT VBD IN VBG NN NNP NNP TO VB IN NN IN PRP VBD NNP NN . The board was appealing a court decision in October to allow Mr. Simeus to run . DT NN VBD VBG DT NN NN IN NNP TO VB NNP NNP TO VB . Last week , Prime Minister Gerard Latortue told VOA that after the elections , he would support a constitutional amendment allowing Haitians with dual citizenship to vote and run for all offices . JJ NN , NNP NNP NNP NNP VBD NNP IN IN DT NNS , PRP MD VB DT JJ NN VBG NNS IN JJ NN TO VB CC VB IN DT NNS . The first presidential and legislative elections in Haiti since former President Jean-Bertrand Aristide was ousted in a revolt early last year are scheduled for January 8 with possible runoffs one week later . DT JJ JJ CC JJ NNS IN NNP IN JJ NNP NNP NNP VBD VBN IN DT NN RB JJ NN VBP VBN IN NNP CD IN JJ NNS CD NN RB . Afghan officials say suspected Taleban militants have killed five Afghan security men in separate attacks in the south of the country . JJ NNS VBP VBN NNP NNS VBP VBN CD JJ NN NNS IN JJ NNS IN DT NN IN DT NN . In one incident , a roadside bomb killed three Afghan troops Thursday in Ghazni province . IN CD NN , DT NN NN VBD CD JJ NNS NNP IN NNP NN . In the other attack , officials say Taleban rebels shot dead two Afghan policemen in Kandahar province late Wednesday . IN DT JJ NN , NNS VBP NNP NNS VBD JJ CD JJ NNS IN NNP NN JJ NNP . Another roadside bomb blast wounded four coalition troops Wednesday in the southern province of Zabul . DT NN NN NN VBD CD NN NNS NNP IN DT JJ NN IN NNP . A coalition official says the four soldiers were not seriously wounded and were likely to be released from a hospital . DT NN NN VBZ DT CD NNS VBD RB RB VBN CC VBD JJ TO VB VBN IN DT NN . But , Afghan officials say they prevented a bomb attack Thursday in southern province of Zabul , where police caught a donkey laden with explosives . CC , JJ NNS VBP PRP VBD DT NN NN NNP IN JJ NN IN NNP , WRB NNS VBD DT NN VBN IN NNS . They say a man was detained after he walked the donkey into the town of Qalat from the surrounding countryside . PRP VBP DT NN VBD VBN IN PRP VBD DT NN IN DT NN IN NNP IN DT VBG NN . Nine workers are still reported missing in a flooded railroad tunnel in central China . CD NNS VBP RB VBN VBG IN DT VBN NN NN IN JJ NNP . The official Xinhua news agency said 52 people were at work building the tunnel early Sunday when water began pouring in . DT JJ NNP NN NN VBD CD NNS VBD IN NN VBG DT NN JJ NNP WRB NN VBD VBG IN . 43 of the workers were rescued . CD IN DT NNS VBD VBN . Officials are using pumps and boats to try to locate the missing workers . NNS VBP VBG NNS CC NNS TO VB TO VB DT JJ NNS . The 14-kilometer-long tunnel is part of a rail line linking Yichang City in Hubei Province with Wanzhou in southwest China . DT JJ NN VBZ NN IN DT NN NN VBG NNP NNP IN NNP NNP IN NNP IN JJ NNP . Heavy rains in recent weeks have triggered flooding and mudslides across central China . JJ NNS IN JJ NNS VBP VBN NN CC NNS IN JJ NNP . Xinhua says 78 people died and 18 are missing after three days of downpours set off flash floods last week in Henan province . NNP VBZ CD NNS VBD CC CD VBP VBG IN CD NNS IN NNS VBN RP NN NNS JJ NN IN NNP NN . Floods in China have killed more than 700 people this year . NNS IN NNP VBP VBN RBR IN CD NNS DT NN . Millions of people face shortages of drinking water in other parts of the country because of high temperatures and record droughts . NNS IN NNS VBP NNS IN NN NN IN JJ NNS IN DT NN IN IN JJ NNS CC NN NNS . Georgian officials say an explosion killed the mayor of a small town and one other person Saturday near the breakaway region of Abkhazia . JJ NNS VBP DT NN VBD DT NN IN DT JJ NN CC CD JJ NN NNP IN DT JJ NN IN NNP . The Interior Ministry said it suspects the explosives were detonated by remote control , and blames the attack on Abkhaz separatists . DT NNP NNP VBD PRP VBZ DT NNS VBD VBN IN JJ NN , CC VBZ DT NN IN NNP NNS . The blast hit as officials in the town of Mujhava inspected a house that was damaged in an earlier grenade attack . DT NN VBD IN NNS IN DT NN IN NNP VBD DT NN WDT VBD VBN IN DT JJR NN NN . Tensions have been high in Abkhazia and in another breakaway region , South Ossetia . NNS VBP VBN JJ IN NNP CC IN DT NN NN , NNP NNP . Russian forces swept into Georgia in August after Georgian troops tried to regain control of South Ossetia . JJ NNS VBD IN NNP IN NNP IN JJ NNS VBD TO VB NN IN NNP NNP . Russian soldiers withdrew from most of Georgia earlier this month , but remain in the breakaway regions . JJ NNS VBD IN JJS IN NNP RBR DT NN , CC VBP IN DT NN NNS . The United States ' director of national intelligence , John Negroponte , has created a new position to lead U.S. intelligence efforts regarding Cuba and Venezuela . DT NNP NNPS POS NN IN JJ NN , NNP NNP , VBZ VBN DT JJ NN TO VB NNP NN NNS VBG NNP CC NNP . Negroponte 's office announced the move on Friday . NNP POS NN VBD DT NN IN NNP . The United States also has special missions for intelligence on Iran and North Korea . DT NNP NNP RB VBZ JJ NNS IN NN IN NNP CC NNP NNP . The statement said intelligence officer Patrick Maher will serve as Cuba-Venezuela mission manager until a permanent manager is named . DT NN VBD NN NN NNP NNP MD VB IN NNP NN NN IN DT JJ NN VBZ VBN . The manager will be responsible for overseeing data collection and analysis , filling intelligence gaps , and putting intelligence strategies into place . DT NN MD VB JJ IN VBG NNS NN CC NN , VBG NN NNS , CC VBG NN NNS IN NN . U.S. focus on Cuba policy has increased since last month , when leader Fidel Castro announced he was temporarily handing power to his brother and chosen successor while undergoing health care . NNP NN IN NNP NN VBZ VBN IN JJ NN , WRB NN NNP NNP VBD PRP VBD RB VBG NN TO PRP$ NN CC VBN NN IN VBG NN NN . Venezuela 's president Hugo Chavez is an outspoken critic of U.S. leadership . NNP POS NN NNP NNP VBZ DT JJ NN IN NNP NN . The U.S. military says Iraqi authorities have foiled a suicide chemical bomb attack in the western city of Ramadi . DT NNP NN VBZ JJ NNS VBP VBN DT NN NN NN NN IN DT JJ NN IN NNP . A statement issued Sunday says Iraqi police detained a suicide bomber Friday , before he could detonate two tons of explosives aboard his truck that was also loaded with nearly 20,000 liters of chlorine . DT NN VBN NNP VBZ JJ NN VBD DT NN NN NNP , IN PRP MD VB CD NNS IN NNS IN PRP$ NN WDT VBD RB VBN IN RB CD NNS IN NN . U.S. officials say the truck was stopped near a police station about 150 meters from a water treatment plant in the predominantly Sunni city . NNP NNS VBP DT NN VBD VBN IN DT NN NN IN CD NNS IN DT NN NN NN IN DT RB JJ NN . Insurgents have carried out seven chlorine bomb attacks in Iraq this year . NNS VBP VBN RP CD NN NN NNS IN NNP DT NN . Meanwhile , Iraqi police said Sunday gunmen attacked a Sunni mosque south of Baghdad . RB , JJ NNS VBD NNP NNS VBD DT NNP NN NN IN NNP . Officials say at least two people were wounded . NNS VBP IN JJS CD NNS VBD VBN . Mosques are frequent targets of attack in Iraq were sectarian violence between Sunni and Shi'ite muslims has become commonplace . NNS VBP JJ NNS IN NN IN NNP VBD JJ NN IN NNP CC NNP NNS VBZ VBN NN . On Saturday , a series of suicide bombings in Iraq killed at least 47 people , many of them Iraqi policemen . IN NNP , DT NN IN NN NNS IN NNP VBD IN JJS CD NNS , NN IN PRP JJ NNS . Israel 's opposition Labor Party is due to meet later Saturday to decide whether to join the ruling Likud Party in a coalition government . NNP POS NN NNP NNP VBZ JJ TO VB RB NNP TO VB IN TO VB DT NN NNP NNP IN DT NN NN . Israeli Prime Minister Ariel Sharon invited the Labor Party to join his government Friday , after his Likud party approved a move to reshape his ruling coalition . JJ NNP NNP NNP NNP VBD DT NNP NNP TO VB PRP$ NN NNP , IN PRP$ NNP NN VBD DT NN TO VB PRP$ NN NN . Two religious parties were also asked to join the government . CD JJ NNS VBD RB VBN TO VB DT NN . Negotiations among the parties are expected to begin early next week . NNS IN DT NNS VBP VBN TO VB RB JJ NN . Political observers say broadening the government will ease pressure on Mr. Sharon to call new elections , and bolster his plans to evacuate all 21 Jewish settlements in Gaza and four in the West Bank by next year . JJ NNS VBP VBG DT NN MD VB NN IN NNP NNP TO VB JJ NNS , CC VB PRP$ NNS TO VB DT CD JJ NNS IN NNP CC CD IN DT NNP NNP IN JJ NN . Indian authorities Tuesday seized more than $ 2 million in cash from a Nigerian diplomat on his way out of the country . JJ NNS NNP VBD JJR IN $ CD CD IN NN IN DT JJ NN IN PRP$ NN IN IN DT NN . Investigators in New Delhi released the Nigerian diplomat , G.A . NNS IN NNP NNP VBD DT JJ NN , NNP . Ojedokun , Tuesday . NNP , NNP . He was detained at an airport in the capital on Monday after security screeners found $ 2.3 million in cash in his baggage . PRP VBD VBN IN DT NN IN DT NN IN NNP IN NN NNS VBD $ CD CD IN NN IN PRP$ NN . Authorities who interrogated the diplomat refused to allow him to board his flight to Lagos , Nigeria . NNS WP VBD DT NN VBD TO VB PRP TO VB PRP$ NN TO NNP , NNP . They say he failed to adequately explain why he was traveling with so much cash . PRP VBP PRP VBD TO RB VB WRB PRP VBD VBG IN RB JJ NN . Officials released the man Tuesday after he demanded diplomatic immunity , but they refused to return the cash . NNS VBD DT NN NNP IN PRP VBD JJ NN , CC PRP VBD TO VB DT NN . They add they have informed Nigerian authorities about the incident . PRP VBP PRP VBP VBN JJ NNS IN DT NN . The diplomat has been stationed in New Delhi since early this year . DT NN VBZ VBN VBN IN NNP NNP IN RB DT NN . There was no immediate comment from the Nigerian government . EX VBD DT JJ NN IN DT JJ NN . Sri Lankan officials say a bomb blast killed six soldiers and wounded several others Saturday in the northern Jaffna peninsula . NNP NNP NNS VBP DT NN NN VBD CD NNS CC VBD JJ NNS NNP IN DT JJ NNP NN . The improvised device exploded as soldiers cleaned up the area after a failed attempt by Tamil Tiger rebels to capture the peninsula . DT JJ NN VBD IN NNS VBD RP DT NN IN DT VBN NN IN NNP NNP NNS TO VB DT NN . In the capital of Colombo , police say they found a major weapons cache and arrested at least 17 people , including two women . IN DT NN IN NNP , NNS VBP PRP VBD DT JJ NNS NN CC VBN IN JJS CD NNS , VBG CD NNS . Authorities say the suspects were planning a major attack . NNS VBP DT NNS VBD VBG DT JJ NN . Police say they seized hand grenades and mines in the raid . NNS VBP PRP VBD NN NNS CC NNS IN DT NN . Meanwhile , Tamil Tigers released a policeman Saturday , who had been held for nearly a year after he strayed into rebel territory while pursuing a pedophile . RB , NNP NNP VBD DT NN NNP , WP VBD VBN VBN IN RB DT NN IN PRP VBD IN JJ NN IN VBG DT NN . The release followed a request from Ulf Henricsson , the outgoing head of the team monitoring the 2002 ceasefire between the government and rebels . DT NN VBD DT NN IN NNP NNP , DT JJ NN IN DT NN VBG DT CD NN IN DT NN CC NNS . European Union lawmakers say they hope to question two U.S. senators and the CIA director about reports of the agency 's use of secret prisons in Europe to house accused terrorists . NNP NNP NNS VBP PRP VBP TO VB CD NNP NNS CC DT NNP NN IN NNS IN DT NN POS NN IN JJ NNS IN NNP TO VB VBN NNS . The head of a European Parliament committee , Italian lawmaker Giovanni Claudio Fava said the testimony would be part of a probe into the alleged prisons in eastern Europe . DT NN IN DT JJ NNP NN , JJ NN NNP NNP NNP VBD DT NN MD VB NN IN DT NN IN DT JJ NNS IN JJ NNP . He said European lawmakes will ask Senators John Kerry and John McCain , as well as CIA director Porter Goss , and his predecessor , George Tenet , to speak to the panel . PRP VBD JJ NNS MD VB NNP NNP NNP CC NNP NNP , RB RB IN NNP NN NNP NNP , CC PRP$ NN , NNP NNP , TO VB TO DT NN . Officials say the interviews would be voluntary , because the panel has no legal authority to subpoena witnesses . NNS VBP DT NNS MD VB JJ , IN DT NN VBZ DT JJ NN TO VB NNS . Testimony would also be sought from human rights groups that may have information about the reports of prisons used for terrorism suspects . NN MD RB VB VBN IN JJ NNS NNS WDT MD VB NN IN DT NNS IN NNS VBN IN NN NNS . European lawmakers have raised concerns that the alleged action led to human rights violations . JJ NNS VBP VBN NNS IN DT JJ NN VBD TO JJ NNS NNS . A committee of the U.S. congress has voted to create a new federal agency to regulate the financial industry . DT NN IN DT NNP NN VBZ VBN TO VB DT JJ JJ NN TO VB DT JJ NN . The House Financial Services Committee voted mostly along party lines ( 39-29 ) Thursday to establish the Consumer Financial Protection Agency . DT NNP NNP NNPS NNP VBD RB IN NN NNS LRB CD RRB NNP TO VB DT NNP NNP NNP NNP . This is a step in congressional efforts to enact President Barack Obama 's plan to improve regulation in the wake of the economic crisis . DT VBZ DT NN IN JJ NNS TO VB NNP NNP NNP POS NN TO VB NN IN DT NN IN DT JJ NN . Supporters say the agency would protect consumers from lenders who mislead customers , banks that charge large fees for overdrafts , or raise interest rates in unreasonable ways . NNS VBP DT NN MD VB NNS IN NNS WP VBD NNS , NNS WDT VBP JJ NNS IN NNS , CC VB NN NNS IN JJ NNS . Opponents say the agency would be unwarranted government intrusion in business . NNS VBP DT NN MD VB JJ NN NN IN NN . The next step for the bill would be a vote before the full House . DT JJ NN IN DT NN MD VB DT NN IN DT JJ NNP . The president of the International Committee of the Red Cross says his organization is in intense dialogue with U.S. authorities to gain access to all detainees held under the struggle against terrorism . DT NN IN DT NNP NNP IN DT NNP NNP VBZ PRP$ NN VBZ IN JJ NN IN NNP NNS TO VB NN TO DT NNS VBN IN DT NN IN NN . Jakob Kallenberger told reporters in Geneva the Red Cross has visited many detainees at the U.S. naval base at Guantanamo Bay in Cuba , in Afghanistan and in Iraq . NNP NNP VBD NNS IN NNP DT NNP NNP VBZ VBN JJ NNS IN DT NNP JJ NN IN NNP NNP IN NNP , IN NNP CC IN NNP . He says his group has been pressing for two years to gain access to detainees in undisclosed locations . PRP VBZ PRP$ NN VBZ VBN VBG IN CD NNS TO VB NN TO NNS IN JJ NNS . U.S. State Department legal advisor John Bellinger acknowledged to reporters Thursday that the United States has not granted the Red Cross access to all detainees . NNP NNP NNP JJ NN NNP NNP VBD TO NNS NNP IN DT NNP NNPS VBZ RB VBN DT NNP NNP NN TO DT NNS . He did not elaborate . PRP VBD RB VB . U.S news reports last month said the United States has held detainees at secret locations in Europe . NNP NN NNS JJ NN VBD DT NNP NNPS VBZ VBN NNS IN JJ NNS IN NNP . A spokesman for the group Human Rights Watch told a Warsaw newspaper Poland was the main center for detaining such suspects . DT NN IN DT NN NNP NNP NNP VBD DT NNP NN NNP VBD DT JJ NN IN VBG JJ NNS . Colombian police have deactivated two explosive devices found on a highway in northern Bogota . JJ NNS VBP VBN CD JJ NNS VBN IN DT NN IN JJ NNP . Authorities discovered the devices Saturday , following a tip from someone who noticed a suspicious bag and suitcase lying by a street light . NNS VBD DT NNS NNP , VBG DT NN IN DT WP VBD DT JJ NN CC NN VBG IN DT NN NN . They say the devices each contained three kilograms of ammonium nitrate and fuel oil , known as anfo . PRP VBP DT NNS DT VBN CD NNS IN NN NN CC NN NN , VBN IN NN . Police secured the area in order to deactivate the devices , triggering traffic backups . NNS VBD DT NN IN NN TO VB DT NNS , VBG NN NNS . An advisor to chief United Nations war crimes prosecutor Carla del Ponte says she will criticize Serbia 's lack of cooperation with the Hague war crimes tribunal when she reports to the Security Council Thursday . DT NN TO JJ NNP NNP NN NNS NN NNP NNP NNP VBZ PRP MD VB NNP POS NN IN NN IN DT NNP NN NNS JJ WRB PRP VBZ TO DT NNP NNP NNP . Anton Nikiforov made his comments in The Hague as Ms. del Ponte prepared to deliver her assessment to the council . NNP NNP VBD PRP$ NNS IN DT NNP IN NNP NNP NNP VBD TO VB PRP$ NN TO DT NN . Anxious to display cooperation , authorities in Serbia and Montenegro last week gave the prosecutors a secret file on top fugitive war crimes suspect General Ratko Mladic , including a number of pages they earlier had withheld . JJ TO VB NN , NNS IN NNP CC NNP JJ NN VBD DT NNS DT JJ NN IN JJ JJ NN NNS VBP NNP NNP NNP , VBG DT NN IN NNS PRP RB VBD VBN . But Mr. Nikiforov said the file still lacked such important information as the general 's promotion record during the mid-1990s in the midst of the conflict in Bosnia-Herzegovina . CC NNP NNP VBD DT NN RB VBD JJ JJ NN IN DT NN POS NN NN IN DT NNS IN DT NN IN DT NN IN NNP . The Hague tribunal indicted the general in 1995 on charges involving his role in attacks on civilians during the Bosnian conflict . DT NNP NN VBD DT JJ IN CD IN NNS VBG PRP$ NN IN NNS IN NNS IN DT JJ NN . A joint force of U.N. and Congolese troops has attacked Ugandan rebels in the eastern Democratic Republic of Congo . DT JJ NN IN NNP CC JJ NNS VBZ VBN JJ NNS IN DT JJ JJ NNP IN NNP . U.N. sources say the attacks in North Kivu province Sunday were against the Allied Democratic Forces , a Ugandan rebel group that maintains bases in the DRC . NNP NNS VBP DT NNS IN NNP NNP NN NNP VBD IN DT NNP JJ NNS , DT JJ NN NN WDT VBZ NNS IN DT NNP . This is the second U.N.-Congolese offensive against militias in the region since the DRC 's constitutional referendum a week ago . DT VBZ DT JJ JJ NN IN NNS IN DT NN IN DT NNP POS JJ NN DT NN RB . The troops hope to assert government control in areas dominated for years by foreign-backed rebels or local militias . DT NNS VBP TO VB NN NN IN NNS VBN IN NNS IN JJ NNS CC JJ NNS . The U.N. peacekeeping mission in Congo says U.N. and Congolese troops captured the town of Nioka from ethnic Lendu rebels on Saturday . DT NNP NN NN IN NNP VBZ NNP CC JJ NNS VBD DT NN IN NNP IN JJ NNP NNS IN NNP . Partial returns from last week 's vote show DRC voters approving the new constitution 83 to 17 percent . JJ NNS IN JJ NN POS NN VBP NNP NNS VBG DT JJ NN CD TO CD NN . The charter is designed to pave the way for national elections and help end decades of chaos and war . DT NN VBZ VBN TO VB DT NN IN JJ NNS CC VB VB NNS IN NN CC NN . The South African government has increased its offer to more than one million public service workers who are threatening to strike . DT JJ JJ NN VBZ VBN PRP$ NN TO JJR IN CD CD JJ NN NNS WP VBP VBG TO VB . Following negotiations with union representatives Thursday , the government increased its monthly housing allowance offer to $ 95 from about $ 87 . VBG NNS IN NN NNS NNP , DT NN VBD PRP$ JJ NN NN NN TO $ CD IN IN $ CD . But the government did not change its pay raise offer of 7 percent . CC DT NN VBD RB VB PRP$ NN NN NN IN CD NN . The unions are demanding a pay raise of 8.6 percent , more than twice the rate of inflation , in addition to a higher housing allowance . DT NNS VBP VBG DT NN NN IN CD NN , JJR IN RB DT NN IN NN , IN NN TO DT JJR NN NN . On Tuesday , civil service workers staged a one-day strike and held marches in Cape Town and Pretoria . IN NNP , JJ NN NNS VBD DT JJ NN CC VBD NNS IN NNP NNP CC NNP . Officials say the strike affected schools and public offices , although essential services such as police and hospitals ran on reduced staffing . NNS VBP DT NN VBD NNS CC JJ NNS , IN JJ NNS JJ IN NNS CC NNS VBD IN JJ NN . Three years ago , public workers staged a crippling strike that shut down many schools and forced some hospitals to operate with minimal staff for several weeks . CD NNS RB , JJ NNS VBD DT JJ NN WDT VBD RP JJ NNS CC VBD DT NNS TO VB IN JJ NN IN JJ NNS . European football 's governing body UEFA has barred Israel from hosting international matches until further notice because of the violence in the region . JJ NN POS NN NN NNP VBZ VBN NNP IN VBG JJ NNS IN JJ NN IN IN DT NN IN DT NN . In a letter sent to the Israel Football Association Monday , UEFA said all games scheduled to be played in Israel ' shall be played outside of Israeli territory . ' IN DT NN VBN TO DT NNP NNP NNP NNP , NNP VBD DT NNS VBN TO VB VBN IN NNP `` MD VB VBN IN IN JJ NN . `` The ban applies to international and club games . DT NN VBZ TO JJ CC NN NNS . That means Israel 's Maccabi Haifa will need to find an alternate venue for its August 23 second leg of the Champions League third qualifying-round series against Liverpool of England . DT VBZ NNP POS NNP NNP MD VB TO VB DT JJ NN IN PRP$ NNP CD JJ NN IN DT NNP NNP JJ JJ NN IN NNP IN NNP . Also affected is the second-leg UEFA Cup game between Israeli club Betar Jerusalem and Dinamo Bucharest of Romania , which was scheduled to be held in Jerusalem on August 24 . RB VBN VBZ DT JJ NNP NNP NN IN JJ NN NNP NNP CC NNP NNP IN NNP , WDT VBD VBN TO VB VBN IN NNP IN NNP CD . The decision could also impact Israel 's home qualifying matches for the Euro 2008 tournament . DT NN MD RB VB NNP POS NN VBG NNS IN DT NNP CD NN . Canadian Prime Minister Stephen Harper has arrived in Kandahar , Afghanistan , for an unannounced visit to Canadian troops stationed there . JJ NNP NNP NNP NNP VBZ VBN IN NNP , NNP , IN DT JJ NN TO JJ NNS VBN RB . Mr. Harper arrived at Kandahar air base Sunday in a Canadian military aircraft . NNP NNP VBD IN NNP NN NN NNP IN DT JJ JJ NN . Journalists traveling with him had to agree not to break news of the trip until his visit was underway . NNS VBG IN PRP VBD TO VB RB TO VB NN IN DT NN IN PRP$ NN VBD JJ . He said the trip is a way to show the Canadian troops their government and their country is behind them . PRP VBD DT NN VBZ DT NN TO VB DT JJ NNS PRP$ NN CC PRP$ NN VBZ IN PRP . Mr. Harper said Canada 's mission in Afghanistan is its most significant international undertaking in decades . NNP NNP VBD NNP POS NN IN NNP VBZ PRP$ RBS JJ JJ NN IN NNS . He is expected to spend Monday visiting troops on the base and eating with them in the dining facilities . PRP VBZ VBN TO VB NNP VBG NNS IN DT NN CC NN IN PRP IN DT NN NNS . Canada has about 2,300 members of its military in Afghanistan . NNP VBZ IN CD NNS IN PRP$ JJ IN NNP . Ten Canadian soldiers and a diplomat have died there since early 2002 . CD JJ NNS CC DT NN VBP VBN RB IN JJ CD . French Prime Minister Dominique de Villepin has postponed a planned visit to Canada , after rioting that began outside Paris last week spread through the city 's largely Muslim-inhabited suburbs . JJ NNP NNP NNP NNP NNP VBZ VBN DT JJ NN TO NNP , IN VBG IN VBD IN NNP JJ NN VBD IN DT NN POS RB JJ NNS . Mr. de Villepin told lawmakers Wednesday the government is fully mobilized and that he is indefinitely postponing his planned trip . NNP NNP NNP VBD NNS NNP DT NN VBZ RB VBN CC IN PRP VBZ RB VBG PRP$ JJ NN . Interior Minister Nikolas Sarkozy also canceled scheduled visits to Afghanistan and Pakistan next week . NNP NNP NNP NNP RB VBD VBN NNS TO NNP CC NNP JJ NN . Earlier , President Jacques Chirac called for calm and measures to bring the riots under control . RB , NNP NNP NNP VBD IN NN CC NNS TO VB DT NNS IN NN . French police today said they detained 34 people in the sixth consecutive night of rioting . JJ NN NN VBD PRP VBD CD NNS IN DT JJ JJ NN IN NN . Rioters torched cars and clashed with police who fired rubber bullets to disperse the crowds . NNS VBD NNS CC VBN IN NNS WP VBD NN NNS TO VB DT NNS . The violence began Thursday in the Parisian suburb of Clichy-sous-Bois , after two teenagers said to be of North African descent were electrocuted while hiding from police inside a power station . DT NN VBD NNP IN DT JJ NN IN NNP , IN CD NNS VBN TO VB IN JJ JJ NN VBD VBN IN VBG IN NN IN DT NN NN . A top member of the Obama administration begins a visit to the Middle East Sunday to discuss global security . DT JJ NN IN DT NNP NN VBZ DT NN TO DT NNP NNP NNP TO VB JJ NN . U.S. Department of Homeland Security Secretary Janet Napolitano will travel to Saudi Arabia to meet with top security officials about counter-terrorism , counter-radicalization and infrastructure protection . NNP NNP IN NNP NNP NNP NNP NNP MD VB TO NNP NNP TO VB IN JJ NN NNS IN NN , NN CC NN NN . She will also talk to businesswomen about the importance of education and public service . PRP MD RB VB TO NNS IN DT NN IN NN CC JJ NN . Napolitano will travel on Monday to the United Arab Emirates . NNP MD VB IN NNP TO DT NNP NNP NNPS . There she will discuss ways to bolster global aviation security with her Middle Eastern counterparts and officials of the International Civil Aviation Organization . EX PRP MD VB NNS TO VB JJ NN NN IN PRP$ NN NNP NNS CC NNS IN DT NNP NNP NNP NNP . U.S. intelligence analysts say the voice on an audiotape purportedly from al-Qaida leader Osama bin Laden is indeed that of the terrorist leader . NNP NN NNS VBP DT NN IN DT NN RB IN NNP NN NNP NNP NNP VBZ RB IN IN DT JJ NN . The tape - first broadcast Thursday by Arab broadcaster Al-Jazeera - says there are plans for a new attack in the United States , but offers a ' long-term ' truce if American forces pull out of Iraq and Afghanistan . DT NN IN JJ NN NNP IN NNP NN NNP : VBZ EX VBP NNS IN DT JJ NN IN DT NNP NNPS , CC VBZ DT `` JJ `` NN IN JJ NNS VBP IN IN NNP CC NNP . The White House flatly rejected the offer , with a spokesman saying the United States does not negotiate with terrorists . DT NNP NNP RB VBD DT NN , IN DT NN VBG DT NNP NNPS VBZ RB VB IN NNS . The message says heightened security in the United States has not prevented attacks . DT NN VBZ JJ NN IN DT NNP NNPS VBZ RB VBN NNS . It says the delay is simply due to preparations for new operations . PRP VBZ DT NN VBZ RB JJ TO NNS IN JJ NNS . There has been no specific information on when the tape was recorded , but the voice makes reference to sinking public opinion polls for President Bush . EX VBZ VBN DT JJ NN IN WRB DT NN VBD VBN , CC DT NN VBZ NN TO VBG JJ NN NNS IN NNP NNP . This is Osama bin Laden 's first message since December , 2004 . DT VBZ NNP NNP NNP POS JJ NN IN NNP , CD . Ten people believed to be North Koreans seeking asylum have entered a South Korean school in China . CD NNS VBN TO VB NNP NNS VBG NN VBP VBN DT JJ JJ NN IN NNP . South Korean officials say the people entered the school Tuesday in the city of Qingdao , along China 's eastern coast . JJ JJ NNS VBP DT NNS VBD DT NN NNP IN DT NN IN NNP , IN NNP POS JJ NN . Earlier this month , South Korean diplomats took custody of another group of people believed to be North Koreans who entered the same school asking to be sent to South Korea . RBR DT NN , JJ JJ NNS VBD NN IN DT NN IN NNS VBN TO VB JJ NNS WP VBD DT JJ NN VBG TO VB VBN TO NNP NNP . No decision on their status has been announced . DT NN IN PRP$ NN VBZ VBN VBN . Beijing has an agreement with Pyongyang to return asylum seekers , but has allowed many to travel to South Korea through third countries . NNP VBZ DT NN IN NNP TO VB NN NNS , CC VBZ VBN JJ TO VB TO NNP NNP IN JJ NNS . Hundreds of North Koreans have broken into embassies and foreign schools in China in recent years seeking asylum . NNS IN NNP NNS VBP VBN IN NNS CC JJ NNS IN NNP IN JJ NNS VBG NN . The prime minister of Nepal plans to give the U.S. president a Mount Everest rock as a symbol of concern about climate change . DT JJ NN IN NNP VBZ TO VB DT NNP NN DT NNP NNP NN IN DT NN IN NN IN NN NN . Prime Minister Madhav Kumar Nepal is scheduled to attend a United Nations General Assembly meeting in New York during the coming week . NNP NNP NNP NNP NNP VBZ VBN TO VB DT NNP NNP NNP NNP NN IN NNP NNP IN DT JJ NN . He plans to present President Barack Obama with a stone from the summit of Mount Everest . PRP VBZ TO VB NNP NNP NNP IN DT NN IN DT NN IN NNP NNP . Everest is the world 's tallest mountain , at nearly 8,900 meters . NNP VBZ DT NN POS JJS NN , IN RB CD NNS . The World Wildlife Fund says Mr. Nepal will bring the memento to Mr. Obama as a ' symbol of the melting Himalayas . ' DT NNP NNP NNP VBZ NNP NNP MD VB DT NN TO NNP NNP IN DT `` NN IN DT VBG NNP . `` Back in May , a Nepalese Sherpa climbed Everest for a record 19th time . RB IN NNP , DT JJ NN VBD NNP IN DT NN JJ NN . At the top , he unfurled a banner that read : ' Stop Climate Change . ' IN DT NN , PRP VBD DT NN WDT VBD : `` NNP NNP NNP . `` The U.S. Secretary of State says World AIDS Day Thursday , is an opportunity for people to rededicate themselves to action in the fight against the disease . DT NNP NNP IN NNP VBZ NNP NNP NNP NNP , VBZ DT NN IN NNS TO VB PRP TO NN IN DT NN IN DT NN . In a videotaped message discussing this year 's theme of ' Keeping the Promise , ' Condoleezza Rice said that America is leading the battle against AIDS in more than 100 countries . IN DT VBN NN VBG DT NN POS NN IN `` VBG DT NNP , `` NNP NNP VBD IN NNP VBZ VBG DT NN IN NNP IN JJR IN CD NNS . Ms. Rice noted that President Bush 's Emergency Plan for AIDS Relief is the largest international initiative ever undertaken by a single nation to combat a disease . NNP NNP VBD IN NNP NNP POS NN NN IN NNP NNP VBZ DT JJS JJ NN RB VBN IN DT JJ NN TO VB DT NN . That plan , announced nearly three years ago , is a five-year , $ 15 billion effort focusing on the 15 hardest-hit nations in Africa , Asia and the Caribbean . DT NN , VBN RB CD NNS RB , VBZ DT JJ , $ CD CD NN VBG IN DT CD JJ NNS IN NNP , NNP CC DT NNP . World AIDS Day is being commemorated in cities and towns across America with special musical and literary events , moments of silence and fundraisers . NNP NNP NNP VBZ VBG VBN IN NNS CC NNS IN NNP IN JJ JJ CC JJ NNS , NNS IN NN CC NNS . President Bush spoke Thursday morning in Washington to commemorate World AIDS Day . NNP NNP VBD NNP NN IN NNP TO VB NNP NNP NNP . Cuban state television says Venezuelan President Hugo Chavez has made a surprise visit to Cuba to meet with his friend and ally , Cuban leader Fidel Castro . JJ NN NN VBZ JJ NNP NNP NNP VBZ VBN DT NN NN TO NNP TO VB IN PRP$ NN CC NN , JJ NN NNP NNP . The media report Tuesday said Mr. Chavez also is to meet with acting Cuban President Raul Castro , who has been head of the Cuban government since Fidel Castro temporarily transferred power to him last July after undergoing intestinal surgery . DT NNS NN NNP VBD NNP NNP RB VBZ TO VB IN VBG JJ NNP NNP NNP , WP VBZ VBN NN IN DT JJ NN IN NNP NNP RB VBD NN TO PRP JJ NNP IN VBG JJ NN . Last week , Bolivian President Evo Morales was on the island for meetings with Fidel and Raul Castro . JJ NN , JJ NNP NNP NNP VBD IN DT NN IN NNS IN NNP CC NNP NNP . He said Fidel appears to have recovered well from the surgery . PRP VBD NNP VBZ TO VB VBN RB IN DT NN . Cuban television recently broadcast Fidel Castro 's first television interview since the surgery . JJ NN RB VBD NNP NNP POS JJ NN NN IN DT NN . In the pre-recorded piece , Fidel spoke slowly and did not say whether he plans to resume the day-to-day duties as president . IN DT JJ NN , NNP VBD RB CC VBD RB VB IN PRP VBZ TO VB DT JJ NNS IN NN . The 80-year-old Cuban leader has not appeared in public since the transfer of power last year . DT JJ JJ NN VBZ RB VBN IN JJ IN DT NN IN NN JJ NN . Members of the Palestinian 's Fatah party say they have agreed on a cabinet for Prime Minister Ahmed Qureia after days of negotiations and delays . NNS IN DT JJ POS NNP NN VBP PRP VBP VBN IN DT NN IN NNP NNP NNP NNP IN NNS IN NNS CC NNS . Mr. Qureia has been trying all week to get a new cabinet approved in the Palestinian parliament . NNP NNP VBZ VBN VBG DT NN TO VB DT JJ NN VBN IN DT JJ NN . The prime minister abandoned his original cabinet list Monday after several legislators charged it had many corrupt officials , and threatened to vote it down . DT JJ NN VBD PRP$ JJ NN NN NNP IN JJ NNS VBD PRP VBD JJ JJ NNS , CC VBD TO VB PRP RB . Palestinian officials say the vote is now rescheduled for Thursday . JJ NNS VBP DT NN VBZ RB VBN IN NNP . Mr. Qureia must step down if he fails to get his cabinet approved . NNP NNP MD VB RB IN PRP VBZ TO VB PRP$ NN VBD . French oil group Total says it has not made any new acquisitions or investments in Burma since 1998 , after French President Nicolas Sarkozy on Wednesday urged the company to freeze investments in the southeast Asian country . JJ NN NN NNP VBZ PRP VBZ RB VBN DT JJ NNS CC NNS IN NNP IN CD , IN JJ NNP NNP NNP IN NNP VBD DT NN TO VB NNS IN DT JJ JJ NN . Total defended its business in Burma , saying companies that would take their place in the country may be less ethical . NNP VBD PRP$ NN IN NNP , VBG NNS WDT MD VB PRP$ NN IN DT NN MD VB RBR JJ . The French oil giant directly employs at least 240 people in Burma , and operates the Yadana offshore gas field , selling the majority of its product to Thailand . DT JJ NN NN RB VBZ IN JJS CD NNS IN NNP , CC VBZ DT NNP JJ NN NN , VBG DT NN IN PRP$ NN TO VB . Chevron , a U.S. oil company , also has a stake in the Yadana project . NNP , DT NNP NN NN , RB VBZ DT NN IN DT NNP NN . Critics say the money brought in by foreign investors like Total keeps the current military regime in power . NNS VBP DT NN VBN RP IN JJ NNS IN NNP VBZ DT JJ JJ NN IN NN . Burma is thought to have substantial supplies of natural gas and oil that have attracted energy companies from China , India , and Malaysia . NNP VBZ VBN TO VB JJ NNS IN JJ NN CC NN WDT VBP VBN NN NNS IN NNP , NNP , CC NNP . Officials in Taiwan say President Chen Shui-bian is expected to travel to Central America and the Caribbean next week . NNS IN NNP VBP NNP NNP NNP VBZ VBN TO VB TO NNP NNP CC DT NNP JJ NN . Saint Vincent and the Grenadines , Nicaragua and Guatemala are among the nations on his itinerary . NNP NNP CC DT NNPS , NNP CC NNP VBP IN DT NNS IN PRP$ NN . The Taipei Times Wednesday quotes a government spokesman as saying the trip is aimed at strengthening friendship between Taiwan and its allies . DT NNP NNP NNP VBZ DT NN NN IN VBG DT NN VBZ VBN IN VBG NN IN NNP CC PRP$ NNS . Taipei 's participation in diplomatic affairs has been a controversial issue since 1949 , when Taiwan and China split at the end of a civil war . NNP POS NN IN JJ NNS VBZ VBN DT JJ NN IN CD , WRB NNP CC NNP VBD IN DT NN IN DT JJ NN . China continues to claim sovereignty over Taiwan . NNP VBZ TO VB NN IN NNP . Only 26 countries , mostly small nations in Africa , Central America and the Caribbean , recognize Taiwan 's government . RB CD NNS , RB JJ NNS IN NNP , NNP NNP CC DT NNP , VBP NNP POS NN . The United States recognizes the People 's Republic of China as China 's sole legal government , and acknowledges Beijing 's position that there is but one China and Taiwan is part of it . DT NNP NNPS VBZ DT NNP POS NNP IN NNP IN NNP POS JJ JJ NN , CC VBZ NNP POS NN IN EX VBZ CC CD NNP CC NNP VBZ NN IN PRP . Sri Lanka 's Tamil Tiger rebels say their meeting with Norway 's peace envoy has failed to reach a deal on a controversial government proposal to share the distribution of tsunami aid with them . NNP NNP POS NNP NNP NNS VBP PRP$ NN IN NNP POS NN NN VBZ VBN TO VB DT NN IN DT JJ NN NN TO VB DT NN IN NN NN IN PRP . The head of the rebels ' political wing , S.P. Thamilselvan , made the remark after talks Wednesday with Norway 's Deputy Foreign Minister Vidar Helgesen in the northern town of Kilinochchi . DT NN IN DT NNS POS JJ NN , NNP NNP , VBD DT NN IN NNS NNP IN NNP POS NNP NNP NNP NNP NNP IN DT JJ NN IN NNP . Mr. Helgesen met with President Chandrika Kumaratunga Tuesday . NNP NNP VBD IN NNP NNP NNP NNP . The envoy said he will return to Colombo to clear up remaining obstacles , including a request from Sri Lanka 's Muslim minority to be included in the aid plan . DT NN VBD PRP MD VB TO NNP TO VB RP VBG NNS , VBG DT NN IN NNP NNP POS NNP NN TO VB VBN IN DT NN NN . Last week , the ruling party 's main coalition partner quit the government over the joint aid plan . JJ NN , DT VBG NN POS JJ NN NN VBD DT NN IN DT JJ NN NN . The country 's influential Buddhist monks said such an agreement would help the rebels ' cause for a separate state . DT NN POS JJ NN NNS VBD JJ DT NN MD VB DT NNS POS NN IN DT JJ NN . Canada 's foreign ministry says seven Canadian citizens have been killed by Israeli air strikes in Lebanon and three other Canadians have been wounded . NNP POS JJ NN VBZ CD JJ NNS VBP VBN VBN IN JJ NN NNS IN NNP CC CD JJ NNS VBP VBN VBN . On Sunday , Israeli forces hit the house where the Canadians were staying in southern Lebanon , near the Israeli border . IN NNP , JJ NNS VBD DT NN WRB DT NNS VBD VBG IN JJ NNP , IN DT JJ NN . Earlier , Canadian foreign minister Peter MacKay said eight Canadians had died in Lebanon , but a spokesperson , citing updated information , late Sunday revised the number to seven . RB , JJ JJ NN NNP NNP VBD CD NNS VBD VBN IN NNP , CC DT NN , VBG VBN NN , JJ NNP VBD DT NN TO CD . Lebanese police said at least five of the Canadians were from the same family . JJ NNS VBD IN JJS CD IN DT NNS VBD IN DT JJ NN . News reports said the family was vacationing in Lebanon . NNP NNS VBD DT NN VBD VBG IN NNP . The Israeli Army issued a statement saying it had warned civilians to get out of the area because it was used by Hezbollah to fire missiles into Israel . DT JJ NNP VBD DT NN VBG PRP VBD VBN NNS TO VB IN IN DT NN IN PRP VBD VBN IN NNP TO VB NNS IN NNP . The statement said responsibility for the deaths rests entirely with Hezbollah . DT NN VBD NN IN DT NNS VBZ RB IN NNP . Iraqi officials say a series of bombings at a sports facility in the predominately Shi'ite Turkmen town of Tal Afar killed at least 10 people Friday . JJ NNS VBP DT NN IN NNS IN DT NNS NN IN DT JJ NNP NNP NN IN NNP NNP VBD IN JJS CD NNS NNP . Investigators say the blasts took place at a field where a crowd had gathered to watch a football match . NNS VBP DT NNS VBD NN IN DT NN WRB DT NN VBD VBN TO VB DT NN NN . Police say an attacker drove a vehicle near the crowd and detonated explosives . NNS VBP DT NN VBD DT NN IN DT NN CC VBN NNS . They say two other suicide bombers then detonated explosives near spectators . PRP VBP CD JJ NN NNS RB VBD NNS IN NNS . Authorities say more than 100 people were wounded . NNS VBP JJR IN CD NNS VBD VBN . Tal Afar is located in northern Iraq , near the city of Mosul . NNP NNP VBZ VBN IN JJ NNP , IN DT NN IN NNP . Russian news reports say two people were killed and several others wounded in a bomb blast in Abkhazia during Wednesday 's visit by Russian Prime Minister Vladimir Putin . JJ NN NNS VBP CD NNS VBD VBN CC JJ NNS VBD IN DT NN NN IN NNP IN NNP POS NN IN JJ NNP NNP NNP NNP . Mr. Putin 's one-day trip to the Georgian breakaway territory was the first by a top Russian official since Moscow last year recognized Abkhazia 's independence after the five-day Russian-Georgian war . NNP NNP POS JJ NN TO DT JJ NN NN VBD DT JJ IN DT JJ JJ NN IN NNP JJ NN VBD NNP POS NN IN DT JJ JJ NN . The reports quote authorities as saying the blast in the resort town of Gagra killed a 52-year-old woman and wounded four others . DT NNS VBP NNS IN VBG DT NN IN DT NN NN IN NNP VBD DT JJ NN CC VBD CD NNS . A second victim died later in a hospital . DT JJ NN VBD RB IN DT NN . Authorities say no one was hurt in the second blast , which occurred in the Abkhaz capital , Sukhumi , shortly after Mr. Putin departed the city and returned to the Russian Black Sea resort of Sochi . NNS VBP DT NN VBD VBN IN DT JJ NN , WDT VBD IN DT NNP NN , NNP , RB IN NNP NNP VBD DT NN CC VBD TO DT JJ NNP NNP NN IN NNP . NATO-led peacekeeping troops in Afghanistan have reached the wreckage of an Afghan airliner that crashed into a mountain during a snowstorm last week , apparently killing everyone on board . JJ NN NNS IN NNP VBP VBN DT NN IN DT JJ NN WDT VBD IN DT NN IN DT NN JJ NN , RB VBG DT IN NN . Coalition spokesman Major Joseph Bowman told reporters in Kabul that a small team of medics and other experts reached the site Monday as weather cleared . NNP NN NNP NNP NNP VBD NNS IN NNP IN DT JJ NN IN NNS CC JJ NNS VBD DT NN NNP IN NN VBD . NATO helicopters spotted the wreckage Saturday , but could not take the recovery team to site because of fog , subzero temperatures and up to two meters of snow . NNP NNS VBD DT NN NNP , CC MD RB VB DT NN NN TO NN IN IN NN , NN NNS CC RB TO CD NNS IN NN . The Kam Air flight , which originated in the western Afghan city of Herat , had 104 people on board . DT NNP NNP NN , WDT VBD IN DT JJ JJ NN IN NNP , VBD CD NNS IN NN . The Boeing 737 jet crashed Thursday while approaching Kabul . DT NNP CD NN VBD NNP IN VBG NNP . U.S. media reports say a severe snowstorm that has battered the central United States in recent days has contributed to at least four deaths . NNP NNS NNS VBP DT JJ NN WDT VBZ VBN DT JJ NNP NNPS IN JJ NNS VBZ VBN IN IN JJS CD NNS . The deaths were blamed on slippery roads in the Plains states of South Dakota , Nebraska and Kansas . DT NNS VBD VBN IN JJ NNS IN DT NNS NNS IN NNP NNP , NNP CC NNP . Blizzard-like conditions and high winds in the region have forced the closure of schools and government buildings , and have left many people without electricity . JJ NNS CC JJ NNS IN DT NN VBP VBN DT NN IN NNS CC NN NNS , CC VBP VBN JJ NNS IN NN . Highways have been shut down because of impassable conditions and poor visibility , forcing travelers trying to get home after last week 's Thanksgiving holiday to head to shelters , motels and churches . NNS VBP VBN VBN RB IN IN JJ NNS CC JJ NN , VBG NNS VBG TO VB NN IN JJ NN POS NNP NN TO VB TO NNS , NNS CC NNS . This is the season 's first major snowstorm to hit the region . DT VBZ DT NN POS JJ JJ NN TO VB DT NN . In another weather-related death , a person was killed when a tornado picked up a car and flipped it in the southern state of Arkansas . IN DT JJ NN , DT NN VBD VBN WRB DT NN VBD RP DT NN CC VBD PRP IN DT JJ NN IN NNP . Ghana 's leading opposition party has protested the government 's plans for disbursing $ 500 million of U.S. funding . NNP POS VBG NN NN VBZ VBN DT NN POS NNS IN VBG $ CD CD IN NNP NN . The National Democratic Congress ( NDC ) said it will send a letter to the U.S. Congress contesting the Ghanaian government 's exclusion of two poor regions from its spending plans for Millenium Challenge Account money . DT NNP NNP NNP LRB NNP RRB VBD PRP MD VB DT NN TO DT NNP NNP VBG DT JJ NN POS NN IN CD JJ NNS IN PRP$ NN NNS IN NNP NNP NNP NN . A spokesman for the NDC , Haruna Idrissu , said the Upper East and Upper West regions of Ghana are among the country 's poorest and should meet the criteria for receiving aid . DT NN IN DT NNP , NNP NNP , VBD DT NNP NNP CC NNP NNP NNS IN NNP VBP IN DT NN POS JJS CC MD VB DT NNS IN VBG NN . A smaller opposition party , the People 's National Convention , has joined the protest and says it will also send a letter to the U.S. Congress . DT JJR NN NN , DT NNS POS NNP NNP , VBZ VBN DT NN CC VBZ PRP MD RB VB DT NN TO DT NNP NNP . Ghana is one of 13 African countries eligible to receive funds from the Millenium Challenge Account . NNP VBZ CD IN CD JJ NNS JJ TO VB NNS IN DT NNP NNP NNP . The United States established the program to help countries fight poverty and encourage good governance . DT NNP NNPS VBD DT NN TO VB NNS VB NN CC VB JJ NN . The top United Nations humanitarian official is demanding that Ivory Coast authorities punish those responsible for attacks on U.N. facilities last month . DT JJ NNP NNPS JJ NN VBZ VBG IN NNP NNP NNS VB DT JJ IN NNS IN NNP NNS JJ NN . On a visit to Abidjan Wednesday , Jan Egeland said the government has assured him that violence against civilian aid workers will not be repeated . IN DT NN TO NNP NNP , NNP NNP VBD DT NN VBZ VBN PRP IN NN IN JJ NN NNS MD RB VB VBN . But Egeland of the U.N. undersecretary for Humanitarian Affairs , said such violence is criminal , and that the perpetrators should be arrested . CC NNP IN DT NNP NN IN NNP NNP , VBD JJ NN VBZ JJ , CC IN DT NNS MD VB VBN . He added that the U.N. wants to continue helping the Ivorian people . PRP VBD IN DT NNP VBZ TO VB VBG DT JJ NNS . The U.N. has 7,000 peacekeepers in Ivory Coast and thousands more staff providing humanitarian assistance . DT NNP VBZ CD NNS IN NNP NNP CC NNS JJR NN VBG JJ NN . Protesters attacked U.N. buildings in January after international mediators called for parliament to be dissolved as part of the divided country 's peace process . NNP VBD NNP NNS IN NNP IN JJ NNS VBN IN NN TO VB VBN IN NN IN DT VBN NN POS NN NN . U.N. Secretary-General Kofi Annan has sent Ivory Coast a bill for $ 3.5 million to pay for damages . NNP NNP NNP NNP VBZ VBN NNP NNP DT NN IN $ CD CD TO VB IN NNS . China is criticizing U.S. moves aimed at protecting the domestic textile industry . NNP VBZ VBG NNP NNS VBN IN VBG DT JJ NN NN . A Chinese foreign ministry spokesman Qin Gang says Washington 's actions are unreasonable and protectionist . DT JJ JJ NN NN NNP NNP VBZ NNP POS NNS VBP JJ CC NN . Monday the U.S. Commerce Department said it has begun an investigation into whether a recent surge in Chinese textile imports is disrupting the U.S. market . NNP DT NNP NNP NNP VBD PRP VBZ VBN DT NN IN IN DT JJ NN IN JJ NN NNS VBZ VBG DT NNP NN . The review is the first step in a process that could lead to the re-imposition of quotas on certain products . DT NN VBZ DT JJ NN IN DT NN WDT MD VB TO DT NN IN NNS IN JJ NNS . The investigation will cover imports of trousers , knit shirts , and underwear . DT NN MD VB NNS IN NNS , NN NNS , CC NN . Imports of trousers rose 1,500 percent in the first quarter of this year over the same period last year . NNS IN NNS VBD CD NN IN DT JJ NN IN DT NN IN DT JJ NN JJ NN . Imports of knit shirts were up 1,250 percent . NNS IN NN NNS VBD RB CD NN . A global quota system on textile imports expired at the end of 2004 . DT JJ NN NN IN JJ NNS VBD IN DT NN IN CD . The International Atomic Energy Agency 's 35-nation board is expected to vote Saturday on a motion that could eventually see Iran referred to the United Nations Security Council for its controversial nuclear activities . DT NNP NNP NNP NNP POS JJ NN VBZ VBN TO VB NNP IN DT NN WDT MD RB VB NNP VBD TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NNS . The European Union proposed the motion Friday . DT NNP NNP VBD DT NN NNP . It puts off immediate referral to the Security Council , but leaves that option open . PRP VBZ RP JJ NN TO DT NNP NNP , CC VBZ DT NN JJ . It also condemns Iran for past violations of nuclear safeguards . PRP RB VBZ NNP IN JJ NNS IN JJ NNS . EU negotiators softened the draft resolution in an apparent effort to gain support from Russia and China , which both oppose referral to the Security Council . NNP NNS VBD DT NN NN IN DT JJ NN TO VB NN IN NNP CC NNP , WDT DT VBP NN TO DT NNP NNP . Diplomats say Iran is threatening to resume sensitive uranium enrichment and to limit inspections if the IAEA adopts the resolution . NNS VBP NNP VBZ VBG TO VB JJ NN NN CC TO VB NNS IN DT NNP VBZ DT NN . Tehran denies western accusations that it is secretly pursuing nuclear weapons . NNP VBZ JJ NNS IN PRP VBZ RB VBG JJ NNS . Health ministers from the Group of Eight nations have met in Moscow to discuss global cooperation in fighting infectious diseases such as bird flu and AIDS . NNP NNS IN DT NNP IN CD NNS VBP VBN IN NNP TO VB JJ NN IN VBG JJ NNS JJ IN NN NN CC NNP . The meeting comes ahead of the G-8 summit that Russia will host in July , where health issues are expected to be high on the agenda . DT NN VBZ RB IN DT NNP NN IN NNP MD VB IN NNP , WRB NN NNS VBP VBN TO VB JJ IN DT NN . The G-8 consists of the world 's seven leading industrialized nations , plus Russia . DT NNP VBZ IN DT NN POS CD JJ JJ NNS , CC NNP . U.S. Secretary of State is in India for the start of a six-nation tour of Asia . NNP NNP IN NNP VBZ IN NNP IN DT NN IN DT JJ NN IN NNP . Her New Delhi talks with Indian Prime Minister Manmohan Singh are expected to focus on India and Pakistan 's relations . PRP$ NNP NNP NNS IN JJ NNP NNP NNP NNP VBP VBN TO VB IN NNP CC NNP POS NNS . Ms. Rice says those nations ' strong ties with the United States have helped them ease tensions with each other . NNP NNP VBZ DT NNS POS JJ NNS IN DT NNP NNPS VBP VBN PRP VB NNS IN DT NN . After her talks in New Delhi , Ms. Rice heads to Pakistan and Afghanistan before traveling to Japan , South Korea and China . IN PRP$ NNS IN NNP NNP , NNP NNP VBZ TO NNP CC NNP IN VBG TO NNP , NNP NNP CC NNP . She says that China 's new law authorizing military action against Taiwan could make Europe re-examine its decision to resume weapons sales to China . PRP VBZ IN NNP POS JJ NN VBG JJ NN IN NNP MD VB NNP VB PRP$ NN TO VB NNS NNS TO NNP . North Korea 's nuclear weapons program is expected to be the focus of her meetings in Tokyo , Seoul and Beijing . NNP NNP POS JJ NNS NN VBZ VBN TO VB DT NN IN PRP$ NNS IN NNP , NNP CC NNP . Ms. Rice stressed that the United States believes the six-party framework is the best way to deal with the issue . NNP NNP VBD IN DT NNP NNPS VBZ DT JJ NN VBZ DT JJS NN TO VB IN DT NN . Venezuela 's National Assembly has voted to approve a request by President Hugo Chavez to allow him to enact laws by decree for one year . NNP POS NNP NNP VBZ VBN TO VB DT NN IN NNP NNP NNP TO VB PRP TO VB NNS IN NN IN CD NN . Lawmakers voted in President Chavez 's favor Tuesday following the first discussion on the proposal . NNS VBD IN NNP NNP POS NN NNP VBG DT JJ NN IN DT NN . Reports say a final vote on the controversial measure is expected later this week . NNS VBP DT JJ NN IN DT JJ NN VBZ VBN RB DT NN . Vice President Elias Jaua made the request earlier in the day on behalf of the president . NNP NNP NNP NNP VBD DT NN RBR IN DT NN IN NN IN DT NN . The measure was presented to the outgoing National Assembly , which is dominated by President Chavez 's allies . DT NN VBD VBN TO DT VBG NNP NNP , WDT VBZ VBN IN NNP NNP POS NNS . European and Asian leaders have pledged to continue working to reduce carbon dioxide emissions , blamed by many scientists for global warming . JJ CC JJ NNS VBP VBN TO VB VBG TO VB NN NN NNS , VBN IN JJ NNS IN JJ NN . Top officials from 38 Asian and European nations concluded their Asia-Europe Meeting in Helsinki Monday . JJ NNS IN CD JJ CC JJ NNS VBD PRP$ JJ NN IN NNP NNP . They released a final statement promising to continue working to reduce greenhouse gas emissions after the Kyoto Protocol on climate change expires in 2012 . PRP VBD DT JJ NN VBG TO VB VBG TO VB NN NN NNS IN DT NNP NNP IN NN NN VBZ IN CD . But no firm targets were set . CC DT NN NNS VBD VBN . In their final statement , the 38 leaders agreed to share cleaner and climate-friendly technology with developing nations . IN PRP$ JJ NN , DT CD NNS VBD TO VB NN CC JJ NN IN VBG NNS . Enacted in 2005 , the Kyoto Protocol establishes goals for 35 industrialized nations to reduce carbon dioxide emissions by about five percent below 1990 levels by 2012 . VBN IN CD , DT NNP NNP VBZ NNS IN CD JJ NNS TO VB NN NN NNS IN IN CD NN IN CD NNS IN CD . The agreement does not require developing nations like India and China to restrict their emissions . DT NN VBZ RB VB VBG NNS IN NNP CC NNP TO VB PRP$ NNS . Citing economic reasons , the United States has not signed the protocol . VBG JJ NNS , DT NNP NNPS VBZ RB VBN DT NN . Landslides and flash floods triggered by Typhoon Muifa have killed at least 33 people in Vietnam 's Central Highlands . NNS CC NN NNS VBN IN NNP NNP VBP VBN IN JJS CD NNS IN NNP POS NNP NNPS . Torrential rains hit Vietnam 's central region last week , and floods submerged more than 10,000 houses while paralyzing rail traffic . NNP NNS VBD NNP POS JJ NN JJ NN , CC NNS VBD JJR IN CD NNS IN VBG NN NN . Four provinces , Quang Ngai , Quang Nam , Thua Thien Hue and Quang Tri were hardest-hit . CD NNS , NNP NNP , NNP NNP , NNP NNP NNP CC NNP NNP VBD JJ . Authorities in the region are continuing to evacuate people from flooded areas and provide victims with food , medicine and shelter . NNS IN DT NN VBP VBG TO VB NNS IN VBN NNS CC VB NNS IN NN , NN CC NN . Despite the flooding elsewhere , little rain has been reported over the past few days in the nearby province of Daklak , the country 's largest coffee growing region , and there have been no reports of damaged crops . IN DT NN RB , JJ NN VBZ VBN VBN IN DT JJ JJ NNS IN DT JJ NN IN NNP , DT NN POS JJS NN VBG NN , CC EX VBP VBN DT NNS IN JJ NNS . Forecasters predict only light rain from Muifa , now downgraded to a tropical storm , at it moves into the Gulf of Thailand . NNS VBP RB JJ NN IN NNP , RB VBD TO DT JJ NN , IN PRP VBZ IN DT NNP IN NNP . Opposition supporters armed with sticks speed past a sign for ruling-party candidate Faure Gnassingbe NN NNS VBN IN NNS NN IN DT NN IN JJ NN NNP NNP Togo 's interim leader , Abbas Bonfoh , says Sunday 's presidential elections will take place as scheduled , and he fired a powerful minister who called for a delay . NNP POS JJ NN , NNP NNP , VBZ NNP POS JJ NNS MD VB NN IN VBN , CC PRP VBD DT JJ NN WP VBD IN DT NN . Interior Minister Francois Boko was fired Friday after calling for a transitional government , saying that holding the April 24 poll would be ' suicidal ' amid rising political tensions . NNP NNP NNP NNP VBD VBN NNP IN VBG IN DT JJ NN , VBG IN VBG DT NNP CD NN MD VB `` JJ `` IN VBG JJ NNS . Hours later , the Togolese government announced Mr. Boko had been replaced . NNS RB , DT NNP NN VBD NNP NNP VBD VBN VBN . Opposition leaders have held protests - during which several people were killed - saying that Togo is not ready to hold a free and fair election . NN NNS VBP VBN NNS : IN WDT JJ NNS VBD VBN IN VBG DT NNP VBZ RB JJ TO VB DT JJ CC JJ NN . The country was thrown into chaos after the government installed the son of longtime leader Gnassingbe Eyadema after he died in February . DT NN VBD VBN IN NN IN DT NN VBD DT NN IN JJ NN NNP NNP IN PRP VBD IN NNP . West African leaders pressured Togo to hold fresh elections . NNP JJ NNS VBD NNP TO VB JJ NNS . The international police organization Interpol has issued a wanted notice for Abu Musab al-Zarqawi , the leader of the al Qaida in Iraq terrorist network . DT JJ NN NN NNP VBZ VBN DT JJ NN IN NNP NNP NNP , DT NN IN DT NNP NNP IN NNP NN NN . Interpol says Algerian officials requested a so-called Red Notice on the Jordanian-born terrorist in connection with the kidnapping and murder of two Algerian diplomats in Iraq last July . NNP VBZ JJ NNS VBD DT JJ JJ NN IN DT JJ NN IN NN IN DT NN CC NN IN CD JJ NNS IN NNP JJ NNP . Interpol officials said the notice will be distributed to its 184 member nations and will decrease the likelihood the suspect will be able to escape detection . NNP NNS VBD DT NN MD VB VBN TO PRP$ CD NN NNS CC MD VB DT NN DT NN MD VB JJ TO VB NN . Abu Musab al-Zarqawi is already the most wanted man in Iraq , with the United States offering a $ 25 million bounty for his capture . NNP NNP NNP VBZ RB DT RBS JJ NN IN NNP , IN DT NNP NNPS VBG DT $ CD CD NN IN PRP$ NN . Abu Musab al-Zarqawi is also wanted in Jordan . NNP NNP NNP VBZ RB VBN IN NNP . He claimed responsibility for organizing suicide attacks that killed 59 people at two luxury hotels in Amman last month . PRP VBD NN IN VBG NN NNS WDT VBD CD NNS IN CD NN NNS IN NNP JJ NN . The proposed U.S. budget for fiscal year 2008 includes money for fighting malaria and HIV and to support democratic programs abroad . DT VBN NNP NN IN JJ NN CD VBZ NN IN VBG NN CC NNP CC TO VB JJ NNS RB . The White House says the budget provides more than $ 4 billion for treatment and prevention of HIV in the world 's hardest hit countries , and more than $ 1 billion for HIV-AIDS programs worldwide . DT NNP NNP VBZ DT NN VBZ JJR IN $ CD CD IN NN CC NN IN NNP IN DT NN POS RBS VBN NNS , CC JJR IN $ CD CD IN JJ NNS NN . Three hundred million dollars is for fighting malaria worldwide . CD CD CD NNS VBZ IN VBG NN NN . The White House says the budget also includes support for humanitarian and peacekeeping efforts in Sudan , as well as for Lebanon to help it strengthen government capacity , promote economic reform , and support its security forces . DT NNP NNP VBZ DT NN RB VBZ NN IN JJ CC JJ NNS IN NNP , RB RB IN IN NNP TO VB PRP VB NN NN , VB JJ NN , CC VB PRP$ NN NNS . The budget calls for $ 3 billion for the Millennium Challenge to promote sustainable economic growth in the poorest countries in the world . DT NN VBZ IN $ CD CD IN DT NNP NNP TO VB JJ JJ NN IN DT JJS NNS IN DT NN . The budget also allots $ 80 million to the private , nonprofit National Endowment for Democracy to promote democratic programs and institutions . DT NN RB VBZ $ CD CD TO DT JJ , JJ NNP NNP IN NNP TO VB JJ NNS CC NNS . Lebanese Prime Minister-designate Omar Karami resigned Wednesday after failing to form a government to lead the country to elections in May . JJ NNP NNP NNP NNP VBD NNP IN VBG TO VB DT NN TO VB DT NN TO NNS IN NNP . Mr. Karami says he ' reached a dead end ' in consultations to form a cabinet . NNP NNP VBZ PRP `` VBD DT JJ NN `` IN NNS TO VB DT NN . The pro-Syrian politician first stepped down on February 28 following a wave of anti-Syrian demonstrations . DT JJ NN RB VBD RP IN NNP CD VBG DT NN IN JJ NNS . He was re-appointed in March , but could not form a government including members of Lebanon 's anti-Syrian opposition . PRP VBD VBN IN NNP , CC MD RB VB DT NN VBG NNS IN NNP POS JJ NN . U.S. Secretary of State Condoleezza Rice welcomed his latest resignation as an opportunity for Lebanon to move forward and determine its own future , free of outside interference . NNP NNP IN NNP NNP NNP VBD PRP$ JJS NN IN DT NN IN NNP TO VB RB CC VB PRP$ JJ NN , JJ IN JJ NN . She says there is no reason for further delays in Lebanon 's political process . PRP VBZ EX VBZ DT NN IN JJ NNS IN NNP POS JJ NN . Wednesday 's events come as Lebanese observed the 1975 outbreak of the country 's 15-year civil war with a day of reconciliation , celebrating Muslim-Christian unity . NNP POS NNS VBP IN NNS VBD DT CD NN IN DT NN POS JJ JJ NN IN DT NN IN NN , VBG JJ NN . Islamic clerics in Afghanistan are warning the country 's president to stop foreign aid groups from doing missionary work in the country . NNP NNS IN NNP VBP VBG DT NN POS NN TO VB JJ NN NNS IN VBG JJ NN IN DT NN . Members of the Afghanistan Islamic Council say they are concerned about the activities of some international non-governmental groups that are trying to convert Afghan Muslims to Christianity . NNS IN DT NNP NNP NNP VBP PRP VBP VBN IN DT NNS IN DT JJ JJ NNS WDT VBP VBG TO VB JJ NNS TO NNP . The group made the statement after meeting with Afghan President Hamid Karzai on Friday . DT NN VBD DT NN IN VBG IN JJ NNP NNP NNP IN NNP . The clerics warned of what they called ' catastrophe ' if the activities were not prevented . DT NNS VBD IN WP PRP VBD `` NN `` IN DT NNS VBD RB VBN . Taliban militants took some 23 South Korean Christian missionaries hostage in July 2007 , killing two and releasing the remainder . NNP NNS VBD DT CD JJ JJ JJ NNS NN IN NNP CD , VBG CD CC VBG DT NN . Afghanistan 's Islamic Council also urged President Karzai to crack down on certain television programming that it says is spreading immorality and non-Islamic culture in the country . NNP POS NNP NNP RB VBD NNP NNP TO VB RP IN JJ NN NN IN PRP VBZ VBZ VBG NN CC JJ NN IN DT NN . The European Union plans to re-impose sanctions on as much as $ 4 billion worth of U.S. goods after the World Trade Organization ruled that Washington has not ended illegal tax breaks for U.S. exporters . DT NNP NNP VBZ TO VB NNS IN RB JJ IN $ CD CD NN IN NNP NNS IN DT NNP NNP NNP VBD IN NNP VBZ RB VBN JJ NN NNS IN NNP NNS . A WTO panel issued the ruling Monday . DT NNP NN VBD DT NN NNP . It gives Washington three months to bring its laws into compliance with treaty agreements or face retaliatory tariffs . PRP VBZ NNP CD NNS TO VB PRP$ NNS IN NN IN NN NNS CC VB JJ NNS . Washington had repealed the offending law , but the WTO says a replacement law is still unfair . NNP VBD VBN DT NN NN , CC DT NNP VBZ DT NN NN VBZ RB JJ . Japan is calling on the United States to take thorough measures to prevent any further beef shipments containing banned animal matter that could cause ' mad-cow ' disease . NNP VBZ VBG IN DT NNP NNPS TO VB JJ NNS TO VB DT JJ NN NNS VBG VBN JJ NN WDT MD VB `` NN `` NN . Agriculture Minister Shoichi Nakagawa made the demand Sunday during a meeting with a senior American official who is visiting Japan . NNP NNP NNP NNP VBD DT NN NNP IN DT NN IN DT JJ JJ NN WP VBZ VBG NNP . Robert Zoellick , the State Department 's second highest-ranking official deputy secretary of state , says an accidental shipment to Japan of veal containing prohibited bone material was an unacceptable mistake , and he expressed sincere regret on behalf of the United States . NNP NNP , DT NNP NNP POS JJ JJ JJ NN NN IN NN , VBZ DT JJ NN TO NNP IN NN VBG VBN NN NN VBD DT JJ NN , CC PRP VBD JJ NN IN NN IN DT NNP NNPS . Japan reimposed a total ban on U.S. beef imports Friday , after finding spinal material in a shipment of veal from New York . NNP VBD DT JJ NN IN NNP NN NNS NNP , IN VBG JJ NN IN DT NN IN NN IN NNP NNP . The ban had been partially lifted just weeks ago . DT NN VBD VBN RB VBN RB NNS RB . The American Embassy in Tokyo says a high-level delegation led by Agriculture Undersecretary J. B. Penn will arrive in Japan Monday to discuss the situation . DT NNP NNP IN NNP VBZ DT JJ NN VBN IN NNP NNP NNP NNP NNP MD VB IN NNP NNP TO VB DT NN . Police in Iraq have found 14 bodies in northern Baghdad , including some that were blindfolded and shot execution-style . NNS IN NNP VBP VBN CD NNS IN JJ NNP , VBG DT WDT VBD VBN CC VBN JJ . Reports say the victims all appeared to be Iraqis . NNS VBP DT NNS DT VBD TO VB NNS . Separately , at least seven Iraqi policemen were killed Friday and several others wounded in a bomb attack in the northern town of Tikrit . RB , IN JJS CD JJ NNS VBD VBN NNP CC JJ NNS VBD IN DT NN NN IN DT JJ NN IN NNP . An Iraqi Defense Ministry official said the attack occurred at a checkpoint in the city , about 130 kilometers north of Baghdad . DT JJ NNP NNP NN VBD DT NN VBD IN DT NN IN DT NN , IN CD NNS RB IN NNP . The blast , which targeted a minibus carrying police , is the latest attack in a wave of insurgent violence that followed last week 's announcement of a partial cabinet list . DT NN , WDT VBD DT NN VBG NN , VBZ DT JJS NN IN DT NN IN JJ NN WDT VBD JJ NN POS NN IN DT JJ NN NN . On Thursday , at least 27 people were killed in a series of attacks against the country 's military and police forces . IN NNP , IN JJS CD NNS VBD VBN IN DT NN IN NNS IN DT NN POS NN CC NN NNS . A series of internal e-mails reveals the government agency charged with responding to Hurricane Katrina was in a state of chaos before and after the storm devastated the U.S. Gulf Coast . DT NN IN JJ NNS VBZ DT NN NN VBN IN VBG TO NNP NNP VBD IN DT NN IN NN IN CC IN DT NN VBD DT NNP NNP NNP . The e-mails among several high-ranking officials of the Federal Emergency Management Agency , including then-director Michael Brown , were released to U.S. Congressional investigators and copies were obtained by news organizations . DT NNS IN JJ JJ NNS IN DT NNP NNP NNP NNP , VBG JJ NNP NNP , VBD VBN TO NNP JJ NNS CC NNS VBD VBN IN NN NNS . The messages show FEMA was overwhelmed by a host of issues , including communications failures and bureaucratic fights between the agency and the White House . DT NNS VBP NNP VBD VBN IN DT NN IN NNS , VBG NNS NNS CC JJ NNS IN DT NN CC DT NNP NNP . Mr. Brown resigned as FEMA director after he was roundly criticized for the agency 's slow response to the disaster . NNP NNP VBD IN NNP NN IN PRP VBD RB VBN IN DT NN POS JJ NN TO DT NN . Homeland Security Secretary Michael Chertoff is expected to be asked about the e-mails when he testifies before a congressional committee on Wednesday . NNP NNP NNP NNP NNP VBZ VBN TO VB VBN IN DT NNS WRB PRP VBZ IN DT JJ NN IN NNP . The Homeland Security department oversees FEMA . DT NNP NN NN VBZ NNP . Friends and family members of imprisoned opposition activists in Belarus have sent an open letter to G-8 leaders , calling on them to press for the release of the activists . NNS CC NN NNS IN JJ NN NNS IN NNP VBP VBN DT JJ NN TO NNP NNS , VBG IN PRP TO VB IN DT NN IN DT NNS . They also appealed to G-8 member countries to press Russian President Vladimir Putin to withdraw his support for Belarus President Alexander Lukashenko . PRP RB VBD TO NNP NN NNS TO VB JJ NNP NNP NNP TO VB PRP$ NN IN NNP NNP NNP NNP . Mr. Lukashenko was elected to a third term in March in an election Western governments call fraudulent . NNP NNP VBD VBN TO DT JJ NN IN NNP IN DT NN JJ NNS VBP JJ . The open letter comes ahead of a summit in St. Petersburg of the world 's seven leading industrialized democracies plus Russia . DT JJ NN VBZ RB IN DT NN IN NNP NNP IN DT NN POS CD VBG VBN NNS IN NNP . It also comes on the heels of the start of a trial of former opposition presidential candidate Alexander Kozulin . PRP RB VBZ IN DT NNS IN DT NN IN DT NN IN JJ NN JJ NN NNP NNP . Kozulin faces up to six years in prison if convicted on charges of hooliganism and incitement to mass disorder . NNP VBZ RP TO CD NNS IN NN IN VBN IN NNS IN NN CC NN TO JJ NN . The charges are tied to the protests that followed the election . DT NNS VBP VBN TO DT NNS WDT VBD DT NN . Authorities declared the vote an overwhelming victory for President Lukashenko . NNS VBD DT NN DT JJ NN IN NNP NNP . Hadson Corp. said it expects to report a third-quarter net loss of $ 17 million to $ 19 million because of special reserves and continued low natural-gas prices . NNP NNP VBD PRP VBZ TO VB DT JJ JJ NN IN $ CD CD TO $ CD CD IN IN JJ NNS CC JJ JJ NN NNS . The Oklahoma City energy and defense concern said it will record a $ 7.5 million reserve for its defense group , including a $ 4.7 million charge related to problems under a fixed-price development contract and $ 2.8 million in overhead costs that wo n't be reimbursed . DT NNP NNP NN CC NN NN VBD PRP MD VB DT $ CD CD NN IN PRP$ NN NN , VBG DT $ CD CD NN VBN TO NNS IN DT JJ NN NN CC $ CD CD IN NN NNS WDT MD RB VB VBN . In addition , Hadson said it will write off about $ 3.5 million in costs related to international exploration leases where exploration efforts have been unsuccessful . IN NN , NNP VBD PRP MD VB RP IN $ CD CD IN NNS VBN TO JJ NN NNS WRB NN NNS VBP VBN JJ . The company also cited interest costs and amortization of goodwill as factors in the loss . DT NN RB VBD NN NNS CC NN IN NN IN NNS IN DT NN . A year earlier , net income was $ 2.1 million , or six cents a share , on revenue of $ 169.9 million . DT NN RBR , JJ NN VBD $ CD CD , CC CD NNS DT NN , IN NN IN $ CD CD . Discovered and claimed by Portugal in the late 15th century , the islands ' sugar-based economy gave way to coffee and cocoa in the 19th century - all grown with plantation slave labor , a form of which lingered into the 20th century . VBN CC VBN IN NNP IN DT JJ JJ NN , DT NNS POS JJ NN VBD NN TO NN CC NN IN DT JJ NN IN DT VBN IN NN NN NN , DT NN IN WDT VBD IN DT JJ NN . While independence was achieved in 1975 , democratic reforms were not instituted until the late 1980s . IN NN VBD VBN IN CD , JJ NNS VBD RB VBN IN DT JJ NNS . The country held its first free elections in 1991 , but frequent internal wrangling between the various political parties precipitated repeated changes in leadership and two failed coup attempts in 1995 and 2003 . DT NN VBD PRP$ JJ JJ NNS IN CD , CC JJ JJ NN IN DT JJ JJ NNS VBD VBN NNS IN NN CC CD VBN NN NNS IN CD CC CD . The recent discovery of oil in the Gulf of Guinea promises to attract increased attention to the small island nation . DT JJ NN IN NN IN DT NNP IN NNP VBZ TO VB JJ NN TO DT JJ NN NN . Carib Indians occupied the islands for hundreds of years before the British began settlement in 1623 . NNP NNS VBD DT NNS IN NNS IN NNS IN DT NNS VBD NN IN CD . The islands became an associated state of the UK with full internal autonomy in 1967 . DT NNS VBD DT VBN NN IN DT NNP IN JJ JJ NN IN CD . The island of Anguilla rebelled and was allowed to secede in 1971 . DT NN IN NNP VBD CC VBD VBN TO VB IN CD . Saint Kitts and Nevis achieved independence in 1983 . NNP NNP CC NNP VBD NN IN CD . In 1998 , a vote in Nevis on a referendum to separate from Saint Kitts fell short of the two-thirds majority needed . IN CD , DT NN IN NNP IN DT NN TO VB IN NNP NNP VBD RB IN DT NNS NN VBN . Nevis continues in its efforts to separate from Saint Kitts . NNP VBZ IN PRP$ NNS TO VB IN NNP NNP . Guinea has had a history of authoritarian rule since gaining its independence from France in 1958 . NNP VBZ VBN DT NN IN JJ NN IN VBG PRP$ NN IN NNP IN CD . Lansana CONTE came to power in 1984 when the military seized the government after the death of the first president , Sekou TOURE . NNP NNP VBD TO NN IN CD WRB DT NN VBD DT NN IN DT NN IN DT JJ NN , NNP NNP . Guinea did not hold democratic elections until 1993 when Gen. CONTE ( head of the military government ) was elected president of the civilian government . NNP VBD RB VB JJ NNS IN CD WRB NNP NNP LRB NN IN DT JJ NN RRB VBD VBN NN IN DT JJ NN . He was reelected in 1998 and again in 2003 , though all the polls were marred by irregularities . PRP VBD VBN IN CD CC RB IN CD , IN PDT DT NNS VBD VBN IN NNS . History repeated itself in December 2008 when following President CONTE 's death , Capt. Moussa Dadis CAMARA led a military coup , seizing power and suspending the constitution . NN VBD PRP IN NNP CD WRB VBG NNP NNP POS NN , NNP NNP NNP NNP VBD DT JJ NN , VBG NN CC VBG DT NN . His unwillingness to yield to domestic and international pressure to step down led to heightened political tensions that culminated in September 2009 when presidential guards opened fire on an opposition rally killing more than 150 people , and in early December 2009 when CAMARA was wounded in an assassination attempt and evacuated to Morocco and subsequently to Burkina Faso . PRP$ NN TO VB IN JJ CC JJ NN TO VB RB VBD IN JJ JJ NNS WDT VBD IN NNP CD WRB JJ NNS VBD NN IN DT NN NN VBG JJR IN CD NNS , CC IN JJ NNP CD WRB NNP VBD VBN IN DT NN NN CC VBN TO NNP CC RB TO NNP NNP . A transitional government led by General Sekouba KONATE held democratic elections in 2010 and Alpha CONDE was elected president in the country 's first free and fair elections since independence . DT JJ NN VBN IN NNP NNP NNP VBD JJ NNS IN CD CC NNP NNP VBD VBN NN IN DT NN POS JJ JJ CC JJ NNS IN NN . As an affluent , high-tech industrial society in the trillion-dollar class , Canada resembles the US in its market-oriented economic system , pattern of production , and affluent living standards . IN DT NN , JJ JJ NN IN DT JJ NN , NNP VBZ DT NNP IN PRP$ JJ JJ NN , NN IN NN , CC JJ NN NNS . Since World War II , the impressive growth of the manufacturing , mining , and service sectors has transformed the nation from a largely rural economy into one primarily industrial and urban . IN NNP NNP NNP , DT JJ NN IN DT NN , NN , CC NN NNS VBZ VBN DT NN IN DT RB JJ NN IN CD RB JJ CC JJ . The 1989 US-Canada Free Trade Agreement ( FTA ) and the 1994 North American Free Trade Agreement ( NAFTA ) ( which includes Mexico ) touched off a dramatic increase in trade and economic integration with the US , its principal trading partner . DT CD NNP NNP NNP NNP LRB NNP RRB CC DT CD NNP NNP NNP NNP NNP LRB NNP RRB LRB WDT VBZ NNP RRB VBD RP DT JJ NN IN NN CC JJ NN IN DT NNP , PRP$ JJ NN NN . Canada enjoys a substantial trade surplus with the US , which absorbs about three-fourths of Canadian exports each year . NNP VBZ DT JJ NN NN IN DT NNP , WDT VBZ IN NNS IN JJ NNS DT NN . Canada is the US 's largest foreign supplier of energy , including oil , gas , uranium , and electric power . NNP VBZ DT NNP POS JJS JJ NN IN NN , VBG NN , NN , NN , CC JJ NN . Given its great natural resources , skilled labor force , and modern capital plant , Canada enjoyed solid economic growth from 1993 through 2007 . VBN PRP$ JJ JJ NNS , VBD NN NN , CC JJ NN NN , NNP VBD JJ JJ NN IN CD IN CD . Buffeted by the global economic crisis , the economy dropped into a sharp recession in the final months of 2008 , and Ottawa posted its first fiscal deficit in 2009 after 12 years of surplus . VBN IN DT JJ JJ NN , DT NN VBD IN DT JJ NN IN DT JJ NNS IN CD , CC NNP VBD PRP$ JJ JJ NN IN CD IN CD NNS IN NN . Canada 's major banks , however , emerged from the financial crisis of 2008 - 9 among the strongest in the world , owing to the financial sector 's tradition of conservative lending practices and strong capitalization . NNP POS JJ NNS , RB , VBD IN DT JJ NN IN CD : CD IN DT JJS IN DT NN , VBG TO DT JJ NN POS NN IN JJ NN NNS CC JJ NN . During 2010 , Canada 's economy grew only 3 % , due to decreased global demand and a highly valued Canadian dollar . IN CD , NNP POS NN VBD RB CD NN , JJ TO VBN JJ NN CC DT RB VBN JJ NN . A CONVENTION of female writers , which for two days had been stuffing Woman 's couch with goose-quills and hailing the down of a new era , adjourned with unabated enthusiasm , shouting , ' Place aux dames ! ' DT NN IN JJ NNS , WDT IN CD NNS VBD VBN VBG NN POS NN IN NNS CC VBG DT RB IN DT JJ NN , VBN IN JJ NN , VBG , `` NNP NN VBZ . `` And Echo wearily replied , ' Oh , damn . ' CC NNP RB VBD , `` UH , RB . `` Two lawyers are in a bank , when armed robbers suddenly burst in . CD NNS VBP IN DT NN , WRB JJ NNS RB VBP IN . While several of the robbers take the money from the tellers , others line the customers , including the lawyers , up against a wall , and proceed to take their wallets , watches , etc . IN NN IN DT NNS VBP DT NN IN DT NNS , NNS VBP DT NNS , VBG DT NNS , RB IN DT NN , CC VB TO VB PRP$ NNS , NNS , NN . While this is going on lawyer number one jams something in lawyer number two 's hand . IN DT VBZ VBG IN NN NN CD VBZ DT IN NN NN CD POS NN . Without looking down , lawyer number two whispers , ' What is this ? ' IN VBG RB , NN NN CD NNS , `` WP VBZ DT . `` To which lawyer number one replies , ' It 's that $ 50 I owe you . ' TO WDT NN NN CD NNS , `` PRP VBZ IN $ CD PRP VBP PRP . `` A school teacher injured his back and had to wear a plaster cast around the upper part of his body . DT NN NN VBD PRP$ NN CC VBD TO VB DT NN NN IN DT JJ NN IN PRP$ NN . It fit under his shirt and was not noticeable at all . PRP VBP IN PRP$ NN CC VBD RB JJ IN DT . On the first day of the term , still with the cast under his shirt , he found himself assigned to the toughest students in school . IN DT JJ NN IN DT NN , RB IN DT NN IN PRP$ NN , PRP VBD PRP VBN TO DT JJS NNS IN NN . Walking confidently into the rowdy classroom , he opened the window as wide as possible and then busied himself with desk work . VBG RB IN DT NN NN , PRP VBD DT NN RB JJ IN JJ CC RB VBD PRP IN NN NN . When a strong breeze made his tie flap , he took the desk stapler and stapled the tie to his chest . WRB DT JJ NN VBD PRP$ NN NN , PRP VBD DT NN NN CC VBD DT NN TO PRP$ NN . He had no trouble with discipline that term . PRP VBD DT NN IN NN IN NN . U.S. Secretary of State Condoleezza Rice says the West must continue efforts to defeat Taleban insurgents and support democracy in Afghanistan . NNP NNP IN NNP NNP NNP VBZ DT NNP MD VB NNS TO VB NNP NNS CC NN NN IN NNP . In comments Tuesday in Canada , Rice recalled how Afghanistan became a haven for terrorists after the United States withdrew support for the country after Soviet forces withdrew in 1989 . IN NNS NNP IN NNP , NNP VBD WRB NNP VBD DT NN IN NNS IN DT NNP NNPS VBD NN IN DT NN IN JJ NNS VBD IN CD . She warned against leaving Afghanistan too early again . PRP VBD IN VBG NNP RB RB RB . Rice made the comments during a news conference in Nova Scotia with Canadian Foreign Minister Peter MacKay . NNP VBD DT NNS IN DT NN NN IN NNP NNP IN JJ NNP NNP NNP NNP . She thanked Canada for its contributions to the NATO force in Afghanistan . PRP VBD NNP IN PRP$ NNS TO DT NNP NN IN NNP . Canada has about 2,200 troops in the country . NNP VBZ IN CD NNS IN DT NN . More than 20 Canadian troops have died in Afghanistan . JJR IN CD JJ NNS VBP VBN IN NNP . Canadian lawmakers have faced calls to end the country 's involvement in the war . JJ NNS VBP VBN NNS TO VB DT NN POS NN IN DT NN . The U.S. Central Intelligence Agency has concluded that Cuban leader Fidel Castro has Parkinson 's disease , a debilitating condition that affects a person 's physical coordination . DT NNP NNP NNP NNP VBZ VBN IN JJ NN NNP NNP VBZ NNP POS NN , DT JJ NN WDT VBZ DT NN POS JJ NN . Officials in Washington have confirmed a report about the CIA assessment published in the Miami Herald newspaper on Wednesday . NNS IN NNP VBP VBN DT NN IN DT NNP NN VBN IN DT NNP NNP NN IN NNP . The officials , speaking on condition of anonymity , say the assessment was based on a variety of material , including Mr. Castro 's public appearances . DT NNS , VBG IN NN IN NN , VBP DT NN VBD VBN IN DT NN IN NN , VBG NNP NNP POS JJ NNS . Cuban officials have declined to comment on the reports . JJ NNS VBP VBN TO VB IN DT NNS . According to the Herald , the CIA has warned U.S. policymakers to be ready for trouble in Cuba as the 79-year-old leader 's health declines . VBG TO DT NNP , DT NNP VBZ VBN NNP NNS TO VB JJ IN NN IN NNP IN DT JJ NN POS NN NNS . But the Reuters news agency quotes a State Department official as saying Washington does not expect Mr. Castro to lose his grip on Cuba . CC DT NNP NN NN VBZ DT NNP NNP NN IN VBG NNP VBZ RB VB NNP NNP TO VB PRP$ NN IN NNP . Mr. Castro 's communist government has ruled Cuba since 1959 . NNP NNP POS JJ NN VBZ VBN NNP IN CD . Mr. Castro has appointed his 74-year-old brother Raul to be his successor . NNP NNP VBZ VBN PRP$ JJ NN NNP TO VB PRP$ NN . Oil prices continued to break new records this week , trading briefly above $ 126 per barrel on Monday . NN NNS VBD TO VB JJ NNS DT NN , VBG RB IN $ CD IN NN IN NNP . American consumers fear prices will go even higher as the summer driving season gets underway . JJ NNS VBP NNS MD VB RB JJR IN DT NN VBG NN VBZ NN . Some say they are desperate and many are calling on U.S. lawmakers to do something - fast . DT VBP PRP VBP JJ CC JJ VBP VBG IN NNP NNS TO VB DT IN RB . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . The U.S. military in Afghanistan says about 20 suspected Taleban insurgents and one Afghan policeman were killed in a fierce firefight in southeastern Zabul province . DT NNP NN IN NNP VBZ IN CD JJ NNP NNS CC CD JJ NN VBD VBN IN DT JJ NN IN JJ NNP NN . A military statement issued Wednesday said six American soldiers and five Afghan policemen were wounded in Tuesday 's fighting that involved U.S. warplanes , helicopters as well as ground troops . DT JJ NN VBN NNP VBD CD JJ NNS CC CD JJ NNS VBD VBN IN NNP POS NN IN JJ NNP NNS , NNS RB RB IN NN NNS . It said six insurgents were detained after the clash , described as one of the deadliest in recent weeks . PRP VBD CD NNS VBD VBN IN DT NN , VBN IN CD IN DT JJS IN JJ NNS . The military says the battle erupted after gunmen fired on U.S. troops and Afghan police investigating a reported beating of a villager . DT JJ VBZ DT NN VBD IN NNS VBD IN NNP NNS CC JJ NNS VBG DT VBN NN IN DT NN . Taleban insurgents have stepped up attacks against Afghan and U.S.-led coalition troops as harsh winter weather conditions have improved . NNP NNS VBP VBN RP NNS IN JJ CC JJ NN NNS IN JJ NN NN NNS VBP VBN . An Israeli human rights group says the West Bank is facing a severe water shortage largely as a result of what it calls ' discriminatory ' Israeli policies . DT JJ JJ NNS NN VBZ DT NNP NNP VBZ VBG DT JJ NN NN RB IN DT NN IN WP PRP VBZ `` JJ `` JJ NNS . The rights group , B'Tselem accused Israel Tuesday of discrimination in the distribution of joint water resources between Jewish settlers and Palestinians . DT NNS NN , NNP VBD NNP NNP IN NN IN DT NN IN JJ NN NNS IN JJ NNS CC NNS . It warned that a water shortage would have serious repercussions on the economy and health of tens of thousands of Palestinians . PRP VBD IN DT NN NN MD VB JJ NNS IN DT NN CC NN IN NNS IN NNS IN NNS . The group said Israel also limits the Palestinian Authority 's ability to drill new wells . DT NN VBD NNP RB VBZ DT JJ NNP POS NN TO VB JJ NNS . It said the effects of several years of drought will make a water shortage even worse in coming months . PRP VBD DT NNS IN JJ NNS IN NN MD VB DT NN NN RB JJR IN VBG NNS . The Israeli water company , Mekorot , denied the allegations . DT JJ NN NN , NNP , VBD DT NNS . It said it has provided more water to the West Bank than is required under the 1993 Israel-Palestinian Oslo peace accord . PRP VBD PRP VBZ VBN JJR NN TO DT NNP NNP IN VBZ VBN IN DT CD JJ NNP NN NN . Three Sunni Arab parties in Iraq have announced they are forming a coalition ahead of December 's parliamentary election for a permanent government . CD NNP NNP NNS IN NNP VBP VBN PRP VBP VBG DT NN RB IN NNP POS JJ NN IN DT JJ NN . The announcement Wednesday , from the Iraqi Peoples Gathering , the Iraqi Islamic Party and the Iraqi National Dialogue comes a day after referendum results showed 78 percent of Iraqis approved the new constitution . DT NN NNP , IN DT JJ NNPS NNP , DT JJ NNP NNP CC DT JJ NNP NNP VBZ DT NN IN NN NNS VBD CD NN IN NNS VBD DT JJ NN . The document passed despite stiff opposition from Sunni Arabs . DT NN VBD IN JJ NN IN NNP NNS . In other developments , an Internet statement attributed to al-Qaida in Iraq claimed it had kidnapped two employees from the Moroccan embassy in Baghdad . IN JJ NNS , DT NNP NN VBN TO NNP IN NNP VBD PRP VBD VBN CD NNS IN DT JJ NN IN NNP . The Moroccan news agency reports that Rabat has had no news about the missing employees since Thursday and has sent a team to Jordan to coordinate efforts to win their release . DT JJ NN NN NNS IN NNP VBZ VBN DT NN IN DT VBG NNS IN NNP CC VBZ VBN DT NN TO NNP TO VB NNS TO VB PRP$ NN . Meanwhile , attacks in Baghdad and Ramadi killed three Iraqis . RB , NNS IN NNP CC NNP VBD CD NNS . An American soldier also died in a vehicle accident in southern Iraq . DT JJ NN RB VBD IN DT NN NN IN JJ NNP . An Iraqi appeals court has upheld the death sentence for Saddam Hussein 's former vice president , Taha Yassin Ramadan , for his role in the killing of 148 Shi'ite Muslims in 1982 . DT JJ NNS NN VBZ VBN DT NN NN IN NNP NNP POS JJ NN NN , NNP NNP NNP , IN PRP$ NN IN DT NN IN CD NNP NNPS IN CD . The court confirmed Thursday that Ramadan will be hanged , which is the method of state execution in Iraq . DT NN VBD NNP IN NNP MD VB VBN , WDT VBZ DT NN IN NN NN IN NNP . The government now has to set a date for the execution . DT NN RB VBZ TO VB DT NN IN DT NN . Ramadan was convicted late last year with Saddam Hussein and six others . NNP VBD VBN RB JJ NN IN NNP NNP CC CD NNS . Ramadan initially was sentenced to life in prison . NNP RB VBD VBN TO NN IN NN . But an appeals court ruled that sentence was too lenient and asked the lower court to consider the death penalty . CC DT NNS NN VBD DT NN VBD RB JJ CC VBD DT JJR NN TO VB DT NN NN . The decision to give Ramadan the maximum sentence ignored appeals from international human rights groups . DT NN TO VB NNP DT JJ NN VBD NNS IN JJ JJ NNS NNS . Saddam Hussein was hanged in December , and two of his co-defendants were executed in January . NNP NNP VBD VBN IN NNP , CC CD IN PRP$ NNS VBD VBN IN NNP . A United Nations investigation team says a powerful truck bomb caused the explosion that killed former Lebanese Prime Minister Rafik Hariri . DT NNP NNPS NN NN VBZ DT JJ NN NN VBD DT NN WDT VBD JJ JJ NNP NNP NNP NNP . A German prosecutor , Detlev Mehlis , leading the U.N. team told a news conference in Beirut , Friday the blast occurred above ground . DT JJ NN , NNP NNP , VBG DT NNP NN VBD DT NN NN IN NNP , NNP DT NN VBD IN NN . Some people believed the explosives were buried under the street , suggesting officials were involved in the plot to kill the former prime minister . DT NNS VBD DT NNS VBD VBN IN DT NN , VBG NNS VBD VBN IN DT NN TO VB DT JJ JJ NN . Mr. Hariri and 20 others were killed when his motorcade was blown up on February 14 in downtown Beirut . NNP NNP CC CD NNS VBD VBN WRB PRP$ NN VBD VBN RP IN NNP CD IN NN NNP . His assassination was the catalyst for mass anti-Syrian protests and intensified international pressure on Damascus to withdraw its army from Lebanon . PRP$ NN VBD DT NN IN JJ JJ NNS CC VBD JJ NN IN NNP TO VB PRP$ NN IN NNP . Turkish police have detained 23 people suspected of having links with the al-Qaida terrorist network . JJ NNS VBP VBN CD NNS VBN IN VBG NNS IN DT NNP NN NN . Police detained the suspects Wednesday in the northwestern province of Bursa . NNS VBD DT NNS NNP IN DT JJ NN IN NNP . In May , police detained 11 suspected al-Qaida militants who were believed to be planning terrorist attacks in Istanbul . IN NNP , NN VBD CD JJ NNP NNS WP VBD VBN TO VB VBG JJ NNS IN NNP . A Turkish al-Qaida cell was blamed in four suicide bombings in 2003 that killed at least 58 people and injured hundreds more . DT JJ NNP NN VBD VBN IN CD NN NNS IN CD WDT VBD IN JJS CD NNS CC JJ NNS RBR . Those attacks targeted two synagogues , the British consulate and a London-based bank . DT NNS VBD CD NNS , DT JJ NN CC DT JJ NN . French President Jacques Chirac has announced he will hold a nationwide referendum on the European Union 's constitution before the middle of next year . JJ NNP NNP NNP VBZ VBN PRP MD VB DT JJ NN IN DT NNP NNP POS NN IN DT NN IN JJ NN . In his televised New Year 's Address Friday the French leader , who supports the EU constitution , told his compatriots they will , in his words , have Europe 's future in their hands . IN PRP$ JJ NNP NNP POS NN NNP DT JJ NN , WP VBZ DT NNP NN , VBD PRP$ NNS PRP MD , IN PRP$ NNS , VBP NNP POS NN IN PRP$ NNS . Mr. Chirac and other European Union leaders signed the constitution at a summit in Rome in late October , but most of the 25 EU member states still have to ratify it . NNP NNP CC JJ NNP NNP NNS VBD DT NN IN DT NN IN NNP IN JJ NNP , CC JJS IN DT CD NNP NN NNS RB VBP TO VB PRP . The document creates new top-level EU positions , such as a permanent EU Council Presidency and a Foreign Ministry . DT NN VBZ JJ JJ NNP NNS , JJ IN DT JJ NNP NNP NNP CC DT NNP NNP . It also modifies the bloc 's decision-making process . PRP RB VBZ DT NN POS JJ NN . In France , right-wing critics worry that it enhances EU powers at the expense of the member states , while left-wing opponents say it enshrines the rights of business to the detriment of workers . IN NNP , JJ NNS VBP IN PRP VBZ NNP NNS IN DT NN IN DT NN NNS , IN JJ NNS VBP PRP VBZ DT NNS IN NN TO DT NN IN NNS . A published report says donors plan to withhold $ 375 million in aid from Ethiopia in light of the government 's response to recent opposition-led protests . DT JJ NN VBZ NNS VBP TO VB $ CD CD IN NN IN NNP IN NN IN DT NN POS NN TO JJ JJ NNS . The Financial Times newspaper quotes the World Bank 's director in Ethiopia Ishac Diwan as saying the World Bank , the European Union , Britain and other donors will consider disbursing funds in other ways to address the country 's massive poverty . DT NNP NNP NN VBZ DT NNP NNP POS NN IN NNP NNP NNP IN VBG DT NNP NNP , DT NNP NNP , NNP CC JJ NNS MD VB VBG NNS IN JJ NNS TO VB DT NN POS JJ NN . At least 46 people were killed and thousands detained during clashes between security forces and opposition protesters last month . IN JJS CD NNS VBD VBN CC NNS VBN IN NNS IN NN NNS CC NN NNS JJ NN . The violence erupted during anti-government protests against alleged fraud in last May 's parliamentary elections won by Ethiopia 's ruling party . DT NN VBD IN JJ NNS IN JJ NN IN JJ NNP POS JJ NNS VBN IN NNP POS VBG NN . Wednesday , an Ethiopian judge ordered a group of 131 opposition leaders , journalists and others detained during the protests to remain in custody after most boycotted a bail hearing . NNP , DT JJ NN VBD DT NN IN CD NN NNS , NNS CC NNS VBD IN DT NNS TO VB IN NN IN JJS VBD DT NN NN . Those detainees have been charged with treason and genocide . DT NNS VBP VBN VBN IN NN CC NN . A Shi'ite member of Iraq 's parliament says followers of radical Shi'ite cleric Moqtada al-Sadr will quit the national unity government if Prime Minister Nouri al-Maliki meets with President Bush in Jordan next week . DT JJ NN IN NNP POS NN VBZ NNS IN JJ NNP NN NNP NNP MD VB DT JJ NN NN IN NNP NNP NNP NNP VBZ IN NNP NNP IN NNP JJ NN . Parliamentarian Qusai Abdul-Wahab issued a statement on behalf of the group Friday . NN NNP NNP VBD DT NN IN NN IN DT NN NNP . He said the group would also withdraw if the security situation in Iraq does not improve . PRP VBD DT NN MD RB VB IN DT NN NN IN NNP VBZ RB VB . Al-Sadr 's followers hold six cabinet seats and have 30 members in the 275-member parliament . NNP POS NNS VBP CD NN NNS CC VBP CD NNS IN DT JJ NN . Mr. Bush and Mr. Maliki are scheduled to meet Wednesday and Thursday in the Jordanian capital , Amman , to discuss the situation in Iraq . NNP NNP CC NNP NNP VBP VBN TO VB NNP CC NNP IN DT JJ NN , NNP , TO VB DT NN IN NNP . Bahrain 's foreign minister is calling for Arab countries to form a regional group that includes rivals Iran and Israel . NNP POS JJ NN VBZ VBG IN JJ NNS TO VB DT JJ NN WDT VBZ NNS NNP CC NNP . Sheikh Khalid bin Ahmed Al Khalifa says the organization could get under way even if not all members recognize each other . NNP NNP NNP NNP NNP NNP VBZ DT NN MD VB IN NN RB IN RB DT NNS VBP DT NN . Of the Arab states , only Egypt and Jordan recognize Israel . IN DT JJ NNS , RB NNP CC NNP VBP NNP . Non-Arab Iran is particularly opposed to the Jewish state , with its president vowing to see it end . JJ NNP VBZ RB VBN TO DT JJ NN , IN PRP$ NN VBG TO VB PRP NN . In an interview in Wednesday 's al-Hayat pan-Arab newspaper , Sheik Khalid says Turkey should also be included in the Middle East grouping . IN DT NN IN NNP POS JJ JJ NN , NNP NNP VBZ NNP MD RB VB VBN IN DT NNP NNP NN . He argues such a forum is the only way to resolve the region 's problems . PRP VBZ PDT DT NN VBZ DT JJ NN TO VB DT NN POS NNS . The Bahrainian diplomat notes the countries are all able to sit together in the United Nations . DT JJ NN VBZ DT NNS VBP DT JJ TO VB RB IN DT NNP NNPS . The tiny Gulf kingdom , whose Shi'ite majority is ruled by a Sunni minority , has close ties with the United States and hosts the U.S. Navy 's Fifth Fleet . DT JJ NNP NN , WP$ JJ NN VBZ VBN IN DT NNP NN , VBZ JJ NNS IN DT NNP NNPS CC VBZ DT NNP NNP POS NNP NNP . Nine former communist-ruled NATO countries and Canada have urged alliance members to overcome their disagreements and initiate the membership process for Georgia and Ukraine at next month 's summit in Bucharest . CD JJ JJ NNP NNS CC NNP VBP VBN NN NNS TO VB PRP$ NNS CC VB DT NN NN IN NNP CC NNP IN JJ NN POS NN IN NNP . Representatives of Bulgaria , the Czech Republic , Estonia , Latvia , Lithuania , Poland , Slovakia , Slovenia and Romania as well as Canada expressed their views in a letter to NATO Secretary General Jaap de Hoop Scheffer . NNS IN NNP , DT JJ NNP , NNP , NNP , NNP , NNP , NNP , NNP CC NNP RB RB IN NNP VBD PRP$ NNS IN DT NN TO NNP NN NNP NNP NNP NNP NNP . The message says extending a NATO Membership Action Plan to Georgia and Ukraine will increase stability and security in Europe . DT NN VBZ VBG DT NNP NNP NNP NNP TO NNP CC NNP MD VB NN CC NN IN NNP . It adds failure to do so would create doubts that NATO membership is available to all democratic countries . PRP VBZ NN TO VB RB MD VB NNS IN NNP NN VBZ JJ TO DT JJ NNS . Russia strongly opposes further NATO expansion . NNP RB VBZ JJ NNP NN . Some larger NATO members have expressed doubts that Georgia fully satisfies alliance standards for democracy . DT JJR NNP NNS VBP VBN NNS IN NNP RB VBZ NN NNS IN NN . They also note that a large proportion of Ukrainian citizens opposes NATO entry . PRP RB VBP IN DT JJ NN IN JJ NNS VBZ NNP NN . President Bush will travel to Europe in February for talks with NATO and European Union officials as he starts his second term in office . NNP NNP MD VB TO NNP IN NNP IN NNS IN NNP CC NNP NNP NNS IN PRP VBZ PRP$ JJ NN IN NN . A White House spokesman says the visit February 22 will include talks with Alliance heads of state , top European Commission officials and Belgian Prime Minister Guy Verhofstadt . DT NNP NNP NN VBZ DT NN NNP CD MD VB NNS IN NNP NNS IN NN , JJ NNP NNP NNS CC JJ NNP NNP NNP NNP . The spokesman called the trip an effort to strengthen cooperation in the struggle against terrorism . DT NN VBD DT NN DT NN TO VB NN IN DT NN IN NN . In Brussels Secretary of State Colin Powell said the February trip is an attempt to rebuild ties strained by disagreements over the U.S.-led war in Iraq . IN NNP NNP IN NNP NNP NNP VBD DT NNP NN VBZ DT NN TO VB NNS VBN IN NNS IN DT JJ NN IN NNP . The United States has officially ended its peacekeeping presence in Bosnia-Herzegovina , although some American soldiers will remain in the Balkan country to help hunt down war crimes suspects . DT NNP NNP VBZ RB VBN PRP$ NN NN IN NNP , IN DT JJ NNS MD VB IN DT NNP NN TO VB VB RP NN NNS NNS . U.S. military officials marked the end of the peacekeeping presence Wednesday , with a ceremony at Eagle Base in the Tuzla area . NNP JJ NNS VBD DT NN IN DT NN NN NNP , IN DT NN IN NNP NNP IN DT NNP NN . Some 700 Americans now serve in the NATO-led Stabilization Force , which has fewer than 10,000 soldiers in Bosnia . DT CD NNS RB VBP IN DT JJ NNP NNP , WDT VBZ JJR IN CD NNS IN NNP . NATO troops began peacekeeping in Bosnia after the December 1995 Dayton agreement halted the Bosnian conflict . NNP NNS VBD VBG IN NNP IN DT NNP CD NNP NN VBD DT JJ NN . Most of the American soldiers will leave when NATO hands over peacekeeping duties next week to a European Union Force that will number 7,000 . JJS IN DT JJ NNS MD VB WRB NNP VBZ RB VBG NNS JJ NN IN DT NNP NNP NNP WDT MD VB CD . About 150 American soldiers will remain at Eagle Base to focus on hunting for war crimes suspects like fugitive former Bosnian Serb leader Radovan Karadzic . IN CD JJ NNS MD VB IN NNP NNP TO VB IN NN IN NN NNS VBZ IN JJ JJ JJ JJ NN NNP NNP . In the Democratic Republic of Congo , government troops backed by United Nations peacekeepers have begun to drive out Rwandan rebels a month after a deadline for their pullout expired . IN DT JJ NNP IN NNP , NN NNS VBN IN NNP NNP NNS VBP VBN TO VB RP JJ NNS DT NN IN DT NN IN PRP$ NN VBD . A U.N. military spokesman says the aim of the joint operation is to clear out as many as 5,000 Rwandan Hutu rebels who have set up camp in Virunga National Park in North Kivu province . DT NNP NN NN VBZ DT NN IN DT JJ NN VBZ TO VB RP RB JJ IN CD JJ NNP NNS WP VBP VBN RP NN IN NNP NNP NNP IN NNP NNP NN . The rebels promised in March they would disarm and return home by the end of October . DT NNS VBN IN NNP PRP MD VB CC VB NN IN DT NN IN NNP . But few have done so , asking the Rwandan government for more guarantees . CC JJ VBP VBN RB , VBG DT JJ NN IN JJR NNS . An estimated 10,000 Rwandan rebels are believed to be in eastern Congo . DT VBN CD JJ NNS VBP VBN TO VB IN JJ NNP . They fled to Congo after helping orchestrate Rwanda 's 1994 genocide . PRP VBD TO NNP IN VBG JJ NNP POS CD NN . Hamas officials say Egyptian forces have closed the breach in the border between the Gaza Strip and Egypt , nearly two weeks after militants blew up a section of the border wall . NNP NNS VBP JJ NNS VBP VBN DT NN IN DT NN IN DT NNP NNP CC NNP , RB CD NNS IN NNS VBD RP DT NN IN DT NN NN . Officials said Sunday that troops are allowing Gazans and Egyptians to cross the border to return to their homes , but are preventing any new cross-border traffic . NNS VBD NNP IN NNS VBP VBG NNPS CC NNS TO VB DT NN TO VB TO PRP$ NNS , CC VBP VBG DT JJ JJ NN . Hundreds of thousands of Palestinians have streamed across the Egyptian border since Hamas militants destroyed a barrier wall on January 23 , shattering an Israeli blockade . NNS IN NNS IN NNS VBP VBN IN DT JJ NN IN NNP NNS VBD DT NN NN IN NNP CD , VBG DT JJ NN . Egyptian forces placed metal barriers across several breaches in the Rafah border crossing Friday . JJ NNS VBN NN NNS IN JJ NNS IN DT NNP NN VBG NNP . But militants used bulldozers to tear down the barriers , and hundreds of people demonstrated to demand the border remain open . CC NNS VBD NNS TO VB RP DT NNS , CC NNS IN NNS VBN TO VB DT NN VBP JJ . European Union justice and interior ministers have agreed on a counter-terrorism strategy aimed at preventing recruitment by terrorist groups . NNP NNP NN CC NN NNS VBP VBN IN DT NN NN VBN IN VBG NN IN NN NNS . EU top anti-terror official Gijs de Vries says Europe faces a dual threat - from outsiders coming to Europe and from people who live on the continent . NNP JJ NN NN NNP NNP NNP VBZ NNP VBZ DT JJ NN : IN NNS VBG TO NNP CC IN NNS WP VBP IN DT NN . The new strategy 's objectives include protecting potential targets , pursuing and investigating suspects , and improving EU capability to respond to terrorist attacks . DT JJ NN POS NNS VBP VBG JJ NNS , VBG CC VBG NNS , CC VBG NNP NN TO VB TO NN NNS . The plan covers everything from Internet sites promoting extremist Islamic ideas to fostering better community relations with Muslim groups . DT NN VBZ DT IN NNP NNS VBG NN JJ NNS TO VB JJR NN NNS IN NNP NNS . It also calls for better police cooperation and stepped-up security at ports of entry . PRP RB VBZ IN JJR NN NN CC JJ NN IN NNS IN NN . Thursday 's agreement comes as Belgian investigators charged five people with involvement in a network that sent volunteers to Iraq . NNP POS NN VBZ IN JJ NNS VBD CD NNS IN NN IN DT NN WDT VBD NNS TO NNP . The volunteers included a young Belgian woman , Muriel Degauque , who blew herself up in a failed attack on U.S. troops near Baghdad last month . DT NNS VBD DT JJ JJ NN , NNP NNP , WP VBD PRP RP IN DT JJ NN IN NNP NNS IN NNP JJ NN . Pakistan 's Prime Minister Yousaf Raza Gilani vowed to fight terrorism as he embarked Saturday , on a visit to Washington to meet with U.S. President George Bush . NNP POS NNP NNP NNP NNP NNP VBD TO VB NN IN PRP VBD NNP , IN DT NN TO NNP TO VB IN NNP NNP NNP NNP . Prime Minister Gilani told reporters near Islamabad the fight against extremism is Pakistan 's own cause . NNP NNP NNP VBD NNS IN NNP DT NN IN NN VBZ NNP POS JJ NN . Mr. Gilani 's trip comes as violence continues to rise in the tribal regions of northwest Pakistan . NNP NNP POS NN VBZ IN NN VBZ TO VB IN DT JJ NNS IN JJ NNP . U.S. and Afghan officials have called on Pakistan to fight militants who launch attacks on Afghan and foreign forces along the Afghan border . NNP CC JJ NNS VBP VBN IN NNP TO VB NNS WP VB NNS IN JJ CC JJ NNS IN DT JJ NN . The Pakistani government has repeatedly said it will not allow foreign forces to conduct operations against militants on Pakistani soil . DT JJ NN VBZ RB VBN PRP MD RB VB JJ NNS TO VB NNS IN NNS IN JJ NN . Mr. Gilani 's visit is the first official trip to Washington since taking office in March . NNP NNP POS NN VBZ DT JJ JJ NN TO NNP IN VBG NN IN NNP . The Pakistani leader will also meet with U.S. presidential candidates Barack Obama and John McCain . DT JJ NN MD RB VB IN NNP JJ NNS VBP NNP CC NNP NNP . Officials in Ivory Coast say at least four people have been killed by a group of armed men attacking a military police post in the country 's main city . NNS IN NNP NNP VBP IN JJS CD NNS VBP VBN VBN IN DT NN IN JJ NNS VBG DT JJ NN NN IN DT NN POS JJ NN . The attack occurred Saturday in Anyama , a suburb of Abidjan . DT NN VBD NNP IN NNP , DT NN IN NNP . Reuters news agency quotes an unidentified military policemen saying the four men were all gendarmes . NNP NN NN VBZ DT JJ JJ NNS VBG DT CD NNS VBD DT NNS . The small west African nation has been plagued by violence since a 2002 civil war that virtually split the country in two . DT JJ JJ JJ NN VBZ VBN VBN IN NN IN DT CD JJ NN WDT RB VBD DT NN IN CD . Another suicide car bomber has struck at an entrance to Baghdad 's heavily guarded Green Zone , a day after nine Iraqis were killed in an attack at the same checkpoint . DT NN NN NN VBZ VBN IN DT NN TO NNP POS RB VBN NNP NNP , DT NN IN CD NNS VBD VBN IN DT NN IN DT JJ NN . Hospital officials say at least two people were killed in Tuesday 's attack , and a dozen others were wounded . NN NNS VBP IN JJS CD NNS VBD VBN IN NNP POS NN , CC DT NN NNS VBD VBN . Meanwhile , to the north , in Mosul , the U.S. military says six bodies were found Tuesday , all killed execution-style with a bullet to the head . RB , TO DT NN , IN NNP , DT NNP NN VBZ CD NNS VBD VBN NNP , DT VBN NN IN DT NN TO DT NN . Monday , hospital officials said they had received the bodies of eight other men , all killed in the same way . NNP , NN NNS VBD PRP VBD VBN DT NNS IN CD JJ NNS , DT VBN IN DT JJ NN . And in Fallujah , more clashes have been reported in the city that was the target of last month 's massive U.S.-led offensive against insurgents . CC IN NNP , JJR NNS VBP VBN VBN IN DT NN WDT VBD DT NN IN JJ NN POS JJ JJ NN IN NNS . Israeli forces killed three Palestinians and wounded several others Monday in operations against militants in the northern Gaza Strip . JJ NNS VBD CD NNS CC VBD JJ NNS NNP IN NNS IN NNS IN DT JJ NNP NNP . In one incident , Israel 's military says troops shot dead two armed Palestinians who were trying to place explosives near the border fence separating Gaza from Israel . IN CD NN , NNP POS JJ VBZ NNS VBD JJ CD JJ NNS WP VBD VBG TO VB NNS IN DT NN NN VBG NNP IN NNP . Earlier , an Israeli air strike killed a Hamas militant and wounded several other people in the northern town of Beit Hanoun . RB , DT JJ NN NN VBD DT NNP NN CC VBD JJ JJ NNS IN DT JJ NN IN NNP NNP . The Israeli military says the aircraft hit a group of militants who had just fired mortars into southern Israel . DT JJ NN VBZ DT NN VBD DT NN IN NNS WP VBD RB VBN NNS IN JJ NNP . Israel has stepped up air strikes and ground raids in Gaza since Hamas seized control of the territory in June . NNP VBZ VBN RP NN NNS CC NN NNS IN NNP IN NNP VBD NN IN DT NN IN NNP . Venezuela and Cuba have asked a United Nations committee to investigate the release on bail of a Cuban militant from a U.S. prison . NNP CC NNP VBP VBN DT NNP NNP NN TO VB DT NN IN NN IN DT JJ NN IN DT NNP NN . The governments in Caracas and Havana sent a letter Wednesday to the U.N. 's Counter-Terrorism Committee , urging it to examine the release of Luis Posada Carriles . DT NNS IN NNP CC NNP VBD DT NN NNP TO DT NNP POS NNP NNP , VBG PRP TO VB DT NN IN NNP NNP NNP . Venezuela and Cuba accuse the U.S. of ' flagrantly violating ' U.N. Security Council resolutions on counter-terrorism by releasing him . NNP CC NNP VBP DT NNP IN `` RB VBG `` NNP NNP NNP NNS IN NN IN VBG PRP . Venezuela convicted the former U.S. intelligence operative of plotting the 1976 bombing of a Cuban airliner that killed 73 people . NNP VBD DT JJ NNP NN NN IN VBG DT CD NN IN DT JJ NN WDT VBD CD NNS . Posada Carriles denies the charge . NNP NNP VBZ DT NN . He escaped a Venezuelan prison in 1985 . PRP VBD DT JJ NN IN CD . Posada Carriles has been in U.S. custody since 2005 for alleged immigration offenses . NNP NNP VBZ VBN IN NNP NN IN CD IN JJ NN NNS . A U.S. court released him on bail last week ahead of his trial on May 11 . DT NNP NN VBD PRP IN NN JJ NN RB IN PRP$ NN IN NNP CD . Posada Carriles was born in Cuba and is a naturalized Venezuelan citizen . NNP NNP VBD VBN IN NNP CC VBZ DT JJ JJ NN . Thousands of college students are returning to New Orleans this week , as the city 's universities open after a semester shut down for recovery from Hurricane Katrina . NNS IN NN NNS VBP VBG TO NNP NNP DT NN , IN DT NN POS NNS JJ IN DT NN VBD RP IN NN IN NNP NNP . City officials say the students ' return will sizably increase the city 's population and bring in new consumer dollars . NNP NNS VBP DT NNS POS NN MD RB VB DT NN POS NN CC VB RP JJ NN NNS . While some students changed schools after the city flooded last year , most are returning , including 88 percent of students at Tulane University . IN DT NNS VBD NNS IN DT NN VBD JJ NN , JJS VBP VBG , VBG CD NN IN NNS IN NNP NNP . The universities are using hotels and trailers to house students and classes , as repairs on flood-damaged facilities continue . DT NNS VBP VBG NNS CC NNS TO VB NNS CC NNS , IN NNS IN JJ NNS VBP . City and state officials are urging students to help rebuild . NNP CC NN NNS VBP VBG NNS TO VB VB . Meanwhile , members of the U.S. Senate committee for Homeland Security are assessing hurricane recovery efforts in Mississippi and Louisiana today . RB , NNS IN DT NNP NNP NN IN NNP NNP VBP VBG NN NN NNS IN NNP CC NNP NN . Two days after a shooting killed one person at a science seminar in India 's southern city of Bangalore , a letter threatening bomb blasts has prompted security alerts in the area known for its high-tech businesses . CD NNS IN DT NN VBN CD NN IN DT NN NN IN NNP POS JJ NN IN NNP , DT NN VBG NN NNS VBZ VBN NN NNS IN DT NN VBN IN PRP$ JJ NNS . The letter was signed by someone calling themselves Moinuddin . DT NN VBD VBN IN DT VBG PRP NNP . It was addressed to police , and published by local newspapers Friday . PRP VBD VBN TO NNS , CC VBN IN JJ NNS NNP . It warns that there will be bomb blasts on New Year 's Eve at a five-star hotel and at the home of Karnataka state 's chief minister . PRP VBZ IN EX MD VB NN NNS IN NNP NNP POS NN IN DT JJ NN CC IN DT NN IN NNP NN POS JJ NN . Police say they do not know if the threat is real , but they have stepped up security and say they are taking no chances . NNS VBP PRP VBP RB VB IN DT NN VBZ JJ , CC PRP VBP VBN RP NN CC VB PRP VBP VBG DT NNS . Officials say Wednesday 's attack on the science conference , in which a gunman sprayed bullets indiscriminately at delegates and killed one professor , M.C. NNS VBP NNP POS NN IN DT NN NN , IN WDT DT NN VBD NNS RB IN NNS CC VBD CD NN , NNP Puri , was likely the work of militants . NNP , VBD JJ DT NN IN NNS . Bolivia 's President Evo Morales says he wants to raise natural gas prices by nearly 60 percent for exports to Brazil and Argentina , which rely heavily on Bolivian gas . NNP POS NNP NNP NNP VBZ PRP VBZ TO VB JJ NN NNS IN RB CD NN IN NNS TO NNP CC NNP , WDT VBP RB IN JJ NN . Mr. Morales says the price increase will bring in an extra $ 600 million to the Bolivian government . NNP NNP VBZ DT NN NN MD VB IN DT JJ $ CD CD TO DT JJ NN . His remarks come one week after he ordered soldiers to production facilities to forcibly nationalize Bolivia 's energy sector . PRP$ NNS VBP CD NN IN PRP VBD NNS TO NN NNS TO RB VB NNP POS NN NN . In Brazil Monday , President Luiz Inacio Lula da Silva reassured Brazilians that Bolivia 's nationalization will not result in gas shortages in his country . IN NNP NNP , NNP NNP NNP NNP NNP NNP VBD NNS IN NNP POS NN MD RB VB IN NN NNS IN PRP$ NN . He also said Brazil will not retaliate against Bolivia , but instead will negotiate with its neighbor to reach an agreement on contracts and prices . PRP RB VBD NNP MD RB VB IN NNP , CC RB MD VB IN PRP$ NN TO VB DT NN IN NNS CC NNS . After a summit last Thursday , Mr. Morales and the leaders of Argentina , Brazil and Venezuela issued a statement affirming Bolivia 's ' sovereign right ' to control its natural resources . IN DT NN JJ NNP , NNP NNP CC DT NNS IN NNP , NNP CC NNP VBD DT NN VBG NNP POS `` JJ NN `` TO VB PRP$ JJ NNS . A young Egyptian woman died from bird flu Tuesday . DT JJ JJ NN VBD IN NN NN NNP . Egypt 's MENA news agency quotes the health ministry as saying the 25-year-old woman from Fayyum died in a Giza hospital south of the capital , Cairo . NNP POS NNP NN NN VBZ DT NN NN IN VBG DT JJ NN IN NNP VBD IN DT NNP NN NN IN DT NN , NNP . Of the 44 bird flu cases confirmed in Egypt , 20 have been fatal . IN DT CD NN NN NNS VBN IN NNP , CD VBP VBN JJ . Most of the fatalities have been women or girls whose families raise poultry , which brings them into daily contact with chickens or turkeys . JJS IN DT NNS VBP VBN NNS CC NNS WP$ NNS VBP NN , WDT VBZ PRP IN JJ NN IN NNS CC NNS . Close to five million Egyptian households depend on poultry for food or income . JJ TO CD CD JJ NNS VBP IN NN IN NN CC NN . The government says this makes it unlikely the disease can be eradicated , despite a large-scale poultry vaccination program . DT NN VBZ DT VBZ PRP JJ DT NN MD VB VBN , IN DT JJ NN NN NN . Representatives from Iraq 's main Shi'ite and Kurdish political factions are meeting to negotiate a final agreement on a new governing coalition . NNS IN NNP POS JJ NNP CC NNP JJ NNS VBP VBG TO VB DT JJ NN IN DT JJ NN NN . News reports say Shi'ites are seeking Kurdish support for a power-sharing deal that also addresses Kurdish claims to oil-rich northern areas . NNP NNS VBP NNS VBP VBG JJ NN IN DT JJ NN WDT RB VBZ JJ NNS TO JJ JJ NNS . Details could not be confirmed . NNS MD RB VB VBN . The majority Shi'ite Muslim alliance wants Ibrahim al-Jaafari as prime minister . DT NN NNP NNP NN VBZ NNP NNP IN JJ NN . Kurdish officials have lobbied for a top role for their leader , Jalal Talabani . NNP NNS VBP VBN IN DT JJ NN IN PRP$ NN , NNP NNP . Because no party holds a two-thirds majority in parliament , lawmakers must form a coalition to approve a new government . IN DT NN VBZ DT JJ NN IN NN , NNS MD VB DT NN TO VB DT JJ NN . Officials say even if they do not agree , parliament will convene March 16th - the 17th anniversary of Saddam Hussein 's notorious chemical weapons attack on the Kurdish town of Halabja . NNS VBP RB IN PRP VBP RB VB , NN MD VB NNP CD IN DT JJ NN IN NNP NNP POS JJ NN NNS NN IN DT JJ NN IN NNP . Unidentified gunmen have fired on a car carrying a Czech diplomat in Afghanistan , injuring his two bodyguards . JJ NNS VBP VBN IN DT NN VBG DT JJ NN IN NNP , VBG PRP$ CD NNS . Filip Velach , the Czech charge d'affaires , was not hurt in the attack which took place about 100 kilometers outside the capital , Kabul . NNP NNP , DT JJ NN NNS , VBD RB VBN IN DT NN WDT VBD NN IN CD NNS IN DT NN , NNP . The three sought safety in a house and were later rescued by NATO 's International Security Assistance Force . DT CD VBD NN IN DT NN CC VBD RB VBN IN NNP POS NNP NNP NNP NNP . Last month , the Czech Republic opened a diplomatic office in Kabul , headed by Velach . JJ NN , DT JJ NNP VBD DT JJ NN IN NNP , VBN IN NNP . More than 150 Czech troops are currently serving in Afghanistan . JJR IN CD JJ NNS VBP RB VBG IN NNP . Russian officials say the deadly H5N1 strain of the bird flu virus has killed more than 1,00,000 birds on a poultry farm in southern Russia . JJ NNS VBP DT JJ NNP NN IN DT NN NN NN VBZ VBN JJR IN CD NNS IN DT NN NN IN JJ NNP . The governor , Alexander Tkachev , of the Krasnodar region said Tuesday that the farm has been quarantined and other measures have been ordered to stop the spread of the virus . DT NN , NNP NNP , IN DT NNP NN VBD NNP IN DT NN VBZ VBN VBN CC JJ NNS VBP VBN VBN TO VB DT NN IN DT NN . In Paris , the World Organization for Animal Health warned that the H5N1 virus would likely spread across Europe after being found at a French poultry farm . IN NNP , DT NNP NNP IN NNP NNP VBD IN DT NNP NN MD RB VB IN NNP IN VBG VBN IN DT JJ NN NN . Officials were holding a second day of talks in the French capital to discuss mass vaccinations and other efforts to combat the illness . NNS VBD VBG DT JJ NN IN NNS IN DT JJ NN TO VB JJ NNS CC JJ NNS TO VB DT NN . Meanwhile , Swedish authorities say wild ducks in southern Sweden have been found with the H5 strain of bird flu . RB , JJ NNS VBP JJ NNS IN JJ NNP VBP VBN VBN IN DT NNP NN IN NN NN . And Pakistani authorities today culled at least 15,000 chickens infected with the H5 strain in North West Frontier province . CC JJ NNS NN VBN IN JJS CD NNS VBN IN DT NNP NN IN NNP NNP NNP NN . Palestinian witnesses say Israeli forces have killed at least four militants during a raid in the southern Gaza Strip . JJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS IN DT NN IN DT JJ NNP NNP . Israeli troops and tanks entered the Khan Younis refugee camp early Thursday , in an operation the army says is aimed at stopping Palestinian militants ' mortar and rocket attacks on nearby Jewish settlements . JJ NNS CC NNS VBD DT NNP NNP NN NN RB NNP , IN DT NN DT NN VBZ VBZ VBN IN VBG JJ NNS POS NN CC NN NNS IN JJ JJ NNS . Meanwhile , Israel 's Deputy Prime Minister Ehud Olmert told the Jerusalem Post that Israel should follow up next year 's planned pullout from the Gaza Strip with a much larger withdrawal from the West Bank . RB , NNP POS NNP NNP NNP NNP NNP VBD DT NNP NNP IN NNP MD VB RP JJ NN POS JJ NN IN DT NNP NNP IN DT JJ JJR NN IN DT NNP NNP . Mr. Olmert said he believes such a move would be in Israel 's interest . NNP NNP VBD PRP VBZ PDT DT NN MD VB IN NNP POS NN . On Wednesday , interim Palestinian leader Mahmoud Abbas called on Israel to dismantle its separation barrier along the West Bank . IN NNP , JJ JJ NN NNP NNP VBD IN NNP TO VB PRP$ NN NN IN DT NNP NNP . Mr. Abbas is running in the January 9 presidential election to succeed the late Yasser Arafat . NNP NNP VBZ VBG IN DT NNP CD JJ NN TO VB DT JJ NNP NNP . Uganda 's President Yoweri Museveni says he is open to new peace talks with northern rebels , but only if the meetings take place outside the country . NNP POS NNP NNP NNP VBZ PRP VBZ JJ TO JJ NN NNS IN JJ NNS , CC RB IN DT NNS VBP NN IN DT NN . Speaking in Gulu district on Sunday , Mr. Museveni said government troops in the meantime will press ahead with attacks on rebels in northern Uganda and parts of Sudan . VBG IN NNP NN IN NNP , NNP NNP VBD NN NNS IN DT NN MD VB RB IN NNS IN NNS IN JJ NNP CC NNS IN NNP . Uganda 's government has called on rebels of the Lord 's Resistance Army to surrender , saying they will be forgiven . NNP POS NN VBZ VBN IN NNS IN DT NNP POS NNP NNP TO VB , VBG PRP MD VB VBN . A cease-fire between the government and rebels expired Friday , after the two sides failed to advance a peace process . DT NN IN DT NN CC NNS VBD NNP , IN DT CD NNS VBD TO VB DT NN NN . Officials criticized rebel leaders , who said they needed more time for internal discussions on ending the conflict . NNS VBD JJ NNS , WP VBD PRP VBD JJR NN IN JJ NNS IN VBG DT NN . The rebels have been fighting to overthrow the Ugandan government since 1987 . DT NNS VBP VBN VBG TO VB DT JJ NN IN CD . Hungary has become the second country to ratify the European Union 's constitution . NNP VBZ VBN DT JJ NN TO VB DT NNP NNP POS NN . In Budapest Monday , the Hungarian parliament voted overwhelmingly to approve the pact , which aims to streamline the workings of the 25-member bloc . IN NNP NNP , DT JJ NN VBD RB TO VB DT NN , WDT VBZ TO VB DT NNS IN DT JJ NN . Hungary , which entered the European Union on May 1 , joins Lithuania as the only countries that have ratified the EU constitution . NNP , WDT VBD DT NNP NNP IN NNP CD , VBZ NNP IN DT JJ NNS WDT VBP VBN DT NNP NN . The text has been accepted by leaders of all member states , but must still be ratified by each country before it comes into force . DT NN VBZ VBN VBN IN NNS IN DT NN NNS , CC MD RB VB VBN IN DT NN IN PRP VBZ IN NN . The constitution will create an EU president and foreign minister . DT NN MD VB DT NNP NN CC JJ NN . It is aimed at speeding up decision-making by ending national vetoes in certain policy areas , including the economy , the judiciary and education . PRP VBZ VBN IN VBG RP NN IN VBG JJ NNS IN JJ NN NNS , VBG DT NN , DT NN CC NN . North Korea is denying suggestions it may be helping Syria develop a nuclear weapons facility . NNP NNP VBZ VBG NNS PRP MD VB VBG NNP VB DT JJ NNS NN . The North Korean Foreign Ministry Tuesday dismissed U.S. media reports that Pyongyang has secretly offered nuclear cooperation to Syria . DT JJ JJ NNP NNP NNP VBD NNP NNS NNS IN NNP VBZ RB VBN JJ NN TO NNP . The Washington Post newspaper reported last week that U.S. intelligence has acquired information , including satellite photos , indicating North Korea may be cooperating with Syria on some sort of nuclear facility . DT NNP NNP NN VBD JJ NN IN NNP NN VBZ VBN NN , VBG NN NNS , VBG NNP NNP MD VB VBG IN NNP IN DT NN IN JJ NN . The information is said to have been provided mostly by Israel . DT NN VBZ VBN TO VB VBN VBN RB IN NNP . North Korea tested a nuclear weapon last year , but has since cooperated in six-nation talks aimed at ending its nuclear weapons program . NNP NNP VBD DT JJ NN JJ NN , CC VBZ IN VBN IN JJ NNS VBN IN VBG PRP$ JJ NNS NN . China announced this week that six-party talks scheduled for Wednesday have been postponed . NNP VBD DT NN IN JJ NNS VBN IN NNP VBP VBN VBN . It did not give a reason for the change . PRP VBD RB VB DT NN IN DT NN . A North Korean Foreign Ministry delegation arrived in Beijing Tuesday for talks with government officials . DT JJ JJ JJ NNP NN VBD IN NNP NNP IN NNS IN NN NNS . It is unclear whether the visit is aimed at sorting out a date for the nuclear negotiations . PRP VBZ JJ IN DT NN VBZ VBN IN VBG RP DT NN IN DT JJ NNS . Iraqi police say gunmen wearing Iraqi special forces uniforms have kidnapped a wealthy businessman and his son , after killing five of their bodyguards . JJ NNS VBP NNS VBG JJ JJ NNS NNS VBP VBN DT JJ NN CC PRP$ NN , IN VBG CD IN PRP$ NNS . Police Friday say Ghalib Abdul Hussein Kubba , director-general of the Basra International Bank , was abducted from his home in western Baghdad late Thursday , along with his son . NNS NNP VBP NNP NNP NNP NNP , NN IN DT NNP NNP NNP , VBD VBN IN PRP$ NN IN JJ NNP JJ NNP , IN IN PRP$ NN . Officers say no demands have been made so far . NNS VBP DT NNS VBP VBN VBN RB RB . In northern Baghdad , police say they discovered the bodies of at least three unidentified men who had been shot dead . IN JJ NNP , NNS VBP PRP VBD DT NNS IN IN JJS CD JJ NNS WP VBD VBN VBN JJ . Elsewhere , insurgents have blown up an oil pipeline , sabotaging oil delivery . RB , NNS VBP VBN RP DT NN NN , VBG NN NN . In other developments , a White House spokesman Friday stressed that Iraqi police forces must adhere to the highest human rights standards . IN JJ NNS , DT NNP NNP NN NNP VBD IN JJ NN NNS MD VB TO DT JJS JJ NNS NNS . The comments come as Iraq 's interior ministry investigates allegations that death squads are operating within the police force and targeting Sunni Arabs . DT NNS VBP IN NNP POS JJ NN VBZ NNS IN NN NNS VBP VBG IN DT NN NN CC VBG NNP NNS . Turkey has reaffirmed its commitment to meet standards for European Union membership , after critics said momentum toward that goal had slowed . NNP VBZ VBN PRP$ NN TO VB NNS IN NNP NNP NN , IN NNS VBD NN IN DT NN VBD VBN . Following meetings Monday in Ankara with EU diplomats , Foreign Minister Abdullah Gul denied that Turkish commitment to joining the Union is lagging . VBG NNS NNP IN NNP IN NNP NNS , NNP NNP NNP NNP VBD IN JJ NN TO VBG DT NNP VBZ VBG . Also speaking after the talks , Luxembourg Deputy Foreign Minister Nicolas Schmit , whose country currently holds the rotating EU presidency , said that Turkey must continue to implement reforms . RB VBG IN DT NNS , NNP NNP NNP NNP NNP NNP , WP$ NN RB VBZ DT VBG NNP NN , VBD IN NNP MD VB TO VB NNS . Turkey has yet to sign a customs pact that it agreed to in December . NNP VBZ RB TO VB DT NNS NN IN PRP VBD TO IN NNP . The pact includes Cyprus , but does not require Ankara to officially recognize the Greek Cypriot government on the divided island . DT NN VBZ NNP , CC VBZ RB VB NNP TO RB VB DT JJ JJ NN IN DT VBN NN . The European Union has indicated that Turkish goodwill gestures involving the divided island , which joined the EU last May , could help Ankara when it begins EU membership talks in October . DT NNP NNP VBZ VBN IN JJ NN NNS VBG DT VBN NN , WDT VBD DT NNP JJ NNP , MD VB NNP WRB PRP VBZ NNP NN NNS IN NNP . A senior Thai minister says the United States has neither operated a secret jail in Thailand for terror suspects nor used the country as a transfer point for such suspects . DT JJ JJ NN VBZ DT NNP NNPS VBZ RB VBN DT JJ NN IN NNP IN NN NNS CC VBD DT NN IN DT NN NN IN JJ NNS . U.S.-based ABC News and The Washington Post have reported that secret U.S. Central Intelligence Agency jails have existed since March 2002 when the first was created in Thailand . JJ NNP NNP CC DT NNP NNP VBP VBN IN JJ NNP NNP NNP NNP NNS VBP VBN IN NNP CD WRB DT NN VBD VBN IN NNP . ABC said Tuesday the Thai jail was established following the capture in Pakistan of Abu Zabayda , who was sent to a vacant warehouse on an air base in Thailand . NNP VBD NNP DT JJ NN VBD VBN VBG DT NN IN NNP IN NNP NNP , WP VBD VBN TO DT JJ NN IN DT NN NN IN NNP . Thailand 's Deputy Prime Minister and Justice Minister Chitchai Wannasathit Wednesday denied the reports . NNP POS NNP NNP NNP CC NNP NNP NNP NNP NNP VBD DT NNS . He said no prisoner was brought to Thailand from Pakistan in 2002 . PRP VBD DT NN VBD VBN IN NNP IN NNP IN CD . China is reporting a new outbreak of bird flu in poultry in the northwest Xinjiang region . NNP VBZ VBG DT JJ NN IN NN NN IN NN IN DT JJS NN NN . Agriculture ministry officials said Thursday the virus responsible for the 11 dead birds in Turpan city has been confirmed as the highly contagious H5N1 type . NNP NN NNS VBD NNP DT NN JJ IN DT CD JJ NNS IN NNP NN VBZ VBN VBN IN DT RB JJ NNP NN . More than 5,000 birds have been culled to contain the new outbreak . JJR IN CD NNS VBP VBN VBN TO VB DT JJ NN . In Indonesia , agriculture officials say hundreds of chickens infected with the most deadly strain of avian influenza have died in three districts in Aceh . IN NNP , NN NNS VBP NNS IN NNS VBN IN DT RBS JJ NN IN JJ NN VBP VBN IN CD NNS IN NNP . In Vietnam , public health officials say a 15-year-old boy from the northern port city of Haiphong has tested positive for the same H5N1 strain of the flu virus . IN NNP , JJ NN NNS VBP DT JJ NN IN DT JJ JJ NN IN NNP VBZ VBN JJ IN DT JJ NNP NN IN DT NN NN . The findings have not yet been confirmed by the World Health Organization . DT NNS VBP RB RB VBN VBN IN DT NNP NNP NNP . Nearly 70 people have died from bird flu in Asia since 2003 . RB CD NNS VBP VBN IN NN NN IN NNP IN CD . All known human cases of avian flu are believed to have resulted from close contact with infected birds . DT VBN JJ NNS IN JJ NN VBP VBN TO VB VBN IN JJ NN IN JJ NNS . The Basque separatist group ETA says it plans to continue its militant campaign against Spain to further its goals . DT NNP NN NN NNP VBZ PRP VBZ TO VB PRP$ JJ NN IN NNP TO VB PRP$ NNS . In a statement issued Sunday , ETA said a peace process begun by Spanish Prime Minister Jose Luis Rodriguez Zapatero offered no political solutions and sought only the defeat of the separatists . IN DT NN VBN NNP , NNP VBD DT NN NN VBN IN JJ NNP NNP NNP NNP NNP NNP VBD DT JJ NNS CC VBD RB DT NN IN DT NNS . ETA also claimed responsibility for a small explosion on July 25th as the Tour de France bicycle race went through the northern town of Navarro , a stronger blast against a civil guard barracks in the northern town of Durango in August and two other explosions that month . NNP RB VBD NN IN DT JJ NN IN NNP CD IN DT NNP NNP NNP NN NN VBD IN DT JJ NN IN NNP , DT JJR NN IN DT JJ NN NNS IN DT JJ NN IN NNP IN NNP CC CD JJ NNS IN NN . ETA declared a cease-fire in March of 2006 but , called it off in June , blaming the government for a breakdown in negotiations . NNP VBD DT NN IN NNP IN CD CC , VBD PRP RP IN NNP , VBG DT NN IN DT NN IN NNS . Colombian police have deactivated a parcel bomb delivered to the home of a lawmaker allied with President Alvaro Uribe . JJ NNS VBP VBN DT NN NN VBN TO DT NN IN DT NN VBN IN NNP NNP NNP . Authorities say the package resembled a book and was sent to Armando Benedetti 's home Thursday night . NNS VBP DT NN VBD DT NN CC VBD VBN TO NNP NNP POS NN NNP NN . Benedetti and his aides called police when they noticed something suspicious about the package , which contained an incendiary substance . NNP CC PRP$ NNS VBD NNS WRB PRP VBD DT JJ IN DT NN , WDT VBD DT JJ NN . Investigators announced a $ 25,000 reward for information leading to the arrest of the person or persons who sent the package . NNS VBD DT $ CD NN IN NN VBG TO DT NN IN DT NN CC NNS WP VBD DT NN . The incident happened one day after a similar package was sent to a man with the same name as former Defense Minister Rafael Pardo . DT NN VBD CD NN IN DT JJ NN VBD VBN TO DT NN IN DT JJ NN IN JJ NNP NNP NNP NNP . The lawyer for a group of Pakistani men who say they were kidnapped and tortured by Greek and British agents after the July bomb attacks in London have filed suit against the alleged intelligence officers . DT NN IN DT NN IN JJ NNS WP VBP PRP VBD VBN CC VBN IN JJ CC JJ NNS IN DT NNP NN NNS IN NNP VBP VBN NN IN DT JJ NN NNS . The lawyer , Frangiskos Ragoussis , representing at least 27 men who say they were taken from homes in Greece says the suit is against agents identified in a recent story published by an Athens newspaper . DT NN , NNP NNP , VBG IN JJS CD NNS WP VBP PRP VBD VBN IN NNS IN NNP VBZ DT NN VBZ IN NNS VBN IN DT JJ NN VBN IN DT NNP NN . The governments of Greece , Britain and Pakistan have denied the allegations , but Greek lawmakers have called for an investigation . DT NNS IN NNP , NNP CC NNP VBP VBN DT NNS , CC JJ NNS VBP VBN IN DT NN . The attacks on the London public transportation system killed at least 52 people . DT NNS IN DT NNP JJ NN NN VBN IN JJS CD NNS . Mary J. Blige , Jamie Foxx , and Jennifer Hudson were among the winners at the 21st annual Soul Train Music Awards , held March 10 in Pasadena , California . NNP NNP NNP , NNP NNP , CC NNP NNP VBD IN DT NNS IN DT CD JJ NNP NNP NNP NNP , VBN NNP CD IN NNP , NNP . Mary J. Blige took the Best Female Album award for The Breakthrough , while Jamie Foxx brought home Best Male Album honors for Unpredictable . NNP NNP NNP VBD DT JJS NN NNP NN IN DT NNP , IN NNP NNP VBD NN NNP NNP NNP NNS IN JJ . Former American Idol castoff Jennifer Hudson continued her Cinderella story , winning the Entertainer Of The Year award for her supporting role in the movie Dreamgirls . JJ JJ NNP NN NNP NNP VBD PRP$ NNP NN , VBG DT NNP IN DT NN NN IN PRP$ JJ NN IN DT NN NNS . She also received an Academy Award and an NAACP Image Award for her role . PRP RB VBD DT NNP NNP CC DT NNP NNP NNP IN PRP$ NN . A number of senior diplomats are in Washington Monday to mark the 10th anniversary of the Dayton Peace Accords , which ended the war in Bosnia-Herzegovina . DT NN IN JJ NNS VBP IN NNP NNP TO VB DT JJ NN IN DT NNP NNP NNP , WDT VBD DT NN IN NNP . Those attending Monday 's conference on the accords include the head of Bosnia 's joint presidency , Ivo Miro Jovic , and U.N. High Representative Paddy Ashdown . DT VBG NNP POS NN IN DT NNS VBP DT NN IN NNP POS JJ NN , NNP NNP NNP , CC NNP NNP NNP NNP NNP . The 1995 agreement ended a brutal ethnic war that killed more than 2,00,000 people . DT CD NN VBD DT JJ JJ NN WDT VBD JJR IN CD NNS . The accord split the former Yugoslav republic into a Serb Republic and a Muslim-Croat Federation - each with its own government and army . DT NN VBD DT JJ JJ NN IN DT JJ NNP CC DT NNP NNP IN DT IN PRP$ JJ NN CC NN . Bosnian leaders , working with U.S. and European officials , are negotiating a new constitution aimed at simplifying the current arrangement . JJ NNS , VBG IN NNP CC JJ NNS , VBP VBG DT JJ NN VBN IN VBG DT JJ NN . Agreement on the peace accords was reached at a U.S. Air Force base in Dayton , Ohio on November 21 , 1995 . NN IN DT NN NNS VBD VBN IN DT NNP NNP NNP NN IN NNP , NNP IN NNP CD , CD . The accords were signed several weeks later . DT NNS VBD VBN JJ NNS RB . Senegal 's President Abdoulaye Wade says the leaders of Chad and Sudan will sign peace accords next week at a summit in Dakar . NNP POS NNP NNP NNP VBZ DT NNS IN NNP CC NNP MD VB NN NNS JJ NN IN DT NN IN NNP . Mr. Wade told reporters in Paris Friday that Chadian President Idriss Deby and Sudanese President Omar al-Bashir will agree to stop supporting rebel groups on each other 's territory . NNP NNP VBD NNS IN NNP NNP IN JJ NNP NNP NNP CC JJ NNP NNP NNP MD VB TO VB VBG JJ NNS IN DT NN POS NN . He said the signing will take place March 12 , before the start of a summit of Muslim leaders . PRP VBD DT NN MD VB NN NNP CD , IN DT NN IN DT NN IN NNP NNS . Chad has accused Sudan of backing the rebels who attacked Chad 's capital N'Djamena last month . NNP VBZ VBN NNP IN VBG DT NNS WP VBD NNP POS NN NNP JJ NN . Chadian President Deby said earlier Friday that the fighting sparked by that attack killed 700 people . JJ NNP NNP VBD JJR NNP IN DT NN VBN IN DT NN VBD CD NNS . Sudan , for its part , accuses Chad of aiding rebels in Sudan 's war-torn Darfur region . NNP , IN PRP$ NN , VBZ NNP IN VBG NNS IN NNP POS JJ NNP NN . Mr. Deby and Mr. Bashir signed a peace agreement at the urging of Libya in 2006 but the agreement quickly broke down . NNP NNP CC NNP NNP VBD DT NN NN IN DT VBG IN NNP IN CD CC DT NN RB VBD RP . A rights group said Saturday it has received reports that Burma 's army is set to attack a refugee camp near the border with Thailand . DT NNS NN VBD NNP PRP VBZ VBN NNS IN NNP POS NN VBZ VBN TO VB DT NN NN IN DT NN IN NNP . Christian Solidarity Worldwide said more than 1,200 villagers at the Ler Per Her camp just inside Burma 's Karen State have fled across the border into Thailand to avoid possible fighting . NNP NNP NNP VBD JJR IN CD NNS IN DT NNP NNP PRP$ NN RB IN NNP POS NNP NNP VBP VBN IN DT NN IN NNP TO VB JJ NN . The group said more than 1,000 Burmese government troops and the Democratic Karen Buddhist Army - a pro-government militia - are approaching the area and plan to attack the camp Sunday . DT NN VBD JJR IN CD JJ NN NNS CC DT JJ NNP NNP NNP IN DT NN NN : VBP VBG DT NN CC NN TO VB DT NN NNP . The organization did not reveal the source of the reports . DT NN VBD RB VB DT NN IN DT NNS . CSW said it has visited the camp many times , including once earlier this year . NNP VBD PRP VBZ VBN DT NN JJ NNS , VBG RB RBR DT NN . CSW says it received evidence from the camp 's residents about the military government 's policies , which the group says include forced labor , rape , torture , destruction of villages and the use of human minesweepers . NNP VBZ PRP VBD NN IN DT NN POS NNS IN DT JJ NN POS NNS , WDT DT NN VBZ VBP VBN NN , NN , NN , NN IN NNS CC DT NN IN JJ NNS . The death toll from South Asia 's monsoon floods has risen above 2000 , and torrential rains continue to pound several parts of the region . DT NN NN IN NNP NNP POS NN NNS VBZ VBN IN CD , CC JJ NNS VBP TO VB JJ NNS IN DT NN . Floods have affected an estimated 30 million people in India , Bangladesh , Nepal and Pakistan since the start of the monsoon season in June . NNS VBP VBN DT JJ CD CD NNS IN NNP , NNP , NNP CC NNP IN DT NN IN DT NN NN IN NNP . At least 10 people were killed Monday in northern Pakistan when heavy rains caused landslides to cover their homes . IN JJS CD NNS VBD VBN NNP IN JJ NNP WRB JJ NNS VBD NNS TO VB PRP$ NNS . In the Indian state of Bihar Sunday , a man died and at least four others were injured during a riot by several hundred flood victims upset by the lack of aid . IN DT JJ NN IN NNP NNP , DT NN VBD CC IN JJS CD NNS VBD VBN IN DT NN IN JJ CD NN NNS VBN IN DT NN IN NN . The violence came as the state government announced it was scaling back flood relief efforts and ending airdrops of supplies . DT NN VBD IN DT NN NN VBD PRP VBD VBG RP NN NN NNS CC VBG NNS IN NNS . Last week , the United Nations warned of disease outbreaks in the region as rescue workers struggled to deliver food and water to millions of people displaced by floods . JJ NN , DT NNP NNPS VBD IN NN NNS IN DT NN IN NN NNS VBD TO VB NN CC NN TO NNS IN NNS VBN IN NNS . Iraqi officials say four prisoners with links to al-Qaida have escaped from a Baghdad detention center . JJ NNS VBP CD NNS IN NNS TO NNP VBP VBN IN DT NNP NN NN . Officials say the four broke out of a U.S.-controlled section of Karkh Prison , formerly called Camp Cropper , Wednesday night . NNS VBP DT CD VBD IN IN DT JJ NN IN NNP NNP , RB VBD NNP NNP , NNP NN . It is not clear how they managed to escape . PRP VBZ RB JJ WRB PRP VBD TO VB . U.S. officials confirmed the escape , saying the military is working with Iraqi forces to investigate the incident and recapture the individuals involved . NNP NNS VBD DT NN , VBG DT NN VBZ VBG IN JJ NNS TO VB DT NN CC VB DT NNS VBN . In July , the U.S. military handed over control of the Camp Cropper detention center to Iraqi authorities . IN NNP , DT NNP NN VBD IN NN IN DT NNP NNP NN NN TO JJ NNS . The facility houses about 1,500 detainees , but about 200 , including those who escaped , remained in a U.S.-controlled section of the prison . DT NN NNS IN CD NNS , CC IN CD , VBG DT WP VBD , VBD IN DT JJ NN IN DT NN . The U.S. military has suffered one of its single-worst troop losses in Iraq in a roadside bomb blast near the western city of Fallujah . DT NNP NN VBZ VBN CD IN PRP$ JJ NN NNS IN NNP IN DT NN NN NN IN DT JJ NN IN NNP . In a statement Friday , the military said 10 Marines were killed and 11 wounded Thursday while they patrolled the area on foot . IN DT NN NNP , DT NN VBD CD NNS VBD VBN CC CD VBD NNP IN PRP VBD DT NN IN NN . The device that exploded was built from several large artillery shells . DT NN WDT VBD VBD VBN IN JJ JJ NN NNS . U.S. troops have been conducting anti-insurgent operations to secure the area ahead of this month 's parliamentary election . NNP NNS VBP VBN VBG JJ NNS TO VB DT NN RB IN DT NN POS JJ NN . Another Marine was killed in Fallujah earlier this week . DT NN VBD VBN IN NNP RBR DT NN . The U.S. military also reported the deaths of four American soldiers . DT NNP NN RB VBD DT NNS IN CD JJ NNS . Three were killed in a road accident near Balad today , and another died Thursday following a rocket attack in Ramadi . CD VBD VBN IN DT NN NN IN NNP NN , CC DT VBD NNP VBG DT NN NN IN NNP . U.S. and Iraqi troops are conducting joint operations in Ramadi to disrupt al-Qaida-in-Iraq terrorists operating in the Euphrates River Valley . NNP CC JJ NNS VBP VBG JJ NNS IN NNP TO VB JJ NNS VBG IN DT NNP NNP NNP . Lebanese authorities have arrested a senior employee of a Lebanese telecommunications agency on suspicion he is a spy for Israel . JJ NNS VBP VBN DT JJ NN IN DT JJ NN NN IN NN PRP VBZ DT NN IN NNP . The arrest at the state 's largest telecommunications company , Ogero , is the fourth of its kind this year . DT NN IN DT NN POS JJS NN NN , NNP , VBZ DT NN IN PRP$ NN DT NN . Lebanese investigators reportedly intercepted messages between the worker and Israeli contacts . JJ NNS RB VBD NNS IN DT NN CC JJ NNS . The man works in the technical department of the international wing of the telecommunications company . DT NN VBZ IN DT JJ NN IN DT JJ NN IN DT NNS NN . There was no immediate comment from Israel . EX VBD DT JJ NN IN NNP . Hezbollah and other Lebanese factions have alleged that Israeli spies are entrenched throughout Lebanon 's telecommunications sector . NNP CC JJ JJ NNS VBP VBN IN JJ NNS VBP VBN IN NNP POS NN NN . Hezbollah leader Hassan Nasrallah is expected to address the recent espionage findings in a speech Tuesday . NNP NN NNP NNP VBZ VBN TO VB DT JJ NN NNS IN DT NN NNP . More than 50 Lebanese have been arrested since last year in a broad spying investigation linked to Israel . JJR IN CD NNS VBP VBN VBN IN JJ NN IN DT JJ JJ NN VBN TO NNP . The U.S. trade deficit has widened to its highest level in more than a year , as exports fell more than imports . DT NNP NN NN VBZ VBN TO PRP$ JJS NN IN JJR IN DT NN , IN NNS VBD JJR IN NNS . A new report Thursday from the Commerce Department shows the deficit at $ 40.3 billion in April , a slight increase from the previous month . DT JJ NN NNP IN DT NNP NNP VBZ DT NN IN $ CD CD IN NNP , DT JJ NN IN DT JJ NN . Despite an overall fall in U.S. exports of goods and services , the report shows a slight rise in sales of industrial supplies and automobiles . IN DT JJ NN IN NNP NNS IN NNS CC NNS , DT NN VBZ DT JJ NN IN NNS IN JJ NNS CC NNS . A separate report shows the number of Americans filing first-time unemployment claims fell slightly last week - a sign of hope for the struggling U.S. jobs market . DT JJ NN VBZ DT NN IN NNS VBG JJ NN NNS VBD RB JJ NN IN DT NN IN NN IN DT VBG NNP NNS NN . The Labor Department says the number of laid-off workers filing claims fell by 3,000 to a total of 4,56,000 . DT NNP NNP VBZ DT NN IN JJ NNS VBG NNS VBD IN CD TO DT NN IN CD . The report says the number of people continuing to receive jobless benefits after their first week of aid fell by 2,55,000 , the largest decline in over a year . DT NN VBZ DT NN IN NNS VBG TO VB JJ NNS IN PRP$ JJ NN IN NN VBD IN CD , DT JJS NN IN IN DT NN . Justine Henin-Hardenne says she will not play for Belgium 's Fed Cup tennis team when it takes on Russia in the opening round of the women 's team event next year . NNP NNP VBZ PRP MD RB VB IN NNP POS NNP NNP NN NN WRB PRP VBZ IN NNP IN DT NN NN IN DT NNS POS NN NN JJ NN . The world number five Henin-Hardenne said Tuesday that injuries and illness have compromised her 2005 season and she wants to avoid further problems in 2006 . DT NN NN CD NNP VBD NNP IN NNS CC NN VBP VBN PRP$ CD NN CC PRP VBZ TO VB JJ NNS IN CD . After winning the French Open in June , Henin-Hardenne has been troubled by a thigh injury for much of the season . IN VBG DT JJ NN IN NNP , NNP VBZ VBN VBN IN DT NN NN IN NN IN DT NN . The Belgian star says she will concentrate on regaining the world number-one ranking . DT JJ NN VBZ PRP MD VB IN VBG DT NN JJ NN . The announcement is a big blow to Belgium 's Fed Cup hopes because world number three Kim Clijsters announced that she would also skip the competition if Henin-Hardenne does not play . DT NN VBZ DT JJ NN TO NNP POS NNP NNP VBZ IN NN NN CD NNP NNP VBD IN PRP MD RB VB DT NN IN NNP VBZ RB VB . A leader of Taiwan 's largest opposition party is traveling to China Monday in a rare visit to the mainland just days after China passed a controversial anti-secession law . DT NN IN NNP POS JJS NN NN VBZ VBG TO NNP NNP IN DT JJ NN TO DT NN RB NNS IN NNP VBD DT JJ JJ NN . Nationalist Party Vice Chairman Chiang Ping-kun will lead the party 's first official delegation in decades to the southern Chinese city of Ghangzhou to pay homage at the graves of party members who died in an uprising nearly a century ago . NNP NNP NNP NNP NNP NNP MD VB DT NN POS JJ JJ NN IN NNS TO DT JJ JJ NN IN NNP TO VB NN IN DT NNS IN NN NNS WP VBD IN DT NN RB DT NN RB . The group will also visit the grave of Nationalist party leader Sun Yat Sen in Nangjing . DT NN MD RB VB DT NN IN JJ NN NN NNP NNP NNP IN NNP . The Nationalist party is seen as closer to Beijing than Taiwan 's ruling Democratic Progressive party . DT NNP NN VBZ VBN IN JJR TO NNP IN NNP POS NN JJ NNP NN . Reports say the trip is aimed at reducing tension over China 's new anti-secession law , which authorizes China use force on Taiwan if it declares independence . NNS VBP DT NN VBZ VBN IN VBG NN IN NNP POS JJ JJ NN , WDT VBZ NNP NN NN IN NNP IN PRP VBZ NN . View flash slideshow narrated by Sgt. Roche VB NN NN VBN IN NNP NNP US Army Sergeant Joe Roche served in Baghdad for 15 months with the 16th Engineer Battalion of the 1st Armored Division . NNP NNP NNP NNP NNP VBD IN NNP IN CD NNS IN DT JJ NNP NNP IN DT CD NNP NNP . His unit worked on helping rebuild Iraq 's infrastructure , including schools and sewage systems , while fighting insurgents and terrorists . PRP$ NN VBD IN VBG VB NNP POS NN , VBG NNS CC NN NNS , IN VBG NNS CC NNS . His unit also helped train new Iraqi soldiers . PRP$ NN RB VBD VB JJ JJ NNS . The following are pictures he took during his stay in Iraq . DT VBG VBP NNS PRP VBD IN PRP$ NN IN NNP . Every two years , the Whitney Museum of American Art in New York City mounts an exhibition of new art made in the U.S. DT CD NNS , DT NNP NNP IN NNP NNP IN NNP NNP NNP VBZ DT NN IN JJ NN VBN IN DT NNP The show aims to survey contemporary art 's newest trends and methods . DT NN VBZ TO VB JJ NN POS JJS NNS CC NNS . Not surprisingly , given its influence on young artists and art markets , the result is often controversial . RB RB , VBN PRP$ NN IN JJ NNS CC NN NNS , DT NN VBZ RB JJ . Some have taken to calling it the show that people love to hate . DT VBP VBN TO VBG PRP DT NN IN NNS VBP TO VB . The Whitney 's 2008 Biennial , its 74th , continues that tradition . DT NNP POS CD NNP , PRP$ NN , VBZ IN NN . VOA 's Carolyn Weaver reports . NNP POS NNP NNP VBZ . Chinese state media says Beijing has established a company to manufacture passenger jumbo jets . JJ NN NNS VBZ NNP VBZ VBN DT NN TO VB NN JJ NNS . The Xinhua news agency says the Commercial Aircraft Corporation of China was established in Shanghai Sunday . DT NNP NN NN VBZ DT NNP NNP NNP IN NNP VBD VBN IN NNP NNP . Xinhua said the company will be responsible for researching , developing , manufacturing and marketing large passenger aircraft . NNP VBD DT NN MD VB JJ IN VBG , VBG , VBG CC VBG JJ NN NN . The news agency said the central government and China 's two largest aircraft manufacturing and servicing companies are among the major shareholders . DT NN NN VBD DT JJ NN CC NNP POS CD JJS NN NN CC NN NNS VBP IN DT JJ NNS . The company was launched with capital of $ 2.7 billion . DT NN VBD VBN IN NN IN $ CD CD . Ukraine 's parliament has opened an emergency session to debate the country 's disputed presidential runoff election . NNP POS NN VBZ VBN DT NN NN TO VB DT NN POS JJ JJ NN NN . Lawmakers meeting Saturday do not have the power to overturn last Sunday 's vote . NNS VBG NNP VBP RB VB DT NN TO VB JJ NNP POS NN . But their evaluation of the situation could influence the Supreme Court when it meets on Monday to consider reports by the opposition and international monitors of widespread election fraud . CC PRP$ NN IN DT NN MD VB DT NNP NNP WRB PRP VBZ IN NNP TO VB NNS IN DT NN CC JJ NNS IN JJ NN NN . Also due to meet Saturday , is a multilateral committee tasked with resolving the political stalemate . RB JJ TO VB NNP , VBZ DT JJ NN VBN IN VBG DT JJ NN . It comprises representatives of both candidates - opposition challenger Viktor Yushchenko , and Moscow-backed Prime Minister Viktor Yanukovych . PRP VBZ NNS IN DT NNS IN NN NN NNP NNP , CC JJ NNP NNP NNP NNP . Late Friday , Mr. Yushchenko called for fresh elections on December 12 as he addressed thousands of supporters who have been demonstrating in Kiev since Sunday . RB NNP , NNP NNP VBD IN JJ NNS IN NNP CD IN PRP VBD NNS IN NNS WP VBP VBN VBG IN NNP IN NNP . Disputed official results indicate the pro-Western politician narrowly lost the runoff . JJ JJ NNS VBP DT JJ NN RB VBD DT NN . Iraqi police in the city of Samarra say an explosion has damaged an ancient Islamic monument . JJ NN IN DT NN IN NNP VBP DT NN VBZ VBN DT JJ JJ NN . Police say insurgents caused an explosion Friday in the top section of the six-story Malwiya mosque tower , leaving a jagged hole and debris on the upper part of the structure . NNS VBP NNS VBD DT NN NNP IN DT JJ NN IN DT JJ NNP NN NN , VBG DT JJ NN CC NN IN DT JJ NN IN DT NN . The tower is very important in Islamic architecture . DT NN VBZ RB JJ IN JJ NN . It is one of only three spiral minarets in the world and was built of brick and clay during the Abbassid dynasty in the 9th century . PRP VBZ CD IN RB CD JJ NNS IN DT NN CC VBD VBN IN NN CC NN IN DT NNP NN IN DT JJ NN . In other news , the police chief , Colonel Hatem Rashid Mohammad in Balad Ruz , northeast of Baghdad , was ambushed and killed along with another police officer . IN JJ NN , DT NN NN , NNP NNP NNP NNP IN NNP NNP , NN IN NNP , VBD VBN CC VBN IN IN DT NN NN . And , Sunni Muslim clerics issued a religious edict ( fatwa ) encouraging Iraqis to join the country 's police and army . CC , NNP NNP NNS VBD DT JJ NN LRB NN RRB VBG NNS TO VB DT NN POS NN CC NN . Stronger Iraqi forces could help quell the Sunni-led insurgency . NNP JJ NNS MD VB VB DT JJ NN . Economic ministers and senior leaders open a three-day conference in Ghana 's capital of Accra Sunday on the effectiveness of donor aid to developing countries . JJ NNS CC JJ NNS VBP DT JJ NN IN NNP POS NN IN NNP NNP IN DT NN IN NN NN TO VBG NNS . The Accra High-Level Forum on Aid Effectiveness will gauge progress since a similar meeting in Paris in 2005 . DT NNP NNP NNP IN NNP NNP MD VB NN IN DT JJ NN IN NNP IN CD . The conference was organized by the World Bank , the Organization for Economic Cooperation and Development and the government of Ghana . DT NN VBD VBN IN DT NNP NNP , DT NNP IN NNP NNP CC NNP CC DT NN IN NNP . It will look at making aid contributions more transparent and at ways of allowing countries which receive aid to channel the money through their national budgets to better manage it . PRP MD VB IN VBG NN NNS RBR JJ CC IN NNS IN VBG NNS WDT VBP NN TO VB DT NN IN PRP$ JJ NNS TO RBR VB PRP . Representatives will also address the practice of donor nations providing aid based on economic requirements they expect the recipient nations to follow . NNS MD RB VB DT NN IN NN NNS VBG NN VBN IN JJ NNS PRP VBP DT JJ NNS TO VB . Critics say the conditions often reduce the effectiveness of the aid countries receive . NNS VBP DT NNS RB VBP DT NN IN DT NN NNS VBP . Embattled federal emergency management chief Michael Brown has been relieved of his duties managing the massive hurricane relief effort along the U.S. Gulf Coast . VBN JJ NN NN NN NNP NNP VBZ VBN VBN IN PRP$ NNS VBG DT JJ NN NN NN IN DT NNP NNP NNP . Homeland Security Secretary Michael Chertoff Friday in Baton Rouge said Coast Guard Vice Admiral Thad Allen will take charge of federal operations in the region . NNP NNP NNP NNP NNP NNP IN NNP NNP VBD NNP NNP NNP NNP NNP NNP MD VB NN IN JJ NNS IN DT NN . Admiral Allen has been overseeing the rescue and recovery efforts in the devastated city of New Orleans . NNP NNP VBZ VBN VBG DT NN CC NN NNS IN DT JJ NN IN NNP NNP . Mr. Chertoff said Mr. Brown will return to Washington to oversee the Federal Emergency Management Agency 's operations nationwide . NNP NNP VBD NNP NNP MD VB TO NNP TO VB DT NNP NNP NNP NNP POS NNS JJ . A number of congressional leaders and Louisiana officials have fiercely criticized the federal government 's initial response to the disaster and have called on President Bush to fire Mr. Brown . DT NN IN JJ NNS CC NNP NNS VBP RB VBN DT JJ NN POS JJ NN TO DT NN CC VBP VBN IN NNP NNP TO VB NNP NNP . Several Democratic Senators said recalling Mr. Brown to oversee the emergency management agency in Washington is a bad decision . JJ JJ NNS VBD VBG NNP NNP TO VB DT NN NN NN IN NNP VBZ DT JJ NN . They say his continued presence in the critical position endangers the success of recovery efforts . PRP VBP PRP$ JJ NN IN DT JJ NN VBZ DT NN IN NN NNS . Pope Benedict has declared Sunday a special day of prayer for Middle East peace . NNP NNP VBZ VBN NNP DT JJ NN IN NN IN NNP NNP NN . He also renewed an appeal for an immediate ceasefire between Israel and the Hezbollah guerrillas in Lebanon . PRP RB VBD DT NN IN DT JJ NN IN NNP CC DT NNP NNS IN NNP . Benedict issued his plea as he spoke to thousands of pilgrims at his summer retreat in the Italian Alps . NNP VBD PRP$ NN IN PRP VBD TO NNS IN NNS IN PRP$ NN NN IN DT NNP NNP . The pontiff reiterated statements supporting Lebanon 's sovereignty and Israel 's right to live in peace . DT NN VBD NNS VBG NNP POS NN CC NNP POS NN TO VB IN NN . He expressed a special closeness to what he called the ' defenseless civilian populations unjustly hit in a conflict in which they are only victims . ' PRP VBD DT JJ NN TO WP PRP VBD DT `` JJ JJ NNS RB VBD IN DT NN IN WDT PRP VBP RB NNS . `` He said those victims include those in northern Israel forced to live in shelters to avoid Hezbollah rocket attacks , and ' the multitudes of Lebanese who once again are seeing their country destroyed . ' PRP VBD DT NNS VBP DT IN JJ NNP VBN TO VB IN NNS TO VB NNP NN NNS , CC `` DT NNS IN NNS WP RB RB VBP VBG PRP$ NN VBD . `` Every few seconds , someone somewhere needs blood . DT JJ NNS , DT RB VBZ NN . It could be someone who has suffered a traumatic injury , in an accident or a war , or someone who needs a transfusion to help survive an illness . PRP MD VB DT WP VBZ VBN DT JJ NN , IN DT NN CC DT NN , CC DT WP VBZ DT NN TO VB VB DT NN . VOA 's Carol Pearson explains . NNP POS NNP NNP VBZ . Iranians have marked the 22nd anniversary of the U.S. downing of an Iranian passenger jet with a ceremony at the site where the plane crashed . NNS VBP VBN DT JJ NN IN DT NNP NN IN DT JJ NN NN IN DT NN IN DT NN WRB DT NN VBD . Family members of the 290 people killed were among those who gathered in Persian Gulf waters Saturday , where they laid flowers in memory of Flight 655 victims . NN NNS IN DT CD NNS VBN VBD IN DT WP VBD IN NNP NNP NNS NNP , WRB PRP VBD NNS IN NN IN JJ CD NNS . A statement from President Mahmoud Ahmadinejad was read at the ceremony . DT NN IN NNP NNP NNP VBD VBN IN DT NN . He called the downing a ' tragic human catastrophe ' that was ' not an understandable incident ' but a ' declaration of war against humanity . ' PRP VBD DT VBG DT `` JJ JJ NN `` WDT VBD `` RB DT JJ NN `` CC DT `` NN IN NN IN NN . `` The USS Vincennes shot down the passenger plane on July 3 , 1988 , shortly after the aircraft took off from the Iranian city of Bandar Abbas for Dubai in the United Arab Emirates . DT NNP NNP VBD IN DT NN NN IN NNP CD , CD , RB IN DT NN VBD RP IN DT JJ NN IN NNP NNP IN NNP IN DT NNP NNP NNPS . The U.S. said it mistook the airliner for a hostile Iranian fighter jet . DT NNP VBD PRP VBD DT NN IN DT JJ JJ NN NN . The U.S. paid Iran more than $ 100 million in compensation as part of a 1996 settlement . DT NNP VBD NNP JJR IN $ CD CD IN NN IN NN IN DT CD NN . The U.S. military says violence in Iraq has killed three American soldiers near the southern port city of Basra . DT NNP NN VBZ NN IN NNP VBZ VBN CD JJ NNS IN DT JJ JJ NN IN NNP . A statement released Friday says the troops were killed during an attack on a coalition base . DT NN VBN NNP VBZ DT NNS VBD VBN IN DT NN IN DT NN NN . The statement says the troops were killed by ' indirect fire ' late Thursday . DT NN VBZ DT NNS VBD VBN IN `` JJ NN `` JJ NNP . The U.S. military often refers to mortar and rocket attacks as ' indirect fire ' . DT NNP NN RB VBZ TO NN CC NN NNS IN `` JJ NN `` . Violence in the region has dropped sharply since coalition and Iraqi forces moved to take control of Basra from Shi'ite militias last year . NN IN DT NN VBZ VBN RB IN NN CC JJ NNS VBD TO VB NN IN NNP IN NNP NNS JJ NN . On Tuesday , the top U.S. military commander in southern Iraq Colonel Butch Kievenaar warned that some of the Shi'ite fighters who fled to Iran have started to return to the area . IN NNP , DT JJ NNP JJ NN IN JJ NNP NNP NNP NNP VBD IN DT IN DT NNP NNS WP VBD TO NNP VBP VBN TO VB TO DT NN . Teams that have qualified for the upcoming World Cup football finals next month in Germany continue to practice in friendly international games . NNS WDT VBP VBN IN DT JJ NNP NNP NN NNS JJ NN IN NNP VBP TO VB IN JJ JJ NNS . Croatia and visiting Iran played to a 02-Feb draw Sunday . NNP CC VBG NNP VBD TO DT JJ NN NNP . Host Ukraine scored a 4-0 win over Costa Rica . NNP NNP VBD DT JJ NN IN NNP NNP . Ukraine is appearing in its first World Cup while Costa Rica will face host Germany in the World Cup opener on June 9 in Munich . NNP VBZ VBG IN PRP$ JJ NNP NNP IN NNP NNP MD VB NN NNP IN DT NNP NNP NN IN NNP CD IN NNP . Playing Sunday in Hamburg , Estonia and Turkey played to a 01-Jan draw . VBG NNP IN NNP , NNP CC NNP VBD TO DT JJ NN . In Madrid , Macedonia was a 02-Jan winner over Ecuador . IN NNP , NNP VBD DT JJ NN IN NNP . Mali beat Morocco , 1-0 , in a game played in Paris . NNP VBD NNP , CD , IN DT NN VBN IN NNP . The United States hosts Latvia in a game later Sunday as part of a three-match friendly warmup before the U.S. team heads to Germany . DT NNP NNPS VBZ NNP IN DT NN RB NNP IN NN IN DT JJ JJ NN IN DT NNP NN VBZ TO NNP . The Sudanese government has arrested at least 14 military and security officials for alleged crimes in Darfur - the first such arrests in the conflict there . DT JJ NN VBZ VBN IN JJS CD JJ CC NN NNS IN JJ NNS IN NNP IN DT JJ JJ NNS IN DT NN RB . Sudan 's Justice Minister , Ali Mohamed Osman Yassin , said Monday the detainees are accused of crimes that include rape and murder . NNP POS NNP NNP , NNP NNP NNP NNP , VBD NNP DT NNS VBP VBN IN NNS WDT VBP NN CC NN . The announcement comes as the U.N. Security Council is expected to vote this week on a French proposal to send Darfur suspects to the International Criminal Court . DT NN VBZ IN DT NNP NNP NNP VBZ VBN TO VB DT NN IN DT JJ NN TO VB NNP VBZ TO DT NNP NNP NNP . Sudan is opposed to the draft , saying its courts are competent to prosecute those guilty of crimes . NNP VBZ VBN TO DT NN , VBG PRP$ NNS VBP JJ TO VB DT JJ IN NNS . The United Nations says the two year conflict in Darfur between black rebels and mostly government-backed Arab militias has killed tens of thousands of people and displaced nearly two million people . DT NNP NNP VBZ DT CD NN NN IN NNP IN JJ NNS CC RB JJ JJ NNS VBZ VBN NNS IN NNS IN NNS CC VBN RB CD CD NNS . The United States calls the violence genocide . DT NNP NNPS VBZ DT NN NN . U.S. Secretary of State Condoleezza Rice says Israeli and Palestinian representatives are discussing peace initiatives behind closed doors . NNP NNP IN NNP NNP NNP VBZ JJ CC JJ NNS VBP VBG NN NNS IN JJ NNS . Rice spoke to reporters aboard Air Force One Sunday as she accompanied President Bush home from a trip to the Middle East . NNP VBD TO NNS IN NNP NNP CD NNP IN PRP VBD NNP NNP NN IN DT NN TO DT NNP NNP . She said divulging the contents of the negotiations would endanger their outcome . PRP VBD VBG DT NNS IN DT NNS MD VB PRP$ NN . The U.S. secretary of state predicted that the talks will intensify in the coming months . DT NNP NN IN NN VBD IN DT NNS MD VB IN DT JJ NNS . She said that during his trip , Mr. Bush had extensive discussions with all of the Israeli and Palestinian leaders . PRP VBD IN IN PRP$ NN , NNP NNP VBD JJ NNS IN DT IN DT JJ CC JJ NNS . She reaffirmed Mr. Bush 's support for the vision of a Palestinian state living side-by-side with Israel . PRP VBD NNP NNP POS NN IN DT NN IN DT JJ NN VBG JJ IN NNP . Former Peruvian President Alberto Fujimori has been arrested in Chile , just hours after his unexpected arrival there . JJ JJ NNP NNP NNP VBZ VBN VBN IN NNP , RB NNS IN PRP$ JJ NN RB . Officials in Lima and Santiago say Mr. Fujimori was arrested at his hotel by Chilean police Monday . NNS IN NNP CC NNP VBP NNP NNP VBD VBN IN PRP$ NN IN JJ NN NNP . He is wanted in Peru on charges of corruption and human rights abuses related to the death squad murders of 25 people . PRP VBZ VBN IN NNP IN NNS IN NN CC JJ NNS NNS VBN TO DT NN NN NNS IN CD NNS . Mr. Fujimori , who was born in Peru to Japanese immigrants , fled to Japan in 2000 . NNP NNP , WP VBD VBN IN NNP TO JJ NNS , VBD TO NNP IN CD . Tokyo has refused to extradite him because he holds Japanese nationality . NNP VBZ VBN TO VB PRP IN PRP VBZ JJ NN . In a statement issued after his arrival in Chile , Mr. Fujimori said he would reside there temporarily while launching a campaign for the Peruvian presidency in the 2006 elections . IN DT NN VBN IN PRP$ NN IN NNP , NNP NNP VBD PRP MD VB RB RB IN VBG DT NN IN DT JJ NN IN DT CD NNS . The government of Peru had requested that Chilean authorities arrest Mr. Fujimori . DT NN IN NNP VBD VBN IN JJ NNS VB NNP NNP . A suicide bombing near a busy shrine in southern Afghanistan has killed at least one policeman . DT NN VBG IN DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NN . A local police official said the attacker blew himself up next to police guarding a shrine in Kandahar province filled with people celebrating the traditional new year Friday in Arghandab district . DT JJ NN NN VBD DT NN VBD PRP RP JJ TO VB VBG DT NN IN NNP NN VBN IN NNS VBG DT JJ JJ NN NNP IN NNP NN . Several other people were wounded . JJ JJ NNS VBD VBN . Another bombing reported near a shrine in the northern city of Mazar-i-Sharif injured four people . DT NN VBN IN DT NN IN DT JJ NN IN NNP VBD CD NNS . And NATO said a soldier was killed on Thursday in an explosion in the south . CC NNP VBD DT NN VBD VBN IN NNP IN DT NN IN DT NN . The alliance did not release the soldier 's nationality or the exact location of the accident . DT NN VBD RB VB DT NN POS NN CC DT JJ NN IN DT NN . But U.S. , NATO and Afghan forces are fighting daily battles against Taliban and other insurgents in southern and eastern Afghanistan . CC NNP , NNP CC JJ NNS VBP VBG JJ NNS IN NNP CC JJ NNS IN JJ CC JJ NNP . Afghan officials say four Taleban guerrillas were killed when the bomb they were planting on a road went off prematurely . JJ NNS VBP CD NNP NNS VBD VBN WRB DT NN PRP VBD VBG IN DT NN VBD RB RB . The incident took place on Saturday night in restive Kandahar province in the south . DT NN VBD NN IN NNP NN IN JJ NNP NN IN DT NN . Local officials say the insurgents ' bodies were blown to pieces . JJ NNS VBP DT NNS POS NNS VBD VBN TO NNS . Taleban fighters have used roadside bombs against U.S. and Afghan government troops , especially in the south and east of the country . NNP NNS VBP VBN NN NNS IN NNP CC JJ NN NNS , RB IN DT NN CC NN IN DT NN . Nearly 60 U.S. soldiers and scores of Afghan troops have been killed in the Taleban insurgency this year , the bloodiest period since 2001 when U.S.-led troops ousted Taleban rulers . RB CD NNP NNS CC NNS IN JJ NNS VBP VBN VBN IN DT NNP NN DT NN , DT JJS NN IN CD WRB JJ NNS VBD NNP NNS . Around 2,000 Serbian nationalists marched through the streets of the ethnically-divided Kosovo town of Mitrovica Saturday , on the sixth day of protests against Kosovo 's independence . IN CD JJ NNS VBD IN DT NNS IN DT JJ NNP NN IN NNP NNP , IN DT JJ NN IN NNS IN NNP POS NN . The city has been torn by protests since Kosovo declared independence last week . DT NN VBZ VBN VBN IN NNS IN NNP VBD NN JJ NN . Most Serbs consider the seceded territory a historic heart of Serbia . JJS NNS VBP DT JJ NN DT JJ NN IN NNP . Meanwhile , the European Union 's special representative in Kosovo has confirmed the evacuation of his personnel from Mitrovica . RB , DT NNP NNP POS JJ NN IN NNP VBZ VBN DT NN IN PRP$ NNS IN NNP . Peter Feith , the head of the EU 's peacekeeping mission in Kosovo , said Saturday that the pull-out was temporary . NNP NNP , DT NN IN DT NNP POS VBG NN IN NNP , VBD NNP IN DT NN VBD JJ . Friday , Serbian President Boris Tadic called for an end to violence after rioters opposed to Kosovo 's declaration of independence Thursday attacked the U.S. and other embassies in Belgrade . NNP , JJ NNP NNP NNP VBD IN DT NN TO NN IN NNS VBD TO NNP POS NN IN NN NNP VBD DT NNP CC JJ NNS IN NNP . The demonstrators were angered by U.S. support for Kosovo 's independence declaration . DT NNS VBD VBN IN NNP NN IN NNP POS NN NN . Secretary of State Condoleezza Rice says the United States is doing everything possible to help countries around the world locate any of their citizens missing in the aftermath of Hurricane Katrina . NNP IN NNP NNP NNP VBZ DT NNP NNPS VBZ VBG DT JJ TO VB NNS IN DT NN VB DT IN PRP$ NNS VBG IN DT NN IN NNP NNP . In a statement released Tuesday , Ms. Rice said Ambassador Joe Sullivan has established an operations center in Baton Rouge , Louisiana . IN DT NN VBN NNP , NNP NNP VBD NNP NNP NNP VBZ VBN DT NNS NN IN NNP NNP , NNP . She said foreigners impacted by the hurricane should contact their consulates or embassies in Washington , or other facilities located throughout the country . PRP VBD NNS VBN IN DT NN MD VB PRP$ NNS CC NNS IN NNP , CC JJ NNS VBN IN DT NN . Ms. Rice also said both the American and International Red Cross agencies have established websites to help people get reunited as quickly as possible . NNP NNP RB VBD DT DT NNP CC NNP NNP NNP NNS VBP VBN NNS TO VB NNS VB VBN RB RB IN JJ . There were about 35 foreign consulates in New Orleans , mostly from Latin America and Europe , before floodwaters from Katrina devastated the entire U.S. city . EX VBD IN CD JJ NNS IN NNP NNP , RB IN NNP NNP CC NNP , IN NNS IN NNP VBD DT JJ NNP NN . All of them have suspended operations or moved elsewhere . DT IN PRP VBP VBN NNS CC VBD RB . The French consulate has set up a temporary office in the city of Lafayette . DT JJ NN VBZ VBN RP DT JJ NN IN DT NN IN NNP . Pope Benedict has called on wealthy nations to set aside their ' narrow interests ' to work toward a trade deal that would help poorer countries . NNP NNP VBZ VBN IN JJ NNS TO VB RP PRP$ `` JJ NNS `` TO VB IN DT NN NN WDT MD VB JJR NNS . The pope Thursday said he is confident that a sense of responsibility and solidarity with disadvantaged nations will prevail at upcoming world trade talks . DT NN NNP VBD PRP VBZ JJ IN DT NN IN NN CC NN IN JJ NNS MD VB IN JJ NN NN NNS . Pope Benedict noted that rural areas and independent farmers suffer greatly because they do not have access to the global marketplace . NNP NNP VBD IN JJ NNS CC JJ NNS VBP RB IN PRP VBP RB VB NN TO DT JJ NN . The pope made the comments to a delegation from the United Nations Food and Agriculture Organization . DT NN VBD DT NNS TO DT NN IN DT NNP NNPS NNP CC NNP NNP . The World Trade Organization is set to meet in Hong Kong next month to discuss reaching a global trade deal . DT NNP NNP NNP VBZ VBN TO VB IN NNP NNP JJ NN TO VB VBG DT JJ NN NN . Past efforts have been stymied largely because of disputes over how much developed countries are willing to cut agricultural trade barriers . JJ NNS VBP VBN VBN RB IN IN NNS IN WRB JJ JJ NNS VBP JJ TO VB JJ NN NNS . China says the death toll from an explosion in a northeastern coal mine has risen to 19 , with the confirmation of 18 more deaths . NNP VBZ DT NN NN IN DT NN IN DT JJ NN NN VBZ VBN TO CD , IN DT NN IN CD JJR NNS . The official Xinhua news agency said Monday that 18 miners missing since Saturday have been found dead . DT JJ NNP NN NN VBD NNP IN CD NNS VBG IN NNP VBP VBN VBN JJ . Xinhua says the explosion occurred Saturday evening . NNP VBZ DT NN VBD NNP NN . One miner was found dead Sunday . CD NN VBD VBN JJ NNP . The news agency says an initial investigation found that the operators of the mine illegally resumed production after their license had been revoked . DT NN NN VBZ DT JJ NN VBD IN DT NNS IN DT NN RB VBD NN IN PRP$ NN VBD VBN VBN . China 's mines are among the most dangerous in the world , with safety standards often ignored as mine operators push production amid soaring demand for coal . NNP POS NNS VBP IN DT RBS JJ IN DT NN , IN NN NNS RB VBN IN NN NNS VBP NN IN VBG NN IN NN . A senior Central Intelligence Agency officer has resigned so he can speak openly about what he sees as the government 's failure to understand the threat from the al-Qaida terrorist network . DT JJ NNP NNP NNP NN VBZ VBN IN PRP MD VB RB IN WP PRP VBZ IN DT NN POS NN TO VB DT NN IN DT NNP JJ NN . Michael Scheuer , the former chief of the CIA 's Osama bin Laden unit , said he believes there has not been adequate national debate over the nature of the threat posed by bin Laden and the forces he leads and inspires . NNP NNP , DT JJ NN IN DT NNP POS NNP NNP NNP NN , VBD PRP VBZ EX VBZ RB VBN JJ JJ NN IN DT NN IN DT NN VBN IN NNP NNP CC DT NNS PRP VBZ CC VBZ . The CIA allowed Mr. Scheuer to publish his book ' Imperial Hubris ' anonymously and to conduct media interviews under the name ' Mike . ' DT NNP VBD NNP NNP TO VB PRP$ NN `` NNP NNP `` RB CC TO VB NNS NNS IN DT NN `` NNP . `` But he became a critic of the U.S.-led war in Iraq , saying it has inflamed anti-American sentiment among Muslims , and his name eventually became known . CC PRP VBD DT NN IN DT JJ NN IN NNP , VBG PRP VBZ VBN JJ NN IN NNPS , CC PRP$ NN RB VBD VBN . He is also critical of how CIA resources are being used to go after al-Qaida . PRP VBZ RB JJ IN WRB NNP NNS VBP VBG VBN TO VB IN NNP . The CIA has declined to comment . DT NNP VBZ VBN TO VB . Iran 's parliament has ordered the resumption of nuclear processing activities . NNP POS NN VBZ VBN DT NN IN JJ NN NNS . But Iranian officials say implementation of the order will be delayed to give one last chance to talks with the European Union . CC JJ NNS VBP NN IN DT NN MD VB VBN TO VB CD JJ NN TO NNS IN DT NNP NNP . EU foreign ministers and Iran are expected to meet within the coming days . NNP JJ NNS CC NNP VBP VBN TO VB IN DT JJ NNS . Iran had previously agreed to suspend its nuclear processing program to avoid sanctions from the United Nations . NNP VBD RB VBN TO VB PRP$ JJ NN NN TO VB NNS IN DT NNP NNPS . Iran says it wants to use the processed nuclear material to produce electricity . NNP VBZ PRP VBZ TO VB DT JJ JJ NN TO VB NN . But the EU and the United States worry that Iran could be developing nuclear weapons . CC DT NNP CC DT NNP NNPS VBP IN NNP MD VB VBG JJ NNS . France , Britain , and Germany want Tehran to abandon its enrichment activities in exchange for economic aid and backing for Iran 's efforts to join mainstream international organizations . NNP , NNP , CC NNP VBP NNP TO VB PRP$ NN NNS IN NN IN JJ NN CC NN IN NNP POS NNS TO VB JJ JJ NNS . Palestinians in Jerusalem marched through the streets of Bethlehem Monday celebrating the Eve of Christmas , the day before the traditional birth of Jesus Christ . NNS IN NNP VBD IN DT NNS IN NNP NNP VBG DT NNP IN NNP , DT NN IN DT JJ NN IN NNP NNP . Robert Berger is in Bethlehem and filed this on-scene report . NNP NNP VBZ IN NNP CC VBD DT JJ NN . Palestinian boy and girl scouts are marched through Manger Square in Bethlehem , kicking off Christmas Eve celebrations . JJ NN CC NN NNS VBP VBN IN NNP NNP IN NNP , VBG RP NNP NNP NNS . They marched past the Church of the Nativity , the traditional birthplace of Jesus , playing drums and bagpipes . PRP VBD IN DT NN IN DT NNP , DT JJ NN IN NNP , VBG NNS CC NNS . It was a festive atmosphere . PRP VBD DT JJ NN . Manger Square is decked out with Christmas Trees that light and colorful balloons . NNP NNP VBZ VBN RP IN NNP NNS IN VBP CC JJ NNS . On a cool , sunny day a big crowd is looking on , including some pilgrims , but mostly local Palestinians . IN DT JJ , JJ NN DT JJ NN VBZ VBG IN , VBG DT NNS , CC RB JJ NNS . Christmas Eve celebrations will culminate with midnight mass at the Church of the Nativity . NNP NNP NNS MD VB IN NN NN IN DT NN IN DT NN . China is defending its decision to collect information on foreign journalists covering the 2008 Beijing Olympics , saying the information will be used to help the media , not to hinder reporting . NNP VBZ VBG PRP$ NN TO VB NN IN JJ NNS VBG DT CD NNP NNPS , VBG DT NN MD VB VBN TO VB DT NNS , RB TO VB NN . A media official for Beijing 's Olympic organizing committee , Li Zhanjun , told reporters Tuesday that the database was not created to monitor or threaten journalists . DT NNS NN IN NNP POS NNP NN NN , NNP NNP , VBD NNS NNP IN DT NN VBD RB VBN TO VB CC VB NNS . Li also said it was not a blacklist and stressed that coverage at the Games would be open and transparent . NNP RB VBD PRP VBD RB DT NN CC VBD IN NN IN DT NNPS MD VB JJ CC JJ . Meanwhile , Chinese officials denied state-run media reports Monday that the government had created a database of some 30,000 accredited Olympic Games reporters . RB , JJ NNS VBD JJ NNS NNS NNP IN DT NN VBD VBN DT NN IN DT CD VBN NNP NNPS NNS . A report on Monday quoted China 's top media official , Liu Binjie the minister of the General Administration of Press and Publication , as saying the list was made to help clamp down on ' fake reporters ' and unlicensed publications . DT NN IN NNP VBD NNP POS JJ NNS NN , NNP NNP DT NN IN DT NNP NNP IN NNP CC NNP , IN VBG DT NN VBD VBN TO VB VB RP IN `` JJ NNS `` CC JJ NNS . Brazil 's foreign minister has said he has seen indications the United States wants to block a sale of Brazilian-made military aircraft to Venezuela . NNP POS JJ NN VBZ VBN PRP VBZ VBN NNS DT NNP NNPS VBZ TO VB DT NN IN JJ JJ NN TO NNP . Foreign Minister Celso Amorim told reporters Wednesday he intends to discuss the matter with U.S. officials and try to convince them not to prevent the sale . NNP NNP NNP NNP VBD NNS NNP PRP VBZ TO VB DT NN IN NNP NNS CC VB TO VB PRP RB TO VB DT NN . He says he believes Venezuela is a threat to no one and that disagreements over internal policies should not restrict transfers of technology . PRP VBZ PRP VBZ NNP VBZ DT NN TO DT NN CC IN NNS IN JJ NNS MD RB VB NNS IN NN . Mr. Amorim 's comments came after Venezuelan President Hugo Chavez Tuesday alleged Washington wanted to veto his deal with Brazilian aircraft-maker Embraer because the planes use U.S. technology . NNP NNP POS NNS VBD IN JJ NNP NNP NNP NNP VBD NNP VBD TO VB PRP$ NN IN JJ NN NN IN DT NNS VBP NNP NN . Reuters news service quotes a U.S. State Department spokesman who declined to comment on the veto allegation , but said the U.S. had let Brazil know it had concerns about Venezuela 's arms acquisitions . NNP NN NN VBZ DT NNP NNP NNP NN WP VBD TO VB IN DT NN NN , CC VBD DT NNP VBD VBN NNP VB PRP VBD NNS IN NNP POS NNS NNS . The U.S. airline industry is ramping up cost-cutting efforts to deal with skyrocketing fuel prices . DT NNP NN NN VBZ VBG RP JJ NNS TO VB IN VBG NN NNS . Nearly all the major U.S. carriers have announced major job cuts this year . RB PDT DT JJ NNP NNS VBP VBN JJ NN NNS DT NN . But airline representatives say cutting jobs is not enough . CC NN NNS VBP VBG NNS VBZ RB RB . They 're asking lawmakers to do more to reduce fuel costs that now threaten the US airline industry . PRP VBP VBG NNS TO VB JJR TO VB NN NNS WDT RB VBP DT NNP NN NN . VOA 's Mil Arcega has more . NNP POS NNP NNP VBZ RBR . Chinese state-run media say a third of China 's vast land mass has been hurt by acid rain caused by the emissions of factories and power plants . JJ JJ NNS VBP DT NN IN NNP POS JJ NN NN VBZ VBN VBN IN NN NN VBN IN DT NNS IN NNS CC NN NNS . The official Xinhua news agency cites a parliamentary pollution report released Saturday , which says emissions of sulphur dioxide , the chemical that causes acid rain , are two times higher than safe levels . DT JJ NNP NN NN VBZ DT JJ NN NN VBN NNP , WDT VBZ NNS IN NN NN , DT NN WDT VBZ JJ NN , VBP CD NNS JJR IN JJ NNS . Sheng Huaren , the vice chairman of the parliamentary standing committee , says China 's factories discharged some 25 million tons of sulphur dioxide last year , up 27 percent from 2000 . NNP NNP , DT NN NN IN DT JJ NN NN , VBZ NNP POS NNS VBD DT CD CD NNS IN NN NN JJ NN , IN CD NN IN CD . He says the resulting acid rain is threatening China 's soil and food safety . PRP VBZ DT VBG NN NN VBZ VBG NNP POS NN CC NN NN . China is struggling to balance its booming industrial growth with environmental protection . NNP VBZ VBG TO VB PRP$ JJ JJ NN IN JJ NN . A series of chemical spills has cut off drinking water to millions of people over the past couple years , and air pollution is a constant problem in many cities . DT NN IN NN NNS VBZ VBN RP NN NN TO NNS IN NNS IN DT JJ NN NNS , CC NN NN VBZ DT JJ NN IN JJ NNS . Kidnappers of four Western peace activists in Iraq have threatened to kill them unless all Iraqi prisoners are released from U.S. and Iraqi prisons . NNS IN CD JJ NN NNS IN NNP VBP VBN TO VB PRP IN DT JJ NNS VBP VBN IN NNP CC JJ NNS . The kidnappers issued the threat in a videotape broadcast Saturday by the Arab television station al-Jazeera . DT NNS VBD DT NN IN DT NN NN NNP IN DT JJ NN NN NNP . The videotape , dated January 21 , apparently shows the two Canadians , one Briton and one American standing against a wall . DT NN , VBN NNP CD , RB VBZ DT CD NNS , CD NN CC CD NN VBG IN DT NN . The four disappeared on November 26 . DT CD VBD IN NNP CD . Al-Jazeera said the kidnappers issued a statement with the tape saying it was the ' last chance ' for U.S. and Iraqi authorities to save the hostages . NNP VBD DT NNS VBD DT NN IN DT NN VBG PRP VBD DT `` JJ NN `` IN NNP CC JJ NNS TO VB DT NNS . The latest development comes a day after al-Jazeera broadcast a video of two Germans kidnapped last Tuesday . DT JJS NN VBZ DT NN IN NNP VBD DT NN IN CD NNS VBN JJ NNP . In Iraq Saturday , authorities say a policeman was killed and another wounded in a roadside bomb attack in the western city of Fallujah . IN NNP NNP , NNS VBP DT NN VBD VBN CC DT VBN IN DT NN NN NN IN DT JJ NN IN NNP . A senior NATO official says U.S.-led coalition forces plan to increase their use of the US air base in Kyrgyzstan , now that neighboring Uzbekistan has ordered American forces off a base there . DT JJ NNP NN VBZ JJ NN NNS VBP TO VB PRP$ NN IN DT NNP NN NN IN NNP , RB IN VBG NNP VBZ VBN JJ NNS IN DT NN RB . NATO 's special representative for the Caucasus and Central Asia , Robert Simmons , made the announcement on Monday during his visit to the Kyrgyz capital , Bishkek . NNP POS JJ NN IN DT NNP CC NNP NNP , NNP NNP , VBD DT NN IN NNP IN PRP$ NN TO DT JJ NN , NNP . Both Kyrgyzstan and Uzbekistan allowed the United States to set up air bases in 2001 to help anti-terror operations in nearby Afghanistan . DT NNP CC NNP VBD DT NNP NNPS TO VB RP NN NNS IN CD TO VB JJ NNS IN JJ NNP . But two months ago , the Uzbek government asked Washington to leave the Karshi-Khanabad base . CC CD NNS RB , DT JJ NN VBD NNP TO VB DT JJ NN . The request came just days after Washington criticized the Uzbek government for a violent military crackdown on an opposition rally in eastern Uzbekistan . DT NN VBD RB NNS IN NNP VBD DT JJ NN IN DT JJ JJ NN IN DT NN NN IN JJ NNP . Kyrgyz authorities , however , have said U.S. forces can use the Manas air base near Bishkek for as long as required . JJ NNS , RB , VBP VBN NNP NNS MD VB DT NNP NN NN IN NNP IN RB JJ IN VBN . U.S. President George Bush says the nation 's entire economy is at risk , and Congress needs to approve a $ 700 billion financial rescue plan . NNP NNP NNP NNP VBZ DT NN POS JJ NN VBZ IN NN , CC NNP VBZ TO VB DT $ CD CD JJ NN NN . In a nationally televised address Wednesday night , Mr. Bush said his administration is taking decisive action and is working with Congress to address the financial crisis . IN DT RB VBN NN NNP NN , NNP NNP VBD PRP$ NN VBZ VBG JJ NN CC VBZ VBG IN NNP TO VB DT JJ NN . Mr. Bush also said action is needed to prevent a long , and painful recession . NNP NNP RB VBD NN VBZ VBN TO VB DT JJ , CC JJ NN . He acknowledged that the expensive bailout package is a ' tough vote ' for many members of Congress , but said failure to act would cause more severe problems later . PRP VBD IN DT JJ NN NN VBZ DT `` JJ NN `` IN JJ NNS IN NNP , CC VBD NN TO VB MD VB RBR JJ NNS RB . Mr. Bush also said he has invited Republican presidential nominee John McCain and Democratic nominee Barack Obama to a meeting with Congressional leaders Thursday in Washington to discuss the issue . NNP NNP RB VBD PRP VBZ VBN JJ JJ NN NNP NNP CC JJ NN NNP NNP TO DT NN IN JJ NNS NNP IN NNP TO VB DT NN . Pakistani police have arrested two suspected Islamic militants in connection with last week 's deadly suicide attack on a Shi'ite mosque in Karachi that killed five people , including two attackers . JJ NNS VBP VBN CD JJ JJ NNS IN NN IN JJ NN POS JJ NN NN IN DT NNP NN IN NNP WDT VBD CD NNS , VBG CD NNS . Karachi 's senior police official Fayyaz Khan says authorities captured the pair during a pre-dawn raid on a hide-out in the city 's eastern district . NNP POS JJ NN NN NNP NNP VBZ NNS VBD DT NN IN DT JJ NN IN DT NN IN DT NN POS JJ NN . He says police also recovered explosives , two grenades and a pistol during the raid . PRP VBZ NNS RB VBD NNS , CD NNS CC DT NN IN DT NN . The men belong to an outlawed militant group , Lashkar-e-Jhangvi , which has links with Osama bin Laden 's al-Qaida terror network . DT NNS VBP TO DT JJ JJ NN , NNP , WDT VBZ NNS IN NNP NNP NNP POS NNP NN NN . The May 30 mosque attack sparked riots in Karachi , where an angry mob torched a crowded U.S. fast-food outlet , killing six employees . DT NNP CD NN NN VBD NNS IN NNP , WRB DT JJ NN VBD DT JJ NNP NN NN , VBG CD NNS . The rioters also attacked a hospital and two gas stations , and bombed buses and cars . DT NNS RB VBD DT NN CC CD NN NNS , CC VBD NNS CC NNS . Indonesia 's attorney general says three Islamic militants have until the end of this month to appeal their death sentences in the 2002 Bali bombings that killed 202 people . NNP POS NN NN VBZ CD NNP NNS VBP IN DT NN IN DT NN TO VB PRP$ NN NNS IN DT CD NNP NNS WDT VBD CD NNS . Attorney General Abdul Rahman Saleh says it is fair to give the bombers until the end of December . NNP NNP NNP NNP NNP VBZ PRP VBZ JJ TO VB DT NNS IN DT NN IN NNP . But , he said if they do not file an appeal , the execution process will move forward . CC , PRP VBD IN PRP VBP RB VB DT NN , DT NN NN MD VB RB . Lawyers for the three men have been saying for months that they will file for a case review , but have yet to do so . NNS IN DT CD NNS VBP VBN VBG IN NNS IN PRP MD VB IN DT NN NN , CC VBP RB TO VB RB . If they do file , Indonesian law requires that they produce fresh evidence . IN PRP VBP NN , JJ NN VBZ IN PRP VBP JJ NN . The al-Qaida-linked extremist network Jemaah Islamiyah has been blamed for the 2002 Bali bombings and other attacks in Indonesia . DT JJ NN NN NNP NNP VBZ VBN VBN IN DT CD NNP NNS CC JJ NNS IN NNP . Insurgents have shot down a U.S. helicopter in Iraq , killing the two soldiers on board . NNS VBP VBN RP DT NNP NN IN NNP , VBG DT CD NNS IN NN . The U.S. military says the helicopter crashed late Thursday near Baqubah , north of Baghdad . DT NNP NN VBZ DT NN VBD JJ NNP IN NNP , NN IN NNP . A second helicopter was damaged in the attack , but landed safely at a coalition base . DT JJ NN VBD VBN IN DT NN , CC VBD RB IN DT NN NN . Recently , the U.S. military said some insurgents have been using increasingly sophisticated tactics . RB , DT NNP NN VBD DT NNS VBP VBN VBG RB JJ NNS . This has led to intensified anti-insurgent operations in western Iraq and , beginning next week , in Baghdad . DT VBZ VBN TO JJ JJ NNS IN JJ NNP CC , VBG JJ NN , IN NNP . A U.S.-led offensive is in its third day in the Euphrates River city of Haditha , on the road to the Syrian border . DT JJ NN VBZ IN PRP$ JJ NN IN DT NNP NNP NN IN NNP , IN DT NN TO DT JJ NN . Next week , some 40,000 Iraqi forces will cordon off Baghdad , setting up hundreds of checkpoints and conducting raids in a bid to crackdown on insurgents who have killed more than 600 people in the last month . JJ NN , DT CD JJ NNS MD VB RP NNP , VBG RP NNS IN NNS CC VBG NNS IN DT NN TO NN IN NNS WP VBP VBN JJR IN CD NNS IN DT JJ NN . Australia 's first woman prime minister was sworn in again Tuesday , less than three months after she deposed her predecessor . NNP POS JJ NN JJ NN VBD VBN IN RB NNP , JJR IN CD NNS IN PRP VBD PRP$ NN . Julia Gillard took office this time at the head of a minority government after she lost her majority in polls August 21 and cobbled together a shaky coalition last week , with two independent lawmakers . NNP NNP VBD NN DT NN IN DT NN IN DT NN NN IN PRP VBD PRP$ NN IN NNS NNP CD CC VBD RB DT JJ NN JJ NN , IN CD JJ NNS . Her center-left Labor Party controls 76 seats in the 150-member House or Representatives , meaning a single defection , resignation or death could bring down her government . PRP$ JJ NNP NNP VBZ CD NNS IN DT JJ NNP CC NNP , VBG DT JJ NN , NN CC NN MD VB RP PRP$ NN . Ms. Gillard 's new Cabinet also took the oath of office Tuesday . NNP NNP POS JJ NNP RB VBD DT NN IN NN NNP . On Saturday , she named former leader Kevin Rudd as her foreign minister , less than three months after she ousted him in a surprise party coup . IN NNP , PRP VBD JJ NN NNP NNP IN PRP$ JJ NN , JJR IN CD NNS IN PRP VBD PRP IN DT NN NN NN . The head of the U.S. central bank says the current housing crisis in the United States demands a ' vigorous response . ' DT NN IN DT NNP JJ NN VBZ DT JJ NN NN IN DT NNP NNPS VBZ DT `` JJ NN . `` In a speech to a banking group in Florida , Federal Reserve Chairman Ben Bernanke said foreclosures and late payments on mortgages are likely to continue rising ' for a while longer . ' IN DT NN TO DT NN NN IN NNP , NNP NNP NNP NNP NNP VBD NNS CC JJ NNS IN NNS VBP JJ TO VB VBG `` IN DT NN RB . `` He said the current banking industry-backed plan that has seen some lenders lowering interest rates or working out payment plans is a ' step in the right direction . ' PRP VBD DT JJ NN JJ NN WDT VBZ VBN DT NNS VBG NN NNS CC VBG RP NN NNS VBZ DT `` NN IN DT JJ NN . `` Bernanke says it is in lenders ' interest to do more to avoid the huge cost of foreclosures . NNP VBZ PRP VBZ IN NNS POS NN TO VB JJR TO VB DT JJ NN IN NNS . He says it is good for communities and the nation 's economy to offer more help to more homeowners . PRP VBZ PRP VBZ JJ IN NNS CC DT NN POS NN TO VB JJR NN TO JJR NNS . Recent declines in home values have made it difficult for troubled homeowners to solve their problems by refinancing or selling their properties . JJ NNS IN NN NNS VBP VBN PRP JJ IN JJ NNS TO VB PRP$ NNS IN VBG CC VBG PRP$ NNS . British Prime Minister Tony Blair launches a new bid to advance the Middle East peace process later Tuesday , with visits to Israel and the Palestinian territories . JJ NNP NNP NNP NNP VBZ DT JJ NN TO VB DT NNP NNP NN NN RB NNP , IN NNS TO NNP CC DT JJ NNS . Mr. Blair , who has made reviving the Middle East peace process a priority , is expected to meet with his Israeli counterpart , Ariel Sharon , before heading to the West Bank for talks with Palestinian leaders . NNP NNP , WP VBZ VBN VBG DT NNP NNP NN NN DT NN , VBZ VBN TO VB IN PRP$ JJ NN , NNP NNP , IN VBG TO DT NNP NNP IN NNS IN JJ NNS . International diplomacy aimed at bringing Israel and the Palestinians together for peace talks have intensified since the death of Yasser Arafat last month . JJ NN VBN IN VBG NNP CC DT NNS RB IN NN NNS VBP VBN IN DT NN IN NNP NNP JJ NN . Earlier Tuesday , the British leader paid a surprise visit to Iraq , meeting with interim Prime Minister Iyad Allawi in Baghdad and visiting British troops in the southern city of Basra . RBR NNP , DT JJ NN VBD DT NN NN TO NNP , NN IN JJ NNP NNP NNP NNP IN NNP CC VBG JJ NNS IN DT JJ NN IN NNP . It was Mr. Blair 's first visit to Baghdad . PRP VBD NNP NNP POS JJ NN TO NNP . He has twice previously visited British troops stationed around Basra . PRP VBZ RB RB VBN JJ NNS VBN IN NNP . The head of the Arab League says discussions with Lebanese political rivals on ending the country 's political crisis have not produced an agreement . DT NN IN DT NNP NNP VBZ NNS IN JJ JJ NNS IN VBG DT NN POS JJ NN VBP RB VBN DT NN . Amr Moussa warned that rival political leaders are not talking to each other and he urged them not to increase tensions . NNP NNP VBD IN JJ JJ NNS VBP RB VBG TO DT NN CC PRP VBD PRP RB TO VB NNS . Moussa had been meeting in Beirut with Lebanese Prime Minister Fuad Siniora and the pro-Syrian opposition to try to bridge the differences between the two sides . NNP VBD VBN VBG IN NNP IN JJ NNP NNP NNP NNP CC DT JJ NN TO VB TO VB DT NNS IN DT CD NNS . Moussa said on Saturday that he plans to resume mediation efforts in the new year . NNP VBD IN NNP IN PRP VBZ TO VB NN NNS IN DT JJ NN . In November , the Shi'ite militant group Hezbollah and its pro-Syrian allies left Lebanon 's cabinet , demanding more power in the government . IN NNP , DT NNP JJ NN NNP CC PRP$ JJ NNS VBD NNP POS NN , VBG JJR NN IN DT NN . The groups have since organized massive demonstrations in Beirut against the government . DT NNS VBP IN VBN JJ NNS IN NNP IN DT NN . Prime Minister Siniora has the support of Western nations and Saudi Arabia . NNP NNP NNP VBZ DT NN IN JJ NNS CC NNP NNP . He so far has rejected demands to step down . PRP RB RB VBZ VBN NNS TO VB RB . U.N. Secretary General Kofi Annan has praised donor nations for pledging $ 4.5 billion for rebuilding Sudan , but says promises alone are not enough . NNP NNP NNP NNP NNP VBZ VBN NN NNS IN VBG $ CD CD IN VBG NNP , CC VBZ NNS RB VBP RB RB . In an opinion piece published Wednesday in The New York Times , Mr. Annan again urged the donors to immediately convert their pledges to cash . IN DT NN NN VBN NNP IN DT NNP NNP NNP , NNP NNP RB VBD DT NNS TO RB VB PRP$ NNS TO NN . He also called for more protection forces in Sudan 's war-torn western Darfur region to prevent ' yet more death and suffering . ' PRP RB VBD IN JJR NN NNS IN NNP POS JJ JJ NNP NN TO VB `` RB JJR NN CC NN . `` Donor nations meeting in Oslo this week pledged $ 4.5 billion to help rebuild southern Sudan after 21 years of civil war . NNP NNS NN IN NNP DT NN VBD $ CD CD TO VB VB JJ NNP IN CD NNS IN JJ NN . U.S. Deputy Secretary of State Robert Zoellick said Tuesday that the U.S. pledge of nearly $ 2 billion is contingent upon Khartoum putting an end to atrocities committed in Darfur . NNP NNP NNP IN NNP NNP NNP VBD NNP IN DT NNP NN IN RB $ CD CD VBZ JJ IN NNP VBG DT NN TO NNS VBN IN NNP . Heritage Media Corp. , New York , said it offered to buy the shares of POP Radio Corp. it does n't already own in a stock swap . NNP NNP NNP , NNP NNP , VBD PRP VBD TO VB DT NNS IN NNP NNP NNP PRP VBZ RB RB VB IN DT NN NN . Heritage , which owns 51 % of POP 's 3.6 million shares outstanding , said it will exchange one share of a new preferred stock for each POP common share it does n't already own . NNP , WDT VBZ CD NN IN NNP POS CD CD NNS JJ , VBD PRP MD VB CD NN IN DT JJ VBN NN IN DT NNP JJ NN PRP VBZ RB RB VB . Depending upon how many warrants and options are exercised prior to completion of the transaction , Heritage would issue between 1.8 million and 2.35 million preferred shares , a Heritage spokesman estimated . VBG IN WRB JJ NNS CC NNS VBP VBN RB TO NN IN DT NN , NNP MD VB IN CD CD CC CD CD JJ NNS , DT NNP NN VBN . In national over-the-counter trading yesterday , POP plunged $ 4 to $ 14.75 . IN JJ JJ NN NN , NNP VBD $ CD TO $ CD . The preferred stock , which would have a dividend rate of $ 1.76 a year , would be convertible into Heritage common at a rate of four common shares for each preferred . DT JJ NN , WDT MD VB DT NN NN IN $ CD DT NN , MD VB JJ IN NNP JJ IN DT NN IN CD JJ NNS IN DT JJ . New York-based POP Radio provides , through a national , in-store network , a customized music , information and advertising service which simulates live radio . NNP JJ NNP NNP VBZ , IN DT JJ , JJ NN , DT VBN NN , NN CC NN NN WDT VBZ JJ NN . Heritage owns and operates television and radio stations and in-store advertising and promotion programs . NNP VBZ CC VBZ NN CC NN NNS CC JJ NN CC NN NNS . The economy of Sint Maarten centers around tourism with nearly four-fifths of the labor force engaged in this sector . DT NN IN NNP NNP NNS IN NN IN RB NNS IN DT NN NN VBN IN DT NN . Over one million visitors come to the island each year - 1.3 million in 2008 - with most arriving through the Princess Juliana International Airport . IN CD CD NNS VBN TO DT NN DT NN IN CD CD IN CD : IN JJS VBG IN DT NNP NNP NNP NNP . Cruise ships and yachts also call on Sint Maarten 's numerous ports and harbors . NNP NNS CC NNS RB VBP IN NNP NNP POS JJ NNS CC NNS . No significant agriculture and limited local fishing means that almost all food must be imported . DT JJ NN CC JJ JJ NN VBZ IN RB DT NN MD VB VBN . Energy resources and manufactured goods are also imported . NNP NNS CC VBN NNS VBP RB VBN . Sint Maarten had the highest per capita income among the five islands that formerly comprised the Netherlands Antilles . NNP NNP VBD DT JJS IN NN NN IN DT CD NNS WDT RB VBD DT NNP NNPS . The Bahamas is one of the wealthiest Caribbean countries with an economy heavily dependent on tourism and offshore banking . DT NNPS VBZ CD IN DT JJS JJ NNS IN DT NN RB JJ IN NN CC JJ NN . Tourism together with tourism-driven construction and manufacturing accounts for approximately 60 % of GDP and directly or indirectly employs half of the archipelago 's labor force . NN RB IN JJ NN CC NN NNS IN RB CD NN IN NN CC RB CC RB VBZ NN IN DT NN POS NN NN . Prior to 2006 , a steady growth in tourism receipts and a boom in construction of new hotels , resorts , and residences led to solid GDP growth but since then tourism receipts have begun to drop off . RB TO CD , DT JJ NN IN NN NNS CC DT NN IN NN IN JJ NNS , NNS , CC VBZ VBN TO JJ NN NN CC IN RB NN NNS VBP VBN TO VB RP . The global recession in 2009 took a sizeable toll on the Bahamas , resulting in a contraction in GDP and a widening budget deficit . DT JJ NN IN CD VBD DT JJ NN IN DT NNPS , VBG IN DT NN IN NN CC DT NN NN NN . The decline continued in 2010 as tourism from the US and sector investment lagged . DT NN VBD IN CD IN NN IN DT NNP CC NN NN VBN . Financial services constitute the second-most important sector of the Bahamian economy and , when combined with business services , account for about 36 % of GDP . NNP NNS VBP DT JJ JJ NN IN DT JJ NN CC , WRB VBN IN NN NNS , NN IN RB CD NN IN NN . However , the financial sector currently is smaller than it has been in the past because of the enactment of new and stricter financial regulations in 2000 that caused many international businesses to relocate elsewhere . RB , DT JJ NN RB VBZ JJR IN PRP VBZ VBN IN DT NN IN IN DT NN IN JJ CC JJ JJ NNS IN CD WDT VBD JJ JJ NNS TO VB RB . Manufacturing and agriculture combined contribute approximately a tenth of GDP and show little growth , despite government incentives aimed at those sectors . NNP CC NN VBN VBP RB DT NN IN NN CC VB JJ NN , IN NN NNS VBN IN DT NNS . Overall growth prospects in the short run rest heavily on the fortunes of the tourism sector . JJ NN NNS IN DT JJ NN VBP RB IN DT NNS IN DT NN NN . First discovered by the Norwegians in the 12th century , the islands served as an international whaling base during the 17th and 18th centuries . RB VBN IN DT NNS IN DT JJ NN , DT NNS VBD IN DT JJ NN NN IN DT JJ CC JJ NNS . Norway 's sovereignty was recognized in 1920 ; five years later it officially took over the territory . NNP POS NN VBD VBN IN CD ; CD NNS RB PRP RB VBD RP DT NN . Established in 1891 , the British protectorate of Nyasaland became the independent nation of Malawi in 1964 . VBN IN CD , DT JJ NN IN NNP VBD DT JJ NN IN NNP IN CD . After three decades of one-party rule under President Hastings Kamuzu BANDA the country held multiparty elections in 1994 , under a provisional constitution that came into full effect the following year . IN CD NNS IN JJ NN IN NNP NNP NNP NNP DT NN VBD JJ NNS IN CD , IN DT JJ NN WDT VBD IN JJ NN DT JJ NN . Current President Bingu wa MUTHARIKA , elected in May 2004 after a failed attempt by the previous president to amend the constitution to permit another term , struggled to assert his authority against his predecessor and subsequently started his own party , the Democratic Progressive Party ( DPP ) in 2005 . NNP NNP NNP NNP NNP , VBN IN NNP CD IN DT VBN NN IN DT JJ NN TO VB DT NN TO VB DT NN , VBD TO VB PRP$ NN IN PRP$ NN CC RB VBD PRP$ JJ NN , DT JJ NNP NNP LRB NNP RRB IN CD . As president , MUTHARIKA has overseen some economic improvement . IN NN , NNP VBZ VBN DT JJ NN . Population growth , increasing pressure on agricultural lands , corruption , and the spread of HIV / AIDS pose major problems for Malawi . NNP NN , VBG NN IN JJ NNS , NN , CC DT NN IN NNP CC NNP VBP JJ NNS IN NNP . MUTHARIKA was reelected to a second term in May 2009 . NNP VBD VBN TO DT JJ NN IN NNP CD . Named after Captain COOK , who sighted them in 1770 , the islands became a British protectorate in 1888 . VBN IN NNP NNP , WP VBD PRP IN CD , DT NNS VBD DT JJ NN IN CD . By 1900 , administrative control was transferred to New Zealand ; in 1965 , residents chose self-government in free association with New Zealand . IN CD , JJ NN VBD VBN TO NNP NNP ; IN CD , NNS VBD NN IN JJ NN IN NNP NNP . The emigration of skilled workers to New Zealand and government deficits are continuing problems . DT NN IN JJ NNS TO NNP NNP CC NN NNS VBP VBG NNS . THE DOLPHINS and Whales waged a fierce war with each other . DT NNS CC NNS VBD DT JJ NN IN DT NN . When the battle was at its height , a Sprat lifted its head out of the waves and said that he would reconcile their differences if they would accept him as an umpire . WRB DT NN VBD IN PRP$ NN , DT NN VBD PRP$ NN IN IN DT NNS CC VBD IN PRP MD VB PRP$ NNS IN PRP MD VB PRP IN DT NN . One of the Dolphins replied , ' We would far rather be destroyed in our battle with each other than admit any interference from you in our affairs . ' CD IN DT NNS VBD , `` PRP MD RB RB VB VBN IN PRP$ NN IN DT NN IN VB DT NN IN PRP IN PRP$ NNS . `` One hot summer 's day a Fox was strolling through an orchard till he came to a bunch of Grapes just ripening on a vine which had been trained over a lofty branch . CD JJ NN POS NN DT NN VBD VBG IN DT NN IN PRP VBD TO DT NN IN NNS RB VBG IN DT NN WDT VBD VBN VBN IN DT JJ NN . ' Just the thing to quench my thirst , ' quoth he . `` RB DT NN TO VB PRP$ NN , `` VBD PRP . Drawing back a few paces , he took a run and a jump , and just missed the bunch . VBG RB DT JJ NNS , PRP VBD DT NN CC DT NN , CC RB VBD DT NN . Turning round again with a One , Two , Three , he jumped up , but with no greater success . VBG RP RB IN DT CD , CD , CD , PRP VBD RP , CC IN DT JJR NN . Again and again he tried after the tempting morsel , but at last had to give it up , and walked away with his nose in the air , saying : ' I am sure they are sour . ' RB CC RB PRP VBD IN DT JJ NN , CC IN JJ VBD TO VB PRP RP , CC VBD RP IN PRP$ NN IN DT NN , VBG : `` PRP VBP JJ PRP VBP JJ . `` It is easy to despise what you can not get . PRP VBZ JJ TO VB WP PRP MD RB VB . The NBA season is so long the players seldom get time to spend at home with their butlers and chauffeurs . DT NNP NN VBZ RB RB DT NNS RB VBP NN TO VB IN NN IN PRP$ NNS CC NNS . A man walked into a Circle-K , put a $ 20 bill on the counter and asked for change . DT NN VBD IN DT NN , VBD DT $ CD NN IN DT NN CC VBD IN NN . When the clerk opened the cash drawer , the man pulled out a gun and asked for all the cash in the register , which the clerk promptly provided . WRB DT NN VBD DT NN NN , DT NN VBD RP DT NN CC VBD IN PDT DT NN IN DT NN , WDT DT NN RB VBD . The man took the cash from the clerk and fled , leaving the $ 20 bill on the counter . DT NN VBD DT NN IN DT NN CC VBD , VBG DT $ CD NN IN DT NN . The total amount of cash he got from the drawer ? DT JJ NN IN NN PRP VBD IN DT NN . Fifteen dollars . CD NNS . If someone points a gun at you and gives you money , was a crime committed ? IN DT VBZ DT NN IN PRP CC VBZ PRP NN , VBD DT NN VBN . John decided life would be much easier if he had a clone . NNP VBD NN MD VB RB JJR IN PRP VBD DT NN . So he had one made and sent him to work in his place while he stayed home and relaxed . IN PRP VBD CD VBN CC VBN PRP TO VB IN PRP$ NN IN PRP VBD NN CC VBD . Soon this backfired when the clone came home and said he 'd been fired for making sexual comments to the women in the office . RB DT VBN WRB DT NN VBD NN CC VBD PRP VBD VBN VBN IN VBG JJ NNS TO DT NNS IN DT NN . John decided , he had to get rid of his clone before things got any worse . NNP VBD , PRP VBD TO VB JJ IN PRP$ NN IN NNS VBD DT JJR . John took his clone to the top of a tall building and pushed him off . NNP VBD PRP$ NN TO DT NN IN DT JJ NN CC VBD PRP RP . Unfortunately , someone saw John and he was arrested and convicted for making an obscene clone fall . RB , DT VBD NNP CC PRP VBD VBN CC VBN IN VBG DT JJ NN VB . During a visit to a military medical clinic , I was sent to the lab to have blood drawn . IN DT NN TO DT JJ JJ NN , PRP VBD VBN TO DT NN TO VB NN VBN . The technician there was friendly and mentioned that his mood improved every day because he was due to leave the service in two months . DT NN EX VBD JJ CC VBD IN PRP$ NN VBD DT NN IN PRP VBD JJ TO VB DT NN IN CD NNS . As he applied the tourniquet on my arm , he told me that taking the blood would n't hurt much . IN PRP VBD DT NN IN PRP$ NN , PRP VBD PRP IN VBG DT NN MD RB VB RB . Then , noticing my Air Force T-shirt , he asked me what my husband did . RB , VBG PRP$ NNP NNP NNP , PRP VBD PRP WP PRP$ NN VBD . When I replied that he was a recruiter , the technician smiled slyly and said , ' This might hurt a little more than I thought . ' WRB PRP VBD IN PRP VBD DT NN , DT NN VBD RB CC VBD , `` DT MD VB DT RB JJR IN PRP VBD . `` A Missouri farmer passed away and left 17 mules to his three sons . DT NNP NN VBD RB CC VBD CD NNS TO PRP$ CD NNS . The instructions left in the will said that the oldest boy was to get one-half , the second oldest one-third , and the youngest one-ninth . DT NNS VBD IN DT NN VBD IN DT JJS NN VBD TO VB NN , DT JJ JJS NN , CC DT JJS NN . The three sons , recognizing the difficulty of dividing 17 mules into these fractions , began to argue . DT CD NNS , VBG DT NN IN VBG CD NNS IN DT NNS , VBD TO VB . Their uncle heard about the argument , hitched up his mule and drove out to settle the matter . PRP$ NN VBD IN DT NN , VBD RP PRP$ NN CC VBD RP TO VB DT NN . He added his mule to the 17 , making 18 . PRP VBD PRP$ NN TO DT CD , VBG CD . The oldest therefore got one-half , or nine , the second oldest got one-third , or six , and the youngest son got one-ninth , or two . DT JJS RB VBD NN , CC CD , DT JJ NN VBD NN , CC CD , CC DT JJS NN VBD JJ , CC CD . Adding up 9 , 6 and 2 equals 17 . VBG IN CD , CD CC CD NNS CD . The uncle , having settled the argument , hitched up his mule and drove home . DT NN , VBG VBN DT NN , VBD RP PRP$ NN CC VBD NN . Thousands of fisherman from Spain , Portugal and Italy have gone on strike to join other European protests against soaring fuel prices . NNS IN NN IN NNP , NNP CC NNP VBP VBN IN NN TO VB JJ JJ NNS IN VBG NN NNS . Spanish fisherman say almost the entire Spanish fleet , the largest in Europe , remained in port on Friday . JJ NN VBP RB DT JJ JJ NN , DT JJS IN NNP , VBD IN NN IN NNP . Trawlers and larger commercial boats also remained docked at ports across Portugal . NNS CC JJR JJ NNS RB VBD VBN IN NNS IN NNP . And in Italy , about 12,000 fisherman joined the strike . CC IN NNP , IN CD NN VBD DT NN . French fisherman have already been on strike for two weeks , at times blocking oil terminals and disrupting shipping traffic . JJ NN VBP RB VBN IN NN IN CD NNS , IN NNS VBG NN NNS CC VBG NN NN . In Madrid Friday , fishermen gathered outside the Environment , Agriculture and Fishing Ministry , where they handed out more than 20 tons of free fish to try to win public support . IN NNP NNP , NNS VBD IN DT NNP , NNP CC NNP NNP , WRB PRP VBD RP JJR IN CD NNS IN JJ NN TO VB TO VB JJ NN . The fisherman say rapidly rising fuel costs are threatening their livelihoods . DT NN VBP RB VBG NN NNS VBP VBG PRP$ NNS . Spanish Economy Minister Pedro Solbes told reporters Friday the government is looking into ways to help the fishermen but can not cut fuel taxes . JJ NNP NNP NNP NNP VBD NNS NNP DT NN VBZ VBG IN NNS TO VB DT NNS CC MD RB VB NN NNS . A top U.S. aid official in Iraq has defended the pace of reconstruction there and detailed several projects tapped to receive a share of $ 4.3 billion in reconstruction funds . DT JJ NNP NN NN IN NNP VBZ VBN DT NN IN NN EX CC JJ JJ NNS VBN TO VB DT NN IN $ CD CD IN NN NNS . U.S. Agency for International Development administrator ( USAID ) Andrew Natsios said those funds have been earmarked for repairing electricity grids , constructing water treatment plants and power stations , and building hundreds of schools , firehouses , clinics and police stations . NNP NNP IN NNP NNP NN LRB NNP RRB NNP NNP VBD DT NNS VBP VBN VBN IN VBG NN NNS , VBG NN NN NNS CC NN NNS , CC VBG NNS IN NNS , NNS , NNS CC NN NNS . Mr. Natsios said $ 86 million has been allocated to Iraq 's electoral commission and several non-government organizations preparing for the January elections . NNP NNP VBD $ CD CD VBZ VBN VBN TO NNP POS JJ NN CC JJ JJ NNS VBG IN DT NNP NNS . Mr. Natsios acknowledged that the ongoing insurgency has slowed rebuilding efforts , but said he is optimistic about Iraq 's future . NNP NNP VBD IN DT JJ NN VBZ VBN NN NNS , CC VBD PRP VBZ JJ IN NNP POS NN . Turkish troops have killed two more Kurdish rebels in an overnight clash in the Tunceli region of eastern Turkey . JJ NNS VBP VBN CD JJR JJ NNS IN DT JJ NN IN DT NNP NN IN JJ NNP . The latest clash occurred Friday in an area where government troops have been conducting military operations against the rebels in the Kurdistan Worker 's Party , or PKK . DT JJS NN VBD NNP IN DT NN WRB NN NNS VBP VBN VBG JJ NNS IN DT NNS IN DT NNP NNP POS NNP , CC NNP . The Turkish military said three Kurdish militants were killed in the same area on Thursday . DT JJ NN VBD CD NNP NNS VBD VBN IN DT JJ NN IN NNP . Also Thursday , Turkish authorities said suspected militants killed at least four forestry workers and wounded four others . RB NNP , JJ NNS VBD JJ NNS VBN IN JJS CD NN NNS CC VBD CD NNS . The attack occurred in Bingol province in southeastern Turkey . DT NN VBD IN NNP NN IN JJ NNP . Turkey has sent more troops and tanks to the Tunceli region amid speculation about a possible Turkish incursion against Kurdish rebels in northern Iraq . NNP VBZ VBN JJR NNS CC NNS TO DT NNP NN IN NN IN DT JJ JJ NN IN JJ NNS IN JJ NNP . The PKK has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 . DT NNP VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD . The United States , the European Union and Turkey classify the PKK as a terrorist group . DT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN . Saudi Arabia has taken a firm stance with Syria , telling its president to begin fully removing his troops from Lebanon in accordance with a United Nations resolution , or Saudi-Syrian relations will suffer . NNP NNP VBZ VBN DT JJ NN IN NNP , VBG PRP$ NN TO VB RB VBG PRP$ NNS IN NNP IN NN IN DT NNP NNP NN , CC JJ NNS MD VB . A Saudi official said Crown Prince Abdullah delivered the warning Thursday during a meeting in Riyadh with Syrian President Bashar al-Assad . DT NNP NN VBD NNP NNP NNP VBD DT NN NNP IN DT NN IN NNP IN JJ NNP NNP NNP . At the United Nations , Secretary-General Kofi Annan said he will be sending his special envoy , Terje Roed-Larsen , to Damascus and Beirut to discuss removing Syria 's 14,000 troops in accordance with U.N. Resolution 1559 . IN DT NNP NNP , NNP NNP NNP VBD PRP MD VB VBG PRP$ JJ NN , NNP NNP , TO NNP CC NNP TO VB VBG NNP POS CD NNS IN NN IN NNP NNP CD . Mr. Annan said he hopes to be able to report progress on the Syrian withdrawal to the Security Council in April . NNP NNP VBD PRP VBZ TO VB JJ TO VB NN IN DT JJ NN TO DT NNP NNP IN NNP . In Beirut , pro-Syrian politicians ignored opposition demands for a full Syrian withdrawal as a pre-condition for joining the new government . IN NNP , JJ NNS VBN NN NNS IN DT JJ JJ NN IN DT NN IN VBG DT JJ NN . Instead they have called for dialogue through the formation of a national unity government . IN PRP VBP VBN IN NN IN DT NN IN DT JJ NN NN . Pakistan 's prime minister says he will push forward the ongoing peace process with India when he meets his Indian counterpart , Manmohan Singh , in New Delhi next month . NNP POS JJ NN VBZ PRP MD VB RB DT JJ NN NN IN NNP WRB PRP VBZ PRP$ JJ NN , NNP NNP , IN NNP NNP JJ NN . Shaukat Aziz travels to India and two other South Asian nations after the Muslim festival of Eid al-Fitr in the third week of November . NNP NNP VBZ TO NNP CC CD JJ JJ JJ NNS IN DT NNP NN IN NNP NNP IN DT JJ NN IN NNP . In New Delhi , he is also scheduled to meet with Congress party leader , Sonia Gandhi Mr. Aziz told reporters Sunday that Pakistan desires to resolve all issues peacefully with every country , including India . IN NNP NNP , PRP VBZ RB VBN TO VB IN NNP NN NN , NNP NNP NNP NNP VBD NNS NNP IN NNP VBZ TO VB DT NNS RB IN DT NN , VBG NNP . Pakistan and India , who have fought three wars , have been engaged in formal peace talks since January . NNP CC NNP , WP VBP VBN CD NNS , VBP VBN VBN IN JJ NN NNS IN NNP . Mr. Aziz also said President Pervez Musharraf 's comments on Kashmir last week were meant to stir a debate within Pakistan , not as a proposal for India . NNP NNP RB VBD NNP NNP NNP POS NNS IN NNP JJ NN VBD VBN TO VB DT NN IN NNP , RB IN DT NN IN NNP . Some of this information provided by AP and Reuters . DT IN DT NN VBN IN NNP CC NNP . A handgun once owned by Elvis Presley was stolen from a museum in the music titan 's home town of Memphis , Tennessee . DT NN RB VBN IN NNP NNP VBD VBN IN DT NN IN DT NN NN POS NN NN IN NNP , NNP . Authorities said the black , 9 mm Smith & Wesson pistol was stolen from a display case in the Elvis After Dark museum , across the street from Presley 's Graceland mansion . NNS VBD DT JJ , CD NN NNP NNP NNP NN VBD VBN IN DT NN NN IN DT NNP IN NNP NN , IN DT NN IN NNP POS NNP NN . A video camera caught a man removing the pistol from the display case around midnight . DT NN NN VBD DT NN VBG DT NN IN DT NN NN IN NN . The theft came to light on August 17 , when a visitor noticed an unfastened glass panel on the case . DT NN VBD TO NN IN NNP CD , WRB DT NN VBD DT JJ NN NN IN DT NN . Officials from Graceland , which owns the museum , subsequently viewed the video tape . NNS IN NNP , WDT VBZ DT NN , RB VBD DT NN NN . Presley died at Graceland on August 16 , 1977 , and is buried in a small garden beside the house . NNP VBD IN NNP IN NNP CD , CD , CC VBZ VBN IN DT JJ NN IN DT NN . Thousands of visitors from around the world have journeyed to Memphis to observe the 30th anniversary of his death . NNS IN NNS IN IN DT NN VBP VBN TO NNP TO VB DT JJ NN IN PRP$ NN . Russian-born ice dancer Sergey Magerovskiy has become a United States citizen and is now eligible to compete with partner Tiffany Stiegler to represent the United States at the Turin Winter Olympics in February . JJ NN NN NNP NNP VBZ VBN DT NNP NNPS NN CC VBZ RB JJ TO VB IN NN NNP NNP TO VB DT NNP NNPS IN DT NNP NNP NNPS IN NNP . USA Figure Skating says Magerovskiy was sworn-in during a ceremony in Detroit on Wednesday . NNP NNP NNP VBZ NNP VBD JJ IN DT NN IN NNP IN NNP . In 2002 , he married American Rebecca Palmer , his former partner , and applied for naturalization under U.S. law after three years of marriage . IN CD , PRP VBD JJ NNP NNP , PRP$ JJ NN , CC VBD IN NN IN NNP NN IN CD NNS IN NN . The Olympics is the only major global figure skating competition where both partners must be from the same nation . DT NNPS VBZ DT RB JJ JJ NN VBG NN WRB DT NNS MD VB IN DT JJ NN . The move comes one week after a special bill was passed by the U.S. Congress regarding U.S. citizenship for aliens of extraordinary ability , including that of U.S. ice dancing champion Tanith Belbin from Canada . DT NN VBZ CD NN IN DT JJ NN VBD VBN IN DT NNP NNP VBG NNP NN IN NNS IN JJ NN , VBG IN IN NNP NN NN NN NNP NNP IN NNP . Afghanistan 's Taleban regime , which was driven from power by U.S.-led forces , has launched a clandestine radio station that is being heard in that country 's southern provinces . NNP POS NNP NN , WDT VBD VBN IN NN IN JJ NNS , VBZ VBN DT JJ NN NN WDT VBZ VBG VBN IN DT NN POS JJ NNS . The pirate radio station , called Shariat Shagh or Voice of Shariat , operates from a mobile transmitter and broadcasts anti-U.S. and anti-government propaganda and Islamic hymns . DT NN NN NN , VBD NNP NNP CC NNP IN NNP , VBZ IN DT JJ NN CC NNS JJ CC JJ NN CC JJ NNS . It can be heard in regions of the country which were once the strongholds of the fundamentalist movement . PRP MD VB VBN IN NNS IN DT NN WDT VBD RB DT NNS IN DT NN NN . The Voice of Shariat comes as a bloody insurgency still rages in parts of Afghanistan , particularly in the south . DT NNP IN NNP VBZ IN DT JJ NN RB VBZ IN NNS IN NNP , RB IN DT NN . A Taleban spokesman said the radio station will tell listeners about the Taleban 's thoughts and objectives . DT NNP NN VBD DT NN NN MD VB NNS IN DT NNP POS NNS CC NNS . U.S.-led forces toppled the Taleban government after it refused to hand over al-Qaida leader Osama bin Laden , architect of the September 11 , 2001 , attacks against the U.S. JJ NNS VBD DT NNP NN IN PRP VBD TO VB RP NNP NN NNP NNP NNP , NN IN DT NNP CD , CD , NNS IN DT NNP A flurry of economic reports on Monday paint a mixed picture of the U.S. economy . DT NN IN JJ NNS IN NNP VBP DT JJ NN IN DT NNP NN . The Commerce Department says sales of newly-built homes dropped 9.2 percent in January . DT NNP NNP VBZ NNS IN JJ NNS VBD CD NN IN NNP . Home sales have been central to the U.S. economic expansion over the past year , boosted by low mortgage rates that allowed home buyers to take out larger loans . NN NNS VBP VBN JJ TO DT NNP JJ NN IN DT JJ NN , VBN IN JJ NN NNS WDT VBD NN NNS TO VB RP JJR NNS . A separate report on manufacturing in the Chicago area showed factory work expanding at an accelerated rate in February . DT JJ NN IN NN IN DT NNP NN VBD NN NN VBG IN DT JJ NN IN NNP . Economists track the key area for clues about the nation-wide health of the troubled factory sector . NNS VBP DT JJ NN IN NNS IN DT JJ NN IN DT JJ NN NN . Still another government report showed U.S. consumer spending did not grow in January , while a measure of inflation rose . RB DT NN NN VBD NNP NN NN VBD RB VB IN NNP , IN DT NN IN NN VBD . Consumer spending offers indications of the overall health of the U.S. economy . NN NN VBZ NNS IN DT JJ NN IN DT NNP NN . The United Nations says the Haitian government has initialed an agreement to receive $ 41 million in aid to prepare for elections later this year . DT NNP NNP VBZ DT JJ NN VBZ VBN DT NN TO VB $ CD CD IN NN TO VB IN NNS RBR DT NN . A U.N. statement issued Tuesday said the funds will come from Canada , the European Union and the United States . DT NNP NN VBN NNP VBD DT NNS MD VB IN NNP , DT NNP NNP CC DT NNP NNPS . Haiti itself pledged three million dollars . NNP PRP VBD CD CD NNS . U.N. Special Representative Juan Gabriel Valdes said the aid package showed that there was strong international support for what he called ' the establishment of a stable atmosphere for elections and for the return of constitutional order in Haiti . ' NNP JJ NNP NNP NNP NNP VBD DT NN NN VBD IN EX VBD JJ JJ NN IN WP PRP VBD `` DT NN IN DT JJ NN IN NNS CC IN DT NN IN JJ NN IN NNP . `` On Monday , the International Monetary Fund approved $ 15.6 million for Haiti , saying the money is intended to help the nation recover from an extended period of political conflict . IN NNP , DT NNP NNP NNP VBD $ CD CD IN NNP , VBG DT NN VBZ VBN TO VB DT NN VBP IN DT JJ NN IN JJ NN . Last February , then-President Jean-Bertrand Aristide fled the Caribbean nation amid an armed rebellion . JJ NNP , JJ NNP NNP VBD DT NNP NN IN DT JJ NN . He now lives in exile in South Africa . PRP RB VBZ IN NN IN NNP NNP . Ivory Coast 's new transitional prime minister , Charles Konan Banny , says he hopes to restore trust in the divided country . NNP NNP POS JJ JJ JJ NN , NNP NNP NNP , VBZ PRP VBZ TO VB NN IN DT VBN NN . Mr. Banny made the comment after meeting with President Laurent Gbagbo in Abidjan late Monday , one day after his appointment by African mediators . NNP NNP VBD DT NN IN VBG IN NNP NNP NNP IN NNP JJ NNP , CD NN IN PRP$ NN IN JJ NNS . VOA 's West Africa correspondent Nico Colombant says Mr. Banny is expected to meet with outgoing Prime Minister Seydou Diarra Tuesday . NNP POS NNP NNP NN NNP NNP VBZ NNP NNP VBZ VBN TO VB IN VBG NNP NNP NNP NNP NNP . United Nations Secretary-General Kofi Annan has urged Mr. Banny 's government to immediately begin implementing a transition plan designed to lead to new elections by next October . NNP NNP NNP NNP NNP VBZ VBN NNP NNP POS NN TO RB VB VBG DT NN NN VBN TO VB TO JJ NNS IN JJ NNP . A U.N. resolution gives the new prime minister expanded authority to carry out electoral reforms and push for rebel disarmament . DT NNP NN VBZ DT JJ JJ NN VBN NN TO VB RP JJ NNS CC NN IN NN NN . Mr. Banny is governor of West Africa 's central bank . NNP NNP VBZ NN IN NNP NNP POS JJ NN . African mediators appointed him prime minister on Sunday , ending a deadlock between Mr. Gbagbo , opposition leaders and rebels . JJ NNS VBD PRP JJ NN IN NNP , VBG DT NN IN NNP NNP , NN NNS CC NNS . Rain has washed out the entire first day of the fifth and final cricket test between South Africa and England in Centurion . NN VBZ VBN RP DT JJ JJ NN IN DT NN CC JJ NN NN IN NNP NNP CC NNP IN NNP . The start of Friday 's match was delayed twice , but as rain continued to fall it was clear the players would not be able to take the field at all . DT NN IN NNP POS NN VBD VBN RB , CC IN NN VBD TO VB PRP VBD JJ DT NNS MD RB VB JJ TO VB DT NN IN DT . Occasional thundershowers are predicted for Saturday . JJ NNS VBP VBN IN NNP . England leads South Africa in the series 02-Jan . NNP VBZ NNP NNP IN DT NN CD . The second test ended in a draw . DT JJ NN VBN IN DT NN . South Africa named all rounder Andrew Hall and fast bowler Andre Nel to the starting line-up , replacing batsman Boeta Dippenaar and fast bowler Dale Steyn . NNP NNP VBD NN NN NNP NNP CC JJ NN NNP NNP TO DT VBG NN , VBG NN NNP NNP CC JJ NN NNP NNP . England made just one change to the team that won the fourth test . NNP VBD RB CD NN TO DT NN WDT VBD DT JJ NN . Simon Jones was recalled for James Anderson , who bowled without much control in the fourth test . NNP NNP VBD VBN IN NNP NNP , WP VBD IN NN NN IN DT JJ NN . The Cannes Film Festival has named Hong Kong director Wong Kar Wai as the head of this year 's international jury . DT NNP NNP NNP VBZ VBN NNP NNP NN NNP NNP NNP IN DT NN IN DT NN POS JJ NN . His selection marks the first time a Chinese film maker has headed the nearly 60-year-old awards festival . PRP$ NN VBZ DT JJ NN DT JJ NN NN VBZ VBN DT RB JJ NNS NN . Mr. Wong 's 1997 film Happy Together earned him a best director award from the festival . NNP NNP POS CD NN NNP NNP VBD PRP DT JJS NN NN IN DT NN . His other films include In The Mood For Love ( 2000 ) and the stylized sci-fi movie 2047 ( 2004 ) . PRP$ JJ NNS VBP IN DT NNP IN NNP LRB CD RRB CC DT VBN JJ NN CD LRB CD RRB . On Wednesday , festival organizers issued a statement from Mr. Wong in which he said he is honored to serve as jury president . IN NNP , NN NNS VBD DT NN IN NNP NNP IN WDT PRP VBD PRP VBZ VBN TO VB IN NN NN . Venezuelan President Hugo Chavez says he would welcome a visit by U.S. State Department official Thomas Shannon , but he says the diplomat should not come to cause problems . JJ NNP NNP NNP VBZ PRP MD VB DT NN IN NNP NNP NNP NN NNP NNP , CC PRP VBZ DT NN MD RB VB TO VB NNS . Mr. Chavez made the comment in his weekly radio address Sunday . NNP NNP VBD DT NN IN PRP$ JJ NN NN NNP . The president said Shannon contacted his foreign minister to say he wants to visit Venezuela . DT NN VBD NNP VBD PRP$ JJ NN TO VB PRP VBZ TO VB NNP . Mr. Chavez said if Shannon shows Venezuela respect , it will show him respect in return . NNP NNP VBD IN NNP VBZ NNP NN , PRP MD VB PRP VB IN NN . Shannon is the U.S. assistant secretary of state for Western Hemisphere affairs Earlier this month in Caracas , Chavez supporters pelted the car of U.S. Ambassador William Brownfield with eggs and vegetables as he left a charity event . NNP VBZ DT NNP NN NN IN NN IN JJ NNP NNS RBR DT NN IN NNP , NNP NNS VBD DT NN IN NNP NNP NNP NNP IN NNS CC NNS IN PRP VBD DT NN NN . Mr. Chavez had accused the ambassador of repeatedly engaging in provocative activity . NNP NNP VBD VBN DT NN IN RB VBG IN JJ NN . The United States threatened to restrict the movements of Venezuela 's ambassador to Washington , Bernando Alvarez , if there is another such incident . DT NNP NNPS VBD TO VB DT NNS IN NNP POS NN TO NNP , NNP NNP , IN EX VBZ DT JJ NN . Sri Lankan officials say eight government troops have been killed by a land mine explosion in the north of the country . NNP NNP NNS VBP CD NN NNS VBP VBN VBN IN DT NN NN NN IN DT NN IN DT NN . Officials say suspected Tamil rebels detonated the land mine Thursday , as a Sri Lankan navy convoy passed through the northern district of Vavuniya . NNS VBP VBN NNP NNS VBD DT NN NN NNP , IN DT NNP NNP NN NN VBN IN DT JJ NN IN NNP . The blast destroyed a navy bus , killing at least eight sailors . DT NN VBD DT NN NN , VBG IN JJS CD NNS . Dozens of Sri Lankan troops have died in attacks blamed on Tamil rebels in recent weeks . NNS IN NNP NNP NNS VBP VBN IN NNS VBN IN NNP NNS IN JJ NNS . The violence has severely strained a cease-fire agreed by the two sides in 2002 . DT NN VBZ RB VBN DT NN VBN IN DT CD NNS IN CD . The rebels have threatened to resume their armed struggle unless the government gives them a separate Tamil homeland in the north and east of the country . DT NNS VBP VBN TO VB PRP$ JJ NN IN DT NN VBZ PRP DT JJ NNP NN IN DT NN CC NN IN DT NN . Former Beatle Paul McCartney and his wife Heather have donated nearly $ 2 million to the tsunami relief efforts . JJ NNP NNP NNP CC PRP$ NN NNP VBP VBN RB $ CD CD TO DT NN NN NNS . The couple said in a statement they were giving the money to the International Rescue Committee UK , an independent British charity that operates in Indonesia 's Aceh province . DT NN VBD IN DT NN PRP VBD VBG DT NN TO DT NNP NNP NNP NNP , DT JJ JJ NN WDT VBZ IN NNP POS NNP NN . A spokesman for the charity told the British media they were overwhelmed by the couple 's generous gesture . DT NN IN DT NN VBD DT JJ NNS PRP VBD VBN IN DT NN POS JJ NN . He said the group will use the money to deploy mobile emergency teams in Aceh to supply clean drinking water and medicines to the needy . PRP VBD DT NN MD VB DT NN TO VB JJ NN NNS IN NNP TO VB JJ NN NN CC NNS TO DT NN . A source close to the couple said that , like most people , they were moved by the devastation and wanted to do their part to help in the British effort . DT NN RB TO DT NN VBD IN , IN JJS NNS , PRP VBD VBN IN DT NN CC VBD TO VB PRP$ NN TO VB IN DT JJ NN . Officials in the main Palestinian faction , Fatah , say jailed leader Marwan Barghouti has decided to run for Palestinian president . NNS IN DT JJ NN NN , NNP , VBP JJ NN NNP NNP VBZ VBN TO VB IN JJ NN . But it remains unclear if the senior Fatah member will run as an independent . CC PRP VBZ JJ IN DT JJ NNP NN MD VB IN DT JJ . The outspoken leader is serving five life sentences in an Israeli prison for the murder of five Israelis . DT JJ NN VBZ VBG CD NN NNS IN DT JJ NN IN DT NN IN CD NNS . News of his intention to run surfaced Thursday , the same day that Fatah leaders confirmed former Prime Minister Mahmoud Abbas as their candidate in the January 9 election . NN IN PRP$ NN TO VB VBN NNP , DT JJ NN IN NNP NNS VBD JJ NNP NNP NNP NNP IN PRP$ NN IN DT NNP CD NN . Barghouti had earlier said he would not run if Fatah chose Mr. Abbas as its candidate . NNP VBD RBR VBN PRP MD RB VB IN NNP VBD NNP NNP IN PRP$ NN . In other developments , the Israeli army says two senior Hamas members were killed and a third wounded during an arrest operation in the West Bank town of Hebron . IN JJ NNS , DT JJ NN VBZ CD JJ NNP NNS VBD VBN CC DT JJ VBN IN DT NN NN IN DT NNP NNP NN IN NNP . Donatella Versace 's daughter Allegra is battling anorexia . NNP NNP POS NN NNP VBZ VBG NN . In a statement released by her spokesman Robert Zimmerman , the Italian fashion designer and her estanged husband , Paul Beck , said their 20-year-old daughter has had the eating disorder for years , and is currently receiving treatment . IN DT NN VBN IN PRP$ NN NNP NNP , DT JJ NN NN CC PRP$ VBN NN , NNP NNP , VBD PRP$ JJ NN VBZ VBN DT JJ NN IN NNS , CC VBZ RB VBG NN . Donatella Versace first confirmed the news on the syndicated U.S. television show The Insider , following speculation about her daughter 's gaunt appearance . NNP NNP RB VBD DT NN IN DT JJ NNP NN NN DT NNP , VBG NN IN PRP$ NN POS NN NN . She and Paul Beck are legally separated . PRP CC NNP NNP VBP RB VBN . The United Nations says the devastation caused in Bangladesh by Cyclone Sidr last month is far worse than previously thought . DT NNP NNP VBZ DT NN VBN IN NNP IN NNP NNP JJ NN VBZ RB JJR IN RB VBN . The U.N. Office for the Coordination of Humanitarian Affairs says nearly 2.6 million Bangladeshis across nine districts still need emergency assistance . DT NNP NNP IN DT NN IN NNP NNP VBZ RB CD CD NNS IN CD NNS RB VBP NN NN . The total number of people affected by the cyclone was about 8.5 million , 1.5 million more than initially thought . DT JJ NN IN NNS VBN IN DT NN VBD IN CD CD , CD CD JJR IN RB VBN . The U.N. says property damage is also more severe than first reported . DT NNP VBZ NN NN VBZ RB RBR JJ IN RB VBN . Nearly 5,64,000 homes were destroyed , up from initial estimates of 2,00,000 . RB CD NNS VBD VBN , RB IN JJ NNS IN CD . The confirmed death toll from the cyclone is 3,268 . DT VBN NN NN IN DT NN VBZ CD . The U.N. says food , shelter and cash are needed the most in terms of emergency aid . DT NNP VBZ NN , NN CC NN VBP VBN DT RBS IN NNS IN NN NN . Proper sanitation and clean water are also high priorities . JJ NN CC JJ NN VBP RB JJ NNS . The November 15 cyclone was the worst in Bangladesh in more than a decade . DT NNP CD NN VBD DT JJS IN NNP IN JJR IN DT NN . It struck the coast with fierce winds and a tidal surge that wiped out villages . PRP VBD DT NN IN JJ NNS CC DT JJ NN WDT VBD RP NNS . A bomb blast in Pakistan 's northwestern city of Peshawar has wounded eight people just hours after the U.S. consulate was temporarily closed after receiving a threat . DT NN NN IN NNP POS JJ NN IN NNP VBZ VBN CD NNS RB NNS IN DT NNP NN VBD RB VBN IN VBG DT NN . Police say the blast was caused by explosives planted on a motorcycle parked in a crowded bazaar in the city center . NNS VBP DT NN VBD VBN IN NNS VBN IN DT NN VBN IN DT JJ NN IN DT NN NN . Police say it seems the place where the blast occurred was not the target , and that the attacker was transporting the bomb . NNS VBP PRP VBZ DT NN WRB DT NN VBD VBD RB DT NN , CC IN DT NN VBD VBG DT NN . Earlier on Tuesday , a spokeswoman for the U.S. embassy in Islamabad said its consulate in Peshawar has been temporarily closed after receiving a ' specific and credible ' threat . RB IN NNP , DT NN IN DT NNP NN IN NNP VBD PRP$ NN IN NNP VBZ VBN RB VBN IN VBG DT `` JJ CC JJ `` NN . Peruvian lawmakers have rejected votes of no confidence against the country 's prime and transport ministers . JJ NNS VBP VBN NNS IN DT NN IN DT NN POS JJ CC NN NNS . Opposition lawmakers accused Prime Minister Carlos Ferrero of not doing enough to offset the effects of high world oil prices . NNP NNS VBD NNP NNP NNP NNP IN RB VBG RB TO VB DT NNS IN JJ NN NN NNS . The opposition also called for the dismissal of Transport Minister Jose Ortiz over problems within the country 's airline sector . DT NN RB VBD IN DT NN IN NNP NNP NNP NNP IN NNS IN DT NN POS NN NN . Peru 's top airline was suspended from flying last month due to an ownership dispute , while its second-biggest carrier was grounded for safety reasons . NNP POS JJ NN VBD VBN IN VBG JJ NN JJ TO DT NN NN , IN PRP$ JJ NN VBD VBN IN NN NNS . Peru 's Congress fired the country 's interior minister in May over accusations he mishandled a riot in southern Peru . NNP POS NNP VBD DT NN POS JJ NN IN NNP IN NNS PRP VBD DT NN IN JJ NNP . Heavy rain and snow in Pakistani Kashmir has grounded relief flights to survivors of last year 's earthquake for a third consecutive day . JJ NN CC NN IN JJ NNP VBZ VBN NN NNS TO NNS IN JJ NN POS NN IN DT JJ JJ NN . The bad weather also forced former President George Bush , the father of the current president , to postpone a flight to the regional capital , Muzaffarabad . DT JJ NN RB VBD JJ NNP NNP NNP , DT NN IN DT JJ NN , TO VB DT NN TO DT JJ NN , NNP . The elder Mr. Bush is visiting Pakistan in his role as a United Nations special envoy for earthquake relief . DT NN NNP NNP VBZ VBG NNP IN PRP$ NN IN DT NNP NNP JJ NN IN NN NN . He greeted earthquake refugees Tuesday at a tent camp on the outskirts of Islamabad . PRP VBD NN NNS NNP IN DT JJ NN IN DT NNS IN NNP . On Monday , he discussed aid and reconstruction efforts with Pakistani President Pervez Musharraf . IN NNP , PRP VBD NN CC NN NNS IN JJ NNP NNP NNP . U.N. officials say the world body is still far short of the $ 500 million it needs to sustain relief operations for the three million people made homeless by last October 's earthquake . NNP NNS VBP DT NN NN VBZ RB RB JJ IN DT $ CD CD PRP VBZ TO VB NN NNS IN DT CD CD NNS VBN JJ IN JJ NNP POS NN . Afghanistan 's border police say a U.S.-led coalition warplane has mistakenly killed 12 police officers in the eastern part of the country . NNP POS NN NNS VBP DT JJ NN NN VBZ RB VBN CD NNS NNS IN DT JJ NN IN DT NN . Afghan Commander Abdul Rahman said the aircraft attacked a patrol Thursday in Paktika province . JJ NNP NNP NNP VBD DT NN VBD DT NN NNP IN NNP NN . A coalition spokesman says the report is being investigated . DT NN NN VBZ DT NN VBZ VBG VBN . He had no further details . PRP VBD DT JJ NNS . U.S.-backed coalition forces began investigating in April two cases in which civilians and Afghan security forces may have been killed by friendly fire . JJ NN NNS VBD VBG IN NNP CD NNS IN WDT NNS CC JJ NN NNS MD VB VBN VBN IN JJ NN . Coalition forces are hunting down Taleban insurgents in the province . NN NNS VBP VBG RP NNP NNS IN DT NN . Earlier , Afghan officials said two suicide bomb attacks in the south of the country wounded seven Afghan policemen and one foreign soldier . RB , JJ NNS VBD CD NN NN NNS IN DT NN IN DT NN VBD CD JJ NNS CC CD JJ NN . Russian forces have begun withdrawing from a Soviet-era base in Georgia . JJ NNS VBP VBN VBG IN DT JJ NN IN NNP . A train carrying tanks , armored personnel carriers and other support vehicles left the base at Akhalkalaki Monday on its way back to Russia . DT NN VBG NNS , VBN NNS NNS CC JJ NN NNS VBD DT NN IN NNP NNP IN PRP$ NN RB TO NNP . Under an agreement with Georgia , the base will close by the end of 2007 , while a Russian airbase at Batumi will close by the end of 2008 . IN DT NN IN NNP , DT NN MD VB IN DT NN IN CD , IN DT JJ NN IN NNP MD VB IN DT NN IN CD . Meanwhile , negotiators from Georgia and its breakaway region of Abkhazia have met in Tbilisi Monday for talks on security , economic and refugee issues . RB , NNS IN NNP CC PRP$ JJ NN IN NNP VBP VBN IN NNP NNP IN NNS IN NN , JJ CC JJ NNS . Officials from both sides called the United Nations-hosted talks productive . NNS IN DT NNS VBD DT NNP JJ NNS JJ . The discussions were the first after a five-year break Abkhazia has acted as an independent state since it drove out Georgian troops in the early 1990s . DT NNS VBD DT JJ IN DT JJ NN NNP VBZ VBN IN DT JJ NN IN PRP VBD RP JJ NNS IN DT JJ NNS . However , it is not recognized by other countries , and Georgian President Mikhail Saakashvili has pledged to bring Abkhazia back under central government control . RB , PRP VBZ RB VBN IN JJ NNS , CC JJ NNP NNP NNP VBZ VBN TO VB NNP RB IN JJ NN NN . British Prime Minister Gordon Brown is heading to Washington Monday for talks with U.S. President Barack Obama on forging a global pact aimed at fighting the world economic crisis . JJ NNP NNP NNP NNP VBZ VBG TO NNP NNP IN NNS IN NNP NNP NNP NNP IN VBG DT JJ NN VBN IN VBG DT NN JJ NN . Mr. Brown will meet with Mr. Obama Tuesday at the White House . NNP NNP MD VB IN NNP NNP NNP IN DT NNP NNP . On Wednesday , the British leader will address the U.S Senate and House of Representatives . IN NNP , DT JJ NN MD VB DT NNP NNP CC NNP IN NNPS . Mr. Brown wrote in London 's ' Sunday Times ' that he and President Obama will discuss ' a global new deal , whose impact can stretch from the villages of Africa to reforming the financial institutions of London and New York . ' NNP NNP VBD IN NNP POS `` NNP NNP `` IN PRP CC NNP NNP MD VB `` DT JJ JJ NN , WP$ NN MD VB IN DT NNS IN NNP TO VBG DT JJ NNS IN NNP CC NNP NNP . `` Mr. Brown said all nations should agree to inject cash into their economies , agree to international banking reforms and an overhaul of financial institutions . NNP NNP VBD DT NNS MD VB TO VB NN IN PRP$ NNS , VBP TO JJ NN NNS CC DT NN IN JJ NNS . He will be the first European leader to meet with Mr. Obama since the president took office in January . PRP MD VB DT JJ JJ NN TO VB IN NNP NNP IN DT NN VBD NN IN NNP . Alberto Gonzales has been formally sworn in as U.S. attorney general , saying he welcomes the opportunity to serve as the country 's top law enforcement official . NNP NNP VBZ VBN RB VBN IN IN NNP NN NN , VBG PRP VBZ DT NN TO VB IN DT NN POS JJ NN NN NN . President Bush introduced Mr. Gonzales , the country 's first Hispanic attorney general , at a ceremony in Washington D.C. Monday . NNP NNP VBD NNP NNP , DT NN POS JJ JJ NN NN , IN DT NN IN NNP NNP NNP . The president said Mr. Gonzales will lead efforts to protect the United States against another terrorist attack and will pursue criminals at home while protecting the liberty of all Americans . DT NN VBD NNP NNP MD VB NNS TO VB DT NNP NNPS IN DT JJ NN CC MD VB NNS IN NN IN VBG DT NN IN DT NNS . The president called his former White House counsel a good friend . DT NN VBD PRP$ JJ NNP NNP NN DT JJ NN . Mr. Gonzales accepted the post of attorney general earlier this month , after winning Senate confirmation in a 60-to-36 vote . NNP NNP VBD DT NN IN NN NN RBR DT NN , IN VBG NNP NN IN DT JJ NN . He replaced John Ashcroft . PRP VBD NNP NNP . Many Democrats criticized the nomination , saying Mr. Gonzales has helped shape Bush administration policy that contributed to prisoner abuse overseas . JJ NNPS VBD DT NN , VBG NNP NNP VBZ VBN VB NNP NN NN WDT VBD TO NN NN RB . Pakistan officials say they will close four camps holding 2,40,000 refugees from Afghanistan within about six months . NNP NNS VBP PRP MD VB CD NNS VBG CD NNS IN NNP IN IN CD NNS . The announcement was made after Pakistani and Afghan ministers met with United Nations High Commission for Refugees officials in Pakistan 's capital , Islamabad , Wednesday . DT NN VBD VBN IN JJ CC JJ NNS VBD IN NNP NNP NNP NNP IN NNP NNS IN NNP POS NN , NNP , NNP . More than two million Afghan refugees currently live in camps in Pakistan . JJR IN CD CD JJ NNS RB VBP IN NNS IN NNP . Pakistani Prime Minister Shaukat Aziz told NATO and European Union officials last week that the refugee camps along the border with Afghanistan provide recruiting grounds and safe havens for terrorists . JJ NNP NNP NNP NNP VBD NNP CC NNP NNP NNS JJ NN IN DT NN NNS IN DT NN IN NNP VBP VBG NNS CC JJ NNS IN NNS . He said he needs European help in repatriating the people who live in the camps . PRP VBD PRP VBZ JJ NN IN VBG DT NNS WP VBP IN DT NNS . Diplomats from Iran made their first visit Saturday to five Iranians who have been detained by U.S. forces in northern Iraq . NNS IN NNP VBD PRP$ JJ NN NNP TO CD NNS WP VBP VBN VBN IN NNP NNS IN JJ NNP . U.S. military officials say the five , who were detained in January , were helping militants in Iraq fight against U.S. and Iraqi forces . NNP JJ NNS VBP DT CD , WP VBD VBN IN NNP , VBD VBG NNS IN NNP VB IN NNP CC JJ NNS . Tehran says the men are diplomats and is demanding their release . NNP VBZ DT NNS VBP NNS CC VBZ VBG PRP$ NN . An Iraqi foreign ministry statement today said it hoped that the gesture would help ease tensions and facilitate dialogue between the U.S. and Iran . DT JJ JJ NN NN NN VBD PRP VBD IN DT NN MD VB VB NNS CC VB NN IN DT NNP CC NNP . In late May , the United States held its highest level talks with Iran in almost 30 years . IN JJ NNP , DT NNP NNPS VBD PRP$ JJS NN NNS IN NNP IN RB CD NNS . U.S. Ambassador Ryan Crocker met with his Iranian counterpart , Hassan Kazemi Qomi . NNP NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP NNP . During that meeting , Crocker asked Iran to stop supporting militias in Iraq . IN DT NN , NNP VBD NNP TO VB VBG NNS IN NNP . British Prime Minister Tony Blair is in Egypt to discuss ways to revive the Israeli-Palestinian peace process . JJ NNP NNP NNP NNP VBZ IN NNP TO VB NNS TO VB DT JJ NN NN . Mr. Blair held talks in Cairo Saturday with Egyptian President Hosni Mubarak , whose government is a key mediator between Israel and the Palestinians . NNP NNP VBD NNS IN NNP NNP IN JJ NNP NNP NNP , WP$ NN VBZ DT JJ NN IN NNP CC DT NNS . The British leader welcomed a call from Palestinian President Mahmoud Abbas to hold new elections . DT JJ NN VBD DT NN IN JJ NNP NNP NNP TO VB JJ NNS . He said it is a sign that Mr. Abbas is seeking to overcome a deadlock amid rising tensions between his Fatah party and Hamas . PRP VBD PRP VBZ DT NN IN NNP NNP VBZ VBG TO VB DT NN IN VBG NNS IN PRP$ NNP NN CC NNP . Mr. Blair also called on the international community to support Mr. Abbas in order to boost peace efforts . NNP NNP RB VBD IN DT JJ NN TO VB NNP NNP IN NN TO VB NN NNS . After leaving Cairo , Mr. Blair is to travel to Israel and the Palestinian territories . IN VBG NNP , NNP NNP VBZ TO VB TO NNP CC DT JJ NNS . Friday , Mr. Blair was in Ankara for talks with Turkish Prime Minister Recep Tayyip Erdogan . NNP , NNP NNP VBD IN NNP IN NNS IN JJ NNP NNP NNP NNP NNP . Members of parliament in Benin have voted to change the country 's constitution , extending their terms in office by one year . NNS IN NN IN NNP VBP VBN TO VB DT NN POS NN , VBG PRP$ NNS IN NN IN CD NN . Local media report the controversial vote took place behind closed doors late Friday night . JJ NNS VBP DT JJ NN VBD NN IN JJ NNS JJ NNP NN . An overwhelming majority of members voted for the change , with 71 members supporting the change and eight against it . DT JJ NN IN NNS VBD IN DT NN , IN CD NNS VBG DT NN CC CD IN PRP . Benin 's constitution grants lawmakers four-year terms . NNP POS NN NNS NNS JJ NNS . The next legislative election is scheduled for early next year . DT JJ JJ NN VBZ VBN IN JJ JJ NN . If the change is approved by the country 's constitutional court , terms will be five years and legislative elections will be pushed back to 2008 . IN DT NN VBZ VBN IN DT NN POS JJ NN , NNS MD VB CD NNS CC JJ NNS MD VB VBN RB TO CD . Lawmakers argued that the change would bring their elections in line with presidential elections . NNS VBD IN DT NN MD VB PRP$ NNS IN NN IN JJ NNS . They are held every five years in the Benin . PRP VBP VBN DT CD NNS IN DT NNP . Opposition groups said changing the constitution threatens the west African country 's young democracy and is merely a power grab by members of the national assembly . NN NNS VBD VBG DT NN VBZ DT JJS JJ NN POS JJ NN CC VBZ RB DT NN NN IN NNS IN DT JJ NN . Iran and Syria say they will form a united front to confront challenges and threats from other countries . NNP CC NNP VBP PRP MD VB DT JJ NN TO VB NNS CC NNS IN JJ NNS . Syrian Prime Minister Naji Otri , who is in Tehran Wednesday , said the meeting of the two allies comes at a very important and delicate time , when both countries are facing numerous challenges . JJ NNP NNP NNP NNP , WP VBZ IN NNP NNP , VBD DT NN IN DT CD NNS VBZ IN DT RB JJ CC JJ NN , WRB DT NNS VBP VBG JJ NNS . Iran 's vice president , Mohammad Reza Aref , told reporters that Tehran is ready to help Syria on all grounds to confront threats . NNP POS NN NN , NNP NNP NNP , VBD NNS IN NNP VBZ JJ TO VB NNP IN DT NNS TO VB NNS . Iran has been under intense U.S. and European pressure to abandon its nuclear activities , while Washington has accused Syria of being a haven for anti-Iraqi insurgents . NNP VBZ VBN IN JJ NNP CC JJ NN TO VB PRP$ JJ NNS , IN NNP VBZ VBN NNP IN VBG DT NN IN JJ NNS . Tuesday , Washington recalled its ambassador to Syria for consultations , a day after Lebanon 's former prime minister , Rafik Hariri , was killed in a Beirut car bombing . NNP , NNP VBD PRP$ NN TO NNP IN NNS , DT NN IN NNP POS JJ JJ NN , NNP NNP , VBD VBN IN DT NNP NN NN . An EU naval force spokesman says ransom has been paid for the release of a Singapore-flagged chemical tanker , held for nearly two months by Somali pirates . DT NNP JJ NN NN VBZ NN VBZ VBN VBN IN DT NN IN DT JJ NN NN , VBD IN RB CD NNS IN JJ NNS . John Harbor said the money was delivered on Friday morning . NNP NNP VBD DT NN VBD VBN IN NNP NN . He said he expects the pirates to release the crew and leave the ship within about 24 hours , after counting the money . PRP VBD PRP VBZ DT NNS TO VB DT NN CC VB DT NN IN IN CD NNS , IN VBG DT NN . The ransom amount was not specified . DT NN NN VBD RB VBN . The chemical tanker Pramoni was hijacked on January 1 in the Gulf of Aden . DT NN NN NNP VBD VBN IN NNP CD IN DT NNP IN NNP . The crew includes 17 Indonesians , five Chinese , one Vietnamese and one Nigerian . DT NN VBZ CD NNS , CD NNS , CD NN CC CD NN . Somali pirates have made tens of millions of dollars over the past two years hijacking ships for ransom . JJ NNS VBP VBN NNS IN NNS IN NNS IN DT JJ CD NNS VBG NNS IN NN . Multinational naval forces have stopped many attacks near the coast , but pirates have increasingly focused their efforts on the Indian Ocean , an area too large for foreign navies to effectively patrol . JJ JJ NNS VBP VBN JJ NNS IN DT NN , CC NNS VBP RB VBN PRP$ NNS IN DT NNP NNP , DT NN RB JJ IN JJ NNS TO RB VB . United Nations offices around the world have observed a minute of silence for those killed in the 2003 terrorist bombing of the U.N. headquarters in Baghdad . NNP NNPS NNS IN DT NN VBP VBN DT NN IN NN IN DT VBN IN DT CD JJ NN IN DT NNP NN IN NNP . In New York Friday , U.N. Deputy Secretary-General Louise Frechette laid a wreath in front of the memorial plaque honoring the victims of the August 19 attack . IN NNP NNP NNP , NNP NNP NNP NNP NNP VBD DT NN IN NN IN DT JJ NN VBG DT NNS IN DT NNP CD NN . The huge explosion killed 22 people , including the top U.N. envoy in Iraq , Sergio Vieira de Mello , and injured hundreds of others . DT JJ NN VBD CD NNS , VBG DT JJ NNP NN IN NNP , NNP NNP IN NNP , CC JJ NNS IN NNS . In a statement , U.N. Secretary-General Kofi Annan hailed those killed in the bombings , calling them courageous and devoted to helping people in impoverished lands and war-torn countries build better lives . IN DT NN , NNP NNP NNP NNP VBD DT VBN IN DT NNS , VBG PRP JJ CC JJ TO VBG NNS IN JJ NNS CC JJ NNS VBP JJR NNS . Mr. Annan withdrew the U.N. international staff from Iraq in October , 2003 , following a second attack on its offices in Baghdad and a series of attacks on humanitarian workers throughout Iraq . NNP NNP VBD DT NNP JJ NN IN NNP IN NNP , CD , VBG DT JJ NN IN PRP$ NNS IN NNP CC DT NN IN NNS IN JJ NNS IN NNP . Since 2004 , they have slowly been allowed to return . IN CD , PRP VBP RB VBN VBN TO VB . Venezuela 's ambassador to Cuba says President Fidel Castro is eating again and his health has significantly improved since intestinal surgery last year . NNP POS NN TO NNP VBZ NNP NNP NNP VBZ VBG RB CC PRP$ NN VBZ RB VBN IN JJ NN JJ NN . Ali Rodriguez Araque told Venezuelan state television Thursday that the Cuban leader could not eat for a period following his surgery . NNP NNP NNP VBD JJ NN NN NNP IN DT JJ NN MD RB VB IN DT NN VBG PRP$ NN . But , Rodriguez Araque says now that Mr. Castro is eating again , he is improving . CC , NNP NNP VBZ RB IN NNP NNP VBZ VBG RB , PRP VBZ VBG . Last month , Cuba 's state television broadcast images of Venezuelan President Hugo Chavez meeting with Mr. Castro in Havana . JJ NN , NNP POS NN NN NN NNS IN JJ NNP NNP NNP VBG IN NNP NNP IN NNP . It was the first image released of the Cuban president in three months . PRP VBD DT JJ NN VBN IN DT JJ NN IN CD NNS . The Cuban government treats the 80-year-old leader 's health as a state secret . DT JJ NN VBZ DT JJ NN POS NN IN DT NN NN . After his surgery in late July , Mr. Castro temporarily handed power over to his younger brother , Defense Minister Raul Castro . IN PRP$ NN IN JJ NNP , NNP NNP RB VBD NN IN TO PRP$ JJR NN , NNP NNP NNP NNP . A top Russian energy official says Iran is ready for detailed discussions on Moscow 's proposal to conduct Tehran 's uranium enrichment in Russia . DT JJ JJ NN NN VBZ NNP VBZ JJ IN JJ NNS IN NNP POS NN TO VB NNP POS NN NN IN NNP . Sergei Kiryenko , the head of Russia 's atomic energy agency , made the announcement Friday , during a televised meeting with President Vladimir Putin . NNP NNP , DT NN IN NNP POS JJ NN NN , VBD DT NN NNP , IN DT JJ NN IN NNP NNP NNP . Kiryenko says Iranian officials were due to visit Moscow in the coming days to discuss the plan . NNP VBZ JJ NNS VBD JJ TO VB NNP IN DT VBG NNS TO VB DT NN . The proposal for uranium to be enriched in Russia for use in Iranian reactors is aimed at eliminating concerns that Tehran could enrich its own uranium for use in nuclear weapons . DT NN IN NN TO VB VBN IN NNP IN NN IN JJ NNS VBZ VBN IN VBG NNS IN NNP MD VB PRP$ JJ NN IN NN IN JJ NNS . The United States and European Union have backed the Russian proposal as a way to break the deadlock over Iran 's nuclear program . DT NNP NNPS CC NNP NNP VBP VBN DT JJ NN IN DT NN TO VB DT NN IN NNP POS JJ NN . The U.S. accuses Iran of trying to develop nuclear weapons . DT NNP VBZ NNP IN VBG TO VB JJ NNS . Tehran insists its nuclear intentions are peaceful . NNP VBZ PRP$ JJ NNS VBP JJ . Iraqi authorities say at least 40 people have been killed and more than 70 wounded in multiple bomb attacks Wednesday . JJ NNS VBP IN JJS CD NNS VBP VBN VBN CC JJR IN CD VBN IN JJ NN NNS NNP . The first attack took place at an army recruiting center in southern Iraq , in the town of Hilla . DT JJ NN VBD NN IN DT NN NN NN IN JJ NNP , IN DT NN IN NNP . A time bomb planted on a parked bicycle exploded and ripped through a crowd of young men outside the military office , killing 12 of them and wounding 38 . DT NN NN VBD IN DT JJ NN VBD CC VBD IN DT NN IN JJ NNS IN DT JJ NN , VBG CD IN PRP CC VBG CD . In Baghdad , police say at least 24 people were killed and 35 were wounded by a bomb that exploded in the commercial neighborhood of Shurja where clothing and household products are sold . IN NNP , NNS VBP IN JJS CD NNS VBD VBN CC CD VBD VBN IN DT NN WDT VBD IN DT JJ NN IN NNP WRB NN CC NN NNS VBP VBN . Three more people were killed and others were injured by several other bomb blasts in different parts of the Iraqi capital . CD JJR NNS VBD VBN CC NNS VBD VBN IN JJ JJ NN NNS IN JJ NNS IN DT JJ NN . Today 's attacks took place despite an intensified security clampdown in Baghdad by U.S. and Iraqi forces . NN POS NNS VBD NN IN DT JJ NN NN IN NNP IN NNP CC JJ NNS . Pakistan 's cricket team has scored 50-1 after India declared its first innings at 616-5 in the second test at the Eden Gardens ground in Kolkata , India . NNP POS NN NN VBZ VBN JJ IN NNP VBD PRP$ JJ NN IN CD IN DT JJ NN IN DT NNP NNPS NN IN NNP , NNP . A double century from Wasim Jaffer ( 202 ) and centuries from Sourav Ganguly and V.V.S. Laxman put India in a commanding position . DT JJ NN IN NNP NNP LRB CD RRB CC NNS IN NNP NNP CC NNP NNP VBD NNP IN DT JJ NN . Ganguly delighted the home crowd with his first century at Eden Gardens , scoring 102 before holing out to Sohail Tanvir . RB VBD DT NN NN IN PRP$ JJ NN IN NNP NNP , VBG CD IN VBG RP TO NNP NNP . Laxman added 112 not out and wicket keeper Mahendra Dhoni was 50 not out when Anil Kumble declared the innings . NNP VBD CD RB IN CC NN NN NNP NNP VBD CD RB IN WRB NNP NNP VBD DT NN . Pakistan managed 50 runs with Salman Butt on 26 and stand-in captain Younis Khan at three when play was stopped . NNP VBD CD NNS IN NNP NNP IN CD CC JJ NN NNP NNP IN CD WRB NN VBD VBN . India won the first match of the three-test series in New Delhi by six wickets . NNP VBD DT JJ NN IN DT JJ NN IN NNP NNP IN CD NNS . The third test in Bangalore begins December 8th . DT JJ NN IN NNP VBZ NNP CD . The home side also took a five-match one-day series , 03-Feb . DT NN NN RB VBD DT JJ JJ NN , CD . Sudan 's President Omar al-Bashir has vowed to defend a peace deal ending more than 20 years of war in southern Sudan . NNP POS NNP NNP NNP VBZ VBN TO VB DT NN NN VBG JJR IN CD NNS IN NN IN JJ NNP . Speaking in the southwestern town of Waw on Saturday , Mr. Bashir said the nation 's troops would prevent any efforts to block implementation of the deal signed with rebels last week . VBG IN DT JJ NN IN NNP IN NNP , NNP NNP VBD DT NN POS NNS MD VB DT NNS TO VB NN IN DT NN VBD IN NNS JJ NN . In recent days , Mr. Bashir has visited several key towns in the south , promising greater cooperation and investment from Khartoum . IN JJ NNS , NNP NNP VBZ VBN JJ JJ NNS IN DT NN , VBG JJR NN CC NN IN NNP . The peace deal grants some autonomy to the south and requires local leaders and Khartoum to share oil wealth . DT NN NN VBZ DT NN TO DT NN CC VBZ JJ NNS CC NNP TO VB NN NN . Meantime , southern rebel leader John Garang told British radio that Sudanese officials must pursue a similar deal to end a separate conflict in the western Darfur region . RB , JJ NN NN NNP NNP VBD JJ NN IN JJ NNS MD VB DT JJ NN TO VB DT JJ NN IN DT JJ NNP NN . Ugandan Foreign Minister Sam Kutesa says his country has no plans to attack the Democratic Republic of Congo , but will defend its own territory . JJ NNP NNP NNP NNP VBZ PRP$ NN VBZ DT NNS TO VB DT JJ NNP IN NNP , CC MD VB PRP$ JJ NN . Mr. Kutesa has departed Congo 's capital , Kinshasa , following talks with President Joseph Kabila late Monday that focused on defusing tension caused by recent border violence . NNP NNP VBZ VBN NNP POS NN , NNP , VBG NNS IN NNP NNP NNP JJ NNP WDT VBD IN VBG NN VBN IN JJ NN NN . On August 3 , a British oil worker was killed during an attack on an oil exploration barge in Lake Albert . IN NNP CD , DT JJ NN NN VBD VBN IN DT NN IN DT NN NN NN IN NNP NNP . Then last week , gunmen who crossed the border from Congo looted shops in a Ugandan border town and killed three civilians . RB JJ NN , NNS WP VBD DT NN IN NNP VBD NNS IN DT JJ NN NN CC VBD CD NNS . Uganda and Congo have had strained relations for many years , with Uganda regularly threatening to send troops across the border if Kinshasa does not take action against lawless groups in eastern Congo . NNP CC NNP VBP VBN VBN NNS IN JJ NNS , IN NNP RB VBG TO VB NNS IN DT NN IN NNP VBZ RB VB NN IN JJ NNS IN JJ NNP . New Yorkers are trudging through their third day without bus or train service , as a transit strike keeps the city in turmoil . NNP NNPS VBP VBG IN PRP$ JJ NN IN NN CC NN NN , IN DT NN NN VBZ DT NN IN NN . As residents walked , jogged or biked to work this Thursday morning , union leaders and transit officials met for their first talks since the strike began . IN NNS VBD , VBD CC VBD TO VB DT NNP NN , NN NNS CC NN NNS VBD IN PRP$ JJ NNS IN DT NN VBD . That meeting came after three union leaders were threatened with jail for defying a state law against strikes by public workers . DT NN VBD IN CD NN NNS VBD VBN IN NN IN VBG DT NN NN IN NNS IN JJ NNS . The union already is being fined $ 1 million each day of the walkout . DT NN RB VBZ VBG VBN $ CD CD DT NN IN DT NN . The strike has shut down New York 's huge subway and bus network , crippling normal travel arrangements for millions of people . DT NN VBZ VBN RP NNP NNP POS JJ NN CC NN NN , VBG JJ NN NNS IN NNS IN NNS . Business is down sharply at the city 's famous shops and department stores , as well as at restaurants , museums and theaters . NN VBZ RB RB IN DT NN POS JJ NNS CC NN NNS , RB RB IN IN NNS , NNS CC NNS . The strike also comes during the busy holiday period , costing the local economy hundreds of millions of dollars a day . DT NN RB VBZ IN DT JJ NN NN , VBG DT JJ NN NNS IN NNS IN NNS DT NN . France has defeated Spain , 5-0 , to earn a place in the finals of the Fed Cup women 's tennis competition in Moscow . NNP VBZ VBN NNP , CD , TO VB DT NN IN DT NNS IN DT NNP NNP NNS POS NN NN IN NNP . The French started the day Thursday , up 2-0 , and then swept the reverse singles and the doubles competition . DT NNS VBD DT NN NNP , IN CD , CC RB VBD DT JJ NNS CC DT NNS NN . Nathalie Dechy of France defeated Anabel Medina Garrigues in straight sets , 06-Mar , 06-Jan . NNP NNP IN NNP VBD NNP NNP NNPS IN JJ NNS , CD , CD . Tatiana Golovin of France downed Marta Marrero of Spain 06-Mar , 06-Apr . NNP NNP IN NNP VBD NNP NNP IN NNP CD , CD . Marion Bartoli and Emilie Loit of France then defeated Marta Marrero and Virginia Ruano Pascual of Spain in the doubles 07-May , 06-Feb . NNP NNP CC NNP NNP IN NNP RB VBD NNP NNP CC NNP NNP NNP IN NNP IN DT NNS CD , CD . The French are trying to win their third Fed Cup title and are bidding to become the first nation since the United States in 1999 - 2000 to win two successive Fed Cup titles . DT NNS VBP VBG TO VB PRP$ JJ NNP NNP NN CC VBP VBG TO VB DT JJ NN IN DT NNP NNPS IN CD IN CD TO VB CD JJ NNP NNP NNS . France takes on the winner of the Russia-Austria series . NNP VBZ IN DT NN IN DT NNP NN . Russia leads that series , 2-0 . NNP VBZ IN NN , CD . Palestinian President Mahmoud Abbas is rejecting an idea published by Israel media that would create a Palestinian state within temporary borders . JJ NNP NNP NNP VBZ VBG DT NN VBN IN NNP NNS WDT MD VB DT JJ NN IN JJ NNS . In a speech to his Fatah party in Ramallah on Saturday , Mr. Abbas said the idea was being presented as a way to move the Middle East peace process forward . IN DT NN TO PRP$ NNP NN IN NNP IN NNP , NNP NNP VBD DT NN VBD VBG VBN IN DT NN TO VB DT NNP NNP NN NN RB . He added that Palestinians would not accept such a deal and restated his call for full Palestinian statehood . PRP VBD IN NNS MD RB VB PDT DT NN CC VBD PRP$ NN IN JJ JJ NN . On Friday , Mr. Abbas met with U.S. Middle East envoy George Mitchell who traveled to the region in an effort to kick-start indirect Israeli-Palestinian peace talks . IN NNP , NNP NNP VBD IN NNP NNP NNP NN NNP NNP WP VBD TO DT NN IN DT NN TO VB JJ JJ NN NNS . Mitchell also met on Friday with Israeli Prime Minister Benjamin Netanyahu , who said Israel is ' serious ' about restarting negotiations . NNP RB VBD IN NNP IN JJ NNP NNP NNP NNP , WP VBD NNP VBZ `` JJ `` IN VBG NNS . The U.S. envoy is scheduled to meet with Mr. Netanyahu again on Sunday . DT NNP NN VBZ VBN TO VB IN NNP NNP RB IN NNP . Mitchell said Friday the United States hopes to see a development to advance the peace process relatively soon . NNP VBD NNP DT NNP NNPS VBZ TO VB DT NN TO VB DT NN NN RB RB . The United Nations food agency says it will run out of food for millions of hungry Kenyans unless donors immediately provide more aid . DT NNP NNP NN NN VBZ PRP MD VB IN IN NN IN NNS IN JJ NNS IN NNS RB VBP JJR NN . The World Food Program says it has enough cereals to last until April , but will run out of other badly needed food items by the end of this month . DT NNP NNP NNP VBZ PRP VBZ RB NNS TO VB IN NNP , CC MD VB IN IN JJ RB VBN NN NNS IN DT NN IN DT NN . WFP officials said Saturday more aid must come within the next 10 days or the consequences will be catastrophic . NNP NNS VBD NNP JJR NN MD VB IN DT JJ CD NNS CC DT NNS MD VB JJ . A spokesman ( Peter Smerdon ) says the WFP has received just $ 28 million of the $ 225 million needed for the Kenya program . DT NN LRB NNP NNP RRB VBZ DT NNP VBZ VBN RB $ CD CD IN DT $ CD CD VBN IN DT NNP NN . Kenyans have been dying of food shortages due to drought , and three-and-a-half million more people are on the brink of starvation . NNS VBP VBN VBG IN NN NNS JJ TO NN , CC JJ CD JJR NNS VBP IN DT NN IN NN . At least 11 million people are facing starvation across East Africa . IN JJS CD CD NNS VBP VBG NN IN NNP NNP . The president of the Organization of Petroleum Exporting Countries says the oil cartel should keep producing the current amount of oil and consider raising its quotas . DT NN IN DT NNP IN NNP NNP NNPS VBZ DT NN NN MD VB VBG DT JJ NN IN NN CC VB VBG PRP$ NNS . The comments came Monday from OPEC President Sheikh Ahmad al-Fahd al-Sabah , who is also Kuwait 's oil minister . DT NNS VBD NNP IN NNP NNP NNP NNP NNP NNP , WP VBZ RB NNP POS NN NN . OPEC officials are scheduled to gather in Iran on March 16 to discuss oil supplies and prices . NNP NNS VBP VBN TO VB IN NNP IN NNP CD TO VB NN NNS CC NNS . World oil prices pushed above $ 52 a barrel Monday as forecasters said a winter storm would dump significant snow on the northeastern part of the United States , pushing up demand for heating oil . NNP NN NNS VBD IN $ CD DT NN NNP IN NNS VBD DT NN NN MD VB JJ NN IN DT JJ NN IN DT NNP NNPS , VBG RP NN IN NN NN . U.S. stock markets are making strong gains in Friday 's trading , with key stock indexes up as much as three percent . NNP NN NNS VBP VBG JJ NNS IN NNP POS NN , IN NN NN NNS RB RB JJ IN CD NN . Traders are watching as the U.S. House of Representatives considers a massive government-sponsored bailout plan for the financial sector . NNS VBP VBG IN DT NNP NNP IN NNP VBZ DT JJ JJ NN NN IN DT JJ NN . European markets also posted strong gains . JJ NNS RB VBD JJ NNS . It was a different story in Asia , where Japan 's benchmark Nikkei index fell two percent , and Hong Kong 's Hang Seng index was down nearly three percent . PRP VBD DT JJ NN IN NNP , WRB NNP POS JJ NNP NN VBD CD NN , CC NNP NNP POS NNP NNP NN VBD RB RB CD NN . China has mobilized its huge army to guard against bird flu in its ranks after the country reported its fourth outbreak of the disease . NNP VBZ VBN PRP$ JJ NN TO VB IN NN NN IN PRP$ NNS IN DT NN VBD PRP$ JJ NN IN DT NN . The People 's Liberation Army Daily newspaper said Saturday the 2.3-million-strong army should make urgent plans to detect the virus and stop its spread . DT NNS POS NNP NNP NNP NN VBD NNP DT JJ NN MD VB JJ NNS TO VB DT NN CC VB PRP$ NN . The news came as Indonesian officials said a woman who died in October had bird flu , bringing the number of deaths in that country to five . DT NN VBD IN JJ NNS VBD DT NN WP VBD IN NNP VBD VBN NN , VBG DT NN IN NNS IN DT NN TO CD . A child related to the woman is being treated in a Jakarta hospital after testing positive for the disease , bringing the number of Indonesian cases to nine . DT NN VBN TO DT NN VBZ VBG VBN IN DT NNP NN IN VBG JJ IN DT NN , VBG DT NN IN JJ NNS TO CD . The confirmation of the two cases Saturday came a day after China , Vietnam and Japan reported fresh outbreaks of bird flu in poultry . DT NN IN DT CD NNS NNP VBD DT NN IN NNP , NNP CC NNP VBD JJ NNS IN NN NN IN NN . A Serbian court has found 14 former Serb militia members guilty of the 1991 killings of more than 200 civilians outside the Croatian city of Vukovar . DT JJ NN VBZ VBN CD JJ JJ NN NNS JJ IN DT CD NNS IN JJR IN CD NNS IN DT JJ NN IN NNP . The special court in Belgrade Monday sentenced the defendants including one woman to prison terms ranging from five to 20 years . DT JJ NN IN NNP NNP VBD DT NNS VBG CD NN TO NN NNS VBG IN CD CC CD NNS . In November 1991 , Yugoslav troops rounded up the Croat victims from Vukovar hospital , where they awaited evacuation to safety , and took them to pits where firing squads shot them . IN NNP CD , JJ NNS VBD RP DT JJ NNS IN NNP NN , WRB PRP VBD NN TO NN , CC VBD PRP TO NNS WRB JJ NNS VBD PRP . The bodies were discovered later in a mass grave at a farm outside of Vukovar . DT NNS VBD VBN RB IN DT NN NN IN DT NN IN IN NNP . Three Yugoslav military officers , General Mile Mrksic , Captain Miroslav Radic and Colonel Veselin Sljivancanin face trial before The Hague war crimes tribunal for their role in the deaths . CD JJ JJ NNS , NNP NNP NNP , NNP NNP NNP CC NNP NNP NNP NN NN IN DT NNP NN NNS JJ IN PRP$ NN IN DT NNS . The United States said Friday it hopes India sends ' a clear message ' regarding human rights when Burma 's military leader visits New Delhi . DT NNP NNPS VBD NNP PRP VBZ NNP VBZ `` DT JJ NN `` VBG JJ NNS WRB NNP POS JJ NN NNS NNP NNP . A delegation including Burma 's senior general , Than Shwe , is expected to be in India for meetings next week . DT NN VBG NNP POS JJ NN , NNP NNP , VBZ VBN TO VB IN NNP IN NNS JJ NN . U.S. State Department spokesman P.J. Crowley said India should let Burma know that ' it needs to change its course . ' NNP NNP NNP NN NNP NNP VBD NNP MD VB NNP VB IN `` PRP VBZ TO VB PRP$ NN . `` He said Burma 's ruling military government needs to be told that it should ' constructively engage its opposition and other ethnic groups within Burma . ' PRP VBD NNP POS VBG JJ NN VBZ TO VB VBN IN PRP MD `` RB VB PRP$ NN CC JJ JJ NNS IN NNP . `` He also said Burma has a responsibility to protect ' the region against the risk of proliferation . ' PRP RB VBD NNP VBZ DT NN TO VB `` DT NN IN DT NN IN NN . `` Than Shwe is expected to meet with Indian Prime Minister Manmohan Singh during his visit . NNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP NNP IN PRP$ NN . Developing countries say a U.N. climate change report being drafted in Thailand should acknowledge that poor nations contribute little to global warming , but suffer its worst effects . VBG NNS VBP DT NNP NN NN NN VBG VBN IN NNP MD VB IN JJ NNS VBP JJ TO JJ NN , CC VBP PRP$ JJS NNS . Delegates from poor nations attending the climate change conference in Bangkok this week also are demanding that rich countries share their cleaner energy-producing technologies . NNS IN JJ NNS VBG DT NN NN NN IN NNP DT NN RB VBP VBG IN JJ NNS VBP PRP$ NN NN NNS . A Sri Lankan delegate says some developing countries are forced to burn fossil fuels because they can not afford to develop more environmentally friendly methods of generating power . DT NNP NNP NN VBZ DT VBG NNS VBP VBN TO VB JJ NNS IN PRP MD RB VB TO VB RBR RB JJ NNS IN VBG NN . Scientists and experts from about 120 countries are negotiating the contents of the U.N. climate change report , which is expected to be released at the end of the conference on Friday . NNS CC NNS IN IN CD NNS VBP VBG DT NNS IN DT NNP NN NN NN , WDT VBZ VBN TO VB VBN IN DT NN IN DT NN IN NNP . The report by the Intergovernmental Panel on Climate Change is expected to call for the world to reduce greenhouse gas emissions by investing in renewable energy and reforestation . DT NN IN DT JJ NN IN NNP NNP VBZ VBN TO VB IN DT NN TO VB NN NN NNS IN VBG IN JJ NN CC NN . Somalia 's interim government remained deadlocked over peacekeeping troops Friday , after a contentious vote in the fledgling parliament erupted into a bloody brawl . NNP POS JJ NN VBD JJ IN VBG NNS NNP , IN DT JJ NN IN DT NN NN VBD IN DT JJ NN . A majority of parliamentarians voted Thursday against the Somali president 's call for peacekeepers from bordering states to help stabilize Somalia . DT NN IN NNS VBD NNP IN DT JJ NN POS NN IN NNS IN VBG NNS TO VB VB NNP . But Prime Minister Mohamed Ali Gedi said the vote was flawed and must be held again . CC NNP NNP NNP NNP NNP VBD DT NN VBD VBN CC MD VB VBN RB . The speaker of the parliament defended the vote , saying lawmakers would accept troops from states other than Ethiopia , Kenya and Djibouti , which they accuse of backing violent factions in Somalia . DT NN IN DT NN VBD DT NN , VBG NNS MD VB NNS IN NNS JJ IN NNP , NNP CC NNP , WDT PRP VBP IN VBG JJ NNS IN NNP . Lawmakers came to blows after Thursday 's vote in the parliament , currently based in the Kenyan capital Nairobi . NNS VBD TO NNS IN NNP POS NN IN DT NN , RB VBN IN DT JJ NN NNP . Chaos erupted with members of parliament throwing metal chairs and beating each other with walking sticks and clubs . NN VBD IN NNS IN NN VBG NN NNS CC VBG DT NN IN VBG NNS CC NNS . World No. 1 men 's tennis player Roger Federer of Switzerland has reached the semifinals of the Thailand Open men 's tennis tournament , but American Robby Ginepri is out of the event . NN NNP CD NNS POS NN NN NNP NNP IN NNP VBZ VBN DT NNS IN DT NNP NNP NNS POS NN NN , CC JJ NNP NNP VBZ IN IN DT NN . Federer , the top seed , scored a straight-set win over Gilles Muller of Luxembourg ( 06-Apr , 06-Mar ) . NNP , DT JJ NN , VBD DT JJ NN IN NNP NNP IN NNP LRB CD , CD RRB . In the semifinals , the Swiss player faces Finland 's Jarkko Nieminen , a three-set winner over Yeu-Tzuoo Wang of Taiwan ( 06-Apr , 06-Jul , 06-Apr ) . IN DT NNS , DT JJ NN VBZ NNP POS NNP NNP , DT JJ NN IN NNP NNP IN NNP LRB CD , CD , CD RRB . The other semifinal has Britain 's Andy Murray taking on hometown hero Paradorn Srichaphan of Thailand . DT JJ NN VBZ NNP POS NNP NNP VBG IN NN NN NNP NNP IN NNP . Murray ousted third-seeded American Ginepri ( 04-Jun , 06-Apr , 06-Mar ) . NNP VBD JJ JJ NNP LRB CD , CD , CD RRB . Srichaphan advanced when his opponent , second seed Lleyton Hewitt of Australia , withdrew with a groin injury . NNP VBD WRB PRP$ NN , JJ NN NNP NNP IN NNP , VBD IN DT NN NN . Marxist rebels have ambushed an army convoy in southern Colombia , killing eight soldiers and a civilian , and wounding four other soldiers . JJ NNS VBP VBN DT NN NN IN JJ NNP , VBG CD NNS CC DT JJ , CC VBG CD JJ NNS . Authorities say the soldiers were traveling on a bridge in the jungle province of Putumayo Wednesday when the rebels known as the FARC detonated mines hidden on the span . NNS VBP DT NNS VBD VBG IN DT NN IN DT NN NN IN NNP NNP WRB DT NNS VBN IN DT NNP VBD NNS VBN IN DT NN . The incident took place one day after the FARC attacked a military post in the southwestern village of Iscuande , killing 15 Marines and wounding 25 . DT NN VBD NN CD NN IN DT NNP VBD DT JJ NN IN DT JJ NN IN NNP , VBG CD NNPS CC VBG CD . Colombia is mired in a long-running civil war involving leftist rebels , rightist paramilitaries and the government . NNP VBZ VBN IN DT JJ JJ NN VBG JJ NNS , JJ NNS CC DT NN . The violence leaves thousands dead each year . DT NN VBZ NNS JJ DT NN . South Korea 's spy chief says North Korean leader Kim Jong Il appears to have recovered enough from a stroke to resume his ordinary duties . NNP NNP POS NN NN VBZ JJ JJ NN NNP NNP NNP VBZ TO VB VBN RB IN DT NN TO VB PRP$ JJ NNS . National Intelligence Service chief Kim Sung-ho told lawmakers Tuesday that while North Korea 's autocratic leader is not completely fit , he appears well enough to run the country . NNP NNP NNP NN NNP NNP VBD NNS NNP IN IN NNP NNP POS JJ NN VBZ RB RB JJ , PRP VBZ RB JJ TO VB DT NN . The South 's spy agency also believes Mr. Kim 's eldest son , Kim Jong Nam visited France last week . DT NNP POS NN NN RB VBZ NNP NNP POS JJS NN , NNP NNP NNP VBD NNP JJ NN . South Korea 's Yonhap news agency quotes the spy chief as saying Mr. Kim 's son traveled to France to meet his father 's neurosurgeon . NNP NNP POS NNP NN NN VBZ DT NN NN IN VBG NNP NNP POS NN VBD TO NNP TO VB PRP$ NN POS NN . North Korea denies Mr. Kim is ill , even though he has not been seen in public since mid-August and missed several anniversary celebrations . NNP NNP VBZ NNP NNP VBZ RB , RB IN PRP VBZ RB VBN VBN IN JJ IN NNP CC VBD JJ NN NNS . South Korean and U.S. officials say Mr. Kim suffered a stroke in August . JJ JJ CC NNP NNS VBP NNP NNP VBD DT NN IN NNP . Japanese carmaker Toyota Motor Corporation is reported to be considering letting Fuji Heavy Industries use its hybrid vehicle technology . JJ NN NNP NNP NNP VBZ VBN TO VB VBG VBG NNP NNP NNPS VBP PRP$ JJ NN NN . Under the plan reported by the Nihon Keizai business daily , Fuji would use Toyota 's hybrid system in its Subaru vehicles . IN DT NN VBN IN DT NNP NNP NN RB , NNP MD VB NNP POS JJ NN IN PRP$ NNP NNS . If the two companies reach an agreement , Toyota 's hybrid technology would become the dominant system in the world . IN DT CD NNS VBP DT NN , NNP POS JJ NN MD VB DT JJ NN IN DT NN . Fuji sells 35 percent of its Subaru line in the North American market . NNP VBZ CD NN IN PRP$ NNP NN IN DT JJ JJ NN . Toyota has pioneered the hybrid vehicle , which combines a conventional fuel-powered engine with an electric motor , making the car more economical and environmentally-friendly . NNP VBZ VBN DT JJ NN , WDT VBZ DT JJ JJ NN IN DT JJ NN , VBG DT NN RBR JJ CC RB . U.S. automaker General Motors , which holds a majority stake in Fuji Heavy , has formed a partnership with rival DaimlerChrysler to develop its own hybrid technology . NNP NN NNP NNPS , WDT VBZ DT NN NN IN NNP NNP , VBZ VBN DT NN IN JJ NNP TO VB PRP$ JJ JJ NN . South Korean authorities have destroyed thousands of ducks at four southern farms , after discovering what they call a ' low pathogenic ' strain of the bird flu virus . JJ JJ NNS VBP VBN NNS IN NNS IN CD JJ NNS , IN VBG WP PRP VBP DT `` JJ JJ `` NN IN DT NN NN NN . Officials say the virus turned up on a farm near the southern city of Gwangju , about 250 kilometers south of Seoul . NNS VBP DT NN VBD RP IN DT NN IN DT JJ NN IN NNP , IN CD NNS RB IN NNP . As a precaution , they destroyed 3,800 ducks on that farm and more than 12,000 at three other farms in the area . IN DT NN , PRP VBD CD NNS IN DT NN CC JJR IN CD IN CD JJ NNS IN DT NN . This case of bird flu is a strain , known as H7 that is not highly contagious to humans . DT NN IN NN NN VBZ DT NN , VBN IN NNP WDT VBZ RB RB JJ TO NNS . South Korea 's poultry exports were hit hard by seven outbreaks of the potentially deadly H5N1 strain of bird flu between November 2006 and March of this year . NNP NNP POS NN NNS VBD VBN RB IN CD NNS IN DT RB JJ NNP NN IN NN NN IN NNP CD CC NNP IN DT NN . The World Health Organization says at least 206 people have died from that strain of bird flu since 2003 . DT NNP NNP NNP VBZ IN JJS CD NNS VBP VBN IN DT NN IN NN NN IN CD . No human deaths have been reported in South Korea . DT JJ NNS VBP VBN VBN IN NNP NNP . The European Union is hailing the re-election of pro-Western Serbian President Boris Tadic , saying it proves Serbia 's commitment to mainstream Europe . DT NNP NNP VBZ VBG DT NN IN JJ JJ NNP NNP NNP , VBG PRP VBZ NNP POS NN TO NN NNP . In a congratulatory note Monday , European Commission President Jose Manuel Barroso called Mr. Tadic 's win Sunday a victory for democracy and European values . IN DT JJ NN NNP , JJ NNP NNP NNP NNP NNP VBD NNP NNP POS NN NNP DT NN IN NN CC JJ NNS . Both Germany and Austria also promised more support for Serbia 's move toward eventual EU membership . DT NNP CC NNP RB VBD JJR NN IN NNP POS NN IN JJ NNP NN . Senior Russian lawmakers said Mr. Tadic 's win assured that good bilateral relations will continue . JJ JJ NNS VBD NNP NNP POS NN VBD IN JJ JJ NNS MD VB . Mr. Tadic narrowly defeated ultra-nationalist challenger Tomislav Nikolic by a margin of 51 to 48 percent . NNP NNP RB VBD JJ NN NNP NNP IN DT NN IN CD TO CD NN . Both candidates opposed independence for Serbia 's breakaway Kosovo province , where ethnic Albanian leaders are expected to declare independence from Belgrade in coming weeks . DT NNS VBD NN IN NNP POS JJ NNP NN , WRB JJ JJ NNS VBP VBN TO VB NN IN NNP IN VBG NNS . Last week , European nations agreed to support closer ties with Serbia , in a push to counter anti-Western anger over Kosovo 's pending declaration of independence . JJ NN , JJ NNS VBD TO VB JJR NNS IN NNP , IN DT NN TO VB JJ NN IN NNP POS VBG NN IN NN . The sandy brown Quagga Zebra ( pronounced qua-ha ) was hunted to extinction more than 100 years ago . DT JJ NN NNP NNP LRB JJ NN RRB VBD VBN TO VB JJR IN CD NNS RB . But when scientists learned it was not a unique species but a subspecies of the Plains Zebra , the Quagga Project was started by South African Reinhold Rau to bring the animal back . CC WRB NNS VBD PRP VBD RB DT JJ NNS CC DT NNS IN DT NNP NNP , DT NNP NNP VBD VBN IN NNP NNP NNP NNP TO VB DT NN RB . VOA 's Paul Sisco has more on a unique scientific endeavor . NNP POS NNP NNP VBZ RBR IN DT JJ JJ NN . Pakistan Peoples Party Chairman Asif Zardari says Pakistan 's government is not strong enough to oust President Pervez Musharraf . NNP NNP NNP NNP NNP NNP VBZ NNP POS NN VBZ RB JJ RB TO VB NNP NNP NNP . Zardari says , in an interview with the British Broadcasting Corporation , that the new coalition government does not have the two-thirds majority in parliament necessary to impeach the president . NNP VBZ , IN DT NN IN DT NNP NNP NNP , IN DT JJ NN NN VBZ RB VB DT NNS NN IN NN JJ TO VB DT NN . Zardari adds that a confrontation between Mr. Musharraf and the new government could prolong instability in Pakistan . NNP VBZ IN DT NN IN NNP NNP CC DT JJ NN MD VB NN IN NNP . He says the government has other problems to work on , besides going after Mr. Musharraf . PRP VBZ DT NN VBZ JJ NNS TO VB IN , IN VBG IN NNP NNP . Zardari has formed a coalition with the political party of former prime minister Nawaz Sharif . NNP VBZ VBN DT NN IN DT JJ NN IN JJ JJ NN NNP NNP . The new government has said it will remove the president 's powers to dissolve parliament , and will reinstate top judges fired by Mr. Musharraf under emergency rule last year . DT JJ NN VBZ VBN PRP MD VB DT NN POS NNS TO VB NN , CC MD VB JJ NNS VBN IN NNP NNP IN NN NN JJ NN . U.S. Secretary of State Condoleezza Rice says all parties in the multilateral talks on North Korea 's nuclear weapons program are united in the view that there has to be a non-nuclear Korean peninsula . NNP NNP IN NNP NNP NNP VBZ DT NNS IN DT JJ NNS IN NNP NNP POS JJ NNS NN VBP VBN IN DT NN IN EX VBZ TO VB DT JJ JJ NN . She made the comments Wednesday on the way back to the United States after an Asian tour , just days after North Korea announced it will end a yearlong boycott and return to disarmament talks July 25 . PRP VBD DT NNS NNP IN DT NN RB TO DT NNP NNPS IN DT JJ NN , RB NNS IN NNP NNP VBD PRP MD VB DT JJ NN CC NN TO NN NNS NNP CD . Ms. Rice said the United States and its four allies must work intensively so they provide a common front when talks resume . NNP NNP VBD DT NNP NNPS CC PRP$ CD NNS MD VB RB RB PRP VBP DT JJ NN WRB NNS VBP . Earlier Wednesday , North Korean leader Kim Jong-il told a Chinese envoy in Pyongyang his country 's goal is a nuclear-free Korean peninsula , and added he hopes the six-party talks can be the first step . RBR NNP , JJ JJ NN NNP NNP VBD DT JJ NN IN NNP PRP$ NN POS NN VBZ DT JJ JJ NN , CC VBD PRP VBZ DT JJ NNS MD VB DT JJ NN . U.S. military officials in Afghanistan say coalition forces have killed at least 40 insurgents in the southern part of the country . NNP JJ NNS IN NNP VBP NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN IN DT NN . The military says the rebels were killed during an operation in a remote part of southeastern Pakitka province , bordering Pakistan . DT JJ VBZ DT NNS VBD VBN IN DT NN IN DT JJ NN IN JJ NNP NN , VBG NNP . The attack was part of an offensive that began Wednesday in the region . DT NN VBD NN IN DT NN WDT VBD NNP IN DT NN . The offensive , Operation Mountain Thrust , is the largest since U.S. forces invaded Afghanistan in late 2001 to oust the Taleban . DT NN , NNP NNP NNP , VBZ DT JJS IN NNP NNS VBD NNP IN JJ CD TO VB DT NNP . Some 10,000 Afghan and coalition troops are targeting the Taleban 's traditional stronghold in four southern provinces - Kandahar , Helmand , Uruzgan and Zabol . DT CD JJ CC NN NNS VBP VBG DT NNP POS JJ NN IN CD JJ NNS IN NNP , NNP , NNP CC NNP . Earlier Thursday , the Taleban claimed responsibility for a bomb blast on a bus in the southern city of Kandahar that killed at least eight people and wounded at least 15 others . RBR NNP , DT NNP VBD NN IN DT NN NN IN DT NN IN DT JJ NN IN NNP WDT VBD IN JJS CD NNS CC VBD IN JJS CD NNS . Pope Benedict has opened four days of ceremonies leading to the Christian observance of Easter , with a call for the faithful to find TRUE freedom by submitting to the will of God . NNP NNP VBZ VBN CD NNS IN NNS VBG TO DT JJ NN IN NNP , IN DT NN IN DT NN TO VB JJ NN IN VBG TO DT NN IN NNP . Benedict 's Holy Thursday plea came at a mass that included participation by clergy from the diocese of Rome . NNP POS NNP NNP NN VBD IN DT NN WDT VBD NN IN NN IN DT NN IN NNP . During the service , he also blessed oils that will be used in the coming year in church rituals . IN DT NN , PRP RB VBD NNS WDT MD VB VBN IN DT JJ NN IN NN NNS . The pontiff will celebrate a second mass later Thursday , commemorating the biblical Last Supper of Jesus and his apostles . DT NN MD VB DT JJ NN RB NNP , VBG DT JJ JJ NN IN NNP CC PRP$ NNS . During that ceremony , the pope will symbolically wash the feet of 12 men . IN DT NN , DT NN MD RB VB DT NNS IN CD NNS . Christian liturgy says Jesus washed the feet of his 12 apostles on the evening before his crucifixion . NNP NN VBZ NNP VBD DT NNS IN PRP$ CD NNS IN DT NN IN PRP$ NN . On Easter Sunday -- the holiest day of the Christian calendar -- Christians will commemorate what they believe was the resurrection of Jesus . IN NNP NNP IN DT JJS NN IN DT NNP NN : NNPS MD VB WP PRP VBP VBD DT NN IN NNP . Mexican President Vicente Fox is continuing his tour of the western United States that coincides with a debate in the U.S. Senate on immigration reform . JJ NNP NNP NNP VBZ VBG PRP$ NN IN DT JJ NNP NNPS WDT VBZ IN DT NN IN DT NNP NNP IN NN NN . Mr. Fox is addressing a special meeting of the Utah state legislature Wednesday . NNP NNP VBZ VBG DT JJ NN IN DT NNP NN NN NNP . He then travels on to Washington state , where he is to speak with Mexican laborers . PRP RB VBZ IN TO NNP NN , WRB PRP VBZ TO VB IN JJ NNS . On Tuesday , at the start of his four-day trip , Mr. Fox told an audience in Utah that building a fence along the U.S.-Mexico border is not the answer to the immigration problem . IN NNP , IN DT NN IN PRP$ JJ NN , NNP NNP VBD DT NN IN NNP IN VBG DT NN IN DT JJ NN VBZ RB DT NN TO DT NN NN . The U.S. Senate is considering legislation to strengthen border security , including putting increased fencing along the border . DT NNP NNP VBZ VBG NN TO VB NN NN , VBG VBG VBN VBG IN DT NN . President Bush said last week it makes sense to use fencing in key border areas . NNP NNP VBD JJ NN PRP VBZ NN TO VB NN IN JJ NN NNS . Mr. Fox also heads to California , where he is to meet with that state 's governor , Arnold Schwarzenegger , as well as with Los Angeles Mayor Antonio Villaraigosa , who is Mexican-American . NNP NNP RB VBZ TO NNP , WRB PRP VBZ TO VB IN DT NN POS NN , NNP NNP , RB RB IN IN NNP NNP NNP NNP NNP , WP VBZ JJ . Pakistani security officials say U.S. drone strikes in northwestern Pakistan have killed at least 15 people , most of them militants . JJ NN NNS VBP NNP NN NNS IN JJ NNP VBP VBN IN JJS CD NNS , JJS IN PRP NNS . There were three drone attacks reported Saturday in the North Waziristan tribal region , a suspected hideout for al-Qaida and Taliban fighters . EX VBD CD NN NNS VBD NNP IN DT NNP NNP JJ NN , DT JJ NN IN NNP CC NNP NNS . Authorities say the first attack killed at least seven people . NNS VBP DT JJ NN VBN IN JJS CD NNS . It was followed by a drone strike that left at least four people dead . PRP VBD VBN IN DT NN NN WDT VBD IN JJS CD NNS JJ . The third strike killed four militants when it struck their vehicle near Miranshah , the main town in North Waziristan . DT JJ NN VBD CD NNS WRB PRP VBD PRP$ NN IN NNP , DT JJ NN IN NNP NNP . The strikes come a day after a missile attack in the same area killed at least five people . DT NNS VBP DT NN IN DT NN NN IN DT JJ NN VBD IN JJS CD NNS . North Waziristan , located near the Afghan border , is a frequent target of U.S. missile strikes because al-Qaida and Taliban leaders are believed based there . NNP NNP , VBN IN DT JJ NN , VBZ DT JJ NN IN NNP NN NNS IN NNP CC NNP NNS VBP VBN VBN RB . Visiting French President Jacques Chirac has assured Japan that lifting Europe 's embargo on weapons to China will not result in an increase in weapons sales . VBG JJ NNP NNP NNP VBZ VBN NNP IN VBG NNP POS NN IN NNS TO NNP MD RB VB IN DT NN IN NNS NNS . Speaking at a joint news conference in Tokyo after a meeting Sunday with Prime Minister Junichiro Koizumi , Mr. Chirac said he told the Japanese leader that no sensitive technology would be transferred to Beijing . VBG IN DT JJ NN NN IN NNP IN DT NN NNP IN NNP NNP NNP NNP , NNP NNP VBD PRP VBD DT JJ NN IN DT JJ NN MD VB VBN TO NNP . Mr. Chirac said China 's request to lift the arms embargo was legitimate and the reason for lifting the ban was political , aimed at normalizing ties . NNP NNP VBD NNP POS NN TO VB DT NNS NN VBD JJ CC DT NN IN VBG DT NN VBD JJ , VBN IN VBG NNS . Mr. Koizumi repeated Japan 's opposition to lifting the embargo , imposed after China 's bloody crackdown on pro-democracy protesters in 1989 . NNP NNP VBD NNP POS NN TO VBG DT NN , VBN IN NNP POS JJ NN IN JJ NNS IN CD . France has been a prime supporter of ending the ban , a move opposed by both the United States and Japan . NNP VBZ VBN DT JJ NN IN VBG DT NN , DT NN VBN IN DT DT NNP NNPS CC NNP . A fourth Venezuelan opposition party has pulled out of Sunday 's congressional elections , saying it was concerned the balloting would not be fair . DT JJ JJ NN NN VBZ VBN IN IN NNP POS JJ NNS , VBG PRP VBD VBN DT NN MD RB VB JJ . The Justice First party announced its decision Wednesday , one day after the Democratic Action , Project Venezuela and Copei parties announced their withdrawal . DT NNP NNP NN VBD PRP$ NN NNP , CD NN IN DT JJ NNP , NNP NNP CC NNP NNS VBD PRP$ NN . Those parties say they are boycotting the vote because the electoral council is biased . DT NNS VBP PRP VBP VBG DT NN IN DT JJ NN VBZ VBN . State Department spokesman Sean McCormack Wednesday denied U.S. involvement in the withdrawals , after Venezuelan President Hugo Chavez accused the United States of interfering in the country 's electoral process . NNP NNP NN NNP NNP NNP VBD NNP NN IN DT NNS , IN JJ NNP NNP NNP VBD DT NNP NNPS IN VBG IN DT NN POS JJ NN . Opposition leaders have proposed postponing the vote until they can be assured of a free and fair election . NN NNS VBP VBN VBG DT NN IN PRP MD VB VBN IN DT JJ CC JJ NN . Venezuelan Vice President Jose Vicente Rangel has denied the accusations and insists the elections will be fair . JJ NNP NNP NNP NNP NNP VBZ VBN DT NNS CC VBZ DT NNS MD VB JJ . Kazakhstan 's long-time ruler has rejected a motion from parliament to extend his rule through a referendum , rather than through a scheduled election . NNP POS JJ NN VBZ VBN DT NN IN NN TO VB PRP$ NN IN DT NN , RB IN IN DT VBN NN . President Nursultan Nazarbayev issued a decree Friday rejecting the initiative that could have allowed the popular president to continue to rule unchallenged until 2020 . NNP NNP NNP VBD DT NN NNP VBG DT NN WDT MD VB VBN DT JJ NN TO VB TO VB JJ IN CD . The U.S. Embassy in Almaty strongly disapproved of the proposal , saying it would be a ' setback for democracy in Kazakhstan . ' DT NNP NNP IN NNP RB VBD IN DT NN , VBG PRP MD VB DT `` NN IN NN IN NNP . `` Mr. Nazarbayev has ruled the former Soviet state for the past 20 years . NNP NNP VBZ VBN DT JJ JJ NN IN DT JJ CD NNS . His supporters celebrate him for bolstering Kazakhstan 's economy with investments in energy and development . PRP$ NNS VBP PRP IN VBG NNP POS NN IN NNS IN NN CC NN . But his critics accuse him of clamping down on human rights and democracy . CC PRP$ NNS VBP PRP IN VBG RP IN JJ NNS CC NN . Israel 's Labor party has voted to quit the ruling coalition of Prime Minister Ariel Sharon , paving the way for early national elections . NNP POS NN NN VBZ VBN TO VB DT NN NN IN NNP NNP NNP NNP , VBG DT NN IN JJ JJ NNS . Labor 's Central Committee approved the recommendation of party leader Amir Peretz by an overwhelming show of hands Sunday evening . NNP POS NNP NNP VBD DT NN IN NN NN NNP NNP IN DT JJ NN IN NNS NNP NN . Last week , Mr. Sharon and Mr. Peretz agreed that early elections would be held by the end of March . JJ NN , NNP NNP CC NNP NNP VBD IN JJ NNS MD VB VBN IN DT NN IN NNP . A date for the polls is expected this week or next . DT NN IN DT NNS VBZ VBN DT NN CC JJ . The Labor party joined Mr. Sharon 's Likud-led coalition last year to help the prime minister defeat Likud rightists who tried unsuccessfully to block Israel 's withdrawal from the Gaza Strip . DT NNP NN VBD NNP NNP POS JJ NN JJ NN TO VB DT JJ NN NN NNP NNS WP VBD RB TO VB NNP POS NN IN DT NNP NNP . Mr. Peretz said last week he would pull Labor out of the coaltion over differences in economic policy . NNP NNP VBD JJ NN PRP MD VB NNP IN IN DT NN IN NNS IN JJ NN . It is unclear whether Mr. Sharon will remain in Likud or form a new party before the polls . PRP VBZ JJ IN NNP NNP MD VB IN NNP CC VB DT JJ NN IN DT NNS . Palestinian President Mahmoud Abbas met with Pope Benedict XVI at the Vatican Thursday . JJ NNP NNP NNP VBD IN NNP NNP NNP IN DT NNP NNP . The two men spoke privately for 15 minutes and addressed the subject of Mr. Abbas 's meeting last month with Israeli Prime Minister Benjamin Netanyahu and U.S. President Barack Obama in New York . DT CD NNS VBD RB IN CD NNS CC VBD DT NN IN NNP NNP POS NN JJ NN IN JJ NNP NNP NNP NNP CC NNP NNP NNP NNP IN NNP NNP . Mr. Abbas presented the Holy See with a piece of ceramic art depicting Jerusalem with the words ' Jerusalem , Capital of Arab Culture ' written on it in both Arabic and English . NNP NNP VBD DT NNP NNP IN DT NN IN JJ NN VBG NNP IN DT NNS `` NNP , NNP IN NNP NNP `` VBN IN PRP IN DT NNP CC NNP . Pope Benedict toured the Middle East in May of this year , where he met separately with Mr. Abbas and Mr. Netanyahu . NNP NNP VBD DT NNP NNP IN NNP IN DT NN , WRB PRP VBD RB IN NNP NNP CC NNP NNP . The pope has said Israel has the right to enjoy peace and security within its borders and the Palestinian people have a right to a sovereign independent homeland . DT NN VBZ VBN NNP VBZ DT NN TO VB NN CC NN IN PRP$ NNS CC DT JJ NNS VBP DT NN TO DT JJ JJ NN . After his visit to the Middle East , the pontiff declared that peace in the region is possible . IN PRP$ NN TO DT NNP NNP , DT NN VBD DT NN IN DT NN VBZ JJ . A spokesman for the Taliban in Pakistan is quoted Saturday as denying a U.S. media report that Osama bin Laden 's chief deputy , Ayman al-Zawahiri , has been killed or wounded . DT NN IN DT NNP IN NNP VBZ VBN NNP IN VBG DT NNP NNS NN IN NNP NNP NNP POS JJ NN , NNP NNP , VBZ VBN VBN CC VBN . The spokesman called Friday 's report by CBS News ' baseless . ' DT NN VBD NNP POS NN IN NNP NNP `` NN . `` Pakistani officials say they have not seen any evidence to support the claim that al-Qaida 's second-in-command was hit in missile strike Monday in South Waziristan , near the Afghan border . JJ NNS VBP PRP VBP RB VBN DT NN TO VB DT NN IN NNP POS NN VBD VBN IN NN NN NNP IN NNP NNP , IN DT JJ NN . CBS said it based its report on an intercepted letter from a Pakistani Taliban commander that said Zawahiri needed medical treatment after the military strike . NNP VBD PRP VBD PRP$ NN IN DT JJ NN IN DT JJ NNP NN WDT VBD NNP VBD JJ NN IN DT JJ NN . In other news , security officials say six police officers were killed Saturday when a bomb exploded in northwestern Pakistan 's Swat valley . IN JJ NN , NN NNS VBP CD NNS NNS VBD VBN NNP WRB DT NN VBD IN JJ NNP POS NNP NN . They say the bomb was detonated by remote control as a vehicle passed . PRP VBP DT NN VBD VBN IN JJ NN IN DT NN VBN . Government security forces are battling pro-Taliban militants in the northwestern region . NN NN NNS VBP VBG JJ NNS IN DT JJ NN . Sri Lanka 's baby tsunami survivor has been reunited with his parents , ending weeks of controversy . NNP NNP POS NN NN NN VBZ VBN VBN IN PRP$ NNS , VBG NNS IN NN . The four-month-old boy , known as ' Baby 81 ' , was handed over to his parents in a court Wednesday , after DNA tests confirmed the TRUE parents . DT JJ NN , VBN IN `` NNP CD `` , VBD VBN IN TO PRP$ NNS IN DT NN NNP , IN NN NNS VBD DT JJ NNS . Nine couples originally claimed the boy , but only one couple ( Murugupillai and Jenita Jeyarajah ) formally filed for custody . CD NNS RB VBD DT NN , CC RB CD NN LRB NNP CC NNP NNP RRB RB VBN IN NN . The infant was found alive among debris on Sri Lanka 's east coast hours after the tsunami struck on December 26 . DT NN VBD VBN JJ IN NN IN NNP NNP POS JJ NN NNS IN DT NN VBD IN NNP CD . Hong Kong 's government says two dead birds , a crested myna and a chicken , have tested positive for the H5N1 strain of bird flu . NNP NNP POS NN VBZ CD JJ NNS , DT JJ NN CC DT NN , VBP VBN JJ IN DT NNP NN IN NN NN . Authorities say three villagers may have come into contact with the infected chicken , and are being isolated in a hospital . NNS VBP CD NNS MD VB VBN IN NN IN DT JJ NN , CC VBP VBG VBN IN DT NN . They say the three people are being tested for bird flu , but have shown no obvious symptoms . PRP VBP DT CD NNS VBP VBG VBN IN NN NN , CC VBP VBN DT JJ NNS . The dead chicken was purchased by a Hong Kong villager in mainland China . DT JJ NN VBD VBN IN DT NNP NNP NN IN JJ NNP . The dead myna was found in a playground in an urban area of Hong Kong . DT JJ NN VBD VBN IN DT NN IN DT JJ NN IN NNP NNP . Authorities say they will close a local bird sanctuary and all public aviaries beginning Thursday as a precaution . NNS VBP PRP MD VB DT JJ NN NN CC DT JJ NNS VBG NNP IN DT NN . Syria has called on the leader of Lebanon 's parliamentary majority to provide proof of alleged Syrian assassination plots against him and the Lebanese prime minister . NNP VBZ VBN IN DT NN IN NNP POS JJ NN TO VB NN IN JJ JJ NN NNS IN PRP CC DT JJ JJ NN . Syria 's state-run news agency , SANA , Wednesday quotes an unidentified Syrian official as saying the allegations by Lebanese lawmaker Saad Hariri are fabricated . NNP POS JJ NN NN , NNP , NNP VBZ DT JJ JJ NN IN VBG DT NNS IN JJ NN NNP NNP VBP VBN . The official called on Hariri to present evidence of the assassination plots to the public . DT NN VBD IN NNP TO JJ NN IN DT NN NNS TO DT NN . Hariri told reporters in Cairo Tuesday he has information about Syrian plots to kill him and Lebanese Prime Minister Fuad Siniora , though he did not elaborate . NNP VBD NNS IN NNP NNP PRP VBZ NN IN JJ NNS TO VB PRP CC JJ NNP NNP NNP NNP , IN PRP VBD RB VB . A number of anti-Syrian figures have been murdered in Lebanon in recent years , including lawmaker Antoine Ghanem in September . DT NN IN JJ NNS VBP VBN VBN IN NNP IN JJ NNS , VBG NN NNP NNP IN NNP . Syria has denied involvement in any of the attacks . NNP VBZ VBN NN IN DT IN DT NNS . Saad Hariri 's father , former Lebanese Prime Minister Rafik Hariri , was killed by a truck bomb blast in 2005 in Beirut . NNP NNP POS NN , JJ JJ NNP NNP NNP NNP , VBD VBN IN DT NN NN NN IN CD IN NNP . Former world number one women 's tennis player Martina Hingis of Switzerland has reached the semifinals of the Australian women 's hard court tournament in Gold Coast . JJ NN NN CD NNS POS NN NN NNP NNP IN NNP VBZ VBN DT NNS IN DT JJ NNS POS JJ NN NN IN NNP NNP . Hingis , playing in her first full event since coming out of retirement , beat Spain 's Nuria Llagostera Vives in three sets ( 06-Feb , 04-Jun , 6-0 ) . NNP , VBG IN PRP$ JJ JJ NN IN VBG IN IN NN , VBD NNP POS NNP NNP NNS IN CD NNS LRB CD , CD , CD RRB . In the semifinals , Hingis takes on fourth-seed Flavia Pennetta of Italy , a three-set winner over Tatiana Golovin of France ( 06-Feb , 05-Jul , 06-Mar ) . IN DT NNS , NNP VBZ IN JJ NNP NNP IN NNP , DT JJ NN IN NNP NNP IN NNP LRB CD , CD , CD RRB . The other semifinal has third-seeded Dinara Safina of Russia facing Lucie Safarova of the Czech Republic . DT JJ NN VBZ JJ NNP NNP IN NNP VBG NNP NNP IN DT JJ NNP . Safina ousted Anabel Medina Garrigues of Spain in straight sets ( 06-Jan , 06-Mar ) . NNP VBD NNP NNP NNP IN NNP IN JJ NNS LRB CD , CD RRB . Safarova scored an upset win over top seed Patty Schnyder of Switzerland ( 06-Apr , 06-Mar ) . NNP VBD DT JJ NN IN JJ NN NNP NNP IN NNP LRB CD , CD RRB . Chilean presidential candidate Michelle Bachelet remains the front-runner for Sunday 's runoff election , as the final day of campaigning draws to a close . JJ JJ NN NNP NNP VBZ DT NN IN NNP POS NN NN , IN DT JJ NN IN NN VBZ TO DT NN . Poll results issued Thursday suggest the socialist Bachelet will get some 45 percent of the vote on Sunday , compared to 40 percent for her rival , businessman Sebastian Pinera , the candidate of a rightist alliance . NNP NNS VBN NNP VBP DT NN NNP MD VB DT CD NN IN DT NN IN NNP , VBN TO CD NN IN PRP$ NN , NN NNP NNP , DT NN IN DT JJ NN . Fifteen percent of the 1,200 people surveyed last week said they were undecided . CD NN IN DT CD NNS VBN JJ NN VBD PRP VBD JJ . If elected , Bachelet will become Chile 's first female president . IN VBN , NNP MD VB NNP POS JJ NN NN . She shares her center-left support base with current President Richard Lagos , under whom she served as defense minister . PRP VBZ PRP$ JJ NN NN IN JJ NNP NNP NNP , IN WP PRP VBD IN NN NN . Bachelet won Chile 's first round of elections in December with 46 percent of the vote , just short of the 50 percent needed to avoid a runoff . NNP VBD NNP POS JJ NN IN NNS IN NNP IN CD NN IN DT NN , RB RB IN DT CD NN VBN TO VB DT NN . Indonesian police say they have identified the third suicide bomber in the October 1 attacks on Bali that killed 20 people dead along with the bombers . JJ NNS VBP PRP VBP VBN DT JJ NN NN IN DT NNP CD NNS IN NNP WDT VBD CD NNS JJ IN IN DT NNS . A police spokesman , Inspector General Aryanto Boedihardjo , said the bomber was Aip Hidayat , from Ciamis regency West Java . DT NN NN , NNP NNP NNP NNP , VBD DT NN VBD NNP NNP , IN NNP NN NNP NNP . The spokesman said police are comparing DNA samples from the family to confirm the bomber 's identity . DT NN VBD NNS VBP VBG NN NNS IN DT NN TO VB DT NN POS NN . He and two other bombers identified earlier , Salik Firdaus , Misno , reportedly videotaped a statement before launching the restaurant attacks . PRP CC CD JJ NNS VBN RB , NNP NNP , NNP , RB VBD DT NN IN VBG DT NN NNS . The video was seized from the hideout of Malaysian bomb expert Azahari Husin , who was killed November 9 in a shootout with security officers in Batu in eastern Java . DT NN VBD VBN IN DT NN IN JJ NN NN NNP NNP , WP VBD VBN NNP CD IN DT NN IN NN NNS IN NNP IN JJ NNP . The triple suicide bombings last month were the second major bomb attack on Bali after a blast three years ago killed 202 people . DT JJ NN NNS JJ NN VBD DT JJ JJ NN NN IN NNP IN DT NN CD NNS RB VBD CD NNS . Colombia 's government has announced the end of a dispute with Venezuela over the capture of a Colombian leftist rebel leader by bounty hunters on Venezuelan soil . NNP POS NN VBZ VBN DT NN IN DT NN IN NNP IN DT NN IN DT JJ JJ NN NN IN NN NNS IN JJ NN . Bogota released a statement Friday , saying the incident between the South American neighbors has been resolved , and that Colombian President Alvaro Uribe will meet with his Venezuelan counterpart , Hugo Chavez , on February 3 in Venezuela . NNP VBD DT NN NNP , VBG DT NN IN DT JJ JJ NNS VBZ VBN VBN , CC IN JJ NNP NNP NNP MD VB IN PRP$ JJ NN , NNP NNP , IN NNP CD IN NNP . Officials in Caracas welcomed the development . NNS IN NNP VBD DT NN . Colombia has acknowledged paying bounty hunters to capture Rodrigo Granda from Caracas and take him back to Colombia . NNP VBZ VBN VBG NN NNS TO VB NNP NNP IN NNP CC VB PRP RB TO NNP . Mr. Granda is a member of the rebel group known as the FARC . NNP NNP VBZ DT NN IN DT NN NN VBN IN DT NNP . Venezuela accused Colombia of violating Venezuela 's sovereignty in what it says was a kidnapping . NNP VBD NNP IN VBG NNP POS NN IN WP PRP VBZ VBD DT NN . Colombia denied the accusation , saying the capture was a legitimate part of its war against the rebels . NNP VBD DT NN , VBG DT NN VBD DT JJ NN IN PRP$ NN IN DT NNS . North Korea says it will delay a scheduled round of high level inter-Korean talks , because of an upcoming joint military exercise between South Korea and the United States . NNP NNP VBZ PRP MD VB DT JJ NN IN JJ NN JJ NNS , IN IN DT JJ JJ JJ NN IN NNP NNP CC DT NNP NNPS . The official Korean Central News Agency Saturday referred to the war games as ' hostile ' , and said the drills can not be conducted alongside peaceful talks . DT JJ JJ NNP NNP NNP NNP VBD TO DT NN NNS IN `` JJ `` , CC VBD DT NNS MD RB VB VBN IN JJ NNS . The joint exercises are to begin March 25 , and will include at least 5,000 U.S. troops . DT JJ NNS VBP TO VB NNP CD , CC MD VB IN JJS CD NNP NNS . It is not clear how many South Korean troops will participate . PRP VBZ RB JJ WRB JJ JJ JJ NNS MD VB . The latest round of Cabinet level talks between the two Koreas was expected to begin in late March as well . DT JJS NN IN NNP NN NNS IN DT CD NNP VBD VBN TO VB IN JJ NNP IN RB . Pyongyang has repeatedly urged South Korea to scrap the joint exercises . NNP VBZ RB VBN NNP NNP TO VB DT JJ NNS . North Korea says the United States uses the drills as preparations for an invasion , a claim Washington denies . NNP NNP VBZ DT NNP NNPS VBZ DT NNS IN NNS IN DT NN , DT NN NNP VBZ . Hamas is urging international donors not to cut off aid to the Palestinian Authority following the militant group 's election victory last week . NNP VBZ VBG JJ NNS RB TO VB RP NN TO DT JJ NNP VBG DT JJ NN POS NN NN JJ NN . Hamas leader Ismail Haniyeh called on the quartet -- the United States , Russia , the European Union and the United Nations -- to keep aid flowing . NNP NN NNP NNP VBD IN DT NN IN DT NNP NNPS , NNP , DT NNP NNP CC DT NNP NNPS : TO VB NN VBG . He spoke as quartet officials were in London for talks on how to deal with a Hamas-led government . PRP VBD IN NN NNS VBD IN NNP IN NNS IN WRB TO VB IN DT JJ NN . U.S. Secretary of State Condoleezza Rice said the United States is contacting donor nations about suspending aid , unless Hamas renounces violence and accepts Israel 's right to exist . NNP NNP IN NNP NNP NNP VBD DT NNP NNPS VBZ VBG NN NNS IN VBG NN , IN NNP VBZ NN CC VBZ NNP POS NN TO VB . E.U. diplomats say they also want Hamas to make those changes . NNP NNS VBP PRP RB VBP NNP TO VB DT NNS . They say they will keep diplomatic channels open with Palestinian Authority President Mahmoud Abbas , who is not a member of Hamas . PRP VBP PRP MD VB JJ NNS JJ IN JJ NNP NNP NNP NNP , WP VBZ RB DT NN IN NNP . In both the books and films , fictional spy James Bond is portrayed as a gourmet who savors fine food , wine , and , of course , his signature ' shaken , not stirred ' martinis . IN DT DT NNS CC NNS , JJ NN NNP NNP VBZ VBN IN DT NN WP VBZ JJ NN , NN , CC , IN NN , PRP$ NN `` VBN , RB VBD `` NNS . But , as VOA correspondent Gary Thomas reports , the Central Intelligence Agency employs an executive chef who runs a very exclusive restaurant where only those with proper security clearance can enjoy the fine dining . CC , IN NNP NN NNP NNP VBZ , DT NNP NNP NNP VBZ DT JJ NN WP VBZ DT RB JJ NN WRB RB DT IN JJ NN NN MD VB DT JJ NN . Indonesia 's Health Ministry says a 29-year-old man has died of bird flu , the latest victim in the country hardest-hit by the virus . NNP POS NNP NNP VBZ DT JJ NN VBZ VBN IN NN NN , DT JJS NN IN DT NN NN IN DT NN . The ministry said Saturday that the human death toll from the virus now stands at 74 . DT NN VBD NNP IN DT JJ NN NN IN DT NN RB VBZ IN CD . However , World Health Organization officials have only recorded 63 deaths . RB , NNP NNP NNP NNS VBP RB VBN CD NNS . Indonesia only recently agreed to resume sharing its bird flu samples with the WHO , ending a four-month dispute . NNP RB RB VBD TO VB VBG PRP$ NN NN NNS IN DT NNP , VBG DT JJ NN . Indonesia had refused to share the samples until the health organization guaranteed they would not be used to make expensive commercial vaccines . NNP VBD VBN TO VB DT NNS IN DT NN NN VBN PRP MD RB VB VBN TO VB JJ JJ NNS . Indonesia has more bird flu deaths than any other nation . NNP VBZ RBR JJ NN NNS IN DT JJ NN . WHO officials say 171 people have died from the virus worldwide since the outbreak began in 2003 , mostly in Asian countries . NNP NNS VBP CD NNS VBP VBN IN DT NN NN IN DT NN VBD IN CD , RB IN JJ NNS . Yasser Arafat 's nephew has turned over the late Palestinian leader 's medical records to a committee investigating the cause of his uncle 's death . NNP NNP POS NN VBZ VBN RP DT JJ JJ NN POS JJ NNS TO DT NN VBG DT NN IN PRP$ NN POS NN . Nasser al-Kidwa , who also is the Palestinian representative to the United Nations , delivered the 558-page medical report plus X-rays to Palestinian Authority representatives Saturday . NNP NNP , WP RB VBZ DT JJ NN TO DT NNP NNP , VBD DT JJ JJ NN CC NNS TO JJ NNP NNS NNP . It was the first time Palestinian officials in Ramallah have had access to Mr. Arafat 's records since his death at a Paris hospital November 11 . PRP VBD DT JJ NN NN NNS IN NNP VBP VBN NN TO NNP NNP POS NNS IN PRP$ NN IN DT NNP NN NNP CD . Mr. al-Kidwa told a news conference the files do not give a clear explanation of the cause of Mr. Arafat 's death , adding that French doctors did not find any known poisons . NNP NNP VBD DT NN NN DT NNS VBP RB VB DT JJ NN IN DT NN IN NNP NNP POS NN , VBG IN JJ NNS VBD RB VB DT VBN NNS . French media quoted doctors who treated Mr. Arafat as saying he died of a blood clotting disorder . JJ NNS VBN NNS WP VBD NNP NNP IN VBG PRP VBD IN DT NN VBG NN . The U.S. military in Iraq says American and Iraqi forces have finished clearing operations in the western border town of Husaybah , which is believed to be a major entry point for foreign fighters and weapons . DT NNP NN IN NNP VBZ NNP CC JJ NNS VBP VBN NN NNS IN DT JJ NN NN IN NNP , WDT VBZ VBN TO VB DT JJ NN NN IN JJ NNS CC NNS . The military said Wednesday that patrols and raids would continue to root out remaining insurgents in the town near the Syrian border . DT NN VBD NNP IN NNS CC NNS MD VB TO VB RP VBG NNS IN DT NN IN DT JJ NN . In other violence , bombing and shooting attacks in Baquba and Baghdad killed at least seven people , including five policemen . IN JJ NN , VBG CC VBG NNS IN NNP CC NNP VBD IN JJS CD NNS , VBG CD NNS . The U.S. military also reported the death Tuesday of a Marine in western Iraq . DT NNP NN RB VBD DT NN NNP IN DT NN IN JJ NNP . In a separate development , the murdered lawyer for one of former dictator Saddam Hussein 's co-defendents was buried Wednesday . IN DT JJ NN , DT VBN NN IN CD IN JJ NN NNP NNP POS NNS VBD VBN NNP . President Jalal Talabani condemned Tuesday 's shooting of Adel al-Zubeidi , who represented Iraq 's former vice president , Taha Yassin Ramadan . NNP NNP NNP VBD NNP POS NN IN NNP NNP , WP VBD NNP POS JJ NN NN , NNP NNP NNP . Mr. Talabani also urged other members of the defense team to accept government protection which they had refused . NNP NNP RB VBD JJ NNS IN DT NN NN TO VB NN NN WDT PRP VBD VBN . World oil prices moved back above $ 65 a barrel in Friday 's trading as analysts expressed concern that it will take time to repair hurricane damage to the U.S. oil industry . NNP NN NNS VBD RB IN $ CD DT NN IN NNP POS NN IN NNS VBD NN IN PRP MD VB NN TO VB NN NN TO DT NNP NN NN . The price of crude oil for future delivery hit $ 65.32 a barrel in New York , an increase of about 83 cents from yesterday . DT NN IN JJ NN IN JJ NN VBD $ CD DT NN IN NNP NNP , DT NN IN IN CD NNS IN NN . U.S. officials have said oil production from the Gulf of Mexico is still well below normal levels , and four refineries will need months of repair . NNP NNS VBP VBN NN NN IN DT NNP IN NNP VBZ RB RB IN JJ NNS , CC CD NNS MD VB NNS IN NN . The Gulf coast is responsible for about 30 percent of U.S. crude oil and much of America 's refining capacity . DT NNP NN VBZ JJ IN IN CD NN IN NNP JJ NN CC NN IN NNP POS NN NN . Oil prices have been generally easing since hitting an all-time record high of $ 70.85 on August 30 . NN NNS VBP VBN RB VBG IN VBG DT JJ NN NN IN $ CD IN NNP CD . RMS International Inc. , Hasbrouk Heights , N.J. , facing a cash-flow squeeze , said it is seeking other financing sources and waivers from debenture holders . NNP NNP NNP , NNP NNP , NN , VBG DT JJ NN , VBD PRP VBZ VBG JJ NN NNS CC NNS IN NN NNS . The company said that because of softening sales it is n't in compliance with requirements that it maintain $ 3 million in working capital . DT NN VBD IN IN IN VBG NNS PRP VBZ RB IN NN IN NNS IN PRP VBP $ CD CD IN VBG NN . RMS distributes electronic devices and produces power supplies and plastic literature displays . NNP VBZ JJ NNS CC VBZ NN NNS CC NN NN NNS . RMS said it had a loss of $ 158 , 666 , or 10 cents a share , in the third quarter , compared with a year-earlier loss of $ 26,956 , or two cents a share . NNP VBD PRP VBD DT NN IN $ CD , CD , CC CD NNS DT NN , IN DT JJ NN , VBN IN DT JJ NN IN $ CD , CC CD NNS DT NN . Sales rose to $ 3 million from $ 2.9 million . NNS VBD TO $ CD CD IN $ CD CD . For the nine months , the company reported a net loss of $ 608 , 413 , or 39 cents a share , compared with year-earlier net income of $ 967 , 809 , or 62 cents a share . IN DT CD NNS , DT NN VBD DT JJ NN IN $ CD , CD , CC CD NNS DT NN , VBN IN JJ JJ NN IN $ CD , CD , CC CD NNS DT NN . Sales rose to $ 9.8 million from $ 8.9 million . NNS VBD TO $ CD CD IN $ CD CD . Founded in the 12th century , the Principality of Muscovy , was able to emerge from over 200 years of Mongol domination ( 13th - 15th centuries ) and to gradually conquer and absorb surrounding principalities . VBN IN DT JJ NN , DT NNP IN NNP , VBD JJ TO VB IN IN CD NNS IN JJ NN LRB JJ : JJ NNS RRB CC TO RB VB CC VB VBG NNS . In the early 17th century , a new Romanov Dynasty continued this policy of expansion across Siberia to the Pacific . IN DT JJ JJ NN , DT JJ NNP NNP VBD DT NN IN NN IN NNP TO DT NNP . Under PETER I ( ruled 1682 - 1725 ) , hegemony was extended to the Baltic Sea and the country was renamed the Russian Empire . IN NNP NNP LRB VBD CD : CD RRB , NN VBD VBN TO DT NNP NNP CC DT NN VBD VBN DT JJ NNP . During the 19th century , more territorial acquisitions were made in Europe and Asia . IN DT JJ NN , JJR JJ NNS VBD VBN IN NNP CC NNP . Defeat in the Russo-Japanese War of 1904 - 5 contributed to the Revolution of 1905 , which resulted in the formation of a parliament and other reforms . NN IN DT JJ NNP IN CD : CD VBD TO DT NN IN CD , WDT VBD IN DT NN IN DT NN CC JJ NNS . Repeated devastating defeats of the Russian army in World War I led to widespread rioting in the major cities of the Russian Empire and to the overthrow in 1917 of the imperial household . VBN JJ NNS IN DT JJ NN IN NNP NNP NNP VBD TO JJ NN IN DT JJ NNS IN DT JJ NN CC TO DT NN IN CD IN DT JJ NN . The Communists under Vladimir LENIN seized power soon after and formed the USSR . DT NNPS IN NNP NNP VBD NN RB IN CC VBD DT NNP . The brutal rule of Iosif STALIN ( 1928 - 53 ) strengthened Communist rule and Russian dominance of the Soviet Union at a cost of tens of millions of lives . DT JJ NN IN NNP NNP LRB CD IN CD RRB VBD JJ NN CC JJ NN IN DT NNP NNP IN DT NN IN NNS IN NNS IN NNS . The Soviet economy and society stagnated in the following decades until General Secretary Mikhail GORBACHEV ( 1985 - 91 ) introduced glasnost ( openness ) and perestroika ( restructuring ) in an attempt to modernize Communism , but his initiatives inadvertently released forces that by December 1991 splintered the USSR into Russia and 14 other independent republics . DT JJ NN CC NN VBN IN DT VBG NNS IN NNP NNP NNP NNP LRB CD IN CD RRB VBN NN LRB NN RRB CC FW LRB NN RRB IN DT NN TO VB NNP , CC PRP$ NNS RB VBN NNS WDT IN NNP CD VBD DT NNP IN NNP CC CD JJ JJ NNS . Since then , Russia has shifted its post-Soviet democratic ambitions in favor of a centralized semi-authoritarian state whose legitimacy is buttressed , in part , by carefully managed national elections , former President PUTIN 's genuine popularity , and the prudent management of Russia 's windfall energy wealth . IN RB , NNP VBZ VBN PRP$ JJ JJ NNS IN NN IN DT JJ JJ NN WP$ NN VBZ VBN , IN NN , IN RB VBN JJ NNS , JJ NNP NNP POS JJ NN , CC DT JJ NN IN NNP POS NN NN NN . Russia has severely disabled a Chechen rebel movement , although violence still occurs throughout the North Caucasus . NNP VBZ RB VBN DT JJ NN NN , IN NN RB VBZ IN DT NNP NNP . Severe volcanic activity , which began in July 1995 , has put a damper on this small , open economy . NNP JJ NN , WDT VBD IN NNP CD , VBZ VBN DT NN IN DT JJ , JJ NN . A catastrophic eruption in June 1997 closed the airports and seaports , causing further economic and social dislocation . DT JJ NN IN NNP CD VBD DT NNS CC NNS , VBG JJ JJ CC JJ NN . Two-thirds of the 12,000 inhabitants fled the island . NNS IN DT CD NNS VBD DT NN . Some began to return in 1998 but lack of housing limited the number . DT VBD TO VB IN CD CC NN IN NN VBN DT NN . The agriculture sector continued to be affected by the lack of suitable land for farming and the destruction of crops . DT NN NN VBD TO VB VBN IN DT NN IN JJ NN IN NN CC DT NN IN NNS . Prospects for the economy depend largely on developments in relation to the volcanic activity and on public sector construction activity . NNS IN DT NN VBP RB IN NNS IN NN TO DT JJ NN CC IN JJ NN NN NN . The UK has launched a three-year $ 122.8 million aid program to help reconstruct the economy . DT NNP VBZ VBN DT JJ $ CD CD NN NN TO VB VB DT NN . Half of the island is expected to remain uninhabitable for another decade . NN IN DT NN VBZ VBN TO VB JJ IN DT NN . Tourism continues to dominate Antigua and Barbuda 's economy , accounting for nearly 60 % of GDP and 40 % of investment . NNP VBZ TO VB NNP CC NNP POS NN , VBG IN RB CD NN IN NN CC CD NN IN NN . The dual-island nation 's agricultural production is focused on the domestic market and constrained by a limited water supply and a labor shortage stemming from the lure of higher wages in tourism and construction . DT JJ NN POS JJ NN VBZ VBN IN DT JJ NN CC VBN IN DT JJ NN NN CC DT NN NN VBG IN DT NN IN JJR NNS IN NN CC NN . Manufacturing comprises enclave-type assembly for export with major products being bedding , handicrafts , and electronic components . NNP VBZ JJ NN IN NN IN JJ NNS VBG JJ , NNS , CC JJ NNS . Prospects for economic growth in the medium term will continue to depend on tourist arrivals from the US , Canada , and Europe and potential damages from natural disasters . NNS IN JJ NN IN DT JJ NN MD VB TO VB IN NN NNS IN DT NNP , NNP , CC NNP CC JJ NNS IN JJ NNS . After taking office in 2004 , the SPENCER government adopted an ambitious fiscal reform program , and was successful in reducing its public debt-to-GDP ratio from 120 % to about 90 % in 2008 . IN VBG NN IN CD , DT NNP NN VBD DT JJ JJ NN NN , CC VBD JJ IN VBG PRP$ JJ NN NN IN CD NN TO RB CD NN IN CD . However , the global financial crisis that began in 2008 , has led to a significant increase in the national debt , which topped 130 % at the end of 2010 . RB , DT JJ JJ NN WDT VBD IN CD , VBZ VBN TO DT JJ NN IN DT JJ NN , WDT VBD CD NN IN DT NN IN CD . The Antiguan economy experienced solid growth from 2003 to 2007 , reaching over 12 % in 2006 driven by a construction boom in hotels and housing associated with the Cricket World Cup , but growth dropped off in 2008 with the end of the boom . DT NNP NN VBD JJ NN IN CD TO CD , VBG IN CD NN IN CD VBN IN DT NN NN IN NNS CC NN VBN IN DT NNP NNP NNP , CC NN VBD RP IN CD IN DT NN IN DT NN . In 2009 , Antigua 's economy was severely hit by the global economic crisis , suffering from the collapse of its largest financial institution and a steep decline in tourism . IN CD , NNP POS NN VBD RB VBN IN DT JJ JJ NN , VBG IN DT NN IN PRP$ JJS JJ NN CC DT JJ NN IN NN . This decline continued in 2010 as the country struggled with a yawning budget deficit . DT NN VBD IN CD IN DT NN VBD IN DT VBG NN NN . Haiti is a free market economy that enjoys the advantages of low labor costs and tariff-free access to the US for many of its exports . NNP VBZ DT JJ NN NN WDT VBZ DT NNS IN JJ NN NNS CC JJ NN TO DT NNP IN NN IN PRP$ NNS . Poverty , corruption , and poor access to education for much of the population are among Haiti 's most serious disadvantages . NN , NN , CC JJ NN TO NN IN NN IN DT NN VBP IN NNP POS RBS JJ NNS . Over the longer term , Haiti needs to create jobs for its young workforce and to build institutional capacity . IN DT JJR NN , NNP VBZ TO VB NNS IN PRP$ JJ NN CC TO VB JJ NN . Haiti 's economy suffered a severe setback when a 7 magnitude earthquake destroyed much of its capital city , Port-au-Prince , and neighboring areas in January 2010 . NNP POS NN VBD DT JJ NN WRB DT CD NN NN VBD NN IN PRP$ NN NN , NNP , CC JJ NNS IN NNP CD . Already the poorest country in the Western Hemisphere with 80 % of the population living under the poverty line and 54 % in abject poverty , the damage to Port-au-Prince caused the country 's GDP to contract an estimated 5.1 % in 2010 . RB DT JJS NN IN DT JJ NNP IN CD NN IN DT NN VBG IN DT NN NN CC CD NN IN JJ NN , DT NN IN NNP VBD DT NN POS NN TO VB DT JJ CD NN IN CD . Two-thirds of all Haitians depend on the agricultural sector , mainly small-scale subsistence farming , and remain vulnerable to damage from frequent natural disasters , exacerbated by the country 's widespread deforestation . NNS IN DT NNS VBP IN DT JJ NN , RB JJ NN NN , CC VBP JJ TO NN IN JJ JJ NNS , VBN IN DT NN POS JJ NN . US economic engagement under the Haitian Hemispheric Opportunity through Partnership Encouragement ( HOPE ) Act , passed in December 2006 , has boosted apparel exports and investment by providing duty-free access to the US . NNP JJ NN IN DT JJ NNP NNP IN NNP NNP LRB NNP RRB NNP , VBD IN NNP CD , VBZ VBN NN NNS CC NN IN VBG JJ NN TO DT NNP . Congress voted in 2010 to extend the legislation until 2020 under the Haitian Economic Lift Act ( HELP ) ; the apparel sector accounts for three-quarters of Haitian exports and nearly one-tenth of GDP . NNP VBD IN CD TO VB DT NN IN CD IN DT JJ NNP NNP NNP LRB NNP RRB ; DT NN NN NNS IN NNS IN JJ NNS CC RB NN IN NN . Remittances are the primary source of foreign exchange , equaling nearly 20 % of GDP and more than twice the earnings from exports . NNS VBP DT JJ NN IN JJ NN , VBG RB CD NN IN NN CC JJR IN RB DT NNS IN NNS . Haiti suffers from a lack of investment , partly because of limited infrastructure and a lack of security . NNP VBZ IN DT NN IN NN , RB IN IN JJ NN CC DT NN IN NN . In 2005 , Haiti paid its arrears to the World Bank , paving the way for reengagement with the Bank . IN CD , NNP VBD PRP$ NNS TO DT NNP NNP , VBG DT NN IN NN IN DT NNP . Haiti received debt forgiveness for over $ 1 billion through the Highly-Indebted Poor Country ( HIPC ) initiative in mis-2009 . NNP VBD NN NN IN IN $ CD CD IN DT JJ NNP NNP LRB NNP RRB NN IN CD . The remainder of its outstanding external debt was cancelled by donor countries in early 2010 but has since risen to about $ 400 million . DT NN IN PRP$ JJ JJ NN VBD VBN IN NN NNS IN JJ CD CC VBZ IN VBN TO IN $ CD CD . The government relies on formal international economic assistance for fiscal sustainability , with over half of its annual budget coming from outside sources . DT NN VBZ IN JJ JJ JJ NN IN JJ NN , IN IN NN IN PRP$ JJ NN VBG IN JJ NNS . The economy depends largely on US military spending and tourism . DT NN VBZ RB IN NNP JJ NN CC NN . Total US grants , wage payments , and procurement outlays amounted to $ 1.3 billion in 2004 . JJ NNP NNS , NN NNS , CC NN NNS VBD TO $ CD CD IN CD . Over the past 30 years , the tourist industry has grown to become the largest income source following national defense . IN DT JJ CD NNS , DT NN NN VBZ VBN TO VB DT JJS NN NN VBG JJ NN . The Guam economy continues to experience expansion in both its tourism and military sectors . DT NNP NN VBZ TO VB NN IN DT PRP$ NN CC JJ NNS . An Ant , going to a river to drink , fell in , and was carried along in the stream . DT NN , VBG TO DT NN TO VB , VBD IN , CC VBD VBN IN IN DT NN . A Dove pitied her condition , and threw into the river a small bough , by means of which the Ant gained the shore . DT NN VBD PRP$ NN , CC VBD IN DT NN DT JJ NN , IN NNS IN WDT DT NN VBD DT NN . The Ant afterward , seeing a man with a fowling-piece aiming at the Dove , stung him in the foot sharply , and made him miss his aim , and so saved the Dove 's life . DT NN RB , VBG DT NN IN DT NN VBG IN DT NN , VBG PRP IN DT NN RB , CC VBD PRP VB PRP$ NN , CC RB VBD DT NN POS NN . ' Little friends may prove great friends . ' `` JJ NNS MD VB JJ NNS . `` A SHEPHERD once found the whelp of a Wolf and brought it up , and after a while taught it to steal lambs from the neighboring flocks . DT NN RB VBD DT NN IN DT NN CC VBD PRP RP , CC IN DT NN VBD PRP TO VB NNS IN DT JJ NNS . The Wolf , having shown himself an apt pupil , said to the Shepherd , ' Since you have taught me to steal , you must keep a sharp lookout , or you will lose some of your own flock . ' DT NN , VBG VBN PRP DT JJ NN , VBD TO DT NN , `` IN PRP VBP VBN PRP TO VB , PRP MD VB DT JJ NN , CC PRP MD VB DT IN PRP$ JJ NN . `` A FAMISHING Wolf , passing the door of a cottage in the forest , heard a Mother say to her babe : DT VBG NN , VBG DT NN IN DT NN IN DT NN , VBD DT NN VBP TO PRP$ NN : ' Be quiet , or I will throw you out of the window , and the wolves will get you . ' `` VB JJ , CC PRP MD VB PRP IN IN DT NN , CC DT NNS MD VB PRP . `` So he waited all day below the window , growing more hungry all the time . RB PRP VBD DT NN IN DT NN , VBG RBR JJ PDT DT NN . But at night the Old Man , having returned from the village club , threw out both Mother and Child . CC IN NN DT JJ NN , VBG VBN IN DT NN NN , VBD RP DT NN CC NN . ' You seem to have more than the average share of intelligence for a man of your background , ' sneered the lawyer at a witness on the stand . `` PRP VBP TO VB JJR IN DT JJ NN IN NN IN DT NN IN PRP$ NN , `` VBD DT NN IN DT NN IN DT NN . ' If I was n't under oath , I'd return the compliment , ' replied the witness . `` IN PRP VBD RB IN NN , NNP NN DT NN , `` VBD DT NN . A leading Democratic U.S. senator has called on Defense Secretary Donald Rumsfeld to explain why there is a critical shortage of protective equipment for American soldiers in Iraq and Afghanistan . DT VBG JJ NNP NN VBZ VBN IN NNP NNP NNP NNP TO VB WRB EX VBZ DT JJ NN IN JJ NN IN JJ NNS IN NNP CC NNP . In his party 's weekly radio address Saturday , Senator Dick Durbin of Illinois said the lack of armor in the battlefield is not a matter of logistics , but a lack of leadership . IN PRP$ NN POS JJ NN NN NNP , NNP NNP NNP IN NNP VBD DT NN IN NN IN DT NN VBZ RB DT NN IN NNS , CC DT NN IN NN . He said lawmakers have provided the Bush administration with all the defense spending it has requested , but that most vehicles and many soldiers lack adequate protection . PRP VBD NNS VBP VBN DT NNP NN IN PDT DT NN NN PRP VBZ VBN , CC IN JJS NNS CC JJ NNS VBP JJ NN . Mr. Durbin 's remarks add to growing criticism of Mr. Rumsfeld by members of Congress for his handling of the war . NNP NNP POS NNS VBP TO VBG NN IN NNP NNP IN NNS IN NNP IN PRP$ NN IN DT NN . The White House has defended the defense secretary , with a spokesman saying Mr. Rumsfeld is doing a great job . DT NNP NNP VBZ VBN DT NN NN , IN DT NN VBG NNP NNP VBZ VBG DT JJ NN . An official in southern Sudan says Ugandan soldiers were responsible for a recent attack in the region that left at least one person dead . DT NN IN JJ NNP VBZ JJ NNS VBD JJ IN DT JJ NN IN DT NN WDT VBD IN JJS CD NN NN . The accusation was made by the vice president of semi-autonomous southern Sudan , Riek Machar . DT NN VBD VBN IN DT NN NN IN JJ JJ NNP , NNP NNP . He said Ugandan forces must leave the region . PRP VBD JJ NNS MD VB DT NN . Machar said an investigation shows that Ugandan soldiers were responsible for an attack last month on a homestead in the town of Nyongwa . NNP VBD DT NN VBZ IN JJ NNS VBD JJ IN DT NN JJ NN IN DT NN IN DT NN IN NNP . One person was abducted during that attack and later killed . CD NN VBD VBN IN DT NN CC RB VBD . Initial reports said rebels of the Ugandan Lord 's Resistance Army ( LRA ) were behind the attack . JJ NNS VBD NNS IN DT JJ NNP POS NNP NNP LRB NNP RRB VBD IN DT NN . There has been no Ugandan government reaction to Machar 's accusation . EX VBZ VBN DT JJ NN NN TO NNP POS NN . However , a Ugandan army spokesman , Major Paddy Ankunda , is quoted by Bloomberg news service as saying Ugandan forces are in southern Sudan to pursue LRA rebels . RB , DT JJ NN NN , NNP NNP NNP , VBZ VBN IN NNP NN NN IN VBG JJ NNS VBP IN JJ NNP TO VB NNP NNS . Former Malaysian Prime Minister Mahathir Mohamad says U.S. suspicions about Iran 's nuclear program stem from what he calls an ' element of hatred against Muslims . ' JJ JJ NNP NNP NNP NNP VBZ NNP NNS IN NNP POS JJ NN VBP IN WP PRP VBZ DT `` NN IN NN IN NNPS . `` Malaysia 's official news agency , Bernama reports that Mr. Mahathir said the United States is taking a much harder stance with Iran than it is with North Korea . NNP POS JJ NN NN , NNP VBZ IN NNP NNP VBD DT NNP NNPS VBZ VBG DT JJ JJR NN IN NNP IN PRP VBZ IN NNP NNP . The former prime minister said Pyongyang will not be the target of a U.S. attack because ' if it is non-Muslim , the U.S. will not attack . ' DT JJ NN NN VBD NNP MD RB VB DT NN IN DT NNP NN IN `` IN PRP VBZ JJ , DT NNP MD RB VB . `` Mr. Mahathir was reported as saying he believes Washington will use Israel as a proxy to attack Tehran . NNP NNP VBD VBN IN VBG PRP VBZ NNP MD VB NNP IN DT NN TO VB NNP . Shortly before stepping down in late 2003 after 22 years in office , Mr. Mahathir remarked that ' Jews rule the world by proxy , ' setting off a storm of international criticism . RB IN VBG RP IN JJ CD IN CD NNS IN NN , NNP NNP VBD IN `` NNPS VBP DT NN IN NN , `` VBG RP DT NN IN JJ NN . Rescue workers in Indonesia have located a survivor of Monday 's huge earthquake off the coast of Sumatra . NN NNS IN NNP VBP VBN DT NN IN NNP POS JJ NN IN DT NN IN NNP . A crew of rescuers from Singapore heard the victim crying out weakly for help Saturday from beneath the rubble of a collapsed building on Nias island , one of areas hardest hit by the 8.7-magnitude quake . DT NN IN NNS IN NNP VBD DT NN VBG RP RB IN NN NNP IN IN DT NN IN DT JJ NN IN NNP NN , CD IN NNS RBS VBN IN DT JJ NN . Details of the man 's injuries are unknown . NNS IN DT NN POS NNS VBP JJ . He was discovered after the search for earthquake survivors had already been halted . PRP VBD VBN IN DT NN IN NN NNS VBD RB VBN VBN . Indonesian authorities said they expected to find no one alive more than four days after the devastating jolt . JJ NNS VBD PRP VBD TO VB DT CD JJ JJR IN CD NNS IN DT JJ NN . Restoring basic services and shelter for thousands of people whose homes were lost in the quake is now the focus of relief efforts . VBG JJ NNS CC NN IN NNS IN NNS WP$ NNS VBD VBN IN DT NN VBZ RB DT NN IN NN NNS . Water and food are still in short supply in the islands off Sumatra , and bad weather and aftershocks are hampering aid workers . NN CC NN VBP RB IN JJ NN IN DT NNS IN NNP , CC JJ NN CC NNS VBP VBG NN NNS . Witnesses in Somalia say Islamist insurgents have seized control of Hudur , the capital of the Bakool region . NNS IN NNP VBP NNP NNS VBP VBN NN IN NNP , DT NN IN DT NNP NN . The insurgent group al-Shabab says on its Web site that its fighters entered Hudur early Friday after government-allied soldiers fled the town late Thursday . DT JJ NN NNP VBZ IN PRP$ NNP NN IN PRP$ NNS VBD NNP JJ NNP IN JJ NNS VBD DT NN JJ NNP . The governor of Bakool confirmed in a phone interview with VOA 's Somali service that he and other officials have left the town . DT NN IN NNP VBD IN DT NN NN IN NNP POS JJ NN IN PRP CC JJ NNS VBP VBN DT NN . The Bakool region borders Ethiopia , which has thousands of troops in Somalia supporting the country 's U.N.-backed administration led by President Abdullahi Yusuf . DT NNP NN VBZ NNP , WDT VBZ NNS IN NNS IN NNP VBG DT NN POS JJ NN VBN IN NNP NNP NNP . Anti-government insurgents have captured other provincial towns in recent months but have usually withdrawn after a short time . JJ NNS VBP VBN JJ JJ NNS IN JJ NNS CC VBP RB VBN IN DT JJ NN . Islamists briefly controlled much of Somalia in 2006 before a joint offensive by the government and Ethiopia pushed them from power . NNS RB VBD NN IN NNP IN CD IN DT JJ NN IN DT NN CC NNP VBD PRP IN NN . Insurgents have waged an 18-month effort to drive out the Ethiopians and topple the government . NNS VBP VBN DT JJ NN TO VB RP DT NNS CC VB DT NN . The chief of the Russian navy says his country is looking to establish a permanent naval base on the Mediterranean Sea . DT NN IN DT JJ NN VBZ PRP$ NN VBZ VBG TO VB DT JJ JJ NN IN DT NNP NNP . Admiral Vladimir Masorin says the Mediterranean has the highest ' strategic importance ' for his country 's Black Sea fleet . NNP NNP NNP VBZ DT NNP VBZ DT JJS `` JJ NN `` IN PRP$ NN POS NNP NNP NN . He says a ' permanent presence ' of the Russian navy must be restored in the region . PRP VBZ DT `` JJ NN `` IN DT JJ NN MD VB VBN IN DT NN . Masorin spoke Friday at the existing base of the Black Sea fleet in the Ukrainian port city of Sevastopol . NNP VBD NNP IN DT VBG NN IN DT NNP NNP NN IN DT JJ JJ NN IN NNP . Earlier this year , Russian officials denied reports they were looking to build a military base in the Syrian port of Tartus . RBR DT NN , JJ NNS VBD NNS PRP VBD VBG TO VB DT JJ NN IN DT JJ NN IN NNP . Russia uses that port as a naval maintenance site . NNP VBZ DT NN IN DT JJ NN NN . Detained Burmese pro-democracy leader Aung San Suu Kyi has met with a senior official of country 's ruling military government in the main city of Rangoon . JJ JJ JJ NN NNP NNP NNP NNP VBZ VBN IN DT JJ NN IN NN POS VBG JJ NN IN DT JJ NN IN NNP . Aung San Suu Kyi was taken from her home Friday for the one hour meeting with Burmese official Aung Kyi at a nearby government facility . NNP NNP NNP NNP VBD VBN IN PRP$ NN NNP IN DT CD NN NN IN JJ JJ NNP NNP IN DT JJ NN NN . It was the fourth meeting between the two since September , when the military launched a bloody crackdown on pro-democracy demonstrators , and the first since mid-November . PRP VBD DT JJ NN IN DT CD IN NNP , WRB DT NN VBD DT JJ NN IN JJ NNS , CC DT JJ IN NNP . The United Nations says at least 31 people were killed in the crackdown , which triggered international outrage against the military government . DT NNP NNP VBZ IN JJS CD NNS VBD VBN IN DT NN , WDT VBD JJ NN IN DT JJ NN . Aung San Suu Kyi , a Nobel Peace Prize winner , has spent 12 of the last 18 years under some form of detention . NNP NNP NNP NNP , DT NNP NNP NNP NN , VBZ VBN CD IN DT JJ CD NNS IN DT NN IN NN . Thousands of people in Indian Kashmir protested against India 's security forces Thursday , blaming them for killing four youths a day before . NNS IN NNS IN JJ NNP VBD IN NNP POS NN NNS NNP , VBG PRP IN VBG CD NNS DT NN IN . Indian officials say the youths were killed in a crossfire Wednesday as Indian troops battled militants in the Kupwara district of northern Kashmir . JJ NNS VBP DT NNS VBD VBN IN DT NN NNP IN JJ NNS VBD NNS IN DT NNP NN IN JJ NNP . But demonstrators accused Indian soldiers of firing indiscriminately at the boys as they were playing in a park in the village of Doodipora . CC NNS VBD JJ NNS IN VBG RB IN DT NNS IN PRP VBD VBG IN DT NN IN DT NN IN NNP . India 's chief minister for Jammu Kashmir state , Ghulam Nabi Azad , has ordered an investigation . NNP POS JJ NN IN NNP NNP NN , NNP NNP NNP , VBZ VBN DT NN . In other violence Wednesday , Indian security forces raided rebel hideouts in the Udhampur and Poonch districts of Indian Kashmir . IN JJ NN NNP , JJ NN NNS VBD JJ NNS IN DT NNP CC NNP NNS IN JJ NNP . Indian officials say seven militants were killed , along with two Indian security personnel . JJ NNS VBP CD NNS VBD VBN , IN IN CD JJ NN NNS . Indian Prime Minister Manmohan Singh is to hold talks with Kashmiri political leaders on Saturday . JJ NNP NNP NNP NNP VBZ TO VB NNS IN JJ JJ NNS IN NNP . But several prominent Kashmiri separatists say they will not attend . CC JJ JJ JJ NNS VBP PRP MD RB VB . Campaigning has ended in Iran 's closely contested presidential election , but analysts expect Friday 's poll to produce no outright winner without a runoff election . NN VBZ VBN IN NNP POS RB VBN JJ NN , CC NNS VBP NNP POS NN TO VB DT JJ NN IN DT NN NN . Supporters of rival candidates campaigned in Tehran early Thursday morning , in a last minute effort to win over undecided voters . NNS IN JJ NNS VBN IN NNP JJ NNP NN , IN DT JJ NN NN TO VB IN JJ NNS . Several hundred pro-reform demonstrators marched in the capital , calling for a boycott of the polls . JJ CD JJ NNS VBD IN DT NN , VBG IN DT NN IN DT NNS . Police later dispersed the protesters . NNS RB VBD DT NNS . Mohsen Rezaei , seated , registers as a presidential candidate in Tehran , May 11 ; he later dropped out of the race Opinion polls show former president Akbar Hashemi Rafsanjani is leading in the race to replace President Mohammad Khatami , who is barred from running for a third consecutive term . NNP NNP , VBN , VBZ IN DT JJ NN IN NNP , NNP CD ; PRP RB VBD IN IN DT NN NN NNS VBP JJ NN NNP NNP NNP VBZ VBG IN DT NN TO VB NNP NNP NNP , WP VBZ VBN IN VBG IN DT JJ JJ NN . Mr. Rafsanjani 's main rivals are top reform candidate Mostafa Moin and the conservative former national police chief Mohammad Baqer Qalibaf . NNP NNP POS JJ NNS VBP JJ NN NN NNP NNP CC DT JJ JJ JJ NN NN NNP NNP NNP . Three hard-line conservatives are still in the race after a fourth dropped out Wednesday . CD JJ NNS VBP RB IN DT NN IN DT NN VBD IN NNP . At least one person has been seriously injured as thousands of Palestinian protesters demonstrated against Egypt 's closing of the Rafah border crossing from Gaza . IN JJS CD NN VBZ VBN RB VBN IN NNS IN JJ NNS VBD IN NNP POS NN IN DT NNP NN VBG IN NNP . Reports from the scene Saturday say a teenage protester was critically wounded when Hamas security forces fired into the air to disperse demonstrators . NNS IN DT NN NNP VBP DT NN NN VBD RB VBN WRB NNP NN NNS VBD IN DT NN TO VB NNS . The Rafah border crossing was controlled by Fatah-led Palestinian security forces until Hamas forces seized control of the Gaza strip in June . DT NNP NN VBG VBD VBN IN JJ JJ NN NNS IN NNP NNS VBD NN IN DT NNP NN IN NNP . The crossing had been the only direct link between Gaza and Egypt . DT VBG VBD VBN DT JJ JJ NN IN NNP CC NNP . Hamas seized control of Gaza after six days of clashes in which more than 100 people died . NNP VBD NN IN NNP IN CD NNS IN NNS IN WDT JJR IN CD NNS VBD . Egypt responded by closing the border . NNP VBD IN VBG DT NN . On Friday , at least eight people in Gaza - including at least one foreign journalist - were injured by what appeared to be stun grenades as Hamas security personnel dispersed a protest by supporters of the rival Fatah faction . IN NNP , IN JJS CD NNS IN NNP : VBG IN JJS CD JJ NN : VBD VBN IN WP VBD TO VB JJ NNS IN NNP NN NNS VBD DT NN IN NNS IN DT JJ NNP NN . Burma 's military government says it is releasing nearly 4,000 prisoners who had been wrongly jailed . NNP POS JJ NN VBZ PRP VBZ VBG RB CD NNS WP VBD VBN RB VBN . State radio said 3,937 prisoners would be released starting Thursday , because they were improperly charged by the recently disbanded National Intelligence Bureau . NNP NN VBD CD NNS MD VB VBN VBG NNP , IN PRP VBD RB VBN IN DT RB VBN NNP NNP NNP . The bureau was headed by former Prime Minister General Khin Nyunt , who was ousted last month and placed under house arrest . DT NN VBD VBN IN JJ NNP NNP NNP NNP NNP , WP VBD VBN JJ NN CC VBN IN NN NN . He was accused of investigating military commanders and threatening the unity of the armed forces . PRP VBD VBN IN VBG JJ NNS CC VBG DT NN IN DT JJ NNS . It is not known if any of Burma 's estimated 1,300 political prisoners will be among those freed . PRP VBZ RB VBN IN DT IN NNP POS JJ CD JJ NNS MD VB IN DT VBN . The announced release comes two weeks before a major summit of the 10-nation Association of South East Asian Nations , where Burma is expected to be questioned about its democratic reforms . DT JJ NN VBZ CD NNS IN DT JJ NN IN DT JJ NNP IN NNP NNP NNP NNP , WRB NNP VBZ VBN TO VB VBN IN PRP$ JJ NNS . Pope John Paul II has presented the relics of two early Christian saints to the Ecumenical Patriarch Bartholomew of Constantinople , the spiritual leader of the world 's Orthodox Christians . NNP NNP NNP NNP VBZ VBN DT NNS IN CD JJ JJ NNS TO DT NNP NNP NNP IN NNP , DT JJ NN IN DT NN POS NNP NNPS . The presentation of the relics of Saint John Chrysostom and Saint Gregory Nazianzen came during a joint service in Saint Peter 's Basilica . DT NN IN DT NNS IN NNP NNP NNP CC NNP NNP NNP VBD IN DT JJ NN IN NNP NNP POS NNP . In remarks read by an aide , the pontiff , who is seeking closer relations between the Roman Catholic and Eastern Orthodox Churches , expressed hope that the occasion will move the churches toward reconciliation . IN NNS VBN IN DT NN , DT NN , WP VBZ VBG RBR NNS IN DT NNP NNP CC NNP NNP NNP , VBD NN IN DT NN MD VB DT NNS IN NN . Patriarch Bartholomew called it proof that there are no insurmountable problems in the Church of Christ . NNP NNP VBD PRP NN IN EX VBP DT JJ NNS IN DT NN IN NNP . The two saints honored throughout Christianity as Doctors of the Church served as Bishops of Constantinople during the fourth century , before the split of the Roman Catholic and Orthodox Churches in 1054 . DT CD NNS VBN IN NNP IN NNS IN DT NNP VBD IN NNS IN NN IN DT JJ NN , IN DT NN IN DT NNP NNP CC NNP NNP IN CD . Orthodox scholars say Crusaders took the relics to Rome after sacking Constantinople in 1204 . NNP NNS VBP NNPS VBD DT NNS TO NNP IN VBG NN IN CD . Russia says it will withdraw its troops from the two remaining Soviet-era military bases in neighboring Georgia during 2008 . NNP VBZ PRP MD VB PRP$ NNS IN DT CD VBG JJ JJ NNS IN VBG NNP IN CD . Russian Foreign Minister Sergei Lavrov announced the agreement Monday after talks in Moscow with his Georgian counterpart , Salome Zurabishvili . JJ NNP NNP NNP NNP VBD DT NN NNP IN NNS IN NNP IN PRP$ JJ NN , NNP NNP . The agreement helps resolve one of the most contentious issues between the two former Soviet states . DT NN VBZ VB CD IN DT RBS JJ NNS IN DT CD JJ JJ NNS . Tbilisi had wanted Moscow to close its two remaining bases on Georgian soil by 2006 , a timeline Russia said it could not meet . NNP VBD VBN NNP TO VB PRP$ CD VBG NNS IN JJ NN IN CD , DT NN NNP VBD PRP MD RB VB . Earlier this month , Georgia imposed limited sanctions on the two Russian bases in an attempt to pressure Moscow to agree to a timetable for withdrawal . RBR DT NN , NNP VBD JJ NNS IN DT CD JJ NNS IN DT NN TO VB NNP TO VB TO DT NN IN NN . Indonesian officials say several Southeast Asian nations have agreed to send observers to monitor a peace agreement for Indonesia 's Aceh province . JJ NNS VBP JJ JJ JJ NNS VBP VBN TO VB NNS TO VB DT NN NN IN NNP POS NNP NN . The officials say Brunei , Malaysia , the Philippines , Singapore , and Thailand have agreed to participate in the observer mission . DT NNS VBP NNP , NNP , DT NNP , NNP , CC NNP VBP VBN TO VB IN DT NN NN . Indonesian Foreign Minister Hassan Wirayuda had made a formal request for monitors at the meeting in Laos of the Association of Southeast Asian nations . JJ NNP NNP NNP NNP VBD VBN DT JJ NN IN NNS IN DT NN IN NNP IN DT NNP IN NNP NNP NNS . The peace agreement between the Free Aceh Movement rebel group and the Indonesian government is scheduled to be signed on August 15 . DT NN NN IN DT NNP NNP NNP NN NN CC DT JJ NN VBZ VBN TO VB VBN IN NNP CD . The two sides reached the agreement earlier this month at talks in Finland . DT CD NNS VBD DT NN RBR DT NN IN NNS IN NNP . Under the accord , the rebel group is to disarm and give up its demands for independence in return for some form of political representation in Aceh . IN DT NN , DT NN NN VBZ TO VB CC VB RP PRP$ NNS IN NN IN NN IN DT NN IN JJ NN IN NNP . Some inforamtion for this report provided by AP and AFP . DT NN IN DT NN VBN IN NNP CC NNP . Authorities in Baghdad say Iraqi security forces have captured the leader of an al-Qaida terrorist cell allegedly responsible for a series of beheadings . NNS IN NNP VBP JJ NN NNS VBP VBN DT NN IN DT NNP JJ NN RB JJ IN DT NN IN NNS . The government identified the cell leader as Mohammed Najam Ibrahim , and said he worked closely with Iraq 's most-wanted fugitive , Abu Musab al-Zarqawi . DT NN VBD DT NN NN IN NNP NNP NNP , CC VBD PRP VBD RB IN NNP POS JJ JJ , NNP NNP NNP . He was arrested in Baquba , 60 kilometers north of the Iraqi capital . PRP VBD VBN IN NNP , CD NNS RB IN DT JJ NN . An official statement issued Thursday did not indicate when the arrest took place , but said interrogators are seeking information that might lead them to other members of the al-Zarqawi organization . DT JJ NN VBN NNP VBD RB VB WRB DT NN VBD NN , CC VBD NNS VBP VBG NN WDT MD VB PRP TO JJ NNS IN DT NNP NN . Iraqi officials say Mohammed Najam Ibrahim and his brother have carried out a number of beheadings and also have launched attacks against Iraqi security forces . JJ NNS VBP NNP NNP NNP CC PRP$ NN VBP VBN RP DT NN IN NNS CC RB VBP VBN NNS IN JJ NN NNS . In Iraq 's western al-Anbar province , U.S. military officials say a weeklong offensive to hunt down insurgents is moving ahead . IN NNP POS JJ NNP NN , NNP JJ NNS VBP DT JJ NN TO VB RP NNS VBZ VBG RB . They also reported another casualty - a U.S. Marine who was killed Thursday . PRP RB VBD DT NN IN DT NNP NN WP VBD VBN NNP . Voting has begun in Venezuela 's congressional elections , amid calls for a boycott by opponents of President Hugo Chavez . NN VBZ VBN IN NNP POS JJ NNS , IN NNS IN DT NN IN NNS IN NNP NNP NNP . Five opposition groups are not taking part in the vote , saying the country 's electoral council is biased in favor of the president . CD NN NNS VBP RB VBG NN IN DT NN , VBG DT NN POS JJ NN VBZ VBN IN NN IN DT NN . The boycott makes it likely that pro-Chavez candidates will win two-thirds of the seats in the National Assembly . DT NN VBZ PRP JJ IN JJ NNS MD VB NNS IN DT NNS IN DT NNP NNP . Analysts say with such a majority , pro-Chavez lawmakers could rewrite portions of the constitution , such as the clause that sets presidential term limits . NNS VBP IN JJ DT NN , JJ NNS MD VB NNS IN DT NN , JJ IN DT NN WDT VBZ JJ NN NNS . Mr. Chavez has said the boycott is a U.S.-backed ' conspiracy ' against his government . NNP NNP VBZ VBN DT NN VBZ DT JJ `` NN `` IN PRP$ NN . The U.S. State Department has repeatedly denied the accusations . DT NNP NNP NNP VBZ RB VBN DT NNS . The Venezuelan government has deployed thousands of soldiers around the country to maintain order during the vote . DT JJ NN VBZ VBN NNS IN NNS IN DT NN TO VB NN IN DT NN . Small explosions injured three people in the Caracas area on Friday . JJ NNS VBD CD NNS IN DT NNP NN IN NNP . Two competing pharmaceutical companies say they are going to work together to develop the first once-a-day pill to treat HIV - the virus that causes AIDS . CD VBG JJ NNS VBP PRP VBP VBG TO VB RB TO VB DT JJ JJ NN TO VB NNP IN DT NN WDT VBZ NNP . Briston-Myers Squibb and Gilead Sciences announced Monday they will collaborate to combine three separate drugs currently on the market into a single-dose pill that will make it easier for patients to manage their medication routine . NNP NNP CC NNP NNP VBD NNP PRP MD VB TO VB CD JJ NNS RB IN DT NN IN DT JJ NN WDT MD VB PRP JJR IN NNS TO VB PRP$ NN NN . Current treatment requires patients to take several pills a day . JJ NN VBZ NNS TO VB JJ NNS DT NN . Missing doses makes it easier for the virus to mutate and become resistant to medication . VBG NNS VBZ PRP JJR IN DT NN TO VB CC VB JJ TO NN . The companies say the planned once-a-day pill will combine Briston-Myers ' drug , Sustiva , with two drugs by Gilead - Viread and Emtriva . DT NNS VBP DT JJ JJ NN MD VB NNP POS NN , NNP , IN CD NNS IN NNP IN NNP CC NNP . The medicines attack the AIDS virus at different points in its replication cycle . DT NNS VBP DT NNP NN IN JJ NNS IN PRP$ NN NN . There is no cure for AIDS or HIV . EX VBZ DT NN IN NNP CC NNP . Hurricane Ophelia has gathered more strength and battered the coast of North Carolina Wednesday night , pounding the beachfront communities with rains and sustained winds of 140-kilometers per hour . NNP NNP VBZ VBN JJR NN CC VBD DT NN IN NNP NNP NNP NN , VBG DT NN NNS IN NNS CC VBD NNS IN NNS IN NN . The U.S. National Hurricane Center has issued a hurricane warning for coastal North Carolina , north to Virginia . DT NNP NNP NNP NNP VBZ VBN DT NN NN IN JJ NNP NNP , NN TO NNP . Forecasters have discontinued all warnings for South Carolina . NNS VBP VBN DT NNS IN NNP NNP . Fears of floods are intensifying , as the storm 's slow speed indicates that it could rain for days over the region , producing as much as 38 centimeters . NNS IN NNS VBP VBG , IN DT NN POS JJ NN VBZ IN PRP MD VB IN NNS IN DT NN , VBG RB RB IN CD NNS . Storm surges are also expected . NN NNS VBP RB VBN . Some 50,000 people along North Carolina 's coast have already lost power due to high winds and heavy rain . DT CD NNS IN NNP NNP POS NN VBP RB VBN NN JJ TO JJ NNS CC JJ NN . The governors of Virginia and North Carolina have declared states of emergency ahead of the storm . DT NNS IN NNP CC NNP NNP VBP VBN NNS IN NN RB IN DT NN . U.S. Secretary of State Colin Powell says North Korea may be ready to resume multi-party talks to defuse a crisis over its nuclear ambitions . NNP NNP IN NNP NNP NNP VBZ NNP NNP MD VB JJ TO VB JJ NNS TO VB DT NN IN PRP$ JJ NNS . Mr. Powell told reporters en route to Chile for the APEC summit that the United States has seen signals coming out of North Korea where it said it never insisted the crisis be solved only through negotiations with the United States . NNP NNP VBD NNS IN NN TO NNP IN DT NNP NN IN DT NNP NNPS VBZ VBN NNS VBG IN IN NNP NNP WRB PRP VBD PRP RB VBD DT NN VB VBN RB IN NNS IN DT NNP NNPS . Earlier U.S. officials said Washington plans to take advantage of the summit , which begins Saturday , to discuss with China , Japan , South Korea and Russia ways of getting Pyongyang back to the negotiating table . RBR NNP NNS VBD NNP VBZ TO VB NN IN DT NN , WDT VBZ NNP , TO VB IN NNP , NNP , NNP NNP CC NNP NNS IN VBG NNP RB TO DT NN NN . The six countries have held three rounds of talks on North Korea 's nuclear ambitions . DT CD NNS VBP VBN CD NNS IN NNS IN NNP NNP POS JJ NNS . North Korea refused to attend a fourth round of talks planned for September because , experts believe , it was awaiting the outcome of the U.S. presidential election . NNP NNP VBD TO VB DT JJ NN IN NNS VBN IN NNP IN , NNS VBP , PRP VBD VBG DT NN IN DT NNP JJ NN . U.S. Vice President Dick Cheney has announced plans to visit Saudi Arabia for talks with King Abdullah . NNP NNP NNP NNP NNP VBZ VBN NNS TO VB NNP NNP IN NNS IN NNP NNP . The vice president 's office said Wednesday that Cheney and the King will meet Saturday to discuss issues of mutual interest related to developments in the mideast region . DT NN NN POS NN VBD NNP IN NNP CC DT NN MD VB NNP TO VB NNS IN JJ NN VBN TO NNS IN DT NN NN . The issues on the agenda are expected to be the war in Iraq , the Israeli - Palestinian conflict , and the situation in Lebanon . DT NNS IN DT NN VBP VBN TO VB DT NN IN NNP , DT JJ : JJ NN , CC DT NN IN NNP . President Bush has announced he will travel to Jordan next week to discuss improving the Iraq security situation with Iraqi Prime Minister Nouri al-Maliki . NNP NNP VBZ VBN PRP MD VB IN NNP JJ NN TO VB VBG DT NNP NN NN IN JJ NNP NNP NNP NNP . In a joint statement , Mr. Bush and Mr. Malaki affirmed their commitment to building a peaceful , democratic and secure Iraq . IN DT JJ NN , NNP NNP CC NNP NNP VBD PRP$ NN TO VBG DT JJ , JJ CC JJ NNP . They also pledged to strengthen their bilateral partnership . PRP RB VBD TO VB PRP$ JJ NN . U.S. President Barack Obama met Thursday with the American hiker recently freed by Iran and the mothers of her two friends still being detained in Tehran . NNP NNP NNP NNP VBD NNP IN DT JJ NN RB VBN IN NNP CC DT NNS IN PRP$ CD NNS RB VBG VBN IN NNP . The White House said Mr. Obama wanted to personally welcome Sarah Shourd back to the Untied States following her more than one year long detention . DT NNP NNP VBD NNP NNP VBD TO RB VB NNP NNP RB TO DT NNP NNPS VBG PRP$ JJR IN CD NN RB NN . Mr. Obama told Shourd , her mother and the mothers of the other two U.S. hikers that the occasion is ' bittersweet ' because Shane Bauer and Josh Fattal are still being held in Iran . NNP NNP VBD NNP , PRP$ NN CC DT NNS IN DT JJ CD NNP NNS IN DT NN VBZ `` JJ `` IN NNP NNP CC NNP NNP VBP RB VBG VBN IN NNP . Iranian border guards seized the three U.S. hikers last year after Iran says they crossed from Iraq into Iranian territory . JJ NN NNS VBD DT CD NNP NNS JJ NN IN NNP VBZ PRP VBD IN NNP IN JJ NN . Shourd was freed earlier this month on $ 5,00,000 bail . NNP VBD VBN RBR DT NN IN $ CD NN . She told VOA that she and her two friends were victims of bad circumstances . PRP VBD NNP IN PRP CC PRP$ CD NNS VBD NNS IN JJ NNS . Chilean President-elect Michelle Bachelet has unveiled a cabinet containing an equal number of men and women . JJ NNP NNP NNP VBZ VBN DT NN VBG DT JJ NN IN NNS CC NNS . Bachelet told reporters Monday the 10 men and 10 women represent a ' historic step for equality ' in Chile . NNP VBD NNS NNP DT CD NNS CC CD NNS VBP DT `` JJ NN IN NN `` IN NNP . The cabinet includes members of parties that are part of the left-of-center coalition , Concertacion , that has governed Chile since the end of the military dictatorship of General Augusto Pinochet in 1990 . DT NN VBZ NNS IN NNS WDT VBP NN IN DT JJ NN , NNP , WDT VBZ VBN NNP IN DT NN IN DT JJ NN IN NNP NNP NNP IN CD . Among the cabinet members are former economist and finance minister Alejandro Foxley as foreign minister and Harvard professor Andres Velasco as finance minister . IN DT NN NNS VBP JJ NN CC NN NN NNP NNP IN JJ NN CC NNP NN NNP NNP IN NN NN . The Reuters news agency quotes Velasco as saying Tuesday he will continue the economic policies of the outgoing government , which produced economic growth of six percent last year . DT NNP NN NN VBZ NNP IN VBG NNP PRP MD VB DT JJ NNS IN DT JJ NN , WDT VBD JJ NN IN CD NN JJ NN . Bachelet , who was elected president earlier this month , will take office in March , succeeding socialist president Ricardo Lagos . NNP , WP VBD VBN NN RBR DT NN , MD VB NN IN NNP , VBG JJ NN NNP NNP . A bomb has ripped through a passenger bus in southwestern Pakistan , killing at least 13 people and wounding 20 others . DT NN VBZ VBN IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS CC VBG CD NNS . The police chief of the Baluchistan province , Chaudhry Mohammed Yaqoob , says the toll could rise because some people were still trapped inside the wreckage . DT NN NN IN DT NNP NN , NNP NNP NNP , VBZ DT NN MD VB IN DT NNS VBD RB VBN IN DT NN . Officials say the bus was carrying about 50 passengers from the provincial capital , Quetta , to the eastern city of Lahore when the bomb went off Sunday . NNS VBP DT NN VBD VBG IN CD NNS IN DT JJ NN , NNP , TO DT JJ NN IN NNP WRB DT NN VBD RP NNP . No one has claimed responsibility . DT NN VBZ VBN NN . But the police chief blamed Baluch tribal militants who have stepped up their insurgency seeking greater autonomy and more compensation for the region 's gas and other natural resources . CC DT NN NN VBD NNP JJ NNS WP VBP VBN RP PRP$ NN VBG JJR NN CC JJR NN IN DT NN POS NN CC JJ JJ NNS . The bus bombing came a day after a rocket attack blamed on Baluch tribal militants killed a soldier and wounded at least two people . DT NN NN VBD DT NN IN DT NN NN VBN IN NNP JJ NNS VBD DT NN CC VBD IN JJS CD NNS . Tribal militants also blew up a gas pipeline and fired more than 200 rockets at the main paramilitary base in the region . NNP NNS RB VBD RP DT NN NN CC VBD JJR IN CD NNS IN DT JJ JJ NN IN DT NN . U.S. Secretary of State Colin Powell and the European Union 's Dutch presidency have held talks on the Ukrainian election crisis , the situation in Iraq and other major international issues . NNP NNP IN NNP NNP NNP CC DT NNP NNP POS JJ NN VBP VBN NNS IN DT JJ NN NN , DT NN IN NNP CC JJ JJ JJ NNS . Mr. Powell met Friday with Dutch Foreign Minister Bernard Bot . NNP NNP VBD NNP IN JJ NNP NNP NNP NNP . The Netherlands also has troops in Iraq as part of the U.S.-led multinational force . DT NNP RB VBZ NNS IN NNP IN NN IN DT JJ JJ NN . On Thursday , the Dutch government volunteered to send additional personnel to Iraq as part of efforts to boost NATO 's training mission in that country . IN NNP , DT JJ NN VBD TO VB JJ NNS TO NNP IN NN IN NNS TO VB NNP POS NN NN IN DT NN . The visit is part of Mr. Powell 's final trip to Europe as Secretary of State , before the retired general leaves the Bush Administration . DT NN VBZ NN IN NNP NNP POS JJ NN TO NNP IN NNP IN NNP , IN DT JJ JJ NNS DT NNP NN . The International Committee of the Red Cross says it is concerned about prisoners on a hunger strike at the U.S. naval base at Guantanamo Bay , Cuba . DT NNP NNP IN DT NNP NNP VBZ PRP VBZ JJ IN NNS IN DT NN NN IN DT NNP JJ NN IN NNP NNP , NNP . Spokeswoman Antonella Notari on Friday described the situation at Guantanamo as serious . NN NNP NNP IN NNP VBD DT NN IN NNP IN JJ . She said the International Red Cross spent 10 days visiting with detainees in late September . PRP VBD DT NNP NNP NNP VBD CD NNS VBG IN NNS IN JJ NNP . The prisoners have been fasting since August to protest their detention without charges or trial . DT NNS VBP VBN VBG IN NNP TO VB PRP$ NN IN NNS CC NN . Human rights groups say more than 200 prisoners have refused food . JJ NNS NNS VBP JJR IN CD NNS VBP VBN NN . U.S. authorities say fewer than 30 detainees are currently not eating . NNP NNS VBP JJR IN CD NNS VBP RB RB VBG . Twenty-two have been hospitalized and fed involuntarily through tubes . CD VBP VBN VBN CC VBN RB IN NNS . The U.S. military is holding about 500 prisoners at Guantanamo . DT NNP NN VBZ VBG IN CD NNS IN NNP . Most were captured in Afghanistan and are suspected of being members of al-Qaida or the former Taliban regime . JJS VBD VBN IN NNP CC VBP VBN IN VBG NNS IN NNP CC DT JJ NNP NN . Archaeologists working south of Cairo have displayed ancient tombs and artifacts that are dated later than previous discoveries in the region . NNS VBG RB IN NNP VBP VBN JJ NNS CC NNS WDT VBP VBN RB IN JJ NNS IN DT NN . Egypt 's chief archaeologist , Zahi Hawass , Tuesday unveiled the tomb of a royal servant who died over 3,000 years ago , during a period known as the ' New Kingdom . ' NNP POS NN NN , NNP NNP , NNP VBD DT NN IN DT JJ NN WP VBD IN CD NNS RB , IN DT NN VBN IN DT `` NNP NNP . `` The tomb is in Saqqara , better known for pyramids and tombs that are 1,000 years older . DT NN VBZ IN NNP , RB VBN IN NNS CC NNS WDT VBP CD NNS JJR . The walls of the tomb are covered with painted murals . DT NNS IN DT NN VBP VBN IN JJ NNS . The excavation director says he expects to find more New Kingdom tombs at the site . DT NN NN VBZ PRP VBZ TO VB JJR NNP NNP NNS IN DT NN . Hawass also revealed 4,000-year-old coffins containing the mummies of a priest and his female companion buried near Egypt 's oldest pyramid at Saqqara . NNP RB VBD JJ NNS VBG DT NNS IN DT NN CC PRP$ JJ NN VBN IN NNP POS JJS NN IN NNP . On Monday , Egyptian archaeologists announced the discovery of a rare double statue of a scribe and his wife dating back more than 4,000 years IN NNP , JJ NNS VBD DT NN IN DT JJ JJ NN IN DT NN CC PRP$ NN VBG RB JJR IN CD NNS Afghan officials say at least 27 people were killed when a suicide bomber detonated explosives in a crowded area in southern Helmand province . JJ NNS VBP IN JJS CD NNS VBD VBN WRB DT NN NN VBD NNS IN DT JJ NN IN JJ NNP NN . At least 45 other people were wounded . IN JJS CD JJ NNS VBD VBN . NATO officials say the bomber was driving a motorized rickshaw when he blew himself up next to a bus station . NNP NNS VBP DT NN VBD VBG DT VBN NN WRB PRP VBD PRP RP JJ TO DT NN NN . An Afghan Defense Ministry spokesman , General Mohammad Zahir Azimi , says a local police commander who survived the attack appeared to have been the target of the blast , which killed 13 other policemen . DT JJ NNP NNP NN , NNP NNP NNP NNP , VBZ DT JJ NN NN WP VBD DT NN VBD TO VB VBN DT NN IN DT NN , WDT VBD CD JJ NNS . The explosion in the town of Gereshk , in Helmand province , is considered one of the deadliest in Afghanistan this year . DT NN IN DT NN IN NNP , IN NNP NN , VBZ VBN CD IN DT JJS IN NNP DT NN . NATO says that Afghan security forces have been deployed to secure the area around the site of the attack . NNP VBZ IN JJ NN NNS VBP VBN VBN TO VB DT NN IN DT NN IN DT NN . Israel 's ruling Likud party has closed a deal with the opposition Labor party to form a unity government . NNP POS NN NNP NN VBZ VBN DT NN IN DT NN NN NN TO VB DT NN NN . Under the agreement , Labor leader Shimon Peres will become second-in-command to Prime Minister Ariel Sharon . IN DT NN , NNP NN NNP NNP MD VB JJ TO NNP NNP NNP NNP . Both Mr. Peres and Likud Minister Ehud Olmert will share the title of vice premier in the new government , which could be announced as early as next week . DT NNP NNP CC NNP NNP NNP NNP MD VB DT NN IN NN NN IN DT JJ NN , WDT MD VB VBN RB RB IN JJ NN . Coalition talks began after some Likud members quit the Sharon government to protest Israel 's planned withdrawal from the Gaza Strip . NN NNS VBD IN DT NNP NNS VBD DT NNP NN TO VB NNP POS VBN NN IN DT NNP NNP . In a separate development , witnesses say four Palestinians have been killed in an Israeli air strike Thursday night in the southern Gaza Strip . IN DT JJ NN , NNS VBP CD NNS VBP VBN VBN IN DT JJ NN NN NNP NN IN DT JJ NNP NNP . This brings to nine the number of Palestinians killed since an Israeli incursion began Wednesday night in the Khan Younis refugee camp . DT VBZ TO CD DT NN IN NNS VBD IN DT JJ NN VBD NNP NN IN DT NNP NNP NN NN . Sudanese President Omar al-Bashir says Sudan will not hand over any of its citizens to a foreign court , after the United nations voted to refer Darfur war crimes suspects to the International Criminal Court . JJ NNP NNP NNP VBZ NNP MD RB VB IN DT IN PRP$ NNS TO DT JJ NN , IN DT NNP NNS VBD TO VB NNP NN NNS VBZ TO DT NNP NNP NNP . In a speech to the leadership council of the ruling National Congress party , Mr. Bashir said Saturday the Sudanese justice system is competent and honest enough to try any war crimes suspects . IN DT NN TO DT NN NN IN DT NN NNP NNP NN , NNP NNP VBD NNP DT JJ NN NN VBZ JJ CC JJ NN TO VB DT NN NNS NNS . The U.N. Security Council passed a resolution Thursday to refer 51 people accused of crimes against humanity in Sudan 's western Darfur region to the court in the Hague . DT NNP NNP NNP VBD DT NN NNP TO VB CD NNS VBN IN NNS IN NN IN NNP POS JJ NNP NN TO DT NN IN DT NNP . Hundreds of Sudanese demonstrated in the capital , Khartoum , today to protest the resolution . NNS IN NNS VBD IN DT NN , NNP , NN TO VB DT NN . They called for Sudan to cut diplomatic relations with France for having drafted the resolution . PRP VBD IN NNP TO VB JJ NNS IN NNP IN VBG VBN DT NN . President Bush has chosen federal appeals court Judge Samuel Alito as his new nominee for the United States Supreme Court . NNP NNP VBZ VBN JJ NNS NN NNP NNP NNP IN PRP$ JJ NN IN DT NNP NNP NNP NNP . Speaking at the White House Monday , the president described Mr. Alito as a man of ' enormous character ' who has shown mastery of the law and a deep commitment to justice . VBG IN DT NNP NNP NNP , DT NN VBD NNP NNP IN DT NN IN `` JJ NN `` WP VBZ VBN NN IN DT NN CC DT JJ NN TO NN . The nominee takes the place of White House counsel Harriet Miers , who withdrew her nomination last week after pressure from some of the president 's conservative supporters . DT NN VBZ DT NN IN NNP NNP NN NNP NNP , WP VBD PRP$ NN JJ NN IN NN IN DT IN DT NN POS JJ NNS . Unlike Ms. Miers , Mr. Alito has a reputation as a solid conservative jurist , and has served 15 years as a judge on the U.S. Third Circuit Court of Appeals . IN NNP NNP , NNP NNP VBZ DT NN IN DT JJ JJ NN , CC VBZ VBN CD NNS IN DT NN IN DT NNP NNP NNP NNP IN NNP . The nomination is likely to set off an intense political struggle . DT NN VBZ JJ TO VB RP DT JJ JJ NN . If approved by the Senate , Mr. Alito would replace retiring Justice Sandra Day O'Connor , a moderate who has often been the deciding vote in cases dealing with abortion and other contentious issues . IN VBN IN DT NNP , NNP NNP MD VB VBG NNP NNP NNP NNP , DT JJ WP VBZ RB VBN DT VBG NN IN NNS VBG IN NN CC JJ JJ NNS . Officials in Pakistan say a suspected suicide bomb blast near the home of a politician has killed at least four people . NNS IN NNP VBP DT JJ NN NN NN IN DT NN IN DT NN VBZ VBN IN JJS CD NNS . The bombing happened Thursday in the northwestern town of Charsadda , close to a house belonging to Asfandyar Wali - head of the Awami National Party . DT NN VBD NNP IN DT JJ NN IN NNP , RB TO DT NN VBG TO NNP NNP : NN IN DT NNP NNP NNP . Officials say Wali was not hurt in the attack . NNS VBP NNP VBD RB VBN IN DT NN . In another development , United Nations employees in Pakistan 's capital , Islamabad , will no longer be allowed to live with their children in the country due to heightened security measures . IN DT NN , NNP NNPS NNS IN NNP POS NN , NNP , MD RB RB VB VBN TO VB IN PRP$ NNS IN DT NN JJ TO JJ NN NNS . U.N. officials say the secretary general approved raising security following last month 's deadly truck bombing in Islamabad . NNP NNS VBP DT NN NN VBD VBG NN VBG JJ NN POS JJ NN VBG IN NNP . The attack at a Marriott Hotel left more than 50 people dead , and greatly raised fears about the country 's security . DT NN IN DT NNP NNP VBD JJR IN CD NNS JJ , CC RB VBD NNS IN DT NN POS NN . Britain has also issued an order for its diplomats ' children to leave Pakistan . NNP VBZ RB VBN DT NN IN PRP$ NNS POS NNS TO VB NNP . The Venezuelan government has seized about 3,30,000 hectares of land it considers idle from 16 estates for use as collective farms . DT JJ NN VBZ VBN IN CD NNS IN NN PRP VBZ JJ IN CD NNS IN NN IN JJ NNS . President Hugo Chavez announced the seizures Sunday on his weekly Hello , President television show . NNP NNP NNP VBD DT NNS NNP IN PRP$ JJ NNP , NNP NN NN . He said the land will be mostly used to raise cattle for meat and milk production . PRP VBD DT NN MD VB RB VBN TO VB NNS IN NN CC NN NN . He did not elaborate on how the collectivization of the property would work , but said the land belongs to everyone and will benefit everyone . PRP VBD RB VB IN WRB DT NN IN DT NN MD VB , CC VBD DT NN VBZ TO DT CC MD VB DT . Mr. Chavez said the move is part of a program to do away with large private estates . NNP NNP VBD DT NN VBZ NN IN DT NN TO VB RB IN JJ JJ NNS . Mr. Chavez began nationalizing privately-owned industries when he began his second term of office this year in an attempt to turn Venezuela into a socialist state . NNP NNP VBD VBG JJ NNS WRB PRP VBD PRP$ JJ NN IN NN DT NN IN DT NN TO VB NNP IN DT JJ NN . In February , he ordered the nationalization of oil projects run by foreign companies . IN NNP , PRP VBD DT NN IN NN NNS VBN IN JJ NNS . He had already taken control of a foreign-run telecommunications company and an electric power company . PRP VBD RB VBN NN IN DT JJ NN NN CC DT JJ NN NN . A major figure in U.S. journalism , Tim Russert , chief of the Washington bureau for NBC television , has collapsed and died of a heart attack in his Washington office . DT JJ NN IN NNP NN , NNP NNP , NN IN DT NNP NN IN NNP NN , VBZ VBN CC VBN IN DT NN NN IN PRP$ NNP NN . He was 58 years old . PRP VBD CD NNS JJ . Russert came to broadcast journalism in 1984 after working for Democratic politicians in his native New York state . NNP VBD TO VB NN IN CD IN VBG IN JJ NNS IN PRP$ JJ NNP NNP NN . He took over as host of NBC 's Sunday morning interview program ' Meet the Press ' in 1991 and brought the nearly 50-year-old show to the top of the broadcast ratings . PRP VBD RP IN NN IN NNP POS NNP NN NN NN `` VBZ DT NNP `` IN CD CC VBD DT RB JJ NN TO DT NN IN DT NN NNS . He became known for his tough questioning of politicians while maintaining a cheerful demeanor . PRP VBD VBN IN PRP$ JJ VBG IN NNS IN VBG DT JJ NN . Russert also wrote two best-selling books , including one that chronicled the close relationship with his father . NNP RB VBD CD JJ NNS , VBG CD WDT VBD DT JJ NN IN PRP$ NN . Cuba 's communist party newspaper is signaling a crackdown on black-market satellite dishes used by citizens to get news from the United States . NNP POS JJ NN NN VBZ VBG DT NN IN JJ NN NNS VBN IN NNS TO VB NN IN DT NNP NNPS . The newspaper Granma said satellite television programming from the United States carries out the objectives of those who want to destroy the spirit of Cuba 's 1959 communist revolution . DT NN NNP VBD NN NN NN IN DT NNP NNPS VBZ RP DT NNS IN DT WP VBP TO VB DT NN IN NNP POS CD JJ NN . As the official voice of the Havana government , such articles in the past have signaled imminent government action . IN DT JJ NN IN DT NNP NN , JJ NNS IN DT NN VBP VBN JJ NN NN . The French news agency , AFP , quotes witnesses as saying a government hunt for some of the clandestine dishes has already begun . DT JJ NN NN , NNP , VBZ NNS IN VBG DT NN NN IN DT IN DT JJ NNS VBZ RB VBN . Last week , Cuban President Fidel Castro , 79 , provisionally surrendered power to his brother , Raul , after undergoing what has been described as stomach surgery . JJ NN , JJ NNP NNP NNP , CD , RB VBD NN TO PRP$ NN , NNP , IN VBG WP VBZ VBN VBN IN NN NN . The Cuban population has since been eager for information . DT JJ NN VBZ IN VBN JJ IN NN . Neither Castro has appeared in public since the announcement . DT NNP VBZ VBN IN JJ IN DT NN . A new study says the gap between what men and women earn is closing in some nations , but remains as wide as ever in others . DT JJ NN VBZ DT NN IN WP NNS CC NNS VBP VBZ VBG IN DT NNS , CC VBZ RB JJ IN RB IN NNS . Monday 's report from The World Economic Forum ranks Sweden at the top of a list of 58 major nations . NNP POS NN IN DT NNP NNP NNP VBZ NNP IN DT NN IN DT NN IN CD JJ NNS . But it notes that not even Sweden and its nordic neighbors have completely closed the gender gap . CC PRP VBZ IN RB RB NNP CC PRP$ JJ NNS VBP RB VBN DT NN NN . Researchers examined women 's economic opportunity and participation , political power , education and health in order to come up with the rankings . NNS VBD NNS POS JJ NN CC NN , JJ NN , NN CC NN IN NN TO VB RP IN DT NNS . They placed the United States a poor 17th because of what they term inadequate child care , maternity leave and economic opportunity . PRP VBD DT NNP NNPS DT JJ JJ IN IN WP PRP VBP JJ NN NN , NN NN CC JJ NN . The researchers ranked Pakistan , Turkey and Egypt at the bottom of the list . DT NNS VBD NNP , NNP CC NNP IN DT NN IN DT NN . Switzerland and Russia have skated to the quarterfinals of the men 's Olympic ice hockey tournament at the Turin Games in Italy . NNP CC NNP VBP VBN TO DT NNS IN DT NNS POS NNP NN NN NN IN DT NNP NNPS IN NNP . The Swiss played Group A rival Germany to a two-goal draw ( 02-Feb ) Sunday . DT NNS VBD NNP NNP JJ NNP TO DT JJ NN LRB CD RRB NNP . But with upset wins over Canada and the Czech Republic , Switzerland will advance . CC IN JJ NNS IN NNP CC DT JJ NNP , NNP MD VB . Group A leader Finland has a place , and the Czech Republic and Canada will gain the other two spots with at least ties in games later Sunday . NNP NNP NN NNP VBZ DT NN , CC DT JJ NNP CC NNP MD VB DT JJ CD NNS IN IN JJS NNS IN NNS RB NNP . Slovakia is guaranteed to finish at the top of Group B , beating Kazakhstan , 02-Jan , to remain undefeated after four games . NNP VBZ VBN TO VB IN DT NN IN NNP NNP , VBG NNP , CD , TO VB JJ IN CD NNS . Eight-time Olympic champion Russia hammered Latvia , 09-Feb , to reach the quarterfinals . JJ NNP NN NNP VBN NNP , CD , TO VB DT NNS . Sweden also will advance . NNP RB MD VB . The other place will go to the United States if it gets at least one point from its last two games . DT JJ NN MD VB TO DT NNP NNPS IN PRP VBZ IN JJS CD NN IN PRP$ JJ CD NNS . Syria has agreed to allow United Nations investigators to question at U.N. headquarters in Vienna five Syrian officials about the assassination of former Lebanese Prime Minister Rafik Hariri . NNP VBZ VBN TO VB NNP NNP NNS TO VB IN NNP NN IN NNP CD JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP . Deputy Foreign Minister Walid Moallem told reporters Friday in Damascus that Syria agreed to the compromise after it received guarantees about the rights of the individuals and assurances that its sovereignty would be respected . NNP NNP NNP NNP NNP VBD NNS NNP IN NNP IN NNP VBD TO DT NN IN PRP VBD NNS IN DT NNS IN DT NNS CC NNS IN PRP$ NN MD VB VBN . He did not say when the interviews will take place . PRP VBD RB VB WRB DT NNS MD VB NN . A U.N. spokeswoman confirmed that a deal has been reached , and she said Secretary-General Kofi Annan expects Syria 's cooperation to continue . DT NNP NN VBD IN DT NN VBZ VBN VBN , CC PRP VBD JJ NNP NNP VBZ NNP POS NN TO VB . The compromise ends a deadlock with the United Nations , which had originally asked to interview the Syrians in Beirut . DT NN VBZ DT NN IN DT NNP NNPS , WDT VBD RB VBN TO VB DT NNS IN NNP . Last month , the U.N. Security Council adopted a resolution demanding that Syria cooperate with the investigation into the February assassination or face possible sanctions . JJ NN , DT NNP NNP NNP VBD DT NN VBG IN NNP VBP IN DT NN IN DT NNP NN CC NN JJ NNS . Syria has denied any involvement in the killing . NNP VBZ VBN DT NN IN DT NN . The United States has condemned the multiple explosions that struck in the Indian capital , New Delhi on Saturday . DT NNP NNPS VBZ VBN DT JJ NNS WDT VBD IN DT JJ NN , NNP NNP IN NNP . In a statement released late Saturday , U.S. Secretary of State Condoleezza Rice described the deadly blasts as a heinous act that deliberately targeted innocent civilians preparing for holiday celebrations . IN DT NN VBN JJ NNP , NNP NNP IN NNP NNP NNP VBD DT JJ NNS IN DT JJ NN IN RB VBN JJ NNS VBG IN NN NNS . She said fighting terrorism is a struggle shared around the world and that the United States stands with India as it seeks to bring the guilty to justice . PRP VBD VBG NN VBZ DT NN VBN IN DT NN CC IN DT NNP NNPS VBZ IN NNP IN PRP VBZ TO VB DT JJ TO NN . Elsewhere , U.N. Secretary General Kofi Annan said he was appalled by the crime and urged authorities to prosecute those responsible . RB , NNP NNP NNP NNP NNP VBD PRP VBD VBN IN DT NN CC VBD NNS TO VB DT JJ . In Pakistan , the Minister for Information and Broadcasting , Sheikh Rashid Ahmad , said his country is shocked at what he called an act of barbarism . IN NNP , DT NNP IN NNP CC NNP , NNP NNP NNP , VBD PRP$ NN VBZ VBN IN WP PRP VBD DT NN IN NN . Japan 's foreign ministry called the attacks a cowardly act . NNP POS JJ NN VBD DT NNS DT RB NN . Australian Prime Minister John Howard , British Foreign Secretary Jack Straw and Chinese President Hu Jintao also condemned the attacks . JJ NNP NNP NNP NNP , NNP NNP NNP NNP NNP CC JJ NNP NNP NNP RB VBD DT NNS . Thousands of mourners in Azerbaijan have turned out for the funeral of magazine editor Elmar Husseinov , who was gunned down earlier in the week . NNS IN NNS IN NNP VBP VBN RP IN DT NN IN NN NN NNP NNP , WP VBD VBN RB RBR IN DT NN . Opposition supporters gathered for the funeral procession Friday protested what they say are oppressive media conditions . NN NNS VBD IN DT JJ NN NNP VBD WP PRP VBP VBP JJ NNS NNS . Mr. Husseinov worked for the weekly Monitor , which has been critical of the government . NNP NNP VBD IN DT JJ NNP , WDT VBZ VBN JJ IN DT NN . He had previously been fined and jailed for his work . PRP VBD RB VBN VBN CC VBN IN PRP$ NN . He was found shot to death outside his apartment in Baku Wednesday . PRP VBD VBN VBN IN NN IN PRP$ NN IN NNP NNP . The United States has sent an FBI agent to help find those responsible for the killing . DT NNP NNPS VBZ VBN DT NNP NN TO VB VB DT JJ IN DT NN . President Ilham Aliyev ordered a swift investigation into the attack , calling it a serious provocation against the state and authority . NNP NNP NNP VBD DT JJ NN IN DT NN , VBG PRP DT JJ NN IN DT NN CC NN . Media groups , including the Committee to Protect Journalists and Reporters Without Borders , have condemned the killing and expressed concern about what they describe as government harassment and repression of the media . NNS NNS , VBG DT NNP TO VB NNS CC NNS IN NNS , VBP VBN DT NN CC VBD NN IN WP PRP VBP IN NN NN CC NN IN DT NNS . Socialist Michelle Bachelet is set to become Chile 's first woman president after winning Sunday 's runoff election . NNP NNP NNP VBZ VBN TO VB NNP POS JJ NN NN IN VBG NNP POS NN NN . Her rightist opponent Sebastian Pinera conceded defeat as vote tallies put Bachelet ahead with 53 percent of the ballots . PRP$ JJ NN NNP NNP VBD NN IN NN NNS VBD NNP RB IN CD NN IN DT NNS . Pinera was behind with less than 47 percent . NNP VBD IN IN JJR IN CD NN . Two-thirds of the vote have been counted . NNS IN DT NN VBP VBN VBN . Bachelet , a former political prisoner and later a defense minister , had been projected to win . NNP , DT JJ JJ NN CC RB DT NN NN , VBD VBN VBN TO VB . Succeeding current President Ricardo Lagos , she will inherit an economy that has surged in part because of soaring prices for copper , which is Chile 's top export . VBG JJ NNP NNP NNP , PRP MD VB DT NN WDT VBZ VBN IN NN IN IN VBG NNS IN NN , WDT VBZ NNP POS JJ NN . The European Space Agency says the Huygens space probe has successfully transmitted scientific data from Saturn 's moon Titan . DT NNP NNP NNP VBZ DT NNP NN NN VBZ RB VBN JJ NNS IN NNP POS NN NNP . Officials say the probe , operated jointly by the American , European and Italian space agencies , is continuing to transmit data after landing on the moon 's surface earlier Friday . NNS VBP DT NN , VBN RB IN DT JJ , JJ CC JJ NN NNS , VBZ VBG TO VB NNS IN NN IN DT NN POS NN RB NNP . Huygens is studying the composition of Titan 's atmosphere and relaying the information to the probe 's parent craft , Cassini , for transmission to Earth . NNP VBZ VBG DT NN IN NNP POS NN CC VBG DT NN TO DT NN POS NN NN , NNP , IN NN TO NNP . European space officials say the probe will continue to transmit data over the next few hours . JJ NN NNS VBP DT NN MD VB TO VB NNS IN DT JJ JJ NNS . It takes about one hour for the signal to travel from the probe back to Earth . PRP VBZ IN CD NN IN DT NN TO VB IN DT NN RB TO NNP . Scientists believe conditions on Titan are similar to those here on Earth before life evolved , which could help them understand the origin of our atmosphere . NNS VBP NNS IN NNP VBP JJ TO DT RB IN NN IN NN VBD , WDT MD VB PRP VB DT NN IN PRP$ NN . President Bush says he takes ' full responsibility ' for what went wrong with the federal response to the disaster caused by Hurricane Katrina . NNP NNP VBZ PRP VBZ `` JJ NN `` IN WP VBD JJ IN DT JJ NN TO DT NN VBN IN NNP NNP . Speaking at the White House Tuesday , Mr. Bush said Katrina exposed serious problems in the response capability at all levels of government to disasters . VBG IN DT NNP NNP NNP , NNP NNP VBD NNP VBD JJ NNS IN DT NN NN IN DT NNS IN NN TO NNS . President Bush has seen his approval rating drop to its lowest point ever in several public opinion polls , amid widespread criticism of the federal government 's initial response to the storm . NNP NNP VBZ VBN PRP$ NN NN NN TO PRP$ JJS NN RB IN JJ JJ NN NNS , IN JJ NN IN DT JJ NN POS JJ NN TO DT NN . Television images showed hundreds of New Orleans residents waiting for help on docks or rooftops for several days after Katrina hit . NN NNS VBD NNS IN NNP NNP NNS VBG IN NN IN NNS CC NNS IN JJ NNS IN NNP VBD . Earlier , the White House said President Bush will address the nation from Louisiana late Thursday . RB , DT NNP NNP VBD NNP NNP MD VB DT NN IN NNP JJ NNP . New Orleans ' Louis Armstrong international airport plans to resume some commercial flights Tuesday . NNP NNP POS NNP NNP JJ NN VBZ TO VB DT JJ NNS NNP . The World Food Program says it will continue supplying aid to survivors of the Indian Ocean tsunami in Indonesia and Sri Lanka until 2007 . DT NNP NNP NNP VBZ PRP MD VB VBG NN TO NNS IN DT NNP NNP NN IN NNP CC NNP NNP IN CD . In a statement Tuesday the WFP said the aid will be focused on the most vulnerable : children , new mothers , the elderly and displaced people . IN DT NN NNP DT NNP VBD DT NN MD VB VBN IN DT RBS JJ IN NNS , JJ NNS , DT NN CC JJ NNS . The WFP director for Asia , Anthony Banbury , said the agency will remain active in the area until people are back on their feet and have regained the livelihoods they lost . DT NNP NN IN NNP , NNP NNP , VBD DT NN MD VB JJ IN DT NN IN NNS VBP RB IN PRP$ NNS CC VBP VBN DT NNS PRP VBD . About 1.5 million people will receive assistance . RB CD CD NNS MD VB NN . The WFP statement said aid to the Maldives and Somalia will be phased out by the end of the year . DT NNP NN VBD NN TO DT NNP CC NNP MD VB VBN RP IN DT NN IN DT NN . Assistance to Burma and Thailand ended in mid 2005 . NNP TO NNP CC NNP VBD IN JJ CD . Cuba says it has resumed diplomatic contact with eight European Union countries that have stopped inviting dissidents to official embassy events . NNP VBZ PRP VBZ VBN JJ NN IN CD NNP NNP NNS WDT VBP VBN VBG NNS TO JJ JJ NNS . Foreign Minister Felipe Perez Roque announced the Cuban government 's decision at a news conference in Havana Monday . JJ NN NNP NNP NNP VBD DT JJ NN POS NN IN DT NN NN IN NNP NNP . Mr. Roque says Cuban authorities will start meeting with the ambassadors of the EU countries which include France , Germany and Britain . NNP NNP VBZ JJ NNS MD VB VBG IN DT NNS IN DT NNP NNS WDT VBP NNP , NNP CC NNP . Relations between Cuba and the European Union became strained in 2003 after the Cuban government cracked down on opposition to President Fidel Castro . NNP IN NNP CC DT NNP NNP VBD VBN IN CD IN DT JJ NN VBD RP IN NN TO NNP NNP NNP . Seventy-five dissidents were arrested and imprisoned for lenghty jail terms . CD NNS VBD VBN CC VBN IN JJ NN NNS . Fourteen of them have been released . CD IN PRP VBP VBN VBN . The European Union began to reduce high-level government visits and invited dissidents to embassy gatherings . DT NNP NNP VBD TO VB JJ NN NNS CC VBD NNS TO VB NNS . Iran 's judiciary says it is not ready to announce the verdicts of several al-Qaida members who Tehran says were tried and sentenced in the Islamic state . NNP POS NN VBZ PRP VBZ RB JJ TO VB DT NNS IN JJ NNP NNS WP NNP VBZ VBD VBN CC VBN IN DT JJ NN . An Iranian judiciary official said Tuesday the verdicts will only be released when all ' legal obstacles are removed . ' DT JJ NN NN VBD NNP DT NNS MD RB VB VBN WRB DT `` JJ NNS VBP VBN . `` He did not offer any details . PRP VBD RB VB DT NNS . Iran has not said how many suspected al-Qaida members were on trial , or released details on the charges against them . NNP VBZ RB VBN WRB JJ JJ NNP NNS VBD IN NN , CC VBN NNS IN DT NNS IN PRP . Iran denies accusations that it has become a haven for al-Qaida militants . NNP VBZ NNS IN PRP VBZ VBN DT NN IN NNP NNS . Authorities in Indian Kashmir say a suspected Islamic militant and three policemen have been killed and at least six people wounded in two separate incidents . NNS IN JJ NNP VBP DT JJ JJ NN CC CD NNS VBP VBN VBN CC IN JJS CD NNS VBN IN CD JJ NNS . Police say one militant and three policemen were killed during a raid late Tuesday on a house in a village northeast of Jammu city . NNS VBP CD JJ CC CD NNS VBD VBN IN DT NN JJ NNP IN DT NN IN DT NN NN IN NNP NN . They say three houses were damaged in the fighting . PRP VBP CD NNS VBD VBN IN DT NN . In a separate incident in Srinagar Wednesday , suspected militants lobbed a grenade at police officers , wounding at least two policemen and four civilians . IN DT JJ NN IN NNP NNP , JJ NNS VBD DT NN IN NN NNS , VBG IN JJS CD NNS CC CD NNS . Militant separatist groups in Indian Kashmir continue attacks against government targets , saying they oppose the ongoing peace process between India and Pakistan . JJ NN NNS IN NNP NNP VBP NNS IN NN NNS , VBG PRP VBP DT JJ NN NN IN NNP CC NNP . Kashmiri militants have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan . JJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP . The insurgency has claimed tens of thousand of lives . DT NN VBZ VBN NNS IN CD IN NNS . A leading Palestinian newspaper says Prime Minister Ahmed Qureia will resign next week . DT VBG JJ NN VBZ NNP NNP NNP NNP MD VB JJ NN . The al-Hayam newspaper Wednesday said Mr. Qureia will quit after returning from medical treatments in Paris . DT JJ NN NNP VBD NNP NNP MD VB IN VBG IN JJ NNS IN NNP . There has been no official confirmation of the report . EX VBZ VBN DT JJ NN IN DT NN . On Sunday , Palestinian lawmakers voted overwhelmingly to urge Palestinian Authority President Mahmoud Abbas to fire his cabinet for failing to stop factional fighting in the Gaza Strip . IN NNP , JJ NNS VBD RB TO VB JJ NNP NNP NNP NNP TO VB PRP$ NN IN VBG TO VB JJ NN IN DT NNP NNP . The lawmakers demanded that Mr. Abbas appoint a new prime minister within two weeks or else face a no-confidence vote . DT NNS VBD IN NNP NNP VB DT JJ JJ NN IN CD NNS CC RB VB DT JJ NN . The action came after a legislative committee presented a special report on the deteriorating Gaza security situation . DT NN VBD IN DT JJ NN VBD DT JJ NN IN DT JJ NNP NN NN . Hours earlier Sunday , a Palestinian police commander and two civilian bystanders were killed and at least 50 others wounded in gunbattles between Hamas militants and police . NNS RBR NNP , DT JJ NN NN CC CD JJ NNS VBD VBN CC IN JJS CD NNS VBN IN NNS IN NNP NNS CC NNS . Two separate bomb attacks in southern Afghanistan Wednesday killed five people and injured several others . CD JJ NN NNS IN JJ NNP NNP VBD CD NNS CC VBN JJ NNS . A NATO spokesman says a suicide bomber blew up a vehicle at a police checkpoint in the Zahri district of Kandahar province , killing himself and three policemen . DT NNP NN VBZ DT NN NN VBD RP DT NN IN DT NN NN IN DT NNP NN IN NNP NN , VBG PRP CC CD NNS . Three other policemen were wounded in the attack . CD JJ NNS VBD VBN IN DT NN . Also in Kandahar , a remote-controlled bomb killed two Afghan security guards working for a U.S. company . RB IN NNP , DT JJ NN VBD CD JJ NN NNS VBG IN DT NNP NN . Six other guards were wounded . CD JJ NNS VBD VBN . In another development , U.S. forces say they have captured two suspected al-Qaida militants during a raid in eastern Afghanistan . IN DT NN , NNP NNS VBP PRP VBP VBN CD JJ NNP NNS IN DT NN IN JJ NNP . A military statement says the two Afghan men were taken into custody this Wednesday morning in Nangarhar province . DT JJ NN VBZ DT CD JJ NNS VBD VBN IN NN DT NNP NN IN NNP NN . The statement says coalition forces acted on intelligence about an al-Qaida member known to pass messages to senior leaders of the group . DT NN VBZ NN NNS VBD IN NN IN DT NNP NN VBN TO VB NNS TO JJ NNS IN DT NN . It says the two detained men are being questioned about links to the terrorist organization . PRP VBZ DT CD JJ NNS VBP VBG VBN IN NNS TO DT JJ NN . An official with Cuba 's biotechnology program says his country may develop a bird flu vaccine . DT NN IN NNP POS NN NN VBZ PRP$ NN MD VB DT NN NN NN . Carlos Borroto , with Cuba 's Center for Genetic Engineering and Biotechnology , made the comment Thursday . NNP NNP , IN NNP POS NNP IN NNP NNP CC NNP , VBD DT NN NNP . But he said officials do not want to raise expectations because they are still studying the project 's feasibility . CC PRP VBD NNS VBP RB VB TO VB NNS IN PRP VBP RB VBG DT NN POS NN . The official also said the two drugs now in use against avian flu are effective , but were not being produced in sufficient quantities . DT NN RB VBD DT CD NNS RB IN NN IN JJ NN VBP JJ , CC VBD RB VBG VBN IN JJ NNS . The remarks come as Cuba prepares to host an international biotechnology conference in Havana . DT NNS VBP IN NNP VBZ TO VB DT JJ NN NN IN NNP . An estimated 500 scientists from 35 countries are expected at the talks , beginning November 27 in Havana . DT VBN CD NNS IN CD NNS VBP VBN IN DT NNS , VBG NNP CD IN NNP . Cuba 's biotechnology industry is one of the most advanced in the developing world . NNP POS NN NN VBZ CD IN DT RBS JJ IN DT JJ NN . The United Nations Security Council has adopted a resolution condemning the bombings in London . DT NNP NNP NNP NNP VBZ VBN DT NN VBG DT NNS IN NNP . The unanimous vote came Thursday during an emergency meeting of the 15-member council , on which Britain holds a permanent seat . DT JJ NN VBD NNP IN DT NN NN IN DT JJ NN , IN WDT NNP VBZ DT JJ NN . The measure expresses condolences for the British people and the victims of the four bombings in London . DT NN VBZ NNS IN DT JJ NNS CC DT NNS IN DT CD NNS IN NNP . It says any act of terrorism threatens peace and security . PRP VBZ DT NN IN NN VBZ NN CC NN . Similar resolutions of condemnation were passed following the Madrid train bombings in 2004 , and the September 11 , 2001 attacks in the United States . JJ NNS IN NN VBD VBN VBG DT NNP NN NNS IN CD , CC DT NNP CD , CD NNS IN DT NNP NNPS . U.N. Secretary-General Kofi Annan , now in Scotland , joined leaders from the Group of Eight Industrialized nations in strongly condemning the London attacks . NNP NNP NNP NNP , RB IN NNP , VBD NNS IN DT NNP IN CD VBN NNS IN RB VBG DT NNP NNS . Bomb blasts killed at least 20 people in Iraq Wednesday , and the U.S. military urged Iraqi political leaders to increase efforts to stem the bloodshed . NN NNS VBD IN JJS CD NNS IN NNP NNP , CC DT NNP NN VBD JJ JJ NNS TO VB NNS TO VB DT NN . Iraqi security officials say a car bomb blast in a Shi'ite neighborhood in eastern Baghdad killed at least 10 people and wounded 25 others . JJ NN NNS VBP DT NN NN NN IN DT NNP NN IN JJ NNP VBD IN JJS CD NNS CC VBD CD NNS . Later , two car bombs exploded in another eastern suburb , killing five day laborers and wounding 10 others . RB , CD NN NNS VBD IN DT JJ NN , VBG CD NN NNS CC VBG CD NNS . In the town of Riyadh , some 50 kilometers south of Kirkuk , suicide car bombers attacked an Iraqi army base and killed at least five soldiers and wounded 10 others . IN DT NN IN NNP , DT CD NNS RB IN NNP , NN NN NNS VBD DT JJ NN NN CC VBN IN JJS CD NNS CC VBD CD NNS . In a village south of Baghdad , gunmen stormed a house and killed nine members of a Shi'ite family . IN DT NN NN IN NNP , NNS VBD DT NN CC VBD CD NNS IN DT NNP NN . U.S. military spokesman Major General William Caldwell warned that the upsurge in violence will continue unless Iraqi political leaders make a greater effort to overcome their differences . NNP JJ NN NNP NNP NNP NNP VBD IN DT NN IN NN MD VB IN JJ JJ NNS VBP DT JJR NN TO VB PRP$ NNS . French President Jacques Chirac has signaled he will probably not seek an unprecedented third term in this year 's presidential elections . JJ NNP NNP NNP VBZ VBN PRP MD RB RB VB DT JJ JJ NN IN DT NN POS JJ NNS . The 74-year-old president said in a TV interview to be broadcast on Sunday that there is life after politics . DT JJ NN VBD IN DT NN NN TO VB VBN IN NNP IN EX VBZ NN IN NNS . In office since 1995 , Mr. Chirac said he hoped to continue to serve France but ' in another capacity . ' IN NN IN CD , NNP NNP VBD PRP VBD TO VB TO VB NNP CC `` IN DT NN . `` As recently as last month , Mr. Chirac had indicated he was contemplating a new run at the presidency and would announce his intentions at a later date . RB RB IN JJ NN , NNP NNP VBD VBN PRP VBD VBG DT JJ NN IN DT NN CC MD VB PRP$ NNS IN DT JJ NN . If he were to run , he must declare his candidacy before mid-March for the elections in April . IN PRP VBD TO VB , PRP MD VB PRP$ NN IN NN IN DT NNS IN NNP . Polls have shown that a large majority of the French do not want Mr. Chirac to run again . NNS VBP VBN IN DT JJ NN IN DT NNS VBP RB VB NNP NNP TO VB RB . Mr. Chirac 's popularity ratings are low , and many in the French electorate view him as old and out of touch . NNP NNP POS NN NNS VBP JJ , CC NN IN DT JJ JJ VBP PRP IN JJ CC IN IN NN . Venezuelan President Hugo Chavez has criticized U.S. President George Bush for his handling of the U.S. financial crisis . JJ NNP NNP NNP VBZ VBN NNP NNP NNP NNP IN PRP$ NN IN DT NNP JJ NN . Mr. Chavez said Friday that the crisis has put the world economy at risk . NNP NNP VBD NNP IN DT NN VBZ VBN DT NN NN IN NN . The Venezuelan leader spoke to reporters from the presidential palace in Paris following a meeting with French President Nicolas Sarkozy . DT JJ NN VBD TO NNS IN DT JJ NN IN NNP VBG DT NN IN JJ NNP NNP NNP . Mr. Chavez praised President Sarkozy and said the two discussed technology transfers and energy issues . NNP NNP VBD NNP NNP CC VBD DT CD VBN NN NNS CC NN NNS . Earlier Friday , Mr. Chavez was in Russia where he signed an energy cooperation pact with Russian President Dmitry Medvedev . RBR NNP , NNP NNP VBD IN NNP WRB PRP VBD DT NN NN NN IN JJ NNP NNP NNP . Russian energy officials recently said they will expand their investment in Venezuela 's oil industry . JJ NN NNS RB VBD PRP MD VB PRP$ NN IN NNP POS NN NN . The Venezuelan leader 's trip has also taken him to Cuba and China . DT JJ NN POS NN VBZ RB VBN PRP TO NNP CC NNP . He plans to stop in Portugal before returning home . PRP VBZ TO VB IN NNP IN VBG NN . Pope John Paul has spent a second night under close medical care , but Vatican officials say his fragile health has stabilized . NNP NNP NNP VBZ VBN DT JJ NN IN JJ JJ NN , CC NNP NNS VBP PRP$ JJ NN VBZ VBN . Vatican chief spokesman Joaquin Navarro-Valls said Wednesday the pope was running a slight fever and will remain at Rome 's Gemelli hospital for a few more days . NNP NN NN NNP NNP VBD NNP DT NN VBD VBG DT JJ NN CC MD VB IN NNP POS NNP NN IN DT JJ JJR NNS . Italian Prime Minister Silvio Berlusconi said he is convinced the pontiff will be released in two or three days . JJ NNP NNP NNP NNP VBD PRP VBZ VBN DT NN MD VB VBN IN CD CC CD NNS . The 84-year old pope was hospitalized late Tuesday for treatment of an acute inflammation of the respiratory tract brought on by the flu . DT JJ JJ NN VBD VBN JJ NNP IN NN IN DT JJ NN IN DT JJ NN VBN RP IN DT NN . He came down with the flu Sunday and had canceled all of his engagements over the past couple of days . PRP VBD RP IN DT NN NNP CC VBD VBN DT IN PRP$ NNS IN DT JJ NN IN NNS . The pope suffers from Parkinson 's disease , which gradually affects control of the muscles , including those of the throat and chest . DT NN VBZ IN NNP POS NN , WDT RB VBZ NN IN DT NNS , VBG DT IN DT NN CC NN . A four-year-old girl in Egypt has tested positive for bird flu , the 44th confirmed human case of the deadly disease in the Arab world 's most populous country . DT JJ NN IN NNP VBZ VBN JJ IN NN NN , DT NN VBD JJ NN IN DT JJ NN IN DT JJ NN POS RBS JJ NN . Egyptian health ministry officials say the girl is from the southern village of Sheik Massoud in Minya province . JJ NN NN NNS VBP DT NN VBZ IN DT JJ NN IN NNP NNP IN NNP NN . She was admitted to a Cairo hospital for treatment on Monday . PRP VBD VBN TO DT NNP NN IN NN IN NNP . Of the 44 bird flu cases confirmed so far in Egypt , 19 have been fatal . IN DT CD NN NN NNS VBN RB RB IN NNP , CD VBP VBN JJ . Most of the fatalities have been women or girls whose families raise poultry , which brings them into daily contact with chickens or turkeys . JJS IN DT NNS VBP VBN NNS CC NNS WP$ NNS VBP NN , WDT VBZ PRP IN JJ NN IN NNS CC NNS . Close to five million Egyptian households depend on poultry for food or income . NN TO CD CD JJ NNS VBP IN NN IN NN CC NN . The government says this makes it unlikely that the disease can be eradicated despite a large-scale poultry vaccination program . DT NN VBZ DT VBZ PRP JJ IN DT NN MD VB VBN IN DT JJ NN NN NN . Four Egyptian women died from bird flu last December . CD JJ NNS VBD IN NN NN JJ NNP . Thousands of tsunami victims in Sri Lanka are slowly returning to government-run centers a day after flash floods forced them out . NNS IN NN NNS IN NNP NNP VBP RB VBG TO NN NNS DT NN IN NN NNS VBD PRP RP . The floods are also slowing down relief efforts . DT NNS VBP RB VBG RP NN NNS . Aid convoys continue to have difficulty reaching some of the hardest-hit areas on the devastated eastern coast . NNP NNS VBP TO VB NN VBG DT IN DT JJ NNS IN DT JJ JJ NN . Health officials say they are bracing for outbreaks of contagious diseases as hundreds of thousands of displaced people live in unsanitary conditions and lack clean drinking water . NNP NNS VBP PRP VBP VBG IN NNS IN JJ NNS IN NNS IN NNS IN JJ NNS VBP IN JJ NNS CC NN JJ NN NN . Aid continues to arrive from other countries . NNP VBZ TO VB IN JJ NNS . The first contingent of 1,500 U.S. Marines , along with a ship carrying 20 helicopters , are due to arrive in Sri Lanka later Sunday . DT JJ JJ IN CD NNP NNPS , IN IN DT NN VBG CD NNS , VBP JJ TO VB IN NNP NNP RB NNP . The Marines will operate from an offshore platform south of the port city of Galle . DT NNPS MD VB IN DT JJ NN NN IN DT JJ NN IN NNP . Russia and China are conducting three days of joint anti-terrorism exercises in Moscow . NNP CC NNP VBP VBG CD NNS IN JJ NN NNS IN NNP . The event began Tuesday with a simulation of a hostage situation in an administrative building , complete with attackers wearing helmets and carrying weapons . DT NN VBD NNP IN DT NN IN DT NN NN IN DT JJ NN , JJ IN NNS VBG NNS CC VBG NNS . The exercises are a followup to large-scale maneuvers last month that involved not just Russia and China but also forces from Kazakhstan , Kyrgyzstan , Tajikistan , and Uzbekistan . DT NNS VBP DT NN TO JJ NNS JJ NN WDT VBD RB RB NNP CC NNP CC RB NNS IN NNP , NNP , NNP , CC NNP . Those exercises were held near Chelyabinsk in Russia , near the border with Kazakhstan . DT NNS VBD VBN IN NNP IN NNP , IN DT NN IN NNP . Britain says it will relax controls on the export of civilian nuclear technology to India . NNP VBZ PRP MD VB NNS IN DT NN IN JJ JJ NN TO NNP . The British government says India is a key international partner in fighting terrorism and weapons of mass destruction following India 's agreement to adhere to international guidelines on nuclear nonproliferation . DT JJ NN VBZ NNP VBZ DT JJ JJ NN IN VBG NN CC NNS IN NN NN VBG NNP POS NN TO VB TO JJ NNS IN JJ NN . British Foreign Secretary Jack Straw also noted the ongoing improvement in India 's relations with Pakistan . JJ NNP NNP NNP NNP RB VBD DT JJ NN IN NNP POS NNS IN NNP . Last month , New Delhi and Washington reached an agreement under which India agreed to separate its civilian and military nuclear programs , continue a moratorium on nuclear testing and open the civilian facilities for U.N. inspections . JJ NN , NNP NNP CC NNP VBD DT NN IN WDT NNP VBD TO VB PRP$ JJ CC JJ JJ NNS , VBP DT NN IN JJ NN CC VB DT JJ NNS IN NNP NNS . Under the accord , the United States promised India full cooperation in helping India fulfill its growing energy needs , including the sale of nuclear power plants . IN DT NN , DT NNP NNPS VBD NNP JJ NN IN VBG NNP VB PRP$ VBG NN NNS , VBG DT NN IN JJ NN NNS . The party of Burmese pro-democracy leader Aung San Suu Kyi is urging voters to reject a proposed new constitution conceived by the country 's ruling military regime . DT NN IN JJ JJ NN NNP NNP NNP NNP VBZ VBG NNS TO VB DT VBN JJ NN VBN IN DT NN POS NN JJ NN . The National League for Democracy issued a statement Wednesday calling on citizens to vote ' no ' when the charter comes up for approval in a referendum scheduled for May . DT NNP NNP IN NNP VBD DT NN NNP VBG IN NNS TO VB `` DT `` WRB DT NN VBZ RP IN NN IN DT NN VBN IN NNP . General elections will be held in 2010 . NNP NNS MD VB VBN IN CD . International critics have denounced the proposed constitution , saying it solidifies the military junta 's hold on power . JJ NNS VBP VBN DT VBN NN , VBG PRP VBZ DT JJ NN POS NN IN NN . The draft charter also bars Aung San Suu Kyi from the elections , on the grounds that she was once married to a foreigner , a British citizen who died of cancer in 1999 . DT NN NN RB VBZ NNP NNP NNP NNP IN DT NNS , IN DT NNS IN PRP VBD RB VBN TO DT NN , DT JJ NN WP VBD IN NN IN CD . Aung San Suu Kyi 's National League for Democracy party won Burma 's last general elections in 1990 , but the country 's military leaders ignored the result . NNP NNP NNP NNP POS NNP NNP IN NNP NN VBD NNP POS JJ JJ NNS IN CD , CC DT NN POS JJ NNS VBD DT NN . Police in India say at least 15 people were killed Sunday when a highway overpass under construction collapsed in southern India . NNS IN NNP VBP IN JJS CD NNS VBD VBN NNP WRB DT NN NN IN NN VBD IN JJ NNP . About 10 people were also reported to be injured . IN CD NNS VBD RB VBN TO VB VBN . It is unclear as to whether any others were trapped . PRP VBZ JJ IN TO IN DT NNS VBD VBN . The overpass was located in a busy commercial area in Hyderabad , the capital of Andhra Pradesh state . DT NN VBD VBN IN DT JJ JJ NN IN NNP , DT NN IN NNP NNP NN . When it comes to entertainment earnings , men still dominate . WRB PRP VBZ TO NN NNS , NNS RB VBP . Forbes Magazine has just released its 2007 listing of the World 's Most Powerful Celebrities , with men on average earning nearly twice as much as their female counterparts . NNP NNP VBZ RB VBN PRP$ CD NN IN DT NNP POS JJS JJ NNS , IN NNS IN NN VBG RB RB RB JJ IN PRP$ JJ NNS . Movie actor Tom Cruise ranks atop this year 's list , earning $ 67 million . NN NN NNP NNP VBZ IN DT NN POS NN , VBG $ CD CD . Rounding out the top five are , in descending order , rock singer Mick Jagger ; talk show hostess-producer Oprah Winfrey ; rock band U2 ; and golfer Tiger Woods . VBG RP DT JJ CD VBP , IN VBG NN , NN NN NNP NNP ; NN NN NN NNP NNP ; NN NN NNP ; CC NN NNP NNP . The list measures both the stars ' earnings and their influence within their respective fields . DT NN VBZ DT DT NNS POS NNS CC PRP$ NN IN PRP$ JJ NNS . Movie industry analysts say men have the upper hand through career longevity and overall box-office appeal . NN NN NNS VBP NNS VBP DT JJ NN IN NN NN CC JJ JJ NN . Five West African heads of state will travel to Togo Friday to pressure the military-installed government to return the nation to consitutional order , or face sanctions . CD JJ JJ NNS IN NN MD VB TO NNP NNP TO VB DT JJ NN TO VB DT NN TO JJ NN , CC NN NNS . The delegation , made up of the presidents of Nigeria , Niger , Benin , Mali and Ghana , will demand Togo reverse constitutional changes , made shortly after President Gnassingbe Eyadema died on Saturday , that allow his son to serve out his term until 2008 . DT NN , VBD IN IN DT NNS IN NNP , NNP , NNP , NNP CC NNP , MD VB NNP VB JJ NNS , VBN RB IN NNP NNP NNP VBD IN NNP , WDT VBP PRP$ NN TO VB RP PRP$ NN IN CD . West African leaders say Togo must respect the prior constitution which called for new elections within 60 days , and the temporary handing over of power to the spearker of the parliament in the event of the president 's death . JJ JJ NNS VBP NNP MD VB DT JJ NN WDT VBD IN JJ NNS IN CD NNS , CC DT JJ NN IN IN NN TO DT NN IN DT NN IN DT NN IN DT NN POS NN . The Economic Community of West African States , ECOWAS , says it will not recognize the new government , calling the events in Togo a coup . DT NNP NNP IN NNP NNP NNP , NNP , VBZ PRP MD RB VB DT JJ NN , VBG DT NNS IN NNP DT NN . The new Togolese president , Faure Gnassingbe , has promised to hold general elections as soon as possible . DT JJ NN NN , NNP NNP , VBZ VBN TO VB JJ NNS RB RB IN JJ . China 's Commerce Ministry says major differences remain between Beijing and Washington over textile exports after two days of talks on the issue in San Francisco , California earlier this week . NNP POS NNP NNP VBZ JJ NNS VBP IN NNP CC NNP IN JJ NNS IN CD NNS IN NNS IN DT NN IN NNP NNP , NNP RBR DT NN . A statement Thursday on the ministry 's website said Chinese officials are hopeful future talks will yield an agreement . DT NN NNP IN DT NN POS NN VBD JJ NNS VBP JJ JJ NNS MD VB DT NN . The meetings focused on U.S. limits on Chinese imports intended to protect American clothing manufacturers from low-cost competition . DT NNS VBD IN NNP NNS IN JJ NNS VBN TO VB JJ NN NNS IN JJ NN . Chinese products flooded the market this year after global trade quotas expired . JJ NNS VBD DT NN DT NN IN JJ NN NNS VBD . U.S. textile manufacturers complain they have lost 26,000 jobs to cheap Chinese imports . NNP NN NNS VBP PRP VBP VBN CD NNS TO JJ JJ NNS . But American retailers argue that sharp limits on low-cost imports could cost U.S. consumers $ 6 billion in higher clothing bills annually . CC JJ NNS VBP IN JJ NNS IN JJ NNS MD VB NNP NNS $ CD CD IN JJR NN NNS RB . That works out to about $ 20 a person in the United States . DT VBZ RP TO IN $ CD DT NN IN DT NNP NNPS . No breakthroughs were reported during talks in Luxembourg Sunday aimed at ending a stalemate blocking European Union membership negotiations with Turkey . DT NNS VBD VBN IN NNS IN NNP NNP VBN IN VBG DT NN VBG NNP NNP NN NNS IN NNP . EU foreign ministers , meeting in emergency session in Luxembourg , are expected to meet again Monday -- the same day the long-awaited negotiations with Turkey were supposed to begin . NNP JJ NNS , NN IN NN NN IN NNP , VBP VBN TO VB RB NNP IN DT JJ NN DT JJ NNS IN NNP VBD VBN TO VB . Diplomats reported some progress during Sunday 's talks , and are holding out hopes for a breakthrough . NNS VBD DT NN IN NNP POS NNS , CC VBP VBG RP NNS IN DT NN . Austria is demanding that negotiations with Turkey include the possibility of offering Ankara less than full EU membership . NNP VBZ VBG IN NNS IN NNP VBP DT NN IN VBG NNP JJR IN JJ NNP NN . Turkey has said it would not accept a so called ' privileged partnership . ' NNP VBZ VBN PRP MD RB VB DT RB VBN `` JJ NN . `` Iran says it has no intention of abandoning plans to resume sensitive nuclear work , as the European Union warns that such a move could spark an international crisis . NNP VBZ PRP VBZ DT NN IN VBG NNS TO VB JJ JJ NN , IN DT NNP NNP VBZ IN PDT DT NN MD VB DT JJ NN . The foreign ministers of Britain , France and Germany Tuesday signed a joint letter warning Iran against resuming activity at its Isfahan nuclear facility . DT JJ NNS IN NNP , NNP CC NNP NNP VBD DT JJ NN VBG NNP IN VBG NN IN PRP$ NNP JJ NN . The letter threatens other unspecified courses of action if Tehran does not adhere to past commitments with the European Union . DT NN VBZ JJ JJ NNS IN NN IN NNP VBZ RB VB TO JJ NNS IN DT NNP NNP . The United States says it agrees with European officials that Tehran must maintain its suspension on uranium enrichment activities . DT NNP NNPS VBZ PRP VBZ IN JJ NNS IN NNP MD VB PRP$ NN IN NN NN NNS . A State Department spokesman Tom Casey says if Iran were to break its commitments with the European Union , U.S. officials would refer the situation to the United Nations Security Council and the U.N. International Atomic Energy Agency . DT NNP NNP NN NNP NNP VBZ IN NNP VBD TO VB PRP$ NNS IN DT NNP NNP , NNP NNS MD VB DT NN TO DT NNP NNP NNP NNP CC DT NNP NNP NNP NNP NNP . Iranian officials say their plan to resume nuclear work is not reversible . JJ NNS VBP PRP$ NN TO VB JJ NN VBZ RB JJ . Afghan officials say five policemen have been killed in two separate attacks . JJ NNS VBP CD NNS VBP VBN VBN IN CD JJ NNS . Authorities say three officers were killed by a roadside bomb in Ghazni province . NNS VBP CD NNS VBD VBN IN DT NN NN IN NNP NN . Two other policemen were killed during a militant attack in the western province of Ghor . CD JJ NNS VBD VBN IN DT JJ NN IN DT JJ NN IN NNP . Three rebels were also killed in that incident . CD NNS VBD RB VBN IN DT NN . On Sunday , the British military said three British soldiers were killed in a suicide attack in Afghanistan 's restive Helmand province . IN NNP , DT JJ NN VBD CD JJ NNS VBD VBN IN DT NN NN IN NNP POS JJ NNP NN . The incident brings to 100 the number of British military personnel killed in Afghanistan since 2001 . DT NN VBZ TO CD DT NN IN JJ JJ NNS VBN IN NNP IN CD . British Prime Minister Gordon Brown Monday paid tribute to those troops , saying they have paid the ultimate price to help ' turn a lawless region sheltering terrorists into an emerging democracy . NNP NNP NNP NNP NNP NNP VBD NN TO DT NNS , VBG PRP VBP VBN DT JJ NN TO VB `` VB DT JJ NN VBG NNS IN DT VBG NN . On Sunday , an Afghan reporter working for the British Broadcasting Corporation was found dead in Helmand province , one day after he was abducted . IN NNP , DT JJ NN VBG IN DT NNP NNP NNP VBD VBN JJ IN NNP NN , CD NN IN PRP VBD VBN . U.S. Secretary of State-designate Condoleezza Rice is resting , after successful , minimally invasive surgery . NNP NNP IN NNP NNP NNP VBZ VBG , IN JJ , RB JJ NN . A senior administration official told VOA Dr. Rice underwent a one-and-a-half hour uterine fibroid embolization operation at a Washington hospital Friday . DT JJ NN NN VBD NNP NNP NNP VBD DT JJ NN JJ JJ NN NN IN DT NNP NN NNP . The operation , an alternative to hysterectomy , shrinks fibroid tumors and allows for a rapid recovery . DT NN , DT NN TO NN , VBZ JJ NNS CC VBZ IN DT JJ NN . Uterine fibroids are among the most common tumors in women , and are not cancerous . NNP NNS VBP IN DT RBS JJ NNS IN NNS , CC VBP RB JJ . The administration official said Dr. Rice will stay in the hospital overnight , and return to work Monday . DT NN NN VBD NNP NNP MD VB IN DT NN JJ , CC VBZ IN NN NNP . Currently the national security adviser , she was nominated by President Bush on Tuesday to head the State Department . RB DT JJ NN NN , PRP VBD VBN IN NNP NNP IN NNP TO VB DT NNP NNP . A trade delegation led by Nebraska Governor Dave Heineman has signed agreements to sell nearly $ 30 million worth of food to Cuba . DT NN NN VBN IN NNP NNP NNP NNP VBZ VBN NNS TO VB RB $ CD CD NN IN NN TO NNP . The delegation signed the deal Tuesday in Havana with Cuba 's food importing company , Alimport . DT NN VBD DT NN NNP IN NNP IN NNP POS NN VBG NN , NNP . Nebraska farmers agreed to sell wheat , beans and soy products to the Cubans . NNP NNS VBD TO VB NN , NNS CC NN NNS TO DT NNS . The signing took place during Havana 's annual trade fair . DT NN VBD NN IN NNP POS JJ NN NN . Governor Heineman said it is a big boost for farmers in his state to find a new market . NNP NNP VBD PRP VBZ DT JJ NN IN NNS IN PRP$ NN TO VB DT JJ NN . Cuba has been under a U.S. trade embargo for more than four decades , but a law passed by the U.S. Congress in 2000 allows American food to be sold directly to Cuba on a cash basis . NNP VBZ VBN IN DT NNP NN NN IN JJR IN CD NNS , CC DT NN VBN IN DT NNP NNP IN CD VBZ JJ NN TO VB VBN RB TO NNP IN DT NN NN . Police in southern Pakistan say a powerful bomb ripped through an Islamic school Monday , killing six students and wounding at least four others . NNS IN JJ NNP VBP DT JJ NN VBD IN DT JJ NN NNP , VBG CD NNS CC VBG IN JJS CD NNS . Authorities said the bomb exploded in a madrassa in southwestern Qilla Saifullah , a town near the Afghan border in the province of Baluchistan . NNS VBD DT NN VBD IN DT NN IN JJ NNP NNP , DT NN IN DT JJ NN IN DT NN IN NNP . Investigators said the bomb was concealed in the belongings of an Afghan student who stayed in the school overnight . NNS VBD DT NN VBD VBN IN DT NNS IN DT JJ NN WP VBD IN DT NN RB . Officials said it exploded after the person had left . NNS VBD PRP VBD IN DT NN VBD VBN . There was no immediate claim of responsibility for the blast . EX VBD DT JJ NN IN NN IN DT NN . Some Pakistani madrassas are seen as breeding grounds for militants fighting foreign forces in Afghanistan and opposed to Pakistani support for U.S. efforts against terrorism . DT JJ NNS VBP VBN IN NN NNS IN NNS VBG JJ NNS IN NNP CC VBN TO JJ NN IN NNP NNS IN NN . Police said it was unclear if the explosion was linked to either conflict . NNP VBD PRP VBD JJ IN DT NN VBD VBN TO DT NN . Iran 's supreme leader has dismissed President Bush 's charges against Tehran , saying Mr. Bush , like four American presidents before him , will fail in his efforts to uproot Iran 's ruling Islamic establishment . NNP POS JJ NN VBZ VBN NNP NNP POS NNS IN NNP , VBG NNP NNP , IN CD JJ NNS IN PRP , MD VB IN PRP$ NNS TO VB NNP POS NN JJ NN . Ayatollah Ali Khamenei told students in Tehran Thursday that Iran 's stance has convinced other Islamic countries that it is possible to , in his words , ' confront global arrogance and win . ' NNP NNP NNP VBD NNS IN NNP NNP IN NNP POS NN VBZ VBN JJ JJ NNS IN PRP VBZ JJ TO , IN PRP$ NNS , `` VB JJ NN CC VB . `` In his State of the Union address Wednesday night , President Bush accused Iran of being the world 's primary state sponsor of terror and of pursuing nuclear weapons . IN PRP$ NN IN DT NNP NN NNP NN , NNP NNP VBD NNP IN VBG DT NN POS JJ NN NN IN NN CC IN VBG JJ NNS . He also said the United States stands with the Iranian people as they seek liberty . PRP RB VBD DT NNP NNPS VBZ IN DT JJ NNS IN PRP VBP NN . Iran 's foreign ministry spokesman called the charges ' baseless ' and said they show Mr. Bush is ignoring what he called Iran 's ' deep-rooted freedom and democracy . ' NNP POS JJ NN NN VBD DT NNS `` JJ `` CC VBD PRP VBP NNP NNP VBZ VBG WP PRP VBD NNP POS `` JJ NN CC NN . `` A roadside bomb , a Taleban assault on a police station , and an air strike by U.S.-led forces in Afghanistan have killed at least 13 people . DT NN NN , DT NNP NN IN DT NN NN , CC DT NN NN IN JJ NNS IN NNP VBP VBN IN JJS CD NNS . Four Afghan soldiers died in a roadside bomb blast as they took part in a joint operation with U.S. forces against insurgents in Kunar province on Tuesday . CD JJ NNS VBD IN DT NN NN NN IN PRP VBD NN IN DT JJ NN IN NNP NNS IN NNS IN NNP NN IN NNP . Also Tuesday , two rockets hit central Kabul , injuring three people . RB NNP , CD NNS VBD JJ NNP , VBG CD NNS . There was no claim of responsibility . EX VBD DT NN IN NN . A day earlier , an airstrike by U.S.-led forces in the Lashkar Gah district of Helmand province killed three suspected Taleban . DT NN RB , DT NN IN JJ NNS IN DT NNP NNP NN IN NNP NN VBD CD JJ NNP . In another clash , five rebels and one policeman were killed in a gun battle when Taleban insurgents attacked a police checkpoint in Kandahar province . IN DT NN , CD NNS CC CD NN VBD VBN IN DT NN NN WRB NNP NNS VBD DT NN NN IN NNP NN . The number of Americans getting long-term unemployment aid hit another record high last week . DT NN IN NNS VBG JJ NN NN VBD DT NN NN JJ NN . Thursday 's report from the Labor Department shows more than 5.8 million people collecting jobless compensation for more than one week . NNP POS NN IN DT NNP NNP VBZ JJR IN CD CD NNS VBG JJ NN IN JJR IN CD NN . It is the 11th week in a row continuing claims have hit a record high , and it is a sign that the U.S. labor market remains weak . PRP VBZ DT JJ NN IN DT NN VBG NNS VBP VBN DT NN NN , CC PRP VBZ DT NN IN DT NNP NN NN VBZ JJ . The number of new claims fell slightly by 20,000 to a total of 6,54,000 . DT NN IN JJ NNS VBD RB IN CD TO DT NN IN CD . A separate report showed the U.S. trade deficit fell to its lowest level in at least nine years in February . DT JJ NN VBD DT NNP NN NN VBD TO PRP$ JJS NN IN IN JJS CD NNS IN NNP . The Commerce Department data show the gap between what Americans sell abroad and what they buy from foreigners narrowed by 28 percent for the month . DT NNP NNP NNS VBP DT NN IN WP NNS VBP RB CC WP PRP VBP IN NNS VBN IN CD NN IN DT NN . The trade deficit shrank to $ 26 billion in February as the faltering economy pushed imports down , while U.S. exports recovered slightly from a two-year low . DT NN NN VBD TO $ CD CD IN NNP IN DT VBG NN VBD NNS RB , IN NNP NNS VBD RB IN DT JJ NN . Foxy Brown is a wanted woman ... again . NNP NNP VBZ DT JJ NN : RB . Police in Fort Lauderdale , Florida have issued an arrest warrant for the 27-year-old rapper , after she failed to appear in court on charges of battery and resisting arrest without violence . NNS IN NNP NNP , NNP VBP VBN DT NN NN IN DT JJ NN , IN PRP VBD TO VB IN NN IN NNS IN NN CC VBG NN IN NN . Foxy Brown - real name Inga Marchand - scuffled last month with employees of a Fort Lauderdale beauty supply store . NNP NNP IN JJ NN NNP NNP : VBD JJ NN IN NNS IN DT NNP NNP NN NN NN . She also struggled with a responding police officer . PRP RB VBD IN DT VBG NN NN . This is n't Foxy Brown 's first run-in with the law : her legal troubles stretch back to a 1997 incident in which she received 80 hours of community service after spitting on two hotel workers in North Carolina . DT VBZ RB NNP NNP POS JJ NN IN DT NN IN PRP$ JJ NNS VB RB TO DT CD NN IN WDT PRP VBD CD NNS IN NN NN IN VBG IN CD NN NNS IN NNP NNP . Last October , she was sentenced to three years ' probation and anger management counseling , following a 2004 attack on two manicurists in New York City . JJ NNP , PRP VBD VBN TO CD NNS POS NN CC NN NN NN , VBG DT CD NN IN CD NNS IN NNP NNP NNP . Israel has re-opened the border crossing between the Gaza Strip and Egypt , that had been closed for several weeks . NNP VBZ VBN DT NN VBG IN DT NNP NNP CC NNP , WDT VBD VBN VBN IN JJ NNS . The Rafah crossing , which is the main exit and entrance point for Gaza Palestinians traveling abroad , was closed after a militant attack on a nearby Israeli army post in December , that killed five Israeli soldiers . DT NN VBG , WDT VBZ DT JJ NN CC NN NN IN NNP NNS VBG RB , VBD VBN IN DT JJ NN IN DT JJ JJ NN NN IN NNP , WDT VBD CD JJ NNS . Meanwhile , top Israeli and Palestinian security officials met to discuss a plan for Israel to hand over security control of several West Bank towns to the Palestinian Authority . RB , JJ JJ CC JJ NN NNS VBD TO VB DT NN IN NNP TO VB IN NN NN IN JJ NNP NNP NNS TO DT JJ NNP . But there was no immediate announcement of an agreement after the talks ended early Tuesday . CC EX VBD DT JJ NN IN DT NN IN DT NNS VBD JJ NNP . The meeting came hours after Palestinians say Israeli military gunfire killed a schoolgirl in the Gaza Strip . DT NN VBD NNS IN NNS VBP JJ JJ NN VBD DT NN IN DT NNP NNP . Palestinian militants retaliated by firing mortars at a nearby Jewish settlement . JJ NNS VBN IN VBG NNS IN DT JJ JJ NN . But there were no reports of injuries . CC EX VBD DT NNS IN NNS . Chinese leaders have completed an annual economic meeting with pledges to maintain stable fiscal policies to keep their rapidly-growing economy under control . JJ NNS VBP VBN DT JJ JJ NN IN NNS TO VB JJ JJ NNS TO VB PRP$ JJ NN IN NN . State media reported Sunday that Communist Party officials plan to tighten controls on fixed-asset investments , such as real estate , and try to increase agricultural output in the coming years . NNP NNS VBD NNP IN NNP NNP NNS VBP TO VB NNS IN JJ NNS , JJ IN JJ NN , CC VB TO VB JJ NN IN DT JJ NNS . They are concerned that without proper management , China 's fast-growing economy could suddenly collapse . PRP VBP VBN IN IN JJ NN , NNP POS JJ NN MD RB VB . The report did not mention any changes in the fixed exchange rate for China 's currency , the yuan . DT NN VBD RB VB DT NNS IN DT JJ NN NN IN NNP POS NN , DT NN . The United States has been pressuring China to lift controls on the exchange rate , saying it gives Chinese goods an unfair advantage in world markets . DT NNP NNPS VBZ VBN VBG NNP TO VB NNS IN DT NN NN , VBG PRP VBZ JJ NNS DT JJ NN IN NN NNS . Beijing has promised to change the policy but has not said when it will do so . NNP VBZ VBN TO VB DT NN CC VBZ RB VBN WRB PRP MD VB RB . U.S. Vice President Joe Biden says U.S.-led forces in Afghanistan are making what he called ' measurable progress ' against al-Qaida , as the United States increases its military presence there . NNP NNP NNP NNP NNP VBZ JJ NNS IN NNP VBP VBG WP PRP VBD `` JJ NN `` IN NNP , IN DT NNP NNPS VBZ PRP$ JJ NN RB . Speaking in the midwestern American city of Indianapolis Monday , Biden said international troops must deny al-Qaida safe haven and reverse the momentum of the Taliban . VBG IN DT JJ JJ NN IN NNP NNP , NNP VBD JJ NNS MD VB NNP JJ NN CC VB DT NN IN DT NNP . The vice president said the latest phase is ' only beginning ' and promised the situation in Afghanistan will be reassessed in December . DT NN NN VBD DT JJS NN VBZ `` RB VBG `` CC VBD DT NN IN NNP MD VB VBN IN NNP . Meanwhile , the International Security Assistance Force in Afghanistan says four troops were killed in separate incidents in the country Monday . RB , DT NNP NNP NNP NNP IN NNP VBZ CD NNS VBD VBN IN JJ NNS IN DT NN NNP . One of the soldiers was Hungarian and two were French . CD IN DT NNS VBD JJ CC CD VBD JJ . The Associated Press reports the other soldier was American . DT NNP NNP VBZ DT JJ NN VBD JJ . Two soldiers died in an attack by insurgents in eastern Afghanistan , while the other two casualties resulted from roadside bomb blasts elsewhere . CD NNS VBD IN DT NN IN NNS IN JJ NNP , IN DT JJ CD NNS VBD IN NN NN NNS RB . Poland 's parliament has overwhelmingly passed a bill approving ratification of the new European Union treaty after weeks of political infighting . NNP POS NN VBZ RB VBN DT NN VBG NN IN DT JJ NNP NNP NN IN NNS IN JJ NN . Lawmakers in the lower house voted 384 to 56 Tuesday to adopt the charter , which replaces the much-maligned EU constitution rejected by French and Dutch voters in 2005 . NNS IN DT JJR NN VBD CD TO CD NNP TO VB DT NN , WDT VBZ DT JJ NNP NN VBN IN JJ CC JJ NNS IN CD . Poland 's upper house is expected to pass the bill Wednesday and President Lech Kaczynski is expected to sign it . NNP POS JJ NN VBZ VBN TO VB DT NN NNP CC NNP NNP NNP VBZ VBN TO VB PRP . The approval follows weeks of wrangling between Poland 's pro-European government and the nationalist opposition , which argued the EU Treaty will limit Polish sovereignty . DT NN VBZ NNS IN NN IN NNP POS JJ NN CC DT NN NN , WDT VBD DT NNP NNP MD VB JJ NN . To resolve the dispute , lawmakers adopted a separate resolution saying the Polish constitution has supremacy over the EU charter . TO VB DT NN , NNS VBD DT JJ NN VBG DT JJ NN VBZ NN IN DT NNP NN . The EU Treaty requires the approval of all 27 member countries . DT NNP NNP VBZ DT NN IN DT CD NN NNS . France , Hungary , Slovenia , Malta and Romania have already ratified the treaty , which is designed to streamline decision-making and unify the bloc 's foreign policy objectives . NNP , NNP , NNP , NNP CC NNP VBP RB VBN DT NN , WDT VBZ VBN TO VB NN CC VB DT NN POS JJ NN NNS . The United Farm Workers union has reached an agreement with a labor recruiter that would ensure better working conditions for thousands of agricultural guest workers . DT NNP NNP NNPS NN VBZ VBN DT NN IN DT NN NN WDT MD VB JJR NN NNS IN NNS IN JJ NN NNS . California-based Global Horizons is promising to pay two percent more than the federally-mandated minimum wage for guest workers . JJ JJ NNS VBZ VBG TO VB CD NN JJR IN DT JJ NN NN IN NN NNS . The company also will provide medical care and paid bereavement leave if a family member dies , including transportation to and from their native country . DT NN RB MD VB JJ NN CC VBD NN NN IN DT NN NN VBZ , VBG NN TO CC IN PRP$ JJ NN . Global Horizons brings in workers from dozens of nations each year under the federal government 's ( H-2A ) agricultural guest worker program . NNP NNP VBZ IN NNS IN NNS IN NNS DT NN IN DT JJ NN POS LRB NNP RRB JJ NN NN NN . Officials in the western state of Washington revoked the company 's operating license in December over numerous labor violations involving hundreds of workers from Thailand . NNS IN DT JJ NN IN NNP VBN DT NN POS NN NN IN NNP IN JJ NN NNS VBG NNS IN NNS IN NNP . Iraqi police say a car bomb detonated by remote control has killed five people and injured 10 south of Baghdad . JJ NNS VBP DT NN NN VBN IN JJ NN VBZ VBN CD NNS CC JJ CD NN IN NNP . Officials say the vehicle blew up on the roadside as an Iraqi police patrol passed by near the town of Haswa . NNS VBP DT NN VBD RP IN DT NN IN DT JJ NN NN VBN IN IN DT NN IN NNP . Meanwhile , a bodyguard of Iraq 's Deputy Prime Minister Ahmad Chalabi was killed and three others wounded when gunmen ambushed their convoy south of Baghdad . RB , DT NN IN NNP POS NNP NNP NNP NNP NNP VBD VBN CC CD NNS VBD WRB NNS VBD PRP$ JJ NN IN NNP . Iraqi police say Mr. Chalabi was not in the convoy . JJ NNS VBP NNP NNP VBD RB IN DT NN . Elsewhere , the U.S. military says four U.S. soldiers were killed by a roadside bomb in southwest Baghdad late Saturday . RB , DT NNP NN VBZ CD NNP NNS VBD VBN IN DT NN NN IN JJ NNP JJ NNP . And the military reports killing 11 insurgents during a battle near the northwestern town of Haditha . CC DT NN VBP VBG CD NNS IN DT NN IN DT JJ NN IN NNP . Witnesses in Somalia 's capital say at least 11 people have been killed and 15 others wounded in fighting between rival militia groups . NNS IN NNP POS NN VBP IN JJS CD NNS VBP VBN VBN CC CD NNS VBN IN VBG IN JJ NN NNS . The fighting broke out in the Sii-Sii area of Mogadishu Sunday when gunmen linked to an alliance of warlords , the Alliance for Restoration of Peace and Counter Terrorism , opened fire on a vehicle belonging to forces loyal to the country 's Islamic courts . DT NN VBD RP IN DT JJ NN IN NNP NNP WRB NNS VBN TO DT NN IN NNS , DT NNP IN NNP IN NNP CC NNP NNP , VBD NN IN DT NN VBG TO NNS JJ TO DT NN POS JJ NNS . Clashes between the same groups have killed at least 90 people since March . NNS IN DT JJ NNS VBP VBN IN JJS CD NNS IN NNP . Many Somalis suspect the coalition of warlords is supported by the U.S. government as part of its campaign to end terrorism . JJ NNS VBP DT NN IN NNS VBZ VBN IN DT NNP NN IN NN IN PRP$ NN TO VB NN . The U.S. State Department has said it supports the alliance 's objective of rooting out terrorists , but declined further comment . DT NNP NNP NNP VBZ VBN PRP VBZ DT NN POS NN IN VBG RP NNS , CC VBD JJ NN . Somalia has been without an effective central government since 1991 , when clan-based factions ousted President Siad Barre . NNP VBZ VBN IN DT JJ JJ NN IN CD , WRB JJ NNS VBD NNP NNP NNP . A transitional government was formed last year but many factional leaders oppose it . DT JJ NN VBD VBN JJ NN CC JJ JJ NNS VBP PRP . Pakistan 's president says peace with India regarding the disputed region of Kashmir is ' within reach . ' NNP POS NN VBZ NN IN NNP VBG DT JJ NN IN NNP VBZ `` IN NN . `` Addressing European lawmakers in Brussels Tuesday , President Pervez Musharraf said it is important to resolve the issue through peaceful dialogue . VBG JJ NNS IN NNP NNP , NNP NNP NNP VBD PRP VBZ JJ TO VB DT NN IN JJ NN . He said , however , Pakistan will not change its stance unless India shows flexibility in regard to the disputed Himalayan area . PRP VBD , RB , NNP MD RB VB PRP$ NN IN NNP VBZ NN IN NN TO DT JJ NNP NN . Both of the nuclear-armed nations claim Kashmir as their own . DT IN DT JJ NNS VBP NNP IN PRP$ NN . They have fought two wars over the region . PRP VBP VBN CD NNS IN DT NN . Mr. Musharraf is expected to meet with Indian Prime Minister Manmohan Singh on the sidelines of this week 's summit of the Non-Aligned Movement in Cuba . NNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP NNP IN DT NNS IN DT NN POS NN IN DT JJ NN IN NNP . After the summit , the Pakistan president will attend the U.N. General Assembly in New York before traveling to Washington for talks with President Bush . IN DT NN , DT NNP NN MD VB DT NNP NNP NNP IN NNP NNP IN VBG TO NNP IN NNS IN NNP NNP . Accidents in three mines in China have killed at least 30 people and left 13 miners trapped . NNS IN CD NNS IN NNP VBP VBN IN JJS CD NNS CC VBD CD NNS VBN . The official Xinhua news agency says all 28 workers in a mine in northwestern Shaanxi province died when an underground cable caught fire on Saturday night . DT JJ NNP NN NN VBZ DT CD NNS IN DT NN IN JJ NNP NN VBD WRB DT NN NN VBD NN IN NNP NN . The report also said rescuers had retrieved the remains of five of the miners early Sunday . DT NN RB VBD NNS VBD VBN DT NNS IN CD IN DT NNS JJ NNP . In a separate incident , Xinhua says an explosion in a coal mining area in Hunan province killed two people on Sunday . IN DT JJ NN , NNP VBZ DT NN IN DT NN NN NN IN NNP NN VBD CD NNS IN NNP . Thirteen workers were reported trapped underground after a coal mine flooded in northwestern Gansu province . CD NNS VBD VBN JJ NN IN DT NN NN VBN IN JJ NNP NN . Xinhua says three others were lifted out of the facility in Jib city Sunday . NNP VBZ CD NNS VBD VBN IN IN DT NN IN NNP NN NNP . China has the world 's worst mine safety record , with more than 2,600 coal miners killed last year in accidents and explosions . NNP VBZ DT NN POS JJS NN NN NN , IN JJR IN CD NN NNS VBN JJ NN IN NNS CC NNS . Polish officials say they will not admit a research team Iran reportedly plans to send to Auschwitz , the notorious World War II Nazi death camp . JJ NNS VBP PRP MD RB VB DT NN NN NNP RB VBZ TO VB TO NNP , DT JJ NNP NNP NNP NNP NN NN . Polish Foreign Minister Stefan Mellar said his country should stop Iran from investigating the scale of the Holocaust , which Iranian President Mahmoud Ahmadinejad has dismissed as a myth . JJ JJ NN NNP NNP VBD PRP$ NN MD VB NNP IN VBG DT NN IN DT NNP , WDT JJ NNP NNP NNP VBZ VBN IN DT NN . The manager of the Auschwitz museum said Friday that deniers of the Holocaust profane the memory of its victims and will not be admitted . DT NN IN DT NNP NN VBD NNP IN NNS IN DT NNP VBP DT NN IN PRP$ NNS CC MD RB VB VBN . Most estimates put the number of deaths at Auschwitz alone at more than one million , mostly Jews . JJS NNS VBD DT NN IN NNS IN NNP RB IN JJR IN CD CD , RB NNPS . Earlier this week , Iran 's ambassador to Portugal said he doubts the number of victims of the Holocaust , usually estimated at about six million . RBR DT NN , NNP POS NN TO NNP VBD PRP VBZ DT NN IN NNS IN DT NNP , RB VBN IN IN CD CD . He said that , based on what he has seen at Auschwitz , it would take about 15 years to burn that number of bodies . PRP VBD IN , VBN IN WP PRP VBZ VBN IN NNP , PRP MD VB RB CD NNS TO VB DT NN IN NNS . Gunmen in Iraq disguised as police officers have shot dead five Shi'ite elementary school teachers and their driver south of Baghdad . NNS IN NNP VBN IN NN NNS VBP VBN JJ CD NNP JJ NN NNS CC PRP$ NN NN IN NNP . Police say the victims were pulled from a mini-bus Monday as they were leaving the school near Iskandariyah . NNS VBP DT NNS VBD VBN IN DT JJ NNP IN PRP VBD VBG DT NN IN NNP . They were then forced back into a classroom , lined up against the wall and shot to death . PRP VBD RB VBN RB IN DT NN , VBN RP IN DT NN CC VBN TO NN . In Baghdad , authorities say at least 10 people were killed and at least 30 others wounded in a suicide car bombing near the oil ministry . IN NNP , NNS VBP IN JJS CD NNS VBD VBN CC IN JJS CD NNS VBD IN DT NN NN VBG IN DT NN NN . Separately , the U.S. military says three American soldiers were killed today in roadside bomb attacks . RB , DT NNP NN VBZ CD JJ NNS VBD VBN NN IN NN NN NNS . Two of the soldiers died in western Baghdad , the third was killed 80 kilometers southeast of the capital . CD IN DT NNS VBD IN JJ NNP , DT NN VBD VBN CD NNS NN IN DT NN . Meanwhile , the U.S military has released 500 detainees from Abu Ghraib prison to mark the upcoming Muslim holy month of Ramadan . RB , DT NNP NN VBZ VBN CD NNS IN NNP NNP NN TO VB DT JJ NNP JJ NN IN NNP . Officials say another 500 prisoners will be freed over the next week . NNS VBP DT CD NNS MD VB VBN IN DT JJ NN . NATO officials in Afghanistan have urged the government to plan for parliamentary elections to take place soon to ensure there are enough troops to provide security . NNP NNS IN NNP VBP VBN DT NN TO VB IN JJ NNS TO VB NN RB TO VB EX VBP JJ NNS TO VB NN . NATO 's top civilian representative for Afghanistan , Hikmet Cetin , says the elections must take place by early July or risk conflicting with the next rotation of troops in the 8,000-strong International Security Assistance Force ISAF . NNP POS JJ JJ NN IN NNP , NNP NNP , VBZ DT NNS MD VB NN IN JJ NNP CC NN NN IN DT JJ NN IN NNS IN DT JJ NNP NNP NNP NNP NNP . Mr. Cetin says if elections are not held by then , it would be better to postpone voting until September . NNP NNP VBZ IN NNS VBP RB VBN IN RB , PRP MD VB JJR TO VB NN IN NNP . Turkey took control of ISAF Sunday from a French commander during a ceremony in Kabul . NNP VBD NN IN NNP NNP IN DT JJ NN IN DT NN IN NNP . It is the second six-month command for Turkey since the force was established after the U.S.-led overthrow of the Taleban in late 2001 . PRP VBZ DT JJ JJ NN IN NNP IN DT NN VBD VBN IN DT JJ NN IN DT NNP IN JJ CD . Authorities in Zimbabwe have arrested a sixth man in a widening investigation into an alleged spy ring . NNS IN NNP VBP VBN DT JJ NN IN DT NN NN IN DT JJ NN NN . The state-run Herald newspaper reports Tuesday police arrested a senior official at the Ministry of State of National Security after he allegedly found out about the spy ring - but failed to report it . DT JJ NNP NN NNS NNP NN VBN DT JJ NN IN DT NNP IN NNP IN NNP NNP IN PRP RB VBD RP IN DT NN NN : CC VBD TO VB PRP . If convicted , he could face up to 10 years in prison . IN VBN , PRP MD VB RP TO CD NNS IN NN . Five other officials are facing charges of selling state secrets to foreign agents . CD JJ NNS VBP VBG NNS IN VBG NN NNS TO JJ NNS . One of those is Philip Chiyangwa , a lawmaker from Mashonaland West and a top official in the ruling ZANU-PF party . CD IN DT VBZ NNP NNP , DT NN IN NNP NNP CC DT JJ NN IN DT NN NNP NN . Other suspects include the country 's ambassador-designate to Mozambique , Godfrey Dzvairo , two ruling party officials , Itai Marchi and Kenny Karidza and a bank executive , Tendai Matambanadzo . JJ NNS VBP DT NN POS JJ TO NNP , NNP NNP , CD VBG NN NNS , NNP NNP CC NNP NNP CC DT NN NN , NNP NNP . The Herald reports three of the suspects are trying to switch their original plea from guilty to not guilty . DT NNP VBZ CD IN DT NNS VBP VBG TO VB PRP$ JJ NN IN JJ TO RB JJ . Afghan police say a roadside bomb has exploded in the country 's southern province of Helmand , killing four people , including two U.S. nationals . JJ NNS VBP DT NN NN VBZ VBN IN DT NN POS JJ NN IN NNP , VBG CD NNS , VBG CD NNP NNS . A provincial police official Sunday said the two Americans , along with their Afghan interpreter and an Afghan police officer , were killed while they were inspecting the bomb in the Naad Ali district . DT JJ NN NN NNP VBD DT CD NNS , IN IN PRP$ JJ NN CC DT JJ NN NN , VBD VBN IN PRP VBD VBG DT NN IN DT NNP NNP NN . A Taliban spokesman , Yousuf Ahmadi , told the French News Agency that Taliban militants carried out the attack and killed two American soldiers and several Afghan police . DT NNP NN , NNP NNP , VBD DT NNP NNP NNP IN NNP NNS VBD IN DT NN CC VBD CD JJ NNS CC JJ JJ NNS . U.S. officials have not yet confirmed the incident . NNP NNS VBP RB RB VBN DT NN . Southern Afghanistan is the center of the Taliban-led insurgency , and militants rely heavily on roadside bombs in their campaign against foreign forces . NNP NNP VBZ DT NN IN DT JJ NN , CC NNS VBP RB IN NN NNS IN PRP$ NN IN JJ NNS . The United States plans to intensify its fight against the Taliban this year by sending an extra 30,000 troops to Afghanistan . DT NNP NNPS VBZ TO VB PRP$ NN IN DT NNP DT NN IN VBG DT JJ CD NNS TO NNP . Zimbabwe 's state-run media report the government is investigating non-governmental organizations ( NGOs ) it says have failed to account for millions of dollars in donor money . NNP POS JJ NNS VBP DT NN VBZ VBG JJ NNS LRB NNP RRB PRP VBZ VB VBN TO VB IN NNS IN NNS IN NN NN . The Herald newspaper says a special commission has begun probing whether 13 NGOs handled $ 88 million in accordance with the country 's laws . DT NNP NN VBZ DT JJ NN VBZ VBN VBG IN CD NNS VBD $ CD CD IN NN IN DT NN POS NNS . The United Nations Development Program helped raise the funds following a government appeal . DT NNP NNP NNP NNP VBD VB DT NNS VBG DT NN NN . Zimbabwe 's labor minister Paul Mangwana told the paper that groups found to be in violation will be prosecuted . NNP POS NN NN NNP NNP VBD DT NN IN NNS VBN TO VB IN NN MD VB VBN . The report also says 17 other NGOs in Zimbabwe have successfully met a deadline to account for funding they received . DT NN RB VBZ CD JJ NNS IN NNP VBP RB VBN DT NN TO VB IN NN PRP VBD . It says a full report is expected within one month . PRP VBZ DT JJ NN VBZ VBN IN CD NN . A new poll shows widespread disapproval of how President Bush and Democrats in Congress are handling the war in Iraq . DT JJ NN VBZ JJ NN IN WRB NNP NNP CC NNPS IN NNP VBP VBG DT NN IN NNP . The Washington Post-ABC News survey indicates that 68 percent of the 1,125 respondents disagree with President Bush on Iraq . DT NNP NNP NNP NN VBZ IN CD NN IN DT CD NNS VBP IN NNP NNP IN NNP . A total of 63 percent disapprove of how Democrats in Congress have handled the war . DT NN IN CD NN NN IN WRB NNPS IN NNP VBP VBN DT NN . Nearly half of those polled said they believe Democrats have done ' too little ' to get President Bush to change his war strategy . RB NN IN DT VBN VBD PRP VBP NNPS VBP VBN `` RB JJ `` TO VB NNP NNP TO VB PRP$ NN NN . The nationwide poll , which was taken last week , has a 3-point margin of sampling error . DT JJ NN , WDT VBD VBN JJ NN , VBZ DT JJ NN IN VBG NN . More than half of the respondents said they support legislation that would set a deadline for withdrawing U.S. combat forces from Iraq in the first months of 2008 . JJR IN NN IN DT NNS VBD PRP VBP NN WDT MD VB DT NN IN VBG NNP NN NNS IN NNP IN DT JJ NNS IN CD . Venezuela President Hugo Chavez has threatened to detain U.S. officials if they are caught collecting sensitive information about Venezuela 's military . NNP NNP NNP NNP VBZ VBN TO VB NNP NNS IN PRP VBP VBN VBG JJ NN IN NNP POS JJ . The statement , issued Friday , came hours after Mr. Chavez 's government accused the U.S. Embassy in Caracas of involvement with a group of Venezuelan military officers accused of spying . DT NN , VBN NNP , VBD NNS IN NNP NNP POS NN VBD DT NNP NNP IN NNP IN NN IN DT NN IN JJ JJ NNS VBN IN VBG . A spokesman for the U.S. Embassy told Reuters news agency that officials there have had no official communication with Mr. Chavez 's government and could not comment . DT NN IN DT NNP NNP VBD NNP NN NN WDT NNS RB VBP VBN DT JJ NN IN NNP NNP POS NN CC MD RB VB . The military officers are accused of gathering information for the U.S. Defense Department . DT JJ NNS VBP VBN IN VBG NN IN DT NNP NNP NNP . Venezuela says some of the officers have been detained and others have left the country . NNP VBZ DT IN DT NNS VBP VBN VBN CC NNS VBP VBN DT NN . Relations between the two countries have been strained since Mr. Chavez took office in 1999 . NNP IN DT CD NNS VBP VBN VBN IN NNP NNP VBD NN IN CD . The U.S. recently opposed Venezuela 's acquisition of military transport and maritime surveillance aircraft , saying it threatened regional stability . DT NNP RB VBD NNP POS NN IN JJ NN CC NN NN NN , VBG PRP VBD JJ NN . The Russian Prosecutor General 's office is expected to carry out tests in Chechnya Wednesday to confirm Chechen Separatist leader Aslan Maskhadov 's reported death . DT JJ NNP NNP POS NN VBZ VBN TO VB RP NNS IN NNP NNP TO VB JJ NNP NN NNP NNP POS VBN NN . Russia 's Prosecutor General says forensic tests due Wednesday on the body of a man shown on Russian television in a pool of blood could confirm whether it it is that of Mr. Maskhadov . NNP POS NNP NNP VBZ JJ NNS JJ NNP IN DT NN IN DT NN VBN IN JJ NN IN DT NN IN NN MD VB IN PRP PRP VBZ IN IN NNP NNP . Russian President Vladimir Putin has said if the wanted fugitive 's death is confirmed , those who participated in the Special Forces operation in which Mr. Maskhadov was reportedly killed will be decorated with medals . JJ NNP NNP NNP VBZ VBN IN DT JJ NN POS NN VBZ VBN , DT WP VBD IN DT JJ NNS NN IN WDT NNP NNP VBD RB VBN MD VB VBN IN NNS . In a statement broadcast on Russian television , President Putin also said that much more work needs to be done to stabilize Chechnya . IN DT NN NN IN JJ NN , NNP NNP RB VBD IN RB JJR NN VBZ TO VB VBN TO VB NNP . Russian officials have blamed Mr. Maskhadov for numerous terrorist attacks from last year 's Beslan school massacre to the Dubrovka theater hostage crisis . JJ NNS VBP VBN NNP NNP IN JJ JJ NNS IN JJ NN POS NNP NN NN TO DT NNP NN NN NN . Russia had offered a $ 10 million reward for information that would lead to Mr. Maskhadov 's capture . NNP VBD VBN DT $ CD CD NN IN NN WDT MD VB TO NNP NNP POS NN . Meridian National Corp. said it sold 7,50,000 shares of its common stock to the McAlpine family interests , for $ 1 million , or $ 1.35 a share . NNP NNP NNP VBD PRP VBD CD NNS IN PRP$ JJ NN TO DT NNP NN NNS , IN $ CD CD , CC $ CD DT NN . The sale represents 10.2 % of Meridian 's shares outstanding . DT NN VBZ CD NN IN NNP POS NNS JJ . The McAlpine family , which operates a number of multinational companies , including a London-based engineering and construction company , also lent to Meridian National $ 5,00,000 . DT NNP NN , WDT VBZ DT NN IN JJ NNS , VBG DT JJ NN CC NN NN , RB VBD TO NNP NNP $ CD . That amount is convertible into shares of Meridian common stock at $ 2 a share during its one-year term . DT NN VBZ JJ IN NNS IN NNP JJ NN IN $ CD DT NN IN PRP$ JJ NN . The loan may be extended by the McAlpine group for an additional year with an increase in the conversion price to $ 2.5 a share . DT NN MD VB VBN IN DT NNP NN IN DT JJ NN IN DT NN IN DT NN NN TO $ CD DT NN . The sale of shares to the McAlpine family along with the recent sale of 7,50,000 shares of Meridian stock to Haden MacLellan Holding PLC of Surrey , England and a recent public offering have increased Meridian 's net worth to $ 8.5 million , said William Feniger , chief executive officer of Toledo , Ohio-based Meridian . DT NN IN NNS TO DT NNP NN IN IN DT JJ NN IN CD NNS IN NNP NN TO NNP NNP NNP NNP IN NNP , NNP CC DT JJ JJ NN VBP VBN NNP POS JJ NN TO $ CD CD , VBD NNP NNP , JJ JJ NN IN NNP , JJ NNP . Albania declared its independence from the Ottoman Empire in 1912 , but was conquered by Italy in 1939 . NNP VBD PRP$ NN IN DT NNP NNP IN CD , CC VBD VBN IN NNP IN CD . Communist partisans took over the country in 1944 . JJ NNS VBD RP DT NN IN CD . Albania allied itself first with the USSR ( until 1960 ) , and then with China ( to 1978 ) . NNP VBD PRP RB IN DT NNP LRB IN CD RRB , CC RB IN NNP LRB TO CD RRB . In the early 1990s , Albania ended 46 years of xenophobic Communist rule and established a multiparty democracy . IN DT JJ NNS , NNP VBD CD NNS IN JJ JJ NN CC VBD DT JJ NN . The transition has proven challenging as successive governments have tried to deal with high unemployment , widespread corruption , a dilapidated physical infrastructure , powerful organized crime networks , and combative political opponents . DT NN VBZ VBN JJ IN JJ NNS VBP VBN TO VB IN JJ NN , JJ NN , DT JJ JJ NN , JJ JJ NN NNS , CC JJ JJ NNS . Albania has made progress in its democratic development since first holding multiparty elections in 1991 , but deficiencies remain . NNP VBZ VBN NN IN PRP$ JJ NN IN RB VBG JJ NNS IN CD , CC NNS VBP . International observers judged elections to be largely free and fair since the restoration of political stability following the collapse of pyramid schemes in 1997 ; however , there have been claims of electoral fraud in every one of Albania 's post-communist elections . JJ NNS VBN NNS TO VB RB JJ CC JJ IN DT NN IN JJ NN VBG DT NN IN JJ NNS IN CD ; RB , EX VBP VBN NNS IN JJ NN IN DT CD IN NNP POS JJ NNS . The 2009 general elections resulted in no single party gaining a majority of the 140 seats in Parliament , and the Movement for Socialist Integration ( LSI ) and the Democratic Party ( DP ) combined to form a coalition government , the first such in Albania 's history . DT CD JJ NNS VBD IN DT JJ NN VBG DT NN IN DT CD NNS IN NNP , CC DT NN IN NNP NNP LRB NNP RRB CC DT NNP NNP LRB NNP RRB VBN TO VB DT NN NN , DT JJ JJ IN NNP POS NN . The Socialist Party ( SP ) has , in effect , boycotted Parliament since it convened in September 2009 and has called for investigations into alleged electoral fraud in the June 2009 elections . DT NNP NNP LRB NNP RRB VBZ , IN NN , VBN NNP IN PRP VBD IN NNP CD CC VBZ VBN IN NNS IN JJ JJ NN IN DT NNP CD NNS . Albania joined NATO in April 2009 and is a potential candidate for EU accession . NNP VBD NNP IN NNP CD CC VBZ DT JJ NN IN NNP NN . Although Albania 's economy continues to grow , the country is still one of the poorest in Europe , hampered by a large informal economy and an inadequate energy and transportation infrastructure . IN NNP POS NN VBZ TO VB , DT NN VBZ RB CD IN DT JJS IN NNP , VBN IN DT JJ JJ NN CC DT JJ NN CC NN NN . The principalities of Wallachia and Moldavia - for centuries under the suzerainty of the Turkish Ottoman Empire - secured their autonomy in 1856 ; they were de~facto linked in 1859 and formally united in 1862 under the new name of Romania . DT NNS IN NNP CC NNP : IN NNS IN DT NN IN DT JJ NNP NNP : VBD PRP$ NN IN CD ; PRP VBD RB VBN IN CD CC RB VBN IN CD IN DT JJ NN IN NNP . The country gained recognition of its independence in 1878 . DT NN VBD NN IN PRP$ NN IN CD . It joined the Allied Powers in World War I and acquired new territories - most notably Transylvania - following the conflict . PRP VBD DT NNP NNP IN NNP NNP NNP CC VBD JJ NNS : RBS RB NNP : VBG DT NN . In 1940 , Romania allied with the Axis powers and participated in the 1941 German invasion of the USSR . IN CD , NNP VBD IN DT NNP NNS CC VBD IN DT CD JJ NN IN DT NNP . Three years later , overrun by the Soviets , Romania signed an armistice . CD NNS RB , VBN IN DT NNS , NNP VBD DT NN . The post-war Soviet occupation led to the formation of a Communist ' people 's republic ' in 1947 and the abdication of the king . DT JJ JJ NN VBD TO DT NN IN DT JJ `` NNS POS NN `` IN CD CC DT NN IN DT NN . The decades-long rule of dictator Nicolae CEAUSESCU , who took power in 1965 , and his Securitate police state became increasingly oppressive and draconian through the 1980s . DT JJ NN IN NN NNP NNP , WP VBD NN IN CD , CC PRP$ JJ NNS NN VBD RB JJ CC JJ IN DT NNS . CEAUSESCU was overthrown and executed in late 1989 . NNP VBD VBN CC VBN IN JJ CD . Former Communists dominated the government until 1996 when they were swept from power . JJ NNPS VBD DT NN IN CD WRB PRP VBD VBN IN NN . Romania joined NATO in 2004 and the EU in 2007 . NNP VBD NNP IN CD CC DT NNP IN CD . This small , poor island economy has become increasingly dependent on cocoa since independence in 1975 . DT JJ , JJ NN NN VBZ VBN RB JJ IN NN IN NN IN CD . Cocoa production has substantially declined in recent years because of drought and mismanagement . NNP NN VBZ RB VBN IN JJ NNS IN IN NN CC NN . Sao Tome and Principe has to import all fuels , most manufactured goods , consumer goods , and a substantial amount of food . NNP NNP CC NNP VBZ TO VB DT NNS , JJS JJ NNS , NN NNS , CC DT JJ NN IN NN . Over the years , it has had difficulty servicing its external debt and has relied heavily on concessional aid and debt rescheduling . IN DT NNS , PRP VBZ VBN NN VBG PRP$ JJ NN CC VBZ VBN RB IN JJ NN CC NN NN . Sao Tome and Principe benefited from $ 200 million in debt relief in December 2000 under the Highly Indebted Poor Countries ( HIPC ) program , which helped bring down the country 's $ 300 million debt burden . NNP NNP CC NNP VBD IN $ CD CD IN NN NN IN NNP CD IN DT NNP NNP NNP NNPS LRB NNP RRB NN , WDT VBD VB RP DT NN POS $ CD CD NN NN . In August 2005 , the government signed on to a new 3-year IMF Poverty Reduction and Growth Facility ( PRGF ) program worth $ 4.3 million . IN NNP CD , DT NN VBD IN TO DT JJ JJ NNP NNP NNP CC NNP NNP LRB NNP RRB NN JJ $ CD CD . Considerable potential exists for development of a tourist industry , and the government has taken steps to expand facilities in recent years . JJ NN VBZ IN NN IN DT NN NN , CC DT NN VBZ VBN NNS TO VB NNS IN JJ NNS . The government also has attempted to reduce price controls and subsidies . DT NN RB VBZ VBN TO VB NN NNS CC NNS . Potential exists for the development of petroleum resources in Sao Tome and Principe 's territorial waters in the oil-rich Gulf of Guinea , which are being jointly developed in a 60-40 split with Nigeria , but any actual production is at least several years off . NNP VBZ IN DT NN IN NN NNS IN NNP NNP CC NNP POS JJ NNS IN DT JJ NNP IN NNP , WDT VBP VBG RB VBN IN DT JJ NN IN NNP , CC DT JJ NN VBZ IN JJS JJ NNS RB . The first production licenses were sold in 2004 , though a dispute over licensing with Nigeria delayed the country 's receipt of more than $ 20 million in signing bonuses for almost a year . DT JJ NN NNS VBD VBN IN CD , IN DT NN IN NN IN NNP VBD DT NN POS NN IN JJR IN $ CD CD IN NN NNS IN RB DT NN . A Central Asian country of incredible natural beauty and proud nomadic traditions , most of Kyrgyzstan was formally annexed to Russia in 1876 . DT JJ JJ NN IN JJ JJ NN CC JJ JJ NNS , JJS IN NNP VBD RB VBN TO NNP IN CD . The Kyrgyz staged a major revolt against the Tsarist Empire in 1916 in which almost one-sixth of the Kyrgyz population was killed . DT NNS VBD DT JJ NN IN DT NNP NNP IN CD IN WDT RB NN IN DT JJ NN VBD VBN . Kyrgyzstan became a Soviet republic in 1936 and achieved independence in 1991 when the USSR dissolved . NNP VBD DT JJ NN IN CD CC VBD NN IN CD WRB DT NNP VBD . Nationwide demonstrations in the spring of 2005 resulted in the ouster of President Askar AKAEV , who had run the country since 1990 . JJ NNS IN DT NN IN CD VBD IN DT NN IN NNP NNP NNP , WP VBD VBN DT NN IN CD . Subsequent presidential elections in July 2005 were won overwhelmingly by former prime minister Kurmanbek BAKIEV . JJ JJ NNS IN NNP CD VBD VBN RB IN JJ JJ NN NNP NNP . Over the next few years , the new president manipulated the parliament to accrue new powers for himself . IN DT JJ JJ NNS , DT JJ NN VBD DT NN TO VB JJ NNS IN PRP . In July 2009 , after months of harassment against his opponents and media critics , BAKIEV won re-election in a presidential campaign that the international community deemed flawed . IN NNP CD , IN NNS IN NN IN PRP$ NNS CC NNS NNS , NNP VBD NN IN DT JJ NN IN DT JJ NN VBN JJ . In April 2010 , nationwide protests led to the resignation and expulsion of BAKIEV . IN NNP CD , JJ NNS VBD TO DT NN CC NN IN NNP . He was replaced by President Roza OTUNBAEVA who will serve as president until 31 December 2011 according to a presidential decree issued 19 May 2010 . PRP VBD VBN IN NNP NNP NNP WP MD VB IN NN IN CD NNP CD VBG TO DT JJ NN VBD CD NNP CD . Presidential elections are scheduled to be held in October 2011 . JJ NNS VBP VBN TO VB VBN IN NNP CD . Continuing concerns include : endemic corruption , poor interethnic relations , and terrorism . VBG NNS VBP IN JJ NN , JJ JJ NNS , CC NN . THE LARK ( according to an ancient legend ) was created before the earth itself , and when her father died , as there was no earth , she could find no place of burial for him . DT NN LRB VBG TO DT JJ NN RRB VBD VBN IN DT NN PRP , CC WRB PRP$ NN VBD , IN EX VBD DT NN , PRP MD VB DT NN IN NN IN PRP . She let him lie uninterred for five days , and on the sixth day , not knowing what else to do , she buried him in her own head . PRP VBD PRP VB JJ IN CD NNS , CC IN DT JJ NN , RB VBG WP RB TO VB , PRP VBD PRP IN PRP$ JJ NN . Hence she obtained her crest , which is popularly said to be her father 's grave-hillock . RB PRP VBD PRP$ NN , WDT VBZ RB VBN TO VB PRP$ NN POS NN . Youth 's first duty is reverence to parents . NN POS JJ NN VBZ NN TO NNS . A RICH Man wanted to tell a certain lie , but the lie was of such monstrous size that it stuck in his throat ; so he employed an Editor to write it out and publish it in his paper as an editorial . DT JJ NN VBD TO VB DT JJ NN , CC DT NN VBD IN JJ JJ NN IN PRP VBD IN PRP$ NN ; RB PRP VBN DT NN TO VB PRP RP CC VB PRP IN PRP$ NN IN DT NN . But when the Editor presented his bill , the Rich Man said : ' Be content - is it nothing that I refrained from advising you about investments ? ' CC WRB DT NN VBD PRP$ NN , DT JJ NN VBD : `` VB JJ : VBZ PRP DT IN PRP VBD IN VBG PRP IN NNS . `` This is a test . DT VBZ DT NN . This is a test of the Answering Machine Broadcast System . DT VBZ DT NN IN DT VBG NN NNP NNP . This is only a test . DT VBZ RB DT NN . A published report in the United States predicts international financial assistance for the Palestinian Authority could double if elections in the West Bank and Gaza take place on schedule next month , and if the Palestinians take steps toward resolving their conflict with Israel . DT VBN NN IN DT NNP NNPS VBZ JJ JJ NN IN DT JJ NNP MD VB IN NNS IN DT NNP NNP CC NNP VBP NN IN NN JJ NN , CC IN DT NNS VBP NNS IN VBG PRP$ NN IN NNP . The New York Times estimates up to $ 8 billion in aid from the United States , Europe and Arab nations could go to the Palestinian Authority over the next four years if those conditions - successful elections and progress toward peace - are met . DT NNP NNP NNP VBZ RB TO $ CD CD IN NN IN DT NNP NNPS , NNP CC NNP NNS MD VB TO DT JJ NNP IN DT JJ CD NNS IN DT NNS : JJ NNS CC NN IN NN : VBP VBN . The Palestinian Authority has been facing a severe financial crisis , primarily due to declining tax revenues , and the Palestinian economy has been paralyzed during the past four years of violence in the West Bank and Gaza . DT JJ NNP VBZ VBN VBG DT JJ JJ NN , RB JJ TO VBG NN NNS , CC DT JJ NN VBZ VBN VBN IN DT JJ CD NNS IN NN IN DT NNP NNP CC NNP . President Bush 's wife , Laura , has announced four new African countries will be added to a U.S.-backed initiative to control malaria on the continent . NNP NNP POS NN , NNP , VBZ VBN CD JJ JJ NNS MD VB VBN TO DT JJ NN TO VB NN IN DT NN . Speaking in Washington Thursday Mrs. Bush said the United States will be a partner in the initiative with Malawi , Mozambique , Rwanda , and Senegal . VBG IN NNP NNP NNP NNP VBD DT NNP NNPS MD VB DT NN IN DT NN IN NNP , NNP , NNP , CC NNP . She said the program will help provide the countries with anti-malaria drugs and long-lasting mosquito nets , and help them conduct spraying procedures to kill mosquitoes . PRP VBD DT NN MD VB VB DT NNS IN JJ NNS CC JJ NN NNS , CC VB PRP VB VBG NNS TO VB NNS . President Bush unveiled the $ 1.2 billion initiative last year . NNP NNP VBD DT $ CD CD NN JJ NN . Tanzania , Uganda and Angola are already part of the five-year plan . NNP , NNP CC NNP VBP RB NN IN DT JJ NN . The U.N. says 3,000 children a day die of malaria in Africa . DT NNP VBZ CD NNS DT NN VBZ IN NN IN NNP . To help lead the fight against the illness , President Bush has appointed the first U.S. Malaria Coordinator , Timothy Ziemer . TO VB VB DT NN IN DT NN , NNP NNP VBZ VBN DT JJ NNP NNP NNP , NNP NNP . Ziemer , a retired U.S. Navy rear admiral , was previously executive director of World Relief , a private American disaster relief organization . NNP , DT JJ NNP NNP NN NN , VBD RB JJ NN IN NNP NNP , DT JJ JJ NN NN NN . The late comedian Richard Pryor and late blues legend Robert Johnson are among the artists who will receive a posthumous lifetime achievement Grammy award . DT JJ NN NNP NNP CC JJ NNS NN NNP NNP VBP IN DT NNS WP MD VB DT JJ NN NN NNP NN . The Recording Academy , which awards the Grammys - one of the top awards in the U.S. recording industry - said Pryor will be remembered for his deft treatment of controversial topics , such as race relations , that had previously been ignored . DT NNP NNP , WDT VBZ DT NNP IN CD IN DT JJ NNS IN DT NNP NN NN : VBD NNP MD VB VBN IN PRP$ NN NN IN JJ NNS , JJ IN NN NNS , WDT VBD RB VBN VBN . Pryor died last month at age 65 , after suffering for years from a degenerative nerve disease . NNP VBD JJ NN IN NN CD , IN VBG IN NNS IN DT JJ NN NN . Blues legend Robert Johnson will also receive an award . NNP NN NNP NNP MD RB VB DT NN . Despite a short life that ended in 1938 , Johnson 's Delta blues style influenced generations of musicians . IN DT JJ NN WDT VBD IN CD , NNP POS NNP NNS NN VBD NNS IN NNS . Innovative rock musician David Bowie , country music artist Merle Haggard , and opera singer Jessye Norman are among the living performers to be recognized at the February 8 ceremony . JJ NN NN NNP NNP , NN NN NN NNP NNP , CC NN NN NNP NNP VBP IN DT VBG NNS TO VB VBN IN DT NNP CD NN . A U.S. military helicopter has crashed during an anti-militant operation in southern Afghanistan , killing its five-member American crew . DT NNP JJ NN VBZ VBN IN DT JJ NN IN JJ NNP , VBG PRP$ JJ JJ NN . The U.S. military says the Chinook aircraft went down early Sunday in Zabul province shortly after dropping off troops involved in the mission . DT NNP NN VBZ DT NNP NN VBD RB RB NNP IN NNP NN RB IN VBG RP NNS VBN IN DT NN . A U.S. military spokesman , Colonel Jim Yonts , says the cause of the crash is under investigation , and that troops are at the scene providing security for recovery operation . DT NNP JJ NN , NNP NNP NNP , VBZ DT NN IN DT NN VBZ IN NN , CC IN NNS VBP IN DT NN VBG NN IN NN NN . A Taleban spokesman , Abdul Latif Hakimi , claimed responsibility for shooting down the aircraft , but the U.S. military says there is no indication hostile fire was involved . DT NNP NN , NNP NNP NNP , VBD NN IN VBG RP DT NN , CC DT NNP NN VBZ EX VBZ DT NN JJ NN VBD VBN . Two other U.S. Chinooks crashed in Afghanistan earlier this year . CD JJ NNP NNS VBD IN NNP RBR DT NN . One of the large , twin-rotor aircraft was shot down in June , killing all 16 Americans aboard . CD IN DT JJ , JJ NN VBD VBN RB IN NNP , VBG DT CD NNS IN . Another Chinook crashed in a sandstorm in April , killing 15 American troops and three civilians . DT NNP VBD IN DT NN IN NNP , VBG CD JJ NNS CC CD NNS . One person was killed and at least several others wounded in Mogadishu overnight as insurgents attacked three police stations . CD NN VBD VBN CC IN JJS JJ NNS VBD IN NNP JJ IN NNS VBD CD NN NNS . Witnesses report grenade explosions and exchanges of gunfire around police stations in the Wadajir , Hodan , and Florence districts . NNS VBP JJ NNS CC NNS IN NN IN NN NNS IN DT NNP , NNP , CC NNP NNS . There were conflicting reports whether the person killed was an insurgent or a civilian hit by a stray bullet . EX VBD VBG NNS IN DT NN VBN VBD DT JJ CC DT JJ NN IN DT JJ NN . Such gunbattles have become a daily occurrence in the Somali capital as insurgents continue to battle the government and its Ethiopian allies . JJ NNS VBP VBN DT JJ NN IN DT JJ NN IN NNS VBP TO VB DT NN CC PRP$ JJ NNS . A national peace conference organized by the government has shown no sign of reconciling Somalia 's warring clans and factions . DT JJ NN NN VBN IN DT NN VBZ VBN DT NN IN VBG NNP POS VBG NNS CC NNS . The Horn of Africa country has not had a stable central government since 1991 . DT NNP IN NNP NN VBZ RB VBN DT JJ JJ NN IN CD . A suicide bombing Saturday in Turkey killed at least four people riding a minibus to a beach in an Aegean seacoast resort town . DT NN VBG NNP IN NNP VBD IN JJS CD NNS VBG DT NN TO DT NN IN DT JJ NN NN NN . Injured foreign tourist is carried to ambulance after explosion in Kusadasi , Saturday Authorities in Kusadasi , southeast of Izmir , say the blast wounded 14 people , several of whom are in critical condition . VBN JJ NN VBZ VBN TO NN IN NN IN NNP , NNP NNS IN NNP , NN IN NNP , VBP DT NN VBD CD NNS , JJ IN WP VBP IN JJ NN . Three of the dead were believed to be foreign tourists . CD IN DT NN VBD VBN TO VB JJ NNS . One Turkish account says the bombing was carried out by a woman , but there is no word yet on who plotted the explosion . CD JJ NN VBZ DT NN VBD VBN RP IN DT NN , CC EX VBZ DT NN RB IN WP VBD DT NN . Several recent attacks in Turkey have been claimed by Kurdish separatist rebels , including TAK guerrillas linked to the Kurdistan Workers Party , PKK . JJ JJ NNS IN NNP VBP VBN VBN IN NNP JJ NNS , VBG NNP NNS VBN TO DT NNP NNP NNP , NNP . Prime Minister Recep Tayyip Erdogan said the attack was the work of terrorists , but he did not blame any specific group . NNP NNP NNP NNP NNP VBD DT NN VBD DT NN IN NNS , CC PRP VBD RB VB DT JJ NN . Palestinian medical workers say two gunmen with the Islamic militant group Hamas have been killed in an Israeli air strike in the southern Gaza Strip . JJ JJ NNS VBP CD NNS IN DT NNP JJ NN NNP VBP VBN VBN IN DT JJ NN NN IN DT JJ NNP NNP . Hamas says Israeli aircraft Saturday struck one of the group 's military posts near the town of Khan Younis . NNP VBZ JJ NN NNP VBD CD IN DT NN POS JJ NNS IN DT NN IN NNP NNP . It says the two dead gunmen belonged to Hamas ' military wing ( Ezzedin al-Qassam ) , and that four of its members were wounded in the attack . PRP VBZ DT CD JJ NNS VBN TO NNP POS JJ NN LRB NNP NNP RRB , CC IN CD IN PRP$ NNS VBD VBN IN DT NN . The Israeli army confirmed the air strike . DT JJ NN VBD DT NN NN . Israel conducts air strikes and land operations in the Gaza Strip in an effort to stop Palestinian militants from firing rockets into southern Israel . NNP VBZ NN NNS CC NN NNS IN DT NNP NNP IN DT NN TO VB JJ NNS IN VBG NNS IN JJ NNP . Russia - one of the world 's largest wheat exporters - has imposed a ban on grain exports due to an extended drought , wildfires and record-high temperatures ravaging much of the country . NNP IN CD IN DT NN POS JJS NN NNS : VBZ VBN DT NN IN NN NNS JJ TO DT JJ NN , NNS CC JJ NNS VBG NN IN DT NN . Prime Minister Vladimir Putin ordered the ban Thursday , as part of a push to control domestic prices for wheat products and livestock feed . JJ NN NNP NNP VBD DT NN NNP , IN NN IN DT NN TO VB JJ NNS IN NN NNS CC NN NN . The ban begins August 15 and is scheduled to end in December . DT NN VBZ NNP CD CC VBZ VBN TO VB IN NNP . Russia slashed its grain harvest forecast last week by 20 percent , as drought and high temperatures spawned hundreds of wildfires that destroyed entire villages and at least one key military base near Moscow . NNP VBD PRP$ NN NN NN JJ NN IN CD NN , IN NN CC JJ NNS VBD NNS IN NNS WDT VBD JJ NNS CC IN JJS CD JJ JJ NN IN NNP . Fifty people have been found dead in the smoldering ruins of rural homes in western and central Russia . CD NNS VBP VBN VBN JJ IN DT VBG NNS IN JJ NNS IN JJ CC JJ NNP . Temperatures in Moscow have hovered near 40 C for more than a week , as parched residents battle choking smog and smoke from peat fires burning just outside the city . NNS IN NNP VBP VBN IN CD NNP IN JJR IN DT NN , IN JJ NNS VBP VBG NN CC NN IN NN NNS VBG RB IN DT NN . Argentina and Spain have agreed to pursue a strategic alliance to strengthen political and economic ties . NNP CC NNP VBP VBN TO VB DT JJ NN TO VB JJ CC JJ NNS . Argentine President Nestor Kirchner and visiting Spanish Prime Minister Jose Luis Rodriguez Zapatero signed the agreement Tuesday in Buenos Aires . JJ NNP NNP NNP CC VBG JJ NNP NNP NNP NNP NNP NNP VBD DT NN NNP IN NNP NNP . Earlier this week , Mr. Zapatero met with Brazilian President Luiz Inacio Lula da Silva in Brasilia . RBR DT NN , NNP NNP VBD IN JJ NNP NNP NNP NNP NNP NNP IN NNP . The two said they plan to strengthen cooperation in social development , construction projects and other fields . DT CD VBD PRP VBP TO VB NN IN JJ NN , NN NNS CC JJ NNS . For the last leg of his South American trip , Mr. Zapatero is scheduled to fly to Chile Wednesday to meet with President Ricardo Lagos . IN DT JJ NN IN PRP$ JJ JJ NN , NNP NNP VBZ VBN TO VB TO NNP NNP TO VB IN NNP NNP NNP . Humanitarian agencies report more than 50 people have been killed in floods in Pakistan brought on by heavy monsoon rains that began earlier this month . JJ NNS VBP JJR IN CD NNS VBP VBN VBN IN NNS IN NNP VBN RP IN JJ NN NNS WDT VBD RBR DT NN . The Red Cross says 50,000 people have been affected in the worst hit areas in the province of Baluchistan . DT NNP NNP VBZ CD NNS VBP VBN VBN IN DT JJS NN NNS IN DT NN IN NNP . The Pakistani government and relief organizations are pledging food and supplies to help those displaced by the flooding . DT JJ NN CC NN NNS VBP VBG NN CC NNS TO VB DT VBN IN DT NN . But there are concerns that worsening weather conditions could hamper those relief efforts . CC EX VBP NNS IN VBG NN NNS MD VB DT NN NNS . Thailand 's military installed government Friday announced a proposal to lift martial law in 11 of 35 provinces . NNP POS JJ JJ NN NNP VBD DT NN TO VB JJ NN IN CD IN CD NNS . But the government proposes to place new restrictions on three provinces that border Laos . CC DT NN VBZ TO VB JJ NNS IN CD NNS IN VBZ NNP . Former head of the military government , Sonthi Boonyaratglin , told reporters that martial law will remain in regions that are prone to drug problems . JJ NN IN DT JJ NN , NNP NNP , VBD NNS IN JJ NN MD VB IN NNS WDT VBP JJ TO NN NNS . Many of the restricted provinces also supported the former political party of ousted prime minister Thaksin Shinawatra . NN IN DT JJ NNS RB VBD DT JJ JJ NN IN JJ JJ NN NNP NNP . Thai prosecutors flew to England Friday to discuss the possibility of extraditing Mr. Thaksin on corruption charges . JJ NNS VBD TO NNP NNP TO VB DT NN IN VBG NNP NNP IN NN NNS . Last month , Thailand 's supreme court suspended a case against Mr. Thaksin and his wife until they appear in court . JJ NN , NNP POS JJ NN VBD DT NN IN NNP NNP CC PRP$ NN IN PRP VBP IN NN . Prosecutors charge the couple with illegally influencing a Bangkok real estate deal in 2003 . NNS VBP DT NN IN RB VBG DT NNP JJ NN NN IN CD . The two have been living in self-imposed exile in England since Mr. Thaksin was ousted in a coup last year . DT CD VBP VBN VBG IN JJ NN IN NNP IN NNP NNP VBD VBN IN DT NN JJ NN . Reporters Without Borders has expressed shock over a female television reporter 's murder in Afghanistan , and called on President Hamid Karzai to take concrete steps in support of press freedom . NNPS NNP NNPS VBZ VBN NN IN DT JJ NN NN POS NN IN NNP , CC VBD IN NNP NNP NNP TO VB JJ NNS IN NN IN NN NN . Shaima Rezayee had presented a music program on the privately-run television channel Tolo TV , and was shot in the head in the Kabul neighborhood of Char Qala on Wednesday . NNP NNP VBD VBN DT NN NN IN DT JJ NN NN NNP NNP , CC VBD VBN IN DT NN IN DT NNP NN IN NNP NNP IN NNP . She was the first journalist to be killed in Afghanistan since the end of the war in 2001 . PRP VBD DT JJ NN TO VB VBN IN NNP IN DT NN IN DT NN IN CD . The group is urging an independent investigation into the murder so that those responsible can be arrested and brought to trial . DT NN VBZ VBG DT JJ NN IN DT NN RB IN DT JJ MD VB VBN CC VBN TO NN . Conservative Islamists in Afghanistan had been criticizing 24-year-old Ms. Rezayee 's music program as anti-Islamic . JJ NNS IN NNP VBD VBN VBG JJ NNP NNP POS NN NN IN JJ . Bowing to pressure from religious leaders , Tolo TV had fired her earlier this year . VBG TO NN IN JJ NNS , NNP NNP VBD VBN PRP RBR DT NN . Palestinian officials say Israeli troops shot and killed a Palestinian near a checkpoint in the West Bank Sunday . JJ NNS VBP JJ NNS VBD CC VBD DT NN IN DT NN IN DT NNP NNP NNP . They say the Israeli soldiers opened fire on the man 's vehicle when it tried to bypass a checkpoint near the city of Nablus . PRP VBP DT JJ NNS VBD NN IN DT NN POS NN WRB PRP VBD TO VB DT NN IN DT NN IN NNP . Three other Palestinians in the vehicle were wounded . CD JJ NNS IN DT NN VBD VBN . Meanwhile , Palestinian Prime Minister Ismail Haniyeh condemned Israel 's arrest of Deputy Prime Minister Nasser al-Shaer , a top official of the Hamas organization . RB , JJ NNP NNP NNP NNP VBD NNP POS NN IN NNP NNP NNP NNP NNP , DT JJ NN IN DT NNP NN . Israeli forces raided Shaer 's home in the West Bank early Saturday and took him away for questioning . JJ NNS VBD NNP POS NN IN DT NNP NNP JJ NNP CC VBD PRP RB IN VBG . An Israeli spokesman says Shaer was detained because he is a member of Hamas , which won Palestinian elections early this year but is considered a terrorist group by Israel , the United States and the European Union . DT JJ NN VBZ NNP VBD VBN IN PRP VBZ DT NN IN NNP , WDT VBD JJ NNS RB DT NN CC VBZ VBN DT JJ NN IN NNP , DT NNP NNPS CC DT NNP NNP . Al-Qaida 's front group in Iraq has claimed responsibility for a string of attacks on Baghdad 's Shi'ite districts this week that left at least 64 dead and 360 wounded . NNP POS JJ NN IN NNP VBZ VBN NN IN DT NN IN NNS IN NNP POS NNP NNS DT NN WDT VBD IN JJS CD JJ CC CD VBN . In a statement posted Friday on a militant website , the Islamic State of Iraq is threatening more attacks on the country 's Shi'ite majority . IN DT NN VBN NNP IN DT JJ NN , DT NNP NNP IN NNP VBZ VBG JJR NNS IN DT NN POS JJ NN . The statement says the assault Tuesday on Shi'ite civilians at restaurants and cafes across the capital was ' the first day of many bloody days to come . ' DT NN VBZ DT NN NNP IN NNP NNS IN NNS CC NNS IN DT NN VBD `` DT JJ NN IN JJ JJ NNS TO VB . `` The Islamic State of Iraq is an umbrella group that includes al-Qaida in Iraq and other Sunni insurgent factions . DT NNP NNP IN NNP VBZ DT NN NN WDT VBZ NNP IN NNP CC JJ NNP JJ NNS . The group this week also threatened more attacks on Christians , after it took responsibility for a shocking siege at a Baghdad church during Sunday Mass that left 58 people dead . DT NN DT NN RB VBD JJR NNS IN NNS , IN PRP VBD NN IN DT JJ NN IN DT NNP NN IN NNP NNP WDT VBD CD NNS JJ . U.S. Secretary of State Condoleezza Rice says Washington is concerned about reports of a Chinese government crackdown on dissidents ahead of President Bush 's visit . NNP NNP IN NNP NNP NNP VBZ NNP VBZ JJ IN NNS IN DT JJ NN NN IN NNS RB IN NNP NNP POS NN . Ms. Rice told reporters in Beijing Sunday the United States would strongly raise its concerns with Beijing . NNP NNP VBD NNS IN NNP NNP DT NNP NNPS MD RB VB PRP$ NNS IN NNP . She says U.S. officials will seek clarification on the matter , and will make clear ' open societies societies allow people to express themselves . ' PRP VBZ NNP NNS MD VB NN IN DT NN , CC MD VB JJ `` JJ NNS NNS VBP NNS TO VB PRP . `` The French news agency ( AFP ) says Chinese authorities have recently detained or placed under house arrest at least a dozen dissidents and activists . DT JJ NN NN LRB NNP RRB VBZ JJ NNS VBP RB VBN CC VBN IN NN NN IN JJS DT NN NNS CC NNS . Secretary Rice also says Washington is disappointed in China 's lack of progress to a request made in September for action on specific human rights cases . NNP NNP RB VBZ NNP VBZ VBN IN NNP POS NN IN NN TO DT NN VBN IN NNP IN NN IN JJ JJ NNS NNS . The secretary says the issue of human rights in China will be a long conversation over a long period of time . DT NN VBZ DT NN IN JJ NNS IN NNP MD VB DT JJ NN IN DT JJ NN IN NN . The former majority leader in the U.S. House of Representatives turned himself in to authorities Thursday to face charges of money laundering and conspiracy . DT JJ NN NN IN DT NNP NNP IN NNPS VBD PRP IN TO NNS NNP TO VB NNS IN NN NN CC NN . Congressman Tom DeLay reported to a sheriff 's office in Houston , Texas , where he was booked , photographed and fingerprinted before being released on $ 10,000 bond . NNP NNP NNP VBD TO DT NN POS NN IN NNP , NNP , WRB PRP VBD VBN , VBN CC VBN IN VBG VBN IN $ CD NN . Mr. DeLay had been expected to appear for booking after a Texas state court issued a warrant for his arrest on Wednesday . NNP NNP VBD VBN VBN TO VB IN VBG IN DT NNP NN NN VBD DT NN IN PRP$ NN IN NNP . The court 's move was a formality under Texas law , which requires that an arrest warrant be issued for anyone indicted on a felony charge . DT NN POS NN VBD DT NN IN NNP NN , WDT VBZ IN DT NN NN VB VBN IN DT VBN IN DT NN NN . The Republican congressman has denied the charges against him , saying they are politically motivated . DT JJ NN VBZ VBN DT NNS IN PRP , VBG PRP VBP RB JJ . Mr. DeLay has kept his Texas congressional seat but has stepped down as Republican leader under a party rule requiring him to give up the post if charged with a felony . NNP NNP VBZ VBN PRP$ NNP JJ NN CC VBZ VBN RP IN JJ NN IN DT NN NN VBG PRP TO VB RP DT NN IN VBN IN DT NN . Citigroup , one of the largest financial institutions in the United States , said Tuesday it lost nearly $ 10 billion in the last few months of 2007 . NNP , CD IN DT JJS JJ NNS IN DT NNP NNPS , VBD NNP PRP VBD RB $ CD CD IN DT JJ JJ NNS IN CD . The bank says its assets have shrunk by more than $ 18 billion because of huge investments in the troubled subprime mortgage sector . DT NN VBZ PRP$ NNS VBP VBN IN JJR IN $ CD CD IN IN JJ NNS IN DT JJ NN NN NN . The company says it will layoff another 4,200 employees to save money . DT NN VBZ PRP MD VB DT CD NNS TO VB NN . Citi is turning to outside investors to replenish capital , raising more than $ 14 billion from investors in Singapore , Kuwait , Saudi Arabia and elsewhere . NNP VBZ VBG TO JJ NNS TO VB NN , VBG JJR IN $ CD CD IN NNS IN NNP , NNP , NNP NNP CC RB . Meantime , Merrill Lynch , the largest brokerage , is suffering from similar problems and raising about $ 6.6 billion from investors in Japan , Kuwait and South Korea . RB , NNP NNP , DT JJS NN , VBZ VBG IN JJ NNS CC VBG RB $ CD CD IN NNS IN NNP , NNP CC NNP NNP . Tens of thousands of Nepalese have marched through the capital , Kathmandu demanding an end to years of violence between Maoist rebels and government security forces . NNS IN NNS IN NNS VBP VBN IN DT NN , NNP VBG DT NN TO NNS IN NN IN NNP NNS CC NN NN NNS . Organizers of the peace rally said Monday they want to mount pressure on the government and the rebels to resume peace talks . NNS IN DT NN NN VBD NNP PRP VBP TO VB NN IN DT NN CC DT NNS TO VB NN NNS . Students and people from all walks of life carried banners and chanted slogans demanding an immediate end to the Maoist rebellion that has claimed more than 10,000 lives since it began in 1996 . NNS CC NNS IN DT VBZ IN NN VBD NNS CC VBD NNS VBG DT JJ NN TO DT NNP NN WDT VBZ VBN JJR IN CD NNS IN PRP VBD IN CD . The rebels want to replace Nepal 's constitutional monarchy with a communist state . DT NNS VBP TO VB NNP POS JJ NN IN DT JJ NN . The rally was held as a crippling Maoist-called transport blockade of the Kathmandu valley entered its fifth day . DT NN VBD VBN IN DT JJ JJ NN NN IN DT NNP NN VBD PRP$ JJ NN . The rebels are demanding information about their missing activists who they say disappeared while in custody . DT NNS VBP VBG NN IN PRP$ JJ NNS WP PRP VBP VBN IN IN NN . World oil prices declined about two percent in Tuesday 's trading after Chinese oil imports slowed and a report on the U.S. economy disappointed investors . NNP NN NNS VBD IN CD NN IN NNP POS NN IN JJ NN NNS VBD CC DT NN IN DT NNP NN JJ NNS . In New York trading , the price of crude oil fell more than $ 2 to $ 79.43 . IN NNP NNP NN , DT NN IN JJ NN VBD JJR IN $ CD TO $ CD . A report on declining worker productivity in the United States prompted investors to expect less demand for energy , which would lower oil prices . DT NN IN VBG NN NN IN DT NNP NNPS VBD NNS TO VB JJR NN IN NN , WDT MD VB NN NNS . The United States and China are the world 's two largest oil consumers . DT NNP NNPS CC NNP VBP DT NN POS CD JJS NN NNS . Sixty years ago , fifteen-year old Roman Ferencevych lived through the waning months of World War II in war-shattered Berlin , far from his native Ukraine . CD NNS RB , JJ JJ NNP NNP VBD IN DT VBG NNS IN NNP NNP NNP IN JJ NNP , RB IN PRP$ JJ NNP . After the war , he found himself in the United States -- a displaced person , a refugee , and an American soldier . IN DT NN , PRP VBD PRP IN DT NNP NNPS IN DT JJ NN , DT NN , CC DT JJ NN . Here he shares his memories of that turbulent time . RB PRP VBZ PRP$ NNS IN DT JJ NN . The day the war ended in Germany , Hear Roman Ferencevych describe life in a Displaced Persons ' Camp DT NN DT NN VBD IN NNP , VB NNP NNP VBP NN IN DT JJ NNS POS NNP Roman Ferencevych talks about the goals of the Ukrainian Community in the U.S. NNP NNP NNS IN DT NNS IN DT JJ NNP IN DT NNP Mauritania 's foreign minister says her country has broken diplomatic relations with Israel . NNP POS JJ NN VBZ PRP$ NN VBZ VBN JJ NNS IN NNP . Speaking in the capital of Nouakchott late Saturday , Naha Mint Hamdi Ould Mouknass said Mauritania has cut ties with Israel in a ' complete and definitive way . ' VBG IN DT NN IN NNP JJ NNP , NNP NNP NNP NNP NNP VBD NNP VBZ VBN NNS IN NNP IN DT `` JJ CC JJ NN . `` Mauritania was once one of three Arab states that had diplomatic relations with Israel . NNP VBD RB CD IN CD JJ NNS WDT VBD JJ NNS IN NNP . It suspended the ties in January 2009 because of an Israeli offensive in the Gaza Strip . PRP VBD DT NNS IN NNP CD IN IN DT JJ NN IN DT NNP NNP . In March , the government expelled Israeli diplomats and ordered the closing of the Israeli embassy . IN NNP , DT NN VBD JJ NNS CC VBD DT NN IN DT JJ NN . The 2009 Israeli offensive killed an estimated 1,300 Palestinians . DT CD JJ NN VBD DT VBN CD NNS . Israel said it launched the offensive to protect itself against rocket attacks by the militant group Hamas . NNP VBD PRP VBD DT NN TO VB PRP IN NN NNS IN DT JJ NN NNP . Mauritania 's move leaves Egypt and Jordan as the only Arab states to maintain relations with Israel . NNP POS NN VBZ NNP CC NNP IN DT JJ JJ NNS TO VB NNS IN NNP . U.S. military lawyers want charges dropped against alleged conspirators in the September 2001 terrorist attacks on the United States , saying their cases were improperly influenced by a Pentagon adviser . NNP JJ NNS VBP NNS VBD IN JJ NNS IN DT NNP CD JJ NNS IN DT NNP NNPS , VBG PRP$ NNS VBD RB VBN IN DT NNP NN . In documents released Friday , defense attorneys argue that Air Force adviser Brig. Gen. Thomas Hartmann failed to provide fair and objective legal advice , and instead pushed prosecutors to take up ' sexy ' high-profile cases . IN NNS VBN NNP , NN NNS VBP IN NNP NNP NN NNP NNP NNP NNP VBD TO VB JJ CC JJ JJ NN , CC RB VBD NNS TO VB RP `` JJ `` JJ NNS . The defense 's motion pertains to the case of the alleged mastermind of the September 11 attacks , Khalid Sheikh Mohammed and four other prisoners held at the U.S. military detention center in Guantanamo Bay , Cuba . DT NN POS NN NNS TO DT NN IN DT JJ NN IN DT NNP CD NNS , NNP NNP NNP CC CD JJ NNS VBN IN DT NNP JJ NN NN IN NNP NNP , NNP . A judge had already barred Hartmann from a case against Salim Hamdan , a former driver for al-Qaida chief Osama bin Laden . DT NN VBD RB VBN NNP IN DT NN IN NNP NNP , DT JJ NN IN NNP NN NNP NNP NNP . Hamdan was scheduled to go to trial early next month , but a military judge on Friday postponed the case for six weeks so the defendant can receive a mental evaluation . NNP VBD VBN TO VB TO NN RB JJ NN , CC DT JJ NN IN NNP VBD DT NN IN CD NNS IN DT NN MD VB DT JJ NN . Chief U.N. war crimes prosecutor Carla del Ponte says Slobodan Milosevic secretly took medicines in his jail cell in what may have been a suicide attempt . NNP NNP NN NNS NN NNP NNP NNP VBZ NNP NNP RB VBD NNS IN PRP$ NN NN IN WP MD VB VBN DT NN NN . Del Ponte told France 's Le Monde newspaper Tuesday that Milosevic apparently decided to worsen his health in an attempt to get out of jail and go to Moscow for treatment or to take his own life . NNP NNP VBD NNP POS NNP NNP NN NNP IN NNP RB VBD TO VB PRP$ NN IN DT NN TO VB IN IN NN CC VB TO NNP IN NN CC TO VB PRP$ JJ NN . She said she is waiting for blood test results to see what brought on the heart attack that killed Milosevic . PRP VBD PRP VBZ VBG IN NN NN NNS TO VB WP VBD IN DT NN NN WDT VBD NNP . Del Ponte said Milosevic 's death is difficult to accept and that it dealt the war crimes tribunal a nasty blow . NNP NNP VBD NNP POS NN VBZ JJ TO VB CC IN PRP VBD DT NN NNS VBP DT JJ NN . But she said she wants to try fugitive former Bosnian Serb leaders Radovan Karadzic and Ratko Mladic , saying the court is now in a coma and must come back to life . CC PRP VBD PRP VBZ TO VB JJ JJ JJ JJ NNS NNP NNP CC NNP NNP , VBG DT NN VBZ RB IN DT NN CC MD VB RB TO NN . European naval forces have detained seven suspected pirates off the coast of Somalia . JJ JJ NNS VBP VBN CD JJ NNS IN DT NN IN NNP . The German Defense Ministry says pirates fired on one of its supply ships , the FSG Spessart , in the Gulf of Aden on Sunday . DT JJ NNP NNP VBZ NNS VBD IN CD IN PRP$ NN NNS , DT NNP NNP , IN DT NNP IN NNP IN NNP . It says the German ship returned fire and then chased down the pirates with the help of other vessels in the European Union 's anti-piracy mission . PRP VBZ DT JJ NN VBD NN CC RB VBD RP DT NNS IN DT NN IN JJ NNS IN DT NNP NNP POS JJ NN . The seven suspects are being held on a German frigate ( the Rheinland-Pfalz ) . DT CD NNS VBP VBG VBN IN DT JJ NN LRB DT NNP RRB . Somali pirates seized more than 40 ships during 2008 , receiving millions of dollars in ransom payments . JJ NNS VBD JJR IN CD NNS IN CD , VBG NNS IN NNS IN NN NNS . But the number of hijackings has dropped sharply in recent months , after the EU , the United States and other world powers began naval patrols in the waters near Somalia . CC DT NN IN NNS VBZ VBN RB IN JJ NNS , IN DT NNP , DT NNP NNPS CC JJ NN NNS VBD JJ NNS IN DT NNS IN NNP . North Korea says it has sent its top diplomat to Russia , amid a flurry of attempts to ease tensions on the Korean peninsula . NNP NNP VBZ PRP VBZ VBN PRP$ JJ NN TO NNP , IN DT NN IN NNS TO VB NNS IN DT JJ NN . The North 's state Korean Central News Agency said in a one-sentence dispatch that Foreign Minister Pak Ui-Chun departed for Moscow . DT NNP POS NN JJ NNP NNP NNP VBD IN DT JJ NN IN NNP NNP NNP NNP VBD IN NNP . The article provided no further details . DT NN VBD DT JJ NNS . Pak told Russia 's Interfax news agency Friday that Pyongyang felt justified in building a nuclear defense to ward off threats from South Korea and the U.S. , which he accused of conducting a policy of hostility and confrontation . NNP VBD NNP POS NNP NN NN NNP IN NNP VBD JJ IN VBG DT JJ NN TO VB RP NNS IN NNP NNP CC DT NNP , WDT PRP VBD IN VBG DT NN IN NN CC NN . Russia is a member of the six nations attempting to bring a halt to North Korea 's nuclear program . NNP VBZ DT NN IN DT CD NNS VBG TO VB DT NN TO NNP NNP POS JJ NN . The six-party talks also include the two Koreas , China , Japan and the United States . DT JJ NNS RB VBP DT CD NNP , NNP , NNP CC DT NNP NNPS . Talking about fashion instantly evokes in many people images of models strutting down the catwalk . VBG IN NN RB VBZ IN JJ NNS NNS IN NNS VBG IN DT NN . But the South Asian Student Association at Carnegie Mellon University in Pittsburgh , Pennsylvania recently took a different spin on fashion during Pakistan Awareness Week on campus . CC DT NNP NNP NNP NNP IN NNP NNP NNP IN NNP , NNP RB VBD DT JJ NN IN NN IN NNP NNP NN IN NN . VOA 's Ruth Reader reports for producer Imran Siddiqi . NNP POS NNP NNP VBZ IN NN NNP NNP . Venezuelan station Radio Caracas Television ( RCTV ) is now being shown on cable and satellite after being forced off the air by President Hugo Chavez in May . JJ NN NNP NNP NNP LRB NNP RRB VBZ RB VBG VBN IN NN CC NN IN VBG VBN IN DT NN IN NNP NNP NNP IN NNP . The opposition-aligned TV station began its new programming Monday . DT JJ NN NN VBD PRP$ JJ NN NNP . The chief of RCTV told a news conference last week that the station 's return is a victory for Venezuelan people who want its programs . DT NN IN NNP VBD DT NN NN JJ NN IN DT NN POS NN VBZ DT NN IN JJ NNS WP VBP PRP$ NNS . Mr. Chavez refused to renew RCTV 's license to broadcast on a public frequency for allegedly backing a failed coup against him in 2002 . NNP NNP VBD TO VB NNP POS NN TO VB IN DT JJ NN IN RB VBG DT VBN NN IN PRP IN CD . Other national private networks also opposed Mr. Chavez , but their criticism of the government is now softer and they have retained their licenses . JJ JJ JJ NNS RB VBD NNP NNP , CC PRP$ NN IN DT NN VBZ RB JJR CC PRP VBP VBN PRP$ NNS . The United States says its relief helicopters are now supplying twice as much aid to key distribution centers in quake-ravaged areas of Pakistan . DT NNP NNP VBZ PRP$ NN NNS VBP RB VBG RB RB JJ NN TO JJ NN NNS IN JJ NNS IN NNP . The U.S. Embassy in Islamabad said Sunday this is to ensure at least a 30-day food supply in remote villages before bad weather grounds flights again . DT NNP NNP IN NNP VBD NNP DT VBZ TO VB IN JJS DT JJ NN NN IN JJ NNS IN JJ NN NNS NNS RB . The statement says U.S. Chinook helicopters are now delivering over 100 tons of cargo a day , doubling their usual load by hanging supplies in nets under the aircraft . DT NN VBZ NNP NNP NNS VBP RB VBG IN CD NNS IN NN DT NN , VBG PRP$ JJ NN IN VBG NNS IN NNS IN DT NN . Meanwhile , the United Nations and Pakistani authorities are investigating why Pakistani earthquake victims forced their way onto two aid helicopters Friday and made the pilots airlift them from the disaster zone . RB , DT NNP NNPS CC JJ NNS VBP VBG WRB JJ NN NNS VBD PRP$ NN IN CD NN NNS NNP CC VBD DT NNS VBP PRP IN DT NN NN . The October 8 quake killed more than 73,000 people and made more than three million people homeless . DT NNP CD NN VBD JJR IN CD NNS CC VBD JJR IN CD CD NNS JJ . Ukrainian emergency officials say five people have been killed in the crash of a small private passenger plane near Kyiv . JJ NN NNS VBP CD NNS VBP VBN VBN IN DT NN IN DT JJ JJ NN NN IN NNP . The Beechcraft turboprop was on a flight Sunday from the Czech Republic . DT NNP NN VBD IN DT NN NNP IN DT JJ NNP . Witnesses say the plane crashed and exploded in a field just short of the runway at Zhulyany airport near Kyiv . NNS VBP DT NN VBD CC VBD IN DT NN RB RB IN DT NN IN NNP NN IN NNP . No one on the ground was hurt . DT NN IN DT NN VBD VBN . All five victims were Czech . DT CD NNS VBD JJ . Investigators say initial findings point to human error as the cause of the crash . NNS VBP JJ NNS VBP IN JJ NN IN DT NN IN DT NN . Burmese officials have ordered about 80 HIV patients and staff to leave a care home in Rangoon after a visit there by democracy leader Aung San Suu Kyi . JJ NNS VBP VBN IN CD NNP NNS CC NN TO VB DT NN NN IN NNP IN DT NN RB IN NN NN NNP NNP NNP NNP . The official reason given for the eviction was that the home , a wooden shelter operated by Phyu Phyu Tin , a member of Aung San Suu Kyi 's National League for Democracy party , was in violation of Burmese law . DT JJ NN VBN IN DT NN VBD IN DT NN , DT JJ NN VBN IN NNP NNP NNP , DT NN IN NNP NNP NNP NNP POS NNP NNP IN NNP NN , VBD IN NN IN JJ NN . The eviction order came a day after Aung San Suu Kyi visited the clinic and called for more medical assistance for the shelter 's residents , which include children . DT NN NN VBD DT NN IN NNP NNP NNP NNP VBD DT NN CC VBD IN JJR JJ NN IN DT NN POS NNS , WDT VBP NNS . The Nobel laureate visited the clinic four days after she was freed from seven years of house arrest , when she pledged a ' peaceful revolution ' while seeking dialogue with the ruling generals . DT NNP NN VBD DT NN CD NNS IN PRP VBD VBN IN CD NNS IN NN NN , WRB PRP VBD DT `` JJ NN `` IN VBG NN IN DT NN NNS . British Prime Minister Tony Blair says he wants the U.S. military to close the detention facility for terrorism suspects at the American naval base in Guantanamo Bay , Cuba . JJ JJ NN NNP NNP VBZ PRP VBZ DT NNP NN TO VB DT NN NN IN NN NNS IN DT JJ JJ NN IN NNP NNP , NNP . Mr. Blair told lawmakers he hopes a judicial process could be put in place so the detention center could close . NNP NNP VBD NNS PRP VBZ DT JJ NN MD VB VBN IN NN IN DT NN NN MD VB . His comments came during his weekly question-and-answer session in parliament . PRP$ NNS VBD IN PRP$ JJ NN NN IN NN . The prime minister stressed that the detention facility was opened under extraordinary circumstances , following the September 11 , 2001 attacks on the United States that killed nearly 3,000 people . DT JJ NN VBD IN DT NN NN VBD VBN IN JJ NNS , VBG DT NNP CD , CD NNS IN DT NNP NNPS WDT VBD RB CD NNS . He said the facility housed people fighting U.S. and British troops in Afghanistan . PRP VBD DT NN VBD NNS VBG NNP CC JJ NNS IN NNP . About 500 detainees are being held at Guantanamo , suspected of links to al-Qaida or the Taleban . IN CD NNS VBP VBG VBN IN NNP , VBN IN NNS TO NNP CC DT NNP . Human rights groups and the United Nations have called for its closure . JJ NNS NNS CC DT NNP NNPS VBP VBN IN PRP$ NN . U.S. officials insist detainees there are treated humanely . NNP NNS VBP NNS EX VBP VBN RB . Chinese protesters chant anti-Japanese slogans as they march in Beijing 's Chinese police have warned against unauthorized anti-Japanese protests in the coming days after last week 's demonstrations turned violent . JJ NNS JJ JJ NNS IN PRP VBP IN NNP POS JJ NNS VBP VBN IN JJ JJ NNS IN DT JJ NNS IN JJ NN POS NNS VBD JJ . A statement posted Friday on popular Web sites told people to place their faith in the Communist Party and express their patriotic passion in an orderly manner . DT NN VBN NNP IN JJ NNP NNS VBD NNS TO VB PRP$ NN IN DT NNP NNP CC VB PRP$ JJ NN IN DT JJ NN . The statement noted that public demonstrations require police permission and warned that violators could face punishment . DT NN VBD IN JJ NNS VBP NN NN CC VBD IN NNS MD VB NN . Notices spread by activists on Web sites and by mobile phones are calling for more protests in the next few days in Beijing , Shanghai and other cities . NNS VBN IN NNS IN NNP NNS CC IN JJ NNS VBP VBG IN JJR NNS IN DT JJ JJ NNS IN NNP , NNP CC JJ NNS . The official announcement comes after violent anti-Japanese marches in Beijing , Guangzhou and Shenzhen this past week against Japan 's bid for a permanent seat on the U.N. Security Council and Tokyo 's alleged downplaying of wartime atrocities . DT JJ NN VBZ IN JJ JJ NNS IN NNP , NNP CC NNP DT JJ NN IN NNP POS NN IN DT JJ NN IN DT NNP NNP NNP CC NNP POS JJ NN IN NN NNS . Iran 's hard-line president has called for the destruction of Israel and warned Muslim nations who recognize the Jewish state that they will be forever disgraced . NNP POS JJ NN VBZ VBN IN DT NN IN NNP CC VBD NNP NNS WP VBP DT JJ NN IN PRP MD VB RB VBN . Speaking at a Tehran conference entitled ' The World Without Zionism ' Wednesday , President Mahmoud Ahmadinejad told thousands of students that countries or leaders who acknowledge Israel will be confronted with the wrath of the Islamic community . VBG IN DT NNP NN VBD `` DT NNP IN NNP `` NNP , NNP NNP NNP VBD NNS IN NNS IN NNS CC NNS WP VBP NNP MD VB VBN IN DT NN IN DT JJ NN . Intoning the words of the founder of Iran 's Islamic revolution , Ayatollah Ruhollah Khomeini , he said , ' Israel must be wiped off the map . ' VBG DT NNS IN DT NN IN NNP POS JJ NN , NNP NNP NNP , PRP VBD , `` NNP MD VB VBN RP DT NN . `` He also called Israel 's recent withdrawal from the Gaza Strip ' a trick , ' meant to make Islamic states acknowledge Israel . PRP RB VBD NNP POS JJ NN IN DT NNP NNP `` DT NN , `` VBD TO VB JJ NNS VBP NNP . There was no immediate reaction to his comments from Jerusalem , but in Paris , a French foreign ministry spokesman strongly condemned the remarks . EX VBD DT JJ NN TO PRP$ NNS IN NNP , CC IN NNP , DT JJ JJ NN NN RB VBD DT NNS . Serbian government officials say a former Bosnian Serb interior minister plans to surrender to the United Nations Tribunal in The Hague to face war crimes charges . JJ NN NNS VBP DT JJ JJ JJ JJ NN VBZ TO VB TO DT NNP NNPS NNP IN DT NN TO VB NN NNS NNS . The government said Thursday Mica Stanisic will travel to The Hague and surrender to the court Friday . DT NN VBD NNP NNP NNP MD VB TO DT NN CC NN TO DT NN NNP . The tribunal has not yet made his indictment public . DT NN VBZ RB RB VBN PRP$ NN NN . Mr. Stanisic was Bosnian Serb interior minister during part of the conflict in Bosnia-Herzegovina that began in 1992 . NNP NNP VBD JJ JJ NN NN IN NN IN DT NN IN NNP WDT VBD IN CD . The European Union , NATO and Western governments have urged Serbia to arrest war crimes suspects and transfer them to The Hague . DT NNP NNP , NNP CC NNP NNS VBP VBN NNP TO VB NN NNS NNS CC VB PRP TO DT NNP . Since January , four high-ranking Serb military officials have surrendered to the tribunal . IN NNP , CD JJ JJ NN NNS VBP VBN TO DT NN . However , at least 17 Serbian or Bosnian Serb suspects , as well as Croatian General Ante Gotovina , still remain at large . RB , IN JJS CD JJ CC JJ JJ NNS , RB RB IN JJ NNP NNP NNP , RB VBP IN JJ . Congo 's electoral commission has requested a delay in national elections that are scheduled for June . NNP POS JJ NN VBZ VBN DT NN IN JJ NNS WDT VBP VBN IN NNP . The head of the commission said Thursday he has presented the request to parliament , which must approve any delay . DT NN IN DT NN VBD NNP PRP VBZ VBN DT NN TO NN , WDT MD VB DT NN . He did not say why the delay is necessary . PRP VBD RB VB WRB DT NN VBZ JJ . However the move was widely expected as preparations for the polls have fallen behind schedule . RB DT NN VBD RB VBN IN NNS IN DT NNS VBP VBN IN NN . The delay is in line with Congo 's peace accord , which allows up to two six-month delays in elections , the nation 's first since independence in 1960 . DT NN VBZ IN NN IN NNP POS NN NN , WDT VBZ RP TO CD JJ NNS IN NNS , DT NN POS JJ IN NN IN CD . Congo 's peace deal , signed in 2003 , ended a five-year war . NNP POS NN NN , VBN IN CD , VBD DT JJ NN . Earlier this year , concerns about a delay in the elections led to violent protests in Kinshasa . RBR DT NN , NNS IN DT NN IN DT NNS VBD TO JJ NNS IN NNP . Thursday , police were out in force on the streets of the capital to prevent any violence . NNP , NNS VBD RB IN NN IN DT NNS IN DT NN TO VB DT NN . Pakistani officials said military fighter jets and helicopter gunships pounded tribal areas in northwestern Pakistan on Sunday , killing at least 30 insurgents and destroying seven militant hide-outs . JJ NNS VBD JJ NN NNS CC NN NNS VBD JJ NNS IN JJ NNP IN NNP , VBG IN JJS CD NNS CC VBG CD JJ NNS . Pakistan launched the offensive in Orakzai to rout Taliban fighters from the mountainous area near its border with Afghanistan . NNP VBD DT NN IN NNP TO NN NNP NNS IN DT JJ NN IN PRP$ NN IN NNP . Elsewhere in Pakistan 's tribal region , suspected militants released 50 of the 60 people kidnapped at gunpoint in Kurram on Saturday . RB IN NNP POS JJ NN , VBN NNS VBN CD IN DT CD NNS VBN IN NN IN NNP IN NNP . Local officials say tribal elders are helping to negotiate the release of the remaining hostages . JJ NNS VBP JJ NNS VBP VBG TO VB DT NN IN DT VBG NNS . Delegations from Somalia 's interim government and opposition groups are meeting in Djibouti Saturday for United Nations brokered peace talks . NNS IN NNP POS JJ NN CC NN NNS VBP VBG IN NNP NNP IN NNP NNP VBD NN NNS . Two explosions along the road to the airport outside the Somali capital , Mogadishu , Friday briefly delayed President Abdullahi Yousuf and Prime Minister Hussein Nur Adde as they prepared to fly to the meeting . CD NNS IN DT NN TO DT NN IN DT JJ NN , NNP , NNP RB VBD NNP NNP NNP CC NNP NNP NNP NNP NNP IN PRP VBD TO VB TO DT NN . After the explosions Ethiopian backed government forces opened fire on insurgents killing at least two civilians . IN DT NNS JJ JJ NN NNS VBD NN IN NNS VBG IN JJS CD NNS . During three days of meetings in Djibouti , the groups will try to finalize details of a peace agreement worked out in June between the Somali government and the opposition Alliance for the Re-liberation of Somalia . IN CD NNS IN NNS IN NNP , DT NNS MD VB TO VB NNS IN DT NN NN VBN RP IN NNP IN DT JJ NN CC DT NN NNP IN DT NN IN NNP . Somalia has not had a stable government since 1991 . NNP VBZ RB VBN DT JJ NN IN CD . Fighting between government forces and insurgents has killed thousands of Somalis and displaced more than a million others . VBG IN NN NNS CC NNS VBZ VBN NNS IN NNS CC VBN JJR IN DT CD NNS . Officials in the eastern European nation of Slovakia say two wild birds found dead appear to have carried the H5N1 strain of bird flu . NNS IN DT JJ JJ NN IN NNP VBP CD JJ NNS VBN JJ VBP TO VB VBN DT NNP NN IN NN NN . Slovakian Agriculture Minister Zsolt Simon said Thursday , the strain was detected in a white grebe found in the capital , Bratislava , and in a peregrine falcon found in Gabcikovo , at the border with Hungary . JJ NN NN NNP NNP VBD NNP , DT NN VBD VBN IN DT JJ NN VBN IN DT NN , NNP , CC IN DT NN NN VBD IN NNP , IN DT NN IN NNP . He said samples from the birds have been sent to the European Union reference laboratory in Britain . PRP VBD NNS IN DT NNS VBP VBN VBN TO DT NNP NNP NN NN IN NNP . Slovakia is the latest European Union nation to confirm H5N1 cases . NNP VBZ DT JJS JJ NNP NN TO VB NNP NNS . The strain has already been confirmed in France , Germany , Greece , Hungary , Slovenia , Italy and Austria . DT NN VBZ RB VBN VBN IN NNP , NNP , NNP , NNP , NNP , NNP CC NNP . Austrian officials Wednesday reported the first European Union case of the deadly disease in poultry . JJ NNS NNP VBD DT JJ NNP NNP NN IN DT JJ NN IN NN . Bird flu has killed 92 people worldwide since 2003 , mostly in Asia . NN NN VBZ VBN CD NNS JJ IN CD , RB IN NNP . A pair of upsets have highlighted play at the Adelaide International men 's hardcourt tennis championships , with third-seeded Tommy Robredo of Spain and number four Mario Ancic of Croatia both losing . DT NN IN NNS VBP VBN NN IN DT NNP NNP NNS POS NN NN NNS , IN JJ NNP NNP IN NNP CC NN CD NNP NNP IN NNP DT VBG . Florent Serra of France needed three sets to eliminate Robredo , 07-Jun , 03-Jun , 06-Mar on Wednesday , while Belgium 's Xavier Malisse topped Ancic , 03-Jun , 06-Mar , 07-Jun in their second round match . JJ NNP IN NNP VBD CD NNS TO VB NNP , CD , CD , CD IN NNP , IN NNP POS NNP NNP VBD NNP , CD , CD , CD IN PRP$ JJ NN NN . Serra will play seventh-seeded Jarkko Nieminen in the third round , after the Finnish player beat Germany 's Florian Mayer , 07-Jun , 07-May . NNP MD VB JJ NNP NNP IN DT JJ NN , IN DT JJ NN VBD NNP POS NNP NNP , CD , CD . Top-seeded Lleyton Hewitt of Australia will play his second round match Thursday against Germany 's Philipp Kohlschreiber . JJ NNP NNP IN NNP MD VB PRP$ JJ NN NN NNP IN NNP POS NNP NNP . Bangladeshi medical officials are struggling to treat the victims of a fire that has killed at least 114 people in the capital , Dhaka . JJ JJ NNS VBP VBG TO VB DT NNS IN DT NN WDT VBZ VBN IN JJS CD NNS IN DT NN , NNP . According to local news reports , the state-run Dhaka Medical College has admitted at least 100 people with burn injuries , since the huge fire destroyed several buildings in Dhaka 's densely-populated old section . VBG TO JJ NN NNS , DT JJ NNP NNP NNP VBZ VBN IN JJS CD NNS IN JJ NNS , IN DT JJ NN VBD JJ NNS IN NNP POS JJ JJ NN . Bangladeshi officials said the blaze started Thursday night when an electrical transformer exploded . JJ NNS VBD DT NN VBD NNP NN WRB DT JJ NN VBD . Witnesses say chemicals inside shops worsened the fire as it spread through apartment buildings . NNS VBP NNS IN NNS VBD DT NN IN PRP VBD IN NN NNS . Narrow roads in the centuries-old Kayettuli neighborhood hampered rescue efforts , leaving many residents trapped inside the area 's tightly-packed buildings . NNP NNS IN DT JJ NNP NN VBN NN NNS , VBG JJ NNS VBN IN DT NN POS JJ NNS . The Bangladeshi government has declared Saturday a national day of mourning . DT JJ NN VBZ VBN NNP DT JJ NN IN NN . The fire was the second deadly accident in Dhaka this week . DT NN VBD DT JJ JJ NN IN NNP DT NN . On Tuesday , a building collapsed , killing at least 25 people . IN NNP , DT NN VBD , VBG IN JJS CD NNS . European Union officials say the 16 nations that use the euro face a recession this year , which will bring rising unemployment and growing government debts . NNP NNP NNS VBP DT CD NNS WDT VBP DT NN VBP DT NN DT NN , WDT MD VB VBG NN CC VBG NN NNS . Officials say the economies will shrink by 1.9 % this year , while unemployment goes above 9 % . NNS VBP DT NNS MD VB IN CD NN DT NN , IN NN VBZ IN CD NN . The forecast is even gloomier than one issued in November . DT NN VBZ RB JJR IN CD VBN IN NNP . Experts predict the EU economy will recover somewhat in the second half of this year , and resume growth in 2010 , but warn the outlook is uncertain . NNS VBP DT NNP NN MD VB RB IN DT JJ NN IN DT NN , CC VB NN IN CD , CC VBP DT NN VBZ JJ . European nations are trying to ease the impact of the recession by crafting stimulus packages that now total in the hundreds of billions of dollars , which will boost government deficits . JJ NNS VBP VBG TO VB DT NN IN DT NN IN VBG NN NNS WDT RB VBP IN DT NNS IN NNS IN NNS , WDT MD VB NN NNS . U.S. authorities have charged an American college student with providing aid to terrorists . NNP NNS VBP VBN DT JJ NN NN IN VBG NN TO NNS . Court papers unsealed this week show that Syed Haris Ahmed , a mechanical engineering student at Georgia Tech in Atlanta was arrested on March 23 after a year-long investigation . NN NNS VBN DT NN VBP WDT NNP NNP NNP , DT JJ NN NN IN NNP NNP IN NNP VBD VBN IN NNP CD IN DT JJ NN . Authorities accuse Ahmed , who was born in Pakistan , of attending a terrorist training camp in Pakistan last year . NNS VBP NNP , WP VBD VBN IN NNP , IN VBG DT JJ NN NN IN NNP JJ NN . Ahmed has pleaded not guilty . NNP VBZ VBN RB JJ . He is being held at an undisclosed location . PRP VBZ VBG VBN IN DT JJ NN . Authorities say another person from the Atlanta area , 19-year-old Ehsanul Islam Sadequee , was arrested in Bangladesh in connection with the investigation of Ahmed . NNS VBP DT NN IN DT NNP NN , JJ NNP NNP NNP , VBD VBN IN NNP IN NN IN DT NN IN NNP . They say he is being flown to New York to face charges . PRP VBP PRP VBZ VBG VBN TO NNP NNP TO VB NNS . Officials say this is the first international terrorism charge filed in the state of Georgia . NNS VBP DT VBZ DT JJ JJ NN NN VBN IN DT NN IN NNP . North Korea says its National Security Service has arrested several of its citizens who were working as spies for a foreign country . NNP NNP VBZ PRP$ NNP NNP NNP VBZ VBN JJ IN PRP$ NNS WP VBD VBG IN NNS IN DT JJ NN . The official Korean Central News Agency reports Wednesday that a foreign espionage agency coerced the North Koreans with money , sex and blackmail . DT JJ JJ NNP NNP NNP VBZ NNP IN DT JJ NN NN VBD DT NNP NNS IN NN , NN CC NN . Several foreigners were also arrested . JJ NNS VBD RB VBN . The news report says the agents had posed as businessmen and used cameras , and global positioning systems to take pictures and draw maps of key military facilities . DT NN NN VBZ DT NNS VBD VBN IN NNS CC VBN NNS , CC JJ NN NNS TO VB NNS CC VB NNS IN JJ JJ NNS . North Korea says the spies also were asked to collect information on military and state secrets and spread the ideas of freedom and democracy . NNP NNP VBZ DT NNS RB VBD VBN TO VB NN IN JJ CC NN NNS CC VBD DT NNS IN NN CC NN . It did not identify the foreign country or the spy agency . PRP VBD RB VB DT JJ NN CC DT NN NN . This is the first time in recent years that North Korea has announced the arrest of spies . DT VBZ DT JJ NN IN JJ NNS IN NNP NNP VBZ VBN DT NN IN NNS . U.S. Secretary of State Condoleezza Rice is in Israel , at the start of a two-day push to revive the Middle East peace process . NNP NNP IN NNP NNP NNP VBZ IN NNP , IN DT NN IN DT JJ NN TO VB DT NNP NNP NN NN . Before her arrival , Ms. Rice said resolving the Israeli-Palestinian conflict is a top priority . IN PRP$ NN , NNP NNP VBD VBG DT JJ NN VBZ DT JJ NN . She also urged both sides to build on the recently-completed Israeli pullout from the Gaza Strip to reach a two-state solution to the decades-long conflict . PRP RB VBD DT NNS TO VB IN DT JJ JJ NN IN DT NNP NNP TO VB DT JJ NN TO DT JJ NN . The U.S. diplomat is to address an Israeli think-tank later Sunday before meeting with Prime Minister Ariel Sharon . DT NNP NN VBZ TO VB DT JJ NN RB NNP IN VBG IN NNP NNP NNP NNP . She meets with Palestinian leader Mahmoud Abbas Monday in the West Bank . PRP VBZ IN JJ NN NNP NNP NNP IN DT NNP NNP . Earlier today in Saudi Arabia , Ms. Rice had talks with Saudi leaders on the war on terror and the Israeli-Palestinian conflict . RB NN IN NNP NNP , NNP NNP VBD NNS IN JJ NNS IN DT NN IN NN CC DT JJ NN . She later said both countries are united in fighting terrorism , and said both governments could do more to improve the image of the United States within the kingdom . PRP RB VBD DT NNS VBP VBN IN VBG NN , CC VBD DT NNS MD VB JJR TO VB DT NN IN DT NNP NNPS IN DT NN . Rescuers in western Nepal continue to search for more than 100 people missing since a suspension bridge collapsed . NNS IN JJ NNP VBP TO VB IN JJR IN CD NNS VBG IN DT NN NN VBD . Local authorities say rescue workers recovered 14 bodies , including children , from the icy waters of the Bheri River in the remote Surkhet district . JJ NNS VBP NN NNS VBD CD NNS , VBG NNS , IN DT NN NNS IN DT NNP NNP IN DT JJ NNP NN . They say at least 32 seriously injured people were taken to hospitals , and one person died on the way . PRP VBP IN JJS CD RB JJ NNS VBD VBN TO NNS , CC CD NN VBD IN DT NN . Dozens more with light injuries were treated at the scene Tuesday and allowed to go home . NNS RBR IN JJ NNS VBD VBN IN DT NN NNP CC VBD TO VB NN . Police say scores of people managed to swim to safety , but many more may have been swept downstream . NNS VBP NNS IN NNS VBD TO VB TO NN , CC JJ JJR MD VB VBN VBN NN . Authorities believe hundreds of people were crossing the bridge to attend a religious festival when its support cables snapped under the weight . NNS VBP NNS IN NNS VBD VBG DT NN TO VB DT JJ NN WRB PRP$ NN NNS VBD IN DT NN . The leader of Lebanon 's parliamentary majority has accused Syria and Iran of seeking to impose a political and terrorist presence in Lebanon . DT NN IN NNP POS JJ NN VBZ VBN NNP CC NNP IN VBG TO VB DT JJ CC JJ NN IN NNP . Saad al-Hariri made his remarks in a speech Thursday to party members and supporters . NNP NNP VBD PRP$ NNS IN DT NN NNP TO NN NNS CC NNS . He also called on supporters to attend a rally next week marking the third anniversary of the assassination of his father , former Lebanese Prime Minister Rafik al-Hariri , who was killed in a car bombing in Beirut on February 14 , 2005 . PRP RB VBD IN NNS TO VB DT NN JJ NN VBG DT JJ NN IN DT NN IN PRP$ NN , JJ JJ NNP NNP NNP NNP , WP VBD VBN IN DT NN NN IN NNP IN NNP CD , CD . Several other anti-Syrian political figures in Lebanon have since been assassinated , but Syria has denied involvement in the killings . JJ JJ JJ JJ NNS IN NNP VBP IN VBN VBN , CC NNP VBZ VBN NN IN DT NNS . Lebanon is facing a crisis as the country 's political factions struggle to resolve their differences and elect a new president . NNP VBZ VBG DT NN IN DT NN POS JJ NNS NN TO VB PRP$ NNS CC VB DT JJ NN . The parliamentary vote for a new president has been postponed 13 times and is now scheduled for Monday . DT JJ NN IN DT JJ NN VBZ VBN VBN CD NNS CC VBZ RB VBN IN NNP . Lebanon has been without a president since November 23 , when the term of pro-Syrian President Emile Lahoud expired . NNP VBZ VBN IN DT NN IN NNP CD , WRB DT NN IN JJ NNP NNP NNP VBD . Human Rights Watch has called for the investigation of Sudanese President Omar al-Bashir 's role in crimes against humanity committed in his country 's Darfur region . NNP NNP NNP VBZ VBN IN DT NN IN JJ NNP NNP NNP POS NN IN NNS IN NN VBN IN PRP$ NN POS NNP NN . In a report , the group listed 20 other government , military , and Janjaweed militia members who should also be investigated . IN DT NN , DT NN VBN CD JJ NN , JJ , CC NNP NNP NNS WP MD RB VB VBN . The report is being submitted to the prosecutor of the International Criminal Court which is scheduled to brief the United Nations Security Council Monday on the situation in Darfur . DT NN VBZ VBG VBN TO DT NN IN DT NNP NNP NNP WDT VBZ VBN TO VB DT NNP NNP NNP NNP NNP IN DT NN IN NNP . A Human Rights Watch official Peter Takirambudde , HRW Africa Director , says senior Sudanese officials must be held accountable for the ethnic cleansing in Darfur . DT NNP NNPS NNP NN NNP NNP , NNP NNP NNP , VBZ JJ JJ NNS MD VB VBN JJ IN DT JJ NN IN NNP . Since the war erupted in 2003 between rebels and government-backed militia , an estimated 1,80,000 people have died , and two million others have been displaced . IN DT NN VBD IN CD IN NNS CC JJ NN , DT JJ CD NNS VBP VBN , CC CD CD NNS VBP VBN VBN . Iraq 's main Sunni Arab coalition has challenged partial vote results showing a strong lead for a Shi'ite coalition in last week 's parliamentary elections . NNP POS JJ NNP NNP NN VBZ VBN JJ NN NNS VBG DT JJ NN IN DT JJ NN IN JJ NN POS JJ NNS . Leaders for the Iraqi Consensus Front said the preliminary totals did not match those recorded by party monitors in Baghdad province , and warned they may call for a re-vote . NNS IN DT JJ NNP NNP VBD DT JJ NNS VBD RB VB DT VBN IN NN NNS IN NNP NN , CC VBD PRP MD VB IN DT JJ . Initial results show the Sunni coalition received 19 percent of the vote , and the Shi'ite-led United Iraqi Alliance took 59 percent in Baghdad . JJ NNS VBP DT NNP NN VBD CD NN IN DT NN , CC DT JJ NNP JJ NNP VBD CD NN IN NNP . Final results are expected early next month . JJ NNS VBP VBN RB JJ NN . Meanwhile , U.S. Ambassador Zalmay Khalilzad expressed concern that results showed votes in other parts of Iraq were mostly divided along religious and ethnic lines . RB , NNP NNP NNP NNP VBD NN IN NNS VBD NNS IN JJ NNS IN NNP VBD RB VBN IN JJ CC JJ NNS . He said Iraq 's future relies on cross-ethnic cooperation . PRP VBD NNP POS NN VBZ IN JJ NN . In Washington , President Bush called Iraqi President Jalal Talabani and Prime Minister Ibrahim al-Jaafari Tuesday to congratulate them on the election . IN NNP , NNP NNP VBD JJ NNP NNP NNP CC NNP NNP NNP NNP NNP TO VB PRP IN DT NN . Firefighters in the western U.S. state of California are trying to contain more than 1,400 wildfires that have been burning for more than a week . NNS IN DT JJ NNP NN IN NNP VBP VBG TO VB JJR IN CD NNS WDT VBP VBN VBG IN JJR IN DT NN . State emergency officials say the fire is centered in the state 's northern region where 1,40,000 hectares have already burned . NN NN NNS VBP DT NN VBZ VBN IN DT NN POS JJ NN WRB CD NNS VBP RB VBN . Officials say more than 50 properties have been destroyed , while another 7,000 homes remain under threat . NNS VBP JJR IN CD NNS VBP VBN VBN , IN DT CD NNS VBP IN NN . So far no deaths have been reported , however , health officials have raised concerns over poor air quality . RB RB DT NNS VBP VBN VBN , RB , NN NNS VBP VBN NNS IN JJ NN NN . Some 1,800 people are working to contain the blaze with the help of at least 100 water-dropping helicopters . DT CD NNS VBP VBG TO VB DT NN IN DT NN IN IN JJS CD JJ NNS . On Saturday , President Bush declared a state of emergency for California and ordered federal aid to assist in firefighting efforts . IN NNP , NNP NNP VBD DT NN IN NN IN NNP CC VBD JJ NN TO VB IN JJ NNS . California is frequently hit by wildfires due to its arid climate and hot , dry winds . NNP VBZ RB VBN IN NNS JJ TO PRP$ JJ NN CC JJ , JJ NNS . Last year , fires destroyed more than 2,00,000 hectares and some 2,000 homes in southern California . JJ NN , NNS VBD JJR IN CD NNS CC DT CD NNS IN JJ NNP . Three Palestinians have been killed and at least 14 others injured during an Israeli raid on a refugee camp in the Gaza Strip . CD NNS VBP VBN VBN CC IN JJS CD NNS VBN IN DT JJ NN IN DT NN NN IN DT NNP NNP . Witnesses say Israeli tanks opened fire as they entered the Khan Younis camp in southern Gaza early Friday , followed by bulldozers that razed several houses . NNS VBP JJ NNS VBD NN IN PRP VBD DT NNP NNP NN IN JJ NNP JJ NNP , VBN IN NNS WDT VBD JJ NNS . Israel said the raid was intended to destroy launching points for mortar and rocket attacks into nearby Jewish settlements . NNP VBD DT NN VBD VBN TO VB NN NNS IN NN CC NN NNS IN JJ JJ NNS . An Israeli helicopter fired missiles at a Gaza building Thursday in Rafah . DT JJ NN VBD NNS IN DT NNP NN NNP IN NNP . Israeli military officials say the building housed a workshop used for weapons storage by the militant group Hamas . JJ JJ NNS VBP DT NN VBD DT NN VBN IN NNS NN IN DT JJ NN NNP . Palestinians from the area , however , say it was a carpentry shop . NNS IN DT NN , RB , VBP PRP VBD DT NN NN . The latest violence comes amid an offer by Israeli Prime Minister Ariel Sharon to coordinate his Gaza troop withdrawal plan with a future Palestinian government . DT JJS NN VBZ IN DT NN IN JJ NNP NNP NNP NNP TO VB PRP$ NNP NN NN NN IN DT JJ JJ NN . Voters in Taiwan are heading to the polls for parliamentary elections . NNS IN NNP VBP VBG TO DT NNS IN JJ NNS . The election could redefine Taiwan 's troubled relationship with mainland China . DT NN MD VB NNP POS JJ NN IN JJ NNP . At stake in Saturday 's election is control of Taiwan 's 225-seat legislature . IN NN IN NNP POS NN VBZ NN IN NNP POS JJ NN . Taiwan and China split in 1949 after a civil war . NNP CC NNP VBD IN CD IN DT JJ NN . Beijing considers the island its territory and says Taiwanese moves toward independence would provoke a war . NNP VBZ DT NN PRP$ NN CC VBZ JJ NNS IN NN MD VB DT NN . The election pits a pro-independence coalition , led by President Chen Shui-bian 's Democratic Progressive Party , against the Kuomintang and its allies , who favor improving relations with Beijing . DT NN VBZ DT JJ NN , VBN IN NNP NNP NNP POS JJ NNP NNP , IN DT NNP CC PRP$ NNS , WP VBP VBG NNS IN NNP . DPP Legislator Hsiao Bi-khim says the election is too close to call . NNP NNP NNP NNP VBZ DT NN VBZ RB JJ TO VB . ' But President Chen is fairly confident that we can win at least close to a majority in this election , ' he says . `` CC NNP NNP VBZ RB JJ IN PRP MD VB IN JJS RB TO DT NN IN DT NN , `` PRP VBZ . Polls close at four p.m. and results are expected a few hours later . NNS RB IN CD NN CC NNS VBP VBN DT JJ NNS RB . The U.S. military in Iraq says its warplanes have bombed a suspected al-Qaida safehouse in the western part of the country , near the Syrian border . DT NNP NN IN NNP VBZ PRP$ NNS VBP VBN DT JJ NNP NN IN DT JJ NN IN DT NN , IN DT JJ NN . The air strike , early Thursday , specifically targeted what the military said was a ' known bombmaking cell leader , ' Abu Mohammad , who was also believed to have participated in tribal fighting in the area . DT NN NN , JJ NNP , RB VBN WP DT NN VBD VBD DT `` VBN VBG NN NN , `` NNP NNP , WP VBD RB VBN TO VB VBN IN JJ NN IN DT NN . It was not clear if he was confirmed killed in the strike near the town of Husaybah . PRP VBD RB JJ IN PRP VBD VBN VBN IN DT NN IN DT NN IN NNP . In other news , rescued American hostage Roy Hallums is reported in good health and is expected to return to the United States within days . IN JJ NN , VBD JJ NN NNP NNP VBZ VBN IN JJ NN CC VBZ VBN TO VB TO DT NNP NNPS IN NNS . The U.S. military says within three hours of obtaining information on where he was being held from an Iraqi detainee they launched a successful mission Wednesday to free him . DT NNP NN VBZ IN CD NNS IN VBG NN IN WRB PRP VBD VBG VBN IN DT JJ NN PRP VBD DT JJ NN NNP TO VB PRP . Palestinian officials say Israeli forces operating in the Gaza Strip killed five Palestinians Monday . JJ NNS VBP JJ NNS VBG IN DT NNP NNP VBD CD NNS NNP . The officials say two of the dead were from Hamas and two were from Palestinian President Mahmoud Abbas ' security guard . DT NNS VBP CD IN DT NN VBD IN NNP CC CD VBD IN JJ NNP NNP NNP POS NN NN . They say the fifth victim was a civilian . PRP VBP DT JJ NN VBD DT JJ . Israeli forces entered the Gaza City district on Saturday as part of an operation against militants . JJ NNS VBD DT NNP NNP NN IN NNP IN NN IN DT NN IN NNS . Since then , Israeli troops have killed several suspected militants and wounded several people , including two journalists . IN RB , JJ NNS VBP VBN JJ JJ NNS CC VBD JJ NNS , VBG CD NNS . In a separate incident Monday , Hamas gunmen shot and killed a Palestinian motorist in southern Gaza when he refused to stop at a Hamas roadblock . IN DT JJ NN NNP , NNP NNS VBD CC VBD DT JJ NN IN JJ NNP WRB PRP VBD TO VB IN DT NNP NN . About 200 Afghans have demonstrated in Kabul against a death sentence given to an Afghan reporter accused of blasphemy . IN CD NNS VBP VBN IN NNP IN DT NN NN VBN TO DT JJ NN VBN IN JJ . The protesters marched to the United Nations office in the capital Thursday , calling for the immediate release of Sayed Perwiz Kambakhsh . DT NNS VBD TO DT NNP NNP NN IN DT NN NNP , VBG IN DT JJ NN IN NNP NNP NNP . An Afghan court sentenced the 23-year-old journalism student to death last week for defaming Islam . DT JJ NN VBD DT JJ NN NN TO NN JJ NN IN VBG NNP . He was detained in late October , 2007 for distributing articles about the role of women in Muslim society . PRP VBD VBN IN JJ NNP , CD IN VBG NNS IN DT NN IN NNS IN NNP NN . The case has attracted international attention with the United States and several human right groups expressing concern . DT NN VBZ VBN JJ NN IN DT NNP NNPS CC JJ JJ NN NNS VBG NN . The Paris-based media rights group Reporters Without Borders Thursday said authorities should quickly reexamine the case . DT JJ NNS NNS NN VBZ IN NNS NNP VBD NNS MD RB VB DT NN . It added that Kambakhsh and his family have been receiving death threats . PRP VBD IN NNP CC PRP$ NN VBP VBN VBG NN NNS . Under Islamic law stipulated in Afghanistan 's constitution , blasphemy is punishable by death . IN NNP NN VBN IN NNP POS NN , NN VBZ JJ IN NN . But Afghan President Hamid Karzai has to approve any death sentences before they are carried out . CC JJ NNP NNP NNP VBZ TO VB DT NN NNS IN PRP VBP VBN RP . Bird flu experts from U.N. agencies are in Nigeria to assist in efforts to contain the lethal strain of the virus . NNP NN NNS IN NNP NNS VBP IN NNP TO VB IN NNS TO VB DT JJ NN IN DT NN . Officials from the World Health Organization and Food and Agriculture Organization have joined local authorities to inform farmers and others about the potential risks . NNS IN DT NNP NNP NNP CC NNP CC NNP NNP VBP VBN JJ NNS TO VB NNS CC NNS IN DT JJ NNS . A highly pathogenic version of the H5N1 strain was recently discovered in birds on a farm in the northern state of Kaduna . DT RB JJ NN IN DT NNP NN VBD RB VBN IN NNS IN DT NN IN DT JJ NN IN NNP . The case was the first of the lethal strain of bird flu reported on the African continent . DT NN VBD DT NN IN DT JJ NN IN NN NN VBN IN DT JJ NN . Health officials are awaiting test results from two children in Kaduna who recently became sick to determine if they are Africa 's first human cases of bird flu . NNP NNS VBP VBG NN NNS IN CD NNS IN NNP WP RB VBD JJ TO VB IN PRP VBP NNP POS JJ JJ NNS IN NN NN . Somalia 's parliament has passed a no confidence motion against the prime minister and his cabinet , effectively dissolving the government . NNP POS NN VBZ VBN DT DT NN NN IN DT JJ NN CC PRP$ NN , RB VBG DT NN . Lawmakers said Saturday Prime Minister Mohamed Ali Gedi failed to respect a power-sharing deal when he named a cabinet that was not equally divided between Somalia 's ethnic groups . NNS VBD NNP NNP NNP NNP NNP NNP VBD TO VB DT JJ NN WRB PRP VBD DT NN WDT VBD RB RB VBN IN NNP POS JJ NNS . They also said the prime minister violated the constitution by failing to seek a vote of confidence from lawmakers . PRP RB VBD DT JJ NN VBD DT NN IN VBG TO VB DT NN IN NN IN NNS . Somali President Abdullahi Yusef Ahmed will now have to appoint another prime minister . JJ NNP NNP NNP NNP MD RB VB TO VB DT JJ NN . The president was himself elected by the parliament in October . DT NN VBD PRP VBN IN DT NN IN NNP . He has promised to restore stability to Somalia , wracked by clan violence and lawlessness following the overthrow of the government 13 years ago . PRP VBZ VBN TO VB NN TO NNP , VBN IN JJ NN CC NN VBG DT NN IN DT NN CD NNS RB . Somalia 's parliament has been meeting in the Kenyan capital , Nairobi , due to security concerns at home . NNP POS NN VBZ VBN VBG IN DT JJ NN , NNP , JJ TO NN NNS IN NN . The number of confirmed dead in Somalia from South Asia 's earthquake generated tsunami has risen to at least 142 people . DT NN IN VBN NN IN NNP IN NNP NNP POS NN VBD NN VBZ VBN TO IN JJS CD NNS . A spokesman for the Somali government , Yusuf Ismail Baribari , says relief agencies are rushing aid to communities along the northeastern shoreline . DT NN IN DT JJ NN , NNP NNP NNP , VBZ NN NNS VBP VBG NN TO NNS IN DT JJ NN . The worst hit area is the Somali island of Hafun . DT JJS NN NN VBZ DT JJ NN IN NNP . Most of the dead are believed to be fishermen who were in boats when huge waves struck the coastline on December 26 . JJS IN DT NN VBP VBN TO VB NNS WP VBD IN NNS WRB JJ NNS VBD DT NN IN NNP CD . The Somali government says thousands in the region need immediate aid . DT JJ NN VBZ NNS IN DT NN VBP JJ NN . There are reports of acute diarrhea and concerns that outbreaks of cholera will follow . EX VBP NNS IN JJ NN CC NNS IN NNS IN NN MD VB . The tsunami also took lives in Tanzania , Seychelles and Kenya . DT NN RB VBD NNS IN NNP , NNP CC NNP . NATO officials say a rocket attack in southern Afghanistan has killed a coalition soldier involved in the ongoing fight against the resurgent Taleban . NNP NNS VBP DT NN NN IN JJ NNP VBZ VBN DT NN NN VBN IN DT JJ NN IN DT JJ NNP . Officials say the rocket struck a military vehicle Tuesday , in Kandahar province . NNS VBP DT NN VBD DT JJ NN NNP , IN NNP NN . There is no word on the NATO soldier 's nationality . EX VBZ DT NN IN DT NNP NN POS NN . Separately , Afghan officials say Taleban militants attacked a police checkpoint in the eastern province of Khost late Monday . RB , JJ NNS VBP NNP NNS VBD DT NN NN IN DT JJ NN IN NNP JJ NNP . Two militants and a police officer were killed . CD NNS CC DT NN NN VBD VBN . NATO-led military forces are fighting alongside Afghan troops in their effort to repel Taleban insurgents fighting against the U.S.-backed Kabul government . JJ NN NNS VBP VBG IN JJ NNS IN PRP$ NN TO VB NNP NNS VBG IN DT JJ NNP NN . Attacks by the Taleban , including an increasing number of suicide bombings , have surged this year . NNS IN DT NNP , VBG DT VBG NN IN NN NNS , VBP VBN DT NN . The extremist group was forced from power almost five years ago in an offensive led by the United States . DT NN NN VBD VBN IN NN RB CD NNS RB IN DT NN VBN IN DT NNP NNPS . Millions of Americans could lose their homes this year and in 2009 as foreclosures across the United States are occurring at the highest rate in decades . NNS IN NNS MD VB PRP$ NNS DT NN CC IN CD IN NNS IN DT NNP NNPS VBP VBG IN DT JJS NN IN NNS . At the beginning of the year , the number of homes facing foreclosure jumped more than 57 percent compared to a year ago . IN DT NN IN DT NN , DT NN IN NNS VBG NN VBD JJR IN CD NN VBN TO DT NN RB . The foreclosure crisis is worsening despite ongoing efforts by some lenders and the federal government to help borrowers manage the mortgage payments on their homes . DT NN NN VBZ VBG IN JJ NNS IN DT NNS CC DT JJ NN TO VB NNS VB DT NN NNS IN PRP$ NNS . VOA 's Chris Simkins reports on how one organization is helping people save their homes . NNP POS NNP NNPS VBZ IN WRB CD NN VBZ VBG NNS VB PRP$ NNS . A previously-unknown group in Iraq has claimed responsibility for last week 's bomb attack on a Shi'ite funeral that killed at least 50 people and wounded 80 others . DT JJ NN IN NNP VBZ VBN NN IN JJ NN POS NN NN IN DT NNP NN WDT VBD IN JJS CD NNS CC VBD CD NNS . In an internet statement Sunday , the group said it carried out the attack to demonstrate opposition to Shi'ites who are set to take control of Iraq 's new government this week . IN DT NN NN NNP , DT NN VBD PRP VBD IN DT NN TO VB NN TO NNS WP VBP VBN TO VB NN IN NNP POS JJ NN DT NN . Separately , U.S. officials say two American civilian security contractors have been killed and a third wounded in a roadside bomb blast south of Baghdad . RB , NNP NNS VBP CD JJ JJ NN NNS VBP VBN VBN CC DT JJ VBN IN DT NN NN NN NN IN NNP . Meanwhile , Kurdish negotiators say they are nearing a deal with the dominant Shi'ite alliance on forming a coalition government . RB , NNP NNS VBP PRP VBP VBG DT NN IN DT JJ NNP NN IN VBG DT NN NN . Kurdish negotiator Fuad Masoum said the talks will resume Monday in Baghdad - two days before the Iraqi National Assembly convenes for the first time since January elections . JJ NN NNP NNP VBD DT NNS MD VB NNP IN NNP IN CD NNS IN DT JJ NNP NNP VBZ IN DT JJ NN IN NNP NNS . A leading figure in Latin jazz music , Ray Barretto , has died . DT VBG NN IN JJ NN NN , NNP NNP , VBZ VBN . The Grammy-winning percussionist , known as ' Hard Hands ' for his work on the conga drums , died Friday in the northeastern U.S. state of New Jersey . DT JJ NN , VBN IN `` NNP NNPS `` IN PRP$ NN IN DT NN NNS , VBD NNP IN DT JJ NNP NN IN NNP NNP . He was 76 . PRP VBD CD . His family did not give a cause of death , but he underwent heart bypass surgery earlier this year . PRP$ NN VBD RB VB DT NN IN NN , CC PRP VBD NN NN NN RBR DT NN . Barretto was raised in the United States by Puerto Rican immigrants . NNP VBD VBN IN DT NNP NNPS IN NNP JJ NNS . In a career that spanned more than four decades , Barretto played with such jazz greats as Dizzy Gillespie and Tito Puente . IN DT NN WDT VBD JJR IN CD NNS , NNP VBD IN JJ NN NNS IN JJ NNP CC NNP NNP . He won a Grammy with Cuban salsa singer Celia Cruz in 1990 , for a single called Rhythm in the Heart . PRP VBD DT NN IN JJ NN NN NNP NNP IN CD , IN DT JJ VBN NN IN DT NNP . His latest album , Time Was - Time Is , was nominated for a Grammy this year for Best Latin Jazz Album . PRP$ JJS NN , NNP NNP NNP NNP NNP , VBD VBN IN DT NNP DT NN IN NNP NNP NNP NNP . Taiwan has withdrawn permits allowing journalists from China 's official Xinhua news agency and People 's Daily newspaper to report from Taipei . NNP VBZ VBN NNS VBG NNS IN NNP POS JJ NNP NN NN CC NNS POS JJ NN TO VB IN NNP . Joseph Wu , chairman of Taiwan 's Mainland Affairs Council , said Sunday the decision was part of an overall review of exchanges with China , which regards Taiwan as a breakaway province . NNP NNP , NN IN NNP POS NNP NNP NNP , VBD NNP DT NN VBD NN IN DT JJ NN IN NNS IN NNP , WDT VBZ NNP IN DT NN NN . Taiwan President Chen Shui-bian 's government announced its intention to conduct such a policy review after Beijing adopted a new anti-secession law approving the use of force against Taiwan if the island declares independence . NNP NNP NNP NNP POS NN VBD PRP$ NN TO VB JJ DT NN NN IN NNP VBD DT JJ JJ NN VBG DT NN IN NN IN NNP IN DT NN VBZ NN . All journalists from the mainland had been barred from Taipei for more than five decades until late 2000 , when Taiwan issued a limited number of permits to Chinese reporters . DT NNS IN DT NN VBD VBN VBN IN NNP IN JJR IN CD NNS IN JJ CD , WRB NNP VBD DT JJ NN IN NNS TO JJ NNS . Haiti hosts a donors conference Tuesday , hoping to secure at least $ 5 billion in pledges to help the impoverished Caribbean nation jump start its economy and make vital repairs to infrastructure . NNP VBZ DT NNS NN NNP , VBG TO VB IN JJS $ CD CD IN NNS TO VB DT JJ JJ NN NN VB PRP$ NN CC VB JJ NNS TO NN . Delegates at the conference will include representatives from the United States , European Union , and the Inter-American Development Bank . NNS IN DT NN MD VB NNS IN DT NNP NNPS , NNP NNP , CC DT NNP NNP NNP . Haitian leaders say building roads , revitalizing agriculture , and boosting education and health care services are their priority . JJ NNS VBP VBG NNS , VBG NN , CC VBG NN CC NN NN NNS VBP PRP$ NN . Haiti 's economic problems continue and living standards remain low more than two years after a rebellion that overthrew President Jean-Bertrand Aristide . NNP POS JJ NNS VBP CC VBG NNS VBP JJ JJR IN CD NNS IN DT NN WDT VBD NNP NNP NNP . Venezuela 's foreign ministry has rejected Colombian charges that Venezuelan President Hugh Chavez is linked to the rebel group , FARC . NNP POS JJ NN VBZ VBN JJ NNS IN JJ NNP NNP NNP VBZ VBN TO DT NN NN , NNP . Venezuelan Foreign Minister Nicolas Maduro also said he does not recognize documents Colombia says prove the charges . JJ NNP NNP NNP NNP RB VBD PRP VBZ RB VB NNS NNP VBZ VB DT NNS . He called the documents inconsistent and incomprehensible . PRP VBD DT NNS JJ CC JJ . But Colombian authorities say the documents show that Mr. Chavez planned to give FARC rebels $ 300 million . CC JJ NNS VBP DT NNS VBP IN NNP NNP VBD TO VB NNP NNS $ CD CD . They say the documents were found in the computer of FARC leader Raul Reyes during a cross-border raid in Ecuador last month . PRP VBP DT NNS VBD VBN IN DT NN IN NNP NN NNP NNP IN DT JJ NN IN NNP JJ NN . Reyes was killed in that raid . NNP VBD VBN IN DT NN . Venezuela and Ecuador responded to the raid by taking diplomatic action against Colombia and sending troops to the border with Colombia . NNP CC NNP VBD TO DT NN IN VBG JJ NN IN NNP CC VBG NNS TO DT NN IN NNP . The leaders of all three countries have since said they have settled the crisis . DT NNS IN DT CD NNS VBP IN VBN PRP VBP VBN DT NN . Colombia apologized for the raid but called it a necessary part of the struggle against the FARC . NNP VBD IN DT NN CC VBD PRP DT JJ NN IN DT NN IN DT NNP . A suicide car bomb exploded in southern Iraq Sunday outside an apartment building used by a Shi'ite militia , killing at least one person and wounding several others . DT NN NN NN VBD IN JJ NNP NNP IN DT NN NN VBN IN DT NNP NN , VBG IN JJS CD NN CC VBG JJ NNS . The attack in Basra , Iraq 's second city , apparently was aimed at the Iranian-backed Badr Brigade militia . DT NN IN NNP , NNP POS JJ NN , RB VBD VBN IN DT JJ NNP NNP NN . News reports say Basra 's former governor Hassan al-Rashid , a senior militia leader , escaped unharmed . NNP NNS VBP NNP POS JJ NN NNP NNP , DT JJ NN NN , VBD JJ . Basra has been hit by several recent bombings ahead of next Saturday 's ( October 15 ) vote on a new national constitution . NNP VBZ VBN VBN IN JJ JJ NNS RB IN JJ NNP POS LRB NNP CD RRB NN IN DT JJ JJ NN . Authorities in Baghdad say security will heightened nationwide for the referendum , with curfews and a ban on car travel in many areas . NNS IN NNP VBP NN MD VBN NN IN DT NN , IN NNS CC DT NN IN NN NN IN JJ NNS . Iraq 's borders will be closed to deter infiltration by insurgents , and coalition forces will protect polling places . NNP POS NNS MD VB VBN TO VB NN IN NNS , CC NN NNS MD VB VBG NNS . Wildlife workers in New Zealand have shot dozens of whales that beached on the country 's South Island . NN NNS IN NNP NNP VBP VBN NNS IN NNS WDT VBD IN DT NN POS NNP NNP . Officials say a rescue operation had become too dangerous . NNS VBP DT NN NN VBD VBN RB JJ . Forty-nine pilot whales came ashore since Saturday in a remote region known as Farewell Spit . CD NN NNS VBD RB IN NNP IN DT JJ NN VBN IN NNP NNP . Eight of them died on the beaches . CD IN PRP VBD IN DT NNS . The remaining 41 whales were spread over a wide area , more than a kilometer from the shore . DT VBG CD NNS VBD VBN IN DT JJ NN , JJR IN DT NN IN DT NN . A New Zealand conservation official said it was hopeless to try refloating the whales because of rough seas . DT NNP NNP NN NN VBD PRP VBD JJ TO VB VBG DT NNS IN IN JJ NNS . He said wildlife officers shot the whales to prevent them from suffering a long and painful death . PRP VBD NN NNS VBD DT NNS TO VB PRP IN VBG DT JJ CC JJ NN . It was the second major stranding of whales in the area in recent weeks . PRP VBD DT JJ JJ NN IN NNS IN DT NN IN JJ NNS . Volunteers managed to refloat more than 100 whales that beached in the earlier incident . NNS VBD TO VB JJR IN CD NNS WDT VBD IN DT JJR NN . Authorities in Saudi Arabia say a fourth French national has died of wounds suffered in an attack in northwestern Saudi Arabia . NNS IN NNP NNP VBP DT JJ JJ NN VBZ VBN IN NNS VBN IN DT NN IN JJ NNP NNP . Officials say a teenager died in a hospital Tuesday of wounds sustained when gunmen shot at a group of nine French nationals who had stopped along a road on Monday . NNS VBP DT NN VBD IN DT NN NNP IN NNS VBN WRB NNS VBD IN DT NN IN CD JJ NNS WP VBD VBN IN DT NN IN NNP . Three had died shortly after the attack . CD VBD VBN RB IN DT NN . A Saudi spokesman said the French nationals were residents of the Saudi kingdom who had been visiting historic sites . DT NNP NN VBD DT JJ NNS VBD NNS IN DT NNP NN WP VBD VBN VBG JJ NNS . Saudi Arabia has been battling al-Qaida militants in the kingdom , and the terrorist group has targeted Westerners in the past . NNP NNP VBZ VBN VBG NNP NNS IN DT NN , CC DT JJ NN VBZ VBN NNS IN DT NN . A four-day-long public holiday began in Iraq Thursday , ahead of Saturday 's referendum on a new constitution . DT JJ JJ NN VBD IN NNP NNP , RB IN NNP POS NN IN DT JJ NN . New checkpoints and concrete security barriers began appearing near polling stations , and a nighttime curfew was to go into effect . JJ NNS CC JJ NN NNS VBD VBG IN VBG NNS , CC DT JJ NN VBD TO VB IN NN . Friday , Iraq will close its borders and vehicles will be banned . NNP , NNP MD VB PRP$ NNS CC NNS MD VB VBN . In pre-election violence , two policemen were killed in the northern city of Kirkuk , and roadside bombs in Mosul and Tikrit killed two civilians and an American soldier . IN JJ NN , CD NNS VBD VBN IN DT JJ NN IN NNP , CC NN NNS IN NNP CC NNP VBD CD NNS CC DT JJ NN . About 15.5 million Iraqis are eligible to vote . IN CD CD NNS VBP JJ TO VB . Today , detainees who have not been convicted of a crime , as well as hospital patients , were authorized to began casting their ballots early . NN , NNS WP VBP RB VBN VBN IN DT NN , RB RB IN NN NNS , VBD VBN TO VBD VBG PRP$ NNS RB . Late Wednesday , parliament approved a deal designed to win support from Sunni Arabs , who have generally been against the constitution . RB NNP , NN VBD DT NN VBN TO VB NN IN NNP NNS , WP VBP RB VBN IN DT NN . But many Sunni groups say they will still vote ' no . ' CC JJ NNP NNS VBP PRP MD RB VB `` DT . `` People around the world are celebrating the Christmas holiday Sunday , in both religious and secular settings . NNS IN DT NN VBP VBG DT NNP NN NNP , IN DT JJ CC JJ NNS . Christians celebrate the holiday as the birth date of Jesus Christ . NNPS VBP DT NN IN DT NN NN IN NNP NNP . They attend church , light ceremonial candles , and sing hymns to commemorate God 's coming to Earth in the form of a man . PRP VBP NN , VBP JJ NNS , CC VBP NNS TO VB NNP POS VBG TO NNP IN DT NN IN DT NN . Christmas is also celebrated as a secular , gift-giving holiday , making December one of the most lucrative times of the year for many Western retail stores . NNP VBZ RB VBN IN DT NN , JJ NN , VBG NNP CD IN DT RBS JJ NNS IN DT NN IN JJ JJ JJ NNS . President Bush Saturday made phone calls to several members of the U.S. military to wish them happy holidays . NNP NNP NNP VBD NN NNS TO JJ NNS IN DT NNP NN TO VB PRP JJ NNS . On Christmas Eve , children anticipate the coming of Santa Claus , a mythical figure who flies around the world overnight to deliver presents to good children . IN NNP NNP , NNS VBP DT VBG IN NNP NNP , DT JJ NN WP VBZ IN DT NN JJ TO VB NNS TO JJ NNS . The North American Aerospace Defense Command , which guards against security threats in U.S. and Canadian airspace , provides updates on what it says is Santa 's progress across the globe . DT NNP NNP NNP NNP NNP , WDT VBZ IN NN NNS IN NNP CC JJ NN , VBZ NNS IN WP PRP VBZ VBZ NNP POS NN IN DT NN . The United Nations mediator for Kosovo , Martti Ahtisaari , has met with top officials in Belgrade for talks on the future of the Serbian province . DT NNP NNP NN IN NNP , NNP NNP , VBZ VBN IN JJ NNS IN NNP IN NNS IN DT NN IN DT JJ NN . The discussions with Serbian Prime Minister Vojislav Kostunica Tuesday come one week after the first round of international talks on the future of Kosovo . DT NNS IN JJ NNP NNP NNP NNP NNP VBD CD NN IN DT JJ NN IN JJ NNS IN DT NN IN NNP . The U.N.-sponsored talks in Vienna are set to resume March 17 in an effort to set the guidelines for negotiations on resolving the status of the province . DT JJ NNS IN NNP VBP VBN TO VB NNP CD IN DT NN TO VB DT NNS IN NNS IN VBG DT NN IN DT NN . Meanwhile , the top U.N. official in Kosovo , Soren Jessen-Petersen , expressed confidence that the talks will lead to a resolution by the end of the year . RB , DT JJ NNP NN IN NNP , NNP NNP , VBD NN IN DT NNS MD VB TO DT NN IN DT NN IN DT NN . He also said he met NATO officials in Brussels who have promised to ensure security for the ethnic Serbian minority in Kosovo throughout status talks . PRP RB VBD PRP VBD NNP NNS IN NNP WP VBP VBN TO VB NN IN DT JJ JJ NN IN NNP IN NN NNS . The region 's ethnic Albanian majority is pressing for independence from Serbia -- a demand Serbs strongly oppose . DT NN POS JJ JJ NN VBZ VBG IN NN IN NNP IN DT NN NNS RB VBP . Finance ministers are considering how to start winding down trillions of dollars in government stimulus funds that have saved the world 's economies from collapse . NN NNS VBP VBG WRB TO VB VBG RP NNS IN NNS IN NN NN NNS WDT VBP VBN DT NN POS NNS IN NN . Economic officials from the Group of 20 industrialized nations are meeting in London Friday and Saturday to discuss this and other issues ahead of the G-20 summit in the United States later this month . JJ NNS IN DT NNP IN CD JJ NNS VBP VBG IN NNP NNP CC NNP TO VB DT CC JJ NNS RB IN DT NNP NN IN DT NNP NNPS RBR DT NN . G-20 governments are calling for a coordinated exit from the emergency stimulus measures . JJ NNS VBP VBG IN DT JJ NN IN DT NN NN NNS . Finance ministers in London this week also are expected to support actions to reduce bonuses paid to bankers . NNP NNS IN NNP DT NN RB VBP VBN TO VB NNS TO VB NNS VBN TO NNS . Swedish Finance Minister Anders Borg said Wednesday the ' bonus culture must come to an end . ' JJ NN NN NNP NNP VBD NNP DT `` NN NN MD VB TO DT NN . `` Critics say these bonuses encourage risky bets that hurt companies and the economy and were a key reason the economic crisis grew so bad so quickly . NNS VBP DT NNS VBP JJ NNS WDT VBP NNS CC DT NN CC VBD DT JJ NN DT JJ NN VBD RB JJ RB RB . Indian Prime Minister Manmohan Singh has reviewed the security situation in Indian Kashmir on the second and final day of his visit to the disputed territory . JJ NNP NNP NNP NNP VBZ VBN DT NN NN IN JJ NNP IN DT JJ CC JJ NN IN PRP$ NN TO DT JJ NN . Officials say top security commanders briefed Mr. Singh Thursday in Jammu , the winter capital of Indian Kashmir . NNS VBP JJ NN NNS VBD NNP NNP NNP IN NNP , DT NN NN IN JJ NNP . They say the commanders told him that infiltration of militants from neighboring Pakistan has gone down sharply in the past year . PRP VBP DT NNS VBD PRP IN NN IN NNS IN VBG NNP VBZ VBN RB RB IN DT JJ NN . Muslim militants opposed to Indian rule have staged an insurgency in Kashmir for the past 15 years . NNP NNS VBN TO JJ NN VBP VBN DT NN IN NNP IN DT JJ CD NNS . On Wednesday , Mr. Singh said he is ready to meet with anyone who wants to end violence in Kashmir . IN NNP , NNP NNP VBD PRP VBZ JJ TO VB IN DT WP VBZ TO VB NN IN NNP . But he said he will not accept any Pakistani proposal that involves redrawing the line of control that separates Indian- from Pakistani-controlled Kashmir . CC PRP VBD PRP MD RB VB DT JJ NN WDT VBZ VBG DT NN IN NN IN VBZ NNP IN JJ NNP . The two South Asian neighbors each claim the entire territory . DT CD JJ JJ NNS DT NN DT JJ NN . India withdrew 1,000 troops from Kashmir Wednesday , with more expected to follow . NNP VBD CD NNS IN NNP NNP , IN RBR VBN TO VB . Pakistan called the move a positive step . NNP VBD DT NN DT JJ NN . A U.N. aid official in Gaza says dozens of masked gunmen have attacked a U.N. summer camp . DT NNP NN NN IN NNP VBZ NNS IN VBN NNS VBP VBN DT NNP NN NN . A U.N. spokesman said the attackers assaulted a guard , burned tents and vandalized bathrooms Sunday at the camp in eastern Gaza . DT NNP NN VBD DT NNS VBD DT NN , VBN NNS CC VBN NNS NNP IN DT NN IN JJ NNP . The armed men also left behind a note pierced with several bullets , threatening to kill the U.N. Relief and Works Agency director , John Ging . DT JJ NNS RB VBD IN DT NN VBN IN JJ NNS , VBG TO VB DT NNP NNP CC NNP NNP NN , NNP NNP . The summer camp offers arts , sports and other activities to some 2,50,000 Gaza children . DT NN NN VBZ NNS , NNS CC JJ NNS TO DT CD NNP NNS . There were no claim of responsibility for the attack . EX VBD DT NN IN NN IN DT NN . Some extremist Islamic groups in Gaza oppose the camps . DT NN JJ NNS IN NNP VBP DT NNS . Gaza 's Hamas police are investigating the incident . NNP POS NNP NN VBP VBG DT NN . U.S. consumer spending surged in January , far more than economists had expected . NNP NN NN VBD IN NNP , RB JJR IN NNS VBD VBN . A report from the Commerce Department Tuesday showed spending up 2.3 percent , the strongest gain in more than a year , and more than double what analysts expected . DT NN IN DT NNP NNP NNP VBD VBG RP CD NN , DT JJS NN IN JJR IN DT NN , CC JJR IN RB WP NNS VBD . Experts watch consumer spending closely because consumer demand drives about two-thirds of the U.S. economy , which is the world 's biggest . NNS VBP NN NN RB IN NN NN VBZ IN NNS IN DT NNP NN , WDT VBZ DT NN POS JJS . Analysts predict the spending surge will encourage the U.S. central bank to continue its campaign of gradually raising interest rates to fend off inflation . NNS VBP DT NN NN MD VB DT NNP JJ NN TO VB PRP$ NN IN RB VBG NN NNS TO VB RP NN . We will get another picture of the U.S. economy on Wednesday when the Federal Reserve 's new Chairman , Ben Bernanke , is scheduled to deliver a report to Congress . PRP MD VB DT NN IN DT NNP NN IN NNP WRB DT NNP NNP POS JJ NNP , NNP NNP , VBZ VBN TO VB DT NN TO NNP . An Islamist Web site Monday says al-Qaida leader Osama bin Laden soon will release a new message aimed at Europeans . DT NNP NNP NN NNP VBZ NNP NN NNP NNP NNP RB MD VB DT JJ NN VBN IN NNS . The Web site attributes the statement to al-Qaida 's media unit As-Sahab . DT NNP NN VBZ DT NN TO NNP POS NNS NN NNP . It is not clear if the message will be an audio or video statement or when it will be released . PRP VBZ RB JJ IN DT NN MD VB DT NN CC NN NN CC WRB PRP MD VB VBN . Bin Laden released an audio taped message last month . NNP NNP VBD DT NN VBN NN JJ NN . He called on insurgents in Iraq to unite and said militants must overcome rivalries and beware of sectarian divisions . PRP VBD IN NNS IN NNP TO VB CC VBD NNS MD VB NNS CC NN IN JJ NNS . In September , bin Laden appeared on video for the first time in nearly three years . IN NNP , NNP NNP VBD IN NN IN DT JJ NN IN RB CD NNS . That message coincided with the sixth anniversary of the September 11 , 2001 , terrorist attacks on the United States . DT NN VBD IN DT JJ NN IN DT NNP CD , CD , JJ NNS IN DT NNP NNPS . Bin Laden and his deputy , Ayman al-Zawahiri , are believed to be hiding in the border area between Afghanistan and Pakistan . NNP NNP CC PRP$ NN , NNP NNP , VBP VBN TO VB VBG IN DT NN NN IN NNP CC NNP . The United States has offered a $ 25-million reward for the capture of each man . DT NNP NNP VBZ VBN DT $ JJ NN IN DT NN IN DT NN . Taiwan President Chen Shui-bian says information provided by Taipei helped Japan locate a Chinese nuclear submarine in Japanese waters last week . NNP NNP NNP NNP VBZ NN VBN IN NNP VBD NNP VB DT JJ JJ NN IN JJ NNS JJ NN . Mr. Chen said Friday that Taiwan provided intelligence to Japan and the United States , alerting them to the intrusion . NNP NNP VBD NNP IN NNP VBD NN TO NNP CC DT NNP NNPS , VBG PRP TO DT NN . He emphasized the threat from China , and the common interests among Japan , the United States and Taiwan in maintaining peace and stability in the Asia-Pacific region . PRP VBD DT NN IN NNP , CC DT JJ NNS IN NNP , DT NNP NNPS CC NNP IN VBG NN CC NN IN DT JJ NN . Last week , Tokyo demanded an apology from Beijing after the intrusion into its southern waters , which set off a two-day high-seas chase . JJ NN , NNP VBD DT NN IN NNP IN DT NN IN PRP$ JJ NNS , WDT VBD RP DT JJ JJ NN . Beijing initially refused to accept the protest or make an apology , saying it was still investigating the matter . NNP RB VBD TO VB DT NN CC VB DT NN , VBG PRP VBD RB VBG DT NN . But earlier this week China expressed regret for the intrusion . CC RBR DT NN NNP VBD NN IN DT NN . German Chancellor Gerhard Schroeder says his Social Democratic Party will probably form a so-called ' Grand Coalition ' with the main opposition Christian Democratic Union , after this month 's general election failed to produce a clear winner . JJ NNP NNP NNP VBZ PRP$ NNP NNP NNP MD RB VB DT JJ `` NNP NNP `` IN DT JJ NN NNP NNP NNP , IN DT NN POS JJ NN VBD TO VB DT JJ NN . Mr. Schroeder spoke Tuesday at a forum on Europrean integration in Strasbourg , France . NNP NNP VBD NNP IN DT NN IN JJ NN IN NNP , NNP . He said he expects a stable government to emerge from exploratory talks between the two parties , but did not say what role , if any , he would hold in such a coalition . PRP VBD PRP VBZ DT JJ NN TO VB IN JJ NNS IN DT CD NNS , CC VBD RB VB WP NN , IN DT , PRP MD VB IN PDT DT NN . The Social Democrats and their Greens Party coalition partner lost their majority in the September 18 vote . DT NNP NNPS CC PRP$ NNP NNP NN NN VBD PRP$ NN IN DT NNP CD NN . The Christian Democrats , led by Angela Merkel , and their likely coalition partner , the liberal Free Democrats , also fell short of a majority . DT NNP NNPS , VBN IN NNP NNP , CC PRP$ JJ NN NN , DT JJ NNP NNPS , RB VBD RB IN DT NN . Separately , the Greens elected Agriculture Minister Renate Kuenast and former party co-leader Fritz Kuhn to lead their parliamentary faction . RB , DT NNP VBD NNP NNP NNP NNP CC JJ NN NN NNP NNP TO VB PRP$ JJ NN . Russian authorities and witnesses say a suspected bomb exploded Sunday in a McDonald 's restaurant on St. Petersburg 's main street , injuring six people . JJ NNS CC NNS VBP DT JJ NN VBD NNP IN DT NNP POS NN IN NNP NNP POS JJ NN , VBG CD NNS . The blast shattered windows and caused part of the restaurant 's ceiling to cave in . DT NN VBD NNS CC VBD NN IN DT NN POS NN TO VB IN . None of the injuries are said to be serious . NN IN DT NNS VBP VBN TO VB JJ . The blast occurred along Nevsky Prospekt . DT NN VBD IN NNP NNP . Police closed down part of St. Petersburg 's main street while they carried it their investigation . NNS VBD RB NN IN NNP NNP POS JJ NN IN PRP VBD PRP PRP$ NN . A car bombing of a Moscow McDonald 's by Muslim extremists in 2002 killed one person and wounded seven . DT NN NN IN DT NNP NNP POS IN NNP NNS IN CD VBD CD NN CC VBD CD . The armed Basque separatist group , ETA , says it is willing to take part in peace talks with the Spanish government . DT JJ NNP NN NN , NNP , VBZ PRP VBZ JJ TO VB NN IN NN NNS IN DT JJ NN . But Sunday 's statement did not mention whether it will lay down arms as demanded by the government as a precondition for any talks . CC NNP POS NN VBD RB VB IN PRP MD VB RP NNS IN VBN IN DT NN IN DT NN IN DT NNS . The outlawed group 's statement backed the recent peace initiative its political wing , Batasuna , presented to the Spanish parliament that would virtually grant independence to the country 's northern Basque region . DT JJ NN POS NN VBD DT JJ NN NN PRP$ JJ NN , NNP , VBD TO DT JJ NN WDT MD RB VB NN TO DT NN POS JJ JJ NN . Opponents say the plan would open the way for secession by other areas of Spain . NNS VBP DT NN MD VB DT NN IN NN IN JJ NNS IN NNP . In ETA 's statement today it claimed responsibility for a series of attacks in recent months , but the it denied involvement in last month 's bomb hoax at Real Madrid 's soccer stadium . IN NNP POS NN NN PRP VBD NN IN DT NN IN NNS IN JJ NNS , CC DT PRP VBD NN IN JJ NN POS NN NN IN NNP NNP POS NN NN . ETA has been blamed for more than 800 deaths in its more than 30 year campaign for an independent Basque homeland . NNP VBZ VBN VBN IN JJR IN CD NNS IN PRP$ JJR IN CD NN NN IN DT JJ NN NN . China 's agriculture minister is warning of a possible massive bird flu outbreak as the country announced two new human cases of the deadly H5N1 flu strain . NNP POS NN NN VBZ VBG IN DT JJ JJ NN NN NN IN DT NN VBD CD JJ JJ NNS IN DT JJ NNP NN NN . China 's state-owned media report Agriculture Minister Du Qinglin said authorities must be on ' high alert ' and step up efforts to control the disease . NNP POS JJ NNS NN NNP NNP NNP NNP VBD NNS MD VB IN `` JJ NN `` CC VB RP NNS TO VB DT NN . He says China culled 22.5 million birds last year to stem the spread of the virus . PRP VBZ NNP VBD CD CD NNS JJ NN TO VB DT NN IN DT NN . Citing a Health Ministry statement , the Xinhua news agency said Saturday a nine-year-old girl from Zhejiang province and a 26-year-old woman from Anhui province tested positive for the H5N1 virus , and are in critical condition . VBG DT NNP NNP NN , DT NNP NN NN VBD NNP DT JJ NN IN NNP NN CC DT JJ NN IN NNP NN VBD JJ IN DT NNP NN , CC VBP IN JJ NN . In France , President Jacques Chirac is urging people not to panic after confirmation of the deadly strain of bird flu at a turkey farm near Lyon . IN NNP , NNP NNP NNP VBZ VBG NNS RB TO VB IN NN IN DT JJ NN IN NN NN IN DT NN NN IN NNP . An official of the country 's agricultural union , Christine Lambert , expressed concern the development will hurt French exports . DT NN IN DT NN POS JJ NN , NNP NNP , VBD NN DT NN MD VB JJ NNS . Hundreds of Nigerians crippled by polio have staged a rally in the northern city of Kano to urge parents to vaccinate their children against the disease . NNS IN NNS VBN IN NN VBP VBN DT NN IN DT JJ NN IN NNP TO VB NNS TO VB PRP$ NNS IN DT NN . The chairman of a polio victims association in Kano says many parents in the area have been slow to respond to international immunization programs . DT NN IN DT NN NNS NN IN NNP VBZ JJ NNS IN DT NN VBP VBN JJ TO VB TO JJ NN NNS . Muslim leaders in northern Nigeria suspended polio immunizations in late 2003 , claiming the U.N. health agency had supplied a vaccine that would cause sterility . NNP NNS IN JJ NNP VBD NN NNS IN JJ CD , VBG DT NNP NN NN VBD VBN DT NN WDT MD VB NN . The World Health Organization ( WHO ) says the ban , which lasted a year , set Nigeria back in its efforts to fight polio . DT NNP NNP NNP LRB NNP RRB VBZ DT NN , WDT VBD DT NN , VBD NNP RB IN PRP$ NNS TO VB NN . Nearly 500 cases of polio have been reported in the country this year , the most in the world by far . RB CD NNS IN NN VBP VBN VBN IN DT NN DT NN , DT JJS IN DT NN IN RB . The suspension in Kano was also blamed for causing polio to spread in a number of African nations and as far away as Indonesia . DT NN IN NNP VBD RB VBN IN VBG NN TO VB IN DT NN IN JJ NNS CC IN RB RB IN NNP . Belarus says it plans to raise transit fees later this month by more than 30 percent on Russian oil pumped through Belarusian territory to western Europe . NNP VBZ PRP VBZ TO VB NN NNS RB DT NN IN JJR IN CD NN IN JJ NN VBN IN JJ NN TO JJ NNP . Just weeks ago Moscow more than doubled the price of natural gas sold to its western neighbor . RB NNS IN NNP JJR IN VBD DT NN IN JJ NN VBD TO PRP$ JJ NN . Authorities in Minsk say the Belarusian hike will take effect February 15 . NNS IN NNP VBP DT JJ NN MD VB NN NNP CD . In an interview Tuesday with Reuters news agency , Belarusian President Alexander Lukashenko - stung by the Russian price hikes - vowed to recover $ 5 billion in losses incurred since the Russian increases took effect . IN DT NN NNP IN NNP NN NN , JJ NNP NNP NNP : VBN IN DT JJ NN NNS : VBD TO VB $ CD CD IN NNS VBN IN DT JJ NNS VBD NN . At the height of the dispute , Russia briefly cut off oil supplies in Belarusian pipelines , after accusing Minsk of siphoning oil bound for western Europe . IN DT NN IN DT NN , NNP RB VBD RP NN NNS IN JJ NNS , IN VBG NNP IN VBG NN VBN IN JJ NNP . The stand-off was resolved when Belarus revoked a transit tax it had imposed on Russian oil , and Moscow lowered oil fees it had demanded from Minsk . DT NN VBD VBN WRB NNP VBN DT NN NN PRP VBD VBN IN JJ NN , CC NNP VBD NN NNS PRP VBD VBN IN NNP . Turkish media reports say a suicide car bomber in the southern part of the country Tuesday killed himself and wounded at least nine police officers . JJ NNS NNS VBP DT NN NN NN IN DT JJ NN IN DT NN NNP VBD PRP CC VBN IN JJS CD NN NNS . Officials and media reports from CNN-Turk television say the bomber detonated explosives after police stopped his vehicle at a checkpoint outside the port city of Mersin , on Turkey 's Mediterranean coast . NNS CC NNS NNS IN JJ NN VBP DT NN VBD NNS IN NN VBD PRP$ NN IN DT NN IN DT JJ NN IN NNP , IN NNP POS NNP NN . Some reports had said earlier that another suspect in the vehicle also was killed . DT NNS VBD VBN RBR IN DT NN IN DT NN RB VBD VBN . According to reports , police had been following the vehicle after receiving intelligence that said a bomber was preparing for an attack . VBG TO NNS , NNS VBD VBN VBG DT NN IN VBG NN WDT VBD DT NN VBD VBG IN DT NN . There was no immediate claim of responsibility . EX VBD DT JJ NN IN NN . Islamist extremists , Kurdish separatists and leftist militants have all carried out attacks in Turkey in the past . NNP NNS , NNP NNS CC JJ NNS VBP DT VBN RP NNS IN NNP IN DT NN . U.N. Secretary-General Kofi Annan begins a visit to Haiti Wednesday , to talk with political leaders about ways to improve security across the country . NNP NNP NNP NNP VBZ DT NN TO NNP NNP , TO VB IN JJ NNS IN NNS TO VB NN IN DT NN . The U.N. says Mr. Annan will meet with President Rene Preval , other top officials and members of the U.N. Stabilization Mission in Haiti . DT NNP VBZ NNP NNP MD VB IN NNP NNP NNP , JJ JJ NNS CC NNS IN DT NNP NNP NNP IN NNP . The number of kidnappings by armed groups has started to surge after a period of calm following the election of Mr. Preval . DT NN IN NNS IN JJ NNS VBZ VBN TO VB IN DT NN IN NN VBG DT NN IN NNP NNP . The U.N. says trafficking in illegal drugs and weapons remains a major problem . DT NNP VBZ VBG IN JJ NNS CC NNS VBZ DT JJ NN . In a report to the Security Council Tuesday , Mr. Annan called for the U.N. police force in Haiti to be strengthened with experts in counterkidnapping and anti-gang operations to better support the Haitian National Police . IN DT NN TO DT NNP NNP NNP , NNP NNP VBD IN DT NNP NN NN IN NNP TO VB VBN IN NNS IN NN CC JJ NNS TO JJR NN DT JJ NNP NNP . Following his visit to Haiti , Mr. Annan will travel to the Dominican Republic , where he is scheduled to meet with President Leonel Fernandez and members of the nation 's Congress and Supreme Court . VBG PRP$ NN TO NNP , NNP NNP MD VB TO DT NNP NNP , WRB PRP VBZ VBN TO VB IN NNP NNP NNP CC NNS IN DT NN POS NNP CC NNP NNP . A former Yugoslav army chief of staff has pleaded not guilty to 13 counts of war crimes and crimes against humanity before the United Nations tribunal in The Hague . DT JJ JJ NN NN IN NN VBZ VBN RB JJ TO CD NNS IN NN NNS CC NNS IN NN IN DT NNP NNPS NN IN DT NNP . General Momcilo Perisic appeared in court Wednesday to face charges that troops under his command attacked Zagreb , the Croatian capital , and committed atrocities during the Bosnian conflict between 1992 and 1995 . NNP NNP NNP VBD IN NN NNP TO VB NNS IN NNS IN PRP$ NN VBD NNP , DT JJ NN , CC JJ NNS IN DT JJ NN IN CD CC CD . The charges include the massacre of more than 7,000 Muslim men and boys by Bosnian Serb troops following their capture of the Muslim enclave of Srebrenica . DT NNS VBP DT NN IN JJR IN CD NNP NNS CC NNS IN JJ JJ NNS VBG PRP$ NN IN DT NNP NN IN NNP . General Perisic surrendered to the court Monday . NNP NNP VBD TO DT NN NNP . He said last week that appearing before the tribunal was the best way to defend his honor and the reputation of the army . PRP VBD JJ NN IN VBG IN DT NN VBD DT JJS NN TO VB PRP$ NN CC DT NN IN DT NN . Coming to a cinema near you : the Iron Lady . Margaret Thatcher , prime minister of the United Kingdom from 1979 to 1990 , will reportedly be the subject of an upcoming film . VBG TO DT NN IN PRP IN DT NNP NNP . NNP NNP , JJ NN IN DT NNP NNP IN CD TO CD , MD RB VB DT NN IN DT JJ NN . Set during the Falklands War , the film will cover the 17 days leading up to Britain 's 1982 conflict with Argentina . NNP IN DT NNP NNP , DT NN MD VB DT CD NNS VBG RP TO NNP POS CD NN IN NNP . Backed by London-based Pathe Productions , BBC Films , and DJ Films , the project has yet to be cast , and no director has been named . VBN IN JJ NNP NNP , NNP NNP , CC NNP NNP , DT NN VBZ RB TO VB VBN , CC DT NN VBZ VBN VBN . Steven Frears ' film The Queen , which features an Oscar-winning performance from Helen Mirren as Queen Elizabeth II , has re-awakened interest in recent British history . NNP NNP POS NN DT NNP , WDT VBZ DT JJ NN IN NNP NNP IN NNP NNP NNP , VBZ VBN NN IN JJ JJ NN . Ratners Group PLC , a fast-growing , acquisition-minded London-based jeweler , raised its price for Seattle-based specialty jeweler Weisfield 's Inc. to $ 57.5 a share , or $ 62.1 million , from $ 50 a share , or $ 55 million , after another concern said it would be prepared to outbid Ratners 's initial offer . NNP NNP NNP , DT JJ , JJ JJ NN , VBD PRP$ NN IN JJ NN NN NNP NNP NNP TO $ CD DT NN , CC $ CD CD , IN $ CD DT NN , CC $ CD CD , IN DT NN VBD PRP MD VB VBN TO VB NNP POS JJ NN . The other concern was n't identified . DT JJ NN VBD RB VBN . Ratners 's chairman , Gerald Ratner , said the deal remains of ' substantial benefit to Ratners . ' NNP POS NN , NNP NNP , VBD DT NN NNS IN `` JJ NN TO NNP . `` In London at mid-afternoon yesterday , Ratners 's shares were up 2 pence ( 1.26 cents ) , at 260 pence ( $ 1.64 ) . IN NNP IN NN NN , NNP POS NNS VBD RB CD NN LRB CD NNS RRB , IN CD NN LRB $ CD RRB . The sweetened offer has acceptances from more than 50 % of Weisfield 's shareholders , and it is scheduled for completion by Dec. 10 . DT VBN NN VBZ NNS IN JJR IN CD NN IN NNP POS NNS , CC PRP VBZ VBN IN NN IN NNP CD . The acquisition of 87-store Weisfield 's raises Ratners 's U.S. presence to 450 stores . DT NN IN JJ NNP NNP VBZ NNP POS NNP NN TO CD NNS . About 30 % of Ratners 's profit already is derived from the U.S. IN CD NN IN NNP POS NN RB VBZ VBN IN DT NNP Since independence in 1976 , per capita output in this Indian Ocean archipelago has expanded to roughly seven times the pre-independence , near-subsistence level , moving the island into the upper-middle income group of countries . IN NN IN CD , IN NN NN IN DT JJ NNP NN VBZ VBN TO RB CD NNS DT NN , NN NN , VBG DT NN IN DT JJ NN NN IN NNS . Growth has been led by the tourist sector , which employs about 30 % of the labor force and provides more than 70 % of hard currency earnings , and by tuna fishing . NN VBZ VBN VBN IN DT NN NN , WDT VBZ IN CD NN IN DT NN NN CC VBZ JJR IN CD NN IN JJ NN NNS , CC IN NN NN . In recent years , the government has encouraged foreign investment to upgrade hotels and other services . IN JJ NNS , DT NN VBZ VBN JJ NN TO VB NNS CC JJ NNS . At the same time , the government has moved to reduce the dependence on tourism by promoting the development of farming , fishing , and small-scale manufacturing . IN DT JJ NN , DT NN VBZ VBN TO VB DT NN IN NN IN VBG DT NN IN NN , NN , CC JJ NN . GDP grew about 07-Aug % per year in 2006 - 7 , driven by tourism and a boom in tourism-related construction . NN VBD RB CD NN IN NN IN CD : CD , VBN IN NN CC DT NN IN JJ NN . The Seychelles rupee was allowed to depreciate in 2006 after being overvalued for years and fell by 10 % in the first 9 months of 2007 . DT NNP NN VBD VBN TO VB IN CD IN VBG VBN IN NNS CC VBD IN CD NN IN DT JJ CD NNS IN CD . Despite these actions , the Seychelles economy has struggled to maintain its gains and in 2008 suffered from food and oil price shocks , a foreign exchange shortage , high inflation , large financing gaps , and the global recession . IN DT NNS , DT NNP NN VBZ VBN TO VB PRP$ NNS CC IN CD VBD IN NN CC NN NN NNS , DT JJ NN NN , JJ NN , JJ NN NNS , CC DT JJ NN . In July 2008 the government defaulted on a Euro amortizing note worth roughly US $ 80 million , leading to a downgrading of Seychelles credit rating , but in October 2010 the EU approved a $ 2.9 million grant as part of a larger four-year program for Seychelles . IN NNP CD DT NN VBD IN DT NNP JJ NN JJ RB NNP $ CD CD , VBG TO DT NN IN NNP NN NN , CC IN NNP CD DT NNP VBD DT $ CD CD NN IN NN IN DT JJR JJ NN IN NNS . In response to Seychelles successful implementation of tighter monetary and fiscal policies , the IMF upgraded Seychelles to a three-year extended fund facility ( EFF ) of $ 31 million in December 2009 . IN NN TO NNP JJ NN IN JJR JJ CC JJ NNS , DT NNP VBD NNS TO DT JJ JJ NN NN LRB NNP RRB IN $ CD CD IN NNP CD . In 2008 , GDP fell more than 1 % due to declining tourism , but the economy recovered in 2009 - 10 with a notable increase in tourist numbers for 2010 . IN CD , NN VBD JJR IN CD NN JJ TO VBG NN , CC DT NN VBD IN CD IN CD IN DT JJ NN IN NN NNS IN CD . The area of the Republic of Cyprus under government control has a market economy dominated by the service sector , which accounts for nearly four-fifths of GDP . DT NN IN DT NNP IN NNP IN NN NN VBZ DT NN NN VBN IN DT NN NN , WDT VBZ IN RB NNS IN NN . Tourism , financial services , and real estate are the most important sectors . NNP , JJ NNS , CC JJ NN VBP DT RBS JJ NNS . Erratic growth rates over the past decade reflect the economy 's reliance on tourism , the profitability of which often fluctuates with political instability in the region and economic conditions in Western Europe . JJ NN NNS IN DT JJ NN VBP DT NN POS NN IN NN , DT NN IN WDT RB VBZ IN JJ NN IN DT NN CC JJ NNS IN NNP NNP . Nevertheless , the economy in the area under government control has grown at a rate well above the EU average since 2000 . RB , DT NN IN DT NN IN NN NN VBZ VBN IN DT NN RB IN DT NNP NN IN CD . Cyprus joined the European Exchange Rate Mechanism ( ERM2 ) in May 2005 and adopted the euro as its national currency on 1 January 2008 . NNP VBD DT NNP NNP NNP NNP LRB NNP RRB IN NNP CD CC VBD DT NN IN PRP$ JJ NN IN CD NNP CD . An aggressive austerity program in the preceding years , aimed at paving the way for the euro , helped turn a soaring fiscal deficit ( 6.3 % in 2003 ) into a surplus of 1.2 % in 2008 , and reduced inflation to 4.7 % . DT JJ NN NN IN DT JJ NNS , VBN IN VBG DT NN IN DT NN , VBD VB DT VBG JJ NN LRB CD NN IN CD RRB IN DT NN IN CD NN IN CD , CC VBD NN TO CD NN . This prosperity came under pressure in 2009 , as construction and tourism slowed in the face of reduced foreign demand triggered by the ongoing global financial crisis . DT NN VBD IN NN IN CD , IN NN CC NN VBD IN DT NN IN JJ JJ NN VBN IN DT JJ JJ JJ NN . Although Cyprus lagged behind its EU peers in showing signs of stress from the global crisis , the economy tipped into recession in 2009 , contracting by 1.8 % , and has been slow to bounce back since , posting an anemic growth rate of 0.6 % in 2010 . IN NNP VBD IN PRP$ NNP NNS IN VBG NNS IN NN IN DT JJ NN , DT NN VBD IN NN IN CD , NN IN CD NN , CC VBZ VBN JJ TO VB RB IN , VBG DT JJ NN NN IN CD NN IN CD . In addition , the budget deficit is on the rise and reached 5.3 % of GDP in 2010 , a violation of the EU 's budget deficit criteria of no more than 3 % of GDP . IN NN , DT NN NN VBZ IN DT NN CC VBD CD NN IN NN IN CD , DT NN IN DT NNP POS NN NN NNS IN DT JJR IN CD NN IN NN . In response to the country 's deteriorating finances , Nicosia is promising to implement measures to cut the cost of the state payroll , curb tax evasion , and revamp social benefits . IN NN TO DT NN POS JJ NNS , NNP VBZ VBG TO VB NNS TO VB DT NN IN DT NN NN , VB NN NN , CC VB JJ NNS . However , it has been slow to act , lacking a consensus in parliament and among the social partners for its proposed measures . RB , PRP VBZ VBN JJ TO VB , VBG DT NN IN NN CC IN DT JJ NNS IN PRP$ JJ NNS . The economy is a mixture of subsistence agriculture , an industrial sector based largely on oil and support services , and government spending . DT NN VBZ DT NN IN NN NN , DT JJ NN VBN RB IN NN CC NN NNS , CC NN NN . Oil has supplanted forestry as the mainstay of the economy , providing a major share of government revenues and exports . NN VBZ VBN NN IN DT NN IN DT NN , VBG DT JJ NN IN NN NNS CC NNS . In the early 1980s , rapidly rising oil revenues enabled the government to finance large-scale development projects with GDP growth averaging 5 % annually , one of the highest rates in Africa . IN DT JJ NNS , RB VBG NN NNS VBD DT NN TO VB JJ NN NNS IN NN NN VBG CD NN RB , CD IN DT JJS NNS IN NNP . Characterized by budget problems and overstaffing , the government has mortgaged a substantial portion of its oil earnings through oil-backed loans that have contributed to a growing debt burden and chronic revenue shortfalls . VBN IN NN NNS CC NN , DT NN VBZ VBN DT JJ NN IN PRP$ NN NNS IN JJ NNS WDT VBP VBN TO DT VBG NN NN CC NN NN NNS . Economic reform efforts have been undertaken with the support of international organizations , notably the World Bank and the IMF . JJ NN NNS VBP VBN VBN IN DT NN IN JJ NNS , RB DT NNP NNP CC DT NNP . However , the reform program came to a halt in June 1997 when civil war erupted . RB , DT NN NN VBD TO DT NN IN NNP CD WRB JJ NN VBD . Denis SASSOU-Nguesso , who returned to power when the war ended in October 1997 , publicly expressed interest in moving forward on economic reforms and privatization and in renewing cooperation with international financial institutions . NNP NNP , WP VBD TO NN WRB DT NN VBD IN NNP CD , RB VBN NN IN VBG RB IN JJ NNS CC NN CC IN VBG NN IN JJ JJ NNS . Economic progress was badly hurt by slumping oil prices and the resumption of armed conflict in December 1998 , which worsened the republic 's budget deficit . JJ NN VBD RB VBN IN JJ NN NNS CC DT NN IN JJ NN IN NNP CD , WDT VBD DT NN POS NN NN . The current administration presides over an uneasy internal peace and faces difficult economic challenges of stimulating recovery and reducing poverty . DT JJ NN VBZ IN DT JJ JJ NN CC VBZ JJ JJ NNS IN VBG NN CC VBG NN . The drop in oil prices during the global crisis reduced oil revenue by about 30 % , but the subsequent recovery of oil prices has boosted the economy 's GDP and near-term prospects . DT NN IN NN NNS IN DT JJ NN VBD NN NN IN RB CD NN , CC DT JJ NN IN NN NNS VBZ VBN DT NN POS NN CC JJ NNS . In March 2006 , the World Bank and the International Monetary Fund ( IMF ) approved Heavily Indebted Poor Countries ( HIPC ) treatment for Congo , receiving $ 1.9 billion in debt relief under the program in 2010 . IN NNP CD , DT NNP NNP CC DT NNP NNP NNP LRB NNP RRB VBD NNP NNP NNP NNPS LRB NNP RRB NN IN NNP , VBG $ CD CD IN NN NN IN DT NN IN CD . Switzerland is a peaceful , prosperous , and modern market economy with low unemployment , a highly skilled labor force , and a per capita GDP among the highest in the world . NNP VBZ DT JJ , JJ , CC JJ NN NN IN JJ NN , DT RB JJ NN NN , CC DT IN NN NN IN DT JJS IN DT NN . Switzerland 's economy benefits from a highly developed service sector , led by financial services , and a manufacturing industry that specializes in high-technology , knowledge-based production . NNP POS NN NNS IN DT RB JJ NN NN , VBN IN JJ NNS , CC DT NN NN WDT VBZ IN NN , JJ NN . The Swiss have brought their economic practices largely into conformity with the EU 's , in order to enhance their international competitiveness , but some trade protectionism remains , particularly for its small agricultural sector . DT NNS VBP VBN PRP$ JJ NNS RB IN NN IN DT NNP POS , IN NN TO VB PRP$ JJ NN , CC DT NN NN VBZ , RB IN PRP$ JJ JJ NN . The global financial crisis and resulting economic downturn put Switzerland in a recession in 2009 as global export demand stalled . DT JJ JJ NN CC VBG JJ NN VBD NNP IN DT NN IN CD IN JJ NN NN VBN . The Swiss National Bank during this period effectively implemented a zero-interest rate policy in a bid to boost the economy and prevent appreciation of the franc . DT NNP NNP NNP IN DT NN RB VBD DT JJ NN NN IN DT NN TO VB DT NN CC VB NN IN DT NN . Switzerland 's economy grew by 2.7 % in 2010 , when Bern implemented a third fiscal stimulus program , but its prized banking sector has recently faced significant challenges . NNP POS NN VBD IN CD NN IN CD , WRB NNP VBD DT JJ JJ NN NN , CC PRP$ JJ NN NN VBZ RB VBN JJ NNS . The country 's largest banks suffered sizable losses in 2008 - 9 , leading its largest bank to accept a government rescue deal in late 2008 . DT NN POS JJS NNS VBD JJ NNS IN CD : CD , VBG PRP$ JJS NN TO VB DT NN NN NN IN JJ CD . Switzerland has also come under increasing pressure from individual neighboring countries , the EU , the US , and international institutions to reform its banking secrecy laws . NNP VBZ RB VBN IN VBG NN IN JJ JJ NNS , DT NNP , DT NNP , CC JJ NNS TO VB PRP$ NN NN NNS . Consequently , the government agreed to conform to OECD regulations on administrative assistance in tax matters , including tax evasion . RB , DT NN VBD TO VB TO NNP NNS IN JJ NN IN NN NNS , VBG NN NN . The government has renegotiated its double taxation agreements with numerous countries , including the US , to incorporate the OECD standard , and it is working with Germany and the UK to resolve outstanding issues , particularly the possibility of imposing taxes on bank deposits held by foreigners . DT NN VBZ VBN PRP$ JJ NN NNS IN JJ NNS , VBG DT NNP , TO VB DT NNP NN , CC PRP VBZ VBG IN NNP CC DT NNP TO VB JJ NNS , RB DT NN IN VBG NNS IN NN NNS VBN IN NNS . Parliament passed the first five double-taxation agreements , including that with the US , in March 2010 . NNP VBD DT JJ CD NN NNS , VBG IN IN DT NNP , IN NNP CD . The agreement with the US awaits US Senate approval . DT NN IN DT NNP VBZ NNP NNP NN . In 2009 , Swiss financial regulators ordered the country 's largest bank to reveal at Washington 's behest the names of US account-holders suspected of using the bank to commit tax fraud . IN CD , JJ JJ NNS VBD DT NN POS JJS NN TO VB IN NNP POS NN DT NNS IN NNP NNS VBN IN VBG DT NN TO VB NN NN . These steps will have a lasting impact on Switzerland 's long history of bank secrecy . DT NNS MD VB DT JJ NN IN NNP POS JJ NN IN NN NN . The French annexed various Polynesian island groups during the 19th century . DT JJ JJ JJ JJ NN NNS IN DT JJ NN . In September 1995 , France stirred up widespread protests by resuming nuclear testing on the Mururoa atoll after a three-year moratorium . IN NNP CD , NNP VBD RP JJ NNS IN VBG JJ NN IN DT NNP NN IN DT JJ NN . The tests were suspended in January 1996 . DT NNS VBD VBN IN NNP CD . In recent years , French Polynesia 's autonomy has been considerably expanded . IN JJ NNS , NNP NNP POS NN VBZ VBN RB VBN . Landlocked Paraguay has a market economy distinguished by a large informal sector , featuring re-export of imported consumer goods to neighboring countries , as well as the activities of thousands of microenterprises and urban street vendors . JJ NNP VBZ DT NN NN VBN IN DT JJ JJ NN , VBG NN IN JJ NN NNS TO JJ NNS , RB RB IN DT NNS IN NNS IN NNS CC JJ NN NNS . A large percentage of the population , especially in rural areas , derives its living from agricultural activity , often on a subsistence basis . DT JJ NN IN DT NN , RB IN JJ NNS , VBZ PRP$ NN IN JJ NN , RB IN DT NN NN . Because of the importance of the informal sector , accurate economic measures are difficult to obtain . IN IN DT NN IN DT JJ NN , JJ JJ NNS VBP JJ TO VB . On a per capita basis , real income has stagnated at 1980 levels . IN DT IN NN NN , JJ NN VBZ VBN IN CD NNS . The economy grew rapidly between 2003 and 2008 as growing world demand for commodities combined with high prices and favorable weather to support Paraguay 's commodity-based export expansion . DT NN VBD RB IN CD CC CD IN VBG NN NN IN NNS VBN IN JJ NNS CC JJ NN TO VB NNP POS JJ NN NN . Paraguay is the sixth largest soy producer in the world . NNP VBZ DT JJ JJS NN NN IN DT NN . Drought hit in 2008 , reducing agricultural exports and slowing the economy even before the onset of the global recession . NNP VBD IN CD , VBG JJ NNS CC VBG DT NN RB IN DT NN IN DT JJ NN . The economy fell 3.8 % in 2009 , as lower world demand and commodity prices caused exports to contract . DT NN VBD CD NN IN CD , IN JJR NN NN CC NN NNS VBD NNS TO NN . The government reacted by introducing fiscal and monetary stimulus packages . DT NN VBD IN VBG JJ CC JJ NN NNS . Growth resumed at a 14.5 % level in 2010 , the highest in South America . NN VBD IN DT CD NN NN IN CD , DT JJS IN NNP NNP . Political uncertainty , corruption , limited progress on structural reform , and deficient infrastructure are the main obstacles to growth . JJ NN , NN , JJ NN IN JJ NN , CC JJ NN VBP DT JJ NNS TO NN . A SHIPWRECKED MAN , having been cast upon a certain shore , slept after his buffetings with the deep . DT JJ NN , VBG VBN VBN IN DT JJ NN , VBD IN PRP$ NNS IN DT NN . After a while he awoke , and looking upon the Sea , loaded it with reproaches . IN DT NN PRP VBD , CC VBG IN DT NN , VBD PRP IN NNS . He argued that it enticed men with the calmness of its looks , but when it had induced them to plow its waters , it grew rough and destroyed them . PRP VBD IN PRP VBD NNS IN DT NN IN PRP$ NNS , CC WRB PRP VBD VBN PRP TO VB PRP$ NNS , PRP VBD JJ CC VBD PRP . The Sea , assuming the form of a woman , replied to him : ' Blame not me , my good sir , but the winds , for I am by my own nature as calm and firm even as this earth ; but the winds suddenly falling on me create these waves , and lash me into fury . ' DT NN , VBG DT NN IN DT NN , VBD TO PRP : `` VB RB PRP , PRP$ JJ NN , CC DT NNS , IN PRP VBP IN PRP$ JJ NN IN JJ CC JJ RB IN DT NN ; CC DT NNS RB VBG IN PRP VBP DT NNS , CC VB PRP IN NN . `` I 'm sorry but my answering machine is out of order . PRP VBP JJ CC PRP$ NN NN VBZ IN IN NN . I am leaving a broken CD player in its place . PRP VBP VBG DT JJ NN NN IN PRP$ NN . It ca n't take messages either . PRP MD RB VB NNS RB . In fact , it ca n't even play you a nice tune while you wait to not leave a message . IN NN , PRP MD RB RB VB PRP DT JJ NN IN PRP VBP TO RB VB DT NN . Global oil prices fell Monday as investors apparently interpreted the bankruptcy of a major U.S. investment bank as a signal that the global economy could slow down , cutting demand for oil . JJ NN NNS VBD NNP IN NNS RB VBD DT NN IN DT JJ NNP NN NN IN DT NN IN DT JJ NN MD VB RP , VBG NN IN NN . Prices were also pushed down by reports that Hurricane Ike did only limited damage to key U.S. oil producing and refining facilities . NNS VBD RB VBN RP IN NNS IN NNP NNP VBD RB JJ NN TO JJ NNP NN NN CC NN NNS . In electronic trading in New York , the price of oil for future delivery was down more than $ 7 , putting the price of a barrel of oil at $ 94.13 . IN JJ NN IN NNP NNP , DT NN IN NN IN JJ NN VBD RB JJR IN $ CD , VBG DT NN IN DT NN IN NN IN $ CD . That is the lowest price since February , and a drop of one-third since the record-high recorded in July . DT VBZ DT JJS NN IN NNP , CC DT NN IN NN IN DT NN VBN IN NNP . Another benchmark oil price , Brent crude , fell even lower . DT JJ NN NN , JJ NN , VBD RB JJR . Palestinian protests erupted in east Jerusalem on Tuesday after Israeli forces demolished a home in the Arab neighborhood of Issawiya . JJ NNS VBD IN JJ NNP IN NNP IN JJ NNS VBD DT NN IN DT JJ NN IN NNP . Israeli police report an angry crowd of protesters threw rocks and set several cars on fire before forces broke up the demonstration . JJ NN NN DT JJ NN IN NNS VBD NNS CC VBD JJ NNS IN NN IN NNS VBD RP DT NN . Israeli authorities say a home and a small room housing a printing press next door were demolished because they were built illegally . JJ NNS VBP DT NN CC DT JJ NN NN DT NN NN JJ NN VBD VBN IN PRP VBD VBN RB . Also on Tuesday , five Palestinians were injured by Israeli gunfire while looking for construction material in rubble near Gaza 's northern border with Israel . RB IN NNP , CD NNS VBD VBN IN JJ NN IN VBG IN NN NN IN NN IN NNP POS JJ NN IN NNP . The Israeli military said it had opened fire on three Palestinians approaching the border fence after they failed to respond to warning shots . DT JJ NN VBD PRP VBD VBN NN IN CD NNS VBG DT NN NN IN PRP VBD TO VB TO VBG NNS . NEW : Follow our Middle East stories on Twitter and discuss them on our Facebook page . JJ IN VB PRP$ NNP NNP NNS IN NNP CC VB PRP IN PRP$ NNP NN . Afghan security forces have seized more than 15 tons of illegal drugs in a series of operations across the country . JJ NN NNS VBP VBN RBR IN CD NNS IN JJ NNS IN DT NN IN NNS IN DT NN . The nation 's top drug enforcement official , Lieutenant General Mohammed Daoud Daoud said Saturday the seizures over the past 10 days included one ton of heroin . DT NN POS JJ NN NN NN , NNP NNP NNP NNP NNP VBD NNP DT NNS IN DT JJ CD NNS VBD CD NN IN NN . He also is quoted by the French news agency as saying that more than a dozen men were arrested . PRP RB VBZ VBN IN DT JJ NN NN IN VBG IN JJR IN DT NN NNS VBD VBN . Daoud said the government is seeking to increase efforts to block cultivation of poppy and other drugs . NNP VBD DT NN VBZ VBG TO VB NNS TO VB NN IN NN CC JJ NNS . The United Nations has reported that opium production is up 60 percent this year in Afghanistan . DT NNP NNP VBZ VBN IN NN NN VBZ RP CD NN DT NN IN NNP . The world body says much of the proceeds of the illegal drug trade are funding insurgent activities and fueling political corruption . DT NN NN VBZ NN IN DT NNS IN DT JJ NN NN VBP VBG JJ NNS CC VBG JJ NN . Afghan President Hamid Karzai has warned a booming trade in opium and heroin threatens the existence of Afghanistan as a nation-state . JJ NNP NNP NNP VBZ VBN DT JJ NN IN NN CC NN VBZ DT NN IN NNP IN DT NN . In an interview with the Associated Press Sunday , the Afghan leader called drugs a bigger threat than terrorism . IN DT NN IN DT NNP NNP NNP , DT JJ NN VBD NNS DT JJR NN IN NN . He said foreign crime groups and terrorists are forcing farmers to grow poppies . PRP VBD JJ NN NNS CC NNS VBP VBG NNS TO VB NNS . He said drugs are criminalizing the economy , tainting the country 's image and hindering the development of strong government institutions . PRP VBD NNS VBP VBG DT NN , VBG DT NN POS NN CC VBG DT NN IN JJ NN NNS . During the interview , Mr. Karzai also invited Taleban leader Mullah Omar to contact his government and seek reconciliation . IN DT NN , NNP NNP RB VBD NNP NN NNP NNP TO VB PRP$ NN CC VB NN . But he expressed doubts that the fugitive leader would come out of hiding . CC PRP VBD NNS IN DT JJ NN MD VB IN IN NN . The Afghan leader also said that NATO-led troops taking over security in southern part of the country must not use aggressive tactics without government permission . DT JJ NN RB VBD IN JJ NNS VBG RP NN IN JJ NN IN DT NN MD RB VB JJ NNS IN NN NN . Europe 's top human rights watchdog has expanded its probe into the alleged secret international prison network run by the U.S. Central Intelligence Agency . NNP POS JJ JJ NNS NN VBZ VBN PRP$ NN IN DT JJ JJ JJ NN NN VBN IN DT NNP NNP NNP NNP . The Council of Europe said it is investigating whether European airports were used by CIA aircraft transporting prisoners to secret detention centers . DT NNP IN NNP VBD PRP VBZ VBG IN JJ NNS VBD VBN IN NNP NN VBG NNS TO JJ NN NNS . The Council is already investigating the existence of alleged CIA prisons in European nations . DT NNP VBZ RB VBG DT NN IN JJ NNP NNS IN JJ NNS . Separately , Austria Wednesday said an aircraft suspected of transporting CIA terrorist captives flew though its airspace in 2003 . RB , NNP NNP VBD DT NN VBN IN VBG NNP JJ NNS VBD IN PRP$ NN IN CD . Austria 's Air Force Chief Major General Erich Wolf told Austrian radio that military jets scrambled to intercept the plane that took off from Germany but found nothing wrong and allowed it to proceed to Baku , Azerbaijan . NNP POS NNP NNP NNP NNP NNP NNP NNP VBD JJ NN IN JJ NNS VBD TO VB DT NN WDT VBD RP IN NNP CC VBD DT JJ CC VBD PRP TO VB TO NNP , NNP . Press reports say the CIA has been holding and interrogating terrorist suspects at secret detention facilities in several countries abroad , circumventing U.S. laws protecting prisoners . NNP NNS VBP DT NNP VBZ VBN VBG CC VBG JJ NNS IN JJ NN NNS IN JJ NNS RB , VBG NNP NNS VBG NNS . U.S authorities have refused either to confirm or deny the reports . NNP NNS VBP VBN RB TO VB CC VB DT NNS . UN Secretary-General Kofi Annan NNP NNP NNP NNP United Nations Secretary-General Kofi Annan is leaving Tuesday for Africa , where he will co-chair a conference designed to raise support for the African Union mission in Sudan 's western Darfur region . NNP NNP NNP NNP NNP VBZ VBG NNP IN NNP , WRB PRP MD VB DT NN VBN TO VB NN IN DT NNP NNP NN IN NNP POS JJ NNP NN . The secretary-general spoke about his trip with reporters Monday at U.N. headquarters in New York . DT NN VBD IN PRP$ NN IN NNS NNP IN NNP NN IN NNP NNP . He said he will co-chair the donor 's meeting Thursday in Addis Ababa , Ethiopia , where the A.U. has its headquarters . PRP VBD PRP MD VB DT NN POS NN NNP IN NNP NNP , NNP , WRB DT NNP VBZ PRP$ NN . Mr. Annan said there are plans to expand the AU peacekeeping force in Darfur from the current 2,000 troops to 8,000 . NNP NNP VBD EX VBP NNS TO VB DT NNP NN NN IN NNP IN DT JJ CD NNS TO CD . But he said the AU is about $ 350 million short for the project . CC PRP VBD DT NNP VBZ IN $ CD CD JJ IN DT NN . The secretary-general will also be traveling to the Darfur region himself and to Sudan 's southern town of Rumbek , where he will examine the peace process . DT NN MD RB VB VBG TO DT NNP NN PRP CC TO NNP POS JJ NN IN NNP , WRB PRP MD VB DT NN NN . The murder trial of Phil Spector was halted April 30 , when one of the defense attorneys sought medical attention . DT NN NN IN NNP NNP VBD VBN NNP CD , WRB CD IN DT NN NNS VBD JJ NN . Superior Court Judge Larry Paul Fidler did not provide a reason why Bruce Cutler consulted a physician , but told jurors that court would reconvene May 2 . NNP NNP NNP NNP NNP NNP VBD RB VB DT NN WRB NNP NNP VBD DT NN , CC VBD NNS IN NN MD VB NNP CD . Spector , 67 , famous for his ' Wall of Sound ' production technique , is accused of fatally shooting actress Lana Clarkson in February , 2003 . NNP , CD , JJ IN PRP$ `` NNP IN NNP `` NN NN , VBZ VBN IN RB VBG NN NNP NNP IN NNP , CD . He met Clarkson at the House Of Blues in Hollywood , where she was a hostess . PRP VBD NNP IN DT NNP IN NNPS IN NNP , WRB PRP VBD DT NN . Prosecutors allege Spector did not mean to murder the 40-year-old actress , but caused her death through reckless behavior . NNS VBP NNP VBD RB VB TO NN DT JJ NN , CC VBD PRP$ NN IN JJ NN . The Indonesian health ministry says bird flu is suspected in the recent deaths of a man and his two daughters near Jakarta . DT JJ NN NN VBZ NN NN VBZ VBN IN DT JJ NNS IN DT NN CC PRP$ CD NNS IN NNP . The victims would be Indonesia 's first human fatalities linked to avian influenza . DT NNS MD VB NNP POS JJ JJ NNS VBN TO JJ NN . Health Minister Siti Fadillah Supari says there is no evidence the man and his daughters had contact with sickened poultry , which raises the probability of human-to-human transmission of bird flu . NNP NNP NNP NNP NNP VBZ EX VBZ DT NN DT NN CC PRP$ NNS VBD NN IN JJ NN , WDT VBZ DT NN IN JJ NN IN NN NN . Hundreds of millions of birds have died or been culled across Asia during the past two years due to the deadly virus which has jumped to humans , killing people in Vietnam , Cambodia and Thailand . NNS IN NNS IN NNS VBP VBN CC VBN VBN IN NNP IN DT JJ CD NNS JJ TO DT JJ NN WDT VBZ VBN TO NNS , VBG NNS IN NNP , NNP CC NNP . World health officials have long feared the virus might change into a form easily transferable among people , triggering a deadly global pandemic . NNP NN NNS VBP RB VBN DT NN MD VB IN DT NN RB JJ IN NNS , VBG DT JJ JJ NN . Russian authorities say power has been fully restored to the Moscow region Thursday , a day after a massive blackout knocked out electricity to large parts of the Russian capital . JJ NNS VBP NN VBZ VBN RB VBN TO DT NNP NN NNP , DT NN IN DT JJ NN VBD RP NN TO JJ NNS IN DT JJ NN . The blackout Wednesday left thousands of people stranded on subways , shut down the stock market , and forced hospitals to switch to emergency power . DT NN NNP VBD NNS IN NNS VBN IN NNS , VBD RP DT NN NN , CC VBD NNS TO VB TO NN NN . Energy Minister Viktor Khristenko blamed the power outage on a fire and explosion at an energy substation . NNP NNP NNP NNP VBD DT NN NN IN DT NN CC NN IN DT NN NN . President Vladimir Putin has accused the state-run power company ( Unified Energy Systems ) of negligence . NNP NNP NNP VBZ VBN DT JJ NN NN LRB NNP NNP NNP RRB IN NN . Meanwhile , prosecutors have opened a criminal case over the power outage , and say they plan to question the chairman of the power company , Anatoly Chubais , who is also one of Mr. Putin 's top political rivals . RB , NNS VBP VBN DT JJ NN IN DT NN NN , CC VBP PRP VBP TO VB DT NN IN DT NN NN , NNP NNP , WP VBZ RB CD IN NNP NNP POS JJ JJ NNS . The outage extended as far south as the Tula region , about 200 kilometers south of Moscow . DT NN VBD IN RB RB IN DT NNP NN , IN CD NNS RB IN NNP . Nigerian military officials say four soldiers and a policeman were killed in a fierce gun battle Wednesday with militants in the oil-rich Niger Delta . JJ JJ NNS VBP CD NNS CC DT NN VBD VBN IN DT JJ NN NN NNP IN NNS IN DT NN NNP NNP . A Navy spokesman said Thursday that the militants were trying to capture a fuel tanker on the Escravos River , but were repelled . DT NNP NN VBD NNP IN DT NNS VBD VBG TO VB DT NN NN IN DT NNP NNP , CC VBD VBN . Officials say three militants were killed . NNS VBP CD NNS VBD VBN . The militant group , the Movement for the Emancipation of the Niger Delta , says at least seven soldiers were killed during the gun battle . DT JJ NN , DT NN IN DT NN IN DT NNP NNP , VBZ IN JJS CD NNS VBD VBN IN DT NN NN . They also say that army gunboats attacked them first . PRP RB VBP IN NN NNS VBD PRP RB . The militants kidnapped nine foreign oil workers last month , but have freed six of them . DT NNS VBD CD JJ NN NNS JJ NN , CC VBP VBN CD IN PRP . They say they will not release the other three until the people of the Delta region receive a greater share of oil revenues . PRP VBP PRP MD RB VB DT JJ CD IN DT NNS IN DT NNP NN VBP DT JJR NN IN NN NNS . Nigeria is Africa 's biggest oil exporter , but recent violence has forced an estimated 20 percent cut in the country 's output . NNP VBZ NNP POS JJS NN NN , CC JJ NN VBZ VBN DT JJ CD NN NN IN DT NN POS NN . A top official at the International Monetary Fund ( IMF ) says wealthy countries will need to start cutting spending and deal with huge national debts next year . DT JJ NN IN DT NNP NNP NNP LRB NNP RRB VBZ JJ NNS MD VB TO VB VBG NN CC NN IN JJ JJ NNS JJ NN . John Lipsky , the first deputy managing director of the IMF , said in a speech in China Sunday that stimulus spending remains appropriate in 2010 to push the global economic recovery . NNP NNP , DT JJ NN VBG NN IN DT NNP , VBD IN DT NN IN NNP NNP WDT NN NN VBZ JJ IN CD TO VB DT JJ JJ NN . But he says wealthy nations must cut spending , increase taxes and reform pensions and health entitlements to reduce debt in 2011 . CC PRP VBZ JJ NNS MD VB NN , VB NNS CC VB NNS CC NN NNS TO VB NN IN CD . Lipsky says cutting stimulus measures put in place during the economic crisis will not be enough , because the stimulus programs account for only about one percent of rich countries ' gross domestic products . NNP VBZ VBG NN NNS VBN IN NN IN DT JJ NN MD RB VB RB , IN DT NN NNS VBP IN RB IN CD NN IN JJ NNS POS JJ JJ NNS . He estimated that government debt will be higher than annual GDP in most advanced economies by 2014 , the highest debt-to-GDP ratio since the years after World War II . PRP VBD IN NN NN MD VB JJR IN JJ NN IN JJS JJ NNS IN CD , DT JJS JJ NN IN DT NNS IN NNP NNP NNP . South African Wesley Moodie has reached the second round of the Legg Mason Tennis Classic in Washington . NNP NNP NNP NNP VBZ VBN DT JJ NN IN DT NNP NNP NNP NNP IN NNP . Moodie , ranked 86th in the world , needed four match points Monday to beat American Sam Querrey , 02-Jun , 07-Jun , 07-Jun . NNP , VBD CD IN DT NN , VBD CD NN NNS NNP TO VB JJ NNP NNP , CD , CD , CD . Moodie never managed a service break while Querrey fired 19 aces . NNP RB VBD DT NN NN IN NNP VBD CD NNS . But Moodie won 10-percent more of his first-serve points to claim just his fifth win this year . CC NNP VBD JJ JJR IN PRP$ JJ NNS TO VB RB PRP$ JJ NN DT NN . Moodie next faces French sixth-seed Sebastien Grosjean . NNP RB VBZ JJ JJ NNP NNP . Kenneth Carlsen of Denmark advanced past Danai Udomchoke , 06-Jan , 06-Feb . NNP NNP IN NNP VBD IN NNP NNP , CD , CD . Carlsen will face another Thai opponent , 43rd-ranked Paradorn Srichaphan , in the second round . NNP MD VB DT JJ NN , JJ NNP NNP , IN DT JJ NN . American Kevin Kim ousted compatriot Scott Oudsema , 06-Jan , 06-Mar . NNP NNP NNP VBD NN NNP NNP , CD , CD . Kim next plays top-seeded American James Blake , who was the runner-up last year to compatriot Andy Roddick . NNP JJ NNS JJ NNP NNP NNP , WP VBD DT NN JJ NN TO VB NNP NNP . Haitian and U.N. officials are appealing for calm following protests by Haitians who have demanded that front-runner Rene Preval be declared the winner of last week 's presidential election . JJ CC NNP NNS VBP VBG IN NN VBG NNS IN NNS WP VBP VBN IN NN NNP NNP VB VBN DT NN IN JJ NN POS JJ NN . Preval is expected to address Haiti 's citizens later Tuesday in Port-au-Prince . NNP VBZ VBN TO VB NNP POS NNS RB NNP IN NNP . On Monday , protesters set up roadblocks , burned tires and stormed a hotel in Port-au-Prince . IN NNP , NNS VBD RP NNS , VBN NNS CC VBD DT NN IN NN . At least one man was killed in the violence . IN JJS CD NN VBD VBN IN DT NN . With 90 percent of votes counted , former President Preval has nearly 49 percent of the vote . IN CD NN IN NNS VBN , JJ NNP NNP VBZ RB CD NN IN DT NN . He needs to exceed 50 percent to win outright and avoid a runoff election . PRP VBZ TO VB CD NN TO VB JJ CC VB DT NN NN . Another former president , Leslie Manigat , is second with about 12 percent . DT JJ NN , NNP NNP , VBZ JJ IN RB CD NN . A State Department spokesman Monday said Secretary of State Condoleezza Rice and U.N. Secretary-General Kofi Annan Monday have discussed the importance of Haitian citizens respecting the election process . DT NNP NNP NN NNP VBD NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP VBP VBN DT NN IN JJ NNS VBG DT NN NN . Saudi Arabia and most Gulf Arab states have announced they will celebrate the Muslim holiday of Eid al-Fitr on Friday to mark the end of the holy fasting month of Ramadan . NNP NNP CC RBS NNP NNP NNS VBP VBN PRP MD VB DT NNP NN IN NNP NNP IN NNP TO VB DT NN IN DT JJ JJ NN IN NNP . Religious councils in Saudi Arabia , the United Arab Emirates , Kuwait and other Arab states said the moon 's crescent was not sighted after nightfall Wednesday , meaning there will be one more day of fasting before the holy month comes to an end . JJ NNS IN NNP NNP , DT NNP NNP NNPS , NNP CC JJ JJ NNS VBD DT NN POS NN VBD RB VBN IN NN NNP , VBG EX MD VB CD JJR NN IN VBG IN DT JJ NN VBZ TO DT NN . Muslims scan the sky at night in search of the new moon to proclaim the start of the month in Islam 's lunar calendar . NNPS VBP DT NN IN NN IN NN IN DT JJ NN TO VB DT NN IN DT NN IN NNP POS NN NN . Like most major Islamic events , the start of the Eid festival depends on a lunar sighting . IN JJS JJ JJ NNS , DT NN IN DT NNP NN VBZ IN DT NN NN . The timing of Eid can vary in different countries accordingly . DT NN IN NNP MD VB IN JJ NNS RB . Eid al-Fitr celebrates the purification achieved by a month of sunrise-to-sunset fasting , one of the five pillars of Islam , and is marked by several days of festivities . NNP NNP VBZ DT NN VBN IN DT NN IN JJ NN , CD IN DT CD NNS IN NNP , CC VBZ VBN IN JJ NNS IN NNS . Calling the press an ' agent of change , ' United Nations Secretary-General Kofi Annan marked the thirteenth annual World Press Freedom Day by declaring his support of the universal right to freedom of expression . VBG DT NN DT `` NN IN NN , `` NNP NNP NNP NNP NNP VBD DT JJ JJ NNP NNP NNP NNP IN VBG PRP$ NN IN DT JJ NN TO NN IN NN . According to the international group Committee to Protect Journalists , press freedom in Africa has deteriorated in the past year . VBG TO DT JJ NN NNP TO VB NNS , NN NN IN NNP VBZ VBN IN DT JJ NN . The group 's Africa Coordinator , Julia Crawford , says Eritrea and Equatorial Guinea are among the top 10 countries in the world that censor their journalists the most . DT NN POS NNP NNP , NNP NNP , VBZ NNP CC NNP NNP VBP IN DT JJ CD NNS IN DT NN WDT VBP PRP$ NNS DT JJS . But she also criticized Ethiopia for the recent jailings of reporters . CC PRP RB VBD NNP IN DT JJ NNS IN NNS . Crawford says there are some countries , like Liberia , where press freedom is more hopeful . NNP VBZ EX VBP DT NNS , IN NNP , WRB NN NN VBZ RBR JJ . She notes that freedom of the press is an essential foundation for democracy . PRP VBZ IN NN IN DT NN VBZ DT JJ NN IN NN . The Committee to Protect Journalists says 47 journalists were killed around the world in 2005 , and 11 have lost their lives so far this year . DT NNP TO VB NNS VBZ CD NNS VBD VBN IN DT NN IN CD , CC CD VBP VBN PRP$ NNS RB RB DT NN . A new survey says more Afghans think their country is heading in the right direction , even though many believe it is still plagued by a lack of security . DT JJ NN VBZ RBR NNS VBP PRP$ NN VBZ VBG IN DT JJ NN , RB IN JJ VBP PRP VBZ RB VBN IN DT NN IN NN . In a poll released Tuesday by the Asia Foundation , 47 percent of those surveyed said Afghanistan is on the right track . IN DT NN VBN NNP IN DT NNP NNP , CD NN IN DT VBN VBD NNP VBZ IN DT JJ NN . That is up from 42 percent in 2009 . DT VBZ RB IN CD NN IN CD . A lack of security was listed as the nation 's top problem , followed by unemployment and corruption . DT NN IN NN VBD VBN IN DT NN POS JJ NN , VBN IN NN CC NN . This year 's survey showed a large jump in the number of Afghans who say they support efforts to negotiate with armed groups . DT NN POS NN VBD DT JJ NN IN DT NN IN NNS WP VBP PRP VBP NNS TO VB IN JJ NNS . More than 83 percent of those surveyed said they back talks with insurgents , up from 71 percent in 2009 . JJR IN CD NN IN DT VBN VBD PRP VBP NNS IN NNS , RB IN CD NN IN CD . The Asia Foundation surveyed more than 6,400 Afghan adults in June and July . DT NNP NNP VBD JJR IN CD JJ NNS IN NNP CC NNP . French counter-terrorism units have detained at least 10 people suspected of recruiting religious extremists and sending them as fighters in the insurgency in Iraq . JJ NN NNS VBP VBN IN JJS CD NNS VBN IN NN JJ NNS CC VBG PRP IN NNS IN DT NN IN NNP . French authorities say four of the suspects were arrested Wednesday . JJ NNS VBP CD IN DT NNS VBD VBN NNP . They are being held with at least six others detained Monday . PRP VBP VBG VBN IN IN JJS CD NNS VBN NNP . Authorities launched an investigation last year to determine if extremists are running a network in France recruiting Islamic militants to fight U.S. forces in Iraq . NNS VBD DT NN JJ NN TO VB IN NNS VBP VBG DT NN IN NNP NN NNP NNS TO VB NNP NNS IN NNP . French officials began the investigation last September after the deaths of a number of French Muslims there . JJ NNS VBD DT NN JJ NNP IN DT NNS IN DT NN IN JJ NNS RB . The French news agency , AFP , says intelligence agents believe between 15 and 30 French nationals are combatants who have joined insurgents in Iraq . DT JJ NN NN , NNP , VBZ NN NNS VBP IN CD CC CD JJ NNS VBP NNS WP VBP VBN NNS IN NNP . Four have been killed in clashes with U.S. forces . CD VBP VBN VBN IN NNS IN NNP NNS . Former U.S. House Majority Leader Tom DeLay has successfully petitioned to remove the judge set to preside over the politician 's campaign-finance trial . JJ NNP NNP NNP NNP NNP NNP VBZ RB VBN TO VB DT NN VBD TO VB IN DT NN POS NN NN . In a Texas courtroom Tuesday , a retired district judge , C.W. Duncan , hearing the petition ruled in favor of the embattled Republican lawmaker . IN DT NNP NN NNP , DT JJ NN NN , NNP NNP , VBG DT NN VBD IN NN IN DT VBN NNP NN . Last week , Mr. DeLay 's lawyer filed a motion asking that the trial 's judge , Bob Perkins , be replaced because he has contributed to MoveOn.org , a political action group that has been critical of Mr. DeLay and supports Democratic Party candidates and issues . JJ NN , NNP NNP POS NN VBD DT NN VBG IN DT NN POS NN , NNP NNP , VB VBN IN PRP VBZ VBN TO NNP , DT JJ NN NN WDT VBZ VBN JJ IN NNP NNP CC VBZ JJ NNP NNS CC NNS . Mr. DeLay and two associates are accused of illegally funneling corporate donations to candidates . NNP NNP CC CD NNS VBP VBN IN RB VBG JJ NNS TO NNS . All three have denied any wrongdoing . DT CD VBP VBN DT NN . Mr. DeLay was forced to step down from the majority leader 's post under House rules , but retains his congressional seat . NNP NNP VBD VBN TO VB RB IN DT NN NN POS NN IN NNP NNS , CC VBZ PRP$ JJ NN . Iraqi officials say a car bomb in central Baghdad has killed at least 14 people and wounded at least 64 others . JJ NNS VBP DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD NNS . They say a woman and a child are among the dead from Friday 's blast in a crowded market . PRP VBP DT NN CC DT NN VBP IN DT NN IN NNP POS NN IN DT JJ NN . In other developments , the U.S. military says coalition forces killed five militants and detained 14 suspects during operations against al-Qaida in Iraq . IN JJ NNS , DT NNP NN VBZ NN NNS VBD CD NNS CC VBD CD NNS IN NNS IN NNP IN NNP . Officials say the raid in Muqdadiyah targeted individuals associated with a network involved in numerous engagements with coalition forces . NNS VBP DT NN IN NNP JJ NNS VBN IN DT NN VBN IN JJ NNS IN NN NNS . The military says coalition forces also conducted operations near Salman Pak , Samarra and Baghdad . DT JJ VBZ NN NNS RB VBN NNS IN NNP NNP , NNP CC NNP . Chilean authorities have arrested the wife and four children of former dictator Augusto Pinochet on tax evasion charges . JJ NNS VBP VBN DT NN CC CD NNS IN JJ NN NNP NNP IN NN NN NNS . A judge ordered the arrest of Lucia Hiriart and her children Monday as part of an investigation into millions of dollars kept in bank accounts abroad . DT NN VBD DT NN IN NNP NNP CC PRP$ NNS NNP IN NN IN DT NN IN NNS IN NNS VBN IN NN NNS RB . General Pinochet has been indicted for tax fraud for allegedly hiding $ 27 million in foreign bank accounts . NNP NNP VBZ VBN VBN IN NN NN IN RB VBG $ CD CD IN JJ NN NNS . Pinochet also faces human rights charges related to ' Operation Colombo ' , in which some 119 political opponents disappeared during the former dictator 's rule in the mid-1970s . NNP RB VBZ JJ NNS NNS VBN TO `` NNP NNP `` , IN WDT DT CD JJ NNS VBN IN DT JJ NN POS NN IN DT NNS . His lawyers say he is not healthy enough to stand trial , but court-ordered doctors say he is fit enough to do so . PRP$ NNS VBP PRP VBZ RB JJ RB TO VB NN , CC JJ NNS VBP PRP VBZ JJ RB TO VB RB . More than two million Muslim pilgrims on the ritual journey known as Hajj are Saturday performing a ritual stoning ceremony in Mina , Saudi Arabia . JJR IN CD CD NNP NNS IN DT JJ NN VBN IN NNP VBP NNP VBG DT JJ NN NN IN NNP , NNP NNP . Millions of people crowded into the holy site to throw small stones at walls called jamarat , as part of a ritual representing the symbolic stoning of the devil . NNS IN NNS VBN IN DT JJ NN TO VB JJ NNS IN NNS VBN NN , IN NN IN DT JJ VBG DT JJ NN IN DT NN . More than 360 worshippers died in a stampede during the stoning ritual a year ago . JJR IN CD NNS VBD IN DT NN IN DT VBG NN DT NN RB . Saudi authorities have spent more than $ 1 billion renovating the site to make it safe . JJ NNS VBP VBN JJR IN $ CD CD VBG DT NN TO VB PRP JJ . The Hajj began Thursday under heavy security . DT NNP VBD NNP IN JJ NN . The grueling ritual is a duty for every able-bodied Muslim who can afford to make the trip . DT JJ NN VBZ DT NN IN DT JJ NN WP MD VB TO VB DT NN . Each year pilgrims wearing white robes , symbolizing equality , converge on Islamic holy sites in Saudi Arabia for five days of rituals , prayer and communion with fellow Muslims . DT NN VBZ VBG JJ NNS , VBG NN , NN IN JJ JJ NNS IN NNP NNP IN CD NNS IN NNS , NN CC NN IN JJ NNPS . Iraqi officials say two Iraqi policemen and two civilians have been mistakenly killed by U.S. troops after a U.S. convoy was bombed south of Baghdad . JJ NNS VBP CD JJ NNS CC CD NNS VBP VBN RB VBN IN NNP NNS IN DT NNP NN VBD VBN RB IN NNP . U.S. military officials have not commented on the incident , which the Iraqi Interior Ministry said occurred late Saturday in an area known as the triangle of death . NNP JJ NNS VBP RB VBN IN DT NN , WDT DT JJ NNP NNP VBD VBD JJ NNP IN DT NN VBN IN DT NN IN NN . In a separate incident , U.S. authorities have expressed deep regret for the mistaken bombing Saturday of a house near the northern city of Mosul . IN DT JJ NN , NNP NNS VBP VBN JJ NN IN DT NN VBG NNP IN DT NN IN DT JJ NN IN NNP . U.S. officials say five people were killed when U.S. airstrikes hit the wrong house . NNP NNS VBP CD NNS VBD VBN WRB NNP VBZ VB DT JJ NN . Witnesses and journalists say 14 were killed . NNS CC NNS VBP CD VBD VBN . U.S. officials say a probe is continuing . NNP NNS VBP DT NN VBZ VBG . Meanwhile , authorities say seven Ukrainians and a Kazakh soldier were killed Sunday while trying to detonate an ammunition cache southwest of the capital , in Wasit province . RB , NNS VBP CD NNS CC DT JJ NN VBD VBN NNP IN VBG TO VB DT NN NN NN IN DT NN , IN NNP NN . Elsewhere , police in Samarra say assassins have gunned down the city 's deputy police chief in a drive-by shooting . RB , NNS IN NNP VBP NNS VBP VBN RP DT NN POS NN NN NN IN DT JJ NN . Thousands of Ugandans turned out today for the official state funeral of the country 's founding father and two-time president , Milton Obote . NNS IN NNS VBD RP NN IN DT JJ NN NN IN DT NN POS JJ NN CC JJ NN , NNP NNP . The managing editor of the daily Monitor newspaper in Kampala , Peter Mwesige , says it was attended by government officials , political supporters and relatives of the former leader . DT NN NN IN DT JJ NNP NN IN NNP , NNP NNP , VBZ PRP VBD VBN IN NN NNS , JJ NNS CC NNS IN DT JJ NN . But he told VOA reporter Shaka Ssali that Ugandan president Yoweri Museveni was not there . CC PRP VBD NNP NN NNP NNP IN JJ NN NNP NNP VBD RB RB . The day was not declared a national public holiday , which to some is a source of controversy . DT NN VBD RB VBN DT JJ JJ NN , WDT TO DT VBZ DT NN IN NN . Dr. Obote 's coffin is now on a tour of several Ugandan towns . NNP NNP VBZ NN VBZ RB IN DT NN IN JJ JJ NNS . On Monday he will be buried at his ancestral home in northern Uganda . IN NNP PRP MD VB VBN IN PRP$ JJ NN IN JJ NNP . The 81-year-old leader died of kidney failure in South Africa last week . DT JJ NN VBD IN NN NN IN NNP NNP JJ NN . He was toppled from power in 1985 and spent the rest of his life in exile in Zambia . PRP VBD VBN IN NN IN CD CC VBD DT NN IN PRP$ NN IN NN IN NNP . Portugal 's two biggest unions have launched a day of strikes to protest planned austerity measures . NNP POS CD JJS NNS VBP VBN DT NN IN NNS TO VB JJ NN NNS . The strikes Wednesday affected the transport sector , grounding flights and causing the cancelation of some bus and train services . DT NNS NNP VBD DT NN NN , VBG NNS CC VBG DT NN IN DT NN CC NN NNS . Banking services and other businesses , including an automotive plant were also affected . NNP NNS CC JJ NNS , VBG DT JJ NN VBD RB VBN . Unions , representing both public and private sector workers , expected the stoppage to be the biggest in 20 years . NNS , VBG DT JJ CC JJ NN NNS , VBD DT NN TO VB DT JJS IN CD NNS . The government proposes to address a budget crisis by slashing spending , including wage cuts for public workers . DT NN VBZ TO VB DT NN NN IN VBG NN , VBG NN NNS IN JJ NNS . European Council President Herman van Rompuy said Tuesday Portugal does not need the kind of financial bailout the European Union is discussing with Ireland . JJ NNP NNP NNP NNP NNP VBD NNP NNP VBZ RB VB DT NN IN JJ NN DT NNP NNP VBZ VBG IN NNP . He said Portugal 's banks are well capitalized , and that the country has not experienced the type of housing market collapse that has affected other economies . PRP VBD NNP POS NNS VBP RB VBN , CC IN DT NN VBZ RB VBN DT NN IN NN NN NN WDT VBZ VBN JJ NNS . British police have been out in force in Edinburgh , Scotland , Monday , where demonstrators have begun protesting the G-Eight conference of industrialized nations that opens Wednesday . JJ NNS VBP VBN RP IN NN IN NNP , NNP , NNP , WRB NNS VBP VBN VBG DT JJ NN IN JJ NNS WDT VBZ NNP . An undetermined number of arrests were reported after some of the protesters scuffled with police . DT JJ NN IN NNS VBD VBN IN DT IN DT NNS VBD IN NN . There were no reports of serious violence . EX VBD DT NNS IN JJ NN . Advocates of several causes have descended to promote their causes , including representatives from anti-military , anti-nuclear , and anti-globalization groups . NNS IN JJ NNS VBP VBN TO VB PRP$ NNS , VBG NNS IN JJ , JJ , CC JJ NNS . The pro-reunification party in Cyprus ' Turkish enclave has scored a strong victory in parliamentary elections , but not enough to gain an outright majority . DT JJ NN IN NNP POS JJ NN VBZ VBN DT JJ NN IN JJ NNS , CC RB RB TO VB DT JJ NN . The Republican Turkish Party of Prime Minister Mehmet Ali Talat secured 44 percent of the vote in Sunday 's election , well ahead of its opponent , the National Unity Party of former Prime Minister Dervis Eroglu . DT NNP NNP NNP IN NNP NNP NNP NNP NNP VBD CD NN IN DT NN IN NNP POS NN , RB RB IN PRP$ NN , DT NNP NNP NNP IN JJ NNP NNP NNP NNP . Mr. Talat , whose party won 24 of 50 seats in parliament , favors a United Nations plan to reunify the 30-year-old breakaway Turkish Cypriot enclave with the Greek Cypriot government . NNP NNP , WP$ NN VBD CD IN CD NNS IN NN , VBZ DT NNP NNP NN TO VB DT JJ NN JJ JJ NN IN DT JJ JJ NN . Mr. Eroglu strongly opposes the UN plan . NNP NNP RB VBZ DT NNP NN . Greek Cypriots rejected reunification last year , but were allowed to join the European Union under a complicated set of rules for the divided island . JJ NNS VBD NN JJ NN , CC VBD VBN TO VB DT NNP NNP IN DT JJ NN IN NNS IN DT VBN NN . Sunday 's vote was closely watched in Turkey , whose chances for EU membership hinge on resolution of the Cyprus dispute . NNP POS NN VBD RB VBN IN NNP , WP$ NNS IN NNP NN NN IN NN IN DT NNP NN . Indian authorities say an explosion set off by Maoist rebels in central Chhattisgarh state has killed 13 civilians and wounded several others . JJ NNS VBP DT NN VBN RP IN NNP NNS IN JJ NNP NN VBZ VBN CD NNS CC VBN JJ NNS . Local police say the incident took place late Friday south of the state capital , Raipur , and that the blast was most likely intended for security forces . JJ NNS VBP DT NN VBD NN JJ NNP NN IN DT NN NN , NNP , CC IN DT NN VBD RBS JJ VBN IN NN NNS . The Maoists have stepped up attacks on police and government supporters in the area in recent months . DT NNPS VBP VBN RP NNS IN NN CC NN NNS IN DT NN IN JJ NNS . Last week , they seized a train in neighboring eastern Jharkhand state , holding some 200 people on board at gunpoint for several hours before leaving . JJ NN , PRP VBD DT NN IN VBG JJ NNP NN , VBG DT CD NNS IN NN IN NN IN JJ NNS IN VBG . The rebels say they are fighting on behalf of poor people and landless laborers . DT NNS VBP PRP VBP VBG IN NN IN JJ NNS CC JJ NNS . A series of discouraging reports on the U.S. economy has brought sharp criticism from the Democrat who heads a key economic committee . DT NN IN JJ NNS IN DT NNP NN VBZ VBN JJ NN IN DT NNP WP VBZ DT JJ JJ NN . Senator Charles Schumer said Friday reports showing a declining job market and record-high foreclosures are more evidence that the U.S. economy is headed for recession . NNP NNP NNP VBD NNP NNS VBG DT VBG NN NN CC JJ NNS VBP JJR NN IN DT NNP NN VBZ VBN IN NN . Schumer accuses the Bush administration of doing far too little to fend off the economic crisis . NNP VBZ DT NNP NN IN VBG RB RB JJ TO VB RP DT JJ NN . White House spokesman Tony Fratto says the economy is in for a ' difficult quarter , ' but notes that the new stimulus plan is just getting underway . NNP NNP NN NNP NNP VBZ DT NN VBZ IN IN DT `` JJ NN , `` CC VBZ IN DT JJ NN NN VBZ RB VBG NN . He says it should restore economic growth . PRP VBZ PRP MD VB JJ NN . The world 's stock markets posted mixed results Wednesday after a week of turmoil that saw steep losses and some recovery . DT NN POS NN NNS VBD JJ NNS NNP IN DT NN IN NN WDT VBD JJ NNS CC DT NN . The major U.S. stock market indexes lost around three-tenths of a percent after rising oil prices discouraged traders . DT JJ NNP NN NN NNS VBD IN NNS IN DT NN IN VBG NN NNS VBD NNS . European stock market indexes moved up two-tenths of a percent or more . JJ NN NN NNS VBD RP NNS IN DT NN CC JJR . Dealers say many investors are concerned that the global market sell-off that began last week may resume . NNS VBP JJ NNS VBP VBN IN DT JJ NN NN WDT VBD JJ NN MD VB . Earlier in Asia , major indices fell almost one percent in Mumbai and Hong Kong , while Tokyo was down half-a-percent at the close . RBR IN NNP , JJ NNS VBD RB CD NN IN NNP CC NNP NNP , IN NNP VBD RB JJ IN DT NN . China 's official Xinhua news agency says an HIV-positive man in northern China has infected at least 18 people with the virus by repeatedly donating blood before knowing he had the disease . NNP POS JJ NNP NN NN VBZ DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NNS IN DT NN IN RB VBG NN IN VBG PRP VBD DT NN . Three of the blood recipients have died . CD IN DT NN NNS VBP VBN . Xinhua says the man made 15 blood donations in Jilin province 's Dehui city between January of 2003 and June of 2004 . NNP VBZ DT NN VBD CD NN NNS IN NNP NN POS NNP NN IN NNP IN CD CC NNP IN CD . The report says his blood was apparently never tested for the deadly virus . DT NN VBZ PRP$ NN VBD RB RB VBN IN DT JJ NN . China 's state media say authorities are investigating the case , and that at least 11 workers of the city 's central blood bank have been detained . NNP POS NN NNS VBP NNS VBP VBG DT NN , CC IN IN JJS CD NNS IN DT NN POS JJ NN NN VBP VBN VBN . China estimates 8,40,000 people on the mainland are HIV-positive , although some experts suspect there are many more . NNP VBZ CD NNS IN DT NN VBP JJ , IN DT NNS VBP EX VBP JJ JJR . The World Health Organization says China could have 10 million people infected by 2010 . DT NNP NNP NNP VBZ NNP MD VB CD CD NNS VBN IN CD . Israeli Prime Minister Ariel Sharon 's Kadima Party has named interim Prime Minister Ehud Olmert as its acting chairman to lead the party into March 28 elections . JJ NNP NNP NNP NNP POS NNP NNP VBZ VBN JJ NNP NNP NNP NNP IN PRP$ NN NN TO VB DT NN IN NNP CD NNS . A Kadima Party statement Monday says the decision was taken because of Mr. Sharon 's medical condition . DT NNP NNP NN NNP VBZ DT NN VBD VBN IN IN NNP NNP POS JJ NN . The 77-year-old leader remains in a coma after suffering a massive stroke on January 4 . DT JJ NN VBZ IN DT NN IN VBG DT JJ NN IN NNP CD . In another development , Israel has sent security forces to the West Bank town of Hebron following a riot by Jewish settlers protesting an eviction order for eight settler families who occupied Palestinian homes four years ago . IN DT NN , NNP VBZ VBN NN NNS TO DT NNP NNP NN IN NNP VBG DT NN IN JJ NNS VBG DT NN NN IN CD JJ NNS WP VBD JJ NNS CD NNS RB . One Israeli soldier was wounded in the violence Saturday - the last day the families were to be allowed to leave without eviction by force . CD JJ NN VBD VBN IN DT NN NNP IN DT JJ NN DT NNS VBD TO VB VBN TO VB IN NN IN NN . About 400 settlers live in Hebron which has a Palestinian population of around 1,20,000 . IN CD NNS VBP IN NNP WDT VBZ DT JJ NN IN IN CD . The U.S. Army is conducting a review of the reports it has given families on the deaths of soldiers killed in combat in Iraq and Afghanistan . DT NNP NNP VBZ VBG DT NN IN DT NNS PRP VBZ VBN NNS IN DT NNS IN NNS VBN IN NN IN NNP CC NNP . Army officials announced on Friday that they are preparing to request that all unit commanders submit lists of their combat deaths so accounts of those deaths can be checked for accuracy . NNP NNS VBD IN NNP IN PRP VBP VBG TO VB IN DT NN NNS VBP NNS IN PRP$ NN NNS IN NNS IN DT NNS MD VB VBN IN NN . Spokesmen said Friday that about 500 of some 1,700 Army deaths in Iraq and Afghanistan have been checked already , and only a tiny fraction were found to have inaccuracies . NNS VBD NNP IN IN CD IN DT CD NNP NNS IN NNP CC NNP VBP VBN VBN RB , CC RB DT JJ NN VBD VBN TO VB NNS . The review follows the high-profile case of former professional football player Pat Tillman who was killed by friendly fire . DT NN VBZ DT JJ NN IN JJ JJ NN NN NNP NNP WP VBD VBN IN JJ NN . The Army initially told Tillman 's family that he died as the result of an enemy ambush . DT NNP RB VBD NNP POS NN IN PRP VBD IN DT NN IN DT NN NN . Iraqi Foreign Minister Hoshyar Zebari has demanded that Iran stop what he says is its shelling of Kurdish areas in northern Iraq . JJ NNP NNP NNP NNP VBZ VBN IN NNP VB WP PRP VBZ VBZ PRP$ NN IN JJ NNS IN JJ NNP . Zebari , who was in Tehran for ministerial meetings Monday , said the cross-border shelling has displaced hundreds of Kurds and threatens Iraqi relations with Iran . NNP , WP VBD IN NNP IN JJ NNS NNP , VBD DT JJ NN VBZ VBN NNS IN NNS CC VBZ JJ NNS IN NNP . Iran 's deputy foreign minister , Mehdi Mostafavi , denied that Iranian forces have shelled Iraqi territory . NNP POS JJ JJ NN , NNP NNP , VBD IN JJ NNS VBP VBN JJ NN . Last week , Zebari said his country had summoned the Iranian ambassador and delivered a formal note of protest over the cross-border attacks . JJ NN , NNP VBD PRP$ NN VBD VBN DT JJ NN CC VBD DT JJ NN IN NN IN DT JJ NNS . Zebari also acknowledged there are Kurdish rebels that move inside the border area in Iraq , but he said their presence does not justify the continued shelling . NNP RB VBD EX VBP JJ NNS WDT VBP IN DT NN NN IN NNP , CC PRP VBD PRP$ NN VBZ RB VB DT JJ NN . Iran has accused Kurdish rebels of using Iraqi bases to launch attacks inside Iran . NNP VBZ VBN JJ NNS IN VBG JJ NNS TO VB NNS IN NNP . Scientists in the United States say they believe they have discovered what makes bird flu viruses so deadly to humans . NNS IN DT NNP NNPS VBP PRP VBP PRP VBP VBN WP VBZ NN NN VBZ RB JJ TO NNS . Researchers at St. Jude Children 's Research Hospital in Memphis , Tennessee , say the culprit may be a protein found in the genes of many avian flu viruses . NNS IN NNP NNP NNP POS NNP NNP IN NNP , NNP , VBP DT NN MD VB DT NN VBN IN DT NNS IN JJ JJ NN NNS . The scientists say this protein can attach to proteins in human cells . DT NNS VBP DT NN MD VB TO NNS IN JJ NNS . They found the protein only in the avian flu viruses they sampled , and not in any of what are known as the human strains of the disease . PRP VBD DT NN RB IN DT JJ NN NNS PRP VBD , CC RB IN DT IN WP VBP VBN IN DT JJ NNS IN DT NN . The researchers say this striking difference between the two viruses may explain why avian influenza is more lethal to people than human influenza . DT NNS VBP DT JJ NN IN DT CD NNS MD VB WRB JJ NN VBZ RBR JJ TO NNS IN JJ NN . The findings are published in the journal Science . DT NNS VBP VBN IN DT NN NN . Avian flu is blamed for the global pandemic of 1918 , but not milder outbreaks later in the century . JJ NN VBZ VBN IN DT JJ NN IN CD , CC RB JJR NNS RB IN DT NN . Bird flu has killed at least 81 people in East Asia and Turkey since 2003 . NN NN VBZ VBN IN JJS CD NNS IN NNP NNP CC NNP IN CD . Mexican officials have razed more than 30 abandoned dwellings in a border town known as a staging ground for migrants to cross illegally into the United States . JJ NNS VBP VBN RBR IN CD JJ NNS IN DT NN NN VBN IN DT NN NN IN NNS TO VB RB IN DT NNP NNPS . The demolitions in the town of Las Chepas , officially known as Josefa Ortiz de Dominguez , were the result of an agreement made last month between the governors of Mexico 's Chihuahua state and the U.S. state of New Mexico . DT NNS IN DT NN IN NNP NNP , RB VBN IN NNP NNP NNP NNP , VBD DT NN IN DT NN VBN JJ NN IN DT NNS IN NNP POS NNP NN CC DT NNP NN IN NNP NNP . Chihuahua 's Jose Reyes Baeza and New Mexico 's Bill Richardson agreed to a plan to curb illegal immigration and drug smuggling across the Mexico-U.S. border . NNP POS NNP NNP NNP CC NNP NNP POS NNP NNP VBD TO DT NN TO VB JJ NN CC NN NN IN DT NNP NN . A Chihuahua public safety official told Reuters news agency that the demolitions represent less than half the buildings in Las Chepas , which is home to at least 50 residents . DT NNP JJ NN NN VBD NNP NN NN IN DT NNS VBP JJR IN PDT DT NNS IN NNP NNP , WDT VBZ NN TO IN JJS CD NNS . U.S.-based automaker Ford Motor Company has reported a $ 750 Million profit in the April through June quarter , breaking a nearly two-year streak of consecutive quarterly losses . JJ NN NNP NNP NNP VBZ VBN DT $ CD NN NN IN DT NNP IN NNP NN , VBG DT RB JJ NN IN JJ JJ NNS . Thursday 's profit report came as a surprise to many analysts who had expected further losses from the struggling auto company . NNP POS NN NN VBD IN DT NN TO JJ NNS WP VBD VBN JJ NNS IN DT JJ NN NN . Ford 's profit is attributed to increased sales worldwide , as well as the recent sale of its Aston Martin operation . NNP POS NN VBZ VBN TO VBN NNS NN , RB RB IN DT JJ NN IN PRP$ NNP NNP NN . Ford Chief Executive Alan Mulally said the results are proof that an overall cost-reduction plan is working , but warned that the second half of this year will be difficult . NNP NNP NNP NNP NNP VBD DT NNS VBP NN IN DT JJ NN NN VBZ VBG , CC VBD IN DT JJ NN IN DT NN MD VB JJ . The second-largest U.S. automaker is trying to recover from losses that totaled about $ 12.5 billion last year . DT JJ NNP NN VBZ VBG TO VB IN NNS WDT VBD IN $ CD CD JJ NN . To regain profitability , the company launched a major restructuring plan that involves closing 16 factories and eliminating up to 44,000 jobs . TO VB NN , DT NN VBD DT JJ NN NN WDT VBZ VBG CD NNS CC VBG RP TO CD NNS . Egyptian police have killed a man they say was the leader of an Islamist militant group blamed for several attacks on tourist towns last month . JJ NNS VBP VBN DT NN PRP VBP VBD DT NN IN DT NNP NN NN VBN IN JJ NNS IN NN NNS JJ NN . Security officials said Tuesday that Nasser Khamis el-Mallahi was killed in a firefight near the North Sinai town of El-Arish . NNP NNS VBD NNP IN NNP NNP NNP VBD VBN IN DT NN IN DT NNP NNP NN IN JJ . One accomplice was captured . CD NN VBD VBN . Police say el-Mallahi headed Tawhid wal Jihad , which has been blamed for a series of attacks against tourist resorts in the Sinai since 2004 . NNS VBP NNP VBD NNP NNP NNP , WDT VBZ VBN VBN IN DT NN IN NNS IN NN NNS IN DT NNP IN CD . The attacks have killed at least 117 people . DT NNS VBP VBN IN JJS CD NNS . The most recent occurred last month in Dahab , when three near-simultaneous explosions killed at least 19 people . DT RBS JJ VBN JJ NN IN NNP , WRB CD JJ NNS VBD IN JJS CD NNS . About 80 others were wounded in the blasts . IN CD NNS VBD VBN IN DT NNS . India 's cricket team has compiled an impressive total of 352-3 after the opening day of the second test against Pakistan in Kolkata . NNP POS NN NN VBZ VBN DT JJ NN IN CD IN DT NN NN IN DT JJ NN IN NNP IN NNP . Wasim Jaffer led the way Friday with an aggressive 192 not out as he aims for his second double-century in 24 tests . NNP NNP VBD DT NN NNP IN DT JJ CD RB RP IN PRP VBZ IN PRP$ JJ NN IN CD NNS . The opening batsman struck 32 boundaries off 255 deliveries . DT NN NN VBD CD NNS IN CD NNS . Jaffer shared prosperous partnerships with Rahul Dravid and Sachin Tendulkar after opener Dinesh Kartik fell for one in the second over . NNP VBD JJ NNS IN NNP NNP CC NNP NNP IN NNP NNP NNP VBD IN CD IN DT NN IN . Jaffer anchored the second-wicket partnership of 136 with Dravid , who had 50 , and then a 175-run stand for the third wicket with Tendulkar , who tallied 82 . NNP VBD DT JJ NN IN CD IN NNP , WP VBD CD , CC RB DT JJ NN IN DT JJ NN IN NNP , WP VBD CD . Dravid 's 117-ball knock contained seven boundaries . NNP POS JJ NN VBD CD NNS . India won the opening test of this three-match series by six wickets . NNP VBD DT NN NN IN DT JJ NN IN CD NNS . Indian troops say they have killed six more suspected militants in Indian-controlled Kashmir , bringing the death toll from several days of fierce gunbattles to 25 . JJ NNS VBP PRP VBP VBN CD JJR JJ NNS IN JJ NNP , VBG DT NN NN IN JJ NNS IN JJ NNS TO CD . Indian army spokesman Lieutenant Colonel J.S. Brar said the fighting ended Tuesday , with eight soldiers and 17 militants , killed since Friday in the Kupwara district . JJ NN NN NNP NNP NNP NNP VBD DT NN VBD NNP , IN CD NNS CC CD NNS , VBD IN NNP IN DT NNP NN . The area is close to the Line of Control that divides Kashmir between India and Pakistan . DT NN VBZ RB TO DT NN IN NNP WDT VBZ NNP IN NNP CC NNP . An army spokesman says troops began flushing out militants from the Shamsbari area Friday , sparking the longest and deadliest clash in the disputed region in recent months . DT NN NN VBZ NNS VBD VBG RP NNS IN DT NNP NN NNP , VBG DT JJS CC JJS NN IN DT JJ NN IN JJ NNS . Muslim separatists in Kashmir have been fighting for independence or a merger with Pakistan since 1989 . NNP NNS IN NNP VBP VBN VBG IN NN CC DT NN IN NNP IN CD . Tens of thousands of people have been killed in the violence . NNS IN NNS IN NNS VBP VBN VBN IN DT NN . India and Pakistan began a slowly-implemented peace process in 2004 . NNP CC NNP VBD DT JJ NN NN IN CD . Two of their three wars have been fought over Kashmir . CD IN PRP$ CD NNS VBP VBN VBN IN NNP . Authorities in Indian Kashmir say militants have raided a police station , killing two officers and stealing a cache of weapons . NNS IN JJ NNP VBP NNS VBP VBN DT NN NN , VBG CD NNS CC VBG DT NN IN NNS . Police officials say at least one officer assisted the group of militants in the attack late Friday in the remote Doda district . NN NNS VBP IN JJS CD NN VBD DT NN IN NNS IN DT NN JJ NNP IN DT JJ NNP NN . Police gave few details of the attack . NNP VBD JJ NNS IN DT NN . Officials say security forces are searching for the attackers , who fled after the raid . NNS VBP NN NNS VBP VBG IN DT NNS , WP VBD IN DT NN . Kashmir is in the midst of a 17-year insurgency that has claimed more than 45,000 lives . NNP VBZ IN DT NN IN DT JJ NN WDT VBZ VBN JJR IN CD NNS . Various rebel groups are fighting for an independent Kashmir or its merger with Pakistan . JJ NN NNS VBP VBG IN DT JJ NNP CC PRP$ NN IN NNP . Former Presidents Bill Clinton and George Bush have started a nationwide fundraising campaign to help hurricane victims . JJ NNS NNP NNP CC NNP NNP VBP VBN DT JJ NN NN TO VB NN NNS . The former presidents announced the Bush-Clinton Katrina Fund at a news conference in Houston , Texas Monday . DT JJ NNS VBD DT NNP NNP NNP IN DT NN NN IN NNP , NNP NNP . The money raised will go to the governors of Louisiana , Mississippi and Alabama for disaster relief and medical services . DT NN VBN MD VB TO DT NNS IN NNP , NNP CC NNP IN NN NN CC JJ NNS . Former President Clinton said Congress must focus on what action it can take to alleviate the suffering of those displaced - such as providing incentives for firms to hire evacuees . JJ NNP NNP VBD NNP MD VB IN WP NN PRP MD VB TO VB DT NN IN DT JJ : JJ IN VBG NNS IN NNS TO VB NNS . President Bush 's father , former President Bush said retail giant Wal-Mart will immediately give jobs to their employees who have to re-locate because of the hurricane . NNP NNP POS NN , JJ NNP NNP VBD JJ NN NNP MD RB VB NNS TO PRP$ NNS WP VBP TO VB IN IN DT NN . Wal-Mart is also contributing $ 23 million to the fund . NNP VBZ RB VBG $ CD CD TO DT NN . Mr. Clinton and Mr. Bush , once political rivals , teamed up earlier this year to coordinate the U.S. fundraising drive for victims of the tsunami . NNP NNP CC NNP NNP , RB JJ NNS , VBD RP RBR DT NN TO VB DT NNP NN NN IN NNS IN DT NN . United Nations Secretary-General Kofi Annan says it will take up to 10 years to rebuild areas of southern Asia devastated by last week 's tsunami and earthquake . NNP NNP NNP NNP NNP VBZ PRP MD VB RP TO CD NNS TO VB NNS IN JJ NNP VBN IN JJ NN POS NN CC NN . Mr. Annan says the disaster is the largest the U.N. has ever dealt with . NNP NNP VBZ DT NN VBZ DT JJS DT NNP VBZ RB VBN IN . The tsunami wreaked havoc from Malaysia to east Africa , leaving at least 1,27,000 dead . DT NN VBD NN IN NNP TO JJ NNP , VBG IN JJS CD NN . Mr. Annan will head to south Asia later this week for a summit on relief efforts . NNP NNP MD VB TO JJ NN RB DT NN IN DT NN IN NN NNS . World leaders attending the conference in Jakarta , Indonesia , will also make an appeal for more aid . NNP NNS VBG DT NN IN NNP , NNP , MD RB VB DT NN IN JJR NN . The international community has pledged $ 2 billion so far . DT JJ NN VBZ VBN $ CD CD RB RB . U.S. Secretary of State Colin Powell heads to the region today to inspect damage in Thailand and Indonesia . NNP NNP IN NNP NNP NNP VBZ TO DT NN NN TO VB NN IN NNP CC NNP . He told NBC television the $ 350 million pledged by the United States may have have to be increased , saying the catastrophe is one of the worst the world has ever seen . PRP VBD NNP NN DT $ CD CD VBN IN DT NNP NNPS MD VB VBP TO VB VBN , VBG DT NN VBZ CD IN DT JJS DT NN VBZ RB VBN . Iraqi officials say Turkish warplanes have bombed targets in the Kurdish autonomous region of northern Iraq , wounding one civilian . JJ NNS VBP JJ NNS VBP VBN NNS IN DT NNP JJ NN IN JJ NNP , VBG CD JJ . The officials say Turkey bombed the village of Sidakan near the Iranian border Saturday . DT NNS VBP NNP VBD DT NN IN NNP IN DT JJ NN NNP . There was no immediate confirmation of the strike from the Turkish military . EX VBD DT JJ NN IN DT NN IN DT JJ NN . Clashes between Turks and Kurds have increased since the Kurdistan Workers ' Party , or PKK , called off a yearlong cease-fire in June . NNS IN NNS CC NNPS VBP VBN IN DT NNP NNP POS NNP , CC NNP , VBD RP DT JJ NN IN NNP . The group cited repeated Turkish military attacks for ending the truce . DT NN VBD VBN JJ JJ NNS IN VBG DT NN . The PKK is fighting for Kurdish autonomy in southeastern Turkey , and has bases in northern Iraq . DT NNP VBZ VBG IN NNP NN IN JJ NNP , CC VBZ NNS IN JJ NNP . Palestinian security forces have begun early voting for parliamentary candidates , in order to be free for duty during the official polling time next week . JJ NN NNS VBP VBN JJ NN IN JJ NNS , IN NN TO VB JJ IN NN IN DT JJ NN NN JJ NN . Nearly 60,000 security personnel are eligible to vote through Monday . RB CD NN NNS VBP JJ TO VB IN NNP . They will be deployed in the Palestinian territories during Wednesday 's parliamentary elections . PRP MD VB VBN IN DT JJ NNS IN NNP POS JJ NNS . The ruling Fatah party is facing stiff competition from its chief rival , the Islamic militant group Hamas , for the 132 seats in the Palestinian parliament . DT NN NNP NN VBZ VBG JJ NN IN PRP$ NN NN , DT NNP JJ NN NNP , IN DT CD NNS IN DT JJ NN . A new Palestinian opinion poll shows Fatah with a seven-point lead over Hamas , while another survey puts the two groups in a virtual tie . DT JJ JJ NN NN VBZ NNP IN DT JJ NN IN NNP , IN DT NN VBZ DT CD NNS IN DT JJ NN . Hamas is taking part in the Palestinian legislative elections for the first time . NNP VBZ VBG NN IN DT JJ JJ NNS IN DT JJ NN . Israel 's Cabinet now says it will allow Arabs in East Jerusalem to vote for the Palestinian parliament , but will not permit candidates from Hamas to be on Jerusalem ballots . NNP POS NNP RB VBZ PRP MD VB NNS IN NNP NNP TO VB IN DT JJ NN , CC MD RB VB NNS IN NNP TO VB IN NNP NNS . Shuttle astronauts installed part of cooling system on International Space Station . NN NNS VBD NN IN VBG NN IN NNP NNP NNP . The U.S. space agency NASA says two astronauts from the shuttle Atlantis have completed a spacewalk to install part of a cooling system on the International Space Station . DT NNP NN NN NNP VBZ CD NNS IN DT NN NNS VBP VBN DT NN TO VB NN IN DT NN NN IN DT NNP NNP NNP . Astronauts Rex Walheim and Hans Schlegel installed a nitrogen tank on the orbital outpost . NNS NNP NNP CC NNP NNP VBD DT NN NN IN DT JJ NN . The outing Wednesday lasted just over six-and-a-half hours . DT NN NNP VBD RB IN JJ NNS . Schlegel , a German , missed a previous spacewalk due to an undisclosed illness . NNP , DT NN , VBD DT JJ NN JJ TO DT JJ NN . On Monday , two astronauts installed a European science laboratory with help from crewmates inside the space station . IN NNP , CD NNS VBD DT JJ NN NN IN NN IN NNS IN DT NN NN . Crewmembers set up electrical and data lines linking the Columbus laboratory to the space station before European astronaut Leopold Eyharts of France briefly floated inside the module for the first time . NNS VBD RP JJ CC NNS NNS VBG DT NN NN TO DT NN NN IN JJ NN NNP NNP IN NNP RB VBD IN DT NN IN DT JJ NN . Atlantis will remain at the space station until at least Sunday . NNP MD VB IN DT NN NN IN IN JJS NNP . President Bush has appealed for Americans to be patient with the military mission in Iraq , as poll numbers continue to show most of the country does not approve of the president 's handling of the war . NNP NNP VBZ VBN IN NNS TO VB JJ IN DT JJ NN IN NNP , IN NN NNS VBP TO VB JJS IN DT NN VBZ RB VB IN DT NN POS NN IN DT NN . Mr. Bush said in his weekly radio address Saturday that the effort in Iraq and the broader Middle East will require more time , sacrifice and continued resolve . NNP NNP VBD IN PRP$ JJ NN NN NNP IN DT NN IN NNP CC DT JJR NNP NNP MD VB JJR NN , NN CC JJ NN . He praised the efforts of Iraqi leaders who are trying to agree on a constitution . PRP VBD DT NNS IN JJ NNS WP VBP VBG TO VB IN DT NN . Iraqi lawmakers missed several deadlines this week for completing a draft constitution . JJ NNS VBD JJ NNS DT NN IN VBG DT NN NN . Mr. Bush also used his radio address to hail what he called Israel 's ' courageous and painful ' dismantling of Jewish settlements from Gaza and parts of the West Bank . NNP NNP RB VBD PRP$ NN NN TO VB WP PRP VBD NNP POS `` JJ CC JJ `` NN IN JJ NNS IN NNP CC NNS IN DT NNP NNP . He urged Palestinians to now show the world they can fight terrorism . PRP VBD NNS TO RB VB DT NN PRP MD VB NN . Mobile phone maker Sony Ericsson has signed an $ 88 million deal to sponsor the Women 's Tennis Association tour . NNP NN NN NNP NNP VBZ VBN DT $ CD CD NN TO VB DT NNP POS NNP NNP NN . The deal announced Wednesday is a six-year agreement , and gives the tour a global sponsor for the first time in two years . DT NN VBD NNP VBZ DT JJ NN , CC VBZ DT NN DT JJ NN IN DT JJ NN IN CD NNS . Sony Ericsson will get to put its logos on nets at Tour events , starting Monday at the Sydney International tournament . NNP NNP MD VB TO VB PRP$ NNS IN NNS IN NNP NNS , VBG NNP IN DT NNP NNP NN . The season-ending event will now be called the Sony Ericsson WTA Tour championships . DT JJ NN MD RB VB VBN DT NNP NNP NNP NNP NNS . The deal will also bring advanced technology to the women 's tour , including handsets for chair umpires that will allow match scores to go directly to the Internet . DT NN MD RB VB JJ NN TO DT NNS POS NN , VBG NNS IN NN NNS WDT MD VB NN NNS TO VB RB TO DT NNP . Tournament prize money is not expected to increase this season as a result of the deal . NNP NN NN VBZ RB VBN TO VB DT NN IN DT NN IN DT NN . A Burmese dissident living in the United States says the Burmese government is conducting a smear campaign against him . DT JJ NN VBG IN DT NNP NNPS VBZ DT JJ NN VBZ VBG DT NN NN IN PRP . Aung Din , of the lobbying group U.S. Campaign for Burma , told VOA 's Burmese service that he has been named as a suspect in last month 's bombings at three shopping centers in Rangoon , in which at least 19 people died . NNP NNP , IN DT NN NN NNP NNP IN NNP , VBD NNP POS JJ NN IN PRP VBZ VBN VBN IN DT NN IN JJ NN POS NNS IN CD NN NNS IN NNP , IN WDT IN JJS CD NNS VBD . Aung Din said his family in Burma has confirmed the government is circulating leaflets accusing him of involvement in the bombing . NNP NNP VBD PRP$ NN IN NNP VBZ VBN DT NN VBZ VBG NNS VBG PRP IN NN IN DT NN . He also said that the government briefly detained his family for questioning following the attacks . PRP RB VBD IN DT NN RB VBD PRP$ NN IN VBG VBG DT NNS . Aung Din said he categorically denies any involvement in the bombings . NNP NNP VBD PRP RB VBZ DT NN IN DT NNS . He said his lobbying group does not practice terrorism and only supports protest by peaceful means . PRP VBD PRP$ NN NN VBZ RB VB NN CC RB VBZ NN IN JJ NNS . Police in Nepal have detained more than 50 Tibetan protesters as they prepared to demonstrate near the Chinese embassy in Kathmandu . NNS IN NNP VBP VBN JJR IN CD JJ NNS IN PRP VBD TO VB IN DT JJ NN IN NNP . The protesters were traveling to the embassy in buses when they were stopped by police and driven to detention centers . DT NNS VBD VBG TO DT NN IN NNS WRB PRP VBD VBN IN NNS CC VBN TO NN NNS . Nepal is home to some 20,000 Tibetan refugees and has seen daily , pro-Tibet demonstrations since violence erupted in Tibet in March . NNP VBZ NN TO DT CD JJ NNS CC VBZ VBN RB , JJ NNS IN NN VBD IN NNP IN NNP . Police have been detaining the protesters but are generally freeing them the same day . NNS VBP VBN VBG DT NNS CC VBP RB VBG PRP DT JJ NN . Nepal regards Tibet as part of China . NNP VBZ NNP IN NN IN NNP . Hundreds of Afghan forces - backed by tanks and rocket launchers - have surrounded the country 's main high security prison after Taleban and al-Qaida prisoners seized control Saturday evening . NNS IN JJ NNS : VBN IN NNS CC NN NNS : VBP VBN DT NN POS JJ JJ NN NN IN NNP CC NNP NNS VBD NN NNP NN . Authorities restarted negotiations Monday but warned the government could use force end the standoff . NNS VBD NNS NNP CC VBD DT NN MD VB NN NN DT NN . Afghan officials are blaming the uprising on hundreds of al-Qaida and Taleban inmates housed in the Pol-e-Charkhi jail just outside Kabul . JJ NNS VBP VBG DT NN IN NNS IN NNP CC NNP VBZ VBN IN DT NNP NN RB IN NNP . Deputy Afghan Justice Minister Mohammed Qasim Hashimzai says more than a thousand inmates armed with makeshift weapons began the revolt late Saturday . NNP JJ NNP NNP NNP NNP NNP VBZ JJR IN DT CD NNS VBN IN JJ NNS VBD DT NN JJ NNP . He says the riots started in block two of the prison , which houses more than 13 hundred of facility 's 2,000 inmates . PRP VBZ DT NNS VBD IN NN CD IN DT NN , WDT VBZ JJR IN CD CD IN NN POS CD NNS . He says the violence erupted after inmates rejected new uniforms . PRP VBZ DT NN VBD IN NNS VBD JJ NNS . The uniforms were meant to improve security after seven Taleban detainees disguised as civilians escaped last month . DT NNS VBD VBN TO VB NN IN CD NNP NNS VBN IN NNS VBD JJ NN . Officials say dozens of inmates have been injured but details are sketchy . NNS VBP NNS IN NNS VBP VBN VBN CC NNS VBP JJ . Authorities are stepping up the pressure on New Orleans residents who have refused to leave the devastated city . NNS VBP VBG RP DT NN IN NNP NNP NNS WP VBP VBN TO VB DT JJ NN . Thousands of police and National Guard troops are completing their efforts to evacuate all those who want to leave , and are now turning their attention to those who have not obeyed a mandatory evacuation effort . NNS IN NN CC NNP NNP NNS VBP VBG PRP$ NNS TO VB PDT DT WP VBP TO VB , CC VBP RB VBG PRP$ NN TO DT WP VBP RB VBN DT JJ NN NN . Officials estimate that between 5,000 and 10,000 residents remain in New Orleans , despite contaminated floodwaters and several raging fires . NNS VBP IN IN CD CC CD NNS VBP IN NNP NNP , IN VBN NNS CC JJ VBG NNS . Authorities warn the death toll could reach into the thousands , although fewer than 200 bodies have been found so far . NNS VBP DT NN NN MD VB IN DT NNS , IN JJR IN CD NNS VBP VBN VBN RB RB . Twenty-five thousand body bags have been provided for the clean-up operation . CD CD NN NNS VBP VBN VBN IN DT JJ NN . Late Thursday President Bush signed a bill promising nearly $ 52 billion more in relief to victims of Hurricane Katrina . RB NNP NNP NNP VBD DT NN VBG RB $ CD CD JJR IN NN TO NNS IN NNP NNP . The president has come under pressure for the slow federal response to the national disaster . DT NN VBZ VBN IN NN IN DT JJ JJ NN TO DT JJ NN . The White House has condemned the attack targeting a convoy carrying former Pakistani Prime Minister Benazir Bhutto . DT NNP NNP VBZ VBN DT NN VBG DT NN VBG JJ JJ NNP NNP NNP NNP . U.S. National Security Council spokesman , Gordon Johndroe , said Thursday the United States mourns ' the loss of innocent life ' in Karachi . NNP NNP NNP NNP NN , NNP NNP , VBD NNP DT NNP NNPS VBZ `` DT NN IN JJ NN `` IN NNP . The NSC spokesman added , ' Extremists will not be allowed to stop Pakistanis from selecting their representatives through an open and democratic process . ' DT NNP NN VBD , `` NNS MD RB VB VBN TO VB NNS IN VBG PRP$ NNS IN DT JJ CC JJ NN . `` In New York , U.N. Secretary-General Ban Ki-moon expressed shock by news of the attack and extended condolences to the families of the victims . IN NNP NNP , NNP NNP NNP NNP VBD NN IN NN IN DT NN CC VBD NNS TO DT NNS IN DT NNS . The European Union also denounced the deadly bomb blasts , while Pakistani President Pervez Musharraf called the attacks ' a conspiracy against democracy . ' DT NNP NNP RB VBD DT JJ NN NNS , IN JJ NNP NNP NNP VBD DT NNS `` DT NN IN NN . `` Speaking from Dubai , Ms. Bhutto 's husband , Asif Ali Zardari , alleged that a Pakistani intelligence agency was behind the bloodshed . VBG IN NNP , NNP NNP POS NN , NNP NNP NNP , VBD IN DT JJ NN NN VBD IN DT NN . Mexico City 's mayor , also seen as a leading presidential contender , has called for a mass campaign to keep adversaries from jailing him . NNP NNP POS NN , RB VBN IN DT VBG JJ NN , VBZ VBN IN DT NN NN TO VB NNS IN VBG PRP . Mexico 's Congress is to decide in coming months whether to strip Andres Manuel Lopez Obrador of immunity from prosecution enjoyed by public officials , and force him to face charges over a minor land-use case . NNP POS NNP VBZ TO VB IN VBG NNS IN TO VB NNP NNP NNP NNP IN NN IN NN VBN IN JJ NNS , CC VB PRP TO VB NNS IN DT JJ NN NN . Mr. Lopez could be jailed and barred from running for president if found guilty . NNP NNP MD VB VBN CC VBN IN VBG IN NN IN VBN JJ . Speaking at a news conference Friday , Mr. Lopez Obrador said he would keep fighting and would campaign from a jail cell if he had to . VBG IN DT NN NN NNP , NNP NNP NNP VBD PRP MD VB NN CC MD NN IN DT NN NN IN PRP VBD TO . It was his first explicit statement of his plans to replace President Vicente Fox when Mr. Fox 's final term finishes in 2006 . PRP VBD PRP$ JJ JJ NN IN PRP$ NNS TO VB NNP NNP NNP WRB NNP NNP POS JJ NN VBZ IN CD . The central-leftist mayor of the Party of the Democratic Revolution is widely popular in Mexico City for setting up welfare programs for the poor and the elderly . DT JJ NN IN DT NN IN DT JJ NN VBZ RB JJ IN NNP NNP IN VBG RP NN NNS IN DT NN CC DT NN . Haitian officials have said local and national elections will be held later this year . JJ NNS VBP VBN JJ CC JJ NNS MD VB VBN RBR DT NN . An official on Haiti 's Provisional Electoral Council said local elections will be held on October 9 , followed by presidential and legislative polls on November 13 . DT NN IN NNP POS NNP NNP NNP VBD JJ NNS MD VB VBN IN NNP CD , VBN IN JJ CC JJ NNS IN NNP CD . The dates were announced in an electoral decree recently sent to Haiti 's interim government . DT NNS VBD VBN IN DT JJ NN RB VBN TO NNP POS JJ NN . Security for the election remains a concern . NN IN DT NN VBZ DT NN . Former soldiers and rebels who helped force Haitian President Jean-Bertrand Aristide into exile in South Africa last February still control parts of the countryside . JJ NNS CC NNS WP VBD VB JJ NNP NNP NNP IN NN IN NNP NNP JJ NNP RB VB NNS IN DT NN . Violence in Port-au-Prince 's pro-Aristide slums has killed more than 200 people in the last four months . NN IN NNP POS JJ NNS VBZ VBN JJR IN CD NNS IN DT JJ CD NNS . U.S. theatergoers chose suspense over skating , as Disturbiaunseated Blades Of Glory for the U.S. box office championship . NNP NNS VBD NN IN NN , IN VBN NNS IN NN IN DT NNP NN NN NN . The peeping tom thriller starring Shia LaBeouf and David Morse took in $ 23 million to debut at number one last weekend . DT VBG NN NN VBG NNP NNP CC NNP NNP VBD IN $ CD CD TO VB IN NN CD JJ NN . The real winner continues to be DreamWorks Pictures , distributor of both Disturbia and Blades Of Glory . DT JJ NN VBZ TO VB NNP NNP , NN IN DT NNP CC NNP IN NNP . LeBeouf , who plays a teen under house arrest who suspects a neighbor of murder , is also on the upswing . NNP , WP VBZ DT NN IN NN NN WP VBZ DT NN IN NN , VBZ RB IN DT NN . The 20-year-old actor has been confirmed to appear in the fourth Indiana Jones movie , set for worldwide release in May , 2008 . DT JJ NN VBZ VBN VBN TO VB IN DT JJ NNP NNP NN , VBN IN JJ NN IN NNP , CD . He will also provide the lead voice for this year 's animated penguin comedy Surf 's Up , while starring in the science fiction adventure Transformers . PRP MD RB VB DT JJ NN IN DT NN POS JJ NN NN NNP POS RB , IN VBG IN DT NN NN NN NNS . China 's state news agency says scientists have developed two vaccines to prevent the spread of the deadly H5N1 strain of bird flu . NNP POS NN NN NN VBZ NNS VBP VBN CD NNS TO VB DT NN IN DT JJ NNP NN IN NN NN . Xinhua quoted the director of the China National Bird Flu Reference Laboratory , Chen Hualan as saying experiments show the new vaccines are 100 percent effective in preventing the spread of the virus . NNP VBD DT NN IN DT NNP NNP NNP NNP NNP NNP , NNP NNP IN VBG NNS VBP DT JJ NNS VBP CD NN JJ IN VBG DT NN IN DT NN . Last week , China enacted emergency measures after confirming that the virus killed scores of migratory birds in the western Qinghai province . JJ NN , NNP VBD NN NNS IN VBG IN DT NN VBD NNS IN JJ NNS IN DT JJ NNP NN . No human cases were reported . DT JJ NNS VBD VBN . The World Health Organization recently said a study suggests the virus is mutating in ways that could pose a greater threat to humans . DT NNP NNP NNP RB VBD DT NN VBZ DT NN VBZ VBG IN NNS WDT MD VB DT JJR NN TO NNS . Experts have warned that such a mutation could kill millions . NNS VBP VBN IN PDT DT NN MD VB NNS . The virus has killed more than 50 people in Vietnam , Thailand and Cambodia . DT NN VBZ VBN JJR IN CD NNS IN NNP , NNP CC NNP . A suicide bomber walked into a local government office in southern Afghanistan Monday and blew himself up , killing eight people . DT NN NN VBD IN DT JJ NN NN IN JJ NNP NNP CC VBD PRP RP , VBG CD NNS . Among the dead are four policemen and four civilians . IN DT NN VBP CD NNS CC CD NNS . The attack occurred in Nad Ali district of Afghanistan 's opium producing heartland of Helmand province . DT NN VBD IN NNP NNP NN IN NNP POS NN VBG NN IN NNP NN . Taleban insurgents have vowed to step up their attacks against Afghan and international troops during the holy month of Ramadan , which began last week . NNP NNS VBP VBN TO VB RP PRP$ NNS IN JJ CC JJ NNS IN DT JJ NN IN NNP , WDT VBD JJ NN . Meanwhile , Bangladesh is appealing for the release of an aid worker kidnapped just south of the capital , Kabul , on Saturday . RB , NNP VBZ VBG IN DT NN IN DT NN NN VBN RB RB IN DT NN , NNP , IN NNP . An official with the interim government of Bangladesh said in a statement Monday the abducted man 's only mission in Afghanistan is humanitarian . DT NN IN DT JJ NN IN NNP VBD IN DT NN NNP DT JJ NN POS JJ NN IN NNP VBZ JJ . The Bangladeshi national was taken from his office in Logar province by unidentified armed men . DT JJ NN VBD VBN IN PRP$ NN IN NNP NN IN JJ JJ NNS . Iranian President Mahmoud Ahmadinejad is reported to have called Israel the ' flag of Satan . ' JJ NNP NNP NNP VBZ VBN TO VB VBN NNP DT `` NN IN NNP . `` The state-run IRNA news agency says the Iranian leader made the comment to a religious conference . DT JJ NNP NN NN VBZ DT JJ NN VBD DT NN TO DT JJ NN . It quotes him saying that when the philosophy of a state is in question , it may be on the path to decline and dissolution . PRP VBZ PRP VBG IN WRB DT NN IN DT NN VBZ IN NN , PRP MD VB IN DT NN TO NN CC NN . Mr. Ahmadinejad sparked international outrage in 2005 when he said Israel should be wiped off the map . NNP NNP VBD JJ NN IN CD WRB PRP VBD NNP MD VB VBN RP DT NN . He has also called the Holocaust a myth . PRP VBZ RB VBN DT NNP DT NN . The government of Senegal shut down the country 's leading radio station for most of the day Monday after it broadcast an interview with a separatist leader . DT NN IN NNP VBD RP DT NN POS VBG NN NN IN JJS IN DT NN NNP IN PRP VBD DT NN IN DT JJ NN . Nineteen employees of Sud FM were charged with violating national security laws following the airing of the interview with Salif Sadio , leader of the armed wing of the secessionist Democratic Forces Movement of Casamance . CD NNS IN NNP NNP VBD VBN IN VBG JJ NN NNS VBG DT NN IN DT NN IN NNP NNP , NN IN DT JJ NN IN DT NN JJ NNS NN IN NNP . In the interview , Mr. Sadio pledged to end what he called the Senegalese occupation of Casamance province . IN DT NN , NNP NNP VBD TO VB WP PRP VBD DT JJ NN IN NNP NN . Interior Minister Ousamane Ngom told state radio that he had ordered the station closed in the interest of national security . NNP NNP NNP NNP VBD NN NN IN PRP VBD VBN DT NN VBD IN DT NN IN JJ NN . Radio Sud staffers tell Voice of America 's French to Africa Service that other media outlets in Senegal plan to publish and broadcast the interview with Mr. Sadio on Tuesday . NNP NNP NNS VBP NNP IN NNP POS JJ TO NNP NNP IN JJ NNS NNS IN NNP NN TO VB CC VB DT NN IN NNP NNP IN NNP . Officials in Nigeria say the deadly H5N1 strain of bird flu has spread to another state , bringing the total number of states now affected by the virus to 14 . NNS IN NNP VBP DT JJ NNP NN IN NN NN VBZ VBN TO DT NN , VBG DT JJ NN IN NNS RB VBN IN DT NN TO CD . Health authorities say the strain has appeared in northeastern Taraba state . NNP NNS VBP DT NN VBZ VBN IN JJ NNP NN . The new outbreak means the virus is now present in more than one third of Nigerian states . DT JJ NN VBZ DT NN VBZ RB JJ IN JJR IN CD NN IN JJ NNS . Nigeria was the first African country to be hit by bird flu . NNP VBD DT JJ JJ NN TO VB VBN IN NN NN . Several other West African countries are also grappling with outbreaks of the disease , including Nigeria 's neighbors , Niger and Cameroon . JJ JJ JJ JJ NNS VBP RB VBG IN NNS IN DT NN , VBG NNP POS NNS , NNP CC NNP . No human cases have been detected in the region , although the disease is believed to have killed more than 120 people around the world since 2003 . DT JJ NNS VBP VBN VBN IN DT NN , IN DT NN VBZ VBN TO VB VBN JJR IN CD NNS IN DT NN IN CD . Iraqi officials say five people , including four children , were killed Thursday in attacks in Baghdad . JJ NNS VBP CD NNS , VBG CD NNS , VBD VBN NNP IN NNS IN NNP . Authorities say a bomb attached to a government worker 's car exploded , killing four children inside it and injuring the worker and his wife . NNS VBP DT NN VBN TO DT NN NN POS NN VBD , VBG CD NNS IN PRP CC VBG DT NN CC PRP$ NN . Meanwhile , unidentified gunmen killed an Iraqi army officer and injured at his wife in northern Baghdad . RB , JJ NNS VBD DT JJ NN NN CC VBN IN PRP$ NN IN JJ NNP . The Associated Press says the officer worked with units that provide protection to Iraqi government officials . DT NNP NNP VBZ DT NN VBD IN NNS WDT VBP NN TO JJ NN NNS . Separately , officials in Baghdad say a police officer was mistakenly killed after Finance Ministry security guards opened fire on a suspicious vehicle . RB , NNS IN NNP VBP DT NN NN VBD RB VBN IN NNP NNP NN NNS VBD NN IN DT JJ NN . An agreement has been reached in Ecuador to end a strike that had shut down oil exports from the country 's two largest oil-producing regions and had triggered violent protests . DT NN VBZ VBN VBN IN NNP TO VB DT NN WDT VBD VBN RP NN NNS IN DT NN POS CD JJS JJ NNS CC VBD VBN JJ NNS . The accord was reached Thursday between the protesters and oil companies after four days of talks . DT NN VBD VBN NNP IN DT NNS CC NN NNS IN CD NNS IN NNS . It calls for those companies to invest more in the poor communities where they drill , including repairing highways . PRP VBZ IN DT NNS TO VB RBR IN DT JJ NNS WRB PRP VB , VBG VBG NNS . However , the accord does not include a key demand of the demonstrators - that they not face prosecution for damaging oil installations during the protests . RB , DT NN VBZ RB VB DT JJ NN IN DT NNS : IN PRP RB VBP NN IN JJ NN NNS IN DT NNS . The strike and protests led the government to declare a state of emergency in Orellana and Sucumbios provinces and to put them under military control . DT NN CC NNS VBD DT NN TO VB DT NN IN NN IN NNP CC NNP NNS CC TO VB PRP IN JJ NN . Most of Ecuador 's oil exports go to the United States . JJS IN NNP POS NN NNS VBP TO DT NNP NNPS . Thailand said Tuesday it is lifting a state of emergency in three northern provinces , but it will remain in force in others , including the capital , Bangkok . NNP VBD NNP PRP VBZ VBG DT NN IN NN IN CD JJ NNS , CC PRP MD VB IN NN IN NNS , VBG DT NN , NNP . The government extended the state of emergency for three months across much of the country on July 6 , citing concerns that anti-government elements might instigate more unrest like the weeks of deadly protests that began in March . DT NN VBD DT NN IN NN IN CD NNS IN NN IN DT NN IN NNP CD , VBG NNS IN JJ NNS MD VB JJR NN IN DT NNS IN JJ NNS WDT VBD IN NNP . The decree suspends some civil liberties , allows censorship and makes it easier to use the military to keep the peace . DT NN VBZ DT JJ NNS , VBZ NN CC VBZ PRP JJR TO VB DT JJ TO VB DT NN . Fighting between Thai security forces and anti-government Red Shirts killed 90 people and wounded about 1,900 others during the protesters ' 10-week occupation of part of downtown Bangkok . VBG IN JJ NN NNS CC JJ NNP NNP VBD CD NNS CC VBD IN CD NNS IN DT NNS POS JJ NN IN NN IN NN NNP . The military broke up the Red Shirts ' encampment in a raid on May 19 . DT NN VBD RP DT NNP NNP POS NN IN DT NN IN NNP CD . Ukraine 's Central Election Commission has declared Prime Minister Viktor Yanukovych the winner of Sunday 's disputed presidential election . NNP POS NNP NNP NNP VBZ VBN NNP NNP NNP NNP DT NN IN NNP POS JJ JJ NN . Authorities say the prime minister won more than 49 percent of the vote - nearly three percentage points ahead of opposition challenger Viktor Yushchenko . NNS VBP DT JJ NN VBD JJR IN CD NN IN DT NN IN RB CD NN NNS RB IN NN NN NNP NNP . The announcement Wednesday came as tens of thousands of protesters continued to mass in the capital , Kiev , alleging widespread fraud in the vote . DT NN NNP VBD IN NNS IN NNS IN NNS VBN TO NN IN DT NN , NNP , VBG JJ NN IN DT NN . Crowds packed the Ukrainian capital 's main square , waving flags and chanting Mr. Yushchenko 's name . NNS VBD DT JJ NN POS JJ NN , VBG NNS CC VBG NNP NNP POS NN . Some have slept in tents , despite the cold and snow . DT VBP VBN IN NNS , IN DT JJ CC NN . Protesters marched to the Election Commission following the announcement . NNS VBD TO DT NNP NNP VBG DT NN . The European Union had warned of consequences in its relations with Ukraine if the results were announced before a review is conducted . DT NNP NNP VBD VBN IN NNS IN PRP$ NNS IN NNP IN DT NNS VBD VBN IN DT NN VBZ VBN . European and U.S. monitors allege widespread fraud in the vote . JJ CC NNP NNS VBP JJ NN IN DT NN . The White House says it is disturbed about indications of wrongdoing . DT NNP NNP VBZ PRP VBZ VBN IN NNS IN NN . Pakistani President Pervez Musharraf says international terrorism should be fought on two levels . JJ NNP NNP NNP VBZ JJ NN MD VB VBN IN CD NNS . General Musharraf told the U.N. General Assembly Tuesday that apart from confronting terrorists , the international community should also resolve the conflicts afflicting the Islamic world . NNP NNP VBD DT NNP NNP NNP NNP IN RB IN VBG NNS , DT JJ NN MD RB VB DT NNS VBG DT JJ NN . He said unless those conflicts are resolved and suppression of Muslim peoples is ended , terrorism and extremism will continue to find recruits among alienated Muslims . PRP VBD IN DT NNS VBP VBN CC NN IN NNP NNS VBZ VBN , NN CC NN MD VB TO VB NNS IN JJ NNS . The Pakistani leader said it is also imperative to end what he called racial and religious discrimination against Muslims and to prohibit the defamation of Islam . DT JJ NN VBD PRP VBZ RB JJ TO VB WP PRP VBD JJ CC JJ NN IN NNPS CC TO VB DT NN IN NNP . In an apparent reference to the controversy over Pope Benedict 's recent remarks about Islam , he said it is disappointing to see that personalities of high standing are oblivious of Muslim sensitivities . IN DT JJ NN TO DT NN IN NNP NNP POS JJ NNS IN NNP , PRP VBD PRP VBZ JJ TO VB DT NNS IN JJ NN VBP JJ IN NNP NNS . Saudi Arabia 's King Abdullah held talks with Pakistani President Pervez Musharraf Saturday in the kingdom . NNP NNP POS NNP NNP VBD NNS IN JJ NNP NNP NNP NNP IN DT NN . Official media in Saudi Arabia reported that the two met at a palace in Jeddah . JJ NNS IN NNP NNP VBD IN DT CD VBD IN DT NN IN NNP . News media say the leaders and their delegations discussed ways to enhance cooperation between the two nations . NNP NNS VBP DT NNS CC PRP$ NNS VBD NNS TO VB NN IN DT CD NNS . According to reports , King Abdullah also held a lunch party for General Musharraf and his delegation . VBG TO NNS , NNP NNP RB VBD DT NN NN IN NNP NNP CC PRP$ NN . The Pakistani president said he was grateful for the hospitality . DT JJ NN VBD PRP VBD JJ IN DT NN . Russian officials have officially opened two new schools in the southern town of Beslan to replace the one destroyed in last year 's school siege , which ended with the deaths of 330 people . JJ NNS VBP RB VBN CD JJ NNS IN DT JJ NN IN NNP TO VB DT CD VBN IN JJ NN POS NN NN , WDT VBD IN DT NNS IN CD NNS . The ceremonies Wednesday comes almost one year after armed militants raided the school , taking more than 1,000 people hostage . DT NNS NNP VBZ RB CD NN IN JJ NNS VBD DT NN , VBG JJR IN CD NNS NN . The siege ended in explosions and a hail of gunfire as Russian security forces stormed the building . DT NN VBD IN NNS CC DT NN IN NN IN JJ NN NNS VBD DT NN . More than half those killed were children . JJR IN PDT DT VBN VBD NNS . Chechen separatist leader Shamil Basayev has claimed responsibility for the attack . JJ JJ NN NNP NNP VBZ VBN NN IN DT NN . Last week , robbers ransacked one of the new schools and made off with thousands of dollars worth of equipment . JJ NN , NNS VBD CD IN DT JJ NNS CC VBD RP IN NNS IN NNS NN IN NN . Reports out of Burma say last week 's tsunami swept a seasonal fishing village of about 600 people out to sea , leaving 17 dead and scores of families destitute . NNS IN IN NNP VBP JJ NN POS NN VBD DT JJ NN NN IN IN CD NNS IN TO NN , VBG CD JJ CC NNS IN NNS VBP . The French news agency , AFP , says most of the casualties were children playing on the beach when a three-meter wave crashed down on them and crushed village huts . DT JJ NN NN , NNP , VBZ JJS IN DT NNS VBD NNS VBG IN DT NN WRB DT JJ NN VBD RP IN PRP CC JJ NN NNS . The village , 352 kilometers southwest of the capital of Rangoon , was built about a month ago for the post-monsoon fishing season . DT NN , CD NNS JJS IN DT NN IN NNP , VBD VBN IN DT NN RB IN DT JJ NN NN . The agency said 14 children and three women were killed when waves swept through the village . DT NN VBD CD NNS CC CD NNS VBD VBN WRB NNS VBP IN DT NN . The official New Light of Myanmar newspaper has raised Burma 's death toll to 59 after the bodies of three more victims were found . DT JJ NNP NNP IN NNP NN VBZ VBN NNP POS NN NN TO CD IN DT NNS IN CD JJR NNS VBD VBN . The paper says three people are still missing . DT NN VBZ CD NNS VBP RB VBG . Pope Benedict XVI called on African leaders Monday to make the needs of the poor their prime concern . NNP NNP NNP VBD IN JJ NNS NNP TO VB DT NNS IN DT JJ PRP$ JJ NN . The Roman Catholic pontiff made his remarks before heading back to Rome from the airport in Angola 's capital , Luanda . DT NNP NNP NN VBD PRP$ NNS IN VBG RB TO NNP IN DT NN IN NNP POS NN , NNP . During his seven-day trip to Cameroon and Angola , the pope promoted the message of Christianity as a way to inspire hope . IN PRP$ JJ NN TO NNP CC NNP , DT NN VBD DT NN IN NNP IN DT NN TO VB NN . But his rejection of condoms as a means to fight Africa 's AIDS epidemic provoked a firestorm of criticism during his visit . CC PRP$ NN IN NNS IN DT NN TO VB NNP POS NNP NN VBD DT NN IN NN IN PRP$ NN . Pope Benedict celebrated Mass Sunday with an estimated one million Christian faithful in Luanda . NNP NNP VBD NNP NNP IN DT VBN CD CD NNP NN IN NNP . In his homily , the pope lamented what he called ' clouds of evil ' over Africa . IN PRP$ NN , DT NN VBD WP PRP VBD `` NNS IN JJ `` IN NNP . He said war and greed have robbed the continent of the resources needed to build a better society . PRP VBD NN CC NN VBP VBN DT NN IN DT NNS VBN TO VB DT JJR NN . The Vatican says Africa has been a place of tremendous growth for the Catholic Church . DT NNP VBZ NNP VBZ VBN DT NN IN JJ NN IN DT NNP NNP . U.S. Deputy Defense Secretary Paul Wolfowitz says some 15,000 U.S. troops who were deployed for Iraq 's election will soon return home , but 1,35,000 forces are expected to remain in Iraq . NNP NNP NNP NNP NNP NNP VBZ DT CD NNP NNS WP VBD VBN IN NNP POS NN MD RB VB NN , CC CD NNS VBP VBN TO VB IN NNP . Testifying Thursday before the Senate Armed Services committee , the deputy secretary said American troops and the proposed $ 80 billion in supplemental funding are focused on training Iraqi security forces . VBG NNP IN DT NNP NNP NNPS NN , DT NN NN VBD JJ NNS CC DT VBN $ CD CD IN JJ NN VBP VBN IN NN JJ NN NNS . Also during the hearing , Air Force General Richard Myers said there is not a good measure of how many of Iraq 's estimated 1,30,000 security forces are properly trained and equipped . RB IN DT NN , NNP NNP NNP NNP NNP VBD EX VBZ RB DT JJ NN IN WRB JJ IN NNP POS JJ CD NN NNS VBP RB VBN CC VBN . The general also said he could not publicly discuss the military 's estimate of the size of the insurgency in Iraq . DT NN RB VBD PRP MD RB RB VB DT NN POS NN IN DT NN IN DT NN IN NNP . A car bomb exploded in central Baghdad Thursday , killing at least two people and wounding several others as insurgents continued their campaign of post-election violence . DT NN NN VBD IN JJ NNP NNP , VBG IN JJS CD NNS CC VBG JJ NNS IN NNS VBD PRP$ NN IN JJ NN . Officials say the bomb , detonated by remote control , went off just after a U.S. military patrol vehicle passed by . NNS VBP DT NN , VBN IN JJ NN , VBD RB RB IN DT NNP JJ NN NN VBN IN . South of Baghdad , Iraqi police found the bodies of 20 truck drivers who had been shot dead . NNP IN NNP , JJ NN VBD DT NNS IN CD NN NNS WP VBD VBN VBN JJ . Meanwhile , Iraq 's interim government said the country 's borders will be closed for five days from February 17 - apparently to boost security during the major Shi'ite Muslim religious observance of Ashura . RB , NNP POS JJ NN VBD DT NN POS NNS MD VB VBN IN CD NNS IN NNP CD : RB TO VB NN IN DT JJ NNP NNP JJ NN IN NNP . Wednesday , Iraq 's election commission said 300 ballot boxes from the January 30th vote need to be recounted and that it is not ready to announce the final results , which were expected today . NNP , NNP POS NN NN VBD CD NN NNS IN DT NNP CD NN VBP TO VB VBN CC IN PRP VBZ RB JJ TO VB DT JJ NNS , WDT VBD VBN NN . The daughter of rhythm-and-blues legend Fats Domino says her father , who had been reported missing in New Orleans , had been rescued from the devastated city . DT NN IN NNS VBP NNP NNP VBZ PRP$ NN , WP VBD VBN VBN VBG IN NNP NNP , VBD VBN VBN IN DT JJ NN . Karen Domino White said Thursday she identified her father in a photograph taken of him being evacuated from his home after the hurricane . NNP NNP NNP VBD NNP PRP VBD PRP$ NN IN DT NN VBN IN PRP VBG VBN IN PRP$ NN IN DT NN . The 77-year-old entertainer had been reported missing Thursday by his long-time agent . DT JJ NN VBD VBN VBN VBG NNP IN PRP$ JJ NN . Fats Domino , whose real name is Antoine Domino , was born in New Orleans in 1928 . NNP NNP , WP$ JJ NN VBZ NNP NNP , VBD VBN IN NNP NNP IN CD . He earned the nickname ' Fats ' after he wrote a song called The Fat Man . PRP VBD DT NN `` NNPS `` IN PRP VBD DT NN VBN DT NNP NN . Other hits include Blueberry Hill and Ai n't That a Shame . JJ NNS VBP NNP NNP CC NNP NNP NNP NNP NNP . He was one of the first inductees into the Rock and Roll Hall of Fame . PRP VBD CD IN DT JJ NNS IN DT NNP CC NNP NNP IN NNP . Police in Indonesia have announced a $ 10,000 ( 100 million rupiah ) reward for information identifying the three men who carried out suicide bomb attacks on Bali earlier this month . NNS IN NNP VBP VBN DT $ CD LRB CD CD NN RRB NN IN NN VBG DT CD NNS WP VBD RP NN NN NNS IN NNP RBR DT NN . Officials are distributing hundreds of thousands of photos of the bombers ' severed heads as well as of the Malaysian fugitives accused in the plot . NNS VBP VBG NNS IN NNS IN NNS IN DT NNS POS JJ NNS RB RB IN IN DT JJ NNS VBN IN DT NN . Weeks of police work have failed to identify the bombers or uncover organizers behind the attacks that killed 23 people , including the bombers , October 1 . NNS IN NN NN VBP VBN TO VB DT NNS CC JJ NNS IN DT NNS WDT VBD CD NNS , VBG DT NNS , NNP CD . Indonesian authorities also are offering a reward of $ 1,00,000 ( one billion rupiah ) for information leading to the arrest of Malaysian suspects Noordin Mohamed Top and Azahari bin Husin . JJ NNS RB VBP VBG DT NN IN $ CD LRB CD CD NN RRB IN NN VBG TO DT NN IN JJ NNS NNP NNP NNP CC NNP NNP NNP . The two are alleged leaders of the al Qaida-linked regional terror group Jemaah Islamiyah , which is also blamed in the 2002 Bali bomb attacks that killed 202 people . DT CD VBP JJ NNS IN DT NNP JJ JJ NN NN NNP NNP , WDT VBZ RB VBN IN DT CD NNP NN NNS WDT VBD CD NNS . A published report says Zimbabwe security officials are probing whether two cabinet officials and a lawmaker are linked to an alleged spying ring . DT JJ NN VBZ NNP NN NNS VBP VBG IN CD NN NNS CC DT NN VBP VBN TO DT JJ NN NN . The state-run Sunday Mail reports officials this week hope to question the three men , who have been accused of passing state secrets to foreign intelligence agencies . DT JJ NNP NNP VBZ NNS DT NN VBP TO VB DT CD NNS , WP VBP VBN VBN IN VBG NN NNS TO JJ NN NNS . The report alleges the men received ' handsome payments ' for the information . DT NN VBZ DT NNS VBD `` JJ NNS `` IN DT NN . Another person suspected in the alleged ring is an official , Erasmus Moyo , at Zimbabwe 's embassy in Geneva , who has been reported missing . DT NN VBN IN DT JJ NN VBZ DT NN , NNP NNP , IN NNP POS NN IN NNP , WP VBZ VBN VBN VBG . Officials say he disappeared after being summoned back to Zimbabwe . NNS VBP PRP VBD IN VBG VBN RB TO NNP . Last month , police arrested four other men , including a ruling party lawmaker , Philip Chiyangwa , on charges of selling state secrets to foreign powers . JJ NN , NN VBN CD JJ NNS , VBG DT NN NN NN , NNP NNP , IN NNS IN VBG NN NNS TO JJ NNS . Russia 's lower house of parliament has warned that the execution of Saddam Hussein could lead to a further escalation of violence in war-torn Iraq . NNP POS JJR NN IN NN VBZ VBN IN DT NN IN NNP NNP MD VB TO DT JJ NN IN NN IN JJ NNP . The Kremlin-controlled State Duma Wednesday unanimously approved a statement saying that executing Saddam ' will not solve the existing problems of the long-suffering people of Iraq . ' DT JJ NN NNP NNP RB VBD DT NN VBG IN VBG NNP `` MD RB VB DT VBG NNS IN DT JJ NNS IN NNP . `` An Iraqi tribunal this month convicted the former president of crimes against humanity for the 1982 killings of 148 Iraqi Shi'ite Muslims in the village of Dujail , and sentenced him to death by hanging . DT JJ NN DT NN VBD DT JJ NN IN NNS IN NN IN DT CD NNS IN CD JJ NNP NNPS IN DT NN IN NNP , CC VBD PRP TO NN IN NN . No execution date has been set . DT NN NN VBZ VBN VBN . Moscow has been a consistent critic of the U.S.-led military campaign in Iraq . NNP VBZ VBN DT JJ NN IN DT JJ JJ NN IN NNP . Russian authorities have warned previously that Saddam 's execution will dangerously increase tensions between Iraq 's Sunni Muslims who backed Saddam , and the majority Shi'ite population which supported the death penalty . JJ NNS VBP VBN RB IN NNP POS NN MD RB VB NNS IN NNP POS NNP NNPS WP VBD NNP , CC DT NN NNP NN WDT VBD DT NN NN . Ukraine 's parliament has voted to dismiss two senior officials over a recent deal that nearly doubled prices for imported Russian gas . NNP POS NN VBZ VBN TO VB CD JJ NNS IN DT JJ NN WDT RB VBD NNS IN VBN JJ NN . A total of 246 members of Ukraine 's parliament Thursday endorsed the dismissal of Justice Minister Serhiy Holovaty and Fuel and Energy Minister Ivan Plachkov . DT NN IN CD NNS IN NNP POS NN NNP VBD DT NN IN NNP NNP NNP NNP CC NNP CC NNP NNP NNP NNP . Lawmakers also expressed no-confidence in Oleksiy Ivchenko , head of the state gas company , Naftogaz Ukrainy . NNS RB VBD NN IN NNP NNP , NN IN DT NN NN NN , NNP NNP . Earlier this month , Ukraine agreed to buy gas from Russia at a rate of $ 95 per 1,000 cubic meters - up from the previous rate of $ 50 - following Russia 's three-day suspension of deliveries . RBR DT NN , NNP VBD TO VB NN IN NNP IN DT NN IN $ CD IN CD JJ NNS IN RB IN DT JJ NN IN $ CD : VBG NNP POS JJ NN IN NNS . But the deal triggered a political crisis , and Ukraine 's parliament voted to dismiss the government of Prime Minister Yuriy Yekhanurov . CC DT NN VBD DT JJ NN , CC NNP POS NN VBD TO VB DT NN IN NNP NNP NNP NNP . Thursday , Ukrainian President Viktor Yushchenko formally asked the Constitutional Court to decide the legality of the dismissal . NNP , JJ NNP NNP NNP RB VBD DT NNP NNP TO VB DT NN IN DT NN . Authorities in northern Bosnia-Herzegovina have arrested a fugitive Bosnian Serb war crimes suspect . NNS IN JJ NNP VBP VBN DT JJ JJ JJ NN NNS VBP . A spokesman for Bosnia 's Prosecutor 's Office says members of the State Investigation and Protection Agency and Bosnian Serb police apprehended Predrag Kujundzic Wednesday in the northern town of Doboj . DT NN IN NNP POS NNP POS NNP VBZ NNS IN DT NNP NNP CC NNP NNP CC JJ JJ NN VBD NNP NNP NNP IN DT JJ NN IN NNP . Kujundzic was a commander of a special unit of Bosnian Serb forces during the Balkan conflict of the 1990s . NNP VBD DT NN IN DT JJ NN IN JJ JJ NNS IN DT JJ NN IN DT NNS . He is suspected of violating laws and customs of war in the Doboj region on several occasions during 1992 and the following year . PRP VBZ VBN IN VBG NNS CC NNS IN NN IN DT NNP NN IN JJ NNS IN CD CC DT JJ NN . The spokesman said Kujundzic was arrested on the order of the country 's central Prosecutor 's Office and is being held in a court detention facility in Sarajevo . DT NN VBD NNP VBD VBN IN DT NN IN DT NN POS JJ NNP POS NNP CC VBZ VBG VBN IN DT NN NN NN IN NNP . Iraqi officials are still counting votes and verifying results from Saturday 's referendum , with partial results suggesting the draft constitution will be approved . JJ NNS VBP RB VBG NNS CC VBG NNS IN NNP POS NN , IN JJ NNS VBG DT NN NN MD VB VBN . Iraq 's Independent Electoral Commission says it will take random samples from some provinces to examine for possible irregularities . NNP POS NNP NNP NNP VBZ PRP MD VB JJ NNS IN DT NNS TO VB IN JJ NNS . President Bush praised Iraqis for voting despite threats of insurgent attacks . NNP NNP VBD NNS IN VBG IN NNS IN JJ NNS . But U.N. Secretary General Kofi Annan says it is too soon to say if the draft constitution will bring Iraq together or widen divisions between its Shi'te , Sunni and Kurdish communities . CC NNP NNP NNP NNP NNP VBZ PRP VBZ RB RB TO VB IN DT NN NN MD VB NNP RB CC VB NNS IN PRP$ NNP , NNP CC NNP NNS . In other developments , a U.S. airstrike killed 20 people the military says were planting roadside bombs near Ramadi . IN JJ NNS , DT NNP NN VBD CD NNS DT NN VBZ VBD VBG NN NNS IN NNP . Other coalition operations in Al Anbar province on Sunday killed what U.S. officials said were 50 more suspected terrorists . JJ NN NNS IN NNP NNP NN IN NNP VBD WP NNP NNS VBD VBD CD JJR JJ NNS . But residents say half of the dead were civilians . CC NNS VBP NN IN DT NN VBD NNS . The eldest daughter of former Chilean dictator Augusto Pinochet is being questioned in Washington D.C. after fleeing Chile , where she has been charged with tax evasion . DT JJS NN IN JJ JJ NN NNP NNP VBZ VBG VBN IN NNP NNP IN VBG NNP , WRB PRP VBZ VBN VBN IN NN NN . U.S. Customs and Border officials say Lucia Pinochet is being interviewed at Washington 's Dulles International Airport after arriving from Argentina . NNP NNP CC NNP NNS VBP NNP NNP VBZ VBG VBN IN NNP POS NNP NNP NNP IN VBG IN NNP . The charges she faces are related to a broader investigation of $ 27 million her father allegedly hid in foreign bank accounts . DT NNS PRP VBZ VBP VBN TO DT JJR NN IN $ CD CD PRP$ NN RB VBD IN JJ NN NNS . General Pinochet also has been charged with tax fraud . NNP NNP RB VBZ VBN VBN IN NN NN . His wife and four other adult children were detained Monday on charges relating to the tax fraud probe . PRP$ NN CC CD JJ JJ NNS VBD VBN NNP IN NNS VBG TO DT NN NN NN . They were freed on bail a day later . PRP VBD VBN IN NN DT NN RB . The former dictator also faces human rights charges related to his rule in the mid-1970s . DT JJ NN RB VBZ JJ NNS NNS VBN TO PRP$ NN IN DT NNS . French President Nicolas Sarkozy says France is willing to help Egypt develop nuclear power plants . JJ NNP NNP NNP VBZ NNP VBZ JJ TO VB NNP VB JJ NN NNS . In an interview published Saturday in the Egyptian newspaper Al-Ahram , Mr. Sarkozy said France will cooperate and work together with Egypt if the Cairo government wants to develop civilians uses for nuclear technology . IN DT NN VBN NNP IN DT JJ NN NNP , NNP NNP VBD NNP MD VB CC VB RB IN NNP IN DT NNP NN VBZ TO VB NNS NNS IN JJ NN . Earlier this year , authorities in Cairo announced that Egypt intends to build several nuclear reactors to meet its future energy needs . RBR DT NN , NNS IN NNP VBD IN NNP VBZ TO VB JJ JJ NNS TO VB PRP$ JJ NN NNS . The French president has been vacationing in Egypt in advance of an official state visit he will begin on Sunday in Cairo . DT JJ NN VBZ VBN VBG IN NNP IN NN IN DT JJ NN NN PRP MD VB IN NNP IN NNP . The U.S. military in Iraq says it has detained seven suspects in Saturday 's rocket attack on the U.S. embassy in Baghdad . DT NNP NN IN NNP VBZ PRP VBZ VBN CD NNS IN NNP POS NN NN IN DT NNP NN IN NNP . Two Americans were killed and four others wounded in the attack . CD NNS VBD VBN CC CD NNS VBN IN DT NN . A U.S. statement says the suspects were caught by U.S. troops in southeastern Baghdad about an hour after the strike , which was recorded by police surveillance cameras . DT NNP NN VBZ DT NNS VBD VBN IN NNP NNS IN JJ NNP IN DT NN IN DT NN , WDT VBD VBN IN NN NN NNS . In other developments Sunday , The Washington Post newspaper says the Bush administration does not have a timetable for withdrawing U.S. troops from Iraq . IN JJ NNS NNP , DT NNP NNP NN VBZ DT NNP NN VBZ RB VB DT NN IN VBG NNP NNS IN NNP . The report quotes U.S. officials as saying U.S. forces will leave only after Iraqi military units take the lead in combat operations . DT NN VBZ NNP NNS IN VBG NNP NNS MD VB RB IN JJ JJ NNS VBP DT NN IN NN NNS . A senior administration official also said a U.S. departure will be linked to a reduction in overall violence , once an elected Iraqi government is operational . DT JJ NN NN RB VBD DT NNP NN MD VB VBN TO DT NN IN JJ NN , RB DT JJ JJ NN VBZ JJ . The report says commanders want to withdraw about 15,000 troops by the middle of this year . DT NN VBZ NNS VBP TO VB RB CD NNS IN DT NN IN DT NN . New clashes were reported between protesters and police in the Rostock , Germany , ahead of this week 's Group of Eight summit in a nearby resort . JJ NNS VBD VBN IN NNS CC NNS IN DT NNP , NNP , RB IN DT NN POS NNP IN CD NN IN DT JJ NN . Authorities say some 400 extremists pelted police with bottles as they protested restrictions on refugees and asylum seekers in G8 countries . NNS VBP DT CD NNS VBN NN IN NNS IN PRP VBD NNS IN NNS CC NN NNS IN NNP NNS . The clashes were the second outbreak of violence ahead of Heiligendamm summit . DT NNS VBD DT JJ NN IN NN RB IN NNP NN . With public access to the resort closed , demonstrators have been meeting in Rostok . IN JJ NN TO DT NN VBD , NNS VBP VBN VBG IN NNP . A riot Saturday left about 1,000 people injured . DT NN NNP VBD IN CD NNS VBN . Those protesters were demanding that the G8 leading industrialized countries take more action to reduce poverty , inequality , environmental destruction and restrictions on immigration . DT NNS VBD VBG IN DT NNP VBG JJ NNS VBP JJR NN TO VB NN , NN , JJ NN CC NNS IN NN . German Chancellor Angela Merkel , in a television broadcast Sunday , condemned the violence and warned that authorities will not tolerate such activities . JJ NN NNP NNP , IN DT NN NN NNP , VBD DT NN CC VBD IN NNS MD RB VB JJ NNS . China has rushed a first batch of vaccine to the southwestern province of Sichuan , where a pig-borne disease has killed at least 34 people . NNP VBZ VBN DT JJ NN IN NN TO DT JJ NN IN NNP , WRB DT JJ NN VBZ VBN IN JJS CD NNS . The Xinhua news agency reports that enough vaccine to treat Streptococcus suis bacteria in 3,50,000 pigs has been flown to the province . DT NNP NN NN VBZ IN JJ NN TO VB NNP NNP NNS IN CD NNS VBZ VBN VBN TO DT NN . Another 10 million doses are being manufactured and will be sent to affected areas . DT CD CD NNS VBP VBG VBN CC MD VB VBN TO JJ NNS . Health authorities have identified 174 human cases - either confirmed or suspected - of the illness as of Saturday . NN NNS VBP VBN CD JJ NNS IN DT VBN CC VBN : IN DT NN IN IN NNP . Most victims had handled either infected pigs or pork . JJS NNS VBD VBN RB JJ NNS CC NN . China says no human-to-human transmission of the ailment has been seen . NNP VBZ DT JJ NN IN DT NN VBZ VBN VBN . Two cases have been reported in Hong Kong , adjacent to Guangdong , but they are believed to be unrelated to the Sichuan outbreak . CD NNS VBP VBN VBN IN NNP NNP , JJ TO NNP , CC PRP VBP VBN TO VB JJ TO DT NNP NN . After cracking down on firms trading with Iran , UAE authorities say they are worried that the newest sanctions against Iran may hurt business interests . IN VBG RP IN NNS VBG IN NNP , NNP NNS VBP PRP VBP VBN IN DT JJS NNS IN NNP MD VB NN NNS . Iran is one of the United Arab Emirate 's largest trading partners . NNP VBZ CD IN DT NNP NNP NNP POS JJS NN NNS . UAE Minister of State for Foreign Affairs Anwar Gargash says the two countries have billions of dollars in legitimate trade agreements that must be spared . NNP NNP IN NNP IN NNP NNP NNP NNP VBZ DT CD NNS VBP NNS IN NNS IN JJ NN NNS WDT MD VB VBN . He said Monday that the government is trying to decide on an approach that will help it sift through the exchanges that do not violate sanctions . PRP VBD NNP IN DT NN VBZ VBG TO VB IN DT NN WDT MD VB PRP VB IN DT NNS WDT VBP RB VB NNS . The UAE comments come days after U.S. Undersecretary of the Treasury Stuart Levey made a trip to the UAE to urge tighter enforcement of the sanctions against Iran . DT NNP NNS VBP NNS IN NNP NN IN DT NNP NNP NNP VBD DT NN TO DT NNP TO VB JJR NN IN DT NNS IN NNP . The sanctions are designed to curtail Iran 's alleged nuclear weapons program . DT NNS VBP VBN TO VB NNP POS JJ JJ NNS NN . Iran says its nuclear program is for peaceful use . NNP VBZ PRP$ JJ NN VBZ IN JJ NN . Nepalese police have arrested a top opposition leader in the capital , Kathmandu , and Maoist rebels have opened fire at a busy marketplace in southern Nepal , wounding three people . JJ NNS VBP VBN DT JJ NN NN IN DT NN , NNP , CC NNP NNS VBP VBN NN IN DT JJ NN IN JJ NNP , VBG CD NNS . Officials in Bara district , where the Maoist attack took place Thursday , say the rebels fired indiscriminately . NNS IN NNP NN , WRB DT NNP NN VBD NN NNP , VBP DT NNS VBD RB . They wounded a policeman , a journalist and a health worker . PRP VBD DT NN , DT NN CC DT NN NN . At least 38 people have been killed in clashes between rebels and security forces over the past week . IN JJS CD NNS VBP VBN VBN IN NNS IN NNS CC NN NNS IN DT JJ NN . Also Thursday , authorities stormed the home of the secretary-general of the Communist Party , Madhav Kumar Nepal , and took him away . RB NNP , NNS VBD DT NN IN DT NN IN DT NNP NNP , NNP NNP NNP , CC VBD PRP RB . The arrest followed a raid on his home a day earlier by armed police who seized phones , communication equipment and documents . DT NN VBD DT NN IN PRP$ NN DT NN RB IN JJ NNS WP VBD NNS , NN NN CC NNS . Security forces placed Nepal under house arrest in mid-January during a government crackdown on opposition activists to prevent anti-government protests . NN NNS VBN NNP IN NN NN IN JJ IN DT NN NN IN NN NNS TO VB JJ NNS . European Union leaders have agreed to a long-term budget after Britain offered to reduce its annual rebate . NNP NNP NNS VBP VBN TO DT JJ NN IN NNP VBD TO VB PRP$ JJ NN . The leaders reached a final deal in Brussels early Saturday after British Prime Minister Tony Blair agreed to cut his country 's rebate by nearly $ 13 billion . DT NNS VBD DT JJ NN IN NNP JJ NNP IN NNP NNP NNP NNP NNP VBD TO VB PRP$ NN POS NN IN RB $ CD CD . Mr. Blair described negotiations as extraordinarily difficult . NNP NNP VBD NNS IN RB JJ . German Chancellor Angela Merkel played a key role in the talks and praised the deal . JJ NNP NNP NNP VBD DT JJ NN IN DT NNS CC VBD DT NN . Polish Prime Minister Kazimierz Marcinkiewicz said the budget was reached in the spirit of solidarity . JJ NNP NNP NNP NNP VBD DT NN VBD VBN IN DT NN IN NN . The six-year plan begins in 2007 . DT JJ NN VBZ IN CD . It includes billions of dollars of development aid to new member states from Eastern Europe , and caps overall spending at $ 1 trillion dollars for the six-year period . PRP VBZ NNS IN NNS IN NN NN TO JJ NN NNS IN NNP NNP , CC VBZ JJ NN IN $ CD CD NNS IN DT JJ NN . The final deal calls for a review of all EU budget revenue and spending , including farm subsidies . DT JJ NN VBZ IN DT NN IN DT NNP NN NN CC NN , VBG NN NNS . Valley Federal Savings & Loan Association took an $ 89.9 million charge as it reported a third-quarter loss of $ 70.7 million , or $ 12.09 a share . NNP NNP NNP CC NNP NNP VBD DT $ CD CD NN IN PRP VBD DT JJ NN IN $ CD CD , CC $ CD DT NN . The Van Nuys , Calif. , thrift had net income of $ 1,32,000 , or three cents a share , a year ago . DT NNP NNP , NNP , NN VBD JJ NN IN $ CD , CC CD NNS DT NN , DT NN RB . The bulk of the pretax charge is a $ 62 million write-off of capitalized servicing at the mobile home financing subsidiary , which the company said had been a big drain on earnings . DT NN IN DT JJ NN VBZ DT $ CD CD NN IN VBN NN IN DT JJ NN NN NN , WDT DT NN VBD VBD VBN DT JJ NN IN NNS . The company said the one-time provision would substantially eliminate all future losses at the unit . DT NN VBD DT JJ NN MD RB VB DT JJ NNS IN DT NN . Valley Federal also added $ 18 million to realestate loan reserves and eliminated $ 9.9 million of good will . NNP NNP RB VBD $ CD CD TO VB NN NNS CC VBN $ CD CD IN JJ NN . The thrift said that ' after these charges and assuming no dramatic fluctuation in interest rates , the association expects to achieve near record earnings in 1990 . ' DT NN VBD IN `` IN DT NNS CC VBG DT JJ NN IN NN NNS , DT NN VBZ TO VB IN NN NNS IN CD . `` Valley Federal is currently being examined by regulators . NNP NNP VBZ RB VBG VBN IN NNS . New loans continue to slow ; they were $ 6.6 million in the quarter compared with $ 361.8 million a year ago . JJ NNS VBP TO VB : PRP VBD $ CD CD IN DT NN VBN IN $ CD CD DT NN RB . The thrift has assets of $ 3.2 billion . DT NN VBZ NNS IN $ CD CD . An independent Korean state or collection of states has existed almost continuously for several millennia . DT JJ JJ NN CC NN IN NNS VBZ VBN RB RB IN JJ NNS . Between its initial unification in the 7th century - from three predecessor Korean states - until the 20th century , Korea existed as a single independent country . IN PRP$ JJ NN IN DT JJ NN : IN CD NN JJ NNS IN IN DT JJ NN , NNP VBD IN DT JJ JJ NN . In 1905 , following the Russo-Japanese War , Korea became a protectorate of imperial Japan , and in 1910 it was annexed as a colony . IN CD , VBG DT JJ NNP , NNP VBD DT NN IN JJ NNP , CC IN CD PRP VBD VBN IN DT NN . Korea regained its independence following Japan 's surrender to the United States in 1945 . NNP VBD PRP$ NN VBG NNP POS NN TO DT NNP NNPS IN CD . After World War II , a Republic of Korea ( ROK ) was set up in the southern half of the Korean Peninsula while a Communist-style government was installed in the north ( the DPRK ) . IN NNP NNP NNP , DT NNP IN NNP LRB NNP RRB VBD VBN RP IN DT JJ NN IN DT JJ NNP IN DT JJ NN VBD VBN IN DT NN LRB DT NNP RRB . During the Korean War ( 1950 - 53 ) , US troops and UN forces fought alongside soldiers from the ROK to defend South Korea from DPRK attacks supported by China and the Soviet Union . IN DT NNP NNP LRB CD IN CD RRB , NNP NNS CC NNP NNS VBD IN NNS IN DT NNP TO VB NNP NNP IN NNP NNS VBN IN NNP CC DT NNP NNP . An armistice was signed in 1953 , splitting the peninsula along a demilitarized zone at about the 38th parallel . DT NN VBD VBN IN CD , VBG DT NN IN DT JJ NN IN IN DT JJ NN . Thereafter , South Korea achieved rapid economic growth with per capita income rising to roughly 17 times the level of North Korea . NNP , NNP NNP VBD JJ JJ NN IN IN NN NN VBG TO RB CD NNS DT NN IN NNP NNP . In 1993 , KIM Young-sam became South Korea 's first civilian president following 32 years of military rule . IN CD , NNP NNP VBD NNP NNP POS JJ JJ NN VBG CD NNS IN JJ NN . South Korea today is a fully functioning modern democracy . NNP NNP NN VBZ DT RB VBG JJ NN . President LEE Myung-bak has pursued a policy of global engagement since taking office in February 2008 , highlighted by Seoul 's hosting of the G-20 summit in November 2010 . NNP NNP NNP VBZ VBN DT NN IN JJ NN IN VBG NN IN NNP CD , VBN IN NNP POS NN IN DT NNP NN IN NNP CD . Serious tensions with North Korea have punctuated inter-Korean relations in recent years , including the North 's sinking of the South Korean warship Cheonan in March 2010 and its artillery attack on South Korean soldiers and citizens in November 2010 . JJ NNS IN NNP NNP VBP VBN JJ NNS IN JJ NNS , VBG DT NNP POS NN IN DT JJ JJ NN NNP IN NNP CD CC PRP$ NN NN IN JJ JJ NNS CC NNS IN NNP CD . Discovered in 1493 by Christopher COLUMBUS who named it for his brother Bartolomeo , Saint Barthelemy was first settled by the French in 1648 . VBN IN CD IN NNP NNP WP VBD PRP IN PRP$ NN NNP , NNP NNP VBD JJ VBN IN DT NNS IN CD . In 1784 , the French sold the island to Sweden , who renamed the largest town Gustavia , after the Swedish King GUSTAV III , and made it a free port ; the island prospered as a trade and supply center during the colonial wars of the 18th century . IN CD , DT NNS VBD DT NN TO NNP , WP VBD DT JJS NN NNP , IN DT JJ NNP NNP NNP , CC VBD PRP DT JJ NN ; DT NN VBD IN DT NN CC NN NN IN DT JJ NNS IN DT JJ NN . France repurchased the island in 1878 and placed it under the administration of Guadeloupe . NNP VBD DT NN IN CD CC VBD PRP IN DT NN IN NNP . Saint Barthelemy retained its free port status along with various Swedish appellations such as Swedish street and town names , and the three-crown symbol on the coat of arms . NNP NNP VBD PRP$ JJ NN NN IN IN JJ JJ NNS JJ IN JJ NN CC NN NNS , CC DT JJ NN IN DT NN IN NNS . In 2003 , the populace of the island voted to secede from Guadeloupe and in 2007 , the island became a French overseas collectivity . IN CD , DT NN IN DT NN VBD TO VB IN NNP CC IN CD , DT NN VBD DT JJ JJ NN . In 1951 , the Nepalese monarch ended the century-old system of rule by hereditary premiers and instituted a cabinet system of government . IN CD , DT JJ NN VBD DT JJ NN IN NN IN JJ NNS CC VBD DT NN NN IN NN . Reforms in 1990 established a multiparty democracy within the framework of a constitutional monarchy . NNS IN CD VBD DT JJ NN IN DT NN IN DT JJ NN . An insurgency led by Maoist extremists broke out in 1996 . DT NN VBN IN NNP NNS VBD RP IN CD . The ensuing ten-year civil war between insurgents and government forces witnessed the dissolution of the cabinet and parliament and assumption of absolute power by the king . DT VBG JJ JJ NN IN NNS CC NN NNS VBD DT NN IN DT NN CC NN CC NN IN JJ NN IN DT NN . Several weeks of mass protests in April 2006 were followed by several months of peace negotiations between the Maoists and government officials , and culminated in a November 2006 peace accord and the promulgation of an interim constitution . JJ NNS IN JJ NNS IN NNP CD VBD VBN IN JJ NNS IN NN NNS IN DT NNS CC NN NNS , CC VBN IN DT NNP CD NN NN CC DT NN IN DT JJ NN . Following a nation-wide election in April 2008 , the newly formed Constituent Assembly declared Nepal a federal democratic republic and abolished the monarchy at its first meeting the following month . VBG DT JJ NN IN NNP CD , DT RB VBN NNP NNP VBD NNP DT JJ JJ NN CC VBD DT NN IN PRP$ JJ NN DT VBG NN . The Constituent Assembly elected the country 's first president in July . DT NNP NNP VBD DT NN POS JJ NN IN NNP . The Maoists , who received a plurality of votes in the Constituent Assembly election , formed a coalition government in August 2008 , but resigned in May 2009 after the president overruled a decision to fire the chief of the army staff . DT NNS , WP VBD DT NN IN NNS IN DT NNP NNP NN , VBD DT NN NN IN NNP CD , CC VBD IN NNP CD IN DT NN VBD DT NN TO VB DT NN IN DT NN NN . The Communist Party of Nepal-United Marxist-Leninist and the Nepali Congress party then formed a new coalition government with several smaller parties . DT NNP NNP IN JJ NN CC DT NNP NNP NN RB VBD DT JJ NN NN IN JJ JJR NNS . The prime minister 's resignation in June 2010 ushered in seven months of political gridlock until Jhala Nath KHANAL was elected as replacement in February 2011 . DT JJ NN POS NN IN NNP CD VBD IN CD NNS IN JJ NN IN NNP NNP NNP VBD VBN IN NN IN NNP CD . His pressing tasks are to conclude the drafting of a new constitution by the late May 2011 deadline and to determine the future of the former Maoist combatants . PRP$ JJ NNS VBP TO VB DT NN IN DT JJ NN IN DT JJ NNP CD NN CC TO VB DT NN IN DT JJ NNP NNS . Originally a Dutch colony in the 17th century , by 1815 Guyana had become a British possession . RB DT JJ NN IN DT JJ NN , IN CD NNP VBD VBN DT JJ NN . The abolition of slavery led to black settlement of urban areas and the importation of indentured servants from India to work the sugar plantations . DT NN IN NN VBN TO JJ NN IN JJ NNS CC DT NN IN JJ NNS IN NNP TO VB DT NN NNS . This ethnocultural divide has persisted and has led to turbulent politics . DT JJ NN VBZ VBN CC VBZ VBN TO JJ NNS . Guyana achieved independence from the UK in 1966 , and since then it has been ruled mostly by socialist-oriented governments . NNP VBD NN IN DT NNP IN CD , CC IN RB PRP VBZ VBN VBN RB IN JJ NNS . In 1992 , Cheddi JAGAN was elected president in what is considered the country 's first free and fair election since independence . IN CD , NNP NNP VBD VBN NN IN WP VBZ VBN DT NN POS JJ JJ CC JJ NN IN NN . After his death five years later , his wife , Janet JAGAN , became president but resigned in 1999 due to poor health . IN PRP$ NN CD NNS RB , PRP$ NN , NNP NNP , VBD NN CC VBD IN CD JJ TO JJ NN . Her successor , Bharrat JAGDEO , was reelected in 2001 and again in 2006 . PRP$ NN , NNP NNP , VBD VBN IN CD CC RB IN CD . The territory of Northern Rhodesia was administered by the [ British ] South Africa Company from 1891 until it was taken over by the UK in 1923 . DT NN IN NNP NNP VBD VBN IN DT LRB NNP RRB NNP NNP NN IN CD IN PRP VBD VBN RP IN DT NNP IN CD . During the 1920s and 1930s , advances in mining spurred development and immigration . IN DT NNS CC NNS , NNS IN NN VBN NN CC NN . The name was changed to Zambia upon independence in 1964 . DT NN VBD VBN TO NNP IN NN IN CD . In the 1980s and 1990s , declining copper prices , economic mismanagement and a prolonged drought hurt the economy . IN DT NNS CC NNS , VBG NN NNS , JJ NN CC DT JJ NN VBD DT NN . Elections in 1991 brought an end to one-party rule , but the subsequent vote in 1996 saw blatant harassment of opposition parties . NNS IN CD VBD DT NN TO JJ NN , CC DT JJ NN IN CD VBD JJ NN IN NN NNS . The election in 2001 was marked by administrative problems with three parties filing a legal petition challenging the election of ruling party candidate Levy MWANAWASA . DT NN IN CD VBD VBN IN JJ NNS IN CD NNS VBG DT JJ NN VBG DT NN IN VBG NN NN NNP NNP . The new president launched an anticorruption investigation in 2002 to probe high-level corruption during the previous administration . DT JJ NN VBD DT NN NN IN CD TO VB JJ NN IN DT JJ NN . In 2006 - 7 , this task force successfully prosecuted four cases , including a landmark civil case in the UK in which former President CHILUBA and numerous others were found liable for more than USD 41 million . IN CD : CD , DT NN NN RB VBD CD NNS , VBG DT NN JJ NN IN DT NNP IN WDT JJ NNP NNP CC JJ NNS VBD VBN JJ IN JJR IN NNP CD CD . MWANAWASA was reelected in 2006 in an election that was deemed free and fair . NNP VBD VBN IN CD IN DT NN WDT VBD VBN JJ CC JJ . Upon his abrupt death in August 2008 , he was succeeded by his Vice President Rupiah BANDA , who subsequently won a special presidential by-election in October 2008 . IN PRP$ JJ NN IN NNP CD , PRP VBD VBN IN PRP$ NNP NNP NNP NNP , WP RB VBD DT JJ JJ NN IN NNP CD . Under President BANDA , the Task Force on Corruption was abolished , President CHILUBA and his wife were acquitted in their criminal cases , and the government declined to register the UK civil verdict . IN NNP NNP , DT NNP NNP IN NNP VBD VBN , NNP NNP CC PRP$ NN VBD VBN IN PRP$ JJ NNS , CC DT NN VBD TO VB DT NNP JJ NN . The Spratly Islands consist of more than 100 small islands or reefs . DT NNP NNP VBP IN JJR IN CD JJ NNS CC NNS . They are surrounded by rich fishing grounds and potentially by gas and oil deposits . PRP VBP VBN IN JJ NN NNS CC RB IN NN CC NN NNS . They are claimed in their entirety by China , Taiwan , and Vietnam , while portions are claimed by Malaysia and the Philippines . PRP VBP VBN IN PRP$ NN IN NNP , NNP , CC NNP , IN NNS VBP VBN IN NNP CC DT NNPS . About 45 islands are occupied by relatively small numbers of military forces from China , Malaysia , the Philippines , Taiwan , and Vietnam . IN CD NNS VBP VBN IN RB JJ NNS IN JJ NNS IN NNP , NNP , DT NNPS , NNP , CC NNP . Brunei has established a fishing zone that overlaps a southern reef but has not made any formal claim . NNP VBZ VBN DT NN NN WDT VBZ DT JJ NN CC VBZ RB VBN DT JJ NN . THE President of a great Corporation went into a dry-goods shop and saw a placard which read : ' If You Do n't See What You Want , Ask For It . ' DT NN IN DT JJ NN VBD IN DT NNS NN CC VBD DT NN WDT VBD : `` IN PRP VBP RB VB WP PRP NNP , NNP IN PRP . `` Approaching the shopkeeper , who had been narrowly observing him as he read the placard , he was about to speak , when the shopkeeper called to a salesman : ' John , show this gentleman the world . ' VBG DT NN , WP VBD VBN RB VBG PRP IN PRP VBD DT NN , PRP VBD IN TO VB , WRB DT NN VBD TO DT NN IN `` NNP , VBP DT NN DT NN . `` More than 1,000 supporters of former Yugoslav President Slobodan Milosevic have walked past his coffin , paying final respects to the late president . JJR IN CD NNS IN JJ JJ NNP NNP NNP VBP VBN IN PRP$ NN , VBG JJ NNS TO DT JJ NN . A large portrait of the former leader was placed Thursday in front of the closed , flag-draped casket at a communist-era museum in Belgrade . DT JJ NN IN DT JJ NN VBD VBN NNP IN NN IN DT JJ , JJ NN IN DT JJ NN IN NNP . The observances prompted criticism from the museum 's director about the use of the cultural institution for political purposes . DT NNS VBD NN IN DT NN POS NN IN DT NN IN DT JJ NN IN JJ NNS . Officials with Milosevic 's Socialist Party say his coffin will remain on public display until Saturday , when it will be taken to his hometown of Pozarevac . NNS IN NNP POS NNP NNP VBP PRP$ NN MD VB IN JJ NN IN NNP , WRB PRP MD VB VBN TO PRP$ NN IN NNP . Milosevic will be buried in the yard of his family home . NNP MD VB VBN IN DT NN IN PRP$ NN NN . A top party official , Milorad Vucelic says Milosevic 's widow , Mira Markovic , is expected to return to Belgrade from Russia Friday for the funeral . DT JJ NN NN , NNP NNP VBZ NNP POS NN , NNP NNP , VBZ VBN TO VB IN NNP IN NNP NNP IN DT NN . Her expected appearance follows a Serbian court Tuesday suspending an arrest warrant for her on charges of abuse of power . PRP$ JJ NN VBZ DT JJ NN NNP VBG DT NN NN IN PRP IN NNS IN NN IN NN . There will be no official remembrances for Milosevic . EX MD VB DT JJ NNS IN NNP . Serbian President Boris Tadic has ruled out a state funeral . JJ NNP NNP NNP VBZ VBN RP DT NN NN . Milosevic died of a heart attack last week in his jail cell near The Hague . NNP VBD IN DT NN NN JJ NN IN PRP$ NN NN IN DT NNP . He was on trial before the United Nations war crimes tribunal for genocide and crimes against humanity stemming from the Balkan wars of the 1990s . PRP VBD IN NN IN DT NNP NNPS NN NNS JJ IN NN CC NNS IN NN VBG IN DT NNP NNS IN DT NNS . The United States ' only mobile field hospital has arrived in Pakistan to help earthquake victims in Pakistan 's devastated Kashmir region . DT NNP NNPS POS JJ JJ NN NN VBZ VBN IN NNP TO VB NN NNS IN NNP POS JJ NNP NN . Officials Sunday said the Mobile Army Surgical Hospital , or MASH unit , would be positioned in Muzaffarabad , the capital of Pakistani Kashmir . NNS NNP VBD DT NNP NNP NNP NNP , CC NNP NN , MD VB VBN IN NNP , DT NN IN JJ NNP . They say the Germany-based unit will be an important addition to other international hospitals operating in the region . PRP VBP DT JJ NN MD VB DT JJ NN TO JJ JJ NNS VBG IN DT NN . Tens of thousands of people were injured in the massive quake , and Pakistani and international medical teams have been struggling to treat them . NNS IN NNS IN NNS VBD VBN IN DT JJ NN , CC JJ CC JJ JJ NNS VBP VBN VBG TO VB PRP . U.S. Army doctors say they expect to see people with broken bones , trauma injuries and those suffering from shock , cold or malnutrition . NNP NNP NNS VBP PRP VBP TO VB NNS IN JJ NNS , NN NNS CC DT VBG IN NN , JJ CC NN . The MASH unit , the last of its kind in the U.S. Army , dates back to World War I and has been used in several conflicts , including Vietnam , the Balkans and the 1991 Gulf war . DT NNP NN , DT NN IN PRP$ NN IN DT NNP NNP , VBZ RB TO NNP NNP NNP CC VBZ VBN VBN IN JJ NNS , VBG NNP , DT NNPS CC DT CD NNP NN . Officials in eastern Sudan say clashes between police and demonstrators have left at least 14 people dead . NNS IN JJ NNP VBP NNS IN NNS CC NNS VBP VBN IN JJS CD NNS JJ . Witnesses say members of the Beja tribal group were marching to the governor 's office in the eastern city of Port Sudan Saturday when the violence began . NNS VBP NNS IN DT NNP NN NN VBD VBG TO DT NN POS NN IN DT JJ NN IN NNP NNP NNP WRB DT NN VBD . Officials from the Beja tribe say security forces shot at the demonstrators . NNS IN DT NNP NN VBP NN NNS VBN IN DT NNS . They put the death toll at 23 . PRP VBD DT NN NN IN CD . Police say the protesters were looting and vandalizing buildings . NNS VBP DT NNS VBD VBG CC VBG NNS . They have imposed a curfew on the town . PRP VBP VBN DT NN IN DT NN . Earlier this week , Beja tribes people presented a list of demands to the local government , including a call for a fairer distribution of wealth and power in the region . RBR DT NN , NNP VBZ NNS VBD DT NN IN NNS TO DT JJ NN , VBG DT NN IN DT JJR NN IN NN CC NN IN DT NN . Their demands are similar to those that sparked separate violence in Sudan 's western and southern regions . PRP$ NNS VBP JJ TO DT WDT VBD JJ NN IN NNP POS JJ CC JJ NNS . A southern peace deal was reached earlier this year , but violence continues in Darfur . DT JJ NN NN VBD VBN RBR DT NN , CC NN VBZ IN NNP . Russian officials say President Vladimir Putin will travel to Libya Wednesday at the invitation of Libyan leader Moammar Gadhafi . JJ NNS VBP NNP NNP NNP MD VB TO NNP NNP IN DT NN IN JJ NN NNP NNP . The talks between the two leaders meeting in the North African country are expected to focus on gas exploration deals with Russia 's natural gas company , Gazprom . DT NNS IN DT CD NNS NN IN DT JJ JJ NN VBP VBN TO VB IN NN NN NNS IN NNP POS JJ NN NN , NNP . The two-day visit will be one of Mr. Putin 's last foreign trips before he steps down from office next month , when Dmitry Medvedev will replace him . DT JJ NN MD VB CD IN NNP NNP POS JJ JJ NNS IN PRP VBZ RB IN NN JJ NN , WRB NNP NNP MD VB PRP . Mr. Putin is expected to become Russia 's prime minister . NNP NNP VBZ VBN TO VB NNP POS JJ NN . The blockbuster movie 300 may have conquered U.S. box offices , but it 's no hit in Iran . DT NN NN NNP MD VB VBN NNP NN NNS , CC PRP VBZ DT NN IN NNP . Blasting it as an ' obvious insult , ' state-run television is featuring Iranian film directors to point out its historical inaccuracies . VBG PRP IN DT `` JJ NN , `` JJ NN VBZ VBG JJ NN NNS TO VB RP PRP$ JJ NNS . Focusing on the Greek victory over vastly larger Persian forces at the Battle Of Thermopylae in 480 B.C. , 300 grossed $ 70 million in its first weekend of U.S. release . VBG IN DT JJ NN IN RB JJR JJ NNS IN DT NNP IN NNP IN CD NNP , NNP VBD $ CD CD IN PRP$ JJ NN IN NNP NN . The film comes at a time of tension between the United States and Iran over the Middle Eastern nation 's nuclear ambitions 0.3 has not opened in Iran and likely never will , although one newspaper noted its availability through illegally-copied DVDs . DT NN VBZ IN DT NN IN NN IN DT NNP NNPS CC NNP IN DT NNP NNP NN POS JJ NNS NN VBZ RB VBN IN NNP CC JJ RB MD , IN CD NN VBD PRP$ NN IN JJ NNS . The U.S. Army says it has reviewed an American soldier 's videotape from Iraq that appears to show troops kicking a wounded and bound Iraqi prisoner , and concluded that such behavior was inappropriate but not criminal . DT NNP NNP VBZ PRP VBZ VBN DT JJ NN POS NN IN NNP WDT VBZ TO VB NNS VBG DT VBN CC VBN JJ NN , CC VBD IN JJ NN VBD JJ CC RB JJ . The internal military report about the videotape was part of a massive release of 1,200 pages of documents following a lawsuit filed by the American Civil Liberties Union . DT JJ JJ NN IN DT NN VBD NN IN DT JJ NN IN CD NNS IN NNS VBG DT NN VBN IN DT NNP NNP NNP NNP . The military says its investigation of the videotape did not result in any new abuse charges , in part because the video apparently has been destroyed . DT JJ VBZ PRP$ NN IN DT NN VBD RB VB IN DT JJ NN NNS , IN NN IN DT NN RB VBZ VBN VBN . A spokesman said , ' The Army continues to investigate and hold people accountable when appropriate . DT NN VBD , `` DT NNP VBZ TO VB CC VB NNS JJ WRB JJ . Nearly 110 American soldiers are said to have been disciplined for their actions in Iraq . RB CD JJ NNS VBP VBN TO VB VBN VBN IN PRP$ NNS IN NNP . The two Koreas have announced special prisoner amnesties to mark the 60th anniversary of the liberation of the peninsula from Japanese colonial rule . DT CD NNS VBP VBN JJ NN NNS TO VB DT JJ NN IN DT NN IN DT NN IN JJ NN NN . South Korean authorities said Friday , that President Roh Moo-hyun has issued more than four million pardons , covering a range of offenses including corruption by government officials , less serious crimes and traffic-law violations . JJ JJ NNS VBD NNP , IN NNP NNP NNP VBZ VBN JJR IN CD CD NNS , VBG DT NN IN NNS VBG NN IN NN NNS , JJR JJ NNS CC NN NNS . Authorities in Pyongyang say North Korea is granting amnesty to prisoners to celebrate not only the liberation of the Korean peninsula in 1945 , but also the found of its Communist party 60 years ago . NNS IN NNP VBP NNP NNP VBZ VBG NN TO NNS TO VB RB RB DT NN IN DT JJ NN IN CD , CC RB DT VBN IN PRP$ JJ NN CD NNS RB . The official Korean Central News Agency says the amnesty will take effect on September 1 . DT JJ JJ NNP NNP NNP VBZ DT NN MD VB NN IN NNP CD . There is no word on how many prisoners will be pardoned or what crimes the amnesty will absolve . EX VBZ DT NN IN WRB JJ NNS MD VB VBN CC WP NNS DT NN MD VB . The United States estimates that North Korea has between 1,50,000 and 2,00,000 political prisoners in custody . DT NNP NNPS VBZ IN NNP NNP VBZ IN CD CC CD JJ NNS IN NN . Under the watchful eye of security forces , the family of ousted Chinese leader Zhao Ziyang has held a memorial ceremony for him on China 's traditional day of remembrance for the dead . IN DT JJ NN IN NN NNS , DT NN IN JJ JJ NN NNP NNP VBZ VBN DT JJ NN IN PRP IN NNP POS JJ NN IN NN IN DT NN . Zhao 's family planted a magnolia tree in the backyard of his Beijing home Tuesday . NNP POS NN VBD DT NN NN IN DT NN IN PRP$ NNP NN NNP . The former Communist Party leader died in January at the age of 85 . DT JJ NNP NNP NN VBD IN NNP IN DT NN IN CD . Zhao was deposed in 1989 over his opposition to the violent crackdown on pro-democracy protesters in Tiananmen Square . NNP VBD VBN IN CD IN PRP$ NN TO DT JJ NN IN JJ NNS IN NNP NNP . He spent the next 15 years under house arrest . PRP VBD DT JJ CD NNS IN NN NN . China 's government accused Zhao of making ' serious mistakes ' in his handling of the protests and downplayed his death . NNP POS NN VBD NNP IN VBG `` JJ NNS `` IN PRP$ NN IN DT NNS CC VBD PRP$ NN . Many pro-democracy activists and relatives of those who were killed in Tiananmen have been prevented by security forces from visiting Zhao 's home to pay their respects . JJ JJ NNS CC NNS IN DT WP VBD VBN IN NNP VBP VBN VBN IN NN NNS IN VBG NNP POS NN TO VB PRP$ NNS . Ministers from 21 Asia-Pacific economies will begin meetings later Wednesday in Santiago , Chile , ahead of a summit of leaders from the region later this week . NNS IN CD JJ NNS MD VB NNS RB NNP IN NNP , NNP , RB IN DT NN IN NNS IN DT NN RB DT NN . Officials say today 's meetings of the Asia-Pacific Economic Cooperation group will help set the agenda for the leaders ' summit , and are expected to feature discussions on regional trade agreements and general trade policies . NNS VBP NN POS NNS IN DT NNP NNP NNP NN MD VB VB DT NN IN DT NNS POS NN , CC VBP VBN TO VB NNS IN JJ NN NNS CC JJ NN NNS . The ministers also are expected to express their support for global trade talks under the auspices of the World Trade Organization . DT NNS RB VBP VBN TO VB PRP$ NN IN JJ NN NNS IN DT NNS IN DT NNP NNP NNP . Other themes expected to be addressed by ministers include anti-terrorism efforts , health concerns , anti-corruption and transparency issues , and maintaining the security of regional financial markets . JJ NNS VBN TO VB VBN IN NNS VBP JJ NNS , NN NNS , NN CC NN NNS , CC VBG DT NN IN JJ JJ NNS . President Bush , Chinese President Hu Jintao and Japanese Prime Minister Junichiro Koizumi will be among the leaders attending the APEC summit Saturday and Sunday . NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP NNP MD VB IN DT NNS VBG DT NNP NN NNP CC NNP . Pakistan 's deposed chief justice has begun a national campaign to reclaim his post by saying he still considers himself the legal head of his country 's Supreme Court . NNP POS VBN NN NN VBZ VBN DT JJ NN TO VB PRP$ NN IN VBG PRP RB VBZ PRP DT JJ NN IN PRP$ NN POS NNP NNP . Iftikhar Mohammad Chaudhry was speaking Tuesday to lawyers in his hometown of Quetta , the first stop on a tour of Pakistani cities . NNP NNP NNP VBD VBG NNP TO NNS IN PRP$ NN IN NNP , DT JJ NN IN DT NN IN JJ NNS . Pakistani authorities released Chaudhry from house arrest last week on the orders of new Prime Minister Yousuf Raza Gilani . JJ NNS VBD NNP IN NN NN JJ NN IN DT NNS IN JJ NNP NNP NNP NNP NNP . Chaudhry praised the election victory of Mr. Gilani and other opposition leaders in February 's parliamentary vote , saying it has changed Pakistan 's political culture . NNP VBD DT NN NN IN NNP NNP CC JJ NN NNS IN NNP POS JJ NN , VBG PRP VBZ VBN NNP POS JJ NN . He says Pakistani voters rejected what he calls the ' one-man rule ' of President Pervez Musharraf . PRP VBZ JJ NNS VBD WP PRP VBZ DT `` JJ NN `` IN NNP NNP NNP . Mr. Musharraf dismissed Chaudhry and dozens of other top judges last November after they refused to recognize his October reelection as president . NNP NNP VBD NNP CC NNS IN JJ JJ NNS JJ NNP IN PRP VBD TO VB PRP$ NNP NN IN NN . Mr. Gilani 's coalition government has promised to reinstate all the deposed judges within 30 days . NNP NNP POS NN NN VBZ VBN TO VB PDT DT VBN NNS IN CD NNS . Kosovo 's Prime Minister Bajram Kosumi has resigned , following intense pressure from his own party . NNP POS NNP NNP NNP NNP VBZ VBN , VBG JJ NN IN PRP$ JJ NN . Mr. Kosumi faced mounting criticism from the ruling coalition , which viewed him as an ineffective leader . NNP NNP VBD VBG NN IN DT NN NN , WDT VBD PRP IN DT JJ NN . One of several political parties in the province , the Alliance for the Future of Kosovo , has suggested that President Fatmir Sejdiu nominate a former key member of the ethnic Albanian guerrilla movement , the Kosovo Liberation Army , Agim Ceku for the post . CD IN JJ JJ NNS IN DT NN , DT NNP IN DT NN IN NNP , VBZ VBN IN NNP NNP NNP VBD DT JJ JJ NN IN DT JJ JJ NN NN , DT NNP NNP NNP , NNP NNP IN DT NN . The party says it believes Ceku would be dedicated to the pursuit of an independent Kosovo . DT NN VBZ PRP VBZ NNP MD VB VBN TO DT NN IN DT JJ NNP . The outgoing prime minister was a key figure in the United Nations-mediated talks on the future of the Serbian province . DT JJ JJ NN VBD DT JJ NN IN DT NNP JJ NNS IN DT NN IN DT JJ NN . Kosovo has been under U.N. administration since 1999 , when NATO airstrikes drove out Serbian security forces after violence against ethnic Albanians . NNP VBZ VBN IN NNP NN IN CD , WRB NNP NNS VBD RP JJ NN NNS IN NN IN JJ NNS . The region 's ethnic Albanian majority is pressing for independence from Serbia - a demand that Serbs strongly oppose . DT NN POS JJ JJ NN VBZ VBG IN NN IN NNP IN DT NN IN NNS RB VBP . Pakistani police say they have arrested five people in Karachi for allegedly plotting attacks on security forces and government buildings in the nation 's commercial capital . JJ NNS VBP PRP VBP VBN CD NNS IN NNP IN RB VBG NNS IN NN NNS CC NN NNS IN DT NN POS JJ NN . Karachi 's police chief , Waseem Ahmed , told reporters Wednesday the suspected terrorists belong to the Sunni extremist group Lashkar-e-Jhangvi . NNP POS NN NN , NNP NNP , VBD NNS NNP DT JJ NNS VBP TO DT NNP NN NN NNP . Police say they recovered weapons and ammunition when they captured the men during a raid Tuesday night in the Sohrab Goth neighborhood , in the southern city . NNS VBP PRP VBD NNS CC NN WRB PRP VBD DT NNS IN DT NN NNP NN IN DT NNP NNP NN , IN DT JJ NN . The police chief says the men planned to target several government buildings and the police head office in Karachi . DT NN NN VBZ DT NNS VBN TO VB JJ NN NNS CC DT NN NN NN IN NNP . As the dollar 's value drops , especially in relation to the euro , the British pound and some Asian currencies , New York City is experiencing a new kind of tourism boom . IN DT NN POS NN NNS , RB IN NN TO DT NN , DT JJ NN CC DT JJ NNS , NNP NNP NNP VBZ VBG DT JJ NN IN NN NN . The world is coming to New York to go shopping . DT NN VBZ VBG TO NNP NNP TO VB NN . Some say their savings on consumer goods actually pays for their travel . DT VBP PRP$ NNS IN NN NNS RB VBZ IN PRP$ NN . VOA 's Carolyn Weaver reports . NNP POS NNP NNP VBZ . Kosovo 's ruling coalition says it has agreed on the makeup of a new government , with minor changes to some posts . NNP POS NN NN VBZ PRP VBZ VBN IN DT NN IN DT JJ NN , IN JJ NNS TO DT NNS . The Democratic League of Kosovo says it will keep most ministers in the same positions , but will name Lutfi Haziri as new deputy prime minister . DT JJ NNP IN NNP VBZ PRP MD VB RBS NNS IN DT JJ NNS , CC MD VB NNP NNP IN JJ JJ JJ NN . The government reshuffle follows the resignation of former Prime Minister Bajram Kosumi , after criticism of the performance of his government . DT NN NN VBZ DT NN IN JJ NNP NNP NNP NNP , IN NN IN DT NN IN PRP$ NN . The Kosovo Assembly meets Friday to decide whether to appoint as prime minister General Agim Ceku , who commands the Kosovo Protection Corps - the Serbian province 's civil defense group . DT NNP NNP VBZ NNP TO VB IN TO VB IN JJ NN NNP NNP NNP , WP VBZ DT NNP NNP NNP IN DT JJ NN POS JJ NN NN . Ceku led the ethic Albanian guerrilla movement , the Kosovo Liberation Army , in the struggle of the late 1990s against Serbian troops and security forces . NNP VBD DT JJ JJ NN NN , DT NNP NNP NNP , IN DT NN IN DT JJ NNS IN JJ NNS CC NN NNS . He has said he is willing to assume the post . PRP VBZ VBN PRP VBZ JJ TO VB DT NN . Serbia accuses him of war crimes against civilians during the fighting . NNP VBZ PRP IN NN NNS IN NNS IN DT NN . Rebels in Ivory Coast say they have withdrawn their support for elections scheduled for October 30 . NNS IN NNP NNP VBP PRP VBP VBN PRP$ NN IN NNS VBN IN NNP CD . The rebels reached the decision Thursday after a meeting in their northern stronghold of Bouake . DT NNS VBD DT NN NNP IN DT NN IN PRP$ JJ NN IN NNP . The French News Agency , AFP , quotes a rebel statement as saying that conditions for a ' free , democratic , and transparent vote ' can not be guaranteed . DT NNP NNP NNP , NNP , VBZ DT NN NN IN VBG IN NNS IN DT `` JJ , JJ , CC JJ NN `` MD RB VB VBN . The October elections are meant to help foster the reunification of Ivory Coast , which has been cut in two since a civil war erupted in September 2002 after a failed coup against President Laurent Gbagbo . DT NNP NNS VBP VBN TO VB VB DT NN IN NNP NNP , WDT VBZ VBN VBN IN CD IN DT JJ NN VBD IN NNP CD IN DT JJ NN IN NNP NNP NNP . Little progress has been made in implementing a series of peace deals between the government and rebels . JJ NN VBZ VBN VBN IN VBG DT NN IN NN NNS IN DT NN CC NNS . Rwanda has withdrawn a public threat to send troops into eastern Democratic Republic of Congo , where Congolese troops have been fighting dissident soldiers . NNP VBZ VBN DT JJ NN TO VB NNS IN JJ JJ NNP IN NNP , WRB JJ NNS VBP VBN VBG JJ NNS . Rwandan President Paul Kagame had threatened to send soldiers across the border to fight Hutu militias blamed for attacks on Rwanda . JJ NNP NNP NNP VBD VBN TO VB NNS IN DT NN TO VB NNP NNS VBN IN NNS IN NNP . The Congolese government sent extra troops to eastern Congo in response to the threat , angering dissidents in the Congolese army who the Kinshasa government says are backed by Rwanda . DT JJ NN VBD JJ NNS TO JJ NNP IN NN TO DT NN , VBG NNS IN DT JJ NN WP DT NNP NN VBZ VBP VBN IN NNP . Fighting broke out last week , forcing at least 1,00,000 people to flee their homes . VBG VBN RP JJ NN , VBG IN JJS CD NNS TO VB PRP$ NNS . Rwandan leaders now say disarming Hutu rebels in Congo is a job for the international community . JJ NNS RB VBP VBG NNP NNS IN NNP VBZ DT NN IN DT JJ NN . Rwanda blames Hutu militias for the 1994 genocide of about 8,00,000 Tutsis and moderate Hutus . NNP VBZ NNP NNS IN DT CD NN IN IN CD NN CC JJ NN . Officials in Somalia say U.S. naval warships have bombarded a remote coastal village where suspected Islamist insurgents had set up a base . NNS IN NNP VBP NNP JJ NNS VBP VBN DT JJ JJ NN WRB JJ NNP NNS VBD VBN RP DT NN . The attack happened Friday night when a Navy destroyer opened fire around the village of Bargal , located in northern Somalia 's semi-autonomous region of Puntland . DT NN VBD NNP NN WRB DT NNP NN VBD NN IN DT NN IN NNP , VBN IN JJ NNP POS JJ NN IN NNP . Officials say the extremists arrived in Bargal earlier this week , then fought with troops from the region . NNS VBP DT NNS VBD IN NNP RBR DT NN , RB VBD IN NNS IN DT NN . A U.S. Department of Defense spokesman would not confirm or deny the report . DT NNP NNP IN NNP NN MD RB VB CC VB DT NN . He would only say the United States remains committed to reducing terrorist capabilities when it finds them . PRP MD RB VB DT NNP NNPS VBZ JJ TO VBG JJ NNS WRB PRP VBZ PRP . CNN International reported Friday that the ships fired on a suspected al-Qaida operative suspected of being involved in the simultaneous bomb attacks on the U.S. embassies in Kenya and Tanzania in 1998 . NNP NNP VBD NNP IN DT NNS VBD IN DT JJ NNP NN VBN IN VBG VBN IN DT JJ NN NNS IN DT NNP NNS IN NNP CC NNP IN CD . The U.S. carried out airstrikes earlier this year in southern Somalia targeting suspected al-Qaida operatives . DT NNP VBD RP NNS RBR DT NN IN JJ NNP VBG JJ NNP NNS . Uzbekistan has rejected a call from NATO 's inter-parliamentary assembly for an international inquiry into recent violence in Andijan , but said foreign diplomats can monitor its own probe . NNP VBZ VBN DT NN IN NNP POS JJ NN IN DT JJ NN IN JJ NN IN NNP , CC VBD JJ NNS MD VB PRP$ JJ NN . Uzbek Foreign Minister Elyor Ganiyev proposed setting up a group of representatives of foreign embassies in Tashkent that would monitor the probe . JJ NNP NNP NNP NNP VBD VBG RP DT NN IN NNS IN JJ NNS IN NNP WDT MD VB DT NN . NATO Secretary-General Jaap de Hoop Scheffer asked for the investigation after allegations that Uzbek troops used excessive force against unarmed civilians . NNP NNP NNP IN NNP NNP VBD IN DT NN IN NNS IN JJ NNS VBD JJ NN IN JJ NNS . NATO parliamentarians urged member states to halt support for Uzbek armed forces unless a probe was conducted . NNP NNS VBD NN NNS TO VB NN IN JJ JJ NNS IN DT NN VBD VBN . Witnesses and Uzbek opposition groups say as many as 1,000 people were killed in the crackdown . NNS CC JJ NN NNS VBP RB JJ IN CD NNS VBD VBN IN DT NN . The government put the death toll at 173 . DT NN VBD DT NN NN IN CD . A U.S. professor and his wife , accused of spying for Cuba , have pleaded not guilty in federal court . DT NNP NN CC PRP$ NN , VBN IN VBG IN NNP , VBP VBN RB JJ IN JJ NN . Carlos and Elsa Alvarez appeared in a Miami , Florida , courtroom Thursday to face charges they spent decades sending information to Cuba about Cuban exiles in the United States . NNP CC NNP NNP VBD IN DT NNP , NNP , NN NNP TO VB NNS PRP VBD NNS VBG NN TO NNP IN JJ NNS IN DT NNP NNPS . The couple 's attorneys say they plan to appeal a federal magistrate 's order that they be considered a flight risk and kept in detention until trial . DT NN POS NNS VBP PRP VBP TO VB DT JJ NN POS NN IN PRP VB VBN DT NN NN CC VBD IN NN IN NN . No trial date has been set . DT NN NN VBZ VBN VBN . The Alvarezes were charged January ninth with being agents of a foreign power without registering with the U.S. government . DT NNPS VBD VBN NNP JJ IN VBG NNS IN DT JJ NN IN VBG IN DT NNP NN . Prosecutors say they sent information to Cuba using shortwave radio and encryption equipment . NNS VBP PRP VBD NN TO NNP VBG NN NN CC NN NN . Federal Bureau of Investigation officials say there is no evidence they gave Cuba any classified or military information . NNP NNP IN NNP NNS VBP EX VBZ DT NN PRP VBD NNP DT JJ CC JJ NN . Indian Prime Minister Manmohan Singh will be sworn in for a second consecutive term Friday , following his Congress party 's surprisingly decisive victory in national elections . JJ NNP NNP NNP NNP MD VB VBN IN IN DT JJ JJ NN NNP , VBG PRP$ NNP NN POS RB JJ NN IN JJ NNS . Congress party lawmakers formally elected Singh to return as the prime minister on Tuesday . NNP NN NNS RB VBD NNP TO VB IN DT JJ NN IN NNP . The party is in the process of forming a new government . DT NN VBZ IN DT NN IN VBG DT JJ NN . Party leaders say the priorities include the plight of the poor , India 's security and promoting tolerance between Hindus and Muslims . NNP NNS VBP DT NNS VBP DT NN IN DT NN , NNP POS NN CC VBG NN IN NNP CC NNPS . Mr. Singh is in a more commanding position since the ruling party has decided not to include communists in its coalition . NNP NNP VBZ IN DT RBR JJ NN IN DT NN NN VBZ VBN RB TO VB NNS IN PRP$ NN . This will give it more flexibility in pursuing its own domestic and foreign policies . DT MD VB PRP JJR NN IN VBG PRP$ JJ JJ CC JJ NNS . The ruling Congress Party-led alliance won 261 seats in the 543-member parliament , while its main rival , the opposition Bharatiya Janata Party , only won 159 seats . DT NN NNP JJ NN VBD CD NNS IN DT JJ NN , IN PRP$ JJ NN , DT NN NNP NNP NNP , RB VBD CD NNS . The rest went to a number of other small parties . DT NN VBD TO DT NN IN JJ JJ NNS . President Bush Friday made Christmas Eve phone calls to members of the U.S. military , thanking them for their service and wishing them happy holidays . NNP NNP NNP VBD NNP NNP NN VBZ TO NNS IN DT NNP NN , VBG PRP IN PRP$ NN CC VBG PRP JJ NNS . Mr. Bush placed the calls from the presidential retreat at Camp David , Maryland , where the Bush family is spending the Christmas weekend . NNP NNP VBD DT NNS IN DT JJ NN IN NNP NNP , NNP , WRB DT NNP NN VBZ VBG DT NNP NN . The White House says Mr. Bush called 10 soldiers in all - six of them stationed in Iraq , another serving in Korea , and three others in the United States . DT NNP NNP VBZ NNP NNP VBD CD NNS IN DT IN CD IN PRP VBD IN NNP , DT VBG IN NNP , CC CD NNS IN DT NNP NNPS . President Bush has also sent out his annual Christmas message . NNP NNP VBZ RB VBN RP PRP$ JJ NNP NN . In the message , Mr. Bush thanked all members of the armed forces and urged Americans to help neighbors in need . IN DT NN , NNP NNP VBD DT NNS IN DT JJ NNS CC VBD NNS TO VB NNS IN NN . The president issued a separate message extending best wishes to those who celebrate Kwanzaa , a December holiday observed by many African-Americans . DT NN VBD DT JJ NN VBG JJS NNS TO DT WP VBP NNP , DT NNP NN VBN IN JJ NNPS . Pakistani officials say a wintery mix of rain and snow has fallen over Pakistan 's earthquake zone today Sunday , disrupting relief operations . JJ NNS VBP DT JJ NN IN NN CC NN VBZ VBN IN NNP POS NN NN NN NNP , VBG NN NNS . Nearly 20 centimeters of snow fell in some high-altitude areas and up to 32 millimeters of rain fell today in some lower areas . RB CD NNS IN NN VBD IN DT JJ NNS CC IN TO CD NNS IN NN VBD NN IN DT JJR NNS . A Pakistani army spokesman told the Reuters news agency no helicopters could fly in quake-stricken Kashmir because of rain and clouds . DT JJ NN NN VBD DT NNP NN NN DT NNS MD VB IN JJ NNP IN IN NN CC NNS . International relief officials also said their flight operations had been called off because of the weather . JJ NN NNS RB VBD PRP$ NN NNS VBD VBN VBN RP IN IN DT NN . Thousands of victims from the deadly October 8 earthquake have found shelter in temporary camps , but tens of thousands more remain in high-altitude villages . NNS IN NNS IN DT JJ NNP CD NN VBP VBN NN IN JJ NNS , CC NNS IN NNS RBR VBP IN JJ NNS . U.N. officials have warned cold weather could force some 40,000 people to abandon the villages and seek shelter in already over-crowded cities in the warmer valleys . NNP NNS VBP VBN JJ NN MD VB DT CD NNS TO VB DT NNS CC VB NN IN RB JJ NNS IN DT NN NNS . Iraq 's prime minister has named his defense and interior ministers , and a head of national security , following weeks of negotiations over the posts . NNP POS JJ NN VBZ VBN PRP$ NN CC NN NNS , CC DT NN IN JJ NN , VBG NNS IN NNS IN DT NNS . Prime Minister Nouri al-Maliki named Jawad al-Bolani , a Shi'ite Muslim , as his interior minister ; Sunni Arab General Abdel Qader Jassim as the defense minister ; and another Shi'ite , Sherwan al-Waili , as the new head of national security . NNP NNP NNP NNP VBD NNP NNP , DT NNP NNP , IN PRP$ JJ NN ; NNP NNP NNP NNP NNP NNP IN DT NN NN ; CC DT NNP , NNP NNP , IN DT JJ NN IN JJ NN . Filling the posts was considered crucial for Mr. Maliki as he moves to implement a plan for Iraqi forces to take charge of security to allow for the reduction and eventual withdrawal of foreign troops . VBG DT NNS VBD VBN JJ IN NNP NNP IN PRP VBZ TO VB DT NN IN JJ NNS TO VB NN IN NN TO VB IN DT NN CC JJ NN IN JJ NNS . In other developments Thursday , insurgents carried out a string of bomb attacks across Baghdad , killing at least 27 people . IN JJ NNS NNP , NNS VBD RP DT NN IN NN NNS IN NNP , VBG IN JJS CD NNS . In the deadliest blast , a bomb killed 13 people at a crowded market in eastern Baghdad . IN DT JJS NN , DT NN VBN CD NNS IN DT JJ NN IN JJ NNP . Separate roadside bombings have killed 12 Afghan civilians and a Polish soldier in eastern Afghanistan . JJ NN NNS VBP VBN CD JJ NNS CC DT JJ NN IN JJ NNP . The Polish defense ministry says a soldier was killed and five other service members were wounded Friday in Ghazni province . DT JJ NN NN VBZ DT NN VBD VBN CC CD JJ NN NNS VBD VBN NNP IN NNP NN . Elsewhere in Ghazni , NATO says three Afghan construction workers were killed and two others wounded Thursday , when a bomb exploded in the Qarabaugh district . RB IN NNP , NNP VBZ CD JJ NN NNS VBD VBN CC CD NNS VBD NNP , WRB DT NN VBD IN DT NNP NN . Later in the day , nine construction workers were killed in a separate roadside bombing in the Bar Kunar district of Kunar province . RB IN DT NN , CD NN NNS VBD VBN IN DT JJ NN VBG IN DT NNP NNP NN IN NNP NN . Separately , South Korea 's foreign ministry said Friday that Afghan security personnel staged a rocket attack in June on the construction site of South Korea 's civilian base in northern Parwan province . RB , NNP NNP POS JJ NN VBD NNP IN JJ NN NNS VBD DT NN NN IN NNP IN DT NN NN IN NNP NNP POS JJ NN IN JJ NNP NN . The attack caused no casualties . DT NN VBD DT NNS . The ministry says it is not clear why Afghan security guards fired rocket-propelled grenades at the site . DT NN VBZ PRP VBZ RB JJ WRB JJ NN NNS VBD JJ NNS IN DT NN . The South Korean Yonhap news agency says four guards have been taken into custody . DT JJ JJ NN NN NN VBZ CD NNS VBP VBN VBN IN NN . Russia has authorized the United States to use its airspace for flights carrying troops and military supplies to Afghanistan . NNP VBZ VBN DT NNP NNPS TO VB PRP$ NN IN NNS VBG NNS CC JJ NNS TO NNP . The deal , signed Monday at a U.S.-Russian summit in Moscow , permits up to 4,500 military flights a year - about 12 a day - carrying troops , arms , munitions , military vehicles and spare parts . DT NN , VBD NNP IN DT JJ NN IN NNP , VBZ RP TO CD JJ NNS DT NN IN IN CD DT NN IN VBG NNS , NNS , NNS , JJ NNS CC JJ NNS . Senior U.S. officials say the flights will not be charged Russian transit fees and will not stop in Russian territory . JJ NNP NNS VBP DT NNS MD RB VB VBN JJ NN NNS CC MD RB VB IN JJ NN . Moscow had previously limited U.S. shipments across its territory to non-military supplies carried by train . NNP VBD RB VBN NNP NNS IN PRP$ NN TO JJ NNS VBN IN NN . The White House said the air transit agreement will save more than $ 130 million a year in fuel and other transit costs . DT NNP NNP VBD DT NN NN NN MD VB JJR IN $ CD CD DT NN IN NN CC JJ NN NNS . The two presidents also agreed to boost joint anti-terrorism and anti-crime measures , including cooperation in sharing financial intelligence in the fight against heroin trafficking . DT CD NNS RB VBD TO VB JJ NN CC JJ NNS , VBG NN IN VBG JJ NN IN DT NN IN NN NN . A record-breaking heat wave over southeastern Europe and parts of the Middle East is expected to continue , closing out what experts say will be the hottest June ever recorded in the region . DT JJ NN NN IN JJ NNP CC NNS IN DT NNP NNP VBZ VBN TO VB , VBG RP WP NNS VBP MD VB DT JJS NNP RB VBD IN DT NN . Temperatures reached a stifling 46 degrees Celsius Monday in Athens , forcing government offices to close . NNS VBD DT VBG CD NNS NNP NNP IN NNP , VBG NN NNS TO VB . Greek authorities say the heat killed two elderly women while another death was reported on Cyprus . JJ NNS VBP DT NN VBD CD JJ NNS IN DT NN VBD VBN IN NNP . Romanian authorities say the heat has killed 25 people . JJ NNS VBP DT NN VBZ VBN CD NNS . Elsewhere , British authorities issued warnings across much of the country Monday , where flash floods killed three people in northern England . RB , JJ NNS VBD NNS IN NN IN DT NN NNP , WRB NN NNS VBD CD NNS IN JJ NNP . The bad weather forced a delay in the Wimbledon tennis tournament in London . DT JJ NN VBD DT NN IN DT NNP NN NN IN NNP . Bolivian President-elect Evo Morales has met with two prominent South Africans as he winds up his visit to South Africa . JJ NN NNP NNP VBZ VBN IN CD JJ NNP NNS IN PRP VBZ RP PRP$ NN TO NNP NNP . Morales met with Archbishop Desmond Tutu and former President F. W. De Klerk Thursday to learn how the two Nobel Peace Prize winners helped transform South Africa from , as Morales said , ' apartheid isolation to democratic prosperity . ' NNP VBD IN NN NNP NNP CC JJ NNP NNP NNP NNP NNP NNP TO VB WRB DT CD NNP NNP NNP NNS VBD VB NNP NNP IN , IN NNP VBD , `` NN NN TO JJ NN . `` He also visited the notorious Robben Island prison , where anti-apartheid leader and former President Nelson Mandela , also a Nobel Peace laureate , spent years in captivity . PRP RB VBD DT JJ NNP NNP NN , WRB JJ NN CC JJ NNP NNP NNP , RB DT NNP NNP NN , VBD NNS IN NN . Morales is the first indigenous Bolivian to be elected president . NNP VBZ DT JJ JJ NN TO VB VBN NN . He has pledged to concentrate on fighting discrimination and poverty in his poor South American homeland . PRP VBZ VBN TO VB IN VBG NN CC NN IN PRP$ JJ JJ JJ NN . Wednesday , Morales met with South African President Thabo Mbeki and said the meeting strengthened political ties between their countries . NNP , NNP VBD IN NNP NNP NNP NNP NNP CC VBD DT NN VBD JJ NNS IN PRP$ NNS . Morales is traveling next to Brazil , where he will meet with President Luiz Inacio Lula da Silva on Friday . NNP VBZ VBG JJ TO NNP , WRB PRP MD VB IN NNP NNP NNP NNP NNP NNP IN NNP . Turkish Cypriots have voted Sunday to elect their first new president in more than 20 years . JJ NNS VBP VBN NNP TO VB PRP$ JJ JJ NN IN JJR IN CD NNS . The 81-year-old incumbent Rauf Denktash , who declared the Turkish Republic of Northern Cyprus an independent state in 1983 , is not running for re-election . DT JJ JJ NNP NNP , WP VBD DT JJ NNP IN NNP NNP DT JJ NN IN CD , VBZ RB VBG IN NN . Turkish Cypriot Prime Minister Mehmet Ali Talat led a field of nine candidates in pre-election opinion polls . JJ JJ JJ NN NNP NNP NNP VBD DT NN IN CD NNS IN JJ NN NNS . He backs a United Nations plan for resolving the division of the island . PRP VBZ DT NNP NNP NN IN VBG DT NN IN DT NN . When he cast his ballot Sunday , Mr. Talat called it a vote for peace . WRB PRP VBD PRP$ NN NNP , NNP NNP VBD PRP DT NN IN NN . Cyprus has been divided between Greek and Turkish Cypriot communities since 1974 when Turkish troops invaded in response to a coup in Nicosia backed by Greece . NNP VBZ VBN VBN IN JJ CC JJ JJ NNS IN CD WRB JJ NNS VBD IN NN TO DT NN IN NNP VBN IN NNP . Turkish Cypriots voted last year in favor of the U.N. reunification plan , but Greek Cypriots rejected it . JJ NNS VBD JJ NN IN NN IN DT NNP NN NN , CC JJ NNS VBD PRP . The U.S. military says three al-Qaida terrorists linked to bombings in Baghdad have been arrested . DT NNP NN VBZ CD NNP NNS VBN TO NNS IN NNP VBP VBN VBN . It says the three are believed to be associated with al-Qaida 's chief bombing coordinator for the Iraqi capital . PRP VBZ DT CD VBP VBN TO VB VBN IN NNP POS NN VBG NN IN DT JJ NN . The U.S. military says the three surrendered in recent days without a fight after being surrounded by multinational forces . DT NNP NN VBZ DT CD VBN IN JJ NNS IN DT NN IN VBG VBN IN JJ NNS . Meanwhile , Iraqis observed three minutes of silence Wednesday to honor victims of two recent massive suicide bombings . RB , NNS VBD CD NNS IN NN NNP TO VB NNS IN CD JJ JJ NN NNS . But the attacks continued , with a suicide bomber killing 10 people in Baghdad . CC DT NNS VBD , IN DT NN NN VBG CD NNS IN NNP . On the political front , several Sunni members of the committee drafting Iraq 's new constitution suspended work following the killing of two colleagues Tuesday . IN DT JJ NN , JJ NNP NNS IN DT NN VBG NNP POS JJ NN VBD NN VBG DT NN IN CD NNS NNP . A U.S. State Department spokesman condemned the killings as the work of terrorists trying to prevent democracy from taking root in Iraq . DT NNP NNP NNP NN VBD DT NNS IN DT NN IN NNS VBG TO VB NN IN VBG NN IN NNP . Attorney General Alberto Gonzales meets US soldiers at in Baghdad NNP NNP NNP NNP VBZ NNP NNS IN IN NNP The head of the U.S. Justice Department has met with Iraq 's prime minister during a surprise trip Baghdad . DT NN IN DT NNP NNP NNP VBZ VBN IN NNP POS JJ NN IN DT NN NN NNP . Attorney General Alberto Gonzales ' one-day trip was meant as a show of support for the Iraqi government . NNP NNP NNP NNP POS JJ NN VBD VBN IN DT NN IN NN IN DT JJ NN . In addition to his meeting with Prime Minister Ibrahim al-Jafaari and other Iraqi officials , Mr. Gonzales also spoke with American soldiers . IN NN TO PRP$ NN IN NNP NNP NNP NNP CC JJ JJ NNS , NNP NNP RB VBD IN JJ NNS . Reporters who traveled with Mr. Gonzales to Baghdad say he made the trip , on the eve of the U.S. Independence Day holiday , to commend the Iraqi government 's commitment to democracy despite continuing deadly attacks by insurgents . NNS WP VBD IN NNP NNP IN NNP VB PRP VBD DT NN , IN DT NN IN DT NNP NNP NNP NN , TO VB DT JJ NN POS NN TO NN IN VBG JJ NNS IN NNS . The head of Russia 's parliamentary commission investigating last year 's bloody Beslan school siege says the crisis could have been prevented if local authorities had followed orders to tighten security . DT NN IN NNP POS JJ NN VBG JJ NN POS JJ NNP NN NN VBZ DT NN MD VB VBN VBN IN JJ NNS VBD VBN NNS TO VB NN . Alexander Torshin told Russian lawmakers local authorities in North Ossetia , where Beslan is located , failed to carry out instructions given by Russia 's Interior Ministry to strengthen security around educational institutions on the first day of school . NNP NNP VBD JJ NNS JJ NNS IN NNP NNP , WRB NNP VBZ VBN , VBD TO VB RP NNS VBN IN NNP POS NNP NNP TO VB NN IN JJ NNS IN DT JJ NN IN NN . Gunmen demanding a withdrawal of Russian forces from Chechnya held more than a 1,000 hostages for three days . NNS VBG DT NN IN JJ NNS IN NNP VBD JJR IN DT CD NNS IN CD NNS . The stand-off ended in a series of explosions as security forces stormed the building . DT NN VBD IN DT NN IN NNS IN NN NNS VBD DT NN . More than 330 people , mostly children , were killed . JJR IN CD NNS , RB NNS , VBD VBN . Tuesday , Russia 's deputy prosecutor-general Nikolai Shepel said security forces acted properly to end the siege . NNP , NNP POS NN JJ NNP NNP VBD NN NNS VBD RB TO VB DT NN . A committee of Beslan mothers has criticized authorities for using flame-throwers and tanks , which caused the roof to collapse on escaping hostages . DT NN IN NNP NNS VBZ VBN NNS IN VBG NNS CC NNS , WDT VBD DT NN TO VB IN VBG NNS . The Moscow City Court has opened preliminary hearings on the 2004 killing of American journalist Paul Klebnikov . DT NNP NNP NNP VBZ VBN JJ NNS IN DT CD NN IN JJ NN NNP NNP . Court officials say Tuesday 's proceedings are closed to the public and focus on whether the case will be considered by a jury or a judge . NNP NNS VBP NNP POS NNS VBP VBN TO DT NN CC NN IN IN DT NN MD VB VBN IN DT NN CC DT NN . Russian authorities say Mr. Klebnikov , who was editor of the Russian edition of the U.S. financial magazine Forbes , was killed by ethnic Chechens . JJ NNS VBP NNP NNP , WP VBD NN IN DT JJ NN IN DT NNP JJ NN NNP , VBD VBN IN JJ NNS . They say the men killed him on orders from another ethnic Chechen . PRP VBP DT NNS VBD PRP IN NNS IN DT JJ NN . Russian investigators believe the shooting may be connected to Mr. Klebnikov 's writings . JJ NNS VBP DT NN MD VB VBN TO NNP NNP POS NNS . State Department spokesman Adam Ereli said Monday the United States expects all those implicated in the killing to be tried and punished appropriately . NNP NNP NN NNP NNP VBD NNP DT NNP NNPS VBZ PDT DT VBN IN DT NN TO VB VBN CC VBN RB . He says Russia 's handling of the case will send a message that those who threaten journalists will be held accountable . PRP VBZ NNP POS NN IN DT NN MD VB DT NN IN DT WP VBP NNS MD VB VBN JJ . Alberto Gonzales President Bush 's attorney general , the head of the U.S. Justice Department , has arrived in Baghdad on a surprise visit to show support for the Iraqi government . NNP NNP NNP NNP POS NN NN , DT NN IN DT NNP NNP NNP , VBZ VBN IN NNP IN DT NN NN TO VB NN IN DT JJ NN . Attorney General Alberto Gonzales has been surrounded by heavy security in the Iraqi capital as he visits with American soldiers and Iraqi officials . NNP NNP NNP NNP VBZ VBN VBN IN JJ NN IN DT JJ NN IN PRP VBZ IN JJ NNS CC JJ NNS . Reporters who traveled with Mr. Gonzales to Baghdad say he intended this trip , on the eve of the U.S. Independence Day holiday , to show support for the Iraqi government 's commitment to democracy despite continuing deadly attacks by insurgents . NNS WP VBD IN NNP NNP TO VB VB PRP VBD DT NN , IN DT NN IN DT NNP NNP NNP NN , TO VB NN IN DT JJ NN POS NN TO NN IN VBG JJ NNS IN NNS . Scientists have reportedly concluded that traces of highly-enriched uranium found in Iran two years ago were from imported equipment rather than Iranian nuclear activities . NNS VBP RB VBN IN NNS IN JJ NN VBN IN NNP CD NNS RB VBD IN VBN NN RB IN JJ JJ NNS . The findings , reported by the Washington Post and the Associated Press , appear to support Iran 's claim that the bomb-grade uranium entered the country together with the centrifuge parts provided by Pakistan . DT NNS , VBN IN DT NNP NNP CC DT NNP NNP , VBP TO VB NNP POS NN IN DT JJ NN VBD DT NN RB IN DT NN NNS VBN IN NNP . The Bush administration has cited the material as evidence that Iran is trying to produce highly enriched uranium needed for nuclear weapons . DT NNP NN VBZ VBN DT NN IN NN IN NNP VBZ VBG TO VB RB VBN NN VBN IN JJ NNS . The European Union has been negotiating with Iran to halt uranium conversion that can lead to high-grade nuclear fuel for atomic weaponry . DT NNP NNP VBZ VBN VBG IN NNP TO VB NN NN WDT MD VB TO JJ JJ NN IN JJ NN . However , the Europeans canceled further talks set for August 31 , after Tehran resumed uranium conversion activities earlier this month . RB , DT NNS VBD JJ NNS VBN IN NNP CD , IN NNP VBD NN NN NNS RBR DT NN . IAEA chief Mohamed ElBaradei is due to issue a formal report on Iran 's nuclear activities September 3 . NNP NN NNP NNP VBZ JJ TO VB DT JJ NN IN NNP POS JJ NNS NNP CD . A White House spokesman says President Bush disapproves of what a leading Christian broadcaster said about Israeli leader Ariel Sharon . DT NNP NNP NN VBZ NNP NNP VBZ IN WP DT VBG NNP NN VBD IN JJ NN NNP NNP . Television evangelist Pat Robertson suggested Thursday that Mr. Sharon suffered a massive stroke because the prime minister defied , what he termed , the will of God by dividing Israel . NNP NN NNP NNP VBD NNP IN NNP NNP VBD DT JJ NN IN DT JJ NN VBD , WP PRP VBD , DT NN IN NNP IN VBG NNP . Mr. Bush 's spokesman said the president views those remarks as wholly inappropriate and offensive . NNP NNP POS NN VBD DT NN VBZ DT NNS IN RB JJ CC JJ . Mr. Robertson hosts the popular 700 Club religious show and has been one of Mr. Bush 's strongest supporters among Christian conservatives . NNP NNP VBZ DT JJ CD NNP JJ NN CC VBZ VBN CD IN NNP NNP POS JJS NNS IN JJ NNS . But the relationship has been strained by several of Mr. Robertson 's recent comments , among them a suggestion that the United States assassinate Venezuelan president Hugo Chavez . CC DT NN VBZ VBN VBN IN NN IN NNP NNP POS JJ NNS , IN PRP DT NN IN DT NNP NNPS VBP JJ NN NNP NNP . Turkish officials say seven police officers have been wounded in a shootout during a raid on members of a far-left militant group in Istanbul . JJ NNS VBP CD NNS NNS VBP VBN VBN IN DT NN IN DT NN IN NNS IN DT JJ JJ NN IN NNP . Officials say militants threw explosive devices at police Monday as they moved in on an apartment block . NNS VBP NNS VBD JJ NNS IN NN NNP IN PRP VBD RP IN DT NN NN . Two civilians , including a cameraman , were struck by stray bullets . CD NNS , VBG DT NN , VBD VBN IN JJ NNS . Thick smoke filled the air as helicopters flew over the area . NNP NN VBD DT NN IN NNS VBD IN DT NN . Police say they detained at least 10 suspects during overnight raids in more than 60 areas . NNS VBP PRP VBD IN JJS CD NNS IN JJ NNS IN JJR IN CD NNS . The raids come days before May Day , which parliament reinstated as a public holiday last week . DT NNS VBP NNS IN NNP NNP , WDT NN VBD IN DT JJ NN JJ NN . The date had been removed from Turkey 's calendar of national holidays after a military coup in 1980 . DT NN VBD VBN VBN IN NNP POS NN IN JJ NNS IN DT JJ NN IN CD . The coup came at a time of severe political tensions and street violence between left- and right-wing activists . DT NN VBD IN DT NN IN JJ JJ NNS CC NN NN IN JJ CC JJ NNS . This week , the Voice of America reported from Beijing on an alleged study regarding childhood deaths in China related to indoor air pollution . DT NN , DT NNP IN NNP VBD IN NNP IN DT JJ NN VBG NN NNS IN NNP VBN TO JJ NN NN . Chinese state media , citing the alleged study , had reported that more than two million Chinese children die each year from health problems related to indoor air pollution . JJ NN NNS , VBG DT JJ NN , VBD VBN IN JJR IN CD CD JJ NNS VBP DT NN IN NN NNS VBN TO JJ NN NN . The VOA report , issued ( broadcast ) on Monday , said the study results were released by the Chinese Center for Disease Control and Prevention , or CDC . DT NNP NN , VBN LRB NN RRB IN NNP , VBD DT NN NNS VBD VBN IN DT JJ NNP IN NNP NNP CC NNP , CC NNP . On Tuesday , Chinese media quoted officials from the CDC as saying the reports were wrong , and that the CDC had released no such statistics . IN NNP , JJ NNS VBN NNS IN DT NNP IN VBG DT NNS VBD JJ , CC IN DT NNP VBD VBN DT JJ NNS . A U.S. Defense Department internal probe has found there was no direct cooperation between the al-Qaida terrorist network and Saddam Hussein 's Iraqi government . DT NNP NNP NNP JJ NN VBZ VBN EX VBD DT JJ NN IN DT NNP JJ NN CC NNP NNP POS JJ NN . A declassified Pentagon report says military officials reached the conclusion based on interviews with Saddam and two former aides , and documents seized by U.S. forces after Saddam was ousted in 2003 . DT JJ NNP NN VBZ JJ NNS VBD DT NN VBN IN NNS IN NNP CC CD JJ NNS , CC NNS VBN IN NNP NNS IN NNP VBD VBN IN CD . The report by Pentagon acting inspector general Thomas Gimble backs earlier assertions made by the intelligence community before the U.S.-led invasion that Iraq and al-Qaida had no operational ties . DT NN IN NNP VBG NN JJ NNP NNP NNS RBR NNS VBN IN DT NN NN IN DT JJ NN IN NNP CC NNP VBD DT JJ NNS . In a radio interview Thursday , U.S. Vice President Dick Cheney repeated the Bush administration 's view that al Qaida was present in Iraq before the start of the war . IN DT NN NN NNP , NNP NNP NNP NNP NNP VBD DT NNP NN POS NN IN NNP NNP VBD JJ IN NNP IN DT NN IN DT NN . Ukrainian opposition leader says his rival in the country 's upcoming presidential election is planning to disrupt the vote . JJ NN NN VBZ PRP$ NN IN DT NN POS JJ JJ NN VBZ VBG TO VB DT NN . Viktor Yushchenko told a news conference in Kiev Thursday that provocations are being planned for the December 26 balloting . NNP NNP VBD DT NN NN IN NNP NNP IN NNS VBP VBG VBN IN DT NNP CD NN . Wednesday , his rival , Prime Minister Viktor Yanukovych , said massive protests are planned if Mr. Yushchenko wins the poll . NNP , PRP$ NN , NNP NNP NNP NNP , VBD JJ NNS VBP VBN IN NNP NNP VBZ DT NN . The prime minister was declared the winner of a flawed election in November , but the Supreme Court overturned the results and ordered this month 's re-run . DT JJ NN VBD VBN DT NN IN DT JJ NN IN NNP , CC DT NNP NNP VBD DT NNS CC VBD DT NN POS NN . The election has been hotly contested . DT NN VBZ VBN RB VBN . Mr. Yushchenko told the Associated Press he was poisoned during a dinner in September with top Ukrainian security officials . NNP NNP VBD DT NNP NNP PRP VBD VBN IN DT NN IN NNP IN JJ JJ NN NNS . He said the meeting was the only time he was without his staff and no precautions were taken with regards to his food . PRP VBD DT NN VBD DT JJ NN PRP VBD IN PRP$ NN CC DT NNS VBD VBN IN NNS TO PRP$ NN . The doctors who treated him in Austria said he suffered dioxin poisoning . DT NNS WP VBD PRP IN NNP VBD PRP VBD NN NN . Rhythm & blues legend James Brown is recovering after undergoing surgery Wednesday for prostate cancer . NNP CC NNS VBD NNP NNP VBZ VBG IN VBG NN NNP IN NN NN . The 71-year-old singer and songwriter underwent surgery at a hospital in Atlanta , Georgia , and was later released . DT JJ NN CC NN VBD NN IN DT NN IN NNP , NNP , CC VBD RB VBN . His doctor says the surgery was successful , and expects Mr. Brown to make a full recovery . PRP$ NN VBZ DT NN VBD JJ , CC VBZ NNP NNP TO VB DT JJ NN . Mr. Brown is known by millions of fans as ' The Godfather of Soul ' thanks to such classic songs as ' Please , Please , Please , ' ' It 's a Man 's World , ' and ' Papa 's Got a Brand New Bag . ' NNP NNP VBZ VBN IN NNS IN NNS IN `` DT NNP IN NNP `` NNS TO JJ JJ NNS IN `` NNP , VB , VB , `` `` PRP VBZ DT NN POS NNP , `` CC `` NNP POS NNP DT NNP NNP NNP . `` Mr. Brown will hit the road next month to promote his autobiography , followed by a tour of Australia and Asia . NNP NNP MD VB DT NN JJ NN TO VB PRP$ NN , VBN IN DT NN IN NNP CC NNP . Israeli troops have shot and killed a young Palestinian girl in the southern Gaza Strip , after militants fired mortar rounds at a nearby Jewish settlement . JJ NNS VBP VBN CC VBN DT JJ JJ NN IN DT JJ NNP NNP , IN NNS VBD JJ NNS IN DT JJ JJ NN . Officials say the confrontation began when militants fired three mortars at the settlement near the Khan Younis refugee camp . NNS VBP DT NN VBD WRB NNS VBD CD NNS IN DT NN IN DT NNP NNP NN NN . Four Israelis , including one child , were hurt . CD NNS , VBG CD NN , VBD VBN . In response , the Israeli military fired into the refugee camp , killing the young girl . IN NN , DT JJ NN VBD IN DT NN NN , VBG DT JJ NN . Palestinian militants often fire homemade mortars and missiles into Jewish settlements in Gaza , but they rarely cause any injury or damage . JJ NNS RB NN JJ NNS CC NNS IN JJ NNS IN NNP , CC PRP RB VBP DT NN CC NN . Thousands of Palestinians and Lebanese civil rights activists rallied in Beirut Sunday to demand more rights for Palestinian refugees . NNS IN NNS CC JJ JJ NNS NNS VBD IN NNP NNP TO VB JJR NNS IN JJ NNS . Several buses transported demonstrators to the Lebanese capital waving Palestinian flags and carrying signs saying , ' We just want to live in dignity . ' JJ NNS VBD NNS TO DT JJ NN VBG JJ NNS CC VBG NNS VBG , `` PRP RB VBP TO VB IN NN . `` Many of the refugees live in overcrowded refugee camps across the country . NN IN DT NNS VBP IN JJ NN NNS IN DT NN . The event organizers had planned to protest outside the parliament building but moved the demonstration in front of the nearby U.N. headquarters when Lebanese soldiers prevented them from gathering there . DT NN NNS VBD VBN TO VB IN DT NN NN CC VBD DT NN IN NN IN DT JJ NNP NN WRB JJ NNS VBD PRP IN VBG RB . About 4,00,000 Palestinians are registered as refugees in Lebanon by the U.N. Palestinian refugees in Lebanon have restrictions on employment opportunities and can not own property under Lebanese law . IN CD NNS VBP VBN IN NNS IN NNP IN DT NNP JJ NNS IN NNP VBP NNS IN NN NNS CC MD RB VB NN IN JJ NN . The European Union says Britain , France and Germany are due to hold new talks with Iran Wednesday on Tehran 's nuclear program . DT NNP NNP VBZ NNP , NNP CC NNP VBP JJ TO VB JJ NNS IN NNP NNP IN NNP POS JJ NN . A spokeswoman for EU Foreign Policy chief Javier Solana Monday characterized the upcoming meeting in Vienna as ' talks about the talks , ' and said they will take place at the political directors ' level . DT NN IN NNP NNP NNP NN NNP NNP NNP VBD DT JJ NN IN NNP IN `` NNS IN DT NNS , `` CC VBD PRP MD VB NN IN DT JJ NNS POS NN . Separately , Reuters quotes a diplomat as saying the exploratory talks are aimed at determining whether or not to meet again in January . RB , NNP VBZ DT NN IN VBG DT JJ NNS VBP VBN IN VBG IN CC RB TO VB RB IN NNP . The Europeans are seeking assurances that Tehran will halt work on its nuclear fuel program , which the United States alleges is secretly aimed at developing an atomic bomb . DT NNS VBP VBG NNS IN NNP MD VB NN IN PRP$ JJ NN NN , WDT DT NNP NNPS VBZ VBZ RB VBN IN VBG DT JJ NN . Iran denies the charges , and says its program is aimed at developing electricity . NNP VBZ DT NNS , CC VBZ PRP$ NN VBZ VBN IN VBG NN . Pakistani officials say 18 people were killed and 40 others injured when a truck carrying chemicals exploded Monday in the southern city of Hyderabad . JJ NNS VBP CD NNS VBD VBN CC CD NNS VBN WRB DT NN VBG NNS VBD NNP IN DT JJ NN IN NNP . Several nearby shops were destroyed by the blast , which authorities described as an accident caused by a buildup of chemicals in the truck 's storage tank . JJ JJ NNS VBD VBN IN DT NN , WDT NNS VBD IN DT NN VBN IN DT NN IN NNS IN DT NN POS NN NN . In Pakistan 's northwest , military officials said four soldiers were killed by militants who attacked an army convoy in the Bajaur tribal region . IN NNP POS JJS , JJ NNS VBD CD NNS VBD VBN IN NNS WP VBD DT NN NN IN DT NNP JJ NN . A government official said three militants were killed in the gunfight . DT NN NN VBD CD NNS VBD VBN IN DT NN . Sunday , Reporters Without Borders said separatist gunmen murdered a local newspaper reporter as he drove in his car in Baluchistan province . NNP , NNS IN NNS VBD JJ NNS VBN DT JJ NN NN IN PRP VBD IN PRP$ NN IN NNP NN . The Paris-based media rights group says he was the sixth media worker to be killed this year in Pakistan , which it calls the world 's most dangerous country for journalists . DT JJ NNS NNS NN VBZ PRP VBD DT JJ NNS NN TO VB VBN DT NN IN NNP , WDT PRP VBZ DT NN POS RBS JJ NN IN NNS . The European Union Tuesday approved extra aid to farmers hit by a serious slump in poultry sales caused by scares from the bird flu crisis . DT NNP NNP NNP VBD JJ NN TO NNS VBN IN DT JJ NN IN JJ NNS VBN IN NNS IN DT NN NN NN . EU agriculture ministers , meeting in Luxembourg , approved the measure . NNP NN NNS , NN IN NNP , VBD DT NN . Under the plan , national governments will present compensation claims to the European Commission , which will decide whether to co-finance them . IN DT NN , JJ NNS MD VB NN NNS TO DT JJ NNP , WDT MD VB IN TO VB PRP . The European Union will pick up half the cost to help countries that can prove damage due to falling demand . DT NNP NNP MD VB RP PDT DT NN TO VB NNS WDT MD VB NN JJ TO VBG NN . Italy has already reported at least a 50 percent drop in poultry sales , one of the largest drops according to EU data . NNP VBZ RB VBN IN JJS DT CD NN NN IN NN NNS , CD IN DT JJS NNS VBG TO NNP NNS . The EU agriculture Commissioner , Mariann Fischer Boel , says the most sensible approach would be to compensate farmers for measures which temporarily reduce production . DT NNP NN NNP , NNP NNP NNP , VBZ DT RBS JJ NN MD VB TO VB NNS IN NNS WDT RB VB NN . Chinese paramilitary officer gestures outside of the Japanese embassy in Beijing , the scene of violent protests Beijing 's police chief has warned people against staging anti-Japanese protests during the week-long May Day holiday that starts on Sunday . JJ JJ NN NNS IN IN DT JJ NN IN NNP , DT NN IN JJ NNS NNP POS NN NN VBZ VBN NNS IN VBG JJ NNS IN DT JJ NNP NNP NN WDT VBZ IN NNP . The official Xinhua news agency quotes Ma Zhenchuan , the director of the Beijing Municipal Public Security Bureau Saturday as saying police would resolutely punish law breakers who organize and instigate illegal demonstrations . DT JJ NNP NN NN VBZ NNP NNP , DT NN IN DT NNP NNP NNP NNP NNP NNP IN VBG NNS MD RB VB NN NNS WP VBP CC VBP JJ NNS . Police also sent text messages via cell phones to city residents , urging them not to participate in illegal protests . NN RB VBD NN NNS IN NN NNS TO NN NNS , VBG PRP RB TO VB IN JJ NNS . Fresh protests had been rumored to be planned in Beijing and other cities for Sunday and Wednesday , About 10,000 people took part in an anti-Japanese protest in Beijing on April 9 , with many hurling stones , eggs and bottles at the Japanese embassy and ambassador 's residence . JJ NNS VBD VBN VBN TO VB VBN IN NNP CC JJ NNS IN NNP CC NNP , IN CD NNS VBD NN IN DT JJ NN IN NNP IN NNP CD , IN JJ JJ NNS , NNS CC NNS IN DT JJ NN CC NN POS NN . World oil prices soared to new record highs Tuesday as investors worried about the impact of Hurricane Katrina on oil production in the United States . NNP NN NNS VBD TO JJ NN NNS NNP IN NNS VBD IN DT NN IN NNP NNP IN NN NN IN DT NNP NNPS . The price of a barrel of crude oil for future delivery went as high as $ 70.85 in New York trading . DT NN IN DT NN IN JJ NN IN JJ NN VBD RB JJ IN $ CD IN NNP NNP NN . The powerful hurricane tore through an area that produces about 25 percent of the crude oil used by the United States . DT JJ NN NN IN DT NN WDT VBZ IN CD NN IN DT JJ NN VBN IN DT NNP NNPS . It also shut down key refineries in the path of the storm . PRP RB VBD RP JJ NNS IN DT NN IN DT NN . Even before the hurricane , world oil prices were at high levels as strong demand from China , India , and the United States strained the ability of oil producers and refiners to get products to market . RB IN DT NN , NN NN NNS VBD IN JJ NNS IN JJ NN IN NNP , NNP , CC DT NNP NNPS VBD DT NN IN NN NNS CC NNS TO VB NNS TO NN . The World Food Organization says several provinces in western and northern China are facing food shortages because of a long drought . DT NNP NNP NNP VBZ JJ NNS IN JJ CC JJ NNP VBP VBG NN NNS IN IN DT JJ NN . The FAO said Monday that it estimates five million hectares of winter crops were lost because of the lack of rain in provinces such as Yunnan , Gansu , Ningxia , Inner Mongolia , and Hebei . DT NNP VBD NNP IN PRP VBZ CD CD NNS IN NN NNS VBD VBN IN IN DT NN IN NN IN NNS JJ IN NNP , NNP , NNP , NNP NNP , CC NNP . The organization said more than 60 percent of winter wheat crops were lost in the worst-hit districts . DT NN VBD JJR IN CD NN IN NN NN NNS VBD VBN IN DT JJ NNS . It also said the affected areas are among China 's poorest regions , with more than half the rural population living under the poverty line with limited access to food . PRP RB VBD DT JJ NNS VBP IN NNP POS JJS NNS , IN JJR IN PDT DT JJ NN VBG IN DT NN NN IN JJ NN TO NN . The FAO says the drought has a particularly serious impact on mountain areas , where there are few alternative sources of income . DT NNP VBZ DT NN VBZ DT RB JJ NN IN NN NNS , WRB EX VBP JJ JJ NNS IN NN . NATO officials in Afghanistan say one of their bombs missed its target in eastern Khost province Tuesday and instead killed two civilians and wounded up to 10 others . NNP NNS IN NNP VBP CD IN PRP$ NNS VBD PRP$ NN IN JJ NNP NN NNP CC RB VBD CD NNS CC VBD RP TO CD NNS . A NATO statement says the bomb was meant for a militant hideout but it malfunctioned and missed its target by more than two kilometers . DT NNP NN VBZ DT NN VBD VBN IN DT JJ NN CC PRP VBD CC VBD PRP$ NN IN JJR IN CD NNS . Also Tuesday , the U.S.-led coalition said a roadside bomb in the east killed three of its soldiers and an Afghan contractor . RB NNP , DT JJ NN VBD DT NN NN IN DT NN VBD CD IN PRP$ NNS CC DT JJ NN . Elsewhere , the police chief in southern Uruzgan province , Juma Gul Himat said a coalition airstrike killed at least 15 militants . RB , DT NN NN IN JJ NNP NN , NNP NNP NNP VBD DT NN NN VBD IN JJS CD NNS . The violence came on the anniversary of Afghanistan 's first known suicide attack against legendary commander Ahmad Shah Massoud on September ninth , 2001 , by al-Qaida operatives . DT NN VBD IN DT NN IN NNP POS JJ VBN NN NN IN JJ NN NNP NNP NNP IN NNP NNP , CD , IN NNP NNS . His death came two days before al-Qaida 's September 11 attacks on the United States . PRP$ NN VBD CD NNS IN NNP POS NNP CD NNS IN DT NNP NNPS . The Republic of Congo celebrated 50 years of independence Sunday with a parade and ceremony in the capital , Brazzaville . DT NNP IN NNP VBD CD NNS IN NN NNP IN DT NN CC NN IN DT NN , NNP . Longtime President Denis Sassou N'Guesso watched the ceremony along with more than a dozen African heads of state , as well as a representative from former colonial power France . JJ NNP NNP NNP NNP VBD DT NN IN IN JJR IN DT NN JJ NNS IN NN , RB RB IN DT NN IN JJ NN NN NNP . The president kicked off the anniversary with a national address Friday night , in which he said he would increase the minimum salary for all civil servants by 25 percent and offer free maternity care . DT NN VBD RP DT NN IN DT JJ NN NNP NN , IN WDT PRP VBD PRP MD VB DT JJ NN IN DT JJ NNS IN CD NN CC NN JJ NN NN . The news was welcomed in Congo , where despite large oil reserves and a wealth of other natural resources , more than half the population of some four million lives below the poverty line . DT NN VBD VBN IN NNP , WRB IN JJ NN NNS CC DT NN IN JJ JJ NNS , JJR IN PDT DT NN IN DT CD CD NNS IN DT NN NN . Witnesses say Burmese authorities arrested nine members of an opposition political group Tuesday , as they held a protest in Rangoon calling for the release of democracy leader Aung San Suu Kyi . NNS VBP JJ NNS VBN CD NNS IN DT NN JJ NN NNP , IN PRP VBD DT NN IN NNP VBG IN DT NN IN NN NN NNP NNP NNP NNP . The witnesses say the nine members of her National League for Democracy 's youth wing were arrested by police as they marched on the country 's old parliament building . DT NNS VBP DT CD NNS IN PRP$ NNP NNP IN NNP POS NN NN VBD VBN IN NNS IN PRP VBD IN DT NN POS JJ NN NN . The protesters were holding a banner calling for Aung San Suu Kyi 's release from house arrest . DT NNS VBD VBG DT NN VBG IN NNP NNP NNP NNP POS NN IN NN NN . Aung San Suu Kyi has been held under house arrest in Rangoon for 13 of the last 19 years . NNP NNP NNP NNP VBZ VBN VBN IN NN NN IN NNP IN CD IN DT JJ CD NNS . Her party won a landslide victory in 1990 elections , but the military , which has ruled the country since 1962 , never allowed it to take power . PRP$ NN VBD DT NN NN IN CD NNS , CC DT NN , WDT VBZ VBN DT NN IN CD , RB VBD PRP TO VB NN . The U.S. Justice Department has issued a new memo on prisoner interrogation , replacing a controversial document outlining how to question prisoners without violating U.S. and international anti-torture statutes . DT NNP NNP NNP VBZ VBN DT JJ NN IN NN NN , VBG DT JJ NN VBG WRB TO VB NNS IN VBG NNP CC JJ JJ NNS . The opening sentence of the memo released Friday says ' torture is abhorrent both to American laws and values , and to international norms . ' DT NN NN IN DT NN VBN NNP VBZ `` NN VBZ JJ DT TO JJ NNS CC NNS , CC TO JJ NNS . `` The document replaces a controversial memo issued in August , 2002 , which defined torture in such a way that critics said only the most severe types of interrogation techniques would not be permissible . DT NN VBZ DT JJ NN VBN IN NNP , CD , WDT VBD NN IN JJ DT NN IN NNS VBD RB DT RBS JJ NNS IN NN NNS MD RB VB JJ . That memo became controversial after several cases of prisoner mistreatment in Iraq and Guantanamo Bay , Cuba became public . DT NN VBD JJ IN JJ NNS IN NN NN IN NNP CC NNP NNP , NNP VBD JJ . The new document contains a broader definition of torture , describing it as ' any act by which severe pain or suffering , whether physical or mental ' is inflicted on a person to get information or a confession . DT JJ NN VBZ DT JJR NN IN NN , VBG PRP IN `` DT NN IN WDT JJ NN CC NN , IN JJ CC JJ `` VBZ VBN IN DT NN TO VB NN CC DT NN . Supporters and critics of Russia 's president are demonstrating in Moscow , with both groups calling attention to Kremlin plans to consolidate power . NNS CC NNS IN NNP POS NN VBP VBG IN NNP , IN DT NNS VBG NN TO NNP NNS TO VB NN . Hundreds of prominent critics of President Vladimir Putin 's denounced the legislation as a step back for democracy and an increase in authoritarian rule . NNS IN JJ NNS IN NNP NNP NNP POS VBD DT NN IN DT NN RB IN NN CC DT NN IN JJ NN . State-run media reported another rally elsewhere in Moscow of 15,000 Putin supporters . NNP NNS VBD DT NN RB IN NNP IN CD NNP NNS . The rallies came on Russia 's Constitution Day , as Mr. Putin signed into law a bill letting the president appoint who can run for governor . DT NNS VBD IN NNP POS NNP NNP , IN NNP NNP VBD IN NN DT NN VBG DT NN VBZ WP MD VB IN NN . Another of the president 's proposals , aimed at scrapping the direct election of national lawmakers , is also expected to win parliamentary approval . DT IN DT NN POS NNS , VBN IN VBG DT JJ NN IN JJ NNS , VBZ RB VBN TO VB JJ NN . The Kremlin says the changes are needed to bolster security in the wake of the Beslan school terrorist assault . DT NNP VBZ DT NNS VBP VBN TO VB NN IN DT NN IN DT NNP NN JJ NN . Hundreds died in the attack , many of them children . NNP VBD IN DT NN , NN IN PRP NNS . The Serbian government says a retired top Bosnian Serb general will surrender voluntarily to the U.N. 's war crimes tribunal for the former Yugoslavia . DT JJ NN VBZ DT JJ JJ JJ JJ NN MD VB RB TO DT NNP POS NN NNS JJ IN DT JJ NNP . The government says General Milan Gvero , who was a close aide of wanted commander General Ratko Mladic , agreed in recent talks with Serbia 's justice minister to surrender Thursday . DT NN VBZ NNP NNP NNP , WP VBD DT JJ NN IN JJ NN NNP NNP NNP , VBD IN JJ NNS IN NNP POS NN NN TO VB NNP . The United Nations tribunal has accused the former general of war crimes , but released no details of the charges . DT NNP NNP NN VBZ VBN DT JJ NN IN NN NNS , CC VBD DT NNS IN DT NNS . Serbia and Montenegro have been pressured by Western nations to turn over over war crimes suspects . NNP CC NNP VBP VBN VBN IN JJ NNS TO VB RP IN NN NNS NNS . United Nations war crimes prosecutors have accused Serbian authorities of not cooperating with the tribunal . NNP NNP NN NNS NNS VBP VBN JJ NNS IN RB VBG IN DT NN . Uzbekistan , Afghanistan and Iran have agreed to join forces and build a trans-Afghan transport corridor that will give Uzbekistan access to the Persian Gulf . NNP , NNP CC NNP VBP VBN TO VB NNS CC VB DT JJ NN NN WDT MD VB NNP NN TO DT NNP NNP . An Uzbek Foreign Ministry statement says officials from the three countries signed an agreement to set up the Interstate Coordination Council after Wednesday 's talks in Tashkent . DT JJ NNP NNP NN VBZ NNS IN DT CD NNS VBD DT NN TO VB RP DT NNP NNP NNP IN NNP POS NNS IN NNP . The statement says the document will serve as a legal basis to develop the 2,400-kilometer interstate road , linking the former Soviet republic with Iran 's Gulf coast through Afghanistan . DT NN VBZ DT NN MD VB IN DT JJ NN TO VB DT JJ JJ NN , VBG DT JJ JJ NN IN NNP POS NNP NN IN NNP . The Foreign Ministry gave no details on how much the project would cost or when the work will begin . DT NNP NNP VBD DT NNS IN WRB JJ DT NN MD VB CC WRB DT NN MD VB . The U.N. Security Council has renewed trade sanctions on Liberian timber and diamonds , and extended an arms embargo in the West African nation . DT NNP NNP NNP VBZ VBN NN NNS IN JJ NN CC NNS , CC VBD DT NNS NN IN DT JJ JJ NN . The council unanimously adopted a resolution Tuesday that extends bans on Liberian exports of wood and diamonds for six months and the arms embargo for another year . DT NN RB VBD DT NN NNP WDT VBZ NNS IN JJ NNS IN NN CC NNS IN CD NNS CC DT NNS NN IN DT NN . The resolution also praised Liberia 's recent elections , saying they were an important step towards lasting peace in the war-torn nation . DT NN RB VBD NNP POS JJ NNS , VBG PRP VBD DT JJ NN IN VBG NN IN DT JJ NN . The Security Council called on new President Ellen Johnson-Sirleaf to reform the nation 's existing forestry and logging operations and consider independent , outside advice on managing its diamond resources . DT NNP NNP VBD IN JJ NNP NNP NNP TO VB DT NN POS VBG NN CC VBG NNS CC VB JJ , JJ NN IN VBG PRP$ NN NNS . The United Nations had originally imposed the sanctions in 2001 and 2003 on the government of former Liberian President Charles Taylor . DT NNP NNP VBD RB VBN DT NNS IN CD CC CD IN DT NN IN JJ JJ NNP NNP NNP . It was believed Mr. Taylor was supplying weapons to rebels in neighboring Sierra Leone , where he is wanted on war crimes charges . PRP VBD VBN NNP NNP VBD VBG NNS TO NNS IN VBG NNP NNP , WRB PRP VBZ VBN IN NN NNS NNS . The U.S. State Department 's annual human rights report , released Tuesday , says some African countries are making progress , while others are regressing or lagging behind . DT NNP NNP NNP POS JJ JJ NNS NN , VBN NNP , VBZ DT JJ NNS VBP VBG NN , IN NNS VBP VBG CC VBG RB . The report praises Liberia , noting that President Ellen Johnson Sirleaf has dismissed some corrupt officials , and that her government is investigating war crimes committing during the country 's civil war . DT NN VBZ NNP , VBG IN NNP NNP NNP NNP VBZ VBN DT JJ NNS , CC IN PRP$ NN VBZ VBG NN NNS VBG IN DT NN POS JJ NN . But the U.S. report has harsh words for Zimbabwe , saying the Mugabe government continues ' across-the-board ' human rights violations . CC DT NNP NN VBZ JJ NNS IN NNP , VBG DT NNP NN VBZ `` JJ `` JJ NNS NNS . The report is even harder on Eritrea 's government , which it says continues to be one of the most repressive in sub-Saharan Africa . DT NN VBZ RB RBR IN NNP POS NN , WDT PRP VBZ VBZ TO VB CD IN DT RBS JJ IN JJ NNP . There is especially strong criticism of Sudan . EX VBZ RB JJ NN IN NNP . The report says the Sudanese government and government-backed Janjaweed militia bear responsibility for what the U.S. calls the genocide in Darfur . DT NN VBZ DT JJ NN CC JJ NNP NN VBP NN IN WP DT NNP VBZ DT NN IN NNP . Permanent legal residents of the United States will be subjected to a fingerprint check when they re-enter the country by land , sea or air . JJ JJ NNS IN DT NNP NNPS MD VB VBN TO DT NN NN WRB PRP VBP DT NN IN NN , NN CC NN . The U.S. Department of Homeland Security says the new security checks are part of an existing program ( US-VISIT ) that keeps track of visitors as they enter or leave the United States , and screens out criminals and potential terrorists . DT NNP NNP IN NNP NNP VBZ DT JJ NN NNS VBP NN IN DT JJ NN LRB NNP RRB WDT VBZ NN IN NNS IN PRP VBP CC VBP DT NNP NNPS , CC VBZ RP NNS CC JJ NNS . The acting director of the program , Robert Mocny , says at least 1,100 criminals have been captured at U.S. ports of entry . DT VBG NN IN DT NN , NNP NNP , VBZ IN JJS CD NNS VBP VBN VBN IN NNP NNS IN NN . The new fingerprinting rules will affect 11 million to 12 million green-card holders . DT JJ NN NNS MD VB CD CD TO CD CD JJ NNS . It also will apply to Canadians entering the country for an extended period of time , such as workers or students . PRP RB MD VB TO NNS VBG DT NN IN DT JJ NN IN NN , JJ IN NNS CC NNS . The new requirements will take effect late next month . DT JJ NNS MD VB NN RB JJ NN . An American has managed to escape from kidnappers who abducted him from the streets of Kabul , Afghanistan . DT NNP VBZ VBN TO VB IN NNS WP VBD PRP IN DT NNS IN NNP , NNP . The man , whose name has not been released , was accosted and forced into the trunk of a car , but within minutes , he managed to open the trunk and jump out . DT NN , WP$ NN VBZ RB VBN VBN , VBD VBN CC VBN IN DT NN IN DT NN , CC IN NNS , PRP VBD TO VB DT NN CC VB RP . The kidnappers drove away in the car . DT NNS VBD RB IN DT NN . The United States Embassy says the victim is an American civilian , but did not say why the man is in Afghanistan . DT NNP NNPS NNP VBZ DT NN VBZ DT JJ JJ , CC VBD RB VB WRB DT NN VBZ IN NNP . Since a British adviser to the Afghan government was shot to death in Kabul last month , foreigners have been advised to keep a low profile . IN DT JJ NN TO DT JJ NN VBD VBN TO NN IN NNP JJ NN , NNS VBP VBN VBN TO VB DT JJ NN . The United Nations says the underground water aquifer that sustains some 1.5 million Palestinians in the Gaza Strip is ' in danger of collapse ' following years of overuse and contamination from armed conflict . DT NNP NNP VBZ DT JJ NN NN WDT VBZ DT CD CD NNS IN DT NNP NNP VBZ `` IN NN IN NN `` VBG NNS IN NN CC NN IN JJ NN . U.N. Environment Program researchers said overuse , salt water intrusion , sewage and agricultural runoff as well as hazardous medical waste in Gaza landfills is contributing to the situation . NNP NNP NNP NNS VBD NN , NN NN NN , NN CC JJ NN RB RB IN JJ JJ NN IN NNP NNS VBZ VBG TO DT NN . They said pollution levels in the water are now so bad that Gaza infants are now at risk for nitrate poisoning . PRP VBD NN NNS IN DT NN VBP RB RB JJ IN NNP NNS VBP RB IN NN IN JJ NN . A report published Monday said that residents need an alternate water supply to give the aquifer a chance to rest . DT NN VBN NNP VBD IN NNS VBP DT JJ NN NN TO VB DT NN DT NN TO VB . Researchers said unless the trend is reversed now , the damage could take centuries to reverse . NNS VBD IN DT NN VBZ VBN RB , DT NN MD VB NNS TO VB . Scientists estimated restoration efforts could take 20 years and cost some $ 1.5 billion . NNS VBD NN NNS MD VB CD NNS CC VBD DT $ CD CD . Eritrea 's President Isaias Afeworki has rejected a call from Ethiopia 's government to begin talks on a border dispute that sparked a two-year war in 1998 . NNP POS NNP NNP NNP VBZ VBN DT NN IN NNP POS NN TO VB NNS IN DT NN NN WDT VBD DT JJ NN IN CD . In a statement Tuesday , Mr. Isaias said Ethiopia 's latest offer contains nothing new and would only drag the peace process backward . IN DT NN NNP , NNP NNP VBD NNP POS JJS NN VBZ DT JJ CC MD RB VB DT NN NN RB . He also said Eritrea will accept no alternative to a 2002 ruling by an independent commission on the border dispute . PRP RB VBD NNP MD VB DT NN TO DT CD NN IN DT JJ NN IN DT NN NN . Last month , Ethiopia 's Prime Minister Meles Zenawi said his government had accepted the ruling ' in principle , ' after opposing it for more than a year . JJ NN , NNP POS NNP NNP NNP NNP VBD PRP$ NN VBD VBN DT NN `` IN NN , `` IN VBG PRP IN JJR IN DT NN . In 2000 , the two countries agreed to abide by the commission 's decision as part of a peace deal ending the war which killed some 70,000 people . IN CD , DT CD NNS VBD TO VB IN DT NN POS NN IN NN IN DT NN NN VBG DT NN WDT VBD DT CD NNS . Iraqi President Jalal Talabani says he believes voters will approve the country 's new constitution in a nationwide referendum next month . JJ NNP NNP NNP VBZ PRP VBZ NNS MD VB DT NN POS JJ NN IN DT JJ NN JJ NN . At a news conference Friday at the Voice of America in Washington , Mr. Talabani said he did not think Sunni Arab objections would prevent the document 's approval . IN DT NN NN NNP IN DT NNP IN NNP IN NNP , NNP NNP VBD PRP VBD RB VB NNP NNP NNS MD VB DT NN POS NN . But if it is rejected , he said elections would be held for a new national assembly , which would then draft a new document . CC IN PRP VBZ VBN , PRP VBD NNS MD VB VBN IN DT JJ JJ NN , WDT MD RB VB DT JJ NN . He repeated his support for a federated Iraq , saying it would strengthen the country , not divide it as some Sunni Arabs fear . PRP VBD PRP$ NN IN DT JJ NNP , VBG PRP MD VB DT NN , RB VBP PRP IN DT NNP NNS VBP . He also rejected suggestions that Iraq could spiral into a civil war . PRP RB VBD NNS IN NNP MD VB IN DT JJ NN . Mr. Talabani said he hoped Iraqi security forces and police could be sufficiently rebuilt within one year to allow for U.S. and coalition forces to begin leaving the country . NNP NNP VBD PRP VBD JJ NN NNS CC NNS MD VB RB VBN IN CD NN TO VB IN NNP CC NN NNS TO VB VBG DT NN . New York City is known for its restaurants , but one small bakery in the West Village is helping its customers rethink their environmental impact simply by eating its baked goods . NNP NNP NNP VBZ VBN IN PRP$ NNS , CC CD JJ NN IN DT NNP NNP VBZ VBG PRP$ NNS VBP PRP$ JJ NN RB IN VBG PRP$ JJ NNS . VOA 's Susy Tekunan has the story of this bakery and its quest for environmental sustainability , through car-free deliveries of its products , recycled construction materials in its store , and organic baking materials in its cookies . NNP POS NNP NNP VBZ DT NN IN DT NN CC PRP$ NN IN JJ NN , IN JJ NNS IN PRP$ NNS , JJ NN NNS IN PRP$ NN , CC JJ NN NNS IN PRP$ NNS . Brian Allen narrates . NNP NNP VBZ . Sudan has accused Chad of assisting Darfur rebels in their fight against the government . NNP VBZ VBN NNP IN VBG NNP NNS IN PRP$ NN IN DT NN . Chad 's foreign ministry rejected the claims Thursday . NNP POS JJ NN VBD DT NNS NNP . It says Sudan 's allegations are unfriendly because Chad has contributed to the peaceful resolution of the Darfur crisis through its mediation with the African Union . PRP VBZ NNP POS NNS VBP JJ IN NNP VBZ VBN TO DT JJ NN IN DT NNP NN IN PRP$ NN IN DT NNP NNP . Sudan 's accusations come less than a week after Chad accused Khartoum of using Chadian army deserters to fight a small rebel group in Darfur . NNP POS NNS VBP JJR IN DT NN IN NNP VBD NNP IN VBG JJ NN NNS TO VB DT JJ NN NN IN NNP . Hundreds of thousands of refugees from Darfur have fled into Chad since the Sudanese conflict erupted more than two years ago . NNS IN NNS IN NNS IN NNP VBP VBN IN NNP IN DT JJ NN VBD JJR IN CD NNS RB . Iraqi police say at least 16 bus passengers were killed by a roadside bomb Tuesday in southern Iraq . JJ NNS VBP IN JJS CD NN NNS VBD VBN IN DT NN NN NNP IN JJ NNP . A police spokesman says the bus was traveling from the port city of Basra to Nasariyah . DT NN NN VBZ DT NN VBD VBG IN DT JJ NN IN NNP TO NNP . At least 22 people were wounded in the blast . IN JJS CD NNS VBD VBN IN DT NN . No other details were immediately available . DT JJ NNS VBD RB JJ . In other news , the U.S. military says a bomb attack Monday killed three American soldiers and their translator in the Iraqi province of Diyala . IN JJ NN , DT NNP NN VBZ DT NN NN NNP VBD CD JJ NNS CC PRP$ NN IN DT JJ NN IN NNP . In a separate incident , the military said a suspected suicide bomb attack killed five U.S. soldiers on foot patrol in Baghdad . IN DT JJ NN , DT NN VBD DT JJ NN NN NN VBD CD NNP NNS IN NN NN IN NNP . Afghan officials say suspected Taleban gunmen have killed six policemen during a raid on a police post in southern Helmand province . JJ NNS VBP VBN NNP NNS VBP VBN CD NNS IN DT NN IN DT NN NN IN JJ NNP NN . Authorities said Wednesday that one gunman was killed in a shoot-out with the militants late Tuesday in the Kajaki district . NNS VBD NNP IN CD NN VBD VBN IN DT NN IN DT NNS JJ NNP IN DT NNP NN . Taleban militants have carried out a guerrilla insurgency in Afghanistan since U.S.-led forces ousted the Islamic extremist government three years ago . NNP NNS VBP VBN RP DT NN NN IN NNP IN JJ NNS VBD DT JJ NN NN CD NNS RB . From Liverpool to lattes : Sir Paul McCartney has become the first artist to sign with Starbucks ' new record label , Hear Music . IN NNP TO NNS IN NNP NNP NNP VBZ VBN DT JJ NN TO VB IN NNP POS JJ NN NN , NNP NNP . Chairman Howard Schultz announced the news March 21 at the coffee company 's annual meeting in Seattle , Washington . NNP NNP NNP VBD DT NN NNP CD IN DT NN NN POS JJ NN IN NNP , NNP . The 64-year-old ex-Beatle appeared via satellite from London , saying the move reflected the changing nature of music marketing . DT JJ NN VBD IN NN IN NNP , VBG DT NN VBD DT VBG NN IN NN NN . Current U.S. album sales are down almost 17 percent from last year , in the face of competition from Internet piracy and competing media . JJ NNP NN NNS VBP RB RB CD NN IN JJ NN , IN DT NN IN NN IN NNP NN CC VBG NNS . McCartney , currently enduring a bitter divorce from Heather Mills , said he hopes to release the still-untitled album in early June . NNP , RB VBG DT JJ NN IN NNP NNP , VBD PRP VBZ TO VB DT JJ NN IN JJ NNP . Starbucks is the world 's largest specialty coffee retailer . NNP VBZ DT NN POS JJS NN NN NN . The chain has already struck successful marketing deals with other musical acts , while also selling books and developing a feature-length film . DT NN VBZ RB VBN JJ NN NNS IN JJ JJ NNS , IN RB VBG NNS CC VBG DT JJ NN . Hear Music releases will be sold through Starbucks stores and other music retailers . NNP NNP NNS MD VB VBN IN NNP NNS CC JJ NN NNS . The Argentine Senate has narrowly rejected a controversial grain export tax increase that has sparked a deep political crisis in the country . DT JJ NNP VBZ RB VBN DT JJ NN NN NN NN WDT VBZ VBN DT JJ JJ NN IN DT NN . After 17 hours of debate , the decision came down to Vice President Julio Cobos , who broke a 36-36 tie by casting his vote against the measure early Thursday . IN CD NNS IN NN , DT NN VBD RB TO NNP NNP NNP NNP , WP VBD DT JJ NN IN VBG PRP$ NN IN DT NN RB NNP . President Cristina Fernandez de Kirchner introduced the tax in March , a move that divided the country , triggered farm strikes and interrupted agricultural exports . NNP NNP NNP IN NNP VBD DT NN IN NNP , DT NN WDT VBD DT NN , VBD NN NNS CC JJ JJ NNS . Earlier this month , the lower house of Congress approved the grain export taxes that farmers bitterly opposed . RBR DT NN , DT JJR NN IN NNP VBD DT NN NN NNS IN NNS RB VBN . President Fernandez had asked Congress to debate the measure in an effort to defuse tension over the issue . NNP NNP VBD VBN NNP TO VB DT NN IN DT NN TO VB NN IN DT NN . Ms. Fernandez defended the increase saying the money would have been used to help the poor . NNP NNP VBD DT NN VBG DT NN MD VB VBN VBN TO VB DT NN . Afghan officials say security forces in the southern city of Kandahar have arrested two men carrying explosives . JJ NNS VBP NN NNS IN DT JJ NN IN NNP VBP VBN CD NNS VBG NNS . The officials say the men , believed to be terrorists , were detained hours after unidentified attackers threw a grenade at the Indian consulate in the city 's center Tuesday night . DT NNS VBP DT NNS , VBN TO VB NNS , VBD VBN NNS IN JJ NNS VBD DT NN IN DT JJ NN IN DT NN POS NN NNP NN . The grenade exploded outside the complex , causing no casualties . DT NN VBD IN DT NN , VBG DT NNS . Also Tuesday , unknown attackers hurled a grenade at the Ministry of Women 's Affairs in the capital , Kabul , but it too blew up outside the compound and there were no injuries . RB NNP , JJ NNS VBD DT NN IN DT NNP IN NNP POS NNP IN DT NN , NNP , CC PRP RB VBD RP IN DT NN CC EX VBD DT NNS . A police spokesman says no one has claimed responsibility for the attacks . DT NN NN VBZ DT NN VBZ VBN NN IN DT NNS . Representatives of the European Union and China have failed to resolve a trade dispute over Chinese textiles during a third day of talks in Beijing Saturday . NNS IN DT NNP NNP CC NNP VBP VBN TO VB DT NN NN IN JJ NNS IN DT JJ NN IN NNS IN NNP NNP . Negotiators say they will continue their discussions on Sunday . NNS VBP PRP MD VB PRP$ NNS IN NNP . In June , China agreed to quotas in its textile exports to the EU . IN NNP , NNP VBD TO NNS IN PRP$ NN NNS TO DT NNP . But millions of items of clothing manufactured in China have been blocked in European ports because China has already shipped its annual quota . CC NNS IN NNS IN NN VBN IN NNP VBP VBN VBN IN JJ NNS IN NNP VBZ RB VBN PRP$ JJ NN . The quotas are designed to protect European textile manufacturers from low-priced Chinese competition . DT NNS VBP VBN TO VB JJ NN NNS IN JJ JJ NN . Chinese textile exports surged early this year when a global system of textile quotas ended . JJ NN NNS VBD RB DT NN WRB DT JJ NN IN JJ NNS VBD . Talks between China and the EU began on Thursday . NNS IN NNP CC DT NNP VBD IN NNP . The Gulf Arab state of Qatar says it will donate $ 50 million to the Hamas-led Palestinian government , which is in a financial crisis . DT NNP NNP NN IN NNP VBZ PRP MD VB $ CD CD TO DT JJ JJ NN , WDT VBZ IN DT JJ NN . The contribution announced Monday in Doha comes after the United States and European Union cut off financial support to the Hamas-led Palestinian government until Hamas renounces violence and recognizes Israel . DT NN VBN NNP IN NNP VBZ IN DT NNP NNPS CC NNP NNP VBD RP JJ NN TO DT JJ JJ NN IN NNP VBZ NN CC VBZ NNP . On Sunday , Iran said it would contribute $ 50 million to the Palestinian Authority . IN NNP , NNP VBD PRP MD VB $ CD CD TO DT JJ NNP . Since taking office last month , Hamas has come under diplomatic and economic pressure from Israel and Western governments , which consider Hamas a terrorist organization . IN VBG NN JJ NN , NNP VBZ VBN IN JJ CC JJ NN IN NNP CC JJ NNS , WDT VBP NNP DT JJ NN . Israel is withholding about $ 50 million in monthly tax revenues it collects for the Palestinian Authority . NNP VBZ VBG IN $ CD CD IN JJ NN NNS PRP VBZ IN DT JJ NNP . A major symbol of Poland 's thriving pre-World War II Jewish community has been restored with the re-opening of the famed Lublin synagogue . DT JJ NN IN NNP POS JJ NNP NNP NNP NNP NN VBZ VBN VBN IN DT NN IN DT JJ NNP NN . Poland 's Chief Rabbi Michael Schudrich led hundreds of Jews Sunday in a joyful procession carrying the sacred religious scrolls into the building for the first time since the Nazi occupation . NNP POS NNP NNP NNP NNP VBD NNS IN NNPS NNP IN DT JJ NN VBG DT JJ JJ NNS IN DT NN IN DT JJ NN IN DT NNP NN . Jewish leaders noted that this is the first time that Lublin 's tiny Jewish community took on a major restoration project without any donations from abroad . JJ NNS VBD IN DT VBZ DT JJ NN IN NNP POS JJ JJ NN VBD IN DT JJ NN NN IN DT NNS IN RB . The synagogue is part of what once was the world 's most famous rabinnical school . DT NN VBZ NN IN WP RB VBD DT NN POS RBS JJ JJ NN . Nazis shut down the school after the 1939 invasion . NNP VBD RP DT NN IN DT CD NN . The communist government later turned it into a medical college . DT JJ NN RB VBD PRP IN DT JJ NN . Before World War II about 40,000 Jews lived in Lublin . IN NNP NNP NNP IN CD NNS VBD IN NNP . Most were killed by the Nazis . JJS VBD VBN IN DT NNPS . Cuban Vice President Carlos Lage says he remains optimistic about the recovery of ailing President Fidel Castro , who temporarily stepped aside in July following intestinal surgery . JJ NNP NNP NNP NNP VBZ PRP VBZ JJ IN DT NN IN JJ NNP NNP NNP , WP RB VBD RB IN NNP VBG JJ NN . Lage made the comments on state television Tuesday , saying Mr. Castro continues to recover and that his health is improving . NNP VBD DT NNS IN NN NN NNP , VBG NNP NNP VBZ TO VB CC IN PRP$ NN VBZ VBG . But he did not say whether Mr. Castro will be well enough to attend upcoming festivities belatedly marking his birthday . CC PRP VBD RB VB IN NNP NNP MD VB RB RB TO VB JJ NNS RB VBG PRP$ NN . The Cuban leader turned 80 in August , but the festivities were postponed to allow him time to recover . DT JJ NN VBD CD IN NNP , CC DT NNS VBD VBN TO VB PRP NN TO VB . The official Granma newspaper says the events will begin on November 28 and last through early December . DT JJ NNP NN VBZ DT NNS MD VB IN NNP CD CC JJ IN JJ NNP . Mr. Castro temporarily handed power to his younger brother , Defense Minister Raul Castro , due to the operation . NNP NNP RB VBD NN TO PRP$ JJR NN , NNP NNP NNP NNP , JJ TO DT NN . The Cuban leader has appeared only in news videos and photographs since then . DT JJ NN VBZ VBN RB IN NN NNS CC NNS IN RB . Details of his health remain a state secret . NNS IN PRP$ NN VBP DT NN NN . A leading environmental organization says it has uncovered a massive timber smuggling operation linking Indonesia 's province of Papua and China . DT VBG JJ NN VBZ PRP VBZ VBN DT JJ NN VBG NN VBG NNP POS NN IN NNP CC NNP . The London-based Environmental Investigation Agency Thursday said 3,00,000 cubic meters of merbau wood is being illegally smuggled out of Papua every month . DT JJ NNP NNP NNP NNP VBD CD JJ NNS IN NN NN VBZ VBG RB VBN IN IN NNP DT NN . It says the operation is threatening the last major tract of undisturbed tropical forests in the entire Asia-Pacific region . PRP VBZ DT NN VBZ VBG DT JJ JJ NN IN JJ JJ NNS IN DT JJ JJ NN . Illegal logging is common in Indonesia and the environmental group says it continues despite Indonesia 's 2001 ban on exporting logs , and an anti-smuggling agreement between Jakarta and Beijing . JJ NN VBZ JJ IN NNP CC DT JJ NN VBZ PRP VBZ IN NNP POS CD NN IN VBG NNS , CC DT JJ NN IN NNP CC NNP . The smuggling operation , which the group contends involves the powerful Indonesian military , is worth up to $ 1 billion a year , based on the wood 's value in the west . DT NN NN , WDT DT NN VBZ VBZ DT JJ JJ NN , VBZ JJ IN TO $ CD CD DT NN , VBN IN DT NN POS NN IN DT NN . Namibia has a new president . NNP VBZ DT JJ NN . Hifikepunye Pohamba was sworn in Monday as the country 's second president since gaining independence from apartheid-era South Africa in 1990 . NNP NNP VBD VBN IN NNP IN DT NN POS JJ NN IN VBG NN IN JJ NNP NNP IN CD . Mr. Pohamba took the oath of office in front of thousands of people at an outdoor stadium in the capital , Windhoek . NNP NNP VBD DT NN IN NN IN NN IN NNS IN NNS IN DT JJ NN IN DT NN , NNP . He won 75 percent of the vote in elections last November to succeed Sam Nujoma , who has led Namibia for the past 15 years . PRP VBD CD NN IN DT NN IN NNS JJ NNP TO VB NNP NNP , WP VBZ VBN NNP IN DT JJ CD NNS . Both men are from the ruling SWAPO , South West Africa People 's Organization , party . DT NNS VBP IN DT NN NNP , NNP NNP NNP NNP POS NNP , NN . Mr. Pohamba served as lands minister under Mr. Nujoma . NNP NNP VBD IN NNS NN IN NNP NNP . The new president vows to maintain many of his predecessor 's economic policies , and to advance a land reform program which buys farms from white owners and distributes the farms to blacks . DT JJ NN VBZ TO VB NN IN PRP$ NN POS JJ NNS , CC TO VB DT NN NN NN WDT VBZ NNS IN JJ NNS CC VBZ DT NNS TO NNS . Mr. Pohamba has warned that the country faces revolution if the reforms are not quickly implemented . NNP NNP VBZ VBN IN DT NN VBZ NN IN DT NNS VBP RB RB VBN . The U.S military in Iraq says coalition forces have captured five suspected so-called special group criminals , including a suspected financier of Iranian-sponsored insurgents . DT NNP NN IN NNP VBZ NN NNS VBP VBN CD JJ JJ JJ NN NNS , VBG DT JJ NN IN JJ NNS . The military issued a statement saying coalition forces staged the raid early Friday , in the Admhaiyah section of Baghdad , about three kilometers northwest of Sadr City . DT JJ VBD DT NN VBG NN NNS VBD DT NN JJ NNP , IN DT NNP NN IN NNP , IN CD NNS JJS IN NNP NNP . The special groups designation is used by the military to describe Shi'ite insurgents backed by Iran . DT JJ NNS NN VBZ VBN IN DT JJ TO VB NNP NNS VBN IN NNP . In other news , Kuwait 's official news agency reports the country has named former military chief of staff Ali al-Momen as its first ambassador to Baghdad since the 1991 Gulf War . IN JJ NN , NNP POS JJ NN NN VBZ DT NN VBZ VBN JJ JJ NN IN NN NNP NNP IN PRP$ JJ NN TO NNP IN DT CD NNP NNP . The United States has been urging Sunni-ruled Arab states to establish high-level diplomatic representation to the Shi'ite-led government in Baghdad . DT NNP NNPS VBZ VBN VBG JJ JJ NNS TO VB JJ JJ NN TO DT JJ NN IN NNP . Kuwait 's decision comes shortly after the United Arab Emirates and Jordan named their own ambassadors to Iraq . NNP POS NN VBZ RB IN DT NNP NNP NNPS CC NNP VBD PRP$ JJ NNS TO NNP . Bahrain also has announced plans to appoint an envoy . NNP RB VBZ VBN NNS TO VB DT NN . Mexican legislators are calling on their Latin American counterparts to join them in opposing a proposed barrier along the U.S.-Mexican border . JJ NNS VBP VBG IN PRP$ JJ JJ NNS TO VB PRP IN VBG DT VBN NN IN DT JJ NN . Heliodoro Diaz , who presides over Mexico 's House of Representatives , has sent a written request to several regional legislatures as well as to parliaments in Spain and Portugal . NNP NNP , WP VBZ IN NNP POS NNP IN NNP , VBZ VBN DT JJ NN TO JJ JJ NNS RB RB IN TO NNS IN NNP CC NNP . Mr. Diaz says opposing the wall would be ' an act of unity among Ibero-American legislatures . ' NNP NNP VBZ VBG DT NN MD VB `` DT NN IN NN IN JJ NNS . `` The U.S. House of Representatives approved a measure earlier this month to construct security fencing along the U.S.-Mexican border in an effort to curb illegal border crossing . DT NNP NNP IN NNP VBD DT NN RBR DT NN TO VB NN VBG IN DT JJ NN IN DT NN TO VB JJ NN VBG . The measure would also reclassify illegal entry into the United States as a crime , instead of a civil offense , as at present . DT NN MD RB VB JJ NN IN DT NNP NNPS IN DT NN , RB IN DT JJ NN , IN IN JJ . The U.N. Security Council on Thursday denounced the recent military crackdown against pro-democracy protesters in Burma and called for a release of all political prisoners there . DT NNP NNP NNP IN NNP VBD DT JJ JJ NN IN JJ NNS IN NNP CC VBN IN DT NN IN DT JJ NNS RB . Permanent members of the council with veto powers , China and Russia , had been pushing for softer language , while the United States and other Western powers want tougher action against the military-backed government . JJ NNS IN DT NN IN NN NNS , NNP CC NNP , VBD VBN VBG IN JJR NN , IN DT NNP NNPS CC JJ JJ NNS VBP JJR NN IN DT JJ NN . The non-binding statement was issued as U.N. Secretary-General Ban Ki-moon said he would dispatch special adviser Ibrahim Gambari back to the region for consultations on the situation in Burma . DT JJ NN VBD VBN IN NNP NNP NNP NNP VBD PRP MD VB JJ NN NNP NNP RB TO DT NN IN NNS IN DT NN IN NNP . The U.N. says Gambari will begin his Asian tour on Monday in Thailand before continuing to Malaysia , Indonesia , India , China and Japan . DT NNP VBZ NNP MD VB PRP$ JJ NN IN NNP IN NNP IN VBG TO NNP , NNP , NNP , NNP CC NNP . He will return to Burma shortly thereafter . PRP MD VB TO NNP RB RB . Gambari returned from a four-day visit to Burma last week . NNP VBD IN DT JJ NN TO NNP JJ NN . Burmese officials say the crackdown on pro-democracy protesters left 10 people dead . JJ NNS VBP DT NN IN JJ NNS VBD CD NNS JJ . Dissidents put the number of fatalities at 200 . NNS VBD DT NN IN NNS IN CD . Nearly a week after Cyclone Nargis hit Burma , bloating corpses dot the canals and riverbanks of the Irrawaddy River delta . RB DT NN IN NNP NNP VBD NNP , VBG NNS VBP DT NNS CC NNS IN DT NNP NNP NN . Rescuers , including Buddhist monks , are struggling to reach survivors before they succumb to disease and starvation . NNS , VBG NNP NNS , VBP VBG TO VB NNS IN PRP VBP TO NN CC NN . International health officials say as many as 1.5 million homeless people face a wide range of threats from deadly diseases , including malaria and cholera , diarrhea , sun exposure and dirty water . NNP NN NNS VBP RB JJ IN CD CD JJ NNS VBP DT JJ NN IN NNS IN JJ NNS , VBG NN CC NN , NN , NN NN CC NN NN . Shelter remains scarce and reports from Burma say profiteers are charging exorbitant prices for food , gas and other essentials . NNP VBZ JJ CC NNS IN NNP VBP NNS VBP VBG JJ NNS IN NN , NN CC JJ NNS . One victim tells VOA Burmese Service that entire homes in his village were washed away and that only about 20 people survived the storm . CD NN VBZ NNP JJ NNP IN JJ NNS IN PRP$ NN VBD VBN RB CC IN RB RB CD NNS VBD DT NN . Some survivors say they have been forced to move from village to village in search of aid . DT NNS VBP PRP VBP VBN VBN TO VB IN NN TO NN IN NN IN NN . They say most of the help is coming from local sources and not from the government . PRP VBP JJS IN DT NN VBZ VBG IN JJ NNS CC RB IN DT NN . The U.S. military in Afghanistan says coalition forces killed more than 50 insurgents in southern Afghanistan during a 12-hour battle that ended early Thursday , but there also are reports of civilian casualties . DT NNP NN IN NNP VBZ NN NNS VBD JJR IN CD NNS IN JJ NNP IN DT JJ NN WDT VBD JJ NNP , CC EX RB VBP NNS IN JJ NNS . The battle took place in Helmand Province , near Musa Qala village , which has seen intense fighting and heavy casualties throughout this week . DT NN VBD NN IN NNP NNP , IN NNP NNP NN , WDT VBZ VBN JJ NN CC JJ NNS IN DT NN . A U.S. military statement says coalition warplanes were called in during the Musa Qala fighting , but that there were no casualties among either coalition troops or civilians . DT NNP JJ NN VBZ NN NNS VBD VBN IN IN DT NNP NNP NN , CC IN EX VBD DT NNS IN DT NN NNS CC NNS . However , several residents of Musa Qala district have told reporters they believe almost all victims of the air strike were civilians . RB , JJ NNS IN NNP NNP NN VBP VBN NNS PRP VBP RB DT NNS IN DT NN NN VBD NNS . They say 16 civilians died in the bombing raid . PRP VBP CD NNS VBD IN DT VBG NN . One British soldier was killed Thursday during a separate clash between NATO troops and militants in southern Afghanistan . CD JJ NN VBD VBN NNP IN DT JJ NN IN NNP NNS CC NNS IN JJ NNP . Violence has surged in Afghanistan during the past 18 months , the bloodiest period since U.S.-led troops overthrew the Taleban in 2001 . NN VBZ VBN IN NNP IN DT JJ CD NNS , DT JJS NN IN JJ NNS VBD DT NNP IN CD . Pakistani officials say government troops have killed at least 43 militants in an ongoing operation in the northwestern Khyber tribal region bordering Afghanistan . JJ NNS VBP NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN IN DT JJ NNP JJ NN VBG NNP . Authorities say one of the bases of the militant group Lashkar-e-Islam was destroyed in Saturday 's attack . NNS VBP CD IN DT NNS IN DT JJ NN NN VBD VBN IN NNP POS NN . Pakistan is under intense U.S. pressure to crack down on militants close to the Afghan border . NNP VBZ IN JJ NNP NN TO VB RP IN NNS RB TO DT JJ NN . Khyber is on the main land route through Pakistan into Afghanistan . NNP VBZ IN DT JJ NN NN IN NNP IN NNP . Kidnappers who seized an Italian photojournalist in Afghanistan last week are offering to release him in return for an Afghan Christian now living in Italy . NNS WP VBD DT JJ NN IN NNP JJ NN VBP VBG TO VB PRP IN NN IN DT JJ NNP RB VBG IN NNP . The Afghan man , a convert to Christianity , fled his homeland earlier this year after he was charged with leaving Islam , an offense punishable by death . DT JJ NN , DT NN IN NNP , VBD PRP$ NN RBR DT NN IN PRP VBD VBN IN VBG NNP , DT NN JJ IN NN . He subsequently was granted asylum in Italy . PRP RB VBD VBN NN IN NNP . A hospital in Afghanistan operated by an Italian aid agency ( Emergency ) was contacted this week by the kidnappers , who said they would release their captive if the Afghan Christian ( Abdul Rahman ) is returned to his home country . DT NN IN NNP VBN IN DT JJ NN NN LRB NN RRB VBD VBN DT NN IN DT NNS , WP VBD PRP MD VB PRP$ JJ IN DT JJ NNP LRB NNP NNP RRB VBZ VBN TO PRP$ NN NN . Photographer Gabriele Torsello was kidnapped in Helmand province last week . NN NNP NNP VBD VBN IN NNP NN JJ NN . Authorities there blamed the abduction on the Taleban , but the radical Islamist group denies any involvement in the Italian 's abduction . NNS RB VBD DT NN IN DT NNP , CC DT JJ NN NN VBZ DT NN IN DT NN POS NN . Polling centers in Iraq have closed after a remarkably violence-free day , which allowed millions to turn out to vote in a referendum for the country 's new draft constitution . VBG NNS IN NNP VBP VBN IN DT RB JJ NN , WDT VBD NNS TO VB RP TO VB IN DT NN IN DT NN POS JJ NN NN . Crowds of Iraqis gathered at polling sites long before they opened at 7.00 a.m. , Saturday . NNS IN NNS VBD IN VBG NNS RB IN PRP VBD IN CD NN , NNP . Within three hours of polls opening , more than one-fourth of the nearly three million registered voters in Baghdad had cast ballots in 1,200 polling centers . IN CD NNS IN NNS VBG , JJR IN NN IN DT RB CD CD VBN NNS IN NNP VBD VBN NNS IN CD NN NNS . An Iraqi policeman , providing security at a polling center in the mostly-Sunni area of Ghazaliyah , says the voting process proceeded better than anyone had expected . DT JJ NN , VBG NN IN DT NN NN IN DT NNP NN IN NNP , VBZ DT NN NN VBD JJR IN DT VBD VBN . Despite insurgent threats to disrupt the referendum , heavy security kept violence to a minimum on Saturday . IN JJ NNS TO VB DT NN , JJ NN VBD NN TO DT NN IN NNP . A handful of polling centers came under small arms fire in and around Baghdad , wounding several people . DT NN IN NN NNS VBD IN JJ NNS NN IN CC IN NNP , VBG JJ NNS . There were no reported car bombings or suicide attacks . EX VBD DT JJ NN NNS CC NN NNS . President Bush used his weekly radio address Saturday to highlight Pakistan 's efforts to combat Islamist militants . NNP NNP VBD PRP$ JJ NN NN NNP TO VB NNP POS NNS TO VB NNP NNS . Mr. Bush cited a recent report released by his administration that says al-Qaida has established a safe haven in the tribal areas of Pakistan bordering Afghanistan . NNP NNP VBD DT JJ NN VBN IN PRP$ NN IN VBZ NNP VBZ VBN DT JJ NN IN DT JJ NNS IN NNP VBG NNP . He said Pakistani President Pervez Musharraf agreed to give tribal leaders more responsibility for policing their areas , but their efforts were unsuccessful . PRP VBD JJ NNP NNP NNP VBD TO VB JJ NNS RBR NN IN VBG PRP$ NNS , CC PRP$ NNS VBD JJ . Last Sunday , pro-Taleban militants broke the agreement . JJ NNP , JJ NNS VBD DT NN . Mr. Bush said the Pakistani president is taking active steps to go after radicals . NNP NNP VBD DT JJ NN VBZ VBG JJ NNS TO VB IN NNS . He noted Mr. Musharraf 's decision to send Pakistani troops to raid an extremist Mosque in Islamabad . PRP VBD NNP NNP POS NN TO VB JJ NNS TO VB DT NN NN IN NNP . That raid has triggered a wave of militant attacks across the country that has killed more than 160 people . DT NN VBZ VBN DT NN IN JJ NNS IN DT NN WDT VBZ VBN JJR IN CD NNS . Mr. Bush 's remarks were taped before the president underwent a medical procedure requiring him to temporarily hand over power to Vice President Dick Cheney . NNP NNP POS NNS VBD VBN IN DT NN VBD DT JJ NN VBG PRP TO RB VB IN NN TO NNP NNP NNP NNP . The U.S. National Hurricane Center says the season 's latest storm , Ophelia , has weakened to ' tropical storm ' status as it hovers off the U.S. Atlantic coast . DT NNP NNP NNP NNP VBZ DT NN POS JJS NN , NNP , VBZ VBN TO `` JJ NN `` NN IN PRP VBZ RP DT NNP NNP NN . Ophelia 's winds dropped to about 115 kilometers an hour Monday , just below hurricane level ( 119 kph ) . NNP POS NNS VBD TO IN CD NNS DT NN NNP , RB IN NN NN LRB CD NN RRB . But residents of both North and South Carolina remain wary , as it could regain strength . CC NNS IN DT NNP CC NNP NNP VBP JJ , IN PRP MD VB NN . The storm 's path is uncertain . DT NN POS NN VBZ JJ . Officials are taking extra precautions after the destruction caused by Hurricane Katrina , which hit the U.S. Gulf Coast two weeks ago . NNS VBP VBG JJ NNS IN DT NN VBN IN NNP NNP , WDT VBD DT NNP NNP NNP CD NNS RB . There is a hurricane watch along 400 kilometers of the east coast . EX VBZ DT NN NN IN CD NNS IN DT JJ NN . The governor of North Carolina has declared a state of emergency and ordered tourists to leave an island in the state 's Outer Banks chain . DT NN IN NNP NNP VBZ VBN DT NN IN NN CC VBD NNS TO VB DT NN IN DT NN POS NNP NNP NN . First of America Bank Corp. said it completed its acquisition of Midwest Financial Group Inc. for about $ 250 million . NNP IN NNP NNP NNP VBD PRP VBD PRP$ NN IN NNP NNP NNP NNP IN IN $ CD CD . First of America , which now has 45 banks and $ 12.5 billion in assets , announced an agreement to acquire the Peoria , Ill. , bank holding company in January . NNP IN NNP , WDT RB VBZ CD NNS CC $ CD CD IN NNS , VBD DT NN TO VB DT NNP , NNP , NN VBG NN IN NNP . Midwest Financial has $ 2.3 billion in assets and eight banks . NNP NNP VBZ $ CD CD IN NNS CC CD NNS . The Midwest Financial subsidiary banks will continue to operate under their current names until early 1990 , when each will adopt the First of America name . DT NNP NNP NN NNS MD VB TO VB IN PRP$ JJ NNS IN JJ CD , WRB DT MD VB DT NNP IN NNP NN . Kalamazoo , Mich.-based First of America said it will eliminate the 13 management positions of the former Midwest Financial parent company . NNP , JJ NNP IN NNP VBD PRP MD VB DT CD NN NNS IN DT JJ NNP NNP NN NN . First of America said some of the managers will take other jobs with First of America . NNP IN NNP VBD DT IN DT NNS MD VB JJ NNS IN CD IN NNP . But it said that severance payments to those executives not staying with the company will reduce First of America 's operating results for 1989 by $ 3 million to $ 4 million , or 15 cents to 20 cents a share . IN PRP VBD IN NN NNS TO DT NNS RB VBG IN DT NN MD VB CD IN NNP POS NN NNS IN CD IN $ CD CD IN $ CD CD , CC CD NNS IN CD NNS DT NN . Maldives was long a sultanate , first under Dutch and then under British protection . NNP VBD RB DT NN , RB IN JJ CC RB IN JJ NN . It became a republic in 1968 , three years after independence . PRP VBD DT NN IN CD , CD NNS IN NN . President Maumoon Abdul GAYOOM dominated the islands ' political scene for 30 years , elected to six successive terms by single-party referendums . NNP NNP NNP NNP VBD DT NNS POS JJ NN IN CD NNS , VBN TO CD JJ NNS IN JJ NNS . Following riots in the capital Male in August 2004 , the president and his government pledged to embark upon democratic reforms including a more representative political system and expanded political freedoms . VBG NNS IN DT NN NN IN NNP CD , DT NN CC PRP$ NN VBD TO VB IN JJ NNS VBG DT RBR JJ JJ NN CC VBN JJ NNS . Progress was sluggish , however , and many promised reforms were slow to be realized . NNP VBD JJ , RB , CC JJ JJ NNS VBD JJ TO VB VBN . Nonetheless , political parties were legalized in 2005 . RB , JJ NNS VBD VBN IN CD . In June 2008 , a constituent assembly - termed the ' Special Majlis ' - finalized a new constitution , which was ratified by the president in August . IN NNP CD , DT JJ NN : VBD DT `` JJ NNP `` : VBD DT JJ NN , WDT VBD VBN IN DT NN IN NNP . The first-ever presidential elections under a multi-candidate , multi-party system were held in October 2008 . DT JJ JJ NNS IN DT JJ , JJ NN VBD VBN IN NNP CD . GAYOOM was defeated in a runoff poll by Mohamed NASHEED , a political activist who had been jailed several years earlier by the former regime . NNP VBD VBN IN DT NN NN IN NNP NNP , DT JJ NN WP VBD VBN VBN JJ NNS RBR IN DT JJ NN . Challenges facing President NASHEED include strengthening democracy and combating poverty and drug abuse . NNS VBG NNP NNP VBP JJ NN CC VBG NN CC NN NN . Maldives officials have played a prominent role in the international climate change discussion ( due to the islands ' low elevation and the threat from sea-level rise ) and on the United Nations Human Rights Council . NNP NNS VBP VBN DT JJ NN IN DT JJ NN NN NN LRB JJ TO DT NNS POS JJ NN CC DT NN IN JJ NN RRB CC IN DT NNP NNP NNP NNP NNP . The UN awarded Eritrea to Ethiopia in 1952 as part of a federation . DT NNP VBD NNP TO NNP IN CD IN NN IN DT NN . Ethiopia 's annexation of Eritrea as a province 10 years later sparked a 30-year struggle for independence that ended in 1991 with Eritrean rebels defeating governmental forces ; independence was overwhelmingly approved in a 1993 referendum . NNP POS NN IN NNP IN DT NN CD NNS RB VBD DT JJ NN IN NN WDT VBD IN CD IN JJ NNS VBG JJ NNS ; NN VBD RB VBN IN DT CD NN . A two-and-a-half-year border war with Ethiopia that erupted in 1998 ended under UN auspices in December 2000 . DT JJ NN NN IN NNP WDT VBD IN CD VBD IN NNP NNS IN NNP CD . Eritrea hosted a UN peacekeeping operation that monitored a 25 km-wide Temporary Security Zone ( TSZ ) on the border with Ethiopia . NNP VBD DT NNP NN NN WDT VBD DT CD JJ NNP NNP NNP LRB NNP RRB IN DT NN IN NNP . Eritrea 's denial of fuel to the mission caused the UN to withdraw the mission and terminate its mandate 31 July 2008 . NNP POS NN IN NN TO DT NN VBD DT NNP TO VB DT NN CC VB PRP$ NN CD NNP CD . An international commission , organized to resolve the border dispute , posted its findings in 2002 . DT JJ NN , VBN TO VB DT NN NN , VBD PRP$ NNS IN CD . However , both parties have been unable to reach agreement on implementing the decision . RB , DT NNS VBP VBN JJ TO VB NN IN VBG DT NN . On 30 November 2007 , the Eritrea-Ethiopia Boundary Commission remotely demarcated the border by coordinates and dissolved itself , leaving Ethiopia still occupying several tracts of disputed territory , including the town of Badme . IN CD NNP CD , DT NNP NNP NNP RB VBD DT NN IN NNS CC VBD PRP , VBG NNP RB VBG JJ NNS IN JJ NN , VBG DT NN IN NNP . Eritrea accepted the EEBC 's ' virtual demarcation ' decision and called on Ethiopia to remove its troops from the TSZ that it states is Eritrean territory . NNP VBD DT NNP POS `` JJ NN `` NN CC VBN IN NNP TO VB PRP$ NNS IN DT NNP IN PRP VBZ VBZ JJ NN . Ethiopia has not accepted the virtual demarcation decision . NNP VBZ RB VBN DT JJ NN NN . In 2009 the UN imposed sanctions on Eritrea after accusing it of backing anti-Ethiopian Islamist insurgents in Somalia . IN CD DT NNP VBD NNS IN NNP IN VBG PRP IN VBG JJ NN NNS IN NNP . As Europe 's largest economy and second most populous nation ( after Russia ) , Germany is a key member of the continent 's economic , political , and defense organizations . IN NNP POS JJS NN CC JJ RBS JJ NN LRB IN NNP RRB , NNP VBZ DT JJ NN IN DT NN POS JJ , JJ , CC NN NNS . European power struggles immersed Germany in two devastating World Wars in the first half of the 20th century and left the country occupied by the victorious Allied powers of the US , UK , France , and the Soviet Union in 1945 . JJ NN VBZ JJ NNP IN CD JJ NNP NNS IN DT JJ NN IN DT JJ NN CC VBD DT NN VBN IN DT JJ JJ NNS IN DT NNP , NNP , NNP , CC DT NNP NNP IN CD . With the advent of the Cold War , two German states were formed in 1949 : the western Federal Republic of Germany ( FRG ) and the eastern German Democratic Republic ( GDR ) . IN DT NN IN DT NNP NNP , CD JJ NNS VBD VBN IN CD IN DT JJ NNP NNP IN NNP LRB NNP RRB CC DT JJ JJ NNP NNP LRB NNP RRB . The democratic FRG embedded itself in key Western economic and security organizations , the EC , which became the EU , and NATO , while the Communist GDR was on the front line of the Soviet-led Warsaw Pact . DT JJ NNP VBD PRP IN JJ JJ JJ CC NN NNS , DT NNP , WDT VBD DT NNP , CC NNP , IN DT NNP NNP VBD IN DT JJ NN IN DT JJ NNP NNP . The decline of the USSR and the end of the Cold War allowed for German unification in 1990 . DT NN IN DT NNP CC DT NN IN DT NNP NNP VBD IN JJ NN IN CD . Since then , Germany has expended considerable funds to bring Eastern productivity and wages up to Western standards . IN RB , NNP VBZ VBN JJ NNS TO VB NNP NN CC NNS IN TO JJ NNS . In January 1999 , Germany and 10 other EU countries introduced a common European exchange currency , the euro . IN NNP CD , NNP CC CD JJ NNP NNS VBD DT JJ JJ NN NN , DT NN . In January 2011 , Germany assumed a nonpermanent seat on the UN Security Council for the 2011 - 12 term . IN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD : CD NN . Slovakia has made significant economic reforms since its separation from the Czech Republic in 1993 . NNP VBZ VBN JJ JJ NNS IN PRP$ NN IN DT JJ NNP IN CD . Reforms to the taxation , healthcare , pension , and social welfare systems helped Slovakia consolidate its budget and get on track to join the EU in 2004 and to adopt the euro in January 2009 . NNS TO DT NN , NN , NN , CC JJ NN NNS VBD NNP VB PRP$ NN CC VB IN NN TO VB DT NNP IN CD CC TO VB DT NN IN NNP CD . Major privatizations are nearly complete , the banking sector is almost entirely in foreign hands , and the government has helped facilitate a foreign investment boom with business friendly policies . NNP NNS VBP RB JJ , DT NN NN VBZ RB RB IN JJ NNS , CC DT NN VBZ VBN VB DT JJ NN NN IN NN JJ NNS . Slovakia 's economic growth exceeded expectations in 2001 - 8 despite a general European slowdown . NNP POS JJ NN VBD NNS IN CD : CD IN DT JJ JJ NN . Unemployment , at an unacceptable 18 % in 2003 - 4 , dropped to 7.7 % in 2008 but remains the economy 's Achilles heel . NN , IN DT JJ CD NN IN CD : CD , VBD TO CD NN IN CD CC VBZ DT NN POS NNP NN . Foreign direct investment ( FDI ) accounted for much of the growth until 2008 . JJ JJ NN LRB NNP RRB VBD IN NN IN DT NN IN CD . Cheap and skilled labor , low taxes , a 19 % flat tax for corporations and individuals , no dividend taxes , a relatively liberal labor code and a favorable geographical location are Slovakia 's main advantages for foreign investors . JJ CC JJ NN , JJ NNS , DT CD NN JJ NN IN NNS CC NNS , DT NN NNS , DT RB JJ NN NN CC DT JJ JJ NN VBP NNP POS JJ NNS IN JJ NNS . Foreign investment in the automotive and electronic sectors has been especially strong . JJ NN IN DT JJ CC JJ NNS VBZ VBN RB JJ . To maintain a stable operating environment for investors , the European Bank for Reconstruction and Development advised the Slovak government to refrain from intervening in important sectors of the economy . TO VB DT JJ NN NN IN NNS , DT NNP NNP IN NNP CC NNP VBD DT JJ NN TO VB IN VBG IN JJ NNS IN DT NN . However , Bratislava 's approach to mitigating the economic slowdown has included substantial government intervention and the option to nationalize strategic companies . RB , NNP POS NN TO VBG DT JJ NN VBZ VBN JJ NN NN CC DT NN TO VB JJ NNS . RADICOVA 's government , in power since July 2010 , has allowed the budget deficit to rise slightly , to 7.9 % of GDP in 2010 . NNP POS NN , IN NN IN NNP CD , VBZ VBN DT NN NN TO VB RB , TO CD NN IN NN IN CD . GDP fell nearly 5 % in 2009 before gaining back 4 % in 2010 , and unemployment rose above 12 % in 2010 , as the global recession impacted many segments of the economy . NN VBD RB CD NN IN CD IN VBG RB CD NN IN CD , CC NN VBD IN CD NN IN CD , IN DT JJ NN VBD JJ NNS IN DT NN . ON A SUMMER DAY , when the great heat induced a general thirst among the beasts , a Lion and a Boar came at the same moment to a small well to drink . IN DT NN NN , WRB DT JJ NN VBD DT JJ NN IN DT NNS , DT NN CC DT NN VBD IN DT JJ NN TO DT JJ NN TO VB . They fiercely disputed which of them should drink first , and were soon engaged in the agonies of a mortal combat . PRP RB VBD WDT IN PRP MD VB JJ , CC VBD RB VBN IN DT NNS IN DT JJ NN . When they stopped suddenly to catch their breath for a fiercer renewal of the fight , they saw some Vultures waiting in the distance to feast on the one that should fall first . WRB PRP VBD RB TO VB PRP$ NN IN DT NN NN IN DT NN , PRP VBD DT NNS VBG IN DT NN TO VB IN DT CD WDT MD VB RB . They at once made up their quarrel , saying , ' It is better for us to make friends , than to become the food of Crows or Vultures . ' PRP IN RB VBN RP PRP$ NN , VBG , `` PRP VBZ JJR IN PRP TO VB NNS , IN TO VB DT NN IN NNS CC NNS . `` A Lion had come to the end of his days and lay sick unto death at the mouth of his cave , gasping for breath . DT NN VBD VBN TO DT NN IN PRP$ NNS CC VB JJ JJ NN IN DT NN IN PRP$ NN , VBG IN NN . The animals , his subjects , came round him and drew nearer as he grew more and more helpless . DT NNS , PRP$ NNS , VBD IN PRP CC VBD RBR IN PRP VBD RBR CC RBR JJ . When they saw him on the point of death they thought to themselves : ' Now is the time to pay off old grudges . ' WRB PRP VBD PRP IN DT NN IN NN PRP VBD TO PRP : `` RB VBZ DT NN TO VB RP JJ NNS . `` So the Boar came up and drove at him with his tusks ; then a Bull gored him with his horns ; still the Lion lay helpless before them : so the Ass , feeling quite safe from danger , came up , and turning his tail to the Lion kicked up his heels into his face . IN DT NN VBD RB CC VBD IN PRP IN PRP$ NNS ; RB DT NNP VBD PRP IN PRP$ NNS ; RB DT NNP VBD JJ IN PRP IN IN DT NN , VBG RB JJ IN NN , VBD RP , CC VBG PRP$ NN TO DT NNP VBD RP PRP$ NNS IN PRP$ NN . ' This is a double death , ' growled the Lion . `` DT VBZ DT JJ NN , `` VBD DT NN . Only cowards insult dying majesty . RB NNS VBP JJ NN . You should never marry a tennis player , because to them love means nothing PRP MD RB VB DT NN NN , IN TO PRP NN VBZ DT Lawyers and computers have both been proliferating since 1970 . NNS CC NNS VBP DT VBN VBG IN CD . Unfortunately , lawyers , unlike computers , have not gotten twice as smart and half as expensive every 18 months . RB , NNS , IN NNS , VBP RB VBN RB IN JJ CC NN IN JJ DT CD NNS . The radiation belts surrounding the earth were discovered almost simultaneously by VanAllen and another scientist named Fan . DT NN VBZ VBG DT NN VBD VBN RB RB IN NNP CC DT NN VBN NNP . VanAllen published first , or else the earth would have a Fan Belt . NNP VBD RB , CC RB DT NN MD VB DT NNP NNP . Chinese President Hu says he would like to see his country return to stronger ties with Japan . JJ NNP NNP VBZ PRP MD VB TO VB PRP$ NN NN TO JJR NNS IN NNP . Mr. Hu made the comments Tuesday during a meeting with Ichiro Ozawa , the leader of Japan 's main opposition party . NNP NNP VBD DT NNS NNP IN DT NN IN NNP NNP , DT NN IN NNP POS JJ NN NN . The two men met as Ozawa visited Beijing in an effort to improve relations between the two countries . DT CD NNS VBD IN NNP VBD NNP IN DT NN TO VB NNS IN DT CD NNS . Ozawa was invited to Beijing by the Chinese government . NNP VBD VBN TO NNP IN DT JJ NN . Before leaving Tokyo Monday , he said it is important for Japan and China to develop friendly relations . IN VBG NNP NNP , PRP VBD PRP VBZ JJ IN NNP CC NNP TO VB JJ NNS . The two countries ' leaders have not met face-to-face since 2001 . DT CD NNS POS NNS VBP RB VBN RB IN CD . Beijing has objected to Japanese Prime Minister Junichiro Koizumi 's repeated visits to a Tokyo shrine that honors war dead , including war criminals from World War Two . NNP VBZ VBN TO JJ NNP NNP NNP NNP POS JJ NNS TO DT NNP NN WDT VBZ NN NN , VBG NN NNS IN NNP NNP CD . Sino-Japanese relations also have been strained by territorial disputes , including access to natural gas deposits in the East China Sea . JJ NNS RB VBP VBN VBN IN JJ NNS , VBG NN TO JJ NN NNS IN DT NNP NNP NNP . An author and former aide to President Bush 's father has revealed a number of audiotapes he secretly recorded of the current president for more than a year leading up to Mr. Bush 's nomination five years ago . DT NN CC JJ NN TO NNP NNP POS NN VBZ VBN DT NN IN NNS PRP RB VBD IN DT JJ NN IN JJR IN DT NN VBG RP TO NNP NNP POS NN CD NNS RB . Doug Wead told The New York Times in a story published Sunday that he made the recordings of his friend , who was then governor of Texas , because he viewed Mr. Bush as a historic figure . NNP NNP VBD DT NNP NNP NNP IN DT NN VBN NNP IN PRP VBD DT NNS IN PRP$ NN , WP VBD RB NN IN NNP , IN PRP VBD NNP NNP IN DT JJ NN . In some conversations Mr. Wead played for a reporter , the future president expresses concern about gaining support of conservative Christian leaders , and discusses several opponents , including Democratic Vice President Al Gore . IN DT NNS NNP NNP VBD IN DT NN , DT NN NN VBZ NN IN VBG NN IN JJ JJ NNS , CC VBZ JJ NNS , VBG JJ NNP NNP NNP NNP . At one point , Mr. Bush calls the man he would defeat in a close contest in 2000 ' pathologically a liar . ' IN CD NN , NNP NNP VBZ DT NN PRP MD VB IN DT JJ NN IN CD `` RB DT NN . `` Mr. Bush complained repeatedly about the news media , which he accused of a ' campaign ' against him . NNP NNP VBD RB IN DT NN NNS , WDT PRP VBD IN DT `` NN `` IN PRP . Australia 's cricket team has a 179-run lead over India after the second day of their first test match in Melbourne . NNP POS NN NN VBZ DT JJ NN IN NNP IN DT JJ NN IN PRP$ JJ NN NN IN NNP . The hosts started the day Thursday at 337-9 and were soon all out for 343 . DT NNS VBD DT NN NNP IN CD CC VBD RB DT RP IN CD . But Australian bowlers Stuart Clark and Brett Lee made sure India was not able to get its offense going , with both men taking four wickets . CC JJ NNS NNP NNP CC NNP NNP VBD JJ NNP VBD RB JJ TO VB PRP$ NN VBG , IN DT NNS VBG CD NNS . Clark ( Apr-28 ) took two wickets from three balls either side of the tea break . NNP LRB CD RRB VBD CD NNS IN CD NNS CC NN IN DT NN NN . Lee ( Apr-46 ) knocked out India 's lower order on the rapidly deteriorating Melbourne Cricket Ground pitch . NNP LRB CD RRB VBD RP NNP POS JJR NN IN DT RB VBG NNP NNP NNP NN . The visitors managed only 196 all out in their first innings . DT NNS VBD RB CD DT RP IN PRP$ JJ NNS . Australia then scored 32 without loss in its second innings . NNP RB VBD CD IN NN IN PRP$ JJ NN . This is the first of four tests between the two countries . DT VBZ DT NN IN CD NNS IN DT CD NNS . Australia and India will also play a triangular series that also features Sri Lanka beginning February 3rd . NNP CC NNP MD RB VB DT JJ NN WDT RB VBZ NNP NNP VBG NNP CD . Police in Washington briefly closed the landmark Washington Monument Friday because of a bomb threat . NNS IN NNP RB VBD DT NN NNP NNP NNP IN IN DT NN NN . Authorities evacuated the monument and the surrounding area after the threat was phoned in to Washington police . NNS VBD DT NN CC DT VBG NN IN DT NN VBD VBN IN TO NNP NN . An official with the National Park Police declined in a television interview to elaborate on the threat to the 170-meter tall monument , which is a popular tourist attraction on the National Mall near the White House . DT NN IN DT NNP NNP NNP VBD IN DT NN NN TO VB IN DT NN TO DT JJ JJ NN , WDT VBZ DT JJ NN NN IN DT NNP NNP IN DT NNP NNP . Sri Lanka 's government is denying claims by Tamil Tiger rebels that it is using tsunami relief money to buy weapons and obstructing aid deliveries to areas under rebel control . NNP NNP POS NN VBZ VBG NNS IN NNP NNP NNS IN PRP VBZ VBG NN NN NN TO VB NNS CC VBG NN NNS TO NNS IN NN NN . Defense Ministry spokesman Brigadier Daya Ratnayke said Sunday , the government uses only its annual budget for defense spending . NNP NNP NN NNP NNP NNP VBD NNP , DT NN VBZ RB PRP$ JJ NN IN NN NN . The Sri Lankan official also insisted the government is taking extensive measures to ensure that rebel-held areas are provided with a fair share of assistance . DT NNP NNP NN RB VBD DT NN VBZ VBG JJ NNS TO VB IN JJ NNS VBP VBN IN DT JJ NN IN NN . A report on the pro-rebel Tamilnet web site said rebel leader Velupillai Prabhakaran raised the issues during a meeting Saturday with Norway 's Foreign Minister Jan Petersen in the rebel stronghold , Kilinochchi . DT NN IN DT JJ NNP NN NN VBD JJ NN NNP NNP VBD DT NNS IN DT NN NNP IN NNP POS NNP NNP NNP NNP IN DT NN NN , NNP . Mr. Petersen is in Sri Lanka to try to revive peace efforts between the rebels and government , and to assess the needs of tsunami-hit areas . NNP NNP VBZ IN NNP NNP TO VB TO VB NN NNS IN DT NNS CC NN , CC TO VB DT NNS IN JJ NNS . The hunter shot by Vice President Dick Cheney says he is ' deeply sorry ' for all the trouble the accident caused his friend . DT NN VBN IN NNP NNP NNP NNP VBZ PRP VBZ `` RB JJ `` IN PDT DT NN DT NN VBD PRP$ NN . Harry Whittington spoke Friday as he was leaving the Texas hospital that treated him after Mr. Cheney sprayed him with bird shot Saturday . NNP NNP VBD NNP IN PRP VBD VBG DT NNP NN WDT VBD PRP IN NNP NNP VBD PRP IN NN NN NNP . Although his face was heavily bruised , the 78-year-old lawyer appeared in good health , despite having suffered a minor heart attack Tuesday . IN PRP$ NN VBD RB VBN , DT JJ NN VBD IN JJ NN , IN VBG VBN DT JJ NN NN NNP . Mr. Cheney today acknowledged the difficulties and media scrutiny the incident has caused . NNP NNP NN VBD DT NNS CC NNS NN DT NN VBZ VBN . Speaking in Wyoming , he said it had been a ' very long week ' and was grateful that his friend is doing well . VBG IN NNP , PRP VBD PRP VBD VBN DT `` RB JJ NN `` CC VBD JJ IN PRP$ NN VBZ VBG RB . The vice president on Wednesday took responsibility for the shooting . DT NN NN IN NNP VBD NN IN DT NN . The owner of the ranch where it occurred had initially blamed Whittington . DT NN IN DT NN WRB PRP VBD VBD RB VBN NNP . Egyptian officials say Somali pirates have released an Egyptian cargo ship and its 28-member crew after more than two months in captivity . JJ NNS VBP JJ NNS VBP VBN DT JJ NN NN CC PRP$ JJ NN IN JJR IN CD NNS IN NN . The officials say the cargo ship Blue Star was released Thursday following negotiations with the captors . DT NNS VBP DT NN NN NNP NNP VBD VBN NNP VBG NNS IN DT NNS . It is not clear whether a ransom was paid . PRP VBZ RB JJ IN DT NN VBD VBN . The officials say the ship was seized on New Year 's Day by 15 pirates as it passed by the coast of Somalia . DT NNS VBP DT NN VBD VBN IN NNP NNP POS NN IN CD NNS IN PRP VBD IN DT NN IN NNP . The vessel carried a cargo of 6,000 tons of fertilizer . DT NN VBD DT NN IN CD NNS IN NN . Somali pirates hijacked more than 40 ships in 2008 , sometimes getting millions of dollars in ransom for their release . JJ VBZ VBN JJR IN CD NNS IN CD , RB VBG NNS IN NNS IN NN IN PRP$ NN . The attacks have prompted a number of countries , including the United States and China , to begin conducting naval patrols near Somalia . DT NNS VBP VBN DT NN IN NNS , VBG DT NNP NNPS CC NNP , TO VB VBG JJ NNS IN NNP . The ships have stopped several pirate attacks , most recently on Tuesday , when the crew of a German frigate arrested nine pirates who had fired on a cargo ship . DT NNS VBP VBN JJ NN NNS , RBS RB IN NNP , WRB DT NN IN DT JJ NN VBN CD NNS WP VBD VBN IN DT NN NN . Renowned Egyptian film maker Youssef Chahine , whose films reached beyond the Arab world , died early Sunday after several weeks in a coma . VBN JJ NN NN NNP NNP , WP$ NNS VBD IN DT JJ NN , VBD JJ NNP IN JJ NNS IN DT NN . He was 82 . PRP VBD CD . Chahine was born to a Lebanese Christian family in the port city of Alexandria , which was at that time a center of cosmopolitan life in the Mediterranean with its large foreign communities . NNP VBD VBN TO DT JJ JJ NN IN DT JJ NN IN NNP , WDT VBD IN DT NN DT NN IN JJ NN IN DT NNP IN PRP$ JJ JJ NNS . Throughout his more than 40 films , he tried to recapture the spirit of multiculturalism and tolerance that he grew up with there , because he saw it threatened by fundamentalism , dictatorship and imperialism . IN PRP$ JJR IN CD NNS , PRP VBD TO VB DT NN IN NN CC NN IN PRP VBD RP IN RB , IN PRP VBD PRP VBD IN NN , NN CC NN . Chahine 's films were popular internationally - particularly in France . NNP POS NNS VBD JJ RB : RB IN NNP . In 1997 he received a lifetime achievement award at the Cannes film festival . IN CD PRP VBD DT NN NN NN IN DT NNP NN NN . His final film ' Chaos ' was released earlier this year . PRP$ JJ NN `` NNPS `` VBD VBN RBR DT NN . Venezuelan President Hugo Chavez used his speech before the United Nations World Summit Thursday to lash out at the United States , saying the world body should move out of New York because of the war in Iraq . JJ NNP NNP NNP VBD PRP$ NN IN DT NNP NNP NNP NNP NNP TO VB RP IN DT NNP NNPS , VBG DT NN NN MD VB IN IN NNP NNP IN IN DT NN IN NNP . President Chavez told the leaders gathered for the summit Thursday that there were never weapons of mass destruction in Iraq but that the United States still bombed the country . NNP NNP VBD DT NNS VBD IN DT NN NNP IN EX VBD RB NNS IN NN NN IN NNP CC IN DT NNP NNPS RB VBD DT NN . He accused the United States of failing to respect the resolutions of the United Nations , and later characterized the United States as a ' terrorist state ' during a press conference . PRP VBD DT NNP NNPS IN VBG TO VB DT NNS IN DT NNP NNPS , CC RB VBD DT NNP NNPS IN DT `` JJ NN `` IN DT NN NN . The United States has had tense relations with the Chavez government . DT NNP NNP VBZ VBN JJ NNS IN DT NNP NN . The Venezuelan leader has repeatedly accused the United States of trying to topple his government , a charge Washington has denied . DT JJ NN VBZ RB VBN DT NNP NNPS IN VBG TO VB PRP$ NN , DT NN NNP VBZ VBN . Iran has rejected a request from European nations to briefly delay their submission of proposals intended to resolve a dispute over Tehran 's nuclear program . NNP VBZ VBN DT NN IN JJ NNS TO RB VB PRP$ NN IN NNS VBN TO VB DT NN IN NNP POS JJ NN . Iran 's nuclear negotiator said Saturday that the European Union had requested extending Monday 's deadline until the following Sunday , but Iran rejects any delay . NNP POS JJ NN VBD NNP IN DT NNP NNP VBD VBN VBG NNP POS NN IN DT VBG NNP , CC NNP VBZ DT NN . He also expressed concern that the proposals , a package of economic and political incentives , would not meet Iran 's basic expectations . PRP RB VBD NN IN DT NNS , DT NN IN JJ CC JJ NNS , MD RB VB NNP POS JJ NNS . The Europeans want Iran to agree to a permanent suspension of its uranium enrichment program , which can be used for both generating electricity , but in certain forms can fuel nuclear weapons . DT NNS VBP NNP TO VB TO DT JJ NN IN PRP$ NN NN NN , WDT MD VB VBN IN DT VBG NN , CC IN JJ NNS MD VB JJ NNS . Iran says its nuclear program is for peaceful purposes , but the United States accuses Tehran of trying secretly to develop nuclear weapons . NNP VBZ PRP$ JJ NN VBZ IN JJ NNS , CC DT NNP NNPS VBZ NNP IN VBG RB TO VB JJ NNS . Algerian officials say the All Africa Games are continuing as planned in Algiers despite a suicide bomb attack near the capital on Wednesday . JJ NNS VBP DT NNP NNP NNPS VBP VBG IN VBN IN NNP IN DT NN NN NN IN DT NN IN NNP . Officials say security would be stepped up around the competition sites . NNS VBP NN MD VB VBN RP IN DT NN NNS . Before the opening ceremony Wednesday , a suicide bomber killed at least eight soldiers and wounded 35 others in Lakhdaria , a village east of the capital , Algiers . IN DT NN NN NNP , DT NN NN VBD IN JJS CD NNS CC VBD CD NNS IN NNP , DT NN NN IN DT NN , NNP . The al-Qaida Organization in the Islamic Maghreb , formerly known as the Salafist Group for Preaching and Combat has claimed responsibility for the bombing . DT NNP NNP IN DT NNP NNP , RB VBN IN DT NNP NNP IN NNP CC NNP VBZ VBN NN IN DT NN . The group also claimed responsibility for a number of attacks that have rocked the region , including two car bombings in April that killed 33 people . DT NN RB VBD NN IN DT NN IN NNS WDT VBP VBN DT NN , VBG CD NN NNS IN NNP WDT VBD CD NNS . The All Africa Games are a regional multi-sport event held every four years . DT NNP NNP NNPS VBP DT JJ JJ NN VBD DT CD NNS . Competing athletes must be from the African continent . VBG NNS MD VB IN DT JJ NN . The competition is set to last until July 23 . DT NN VBZ VBN TO VB IN NNP CD . Authorities in Indian Kashmir say suspected Islamic militants have attacked a remote police station , triggering a gunbattle that left two militants , one policeman and one civilian dead . NNS IN JJ NNP VBP JJ JJ NNS VBP VBN DT JJ NN NN , VBG DT NN WDT VBD CD NNS , CD NN CC CD JJ NN . Police say the ambush occurred late Sunday in southern Poonch province near the Pakistani border . NNS VBP DT NN VBD JJ NNP IN JJ NNP NN IN DT JJ NN . They say the rebels hurled grenades and used machine guns in the attack , which led to a three-hour shoot-out . PRP VBP DT NNS VBD NNS CC VBN NN NNS IN DT NN , WDT VBD TO DT JJ NN . Kashmiri militants continue their attacks against government targets , as India and Pakistan inch forward in their 18-month peace process aimed at resolving all their disputes , including Kashmir . JJ NNS VBP PRP$ NNS IN NN NNS , IN NNP CC NNP NN RB IN PRP$ JJ NN NN VBN IN VBG DT PRP$ NNS , VBG NNP . Militant groups have been fighting for Kashmir 's independence or its merger with Pakistan since 1989 . JJ NNS VBP VBN VBG IN NNP POS NN CC PRP$ NN IN NNP IN CD . The insurgency has claimed tens of thousand of lives . DT NN VBZ VBN NNS IN CD IN NNS . U.S. President George Bush and French President Nicolas Sarkozy have reaffirmed their joint support for a peaceful Lebanon , and say it is important for the country to have diplomatic ties with Syria . NNP NNP NNP NNP CC JJ NNP NNP NNP VBP VBN PRP$ JJ NN IN DT JJ NNP , CC VB PRP VBZ JJ IN DT NN TO VB JJ NNS IN NNP . The two leaders issued a joint statement following talks in Paris Saturday calling for Syria and Lebanon to work towards a relationship based on ' respect , equality , security and sovereignty . ' DT CD NNS VBD DT JJ NN VBG NNS IN NNP NNP VBG IN NNP CC NNP TO VB IN DT NN VBN IN `` NN , NN , NN CC NN . `` The French and American presidents have held different positions in regard to Syria . DT JJ CC JJ NNS VBP VBN JJ NNS IN NN TO NNP . Mr. Bush has repeatedly accused Damascus of supporting terrorism and fomenting violence in Lebanon . NNP NNP VBZ RB VBN NNP IN VBG NN CC VBG NN IN NNP . But , Mr. Sarkozy has shown signs of warming relations with Syria , pledging to resume diplomatic ties that were suspended last year . CC , NNP NNP VBZ VBN NNS IN VBG NNS IN NNP , VBG TO VB JJ NNS WDT VBD VBN JJ NN . Mr. Sarkozy has also invited President Bashar al-Assad to attend France 's ' Bastille Day ' celebrations on July 14 , and plans to include Syria in a new Mediterranean Union . NNP NNP VBZ RB VBN NNP NNP NNP TO VB NNP POS `` NNP NNP `` NNS IN NNP CD , CC VBZ TO VB NNP IN DT JJ NNP NNP . Iran 's supreme leader Ayatollah Ali Khamenei has formally endorsed Mahmoud Ahmadinejad as the country 's next president . NNP POS JJ NN NNP NNP NNP VBZ RB VBN NNP NNP IN DT NN POS JJ NN . The conservative Mr. Ahmadinejad , who won the June presidential elections , succeeds reformist President Mohammad Khatami , whose term ends Wednesday . DT JJ NNP NNP , WP VBD DT NNP JJ NNS , VBZ NN NNP NNP NNP , WP$ NN VBZ NNP . The new president will be sworn-in before parliament Saturday . DT JJ NN MD VB JJ IN NN NNP . He takes office at a time when Iran is under mounting western pressure over its nuclear ambitions . PRP VBZ NN IN DT NN WRB NNP VBZ IN VBG JJ NN IN PRP$ JJ NNS . Mr. Ahmadinejad , a former mayor of Tehran , says ' access to nuclear technology is Iran 's inalienable right . ' NNP NNP , DT JJ NN IN NNP , VBZ `` NN TO JJ NN VBZ NNP POS JJ NN . `` The 49-year-old Mr. Ahmadinejad is also a former member of the hard-line Revolutionary Guard and a former instructor of the Basij religious vigilantes . DT JJ NNP NNP VBZ RB DT JJ NN IN DT JJ NNP NNP CC DT JJ NN IN DT NNP JJ NNS . A powerful storm has smashed apart Russian oil tanker anchored between the Black Sea and the Sea of Azov , creating what some experts are calling an environmental catastrophe . DT JJ NN VBZ VBN RB JJ NN NN VBD IN DT NNP NNP CC DT NNP IN NNP , VBG WP DT NNS VBP VBG DT JJ NN . As much as 2,000 metric tons of fuel oil spilled into the Kerch Strait off Ukraine . RB RB IN CD JJ NNS IN NN NN VBD IN DT NNP NNP IN NNP . Some officials believe it could take several years to clean up . DT NNS VBP PRP MD VB JJ NNS TO VB RP . The Volganeft-139 was anchored in the strait several kilometers from land to ride out the storm . DT NNP VBD VBN IN DT NN JJ NNS IN NN TO VB RP DT NN . Huge waves split the tanker in two . JJ NNS VBD DT NN IN CD . Thirteen crewmembers were rescued . CD NNS VBD VBN . The storm also sank four other cargo ships - three of which were carrying sulfur . DT NN RB VBD CD JJ NN NNS IN CD IN WDT VBD VBG NN . At least eight people from the other ships are still missing . IN JJS CD NNS IN DT JJ NNS VBP RB VBG . The Kerch Strait is a major migration route for birds and is also home to porpoises . DT NNP NNP VBZ DT JJ NN NN IN NNS CC VBZ RB NN TO NNS . Prosecutors have opened an investigation into possible criminal charges . NNS VBP VBN DT NN IN JJ JJ NNS . Fighting between suspected Taleban rebels and U.S.-coalition and Afghan troops has left seven insurgents dead , while a rebel attack on a medical clinic left a doctor and his six colleagues dead . VBG IN JJ NNP NNS CC JJ CC JJ NNS VBZ VBN CD NNS JJ , IN DT NN NN IN DT JJ NN VBD DT NN CC PRP$ CD NNS JJ . Police say the attack on the independently run clinic occurred in Khost province , bordering Pakistan . NNS VBP DT NN IN DT JJ NN NN VBD IN NNP NN , VBG NNP . Suspected Taleban rebels broke into the building and shot the seven victims late Tuesday night . VBN NNP NNS VBD IN DT NN CC VBD DT CD NNS RB NNP NN . Also on Tuesday , officials say seven insurgents were killed in a clash that broke out on the border between the southern provinces of Kandahar and Uruzgan after the rebels attacked a joint Afghan-coalition patrol . RB IN NNP , NNS VBP CD NNS VBD VBN IN DT NN WDT VBD RP IN DT NN IN DT JJ NNS IN NNP CC NNP IN DT NNS VBD DT JJ NN NN . The officials say four Afghan soldiers were wounded in the fighting , which ended with the insurgents fleeing into nearby mountains , carrying their wounded . DT NNS VBP CD JJ NNS VBD VBN IN DT NN , WDT VBD IN DT NNS VBG IN JJ NNS , VBG PRP$ VBN . Several rebels were captured . JJ NNS VBD VBN . President Bush has congratulated Chile 's first female president-elect , Michelle Bachelet , on her win in last Sunday 's runoff election . NNP NNP VBZ VBN NNP POS JJ JJ NN , NNP NNP , IN PRP$ NN IN JJ NNP POS NN NN . A White House spokesman said President Bush called Ms. Bachelet Thursday and told her he looks forward to working with her . DT NNP NNP NN VBD NNP NNP VBD NNP NNP NNP CC VBD PRP PRP VBZ RB TO VBG IN PRP . The spokesman said they talked about the importance of working together to promote good governance in the region . DT NN VBD PRP VBD IN DT NN IN VBG RB TO VB JJ NN IN DT NN . Ms. Bachelet , a left-leaning candidate , took 53 percent of the vote in Sunday 's runoff election . NNP NNP , DT JJ NN , VBD CD NN IN DT NN IN NNP POS NN NN . Her opponent was billionaire businessman Sebastian Pinera , the candidate of a rightist alliance . PRP$ NN VBD NN NN NNP NNP , DT NN IN DT JJ NN . The socialist Ms. Bachelet brings to her position her experience as a physician , single mother and former political dissident . DT JJ NNP NNP VBZ TO PRP$ NN PRP$ NN IN DT NN , JJ NN CC JJ JJ NN . She has promised to improve health care and education , and has said she will divide her cabinet appointments equally between men and women . PRP VBZ VBN TO VB NN NN CC NN , CC VBZ VBN PRP MD VB PRP$ NN NNS RB IN NNS CC NNS . Iraqi lawmakers say the nation 's parliament voted Saturday to extend its current session until the end of July . JJ NNS VBP DT NN POS NN VBD NNP TO VB PRP$ JJ NN IN DT NN IN NNP . The session was due to close at the end of this month . DT NN VBD JJ TO VB IN DT NN IN DT NN . Lawmakers are under pressure to pass key measures aimed at promoting national reconciliation . NNS VBP IN NN TO VB JJ NNS VBN IN VBG JJ NN . In a separate development , Iran 's state-run IRNA news agency reports that Iraq 's president will visit Tehran this week . IN DT JJ NN , NNP POS JJ NNP NN NN NNS IN NNP POS NN MD VB NNP DT NN . IRNA quotes Iraqi sources who say President Jalal Talabani is expected to meet with senior officials , including his Iranian counterpart , President Mahmoud Ahmadinejad . NNP VBZ JJ NNS WP VBP NNP NNP NNP VBZ VBN TO VB IN JJ NNS , VBG PRP$ JJ NN , NNP NNP NNP . Preliminary election results from the West Bank indicate the mainstream Fatah faction is leading in the first Palestinian municipal elections since 1976 despite a strong showing by the militant Islamic group Hamas . JJ NN NNS IN DT NNP NNP VBP DT NN NNP NN VBZ VBG IN DT JJ JJ JJ NNS IN CD IN DT JJ NN IN DT JJ NNP NN NNP . Some 1,50,000 eligible voters cast ballots Thursday in 26 West Bank localities . DT CD JJ NNS VBD NNS NNP IN CD NNP NNP NNS . Official results are expected Saturday . JJ NNS VBP VBN NNP . In the coming months , similar elections are due to be held in stages in the rest of the Palestinian territories . IN DT JJ NNS , JJ NNS VBP JJ TO VB VBN IN NNS IN DT NN IN DT JJ NNS . Thursday 's vote was seen as a test of popularity between Fatah and Hamas . NNP POS NN VBD VBN IN DT NN IN NN IN NNP CC NNP . Hamas has already said it will not participate in the Palestinian presidential elections set for January 9 . NNP VBZ RB VBN PRP MD RB VB IN DT JJ JJ NNS VBN IN NNP CD . Former Palestinian Prime Minister Mahmoud Abbas , Fatah 's candidate , leads that race . JJ JJ NNP NNP NNP NNP , NNP POS NN , VBZ IN NN . Elsewhere in the West Bank , Israeli and Palestinian officials say Israeli troops killed three members of the militant Al-Aqsa Martyrs Brigades . RB IN DT NNP NNP , JJ CC JJ NNS VBP JJ NNS VBD CD NNS IN DT JJ NNP NNP NNP . Sudanese officials have opened a new oil pipeline expected to raise the country 's output to at least 5,00,000 barrels of oil per day . JJ NNS VBP VBN DT JJ NN NN VBN TO VB DT NN POS NN TO IN JJS CD NNS IN NN IN NN . Government ministers attended a launch ceremony for the pipeline in the town of Fallouj on Monday . NN NNS VBD DT NN NN IN DT NN IN DT NN IN NNP IN NNP . The 1,400 kilometer pipeline will carry oil from wells in Sudan 's southeast to Port Sudan on the Red Sea . DT CD NN NN MD VB NN IN NNS IN NNP POS NN TO NNP NNP IN DT NNP NNP . Revenue will be split between the northern and southern governments , which signed a wealth-sharing agreement as part of the peace deal that ended Sudan 's north-south civil war last year . NN MD VB VBN IN DT JJ CC JJ NNS , WDT VBD DT JJ NN IN NN IN DT NN NN WDT VBD NNP POS JJ JJ NN JJ NN . The pipeline is run by Petrodar , a conglomerate owned mainly by China 's National Petroleum Corporation and Malaysia 's Petronas . DT NN VBZ VBN IN NNP , DT NN VBN RB IN NNP POS NNP NNP NNP CC NNP POS NNP . Companies in Dubai and Sudan and another Chinese firm own smaller shares . NNS IN NNP CC NNP CC DT JJ NN VBZ JJR NNS . China is the world 's second-largest energy consumer after the United States , and has become a major investor in Sudan as it seeks foreign sources of oil . NNP VBZ DT NN POS JJ NN NN IN DT NNP NNPS , CC VBZ VBN DT JJ NN IN NNP IN PRP VBZ JJ NNS IN NN . Security officials in Pakistan say shots were fired at the plane of Pakistan President Pervez Musharraf after the craft took off from a military base in Rawalpindi . NN NNS IN NNP VBP NNS VBD VBN IN DT NN IN NNP NNP NNP NNP IN DT NN VBD RP IN DT JJ NN IN NNP . The plane was not hit , and General Musharraf landed safely in southern Pakistan , where he spoke to victims of recent floods . DT NN VBD RB VBN , CC NNP NNP VBD RB IN JJ NNP , WRB PRP VBD TO NNS IN JJ NNS . An Army spokesman , Major General Waheed Arshad , says the government is trying to figure out who fired the shots , but insists that the president 's plane was not the intended target . DT NNP NN , NNP NNP NNP NNP , VBZ DT NN VBZ VBG TO VB RP WP VBD DT NNS , CC VBZ IN DT NN POS NN VBD RB DT JJ NN . However , other Pakistani officials called the incident an unsuccessful attack on the president 's plane . RB , JJ JJ NNS VBD DT NN DT JJ NN IN DT NN POS NN . Officials say the shots were from a machine gun . NNS VBP DT NNS VBD IN DT NN NN . Police found two anti-aircraft guns on a nearby roof . NNP VBD CD JJ NNS IN DT JJ NN . In other news , a suicide bomb attack in northwestern Pakistan has killed at least four Pakistani soldiers in a military convoy . IN JJ NN , DT NN NN NN IN JJ NNP VBZ VBN IN JJS CD JJ NNS IN DT JJ NN . A major oil company will not sign an agreement to give majority control of its oil operations in Venezuela to the government of President Hugo Chavez . DT JJ NN NN MD RB VB DT NN TO VB NN NN IN PRP$ NN NNS IN NNP TO DT NN IN NNP NNP NNP . ConocoPhillips has refused to accept Venezuela 's terms for compensation for its investments . NNP VBZ VBN TO VB NNP POS NNS IN NN IN PRP$ NNS . News reports say ExxonMobil also will decline the deal . NNP NNS VBP NNP RB MD VB DT NN . President Chavez gave foreign oil companies until Tuesday to agree to give the government a 60 percent share of their operations . NNP NNP VBD JJ NN NNS IN NNP TO VB TO VB DT NN DT CD NN NN IN PRP$ NNS . Those facilities are said to be worth $ 25 billion or more , and some companies complain the compensation offered is too low . DT NNS VBP VBN TO VB JJ $ CD CD CC JJR , CC DT NNS VBP DT NN VBD VBZ RB JJ . ConocoPhillips and ExxonMobil may seek arbitration or court action to resolve the dispute . NNP CC NNP MD VB NN CC NN NN TO VB DT NN . The Wall Street Journal cites unnamed sources and says it is not yet clear how other companies will respond . DT NNP NNP NNP VBZ JJ NNS CC VBZ PRP VBZ RB RB JJ WRB JJ NNS MD VB . Venezuela has already taken over foreign companies ' assets in the telecommunications and electricity sectors . NNP VBZ RB VBN IN JJ NNS POS NNS IN DT NNS CC NN NNS . Kurdish party officials in Syria say the body of a Kurdish Muslim cleric has been found three weeks after he was reported missing . NNP NN NNS IN NNP VBP DT NN IN DT NNP NNP NN VBZ VBN VBN CD NNS IN PRP VBD VBN VBG . The Yekiti Kurdish Party says hospital officials in northeastern Syria found signs of torture on the body of Sheikh Mohammad Maashouq al-Khaznawi . DT NNP NNP NNP VBZ NN NNS IN JJ NNP VBD NNS IN NN IN DT NN IN NNP NNP NNP NNP . Mr. al-Khaznawi had been missing since leaving the Islamic Studies Center in Damascus on May 10 . NNP NNP VBD VBN VBG IN VBG DT NNP NNP NNP IN NNP IN NNP CD . The disappearance sparked a march last month by thousands of Kurds demanding to know his whereabouts . DT NN VBD DT NN JJ NN IN NNS IN NNS VBG TO VB PRP$ NNS . Kurdish leaders accused Syrian officials of holding the sheikh . JJ NNS VBD JJ NNS IN VBG DT NN . Authorities denied the charge . NNS VBD DT NN . Kurdish party leaders say the cleric 's body was being transported for burial services in the town of Kameshli . NNP NN NNS VBP DT NN POS NN VBD VBG VBN IN JJ NNS IN DT NN IN NNP . Provincial officials in western Afghanistan say at least 12 people were killed Sunday in factional fighting there . NNP NNS IN JJ NNP VBP IN JJS CD NNS VBD VBN NNP IN JJ NN RB . The officials say clashes broke out in western Herat province between two local warlords , Amanullah Khan and Arbab Basir . DT NNS VBP NNS VBD RP IN JJ NNP NN IN CD JJ NNS , NNP NNP CC NNP NNP . Earlier Sunday , NATO-led troops killed 15 suspected militants who ambushed a NATO convoy in southern Afghanistan . RBR NNP , JJ NNS VBD CD JJ NNS WP VBD DT NNP NN IN JJ NNP . The alliance said Sunday that the troops returned fire after they were attacked in Zabul province with small arms and rocket-propelled grenades . DT NN VBD NNP IN DT NNS VBD NN IN PRP VBD VBN IN NNP NN IN JJ NNS CC JJ NNS . It said two NATO vehicles were damaged in the attack . PRP VBD CD NNP NNS VBD VBN IN DT NN . NATO forces are encountering stiff resistance from Taleban insurgents in the south . NNP NNS VBP VBG JJ NN IN NNP NNS IN DT NN . Italy 's prime minister has confirmed that U.S. forces in Iraq opened fire on a car carrying a freed Italian hostage and her rescuers , Friday . NNP POS JJ NN VBZ VBN IN NNP NNS IN NNP VBD NN IN DT NN VBG DT VBN JJ NN CC PRP$ NNS , NNP . Silvio Berlusconi said freed journalist Giuliana Sgrena sustained a shoulder injury and an Italian agent who helped free her was killed . NNP NNP VBD VBN NN NNP NNP VBD DT NN NN CC DT JJ NN WP VBD VB PRP VBD VBN . Mr. Berlusconi said he has summoned the American ambassador in Rome for an explanation of the incident . NNP NNP VBD PRP VBZ VBN DT JJ NN IN NNP IN DT NN IN DT NN . Executives at Ms. Sgrena 's newspaper , Il Manifesto , said the shooting occurred at a coalition checkpoint as the car headed to Baghdad airport . NNS IN NNP NNP POS NN , NNP NNP , VBD DT NN VBD IN DT NN NN IN DT NN VBD TO NNP NN . A spokesman for the U.S. military in Baghdad told VOA they are looking into press reports about the incident , but had no information . DT NN IN DT NNP NN IN NNP VBD NNP PRP VBP VBG IN NN NNS IN DT NN , CC VBD DT NN . Gunmen abducted Ms. Sgrena outside a Baghdad mosque on February 4 . NNS VBD NNP NNP IN DT NNP NN IN NNP CD . She later appeared in a video appeal for Italian troops to leave Iraq . PRP RB VBD IN DT NN NN IN JJ NNS TO VB NNP . A recent Philippine military report says al Qaida-linked Muslim militants in the country have stepped-up recruiting efforts and signed on some 100 recent Muslim converts since July . DT JJ JJ JJ NN VBZ NNP JJ NN NNS IN DT NN VBP JJ NN NNS CC VBN IN DT CD JJ NNP NNS IN NNP . The report says the Abu Sayyaf terror group has joined forces with the Rajah Solaiman Movement , a group of Filipino Christians who have converted to Islam . DT NN VBZ DT NNP NNP NN NN VBZ VBN NNS IN DT NNP NNP NNP , DT NN IN JJ NNPS WP VBP VBN TO NNP . Military officials say Abu Sayyaf has promised the recent converts up to $ 530 each to conduct sabotage operations in Zamboanga city on the southern island of Mindanao . JJ NNS VBP NNP NNP VBZ VBN DT JJ NNS IN TO $ CD DT TO VB NN NNS IN NNP NN IN DT JJ NN IN NNP . Philippine security forces , assisted by U.S. intelligence , have been battling Muslim insurgents in Mindanao and other southern islands . JJ NN NNS , VBN IN NNP NN , VBP VBN VBG NNP NNS IN NNP CC JJ JJ NNS . Abu Sayyaf has been blamed for a series of kidnappings and other deadly attacks , including a ferry bombing last year that killed more than 100 people . NNP NNP VBZ VBN VBN IN DT NN IN NNS CC JJ JJ NNS , VBG DT NN NN JJ NN WDT VBD JJR IN CD NNS . A major Chinese oil company , CNOOC , has given up an $ 18.5 billion bid to take over the U.S.-based Unocal oil company . DT JJ JJ NN NN , NNP , VBZ VBN RP DT $ CD CD NN TO VB RP DT JJ NNP NN NN . It would have been the largest-ever Chinese acquisition of a U.S. company . PRP MD VB VBN DT JJ JJ NN IN DT NNP NN . With oil prices at record-high levels , the bid sparked opposition from members of the U.S. Congress . IN NN NNS IN JJ NNS , DT NN VBD NN IN NNS IN DT NNP NNP . Some politicians said losing control of some U.S.-owned oil assets could harm the nation 's economy and security . DT NNS VBD VBG NN IN DT JJ NN NNS MD VB DT NN POS NN CC NN . The parent company of CNOOC is controlled by the Chinese government . DT NN NN IN NNP VBZ VBN IN DT JJ NN . A statement on the company web site said its interests are ' purely commercial ' and called the political opposition ' unjustified ' and harmful to Unocal shareholders and employees . DT NN IN DT NN NN NN VBD PRP$ NNS VBP `` RB JJ `` CC VBD DT JJ NN `` JJ `` CC JJ TO NNP NNS CC NNS . Ending CNOOC 's bid leaves Chevron as the only bidder for Unocal . VBG NNP POS NN VBZ NNP IN DT JJ NN IN NNP . Millions of residents of Harbin , one of northeast China 's largest cities , are enduring their third day without water after about 100 tons of a toxic chemical were released into a river . NNS IN NNS IN NNP , CD IN NN NNP POS JJS NNS , VBP VBG PRP$ JJ NN IN NN IN IN CD NNS IN DT JJ NN VBD VBN IN DT NN . China 's official Xinhua news agency says that , as of early Friday , the level of chemicals in the Songhua River remained 28 times above national safety standards . NNP POS JJ NNP NN NN VBZ DT , IN IN JJ NNP , DT NN IN NNS IN DT NNP NNP VBD CD NNS IN JJ NN NNS . Thursday , the leading edge of an 80-kilometer long slick of benzene reached Harbin 's municipal water inlets . NNP , DT VBG NN IN DT JJ JJ NN IN NN VBD NNP POS JJ NN NNS . Experts say it will be sometime Saturday before the river flows clean again in Harbin . NNS VBP PRP MD VB RB NNP IN DT NN VBZ JJ RB IN NNP . Authorities are warning people to avoid the benzene fumes rising from the river . NNS VBP VBG NNS TO VB DT NN VBZ VBG IN DT NN . Meanwhile , Petrechemical Corporation , a subsidiary of China 's largest oil producer , China National Petroleum Corporation has apologized for the chemical plant explosion November 13 that spilled the cancer-causing pollutants upstream in Jilin City . RB , NNP NNP , DT NN IN NNP POS JJS NN NN , NNP NNP NNP NNP VBZ VBN IN DT NN NN NN NNP CD WDT VBD DT JJ NNS NN IN NNP NNP . A powerful typhoon that drenched the Philippines earlier this week is bearing down on Taiwan Friday , forcing the cancellation of flights and the closure of schools and offices . DT JJ NN WDT VBD DT NNPS RBR DT NN VBZ VBG RP IN NNP NNP , VBG DT NN IN NNS CC DT NN IN NNS CC NNS . Forecasters at Taiwan 's Central Weather Bureau say that by late Friday afternoon local time , Typhoon Sepat was located about 220 kilometers southeast of coastal Taitung county , with gusts of wind up to 227 kilometers per hour . NNS IN NNP POS NNP NNP NNP VBP IN IN JJ NNP NN JJ NN , NNP NNP VBD VBN IN CD NNS NN IN JJ NNP NN , IN NNS IN NN IN TO CD NNS IN NN . Sepat is moving northwest at a speed of around 20 kilometers per hour . NNP VBZ VBG RB IN DT NN IN IN CD NNS IN NN . Forecasters expect it to begin plowing over the center of the island on Friday evening and then move on to lash China 's southeastern coast on Saturday . NNS VBP PRP TO VB VBG IN DT NN IN DT NN IN NNP NN CC RB VB IN TO VB NNP POS JJ NN IN NNP . Earlier this week Typhoon Sepat exacerbated monsoon rains and flooded parts of the Philippine capital , Manila . RBR DT NN NNP NNP VBD NN NNS CC VBD NNS IN DT JJ NN , NNP . No deaths were reported . DT NNS VBD VBN . Flooding continued in Manila Friday , forcing the closure of offices and schools . VBG VBN IN NNP NNP , VBG DT NN IN NNS CC NNS . Iraq 's prime minister-designate has completed his list of proposed cabinet members after three months of political negotiations . NNP POS JJ NN VBZ VBN PRP$ NN IN VBN NN NNS IN CD NNS IN JJ NNS . Ibrahim al-Jaafari presented the list to President Jalal Talabani Tuesday . NNP NNP VBD DT NN TO NNP NNP NNP NNP . The three-member presidential council must approve the list , before it can go to the 275-member national assembly for a vote of approval . DT JJ JJ NN MD VB DT NN , IN PRP MD VB TO DT JJ JJ NN IN DT NN IN NN . Iraqi officials and state television report that the country 's majority Shi'ites will get 17 cabinet seats , while the Kurds , who came second in the elections , will get eight . JJ NNS CC NN NN NN IN DT NN POS NN NNS MD VB CD NN NNS , IN DT NNPS , WP VBD RB IN DT NNS , MD VB CD . The Sunnis , who mostly boycotted the vote , will get only six seats . DT NNP , WP RB VBD DT NN , MD VB RB CD NNS . And the tiny Christian minority will have one seat . CC DT JJ JJ NN MD VB CD NN . The party of interim Prime Minister Iyad Allawi , which won 40 seats in the assembly , was apparently shut out of the new government . DT NN IN JJ NNP NNP NNP NNP , WDT VBD CD NNS IN DT NN , VBD RB VBN IN IN DT JJ NN . In addition , Mr. Jaafari has named three deputy prime ministers - a Shi'ite , a Kurd and a Sunni . IN NN , NNP NNP VBZ VBN CD JJ JJ NNS IN DT NNP , DT NNP CC DT NNP . Iraqi politicians are holding more talks on forming a unity government as another U.S. congressional delegation visits Baghdad to check on their progress . JJ NNS VBP VBG JJR NNS IN VBG DT NN NN IN DT NNP JJ NN VBZ NNP TO VB IN PRP$ NN . U.S. Senator John McCain met in Baghdad with officials who have been trying to form a government for the past three months . NNP NNP NNP NNP VBD IN NNP IN NNS WP VBP VBN VBG TO VB DT NN IN DT JJ CD NNS . McCain said he is guardedly optimistic that officials can agree on a government within weeks . NNP VBD PRP VBZ RB JJ IN NNS MD VB IN DT NN IN NNS . Separately , U.S. Ambassador to Iraq , Zalmay Khalilzad , said the country is at a defining moment . RB , NNP NNP TO NNP , NNP NNP , VBD DT NN VBZ IN DT JJ NN . He said Iraqi leaders are struggling to form a government and bring under control the violence that grips the nation . PRP VBD JJ NNS VBP VBG TO VB DT NN CC VB IN NN DT NN WDT VBZ DT NN . In the latest violence , a roadside bomb killed four Iraqis in Baghdad Saturday . IN DT JJS NN , DT NN NN VBD CD NNS IN NNP NNP . Police also found 10 more bodies that showed signs of torture in the city . NNS RB VBD CD JJR NNS WDT VBD NNS IN NN IN DT NN . North of the capital , another roadside bomb killed two Iraqis . NNP IN DT NN , DT NN NN VBD CD NNS . Polls have opened in Benin , where voters are choosing a successor to long-time President Mathieu Kerekou . NNS VBP VBN IN NNP , WRB NNS VBP VBG DT NN TO JJ NNP NNP NNP . After casting his ballot Sunday in Cotonou , Mr. Kerekou expressed doubt about the vote 's transparency . IN VBG PRP$ NN NNP IN NNP , NNP NNP VBD NN IN DT NN POS NN . The French press agency quotes him as saying unnamed groups gave FALSE names and voter cards to foreigners in the west African nation before the poll . DT JJ NN NN VBZ PRP IN VBG JJ NNS VBD JJ NNS CC NN NNS TO NNS IN DT JJ JJ NN IN DT NN . Some four million people are eligible to cast ballots in the election , which features 26 candidates , including two women . DT CD CD NNS VBP JJ TO VB NNS IN DT NN , WDT VBZ CD NNS , VBG CD NNS . A second round will be called in two weeks if no candidate wins more than 50 percent of the vote . DT JJ NN MD VB VBN IN CD NNS IN DT NN VBZ JJR IN CD NN IN DT NN . President Kerekou is barred from running again because he is older than the 70 year age limit . NNP NNP VBZ VBN IN VBG RB IN PRP VBZ JJR IN DT CD NN NN NN . Mr. Kerekou first came to power in a military coup in 1972 and led the country to its first democratic elections in 1991 , which he lost . NNP NNP RB VBD TO NN IN DT JJ NN IN CD CC VBD DT NN TO PRP$ JJ JJ NNS IN CD , WDT PRP VBD . He returned to office after winning a 1996 vote . PRP VBD TO NN IN VBG DT CD NN . Pakistani authorities have raided offices of two Afghan trading firms suspected of providing funds to leaders of Taleban insurgents and frozen their bank accounts . JJ NNS VBP VBN NNS IN CD JJ NN NNS VBN IN VBG NNS TO NNS IN NNP NNS CC JJ PRP$ NN NNS . Pakistani officials say the raids by government agents in the northwestern city of Peshawar and in the capital , Islamabad , occurred on Tuesday . JJ NNS VBP DT NNS IN NN NNS IN DT JJ NN IN NNP CC IN DT NN , NNP , VBD IN NNP . They say the agents seized documents indicating the firms ' involvement in transferring money to the Taleban . PRP VBP DT NNS VBD NNS VBG DT NNS POS NN IN VBG NN TO DT NNP . The authorities now are trying to determine whether the funds were being channeled to the Taleban 's reclusive leader , Mullah Omar . DT NNS RB VBP VBG TO VB IN DT NNS VBD VBG VBN TO DT NNP POS JJ NN , NNP NNP . Tuesday 's raids came the same day as a meeting in Washington between President Bush and Pakistani Prime Minister Shaukat Aziz , in which the two sides vowed to continue working closely to defeat terrorism . NNP POS NNS VBD DT JJ NN IN DT NN IN NNP IN NNP NNP CC JJ NNP NNP NNP NNP , IN WDT DT CD NNS VBD TO VB VBG RB TO VB NN . Egypt has reported a second suspected human case of bird flu as Israel culls thousands of birds in an effort to contain an outbreak . NNP VBZ VBN DT JJ JJ JJ NN IN NN NN IN NNP VBZ NNS IN NNS IN DT NN TO VB DT NN . Egypt 's health ministry said Sunday a young man hospitalized since Thursday is suffering symptoms of the disease . NNP POS NN NN VBD NNP DT JJ NN VBN IN NNP VBZ VBG NNS IN DT NN . It said he kept a farm , north of Cairo , where a number of chickens died last Monday . PRP VBD PRP VBD DT NN , NN IN NNP , WRB DT NN IN NNS VBD JJ NNP . The report followed the death Friday in Egypt of a woman believed to have contracted the H5N1 strain of the virus . DT NN VBD DT NN NNP IN NNP IN DT NN VBN TO VB VBN DT NNP NN IN DT NN . In Israel , authorities say the situation is under control . IN NNP , NNS VBP DT NN VBZ IN NN . They are killing tens of thousands of birds to try to prevent the disease from spreading . PRP VBP VBG NNS IN NNS IN NNS TO VB TO VB DT NN IN VBG . Bird flu has spread across parts of Europe , Africa and Asia , killing about 100 people since 2003 . NN NN VBZ VBN IN NNS IN NNP , NNP CC NNP , VBG IN CD NNS IN CD . Health officials have warned it could mutate into a virus that can be easily transmitted between humans and create a global pandemic . NN NNS VBP VBN PRP MD VB IN DT NN WDT MD VB RB VBN IN NNS CC VB DT JJ NN . President Bush has used his weekly radio address to urge Congress to do more to ease the economic worries of many Americans . NNP NNP VBZ VBN PRP$ JJ NN NN TO VB NNP TO VB JJR TO VB DT JJ NNS IN JJ NNS . The president Saturday said even though the economy is growing , American families are concerned with rising energy prices and the cost of health care . DT NN NNP VBD RB IN DT NN VBZ VBG , JJ NNS VBP VBN IN VBG NN NNS CC DT NN IN NN NN . The president praised Congress for passing recent energy and tax bills . DT NN VBD NNP IN VBG JJ NN CC NN NNS . But he said he was disappointed in a spending bill that he signed earlier this week . CC PRP VBD PRP VBD VBN IN DT NN NN IN PRP VBD RBR DT NN . He said the $ 555 billion budget bill was loaded with wasteful special interest items , mentioning a prison museum and a sailing school . PRP VBD DT $ CD CD NN NN VBD VBN IN JJ JJ NN NNS , VBG DT NN NN CC DT NN NN . The president said his resolution for the New Year is to work with Congress to keep the economy growing , to keep taxes low and to ensure Washington spends money wisely . DT NN VBD PRP$ NN IN DT NNP NN VBZ TO VB IN NNP TO VB DT NN VBG , TO VB NNS JJ CC TO VB NNP VBZ NN RB . Some experts say the worst of the recession may be over , but others are pessimistic about the economic outlook . DT NNS VBP DT JJS IN DT NN MD VB IN , CC NNS VBP JJ IN DT JJ NN . A survey of economists by the Bloomberg financial news service projects U.S. unemployment will rise further this year , from 8.9 to 9.6 percent . DT NN IN NNS IN DT NNP JJ NN NN NNS NNP NN MD VB RBR DT NN , IN CD TO CD NN . These experts also expect the world 's largest economy to get smaller at a 1.9 percent annual pace in April , May and June , and gradually switch to modest growth later this year . DT NNS RB VBP DT NN POS JJS NN TO VB JJR IN DT CD NN JJ NN IN NNP , NNP CC NNP , CC RB VB TO JJ NN RB DT NN . Nobel prize-winning economist Paul Krugman says the U.S. and other governments need to do more than the current set of stimulus packages and interest rate cuts . NNP JJ NN NNP NNP VBZ DT NNP CC JJ NNS VBP TO VB JJR IN DT JJ NN IN NN NNS CC NN NN NNS . He says half-measures will do too little to help banks and boost growth . PRP VBZ NNS MD VB RB RB TO VB NNS CC VB NN . But the head of the European Central Bank , Jean-Claude Trichet , said Monday that the global economy has weathered the worst of the recession and is ready to turn upward . CC DT NN IN DT NNP NNP NNP , NNP NNP , VBD NNP IN DT JJ NN VBZ VBN DT JJS IN DT NN CC VBZ JJ TO VB RB . Chinese Vice President Zeng Qinghong says China 's imports have helped create 10 million jobs worldwide since it joined the World Trade Organization in 2001 . JJ NNP NNP NNP NNP VBZ NNP POS NNS VBP VBN VB CD CD NNS JJ IN PRP VBD DT NNP NNP NNP IN CD . Zeng made the comments during opening remarks Saturday at a regional meeting of politicians , business leaders and academics on China 's southern island of Hainan . NNP VBD DT NNS IN VBG NNS NNP IN DT JJ NN IN NNS , NN NNS CC NNS IN NNP POS JJ NN IN NNP . China 's official Xinhua News Agency quoted Zeng as saying that since 2001 it has annually imported nearly $ 500 billion worth of goods from around the world . NNP POS JJ NNP NNP NNP VBD NNP IN VBG IN IN CD PRP VBZ RB VBN RB $ CD CD NN IN NNS IN IN DT NN . Xinhua says more than 850 participants from about 40 countries are attending the annual Boao Forum for Asia . NNP VBZ JJR IN CD NNS IN IN CD NNS VBP VBG DT JJ NNP NNP IN NNP . The meeting is expected to focus on topics including regional economic cooperation , the Doha round of WTO talks and other global issues . DT NN VBZ VBN TO VB IN NNS VBG JJ JJ NN , DT NNP NN IN NNP NNS CC JJ JJ NNS . A senior Iraqi official says an appeals court has upheld the death sentence against ousted leader Saddam Hussein for the 1982 killings of 148 Shi'ite villagers . DT JJ JJ NN VBZ DT NNS NN VBZ VBN DT NN NN IN JJ NN NNP NNP IN DT CD NNS IN CD NNP NNS . National Security Advisor Mowaffaq Rubaie made the announcement in Baghdad Tuesday . NNP NNP NNP NNP NNP VBD DT NN IN NNP NNP . Under Iraqi law , the death sentence is to be carried out within 30 days . IN JJ NN , DT NN NN VBZ TO VB VBN RP IN CD NNS . Last month , an Iraqi court sentenced Saddam to hang for the killings of the Shi'ites from the town of Dujail after an attempt there to assassinate Saddam . JJ NN , DT JJ NN VBD NNP TO VB IN DT NNS IN DT NNS IN DT NN IN NNP IN DT NN RB TO VB NNP . The ousted leader is also on trial on charges of genocide for the 1988 Anfal campaign in which prosecutors say 1,80,000 Kurds were killed . DT JJ NN VBZ RB IN NN IN NNS IN NN IN DT CD NNP NN IN WDT NNS VBP CD NNS VBD VBN . A group of independent policymakers and economists say economic growth is within reach of developing countries if they adopt the right policies . DT NN IN JJ NNS CC NNS VBP JJ NN VBZ IN NN IN VBG NNS IN PRP VBP DT JJ NNS . The World Bank 's Commission on Growth and Development has released a new report , which says developing countries can achieve fast , sustained and equitable growth , providing they use formulas used by other successful economies . DT NNP NNP POS NNP IN NNP CC NNP VBZ VBN DT JJ NN , WDT VBZ VBG NNS MD VB JJ , JJ CC JJ NN , VBG PRP VBP NNS VBN IN JJ JJ NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Leaders of the the world 's richest nations have again pledged to help cut poverty and disease in Africa . NNS IN DT DT NN POS JJS NNS VBP RB VBN TO VB VB NN CC NN IN NNP . In a statement Sunday , leaders at the summit of the seven top industrialized nations plus Russia pledged to pursue existing efforts to increase debt relief and support aid work on the continent . IN DT NN NNP , NNS IN DT NN IN DT CD JJ JJ NNS IN NNP VBD TO VB VBG NNS TO VB NN NN CC NN NN NN IN DT NN . The statement also said the grouping will identify the next steps to be taken before next year 's summit in Germany . DT NN RB VBD DT NN MD VB DT JJ NNS TO VB VBN IN JJ NN POS NN IN NNP . Aid agencies welcomed the formal G-8 commitment not to let Africa issues fade from public view . JJ NNS VBD DT JJ JJ NN RB TO VB NNP NNS VBP IN JJ NN . But an official from the British charity ' Save the Children ' urged G-8 countries to act more urgently . CC DT NN IN DT JJ NN `` VB DT NNS `` VBD JJ NNS TO VB JJR RB . Matt Phillips said the ' fact that there have not been [ G-8 ] steps backward ' will ' be cold comfort to the 800 African families who lost a child today ' because they could not afford a doctor . NNP NNP VBD DT `` NN IN EX VBP RB VBN LRB NNP RRB NNS RB `` MD `` VB JJ NN TO DT CD JJ NNS WP VBD DT NN NN `` IN PRP MD RB VB DT NN . Gunmen killed at least 12 people at a house party in Ciudad Juarez , Mexico Friday , the latest act of brutality in a border city known as a battleground for drug gangs . NNS VBD IN JJS CD NNS IN DT NN NN IN NNP NNP , NNP NNP , DT JJS NN IN NN IN DT NN NN VBN IN DT NN IN NN NNS . Local media report a group of armed men arrived at the house in several vehicles and opened fire on party-goers . JJ NNS VBP DT NN IN JJ NNS VBD IN DT NN IN JJ NNS CC VBD NN IN NNS . At least 10 people were wounded in the attack , including a child . IN JJS CD NNS VBD VBN IN DT NN , VBG DT NN . Ciudad Juarez sits just across the border from the U.S. city of El~Paso , Texas . NNP NNP VBZ RB IN DT NN IN DT NNP NN IN NNP , NNP . More than 6,000 people have been killed in the last three years in the Mexican city where the Juarez and Sinaloa drug cartels battle with Mexican police and military forces that are trying to stop their illegal operations . JJR IN CD NNS VBP VBN VBN IN DT JJ CD NNS IN DT JJ NN WRB DT NNP CC NNP NN VBZ NN IN JJ NNS CC JJ NNS WDT VBP VBG TO VB PRP$ JJ NNS . It was not immediately clear whether the latest violence was related to the drug war . PRP VBD RB RB JJ IN DT JJS NN VBD VBN TO DT NN NN . President Bush has invited representatives from 11 countries to a conference on global warming , to be held in Washington September 27-28 . NNP NNP VBZ VBN NNS IN CD NNS TO DT NN IN JJ NN , TO VB VBN IN NNP NNP CD . The White House says Secretary of State Condoleezza Rice will host the meeting . DT NNP NNP VBZ NNP IN NNP NNP NNP MD VB DT NN . Attendees are expected to discuss a new strategy for global warming for 2012 , when the Kyoto agreement expires . NNS VBP VBN TO VB DT JJ NN IN JJ NN IN CD , WRB DT NNP NN VBZ . In his invitation letter , Mr. Bush said he hopes the group will agree to set new international limits on gas emissions , and work with businesses to help new environment-friendly technologies grow . IN PRP$ NN NN , NNP NNP VBD PRP VBZ DT NN MD VB TO VB JJ JJ NNS IN NN NNS , CC NN IN NNS TO VB JJ JJ NNS VBP . The Bush administration has long been accused of having an environmental policy that lags behind other nations . DT NNP NN VBZ RB VBN VBN IN VBG DT JJ NN WDT VBZ IN JJ NNS . The Kyoto Protocol was adopted in 1997 to limit the amount of so-called greenhouse gas emitted in industrialized countries . DT NNP NNP VBD VBN IN CD TO VB DT NN IN JJ NN NN VBN IN JJ NNS . The United States has never been a party to the agreement . DT NNP NNPS VBZ RB VBN DT NN TO DT NN . Mr. Bush invited representatives from the United Nations and European Union as well as the 11 individual nations . NNP NNP VBD NNS IN DT NNP NNPS CC NNP NNP RB RB IN DT CD JJ NNS . U.S. and European share prices have recovered a day after they plunged because of concerns about the economy . NNP CC JJ NN NNS VBP VBN DT NN IN PRP VBD IN IN NNS IN DT NN . U.S. stock indexes are up in Wednesday 's trading , while European markets are mixed . NNP NN NNS VBP RB IN NNP POS NN , IN JJ NNS VBP JJ . Asian markets took a nosedive Wednesday following Tuesday 's steep decline in U.S. and European share prices . JJ NNS VBD DT JJ NNP VBG NNP POS JJ NN IN NNP CC JJ NN NNS . Hong Kong 's Hang Seng index fell more than 1,300 points , more than five percent , in a holiday-shortened trading day . NNP NNP POS NNP NNP NN VBD JJR IN CD NNS , JJR IN CD NN , IN DT JJ NN NN . Tokyo 's Nikkei index was off 646 points - nearly five percent . NNP POS NNP NN VBD RB CD NNS : RB CD NN . Markets in China , Taiwan , South Korea , and New Zealand were closed for a holiday . NNS IN NNP , NNP , NNP NNP , CC NNP NNP VBD VBN IN DT NN . Analysts say many investors fear the U.S. economy is close to a recession if not already in one . NNS VBP JJ NNS VBP DT NNP NN VBZ RB TO DT NN IN RB RB IN CD . Many private radio stations in Nepal resumed news broadcasts Friday , more than six months after King Gyanendra banned news from all independent outlets . JJ JJ NN NNS IN NNP VBD NN NNS NNP , JJR IN CD NNS IN NNP NNP VBD NN IN DT JJ NNS . Nepal 's Supreme Court ruled earlier this week that one station closed for violating the news ban should be allowed to resume operations . NNP POS NNP NNP VBD RBR DT NN IN CD NN VBD IN VBG DT NN NN MD VB VBN TO VB NNS . A media rights group in Nepal , Save Independent Radio Movement , says other stations interpreted the ruling as giving them the right to broadcast news . DT NNS NNS NN IN NNP , NNP NNP NNP NNP , VBZ JJ NNS VBD DT NN IN VBG PRP DT NN TO VB NN . The group says about 16 of the country 's more than 40 independent radio stations have restarted news broadcasts , and others will do the same over the next several days . DT NN VBZ IN CD IN DT NN POS JJR IN CD JJ NN NNS VBP VBN NN NNS , CC NNS MD VB DT NN IN DT JJ JJ NNS . The news ban for independent radio was part of a wider media crackdown imposed by King Gyanendra after he fired the government and seized complete power in February . DT NN NN IN JJ NN VBD NN IN DT JJR NNS NN VBN IN NNP NNP IN PRP VBD DT NN CC VBD JJ NN IN NNP . Iraqi police in Kirkuk say a suicide car bomber struck a funeral service for a Shi'ite soldier , killing at least four people and wounding some 25 others . JJ NN IN NNP VBP DT NN NN NN VBD DT JJ NN IN DT NNP NN , VBG IN JJS CD NNS CC VBG DT CD NNS . Officials said the bomber drove into the middle of the service before detonating a blast . NNS VBD DT NN VBD IN DT NN IN DT NN IN VBG DT NN . Also Thursday , the prime minister and president of Romania publicly disagreed about a proposal to withdraw the country 's 890 troops from Iraq . RB NNP , DT JJ NN CC NN IN NNP RB VBD IN DT NN TO VB DT NN POS CD NNS IN NNP . Prime Minister Calin Tariceanu proposed a withdrawal because of the human and financial cost of the deployment . NNP NNP NNP NNP VBD DT NN IN IN DT JJ CC JJ NN IN DT NN . But President Traian Basescu called the idea ' unacceptable . ' CC NNP NNP NNP VBD DT NN `` JJ . `` Under Romanian law , the country 's Supreme Defense Council , chaired by the president , has the power to decide on a withdrawal . IN JJ NN , DT NN POS NNP NNP NNP , VBN IN DT NN , VBZ DT NN TO VB IN DT NN . The president said the prime minister 's statement would hurt Romania 's credibility abroad . DT NN VBD DT JJ NN POS NN MD VB NNP POS NN RB . Belarus 's Foreign Ministry has dismissed the latest U.S.-imposed sanctions aimed at freezing the U.S. assets of Belarusian President Alexander Lukashenko and other government officials . NNP POS NNP NNP VBZ VBN DT JJS JJ NNS VBN IN VBG DT NNP NNS IN JJ NNP NNP NNP CC JJ NN NNS . A Foreign Ministry spokesman , Andrei Popov , Tuesday accused the United States of pursuing what he called ' an old goal ' of spreading FALSE information about Belarus . DT NNP NNP NN , NNP NNP , NNP VBD DT NNP NNPS IN VBG WP PRP VBD `` DT JJ NN `` IN VBG JJ NN IN NNP . President Bush signed an executive order for the sanctions on Monday . NNP NNP VBD DT JJ NN IN DT NNS IN NNP . The move also bars Americans and U.S. companies from doing business with Mr. Lukashenko and nine other officials . DT NN RB VBZ NNS CC NNP NNS IN VBG NN IN NNP NNP CC CD JJ NNS . The European Union froze Mr. Lukashenko 's assets in Europe last month and joined the United States in imposing a travel ban on Belarusian senior government officials . DT NNP NNP VBD NNP NNP POS NNS IN NNP JJ NN CC VBD DT NNP NNPS IN VBG DT NN NN IN JJ JJ NN NNS . President Lukashenko was elected to a third term in March in a vote the West called fraudulent . NNP NNP VBD VBN TO DT JJ NN IN NNP IN DT NN DT NNP VBD JJ . Turkish authorities say a security officer and a Kurdish rebel have been killed in clashes in the country 's mainly Kurdish southeast . JJ NNS VBP DT NN NN CC DT JJ NN VBP VBN VBN IN NNS IN DT NN POS RB JJ NN . They say the two died in Siirt province Tuesday . PRP VBP DT CD VBD IN NNP NN NNP . Authorities say the rebel was a member of the banned Kurdistan Workers Party , or PKK . NNS VBP DT NN VBD DT NN IN DT VBN NNP NNP NNP , CC NNP . The violence is the latest in southeastern Turkey . DT NN VBZ DT JJS IN JJ NNP . In March , clashes erupted at funerals for some of the 14 Kurdish guerrillas killed by Turkish security forces in Diyarbakir . IN NNP , NNS VBD IN NNS IN DT IN DT CD NNP NNS VBN IN JJ NN NNS IN NNP . The PKK has been fighting for autonomy in Turkey 's southeastern region since 1984 . DT NNP VBZ VBN VBG IN NN IN NNP POS JJ NN IN CD . More than 30,000 people have been killed . JJR IN CD NNS VBP VBN VBN . The PKK guerrillas are based mainly in the mountains of southeastern Turkey and northern Iraq . DT NNP NNS VBP VBN RB IN DT NNS IN JJ NNP CC JJ NNP . The organizers of a Lebanese aid voyage say they will set sail Sunday on a trip designed to break Israel 's blockade of the Gaza Strip . DT NNS IN DT JJ NN NN VBP PRP MD VB JJ NNP IN DT NN VBN TO VB NNP POS NN IN DT NNP NNP . Israel has warned against the journey by the ship , named the Mariam . NNP VBZ VBN IN DT NN IN DT NN , VBD DT NNP . The organizers of the mission say those on board will be women only . DT NNS IN DT NN VBP DT IN NN MD VB NNS RB . Israel came under harsh international criticism after it launched a deadly raid in May on a flotilla of aid ships trying to break the Gaza blockade . NNP VBD IN JJ JJ NN IN PRP VBD DT JJ NN IN NNP IN DT NN IN NN NNS VBG TO VB DT NNP NN . Nine Turkish activists were killed . CD JJ NNS VBD VBN . Israel eased its land blockade in response to the outrage , but kept the sea blockade in force . NNP VBD PRP$ NN NN IN NN TO DT NN , CC VBD DT NN NN IN NN . Israeli officials say the measure is necessary to prevent Hamas militants and supporters from smuggling weapons into Gaza . JJ NNS VBP DT NN VBZ JJ TO VB NNP NNS CC NNS IN VBG NNS IN NNP . The French Defense Ministry says an investigation has confirmed an Ivory Coast man was killed by suffocation by French soldiers in the West African nation last May . DT JJ NNP NNP VBZ DT NN VBZ VBN DT NNP NNP NN VBD VBN IN NN IN JJ NNS IN DT JJ JJ NN JJ NNP . In a statement issued Wednesday the ministry says the man was killed while in an armored vehicle May 13 . IN DT NN VBN NNP DT NN VBZ DT NN VBD VBN IN IN DT JJ NN NNP CD . The statement says the commander of the French force in Ivory Coast was informed of the incident but did not inform his superiors . DT NN VBZ DT NN IN DT JJ NN IN NNP NNP VBD VBN IN DT NN CC VBD RB VB PRP$ NNS . Last month the ministry suspended General Henri Poncet and two other military officers for what it called ' serious breaches of law , military regulations and orders ' in connection with the incident . JJ NN DT NN VBD NNP NNP NNP CC CD JJ JJ NNS IN WP PRP VBD `` JJ NNS IN NN , JJ NNS CC NNS `` IN NN IN DT NN . French peacekeepers patrol a buffer zone in Ivory Coast separating the government-controlled south and the rebel-held north . JJ NNS VBP DT NN NN IN NNP NNP VBG DT JJ NN CC DT JJ NN . Monday marks the 30th anniversary of the barcode . NNP VBZ DT JJ NN IN DT NN . Barcodes are the symbols that appear on goods in 155 countries that help clerks speed customer purchases , and help companies keep track of inventory . NNS VBP DT NNS WDT VBP IN NNS IN CD NNS WDT VBP NNS VB NN NNS , CC VB NNS VB NN IN NN . Barcodes are a series of lines and numbers that machine scanners can read and identify exactly what product is being sold and how much it costs . NNS VBP DT NN IN NNS CC NNS IN NN NNS MD VB CC VB RB WP NN VBZ VBG VBN CC WRB JJ PRP VBZ . More than 100 nations have groups that issue unique barcodes to one million companies around the world . JJR IN CD NNS VBP NNS WDT VBP JJ NNS TO CD CD NNS IN DT NN . And scanners read those barcodes about 10 billion times each day . CC NNS VBP DT NNS IN CD CD NNS DT NN . The non-profit group that issues barcodes in the United States says the first barcoded item scanned and sold was a package of chewing gum , which is now in a museum . DT JJ NN WDT VBZ NNS IN DT NNP NNPS VBZ DT JJ JJ NN VBN CC VBN VBD DT NN IN VBG NN , WDT VBZ RB IN DT NN . Ukraine 's Supreme Court has invalidated the results of the country 's presidential runoff , and called for a new vote in three weeks . NNP POS NNP NNP VBZ VBN DT NNS IN DT NN POS JJ NN , CC VBD IN DT JJ NN IN CD NNS . Friday 's decision comes as tens of thousands of opposition supporters rally in Kiev protesting the disputed November 21 runoff vote . NNP POS NN VBZ IN NNS IN NNS IN NN NNS VBZ IN NNP VBG DT JJ NNP CD NN NN . Election officials had declared Prime Minister Viktor Yanukovych the winner of the election , prompting massive demonstrations . NNP NNS VBD VBN NNP NNP NNP NNP DT NN IN DT NN , VBG JJ NNS . Opposition challenger Viktor Yushchenko and international monitors said massive fraud occurred . NN NN NNP NNP CC JJ NNS VBD JJ NN VBD . Demonstrators clad in orange , the color of the opposition , massed outside the court Friday to await the decision , while thousands of others continued to gather in Kiev main 's square . NNS VBP IN NN , DT NN IN DT NN , VBD IN DT NN NNP TO VB DT NN , IN NNS IN NNS VBD TO VB IN NNP NN POS NN . Ukraine 's outgoing president , Leonid Kuchma , said Thursday in Kiev he supports holding entirely new elections . NNP POS NN NN , NNP NNP , VBD NNP IN NNP PRP VBZ VBG RB JJ NNS . He met earlier outside Moscow with Russian President Vladimir Putin , who said he does not support redoing the runoff . PRP VBD RBR IN NNP IN JJ NNP NNP NNP , WP VBD PRP VBZ RB VB VBG DT NN . British police say they have released two people who had been detained in connection with last month 's failed car bomb attacks in London and Glasgow . JJ NNS VBP PRP VBP VBN CD NNS WP VBD VBN VBN IN NN IN JJ NN POS JJ NN NN NNS IN NNP CC NNP . The two who were released without charge are physician trainees arrested July 2 - two days after a vehicle packed with gas cylinders , nails and gasoline smashed into barricades near the entrance to Glasgow 's main airport . DT CD WP VBD VBN IN NN VBP NN NNS VBN NNP CD IN CD NNS IN DT NN VBN IN NN NNS , NNS CC NN VBD IN NNS IN DT NN TO NNP POS JJ NN . A woman detained in the case was released last week . DT NN VBN IN DT NN VBD VBN JJ NN . Three people - two in Britain and one in Australia - have been charged . CD NNS : CD IN NNP CC CD IN NNP : VBP VBN VBN . Police have identified the suspects as Indian-born doctor Sabeel Ahmed , and his brother , Kafeel , who remains hospitalized in Glasgow with severe burns . NNS VBP VBN DT NNS IN JJ NN NNP NNP , CC PRP$ NN , NNP , WP VBZ VBN IN NNP IN JJ NNS . A distant cousin of the two , Muhammad Haneef , was charged Saturday in Brisbane , Australia . DT JJ NN IN DT CD , NNP NNP , VBD VBN NNP IN NNP , NNP . Separately , a British judge has given police until July 21 to question a Jordanian doctor who was arrested in northern England June 30 . RB , DT JJ NN VBZ VBN NN IN NNP CD TO VB DT JJ NN WP VBD VBN IN JJ NNP NNP CD . The U.S. military in Iraq says one U.S. soldier has been killed and three others wounded in a bomb attack in the country 's north . DT NNP NN IN NNP VBZ CD NNP NN VBZ VBN VBN CC CD NNS VBN IN DT NN NN IN DT NN POS NN . In a statement , the military said the bomb was detonated Monday near a military patrol near the town of Baquba . IN DT NN , DT NN VBD DT NN VBD VBN NNP IN DT JJ NN IN DT NN IN NNP . The violence came as President Bush joined other world leaders in praising the results from Iraq 's national elections . DT NN VBD IN NNP NNP VBD JJ NN NNS IN VBG DT NNS IN NNP POS JJ NNS . World leaders hailed the election results , but several also urged the winning parties not to worsen religious and ethnic tensions in the country . NNP NNS VBD DT NN NNS , CC JJ RB VBD DT VBG NNS RB TO VB JJ CC JJ NNS IN DT NN . The United Iraqi Alliance , a coalition of Shi'ite Muslim groups , won the biggest share of the eight million votes , but fell just short of an outright majority . DT NNP JJ NNP , DT NN IN NNP NNP NNS , VBD DT JJS NN IN DT CD CD NNS , CC VBD RB JJ IN DT JJ NN . Iraq 's election commission says a Kurdish coalition finished second , with 25 percent . NNP POS NN NN VBZ DT JJ NN VBD JJ , IN CD NN . Interim Prime Minister Iyad Allawi and his allies ranked third , with 14 percent . NNP NNP NNP NNP NNP CC PRP$ NNS VBD JJ , IN CD NN . Iraqi authorities say gunmen have ambushed and killed 12 Iraqi soldiers near the northern city of Kirkuk . JJ NNS VBP NNS VBP VBN CC VBN CD JJ NNS IN DT JJ NN IN NNP . Officials say the attackers shot and killed the soldiers after stopping their bus on a road leading to the oil-rich city late Wednesday . NNS VBP DT NNS VBD CC VBD DT NNS IN VBG PRP$ NN IN DT NN VBG TO DT JJ NN JJ NNP . It was the deadliest single attack in Iraq since Sunday 's election to choose members of the country 's interim national assembly . PRP VBD DT JJS JJ NN IN NNP IN NNP POS NN TO VB NNS IN DT NN POS JJ JJ NN . Election workers are still counting votes . NN NNS VBP RB VBG NNS . An influential association of Sunni Muslim clerics said the assembly will lack the authority to draft a new constitution , because many Sunnis did not vote . DT JJ NN IN NNP NNP NNS VBD DT NN NN VBP DT NN TO VB DT JJ NN , IN JJ NNPS VBD RB VB . Iraq 's interim prime minister Iyad Allawi said he wants to ensure all parts of Iraqi society have a role in its new government . NNP POS JJ JJ NN NNP NNP VBD PRP VBZ TO VB DT NNS IN JJ NN VBP DT NN IN PRP$ JJ NN . Mr. Allawi held talks Wednesday with leaders from the country 's political and religious factions , including Sunni leaders . NNP NNP VBD NNS NNP IN NNS IN DT NN POS JJ CC JJ NNS , VBG NNP NNS . Five Philippine legislators accused of plotting a coup against the president have emerged from the Congress building where they took refuge more than two months ago . CD JJ NNS VBN IN VBG DT NN IN DT NN VBP VBN IN DT NNP NN WRB PRP VBD NN RBR IN CD NNS RB . Hundreds of supporters cheered the left-wing lawmakers Monday as they walked out of the House of Representatives after a 70-day standoff with the government . NNS IN NNS VBD DT JJ NNS NNP IN PRP VBD IN IN DT NNP IN NNPS IN DT JJ NN IN DT NN . The five hid in the building to avoid being taken into custody for their alleged role in a failed plot in February to overthrow President Gloria Macapagal Arroyo . DT CD NN IN DT NN TO VB VBG VBN IN NN IN PRP$ JJ NN IN DT JJ NN IN NNP TO VB NNP NNP NNP NNP . On Thursday , a court dismissed rebellion charges against them on technical grounds . IN NNP , DT NN VBD NN NNS IN PRP IN JJ NNS . The government says it does not rule out refiling a case against the lawmakers . DT NN VBZ PRP VBZ RB VB RP VBG DT NN IN DT NNS . A Pakistani court has lifted a ban on the popular social networking site Facebook , two weeks after the site was blocked for soliciting images of the Prophet Muhammad . DT JJ NN VBZ VBN DT NN IN DT JJ JJ NN NN NNP , CD NNS IN DT NN VBD VBN IN VBG NNS IN DT NNP NNP . Most Muslims consider any image of the Prophet to be blasphemous , and Facebook 's ' Everybody Draw Muhammad Day ' page triggered protests throughout Pakistan . JJS NNPS VBP DT NN IN DT NN TO VB JJ , CC NNP POS `` DT VB NNP NN `` NN VBD NNS IN NNP . The Lahore High Court on Monday ordered the government to restore access to Facebook , but said ' blasphemous ' content should remain blocked . DT NNP NNP NNP IN NNP VBD DT NN TO VB NN TO NNP , CC VBD `` JJ `` NN MD VB VBN . The court also called on the government to develop a system targeting offensive content online . DT NN RB VBD IN DT NN TO VB DT NN VBG JJ NN NN . Last week , Pakistan lifted a similar ban on the video website YouTube . JJ NN , NNP VBD DT JJ NN IN DT NN JJ NNP . Authorities said sacrilegious or profane material will remain restricted . NNS VBD JJ CC JJ NN MD VB JJ . On Sunday , authorities in Bangladesh also temporarily blocked Facebook . IN NNP , NNS IN NNP RB RB VBN NNP . Publications of cartoons of the Prophet Muhammad in Danish newspapers a few years ago sparked violent protests in majority-Muslim countries . NNP IN NNS IN DT NNP NNP IN JJ NNS DT JJ NNS RB VBD JJ NNS IN JJ NNS . Suspected leftist rebels in Colombia have killed at least a dozen coca growers in the northwestern part of the country . VBN JJ NNS IN NNP VBP VBN IN JJS DT NN NN NNS IN DT JJ NN IN DT NN . A local official says members of the Revolutionary Armed Forces of Colombia , or FARC , killed 11 men and one woman during an attack Wednesday near Puerto Valdivia . DT JJ NN VBZ NNS IN DT NNP NNP NNS IN NNP , CC NNP , VBD CD NNS CC CD NN IN DT NN NNP IN NNP NNP . The FARC relies on coca , which is used to make cocaine , for much of its funding . DT NNP VBZ IN NN , WDT VBZ VBN TO VB NN , IN NN IN PRP$ NN . It often kills peasants who refuse to cooperate or sell their product to rightwing paramilitaries . PRP RB VBZ NNS WP VBP TO VB CC VB PRP$ NN IN NN NNS . The FARC and a smaller leftist rebel group are locked in a long-running war against the government and rightist paramilitaries that leaves thousands of people dead each year . DT NNP CC DT JJR JJ NN NN VBP VBN IN DT JJ NN IN DT NN CC NN NNS WDT VBZ NNS IN NNS JJ DT NN . Vice President Dick Cheney was briefly examined at a Washington hospital Tuesday after experiencing discomfort in his left leg , where a blood clot was discovered earlier this month . NNP NNP NNP NNP VBD RB VBN IN DT NNP NN NNP IN VBG NN IN PRP$ JJ NN , WRB DT NN NN VBD VBN RBR DT NN . Cheney 's office says the doctors conducted another ultrasound image of the clot in his leg , which showed there was no extension or complication of the clot . NNP POS NN VBZ DT NNS VBN DT JJ NN IN DT NN IN PRP$ NN , WDT VBD EX VBD DT NN CC NN IN DT NN . Doctors say Cheney 's blood thinning medication is working . NNS VBP NNP POS NN VBG NN VBZ VBG . The vice president later returned to the White House to resume his schedule . DT NN NN RB VBD TO DT NNP NNP TO VB PRP$ NN . Cheney has had four heart attacks , although none since taking office in 2001 . NNP VBZ VBN CD NN NNS , IN NN IN VBG NN IN CD . The blood clot was discovered shortly after Cheney returned from a trip that took him to Australia and South Asia . DT NN NN VBD VBN RB IN NNP VBD IN DT NN WDT VBD PRP TO NNP CC NNP NNP . Doctors say there is an increased risk of developing blood clots from long flights because of prolonged periods of immobility . NNS VBP EX VBZ DT JJ NN IN VBG NN NNS IN JJ NNS IN IN JJ NNS IN NN . Israeli President Shimon Peres says tensions between Israel and Syria are now ' over , ' and Israel is ready to negotiate for peace with Syria . JJ NNP NNP NNP VBZ NNS IN NNP CC NNP VBP RB `` IN , `` CC NNP VBZ JJ TO VB IN NN IN NNP . Mr. Peres made the comment to foreign reporters Tuesday in Israel . NNP NNP VBD DT NN TO JJ NNS NNP IN NNP . Monday , Israeli Prime Minister Ehud Olmert also said Israel was ready to negotiate with Syria . NNP , JJ NNP NNP NNP NNP RB VBD NNP VBD JJ TO VB IN NNP . The developments come less than two weeks after Syria accused Israel of launching an air strike inside Syria . DT NNS VBP JJR IN CD NNS IN NNP VBD NNP IN VBG DT NN NN IN NNP . Israel has refused to comment on the matter . NNP VBZ VBN TO VB IN DT NN . Media reports have suggested the air strike either targeted Iranian arms destined for Lebanese Hezbollah guerrillas , or a nuclear facility in Syria built with North Korean technology . NNS NNS VBP VBN DT NN NN CC JJ JJ NNS VBN IN JJ NNP NNS , CC DT JJ NN IN NNP VBN IN JJ JJ NN . Last week , Syria protested to the United Nations about the incident and accused Israel of aggression . JJ NN , NNP VBD TO DT NNP NNPS IN DT NN CC VBD NNP IN NN . Peace talks between Syria and Israel collapsed in 2000 . NN NNS IN NNP CC NNP VBD IN CD . A Palestinian teenager has been killed and at least six others wounded in the West Bank in a shootout between Israeli troops and militants . DT JJ NN VBZ VBN VBN CC IN JJS CD NNS VBN IN DT NNP NNP IN DT NN IN JJ NNS CC NNS . Palestinian witnesses in Jenin say the dead 18-year-old was unarmed and was throwing rocks at Israeli troops attempting to arrest a wanted militant from the Islamic Jihad movement . JJ NNS IN NNP VBP DT JJ JJ VBD JJ CC VBD VBG NNS IN JJ NNS VBG TO VB DT JJ NN IN DT NNP NNP NN . Israel says its troops returned fire after Palestinians began shooting and detonating explosives . NNP VBZ PRP$ NNS VBD NN IN NNS VBD VBG CC VBG NNS . In other developments , the Israeli parliament passed a law Wednesday , severely limiting Palestinian lawsuits for damages incurred in Israeli military operations . IN JJ NNS , DT JJ NN VBD DT NN NNP , RB VBG JJ NNS IN NNS VBN IN JJ JJ NNS . The law limits suits brought in Israeli courts to just traffic accidents involving Israeli forces and instances where Palestinians are injured while in Israeli prisons . DT NN VBZ NNS VBN IN JJ NNS TO RB NN NNS VBG JJ NNS CC NNS WRB NNS VBP VBN IN IN JJ NNS . Palestinian medical workers say an Israeli air strike on Gaza has killed a Palestinian militant and wounded two other people . JJ JJ NNS VBP DT JJ NN NN IN NNP VBZ VBN DT JJ NN CC VBD CD JJ NNS . Medics said Monday that the air strike hit near the border , east of Gaza City . NNP VBD NNP IN DT NN NN VBD IN DT NN , NN IN NNP NNP . An Israeli army spokeswoman said the strike targeted a militant who fired a rocket-powered grenade at Israeli soldiers near the border . DT JJ NN NN VBD DT NN VBD DT NN WP VBD DT JJ NN IN JJ NNS IN DT NN . The militant was believed to have been a member of the group Popular Front for the Liberation of Palestine . DT NN VBD VBN TO VB VBN DT NN IN DT NN NNP NNP IN DT NN IN NNP . The new archbishop of Warsaw has assumed his duties , three months after his predecessor admitted to being a communist-era informer and resigned . DT JJ NN IN NNP VBZ VBN PRP$ NNS , CD NNS IN PRP$ NN VBD TO VBG DT NN NN CC VBD . More than 1,000 people attended Palm Sunday Mass today in Warsaw , where a Papal decree was read appointing Kazimierz Nycz , a former bishop in northern Poland , to the post . JJR IN CD NNS VBD NNP NNP NNP NN IN NNP , WRB DT NN NN VBD VBN VBG NNP NNP , DT JJ NN IN JJ NNP , TO DT NN . Pope Benedict XVI appointed the cleric last month , after his previous choice , Stanislaw Wielgus , resigned , admitting he had worked with Poland 's dreaded communist-era police for two decades beginning in the 1960s . NNP NNP NNP VBD DT NN JJ NN , IN PRP$ JJ NN , NNP NNP , VBD , VBG PRP VBD VBN IN NNP POS JJ JJ NN IN CD NNS VBG IN DT NNS . In his admission , Wielgus expressed remorse and said he never informed on or sought to hurt anyone . IN PRP$ NN , NNP VBD NN CC VBD PRP RB VBD IN CC VBN TO VB DT . Polish President Lech Kaczynski and his brother Jaroslaw , the prime minister , have vowed to root out those in public life with close ties to the communist apparatus . JJ NNP NNP NNP CC PRP$ NN NNP , DT JJ NN , VBP VBN TO VB RP DT IN JJ NN IN JJ NNS TO DT NN NN . Health officials in Thailand say a 27-year-old man has died of bird flu . NNP NNS IN NNP VBP DT JJ NN VBZ VBN IN NN NN . He is the second person the virus has killed in the country this year . PRP VBZ DT JJ NN DT NN VBZ VBN IN DT NN DT NN . If confirmed by the World Health Organization , the case would raise Thailand 's bird flu death toll to 16 people since the virus began spreading in Asia in late 2003 . IN VBN IN DT NNP NNP NNP , DT NN MD VB NNP POS NN NN NN NN TO CD NNS IN DT NN VBD VBG IN NNP IN JJ CD . Thai authorities say the latest victim of the H5N1 virus died Thursday in the central province of Uthai Thani , after burying a sick chicken . JJ NNS VBP DT JJS NN IN DT NNP NN VBD NNP IN DT JJ NN IN NNP NNP , IN VBG DT JJ NN . They say the man 's wife is taking anti-viral medication and is being monitored . PRP VBP DT NN POS NN VBZ VBG JJ NN CC VBZ VBG VBN . In his radio address Saturday , Thai Prime Minister Thaksin Shinawatra called on farmers to report promptly any suspected cases of bird flu in their flocks . IN PRP$ NN NN NNP , JJ NNP NNP NNP NNP VBD IN NNS TO VB RB DT JJ NNS IN NN NN IN PRP$ NNS . The WHO says bird flu has killed at least 134 people worldwide since 2003 . DT NNP VBZ NN NN VBZ VBN IN JJS CD NNS JJ IN CD . Pakistan is condemning the loss of civilian lives during a NATO attack on suspected Taleban militants along the border with Afghanistan . NNP VBZ VBG DT NN IN JJ NNS IN DT NNP NN IN JJ NNP NNS IN DT NN IN NNP . Pakistani spokeswoman Tasnim Aslam said Monday the NATO mission in Afghanistan must be more cautious before launching military operations near Pakistan 's borders . JJ NN NNP NNP VBD NNP DT NNP NN IN NNP MD VB RBR JJ IN VBG JJ NNS IN NNP POS NNS . She also said any military action taken inside Pakistan must only be conducted by Pakistani forces . PRP RB VBD DT JJ NN VBN IN NNP MD RB VB VBN IN JJ NNS . Nine civilians died when a rocket fired by NATO forces on Saturday hit a building in Pakistan 's North Waziristan province . CD NNS VBD WRB DT NN VBN IN NNP NNS IN NNP VBD DT NN IN NNP POS NNP NNP NN . At the time , NATO says it was battling Taleban insurgents near the Afghan-Pakistan border . IN DT NN , NNP VBZ PRP VBD VBG NNP NNS IN DT JJ NN . The spokeswoman says Pakistan has issued a complaint with NATO . DT NN VBZ NNP VBZ VBN DT NN IN NNP . Civilian deaths during NATO and U.S.-led military operations in Afghanistan have prompted sharp criticism from Afghan officials , including President Hamid Karzai . JJ NNS IN NNP CC JJ JJ NNS IN NNP VBP VBN JJ NN IN JJ NNS , VBG NNP NNP NNP . NATO officials have said they are reviewing their rules of engagement to limit civilian causalities but have also blamed Taleban militants for using civilians as human shields . NNP NNS VBP VBN PRP VBP VBG PRP$ NNS IN NN TO VB JJ NNS CC VBP RB VBN NNP NNS IN VBG NNS IN JJ NNS . Officials in Kyrgyzstan say they have detained about 50 people after hundreds of looters tore through a Kurdish village to protest the rape of a four year-old Russian girl . NNS IN NNP VBP PRP VBP VBN IN CD NNS IN NNS IN NNS VBD IN DT JJ NN TO VB DT NN IN DT CD JJ JJ NN . Officials said Monday the group is being held on charges of mass disorder . NNS VBD NNP DT NN VBZ VBG VBN IN NNS IN JJ NN . The riots began Sunday after news spread that a Kurdish suspect in the rape was being held in the village of Petrovka . DT NNS VBD NNP IN NN VBD IN DT JJ NN IN DT NN VBD VBG VBN IN DT NN IN NNP . Ethnic Russian and Kyrgyz protesters charged through the village , smashing windows and overturning cars belonging to ethnic Kurds . NNP JJ CC JJ NNS VBD IN DT NN , VBG NNS CC VBG NNS VBG TO JJ NNS . Interior Minister spokesman Bakyt Seitov says the situation is under control . NNP NNP NN NNP NNP VBZ DT NN VBZ IN NN . Officials say such ethnic clashes are rare in Kyrgyzstan , a former Soviet republic where Turkic-speaking groups live along side Russians , Chinese and others . NNS VBP JJ JJ NNS VBP JJ IN NNP , DT JJ JJ NN WRB JJ NNS VBP IN JJ NNS , NNS CC NNS . Police in the Nepalese capital , Kathmandu , detained at least 16 more activists Monday , who were protesting against King Gyanendra 's seizure of absolute power . NNS IN DT JJ NN , NNP , VBD IN JJS CD JJR NNS NNP , WP VBD VBG IN NNP NNP POS NN IN JJ NN . The protesters defied a ban on demonstrations and gathered near the Central Secretariat building , shouting slogans like ' down with autocracy , we want democracy . ' DT NNS VBD DT NN IN NNS CC VBD IN DT NNP NNP NN , VBG NNS IN `` RP IN NN , PRP VBP NN . `` Sunday , seven activists - all members of the Nepali Congress party - were arrested after staging a similar protest . NNP , CD NNS IN DT NNS IN DT NNP NNP NN : VBD VBN IN VBG DT JJ NN . Meanwhile , the Nepalese army said Maoist rebels kidnapped and killed three unarmed soldiers in the eastern Ramechhap district Saturday . RB , DT JJ NN VBD JJ NNS VBN CC VBN CD JJ NNS IN DT JJ NN NN NNP . Nepal 's king dismissed the government and assumed all powers on February first , saying the government had failed to stop the Maoist insurgency . NNP POS NN VBD DT NN CC VBD DT NNS IN NNP RB , VBG DT NN VBD VBN TO VB DT NNP NN . Rebels have been fighting nearly a decade to replace Nepal 's monarchy with a communist state . NNS VBP VBN VBG RB DT NN TO VB NNP POS NN IN DT JJ NN . Russian human rights advocates and liberal politicians gathered in Moscow Monday to criticize President Vladimir Putin and call for unity by opposition groups . JJ JJ NNS NNS CC JJ NNS VBD IN NNP NNP TO VB NNP NNP NNP CC VB IN NN IN NN NNS . Speakers at the congress slammed Mr. Putin for decisions they say are steadily moving Russia back into an authoritarian state . NNS IN DT NN VBD NNP NNP IN NNS PRP VBP VBP RB VBG NNP RB IN DT JJ NN . Among those attending were former world chess champion Gary Kasparov and ex-Prime Minister Mikhail Kasyanov . IN DT VBG VBD JJ NN NN NN NNP NNP CC NNP NNP NNP NNP . Russia 's political liberals are gearing up for the 2007 parliamentary elections and the 2008 presidential election . NNP POS JJ NNS VBP VBG RP IN DT CD JJ NNS CC DT CD JJ NN . Meanwhile , Mr. Putin made a surprise visit to Chechnya Monday to attend the opening of the troubled province 's new parliament . RB , NNP NNP VBD DT NN NN TO NNP NNP TO VB DT NN IN DT JJ NN POS JJ NN . The president traveled to the capital city of Grozny by helicopter . DT NN VBD TO DT NN NN IN NNP IN NN . Thousands of Russian troops have died in continued fighting with Chechen rebels since Mr. Putin assumed power in 1999 . NNS IN JJ NNS VBP VBN IN JJ NN IN JJ NNS IN NNP NNP VBD NN IN CD . The Central Intelligence Agency , CIA , says Iraq has become a magnet for international terrorist activity and provides an ideal training ground for terrorists to enhance their skills . DT NNP NNP NNP , NNP , VBZ NNP VBZ VBN DT NN IN JJ JJ NN CC VBZ DT JJ NN NN IN NNS TO VB PRP$ NNS . In a report on long-term global trends released Thursday , the CIA says political Islam will have a significant impact in the next 15 years , rallying disparate ethnic and national groups and possibly creating an authority that transcends national boundaries . IN DT NN IN JJ JJ NNS VBN NNP , DT NNP VBZ JJ NNP MD VB DT JJ NN IN DT JJ CD NNS , VBG JJ JJ CC JJ NNS CC RB VBG DT NN WDT VBZ JJ NNS . It says al-Qaida will likely be superseded by other Islamic extremist groups that merge with local separatist movements . PRP VBZ NNP MD RB VB VBN IN JJ JJ NN NNS WDT VBP IN JJ JJ NNS . The CIA says the prospect of a biological or nuclear weapons attack remains the greatest danger facing the United States . DT NNP VBZ DT NN IN DT JJ CC JJ NNS NN VBZ DT JJS NN VBG DT NNP NNPS . Analysts also say globalization will be the dominant force in the next 15 years and will generate enormous economic , cultural and political changes across the planet . NNS RB VBP NN MD VB DT JJ NN IN DT JJ CD NNS CC MD VB JJ JJ , JJ CC JJ NNS IN DT NN . U.S. business tycoon Donald Trump intends to build a high-rise building in the former Soviet republic of Georgia . NNP NN NN NNP NNP VBZ TO VB DT JJ NN IN DT JJ JJ NN IN NNP . Georgia 's presidential press office and the Trump organization confirmed Wednesday that Trump had signed a letter of intent to build one of his self-named towers in the country . NNP POS JJ NN NN CC DT NNP NN VBD NNP IN NNP VBD VBN DT NN IN NN TO VB CD IN PRP$ JJ NNS IN DT NN . Trump signed the deal with the Georgian business group Silk Road during a visit of President Mikheil Saakashvili to New York . NNP VBD DT NN IN DT JJ NN NN NNP NNP IN DT NN IN NNP NNP NNP TO NNP NNP . An executive vice president of the Trump organization , Michael Cohen , said Mr. Saakashvili was present at the signing . DT JJ NN NN IN DT NNP NN , NNP NNP , VBD NNP NNP VBD JJ IN DT NN . Cohen said in a statement that while the letter of intent was just the first in a series of agreements , it demonstrated Trump 's interest in investing in Georgia . NNP VBD IN DT NN IN IN DT NN IN NN VBD RB DT NN IN DT NN IN NNS , PRP VBD NNP POS NN IN VBG IN NNP . Mr. Saakashvili 's press office said potential sites for the development included Tbilisi and along the Black Sea coast . NNP NNP POS NN NN VBD JJ NNS IN DT NN VBD NNP CC IN DT NNP NNP NN . A suicide car bomber in northern Iraq has killed at least 20 people at the funeral of a local Kurdish official . DT NN NN NN IN JJ NNP VBZ VBN IN JJS CD NNS IN DT NN IN DT JJ NNP NN . The blast in Tal Afar wounded 30 others taking part in the funeral procession . DT NN IN NNP NNP VBD CD NNS VBG NN IN DT JJ NN . In Baghdad , insurgents gunned down five Iraqi policemen at a checkpoint Sunday . IN NNP , NNS VBD RP CD JJ NNS IN DT NN NNP . And a car bomber killed four Iraqis in an attack on a U.S. military convoy . CC DT NN NN VBD CD NNS IN DT NN IN DT NNP JJ NN . In other developments , a new video shows a bound blond-haired man claiming to be a 63-year-old Australian national surrounded by gunmen and urging coalition forces to leave Iraq . IN JJ NNS , DT JJ NN VBZ DT VBN JJ NN VBG TO VB DT JJ JJ NN VBN IN NNS CC VBG NN NNS TO VB NNP . Authorities are working to authenticate the tape . NNS VBP VBG TO VB DT NN . Meanwhile , Iraqi police say five suspects arrested in the kidnapping and murder of British aid worker Margaret Hassan have admitted involvement in her death . RB , JJ NNS VBP CD NNS VBN IN DT NN CC NN IN JJ NN NN NNP NNP VBP VBN NN IN PRP$ NN . He says they were detained early Sunday south of Baghdad . PRP VBZ PRP VBD VBN JJ NNP NN IN NNP . Authorities in Tajikistan are tearing down advertisements for mobile telephones , after President Emomali Rakhmon criticized use of the devices . NNS IN NNP VBP VBG RP NNS IN JJ NNS , IN NNP NNP NNP VBD NN IN DT NNS . The leader of the Central Asian nation says people are spending too much of their monthly income on mobile phone service . DT NN IN DT NNP NNP NN VBZ NNS VBP VBG RB RB IN PRP$ JJ NN IN JJ NN NN . President Rakhmon has also warned of potential health hazards stemming from mobile phone use . NNP NNP VBZ RB VBN IN JJ NN NNS VBG IN JJ NN NN . More than 70 percent of Tajikistan 's population of more than seven million own mobile phones . JJR IN CD NN IN NNP POS NN IN JJR IN CD CD VBP JJ NNS . Tajik mobile phone companies say the restrictions on advertising and other measures will hurt the development of the mobile telecommunications industry which they say has been flourishing in the country . JJ JJ NN NNS VBP DT NNS IN NN CC JJ NNS MD VB DT NN IN DT JJ NN NN WDT PRP VBP VBZ VBN VBG IN DT NN . Chinese state media say the most famous Buddhist temple in Tibet has opened its doors again to worshippers . JJ NN NNS VBP DT RBS JJ NN NN IN NNP VBZ VBN PRP$ NNS RB TO NNS . Chinese authorities shut down the Jokhang Temple , in the Tibetan capital of Lhasa , after a series of protests by Tibetan monks in March . JJ NNS VBD RP DT NNP NNP , IN DT JJ NN IN NNP , IN DT NN IN NNS IN JJ NNS IN NNP . The protests , initially peacefully , eventually led to violent clashes between the monks and Chinese authorities . DT NNS , RB RB , RB VBD TO JJ NNS IN DT NNS CC JJ NNS . The Xinhua news agency said the temple had reopened Friday . DT NNP NN NN VBD DT NN VBD VBN NNP . The agency reported that an estimated 400 Buddhist pilgrims and 40 tourists had visited the temple within hours after it opened again . DT NN VBD IN DT VBN CD NNP NNS CC CD NNS VBD VBN DT NN IN NNS IN PRP VBD RB . China has accused the Dalai Lama , Tibet 's exiled spiritual leader , of provoking unrest as part of a bid for Tibetan independence . NNP VBZ VBN DT NNP NNP , NNP POS JJ JJ NN , IN VBG NN IN NN IN DT NN IN JJ NN . The Dalai Lama says that he wants autonomy , but not independence , for the region . DT NNP NNP VBZ IN PRP VBZ NN , CC RB NN , IN DT NN . Chinese agricultural authorities have reported an outbreak of bird flu among poultry in Tibet . JJ JJ NNS VBP VBN DT NN IN NN NN IN NN IN NNP . China 's official Xinhua News Agency says the outbreak occurred in Tibet 's Gongga county , which lies about 50 kilometers outside the capital , Lhasa . NNP POS JJ NNP NNP NNP VBZ DT NN VBD IN NNP POS NNP NN , WDT VBZ IN CD NNS IN DT NN , NNP . Xinhua says the outbreak , of the deadly H5N1 strain of the virus , had been suspected since January 25 , and was confirmed Tuesday . NNP VBZ DT NN , IN DT JJ NNP NN IN DT NN , VBD VBN VBN IN NNP CD , CC VBD VBN NNP . The Ministry of Agriculture says efforts are underway to contain the outbreak . DT NNP IN NNP VBZ NNS VBP JJ TO VB DT NN . One thousand birds have died from the virus , more than 1,300 others have been culled to prevent it from spreading . CD CD NNS VBP VBN IN DT NN , JJR IN CD NNS VBP VBN VBN TO VB PRP IN VBG . No human infections have been reported . DT JJ NNS VBP VBN VBN . Bird flu remains difficult for humans to catch but scientists worry it could mutate into a form that passes easily between people . NNP NN VBZ JJ IN NNS TO VB CC NNS VBP PRP MD VB IN DT NN WDT VBZ RB IN NNS . The World Health Organization says the bird flu virus has killed more than 200 people worldwide since 2003 , mostly in Asia . DT NNP NNP NNP VBZ DT NN NN NN VBZ VBN JJR IN CD NNS JJ IN CD , RB IN NNP . Witnesses in southwestern Somalia say fighting between government troops and Islamist militants has killed at least 14 people . NNS IN JJ NNP VBP VBG IN NN NNS CC NNP NNS VBZ VBN IN JJS CD NNS . The clash broke out Wednesday in the Bakool region , after government troops attacked a base belonging to the al-Shabab militant group in the Rabdhure district . DT NN VBD RP NNP IN DT NNP NN , IN NN NNS VBD DT NN VBG TO DT JJ JJ NN IN DT NNP NN . Heavy gunfire was exchanged and at least one vehicle was burned . JJ NN VBD VBN CC IN JJS CD NN VBD VBN . Another vehicle was reported to have been captured by the militants . DT NN VBD VBN TO VB VBN VBN IN DT NNS . Al-Shabab controls much of southern and central Somalia after a two-year insurgency , and has moved to impose its own strict form of Islamic law in areas under its control . NNP VBZ NN IN JJ CC JJ NNP IN DT JJ NN , CC VBZ VBN TO VB PRP$ JJ JJ NN IN JJ NN IN NNS IN PRP$ NN . Last week , Somalia 's cabinet voted to make Sharia the basis of Somalia 's legal system , in an effort to appease the insurgents . JJ NN , NNP POS NN VBD TO VB NNP DT NN IN NNP POS JJ NN , IN DT NN TO VB DT NNS . Pakistani authorities say they have arrested two suspected suicide bombers who were allegedly planning to attack a mosque and government buildings in the capital , Islamabad . JJ NNS VBP PRP VBP VBN CD JJ NN NNS WP VBD RB VBG TO VB DT NN CC NN NNS IN DT NN , NNP . Bin Amin , a senior police official in the capital , says authorities are looking for others who may be involved in the alleged plot . NNP NNP , DT JJ NN NN IN DT NN , VBZ NNS VBP VBG IN NNS WP MD VB VBN IN DT JJ NN . He told the Associated Press the men were linked to the Pakistani Taliban in the country 's South Waziristan region . PRP VBD DT NNP NNP DT NNS VBD VBN TO DT JJ NNP IN DT NN POS NNP NNP NN . The alleged plot was set to be carried out in an exclusive and high security neighborhood in Islamabad , where many foreign embassies , Pakistan 's parliament and government ministries are located . DT JJ NN VBD VBN TO VB VBN RP IN DT JJ CC JJ NN NN IN NNP , WRB JJ JJ NNS , NNP POS NN CC NN NNS VBP VBN . The last terrorist attack in Islamabad took place in October 2009 , when a suicide bomber killed five U.N. staffers at the Islamabad office of the World Food Program . DT JJ JJ NN IN NNP VBD NN IN NNP CD , WRB DT NN NN VBD CD NNP NNS IN DT NNP NN IN DT NNP NNP NNP . In September 2008 a massive truck bomb destroyed Islamabad 's Marriott Hotel killing at least 60 people . IN NNP CD DT JJ NN NN VBD NNP POS NNP NNP VBG IN JJS CD NNS . France 's presidential election finalists are to debate Wednesday , in a two-hour , televised event ahead of this Sunday 's vote . NNP POS JJ NN NNS VBP TO VB NNP , IN DT JJ , JJ NN RB IN DT NNP POS NN . The debate between conservative frontrunner Nicholas Sarkozy and Socialist Segolene Royal begins at 9.00 p.m. local time ( 1900 UTC ) and is expected to draw more than 20 million French viewers - an audience size usually reserved for World Cup soccer finals . DT NN IN JJ NN NNP NNP CC NNP NNP NNP VBZ IN CD RB JJ NN LRB CD NNP RRB CC VBZ VBN TO VB JJR IN CD CD JJ NNS IN DT NN NN RB VBN IN NNP NNP NN NNS . The latest opinion poll shows Sarkozy maintaining at least a four percentage point lead over Royal . DT JJS NN NN VBZ NNP VBG IN JJS DT CD NN NN NN IN NNP . On Tuesday , the fourth-place finisher in the April 22 first-round vote , ultra-conservative Jean-Marie Le Pen , urged his supporters to boycott the run-off election . IN NNP , DT JJ NN IN DT NNP CD JJ NN , JJ NNP NNP NNP , VBD PRP$ NNS TO VB DT JJ NN . The third-place finisher , centrist Francois Bayrou , has not formally backed either candidate . DT JJ NN , NN NNP NNP , VBZ RB RB VBN DT NN . Russia 's President Vladimir Putin was meeting President Bush at the White House Friday for talks on bilateral and global issues . NNP POS NNP NNP NNP VBD VBG NNP NNP IN DT NNP NNP NNP IN NNS IN NN CC JJ NNS . White House officials have said the talks will focus on deepening the U.S.-Russian partnership to face current challenges and opportunities . NNP NNP NNS VBP VBN DT NNS MD VB IN VBG DT JJ NN TO VB JJ NNS CC NNS . Relations between the two leaders have been strained recently by differences over Iran 's nuclear program . NNP IN DT CD NNS VBP VBN VBN RB IN NNS IN NNP POS JJ NN . Mr. Putin supports Iran 's right to develop nuclear technology , while Mr. Bush warns that the Islamic republic may be seeking nuclear weapons . NNP NNP VBZ NNP POS NN TO VB JJ NN , IN NNP NNP VBZ IN DT JJ NN MD VB VBG JJ NNS . Mr. Putin traveled to Washington after addressing the United Nations World Summit in New York on Thursday . NNP NNP VBD TO NNP IN VBG DT NNP NNP NNP NNP IN NNP NNP IN NNP . In his speech , he warned terrorism is the main threat to human rights and development , and called on the United Nations to be the center for international anti-terrorism efforts . IN PRP$ NN , PRP VBD NN VBZ DT JJ NN TO JJ NNS CC NN , CC VBD IN DT NNP NNPS TO VB DT NN IN JJ JJ NNS . The Bush administration is asking the state of Texas to hold new hearings for 51 Mexicans on death row , who say they were denied consular assistance in violation of international law . DT NNP NN VBZ VBG DT NN IN NNP TO VB JJ NNS IN CD NNS IN NN NN , WP VBP PRP VBD VBN JJ NN IN NN IN JJ NN . The move is in response to a 2004 ruling by the International Court of Justice , which said Texas officials failed to notify the Mexicans of their right to talk to consular officials shortly after their arrests . DT NN VBZ IN NN TO DT CD NN IN DT NNP NNP IN NNP , WDT VBD NNP NNS VBD TO VB DT NNS IN PRP$ NN TO VB TO JJ NNS RB IN PRP$ NNS . U.S. officials said in a recent Supreme Court filing that complying with the World Court 's decision will help protect the interests of U.S. citizens abroad and underscore America 's commitment to international law . NNP NNS VBD IN DT JJ NNP NNP NN WDT VBG IN DT NNP NNP POS NN MD VB VB DT NNS IN NNP NNS RB CC VB NNP POS NN TO JJ NN . The decision comes just weeks ahead of a U.S. Supreme Court hearing in the case of Jose Medellin , one of five gang members sentenced to death for the rape and murder of two Texas girls in 1993 . DT NN VBZ RB NNS RB IN DT NNP NNP NNP NN IN DT NN IN NNP NNP , CD IN CD NN NNS VBD TO NN IN DT NN CC NN IN CD NNP NNS IN CD . Coleco Industries Inc. , a once high-flying toy maker whose stock peaked at $ 65 a share in the early 1980s , filed a Chapter 11 reorganization plan that provides just 1.125 cents a share for common stockholders . NNP NNPS NNP , DT RB JJ NN NN WP$ NN VBD IN $ CD DT NN IN DT JJ NNS , VBN DT NN CD NN NN WDT VBZ RB CD NNS DT NN IN JJ NNS . Under the plan , unsecured creditors , who are owed about $ 430 million , would receive about $ 92 million , or 21 cents for each dollar they are owed . IN DT NN , JJ NNS , WP VBP VBN IN $ CD CD , MD VB IN $ CD CD , CC CD NNS IN DT NN PRP VBP VBN . In addition , they will receive stock in the reorganized company , which will be named Ranger Industries Inc . IN NN , PRP MD VB NN IN DT VBN NN , WDT MD VB VBN NNP NNPS NNP . After these payments , about $ 2,25,000 will be available for the 20 million common shares outstanding . IN DT NNS , IN $ CD MD VB JJ IN DT CD CD JJ NNS JJ . The Avon , Conn. , company 's stock hit a high in 1983 after it unveiled its Adam home computer , but the product was plagued with glitches and the company 's fortunes plunged . DT NNP , NNP , NN POS NN VBD DT NN IN CD IN PRP VBD PRP$ NNP NN NN , CC DT NN VBD VBN IN NNS CC DT NN POS NNS VBD . But Coleco bounced back with the introduction of the Cabbage Patch dolls , whose sales hit $ 600 million in 1985 . CC NNP VBD RB IN DT NN IN DT NNP NNP NNS , WP$ NNS VBD $ CD CD IN CD . But as the craze died , Coleco failed to come up with another winner and filed for bankruptcy-law protection in July 1988 . CC IN DT NN VBD , NNP VBD TO VB RP IN DT NN CC VBN IN NN NN IN NNP CD . The plan was filed jointly with unsecured creditors in federal bankruptcy court in New York and must be approved by the court . DT NN VBD VBN RB IN JJ NNS IN JJ NN NN IN NNP NNP CC MD VB VBN IN DT NN . Comoros has endured more than 20 coups or attempted coups since gaining independence from France in 1975 . NNP VBZ VBN JJR IN CD NNS CC VBN NNS IN VBG NN IN NNP IN CD . In 1997 , the islands of Anjouan and Moheli declared independence from Comoros . IN CD , DT NNS IN NNP CC NNP VBD NN IN NNP . In 1999 , military chief Col. AZALI seized power in a bloodless coup , and helped negotiate the 2000 Fomboni Accords power-sharing agreement in which the federal presidency rotates among the three islands , and each island maintains its own local government . IN CD , NN NN NNP NNP VBD NN IN DT JJ NN , CC VBD VB DT CD NNP NNPS JJ NN IN WDT DT JJ NN VBZ IN DT CD NNS , CC DT NN VBZ PRP$ JJ JJ NN . AZALI won the 2002 presidential election , and each island in the archipelago elected its own president . NNP VBD DT CD JJ NN , CC DT NN IN DT NN VBD PRP$ JJ NN . AZALI stepped down in 2006 and President SAMBI was elected to office . NNP VBD RP IN CD CC NNP NNP VBD VBN TO NN . In 2007 , Mohamed BACAR effected Anjouan 's de-facto secession from the Union , refusing to step down in favor of fresh Anjouanais elections when Comoros ' other islands held legitimate elections in July . IN CD , NNP NNP VBD NNP POS JJ NN IN DT NNP , VBG TO VB RB IN NN IN JJ NNP NNS WRB NNS POS JJ NNS VBD JJ NNS IN NNP . The African Union ( AU ) initially attempted to resolve the political crisis by applying sanctions and a naval blockade on Anjouan , but in March 2008 , AU and Comoran soldiers seized the island . DT NNP NNP LRB NNP RRB RB VBN TO VB DT JJ NN IN VBG NNS CC DT JJ NN IN NNP , CC IN NNP CD , NNP CC NNP NNS VBD DT NN . The move was generally welcomed by the island 's inhabitants . DT NN VBD RB VBN IN DT NN POS NNS . The Holy See is supported financially by a variety of sources , including investments , real estate income , and donations from Catholic individuals , dioceses , and institutions ; these help fund the Roman Curia ( Vatican bureaucracy ) , diplomatic missions , and media outlets . DT NNP NNP VBZ VBN RB IN DT NN IN NNS , VBG NNS , JJ NN NN , CC NNS IN NNP NNS , NNS , CC NNS ; DT NN VB DT NNP NNP LRB NNP NN RRB , JJ NNS , CC NNS NNS . The separate Vatican City State budget includes the Vatican museums and post office and is supported financially by the sale of stamps , coins , medals , and tourist mementos ; by fees for admission to museums ; and by publications sales . DT JJ NNP NNP NNP NN VBZ DT NNP NNS CC NN NN CC VBZ VBN RB IN DT NN IN NNS , NNS , NNS , CC NN NNS ; IN NNS IN NN TO NNS ; CC IN NNS NNS . Moreover , an annual collection taken up in dioceses and direct donations go to a non-budgetary fund known as Peter 's Pence , which is used directly by the Pope for charity , disaster relief , and aid to churches in developing nations . RB , DT JJ NN VBN RP IN NNS CC JJ NNS VBP TO DT JJ NN VBN IN NNP POS NNP , WDT VBZ VBN RB IN DT NNP IN NN , NN NN , CC NN TO NNS IN VBG NNS . The incomes and living standards of lay workers are comparable to those of counterparts who work in the city of Rome . DT NNS CC VBG NNS IN JJ NNS VBP JJ TO DT IN NNS WP VBP IN DT NN IN NNP . Bolivia , named after independence fighter Simon BOLIVAR , broke away from Spanish rule in 1825 ; much of its subsequent history has consisted of a series of nearly 200 coups and countercoups . NNP , VBN IN NN NN NNP NNP , VBD RB IN JJ NN IN CD ; NN IN PRP$ JJ NN VBZ VBN IN DT NN IN RB CD NNS CC NNS . Democratic civilian rule was established in 1982 , but leaders have faced difficult problems of deep-seated poverty , social unrest , and illegal drug production . JJ JJ NN VBD VBN IN CD , CC NNS VBP VBN JJ NNS IN JJ NN , JJ NN , CC JJ NN NN . In December 2005 , Bolivians elected Movement Toward Socialism leader Evo MORALES president - by the widest margin of any leader since the restoration of civilian rule in 1982 - after he ran on a promise to change the country 's traditional political class and empower the nation 's poor , indigenous majority . IN NNP CD , NNS VBD NNP NNP NNP NN NNP NNP NN : IN DT JJS NN IN DT NN IN DT NN IN JJ NN IN CD : IN PRP VBD IN DT NN TO VB DT NN POS JJ JJ NN CC VB DT NN POS NN , JJ NN . However , since taking office , his controversial strategies have exacerbated racial and economic tensions between the Amerindian populations of the Andean west and the non-indigenous communities of the eastern lowlands . RB , IN VBG NN , PRP$ JJ NNS VBP VBN JJ CC JJ NNS IN DT JJ NNS IN DT NNP NN CC DT JJ NNS IN DT JJ NNS . In December 2009 , President MORALES easily won reelection , and his party took control of the legislative branch of the government , which will allow him to continue his process of change . IN NNP CD , NNP NNP RB VBD NN , CC PRP$ NN VBD NN IN DT JJ NN IN DT NN , WDT MD VB PRP TO VB PRP$ NN IN NN . Estonia , a 2004 European Union entrant , has a modern market-based economy and one of the higher per capita income levels in Central Europe and the Baltic region . NNP , DT CD NNP NNP NN , VBZ DT JJ JJ NN CC CD IN DT JJR IN NN NN NNS IN NNP NNP CC DT JJ NN . Estonia 's successive governments have pursued a free market , pro-business economic agenda and have wavered little in their commitment to pro-market reforms . NNP POS JJ NNS VBP VBN DT JJ NN , JJ JJ NN CC VBP VBN RB IN PRP$ NN TO JJ NNS . The current government has followed relatively sound fiscal policies that have resulted in balanced budgets and very low public debt . DT JJ NN VBZ VBN RB JJ JJ NNS WDT VBP VBN IN JJ NNS CC RB JJ JJ NN . The economy benefits from strong electronics and telecommunications sectors and strong trade ties with Finland , Sweden , and Germany . DT NN NNS IN JJ NNS CC NNS NNS CC JJ NN NNS IN NNP , NNP , CC NNP . Tallinn 's priority has been to sustain high growth rates - on average 8 % per year from 2003 to 2007 . NNP POS NN VBZ VBN TO VB JJ NN NNS : IN JJ CD NN IN NN IN CD TO CD . Estonia 's economy slowed down markedly and fell sharply into recession in mid-2008 , primarily as a result of an investment and consumption slump following the bursting of the real estate market bubble . NNP POS NN VBD RB RB CC VBD RB IN NN IN CD , RB IN DT NN IN DT NN CC NN NN VBG DT NN IN DT JJ NN NN NN . GDP dropped nearly 14 % in 2009 , among the world 's highest rates of contraction . NN VBD RB CD NN IN CD , IN DT NN POS JJS NNS IN NN . Rising exports to Sweden and Finland lead an economic recovery in 2010 , but unemployment stands above 17 % . VBG NNS TO NNP CC NNP VBP DT JJ NN IN CD , CC NN NNS IN CD NN . Estonia joined the OECD in December 2010 and adopted the euro in January 2011 . NNP VBD DT NNP IN NNP CD CC VBD DT NN IN NNP CD . Italy became a nation-state in 1861 when the regional states of the peninsula , along with Sardinia and Sicily , were united under King Victor EMMANUEL II . NNP VBD DT NN IN CD WRB DT JJ NNS IN DT NN , IN IN NNP CC NNP , VBD VBN IN NNP NNP NNP NNP . An era of parliamentary government came to a close in the early 1920s when Benito MUSSOLINI established a Fascist dictatorship . DT NN IN JJ NN VBD TO DT NN IN DT JJ NNS WRB NNP NNP VBD DT NN NN . His alliance with Nazi Germany led to Italy 's defeat in World War II . PRP$ NN IN NNP NNP VBD TO NNP POS NN IN NNP NNP NNP . A democratic republic replaced the monarchy in 1946 and economic revival followed . DT JJ NN VBD DT NN IN CD CC JJ NN VBD . Italy was a charter member of NATO and the European Economic Community ( EEC ) . NNP VBD DT NN NN IN NNP CC DT JJ NNP NNP LRB NNP RRB . It has been at the forefront of European economic and political unification , joining the Economic and Monetary Union in 1999 . PRP VBZ VBN IN DT NN IN JJ JJ CC JJ NN , VBG DT NNP CC NNP NNP IN CD . Persistent problems include illegal immigration , organized crime , corruption , high unemployment , sluggish economic growth , and the low incomes and technical standards of southern Italy compared with the prosperous north . JJ NNS VBP JJ NN , VBN NN , NN , JJ NN , JJ JJ NN , CC DT JJ NNS CC JJ NNS IN JJ NNP VBN IN DT JJ NN . Indonesia , a vast polyglot nation , has weathered the global financial crisis relatively smoothly because of its heavy reliance on domestic consumption as the driver of economic growth . NNP , DT JJ NN NN , VBZ VBN DT JJ JJ NN RB RB IN IN PRP$ JJ NN IN JJ NN IN DT NN IN JJ NN . Increasing investment by both local and foreign investors is also supporting solid growth . VBG NN IN DT JJ CC JJ NNS VBZ RB VBG JJ NN . Although the economy slowed to 4.5 % growth in 2009 from the 6 %-plus growth rate recorded in 2007 and 2008 , by 2010 growth returned to a 6 % rate . IN DT NN VBD TO CD NN NN IN CD IN DT CD JJ NN NN VBN IN CD CC CD , IN CD NN VBD TO DT CD NN NN . During the recession , Indonesia outperformed most of its regional neighbors . IN DT NN , NNP VBD JJS IN PRP$ JJ NNS . The government made economic advances under the first administration of President YUDHOYONO , introducing significant reforms in the financial sector , including tax and customs reforms , the use of Treasury bills , and capital market development and supervision . DT NN VBD JJ NNS IN DT JJ NN IN NNP NNP , VBG JJ NNS IN DT JJ NN , VBG NN CC NNS NNS , DT NN IN NNP NNS , CC NN NN NN CC NN . Indonesia 's debt-to-GDP ratio in recent years has declined steadily because of increasingly robust GDP growth and sound fiscal stewardship , leading two of the three leading credit agencies to upgrade credit ratings for Indonesia 's sovereign debt to one notch below investment grade . NNP POS JJ NN IN JJ NNS VBZ VBN RB IN IN RB JJ NN NN CC JJ JJ NN , VBG CD IN DT CD VBG NN NNS TO VB NN NNS IN NNP POS JJ NN TO CD NN IN NN NN . Indonesia still struggles with poverty and unemployment , inadequate infrastructure , corruption , a complex regulatory environment , and unequal resource distribution among regions . NNP RB VBZ IN NN CC NN , JJ NN , NN , DT JJ JJ NN , CC JJ NN NN IN NNS . YUDHOYONO and his vice president , respected economist BOEDIONO , have maintained broad continuity of economic policy , although the economic reform agenda has been slowed during the first year of their term by corruption scandals and the departure of an internationally respected finance minister . NNP CC PRP$ NN NN , JJ NN NNP , VBP VBN JJ NN IN JJ NN , IN DT JJ NN NN VBZ VBN VBN IN DT JJ NN IN PRP$ NN IN NN NNS CC DT NN IN DT RB JJ NN NN . In late 2010 , increasing inflation , driven by higher and volatile food prices , posed an increasing challenge to economic policymakers and threatened to push millions of the near-poor below the poverty line . IN JJ CD , VBG NN , VBN IN JJR CC JJ NN NNS , VBD DT VBG NN TO JJ NNS CC VBD TO VB NNS IN DT JJ IN DT NN NN . The government in 2011 faces the ongoing challenge of improving Indonesia 's infrastructure to remove impediments to growth , while addressing climate change concerns , particularly with regard to conserving Indonesia 's forests and peatlands , the focus of a potentially trailblazing $ 1 billion REDD+ pilot project . DT NN IN CD VBZ DT JJ NN IN VBG NNP POS NN TO VB NNS TO NN , IN VBG NN NN NNS , RB IN NN TO VBG NNP POS NNS CC NNS , DT NN IN DT RB VBG $ CD CD NNP NN NN . A WOLF , who in devouring a man had choked himself with a bunch of keys , asked an ostrich to put her head down his throat and pull them out , which she did . DT NN , WP IN VBG DT NN VBD VBN PRP IN DT NN IN NNS , VBD DT NN TO VB PRP$ NN IN PRP$ NN CC VB PRP RP , WDT PRP VBD . ' I suppose , ' said the Wolf , ' you expect payment for that service . ' `` PRP VBP , `` VBD DT NN , `` PRP VBP NN IN DT NN . `` ' A kind act , ' replied the Ostrich , ' is its own reward ; I have eaten the keys . ' `` DT NN NN , `` VBD DT NN , `` VBZ PRP$ JJ NN ; PRP VBP VBN DT NNS . `` To err is human . TO VB VBZ JJ . To put the blame on someone else is doubles . TO VB DT NN IN DT RB VBZ NNS . AT&T fired President John Walter after nine months , saying he lacked intellectual leadership . NNP VBD NNP NNP NNP IN CD NNS , VBG PRP VBD JJ NN . He received a $ 26 million severance package . PRP VBD DT $ CD CD NN NN . Perhaps it 's not Walter who 's lacking intelligence . RB PRP VBZ RB NNP WP VBZ VBG NN . Pope John Paul II The Vatican has released the spiritual testament of Pope John Paul II . NNP NNP NNP NNP DT NNP VBZ VBN DT JJ NN IN NNP NNP NNP NNP . In the document , the pontiff said he considered resigning in 2000 . IN DT NN , DT NN VBD PRP VBD VBG IN CD . He also said he thought about being buried in his native Poland , but decided to leave that decision up to the College of Cardinals . PRP RB VBD PRP VBD IN VBG VBN IN PRP$ JJ NNP , CC VBD TO VB DT NN RB TO DT NNP IN NNPS . The pope requested that his personal notes be destroyed , and said he left no material property . DT NN VBD IN PRP$ JJ NNS VB VBN , CC VBD PRP VBD DT NN NN . He began writing the document a quarter-century ago , and also reflected on his family and youth , and said it was a miracle he survived an assassination attempt in 1981 . PRP VBD VBG DT NN DT NN RB , CC RB VBD IN PRP$ NN CC NN , CC VBD PRP VBD DT NN PRP VBD DT NN NN IN CD . Meanwhile , thousands of people continue to wait hours to view the pope 's body at St. Peter 's Basilica . RB , NNS IN NNS VBP TO VB NNS TO VB DT NN POS NN IN NNP NNP POS NNP . The Vatican says some two million people have already passed by it . DT NNP VBZ DT CD CD NNS VBP RB VBN IN PRP . President Bush and some 200 other world leaders are to attend the pope 's funeral Friday . NNP NNP CC DT CD JJ NN NNS VBP TO VB DT NN POS JJ NNP . The pontiff will be interred in a crypt beneath the basilica . DT NN MD VB VBN IN DT NN IN DT NN . Italian officials have imposed extraordinary security measures that include anti-aircraft missiles and instituting a no-fly zone over Rome . JJ NNS VBP VBN JJ NN NNS WDT VBP JJ NNS CC VBG DT JJ NN IN NNP . Sudan promised on Saturday to implement a resolution adopted by the 53-nation U.N. Human Rights Commission that unanimously condemns human-rights violations in Sudan 's western Darfur region . NNP VBD IN NNP TO VB DT NN VBN IN DT JJ NNP NNP NNP NNP WDT RB VBZ JJ NNS IN NNP POS JJ NNP NN . Sudan 's State Minister of Foreign Affairs , Najib el-Kheir , says his country will cooperate with a special investigator appointed by the Commission to monitor the human-rights situation in Darfur . NNP POS NNP NNP IN NNP NNP , NNP NNP , VBZ PRP$ NN MD VB IN DT JJ NN VBN IN DT NNP TO VB DT JJ NN IN NNP . The Geneva-based Human Rights Commission called on Khartoum to disarm Arab militias that have been terrorizing villagers in Darfur , and to bring to justice all those involved in human-rights violations . DT JJ NNP NNP NNP VBD IN NNP TO VB JJ NNS WDT VBP VBN VBG NNS IN NNP , CC TO VB TO NN PDT DT VBN IN JJ NNS . An estimated 1,80,000 people have been killed in Darfur since February 2003 . DT VBN CD NNS VBP VBN VBN IN NNP IN NNP CD . Iran is warning the Group of Eight industrialized nations against making any decisions on its nuclear program without first consulting Tehran . NNP VBZ VBG DT NNP IN CD JJ NNS IN VBG DT NNS IN PRP$ JJ NN IN JJ NN NN . Iranian Foreign Minister Manouchehr Mottaki says because Iran is not attending the group 's summit this month , a decision made there could negate progress toward resolving the standoff over Iran 's nuclear program . JJ NNP NNP NNP NNP VBZ IN NNP VBZ RB VBG DT NN POS NN DT NN , DT NN VBN EX MD VB NN IN VBG DT NN IN NNP POS JJ NN . Iran 's top nuclear negotiator , Ali Larijani , meets this week with European Union foreign policy chief Javier Solana to discuss an international offer of incentives for Iran to suspend uranium enrichment . NNP POS JJ JJ NN , NNP NNP , VBZ DT NN IN NNP NNP JJ NN NN NNP NNP TO VB DT JJ NN IN NNS IN NNP TO VB NN NN . The five permanent members of the U.N. Security Council plus Germany offered the incentives package . DT CD JJ NNS IN DT NNP NNP NNP CC NNP VBD DT NNS NN . They want Iran to respond before the Group of Eight summit on July 15 . PRP VBP NNP TO VB IN DT NNP IN CD NN IN NNP CD . Iran has said it will not respond until late August . NNP VBZ VBN PRP MD RB VB IN JJ NNP . The U.S. and many of its European allies believe Iran is planning to build nuclear weapons . DT NNP CC NN IN PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS . Iran denies the charge . NNP VBZ DT NN . Israeli Deputy Prime Minister Shimon Peres says Iran should be expelled from the United Nations , after its president called for Israel to be ' wiped off the map . ' JJ NNP NNP NNP NNP NNP VBZ NNP MD VB VBN IN DT NNP NNP , IN PRP$ NN VBD IN NNP TO VB `` VBN RP DT NN . `` Mr. Peres said the statement from President Mahmoud Ahmadinejad goes against the principles of the United Nations . NNP NNP VBD DT NN IN NNP NNP NNP VBZ IN DT NNS IN DT NNP NNPS . Mr. Ahmadinejad was speaking Wednesday in Tehran to thousands of students gathered at a conference titled ' The World Without Zionism . ' NNP NNP VBD VBG NNP IN NNP TO NNS IN NNS VBN IN DT NN VBN `` DT NNP IN NNP . `` He warned that any country or leader that acknowledges Israel will face the wrath of the Islamic community . PRP VBD IN DT NN CC NN WDT VBZ NNP MD VB DT NN IN DT JJ NN . In Washington , a White House spokesman , Scott McClellan , said the remarks underscore the Bush administration 's concerns about Iran 's nuclear intentions . IN NNP , DT NNP NNP NN , NNP NNP , VBD DT NNS VBP DT NNP NN POS NNS IN NNP POS JJ NNS . Speaking on a trip to Moscow , Israel 's foreign minister , Silvan Shalom , also expressed concern over Iran 's nuclear program . VBG IN DT NN TO NNP , NNP POS JJ NN , NNP NNP , RB VBD NN IN NNP POS JJ NN . Several Western nations fear that Iran is secretly trying to build nuclear weapons , a charge Tehran denies . JJ JJ NNS VBP IN NNP VBZ RB VBG TO VB JJ NNS , DT NN NNP VBZ . South Korean news reports say North Korea is preparing to test fire more short-range missiles , following this week 's reported launch of two missiles . JJ JJ NN NNS VBP NNP NNP VBZ VBG TO VB NN RBR JJ NNS , VBG DT NN POS VBN NN IN CD NNS . According to the reports , intelligence sources believe the North has deployed 10 missiles on Chodo , a small island navy base off the peninsula 's western coast . VBG TO DT NNS , NN NNS VBP DT NNP VBZ VBN CD NNS IN NNP , DT JJ NN NN NN IN DT NN POS JJ NN . The missiles include land-to-ship and ship-to-ship missiles . DT NNS VBP NN CC NN NNS . Pyongyang has banned all ships from traveling near Chodo until October 15 . NNP VBZ VBN DT NNS IN VBG IN NNP IN NNP CD . North Korea reportedly fired two missiles from Chodo on Monday as part of a military drill . NNP NNP RB VBD CD NNS IN NNP IN NNP IN NN IN DT JJ NN . But the firings occur at a time of increased tensions between the two Korean rivals , and speculation about the health of North Korean leader Kim Jong Il. CC DT NNS VBP IN DT NN IN VBN NNS IN DT CD JJ NNS , CC NN IN DT NN IN JJ JJ NN NNP NNP NNP South Korea 's Yonhap news agency says the North used an aging Russian-made aircraft to fire the two short-range missiles earlier this week , according to a source with knowledge of North Korean military affairs . NNP NNP POS NNP NN NN VBZ DT NNP VBD DT NN JJ NN TO VB DT CD JJ NNS RBR DT NN , VBG TO DT NN IN NN IN JJ JJ JJ NNS . U.S. Secretary of State Condoleezza Rice says Iran has so far shown no interest in a proposed European deal over its nuclear program . NNP NNP IN NNP NNP NNP VBZ NNP VBZ RB RB VBN DT NN IN DT VBN JJ NN IN PRP$ JJ NN . Ms. Rice says Iran has given no indication that it will accept the offer of trade benefits in exchange for an end to the Tehran government 's nuclear ambitions . NNP NNP VBZ NNP VBZ VBN DT NN IN PRP MD VB DT NN IN NN NNS IN NN IN DT NN TO DT NNP NN POS JJ NNS . She added that the world is coming to a united position that Iran must not be able to produce a nuclear weapon . PRP VBD IN DT NN VBZ VBG TO DT JJ NN IN NNP MD RB VB JJ TO VB DT JJ NN . She spoke in Washington ahead of talks with President Bush . PRP VBD IN NNP RB IN NNS IN NNP NNP . Earlier Thursday , White House spokesman Scott McClellan said Mr. Bush is looking at how the United States can best support the European effort and make sure it gets Iran to abandon its nuclear ambition . RBR NNP , NNP NNP NN NNP NNP VBD NNP NNP VBZ VBG IN WRB DT NNP NNPS MD RB VB DT JJ NN CC VB JJ PRP VBZ NNP TO VB PRP$ JJ NN . The United States says Iran is secretly trying to develop a nuclear weapon , a charge Iran denies . DT NNP NNP VBZ NNP VBZ RB VBG TO VB DT JJ NN , DT NN NNP VBZ . Russia says it will not pay a higher rent to Ukraine for basing its Black Sea fleet on Ukraine 's Crimean peninsula . NNP VBZ PRP MD RB VB DT JJR NN IN NNP IN VBG PRP$ NNP NNP NN IN NNP POS JJ NN . Russian Deputy Foreign Minister Grigory Karasin says the annual rent for the naval base is not subject to change , because it was fixed by agreement with Ukraine in 1997 . JJ NN NN NN NNP NNP VBZ DT JJ NN IN DT JJ NN VBZ RB JJ TO VB , IN PRP VBD VBN IN NN IN NNP IN CD . Under the deal , Russia pays $ 93 million a year to use the base . IN DT NN , NNP VBZ $ CD CD DT NN TO VB DT NN . Ukraine wants to increase that figure significantly to reflect current market prices . NNP VBZ TO VB DT NN RB TO VB JJ NN NNS . Karasin met with Ukrainian officials in Kiev Tuesday to try to resolve the dispute . NNP VBD IN JJ NNS IN NNP NNP TO VB TO VB DT NN . Both sides said they would continue discussing the issue . DT NNS VBD PRP MD VB VBG DT NN . They also agreed to conduct an inventory of lighthouses and other Black Sea facilities that Ukraine claims as its own . PRP RB VBD TO VB DT NN IN NNS CC JJ NNP NNP NNS WDT NNP NNS IN PRP$ NN . Nobel Peace Laureate Mohamed ElBaradei began his career four decades ago as a diplomat in his native Egypt . NNP NNP NNP NNP NNP VBD PRP$ NN CD NNS RB IN DT NN IN PRP$ JJ NNP . After receiving a bachelor 's degree in law at the University of Cairo , he joined the foreign ministry and was posted to the United Nations office in Geneva . IN VBG DT NN POS NN IN NN IN DT NNP IN NNP , PRP VBD DT JJ NN CC VBD VBN TO DT NNP NNP NN IN NNP . In 1974 , he earned a doctorate in International Law at New York University in the United States , where he also taught for several years . IN CD , PRP VBD DT NN IN NNP NNP IN NNP NNP NNP IN DT NNP NNPS , WRB PRP RB VBD IN JJ NNS . Mr. ElBaradei , 63 , joined the Vienna-based International Atomic Energy Agency in 1984 and rose quickly through the organization , becoming its director in 1997 . NNP NNP , CD , VBD DT JJ NNP NNP NNP NNP IN CD CC VBD RB IN DT NN , VBG PRP$ NN IN CD . In recent years , Mr. ElBaradei 's work has taken him to such political hot spots as North Korea , Libya , Iran and Iraq . IN JJ NNS , NNP NNP POS NN VBZ VBN PRP TO JJ JJ JJ NNS IN NNP NNP , NNP , NNP CC NNP . A top U.S. official has called on Burma 's military government to free pro-democracy leader Aung San Suu Kyi and other political prisoners . DT JJ NNP NN VBZ VBN IN NNP POS JJ NN TO JJ JJ NN NNP NNP NNP NNP CC JJ JJ NNS . Assistant Secretary of State Christopher Hill said Aung San Suu Kyi 's continued house arrest poses a real problem for Burma being able to rejoin the international community . NNP NNP IN NNP NNP NNP VBD NNP NNP NNP NNP POS JJ NN NN VBZ DT JJ NN IN NNP VBG JJ TO VB DT JJ NN . A Nobel laureate , Aung San Suu Kyi has spent most of the last 17 years under some form of detention . DT NNP NN , NNP NNP NNP NNP VBZ VBN JJS IN DT JJ CD NNS IN DT NN IN NN . Her latest term of house arrest is up for review on May 27 . PRP$ JJS NN IN NN NN VBZ RP IN NN IN NNP CD . Aung San Suu Kyi 's National League for Democracy won parliamentary elections in 1990 . NNP NNP NNP NNP POS NNP NNP IN NNP VBD JJ NNS IN CD . But the military junta did not allow it to take power . CC DT JJ NN VBD RB VB PRP TO VB NN . Last week the United States said it is renewing sanctions on Burma for at least another year , saying the military government is becoming more brutal . JJ NN DT NNP NNPS VBD PRP VBZ VBG NNS IN NNP IN IN JJS DT NN , VBG DT JJ NN VBZ VBG RBR JJ . The United Nations estimates there are at least 1,100 political prisoners in Burma . DT NNP NNPS VBZ EX VBP IN JJS CD JJ NNS IN NNP . Al-Qaida in Iraq says it will put on trial two employees of the Moroccan embassy in Baghdad that it kidnapped last month . NNP IN NNP VBZ PRP MD VB IN NN CD NNS IN DT JJ NN IN NNP IN PRP VBD JJ NN . In an unverifiable Internet posting , the group led by Abu Musab al-Zarqawi said Tuesday an Islamic court would determine the men 's fate . IN DT JJ NN VBG , DT NN VBN IN NNP NNP NNP VBD NNP DT JJ NN MD VB DT NNS POS NN . The Moroccan government has confirmed that two of its employees disappeared October 20 while driving from Jordan to Baghdad . DT JJ NN VBZ VBN IN CD IN PRP$ NNS VBD NNP CD IN VBG IN NNP TO NNP . Meanwhile , the U.S. military says it released 500 detainees from Abu Ghraib prison Tuesday , ahead of this week 's Eid al-Fitr holiday , which marks the end of the Muslim holy month of Ramadan . RB , DT NNP NN VBZ PRP VBD CD NNS IN NNP NNP NN NNP , RB IN DT NN POS JJ JJ NN , WDT VBZ DT NN IN DT NNP JJ NN IN NNP . None of those released was guilty of violent crimes . NN IN DT VBN VBD JJ IN JJ NNS . And the U.S. military reported the death of another service member . CC DT NNP NN VBD DT NN IN DT NN NN . The soldier , killed Monday , was the 93rd American killed in Iraq last month , making it the second deadliest month this year for American forces in Iraq . DT NN , VBN NNP , VBD DT JJ NN VBN IN NNP JJ NN , VBG PRP DT JJ JJS NN DT NN IN JJ NNS IN NNP . Tension is running high in Lebanon after a bomb blast that injured at least six people in a Christian suburb of Beirut late Saturday . NNP VBZ VBG JJ IN NNP IN DT NN NN WDT VBD IN JJS CD NNS IN DT JJ NN IN NNP JJ NNP . Opposition leaders have blamed Syria for the blast - the third to hit a Christian neighborhood over the past eight days . NN NNS VBP VBN NNP IN DT NN IN DT JJ TO VB DT JJ NN IN DT JJ CD NNS . Lawmaker Walid Jumblatt says Lebanon 's Syrian-backed security forces are trying to destabilize the country as Damascus withdraws its forces . NNP NNP NNP VBZ NNP POS JJ NN NNS VBP VBG TO VB DT NN IN NNP VBZ PRP$ NNS . Patriarch Nasrallah Sfeir , leader of Lebanon 's Maronite Christians , told worshippers Sunday that the country faces a choice between sovereignty and more turmoil . NNP NNP NNP , NN IN NNP POS NNP NNPS , VBD NNS NNP IN DT NN VBZ DT NN IN NN CC JJR NN . Talking to reporters after the Easter Sunday mass , Lebanon 's President Emile Lahoud called on the country 's people to be united . VBG TO NNS IN DT NNP NNP NN , NNP POS NNP NNP NNP VBD IN DT NN POS NNS TO VB VBN . The U.S. State Department has condemned the bombings in Beirut , saying authorities must arrest those responsible . DT NNP NNP NNP VBZ VBN DT NNS IN NNP , VBG NNS MD VB DT JJ . It also repeated the the U.S. call for Syrian forces to leave Lebanon immediately . PRP RB VBD DT DT NNP NN IN JJ NNS TO VB NNP RB . Google users in China will no longer be automatically redirected to an unfiltered website in Hong Kong when they open the popular Internet search engine . NNP NNS IN NNP MD RB RB VB RB VBN TO DT JJ NN IN NNP NNP WRB PRP VBP DT JJ NNP NN NN . Instead , they will find a page with a link they can click on to go to the Hong Kong site for unfiltered searches . RB , PRP MD VB DT NN IN DT NN PRP MD VB IN TO VB TO DT NNP NNP NN IN JJ NNS . Google will continue to offer music and other non-controversial services on the main China site . NNP MD VB TO VB NN CC JJ JJ NNS IN DT JJ NNP NN . The American Internet giant began redirecting users to Hong Kong in January to protest Chinese censorship and an attempt to hack into the e-mail accounts of human rights activists . DT JJ NN NN VBD VBG NNS TO NNP NNP IN NNP TO VB JJ NN CC DT NN TO VB IN DT JJ NNS IN JJ NNS NNS . But a blog by Google 's chief legal officer David Drummond on Tuesday said China had warned the company its operating license would not be renewed if the practice continued . CC DT NN IN NNP POS JJ JJ NN NNP NNP IN NNP VBD NNP VBD VBN DT NN PRP$ NN NN MD RB VB VBN IN DT NN VBD . The license expires on Wednesday . DT NN VBZ IN NNP . Indian officials say at least 32 people have been killed by a blaze in a southern India firecracker warehouse . JJ NNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN IN DT JJ NNP NN NN . Police say two people have been arrested , including the owner of the warehouse . NNS VBP CD NNS VBP VBN VBN , VBG DT NN IN DT NN . Ten other people were reported injured in the fire late Friday on the eve of the Diwali holiday , also known as the festival of lights . CD JJ NNS VBD VBN NN IN DT NN JJ NNP IN DT NN IN DT NNP NN , RB VBN IN DT NN IN NNS . The deadly fire ignited in a warehouse in the village of Pallipat , 90 kilometers from the port city of Chennai . DT JJ NN VBN IN DT NN IN DT NN IN NNP , CD NNS IN DT JJ NN IN NNP . Among the victims were people buying firecrackers for the holiday . IN DT NNS VBD NNS VBG NNS IN DT NN . Diwali celebrations are spread over several days and involve wearing new clothes , sharing sweets and snacks , as well as lighting many lamps , candles and firecrackers . NNP NNS VBP VBN IN JJ NNS CC VB VBG JJ NNS , VBG NNS CC NNS , RB RB IN VBG JJ NNS , NNS CC NNS . The International Labor Organization is calling on the Burmese government to change legislation and a constitutional provision that allow forced labor . DT NNP NNP NNP VBZ VBG IN DT JJ NN TO VB NN CC DT JJ NN WDT VBP VBN NN . During a session of the ILO 's committee on labor standards in Geneva Saturday , the group said efforts by the military government to end forced labor so far have been ' totally inadequate ' . IN DT NN IN DT NNP POS NN IN NN NNS IN NNP NNP , DT NN VBD NNS IN DT JJ NN TO VB VBN NN RB RB VBP VBN `` RB JJ `` . The committee called on the Burmese government to amend current legislation to ban forced labor . DT NN VBD IN DT JJ NN TO VB JJ NN TO VB VBN NN . It also called on the military-ruled junta to change a provision that will allow forced labor when the new constitution goes into effect in 2010 . PRP RB VBD IN DT JJ NN TO VB DT NN WDT MD VB VBN NN WRB DT JJ NN VBZ IN NN IN CD . Human rights groups have long accused the Burmese government of using forced labor , including child labor , for state-run construction projects . JJ NNS NNS VBP RB VBN DT JJ NN IN VBG VBN NN , VBG NN NN , IN JJ NN NNS . China 's official news agency says the death toll from Tropical Storm Bilis has risen to 518 . NNP POS JJ NN NN VBZ DT NN NN IN NNP NNP NNP VBZ VBN TO CD . Xinhua says Guangdong province reported an additional 36 deaths Saturday . NNP VBZ NNP NN VBD DT JJ CD NNS NNP . On Friday , the official death toll doubled from previous counts . IN NNP , DT JJ NN NN VBD IN JJ NNS . The Xinhua report did not say how the newly reported deaths occurred . DT NNP NN VBD RB VB WRB DT RB VBN NNS VBD . Rains from the tropical storm caused massive flooding and triggered landslides in several provinces . NNS IN DT JJ NN VBD JJ NN CC VBD NNS IN JJ NNS . Hardest hit was Hunan , where the storm is blamed for the deaths of 346 people . JJS NN VBD NNP , WRB DT NN VBZ VBN IN DT NNS IN CD NNS . Bilis hit China 's southeastern coast July 14 , after first striking the Philippines , where it left 28 dead . NNP VBD NNP POS JJ NN NNP CD , IN RB VBG DT NNP , WRB PRP VBD CD JJ . One person was killed in Taiwan . CD NN VBD VBN IN NNP . Iraq 's election commission says it has rejected a small number of ballots from last month 's parliamentary vote , and plans to issue final results later this week . NNP POS NN NN VBZ PRP VBZ VBN DT JJ NN IN NNS IN JJ NN POS JJ NN , CC VBZ TO VB JJ NNS RB DT NN . Officials said ballots from 227 boxes were thrown out , adding the move should not affect the vote tally . NNS VBD NNS IN CD NNS VBD VBN RP , VBG DT NN MD RB VB DT NN RB . They said final results from the remaining 31,000 boxes will be announced as early as Friday . PRP VBD JJ NNS IN DT VBG CD NNS MD VB VBN RB RB IN NNP . Vote results have been delayed for weeks , after some Sunni Arab groups alleged widespread fraud . JJ NNS VBP VBN VBN IN NNS , IN DT NNP JJ NNS VBD JJ NN . Near Baghdad , a U.S. military helicopter crashed Monday killing the two soldiers on board . NNP NNP , DT NNP JJ NN VBD NNP VBG DT CD NNS IN NN . In an unverified Internet claim , insurgents said they hit the aircraft in a rocket attack . IN DT JJ NN NN , NNS VBD PRP VBD DT NN IN DT NN NN . Meanwhile , Iraqi prosecutors said the trial of Saddam Hussein is to resume January 24th without the chief judge . RB , JJ NNS VBD DT NN IN NNP NNP VBZ TO VB NNP CD IN DT NN NN . Judge Rizkar Mohammed Amin quit last week , complaining of government interference . NNP NNP NNP NNP VBD JJ NN , VBG IN NN NN . The Pakistani military says its troops have killed nearly 40 militants in two separate attacks Sunday in the northwest region of the country . DT JJ NN VBZ PRP$ NNS VBP VBN RB CD NNS IN CD JJ NNS NNP IN DT JJS NN IN DT NN . Officials say both offensives were in the Orakzai tribal area near the Afghan border . NNS VBP DT NNS VBD IN DT NNP JJ NN IN DT JJ NN . A government official said several dozen militants attacked a village , but troops beat them back , killing many of the insurgents . DT NN NN VBD JJ NN NNS VBD DT NN , CC NNS VBD PRP RB , VBG NN IN DT NNS . Hours later , militants and troops battled in another area of the region . NNS RB , NNS CC NNS VBD IN DT NN IN DT NN . A government official says 12 rebels were killed in that fight . DT NN NN VBZ CD NNS VBD VBN IN DT NN . Pakistan 's military figures can not be independently verified because access to the remote area is limited . NNP POS JJ NNS MD RB VB RB VBN IN NN TO DT JJ NN VBZ VBN . Pakistan 's military began an offensive in Orakzai in March to flush out Taliban insurgents believed to have fled an earlier military offensive in South Waziristan . NNP POS JJ VBD DT NN IN NNP IN NNP TO VB RP NNP NNS VBN TO VB VBN DT JJR JJ NN IN NNP NNP . Burmese officials say they plan to release 5,000 prisoners to mark the 60th anniversary of the country 's independence on Tuesday . JJ NNS VBP PRP VBP TO VB CD NNS TO VB DT JJ NN IN DT NN POS NN IN NNP . Burma 's military government issued the announcement on state-radio Sunday . NNP POS JJ NN VBD DT NN IN JJ NNP . Since November , officials have freed some 20,000 prisoners , including some who had been illegally jailed by the former National Intelligence Bureau . IN NNP , NNS VBP VBN DT CD NNS , VBG DT WP VBD VBN RB VBN IN DT JJ NNP NNP NNP . The government has dismantled the organization led by disgraced Prime Minister Khin Nyunt . DT NN VBZ VBN DT NN VBN IN JJ NNP NNP NNP NNP . A panel headed by British Prime Minister Tony Blair is calling on wealthy nations to spend $ 25 billion a year more to help reverse poverty in Africa . DT NN VBN IN JJ NNP NNP NNP NNP VBZ VBG IN JJ NNS TO VB $ CD CD DT NN RBR TO VB VB NN IN NNP . In a report released Friday , in London and Addis Ababa , Ethiopia , the Africa Commission calls on rich nations to end trade barriers and agricultural subsidies and cancel all debt for poor African countries . IN DT NN VBN NNP , IN NNP CC NNP NNP , NNP , DT NNP NNP VBZ IN JJ NNS TO VB NN NNS CC JJ NNS CC VB DT NN IN JJ JJ NNS . The report also calls on African governments to commit to transparency and to ratify the U.N. Covenant on Corruption . DT NN RB VBZ IN JJ NNS TO VB TO NN CC TO VB DT NNP NNP IN NNP . The panel urges developed nations to monitor corruption and reject illicit funds deposited in their banks by corrupt officials from African nations . DT NN VBZ JJ NNS TO VB NN CC VB JJ NNS VBN IN PRP$ NNS IN JJ NNS IN JJ NNS . Mr. Blair says there is ' no excuse , no defense , no justification ' for the plight of millions in Africa today . NNP NNP VBZ EX VBZ `` DT NN , DT NN , DT NN `` IN DT NN IN NNS IN NNP NN . A United Nations envoy has carried out his first inspection to verify that Syria is withdrawing its military and intelligence personnel from Lebanon and complying with Security Council Resolution 1559 . DT NNP NNP NN VBZ VBN RP PRP$ JJ NN TO VB DT NNP VBZ VBG PRP$ NN CC NN NNS IN NNP CC VBG IN NNP NNP NNP CD . Terje Roed-Larsen Tuesday visited a West Beirut apartment block that Syrian intelligence agents evacuated in recent weeks . NNP NNP NNP VBD DT NNP NNP NN NN IN JJ NN NNS VBD IN JJ NNS . Mr. Roed-Larsen also voiced support for the Lebanese opposition 's demand that parliamentary elections go forward on time by May 31 . NNP NNP RB VBD NN IN DT JJ NN POS NN IN JJ NNS VBP RB IN NN IN NNP CD . On Sunday , Syria pledged to remove all of its troops and intelligence personnel from Lebanon by April 30 . IN NNP , NNP VBD TO VB DT IN PRP$ NNS CC NN NNS IN NNP IN NNP CD . Today , witnesses reported more Syrian troops were dismantling their posts , and at least 20 trucks were seen transporting troops and equipment towards Syria . NN , NNS VBD RBR JJ NNS VBD VBG PRP$ NNS , CC IN JJS CD NNS VBD VBN VBG NNS CC NN IN NNP . A Thai soldier has been shot and killed by suspected insurgents in strife-torn southern Thailand . DT JJ NN VBZ VBN VBN CC VBN IN JJ NNS IN JJ JJ NNP . Police say the soldier was gunned down Thursday in Yala province . NNS VBP DT NN VBD VBN RP NNP IN NNP NN . No arrests have been made . DT NNS VBP VBN VBN . Meanwhile , the head of Yala 's teachers union says government schools in the province will remain closed indefinitely due to recent attacks on teachers . RB , DT NN IN NNP POS NNS NN VBZ NN NNS IN DT NN MD VB JJ RB JJ TO JJ NNS IN NNS . The schools have been shut since last month . DT NNS VBP VBN VBN IN JJ NN . Many schools in two other southern provinces , Narathiwat and Pattani , are also closed . JJ NNS IN CD JJ JJ NNS , NNP CC NNP , VBP RB VBN . Teachers have been a frequent target in a year-long Muslim separatist insurgency in Thailand 's three southern provinces that has left more than 500 people dead . NNS VBP VBN DT JJ NN IN DT JJ NN NN NN IN NNP POS CD JJ NNS WDT VBZ VBN JJR IN CD NNS JJ . Lawyers for former Russian oil tycoon Mikhail Khodorkovsky say they will appeal his fraud and tax evasion conviction to the European Court of Human Rights in Strasbourg , France . NNS IN JJ JJ NN NN NNP NNP VBP PRP MD VB PRP$ NN CC NN NN NN TO DT NNP NNP IN NNP NNPS IN NNP , NNP . Thursday , a Moscow court rejected Khodorkovsky 's appeal of his conviction , but supporters of the former head of the oil firm Yukos say authorities rushed through the process to prevent him from running in a December parliamentary byelection . NNP , DT NNP NN VBD NNP POS NN IN PRP$ NN , CC NNS IN DT JJ NN IN DT NN NN NNP VBP NNS VBD IN DT NN TO VB PRP IN VBG IN DT NNP JJ NN . In a related development Friday , the Moscow prosecutor 's office said it has asked that three of Khodorkovsky 's lawyers be disbarred . IN DT JJ NN NNP , DT NNP NN POS NN VBD PRP VBZ VBN IN CD IN NNP POS NNS VB VBN . A spokeswoman said the three should have represented him in his appeal as well as in his defense . DT NN VBD DT CD MD VB VBN PRP IN PRP$ NN RB RB IN IN PRP$ NN . Another of his lawyers , Robert Amsterdam of Canada , said Friday Moscow authorities have revoked his visa and told him to leave the country immediately . DT IN PRP$ NNS , NNP NNP IN NNP , VBD NNP NNP NNS VBP VBN PRP$ NN CC VBN PRP TO VB DT NN RB . Russian authorities have not confirmed his statement . JJ NNS VBP RB VBN PRP$ NN . Shoppers gave Madonna 's new fashion venture mixed reviews March 22 , on the occasion of its worldwide rollout . NNS VBD NNP POS JJ NN NN JJ NNS NNP CD , IN DT NN IN PRP$ JJ NN . The Material Girl 's ' M By Madonna ' line of clothing and accessories is being marketed by the low-priced Swedish retailer Hennes & Mauritz AB ( H&M ) . DT NNP NNP POS `` NNP IN NNP `` NN IN NN CC NNS VBZ VBG VBN IN DT JJ JJ NN NNP CC NNP NNP LRB NNP RRB . Shoppers in New York City quickly snapped up items such as belts and small purses , but were reportedly surprised at the generally conservative approach to clothing design . NNS IN NNP NNP NNP RB VBD RP NNS JJ IN NNS CC JJ NNS , CC VBD RB VBN IN DT RB JJ NN TO NN NN . An H & M sales associate said retail action has been equally divided between sales and returns . DT NNP CC NNP NNS NN VBD JJ NN VBZ VBN RB VBN IN NNS CC NNS . Madonna has often shocked contemporary audiences through such risque fashion choices as conical bras and crucifixes . NNP VBZ RB VBN JJ NNS IN JJ JJ NN NNS IN JJ NNS CC NNS . Stockholm-based H & M has more than 1,300 stores in 24 countries . JJ NNP CC NNP VBZ JJR IN CD NNS IN CD NNS . The International Atomic Energy Agency has decided to use its half of the $ 1 million Nobel Peace Prize award to improve cancer treatment and nutrition in the developing world . DT NNP NNP NNP NNP VBZ VBN TO VB PRP$ NN IN DT $ CD CD NNP NNP NNP NN TO VB NN NN CC NN IN DT JJ NN . The 35-member board of the U.N. nuclear agency agreed Friday to create a fund for fellowships and training to improve cancer management and childhood nutrition in these nations . DT JJ NN IN DT NNP JJ NN VBD NNP TO VB DT NN IN NNS CC NN TO VB NN NN CC NN NN IN DT NNS . In October , the Norwegian Nobel committee presented the agency and its director , Mohamed ElBaradei , with the prestigious prize . IN NNP , DT JJ NNP NN VBD DT NN CC PRP$ NN , NNP NNP , IN DT JJ NN . The award was given in recognition of their efforts to use nuclear energy in safe , peaceful ways and prevent it from being used for military purposes . DT NN VBD VBN IN NN IN PRP$ NNS TO VB JJ NN IN JJ , JJ NNS CC VB PRP IN VBG VBN IN JJ NNS . Mr. ElBaradei plans to use his share of the prize money to assist orphanages in his native Egypt . NNP NNP VBZ TO VB PRP$ NN IN DT NN NN TO VB NNS IN PRP$ JJ NNP . Several automakers say their U.S. sales rose sharply in March as the American economy recovers from the worst recession in decades . JJ NNS VBP PRP$ NNP NNS VBD RB IN NNP IN DT JJ NN NNS IN DT JJS NN IN NNS . Toyota gained nearly 41 percent from the same month a year ago . NNP VBD RB CD NN IN DT JJ NN DT NN RB . Toyota used discounts and other incentives to boost sales after safety recalls tarnished the company 's image of reliability . NNP VBD NNS CC JJ NNS TO VB NNS IN NN NNS VBN DT NN POS NN IN NN . Sales for Ford jumped around 40 percent , Honda gained 22 percent , and General Motors improved 21 percent . NNS IN NNP VBD IN CD NN , NNP VBD CD NN , CC NNP NNPS VBD CD NN . The Korea-based company Hyundai sold about 15 percent more cars . DT JJ NN NNP VBD IN CD NN JJR NNS . Chrysler saw sales fall about eight percent . NNP VBD NNS VB IN CD NN . Ten of Egypt 's opposition groups have joined forces against President Hosni Mubarak 's ruling party in parliamentary elections set for November . CD IN NNP POS NN NNS VBP VBN NNS IN NNP NNP NNP POS VBG NN IN JJ NNS VBN IN NNP . The new alliance , the National Front for Change , includes groups across the political spectrum including liberals , leftists , Islamists and the Kifaya or ' Enough ' protest movement . DT JJ NN , DT NNP NNP IN NNP , VBZ NNS IN DT JJ NN VBG NNS , NNS , NNS CC DT NNP CC `` NNP `` NN NN . The outlawed Muslim Brotherhood says it will coordinate fully with the coalition but will field candidates as independents rather than on the unified list . DT JJ NNP NNP VBZ PRP MD VB RB IN DT NN CC MD VB NNS IN NNS RB IN IN DT JJ NN . Reuters news agency says talks are under way to bring the opposition Ghad tomorrow party into the new coalition . NNP NN NN VBZ NNS VBP IN NN TO VB DT NN NN NN NN IN DT JJ NN . Ghad 's leader , Ayman Nour , is facing a forgery trial after running second to President Mubarak in September 's presidential voting . NNP POS NN , NNP NNP , VBZ VBG DT NN NN IN VBG JJ TO NNP NNP IN NNP POS JJ NN . Officials say Israeli Prime Minister Ariel Sharon and Palestinian President Mahmoud Abbas plan to meet in two weeks for their first face to face talks since Mr. Abbas ' election earlier this month . NNS VBP JJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBZ TO VB IN CD NNS IN PRP$ JJ NN TO VB NNS IN NNP NNP POS NN RBR DT NN . The meeting will coincide with a planned visit to the region by U.S. Secretary of State Condoleezza Rice . DT NN MD VB IN DT JJ NN TO DT NN IN NNP NNP IN NNP NNP NNP . News of the talks came Saturday , as Israeli and Palestinians security officials met to discuss the security situation . NN IN DT NNS VBD NNP , IN JJ CC NNS NN NNS VBD TO VB DT NN NN . The Israelis and Palestinians have recently taken steps to try to revive the peace process . DT NNS CC NNS VBP RB VBN NNS TO VB TO VB DT NN NN . Israel stopped offensive operations in the Gaza Strip and the Palestinians deployed thousands of police in the territory to stop militants from firing rockets on Israelis . NNP VBD JJ NNS IN DT NNP NNP CC DT NNS VBD NNS IN NNS IN DT NN TO VB NNS IN VBG NNS IN NNS . Mr. Abbas is also trying to get Israel and Palestinian militants to agree to a ceasefire . NNP NNP VBZ RB VBG TO VB NNP CC JJ NNS TO VB TO DT NN . A U.S. government report says the nation 's employers added 2,11,000 new jobs in March , dropping the unemployment rate slightly , to 4.7 percent . DT NNP NN NN VBZ DT NN POS NNS VBD CD JJ NNS IN NNP , VBG DT NN NN RB , TO CD NN . The Labor Department report says job gains were spread throughout the non-farm economy - with the biggest gains in the areas of professional and business services , education and health services , and retail trade . DT NNP NNP NN VBZ NN NNS VBD VBN IN DT JJ NN IN IN DT JJS NNS IN DT NNS IN JJ CC NN NNS , NN CC NN NNS , CC JJ NN . The 2,11,000 new jobs figure is well above what most economists had predicted ( 1,90,000 ) for March . DT CD JJ NNS NN VBZ RB IN WP RBS NNS VBD VBN LRB CD RRB IN NNP . Analysts say this is an indication the economy is continuing to strengthen . NNS VBP DT VBZ DT NN DT NN VBZ VBG TO VB . In remarks to reporters at the White House , President Bush cited those new figures as evidence that Congress should make his tax-relief plan permanent , rather than let the tax cuts expire . IN NNS TO NNS IN DT NNP NNP , NNP NNP VBD DT JJ NNS IN NN IN NNP MD VB PRP$ JJ NN JJ , RB IN VB DT NN NNS VBP . Mr. Bush said the cuts are helping the economy move forward and create jobs . NNP NNP VBD DT NNS VBP VBG DT NN VB RB CC VB NNS . The unemployment figure in February was 4.8 percent . DT NN NN IN NNP VBD CD NN . Witnesses in Burma have reported two explosions in the country 's main city , Rangoon . NNS IN NNP VBP VBN CD NNS IN DT NN POS JJ NN , NNP . They say Burmese security forces sealed off a park and a bus station hit by the explosions , which happened Tuesday night about an hour apart . PRP VBP JJ NN NNS VBD RP DT NN CC DT NN NN VBN IN DT NNS , WDT VBD NNP NN IN DT NN RB . The witnesses say police brought in bomb-sniffing dogs and ordered onlookers to disperse . DT NNS VBP NNS VBD IN NN NNS CC VBD NNS TO VB . Burma 's military rulers made no comment on the explosions and there were no reports of serious casualties . NNP POS JJ NNS VBD DT NN IN DT NNS CC EX VBD DT NNS IN JJ NNS . Burma has seen several small bombings in recent years . NNP VBZ VBN JJ JJ NNS IN JJ NNS . The military government has blamed them on its political opponents or ethnic rebel groups seeking autonomy . DT JJ NN VBZ VBN PRP IN PRP$ JJ NNS CC JJ NN NNS VBG NN . The groups deny carrying out such attacks . DT NNS VBP VBG RP JJ NNS . Burma has been under near-continuous military rule since 1962 . NNP VBZ VBN IN JJ JJ NN IN CD . Pakistan 's new government has moved to lift harsh restrictions on the media put in place during November 's state of emergency . NNP POS JJ NN VBZ VBN TO VB JJ NNS IN DT NNS VBN IN NN IN NNP POS NN IN NN . Information Minister Sherry Rehman introduced legislation Friday that would clear the way for live media broadcasts . NNP NNP NNP NNP VBD NN NNP WDT MD VB DT NN IN JJ NNS NNS . The measure would also prevent officials at the Pakistan Electronic Media Regulatory Authority from shutting down news channels , seizing equipment , or fining and imprisoning journalists . DT NN MD RB VB NNS IN DT NNP NNP NNP NNP NNP IN VBG RP NN NNS , VBG NN , CC NN CC VBG NNS . Rehman said the new freedoms would place a ' heavy responsibility ' on journalists and other members of the media . NNP VBD DT JJ NNS MD VB DT `` JJ NN `` IN NNS CC JJ NNS IN DT NNS . Pakistani President Pervez Musharraf first moved to curb the media when he declared a state of emergency on November 3 . JJ NNP NNP NNP RB VBD TO VB DT NNS WRB PRP VBD DT NN IN NN IN NNP CD . He lifted the state of emergency just over a month later but left restrictions on the media in place . PRP VBD DT NN IN NN RB IN DT NN RB CC VBD NNS IN DT NNS IN NN . The Iranian government has lifted its ban on the Cable News Network , which was imposed for misquoting President Mahmoud Ahmadinejad because of a translation error . DT JJ NN VBZ VBN PRP$ NN IN DT NNP NNP NNP , WDT VBD VBN IN VBG NNP NNP NNP IN IN DT NN NN . Officials say Mr. Ahmadinejad asked the cultural ministry to lift the ban late Monday , after CNN apologized for the mistake . NNS VBP NNP NNP VBD DT JJ NN TO VB DT NN JJ NNP , IN NNP VBD IN DT NN . Hours earlier , Iran barred CNN journalists from the country for misquoting the president as speaking of ' nuclear weapons ' when he actually spoke of ' nuclear technology ' during a recent news conference . NNS RB , NNP VBD NNP NNS IN DT NN IN VBG DT NN IN NN IN `` JJ NNS `` WRB PRP RB VBD IN `` JJ NN `` IN DT JJ NN NN . CNN says the Farsi word for ' technology ' was mistakenly translated into ' weapons . ' NNP VBZ DT NNP NN IN `` NN `` VBD RB VBN IN `` NNS . `` The U.S.-based network does not have a permanent correspondent in Iran . DT JJ NN VBZ RB VB DT JJ NN IN NNP . But reporters have occasionally been allowed to enter the country for brief assignments . CC NNS VBP RB VBN VBN TO VB DT NN IN JJ NNS . Iraq 's Prime Minister Ibrahim al-Jaafari is in Turkey for talks on boosting relations and on ways to defuse the spike in sectarian violence in Iraq . NNP POS NNP NNP NNP NNP VBZ IN NNP IN NNS IN VBG NNS CC IN NNS TO VB DT NN IN JJ NN IN NNP . He met Tuesday in Ankara with Turkish Prime Minister Recep Tayyip Erdogan , who warned the violence could spill outside Iraq 's borders . PRP VBD NNP IN NNP IN NNP NNP NNP NNP NNP NNP , WP VBD DT NN MD VB IN NNP POS NNS . Turkish officials fear a civil war in Iraq could lead to the creation of a Kurdish state in northern Iraq , leading Turkey 's Kurds to call for their own independence . JJ NNS VBP DT JJ NN IN NNP MD VB TO DT NN IN DT JJ NN IN JJ NNP , VBG NNP POS NNS TO VB IN PRP$ JJ NN . Mr. al-Jaafari 's talks were also expected to focus on Turkish help for Iraq to overcome water and energy shortages . NNP NNP POS NNS VBD RB VBN TO VB IN JJ NN IN NNP TO VB NN CC NN NNS . Iraq 's president , Jalal Talabani , criticized Mr. al-Jaafari for making the trip without informing him . NNP POS NN , NNP NNP , VBD NNP NNP IN VBG DT NN IN VBG PRP . The U.S. Supreme Court has agreed to let the Bush administration transfer accused ' enemy combatant ' Jose Padilla from U.S. military custody to face criminal charges in Florida . DT NNP NNP NNP VBZ VBN TO VB DT NNP NN VB VBD `` NN JJ `` NNP NNP IN NNP JJ NN TO VB JJ NNS IN NNP . The high court 's ruling Wednesday is a victory for the White House , which has held Mr. Padilla in a military detention facility since he was detained three years ago . DT JJ NN POS NN NNP VBZ DT NN IN DT NNP NNP , WDT VBZ VBN NNP NNP IN DT JJ NN NN IN PRP VBD VBN CD NNS RB . Mr. Padilla 's case has been the subject of numerous court rulings and his classification as an ' enemy combatant ' has been criticized by civil rights groups . NNP NNP POS NN VBZ VBN DT NN IN JJ NN NNS CC PRP$ NN IN DT `` NN NN `` VBZ VBN VBN IN JJ NNS NNS . Last month the U.S. Justice Department reversed course and requested that the U.S.-born Mr. Padilla be tried in a civilian court . JJ NN DT NNP NNP NNP VBD NN CC VBD IN DT JJ NNP NNP VB VBN IN DT JJ NN . An appeals court had ruled against that request , prompting the administration to take the case to the Supreme Court . DT NNS NN VBD VBN IN DT NN , VBG DT NN TO VB DT NN TO DT NNP NNP . Mr. Padilla was arrested under suspicion of plotting with al-Qaida to set off a dirty bomb in the United States . NNP NNP VBD VBN IN NN IN VBG IN NNP TO VB RP DT NN NN IN DT NNP NNPS . At least 100 demonstrators have rallied near Egypt 's security police headquarters to demand the resignation of the country 's interior minister and the prosecution of security officers whom they accuse of torture . IN JJS CD NNS VBP VBN IN NNP POS NN NN NN TO VB DT NN IN DT NN POS JJ NN CC DT NN IN NN NNS WP PRP VBP IN NN . Participants in Sunday 's demonstration in Cairo included Egyptian human rights activists . NNS IN NNP POS NN IN NNP VBD JJ JJ NNS NNS . International and Egyptian human rights groups have criticized Egyptian prisons , police stations and detention centers for what they say is widespread brutality and torture . NNP CC JJ JJ NNS NNS VBP VBN JJ NNS , NN NNS CC NN NNS IN WP PRP VBP VBZ JJ NN CC NN . The U.S. State Department 's latest human rights report said Egypt has a poor human rights record . DT NNP NNP NNP POS JJS JJ NNS NN VBD NNP VBZ DT JJ JJ NNS NN . Egypt agreed two years ago to create a national council on human rights to investigate allegations of rights abuses . NNP VBD CD NNS RB TO VB DT JJ NN IN JJ NNS TO VB NNS IN NNS NNS . But the government has frequently denied abuse allegations . CC DT NN VBZ RB VBN NN NNS . The Washington-area 's planning commission has given preliminary approval to a memorial for victims of communism . DT NNP POS NN NN VBZ VBN JJ NN TO DT JJ IN NNS IN NN . The National Planning Commission on Thursday approved the design , which includes a bronze statue of the ' Goddess of Democracy ' , similar to one erected by Chinese students in Beijings 's Tiananmen Square in 1989 . DT NNP NNP NNP IN NNP VBD DT NN , WDT VBZ DT NN NN IN DT `` NNPS IN NNP `` , JJ TO CD VBN IN JJ NNS IN NNP POS NNP NNP IN CD . Plans are to build the memorial in Northwest Washington near the Capitol . NNS VBP TO VB DT NN IN NNP NNP IN DT NNP . The Victims of Communism Memorial Foundation have pushed for the project for more than a decade , arguing that the nation 's capital has memorials to many wars but not to the Cold War . DT NNS IN NNP NNP NNP VBP VBN IN DT NN IN JJR IN DT NN , VBG IN DT NN POS NN VBZ NNS TO JJ NNS CC RB TO DT NNP NNP . The chairman of the foundation says donors have given about 70 percent of the $ 6,00,000 needed to build the memorial . DT NN IN DT NN VBZ NNS VBP VBN IN CD NN IN DT $ CD VBN TO VB DT NN . He expects construction to begin in early 2006 . PRP VBZ NN TO VB IN JJ CD . The foundation has worked to honor the more than 100 million people who were killed or tortured under communist regimes . DT NN VBZ VBN TO VB DT JJR IN CD CD NNS WP VBD VBN CC VBN IN NN NNS . A U.S. newspaper says the U.S. Central Intelligence Agency has maintained a secret prison for valuable al-Qaida detainees at the U.S. detention center in Guantanamo Bay , Cuba . DT NNP NN VBZ DT NNP NNP NNP NNP VBZ VBN DT JJ NN IN JJ NNP NNS IN DT NNP NN NN IN NNP NNP , NNP . The Washington Post Friday quotes military officials and intelligence officers as saying the existence of the prison has never been made public before . DT NNP NNP NNP VBZ JJ NNS CC NN NNS IN VBG DT NN IN DT NN VBZ RB VBN VBN JJ IN . The Postsays it is unclear whether the facility is still in operation . DT NNPS PRP VBZ JJ IN DT NN VBZ RB IN NN . But , it cites intelligence sources as saying the prison has housed detainees from Pakistan , West Africa , Yemen and other countries . CC , PRP VBZ NN NNS IN VBG DT NN VBZ VBN NNS IN NNP , NNP NNP , NNP CC JJ NNS . The newspaper says most international terrorism suspects in U.S. custody are held by the U.S. military - not the CIA . DT NN VBZ RBS JJ NN NNS IN NNP NN VBP VBN IN DT NNP JJ : RB DT NNP . Those held by the military are guaranteed access to the International Committee of the Red Cross . DT VBN IN DT NN VBP VBN NN TO DT NNP NNP IN DT NNP NNP . But the Post says the CIA detainees are held under separate rules and far greater secrecy . CC DT NNP VBZ DT NNP NNS VBP VBN IN JJ NNS CC RB JJR NN . Officials at the CIA had no immediate comment . NNS IN DT NNP VBD DT JJ NN . Rescue workers have retrieved three more bodies from the wreckage of a passenger train that derailed Saturday in southern India , bringing the death toll to at least 113 people . NN NNS VBP VBN CD JJR NNS IN DT NN IN DT NN NN WDT VBD NNP IN JJ NNP , VBG DT NN NN TO IN JJS CD NNS . The train plunged into a rain-swollen river in Andhra Pradesh where flash floods had washed away a portion of track . DT NN VBD IN DT JJ NN IN NNP NNP WRB NN NNS VBD VBN RB DT NN IN NN . Military and other rescue personnel used hacksaws and other machinery to dismantle the partially submerged coaches and rescued at least 100 injured passengers . NN CC JJ NN NNS VBN NNS CC JJ NN TO VB DT RB VBN NNS CC VBD IN JJS CD JJ NNS . Railway safety officials have begun an investigation into the accident . NNP NN NNS VBP VBN DT NN IN DT NN . State-run Indian Railways transports more than 13 million passengers daily . VBN NNP NNP VBZ JJR IN CD CD NNS RB . Each year , some 300 train accidents take place across the country , most are blamed on lax safety standards . DT NN , DT CD NN NNS VBP NN IN DT NN , JJS VBP VBN IN NN NN NNS . Ukraine 's Central Election Commission has officially declared opposition leader Viktor Yushchenko the winner of the December 26 runoff presidential election . NNP POS NNP NNP NNP VBZ RB VBN NN NN NNP NNP DT NN IN DT NNP CD NN JJ NN . The final results announced late Monday give Mr. Yushchenko 51 percent of the vote , while former pro-Russian Prime Minister Viktor Yanukovych received 44 percent . DT JJ NNS VBN JJ NNP VBP NNP NNP CD NN IN DT NN , IN JJ JJ NNP NNP NNP NNP VBD CD NN . Election officials had been waiting until Mr. Yanukovych exhausted his appeals to the Supreme Court before officially declaring a winner . NNP NNS VBD VBN VBG IN NNP NNP VBD PRP$ NNS TO DT NNP NNP IN RB VBG DT NN . The former prime minister filed a number of complaints to the high court alleging massive fraud . DT JJ JJ NN VBD DT NN IN NNS TO DT JJ NN VBG JJ NN . They were all dismissed by the court . PRP VBD DT VBN IN DT NN . Aides to Mr. Yanukovych say they will keep up their legal fight . NNS TO NNP NNP VBP PRP MD VB RP PRP$ JJ NN . The supreme court ordered the December 26 runoff after throwing out a November vote it said was rigged in favor of Mr. Yanukovych . DT NN NN VBD DT NNP CD NN IN VBG RP DT NNP NN PRP VBD VBD VBN IN NN IN NNP NNP . Mr. Yushchenko may take the oath of office as early as this week . NNP NNP MD VB DT NN IN NN RB RB IN DT NN . Indian Prime Minister Manmohan Singh has agreed to meet a Kashmiri separatist leader to discuss the future of the disputed region . JJ NNP NNP NNP NNP VBZ VBN TO VB DT JJ JJ NN TO VB DT NN IN DT JJ NN . Indian media say Mr. Singh invited Sajjad Lone , chairman of Kashmir 's People 's Conference , to talks in New Delhi on Saturday . JJ NNS VBP NNP NNP VBD NNP NNP , NN IN NNP POS NNS POS NN , TO NNS IN NNP NNP IN NNP . Mr. Singh has promised to meet with all separatist leaders from Indian-controlled Kashmir who have renounced violence . NNP NNP VBZ VBN TO VB IN DT JJ NNS IN JJ NNP WP VBP VBN NN . The prime minister held his first talks with a Kashmiri group in September of last year . DT JJ NN VBD PRP$ JJ NNS IN DT JJ NN IN NNP IN JJ NN . On that occasion , he met with moderate members of the Hurriyat Conference , an umbrella organization of Kashmiri separatists . IN DT NN , PRP VBD IN JJ NNS IN DT NNP NNP , DT NN NN IN JJ NNS . India has been fighting an insurgency in Kashmir for more than 15 years , which has killed at least 44,000 people . NNP VBZ VBN VBG DT NN IN NNP IN JJR IN CD NNS , WDT VBZ VBN IN JJS CD NNS . Kashmiri separatists have made various demands , ranging from independence to merging with neighboring Pakistan . JJ NNS VBP VBN JJ NNS , VBG IN NN TO VBG IN JJ NNP . Belgian officials have tightened security in the country after the arrest of 14 suspects accused of planning to free an imprisoned member of al-Qaida . JJ NNS VBP VBN NN IN DT NN IN DT NN IN CD NNS VBN IN VBG TO VB DT JJ NN IN NNP . The suspects were detained early Friday in a police raid . DT NNS VBD VBN RB NNP IN DT NN NN . Officials say they planned to break Nizar Trabelsi out of prison using weapons and explosives . NNS VBP PRP VBD TO VB NNP NNP IN IN NN VBG NNS CC NNS . Authorities say they are not aware of any other actions the group had planned . NNS VBP PRP VBP RB JJ IN DT JJ NNS DT NN VBD VBN . But they say they are taking precautions during the busy holiday season and have tightened security on the metro , railway stations , airports and shopping districts . CC PRP VBP PRP VBP VBG NNS IN DT JJ NN NN CC VBP VBN NN IN DT NN , NN NNS , NNS CC NN NNS . The extra security measures will remain in place at least until after New Year 's Day . DT JJ NN NNS MD VB IN NN IN JJS IN IN NNP NNP POS NN . The U.S. embassy today issued a warning to American citizens of a heightened risk of terrorist attack in Brussels . DT NNP NN NN VBD DT NN TO JJ NNS IN DT JJ NN IN JJ NN IN NNP . Trabelsi is serving a 10-year prison term , for planning to attack a military base in Belgium where U.S. soldiers are stationed . NNP VBZ VBG DT JJ NN NN , IN VBG TO VB DT JJ NN IN NNP WRB NNP NNS VBP VBN . He was arrested in September 2001 . PRP VBD VBN IN NNP CD . A passenger plane flying from Dubai to India hit an air pocket Sunday over India , plunging 4,600 meters , injuring more than a dozen people . DT NN NN VBG IN NNP TO NNP VBD DT NN NN NNP IN NNP , VBG CD NNS , VBG JJR IN DT NN NNS . The plane dropped from a height of about approximately 7,620 meters before the pilot could bring the aircraft under control . DT NN VBD IN DT NN IN IN RB CD NNS IN DT NN MD VB DT NN IN NN . Aviation officials say some of the injured passengers were not wearing seat belts when the plane fell . NNP NNS VBP DT IN DT NN NNS VBD RB VBG NN NNS WRB DT NN VBD . The aircraft carried 361 passengers and 14 crew members . DT NN VBD CD NNS CC CD NN NNS . The Emirates Boeing 777 landed safely at its destination , the southern Indian city of Kochi , where doctors examined the passengers . DT NNPS NNP CD VBD RB IN PRP$ NN , DT JJ JJ NN IN NNP , WRB NNS VBD DT NNS . An air pocket is a downward air current that causes an aircraft to lose altitude abruptly . DT NN NN VBZ DT JJ NN NN WDT VBZ DT NN TO VB NN RB . Ukraine 's outgoing president , Leonid Kuchma , has fired three government officials , including one who reportedly backs opposition presidential candidate Viktor Yushchenko . NNP POS NN NN , NNP NNP , VBZ VBN CD NN NNS , VBG CD WP RB VBZ NN JJ NN NNP NNP . President Kuchma made the staff changes Friday . NNP NNP VBD DT NN NNS NNP . Earlier this week , London 's Financial Times newspaper quoted one of those dismissed , presidential aide Vasil Baziv , as saying state officials called on Mr. Kuchma to use force to quell mass opposition demonstrations in Kiev . RBR DT NN , NNP POS NNP NNP NN VBD CD IN DT VBN , JJ NN NNP NNP , IN VBG NN NNS VBD IN NNP NNP TO VB NN TO VB JJ NN NNS IN NNP . The aide also is reported to have said that nearly all of the country 's civil servants believe that Mr. Yushchenko is already the new president of Ukraine . DT NN RB VBZ VBN TO VB VBN IN RB DT IN DT NN POS JJ NNS VBP IN NNP NNP VBZ RB DT JJ NN IN NNP . Mr. Yushchenko is locked in a tight presidential race with Prime Minister Viktor Yanukovych . NNP NNP VBZ VBN IN DT JJ JJ NN IN NNP NNP NNP NNP . The two will face-off in a court-ordered re-vote on December 26 . DT CD MD VB IN DT JJ NN IN NNP CD . The new vote is to replace November 's flawed balloting . DT JJ NN VBZ TO VB NNP POS JJ NN . President Kuchma also fired Agrarian Policy Minister Viktor Slauta and Kharkiv regional administration head Yevhen Kushnaryov . NNP NNP RB VBD NNP NNP NNP NNP NNP CC NNP JJ NN NN NNP NNP . Preliminary Palestinian election results indicate President Mahmoud Abbas ' ruling Fatah movement has won more than half the votes cast in Thursday 's West Bank municipal elections . JJ JJ NN NNS VBP NNP NNP NNP POS NN NNP NN VBZ VBN JJR IN PDT DT NNS VBN IN NNP POS NNP NNP JJ NNS . Election officials gave varying results Friday , but all showed a clear Fatah victory . NN NNS VBD VBG NNS NNP , CC DT VBD DT JJ NNP NN . The militant group Hamas , which was expected to have a strong showing , garnered just over 20 percent of the votes . DT JJ NN NNP , WDT VBD VBN TO VB DT JJ NN , VBD RB IN CD NN IN DT NNS . Election turnout was strong , with over 80 percent of eligible voters choosing local councils in 104 West Bank towns and villages . NNP NN VBD JJ , IN IN CD NN IN JJ NNS VBG JJ NNS IN CD NNP NNP NNS CC NNS . Hamas downplayed its poor showing , saying many of its candidates were arrested in a week of Israeli raids and airstrikes preceding the vote . NNP VBD PRP$ JJ NN , VBG NN IN PRP$ NNS VBD VBN IN DT NN IN JJ NNS CC NNS VBG DT NN . Friday , Israeli troops killed two militants from the Al-Aqsa Martyrs Brigades during a raid for wanted Palestinians in Balata refugee camp , in Nablus . NNP , JJ NNS VBD CD NNS IN DT NNP NNP NNP IN DT NN IN JJ NNS IN NNP NN NN , IN NNP . Israeli troops also killed a 13-year-old boy during an incident at Askar camp . JJ NNS RB VBD DT JJ NN IN DT NN IN NNP NN . Afghan officials say the U.S. military has handed over six Afghan villagers who were detained during a raid early Tuesday at a compound where troops discovered bomb-making materials . JJ NNS VBP DT NNP NN VBZ VBN RP CD JJ NNS WP VBD VBN IN DT NN RB NNP IN DT NN WRB NNS VBD JJ NNS . The raid near Bagram Air Base and the subsequent arrests sparked a violent protest by several hundred locals who demanded their release . DT NN IN NNP NNP NNP CC DT JJ NNS VBD DT JJ NN IN JJ CD NNS WP VBD PRP$ NN . They said U.S. troops arrested the villagers without consulting local authorities . PRP VBD NNP NNS VBN DT NNS IN VBG JJ NNS . U.S. soldiers fired warning shots outside the air base after some protesters threw stones at military vehicles and tried to push down the base 's outer gate . NNP NNS VBD VBG NNS IN DT NN NN IN DT NNS VBD NNS IN JJ NNS CC VBD TO VB RP DT NN POS JJ NN . No casualties were reported . DT NNS VBD VBN . The U.S. military said those arrested were suspected of planning attacks against U.S.-led forces . DT NNP NN VBD DT VBN VBD VBN IN VBG NNS IN JJ NNS . This latest incident at Bagram came amid an upsurge in violence ahead of September 's parliamentary elections in Afghanistan . DT JJS NN IN NNP VBD IN DT NN IN NN RB IN NNP POS JJ NNS IN NNP . Ukrainian President Viktor Yushchenko says withdrawing his country 's troops from Iraq is a top priority . JJ NNP NNP NNP VBZ VBG PRP$ NN POS NNS IN NNP VBZ DT JJ NN . Mr. Yuschenko stressed the importance of coordinating the withdrawal with Ukraine 's coalition partners and withdrawing the troops without suffering any losses . NNP NNP VBD DT NN IN VBG DT NN IN NNP POS NN NNS CC VBG DT NNS IN VBG DT NNS . The Interfax news agency quotes him as saying Thursday the military has completed its mission , and now it is time for the diplomats and instructors to do their job . DT NNP NN NN VBZ PRP IN VBG NNP DT NN VBZ VBN PRP$ NN , CC RB PRP VBZ NN IN DT NNS CC NNS TO VB PRP$ NN . Defense Minister Anatoly Hrytsenko said Thursday 700 of Ukraine 's more than 1,600 troops in Iraq could be withdrawn by April . NNP NNP NNP NNP VBD NNP CD IN NNP POS JJR IN CD NNS IN NNP MD VB VBN IN NNP . Ukraine 's foreign minister , Boris Tarasyuk , said last week that instructors , businessmen and diplomats will replace the peacekeepers . NNP POS JJ NN , NNP NNP , VBD JJ NN IN NNS , NNS CC NNS MD VB DT NNS . A Nigerian oil workers ' union says it has suspended a nationwide strike aimed at forcing the government to lower the price of diesel . DT JJ NN NNS POS NN VBZ PRP VBZ VBN DT JJ NN VBN IN VBG DT NN TO VB DT NN IN NN . Officials from Nigeria 's National Union of Petroleum and Gas Workers Monday said they called off the strike after the government agreed to address their demands . NNS IN NNP POS NNP NNP IN NNP CC NNP NNP NNP VBD PRP VBD RP DT NN IN DT NN VBD TO VB PRP$ NNS . Union officials say they are giving the government two weeks to come up with a plan to lower diesel prices , which have more than doubled in recent weeks . NNP NNS VBP PRP VBP VBG DT NN CD NNS TO VB RP IN DT NN TO JJR NN NNS , WDT VBP JJR IN VBN IN JJ NNS . Long lines formed at gas stations across the country after the strike began Friday , as drivers feared the strike could disrupt supplies . JJ NNS VBD IN NN NNS IN DT NN IN DT NN VBD NNP , IN NNS VBD DT NN MD VB NNS . Nigeria is Africa 's biggest crude exporter . NNP VBZ NNP POS JJS NN NN . But attacks on oil pipelines and the kidnapping of foreign workers have significantly cut Nigeria 's output and contributed to record high oil prices around the world . CC NNS IN NN NNS CC DT NN IN JJ NNS VBP RB VBN NNP POS NN CC VBD TO VB JJ NN NNS IN DT NN . Authorities in Iraq say at least 14 people have been killed and 75 injured in a fire that swept through a hospital in the southern Iraqi city of Nasiriyah early Sunday . NNS IN NNP VBP IN JJS CD NNS VBP VBN VBN CC CD NN IN DT NN WDT VBD IN DT NN IN DT JJ JJ NN IN NNP JJ NNP . The Italian news agency ( ANSA ) says Italian military personnel stationed in the area helped evacuate the facility . DT JJ NN NN LRB NNP RRB VBZ JJ JJ NNS VBN IN DT NN VBD VB DT NN . The cause of the blaze has not been determined . DT NN IN DT NN VBZ RB VBN VBN . But authorities say they do not believe the fire resulted from insurgent attacks . CC NNS VBP PRP VBP RB VB DT NN VBD IN JJ NNS . Meanwhile , eight Chinese workers taken hostage in Iraq earlier this month have turned up unharmed in Baghdad . RB , CD JJ NNS VBN NN IN NNP RBR DT NN VBP VBN RP JJ IN NNP . Reuters ( news agency ) says a new video shows the eight men being greeted by Chinese diplomatic officials at a mosque west of Baghdad . NNP LRB NN NN RRB VBZ DT JJ NN VBZ DT CD NNS VBG VBN IN JJ JJ NNS IN DT NN NN IN NNP . In a video released Saturday , kidnappers said they released the captives after Beijing promised to discourage its citizens from traveling to Iraq . IN DT NN VBN NNP , NNS VBD PRP VBD DT NNS IN NNP VBD TO VB PRP$ NNS IN VBG TO NNP . A former Russian prime minister and retired Russian general will travel to the war crimes tribunal at the Hague to speak in defense of former Yugoslav president Slobodan Milosevic . DT JJ JJ JJ NN CC JJ JJ NN MD VB TO DT NN NNS JJ IN DT NNP TO VB IN NN IN JJ JJ NN NNP NNP . Retired Colonel General Leonid Ivashov will testify Friday and former Prime Minister Nikolai Ryzhkov on Monday . JJ NNP NNP NNP NNP MD VB NNP CC JJ NNP NNP NNP NNP IN NNP . The general said Thursday the men believe the charges against Mr. Milosevic are far-fetched , and that claims he committed war crimes have been fabricated by those who launched the 1999 NATO bombing campaign over Kosovo . DT NN VBD NNP DT NNS VBP DT NNS IN NNP NNP VBP JJ , CC IN NNS PRP VBD NN NNS VBP VBN VBN IN DT WP VBD DT CD NNP NN NN IN NNP . General Ivashov said former prime minister and foreign minister Yevgeny Primakov also will speak on Mr. Milosevic 's behalf in late November . NNP NNP VBD JJ JJ NN CC JJ NN NNP NNP RB MD VB IN NNP NNP POS NN IN JJ NNP . The former Yugoslav leader faces more than 60 counts of war crimes stemming from the Balkan conflicts of the 1990s . DT JJ JJ NN VBZ JJR IN CD NNS IN NN NNS VBG IN DT NNP NNS IN DT NNS . The NATO assault was launched to end Serb aggression against ethnic Albanians . DT NNP NN VBD VBN TO VB JJ NN IN JJ NNS . Yasser Arafat 's nephew says the late Palestinian leader 's medical records give no clear cause for his death , but there were no trace of known poisons . NNP NNP POS NN VBZ DT JJ JJ NN POS JJ NNS VBP DT JJ NN IN PRP$ NN , CC EX VBD DT NN IN VBN NNS . Nasser al-Kidwa spoke to reporters Monday after receiving a copy of the medical file from the French military hospital outside Paris , where Mr. Arafat died on November 11 . NNP NNP VBD TO NNS NNP IN VBG DT NN IN DT JJ NN IN DT JJ JJ NN IN NNP , WRB NNP NNP VBD IN NNP CD . He said toxicology tests were conducted on the late Palestinian leader , but no known poison was detected . PRP VBD NN NNS VBD VBN IN DT JJ JJ NN , CC DT VBN NN VBD VBN . Mr. al-Kidwa , who is also the Palestinian representative to the United Nations , is expected to deliver the report to a Palestinian ministerial council which is looking into the cause of Mr. Arafat 's death . NNP NNP , WP VBZ RB DT JJ NN TO DT NNP NNP , VBZ VBN TO VB DT NN TO DT JJ NN NN WDT VBZ VBG IN DT NN IN NNP NNP POS NN . The Palestinian leader was admitted to the French hospital in late October , but details of his illness have not been revealed . DT JJ NN VBD VBN TO DT JJ NN IN JJ NNP , CC NNS IN PRP$ NN VBP RB VBN VBN . The United Nations High Commission for Refugees will be on an eight day mission to Uganda and Tanzania starting Monday DT NNP NNP NNP NNP IN NNP MD VB IN DT CD NN NN TO NNP CC NNP VBG NNP A U.N. statement says Antonio Guterres will oversee the start of a new program that would help refugees from Burundi return to their country for the first time since 1972 . DT NNP NN VBZ NNP NNP MD VB DT NN IN DT JJ NN WDT MD VB NNS IN NNP NN TO PRP$ NN IN DT JJ NN IN CD . The commissioner 's office says some 2,18,000 Burundians were forced out of their homeland by violence that year , and now he would like to get as many home as possible . DT NN POS NN VBZ DT CD NNS VBD VBN IN IN PRP$ NN IN NN IN NN , CC RB PRP MD VB TO VB IN JJ NN IN JJ . In a deal reached by Burundi , Tanzania and the U.N. refugee agency , 1,72,000 of the refugees will be allowed to stay in Tanzania and become citizens . IN DT NN VBN IN NNP , NNP CC DT NNP NN NN , CD IN DT NNS MD VB VBN TO VB IN NNP CC VB NNS . The other 46,000 plan to return home to Burundi . DT JJ CD VBZ TO VB NN TO NNP . Former U.S. President Bill Clinton has announced a $ 20 million fund to support small- and medium-sized businesses in earthquake-ravaged Haiti . JJ NNP NNP NNP NNP VBZ VBN DT $ CD CD NN TO VB JJ CC JJ NNS IN JJ NNP . Mr. Clinton make the announcement Thursday in Haiti , along with Mexican billionaire Carlos Slim and Canadian businessman Frank Giustra , who each plan to donate half the seed money for the fund . NNP NNP VBD DT NN NNP IN NNP , IN IN JJ NN NNP NNP CC JJ NN NNP NNP , WP DT VBZ TO VB PDT DT NN NN IN DT NN . In a statement , Mr. Clinton said the fund recognizes the important role small-and medium-sized enterprises play in helping to build a self-sustainable economy in Haiti . IN DT NN , NNP NNP VBD DT NN VBZ DT JJ NN JJ JJ NNS VBP IN VBG TO VB DT JJ NN IN NNP . The announcement came shortly before the inaugural board meeting of the Interim Haiti Reconstruction Commission , which is being chaired by Mr. Clinton and Haitian Prime Minister Jean-Max Bellerive . DT NN VBD RB IN DT JJ NN NN IN DT NNP NNP NNP NNP , WDT VBZ VBG VBN IN NNP NNP CC JJ NNP NNP NNP NNP . The commission is overseeing assistance to the Caribbean nation . DT NN VBZ VBG NN TO DT NNP NN . The powerful January 12 earthquake killed at least 2,17,000 people and left one million homeless . DT JJ NNP CD NN VBN IN JJS CD NNS CC VBD CD CD NN . Many of the homeless are still living in tent cities . NN IN DT NN VBP RB VBG IN JJ NNS . Mr. Clinton is the U.N. special envoy to Haiti . NNP NNP VBZ DT NNP JJ NN TO NNP . A U.S. health expert says the burden of responding to a possible bird flu pandemic reaching the United States will largely fall on local governments . DT NNP NN NN VBZ DT NN IN VBG TO DT JJ NN NN JJ VBG DT NNP NNPS MD RB VB IN JJ NNS . Michael Osterholm says the U.S. military will not be able to respond quickly if a pandemic spreads to all 50 U.S. states , leaving the effort up to state and city officials . NNP NNP VBZ DT NNP NN MD RB VB JJ TO VB RB IN DT JJ VBZ TO DT CD NNP NNS , VBG DT NN IN TO NN CC NN NNS . A plan drafted by the Bush administration to help the country deal with a possible bird flu outbreak says nearly two million people could die , in a worst-case scenario . DT NN VBN IN DT NNP NN TO VB DT NN NN IN DT JJ NN NN NN VBZ RB CD CD NNS MD VB , IN DT JJ NN . The plan says hospitals would be overwhelmed with patients , which could number more than eight million . DT NN VBZ NNS MD VB VBN IN NNS , WDT MD VB JJR IN CD CD . Ban Ki-moon is in Japan for ceremonies commemorating the 65th anniversary of the atomic bombing of Hiroshima and Nagasaki . NNP NNP VBZ IN NNP IN NNS VBG DT JJ NN IN DT JJ NN IN NNP CC NNP . Mr. Ban will be the first U.N. secretary general ever to attend the Peace Memorial Ceremony , held every year on August 6 at the exact hour an atom bomb was dropped on Hiroshima . NNP NNP MD VB DT JJ NNP NN NN RB TO VB DT NNP NNP NNP , VBN DT NN IN NNP CD IN DT JJ NN DT NN NN VBD VBN IN NNP . He will also be the world body 's first leader to visit Nagasaki , where a bomb fell three days later . PRP MD RB VB DT NN NN POS JJ NN TO VB NNP , WRB DT NN VBD CD NNS RB . Mr. Ban met Tuesday with Foreign Minister Katsuya Okada in Tokyo , where he said his visit was meant to send a message about the need to work for global nuclear disarmament . NNP NNP VBD NNP IN NNP NNP NNP NNP IN NNP , WRB PRP VBD PRP$ NN VBD VBN TO VB DT NN IN DT NN TO VB IN JJ JJ NN . He was expected to meet Wednesday with Prime Minister Naoto Kan before traveling to Hiroshima . PRP VBD VBN TO VB NNP IN NNP NNP NNP NNP IN VBG IN NNP . The two bombs killed more than 2,00,000 people during the final stages of World War II . DT CD NNS VBD JJR IN CD NNS IN DT JJ NNS IN NNP NNP NNP . United Nations Secretary-General Kofi Annan has condemned a recent incursion of Ugandan rebels into the Democratic Republic of Congo ( DRC ) . NNP NNP NNP NNP NNP VBZ VBN DT JJ NN IN JJ NNS IN DT JJ NNP IN NNP LRB NNP RRB . In a statement Wednesday , Mr. Annan called for all governments in the region to use established processes to resolve the situation and boost efforts to end the activities of illegal armed groups . IN DT NN NNP , NNP NNP VBD IN DT NNS IN DT NN TO VB JJ NNS TO VB DT NN CC VB NNS TO VB DT NNS IN JJ JJ NNS . He reiterated that the threat or use of force against the territorial integrity or political independence of Congo violates the U.N. charter and recent mutual commitments . PRP VBD IN DT NN CC NN IN NN IN DT JJ NN CC JJ NN IN NNP VBZ DT NNP NN CC JJ JJ NNS . Ugandan President Yoweri Museveni has threatened to send troops into Congo to disarm Ugandan rebels if Congo 's army and U.N. peacekeepers failed to do so . JJ NNP NNP NNP VBZ VBN TO VB NNS IN NNP TO VB JJ NNS IN NNP POS NN CC NNP NNS VBD TO VB RB . At least 300 Ugandan rebels from the Lord 's Resistance Army crossed into Congo last month seeking political asylum . IN JJS CD JJ NNS IN DT NNP POS NNP NNP VBD IN NNP JJ NN VBG JJ NN . The U.N. Security Council Tuesday expressed concern about the foreign armed groups that remain in the DRC , and welcomed a DRC plan to disarm Ugandan rebels . DT NNP NNP NNP NNP VBD NN IN DT JJ JJ NNS WDT VBP IN DT NNP , CC VBD DT NNP NN TO VB JJ NNS . Palestinian sources say two police officers have been killed and several others wounded in an explosion in the northern Gaza Strip that destroyed a building used by Palestinian security forces . JJ NNS VBP CD NNS NNS VBP VBN VBN CC JJ NNS VBD IN DT NN IN DT JJ NNP NNP WDT VBD DT NN VBN IN JJ NN NNS . A Palestinian Interior Ministry spokesman accused Israel in the incident at the Jabaliya refugee camp . DT JJ NNP NNP NN VBD NNP IN DT NN IN DT NNP NN NN . But the Israeli army said it was not involved . CC DT JJ NN VBD PRP VBD RB VBN . Israel has recently stepped up air strikes and artillery shelling against militant targets in northern Gaza , in response to ongoing rocket fire from Gaza militants targeting southern Israel . NNP VBZ RB VBN RP NN NNS CC NN NN IN JJ NNS IN JJ NNP , IN NN TO JJ NN NN IN NNP NNS VBG JJ NNP . Officials in Chile say the rescue shaft they are drilling to free 33 trapped copper miners could reach the men by Saturday . NNS IN NNP VBP DT NN NN PRP VBP VBG TO JJ CD JJ NN NNS MD VB DT NNS IN NNP . Chile 's mining minister , Laurence Golborne , told reporters Thursday that once the drill breaks through , it could take anywhere from three to 10 days to bring the men to safety . NNP POS NN NN , NNP NNP , VBD NNS NNP IN RB DT NN NNS IN , PRP MD VB RB IN CD CC CD NNS TO VB DT NNS TO NN . Golborne said experts will have to analyze the soil and rock around the bore to determine if a metal reinforcement is needed to secure the shaft . NNP VBD NNS MD VB TO VB DT NN CC NN IN DT NN TO VB IN DT NN NN VBZ VBN TO VB DT NN . He said that process could take as long as three days . PRP VBD IN NN MD VB RB RB IN CD NNS . The officials say a drill boring the rescue shaft is now within 100 meters of where the miners are located . DT NNS VBP DT NN VBG DT NN NN VBZ RB IN CD NNS IN WRB DT NNS VBP VBN . The men have been trapped more than 600 meters underground since early August . DT NNS VBP VBN VBN RBR IN CD NNS RB IN JJ NNP . Crews have been sending food , water , games , letters and other items to the men through small supply shafts . NNS VBP VBN VBG NN , NN , NNS , NNS CC JJ NNS TO DT NNS IN JJ NN NNS . Crowds are gathering in the U.S. city of New Orleans Tuesday to celebrate Mardi Gras , which literally means ' Fat Tuesday ' . NNS VBP VBG IN DT NNP NN IN NNP NNP NNP TO VB NNP NNP , WDT RB VBZ `` NNP NNP `` . Eleven parades will be taking place in the city Tuesday , and street parties will continue until midnight . CD NNS MD VB VBG NN IN DT NN NNP , CC NN NNS MD VB IN NN . Mardi Gras , or Carnival as it is known elsewhere , is a joyful time celebrated in many predominately Roman Catholic countries . NNP NNP , CC NNP IN PRP VBZ VBN RB , VBZ DT JJ NN VBN IN JJ JJ NNP NNP NNS . It precedes Lent , the somber Christian observance leading up to Easter . PRP VBZ NNP , DT JJ NNP NN VBG RP TO NNP . City officials say the crowd is smaller than last year , but still party-goers are pouring into New Orleans ' famous French Quarter . NNP NNS VBP DT NN VBZ JJR IN JJ NN , CC RB NNS VBP VBG IN NNP NNP POS JJ JJ NN . Many of them are in costume , wearing purple , gold and green beads , feather boas and masks . NN IN PRP VBP IN NN , VBG NN , NN CC JJ NNS , NN NNS CC NNS . Lavish Mardi Gras parades were also staged in New Orleans Tuesday evening , one of them led by singer Harry Connick Jr . JJ NNP NNP NNS VBD RB VBN IN NNP NNP NNP NN , CD IN PRP VBN IN NN NNP NNP NNP . Uruguay 's new president has restored diplomatic ties with Cuba . NNP POS JJ NN VBZ VBN JJ NNS IN NNP . The move came Tuesday , shortly after Tabare Vazquez was sworn into office in Montevideo . DT NN VBD NNP , RB IN NNP NNP VBD VBN IN NN IN NNP . Diplomatic relations between the two nations were broken in 2002 after Mr. Vazquez 's predecessor , Jorge Batlle , criticized Cuba over its human rights record . JJ NNS IN DT CD NNS VBD VBN IN CD IN NNP NNP POS NN , NNP NNP , VBD NNP IN PRP$ JJ NNS NN . Uruguay 's 65-year-old president is a cancer specialist and former mayor of Montevideo . NNP POS JJ NN VBZ DT NN NN CC JJ NN IN NNP . Cuban leader Fidel Castro canceled his plans to attend the inauguration for health reasons . JJ NN NNP NNP VBD PRP$ NNS TO VB DT NN IN NN NNS . Among those attending the inauguration were the presidents of Bolivia , Chile , Paraguay and Peru as well as Spain 's Crown Prince Felipe . IN DT VBG DT NN VBD DT NNS IN NNP , NNP , NNP CC NNP RB RB IN NNP POS NNP NNP NNP . The U.S. delegation was led by Labor Secretary Elaine Chao . DT NNP NN VBD VBN IN NNP NNP NNP NNP . U.S. State Department spokesman Adam Ereli Tuesday offered congratuatlions to the New President and said the United States looks forward to working with him . NNP NNP NNP NN NNP NNP NNP VBD NNS TO DT NNP NNP CC VBD DT NNP NNPS VBZ RB TO VBG IN PRP . Afghan officials say the police chief for the southern province of Kandahar has been killed in a clash with Afghan special forces trained by the U.S. JJ NNS VBP DT NN NN IN DT JJ NN IN NNP VBZ VBN VBN IN DT NN IN JJ JJ NNS VBN IN DT NNP A senior member of the Kandahar provincial council says at least nine other police officers were killed in Monday 's clash outside the prosecutor 's office in Kandahar city . DT JJ NN IN DT NNP JJ NN VBZ IN JJS CD JJ NNS NNS VBD VBN IN NNP POS NN IN DT NN POS NN IN NNP NN . It is not clear what sparked the shootout . PRP VBZ RB JJ WP VBD DT NN . Afghan officials said Sunday Taliban insurgents killed at least seven police officers in separate attacks in western Afghanistan on Saturday . JJ NNS VBD NNP NNP NNS VBD IN JJS CD NNS NNS IN JJ NNS IN JJ NNP IN NNP . Authorities say five officers and at least seven Taliban fighters were killed when militants attacked a police post in Farah province , Posht-e-Rud . NNS VBP CD NNS CC IN JJS CD NNP NNS VBD VBN WRB NNS VBD DT NN NN IN NNP NN , NNP . Elsewhere in Farah Saturday , Taliban fighters ambushed Afghan police in Bala Boluk , triggering a battle in which two police officers and at least five insurgents were killed . RB IN NNP NNP , NNP NNS VBD JJ NNS IN NNP NNP , VBG DT NN IN WDT CD NNS NNS CC IN JJS CD NNS VBD VBN . The U.S. Army began work Thursday on a long process to destroy nearly 9,50,000 liters of deadly VX nerve gas agent that has been stored in the midestern U.S. state of Indiana . DT NNP NNP VBD NN NNP IN DT JJ NN TO VB RB CD NNS IN JJ NNP NN NN NN WDT VBZ VBN VBN IN DT JJ NNP NN IN NNP . Army contractors drained two of 1,600 hardened steel containers at the Newport Chemical Depot and moved the nerve agent into a holding tank . NNP NNS VBD CD IN CD VBN NN NNS IN DT NNP NNP NNP CC VBD DT NN NN IN DT NN NN . Friday , the VX will be pumped into a chemical reactor where it will be mixed with water and sodium hydroxide . NNP , DT NNP MD VB VBN IN DT NN NN WRB PRP MD VB VBN IN NN CC NN NN . The mixture will be heated for several days to determine when the chemical has been neutralized . DT NN MD VB VBN IN JJ NNS TO VB WRB DT NN VBZ VBN VBN . The entire process will take more than two years to complete . DT JJ NN MD VB JJR IN CD NNS TO VB . Authorities want to ship the neutralized chemical to a New Jersey treatment plant before it is dumped into the Delaware River . NNS VBP TO VB DT JJ NN TO DT NNP NNP NN NN IN PRP VBZ VBN IN DT NNP NNP . Experts say a single drop of VX on the skin can kill a person in less than 12 seconds . NNS VBP DT JJ NN IN NNP IN DT NN MD VB DT NN IN JJR IN CD NNS . Nepal 's army has deployed more helicopters and armed escorts along highways Sunday in an effort to break a Maoist blockade . NNP POS NN VBZ VBN JJR NNS CC JJ NNS IN NNS NNP IN DT NN TO VB DT NN NN . Traffic was light again on the second day of the nationwide blockade . NN VBD JJ RB IN DT JJ NN IN DT JJ NN . The Maoists are protesting King Gyanendra 's decision to dismiss the government , impose a state of emergency and suspend civil liberties , as well as putting the media under military control . DT NNS VBP VBG NNP NNP POS NN TO VB DT NN , VB DT NN IN NN CC VB JJ NNS , RB RB IN VBG DT NNS IN JJ NN . The rebels say they will continue until the monarch reverses his actions , which have prompted protests from many countries . DT NNS VBP PRP MD VB IN DT NN VBZ PRP$ NNS , WDT VBP VBN NNS IN JJ NNS . The king dismissed the government for failing to hold parliamentary elections and stop the communist insurgency . DT NN VBD DT NN IN VBG TO VB JJ NNS CC VB DT JJ NN . The blockade began on the ninth anniversary of the rebels ' violent uprising against the monarchy , during which more than 11,000 people have been killed . DT NN VBD IN DT JJ NN IN DT NNS POS JJ NN IN DT NN , IN WDT JJR IN CD NNS VBP VBN VBN . The Afghan government says it is not concerned about the recently launched clandestine Taleban radio station that is broadcasting anti-U.S. and anti-government propaganda . DT JJ NN VBZ PRP VBZ RB JJ IN DT RB VBN JJ NNP NN NN WDT VBZ VBG JJ CC JJ NN . A presidential spokesman says since the Afghan people suffered enough under the ousted Taleban regime , the propaganda is not expected to have an impact . DT JJ NN VBZ IN DT JJ NNS VBD RB IN DT JJ NNP NN , DT NN VBZ RB VBN TO VB DT NN . He also said he does not believe the Taleban remnants can continue such activities for long because the government intends to bring them to justice sooner rather than later . PRP RB VBD PRP VBZ RB VB DT NNP NNS MD VB JJ NNS IN RB IN DT NN VBZ TO VB PRP TO NN RBR RB IN RB . A U.S. military spokeswoman in Kabul says it is up to the Afghan government how it wants to deal with the broadcasts . DT NNP JJ NN IN NNP VBZ PRP VBZ RB TO DT JJ NN WRB PRP VBZ TO VB IN DT NNS . But she said the area targeted by the broadcasts will definitely be under U.S. military surveillance . CC PRP VBD DT NN VBN IN DT NNS MD RB VB IN NNP JJ NN . Campaigning has officially begun in Iraq for the country 's upcoming March 7 general election . NN VBZ RB VBN IN NNP IN DT NN POS JJ NNP CD JJ NN . The first official campaign posters were plastered across Baghdad Friday . DT JJ NN NN NNS VBD VBN IN NNP NNP . Campaigning opened amid simmering tensions over the decision to ban a number of Sunni Muslim candidates because of alleged ties to late Iraqi leader Saddam Hussein 's Ba'ath party . NN VBD IN VBG NNS IN DT NN TO VB DT NN IN NNP NNP NNS IN IN JJ NNS TO JJ JJ NN NNP NNP POS NNP NN . Iraq 's Shi'ite-led government has tried to purge former Ba'athists from top positions . NNP POS JJ NN VBZ VBN TO VB JJ NNS IN JJ NNS . Analysts say the effort could re-ignite sectarian tensions between majority Shi'ite Muslims and Sunnis , who dominated Iraq under Saddam . NNS VBP DT NN MD VB JJ NNS IN NN NNP NNPS CC NNPS , WP VBD NNP IN NNP . As campaigning began , the U.S. military said five people were killed during a joint raid with Iraqi forces in a village near the Iranian border . IN NN VBD , DT NNP NN VBD CD NNS VBD VBN IN DT JJ NN IN JJ NNS IN DT NN IN DT JJ NN . It said those killed were suspected militants , but a provincial council member told the Associated Press they were civilians . PRP VBD DT VBN VBD VBN NNS , CC DT JJ NN NN VBD DT NNP NNP PRP VBD NNS . No further information was immediately available . DT JJ NN VBD RB JJ . A diplomat close to a U.N. investigation of Iran 's nuclear program says Pakistan has agreed to hand over used centrifuge components to the U.N. nuclear watchdog agency . DT NN RB TO DT NNP NN IN NNP POS JJ NN VBZ NNP VBZ VBN TO NN IN VBN NN NNS TO DT NNP JJ NN NN . Inspectors hope tests will prove whether traces of enriched uranium found in Iran came from the Pakistani equipment , as Tehran has argued , rather than from material produced at the Iranian site . NNS VBP NNS MD VB IN NNS IN VBN NN VBN IN NNP VBD IN DT JJ NN , IN NNP VBZ VBN , RB IN IN NN VBN IN DT JJ NN . Each batch of enriched uranium has a unique ' fingerprint . ' DT NN IN VBN NN VBZ DT JJ `` NN . `` Islamabad acknowledged for the first time last week that Pakistani scientist Abdul Qadeer Khan gave equipment to Iran . NNP VBD IN DT JJ NN JJ NN IN JJ NN NNP NNP NNP VBD NN TO NNP . It has previously admitted that his group sold technology and blueprints to North Korea , Libya and Iran . PRP VBZ RB VBN IN PRP$ NN VBD NN CC NNS TO NNP NNP , NNP CC NNP . Iran insists it intends to use enriched uranium only in power stations , but Washington argues that Iran is making fuel for atomic warheads . NNP VBZ PRP VBZ TO VB VBN NN RB IN NN NNS , CC NNP VBZ IN NNP VBZ VBG NN IN JJ NNS . Military officials say at least three soldiers and 12 militants have been killed in a clash in southwestern Pakistan . JJ NNS VBP IN JJS CD NNS CC CD NNS VBP VBN VBN IN DT NN IN JJ NNP . Major General Salim Nawaz say the rebels ambushed a paramilitary convoy Sunday in the Dera Bugti district of Baluchistan province . NNP NNP NNP NNP VBP DT NNS VBD DT JJ NN NNP IN DT NNP NNP NN IN NNP NN . The general says troops retaliated , killing the militants and destroying their hideout near natural gas installations in the Sui area . DT JJ VBZ NNS VBD , VBG DT NNS CC VBG PRP$ NN IN JJ NN NNS IN DT NNP NN . This is the second such clash in over a week . DT VBZ DT JJ JJ NN IN IN DT NN . At least 36 militants and troops were killed in the region last weekend . IN JJS CD NNS CC NNS VBD VBN IN DT NN JJ NN . Rebel tribesmen have been waging a long-running , low-key insurgency in Dera Bugti . NNP NNS VBP VBN VBG DT JJ , JJ NN IN NNP NNP . The militants accuse the central government of not sharing profits from the province 's vast natural gas reserves . DT NNS VBP DT JJ NN IN RB VBG NNS IN DT NN POS JJ JJ NN NNS . Dera Bugti is near Pakistan 's biggest natural gas field and was the base of late Baluch rebel leader Nawab Akbar Bugti who was killed in a military operation in 2006 . NNP NNP VBZ IN NNP POS JJS JJ NN NN CC VBD DT NN IN JJ NNP NN NN NNP NNP NNP WP VBD VBN IN DT JJ NN IN CD . Shi'ite and Kurdish political leaders in Iraq say the new government could be formed within the next week , as marathon negotiations on its makeup continue . NNP CC NNP JJ NNS IN NNP VBP DT JJ NN MD VB VBN IN DT JJ NN , IN NN NNS IN PRP$ NN VB . Jawad al-Maliky of the Shi'ite-dominated United Iraqi Alliance told reporters Friday the National Assembly will likely meet again next Thursday and vote on the proposed president , prime minster and cabinet . NNP NNP IN DT JJ NNP JJ NNP VBD NNS NNP DT NNP NNP MD RB VB RB JJ NNP CC NN IN DT VBN NN , JJ NN CC NN . But some other politicians have given a slightly longer time frame , saying the parliament will not reconvene until next Saturday . CC DT JJ NNS VBP VBN DT RB JJR NN NN , VBG DT NN MD RB VB IN JJ NNP . The new interim assembly was sworn in Wednesday , but the government was not named because Shi'ite and Kurdish politicians have not been able to compromise on several significant issues . DT JJ JJ NN VBD VBN IN NNP , CC DT NN VBD RB VBN IN NNP CC NNP NNS VBP RB VBN JJ TO VB IN JJ JJ NNS . Some Iraqis have expressed frustration over the prolonged talks , after millions defied insurgents and risked attack to vote in the January 30th election . DT NNS VBP VBN NN IN DT JJ NNS , IN NNS VBD NNS CC VBD NN TO VB IN DT NNP CD NN . Turkish officials say Kurdish separatist militants have killed four soldiers in an overnight ambush in the eastern part of Turkey . JJ NNS VBP NNP JJ NNS VBP VBN CD NNS IN DT JJ NN IN DT JJ NN IN NNP . Authorities say militants of the Kurdistan Workers Party , armed with rocket launchers , attacked a local commando unit on patrol in Tunceli province in a pre-dawn raid on Sunday . NNS VBP NNS IN DT NNP NNP NNP , VBN IN NN NNS , VBD DT JJ NN NN IN NN IN NNP NN IN DT JJ NN IN NNP . One Turkish soldier was wounded . CD JJ NN VBD VBN . Fighting between the government and the Kurdish rebels subsided in 1999 after the rebels declared a cease-fire with Ankara . VBG IN DT NN CC DT NNP NNS VBD IN CD IN DT NNS VBD DT NN IN NNP . But rebels called off the truce last June , saying they were not satisfied with the pace of promised Turkish reforms . CC NNS VBD RP DT NN JJ NNP , VBG PRP VBD RB VBN IN DT NN IN JJ JJ NNS . The Kurdistan Workers Party has been fighting for an ethnic homeland in southeastern Turkey for more than two decades . DT NNP NNP NNP VBZ VBN VBG IN DT JJ NN IN JJ NNP IN JJR IN CD NNS . More than 30,000 people have died since their revolt began in 1984 . JJR IN CD NNS VBP VBN IN PRP$ NN VBD IN CD . Japanese authorities have confirmed that a bird flu outbreak in the country 's south was caused by the deadly H5N1 virus . JJ NNS VBP VBN IN DT NN NN NN IN DT NN POS NN VBD VBN IN DT JJ NNP NN . Authorities said Saturday officials are culling tens of thousands of birds on the affected poultry farm in Miyazaki prefecture . NNS VBD NNP NNS VBP VBG NNS IN NNS IN NNS IN DT JJ NN NN IN NNP NN . The culling began Friday , after preliminary tests showed the chickens were infected with an H5 strain of the bird flu virus . DT NN VBD NNP , IN JJ NNS VBD DT NNS VBD VBN IN DT NNP NN IN DT NN NN NN . Earlier this month in the same area , Japan confirmed its first outbreak of H5N1 in three years . RBR DT NN IN DT JJ NN , NNP VBD PRP$ JJ NN IN NNP IN CD NNS . No human infections have been reported . DT JJ NNS VBP VBN VBN . Bird flu has killed more than 150 people worldwide since its emergence in 2003 . NN NN VBZ VBN JJR IN CD NNS JJ IN PRP$ NN IN CD . Taleban militants have freed one German and four Afghans held hostage in Afghanistan since July in exchange for the release of several Taleban prisoners . NNP NNS VBP VBN CD JJ CC CD NNS VBN NN IN NNP IN NNP IN NN IN DT NN IN JJ NNP NNS . Jaghato district chief Mohammed Nahim in Wardak province says the hostage swap took place earlier Wednesday . NNP NN NN NNP NNP IN NNP NN VBZ DT NN NN VBD NN RB NNP . The official and the private Afghan news agency , Pajhwok , says the freed Taleban militants were related to the kidnappers . DT NN CC DT JJ JJ NN NN , NNP , VBZ DT VBN NNP NNS VBD VBN TO DT NNS . The German , Rudolf Blechschmidt , was captured in Wardak province along with the Afghans and another German , who became ill while in captivity and was shot dead . DT NN , NNP NNP , VBD VBN IN NNP NN IN IN DT NNS CC DT NN , WP VBD JJ IN IN NN CC VBD VBN JJ . German Foreign Minister Frank-Walter Steinmeier confirmed the release of the engineer , saying officials were happy and relieved . JJ NNP NNP NNP NNP VBD DT NN IN DT NN , VBG NNS VBD JJ CC JJ . Blechschmidt appeared in a video in August pleading for his freedom and saying his health was deteriorating . NNP VBD IN DT NN IN NNP VBG IN PRP$ NN CC VBG PRP$ NN VBD VBG . Taleban kidnappers demanded Germany withdraw its troops serving with the NATO mission in Afghanistan . NNP NNS VBD NNP VB PRP$ NNS VBG IN DT NNP NN IN NNP . The German government refused . DT JJ NN VBD . Afghan officials say at least 32 people have died in a head-on collision between two buses in southern Afghanistan . JJ NNS VBP IN JJS CD NNS VBP VBN IN DT JJ NN IN CD NNS IN JJ NNP . At least 35 others were injured . IN JJS CD NNS VBD VBN . Police said the crash occurred Monday on the main road linking the capital Kabul and the southern city of Kandahar . NNS VBD DT NN VBD NNP IN DT JJ NN VBG DT NN NNP CC DT JJ NN IN NNP . The Reuters news agency reports the crash occurred at a high speed about an hour before sundown . DT NNP NN NN VBZ DT NN VBD IN DT JJ NN IN DT NN IN NN . In other news , NATO reports that a soldier with its International Security Assistance Force mission was killed and at least four others wounded while on patrol in southern Afghanistan on Monday . IN JJ NN , NNP VBZ IN DT NN IN PRP$ NNP NNP NNP NNP NN VBD VBN CC IN JJS CD NNS VBN IN IN NN IN JJ NNP IN NNP . Arab foreign ministers meeting in Cairo have agreed to support a U.S. proposal for indirect peace talks between Palestinians and Israelis . JJ JJ NNS VBG IN NNP VBP VBN TO VB DT NNP NN IN JJ NN NNS IN NNS CC NNS . Palestinian negotiator Saeb Erekat told reporters Wednesday that members of the Arab League will back the talks for a period of four months . JJ NN NNP NNP VBD NNS NNP IN NNS IN DT NNP NNP MD VB DT NNS IN DT NN IN CD NNS . Palestinian President Mahmoud Abbas , who is attending the Cairo meeting , has said he would abide by the Arab League 's decision . JJ NNP NNP NNP , WP VBZ VBG DT NNP NN , VBZ VBN PRP MD VB IN DT NNP NNP POS NN . Israeli Prime Minister Benjamin Netanyahu also welcomed the decision . JJ NNP NNP NNP NNP RB VBD DT NN . The announcement follows a U.S. offer to mediate discussions between the two sides in an effort to revive the stalled peace process . DT NN VBZ DT NNP NN TO VB NNS IN DT CD NNS IN DT NN TO VB DT VBN NN NN . On Tuesday , a U.S. State Department spokesman , P.J. Crowley , said Washington believes Israel and the Palestinians are ' getting closer ' to starting a dialogue . IN NNP , DT NNP NNP NNP NN , NNP NNP , VBD NNP VBZ NNP CC DT NNS VBP `` VBG RBR `` TO VBG DT NN . Talks broke down over a year ago . NNS VBD RP IN DT NN RB . One of the biggest disputes is Israel 's continued settlement activity in territory that Palestinians claim for a future state . CD IN DT JJS NNS VBZ NNP POS JJ NN NN IN NN IN NNS VBP IN DT JJ NN . Ukrainian President Viktor Yushchenko has assured President Bush that recent political developments in Ukraine will in no way affect his country 's hopes to eventually join NATO and the European Union . JJ NNP NNP NNP VBZ VBN NNP NNP IN JJ JJ NNS IN NNP MD IN DT NN VB PRP$ NN POS NNS TO RB VB NNP CC DT NNP NNP . In a statement , Saturday , the Ukrainian presidency said the two men had spoken by telephone . IN DT NN , NNP , DT JJ NN VBD DT CD NNS VBD VBN IN NN . The statement quoted Mr. Yushchenko as telling Mr. Bush his recent actions were aimed at consolidating democracy and making Ukraine 's government more efficient . DT NN VBD NNP NNP IN VBG NNP NNP PRP$ JJ NNS VBD VBN IN VBG NN CC VBG NNP POS NN RBR JJ . Thursday , Mr. Yushchenko dismissed Prime Minister Yulija Tymoshenko , one of the key figures behind the ' Orange Revolution , ' the popular movement that brought him to power early this year . NNP , NNP NNP VBD NNP NNP NNP NNP , CD IN DT JJ NNS IN DT `` NNP NNP , `` DT JJ NN WDT VBD PRP TO NN RB DT NN . The Ukrainian president also dismissed the entire cabinet amid reports of government infighting and allegations of official fraud . DT JJ NN RB VBD DT JJ NN IN NNS IN NN NN CC NNS IN JJ NN . He named senior regional official Yuri Yekhanurov acting prime minister . PRP VBD JJ JJ NN NNP NNP VBG JJ NN . Ms. Tymoshenko says she and her supporters plan to run their own candidates in next year 's parliamentary elections . NNP NNP VBZ PRP CC PRP$ NNS VBP TO VB PRP$ JJ NNS IN JJ NN POS JJ NNS . Governments , officials and activists worldwide are commemorating International Human Rights Day Friday . NNS , NNS CC NNS NN VBP VBG NNP NNP NNP NNP NNP . Today marks the anniversary of the U.N. General Assembly 's adoption of the Universal Declaration of Human Rights in 1948 . NN VBZ DT NN IN DT NNP NNP NNP POS NN IN DT NNP NNP IN NNP NNPS IN CD . The General Assembly will commemorate Human Rights Day by holding a plenary session on human rights education . DT NNP NNP MD VB NNP NNP NNP IN VBG DT JJ NN IN JJ NNS NN . The session also marks the end of the United Nations Decade for Human Rights Education , which began in 1995 . DT NN RB VBZ DT NN IN DT NNP NNP NNP IN NNP NNP NNP , WDT VBD IN CD . The world body also plans to hold panel discussions on human rights education in schools , as well as a human rights year in review . DT NN NN RB VBZ TO VB NN NNS IN JJ NNS NN IN NNS , RB RB IN DT JJ NNS NN IN NN . Pope John Paul II has denounced using hostages as bargaining pieces and called for respect of human life . NNP NNP NNP NNP VBZ VBN VBG NNS IN NN NNS CC VBN IN NN IN JJ NN . The pontiff made the comments in French Saturday as he accepted a political courage award from a French Catholic television station and French political magazine . DT NN VBD DT NNS IN NNP NNP IN PRP VBD DT JJ NN NN IN DT JJ JJ NN NN CC JJ JJ NN . He told the audience at the Vatican that his thoughts go out to journalists , who he described as artisans of peace and liberty , and face danger in conflict zones . PRP VBD DT NN IN DT NNP IN PRP$ NNS VBP RP TO NNS , WP PRP VBD IN NNS IN NN CC NN , CC NN NN IN NN NNS . He said there is no justification for kidnappers using a human life to bargain for demands . PRP VBD EX VBZ DT NN IN NNS VBG DT JJ NN TO VB IN NNS . His comments come as officials still seek word on two French journalists who have been missing in Iraq since August . PRP$ NNS VBP IN NNS RB VBP NN IN CD JJ NNS WP VBP VBN VBG IN NNP IN NNP . Militants who claimed to have abducted the pair have called for France to repeal its headscarf ban in state schools . NNS WP VBD TO VB VBN DT NN VBP VBN IN NNP TO VB PRP$ NN NN IN NN NNS . U.S. Republicans say the country 's health care costs could be lowered by cutting down on lawsuits and allowing people to buy health insurance plans across state lines . NNP NNS VBP DT NN POS NN NN NNS MD VB VBN IN VBG RP IN NNS CC VBG NNS TO VB NN NN NNS IN NN NNS . Giving the Republican Party 's weekly Saturday radio and Internet address , Illinois Congressman Mark Kirk said his party 's suggested reforms are ' common sense . ' VBG DT NNP NNP POS JJ NNP NN CC NN NN , NNP NNP NNP NNP VBD PRP$ NN POS JJ NNS VBP `` JJ NN . `` He said he regrets their health care reform bill was rejected . PRP VBD PRP VBZ PRP$ NN NN NN NN VBD VBN . Kirk said the Democrats ' plan is ' a new massive spending program , ' when the national debt already ' tops $ 12 trillion . ' NNP VBD DT NNPS POS NN VBZ `` DT JJ JJ NN NN , `` WRB DT JJ NN RB `` VBZ $ CD CD . `` Last week , Democrats in the House of Representatives passed their plan . JJ NN , NNPS IN DT NNP IN NNPS VBD PRP$ NN . It includes a government-run option for health insurance and extends coverage to an additional 36 million people . PRP VBZ DT JJ NN IN NN NN CC VBZ NN TO DT JJ CD CD NNS . The government estimates the new bill would cost about $ 1.2 trillion over 10 years . DT NN VBZ DT JJ NN MD VB IN $ CD CD IN CD NNS . The U.S. Senate has yet to pass health care legislation . DT NNP NNP VBZ RB TO VB NN NN NN . Heads of state from French-speaking nations are gathering in the west African nation of Burkina Faso for a two-day summit to discuss the crisis in Ivory Coast . NNS IN NN IN JJ NNS VBP VBG IN DT JJ JJ NN IN NNP NNP IN DT JJ NN TO VB DT NN IN NNP NNP . Leaders of some world hotspots : Sudan , Haiti , Rwanda and Democratic Republic of Congo - top the guest list . NNS IN DT NN NNS IN NNP , NNP , NNP CC NNP NNP IN NNP IN JJ DT NN NN . However , Ivorian President Laurent Gbagbo is not expected to attend . RB , JJ NNP NNP NNP VBZ RB VBN TO VB . French President Jacques Chirac is expected to press delegates to renew a call for peace in Ivory Coast , after the government raided rebel bases this month , shattering an 18-month truce . JJ NNP NNP NNP VBZ VBN TO VB NNS TO VB DT NN IN NN IN NNP NNP , IN DT NN VBD JJ NNS DT NN , VBG DT JJ NN . The raids killed nine members of a French peacekeeping force , which responded by destroying Ivorian warplanes . DT NNS VBD CD NNS IN DT JJ NN NN , WDT VBD IN VBG JJ NNS . The United States is concerned about the outbreak of violence in eastern Uzbekistan . DT NNP NNPS VBZ VBN IN DT NN IN NN IN JJ NNP . A State Department spokesman in Washington , Richard Boucher , has called Friday on both the Uzbek government and the protesters to avoid violence and seek a peaceful way out of the crisis . DT NNP NNP NN IN NNP , NNP NNP , VBZ VBN NNP IN DT DT JJ NN CC DT NNS TO VB NN CC VB DT JJ NN IN IN DT NN . The European Union is blaming authorities in Tashkent for the violence . DT NNP NNP VBZ VBG NNS IN NNP IN DT NN . A spokesman for the European Commission says the clashes in Andijan were a consequence of the government 's lack of respect for human rights and the rule of law , as well as its failure to ease poverty . DT NN IN DT JJ NNP VBZ DT NNS IN NNP VBD DT NN IN DT NN POS NN IN NN IN JJ NNS CC DT NN IN NN , RB RB IN PRP$ NN TO VB NN . In Moscow , Russian authorities have blamed Uzbek protesters for the violence . IN NNP , JJ NNS VBP VBN JJ NNS IN DT NN . The head of the Duma State Committee for International Affairs , Konstantin Kosachev , warns that the Adijon uprising could trigger a wave of unrest across a wider area of Central Asia . DT NN IN DT NNP NNP NNP IN NNP NNP , NNP NNP , VBZ IN DT NNP NN MD VB DT NN IN NN IN DT JJR NN IN NNP NNP . Doctors treating prominent U.S. Senator Edward Kennedy say his apparent seizure Tuesday was caused by fatigue . NNS VBG JJ NNP NNP NNP NNP VBP PRP$ JJ NN NNP VBD VBN IN NN . Kennedy , who has brain cancer , collapsed during an inauguration luncheon in honor of President Barack Obama at the Capitol building . NNP , WP VBZ NN NN , VBD IN DT NN NN IN NN IN NNP NNP NNP IN DT NNP NN . He was taken to a nearby hospital , where he underwent tests . PRP VBD VBN TO DT JJ NN , WRB PRP VBD NNS . Doctors say the 76-year-old liberal icon is awake , talking with friends , and feeling well . NNS VBP DT JJ JJ NN VBZ JJ , VBG IN NNS , CC VBG RB . He will remain in the hospital overnight for observation . PRP MD VB IN DT NN JJ IN NN . Mr. Obama told dignitaries at the inaugural lunch that he was praying for Kennedy , who he called a warrior for civil rights . NNP NNP VBD NNS IN DT JJ NN IN PRP VBD VBG IN NNP , WP PRP VBD DT NN IN JJ NNS . Kennedy underwent surgery for a malignant brain tumor last year , after being diagnosed in May . NNP VBD NN IN DT JJ NN NN JJ NN , IN VBG VBN IN NNP . He has represented the state of Massachusetts in the Senate since 1962 and is the only surviving brother of the late President John Kennedy . PRP VBZ VBN DT NN IN NNP IN DT NNP IN CD CC VBZ DT RB VBG NN IN DT JJ NNP NNP NNP . Sony Corp. completed its tender offer for Columbia Pictures Entertainment Inc. , with Columbia shareholders tendering 99.3 % of all common shares outstanding by the Tuesday deadline . NNP NNP VBN PRP$ NN NN IN NNP NNP NNP NNP , IN NNP NNS VBG CD NN IN DT JJ NNS JJ IN DT NNP NN . Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . NNP NNP NNP NNP , VBN IN DT NNP NN , MD RB VB NN IN DT NN NN RB DT NN , DT NN VBD . Sony is paying $ 27 a share , or $ 3.55 billion , cash and is assuming $ 1.4 billion of long-term debt . NNP VBZ VBG $ CD DT NN , CC $ CD CD , NN CC VBZ VBG $ CD CD IN JJ NN . Still unresolved is Sony 's effort to hire producers Jon Peters and Peter Guber to run the studio . RB JJ VBZ NNP POS NN TO VB NNS NNP NNP CC NNP NNP TO VB DT NN . Sony 's planned acquisition of Guber / Peters Entertainment Co. for $ 200 million is scheduled to close Monday . NNP POS VBN NN IN NNP NN NNP NNP NN IN $ CD CD VBZ VBN TO VB NNP . Guber / Peters has been locked in litigation with Warner Communications Inc. in an attempt to get out of an exclusive production contract with Warner . NNP NN NNP VBZ VBN VBN IN NN IN NNP NNP NNP IN DT NN TO VB IN IN DT JJ NN NN IN NNP . Both sides are in talks to settle the dispute . DT NNS VBP IN NNS TO VB DT NN . In February 2007 , the Iles Eparses became an integral part of the French Southern and Antarctic Lands ( TAAF ) . IN NNP CD , DT NNPS NNPS VBD DT JJ NN IN DT JJ NNP CC NNP NNP LRB NNP RRB . The Southern Lands are now divided into five administrative districts , two of which are archipelagos , Iles Crozet and Iles Kerguelen ; the third is a district composed of two volcanic islands , Ile Saint-Paul and Ile Amsterdam ; the fourth , Iles Eparses , consists of five scattered tropical islands around Madagascar . DT NNP NNPS VBP RB VBN IN CD JJ NNS , CD IN WDT VBP NNS , NNP NNP CC NNP NNP ; DT NN VBZ DT NN VBN IN CD JJ NNS , NNP NNP CC NNP NNP ; DT NN , NNP NNPS , VBZ IN CD JJ JJ NNS IN NNP . They contain no permanent inhabitants and are visited only by researchers studying the native fauna , scientists at the various scientific stations , fishermen , and military personnel . PRP VBP DT JJ NNS CC VBP VBN RB IN NNS VBG DT JJ NN , NNS IN DT JJ JJ NNS , NNS , CC JJ NNS . The fifth district is the Antarctic portion , which consists of ' Adelie Land , ' a thin slice of the Antarctic continent discovered and claimed by the French in 1840 . DT JJ NN VBZ DT JJ NN , WDT VBZ IN `` NNP NNP , `` DT JJ NN IN DT NNP NN VBD CC VBD IN DT NNS IN CD . Landlocked Malawi ranks among the world 's most densely populated and least developed countries . JJ NNP VBZ IN DT NN POS RBS RB VBN CC JJS JJ NNS . The economy is predominately agricultural with about 80 % of the population living in rural areas . DT NN VBZ RB JJ IN IN CD NN IN DT NN NN IN JJ NNS . Agriculture , which has benefited from fertilizer subsidies since 2006 , accounts for more than one-third of GDP and 90 % of export revenues . NN , WDT VBZ VBN IN NN NNS IN CD , NNS IN JJR IN NN IN NN CC CD NN IN NN NNS . The performance of the tobacco sector is key to short-term growth as tobacco accounts for more than half of exports . DT NN IN DT NN NN VBZ JJ TO JJ NN IN NN NNS IN JJR IN NN IN NNS . The economy depends on substantial inflows of economic assistance from the IMF , the World Bank , and individual donor nations . DT NN VBZ IN JJ NNS IN JJ NN IN DT NNP , DT NNP NNP , CC JJ NN NNS . In 2006 , Malawi was approved for relief under the Heavily Indebted Poor Countries ( HIPC ) program . IN CD , NNP VBD VBN IN NN IN DT NNP NNP NNP NNPS LRB NNP RRB NN . In December 2007 , the US granted Malawi eligibility status to receive financial support within the Millennium Challenge Corporation ( MCC ) initiative . IN NNP CD , DT NNP VBD NNP NN NN TO VB JJ NN IN DT NNP NNP NNP LRB NNP RRB NN . The government faces many challenges including developing a market economy , improving educational facilities , facing up to environmental problems , dealing with the rapidly growing problem of HIV / AIDS , and satisfying foreign donors that fiscal discipline is being tightened . DT NN VBZ JJ NNS VBG VBG DT NN NN , VBG JJ NNS , VBG RP TO JJ NNS , VBG IN DT RB VBG NN IN NNP NNP NNP , CC VBG JJ NNS IN JJ NN VBZ VBG VBN . Since 2005 President MUTHARIKA'S government has exhibited improved financial discipline under the guidance of Finance Minister Goodall GONDWE and signed a three year Poverty Reduction and Growth Facility worth $ 56 million with the IMF . IN CD NNP NNP NN VBZ VBN JJ JJ NN IN DT NN IN NNP NNP NNP NNP CC VBD DT CD NN NNP NNP CC NNP NNP JJ $ CD CD IN DT NNP . Improved relations with the IMF lead other international donors to resume aid as well . JJ NNS IN DT NNP NN JJ JJ NNS TO VB NN IN RB . The government has announced infrastructure projects that could yield improvements , such as a new oil pipeline , for better fuel access , and the potential for a waterway link through Mozambican rivers to the ocean , for better transportation options . DT NN VBZ VBN NN NNS WDT MD VB NNS , JJ IN DT JJ NN NN , IN JJR NN NN , CC DT NN IN DT NN NN IN NNP NNS TO DT NN , IN JJR NN NNS . Since 2009 , however , Malawi has experienced some setbacks , including a general shortage of foreign exchange , which has damaged its ability to pay for imports , and fuel shortages that hinder transportation and productivity . IN CD , RB , NNP VBZ VBN DT NNS , VBG DT JJ NN IN JJ NN , WDT VBZ VBN PRP$ NN TO VB IN NNS , CC NN NNS WDT VB NN CC NN . Investment fell 23 % in 2009 , and continued to decline in 2010 . NN VBD CD NN IN CD , CC VBD TO VB IN CD . The government has failed to address barriers to investment such as unreliable power , water shortages , poor telecommunications infrastructure , and the high costs of services . DT NN VBZ VBN TO VB NNS TO NN JJ IN JJ NN , NN NNS , JJ NNS NN , CC DT JJ NNS IN NNS . The Atlantic Ocean is the second largest of the world 's five oceans ( after the Pacific Ocean , but larger than the Indian Ocean , Southern Ocean , and Arctic Ocean ) . DT NNP NNP VBZ DT JJ JJS IN DT NN POS CD NNS LRB IN DT NNP NNP , CC JJR IN DT NNP NNP , NNP NNP , CC NNP NNP RRB . The Kiel Canal ( Germany ) , Oresund ( Denmark-Sweden ) , Bosporus ( Turkey ) , Strait of Gibraltar ( Morocco-Spain ) , and the Saint Lawrence Seaway ( Canada-US ) are important strategic access waterways . DT NNP NNP LRB NNP RRB , NNP LRB NNP RRB , NNP LRB NNP RRB , NNP IN NNP LRB NNP RRB , CC DT NNP NNP NNP LRB NNP RRB VBP JJ JJ NN NNS . The decision by the International Hydrographic Organization in the spring of 2000 to delimit a fifth world ocean , the Southern Ocean , removed the portion of the Atlantic Ocean south of 60 degrees south latitude . DT NN IN DT NNP NNP NNP IN DT NN IN CD TO VB DT JJ NN NN , DT NNP NNP , VBD DT NN IN DT NNP NNP NN IN CD NNS JJ NN . Founding president and liberation struggle icon Jomo KENYATTA led Kenya from independence in 1963 until his death in 1978 , when President Daniel Toroitich arap MOI took power in a constitutional succession . VBG NN CC NN NN NN NNP NNP VBD NNP IN NN IN CD IN PRP$ NN IN CD , WRB NNP NNP NNP NNP NNP VBD NN IN DT JJ NN . The country was a de~facto one-party state from 1969 until 1982 when the ruling Kenya African National Union ( KANU ) made itself the sole legal party in Kenya . DT NN VBD DT JJ JJ NN IN CD IN CD WRB DT NN NNP NNP NNP NNP LRB NNP RRB VBD PRP DT JJ JJ NN IN NNP . MOI acceded to internal and external pressure for political liberalization in late 1991 . NNP VBD TO JJ CC JJ NN IN JJ NN IN JJ CD . The ethnically fractured opposition failed to dislodge KANU from power in elections in 1992 and 1997 , which were marred by violence and fraud , but were viewed as having generally reflected the will of the Kenyan people . DT RB JJ NN VBD TO VB NNP IN NN IN NNS IN CD CC CD , WDT VBD VBN IN NN CC NN , CC VBD VBN IN VBG RB VBN DT NN IN DT JJ NNS . President MOI stepped down in December 2002 following fair and peaceful elections . NNP NNP VBD RB IN NNP CD VBG JJ CC JJ NNS . Mwai KIBAKI , running as the candidate of the multiethnic , united opposition group , the National Rainbow Coalition ( NARC ) , defeated KANU candidate Uhuru KENYATTA and assumed the presidency following a campaign centered on an anticorruption platform . NNP NNP , VBG IN DT NN IN DT JJ , JJ NN NN , DT NNP NNP NNP LRB NNP RRB , VBN NNP NN NNP NNP CC VBD DT NN VBG DT NN VBN IN DT NN NN . KIBAKI 's NARC coalition splintered in 2005 over a constitutional review process . NNP POS NNP NN VBD IN CD IN DT JJ NN NN . Government defectors joined with KANU to form a new opposition coalition , the Orange Democratic Movement , which defeated the government 's draft constitution in a popular referendum in November 2005 . NN NNS VBD IN NNP TO VB DT JJ NN NN , DT NNP NNP NNP , WDT VBD DT NN POS NN NN IN DT JJ NN IN NNP CD . KIBAKI 's reelection in December 2007 brought charges of vote rigging from ODM candidate Raila ODINGA and unleashed two months of violence in which as many as 1,500 people died . NNP POS NN IN NNP CD VBD NNS IN NN VBG IN NNP NN NNP NNP CC JJ CD NNS IN NN IN WDT RB JJ IN CD NNS VBD . UN-sponsored talks in late February produced a powersharing accord bringing ODINGA into the government in the restored position of prime minister . JJ NNS IN JJ NNP VBD DT JJ NN VBG NNP IN DT NN IN DT VBN NN IN JJ NN . Kenya in August 2010 adopted a new constitution that eliminates the role of prime minister after the next presidential election . NNP IN NNP CD VBD DT JJ NN WDT VBZ DT NN IN JJ NN IN DT JJ JJ NN . Scattered over more than three-quarters of a million square kilometers of ocean , the Coral Sea Islands were declared a territory of Australia in 1969 . VBN IN JJR IN NNS IN DT CD JJ NNS IN NN , DT NNP NNP NNP VBD VBN DT NN IN NNP IN CD . They are uninhabited except for a small meteorological staff on the Willis Islets . PRP VBP JJ IN IN DT JJ JJ NN IN DT NNP NNPS . Automated weather stations , beacons , and a lighthouse occupy many other islands and reefs . VBN NN NNS , NNS , CC DT NN VBP JJ JJ NNS CC NNS . A LION roaming by the seashore saw a Dolphin lift up its head out of the waves , and suggested that they contract an alliance , saying that of all the animals they ought to be the best friends , since the one was the king of beasts on the earth , and the other was the sovereign ruler of all the inhabitants of the ocean . DT NN VBG IN DT NN VBD DT NN NN IN PRP$ NN IN IN DT NNS , CC VBD IN PRP VB DT NN , VBG IN IN PDT DT NNS PRP MD TO VB DT JJS NNS , IN DT CD VBD DT NN IN NNS IN DT NN , CC DT NN VBD DT JJ NN IN PDT DT NNS IN DT NN . The Dolphin gladly consented to this request . DT NN RB VBD TO DT NN . Not long afterwards the Lion had a combat with a wild bull , and called on the Dolphin to help him . RB RB VBZ DT NNP VBD DT NN IN DT JJ NN , CC VBD IN DT NN TO VB PRP . The Dolphin , though quite willing to give him assistance , was unable to do so , as he could not by any means reach the land . DT NN , IN RB JJ TO VB PRP NN , VBD JJ TO VB RB , IN PRP MD RB IN DT NNS VBP DT NN . The Lion abused him as a traitor . DT NN VBD PRP IN DT NN . The Dolphin replied , ' Nay , my friend , blame not me , but Nature , which , while giving me the sovereignty of the sea , has quite denied me the power of living upon the land . ' DT NN VBD , `` UH , PRP$ NN , VB RB PRP , CC NN , WDT , IN VBG PRP DT NN IN DT NN , VBZ RB VBN PRP DT NN IN VBG IN DT NN . `` A DRUNKEN Man was lying in the road with a bleeding nose , upon which he had fallen , when a Pig passed that way . DT JJ NN VBD VBG IN DT NN IN DT NN NN , IN WDT PRP VBD VBN , WRB DT NN VBD DT NN . ' You wallow fairly well , ' said the Pig , ' but , my fine fellow , you have much to learn about rooting . ' `` PRP VBP RB RB , `` VBD DT NNP , `` CC , PRP$ JJ NN , PRP VBP RB TO VB IN NN . `` Diplomats say the United States and the European Union are ready to offer Iran a compromise deal that would permit the Tehran government to carry out one of the early stages of making nuclear fuel , but all actual uranium enrichment would take place in Russia . NNS VBP DT NNP NNPS CC DT NNP NNP VBP JJ TO VB NNP DT NN NN WDT MD VB DT JJ NN TO VB RP CD IN DT JJ NNS IN VBG JJ NN , CC DT JJ NN NN MD VB NN IN NNP . Enriched uranium can be used to generate energy or to make nuclear weapons . VBN NN MD VB VBN TO VB NN CC TO VB JJ NNS . Iran says it wants to process its own nuclear fuel to produce electricity . NNP VBZ PRP VBZ TO VB PRP$ JJ JJ NN TO VB NN . But The United States and Europe accuse Tehran of seeking highly enriched weapons-grade material . CC DT NNP NNPS CC NNP VBP NNP IN VBG RB VBN JJ NN . Diplomats say moving the enrichment process to Russia would allow international oversight of the process . NNS VBP VBG DT NN NN TO NNP MD VB JJ NN IN DT NN . Iran has rejected international demands to renounce its right to enrichment , and restarted its conversion process earlier this year . NNP VBZ VBN JJ NNS TO VB PRP$ NN TO NN , CC VBD PRP$ NN NN RBR DT NN . The International Atomic Energy Agency ruled Tehran is not in compliance with the Nuclear Non-Proliferation treaty . DT NNP NNP NNP NNP VBD NNP VBZ RB IN NN IN DT NNP NNP NN . The IAEA board meets later this month ( November 24 ) to consider further action . DT NNP NN VBZ RB DT NN LRB NNP CD RRB TO VB JJ NN . An estimated 8,000 landless activists converged on Brazil 's capital this week to demand land reform . DT VBN CD JJ NNS VBD IN NNP POS NN DT NN TO VB NN NN . The demonstrators surrounded the central bank in Brasilia Thursday , carrying a list of demands for delivery to a bank official . DT NNS VBN DT JJ NN IN NNP NNP , VBG DT NN IN NNS IN NN TO DT NN NN . The Reuters news agency quoted one activist as saying there could be another fight over the issue in five to six months unless more public money is provided to speed up land reform . DT NNP NN NN VBN CD NN IN VBG EX MD VB DT NN IN DT NN IN CD CC CD NNS IN JJR JJ NN VBZ VBN TO VB RP NN NN . The protest took place just days after hooded gunmen killed five land reform activists on a farm in the southeastern state of Minas Gerais . DT NN VBD NN RB NNS IN JJ NNS VBD CD NN NN NNS IN DT NN IN DT JJ NN IN NNP NNP . Brazil has one of the greatest disparities in land ownership in the world , with a small number of wealthy ranchers owning the vast majority of the land . NNP VBZ CD IN DT JJS NNS IN NN NN IN DT NN , IN DT JJ NN IN JJ NNS VBG DT JJ NN IN DT NN . South Korea says North Korea has fired three short-range missiles off its west coast . NNP NNP VBZ NNP NNP VBZ VBN CD JJ NNS IN PRP$ JJS NN . South Korea 's Yonhap news agency said Saturday that the missiles were fired Friday into the Yellow Sea off Jeungsan County , about 40 kilometers west of the North Korean capital of Pyongyang . NNP NNP POS NNP NN NN VBD NNP IN DT NNS VBD VBN NNP IN DT NNP NNP IN NNP NNP , IN CD NNS JJS IN DT JJ JJ NN IN NNP . Quoting a government source , Yonhap said the testing was part of a military training exercise involving ship-to-ship missiles with a range of 46 kilometers . VBG DT NN NN , NNP VBD DT NN VBD NN IN DT JJ NN NN VBG NN NNS IN DT NN IN CD NNS . The North 's navy fired three ship-to-ship missiles on March 28th in what was then described by the South Korean government as part of a regular military exercise in the waters off the peninsula 's west coast . DT NNP POS NN VBD CD NN NNS IN NNP CD IN WP VBD RB VBN IN DT JJ JJ NN IN NN IN DT JJ JJ NN IN DT NNS IN DT NN POS JJS NN . A White House spokesman , Gordon Johndroe , described the tests in March as ' not constructive , ' and urged North Korea to instead focus on dismantling its nuclear facilities . DT NNP NNP NN , NNP NNP , VBD DT NNS IN NNP IN `` RB JJ , `` CC VBD NNP NNP TO RB VB IN VBG PRP$ JJ NNS . Iraqi search and rescue crews are pulling bodies Friday from destroyed buildings after a barrage of rocket and bomb attacks on Baghdad killed at least 64 people Thursday . JJ NN CC NN NNS VBP VBG NNS NNP IN VBN NNS IN DT NN IN NN CC NN NNS IN NNP VBD IN JJS CD NNS NNP . The attack , which officials say included explosives planted in apartments , wounded more than 250 people . DT NN , WDT NNS VBP VBN NNS VBN IN NNS , VBD JJR IN CD NNS . The series of blasts went off for a half hour in mainly Shi'ite areas of the capital . DT NN IN NNS VBD RP IN DT JJ NN IN RB JJ NNS IN DT NN . The coordinated attacks occurred during the intensified U.S.-Iraqi security clampdown across the capital aimed at stopping sectarian violence . DT JJ NNS VBD IN DT JJ JJ NN NN IN DT NN VBN IN VBG JJ NN . Earlier Thursday , Iraqi Prime Minister Nouri al-Maliki said he hoped Iraqi forces would be able to take responsibility for security for most of the country by the end of the year . RBR NNP , JJ NNP NNP NNP NNP VBD PRP VBD JJ NNS MD VB JJ TO VB NN IN NN IN JJS IN DT NN IN DT NN IN DT NN . He said the province of Dhi Qar will be handed over to Iraqi forces next month . PRP VBD DT NN IN NNP NNP MD VB VBN RP TO JJ NNS JJ NN . The U.S. Navy is warning ships to stay away from the coast of Somalia after a series of pirate attacks there . DT NNP NNP VBZ VBG NNS TO VB RB IN DT NN IN NNP IN DT NN IN NN NNS RB . The U.S. Maritime Liaison Office in Bahrain says that , although ships belonging to U.S.-led anti-terror coalition are operating in the area , they can not monitor every ship that passes the east coast of Somalia . DT NNP NNP NNP NNP IN NNP VBZ IN , IN NNS VBG TO JJ JJ NN VBP VBG IN DT NN , PRP MD RB VB DT NN WDT VBZ DT JJ NN IN NNP . The office is urging merchant ships to stay at least 200 nautical miles ( 370 kilometers ) off Somalia . DT NN VBZ VBG NN NNS TO VB IN JJS CD JJ NNS LRB CD NNS RRB IN NNP . Pirates have attacked at least eight ships in the area this year . NNS VBP VBN IN JJS CD NNS IN DT NN DT NN . On Saturday , pirates tried , but failed , to hijack a boat carrying food to Somalia for the United Nations World Food Program . IN NNP , NNS VBD , CC VBD , TO VB DT NN VBG NN TO NNP IN DT NNP NNP NNP NNP NNP . The United Nations is calling for international action against the rampant piracy off Somalia 's coast , saying it threatens further aid deliveries to the country . DT NNP NNPS VBZ VBG IN JJ NN IN DT JJ NN IN NNP POS NN , VBG PRP VBZ JJ NN NNS TO DT NN . President Bush is holding a televised news conference to discuss two of his top priorities - energy and the government 's Social Security pension plan . NNP NNP VBZ VBG DT JJ NN NN TO VB CD IN PRP$ JJ NNS IN NN CC DT NN POS NNP NNP NN NN . Listen on VOA News Now for the live news conference on the following shortwave frequencies : 7115 Khz , 9885 Khz , 11705 Khz and 11725 Khz , or monitor it here now on VOANews.com . NNP IN NNP NNP RB IN DT JJ NN NN IN DT VBG NN NNS IN CD NNP , CD NNP , CD NNP CC CD NNP , CC VB PRP RB RB IN NNP . The news conference will also be available on FM in some areas . DT NN NN MD RB VB JJ IN NN IN DT NNS . Baghdad listeners can tune in 102.4 FM ; Mosul listeners , 104.6 FM ; and in Basra , 105 FM . NNP NNS MD NN IN CD NN ; NNP NNS , CD NN ; CC IN NNP , CD NN . White House spokesman Scott McClellan says the president will talk about specific ideas to keep Social Security solvent in the future . NNP NNP NN NNP NNP VBZ DT NN MD VB IN JJ NNS TO VB NNP NNP NN IN DT NN . He says Mr. Bush will also talk about the importance of addressing the nation 's long-term energy needs . PRP VBZ NNP NNP MD RB VB IN DT NN IN VBG DT NN POS JJ NN NNS . The news conference comes as rising fuel costs continue to take a toll on the U.S. economy and Mr. Bush 's approval ratings . DT NN NN VBZ IN VBG NN NNS VBP TO VB DT NN IN DT NNP NN CC NNP NNP POS NN NNS . Argentinean authorities say they have arrested a Colombian model accused of leading a drug-trafficking ring . JJ NNS VBP PRP VBP VBN DT JJ NN VBN IN VBG DT NN NN . Authorities say they detained Angie Sanclemente Valenica on Wednesday in Argentina 's capital Buenos Aires . NNS VBP PRP VBD NNP NNP NNP IN NNP IN NNP POS NN NNP NNP . Valencia , a former beauty queen , had been accused of heading a group of attractive young women that smuggled cocaine to Mexico . NNP , DT JJ NN NN , VBD VBN VBN IN VBG DT NN IN JJ JJ NNS WDT VBD NN TO NNP . Valencia has denied the charges . NNP VBZ VBN DT NNS . Her native Colombia is the world 's largest cocaine producer . PRP$ JJ NNP VBZ DT NN POS JJS NN NN . A Russian who had been held at the U.S. detention center at Guantanamo Bay , Cuba , says U.S. forces there regularly desecrated the Koran . DT NN WP VBD VBN VBN IN DT NNP NN NN IN NNP NNP , NNP , VBZ NNP NNS RB RB VBD DT NNP . Airat Vakhitov , who was released from Guantanamo last year , said soldiers threw Korans into the toilet and regularly desecrated the book to provoke a response . NNP NNP , WP VBD VBN IN NNP JJ NN , VBD NNS VBD NNS IN DT NN CC RB VBD DT NN TO VB DT NN . The Associated Press quotes Mr. Vakhitov as later saying he did not personally see the Koran being desecrated , but was informed of the alleged incidents by other detainees . DT NNP NNP VBZ NNP NNP IN RB VBG PRP VBD RB RB VB DT NNP VBG VBN , CC VBD VBN IN DT VBN NNS IN JJ NNS . U.S. officials did not immediately respond to the claims made Tuesday in Moscow . NNP NNS VBD RB RB VB TO DT NNS VBN NNP IN NNP . Earlier this month , the Pentagon acknowledged that U.S. forces at Guantanamo had mishandled the Koran on several occasions . RBR DT NN , DT NNP VBD IN NNP NNS IN NNP VBD VBN DT NNP IN JJ NNS . Newsweek magazine reported last month that U.S. forces in Guantanamo had flushed a Koran down a toilet - a charged that sparked deadly riots in Afghanistan and protests in a number of other countries . NNP NN VBD JJ NN IN NNP NNS IN NNP VBD VBN DT NNP IN DT NN IN DT VBN WDT VBD JJ NNS IN NNP CC NNS IN DT NN IN JJ NNS . The magazine later retracted the story . DT NN RB VBD DT NN . A South Korean official says Seoul has repatriated three North Korean fishermen rescued from a boat drifting in South Korean waters . DT JJ JJ NN VBZ NNP VBZ VBN CD JJ JJ NNS VBD IN DT NN VBG IN JJ JJ NNS . Unification Ministry spokesman Chun Hae-sung told reporters that the fishermen were sent back to the North at the border village of Panmunjom on Friday . NNP NNP NN NNP NNP VBD NNS IN DT NNS VBD VBN RB TO DT NNP IN DT NN NN IN NNP IN NNP . He said the three were rescued last month by a South Korean navy vessel near the disputed western sea border with North Korea . PRP VBD DT CD VBD VBN JJ NN IN DT JJ JJ NN NN IN DT JJ JJ NN NN IN NNP NNP . Chun said the fisherman told investigators they wanted to go back to their homeland . NNP VBD DT NN VBD NNS PRP VBD TO VB RB TO PRP$ NN . The two Koreas are still technically at war after the Korean War ended in 1953 with a truce . DT CD NNS VBP RB RB IN NN IN DT NNP NNP VBD IN CD IN DT NN . The U.S. military in Iraq says three coalition soldiers have been killed in Iraq in separate incidents in the past 24 hours . DT NNP NN IN NNP VBZ CD NN NNS VBP VBN VBN IN NNP IN JJ NNS IN DT JJ CD NNS . Officials say one soldier was killed and four others injured when their patrol was attacked by an explosive and small arms fire near Ashraf . NNS VBP CD NN VBD VBN CC CD NNS VBN WRB PRP$ NN VBD VBN IN DT JJ CC JJ NNS NN IN NNP . And two American soldiers were killed by a roadside bomb in eastern Baghdad . CC CD JJ NNS VBD VBN IN DT NN NN IN JJ NNP . The casualties Wednesday came as U.S. officials announced troops had killed two members of al-Qaida in Iraq during separate operations . DT NNS NNP VBD IN NNP NNS VBD NNS VBD VBN CD NNS IN NNP IN NNP IN JJ NNS . The security situation in Iraq was cited by defense lawyers for Saddam Hussein , who demanded bodyguards and other security measures following the kidnapping and murder of a lawyer representing one of Saddam 's co-defendants . DT NN NN IN NNP VBD VBN IN NN NNS IN NNP NNP , WP VBD NNS CC JJ NN NNS VBG DT NN CC NN IN DT NN VBG CD IN NNP POS NNS . And in Washington , U.S. Ambassador to Iraq Zalmay Khalilzad , said military officials could begin reducing the size of American forces in Iraq next year . CC IN NNP , NNP NNP TO NNP NNP NNP , VBD JJ NNS MD VB VBG DT NN IN JJ NNS IN NNP JJ NN . The Treasury Department has frozen the U.S. assets of five people and four groups for alleged connections to an organization with ties to the al-Qaida terrorist network . DT NNP NNP VBZ VBN DT NNP NNS IN CD NNS CC CD NNS IN JJ NNS TO DT NN IN NNS TO DT NNP JJ NN . The suspects , companies - Sara Properties , Meadowbrook Investments and Ozlam Properties - and charity - Sanabel Relief Agency - are reported to be based in Britain . DT NNS , NNS : NNP NNP , NNP NNP CC NNP NNPS : CC NN : NNP NNP NNP : VBP VBN TO VB VBN IN NNP . A statement from the Treasury Department accuses them of financing the Libyan Islamic Fighting Group . DT NN IN DT NNP NNP VBZ PRP IN VBG DT JJ NNP NNP NNP . That group is alleged to be affiliated with al-Qaida and allegedly has engaged in terrorist activities including the attempted assassination of Libyan leader Moammar Gadhafi . DT NN VBZ VBN TO VB VBN IN NNP CC RB VBZ VBN IN JJ NNS VBG DT JJ NN IN JJ NN NNP NNP . The order against the individuals and groups also bars Americans from doing business with them . DT NN IN DT NNS CC NNS RB VBZ NNS IN VBG NN IN PRP . Acting Israeli Prime Minister Ehud Olmert says Iran is obsessed with hatred of Israel and the Jewish people and must be stopped from developing nuclear weapons . VBG JJ NNP NNP NNP NNP VBZ NNP VBZ VBN IN NN IN NNP CC DT JJ NNS CC MD VB VBN IN VBG JJ NNS . Speaking late Tuesday , the Israeli leader called for concrete , joint action by the international community to stop Iran 's alleged push to develop a nuclear arsenal . VBG JJ NNP , DT JJ NN VBD IN NN , JJ NN IN DT JJ NN TO VB NNP POS JJ NN TO VB DT JJ NN . Hours earlier , the leaders of Russia and France joined the chorus of world leaders calling on Tehran to stop all uranium enrichment . NNS RB , DT NNS IN NNP CC NNP VBD DT NN IN NN NNS VBG IN NNP TO VB DT NN NN . China called for continued diplomatic efforts to ease growing international tensions . NNP VBD IN JJ JJ NNS TO VB VBG JJ NNS . Iran insists its nuclear program is aimed at developing electricity . NNP VBZ PRP$ JJ NN VBZ VBN IN VBG NN . Iran resumed small-scale uranium enrichment Monday -- an initial step in the process of producing fuel for nuclear reactors or atomic weapons . NNP VBD JJ NN NN NNP IN DT JJ NN IN DT NN IN VBG NN IN JJ NNS CC JJ NNS . Iran had threatened to resume enrichment after the International Atomic Energy Agency referred it to the U.N. Security Council for possible sanctions earlier this month . NNP VBD VBN TO VB NN IN DT NNP NNP NNP NNP VBD PRP TO DT NNP NNP NNP IN JJ NNS RBR DT NN . Taiwan says it has arrested a military intelligence officer who allegedly provided defense secrets to China . NNP VBZ PRP VBZ VBN DT JJ NN NN WP RB VBD NN NNS TO NNP . A defense ministry spokesman says the officer worked in a division responsible for collecting information about China 's military capabilities . DT NN NN NN VBZ DT NN VBD IN DT NN JJ IN VBG NN IN NNP POS JJ NNS . His activities were uncovered during an investigation into a crime ring involving fake credit cards . PRP$ NNS VBD VBN IN DT NN IN DT NN NN VBG JJ NN NNS . The spokesman says the information the officer passed on to Beijing dealt with the mainland and not Taiwan , and was non-essential . DT NN VBZ DT NN DT NN VBD IN TO NNP VBD IN DT NN CC RB NNP , CC VBD JJ . A former Australian soldier is suspected of appearing in a videotaped terror message released this week , threatening attacks against the West . DT JJ JJ NN VBZ VBN IN VBG IN DT VBN NN NN VBN DT NN , VBG NNS IN DT NNP . Foreign Minister Alexander Downer said Friday , that former army private Mathew Stewart is suspected of joining al-Qaida , although he has not been identified as the masked spokesman in the video . NNP NNP NNP NNP VBD NNP , IN JJ NN JJ NNP NNP VBZ VBN IN VBG NNP , IN PRP VBZ RB VBN VBN IN DT VBN NN IN DT NN . Mr. Downer says the government has reason to believe Mr. Stewart is one of a number of Australians who have turned to al-Qaida . NNP NNP VBZ DT NN VBZ NN TO VB NNP NNP VBZ CD IN DT NN IN NNS WP VBP VBN TO NNP . Federal police have questioned Mr. Stewart 's family , and his mother says he is not the man in the video . NNP NNS VBP VBN NNP NNP POS NN , CC PRP$ NN VBZ PRP VBZ RB DT NN IN DT NN . Mr. Stewart served with the U.N. peacekeeping force in East Timor before he was discharged in 2001 and traveled to Afghanistan the next year . NNP NNP VBD IN DT NNP NN NN IN NNP NNP IN PRP VBD VBN IN CD CC VBD TO NNP DT JJ NN . He has not been seen since . PRP VBZ RB VBN VBN IN . U.S. military officials in Afghanistan say four American soldiers were killed Saturday when their vehicle hit a mine and exploded . NNP JJ NNS IN NNP VBP CD JJ NNS VBD VBN NNP WRB PRP$ NN VBD DT NN CC VBD . The military says the blast occurred Saturday in the southeastern province of Logar , where U.S. and Afghan soldiers were surveying a potential site for a weapons range . DT JJ VBZ DT NN VBD NNP IN DT JJ NN IN NNP , WRB NNP CC JJ NNS VBD VBG DT JJ NN IN DT NNS NN . Officials say they are not certain if the mine had been planted recently or was old unexploded ordnance . NNS VBP PRP VBP RB JJ IN DT NN VBD VBN VBN RB CC VBD JJ JJ NN . Afghanistan is littered with old mines after a quarter century of war . NNP VBZ VBN IN JJ NNS IN DT NN NN IN NN . The deaths came a day after a U.S. Defense Department spokesman , Paul Swiergosz , said American troops will provide transportation and planning support to U.S. and Afghan agencies conducting counter drug operations . DT NNS VBD DT NN IN DT NNP NNP NNP NN , NNP NNP , VBD JJ NNS MD VB NN CC VBG NN TO NNP CC JJ NNS VBG JJ NN NNS . The 17,000 U.S. troops in Afghanistan were previously instructed only to seize or destroy drugs discovered during military operations . DT CD NNP NNS IN NNP VBD RB VBN RB TO VB CC VB NNS VBN IN JJ NNS . U.S. Secretary of State Hillary Clinton says it will be up to her daughter Chelsea whether to accept a Kenyan man 's offer of livestock in return for Chelsea 's hand in marriage . NNP NNP IN NNP NNP NNP VBZ PRP MD VB RB TO PRP$ NN NNP IN TO VB DT JJ NN POS NN IN NN IN NN IN NNP POS NN IN NN . The Kenyan man 's offer of 40 goats and 20 cows was first made in 2000 , in a letter to Secretary Clinton 's husband , then-president Bill Clinton . DT JJ NN POS NN IN CD NNS CC CD NNS VBD JJ VBN IN CD , IN DT NN TO NNP NNP POS NN , JJ NNP NNP . At a town hall meeting in Nairobi Thursday , the mediator asked for a fresh response to the proposal . IN DT NN NN NN IN NNP NNP , DT NN VBD IN DT JJ NN TO DT NN . Clinton said her daughter is ' very independent , ' but added that she will pass along what she called the ' very kind offer . ' NNP VBD PRP$ NN VBZ `` RB JJ , `` CC VBD IN PRP MD VB IN WP PRP VBD DT `` RB NN NN . `` Secretary Clinton is on an 11-day , seven-nation tour of Africa . NNP NNP VBZ IN DT JJ , JJ NN IN NNP . A U.S. group measuring governments ' Internet censorship says Burma has one of the world 's most restrictive policies and may be increasing control through sophisticated filtering software . DT NNP NN VBG NNS POS NN NN VBZ NNP VBZ CD IN DT NN POS RBS JJ NNS CC MD VB VBG NN IN JJ NN NN . The ' Open Net Initiative ' group , supported by several rights groups and U.S. universities , says Burma 's regulating system has both broad , vaguely worded policies governing Internet behavior and harsh penalties for lawbreakers . DT `` NNP NNP NNP `` NN , VBN IN JJ NNS NNS CC NNP NNS , VBZ NNP POS NN NN VBZ DT JJ , RB VBN NNS VBG NNP NN CC JJ NNS IN NNS . It says the state focuses on blocking politically sensitive information such as pro-democracy Web sites , and has the capability to monitor e-mail communication . PRP VBZ DT NN VBZ IN VBG RB JJ NN JJ IN JJ NNP NNS , CC VBZ DT NN TO VB JJ NN . The group says even some mainstream Internet sites , like Yahoo and Hotmail , are barred because they thwart state monitoring . DT NN VBZ RB DT JJ NNP NNS , IN NNP CC NNP , VBP VBN IN PRP VB NN NN . It says the government uses Internet filtering software purchased from a U.S. company , Fortinet . PRP VBZ DT NN VBZ NNP VBG NN VBN IN DT NNP NN , NNP . The independent Irawaddy newspaper quotes officials with the company denying the charge . DT JJ JJ NN VBZ NNS IN DT NN VBG DT NN . Somalia 's parliament has approved Mohammed Ali Gedi as the country 's new prime minister , nearly two weeks after rejecting his nomination . NNP POS NN VBZ VBN NNP NNP NNP IN DT NN POS JJ JJ NN , RB CD NNS IN VBG PRP$ NN . More than 80 percent of lawmakers voted to approve Mr. Gedi Thursday . JJR IN CD NN IN NNS VBD TO VB NNP NNP NNP . He was later sworn in during a ceremony in Nairobi , Kenya , where the new government has been meeting due to security concerns at home . PRP VBD RB VBN IN IN DT NN IN NNP , NNP , WRB DT JJ NN VBZ VBN VBG JJ TO NN NNS IN NN . Earlier this month , lawmakers passed a vote of no confidence in Mr. Gedi , saying Somali President Abdullahi Yusuf Ahmed failed to seek parliament 's approval for the nomination . RBR DT NN , NNS VBD DT NN IN DT NN IN NNP NNP , VBG JJ NNP NNP NNP NNP VBD TO VB NN POS NN IN DT NN . The president re-appointed Mr. Gedi two days later , satisfying lawmakers demands that the process comply with rules governing the newly created power-sharing government . DT NN VBD NNP NNP CD NNS RB , VBG NNS NNS IN DT NN VB IN NNS VBG DT RB VBN JJ NN . Parliament had also rejected the prime minister 's formation of a cabinet of nearly 80 ministers . NNP VBD RB VBN DT JJ NN POS NN IN DT NN IN RB CD NNS . Mr. Gedi is expected to appoint a new cabinet in the coming weeks . NNP NNP VBZ VBN TO VB DT JJ NN IN DT JJ NNS . The U.S. Senate is expected to take up a measure Wednesday designed to make sweeping reforms to the nation 's intelligence agencies . DT NNP NNP VBZ VBN TO VB RP DT NN NNP VBN TO VB JJ NNS TO DT NN POS NN NNS . Lawmakers in the House of Representatives approved the bill Tuesday night by a vote of 336 to 75 . NNS IN DT NNP IN NNPS VBD DT NN NNP NN IN DT NN IN CD TO CD . The bill calls for the creation of a national intelligence director and a National Counterterrorism Center to coordinate all intelligence on terrorist activity . DT NN VBZ IN DT NN IN DT JJ NN NN CC DT NNP NNP NNP TO VB DT NN IN JJ NN . The bill enacts many of the reforms advocated by the panel that investigated the September 11 , 2001 terrorist attacks . DT NN VBZ NN IN DT NNS VBN IN DT NN WDT VBD DT NNP CD , CD JJ NNS . A White House spokesman said President Bush was very pleased with the bill 's passage in the House and that the president believes it will make America safer . DT NNP NNP NN VBD NNP NNP VBD RB JJ IN DT NN POS NN IN DT NNP CC IN DT NN VBZ PRP MD VB NNP JJR . Congressional leaders said earlier Tuesday they were able to resolve key differences in the bill that had delayed its final passage . JJ NNS VBD JJR NNP PRP VBD JJ TO VB JJ NNS IN DT NN WDT VBD VBN PRP$ JJ NN . The U.S. military says coalition forces killed about 40 Taleban fighters Friday in an attack on an insurgent camp in southern Afghanistan . DT NNP NN VBZ NN NNS VBD IN CD NNP NNS NNP IN DT NN IN DT JJ NN IN JJ NNP . A military spokesman , Lieutenant Colonel Paul Fitzpatrick , said Saturday that the coalition forces waited until about 50 rebels entered the camp for a meeting before attacking . DT JJ NN , NNP NNP NNP NNP , VBD NNP IN DT NN NNS VBD IN IN CD NNS VBD DT NN IN DT NN IN VBG . The spokesman said the compound , in eastern Uruzgan province , was severely damaged and it was anticipated that most of those present were killed . DT NN VBD DT NN , IN JJ NNP NN , VBD RB VBN CC PRP VBD VBN IN JJS IN DT JJ VBD VBN . Another U.S. statement said two coalition troops were killed Friday , when their vehicle was hit by a roadside bomb in eastern Kunar province , bordering Pakistan . DT NNP NN VBD CD NN NNS VBD VBN NNP , WRB PRP$ NN VBD VBN IN DT NN NN IN JJ NNP NN , VBG NNP . The military did not give the nationalities of the soldiers killed . DT JJ VBD RB VB DT NNS IN DT NNS VBN . U.S.-led coalition forces in Afghanistan launched an offensive Wednesday involving about 10,000 Afghan and coalition troops . JJ NN NNS IN NNP VBD DT JJ NNP VBG IN CD JJ CC NN NNS . Gunmen have raided a hospital in the northern Iraqi city of Kirkuk , freeing a wounded man who was detained for plotting to kill a judge involved in Saddam Hussein 's trial . NNS VBP VBN DT NN IN DT JJ JJ NN IN NNP , VBG DT JJ NN WP VBD VBN IN VBG TO VB DT NN VBN IN NNP NNP POS NN . A police official says three police guards were killed and six others were wounded in the early morning attack Wednesday . DT NN NN VBZ CD NNS NNS VBD VBN CC CD NNS VBD VBN IN DT JJ NN NN NNP . Elsewhere , an American soldier was killed Tuesday near the western town of Habbaniya when his vehicle hit a mine . RB , DT JJ NN VBD VBN NNP IN DT JJ NN IN NNP WRB PRP$ NN VBD DT NN . Meanwhile , in London , British Foreign Secretary Jack Straw said Britain can not meet the demands of kidnappers holding a British peace activist and three other Westerners hostage in Iraq . RB , IN NNP , NNP NNP NNP NNP NNP VBD NNP MD RB VB DT NNS IN NNS VBG DT JJ NN NN CC CD JJ NNS NN IN NNP . Mr. Straw said no government could meet their demands . NNP NNP VBD DT NN MD VB PRP$ NNS . The kidnappers have threatened to kill the hostages unless Iraqi detainees are released from American and Iraqi jails by Thursday . DT NNS VBP VBN TO VB DT NNS IN JJ NNS VBP VBN IN NNP CC JJ NNS IN NNP . Scientists are warning that a long-term temperature increase of more than two-degrees Celsius would have dangerous consequences for global climate systems . NNS VBP VBG IN DT JJ NN NN IN JJR IN NNS NN MD VB JJ NNS IN JJ NN NNS . Meeting at a U.N. sponsored climate conference in Argentina Tuesday , a group of European experts said such an increase could threaten Latin American water supplies , reduce food yields in Asia and increase extreme weather conditions in the Caribbean . VBG IN DT NNP VBN NN NN IN NNP NNP , DT NN IN JJ NNS VBD JJ DT NN MD VB JJ JJ NN NNS , VB NN NNS IN NNP CC VB JJ NN NNS IN DT NNP . Most scientists agree that global temperatures have already risen an average of more than half-a-degree Celsius over the past century . JJS NNS VBP IN JJ NNS VBP RB VBN DT NN IN JJR IN JJ NN IN DT JJ NN . The main focus of the two-week U.N. conference in Buenos Aires conference is the 1997 Kyoto Protocol , which mandates the reduction of carbon dioxide and other gas emissions believed to cause global warming . DT JJ NN IN DT JJ NNP NN IN NNP NNP NN VBZ DT CD NNP NNP , WDT VBZ DT NN IN NN NN CC JJ NN NNS VBN TO VB JJ NN . The United States and Australia are the only major industrial countries that have failed to ratify the accord . DT NNP NNPS CC NNP VBP DT JJ JJ JJ NNS WDT VBP VBN TO VB DT NN . In rejecting the accord , President Bush said it would damage the U.S. economy . IN VBG DT NN , NNP NNP VBD PRP MD VB DT NNP NN . The Libyan government has given its first-ever donation to the World Food Program to assist with relief efforts in the Darfur region . DT JJ NN VBZ VBN PRP$ JJ NN TO DT NNP NNP NNP TO VB IN NN NNS IN DT NNP NN . The U.N. agency says it will use the $ 4.5 million contribution to cover the increased costs of jet fuel for food airlifts into the troubled area . DT NNP NN VBZ PRP MD VB DT $ CD CD NN TO VB DT JJ NNS IN NN NN IN NN NNS IN DT JJ NN . In a statement , the agency says it has been airlifting food from southern Libya into Darfur for nearly a year . IN DT NN , DT NN VBZ PRP VBZ VBN VBG NN IN JJ NNP IN NNP IN RB DT NN . It says Libya has provided a ground transportation corridor for relief convoys from the port of Benghazi , Libya , into eastern Chad since 2004 . PRP VBZ NNP VBZ VBN DT NN NN NN IN NN NNS IN DT NN IN NNP , NNP , IN JJ NNP IN CD . The World Food Program says it aims to help two-point-seven million people in the Darfur region of western Sudan , and more than 2,00,000 Sudanese refugees in eastern Chad . DT NNP NNP NNP VBZ PRP VBZ TO VB CD CD NNS IN DT NNP NN IN JJ NNP , CC JJR IN CD JJ NNS IN JJ NNP . British Prime Minister Tony Blair says he hopes to bring the United States back into global warming talks . JJ NNP NNP NNP NNP VBZ PRP VBZ TO VB DT NNP NNPS RB IN JJ NN NNS . Mr. Blair said Wednesday - the day the Kyoto pact took effect - that global warming could become a catastrophe and that getting the United States back into a dialogue is one solution . NNP NNP VBD NNP IN DT NN DT NNP NN VBD NN : IN JJ NN MD VB DT NN CC IN VBG DT NNP NNPS RB IN DT NN VBZ CD NN . President Bush pulled out of Kyoto in 2001 , saying it would hurt the U.S. economy . NNP NNP VBD IN IN NNP IN CD , VBG PRP MD VB DT NNP NN . He has called for new technology as one way to cut greenhouse gases . PRP VBZ VBN IN JJ NN IN CD NN TO VB NN NNS . Some European leaders have criticized the United States for pulling out of the Kyoto treaty . DT JJ NNS VBP VBN DT NNP NNPS IN VBG IN IN DT NNP NN . They say they expect Mr. Bush to address the matter when he visits Europe next week . PRP VBP PRP VBP NNP NNP TO VB DT NN WRB PRP VBZ NNP JJ NN . North Korean media say a top official is planning to visit Syria , heightening suspicions that the two countries are cooperating on a secret nuclear program . JJ JJ NNS VBP DT JJ NN VBZ VBG TO VB NNP , VBG NNS IN DT CD NNS VBP VBG IN DT JJ JJ NN . In a brief statement Saturday , the official North Korean Central News Agency said the speaker of North Korea 's parliament , Choe Thae Bok , has left for a trip that will take him to Italy and Syria . IN DT JJ NN NNP , DT JJ JJ JJ NNP NNP NNP VBD DT NN IN NNP NNP POS NN , NNP NNP NNP , VBZ VBN IN DT NN WDT MD VB PRP TO NNP CC NNP . The report gave no other details . DT NN VBD DT JJ NNS . In September , U.S. media reports said Pyongyang has secretly offered nuclear cooperation to Syria , and that the two nations are working on some sort of nuclear facility . IN NNP , NNP NNS NNS VBD NNP VBZ RB VBN JJ NN TO NNP , CC IN DT CD NNS VBP VBG IN DT NN IN JJ NN . Both have denied the allegations . DT VBP VBN DT NNS . North Korea conducted a nuclear weapons test last year , but has since been compliant in six-nation talks aimed at ending its nuclear weapons program . NNP NNP VBD DT JJ NNS NN JJ NN , CC VBZ IN VBN JJ IN JJ NNS VBN IN VBG PRP$ JJ NNS NN . An official in southern Nigeria says two recently kidnapped Philippine oil workers have been freed . DT NN IN JJ NNP VBZ CD RB VBN JJ NN NNS VBP VBN VBN . The government spokesman , Emmanuel Okah , in Rivers State said the two workers abducted Tuesday from the troubled Niger Delta region were released Sunday . DT NN NN , NNP NNP , IN NNP NNP VBD DT CD NNS VBN NNP IN DT JJ NNP NNP NN VBD VBN NNP . He did not say if negotiators paid a ransom , which is frequently demanded by kidnappers in the oil-rich region . PRP VBD RB VB IN NNS VBD DT NN , WDT VBZ RB VBN IN NNS IN DT JJ NN . The two workers are employees of the Norway-based oil services company Petroleum Geo-Services . DT CD NNS VBP NNS IN DT JJ NN NNS NN NNP NNP . They were abducted by armed men from an oil rig near the city of Port Harcourt . PRP VBD VBN IN JJ NNS IN DT NN NN IN DT NN IN NNP NNP . Militants targeting Nigeria 's oil industry have kidnapped some 31 foreign workers since January . NNS VBG NNP POS NN NN VBP VBN DT CD JJ NNS IN NNP . All have been released unharmed . DT VBP VBN VBN JJ . The militants are demanding a greater share of the region 's oil wealth . DT NNS VBP VBG DT JJR NN IN DT NN POS NN NN . Chinese journalists covering the recent collapse of a bridge in central China , which killed at least 41 people , have been harassed while trying to interview grieving families of the deceased . JJ NNS VBG DT JJ NN IN DT NN IN JJ NNP , WDT VBD IN JJS CD NNS , VBP VBN VBN IN VBG TO VB VBG NNS IN DT JJ . According to a Chinese-language Web site , China Public Opinion Monitor , that focuses on human rights issues , a group of reporters from five state-run newspapers , including the Communist Party 's People 's Daily , were attacked by a group of unidentified men earlier this week in Hunan province . VBG TO DT JJ NNP NN , NNP NNP NNP NNP , WDT VBZ IN JJ NNS NNS , DT NN IN NNS IN CD JJ NNS , VBG DT NNP NNP POS NNS POS NNP , VBD VBN IN DT NN IN JJ NNS RBR DT NN IN NNP NN . An editor from China 's Southern Metropolitan Daily confirmed to VOA Mandarin service that the clash occurred . DT NN IN NNP POS NNP NNP NNP VBD TO NNP NNP NN IN DT NN VBD . Local government officials deny that any reporters were beaten . JJ NN NNS VBP IN DT NNS VBD VBN . Monday 's collapse of the bridge over the Tuo river in Hunan province has captured nationwide media attention and China 's president has promised a swift investigation . NNP POS NN IN DT NN IN DT NNP NN IN NNP NN VBZ VBN JJ NNS NN CC NNP POS NN VBZ VBN DT JJ NN . It is still unclear why the bridge collapsed . PRP VBZ RB JJ WRB DT NN VBD . Bisphenol A is a chemical used in making plastic bottles and most other plastic products we use every day . NNP NNP VBZ DT NN VBN IN VBG JJ NNS CC RBS JJ NN NNS PRP VBP DT NN . Until now , the only indication that bisphenol A , or BPA , might be harmful came from studies using laboratory animals . IN RB , DT JJ NN IN NNP NNP , CC NNP , MD VB JJ VBD IN NNS VBG NN NNS . Now , a study involving humans indicates exposure to the chemical may increase the risk of developing heart disease , diabetes and liver problems . RB , DT NN VBG NNS VBZ NN TO DT NN MD VB DT NN IN VBG NN NN , NNS CC NN NNS . VOA 's Carol Pearson has more . NNP POS NNP NNP VBZ RBR . Italian prosecutors say police have arrested two foreigners suspected of plotting terror attacks on targets near Milan . JJ NNS VBP NNS VBP VBN CD NNS VBN IN VBG NN NNS IN NNS IN NNP . Italy 's ANSA news agency says the suspects are Moroccan nationals with suspected links to al-Qaida . NNP POS NNP NN NN VBZ DT NNS VBP JJ NNS IN JJ NNS TO NNP . The report says the two , identified as Rachid Ilhami and Gafir Abdelkader , were planning attacks on a supermarket and a nightclub parking lot outside Milan . DT NN VBZ DT CD , VBN IN NNP NNP CC NNP NNP , VBD VBG NNS IN DT NN CC DT NN NN NN IN NNP . Authorities say additional attacks were planned on police stations in the area . NNS VBP JJ NNS VBD VBN IN NN NNS IN DT NN . The report says wiretaps showed the suspects initially planned to use a van packed with explosives , but later decided to use oxygen canisters . DT NN VBZ NNS VBD DT NNS RB VBD TO VB DT NN VBN IN NNS , CC RB VBD TO VB NN NNS . ANSA says police also seized a cultural center near Milan , where one of the suspects worked as a preacher . NNP VBZ NN RB VBD DT JJ NN IN NNP , WRB CD IN DT NNS VBD IN DT NN . Both suspects are thought to have lived in Italy for several years . DT NNS VBP VBN TO VB VBN IN NNP IN JJ NNS . A bomb exploded near a busy bus terminal south of the Pakistani capital Islamabad late Monday , killing at least nine people and injuring around 17 others . DT NN VBD IN DT JJ NN NN NN IN DT JJ NN VBN JJ NNP , VBG IN JJS CD NNS CC VBG IN CD NNS . Local police say the explosion in Rawalpindi appears to be a suicide attack . JJ NNS VBP DT NN IN NNP VBZ TO VB DT NN NN . Some news reports say the bomber was inside a car or on a motorcycle when the explosives went off . DT NN NNS VBP DT NN VBD IN DT NN CC IN DT NN WRB DT NNS VBD RB . Emergency personnel are at the scene . NN NNS VBP IN DT NN . No other information is immediately available . DT JJ NN VBZ RB JJ . The attack came on the same day the government gave in to opposition demands to reinstate a popular Supreme Court justice . DT NN VBD IN DT JJ NN DT NN VBD IN TO NN NNS TO VB DT JJ NNP NNP NN . The concession prompted supporters of opposition leader Nawaz Sharif to call off his so-called ' long march ' to Islamabad . DT NN VBD NNS IN NN NN NNP NNP TO VB RP PRP$ JJ `` JJ NN `` TO NNP . Pakistan has been facing a wave of militant attacks over the past few years . NNP VBZ VBN VBG DT NN IN JJ NNS IN DT JJ JJ NNS . The government has recently signed separate peace agreements with Islamic militants in the Swat Valley , and in the neighboring Bajaur region . DT NN VBZ RB VBN JJ NN NNS IN JJ NNS IN DT NNP NNP , CC IN DT JJ NNP NN . The Israeli military has acknowledged it carried out a strike in Gaza City Wednesday that killed a Palestinian man and wounded another . DT JJ NN VBZ VBN PRP VBD RP DT NN IN NNP NNP NNP WDT VBD DT JJ NN CC VBD DT . Military officials say the strike targeted a militant with the Army of Islam , an extremist group believed to have al-Qaida loyalties . JJ NNS VBP DT NN VBD DT NN IN DT NNP IN NNP , DT NN NN VBN TO VB NNP NNS . The Israeli military released a statement saying the intended target ( identified as Mohammed Jamal al-Nimnim ) had directed several attacks against Israel . DT JJ NN VBD DT NN VBG DT JJ NN LRB VBN IN NNP NNP NNP RRB VBD VBN JJ NNS IN NNP . The military says the strike was a joint effort between Israeli Defense Forces and the Israel Security Agency . DT JJ VBZ DT NN VBD DT JJ NN IN JJ NNP NNP CC DT NNP NNP NNP . Earlier Wednesday , Palestinians blamed Israel after the suspect 's car exploded near Hamas police headquarters . RBR NNP , NNS VBD NNP IN DT NN POS NN VBD IN NNP NN NN . Israeli media reports said the blast could have been a car bomb that detonated prematurely , but there was no official word from Israel . JJ NNS NNS VBD DT NN MD VB VBN DT NN NN WDT VBD RB , CC EX VBD DT JJ NN IN NNP . The explosion comes during a period of relative calm between the Palestinian-ruled territory and Israel -- and between the rival Hamas and Fatah factions . DT NN VBZ IN DT NN IN JJ NN IN DT JJ NN CC NNP : CC IN DT JJ NNP CC NNP NNS . Daughter of journalist Dharmeratnam Sivaram , grieves by his body in Talangama , near Colombo Sri Lanka 's government has ordered a full-scale investigation into the murder of a prominent Tamil journalist who was abducted outside a restaurant Thursday night . NNP IN NN NNP NNP , VBZ IN PRP$ NN IN NNP , IN NNP NNP NNP POS NN VBZ VBN DT JJ NN IN DT NN IN DT JJ NNP NN WP VBD VBN IN DT NN NNP NN . Dharmeratnam Sivaram , a 46-year-old senior editor of a pro-Tamil rebel website , was out with friends when four unidentified men grabbed him . NNP NNP , DT JJ JJ NN IN DT JJ NN NN , VBD RP IN NNS WRB CD JJ NNS VBD PRP . He was shot after being bound and gagged , and his body dumped near the Sri Lankan parliamentary complex . PRP VBD VBN IN VBG VBN CC VBN , CC PRP$ NN VBD IN DT NNP NNP JJ NN . Mr. Sivaram , also a columnist with an English language daily , was the country 's best-known Tamil Internet journalist . NNP NNP , RB DT NN IN DT JJ NN RB , VBD DT NN POS JJ NNP NNP NN . The website was popular for its reporting on the Sri Lankan civil war and the peace process after the 2002 cease-fire . DT NN VBD JJ IN PRP$ NN IN DT NNP NNP JJ NN CC DT NN NN IN DT CD NN . The Paris-based media watch dog Reporters Without Borders had expressed fears for Mr. Sivaram 's safety after police searched his home in Colombo last year . DT JJ NNS VBP NN NNS IN NNS VBD VBN NNS IN NNP NNP POS NN IN NNS VBD PRP$ NN IN NNP JJ NN . The Netherlands rallied to defeat China , 02-Jan , to reach the main draw of the eight-nation Hopman Cup mixed team tennis tournament in Perth , Australia . DT NNP VBD TO VB NNP , CD , TO VB DT JJ NN IN DT NN NNP NNP JJ NN NN NN IN NNP , NNP . Peng Shuai , ranked 36th , gave China a 1-0 lead when she beat 16-year-old Michaella Krajicek in the women 's singles match , 06-Mar , 04-Jun , 06-Mar . NNP NNP , VBD CD , VBD NNP DT JJ NN WRB PRP VBD JJ NNP NNP IN DT NNS POS NNS NN , CD , CD , CD . Peter Wessels got the Dutch even by winning his singles match over Sun Peng , 06-Feb , 06-Feb . NNP NNP VBD DT NNS RB IN VBG PRP$ NNS NN IN NNP NNP , CD , CD . Then Wessels and Krajicek combined to win the mixed doubles match over Peng and Sun , 06-Apr , 06-Apr . RB NNP CC NNP VBD TO VB DT JJ NNS NN IN NNP CC NNP , CD , CD . With the victory , the Dutch will join Australia , Argentina and Germany in Group A . IN DT NN , DT NNS MD VB NNP , NNP CC NNP IN NNP NNP . Germany , with Anna-Lena Groenefeld and Nicolas Kiefer plays on Saturday against the Australian team of Samantha Stosur and Wayne Arthurs . NNP , IN NNP NNP CC NNP NNP VBZ IN NNP IN DT JJ NN IN NNP NNP CC NNP NNP . Group B features the United States , Russia , Sweden and Serbia and Montenegro . NNP NNP VBZ DT NNP NNPS , NNP , NNP CC NNP CC NNP . The Americans are represented by Lisa Raymond and Taylor Dent . DT NNS VBP VBN IN NNP NNP CC NNP NNP . Plans to build a mosque near the site of the destroyed World Trade Center in New York cleared an obstacle Tuesday when a city committee denied landmark status to a nearby building . NNS TO VB DT NN IN DT NN IN DT VBN NNP NNP NNP IN NNP NNP VBD DT NN NNP WRB DT NN NN VBD JJ NN TO DT JJ NN . The New York Landmarks Preservation Committee voted unanimously against giving protected status to a building constructed in the 1850s , that developers want to tear down to build an Islamic community center and mosque . DT NNP NNP NNP NNP NNP VBD RB IN VBG JJ NN TO DT NN VBN IN DT NNS , IN NNS VBP TO VB RP TO VB DT JJ NN NN CC NN . The World Trade Center site in downtown New York has been known as ground zero since the terrorist attacks of September 11 , 2001 destroyed the twin towers that once stood there . DT NNP NNP NNP NN IN JJ NNP NNP VBZ VBN VBN IN NN NN IN DT JJ NNS IN NNP CD , CD VBD DT NN NNS WDT RB VBD RB . The plan to build a mosque a few blocks from the ground zero has drawn criticism from those who say it is disrespectful to victims who were killed in an attack by Islamist extremists . DT NN TO VB DT NN DT JJ NNS IN DT NN NN VBZ VBN NN IN DT WP VBP PRP VBZ JJ TO NNS WP VBD VBN IN DT NN IN NNP NNS . Supporters of the project say it will help bridge divisions between the West and the Muslim world . NNS IN DT NN VBP PRP MD VB VB NNS IN DT NNP CC DT NNP NN . Authorities in Vietnam say Typhoon Kai Tak killed at least 18 people , and emergency workers are still searching for bodies . NNS IN NNP VBP NNP NNP NNP VBD IN JJS CD NNS , CC NN NNS VBP RB VBG IN NNS . Weather officials say the typhoon dissipated Wednesday after battering the coast of central Vietnam . NNP NNS VBP DT NN VBD NNP IN VBG DT NN IN JJ NNP . Authorities say deaths have been reported in several regions , including the provinces of Quang Ngai and Thua Thien Hue . NNS VBP NNS VBP VBN VBN IN JJ NNS , VBG DT NNS IN NNP NNP CC NNP NNP NNP . At least six people are missing . IN JJS CD NNS VBP VBG . Vietnam 's official news agency says heavy rain and widespread flooding inundated thousands of homes and severely damaged roads and other infrastructure . NNP POS JJ NN NN VBZ JJ NN CC JJ NN VBD NNS IN NNS CC RB VBN NNS CC JJ NN . Thousands of hectares of crops have been destroyed . NNS IN NNS IN NNS VBP VBN VBN . The typhoon also prompted Chinese President Hu Jintao to cut short his visit to Vietnam . DT NN RB VBD JJ NNP NNP NNP TO VB JJ PRP$ NN TO NNP . Official reports say damage from the typhoon is estimated at $ 1.7 million . JJ NNS VBP NN IN DT NN VBZ VBN IN $ CD CD . Iraqi police say at least 28 people , including seven policemen , were killed in a powerful explosion in a Baghdad house overnight . JJ NNS VBP IN JJS CD NNS , VBG CD NNS , VBD VBN IN DT JJ NN IN DT NNP NN RB . Officials describe the incident as an ambush , saying ' massive amounts of explosives ' were detonated as police raided the building . NNS VBP DT NN IN DT NN , VBG `` JJ NNS IN NNS `` VBD VBN IN NN VBD DT NN . Police had earlier received an anonymous tip that the house was a suspected base for foreign militants . NNS VBD RBR VBN DT JJ NN IN DT NN VBD DT JJ NN IN JJ NNS . Officials say several nearby houses also collapsed , and they fear a number of residents might be trapped under the rubble . NNS VBP JJ JJ NNS RB VBD , CC PRP VBP DT NN IN NNS MD VB VBN IN DT NN . Tuesday , at least 23 Iraqi police and national guards were killed in a series of insurgent attacks in the so-called Sunni Triangle region north of Baghdad - in and near the towns of Tikrit , Samarra , Balad and Baquba . NNP , IN JJS CD JJ NN CC JJ NNS VBD VBN IN DT NN IN JJ NNS IN DT JJ NNP NNP NN NN IN NNP : IN CC IN DT NNS IN NNP , NNP , NNP CC NNP . Top U.S. military officials in Iraq say they expect an escalation of attacks and assassination attempts ahead of the January 30th elections . JJ NNP NN NNS IN NNP VBP PRP VBP DT NN IN NNS CC NN NNS RB IN DT NNP JJ NNS . French football star Zinedine Zidane has announced that he will retire from the sport after this summer 's World Cup tournament in Germany . JJ NN NN NNP NNP VBZ VBN IN PRP MD VB IN DT NN IN DT NN POS NNP NNP NN IN NNP . Zidane told French television , Canal Plus , Tuesday that he has made a ' definitive ' decision that the World Cup is his last goal . NNP VBD JJ NN , NNP NNP , NNP IN PRP VBZ VBN DT `` JJ `` NN IN DT NNP NNP VBZ PRP$ JJ NN . The inspirational Real Madrid playmaker said the World Cup is the only thing he wants to focus on . DT JJ JJ NNP NN VBD DT NNP NNP VBZ DT JJ NN PRP VBZ TO VB IN . Zidane was awarded FIFA World Player of the Year honors in 1998 , 2000 and 2003 and has won 99 caps for France , including 17 as captain . NNP VBD VBN NNP NNP NNP IN DT NN NNS IN CD , CD CC CD CC VBZ VBN CD NNS IN NNP , VBG CD IN NN . He scored two goals against Brazil in the final to secure the 1998 World Cup . PRP VBD CD NNS IN NNP IN DT JJ TO VB DT CD NNP NNP . Zidane became the world 's most expensive player in 2001 when he moved from Juventus of Italy to Real Madrid for $ 66 million . NNP VBD DT NN POS RBS JJ NN IN CD WRB PRP VBD IN NNP IN NNP TO NNP NNP IN $ CD CD . France is grouped with Switzerland , South Korea and Togo at this year 's World Cup . NNP VBZ VBN IN NNP , NNP NNP CC NNP IN DT NN POS NNP NNP . Rescuers in Baghdad have pulled more bodies from the rubble of a house that was destroyed in an apparent suicide attack Christmas Eve , raising the death toll to nine people . NNS IN NNP VBP VBN JJR NNS IN DT NN IN DT NN WDT VBD VBN IN DT JJ NN NN NNP NNP , VBG DT NN NN TO CD NNS . There are unconfirmed reports that the dead were all members of the same family . EX VBP JJ NNS IN DT NN VBD DT NNS IN DT JJ NN . Meanwhile , the wounded were being treated at Baghdad hospitals . RB , DT VBN VBD VBG VBN IN NNP NNS . Many of them suffered severe burns in the gas tanker explosion . NN IN PRP VBD JJ NNS IN DT NN NN NN . Friday 's attack further unnerved Christians living in the capital , as many of them did not venture out to subdued Christmas services this Saturday morning . NNP POS NN JJ JJ NNS VBG IN DT NN , IN NN IN PRP VBD RB VB RP TO VB NNP NNS DT NNP NN . In the Shi'ite holy city of Najaf , the governor said police have arrested a group of men suspected of having organized Sunday 's attack in Najaf that killed 52 pilgrims . IN DT NNP JJ NN IN NNP , DT NN VBD NNS VBP VBN DT NN IN NNS VBN IN VBG VBN NNP POS NN IN NNP WDT VBD CD NNS . He said an announcement would be made in Baghdad next week . PRP VBD DT NN MD VB VBN IN NNP JJ NN . China says it will accept bids next week from three international firms to design and build four nuclear reactors . NNP VBZ PRP MD VB NNS JJ NN IN CD JJ NNS TO VB CC VB CD JJ NNS . U.S.-based Westinghouse , along with companies from France and Russia , will submit bids to build the reactors in China 's eastern province of Zhejiang and the southern province of Guangdong . JJ NNP , IN IN NNS IN NNP CC NNP , MD VB NNS TO VB DT NNS IN NNP POS JJ NN IN NNP CC DT JJ NN IN NNP . Westinghouse 's efforts got a boost last week when the U.S. Export-Import Bank approved nearly five billion dollars to help finance the project . NNP POS NNS VBD DT NN JJ NN WRB DT NNP NNP NNP VBD RB CD CD NNS TO VB VB DT NN . This is the first time a U.S. firm has competed for a nuclear project in China . DT VBZ DT JJ NN DT NNP NN VBZ VBN IN DT JJ NN IN NNP . China is seeking to boost its nuclear power program as part of an overall effort to meet its growing energy demands . NNP VBZ VBG TO VB PRP$ JJ NN NN IN NN IN DT JJ NN TO VB PRP$ VBG NN NNS . It already has nine nuclear power plants in operation . PRP RB VBZ CD JJ NN NNS IN NN . London police chief Ian Blair says police have made what he calls ' significant ' progress in its investigation into last week 's failed London subway bombings . NNP NN NN NNP NNP VBZ NNS VBP VBN WP PRP VBZ `` JJ `` NN IN PRP$ NN IN JJ NN POS JJ NNP NN NNS . Investigators said Tuesday they found a large amount of suspicious material in a north London apartment connected to one of the four wanted suspects . NNS VBD NNP PRP VBD DT JJ NN IN JJ NN IN DT JJ NNP NN VBN TO CD IN DT CD JJ NNS . They have also seized a suspicious car parked near the apartment . PRP VBP RB VBN DT JJ NN VBN IN DT NN . The suspects fled from three London subway stations and a bus when their bombs failed to explode on July 21st . DT NNS VBD IN CD NNP NN NNS CC DT NN WRB PRP$ NNS VBD TO VB IN NNP CD . Police have identified two of the suspects as a British citizen from Eritrea and a Somali living legally in Britain . NNS VBP VBN CD IN DT NNS IN DT JJ NN IN NNP CC DT JJ NN RB IN NNP . Authorities are looking for a link between the July 21 attack and the July 7 London suicide bombings that killed 56 people . NNS VBP VBG IN DT NN IN DT NNP CD NN CC DT NNP CD NNP NN NNS WDT VBD CD NNS . Ivorian President Laurent Gbagbo says a law approved by parliament to allow an opposition leader to run for president must be put to a referendum , angering rebels who say he is wrecking peace efforts . JJ NNP NNP NNP VBZ DT NN VBN IN NN TO VB DT NN NN TO VB IN NN MD VB VBN TO DT NN , VBG NNS WP VBP PRP VBZ VBG NN NNS . The rebels say the reform should be enacted into law immediately . DT NNS VBP DT NN MD VB VBN IN NN RB . The law to allow opposition leaders to run for president has been a key demand among those who want former prime minister and opposition leader Alassane Ouattara to make a bid for the presidency . DT NN TO VB NN NNS TO VB IN NN VBZ VBN DT JJ NN IN DT WP VBP JJ JJ NN CC NN NN NNP NNP TO VB DT NN IN DT NN . It is designed to end a ban on Ivorians with foreign parents from running as presidential candidates . PRP VBZ VBN TO VB DT NN IN NNS IN JJ NNS IN VBG IN JJ NNS . U.S. lawmakers have approved an addition $ 2 billion to fund an immensely popular car trade-in program known as ' cash for clunkers . ' NNP NNS VBP VBN DT NN $ CD CD TO VB DT RB JJ NN NN NN VBN IN `` NN IN NNS . `` The House of Representatives rushed a bill forward Friday to replenish funding for the program , which nearly exhausted its initial $ 1 billion funding limit within a matter of days . DT NNP IN NNP VBD DT NN RB NNP TO VB NN IN DT NN , WDT RB VBD PRP$ JJ $ CD CD NN NN IN DT NN IN NNS . President Barack Obama praised lawmakers for working quickly to pass the bill . NNP NNP NNP VBD NNS IN VBG RB TO VB DT NN . His administration had promised to extend the initiative . PRP$ NN VBD VBN TO VB DT NN . The legislation still has to be approved by the Senate , which is likely to vote next week . DT NN RB VBZ TO VB VBN IN DT NNP , WDT VBZ JJ TO VB JJ NN . ' Cash for clunkers ' gives car owners up to $ 4,500 in rebates to trade in older vehicles for more fuel-efficient models . `` NN IN NNS `` VBZ NN NNS RB TO $ CD IN NNS TO VB IN JJR NNS IN JJR JJ NNS . The government launched the program one week ago to boost U.S. auto sales and to improve the fuel economy of vehicles on the road . DT NN VBD DT NN CD NN IN TO VB NNP NN NNS CC TO VB DT NN NN IN NNS IN DT NN . It was scheduled to run through November 1 . PRP VBD VBN TO VB IN NNP CD . Thai police say at least 18 bombs have exploded at banks in the restive southern province of Yala , killing at least one person and wounding several others . JJ NNS VBP IN JJS CD NNS VBP VBN IN NNS IN DT JJ JJ NN IN NNP , VBG IN JJS CD NN CC VBG JJ NNS . Officials suspect militants detonated the bombs , which exploded Thursday at or near commercial banks in Yala 's provincial capital and nearby districts . NNS VBP NNS VBD DT NNS , WDT VBD NNP IN CC IN JJ NNS IN NNP POS JJ NN CC JJ NNS . Islamist insurgents have staged a lengthy series of attacks in Yala and two other Muslim-majority provinces in southern Thailand , Narathiwat and Pattani , since January 2004 . NNP NNS VBP VBN DT JJ NN IN NNS IN NNP CC CD JJ JJ NNS IN JJ NNP , NNP CC NNP , IN NNP CD . The provinces were a Malay sultanate until Buddhist Thailand annexed them a century ago . DT NNS VBD DT JJ NN IN NNP NNP VBD PRP DT NN RB . More than 1,400 people have been killed since the insurgency erupted . JJR IN CD NNS VBP VBN VBN IN DT NN VBD . Egyptian police say they have killed one of the main suspects in the recent bombings at Egypt 's Red Sea resort of Sharm el-Sheikh . JJ NNS VBP PRP VBP VBN CD IN DT JJ NNS IN DT JJ NNS IN NNP POS NNP NNP NN IN NNP NNP . A police official says Mohammed Saleh Fulayfill was killed and his wife was wounded during a shootout with police near the town of Suez . DT NN NN VBZ NNP NNP NNP VBD VBN CC PRP$ NN VBD VBN IN DT NN IN NN IN DT NN IN NNP . The July 23 bombings at Sharm el-Sheikh killed at least 64 people . DT NNP CD NNS IN NNP NNP VBD IN JJS CD NNS . The suspect was also being tried in his absence for his alleged role in similar bomb attacks last October in the Egyptian resort town of Taba . DT NN VBD RB VBG VBN IN PRP$ NN IN PRP$ JJ NN IN JJ NN NNS JJ NNP IN DT JJ NN NN IN NNP . Austrian prosecutors say the three-year prison term of a British historian convicted of denying the Nazi Holocaust is too light and have appealed the ruling . JJ NNS VBP DT JJ NN NN IN DT JJ NN VBN IN VBG DT NNP NNP VBZ RB JJ CC VBP VBN DT NN . A spokesman for the Vienna prosecutor 's office , Walter Geyer , announced the appeal of the sentence of David Irving . DT NN IN DT NNP NN POS NN , NNP NNP , VBD DT NN IN DT NN IN NNP NNP . The historian Monday pleaded guilty to charges of denying the Holocaust following his arrest in November over comments he made in 1989 . DT NN NNP VBD JJ TO NNS IN VBG DT NNP VBG PRP$ NN IN NNP IN NNS PRP VBD IN CD . He told the judge that he had abandoned those views after finding documents by the chief planner of the Jewish genocide , Adolf Eichmann . PRP VBD DT NN IN PRP VBD VBN DT NNS IN VBG NNS IN DT JJ NN IN DT JJ NN , NNP NNP . The chief judge , however , said he did not believe Irving was sincere . DT NN NN , RB , VBD PRP VBD RB VB NNP VBD JJ . The British historian also has said he plans to appeal the sentence . DT JJ NN RB VBZ VBN PRP VBZ TO VB DT NN . Irving has written books calling Nazi concentration camp gas chambers a hoax , and he has said that Nazi forces killed far fewer than the estimated six million Jews . NNP VBZ VBN NNS VBG JJ NN NN NN NNS DT NN , CC PRP VBZ VBN IN NNP NNS VBD RB JJR IN DT VBN CD CD NNPS . Iraqi Prime Minister Ibrahim al-Jaafari toured the embattled city of Tal Afar Monday , where Iraqi forces backed by U.S. troops are trying to drive insurgents from their northern stronghold . JJ NNP NNP NNP NNP VBD DT JJ NN IN NNP NNP NNP , WRB JJ NNS VBN IN NNP NNS VBP VBG TO VB NNS IN PRP$ JJ NN . The prime minister 's office confirmed the visit , which came despite insurgent threats to counter-attack coalition forces in the city with chemical weapons . DT JJ NN POS NN VBD DT NN , WDT VBD IN JJ NNS TO JJ NN NNS IN DT NN IN JJ NNS . Some insurgent positions were found deserted Sunday , as 5,000 Iraqi soldiers and 3,500 U.S. armored cavalry troops pushed into the near-empty city . DT JJ NNS VBD VBN JJ NNP , IN CD JJ NNS CC CD NNP JJ NN NNS VBD IN DT JJ NN . U.S. authorities say they suspect many insurgents escaped the fighting through a network of tunnels found beneath the city on Sunday . NNP NNS VBP PRP VBP JJ NNS VBD DT NN IN DT NN IN NNS VBN IN DT NN IN NNP . In Baghdad today , the Iraqi Defense Ministry said 157 insurgents have been killed since Sunday . IN NNP NN , DT JJ NNP NNP VBD CD NNS VBP VBN VBN IN NNP . The U.S. military reported 141 insurgent fatalities in the previous 24 hours . DT NNP NN VBD CD JJ NNS IN DT JJ CD NNS . Reuters news agency quotes a Defense Ministry spokesman as saying the operation should be completed by Thursday . NNP NN NN VBZ DT NNP NNP NN IN VBG DT NN MD VB VBN IN NNP . The White House says Florida Governor and President Bush 's brother Jeb will lead a delegation to Haiti for Sunday 's inauguration of incoming Haitian President Rene Preval . DT NNP NNP VBZ NNP NNP CC NNP NNP POS NN NNP MD VB DT NN TO NNP IN NNP POS NN IN JJ JJ NNP NNP NNP . A statement issued Monday said U.S. Ambassador to Haiti Janet Ann Sanderson and M. DT NN VBN NNP VBD NNP NNP TO NNP NNP NNP NNP CC NNP Rony Francois , Secretary of the Florida Department of Health , also will comprise the presidential delegation announced by President Bush . NNP NNP , NNP IN DT NNP NNP IN NNP , RB MD VB DT JJ NN VBN IN NNP NNP . The incoming Haitian leader won the presidency in February , following a campaign of promises to improve social conditions and education for Haitians . DT JJ JJ NN VBD DT NN IN NNP , VBG DT NN IN NNS TO VB JJ NNS CC NN IN NNS . The vote ushered in the first democratically elected government in Haiti since the ouster of President Jean-Bertrand Aristide in 2004 . DT NN VBD IN DT JJ RB VBN NN IN NNP IN DT NN IN NNP NNP NNP IN CD . Mr. Preval first held the presidency from 1996 to 2001 . NNP NNP RB VBD DT NN IN CD TO CD . The top U.S. military commander in Iraq has told troops they must refrain from torturing or mistreating Iraqis . DT JJ NNP JJ NN IN NNP VBZ VBN NNS PRP MD VB IN VBG CC VBG NNS . Army General David Petraeus reminded American forces in an open letter dated Thursday they had to convince Iraqis that ' we - not our enemies - occupy the high moral ground . ' NNP NNP NNP NNP VBD JJ NNS IN DT JJ NN VBN NNP PRP VBD TO VB NNS IN `` PRP : RB PRP$ NNS IN JJ DT JJ JJ NN . `` General Petraeus was responding to a recent survey of U.S. ground troops in Iraq , which found more than one-third of all Marines and Army soldiers support torture if it leads to information about insurgents , or saves the lives of U.S. troops . NNP NNP VBD VBG TO DT JJ NN IN NNP NN NNS IN NNP , WDT VBD JJR IN NN IN DT NNPS CC NNP NNS NN NN IN PRP VBZ TO NN IN NNS , CC VBZ DT NNS IN NNP NNS . Many also said they would not report a fellow serviceman for killing or injuring an Iraqi civilian . NN RB VBD PRP MD RB VB DT JJ NN IN VBG CC VBG DT JJ JJ . The general says that while seeing a fellow trooper killed can lead to anger and a need for revenge , torture is ' neither useful nor necessary . ' DT NN VBZ IN IN VBG DT NN NN VBN MD VB TO NN CC DT NN IN NN , NN VBZ `` CC JJ CC JJ . `` Congo 's President Joseph Kabila has suspended six government ministers accused of embezzling money through state-run companies . NNP POS NNP NNP NNP VBZ VBN CD NN NNS VBN IN VBG NN IN JJ NNS . Mr. Kabila says the sanctions target the ministers of energy , transport and communications , higher education , public works and infrastructure , mining , and external trade . NNP NNP VBZ DT NNS VBP DT NNS IN NN , NN CC NNS , JJR NN , JJ NNS CC NN , NN , CC JJ NN . The government also suspended 10 top officials in state-run companies as part of an ongoing probe into corruption charges . DT NN RB VBD CD JJ NNS IN JJ NNS IN NN IN DT JJ NN IN NN NNS . Mr. Kabila 's transition government is struggling to rebuild the nation , following more than 30 years of corrupt rule by former dictator Mobutu Sese Seko . NNP NNP POS NN NN VBZ VBG TO VB DT NN , VBG JJR IN CD NNS IN JJ NN IN JJ NN NNP NNP NNP . Mobutu 's regime was accused of massive fraud and looting of funds through government offices and state mining companies . NNP POS NN VBD VBN IN JJ NN CC NN IN NNS IN NN NNS CC NN NN NNS . Officials in Afghanistan say Taleban militants have beheaded four Afghan men . NNS IN NNP VBP NNP NNS VBP VBN CD JJ NNS . Authorities say the decapitated bodies were found in Shajoy district of insurgent-hit Zabol province . NNS VBP DT JJ NNS VBD VBN IN NNP NN IN JJ NNP NN . They say the men were kidnapped from their homes Tuesday . PRP VBP DT NNS VBD VBN IN PRP$ NNS NNP . The Taleban claimed responsibility , accusing the men of spying for the United States . DT NNP VBD NN , VBG DT NNS IN VBG IN DT NNP NNPS . That claim could not be immediately confirmed . DT NN MD RB VB RB VBN . Also Friday , a roadside bomb exploded as a convoy carrying Denmark 's defense chief , Jesper Helsoe , passed by . RB NNP , DT NN NN VBD IN DT NN VBG NNP POS NN NN , NNP NNP , VBN IN . The explosion occurred near Feyzabad in the northeastern part of the country . DT NN VBD IN NNP IN DT JJ NN IN DT NN . No casualties were reported . DT NNS VBD VBN . Late Thursday , coalition leaders announced the deaths of 14 militants during the ongoing military offensive to flush out insurgents from southern Afghanistan . RB NNP , NN NNS VBD DT NNS IN CD NNS IN DT JJ JJ NN TO VB RP NNS IN JJ NNP . The Taleban , whose government was toppled by a U.S.-led military coalition in late 2001 , have been fighting against the new government . DT NNP , WP$ NN VBD VBN IN DT JJ JJ NN IN JJ CD , VBP VBN VBG IN DT JJ NN . A suicide bomber in a car blew himself up next to a NATO convoy in southern Afghanistan on Friday , but no troops were hurt . DT NN NN IN DT NN VBD PRP RP JJ TO DT NNP NN IN JJ NNP IN NNP , CC DT NNS VBD VBN . The blast occurred north of Tirin Kot , the capital of Uruzgan province . DT NN VBD NN IN NNP NNP , DT NN IN NNP NN . Afghan police say the suicide bomber was trying to get close to the convoy but was more than 30 meters away when the explosion went off . JJ NNS VBP DT NN NN VBD VBG TO VB RB TO DT NN CC VBD JJR IN CD NNS RB WRB DT NN VBD RB . The bomber was killed , but there were no other casualties . DT NN VBD VBN , CC EX VBD DT JJ NNS . Attacks from suspected Taleban militants against NATO , U.S. and Afghan forces increased dramatically in Afghanistan last year . NNS IN JJ NNP NNS IN NNP , NNP CC JJ NNS VBD RB IN NNP JJ NN . U.S. and Afghan officials have warned they expect an increase in Taleban attacks in the coming months . NNP CC JJ NNS VBP VBN PRP VBP DT NN IN NNP NNS IN DT JJ NNS . Pakistani security officials say they have detained a suspected Taliban commander and killed at least five other militants during an operation in the country 's northwest . JJ NN NNS VBP PRP VBP VBN DT JJ NNP NN CC VBD IN JJS CD JJ NNS IN DT NN IN DT NN POS NN . Officials say security forces clashed with the insurgents Thursday in the Mohmand tribal region , bordering Bajaur , where Pakistani troops have been fighting Taliban and al-Qaida militants for months . NNS VBP NN NNS VBN IN DT NNS NNP IN DT NNP JJ NN , VBG NNP , WRB JJ NNS VBP VBN VBG NNP CC NNP NNS IN NNS . Authorities say the security forces captured a suspected explosives expert and Pakistani Taliban commander , known as Imran or Mansoor , during the clash today . NNS VBP DT NN NNS VBD DT JJ NNS NN CC JJ NNP NN , VBN IN NNP CC NNP , IN DT NN NN . They say the commander helped prepare suicide bomb materials and maintained links with insurgents across the border in Afghanistan . PRP VBP DT NN VBD VB NN NN NNS CC VBN NNS IN NNS IN DT NN IN NNP . Authorities in Nepal say one policeman has been killed and four wounded by a bomb that exploded as they were clearing a roadblock set by suspected Maoist rebels . NNS IN NNP VBP CD NN VBZ VBN VBN CC CD VBN IN DT NN WDT VBD IN PRP VBD VBG DT NN VBN IN JJ NNP NNS . Authorities say the blast struck Monday on the Mahendranagar highway , about 600 kilometers west of the capital , Kathmandu . NNS VBP DT NN VBD NNP IN DT NNP NN , IN CD NNS JJS IN DT NN , NNP . The explosion comes on the second day of a week-long strike called by Maoist rebels to disrupt Wednesday 's local elections to be held across the country . DT NN VBZ IN DT JJ NN IN DT JJ NN VBN IN NNP NNS TO VB NNP POS JJ NNS TO VB VBN IN DT NN . The rebels have threatened to harm anyone who participates in the municipal elections . DT NNS VBP VBN TO VB DT WP VBZ IN DT JJ NNS . More than 600 candidates have already dropped out . JJR IN CD NNS VBP RB VBN RP . The rebels and opposition parties oppose the elections , calling them a sham aimed at legitimizing King Gyanendra 's seizure of power a year ago in the constitutional monarchy . DT NNS CC NN NNS VBP DT NNS , VBG PRP DT NN VBN IN VBG NNP NNP POS NN IN NN DT NN RB IN DT JJ NN . The king says he took absolute rule because the government failed to stop the nearly decade-long Maoist insurgency . DT NN VBZ PRP VBD JJ NN IN DT NN VBD TO VB DT RB JJ NNP NN . Afghan officials say a roadside bomb has killed three Afghans and two foreigners in the country 's south . JJ NNS VBP DT NN NN VBZ VBN CD NNS CC CD NNS IN DT NN POS NN . Officials say the victims worked for an American security company ( USPI ) and were killed on the road linking Kandahar with Herat . NNS VBP DT NNS VBD IN DT JJ NN NN LRB NNP RRB CC VBD VBN IN DT NN VBG NNP IN NNP . The nationalities of the two foreigners is not clear . DT NNS IN DT CD NNS VBZ RB JJ . The Taleban are being blamed for the attack . DT NNP VBP VBG VBN IN DT NN . In a separate incident , a suicide bomber blew up himself and his accomplice in the center of Kandahar city Tuesday . IN DT JJ NN , DT NN NN VBD RP PRP CC PRP$ NN IN DT NN IN NNP NN NNP . There were no other casualties . EX VBD DT JJ NNS . The governor of Kandahar province , Asadullah Khalid , blamed the attack on people he considers Taleban militants . DT NN IN NNP NN , NNP NNP , VBD DT NN IN NNS PRP VBZ NNP NNS . Taleban insurgents have increased attacks in southern Afghanistan in recent months . NNP NNS VBP VBN NNS IN JJ NNP IN JJ NNS . U.S.-led forces overthrew the hardline Islamist Taleban regime in late 2001 , following the September 11 terrorist attacks in the United States . JJ NNS VBP DT JJ NNP NNP NN IN JJ CD , VBG DT NNP CD JJ NNS IN DT NNP NNPS . Seismologists say a 7.1 magnitude earthquake has struck about 100 kilometers south of the coast of Taiwan . NNS VBP DT CD NN NN VBZ VBN IN CD NNS RB IN DT NN IN NNP . Japanese seismologists have issued a tsunami warning for the region , saying a one-meter-tall tsunami is now heading for the Philippines . JJ NNS VBP VBN DT NN NN IN DT NN , VBG DT JJ NN VBZ RB VBG IN DT NNPS . Taiwanese scientists say the earthquake was followed by a magnitude 6.4 aftershock that struck off of southwestern Taiwan . JJ NNS VBP DT NN VBD VBN IN DT NN CD NN WDT VBD IN IN JJ NNP . There have been no immediate reports of damage or casualties . EX VBP VBN DT JJ NNS IN NN CC NNS . Abu Farraj al-Libbi , a top al-Qaida operative and close associate of Osama bin Laden who is wanted for two attempts to assassinate Pakistani President Pervez Musharraf , has been arrested in Pakistan . NNP NNP NNP , DT JJ NNP NN CC JJ NN IN NNP NNP NNP WP VBZ VBN IN CD NNS TO VB JJ NNP NNP NNP , VBZ VBN VBN IN NNP . Pakistani Information Minister Shiekh Rashid Ahmed confirmed the arrest of Abu Farraj al-Libbi . JJ NNP NNP NNP NNP NNP VBD DT NN IN NNP NNP NNP . ' We arrested [ him ] yesterday with four other people , ' said Shiekh Rashid Ahmed . `` PRP VBN LRB PRP RRB NN IN CD JJ NNS , `` VBD NNP NNP NNP . The Libyan native , considered third in charge of al-Qaida , had a $ 1 million bounty on his head . DT JJ NN , VBN JJ IN NN IN NNP , VBD DT $ CD CD NN IN PRP$ NN . He is one of the group 's top operational commanders , and is accused of planning two unsuccessful bomb attacks against Pakistan 's president , Pervez Musharraf , in 2003 . PRP VBZ CD IN DT NN POS JJ JJ NNS , CC VBZ VBN IN VBG CD JJ NN NNS IN NNP POS NN , NNP NNP , IN CD . Mr. Rashid would not comment on where the suspect was arrested , but he was thought to have been hiding in Pakistan 's northern tribal areas . NNP NNP MD RB VB IN WRB DT NN VBD VBN , CC PRP VBD VBN TO VB VBN VBG IN NNP POS JJ JJ NNS . Burma 's military government appears to have resumed its promised release of prisoners after a delay of several days . NNP POS JJ NN VBZ TO VB VBN PRP$ JJ NN IN NNS IN DT NN IN JJ NNS . Journalists in Rangoon Thursday said they saw inmates being freed from the country 's largest jail , Insein prison . NNS IN NNP NNP VBD PRP VBD NNS VBG VBN IN DT NN POS JJS NN , NNP NN . They apparently were the first to be let go since a few hundred were granted freedom last Friday . PRP RB VBD DT JJ TO VB VBN VB IN DT JJ CD VBD VBN NN JJ NNP . The government announced last week that it would free some 4,000 prisoners it said were wrongly detained by the recently disbanded security apparatus , the National lntelligence Bureau . DT NN VBD JJ NN IN PRP MD VB DT CD NNS PRP VBD VBD RB VBN IN DT RB JJ NN NN , DT NNP NN NNP . Of those freed last week , only a handful were said to be political dissidents . IN DT VBN JJ NN , RB DT NN VBD VBN TO VB JJ NNS . Sources in the Burmese capital tell VOA one of those expected to be released is Win Tin , a former top aide to opposition leader Aung San Suu Kyi . NNS IN DT JJ NN VBP NNP CD IN DT VBN TO VB VBN VBZ NNP NNP , DT JJ JJ NN TO NN NN NNP NNP NNP NNP . Win Tin has been jailed since 1989 and is 74 years old . NNP NNP VBZ VBN VBN IN CD CC VBZ CD NNS JJ . Aung San Suu Kyi remains under house arrest . NNP NNP NNP NNP VBZ IN NN NN . Brazil has successfully launched its first rocket into space . NNP VBZ RB VBN PRP$ JJ NN IN NN . The rocket was launched from the Alcantara base in northern Brazil to conduct experiments just outside Earth 's atmosphere . DT NN VBD VBN IN DT NNP NN IN JJ NNP TO VB NNS RB IN NNP POS NN . The launch Saturday came 14 months after a deadly rocket explosion at the Altcantara base killed 21 space agency employees , including key technicians . DT NN NNP VBD CD NNS IN DT JJ NN NN IN DT NNP NN VBD CD NN NN NNS , VBG JJ NNS . The launch pad explosion also damaged the reputation of Brazil 's space program and set back plans to sell up to 15 of its VSV-30 rockets . DT NN NN NN RB VBD DT NN IN NNP POS NN NN CC VBD RP NNS TO VB RP TO CD IN PRP$ JJ NNS . Brazil 's Alcantara base is considered an excellent launch site because of its proximity to the equator , where the Earth moves the fastest . . NNP POS NNP NN VBZ VBN DT JJ NN NN IN IN PRP$ NN TO DT NN , WRB DT NNP VBZ DT JJS . . Scientists say launching a rocket at this point gives it an extra boost and allows it to carry less fuel . NNS VBP VBG DT NN IN DT NN VBZ PRP DT JJ NN CC VBZ PRP TO VB JJR NN . The U.N. Security Council has canceled plans to send a delegation to talks with the Sudanese government and the African Union on the crisis in Darfur . DT NNP NNP NNP VBZ VBN NNS TO VB DT NN TO NNS IN DT JJ NN CC DT NNP NNP IN DT NN IN NNP . U.N. diplomats said late Friday the mission fell through after they could not agree on its scope and mandate . NNP NNS VBD JJ NNP DT NN VBD IN IN PRP MD RB VB IN PRP$ NN CC NN . The Council president , Peru 's U.N. Ambassador Jorge Voto Bernales , said members could also not agree on what message the delegation would convey to the Sudanese and A.U. officials who begin meetings Monday in Ethiopia 's capital , Addis Ababa . DT NNP NN , NNP POS NNP NNP NNP NNP NNP , VBD NNS MD RB RB VB IN WDT NN DT NN MD VB TO DT JJ CC NNP NNS WP VBP NNS NNP IN NNP POS NN , NNP NNP . The Security Council has approved a U.N. mission for Darfur to take over from an under-funded A.U. mission . DT NNP NNP VBZ VBN DT NNP NN IN NNP TO VB RP IN DT JJ NNP NN . Sudan has repeatedly rejected the mission , likening a U.N. force to colonization . NNP VBZ RB VBN DT NN , VBG DT NNP NN TO NN . To counter those rejections , U.N. diplomats are reported to be considering a force made up mainly of African troops who receive communication gear and logistical support through the United Nations . TO VB DT NNS , NNP NNS VBP VBN TO VB VBG DT NN VBN RP RB IN JJ NNS WP VBP NN NN CC JJ NN IN DT NNP NNPS . Zimbabwe President Robert Mugabe told the U.N. General Assembly Sunday that claims of a humanitarian crisis in his country are unfounded . NNP NNP NNP NNP VBD DT NNP NNP NNP NNP IN NNS IN DT JJ NN IN PRP$ NN VBP JJ . Mr. Mugabe said those who criticized Zimbabwe 's recent program to demolish illegal dwellings and street stalls were trying to tarnish the image of Zimbabwe and depict it as a failed state . NNP NNP VBD DT WP VBD NNP POS JJ NN TO VB JJ NNS CC NN NNS VBD VBG TO VB DT NN IN NNP CC VB PRP IN DT JJ NN . A recent U.N. report called Mr. Mugabe 's so-called urban cleanup campaign a disastrous policy that left 7,00,000 people without homes or jobs . DT JJ NNP NN VBD NNP NNP POS JJ JJ NN NN DT JJ NN WDT VBD CD NNS IN NNS CC NNS . President Mugabe told the General Assembly that what he calls ' Operation Restore Order ' cleared the way for a vast reconstruction program that would lead to new factories and homes . NNP NNP VBD DT NNP NNP IN WP PRP VBZ `` NN NNP NNP `` VBD DT NN IN DT JJ NN NN WDT MD VB TO JJ NNS CC NNS . He also criticized what he called Zimbabwe 's ' detractors and ill-wishers ' for reporting starvation in the country . PRP RB VBD WP PRP VBD NNP POS `` NNS CC NNS `` IN VBG NN IN DT NN . He said those reports were not TRUE . PRP VBD DT NNS VBD RB JJ . U.S.-led forces in Iraq 's western Anbar province say they have detained 13 suspected insurgents in a continuing offensive along the Euphrates river . JJ NNS IN NNP POS JJ NNP NN VBP PRP VBP VBN CD JJ NNS IN DT VBG NN IN DT NNP NN . A U.S. military statement Thursday said no major battles or airstrikes have occurred during the operation , which began Tuesday around the city of Hit . DT NNP JJ NN NNP VBD DT JJ NNS CC NNS VBP VBN IN DT NN , WDT VBD NNP IN DT NN IN NNP . The statement also said troops have confiscated hundreds of mortars , explosives and guns . DT NN RB VBD NNS VBP VBN NNS IN NNS , NNS CC NNS . It said basic utilities in the town continue to function and residents continue to have access to medical treatment . PRP VBD JJ NNS IN DT NN VBP TO VB CC NNS VBP TO VB NN TO JJ NN . Anbar is Iraq 's largest province and is believed to be an insurgent stronghold and transit route for foreign fighters . NNP VBZ NNP POS JJS NN CC VBZ VBN TO VB DT JJ NN CC NN NN IN JJ NNS . The presidents of Russia and Syria have held talks at the Kremlin amid controversy over a reported weapons sale between their nations . DT NNS IN NNP CC NNP VBP VBN NNS IN DT NNP IN NN IN DT JJ NNS NN IN PRP$ NNS . Russia 's Vladimir Putin and Bashar al-Assad of Syria signed bilateral agreements at Tuesday 's meeting . NNP POS NNP NNP CC NNP NNP IN NNP VBD JJ NNS IN NNP POS NN . Russia also agreed to write-off about $ 10 billion of Syria 's more than $ 13 billion debt to Moscow . NNP RB VBD TO NN IN $ CD CD IN NNP POS JJR IN $ CD CD NN TO NNP . The leaders stressed the importance of building strong relations . DT NNS VBD DT NN IN VBG JJ NNS . Mr. al-Assad also said he would welcome an increased Russian role in the Middle East . NNP NNP RB VBD PRP MD VB DT VBN JJ NN IN DT NNP NNP . Earlier , the Syrian leader told university students his country has the right to purchase anti-aircraft missiles for defense . RB , DT JJ NN VBD NN NNS PRP$ NN VBZ DT NN TO VB JJ NNS IN NN . Reports have said Russia planned to sell shoulder-fired SA-18 missiles and larger Iskander-E missiles to Syria - prompting protests from Israel . NNS VBP VBN NNP VBD TO VB JJ JJ NNS CC JJR JJ NNS TO NNP IN VBG NNS IN NNP . The Iskander-E would be capable of hitting most of Israel . DT NN MD VB JJ IN VBG JJS IN NNP . The Israelis fear the SA-18 could fall into the hands of Hezbollah guerrillas in Lebanon . DT NNS VBP DT NN MD VB IN DT NNS IN NNP NNS IN NNP . Chinese organizers have canceled the international portion of the Beijing Paralympic torch relay , and shortened the domestic legs . JJ NNS VBP VBN DT JJ NN IN DT NNP NNP NN NN , CC VBD DT JJ NNS . Wednesday 's announcement comes after international legs of the Olympic torch relay were plagued by violent protests against China 's Tibet policy . NNP POS NN VBZ IN JJ NNS IN DT NNP NN NN VBD VBN IN JJ NNS IN NNP POS NNP NN . However , organizers say the Paralympic relay route was changed because the government is focusing on relief work following a deadly earthquake on May 12 . RB , NNS VBP DT NNP NN NN VBD VBN IN DT NN VBZ VBG IN NN NN VBG DT JJ NN IN NNP CD . It killed 70,000 people and left millions displaced in Sichuan province . PRP VBD CD NNS CC VBD NNS VBN IN NNP NN . The first-ever international Paralympic torch relay had been scheduled to visit upcoming Olympic host cities London , England , Vancouver , Canada and Sochi , Russia as well as Hong Kong before the September sixth to 17th Paralympics . DT JJ JJ NNP NN NN VBD VBN VBN TO VB JJ NNP NN NNS NNP , NNP , NNP , NNP CC NNP , NNP RB RB IN NNP NNP IN DT NNP NN TO JJ NNS . Four Chinese cities , Chengdu , Chongqing , Urumqi and Tianjin , were also removed from the original 16-stop schedule for the domestic relay . CD JJ NNS , NNP , NNP , NNP CC NNP , VBD RB VBN IN DT JJ JJ NN IN DT JJ NN . The state-run China Daily newspaper has reported the 2008 Olympics will create more than 1.8 million jobs in Beijing and boost the Chinese capital 's overall economic growth . DT JJ NNP NNP NN VBZ VBN DT CD NNS MD VB JJR IN CD CD NNS IN NNP CC VB DT JJ NN POS JJ JJ NN . The newspaper cited a new economic outlook by two statisticians for the city government that says Beijing 's economy will grow 9.8 percent annually between now and 2008 . DT NN VBD DT JJ JJ NN IN CD NNS IN DT NN NN WDT VBZ NNP POS NN MD VB CD NN RB IN RB CC CD . That is an increase of almost one percentage point ( 0.8 ) from the annual average between 2001 and 2005 . DT VBZ DT NN IN RB CD NN NN LRB CD RRB IN DT JJ NN IN CD CC CD . The report says more than 50 sectors of the economy will benefit from the Games , with construction leading the way with more than 20 percent of the growth . DT NN VBZ JJR IN CD NNS IN DT NN MD VB IN DT NNPS , IN NN VBG DT NN IN JJR IN CD NN IN DT NN . The 2008 Games have spurred Beijing to launch numerous infrastructure development projects , including expanded highway and subway systems , an Olympic sports and culture zone and 17 new gymnasiums . DT CD NNPS VBP VBN NNP TO VB JJ NN NN NNS , VBG VBN NN CC NN NNS , DT NNP NNS CC NN NN CC CD JJ NNS . Thousands of Egyptians demonstrated in central Cairo Wednesday to demand democratic reform . NNS IN NNS VBN IN JJ NNP NNP TO VB JJ NN . The protest brought together members of the banned Islamist group the Muslim Brotherhood and several leftist groups . DT NN VBD RB NNS IN DT VBN NNP NN DT NNP NNP CC JJ JJ NNS . It was one of the largest and the latest in a series of demonstrations held ahead of Egypt 's first multi-candidate presidential elections scheduled for September . PRP VBD CD IN DT JJS CC DT JJS IN DT NN IN NNS VBN RB IN NNP POS JJ JJ JJ NNS VBN IN NNP . Egyptians approved an amendment to allow more than one presidential candidate earlier this year . NNS VBD DT NN TO VB JJR IN CD JJ NN RBR DT NN . But opposition officials say the amendment includes restrictive measures that will prevent a credible challenge to President Hosni Mubarak if he decides to seek another term . CC NN NNS VBP DT NN VBZ JJ NNS WDT MD VB DT JJ NN TO NNP NNP NNP IN PRP VBZ TO VB DT NN . Egypt has banned the Muslim Brotherhood so members of the group will not be able to take part in the election . NNP VBZ VBN DT NNP NNP IN NNS IN DT NN MD RB VB JJ TO VB NN IN DT NN . A sleek , black and chrome French train with oversized wheels has broken a world speed record for conventional rail , reaching a top velocity of nearly 575 kilometers per hour . DT JJ , JJ CC JJ JJ NN IN JJ NNS VBZ VBN DT NN NN NN IN JJ NN , VBG DT JJ NN IN RB CD NNS IN NN . French television Tuesday showed sparks flying and a long tail of dust , as the specially built ( V-150 ) train streaked through the French countryside . JJ NN NNP VBD NNS VBG CC DT JJ NN IN NN , IN DT RB VBN LRB NNP RRB NN VBD IN DT JJ NN . The train easily surpassed the old French record of 515 kilometers per hour set in 1990 , and just missed the Japanese record ( 581 kph ) for a train that levitates over magnetic track . DT NN RB VBD DT JJ JJ NN IN CD NNS IN NN VBN IN CD , CC RB VBD DT JJ NN LRB CD NN RRB IN DT NN WDT VBZ IN JJ NN . French manufacturer Alstom equipped the train with two 25,000 horsepower engines and three double-decker cars . JJ NN NNP VBD DT NN IN CD CD NN NNS CC CD JJ NNS . It set the record on a newly-built track linking Paris with Strasbourg . PRP VBD DT NN IN DT JJ NN VBG NNP IN NNP . A modified version of the prototype train is set to begin passenger service between Paris and Strasbourg in June . DT VBN NN IN DT NN NN VBZ VBN TO VB NN NN IN NNP CC NNP IN NNP . The U.S. government is taking steps to move Hurricane Katrina evacuees out of hotels and into long-term housing . DT NNP NN VBZ VBG NNS TO VB NNP NNP VBZ IN IN NNS CC IN JJ NN . The Federal Emergency Management Agency , known as FEMA has told families living in more than 40,000 hotel rooms across the country that it will stop paying their hotel bills on December 1 . DT NNP NNP NNP NNP , VBN IN NNP VBZ VBN NNS VBG IN JJR IN CD NN NNS IN DT NN IN PRP MD VB VBG PRP$ NN NNS IN NNP CD . Funding will last until January 7 for another 12,000 families occupying hotel rooms in the states of Louisiana and Mississippi , where damage from Katrina has led to a housing shortage . NNP MD VB IN NNP CD IN DT CD NNS VBG NN NNS IN DT NNS IN NNP CC NNP , WRB NN IN NNP VBZ VBN TO DT NN NN . Up to 1,50,000 evacuees will have to find apartments or other housing options by the deadlines if they want to continue receiving FEMA rental assistance of $ 786 a month . IN TO CD NNS MD VB TO VB NNS CC JJ NN NNS IN DT NNS IN PRP VBP TO VB VBG NNP JJ NN IN $ CD DT NN . Advocates for the evacuees have criticized the deadlines , saying FEMA is not giving the families enough time to find new housing . NNS IN DT NNS VBP VBN DT NNS , VBG NNP VBZ RB VBG DT NNS JJ NN TO VB JJ NN . A defunct Russian communications satellite has smashed into a U.S. satellite in orbit , creating a possible risk to the International Space Station . DT JJ JJ NNS NN VBZ VBN IN DT NNP NN IN NN , VBG DT JJ NN TO DT NNP NNP NNP . U.S. officials say this is the first time two whole satellites ever crashed into each other in space . NNP NNS VBP DT VBZ DT JJ NN CD JJ NNS RB VBD IN DT NN IN NN . They collided Tuesday about 780 kilometers above Siberia , creating a huge explosion with many pieces of debris . PRP VBD NNP IN CD NNS IN NNP , VBG DT JJ NN IN JJ NNS IN NN . The U.S. space agency , NASA , said the floating satellite parts create a small risk to the International Space Station , which flies at a lower orbit than where the collision took place . DT NNP NN NN , NNP , VBD DT JJ NN NNS VBP DT JJ NN TO DT NNP NNP NNP , WDT VBZ IN DT JJR NN IN WRB DT NN VBD NN . But NASA says it will be weeks before the full magnitude of the collision is known . CC NNP VBZ PRP MD VB NNS IN DT JJ NN IN DT NN VBZ VBN . Scientists say there are thousands of pieces of space junk orbiting the Earth , including old satellites and burned-out rocket boosters . NNS VBP EX VBP NNS IN NNS IN NN NN VBG DT NNP , VBG JJ NNS CC JJ NN NNS . Thousands of people have marched in two Colombian cities to protest a planned free trade agreement with the United States . NNS IN NNS VBP VBN IN CD JJ NNS TO VB DT JJ JJ NN NN IN DT NNP NNPS . The marchers massed in Bogota and Cartagena Thursday , saying the accord would worsen unemployment in the Andean nation . DT NNS VBD IN NNP CC NNP NNP , VBG DT NN MD VB NN IN DT JJ NN . The demonstration took place as trade negotiators from Colombia , Ecuador , Peru and the United States met for a new round of talks in Cartagena . DT NN VBD NN IN NN NNS IN NNP , NNP , NNP CC DT NNP NNPS VBD IN DT JJ NN IN NNS IN NNP . The negotiations for the free trade deal began in May of last year and are supposed to conclude next month . DT NNS IN DT JJ NN NN VBD IN NNP IN JJ NN CC VBP VBN TO VB JJ NN . The Andean countries want to extend existing trade accords that allow them to export items such as fresh cut flowers without tariffs . DT JJ NNS VBP TO VB VBG NN NNS WDT VBP PRP TO VB NNS JJ IN JJ VBN NNS IN NNS . The agreements , set to expire in 2006 , were put in place to help countries on the front lines in the fight against the illegal drug trade . DT NNS , VBN TO VB IN CD , VBD VBN IN NN TO VB NNS IN DT NN NNS IN DT NN IN DT JJ NN NN . World Bank President Paul Wolfowitz is in Islamabad , where he met with President Pervez Musharraf and praised Pakistan 's economic and banking sector reforms . NNP NNP NNP NNP NNP VBZ IN NNP , WRB PRP VBD IN NNP NNP NNP CC VBD NNP POS JJ CC JJ NN NNS . General Musharraf thanked the World Bank for its support to Pakistan , which includes poverty alleviation , water , power , energy and infrastructure projects . NNP NNP VBD DT NNP NNP IN PRP$ NN TO NNP , WDT VBZ NN NN , NN , NN , NN CC NN NNS . Pakistan is the World Bank 's fifth-largest borrower . NNP VBZ DT NNP NNP POS JJ NN . Earlier , Mr. Wolfowitz met with Prime Minister Shaukat Aziz , a former Citibank executive who is credited with turning around Pakistan 's economy over the past few years . RB , NNP NNP VBD IN NNP NNP NNP NNP , DT JJ NNP NN WP VBZ VBN IN VBG RP NNP POS NN IN DT JJ JJ NNS . The government has said that Pakistan 's economy grew 8.4 percent in the fiscal year that ended in June . DT NN VBZ VBN IN NNP POS NN VBD CD NN IN DT JJ NN WDT VBD IN NNP . Mr. Wolfowitz also met with people from poor rural areas to learn how World Bank-funded projects have helped them . NNP NNP RB VBD IN NNS IN JJ JJ NNS TO VB WRB NNP JJ NNS VBP VBN PRP . The World Bank president is scheduled to leave on Wednesday for India . DT NNP NNP NN VBZ VBN TO VB IN NNP IN NNP . Pakistani officials say the latest crackdown has resulted in the arrest of up to 600 suspected militants , clerics and Islamist activists across the country . JJ NNS VBP DT JJS NN VBZ VBN IN DT NN IN RB TO CD JJ NNS , NNS CC JJ NNS IN DT NN . Those detained include members of outlawed militant organizations , clerics accused of delivering ' provocative ' speeches , and Islamists accused of publishing or distributing hate material . DT VBN VBP NNS IN JJ JJ NNS , NNS VBN IN VBG `` JJ `` NNS , CC NNS VBN IN NN CC VBG NN NN . At least 295 of the detainees belong to militant groups outlawed over the past three years . IN JJS CD IN DT NNS VBP TO JJ NNS VBN IN DT JJ CD NNS . President Pervez Musharraf ordered the crackdown after revelations that some of the suspected suicide bombers in the July 7 attacks on London were Britons of Pakistani descent who had visited Pakistan . NNP NNP NNP VBD DT NN IN NNS IN DT IN DT JJ NN NNS IN DT NNP CD NNS IN NNP VBD NNS IN JJ NN WP VBD VBN NNP . But Pakistani officials say the arrests had nothing to do with the London Bombings . CC JJ NNS VBP DT NNS VBD DT TO VB IN DT NNP NNPS . The officials say some of those detained will be tried under Pakistan 's Anti-Terrorism Law , which allows authorities to hold a suspect up to a year without laying charges . DT NNS VBP DT IN DT VBN MD VB VBN IN NNP POS NNP NNP , WDT VBZ NNS TO VB DT NN RB TO DT NN IN VBG NNS . Iraqi President Jalal Talabani is in the United States for weeks of medical care , including weight-loss treatment . JJ NNP NNP NNP VBZ IN DT NNP NNPS IN NNS IN JJ NN , VBG JJ NN . Mr. Talabani , a Kurd , arrived at the Mayo Clinic in the northern U.S. state of Minnesota on Sunday . NNP NNP , DT NNP , VBD IN DT NNP NNP IN DT JJ NNP NN IN NNP IN NNP . The Iraqi president , who is in his early 70s , has said he has no health problems except for his weight . DT JJ NN , WP VBZ IN PRP$ JJ NNS , VBZ VBN PRP VBZ DT NN NNS IN IN PRP$ NN . Earlier this year , he underwent more than two weeks of treatment in Jordan for exhaustion and dehydration . RBR DT NN , PRP VBD JJR IN CD NNS IN NN IN NNP IN NN CC NN . Mr. Talabani 's role as president is largely ceremonial , but he has been influential in political efforts to try to heal Iraq 's sectarian divisions . NNP NNP POS NN IN NN VBZ RB JJ , CC PRP VBZ VBN JJ IN JJ NNS TO VB TO VB NNP POS JJ NNS . The teen years are often a difficult time for girls and boys as they make the transition from children to young adults . DT JJ NNS VBP RB DT JJ NN IN NNS CC NNS IN PRP VBP DT NN IN NNS TO JJ NNS . One group is using the written word to help ease the transition for girls who come from difficult environments in New York . CD NN VBZ VBG DT VBN NN TO VB VB DT NN IN NNS WP VBP IN JJ NNS IN NNP NNP . ' Girls Write Now ' pairs teenage girls with professional women writers , who serve as writing coaches . `` NNP NNP NNP `` VBZ JJ NNS IN JJ NNS NNS , WP VBP IN VBG NNS . Paige Kollock reports . NNP NNP VBZ . American actor Dennis Weaver , who was famous for his role as Chester in the television show Gunsmoke , has died at the age of 81 . JJ NN NNP NNP , WP VBD JJ IN PRP$ NN IN NNP IN DT NN NN NNP , VBZ VBN IN DT NN IN CD . Weaver 's publicist said Monday that he died at his home in Colorado from complications caused by cancer . NNP POS NN VBD NNP IN PRP VBD IN PRP$ NN IN NNP IN NNS VBN IN NN . As a young man , Weaver served in the Navy during World War II and took part in qualifications for the 1948 U.S. Olympic decathlon team . IN DT JJ NN , NNP VBD IN DT NNP IN NNP NNP NNP CC VBD NN IN NNS IN DT CD NNP NNP NN NN . He later pursued acting , and won an Emmy award in the 1950s for his role as the tall , limping Chester on the Western Gunsmoke . PRP RB VBD NN , CC VBD DT NNP NN IN DT NNS IN PRP$ NN IN DT JJ , VBG NNP IN DT JJ NNP . Dennis Weaver also starred in a television series during the 1970s called McCloud and appeared in several major movies . NNP NNP RB VBD IN DT NN NN IN DT NNS VBD NNP CC VBD IN JJ JJ NNS . An Iraqi prosecutor says Saddam Hussein 's cousin and four other former officials in the ousted regime deserve the death penalty for mass killings of Kurds . DT JJ NN VBZ NNP NNP POS NN CC CD JJ JJ NNS IN DT JJ NN VBP DT NN NN IN JJ NNS IN NNS . The prosecutor sought the death penalty Monday at the trial in Baghdad against Ali Hassan al-Majid and the other four officials . DT NN VBD DT NN NN NNP IN DT NN IN NNP IN NNP NNP NNP CC DT JJ CD NNS . Al-Majid is known as ' Chemical Ali ' for allegedly ordering poison gas attacks against the Kurds . NNP VBZ VBN IN `` NNP NNP `` IN RB VBG NN NN NNS IN DT NNPS . The prosecutor asked that a sixth defendant , former governor of Mosul Taher al-Ani , be released for lack of evidence . DT NN VBD IN DT JJ NN , JJ NN IN NNP NNP NNP , VB VBN IN NN IN NN . The former officials are on trial for war crimes and crimes against humanity for the so-called Anfal campaign in the 1980s , in which 1,80,000 Iraqi Kurds died . DT JJ NNS VBP IN NN IN NN NNS CC NNS IN NN IN DT JJ NNP NN IN DT NNS , IN WDT CD JJ NNPS VBD . The defendants claim the campaign was against legitimate military targets - Kurdish guerrillas who had sided with Iran during the 1980 - 88 Iran-Iraq war . DT NNS VBP DT NN VBD IN JJ JJ NNS IN JJ NNS WP VBD VBN IN NNP IN DT CD IN CD NNP NN . Busta Rhymes will face trial on two assault charges after being caught driving with a suspended license . NNP NNP MD VB NN IN CD NN NNS IN VBG VBN VBG IN DT JJ NN . A Manhattan judge Monday , March 26 , withdrew a plea offer which included probation , community service , and a series of lectures to troubled youth . DT NNP NN NNP , NNP CD , VBD DT NN NN WDT VBD NN , NN NN , CC DT NN IN NNS TO JJ NN . The trial is tentatively set to start May 8 . DT NN VBZ RB VBN TO VB NNP CD . The 34-year-old rapper - real name Trevor Smith , Jr. - is accused of beating his former driver last December in a dispute over back pay . DT JJ NN IN JJ NN NNP NNP , NNP : VBZ VBN IN VBG PRP$ JJ NN JJ NNP IN DT NN IN JJ NN . The other case involves an August , 2006 attack on a fan , who allegedly spit on the rapper 's car . DT JJ NN VBZ DT NNP , CD NN IN DT NN , WP RB VBP IN DT NN POS NN . New York City police also want to question Busta Rhymes in connection with the February , 2006 shooting death of his bodyguard , Israel Ramirez . NNP NNP NNP NNS RB VBP TO VB NNP NNP IN NN IN DT NNP , CD NN NN IN PRP$ NN , NNP NNP . They claim he has been uncooperative . PRP VBP PRP VBZ VBN JJ . The U.S. military says 23 of the terror suspects being held at the U.S. detention camp at Guantanamo Bay , Cuba , tried to hang or strangle themselves in a coordinated , mass disruption in 2003 . DT NNP NN VBZ CD IN DT NN VBZ VBG VBN IN DT NNP NN NN IN NNP NNP , NNP , VBD TO VB CC VB PRP IN DT JJ , JJ NN IN CD . A military spokesman , Lieutenant Commander Chris Lounderma , told VOA two of the protesters attempted suicide , during the disruption from August 18 to August 26 of 2003 . DT JJ NN , NNP NNP NNP NNP , VBD NNP CD IN DT NNS VBN NN , IN DT NN IN NNP CD TO NNP CD IN CD . The spokesman said those two protesters required hospital treatment before they were eventually transferred to a psychiatric ward . DT NN VBD DT CD NNS VBN NN NN IN PRP VBD RB VBN TO DT JJ NN . Officials say the demonstration was an attempt to disrupt operations at Guantanamo and unnerve new security guards . NNS VBP DT NN VBD DT NN TO VB NNS IN NNP CC JJ JJ NN NNS . The U.S. military released details on the disruption in response to questions from U.S. media . DT NNP NN VBD NNS IN DT NN IN NN TO NNS IN NNP NNS . There are some 550 prisoners held at the camp . EX VBP DT CD NNS VBN IN DT NN . Palestinian officials and witnesses say Hamas militiamen detained at least 10 members of the rival Fatah movement after breaking up a wedding and beating guests . JJ NNS CC NNS VBP NNP NNS VBD IN JJS CD NNS IN DT JJ NNP NN IN VBG RP DT NN CC NN NNS . The witnesses said the arrests occurred during overnight marriage celebrations in the northern Gaza town of Beit Hanun . DT NNS VBD DT NNS VBD IN JJ NN NNS IN DT JJ NNP NN IN NNP NNP . Hamas authorities say the wedding guests were singing Fatah nationalist songs in support of Palestinian President and Fatah leader Mahmoud Abbas , and firing guns into the air . NNP NNS VBP DT NN NNS VBD VBG NNP NN NNS IN NN IN JJ NNP CC NNP NN NNP NNP , CC VBG NNS IN DT NN . Hospital workers said at least 10 people were hurt in the confrontation . NN NNS VBD IN JJS CD NNS VBD VBN IN DT NN . Witnesses said that after the incident , about 150 relatives of those arrested staged protests outside Hamas offices in the town . NNS VBD IN IN DT NN , IN CD NNS IN DT VBN VBD NNS IN NNP NNS IN DT NN . Most of the protesters were women and children . JJS IN DT NNS VBD NNS CC NNS . Hamas militants took control of the Gaza Strip nearly two months ago after a week of deadly street battles with Fatah . NNP NNS VBD NN IN DT NNP NNP RB CD NNS RB IN DT NN IN JJ NN NNS IN NNP . A published report says between $ 5 million and $ 15 million worth of oil a day is missing in Iraq , and could have been siphoned off through corruption or smuggling . DT JJ NN VBZ IN $ CD CD CC $ CD CD NN IN NN DT NN VBZ VBG IN NNP , CC MD VB VBN VBN RP IN NN CC NN . Citing a draft report from the U.S. Government Accountability office , The New York Times said Saturday the losses amount to between 1,00,000 and 3,00,000 barrels a day of Iraq 's declared oil production over the past four years . VBG DT NN NN IN DT NNP NN NN NN , DT NNP NNP NNP VBD NNP DT NNS VBP TO IN CD CC CD NNS DT NN IN NNP POS VBN NN NN IN DT JJ CD NNS . The Times quotes an unnamed State Department official who offered some possible explanations for the losses , including pipeline sabotage , and inaccurate reporting of oil production . DT NNP VBZ DT JJ NNP NNP NN WP VBD DT JJ NNS IN DT NNS , VBG NN NN , CC JJ NN IN NN NN . The newspaper says the report did not make a final conclusion on what happened to the missing oil . DT NN VBZ DT NN VBD RB VB DT JJ NN IN WP VBD TO DT JJ NN . The Times said the report is expected to be released next week . DT NNP VBD DT NN VBZ VBN TO VB VBN JJ NN . Dozens of Palestinian gunmen took over an office of the Palestinian elections commission near Jerusalem Tuesday , to press for changes in a slate of ruling party candidates for parliament . NNS IN JJ NNS VBD RP DT NN IN DT JJ NNS NN IN NNP NNP , TO VB IN NNS IN DT NN IN VBG NN NNS IN NN . The gunmen , from the militant al-Aqsa Martyrs Brigades , were demanding that the ruling Fatah party slate for January 25 elections include more representatives from neighboring East Jerusalem . DT NNS , IN DT JJ NN NNP NNP , VBD VBG IN DT NN NNP NN NN IN NNP CD NNS VBP JJR NNS IN VBG NNP NNP . Police were reported negotiating with the gunmen Tuesday afternoon . NNS VBD VBN VBG IN DT NNS NNP NN . In another sign of growing lawlessness in the Palestinian territories , al-Aqsa gunmen Tuesday briefly seized three government buildings in the northern Gaza Strip , to demand jobs with the Palestinian Authority . IN DT NN IN VBG NN IN DT JJ NNS , NNP NNS NNP RB VBD CD NN NNS IN DT JJ NNP NNP , TO VB NNS IN DT JJ NNP . Internal unrest has been growing in Gaza since Israel ended its 38-year occupation of the territory earlier this year . NNP NN VBZ VBN VBG IN NNP IN NNP VBD PRP$ JJ NN IN DT NN RBR DT NN . Pakistani officials say at least seven family members have been killed by fighting in the country 's troubled northwest . JJ NNS VBP IN JJS CD NN NNS VBP VBN VBN IN VBG IN DT NN POS JJ NN . The civilians were killed Friday when artillery shells launched by security forces hit their home in Swat Valley . DT NNS VBD VBN NNP WRB NN NNS VBN IN NN NNS VBP PRP$ NN IN NNP NNP . The victims included at least three children . DT NNS VBD IN JJS CD NNS . At least three other homes in the area also were damaged . IN JJS CD JJ NNS IN DT NN RB VBD VBN . Troops said they were targeting militant positions in the region . NNS VBD PRP VBD VBG JJ NNS IN DT NN . Pakistan 's military launched a major offensive against militants in Swat Valley last year , when radical cleric Maulana Fazlullah called for a holy war against the government . NNP POS NN VBD DT JJ NN IN NNS IN NNP NNP JJ NN , WRB JJ NN NNP NNP VBD IN DT JJ NN IN DT NN . Since then , security forces have killed more than 200 militants and cleared out most of the area . IN RB , NN NNS VBP VBN RBR IN CD NNS CC VBD RP JJS IN DT NN . Syria and Iraq have re-opened embassies in each other 's capitals for the first time in more than two decades . NNP CC NNP VBP VBN NNS IN DT NN POS NNS IN DT JJ NN IN JJR IN CD NNS . They agreed last month to resume diplomatic relations that were severed because of Syria 's support for Iran during the Iran-Iraq war in the 1980s . PRP VBD JJ NN TO VB JJ NNS WDT VBD VBN IN IN NNP POS NN IN NNP IN DT NNP NN IN DT NNS . Meanwhile , in violence Monday , bombings killed two people in Baghdad . RB , IN NN NNP , NNS VBD CD NNS IN NNP . And gunmen wearing Iraqi army uniforms stole one million dollars and kidnapped four security guards from a vehicle transporting the money to the central bank in Baghdad . CC NNS VBG JJ NN VBZ JJ CD CD NNS CC VBD CD NN NNS IN DT NN VBG DT NN TO DT JJ NN IN NNP . In western Baghdad , U.S. and Iraqi troops found and freed 23 kidnapped Iraqis and arrested six men suspected of abducting them . IN JJ NNP , NNP CC JJ NNS VBD CC VBD CD VBN NNS CC VBN CD NNS VBN IN VBG PRP . The U.S. military also says a Marine helicopter made an emergency landing in Anbar province , injuring 18 people on board . DT NNP NN RB VBZ DT NN NN VBD DT NN NN IN NNP NN , VBG CD NNS IN NN . But officials do not believe the helicopter was forced to land because of enemy action . CC NNS VBP RB VB DT NN VBD VBN TO VB IN IN NN NN . Roadside bombs killed four American soldiers in Baghdad on Sunday . NNP NNS VBD CD JJ NNS IN NNP IN NNP . Mexico 's Zapatista rebels have emerged from their jungle hideout to begin a six-month nationwide tour in a bid to influence this year 's presidential elections . NNP POS NNP NNS VBP VBN IN PRP$ NN NN TO VB DT JJ JJ NN IN DT NN TO VB DT NN POS JJ NNS . Rebel leader Subcomandante Marcos led the Zapatistas into the city of San Cristobal de las Casas on Sunday riding a motorcycle to the cheers of thousands of supporters . NNP NN NNP NNP VBD DT NNP IN DT NN IN NNP NNP IN NNP NNP IN NNP VBG DT NN TO DT NNS IN NNS IN NNS . The rebels plan to visit every Mexican state to build support for the country 's indigenous people and the poor ahead of the July vote . DT NNS VBP TO VB DT JJ NN TO VB NN IN DT NN POS JJ NNS CC DT NN RB IN DT NNP NN . The ski mask-wearing rebel leader - who now wants to be called ' Delegate Zero ' - says the rebels will avoid big rallies and concentrate on building ties with ordinary workers . DT NN JJ NN NN : WP RB VBZ TO VB VBN `` NNP NNP `` : VBZ DT NNS MD VB JJ NNS CC VB IN NN NNS IN JJ NNS . The tour began on the 12th anniversary of the Zapatista 's bloody uprising demanding greater rights for Indians , and autonomy for the Chiapas region . DT NN VBD IN DT JJ NN IN DT NNP POS JJ NN VBG JJR NNS IN NNS , CC NN IN DT NNP NN . Pakistan has re-opened a route critical to transporting supplies to NATO and U.S.-led forces in neighboring Afghanistan . NNP VBZ VBN DT NN JJ TO VBG NNS TO NNP CC JJ NNS IN VBG NNP . Local officials say Pakistani security forces escorted a convoy of about 30 food trucks and oil tankers through the Khyber Pass Monday . JJ NNS VBP JJ NN NNS VBD DT NN IN IN CD NN NNS CC NN NNS IN DT NNP NNP NNP . Pakistan closed the route last week after gunmen hijacked about 15 supply trucks destined for Afghanistan . NNP VBD DT NN JJ NN IN NNS VBD IN CD NN NNS VBN IN NNP . Security along the countries ' mountainous border is a major concern for U.S.-led troops fighting Taliban and al-Qaida militants in Afghanistan . NN IN DT NNS POS JJ NN VBZ DT JJ NN IN JJ NNS VBG NNP CC NNP NNS IN NNP . The Chinese state news agency says 21 miners were killed in a mine explosion in southwestern China last week . DT JJ NN NN NN VBZ CD NNS VBD VBN IN DT NN NN IN JJ NNP JJ NN . The accident happened Thursday at a small mine in Panzhihua , in Sichuan province . DT NN VBD NNP IN DT JJ NN IN NNP , IN NNP NN . Xinhua news agency says 10 miners survived the disaster . NNP NN NN VBZ CD NNS VBD DT NN . It says a preliminary investigation found the blast was caused by poor management practices . PRP VBZ DT JJ NN VBD DT NN VBD VBN IN JJ NN NNS . It did not explain the delay in reporting the blast . PRP VBD RB VB DT NN IN VBG DT NN . China has the deadliest mines in the world , despite government efforts to improve safety . NNP VBZ DT JJS NNS IN DT NN , IN NN NNS TO VB NN . More than 1,000 miners have been killed this year . JJR IN CD NNS VBP VBN VBN DT NN . Mine producers ignore safety regulations to fulfill soaring energy demands brought on by China 's booming economy . NNP NNS VBP NN NNS TO VB VBG NN NNS VBN RP IN NNP POS JJ NN . Jordanian officials say King Abdullah has ordered his ambassador to return to Iraq one day after the envoy was recalled . JJ NNS VBP NNP NNP VBZ VBN PRP$ NN TO VB TO NNP CD NN IN DT NN VBD VBN . On Sunday , in a diplomatic tit-for-tat Iraq and Jordan both recalled their top diplomats . IN NNP , IN DT JJ NN NNP CC NNP DT VBD PRP$ JJ NNS . Jordan called its ambassador to Iraq home for consultations after Iraqis , protesting a deadly bombing south of Baghdad , raised the Iraqi flag over the Jordanian embassy . NNP VBD PRP$ NN TO NNP NN IN NNS IN NNS , VBG DT JJ NN NN IN NNP , VBD DT JJ NN IN DT JJ NN . The protesters gathered at the embassy after news reports said the suicide bomber was a Jordanian national . DT NNS VBN IN DT NN IN NN NNS VBD DT NN NN VBD DT JJ NN . Hours after the Jordanian recall Iraqi brought home its ambassador to Jordan for consultations . NNS IN DT JJ NN JJ VBD NN PRP$ NN TO NNP IN NNS . Meanwhile , a car bomb attack in Samarra wounded 10 people Monday and a U.S. soldier was killed in an insurgent attack in Kirkuk . RB , DT NN NN NN IN NNP VBD CD NNS NNP CC DT NNP NN VBD VBN IN DT JJ NN IN NNP . On Sunday , coalition soldiers killed 24 insurgents who attacked a coalition convoy outside Baghdad . IN NNP , NN NNS VBD CD NNS WP VBD DT NN NN IN NNP . A Rwandan businessman has been found guilty for his role in destroying a church where 2,000 Tutsis had sought shelter during Rwanda 's 1994 genocide . DT JJ NN VBZ VBN VBN JJ IN PRP$ NN IN VBG DT NN WRB CD NNP VBD VBN NN IN NNP POS CD NN . The International Criminal Tribunal for Rwanda on Monday sentenced Gaspard Kanyarukiga to 30 years in prison . DT NNP NNP NNP IN NNP IN NNP VBD NNP NNP TO CD NNS IN NN . It was not immediately clear if he will appeal . PRP VBD RB RB JJ IN PRP MD VB . Prosecutors argued during his trial that Kanyarukiga ordered the bulldozing of the church with the Tutsis inside . NNS VBD IN PRP$ NN IN NNP VBD DT NN IN DT NN IN DT NNP NN . Kanyarukiga is the second person to be sentenced by the court in connection with the massacre at Nyange church . NNP VBZ DT JJ NN TO VB VBN IN DT NN IN NN IN DT NN IN NNP NN . The church 's priest was sentenced to life in prison in 2008 . DT NN POS NN VBD VBN TO NN IN NN IN CD . Hutu extremists killed an estimated 8,00,000 ethnic Tutsis and moderate Hutus during the genocide . NNP NNS VBD DT VBN CD JJ NN CC JJ NN IN DT NN . The U.N. tribunal , operating out of the Tanzanian town of Arusha , was set up to prosecute those most responsible for organizing the killings . DT NNP NN , VBG IN IN DT JJ NN IN NNP , VBD VBN RP TO VB DT RBS JJ IN VBG DT NNS . Xerox Corp. has told employees in its Crum & Forster personal insurance operations that it is laying off about 300 people , or 25 % of the staff . NNP NNP VBZ VBN NNS IN PRP$ NNP CC NNP JJ NN NNS IN PRP VBZ VBG RP IN CD NNS , CC CD NN IN DT NN . A spokeswoman for Crum & Forster said employees were told early this week that numerous staff functions for the personal insurance lines were going to be centralized as a cost-cutting move . DT NN IN NNP CC NNP VBD NNS VBD VBN RB DT NN IN JJ NN NNS IN DT JJ NN NNS VBD VBG TO VB VBN IN DT JJ NN . She said the move would result in a after-tax charge of less than $ 4 million to be spread over the next three quarters . PRP VBD DT NN MD VB IN DT JJ NN IN JJR IN $ CD CD TO VB VBN IN DT JJ CD NNS . By comparison , for the first nine months , Xerox earned $ 492 million , or $ 4.55 a share , on revenue of $ 12.97 billion . IN NN , IN DT JJ CD NNS , NNP VBD $ CD CD , CC $ CD DT NN , IN NN IN $ CD CD . Earnings at Xerox 's financial-services operations actually rose slightly , but that was largely because capital gains at Crum & Forster offset Hurricane Hugo payments and the reserves set up to cover future payments . NNS IN NNP POS JJ NNS RB VBD RB , CC DT VBD RB IN NN NNS IN NNP CC NNP VBD NNP NNP NNS CC DT NNS VBN RP TO VB JJ NNS . Property / casualty insurance has been a tough business in recent quarters , as pricing has been cutthroat and natural disasters such as Hurricane Hugo and the California earthquake have resulted in huge payments . NN CC NN NN VBZ VBN DT JJ NN IN JJ NNS , IN NN VBZ VBN JJ CC JJ NNS JJ IN NNP NNP CC DT NNP NN VBP VBN IN JJ NNS . Great Britain formally acquired possession of Malta in 1814 . NNP NNP RB VBD NN IN NNP IN CD . The island staunchly supported the UK through both world wars and remained in the Commonwealth when it became independent in 1964 . DT NN RB VBD DT NNP IN DT NN NNS CC VBD IN DT NNP WRB PRP VBD JJ IN CD . A decade later Malta became a republic . DT NN RB NNP VBD DT NN . Since about the mid-1980s , the island has transformed itself into a freight transshipment point , a financial center , and a tourist destination . IN IN DT NNS , DT NN VBZ VBN PRP IN DT NN NN NN , DT JJ NN , CC DT NN NN . Malta became an EU member in May 2004 and began using the euro as currency in 2008 . NNP VBD DT NNP NN IN NNP CD CC VBD VBG DT NN IN NN IN CD . In 1979 the Federated States of Micronesia , a UN Trust Territory under US administration , adopted a constitution . IN CD DT NNP NNPS IN NNP , DT NNP NNP NNP IN NNP NN , VBD DT NN . In 1986 independence was attained under a Compact of Free Association with the US , which was amended and renewed in 2004 . IN CD NN VBD VBN IN DT NN IN NNP NNP IN DT NNP , WDT VBD VBN CC VBN IN CD . Present concerns include large-scale unemployment , overfishing , and overdependence on US aid . JJ NNS VBP JJ NN , VBG , CC NN IN NNP NN . Pitcairn Island was discovered in 1767 by the British and settled in 1790 by the Bounty mutineers and their Tahitian companions . NNP NNP VBD VBN IN CD IN DT NNS CC VBN IN CD IN DT NNP NNS CC PRP$ JJ NNS . Pitcairn was the first Pacific island to become a British colony ( in 1838 ) and today remains the last vestige of that empire in the South Pacific . NNP VBD DT JJ NNP NN TO VB DT JJ NN LRB IN CD RRB CC NN VBZ DT JJ NN IN DT NN IN DT NNP NNP . Outmigration , primarily to New Zealand , has thinned the population from a peak of 233 in 1937 to less than 50 today . NN , RB TO NNP NNP , VBZ VBN DT NN IN DT NN IN CD IN CD TO JJR IN CD NN . By terms of the 1960 Treaty of Establishment that created the independent Republic of Cyprus , the UK retained full sovereignty and jurisdiction over two areas of almost 254 square kilometers - Akrotiri and Dhekelia . IN NNS IN DT CD NNP IN NNP WDT VBD DT JJ NNP IN NNP , DT NNP VBD JJ NN CC NN IN CD NNS IN RB CD NN NNS IN NNP CC NNP . The southernmost and smallest of these is the Akrotiri Sovereign Base Area , which is also referred to as the Western Sovereign Base Area . DT JJS CC JJS IN DT VBZ DT NNP NNP NNP NNP , WDT VBZ RB VBN TO IN DT NNP NNP NNP NNP . Fiji became independent in 1970 after nearly a century as a British colony . NNP VBD JJ IN CD IN RB DT NN IN DT JJ NN . Democratic rule was interrupted by two military coups in 1987 caused by concern over a government perceived as dominated by the Indian community ( descendants of contract laborers brought to the islands by the British in the 19th century ) . JJ NN VBD VBN IN CD JJ NNS IN CD VBN IN NN IN DT NN VBN IN VBN IN DT JJ NN LRB NNS IN NN NNS VBN TO DT NNS IN DT NNS IN DT JJ NN RRB . The coups and a 1990 constitution that cemented native Melanesian control of Fiji led to heavy Indian emigration ; the population loss resulted in economic difficulties , but ensured that Melanesians became the majority . DT NNS CC DT CD NN WDT VBD JJ JJ NN IN NNP VBD TO JJ JJ NN ; DT NN NN VBD IN JJ NNS , CC VBD IN NNS VBD DT NN . A new constitution enacted in 1997 was more equitable . DT JJ NN VBN IN CD VBD JJR JJ . Free and peaceful elections in 1999 resulted in a government led by an Indo-Fijian , but a civilian-led coup in May 2000 ushered in a prolonged period of political turmoil . NNP CC JJ NNS IN CD VBD IN DT NN VBN IN DT JJ , CC DT JJ NN IN NNP CD VBD IN DT JJ NN IN JJ NN . Parliamentary elections held in August 2001 provided Fiji with a democratically elected government led by Prime Minister Laisenia QARASE . JJ NNS VBN IN NNP CD VBD NNP IN DT RB VBN NN VBN IN NNP NNP NNP NNP . Re-elected in May 2006 , QARASE was ousted in a December 2006 military coup led by Commodore Voreqe BAINIMARAMA , who initially appointed himself acting president but in January 2007 became interim prime minister . VBN IN NNP CD , NNP VBD VBN IN DT NNP CD JJ NN VBN IN NNP NNP NNP , WP RB VBD PRP VBG NN CC IN NNP CD VBD JJ JJ NN . Since taking power BAINIMARAMA has neutralized his opponents , crippled Fiji 's democratic institutions , and refused to hold elections . IN VBG NN NNP VBZ VBN PRP$ NNS , VBD NNP POS JJ NNS , CC VBD TO VB NNS . Military regimes favoring Islamic-oriented governments have dominated national politics since independence from the UK in 1956 . JJ NNS VBG JJ NNS VBP VBN JJ NNS IN NN IN DT NNP IN CD . Sudan was embroiled in two prolonged civil wars during most of the remainder of the 20th century . NNP VBD VBN IN CD JJ JJ NNS IN JJS IN DT NN IN DT JJ NN . These conflicts were rooted in northern economic , political , and social domination of largely non-Muslim , non-Arab southern Sudanese . DT NNS VBD VBN IN JJ JJ , JJ , CC JJ NN IN RB JJ , JJ JJ NNS . The first civil war ended in 1972 but broke out again in 1983 . DT JJ JJ NN VBN IN CD CC VBD RP RB IN CD . The second war and famine-related effects resulted in more than four million people displaced and , according to rebel estimates , more than two million deaths over a period of two decades . DT JJ NN CC JJ NNS VBD IN JJR IN CD CD NNS JJ CC , VBG TO JJ NNS , JJR IN CD CD NNS IN DT NN IN CD NNS . Peace talks gained momentum in 2002 - 4 with the signing of several accords . NNP NNS VBD NN IN CD : CD IN DT NN IN JJ NNS . The final North / South Comprehensive Peace Agreement ( CPA ) , signed in January 2005 , granted the southern rebels autonomy for six years followed by a referendum on independence for Southern Sudan . DT JJ NNP NNP NNP NNP NNP NNP LRB NNP RRB , VBN IN NNP CD , VBD DT JJ NNS NN IN CD NNS VBN IN DT NN IN NN IN NNP NNP . The referendum was held in January 2011 and indicated overwhelming support for independence . DT NN VBD VBN IN NNP CD CC VBD JJ NN IN NN . A separate conflict , which broke out in the western region of Darfur in 2003 , has displaced nearly two million people and caused an estimated 2,00,000 to 4,00,000 deaths . DT JJ NN , WDT VBD RP IN DT JJ NN IN NNP IN CD , VBZ VBN RB CD CD NNS CC VBD DT JJ CD TO CD NNS . The UN took command of the Darfur peacekeeping operation from the African Union in December 2007 . DT NNP VBD NN IN DT NNP NN NN IN DT NNP NNP IN NNP CD . Peacekeeping troops have struggled to stabilize the situation , which has become increasingly regional in scope and has brought instability to eastern Chad . VBG NNS VBP VBN TO VB DT NN , WDT VBZ VBN RB JJ IN NN CC VBZ VBN NN TO JJ NNP . Sudan also has faced large refugee influxes from neighboring countries primarily Ethiopia and Chad . NNP RB VBZ VBN JJ NN NNS IN VBG NNS RB NNP CC NNP . Armed conflict , poor transport infrastructure , and lack of government support have chronically obstructed the provision of humanitarian assistance to affected populations . JJ NN , JJ NN NN , CC NN IN NN NN VBP RB VBN DT NN IN JJ NN TO JJ NNS . A FOX entered into partnership with a Lion on the pretense of becoming his servant . DT NN VBD IN NN IN DT NN IN DT NN IN VBG PRP$ NN . Each undertook his proper duty in accordance with his own nature and powers . DT NN PRP$ JJ NN IN NN IN PRP$ JJ NN CC NNS . The Fox discovered and pointed out the prey ; the Lion sprang on it and seized it . DT NN VBD CC VBD RP DT NN ; DT NNP NN IN PRP CC VBD PRP . The Fox soon became jealous of the Lion carrying off the Lion 's share , and said that he would no longer find out the prey , but would capture it on his own account . DT NN RB VBD JJ IN DT NNP VBG RP DT NN POS NN , CC VBD IN PRP MD RB RB VB RP DT NN , CC MD VB PRP IN PRP$ JJ NN . The next day he attempted to snatch a lamb from the fold , but he himself fell prey to the huntsmen and hounds . DT JJ NN PRP VBD TO VB DT NN IN DT NN , CC PRP PRP VBD NN TO DT NNS CC NNS . It is difficult to trust anyone whose instrument changes shape as he plays it ! PRP VBZ JJ TO VB DT WP$ NN VBZ NN IN PRP VBZ PRP . Two brawny men came to my house to install some new floor covering in the kitchen . CD JJ NNS VBD TO PRP$ NN TO VB DT JJ NN VBG IN DT NN . Once they had moved the stove and refrigerator out of the way , it was not long before the job was done . RB PRP VBD VBN DT NN CC NN IN IN DT NN , PRP VBD RB RB IN DT NN VBD VBN . As they were getting ready to leave , I asked them to put the heavy appliances back in place . IN PRP VBD VBG JJ TO VB , PRP VBD PRP TO VB DT JJ NNS RB IN NN . The two men demanded $ 45 for this service , stating it was not in their contract . DT CD NNS VBD $ CD IN DT NN , VBG PRP VBD RB IN PRP$ NN . I really had no choice but to pay them . PRP RB VBD DT NN CC TO VB PRP . As soon as they left , however , the doorbell rang . RB RB IN PRP VBD , RB , DT NN NN . It was the two men . PRP VBD DT CD NNS . They asked me to move my car , which was blocking their van . PRP VBD PRP TO VB PRP$ NN , WDT VBD VBG PRP$ NN . I told them my fee : $ 45 . PRP VBD PRP PRP$ NN IN $ CD . The US Gulf Coast city of New Orleans escaped a major disaster this week when Hurricane Gustav hit shore some 110 kilometers southwest of the legendary city . DT NNP NNP NNP NN IN NNP NNP VBD DT JJ NN DT NN WRB NNP NNP VBD NN DT CD NNS JJS IN DT JJ NN . Three years ago , New Orleans was devastated by Hurricane Katrina . CD NNS RB , NNP NNP VBD VBN IN NNP NNP . VOA 's Barry Wood reports the city is cleaning up from a storm that could have been much worse . NNP POS NNP NNP VBZ DT NN VBZ VBG RP IN DT NN WDT MD VB VBN RB JJR . A delegation of Taiwan 's main opposition party visiting mainland China has paid tribute to a group of Chinese revolutionaries . DT NN IN NNP POS JJ NN NN VBG JJ NNP VBZ VBN NN TO DT NN IN JJ NNS . Chiang Pin-kung , the vice chairman of the Nationalist Party , laid a wreath Tuesday at a shrine in the southern city of Guangzhou honoring 72 revolutionaries killed in the effort to overthrow China 's last imperial dynasty in 1911 . NNP NNP , DT NN NN IN DT NNP NNP , VBD DT NN NNP IN DT NN IN DT JJ NN IN NNP VBG CD NNS VBN IN DT NN TO VB NNP POS JJ JJ NN IN CD . The visit by the Nationalist Party delegation comes days after a mass protest was held in Taiwan against Beijing 's new anti-secession law , which authorizes the use of force if Taiwan declares its independence from the mainland . DT NN IN DT NNP NNP NN VBZ NNS IN DT NN NN VBD VBN IN NNP IN NNP POS JJ JJ NN , WDT VBZ DT NN IN NN IN NNP VBZ PRP$ NN IN DT NN . Official Chinese media have hailed the delegation 's visit as a step toward easing tensions between the mainland and Taiwan . NNP JJ NNS VBP VBN DT NN POS NN IN DT NN IN VBG NNS IN DT NNP CC NNP . The Nationalists ruled mainland China until 1949 , when they lost a civil war to Mao Zedong 's communist forces . DT NNPS VBD JJ NNP IN CD , WRB PRP VBD DT JJ NN TO NNP NNP POS JJ NNS . A former Egyptian militant says Iran has secretly handed over to Cairo the alleged mastermind of a failed 1995 assassination attempt on Egyptian President Hosni Mubarak . DT JJ JJ NN VBZ NNP VBZ RB VBN IN TO NNP DT JJ NN IN DT JJ CD NN NN IN JJ NNP NNP NNP . Hani el-Sibaie , who now runs an Islamic center in London , said he has been told that Iran returned militant Moustafa Hamza to Egypt in October . NNP NNP , WP RB VBZ DT JJ NN IN NNP , VBD PRP VBZ VBN VBN IN NNP VBD JJ NNP NNP TO VB IN NNP . The fugitive is facing three deaths sentences imposed by Cairo since 1992 in absentia . DT NN VBZ VBG CD NNS NNS VBN IN NNP IN CD IN NN . Neither Egypt nor Iran has publicly commented on Sunday 's reports . CC NNP CC NNP VBZ RB VBN IN NNP POS NNS . Hamza 's group renounced violence in 1997 and two years later ended all attacks inside and outside of Egypt . NNP POS NN VBD NN IN CD CC CD NNS RB VBD DT NNS IN CC IN IN NNP . He has lived abroad for years . PRP VBZ VBN RB IN NNS . A senior Chinese official says the current dispute with U.S.-based Internet giant Google should not be ' over-interpreted ' as a sign of Beijing 's relationship with Washington . DT JJ JJ NN VBZ DT JJ NN IN JJ NN NN NNP MD RB VB `` JJ `` IN DT NN IN NNP POS NN IN NNP . State-run Xinhua news agency says Vice Foreign Minister He Yafei made the remarks Thursday in Beijing . NNP NNP NN NN VBZ NNP NNP NNP PRP NNP VBD DT NNS NNP IN NNP . Google announced last week that may end its operations in China due to censorship concerns , and a cyber attack targeting the Google-based e-mail accounts of Chinese human rights activists . NNP VBD JJ NN WDT MD VB PRP$ NNS IN NNP JJ TO NN NNS , CC DT NN NN VBG DT JJ JJ NNS IN JJ JJ NNS NNS . China says it does not condone cyber attacks , but added that all foreign companies , including Google , must comply with all local laws , regulations and customs , including government controls over the Internet . NNP VBZ PRP VBZ RB VB NN NNS , CC VBD IN DT JJ NNS , VBG NNP , MD VB IN DT JJ NNS , NNS CC NNS , VBG NN NNS IN DT NNP . U.S. Secretary of State Hillary Clinton will unveil the the Obama administration 's policies towards Internet freedom during a speech Thursday in Washington . NNP NNP IN NNP NNP NNP MD VB DT DT NNP NN POS NNS IN NNP NN IN DT NN NNP IN NNP . At least 20 people have been killed in two attacks in Baghdad . IN JJS CD NNS VBP VBN VBN IN CD NNS IN NNP . Iraqi authorities say insurgents stormed a police station in the western Amil district early Friday , killing six policemen . JJ NNS VBP NNS VBD DT NN NN IN DT JJ NNP NN RB NNP , VBG CD NNS . Later in the day , 14 people were killed and 19 injured by a car bomb that exploded outside a mosque in the northern district of al-Adamiya . RB IN DT NN , CD NNS VBD VBN CC CD VBN IN DT NN NN WDT VBD IN DT NN IN DT JJ NN IN NNP . The attacks were the latest by insurgents fighting the U.S. led coalition and security forces of the interim Iraqi government . DT NNS VBD DT JJS IN NNS VBG DT NNP VBD NN CC NN NNS IN DT JJ JJ NN . President Bush says Iraq should stick to plans to hold elections in January , despite calls by some Iraqi politicians for a delay until security improves . NNP NNP VBZ NNP MD VB TO NNS TO VB NNS IN NNP , IN NNS IN DT JJ NNS IN DT NN IN NN VBZ . On Thursday , U.S. Defense Secretary Donald Rumsfeld acknowledged America failed to anticipate the strength of the Iraqi insurgency after the fall of Saddam Hussein . IN NNP , NNP NNP NNP NNP NNP VBD NNP VBD TO VB DT NN IN DT JJ NN IN DT NN IN NNP NNP . Nigerian government officials say former Liberian leader and war crimes suspect Charles Taylor has disappeared from the house where he was living in exile in Nigeria . JJ NN NNS VBP JJ JJ NN CC NN NNS VBP NNP NNP VBZ VBN IN DT NN WRB PRP VBD VBG IN NN IN NNP . They say Taylor left his villa in the southern town of Calabar Monday night . PRP VBP NNP VBD PRP$ NN IN DT JJ NN IN NNP NNP NN . His disappearance came just after the Nigerian government said they were willing to allow Liberia to arrest Taylor . PRP$ NN VBD RB IN DT JJ NN VBD PRP VBD JJ TO VB NNP TO VB NNP . The United Nations war crimes tribunal for Sierra Leone had asked for his arrest on charges of rape and torture related to his rule in Liberia and a civil war in neighboring Sierra Leone . DT NNP NNPS NN NNS JJ IN NNP NNP VBD VBN IN PRP$ NN IN NNS IN NN CC NN VBN TO PRP$ NN IN NNP CC DT JJ NN IN VBG NNP NNP . Local officials said 22 Taliban insurgents have been killed in fighting in southern Afghanistan . JJ NNS VBD CD NNP NNS VBP VBN VBN IN VBG IN JJ NNP . Officials said NATO airstrikes and Afghan security forces attacked the group of militants Friday in Helmand province . NNS VBD NNP NNS CC JJ NN NNS VBD DT NN IN NNS NNP IN NNP NN . They said several local Taliban commanders were among the dead . PRP VBD JJ JJ NNP NNS VBD IN DT NN . The clash took place near the province 's main city , Lashkar Gah . DT NN VBD NN IN DT NN POS JJ NN , NNP NNP . Earlier in the same province , the British defense ministry said a roadside bomb blast killed a British Royal Marine . RBR IN DT JJ NN , DT JJ NN NN VBD DT NN NN NN VBD DT JJ NNP NNP . NATO said the man was part of the NATO-led international force battling insurgents in Afghanistan . NNP VBD DT NN VBD NN IN DT JJ JJ NN VBG NNS IN NNP . Two other NATO soldiers were killed in fighting in the east . CD JJ NNP NNS VBD VBN IN VBG IN DT NN . A spokesman for the force said they came under direct fire while under patrol . DT NN IN DT NN VBD PRP VBD IN JJ NN IN IN NN . Their identities and nationalities were not immediately released . PRP$ NNS CC NNS VBD RB RB VBN . Two American journalists have been reunited with their families after being released from detention in North Korea . CD JJ NNS VBP VBN VBN IN PRP$ NNS IN VBG VBN IN NN IN NNP NNP . The two were freed after a diplomatic trip to Pyongyang by former president Bill Clinton . DT CD VBD VBN IN DT JJ NN TO NNP IN JJ NN NNP NNP . In an interview with VOA Senior Correspondent Andre de Nesnera , former U.S. Ambassador to the United Nations John Bolton talks about Bill Clinton 's trip and the issue of North Korea's nuclear ambitions . IN DT NN IN NNP NNP NNP NNP NNP NNP , JJ NNP NN TO DT NNP NNP NNP NNP NNS IN NNP NNP POS NN CC DT NN IN NNP NNP JJ NNS . Report says consequences to human health from environmental degradation will grow significantly worse in next 50 years NNP VBZ NNS TO JJ NN IN JJ NN MD VB RB JJR IN JJ CD NNS The World Health Organization ( WHO ) says the decline of the global ecosystem poses a serious threat to human health . DT NNP NNP NNP LRB NNP RRB VBZ DT NN IN DT JJ NN VBZ DT JJ NN TO JJ NN . In a WHO report published Friday , scientists warn that pressures on the environment could have unpredictable and potentially severe impacts on health . IN DT NNP NN VBN NNP , NNS VBP IN NNS IN DT NN MD VB JJ CC RB JJ NNS IN NN . It says more than one billion people lack access to safe water supplies , while more than two billion lack adequate sanitation , due in part to ecosystem depletion and contamination . PRP VBZ JJR IN CD CD NNS VBP NN TO JJ NN NNS , IN JJR IN CD CD NN JJ NN , JJ IN NN TO VB NN CC NN . The report says consequences to human health from environmental degradation will grow significantly worse in the next 50 years . DT NN VBZ NNS TO JJ NN IN JJ NN MD VB RB JJR IN DT JJ CD NNS . The report says poor populations dependent on natural ecosystems for basic needs face the greatest risk of health problems . DT NN VBZ JJ NNS JJ IN JJ NNS IN JJ NNS VBP DT JJS NN IN NN NNS . Regions of concern include sub-Saharan Africa , Central Asia , parts of Latin America , and areas in South and Southeast Asia . NNS IN NN VBP JJ NNP , NNP NNP , NNS IN NNP NNP , CC NNS IN NNP CC NNP NNP . Top seed Maria Sharapova of Russia has withdrawn from the semifinals of the China Open tennis tournament in Beijing , giving countrywoman Maria Kirilenko a slot in the final . JJ NN NNP NNP IN NNP VBZ VBN IN DT NNS IN DT NNP NNP NN NN IN NNP , VBG NN NNP NNP DT NN IN DT JJ . Sharapova was trailing , 06-Apr , 02-Jan , when she pulled out because of an injury to her right pectoral muscle . NNP VBD VBG , CD , CD , WRB PRP VBD RP IN IN DT NN TO PRP$ JJ JJ NN . The crowd booed when the top-seeded Russian retired from the semifinal . DT NN VBD WRB DT JJ JJ VBN IN DT NN . In Sunday 's final , Kirilenko faces Germany 's Anna-Lena Groenefeld , a straight-set winner over Marta Domachowska of Poland 07-May , 06-Apr . IN NNP POS JJ , NNP VBZ NNP POS NNP NNP , DT JJ NN IN NNP NNP IN NNP CD , CD . Sharapova is the latest of several players to withdraw because of injury . NNP VBZ DT JJS IN JJ NNS TO VB IN IN NN . World number two Lindsay Davenport of the United States pulled out of the tournament before it started because of back trouble . NN NN CD NNP NNP IN DT NNP NNPS VBD IN IN DT NN IN PRP VBD IN IN RB NN . Venus Williams of the United States withdrew from her quarterfinal match Friday because of a knee problem . NNP NNP IN DT NNP NNPS VBD IN PRP$ JJ NN NNP IN IN DT NN NN . The Pacific Ocean was so named for its seemingly peaceful character , but unusually high waves pounded the California coastline Thursday . DT NNP NNP VBD RB VBN IN PRP$ RB JJ NN , CC RB JJ NNS VBD DT NNP NN NNP . The waves rose up to five and one half meters in some places , but most were in the two-meter range . DT NNS VBD RP TO CD CC CD NN NNS IN DT NNS , CC JJS VBD IN DT JJ NN . A strong storm in the North Pacific Ocean that started out in the Gulf of Alaska generated the waves . DT JJ NN IN DT NNP NNP NNP WDT VBD RP IN DT NNP IN NNP VBD DT NNS . These high waves happen occasionally on the California coast and usually do n't harm coastline structures . DT JJ NNS VBP RB IN DT NNP NN CC RB VBP RB VB JJ NNS . Some beachside communities built sand berms to help protect their property . DT NN NNS VBN NN NNS TO VB VB PRP$ NN . But for the many California surfboard riders it is an exciting opportunity that only happens a couple of times each year . CC IN DT JJ NNP NN NNS PRP VBZ DT JJ NN WDT RB VBZ DT NN IN NNS DT NN . Coastline authorities and experienced surfers emphasize that only highly skilled surfers should enter the water in these extreme conditions . NNP NNS CC JJ NNS VBP IN RB RB JJ NNS MD VB DT NN IN DT JJ NNS . The large swells are expected to fade soon . DT JJ NNS VBP VBN TO VB RB . A published report says the United States has ended its hunt for biological , chemical and nuclear weapons in Iraq , several months after inspectors concluded that Baghdad did not possess banned weapons at the time of the U.S.-led invasion . DT JJ NN VBZ DT NNP NNPS VBZ VBN PRP$ NN IN JJ , NN CC JJ NNS IN NNP , JJ NNS IN NNS VBD IN NNP VBD RB VB VBN NNS IN DT NN IN DT JJ NN . The Washington Post reports Wednesday that chief U.S. weapons inspector Charles Duelfer wrapped up his work in Iraq last month . DT NNP NNP NNS NNP IN JJ NNP NNS NN NNP NNP VBD RP PRP$ NN IN NNP JJ NN . The newspaper quotes unnamed intelligence officials as saying the hunt was called off because of a lack of new information and the ongoing violence in Iraq . DT NN VBZ JJ NN NNS IN VBG DT NN VBD VBN RP IN IN DT NN IN JJ NN CC DT JJ NN IN NNP . One official said there will not be any substantial changes to Mr. Duelfer 's final report , which was presented to Congress last September . CD NN VBD EX MD RB VB DT JJ NNS TO NNP NNP POS JJ NN , WDT VBD VBN TO NNP JJ NNP . The report concluded that former Iraqi leader Saddam Hussein did not posses illicit weapons prior to the 2002 invasion . DT NN VBD IN JJ JJ NN NNP NNP VBD RB VB JJ NNS RB TO DT CD NN . President Bush cited Iraq 's alleged stockpiles of banned weapons as a key reason for going to war . NNP NNP VBD NNP POS JJ NNS IN VBN NNS IN DT JJ NN IN VBG TO NN . Iran says it has postponed further talks with Russia about a proposal to process uranium on Russian soil for use in Iran 's nuclear plants . NNP VBZ PRP VBZ VBN JJ NNS IN NNP IN DT NN TO VB NN IN JJ NN IN NN IN NNP POS JJ NNS . Government spokesman Gholamhossein Elham told reporters in Tehran Monday the two sides will not meet late this week , as scheduled , but that a mutually convenient date will be set later . NNP NN NNP NNP VBD NNS IN NNP NNP DT CD NNS MD RB VB RB DT NN , IN VBN , CC IN DT RB JJ NN MD VB VBN RB . Russia has been pushing for the plan as a way to ease international concerns that Iran might be aiming to produce weapons-grade uranium . NNP VBZ VBN VBG IN DT NN IN DT NN TO VB JJ NNS IN NNP MD VB VBG TO VB JJ NN . Iran says its nuclear program is only intended to generate electricity . NNP VBZ PRP$ JJ NN VBZ RB VBN TO VB NN . Speaking on Sunday , U.S. Secretary of State Condoleezza Rice said a coalition of countries , including all members of the United Nations Security Council , are determined to prevent Iran from developing nuclear weapons . VBG IN NNP , NNP NNP IN NNP NNP NNP VBD DT NN IN NNS , VBG DT NNS IN DT NNP NNP NNP NNP , VBP VBN TO VB NNP IN VBG JJ NNS . A U.S. federal judge has ruled that military tribunals for prisoners at the U.S. base at Guantanamo Bay , Cuba , are unconstitutional . DT NNP JJ NN VBZ VBN IN JJ NNS IN NNS IN DT NNP NN IN NNP NNP , NNP , VBP JJ . In a setback for the Bush administration , a U.S. district judge in Washington D.C. also ruled that the Guantanamo detainees have constitutional protections under the law . IN DT NN IN DT NNP NN , DT NNP NN NN IN NNP NNP RB VBD IN DT NNP NNS VBP JJ NNS IN DT NN . An attorney for the Bush administration had asked the judge to throw out the prisoners ' challenges , saying their fate should be left to the military . DT NN IN DT NNP NN VBD VBN DT NN TO VB RP DT NNS POS NNS , VBG PRP$ NN MD VB VBN TO DT NN . The military tribunals have been criticized by human rights groups as fundamentally unfair to defendants . DT JJ NNS VBP VBN VBN IN JJ NNS NNS IN RB JJ TO NNS . Monday 's ruling will probably not final . NNP POS NN MD RB RB JJ . Several lawsuits by Guantanamo prisoners could go to U.S. appeals courts and then to the Supreme Court . JJ NNS IN NNP NNS MD VB TO NNP NNS NNS CC RB TO DT NNP NNP . More than 540 terrorism suspects are being held as enemy combatants at the U.S. naval base . JJR IN CD NN NNS VBP VBG VBN IN NN NNS IN DT NNP JJ NN . Most of them were captured in Afghanistan or Pakistan during the 2001 U.S.-led invasion to oust the Taleban . JJS IN PRP VBD VBN IN NNP CC NNP IN DT CD JJ NN TO VB DT NNP . While football players around the world are preparing for the 2006 World Cup in Germany , so are the referees who will oversee the games . IN NN NNS IN DT NN VBP VBG IN DT CD NNP NNP IN NNP , RB VBP DT NNS WP MD VB DT NNS . FIFA , the sport 's world governing body , says referees designated for the World Cup finals will start their build-up to the tournament 16 months before the opening kick-off . NNP , DT NN POS NN NN NN , VBZ NNS VBN IN DT NNP NNP NNS MD VB PRP$ NN TO DT NN CD NNS IN DT NN NN . A total of 46 international referees will attend the first workshop in Frankfurt between February 12 and 16 . DT NN IN CD JJ NNS MD VB DT JJ NN IN NNP IN NNP CD CC CD . They will be subjected to a medical check-up and theoretical and practical training sessions while working on their physical fitness . PRP MD VB VBN TO DT JJ NN CC JJ CC JJ NN NNS IN VBG IN PRP$ JJ NN . The final list of World Cup referees will be announced early next year . DT JJ NN IN NNP NNP NNS MD VB VBN RB JJ NN . FIFA president Sepp Blatter says the unique program will help identify , train and prepare the best match officials . NNP NN NNP NNP VBZ DT JJ NN MD VB VB , VB CC VB DT JJS NN NNS . Yet another major carmaker is slashing jobs . RB DT JJ NN VBZ VBG NNS . This time DaimlerChrysler is cutting 6000 positions to save more than $ 1 billion a year . DT NN NNP VBZ VBG CD NNS TO VB JJR IN $ CD CD DT NN . The cuts trim one fifth of the company 's management and administrative workers over the next two years . DT NNS JJ CD NN IN DT NN POS NN CC JJ NNS IN DT JJ CD NNS . Daimler announced 8,500 production job cuts last year . NNP VBD CD NN NN NNS JJ NN . DaimlerChrysler 's cuts follow recent announcements by larger rivals Ford and General Motors that they are slashing tens of thousands of workers and closing two dozen factories and other facilities . NNP POS NNS VBP JJ NNS IN JJR NNS NNP CC NNP NNPS IN PRP VBP VBG NNS IN NNS IN NNS CC VBG CD NN NNS CC JJ NNS . DaimlerChrysler is the world 's fifth-largest carmaker , and it is based in Germany and the United States . NNP VBZ DT NN POS JJ NN , CC PRP VBZ VBN IN NNP CC DT NNP NNPS . Intensified competition from Asian automakers is forcing European and U.S. companies to slash costs and search for greater efficiency . VBN NN IN JJ NNS VBZ VBG JJ CC NNP NNS TO VB NNS CC NN IN JJR NN . Angola has imposed travel restrictions on people who have visited an area hit hard by an outbreak of the deadly Marburg virus . NNP VBZ VBN NN NNS IN NNS WP VBP VBN DT NN VBN RB IN DT NN IN DT JJ NNP NN . Angola 's deputy health minister , Jose Van Dunem , says anyone who has visited northern Uige province will not be allowed to leave the country for 21 days . NNP POS JJ NN NN , NNP NNP NNP , VBZ DT WP VBZ VBN JJ NNP NN MD RB VB VBN TO VB DT NN IN CD NNS . He said the measure is necessary to stop the spread of the Marburg virus to neighboring countries . PRP VBD DT NN VBZ JJ TO VB DT NN IN DT NNP NN TO JJ NNS . Health officials say the disease has killed at least 117 people , mostly children . NN NNS VBP DT NN VBZ VBN IN JJS CD NNS , RB NNS . All of those who died contracted the disease in Uige . DT IN DT WP VBD VBD DT NN IN NNP . Two deaths took place in Angola 's capital , Luanda . CD NNS VBD NN IN NNP POS NN , NNP . Several neighboring countries have put their health workers on alert for people showing symptoms of the disease . JJ JJ NNS VBP VBN PRP$ NN NNS IN NN IN NNS VBG NNS IN DT NN . Marburg virus , similar to the deadly Ebola virus , causes high fever , vomiting , and bloody discharges . NNP NN , JJ TO DT JJ NNP NN , VBZ JJ NN , VBG , CC JJ NNS . Angry crowds in several Indian cities burned pictures of Hollywood actor Richard Gere and Indian actress Shilpa Shetty after he publicly kissed her hand and cheeks at an AIDS awareness event . NNP NNS IN JJ JJ NNS VBD NNS IN NNP NN NNP NNP CC JJ NN NNP NNP IN PRP RB VBD PRP$ NN CC NNS IN DT NNP NN NN . Demonstrators say Gere 's kissing of Shetty goes against Indian culture . NNS VBP NNP POS NN IN NNP VBZ IN JJ NN . Protesters gathered Monday in at least three Indian cities - Mumbai , Varanasi , Meerut - where they chanted ' Down with Shilpa Shetty ' while burning pictures of the two actors . NNS VBD NNP IN IN JJS CD JJ NNS IN NNP , NNP , NNP : WRB PRP VBD `` VBN IN NNP NNP `` IN VBG NNS IN DT CD NNS . Gere and Shetty appeared at a press conference Sunday in New Delhi to promote AIDS awareness among truck drivers in India . NNP CC NNP VBD IN DT NN NN NNP IN NNP NNP TO VB NNP NN IN NN NNS IN NNP . During the conference , Gere kissed Shetty on the hand and repeatedly on the cheeks in front of cheering crowds . IN DT NN , NNP VBD NNP IN DT NN CC RB IN DT NNS IN NN IN VBG NNS . The space shuttle Endeavourhas undocked from the International Space Station after bringing equipment needed to expand its capacity from three to six people . DT NN NN NNP VBD IN DT NNP NNP NNP IN VBG NN VBN TO VB PRP$ NN IN CD CC CD NNS . The shuttle left the orbiting outpost Friday with seven astronauts , and looped around the space station so the shuttle crew could photograph its exterior . DT NN VBD DT NN NN NNP IN CD NNS , CC VBD IN DT NN NN IN DT NN NN MD VB PRP$ NN . The astronauts shared a Thanksgiving dinner Thursday with the three-person crew aboard the International Space Station before saying their goodbyes and sealing the hatches between the shuttle and the space station . DT NNS VBD DT NNP NN NNP IN DT JJ NN IN DT NNP NNP NNP IN VBG PRP$ NNS CC VBG DT NNS IN DT NN CC DT NN NN . The shuttle is scheduled to arrive at the Kennedy Space Center in the southeastern U.S. state of Florida on Sunday . DT NN VBZ VBN TO VB IN DT NNP NNP NNP IN DT JJ NNP NN IN NNP IN NNP . As part of the 16-day mission , the shuttle crew delivered and installed a new toilet , kitchen equipment , and water recycling system meant to allow the space station to double its crew capacity . IN NN IN DT JJ NN , DT NN NN VBN CC VBN DT JJ NN , NN NN , CC NN NN NN VBD TO VB DT NN NN TO VB PRP$ NN NN . The U.S. dollar declined in value compared to other major currencies Tuesday . DT NNP NN VBD IN NN VBN TO JJ JJ NNS NNP . At one point , the dollar bought a bit more than 104 yen and it took just over $ 1.32 to buy a euro . IN CD NN , DT NN VBD DT NN RBR IN CD NNS CC PRP VBD RB IN $ CD TO VB DT NN . The drop followed reports that South Korea plans to switch more of its reserves from dollars to other currencies . DT NN VBD NNS IN NNP NNP VBZ TO VB JJR IN PRP$ NNS IN NNS TO JJ NNS . South Korea has the world 's fourth largest currency reserves , and they have traditionally been held largely in dollar-denominated investments . NNP NNP VBZ DT NN POS JJ JJS NN NNS , CC PRP VBP RB VBN VBN RB IN JJ NNS . Some analysts say they are watching central banks in Europe and the Middle East to see if they take similar action , which would further reduce demand for the dollar and weaken its value . DT NNS VBP PRP VBP VBG JJ NNS IN NNP CC DT NNP NNP TO VB IN PRP VBP JJ NN , WDT MD RB VB NN IN DT NN CC VB PRP$ NN . Medical researchers say a simple decision by expectant mothers can mean the difference between life and death for thousands of people . JJ NNS VBP DT JJ NN IN JJ NNS MD VB DT NN IN NN CC NN IN NNS IN NNS . Blood from umbilical cords has been used in life-saving transplants for people suffering from diseases such as leukemia . NNP IN JJ NNS VBZ VBN VBN IN JJ NNS IN NNS VBG IN NNS JJ IN NN . But cord blood is in short supply . CC NN NN VBZ IN JJ NN . VOA 's Robert Raffaele has the story . NNP POS NNP NNP VBZ DT NN . The World Health Organization says that while there have already been three deaths from bird flu in China this year , there are no signs the deadly disease is becoming a bigger problem . DT NNP NNP NNP VBZ IN IN EX VBP RB VBN CD NNS IN NN NN IN NNP DT NN , EX VBP DT NNS DT JJ NN VBZ VBG DT JJR NN . In a statement Wednesday , the WHO 's top representative in China , Hans Troedsson , says the three recent cases were not unexpected considering the winter season . IN DT NN NNP , DT NNP POS JJ NN IN NNP , NNP NNP , VBZ DT CD JJ NNS VBD RB JJ VBG DT NN NN . Bird flu tends to be more active during the colder months of the year . NNP NN VBZ TO VB RBR JJ IN DT NN NNS IN DT NN . Troedsson also stressed that all three cases involved people who contracted the disease from poultry , not from human to human transmissions . NNP RB VBD IN DT CD NNS VBN NNS WP VBD DT NN IN NN , RB IN JJ TO JJ NNS . China has the world 's largest poultry population and is at the center of the fight against bird flu , which scientists fear could mutate into a form that could pass easily between people , sparking a pandemic . NNP VBZ DT NN POS JJS NN NN CC VBZ IN DT NN IN DT NN IN NN NN , WDT NNS VBP MD VB IN DT NN WDT MD VB RB IN NNS , VBG DT NN . The World Health Organization says China has had 20 bird flu deaths and 30 cases since the outbreak began in 2003 . DT NNP NNP NNP VBZ NNP VBZ VBN CD NN NN NNS CC CD NNS IN DT NN VBD IN CD . Sudan 's President Omar al-Bashir has arrived in Libya for talks on Sudan 's troubled Darfur region . NNP POS NNP NNP NNP VBZ VBN IN NNP IN NNS IN NNP POS JJ NNP NN . Sudan 's official news agency , SUNA , says the president will meet with Darfur rebels who refused to endorse a peace deal signed last year . NNP POS JJ NN NN , NNP , VBZ DT NN MD VB IN NNP NNS WP VBD TO VB DT NN NN VBN JJ NN . The discussions this week also will be attended by Libyan leader Moammar Gadhafi and Eritrean President Isaias Afewerki . DT NNS DT NN RB MD VB VBN IN JJ NN NNP NNP CC JJ NNP NNP NNP . Last year , Sudan 's government and the largest Darfur rebel group signed a landmark peace deal . JJ NN , NNP POS NN CC DT JJS NN NN NN VBD DT NN NN NN . Some other rebel groups rejected the deal , saying it does not meet their demands for power- and wealth-sharing . DT JJ NN NNS VBD DT NN , VBG PRP VBZ RB VB PRP$ NNS IN JJ CC JJ . Four years of fighting in Darfur has killed at least 2,00,000 people and driven more than two million others from their homes . CD NNS IN VBG IN NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD CD NNS IN PRP$ NNS . President Bashir has resisted the deployment of United Nations peacekeepers to Darfur to support a 7,000-strong African Union mission . NNP NNP VBZ VBN DT NN IN NNP NNPS NNS TO VB TO VB DT JJ NNP NNP NN . One of the two main rebel groups in Sudan 's Darfur region has demanded a United Nations force to replace African Union troops in the troubled region . CD IN DT CD JJ NN NNS IN NNP POS NNP NN VBZ VBN DT NNP NNP NN TO VB NNP NNP NNS IN DT JJ NN . The leader of the Justice and Equality Movement , Khalil Ibrahim , said Thursday the AU force has failed to protect civilians in Darfur or disarm pro-government Arab militias known as the Janjaweed . DT NN IN DT NNP CC NNP NNP , NNP NNP , VBD NNP DT NNP NN VBZ VBN TO VB NNS IN NNP CC VB JJ JJ NNS VBN IN DT NNP . In an interview with Reuters news agency , he said his group will not return to peace talks in Nigeria unless the United Nations takes over as lead mediator from the African Union . IN DT NN IN NNP NN NN , PRP VBD PRP$ NN MD RB VB TO NN NNS IN NNP IN DT NNP NNPS VBZ RP IN JJ NN IN DT NNP NNP . This latest round of AU-sponsored talks broke off this week with both the rebels and the government accusing each other of violating a cease-fire agreement . DT JJS NN IN JJ NNS VBD RP DT NN IN DT DT NNS CC DT NN VBG DT NN IN VBG DT NN NN . The African Union has sent some 800 troops to Darfur to protect cease-fire monitors , but they are not mandated to protect civilians or to intervene in fighting . DT NNP NNP VBZ VBN DT CD NNS TO VB TO VB NN NNS , CC PRP VBP RB VBN TO VB NNS CC TO VB IN NN . Canada has assumed the presidency of the Group of Eight industrialized nations for 2010 , a year that will see the country play a much larger role on the international stage . NNP VBZ VBN DT NN IN DT NNP IN CD JJ NNS IN CD , DT NN WDT MD VB DT NN VB DT JJ JJR NN IN DT JJ NN . Prime Minister Stephen Harper will host the leaders of the world 's major economic powers in Ontario in June for an annual summit expected to focus on free trade , democracy and human rights . NNP NNP NNP NNP MD VB DT NNS IN DT NN POS JJ JJ NNS IN NNP IN NNP IN DT JJ NN VBN TO VB IN JJ NN , NN CC JJ NNS . Canada takes over the presidency from Italy , which presided over debates in 2009 on food security , as well as the nuclear programs of Iran and North Korea . NNP VBZ IN DT NN IN NNP , WDT VBD IN NNS IN CD IN NN NN , RB RB IN DT JJ NNS IN NNP CC NNP NNP . The G8 includes the United States , Japan , Germany , France , Britain , Italy , Canada and Russia . DT NNP VBZ DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , NNP CC NNP . Canada will also chair this year 's Group of 20 developed and developing nations , and host the 2010 Winter Olympics in Vancouver . NNP MD RB VB DT NN POS NNP IN CD JJ CC JJ NNS , CC VB DT CD NNP NNPS IN NNP . Radical Muslim militant Shamil Basayev , in a Chechen rebel-linked website , has reportedly claimed responsibility for a extensive blackout that hit large parts of Moscow Wednesday . NNP NNP JJ NNP NNP , IN DT JJ JJ NN , VBZ RB VBN NN IN DT JJ NN WDT VBD JJ NNS IN NNP NNP . But Russian officials repeated Friday their belief that the power outage was caused by a fire and explosion at an energy substation , which they say runs on worn-out equipment . CC JJ NNS VBD NNP PRP$ NN IN DT NN NN VBD VBN IN DT NN CC NN IN DT NN NN , WDT PRP VBP NNS IN JJ NN . The militant has claimed responsibility for some of Russia 's deadliest terrorist attacks , including last year 's elementary school massacre of 330 people . DT NN VBZ VBN NN IN DT IN NNP POS JJS JJ NNS , VBG JJ NN POS JJ NN NN IN CD NNS . Yesterday , Russian prosecutors questioned the chief of the country 's monopoly power company , Anatoly Chubais , about the blackout . NN , JJ NNS VBD DT NN IN DT NN POS NN NN NN , NNP NNP , IN DT NN . Russian President Vladimir Putin has accused Unified Energy Systems , the monopoly company that is mostly owned by the government , of negligence . JJ NNP NNP NNP VBZ VBN NNP NNP NNP , DT NN NN WDT VBZ RB VBN IN DT NN , IN NN . Wednesday 's blackout shut down the Moscow stock market , forced hospitals to switch to emergency power , and left thousands of people stranded in subways . NNP POS NN VBD RP DT NNP NN NN , VBD NNS TO VB TO NN NN , CC VBD NNS IN NNS VBN IN NNS . Iran has again rejected calls to end its nuclear fuel cycle work , despite fresh European threats to bring United Nations sanctions . NNP VBZ RB VBN NNS TO VB PRP$ JJ NN NN NN , IN JJ JJ NNS TO VB NNP NNP NNS . A Foreign Ministry spokesman Sunday repeated Tehran 's claim that its uranium conversion work is aimed at generating electricity rather than atomic weaponry . DT NNP NNP NN NNP VBD NNP POS NN IN PRP$ NN NN NN VBZ VBN IN VBG NN RB IN JJ NN . He said Iran will not yield to threats from Western governments . PRP VBD NNP MD RB VB TO NNS IN JJ NNS . Iran resumed uranium conversion at its plant in Isfahan last month , rejecting European incentives aimed at ending Tehran 's nuclear activities . NNP VBD NN NN IN PRP$ NN IN NNP JJ NN , VBG JJ NNS VBN IN VBG NNP POS JJ NNS . Thursday , the European Union said it would ask the International Atomic Energy Agency to seek U.N. sanctions at an IAEA board meeting September 19 in Vienna . NNP , DT NNP NNP VBD PRP MD VB DT NNP NNP NNP NNP TO VB NNP NNS IN DT NNP NN NN NNP CD IN NNP . On Friday , an IAEA report said Iran has failed to answer key questions about its work with uranium and plutonium - two key materials needed for an atomic bomb . IN NNP , DT NNP NN VBD NNP VBZ VBN TO VB JJ NNS IN PRP$ NN IN NN CC NN IN CD JJ NNS VBN IN DT JJ NN . Iraqi officials say insurgents ambushed an Egyptian-owned telephone company 's convoy in Baghdad Wednesday , killing at least six security guards and possibly abducting two foreign engineers . JJ NNS VBP NNS VBD DT JJ NN NN POS NN IN NNP NNP , VBG IN JJS CD NN NNS CC RB VBG CD JJ NNS . Officials say the engineers from Malawi and Madagascar are missing and feared kidnapped . NNS VBP DT NNS IN NNP CC NNP VBP VBG CC VBD VBN . Meanwhile , kidnappers freed the sister of Iraq 's interior minister , Shi'ite politician Bayan Jabr , two weeks after she was abducted in Baghdad . RB , NNS VBD DT NN IN NNP POS JJ NN , NNP NN NNP NNP , CD NNS IN PRP VBD VBN IN NNP . On Tuesday , Iraqi insurgents released a videotape of kidnapped American journalist Jill Carroll , who works for the Christian Science Monitor , saying they would kill her unless female prisoners in Iraq are released within 72 hours . IN NNP , JJ NNS VBD DT NN IN VBN JJ NN NNP NNP , WP VBZ IN DT NNP NNP NNP , VBG PRP MD VB PRP IN JJ NNS IN NNP VBP VBN IN CD NNS . And Iran said it is looking into Iraqi allegations of a clash between Iraqi and Iranian coastguard forces in the Persian Gulf . CC NNP VBD PRP VBZ VBG IN JJ NNS IN DT NN IN JJ CC JJ NN NNS IN DT NNP NNP . Basra 's governor said Tuesday that nine Iraqi coast guard sailors were kidnapped and one killed in a skirmish with Iranian forces . NNP POS NN VBD NNP IN CD JJ NN NN NNS VBD VBN CC CD VBN IN DT NN IN JJ NNS . Director of Greek shipping firm Alloceans Shipping says pirates freed the ' Ariana ' and its crew members after the company paid a ransom . NNP IN JJ NN NN NNP NNP VBZ NNS VBD DT `` NNP `` CC PRP$ NN NNS IN DT NN VBD DT NN . Somali pirates have released a Greek-owned cargo ship and its 24 Ukrainian crew members after seven months in captivity . JJ NNS VBP VBN DT JJ NN NN CC PRP$ CD JJ NN NNS IN CD NNS IN NN . The director of Greek shipping firm Alloceans Shipping , Spyros Minas , says pirates freed the Ariana Thursday , after the company paid a ransom . DT NN IN JJ NN NN NNP NNP , NNP NNP , VBZ NNS VBD DT NNP NNP , IN DT NN VBD DT NN . In Kiev , Ukrainian President Victor Yushchenko also announced the crew 's release . IN NNP , JJ NNP NNP NNP RB VBD DT NN POS NN . The shipping company did not reveal the size of the ransom , but pirates told reporters the amount was more than $ 2.5 million . DT NN NN VBD RB VB DT NN IN DT NN , CC NNS VBD NNS DT NN VBD JJR IN $ CD CD . Pirates have continued to hijack vessels despite the presence of foreign naval patrols near Somalia . NNS VBP VBN TO VB NNS IN DT NN IN JJ JJ NNS IN NNP . They are still believed to be holding around 260 crew members on nearly a dozen captured ships . PRP VBP RB VBN TO VB VBG IN CD NN NNS IN RB DT NN VBN NNS . Estonia 's Kristina Smigun has captured her second gold medal of the Turin Winter Olympics , with a victory in the women 's 10-kilometer classical cross country ski event . NNP POS NNP NNP VBZ VBN PRP$ JJ NN NN IN DT NNP NNP NNPS , IN DT NN IN DT NNS POS JJ JJ NN NN NN NN . Smigun , who won the 15-kilometer pursuit on Sunday , finished more than 21 seconds ahead of Marit Bjoergen of Norway , who took the silver medal Thursday . NNP , WP VBD DT JJ NN IN NNP , VBD RBR IN CD NNS RB IN NNP NNP IN NNP , WP VBD DT NN NN NNP . Hilde Pedersen , also from Norway , won the bronze . NNP NNP , RB IN NNP , VBD DT NN . Seven other gold medals are at stake Thursday , in Turin . CD JJ JJ NNS VBP IN NN NNP , IN NNP . The men 's Nordic Combined is on the schedule after high winds postponed the event on Wednesday . DT NNS POS NNP NNP VBZ IN DT NN IN JJ NNS VBD DT NN IN NNP . Thursday 's schedule also includes the debut of men 's snowboard cross , while the free program will complete men 's figure skating . NNP POS NN RB VBZ DT NN IN NNS POS NN NN , IN DT JJ NN MD VB NNS POS NN NN . Women will ski and shoot for gold in the 7.5 kilometer biathlon sprint . NNS MD VB CC VB IN NN IN DT CD NN NN NN . Women will also compete in skeleton singles . NNS MD RB VB IN NN NNS . Both genders will seek medals in speedskating team pursuit . DT NNS MD VB NNS IN VBG NN NN . Iran says it has filed a complaint with the International Monetary Fund against a U.S. treasury department ban on a leading Iranian bank . NNP VBZ PRP VBZ VBN DT NN IN DT NNP NNP NNP IN DT NNP NN NN NN IN DT JJ JJ NN . Iranian state television quotes central bank chief Ebrahim Sheibani as saying Iran lodged the complaint after the United States imposed sanctions this month on Bank Saderat . JJ NN NN NNS JJ NN NN NNP NNP IN VBG NNP VBD DT NN IN DT NNP NNPS VBD NNS DT NN IN NNP NNP . U.S. officials allege the Iranian government uses the bank to transfer millions of dollars to terrorist groups , including Hezbollah and Hamas . NNP NNS VBP DT JJ NN VBZ DT NN TO VB NNS IN NNS TO JJ NNS , VBG NNP CC NNP . Sheibani says the ban is politically motivated and the United States has not provided any evidence for its claim . NNP VBZ DT NN VBZ RB JJ CC DT NNP NNPS VBZ RB VBN DT NN IN PRP$ NN . Iranian banks have long been denied access to the U.S. financial system but are able to access the system indirectly through third-country banks . JJ NNS VBP RB VBN VBN NN TO DT NNP JJ NN CC VBP JJ TO VB DT NN RB IN JJ NNS . The ban effectively cuts off Bank Saderat from the U.S. financial system . DT NN RB VBZ RP NNP NNP IN DT NNP JJ NN . The cut-off comes as Washington continues to pressure Iran to stop enriching uranium as part of its nuclear program . DT NN VBZ IN NNP VBZ TO VB NNP TO VB VBG NN IN NN IN PRP$ JJ NN . The Israeli army says it carried out two airstrikes in Gaza late Monday , both aimed at houses belonging to militants . DT JJ NN VBZ PRP VBD RP CD NNS IN NNP JJ NNP , DT VBN IN NNS VBG TO NNS . The first was aimed at a home in the Jabalya refugee camp , and the second hit a house in the Beit Hanoun district of Northern Gaza . DT NN VBD VBN IN DT NN IN DT NNP NN NN , CC DT JJ NN DT NN IN DT NNP NNP NN IN NNP NNP . In both cases residents of the houses were warned in advance . IN DT NNS NNS IN DT NNS VBD VBN IN NN . Earlier , Palestinian hospital officials said an Israeli military strike in northern Gaza killed three Palestinians , including a teenage boy . RB , JJ NN NNS VBD DT JJ JJ NN IN JJ NNP VBD CD NNS , VBG DT NN NN . Israel 's military says it targeted Palestinian militants in the area after they fired two rockets at the Israeli city of Ashkelon . NNP POS NN VBZ PRP JJ JJ NNS IN DT NN IN PRP VBD CD NNS IN DT JJ NN IN NNP . Meanwhile , the U.S. television network , Fox , says two of its employees were kidnapped by Palestinian gunmen in the Gaza Strip Monday . RB , DT NNP NN NN , NNP , VBZ CD IN PRP$ NNS VBD VBN IN JJ NNS IN DT NNP NNP NNP . Witnesses say American correspondent Steve Centanni and cameraman Olaf Wiig from New Zealand were taken away by gunmen after their car was intercepted in Gaza City . NNS VBP JJ NN NNP NNP CC NN NNP NNP IN NNP NNP VBD VBN RB IN NNS IN PRP$ NN VBD VBN IN NNP NNP . Authorities have lost control of a southern Afghanistan district after Taleban fighters attacked and disarmed police late Thursday . NNS VBP VBN NN IN DT JJ NNP NN IN NNP NNS VBD CC VBD NN JJ NNP . Reports from Musa Qala in the southern province of Helmand say hundreds of Taleban fighters seized the town , destroying part of its district headquarters . NNS IN NNP NNP IN DT JJ NN IN NNP VBP NNS IN NNP NNS VBD DT NN , VBG NN IN PRP$ NN NN . The Associated press quotes a spokesman for NATO forces in Afghanistan , Colonel Tom Collins , as saying an unknown number of militants apparently entered Musa Qala . DT NNP NN VBZ DT NN IN NNP NNS IN NNP , NNP NNP NNP , IN VBG DT JJ NN IN NNS RB VBD NNP NNP . British forces pulled out of the town last year after a peace deal was signed between local elders and the Helmand provincial government . JJ NNS VBD IN IN DT NN JJ NN IN DT NN NN VBD VBN IN JJ NNS CC DT NNP JJ NN . India has test-fired another multi-target surface-to-air missile , as part of trials of its airborne warfare systems . NNP VBZ VBN DT JJ NN NN , IN NN IN NNS IN PRP$ JJ NN NNS . The missile , known as ' Akash , ' or the Sky , has a range of approximately 25 kilometers and can carry a warhead of up to 50 kilograms . DT NN , VBN IN `` NNP , `` CC DT NNP , VBZ DT NN IN RB CD NNS CC MD VB DT NN IN RB TO CD NNS . Indian defense officials say the missile performed successfully in Monday 's test in eastern Orissa state . JJ NN NNS VBP DT NN VBD RB IN NNP POS NN IN JJ NNP NN . They say it was fired from a mobile launcher at the country 's main Chandipur coastal testing site , northeast of the state capital , Bhubaneshwar . PRP VBP PRP VBD VBN IN DT JJ NN IN DT NN POS JJ NNP JJ NN NN , NN IN DT NN NN , NNP . It was the third Akash missile test in as many days . PRP VBD DT JJ NNP NN NN IN IN JJ NNS . On Saturday , two missiles fired from rocket launchers tracked , intercepted and destroyed two airborne targets at a range of about 20 kilometers . IN NNP , CD NNS VBN IN NN NNS VBD , VBD CC VBD CD JJ NNS IN DT NN IN IN CD NNS . The missile is one of five being developed by India 's state-run Defense Research and Development Organization . DT NN VBZ CD IN CD VBG VBN IN NNP POS JJ NNP NNP CC NNP NNP . The first Roman Catholic priest to serve as a voting member of the U.S Congress has died . DT JJ NNP NNP NN TO VB IN DT NN NN IN DT NNP NNP VBZ VBN . Georgetown University says Reverend Robert Drinan died at the age of 86 after suffering from pneumonia and congestive heart failure . NNP NNP VBZ NNP NNP NNP VBD IN DT NN IN CD IN VBG IN NN CC JJ NN NN . He represented Massachusetts in the House of Representatives during the 1970s before stepping down when Pope John Paul II issued a directive barring priests from holding public office . PRP VBD NNP IN DT NNP IN NNPS IN DT NNS IN VBG RP WRB NNP NNP NNP NNP VBD DT NN VBG NNS IN VBG JJ NN . After leaving Congress , Drinan continued to advocate human rights and humanitarian causes . IN VBG NNP , NNP VBD TO VB JJ NNS CC JJ NNS . He also taught classes on international human rights , law , legal ethics and religion and government at Georgetown . PRP RB VBD NNS IN JJ JJ NNS , NN , JJ NNS CC NN CC NN IN NNP . The U.S. State Department has issued a new warning for U.S. citizens considering travel to Israel and the Palestinian territories . DT NNP NNP NNP VBZ VBN DT JJ NN IN NNP NNS VBG NN TO NNP CC DT JJ NNS . In a statement Friday , the State Department said the fresh warning supersedes a previous travel alert for the region issued in January . IN DT NN NNP , DT NNP NNP VBD DT JJ NN VBZ DT JJ NN NN IN DT NN VBN IN NNP . It cited ' considerable violence ' in recent months between Palestinian factions , as well as between Israeli security forces and armed Palestinian groups . PRP VBD `` JJ NN `` IN JJ NNS IN JJ NNS , RB RB IN IN JJ NN NNS CC JJ JJ NNS . It urged U.S. citizens to be mindful of security when traveling to Israel and Jerusalem . PRP VBD NNP NNS TO VB JJ IN NN WRB VBG TO NNP CC NNP . The statement recommended that all Americans , including journalists and aid workers , defer travel to the West Bank and avoid any travel in the Gaza Strip . DT NN VBD IN DT NNS , VBG NNS CC NN NNS , VB NN TO DT NNP NNP CC VB DT NN IN DT NNP NNP . Chinese paramilitary officer gestures outside of the Japanese embassy in Beijing , the scene of violent protests China has offered to repair damage the Japanese embassy in Beijing sustained during recent violent protests , but is rejecting Tokyo 's demand for an apology . JJ JJ NN NNS IN IN DT JJ NN IN NNP , DT NN IN JJ NNS NNP VBZ VBN TO VB NN DT JJ NN IN NNP VBD IN JJ JJ NNS , CC VBZ VBG NNP POS NN IN DT NN . Beijing says Japan is to blame for starting the dispute , which centers on a new Japanese history textbook critics say overlooks Japan 's brutal military occupation of much of Asia before and during World War II . NNP VBZ NNP VBZ TO VB IN VBG DT NN , WDT VBZ IN DT JJ JJ NN NN NNS VBP NNS NNP POS JJ JJ NN IN NN IN NNP IN CC IN NNP NNP NNP . Approval of the book sparked three weeks of angry protests in China . NNP IN DT NN VBD CD NNS IN JJ NNS IN NNP . Tokyo has proposed a meeting between Prime Minister Junichiro Koizumi and Chinese President Hu Jintao at the upcoming Asia-Africa summit in Indonesia . NNP VBZ VBN DT NN IN NNP NNP NNP NNP CC JJ NNP NNP NNP IN DT JJ NNP NN IN NNP . UN Secretary General Kofi Annan has also urged the two leaders to meet and resolve their differences . NNP NNP NNP NNP NNP VBZ RB VBN DT CD NNS TO VB CC VB PRP$ NNS . Cuban President Fidel Castro says the country 's economy is growing despite the U.S. government 's long-standing trade embargo against the island . JJ NNP NNP NNP VBZ DT NN POS NN VBZ VBG IN DT NNP NN POS JJ NN NN IN DT NN . The Cuban leader said Monday in a May Day speech lasting more than three hours that the current rate of growth was at 12.5 percent . DT JJ NN VBD NNP IN DT NNP NNP NN VBG JJR IN CD NNS IN DT JJ NN IN NN VBD IN CD NN . Cuba , however , uses a calculation system that differs from the international standard . NNP , RB , VBZ DT NN NN WDT VBZ IN DT JJ NN . As he spoke before hundreds of thousands of people gathered in Havana , Mr. Castro criticized the Bush administration for creating a transition plan for a post-Castro Cuba . IN PRP VBD IN NNS IN NNS IN NNS VBN IN NNP , NNP NNP VBD DT NNP NN IN VBG DT NN NN IN DT JJ NNP . Additionally , he said the U.S. characterization of his country as a state sponsor of terrorism was cynical . RB , PRP VBD DT NNP NN IN PRP$ NN IN DT NN NN IN NN VBD JJ . Last Friday , the State Department released a report which again listed Cuba and five other countries , Iran , Libya , North Korea , Sudan and Syria as state sponsors of terrorism , which are subject to sanctions under U.S. law . JJ NNP , DT NNP NNP VBD DT NN WDT RB VBD NNP CC CD JJ NNS , NNP , NNP , NNP NNP , NNP CC NNP IN NN NNS IN NN , WDT VBP JJ TO NNS IN NNP NN . Algerian President Abdelaziz Bouteflika has confirmed that two Algerian diplomats in Iraq have been killed by their kidnappers . JJ NNP NNP NNP VBZ VBN IN CD JJ NNS IN NNP VBP VBN VBN IN PRP$ NNS . The president issued a statement Wednesday calling the murders a ' cowardly ' act . DT NN VBD DT NN NNP VBG DT NNS DT `` RB `` NN . He did not say what evidence the government has that proves Algerian mission chief Ali Belaroussi and attache Azzedine Belkadi have been killed . PRP VBD RB VB WP NN DT NN VBZ DT VBZ JJ NN NN NNP NNP CC NNP NNP NNP VBP VBN VBN . Earlier Wednesday , Abu Musab al-Zarqawi 's terrorist group , al-Qaida in Iraq , said in an Internet statement that it had killed the two diplomats , who were abducted last Thursday in Baghdad . RBR NNP , NNP NNP NNP POS JJ NN , NNP IN NNP , VBD IN DT NNP NN IN PRP VBD VBN DT CD NNS , WP VBD VBN JJ NNP IN NNP . No videotape or pictures of the alleged killings accompanied the statement . DT NN CC NNS IN DT JJ NNS VBD DT NN . In New York , United Nations Secretary-General Kofi Annan condemned the killings as ' brutal and barbaric , ' and he said every effort must be made to bring the killers to justice . IN NNP NNP , NNP NNP NNP NNP NNP VBD DT NNS IN `` JJ CC JJ , `` CC PRP VBD DT NN MD VB VBN TO VB DT NNS TO NN . Afghan authorities say U.S-led coalition forces have arrested five suspected Taleban insurgents in connection with an attack on a oil tanker that killed two Pakistanis . JJ NNS VBP JJ NN NNS VBP VBN CD JJ NNP NNS IN NN IN DT NN IN DT NN NN WDT VBD CD NNS . Police in the Afghan border town of Spin Boldak said the five suspects were apprehended Wednesday - a day after the two Pakistani nationals were killed in the same area . NNS IN DT JJ NN NN IN NNP NNP VBD DT CD NNS VBD VBN NNP IN DT NN IN DT CD JJ NNS VBD VBN IN DT JJ NN . The victims were ambushed after the Pakistani-owned tanker delivered fuel to a U.S. base in southern Afghanistan . DT NNS VBD VBN IN DT JJ NN VBN NN TO DT NNP NN IN JJ NNP . Taleban and allied militants have stepped up attacks in recent months , often hitting soft targets associated with coalition forces and the Afghan government of President Hamid Karzai . NNP CC JJ NNS VBP VBN RP NNS IN JJ NNS , RB VBG JJ NNS VBN IN NN NNS CC DT JJ NN IN NNP NNP NNP . The opposition in Azerbaijan is calling for protests over the shooting death of an editor of a magazine critical of the government . DT NN IN NNP VBZ VBG IN NNS IN DT NN NN IN DT NN IN DT NN JJ IN DT NN . Popular Front leader Ali Kerimli urged the demonstrations in response to Wednesday 's fatal attack on Elmar Husseinov of the weekly Monitor . JJ NNP NN NNP NNP VBD DT NNS IN NN TO NNP POS JJ NN IN NNP NNP IN DT JJ NN . No suspects have been identified . DT NNS VBP VBN VBN . President Ilham Aliyev ordered a swift investigation and called the attack a serious provocation against the state and authority . NNP NNP NNP VBD DT JJ NN CC VBD DT NN DT JJ NN IN DT NN CC NN . The slain journalist had come under government scrutiny and had previously been jailed and fined for his work . DT NN NN VBD VBN IN NN NN CC VBD RB VBN VBN CC VBN IN PRP$ NN . The Committee to Protect Journalists said the killing appeared to have been well planned and orchestrated - while the Paris-based Reporters Without Borders called it part of a campaign of violence against journalists in Azerbaijan . DT NNP TO VB NNS VBD DT NN VBD TO VB VBN RB VBN CC VBN : IN DT JJ NNS IN NNS VBD PRP NN IN DT NN IN NN IN NNS IN NNP . Also , the Organization for Security and Cooperation in Europe expressed shock at the attack and said it expects a swift investigation . RB , DT NNP IN NNP CC NNP IN NNP VBD NN IN DT NN CC VBD PRP VBZ DT JJ NN . Witnesses say Palestinian gunmen have freed two Western teachers kidnapped early Wednesday in the Gaza Strip as part of a push to gain the release of several jailed militants . NNS VBP JJ NNS VBP VBN CD JJ NNS VBN JJ NNP IN DT NNP NNP IN NN IN DT NN TO VB DT NN IN JJ JJ NNS . The teachers , abducted as they drove to work in Gaza City , were reported safe hours later at the headquarters of Palestinian leader Mahmoud Abbas . DT NNS , VBN IN PRP VBD TO VB IN NNP NNP , VBD VBN JJ NNS RB IN DT NN IN JJ NN NNP NNP . Details of the release were not clear . NNS IN DT NN VBD RB JJ . Gunmen from the Popular Front for the Liberation of Palestine had claimed responsibility , in a statement demanding the release of jailed PFLP chief Ahmed Saadat . NNS IN DT NNP NNP IN DT NN IN NNP VBD VBN NN , IN DT NN VBG DT NN IN JJ NNP NN NNP NNP . He and several others in the group remain under foreign supervision in a Palestinian prison for their role in the 2001 assassination of Israeli Cabinet minister Rehavam Zeevi . PRP CC JJ NNS IN DT NN VBP IN JJ NN IN DT JJ NN IN PRP$ NN IN DT CD NN IN JJ NNP NN NNP NNP . Europe 's top security organization says it will have an observer mission in Kyrgyzstan to monitor the July 10 presidential election . NNP POS JJ NN NN VBZ PRP MD VB DT NN NN IN NNP TO VB DT NNP CD JJ NN . The Organization for Security and Cooperation in Europe , the OSCE , says it will ' assess the entire election process ' in terms of its compliance with international standards for democratic elections . DT NNP IN NNP CC NNP IN NNP , DT NNP , VBZ PRP MD `` VB DT JJ NN NN `` IN NNS IN PRP$ NN IN JJ NNS IN JJ NNS . The OSCE mission consists of 15 election experts based in Bishkek and 26 long-term observers deployed to various regions of Kyrgyzstan . DT NNP NN VBZ IN CD NN NNS VBN IN NNP CC CD JJ NNS VBN TO JJ NNS IN NNP . About 300 short-term observers will join the mission just before the polls . IN CD JJ NNS MD VB DT NN RB IN DT NNS . The OSCE move follows allegations of official abuses during the Kyrgyz parliamentary polls earlier this year which triggered public protests that ousted the unpopular government in March . DT NNP NN VBZ NNS IN JJ NNS IN DT JJ JJ NNS RBR DT NN WDT VBD JJ NNS WDT VBD DT JJ NN IN NNP . The presidential election is seen as a major democracy test for the new Kyrgyz leadership . DT JJ NN VBZ VBN IN DT JJ NN NN IN DT JJ JJ NN . Canada 's foreign minister was splattered with red paint by a protester Friday while speaking at a Montreal news conference about the situation in Haiti . NNP POS JJ NN VBD VBN IN JJ NN IN DT NN NNP IN VBG IN DT NNP NN NN IN DT NN IN NNP . Pierre Pettigrew left the conference briefly to change clothes as security guards led the protester out of the room . NNP NNP VBD DT NN RB TO VB NNS IN NN NNS VBD DT NN IN IN DT NN . The incident took place as Canadian and Haitian ministers , officials from donor countries , and the special U.N. representative for Haiti were meeting to discuss progress in the Caribbean nation as it prepares for elections later this year . DT NN VBD NN IN JJ CC JJ NNS , NNS IN NN NNS , CC DT JJ NNP NN IN NNP VBD VBG TO VB NN IN DT JJ NN IN PRP VBZ IN NNS RBR DT NN . Canada is urging the United Nations Stabilization Mission in Haiti to intervene more directly in the internal political process . NNP VBZ VBG DT NNP NNPS NNP NNP IN NNP TO VB JJR RB IN DT JJ JJ NN . Human Rights Watch has expressed concerns that Iraq 's war crimes tribunals will be flawed , unfair and lacking in credibility . NNP NNP NNP VBZ VBN NNS IN NNP POS NN NNS NNS MD VB VBN , JJ CC VBG IN NN . The New York-based organization said Friday that the tribunal has serious human rights shortcomings , and that the Iraqi government will need to change the process to make sure the trials are fair . DT NNP VBN NN VBD NNP IN DT NN VBZ JJ JJ NNS NNS , CC IN DT JJ NN MD VB TO VB DT NN TO VB JJ DT NNS VBP JJ . Among its recommendations are that Iraq enlist international legal experts , inform defendants of their rights and allow them to be questioned in the presence of their lawyers . IN PRP$ NNS VBP IN NNP NN JJ JJ NNS , VB NNS IN PRP$ NNS CC VB PRP TO VB VBN IN DT NN IN PRP$ NNS . Investigative hearings for some of Saddam Hussein 's top lieutenants are expected to begin next week . JJ NNS IN DT IN NNP NNP POS JJ NNS VBP VBN TO VB JJ NN . Charges against them include participating in crimes against Iraqi Kurds and Shi'ites . NNS IN PRP VBP VBG IN NNS IN JJ NNPS CC NNPS . On Thursday , Saddam met with his attorney for the first time since his capture more than a year ago . IN NNP , NNP VBD IN PRP$ NN IN DT JJ NN IN PRP$ NN RBR IN DT NN RB . U.S. President Barack Obama turned 48 Tuesday and is spending at least part of his birthday with Democratic senators . NNP NNP NNP NNP VBD CD NNP CC VBZ VBG IN JJS NN IN PRP$ NN IN JJ NNS . White House spokesman Robert Gibbs told reporters he is unsure of any specific birthday plans the president has made , but did say Mr. Obama and Vice President Joe Biden are meeting with Democratic senators for lunch to discuss health care and economic issues . NNP NNP NN NNP NNP VBD NNS PRP VBZ JJ IN DT JJ NN NNS DT NN VBZ VBN , CC VBD VB NNP NNP CC NNP NNP NNP NNP VBP VBG IN JJ NNS IN NN TO VB NN NN CC JJ NNS . Gibbs says the president spent time with friends over the weekend at the Camp David presidential retreat outside Washington . NNP VBZ DT NN VBD NN IN NNS IN DT NN IN DT NNP NNP JJ NN IN NNP . He says the president played basketball , had dinner and went bowling . PRP VBZ DT NN VBD NN , VBD NN CC VBD NN . Gibbs says he will have more information later Tuesday on how the president planned to observe his birthday . NNP VBZ PRP MD VB JJR NN RB NNP IN WRB DT NN VBD TO VB PRP$ NN . Venezuelan police have arrested two brothers in connection with the killing of a top government prosecutor . JJ NNS VBP VBN CD NNS IN NN IN DT NN IN DT JJ NN NN . Officials said Friday , Rolando and Otoniel Guevara were arrested west of the capital city of Caracas . NNS VBD NNP , NNP CC NNP NNP VBD VBN NN IN DT NN NN IN NNP . Their arrest comes the same week that police shot and killed two other suspects in the prosecutor 's murder . PRP$ NN VBZ DT JJ NN IN NNS VBD CC VBD CD JJ NNS IN DT NN POS NN . Prosecutor Danilo Anderson died when explosions ripped through his car as he drove through the Venezuelan capital . NNP NNP NNP VBD WRB NNS VBD IN PRP$ NN IN PRP VBD IN DT JJ NN . Officials have said the attack may have been politically-motivated . NNS VBP VBN DT NN MD VB VBN JJ . Mr. Anderson had been overseeing a case against hundreds of opposition politicians , businessmen and former military officers involved in a 2002 coup that briefly ousted President Hugo Chavez . NNP NNP VBD VBN VBG DT NN IN NNS IN NN NNS , NNS CC JJ JJ NNS VBN IN DT CD NN IN RB VBD NNP NNP NNP . Two former Caracas police chiefs who were being investigated by Mr. Anderson sought asylum Friday at El Salvador 's embassy in Caracas . CD JJ NNP NN NNS WP VBD VBG VBN IN NNP NNP VBD NN NNP IN NNP NNP POS NN IN NNP . Israeli Prime Minister Ariel Sharon says he is very satisfied with measures taken by Palestinian leader Mahmoud Abbas to halt militant violence . JJ NNP NNP NNP NNP VBZ PRP VBZ RB JJ IN NNS VBN IN JJ NN NNP NNP TO VB JJ NN . In an interview published Thursday in an Israeli newspaper Yediot Aharonot , Mr. Sharon said there is no doubt the Palestinian leader has begun to work toward reducing militant attacks against Israelis . IN DT NN VBN NNP IN DT JJ NN NNP NNP , NNP NNP VBD EX VBZ DT NN DT JJ NN VBZ VBN TO VB IN VBG JJ NNS IN NNS . Mr. Sharon added that he wants to move forward with peace efforts . NNP NNP VBD IN PRP VBZ TO VB RB IN NN NNS . Meanwhile , Israeli and Palestinian officials have begun preparations for the first summit between Mr. Sharon and Mr. Abbas . RB , JJ CC JJ NNS VBP VBN NNS IN DT JJ NN IN NNP NNP CC NNP NNP . Authorities say officials will meet next week to plan details of the summit , which Israel says could take place within two weeks . NNS VBP NNS MD VB JJ NN TO VB NNS IN DT NN , WDT NNP VBZ MD VB NN IN CD NNS . At least three Palestinians have been wounded in the Gaza Strip in what witnesses say was an Israeli attempt to kill a Palestinian militant . IN JJS CD NNS VBP VBN VBN IN DT NNP NNP IN WP NNS VBP VBD DT JJ NN TO VB DT JJ NN . Palestinian witnesses say a missile from an Israeli drone struck a car carrying a top member of the Popular Resistance Committees , an umbrella organization of militant factions . JJ NNS VBP DT NN IN DT JJ NN VBD DT NN VBG DT JJ NN IN DT NNP NNP NNP , DT NN NN IN JJ NNS . The apparent target of the attack , identified as Jamal Abu Samahdna , was reported among the wounded . DT JJ NN IN DT NN , VBN IN JJ NNP NNP , VBD VBN IN DT VBN . Israel has not commented . NNP VBZ RB VBN . Last week , Prime Minister Ariel Sharon said Israel would not launch attacks or raids in the Palestinian territories in the runup to January ninth Palestinian elections , as long as the Jewish state is not provoked . JJ NN , NNP NNP NNP NNP VBD NNP MD RB VB NNS CC NNS IN DT JJ NNS IN DT NN TO NNP JJ JJ NNS , RB RB IN DT JJ NN VBZ RB VBN . In other developments , about 3,000 members of Mr. Sharon 's minority Likud Party vote today on forming a new coalition government to advance plans for a proposed Israeli withdrawal from the Gaza Strip . IN JJ NNS , IN CD NNS IN NNP NNP POS NN NNP NNP NN NN IN VBG DT JJ NN NN TO VB NNS IN DT VBN JJ NN IN DT NNP NNP . Russia is sending doctors and medical supplies to Chile , as part of relief efforts to help Chileans recover from last month 's devastating earthquake and a series of strong aftershocks . NNP VBZ VBG NNS CC JJ NNS TO NNP , IN NN IN NN NNS TO VB NNS VB IN JJ NN POS JJ NN CC DT NN IN JJ NNS . A Russian official says two planes are being sent to Chile , carrying physicians , medicine and a mobile hospital . DT JJ NN VBZ CD NNS VBP VBG VBN TO NNP , VBG NNS , NN CC DT JJ NN . Parts of Chile shook Thursday after getting hit by a magnitude 6.9 aftershock . NNS IN NNP VBD NNP IN VBG VBN IN DT NN CD NN . The U.S. Geological Survey said the aftershock was centered in Chile 's Libertador O'Higgins region , about 145 kilometers southwest of the capital , Santiago . DT NNP NNP NNP VBD DT NN VBD VBN IN NNP POS NNP NNP NN , IN CD NNS JJS IN DT NN , NNP . The shaking was felt by foreign dignitaries who had gathered in the city of Valparaiso for the inauguration of new Chilean President Sebastian Pinera . DT VBG VBD VBN IN JJ NNS WP VBD VBN IN DT NN IN NNP IN DT NN IN JJ JJ NNP NNP NNP . It was one of the strongest aftershocks to strike Chile since an 8.8-magnitude earthquake in late February killed about 500 people . PRP VBD CD IN DT JJS NNS TO VB NNP IN DT JJ NN IN JJ NNP VBD IN CD NNS . U.S. Secretary of State Condoleezza Rice has warned China not to use legitimate security concerns as an excuse to crack down on dissidents . NNP NNP IN NNP NNP NNP VBZ VBN NNP RB TO VB JJ NN NNS IN DT NN TO VB RP IN NNS . At a joint news conference with New Zealand Prime Minister Helen Clark in Auckland Saturday , Rice said China should showcase not just the Olympics , but an attitude of openness and tolerance . IN DT JJ NN NN IN NNP NNP NNP NNP NNP NNP IN NNP NNP , NNP VBD NNP MD VB RB RB DT NNPS , CC DT NN IN NN CC NN . Neither Rice nor the prime minister expressed any concerns about the safety of U.S. or New Zealand athletes . CC NNP CC DT JJ NN VBD DT NNS IN DT NN IN NNP CC NNP NNP NNS . Global intelligence analysts Stratfor and Intelcenter said Friday that a Uighur separatist group , the Turkestan Islamic Party , has claimed credit for several attacks , including the May 5 Shanghai bus bombing that killed two people . JJ NN NNS NNP CC NNP VBD NNP IN DT NNP NN NN , DT NNP NNP NNP , VBZ VBN NN IN JJ NNS , VBG DT NNP CD NNP NN NN WDT VBD CD NNS . The Internet intelligence analysts said the Islamic group threatened further attacks on Chinese cities that will host Olympic games . DT NNP NN NNS VBD DT NNP NN VBD JJ NNS IN JJ NNS WDT MD VB NNP NNS . The Turkestan Islamic Party is an ethnic Uighur and Muslim group seeking to create an independent state out of China 's westernmost , heavily Muslim Xinjiang province . DT NNP NNP NNP VBZ DT JJ NNP CC NNP NN VBG TO VB DT JJ NN IN IN NNP POS NN , RB NNP NNP NN . The African Union says Sudan 's government is starting to withdraw troops from Darfur , heeding an A.U. demand to end fighting by Saturday . DT NNP NNP VBZ NNP POS NN VBZ VBG TO VB NNS IN NNP , VBG DT NNP NN TO VB NN IN NNP . An A.U. spokesman says he hopes the pullback will allow Sudan 's government and rebels to resume stalled peace talks in Nigeria . DT NNP NN VBZ PRP VBZ DT NN MD VB NNP POS NN CC NNS TO VB VBN NN NNS IN NNP . Rebels have refused to participate in the talks until the government stops attacks in Darfur . NNS VBP VBN TO VB IN DT NNS IN DT NN VBZ NNS IN NNP . Friday , the African Union gave both the Sudanese government and rebels a 24-hour ultimatum to respect a cease-fire . NNP , DT NNP NNP VBD DT DT JJ NN CC NNS DT JJ NN TO VB DT NN . It said after the deadline passes , it will report any violations to the U.N. Security Council . PRP VBD IN DT NN VBZ , PRP MD VB DT NNS TO DT NNP NNP NNP . The ultimatum followed a report by the commander of the A.U. 's observer force in Darfur which said Sudan 's government appears to be preparing a major military offensive in the region . DT NN VBD DT NN IN DT NN IN DT NNP POS NN NN IN NNP WDT VBD NNP POS NN VBZ TO VB VBG DT JJ JJ NN IN DT NN . The report also detailed violations by rebel forces . DT NN RB VBN NNS IN JJ NNS . Kenya 's President Mwai Kibaki says he will take decisive action within days in the multi-million-dollar corruption scandals rocking his government . NNP POS NNP NNP NNP VBZ PRP MD VB JJ NN IN NNS IN DT JJ NN NNS VBG PRP$ NN . His pledge Thursday came after Kenya 's former anti-corruption chief told British television that he came under high-level pressure in 2004 to abandon a fraud investigation . PRP$ NN NNP VBD IN NNP POS JJ NN NN VBD JJ NN IN PRP VBD IN JJ NN IN CD TO VB DT NN NN . The BBC played excerpts of a tape John Githongo says he recorded when Kenya 's then-Justice Minister Kiraitu Murungi pressed him to give up the probe . DT NNP VBD NNS IN DT NN NNP NNP VBZ PRP VBD WRB NNP POS NNP NNP NNP NNP VBD PRP TO VB RP DT NN . Githongo , who left Kenya last year , has linked Murungi and other top Kenyan officials to a massive corruption scandal , known as the ' Anglo-Leasing ' affair that diverted more than $ 200 million from the government . NNP , WP VBD NNP JJ NN , VBZ VBN NNP CC JJ JJ JJ NNS TO DT JJ NN NN , VBN IN DT `` JJ `` NN IN VBN JJR IN $ CD CD IN DT NN . Murungi and the other officials deny any wrongdoing . NNP CC DT JJ NNS VBP DT NN . However , Kenyan anti-corruption activists say they will post the names and pictures of the accused officials in public places to maintain pressure on Mr. Kibaki . RB , JJ JJ NNS VBP PRP MD VB DT NNS CC NNS IN DT VBN NNS IN JJ NNS TO VB NN IN NNP NNP . The U.S. military in Iraq says 17 more bodies have been discovered in the northern city of Mosul . DT NNP NN IN NNP VBZ CD JJR NNS VBP VBN VBN IN DT JJ NN IN NNP . U.S. and Iraqi officials say that in the past two weeks the bodies of more than 50 people , many of them shot execution-style , have been found in and near Mosul . NNP CC JJ NNS VBP IN IN DT JJ CD NNS DT NNS IN JJR IN CD NNS , NN IN PRP VBD JJ , VBP VBN VBN IN CC IN NNP . A U.S. military statement says 43 suspected insurgents have been taken into custody in the city since Saturday . DT NNP JJ NN VBZ CD JJ NNS VBP VBN VBN IN NN IN DT NN IN NNP . Elsewhere , police say a car bomb explosion in Samarra has killed at least three civilians and wounded several others . RB , NNS VBP DT NN NN NN IN NNP VBZ VBN IN JJS CD NNS CC VBN JJ NNS . In other developments , Iran has offered to train Iraqi border guards , as part of an effort to help Baghdad strengthen their 1,600-kilometer common border . IN JJ NNS , NNP VBZ VBN TO VB JJ NN NNS , IN NN IN DT NN TO VB NNP VB PRP$ JJ JJ NN . Deputy Interior Minister Ali Asghar Ahmadi also said Iran will host a meeting Tuesday of Arab interior ministers , aimed at finding ways to help Iraq quell the insurgency . NNP NNP NNP NNP NNP NNP RB VBD NNP MD VB DT NN NNP IN JJ NN NNS , VBN IN VBG NNS TO VB NNP VB DT NN . Former world number one men 's tennis player Lleyton Hewitt of Australia has beaten number two Andy Roddick of the United States to reach the finals of the Tennis Masters Cup tournament in Houston , Texas . JJ NN NN CD NNS POS NN NN NNP NNP IN NNP VBZ VBN NN CD NNP NNP IN DT NNP NNPS TO VB DT NNS IN DT NNP NNP NNP NN IN NNP , NNP . Hewitt took less than one hour to beat the second-seeded American in straight sets , 06-Mar , 06-Feb . NNP VBD JJR IN CD NN TO VB DT JJ NN IN JJ NNS , CD , CD . The loss cost Roddick not only a chance at the title but also the one million dollars that goes to an undefeated champion . DT NN VBD NNP RB RB DT NN IN DT NN CC RB DT CD CD NNS WDT VBZ TO DT JJ NN . Until Saturday , Roddick had not lost a match in round robin play . IN NNP , NNP VBD RB VBN DT NN IN NN NN NN . The Australian faces the winner of the day 's second semifinals between world number one Roger Federer and Russian Marat Safin . DT NN VBZ DT NN IN DT NN POS JJ NNS IN NN NN CD NNP NNP CC JJ NNP NNP . Federer is also undefeated so far in this tournament and has a chance to win the million-dollar payday . NNP VBZ RB VBN RB RB IN DT NN CC VBZ DT NN TO VB DT JJ NN . The champion is guaranteed $ 7,00,000 . DT NN VBZ VBN $ CD . Iraqi police say insurgents killed at least nine people in separate attacks , while security forces and people in hospitals and detention centers cast ballots Monday , three days ahead of the main voting in parliamentary elections . JJ NNS VBP NNS VBD IN JJS CD NNS IN JJ NNS , IN NN NNS CC NNS IN NNS CC NN NNS VBD NNS NNP , CD NNS RB IN DT JJ NN IN JJ NNS . Authorities are imposing tight security before the polls open for general balloting Thursday . NNS VBP VBG JJ NN IN DT NNS JJ IN JJ NN NNP . Iraq 's borders and airports will be closed . NNP POS NNS CC NNS MD VB VBN . Road travel will be restricted to vehicles with special permits , and curfews will be extended effective Tuesday . NN NN MD VB VBN TO NNS IN JJ NNS , CC NNS MD VB VBN JJ NNP . Election officials say Iraqi voters living outside the country will begin casting ballots Tuesday at polling stations in 15 countries , including the United States . NN NNS VBP JJ NNS VBG IN DT NN MD VB VBG NNS NNP IN VBG NNS IN CD NNS , VBG DT NNP NNPS . Meanwhile , the U.S. military says one American soldier was killed in a suicide car bomb blast in Ramadi Sunday . RB , DT NNP NN VBZ CD JJ NN VBD VBN IN DT NN NN NN NN IN NNP NNP . Another U.S. soldier was killed in a roadside bomb blast in Baghdad today . DT NNP NN VBD VBN IN DT NN NN NN IN NNP NN . Three members of Iraq 's largest Sunni Arab political party were kidnapped and killed Friday on a Mosul street in broad daylight . CD NNS IN NNP POS JJS JJ JJ JJ NN VBD VBN CC VBN NNP IN DT NNP NN IN JJ NN . A spokesman for the Iraqi Islamic Party said the men were hanging posters urging people to vote in October 's scheduled constitutional referendum when they were abducted . DT NN IN DT JJ NNP NNP VBD DT NNS VBD VBG NNS VBG NNS TO VB IN NNP POS JJ JJ NN WRB PRP VBD VBN . They were driven to a different part of the city , made to stand against a wall in front of a mosque and then sprayed with gunfire . PRP VBD VBN TO DT JJ NN IN DT NN , VBN TO VB IN DT NN IN NN IN DT NN CC RB VBD IN NN . Some insurgent groups have threatened to kill anyone who participates in the constitutional referendum . DT JJ NNS VBP VBN TO VB DT WP VBZ IN DT JJ NN . Meanwhile , in Baghdad , hundreds of supporters of radical Shi'ite cleric Moqtada al-Sadr demonstrated against calls for federalism in Iraq . RB , IN NNP , NNS IN NNS IN JJ NNP NN NNP NNP VBD IN NNS IN NN IN NNP . Shi'ites are divided over the issue . NNS VBP VBN IN DT NN . Iraq 's largest Shi'ite party , the Supreme Council for the Islamic Revolution in Iraq supports it , but several smaller groups do not . NNP POS JJS JJ NN , DT NNP NNP IN DT NNP NNP IN NNP VBZ PRP , CC JJ JJR NNS VBP RB . The Israeli army says it is investigating allegations that soldiers used Palestinian civilians as human shields during recent operations in the West Bank town of Nablus . DT JJ NN VBZ PRP VBZ VBG NNS IN NNS VBD JJ NNS IN JJ NNS IN JJ NNS IN DT NNP NNP NN IN NNP . The army issued a statement Friday , saying it has ordered ' an official ' investigation into the alleged misuse of civilians by soldiers . DT NN VBD DT NN NNP , VBG PRP VBZ VBN `` DT NN `` NN IN DT JJ NN IN NNS IN NNS . The Israeli human rights group B'Tselem says Israeli soldiers , in at least two incidents , forced civilians to lead them in house-to-house searches for wanted militants . DT JJ JJ NNS NN NNP VBZ JJ NNS , IN IN JJS CD NNS , VBD NNS TO VB PRP IN NN NNS IN JJ NNS . Israeli law bans the military from using human shields . JJ NN VBZ DT NN IN VBG JJ NNS . The Israeli army carried out a five-day raid into Nablus that ended two weeks ago . DT JJ NN VBD RP DT JJ NN IN NNP WDT VBD CD NNS RB . During the incursion , soldiers shot dead one Palestinian and detained more than 10 suspected militants . IN DT NN , NNS VBD JJ CD NN CC VBD JJR IN CD JJ NNS . The Afghan intelligence agency says officials have arrested 17 would-be suicide bombers who allegedly trained in Pakistan . DT JJ NN NN VBZ NNS VBP VBN CD JJ NN NNS WP RB VBN IN NNP . A spokesman for the intelligence agency says security agents detained the suspects before they had a chance to strike targets in Afghanistan . DT NN IN DT NN NN VBZ NN NNS VBD DT NNS IN PRP VBD DT NN TO VB NNS IN NNP . He says the detainees told authorities they had attended militant training camps in neighboring Pakistan . PRP VBZ DT NNS VBD NNS PRP VBD VBN JJ NN NNS IN VBG NNP . The Afghan spokesman says militants in Pakistan encourage fighters to carry out suicide attacks by telling them Islam is in danger in Afghanistan . DT JJ NN VBZ NNS IN NNP VBP NNS TO VB RP NN NNS IN VBG PRP NNP VBZ IN NN IN NNP . Pakistani and Afghan authorities have accused each other of not doing enough to combat the Taleban-led insurgency in Afghanistan . JJ CC JJ NNS VBP VBN DT NN IN RB VBG RB TO VB DT JJ NN IN NNP . President Bush will highlight economic progress in Iraq during a speech he is set to give shortly Wednesday in Washington . NNP NNP MD VB JJ NN IN NNP IN DT NN PRP VBZ VBN TO VB RB NNP IN NNP . In his address before the Council on Foreign Relations , Mr. Bush is expected to discuss U.S. efforts in rebuilding Iraq 's schools , hospitals and infrastructure , as well as creating new businesses . IN PRP$ NN IN DT NNP IN NNP NNP , NNP NNP VBZ VBN TO VB NNP NNS IN VBG NNP POS NNS , NNS CC NN , RB RB IN VBG JJ NNS . Wednesday 's speech is the second in a series of addresses defending the administration 's Iraq war policy . NNP POS NN VBZ DT NN IN DT NN IN NNS VBG DT NN POS NNP NN NN . Mr. Bush 's approval ratings have dropped to the lowest of his presidency , thanks in part to the continued insurgency in Iraq that has claimed the lives of more than 2,000 U.S. service members . NNP NNP POS NN NNS VBP VBN TO DT JJS IN PRP$ NN , NNS IN NN TO DT JJ NN IN NNP WDT VBZ VBN DT NNS IN JJR IN CD NNP NN NNS . Several Democratic lawmakers sent a letter to the president Tuesday , urging him to put public relations aside in today 's speech and present what they termed a ' real ' strategy for success , naming specific benchmarks by which progress can be measured . JJ JJ NNS VBD DT NN TO DT NN NNP , VBG PRP TO VB JJ NNS RB IN NN POS NN CC VB WP PRP VBD DT `` JJ `` NN IN NN , VBG JJ NNS IN WDT NN MD VB VBN . The deputy leader of the Yemeni branch of al-Qaida has called for new attacks on U.S. interests . DT JJ NN IN DT JJ NN IN NNP VBZ VBN IN JJ NNS IN NNP NNS . Said al-Shihri made the threat in an audio message posted Monday on a website used by Islamic extremists . NNP NNP VBD DT NN IN DT NN NN VBN NNP IN DT NN VBN IN JJ NNS . He said attacks should be launched against American interests everywhere . PRP VBD NNS MD VB VBN IN JJ NNS RB . Al-Shihri accused Saudi Arabia and Egypt of , in his words , ' preserving the interests of Jews and Christians ' by providing them with oil and giving them access to waters surrounding the Arabian peninsula . NNP VBD NNP NNP CC NNP IN , IN PRP$ NNS , `` VBG DT NNS IN NNPS CC NNPS `` IN VBG PRP IN NN CC VBG PRP NN TO NNS VBG DT JJ NN . He also praised Nigerian Umar Farouk Abdulmutallab for his failed attempt to blow up a passenger jet over the U.S. city of Detroit on Christmas Day . PRP RB VBD JJ NNP NNP NNP IN PRP$ JJ NN TO VB RP DT NN NN IN DT NNP NN IN NNP IN NNP NNP . Abdulmutallab , who is in U.S. custody , has said he was trained by al-Qaida operatives in Yemen . NNP , WP VBZ IN NNP NN , VBZ VBN PRP VBD VBN IN NNP NNS IN NNP . Al-Shihri is a former inmate at the U.S. prison at Guantanamo Bay , Cuba . NNP VBZ DT JJ NN IN DT NNP NN IN NNP NNP , NNP . U.S. President Barack Obama is using his weekly address Saturday to lead America in honoring the country 's fallen military personnel for the Memorial Day holiday . NNP NNP NNP NNP VBZ VBG PRP$ JJ NN NNP TO VB NNP IN VBG DT NN POS JJ JJ NNS IN DT NNP NNP NN . Mr. Obama called on Americans to pay tribute to fallen veterans with more than words . NNP NNP VBD IN NNS TO VB NN TO JJ NNS IN JJR IN NNS . The comments come ahead of Memorial Day , a national holiday that takes place on the last Monday of May each year . DT NNS VBP RB IN NNP NNP , DT JJ NN WDT VBZ NN IN DT JJ NNP IN NNP DT NN . Mr. Obama says Americans should make sure that members of armed forces have all the support they need , and that military veterans receive appropriate care and assistance . NNP NNP VBZ NNS MD VB JJ IN NNS IN JJ NNS VBP PDT DT NN PRP VBP , CC IN JJ NNS VBP JJ NN CC NN . The president summed up his address by saying Americans should serve everyone who has ever worn an American military uniform as well as they have served Americans . DT NN VBD RP PRP$ NN IN VBG NNS MD VB DT WP VBZ RB VBN DT JJ JJ NN RB RB IN PRP VBP VBN NNS . Memorial Day also is the unofficial start of the summer season in the U.S. NNP NNP RB VBZ DT JJ NN IN DT NN NN IN DT NNP Many Americans spend the day enjoying barbecues and other outdoor activities . JJ NNS VBP DT NN VBG NNS CC JJ JJ NNS . Authorities in the northern Indian state of Uttar Pradesh say at least 11 people were killed Sunday afternoon when a bus packed with passengers veered off a road and plunged into a canal . NNS IN DT JJ JJ NN IN NNP NNP VBP IN JJS CD NNS VBD VBN NNP NN WRB DT NN VBN IN NNS VBN IN DT NN CC VBD IN DT NN . The authorities say the accident happened in the Bulandshahr district after the driver lost control of the vehicle . DT NNS VBP DT NN VBD IN DT NNP NN IN DT NN VBD NN IN DT NN . They say 11 bodies have been recovered by rescue workers , but cautioned the death toll could rise . PRP VBP CD NNS VBP VBN VBN IN NN NNS , CC VBD DT NN NN MD VB . The rescue operation continued into the night . DT NN NN VBD IN DT NN . India is plagued by traffic accidents due to poorly maintained vehicles and roads , and hazardous driving . NNP VBZ VBN IN NN NNS JJ TO RB VBN NNS CC NNS , CC JJ NN . Egyptian officials say the ruling National Democratic Party has won about 70 percent of seats at stake in the first round of parliamentary voting . JJ NNS VBP DT NN NNP NNP NNP VBZ VBN IN CD NN IN NNS IN NN IN DT JJ NN IN JJ NN . Justice Minister Mahmoud Abu el-Leil says the ruling party claimed 112 seats , and the banned Muslim Brotherhood won 34 seats , more than doubling its presence . NNP NNP NNP NNP NNP VBZ DT VBG NN VBD CD NNS , CC DT VBN NNP NNP VBD CD NNS , JJR IN VBG PRP$ NN . He said independent groups won 13 seats , and opposition candidates took five others . PRP VBD JJ NNS VBD CD NNS , CC NN NNS VBD CD NNS . Election monitors have said the vote earlier this month was marred by violence , vote buying and voter registration fraud . NN NNS VBP VBN DT NN RBR DT NN VBD VBN IN NN , NN NN CC NN NN NN . Egypt is to hold a second round of voting Sunday , and the third and final stage on December first . NNP VBZ TO VB DT JJ NN IN NN NNP , CC DT JJ CC JJ NN IN NNP NN . The ruling party is expected to retain control over the 454-member parliament , where it holds 90 percent of the seats . DT NN NN VBZ VBN TO VB NN IN DT JJ NN , WRB PRP VBZ CD NN IN DT NNS . Tibet 's exiled spiritual leader is set to begin five days of talks with the public in the British city of Nottingham . NNP POS JJ JJ NN VBZ VBN TO VB CD NNS IN NNS IN DT NN IN DT JJ NN IN NNP . The Dalai Lama says the focus of the conference is to explain Buddhist spiritual values and help teach people how to lead a happy life . DT NNP NNP VBZ DT NN IN DT NN VBZ TO VB NNP JJ NNS CC VB VB NNS WRB TO VB DT JJ NN . He says the talks are designed to help everyone , including members of other faiths and atheists . PRP VBZ DT NNS VBP VBN TO VB DT , VBG NNS IN JJ NNS CC NNS . He also plans to talk about environmental matters . PRP RB VBZ TO VB IN JJ NNS . The Dalai Lama arrived in Nottingham Friday after meeting with British Prime Minister Gordon Brown at London 's Lambeth Palace . DT NNP NNP VBD IN NNP NNP IN VBG IN NNP NNP NNP NNP NNP IN NNP POS NNP NNP . Mr. Brown pledged to work for reconciliation between China and the people of Tibet . NNP NNP VBD TO VB IN NN IN NNP CC DT NNS IN NNP . China Saturday criticized the meeting , saying Britain is interfering in China 's internal affairs . NNP NNP VBD DT NN , VBG NNP VBZ VBG IN NNP POS JJ NNS . The Tibetan leader Thursday told British lawmakers their country is not doing enough to support Tibetans he says face ' cultural genocide ' at the hands of the Chinese . DT JJ NN NNP VBD JJ NNS PRP$ NN VBZ RB VBG RB TO VB NNS PRP VBZ NN `` JJ NN `` IN DT NNS IN DT NNS . South Korean state auditors questioned disgraced cloning scientist Hwang Woo-suk Friday about his possible misappropriation of state funds . JJ JJ NN NNS VBD JJ NN NN NNP NNP NNP IN PRP$ JJ NN IN NN NNS . Hwang and his research team had received more than $ 45 million in state funding and private donations for research over the past decade . NNP CC PRP$ NN NN VBD VBN JJR IN $ CD CD IN NN NN CC JJ NNS IN NN IN DT JJ NN . The interrogation comes two days after prosecutors said Hwang had made FALSE claims about creating patient-specific stem cells . DT NN VBZ CD NNS IN NNS VBD NNP VBD VBN JJ NNS IN VBG JJ NN NNS . Hwang has already been questioned by a Seoul National University panel , which earlier this month said the veterinarian had fabricated results published in landmark 2004 and 2005 papers in the international journal Science . NNP VBZ RB VBN VBN IN DT NNP NNP NNP NN , WDT RBR DT NN VBD DT NN VBD VBN NNS VBN IN NN CD CC CD NNS IN DT JJ NN NN . Hwang has admitted to fraud in his papers , but says he was the victim of a conspiracy to discredit him . NNP VBZ VBN TO NN IN PRP$ NNS , CC VBZ PRP VBD DT NN IN DT NN TO VB PRP . He accuses junior scientists of deceiving him about research data . PRP VBZ JJ NNS IN VBG PRP IN NN NNS . The Olympic torch relay has resumed after a three-day suspension to mark the official mourning period for victims of last week 's devastating earthquake in Sichuan province . DT NNP NN NN VBZ VBN IN DT JJ NN TO VB DT JJ NN NN IN NNS IN JJ NN POS JJ NN IN NNP NN . The torch relay resumed Thursday in China 's eastern port city , Ningbo , with a minute of silence in honor of the more than 80,000 who are dead or missing . DT NN NN VBD NNP IN NNP POS JJ NN NN , NNP , IN DT NN IN NN IN NN IN DT JJR IN CD WP VBP JJ CC JJ . After Ningbo , the torch will travel to Shanghai . IN NNP , DT NN MD VB TO NNP . Organizers of the Beijing Olympics say they plan to scale back the celebratory tone of the relay . NNS IN DT NNP NNS VBP PRP VBP TO VB RP DT JJ NN IN DT NN . The epicenter of the May 12 7.9 magnitude earthquake was in Sichuan , and most of the confirmed deaths from the quake are there . DT NN IN DT NNP CD CD NN NN VBD IN NNP , CC JJS IN DT VBN NNS IN DT NN VBP RB . Organizers say the torch will still travel through Sichuan province , but later than planned to avoid hampering rescue efforts . NNS VBP DT NN MD RB VB IN NNP NN , CC RB IN VBN TO VB VBG NN NNS . The Sichuan leg of the relay was originally planned for mid-June , but has now been put off until early August - August 3 to August 5 . DT JJ NN IN DT NN VBD RB VBN IN NNP , CC VBZ RB VBN VBN RP IN JJ NNP IN NNP CD TO NNP CD . Some 200 Palestinian women have marched to demand the release of Hamas supporters from jails in the West Bank . DT CD JJ NNS VBP VBN TO VB DT NN IN NNP NNS IN NNS IN DT NNP NNP . Protesters wearing veils and chanting ' God is great ' gathered Saturday in the West Bank city of Ramallah . NNS VBG NNS CC VBG `` NNP VBZ JJ `` VBD NNP IN DT NNP NNP NN IN NNP . They included wives , mothers and daughters of imprisoned Hamas supporters . PRP VBD NNS , NNS CC NNS IN JJ NNP NNS . Scuffles broke out when police tried to block the women from gathering in Ramallah 's main square . NNS VBD RP WRB NNS VBD TO VB DT NNS IN NN IN NNP POS JJ NN . At least one of the protesters was detained . IN JJS CD IN DT NNS VBD VBN . Security forces loyal to Palestinian President Mahmoud Abbas have arrested scores of Hamas supporters in the West Bank since Hamas took control of the Gaza Strip by force in June . NN NNS JJ TO JJ NNP NNP NNP VBP VBN NNS IN NNP NNS IN DT NNP NNP IN NNP VBD NN IN DT NNP NNP IN NN IN NNP . Mr. Abbas heads the Fatah faction , which is a fierce rival of Hamas . NNP NNP VBZ DT NNP NN , WDT VBZ DT JJ NN IN NNP . President Bush says Afghanistan and Iraq are making progress in the war on terrorism . NNP NNP VBZ NNP CC NNP VBP VBG NN IN DT NN IN NN . In his weekly radio address Saturday , Mr. Bush talked about his meeting with Afghanistan 's President Hamid Karzai at Camp David earlier this week . IN PRP$ JJ NN NN NNP , NNP NNP VBD IN PRP$ NN IN NNP POS NNP NNP NNP IN NNP NNP RBR DT NN . He said President Karzai told him officials from Afghanistan and Pakistan have been meeting to discuss how to deal with extremists who are targeting both their countries . PRP VBD NNP NNP VBD PRP NNS IN NNP CC NNP VBP VBN VBG TO VB WRB TO VB IN NNS WP VBP VBG DT PRP$ NNS . Regarding Iraq , Mr. Bush said his ' troop surge , ' a buildup of U.S. forces in Iraq since the beginning of this year , is helping coalition troops seize the initiative from the enemy and give it to the Iraqi people , although he admitted political progress has been slower than hoped . VBG NNP , NNP NNP VBD PRP$ `` NN NN , `` DT NN IN NNP NNS IN NNP IN DT NN IN DT NN , VBZ VBG NN NNS VBP DT NN IN DT NN CC VB PRP TO DT JJ NNS , IN PRP VBD JJ NN VBZ VBN JJR IN VBN . He said since January , each month coalition forces have killed or captured an average of more than 1,500 al-Qaida terrorists and enemies of the Iraqi government . PRP VBD IN NNP , DT NN NN NNS VBP VBN CC VBN DT NN IN JJR IN CD NNP NNS CC NNS IN DT JJ NN . Lebanese prosecutors have issued charges against four pro-Syrian generals in connection with the February assassination of former Lebanese Prime Minister Rafik Hariri . JJ NNS VBP VBN NNS IN CD JJ NNS IN NN IN DT NNP NN IN JJ JJ NNP NNP NNP NNP . Officials say the charges were brought on the recommendation of the head of the U.N. team investigating the killing . NNS VBP DT NNS VBD VBN IN DT NN IN DT NN IN DT NNP NN VBG DT NN . Detlev Mehlis says he believes the four - a top aide to pro-Syrian President Emile Lahoud and three former generals - were involved in planning the assassination . NNP NNP VBZ PRP VBZ DT CD IN DT JJ NN TO JJ NNP NNP NNP CC CD JJ NNS : VBD VBN IN VBG DT NN . The U.N. investigator said he believes more people were involved in the killing . DT NNP NN VBD PRP VBZ JJR NNS VBD VBN IN DT NN . Mr. Mehlis said he has not yet uncovered any Syrian links to the February 14 bombing that killed Mr. Hariri and 20 others in Beirut . NNP NNP VBD PRP VBZ RB RB VBN DT JJ NNS TO DT NNP CD NN WDT VBD NNP NNP CC CD NNS IN NNP . He also emphasized that Lebanon 's President Lahoud is not a suspect . PRP RB VBD IN NNP POS NNP NNP VBZ RB DT NN . Afghan officials say Taliban gunmen have shot and killed a tribal elder and his son , who was a former bodyguard for President Hamid Karzai . JJ NNS VBP NNP NNS VBP VBN CC VBN DT JJ NN CC PRP$ NN , WP VBD DT JJ NN IN NNP NNP NNP . The two victims were shot to death as they left Saturday 's morning prayers at a mosque in the southern province of Kandahar Mr. Karzai condemned the attack as an affront to Islam . DT CD NNS VBD VBN TO NN IN PRP VBD NNP POS NN NNS IN DT NN IN DT JJ NN IN NNP NNP NNP VBD DT NN IN DT NN TO NNP . In a separate development , three people were killed in a roadside bomb blast in the eastern province of Paktika . IN DT JJ NN , CD NNS VBD VBN IN DT NN NN NN IN DT JJ NN IN NNP . Also , NATO officials say a suicide car bomber struck an international military convoy in western Afghanistan , wounding at least four foreign troops . RB , NNP NNS VBP DT NN NN NN VBD DT JJ JJ NN IN JJ NNP , VBG IN JJS CD JJ NNS . Elsewhere , officials say NATO forces killed 19 suspected militants in an overnight operation in central Wardak province . RB , NNS VBP NNP NNS VBD CD JJ NNS IN DT JJ NN IN JJ NNP NN . NATO officials also say they have launched an investigation into a recent NATO air strike against Taliban militants , in which Afghan officials say at least 17 civilians were killed . NNP NNS RB VBP PRP VBP VBN DT NN IN DT JJ NNP NN NN IN NNP NNS , IN WDT JJ NNS VBP IN JJS CD NNS VBD VBN . American skier Daron Rahlves has won his third World Cup men 's downhill race of the season by beating Austrian Michael Walchhofer in Wengen , Switzerland . JJ NN NNP NNP VBZ VBN PRP$ JJ NNP NNP NNS POS NN NN IN DT NN IN VBG JJ NNP NNP IN NNP , NNP . Rahlves finished the 4,480 meter Lauberhorn course in two minutes , 30.54 seconds . NNP VBD DT CD NN NNP NN IN CD NNS , CD NNS . Walchhofer was second , 0.4 seconds behind . NNP VBD JJ , CD NNS IN . Austrian teammate and 2002 Olympic champion Fritz Strobl finished third , 1.06 seconds behind the American . JJ NN CC CD NNP NN NNP NNP VBD JJ , CD NNS IN DT NNP . Reigning World Cup overall champion Bode Miller of the United States finished 11th , nearly 2.5 seconds behind Rahlves . VBG NNP NNP JJ NN NNP NNP IN DT NNP NNPS VBD CD , RB CD NNS IN NNP . Miller was supposed to start the race in the 27th slot but was dropped to 31st after he did not show up for a mandatory bib presentation ceremony Friday night . NNP VBD VBN TO VB DT NN IN DT JJ NN CC VBD VBN TO CD IN PRP VBD RB VB RP IN DT JJ NN NN NN NNP NN . Benjamin Raich of Austria retained the overall World Cup lead with 706 points . NNP NNP IN NNP VBD DT JJ NNP NNP NN IN CD NNS . Walchhofer is second 106 points back with Rahlves third ( 589 points ) . NNP VBZ JJ CD NNS RB IN NNP JJ LRB CD NNS RRB . Venezuelan President Hugo Chavez says a dispute with Colombia regarding the capture of a Colombian leftist rebel leader on Venezuelan soil is - quote - ' practically over . ' JJ NNP NNP NNP VBZ DT NN IN NNP VBG DT NN IN DT JJ JJ NN NN IN JJ NN VBZ IN NN : `` RB IN . `` President Chavez also said Tuesday he expects a meeting with Colombian President Alvaro Uribe Thursday in Caracas to be - in his words - ' very fruitful . ' NNP NNP RB VBD NNP PRP VBZ DT NN IN JJ NNP NNP NNP NNP IN NNP TO VB : IN PRP$ NNS : `` RB JJ . `` Venezuela 's ambassador to Colombia returned to Bogota Monday after being recalled during the dispute . NNP POS NN TO NNP VBD TO NNP NNP IN VBG VBN IN DT NN . Mr. Chavez also says he will accept the new Colombian ambassador 's credentials after months of delays . NNP NNP RB VBZ PRP MD VB DT JJ JJ NN POS NNS IN NNS IN NNS . Last week , Colombia announced the end of the dispute over the seizure of Rodrigo Granda , a member of the Revolutionary Armed Forces of Colombia , or FARC . JJ NN , NNP VBD DT NN IN DT NN IN DT NN IN NNP NNP , DT NN IN DT NNP NNP NNS IN NNP , CC NNP . Colombia said it paid bounty hunters to capture Mr. Granda in Caracas in December . NNP VBD PRP VBD NN NNS TO VB NNP NNP IN NNP IN NNP . Venezuela accused Colombia of violating its sovereignty in what it says was a kidnapping . NNP VBD NNP IN VBG PRP$ NN IN WP PRP VBZ VBD DT NN . The Chinese city of Tianjin has ordered 40 factories to close for nearly two months in an effort to cut air pollution for the Beijing Olympics . DT JJ NN IN NNP VBZ VBN CD NNS TO VB IN RB CD NNS IN DT NN TO VB NN NN IN DT NNP NNPS . Tianjin , a port city about 150 kilometers southeast of Beijing , will host some of the Olympic soccer matches . NNP , DT JJ NN IN CD NNS NN IN NNP , MD VB DT IN DT NNP NN NNS . The city ordered the factories to close from July 25 through September 20 . DT NN VBD DT NNS TO VB IN NNP CD IN NNP CD . The city has also banned work on major construction sites during the same period . DT NN VBZ RB VBN NN IN JJ NN NNS IN DT JJ NN . Beijing has taken similar efforts to improve air quality , including an ' even-odd ' system based on license plates which aims to take half the city 's cars off the roads ahead of the Games . NNP VBZ VBN JJ NNS TO VB NN NN , VBG DT `` JJ `` NN VBN IN NN NNS WDT VBZ TO VB PDT DT NN POS NNS IN DT NNS RB IN DT NNPS . A deputy governor has been shot and wounded in the latest violence to hit strife-torn southern Thailand . DT NN NN VBZ VBN VBN CC VBN IN DT JJS NN TO VB JJ JJ NNP . Authorities say the deputy governor of Pattani province , Soonthorn Rittipakdee , was visiting the scene of a previous shooting Tuesday when he was wounded . NNS VBP DT NN NN IN NNP NN , NNP NNP , VBD VBG DT NN IN DT JJ NN NNP WRB PRP VBD VBN . Mr. Soonthorn was taken to a provincial hospital after the shooting . NNP NNP VBD VBN TO DT JJ NN IN DT NN . Police say he should survive the attack . NNS VBP PRP MD VB DT NN . Thai Prime Minister Thaksin Shinawatra said he believed the shooting was an accident , but did not elaborate . JJ NNP NNP NNP NNP VBD PRP VBD DT NN VBD DT NN , CC VBD RB VB . Mr. Soonthorn is believed to be one of the highest-ranking casualties of sectarian violence that has claimed the lives of hundreds of people in southern Thailand since January . NNP NNP VBZ VBN TO VB CD IN DT JJ NNS IN JJ NN WDT VBZ VBN DT NNS IN NNS IN NNS IN JJ NNP IN NNP . The southern Thai provinces of Yala , Pattani and Narathiwat are the only Muslim-majority areas in the mostly Buddhist nation . DT JJ JJ NNS IN NNP , NNP CC NNP VBP DT RB JJ NNS IN DT RB JJ NN . British voters are casting ballots Thursday in local and regional elections widely seen as a referendum on Prime Minister Tony Blair 's decade in office . JJ NNS VBP VBG NNS NNP IN JJ CC JJ NNS RB VBN IN DT NN IN NNP NNP NNP NNP POS NN IN NN . Voters are choosing local councils in England and Scotland . NNS VBP VBG JJ NNS IN NNP CC NNP . Voters in Scotland and Wales are also choosing members of their national legislatures . NNS IN NNP CC NNP VBP RB VBG NNS IN PRP$ JJ NNS . In Scotland , the pro-independence Scottish National Party has promised to hold a referendum on independence from Britain if it gains power . IN NNP , DT NN NNP NNP NNP VBZ VBN TO VB DT NN IN NN IN NNP IN PRP VBZ NN . Many analysts predict Britain 's Labor Party will suffer significant losses Thursday , because of widespread opposition to Mr. Blair 's support for the U.S.-led invasion of Iraq , and discontent over several domestic scandals implicating the ruling party . JJ NNS VBP NNP POS NNP NNP MD VB JJ NNS NNP , IN IN JJ NN TO NNP NNP POS NN IN DT JJ NN IN NNP , CC NN IN JJ JJ NNS VBG DT NN NN . Mr. Blair is Labor 's longest-serving prime minister . NNP NNP VBZ NNP POS JJ JJ NN . He has said he will make a definitive statement next week on when he plans to leave office . PRP VBZ VBN PRP MD VB DT JJ NN JJ NN IN WRB PRP VBZ TO VB NN . Violence on both sides of the Arab-Israeli conflict killed at least three people Friday . NN IN DT NNS IN DT JJ NN VBN IN JJS CD NNS NNP . Israeli military officials say Palestinian gunmen ambushed a car outside the West Bank city of Nablus , killing one Israeli and wounding three others . JJ JJ NNS VBP JJ NNS VBD DT NN IN DT NNP NNP NN IN NNP , VBG CD NN CC VBG CD NNS . The militant group , Al Aqsa Martyrs Brigades , has claimed responsibility for the attack . DT JJ NN , NNP NNP NNP NNP , VBZ VBN NN IN DT NN . In Gaza , Israeli tank fire killed a young Palestinian man in unclear circumstances . IN NNP , JJ NN NN VBD DT JJ JJ NN IN JJ NNS . Earlier , another Palestinian was shot and killed by Israeli soldiers while trying to enter the Jewish settlement of Ganei Tal in the southern Gaza Strip . RB , DT NN VBD VBN CC VBN IN JJ NNS IN VBG TO VB DT JJ NN IN NNP NNP IN DT JJ NNP NNP . It was not clear if the man was armed . PRP VBD RB JJ IN DT NN VBD VBN . On Thursday , Israeli troops killed a Palestinian gunman as he attempted to infiltrate the same settlement , in a botched attack that was claimed by the militant group , Hamas . IN NNP , JJ NNS VBD DT JJ NN IN PRP VBD TO VB DT JJ NN , IN DT JJ NN WDT VBD VBN IN DT JJ NN , NNP . The U.S. television network Fox has identified two of its employees who were kidnapped by Palestinian gunmen in the Gaza Strip Monday . DT NNP NN NN NNP VBZ VBN CD IN PRP$ NNS WP VBD VBN IN JJ NNS IN DT NNP NNP NNP . A Fox spokesman named American correspondent Steve Centanni and cameraman Olaf Wiig from New Zealand . DT NNP NN VBD JJ NN NNP NNP CC NN NNP NNP IN NNP NNP . Witnesses say the two were taken away by gunman after their car was intercepted in Gaza City . NNS VBP DT CD VBD VBN RB IN NN IN PRP$ NN VBD VBN IN NNP NNP . Meanwhile , witnesses say an Israeli airstrike in Gaza has destroyed an empty house . RB , NNS VBP DT JJ NN IN NNP VBZ VBN DT JJ NN . The Israeli military said it was targeting a command center of the Islamic Jihad militant group , and had warned residents of the house before the airstrike took place . DT JJ NN VBD PRP VBD VBG DT NN NN IN DT NNP NNP JJ NN , CC VBD VBN NNS IN DT NN IN DT NN VBD NN . Earlier , Palestinian hospital officials said an Israeli military strike in northern Gaza killed three Palestinians , including a teenage boy . RB , JJ NN NNS VBD DT JJ JJ NN IN JJ NNP VBD CD NNS , VBG DT NN NN . Israel 's military says it targeted Palestinian militants in the area after they fired two rockets at the Israeli city of Ashkelon . NNP POS JJ VBZ PRP JJ JJ NNS IN DT NN IN PRP VBD CD NNS IN DT JJ NN IN NNP . Islamic Jihad claimed responsibility for the rocket attack , which did not cause any casualties . NNP NNP VBD NN IN DT NN NN , WDT VBD RB VB DT NNS . Iran has denied allegations that it has a secret nuclear weapons facility . NNP VBZ VBN NNS IN PRP VBZ DT JJ JJ NNS NN . Iranian officials say the claim by the opposition National Council of Resistance of Iran is a lie . JJ NNS VBP DT NN IN DT NN NNP NNP IN NNP IN NNP VBZ DT NN . They say the group is trying to negate the progress Iran recently made with European negotiators by agreeing to suspend uranium enrichment . PRP VBP DT NN VBZ VBG TO VB DT NN NNP RB VBD IN JJ NNS IN VBG TO VB NN NN . Tehran says the facility in question is only used to generate electricity . NNP VBZ DT NN IN NN VBZ RB VBN TO VB NN . Meanwhile , the Washington Post is reporting that U.S. Secretary of State Colin Powell 's claim that Iran could be developing nuclear-capable missiles was based on intelligence that was classified and based on what it called an ' unvetted , single source . ' RB , DT NNP NNP VBZ VBG IN NNP NNP IN NNP NNP NNP POS NN IN NNP MD VB VBG JJ NNS VBD VBN IN NN WDT VBD VBN CC VBN IN WP PRP VBD DT `` JJ , JJ NN . `` Mr. Powell said Wednesday that intelligence indicates Iran is trying to modify its missiles to carry nuclear warheads , but did not elaborate . NNP NNP VBD NNP IN NN VBZ NNP VBZ VBG TO VB PRP$ NNS TO VB JJ NNS , CC VBD RB VB . Brazil 's Foreign Ministry says deposed Ecuadorean President Lucio Gutierrez is expected to leave Ecuador Sunday for exile in Brazil . NNP POS NNP NNP VBZ VBN NNP NNP NNP NNP VBZ VBN TO VB NNP NNP IN NN IN NNP . Officials said Saturday a Brazilian air force passenger jet is expected to head for Quito within hours . NNS VBD NNP DT JJ NN NN NN NN VBZ VBN TO VB IN NNP IN NNS . Mr. Gutierrez has been at the Brazilian ambassador 's residence since his ouster on Wednesday . NNP NNP VBZ VBN IN DT JJ NN POS NN IN PRP$ NN IN NNP . Earlier , Brazil said it was waiting for the right security conditions to fly Mr. Gutierrez out of Ecuador . RB , NNP VBD PRP VBD VBG IN DT JJ NN NNS TO VB NNP NNP IN IN NNP . Angry protesters have camped outside the residence to demand he face justice . NNP NNS VBP VBN IN DT NN TO VB PRP VB NN . A prosecutor has called for the deposed president 's arrest for the deaths of two people killed during recent violent protests . DT NN VBZ VBN IN DT VBN NN POS NN IN DT NNS IN CD NNS VBN IN JJ JJ NNS . Ecuador 's political crisis began in December , when lawmakers dismissed 27 of the 31 Supreme Court justices after Mr. Gutierrez accused them of bias against him . NNP POS JJ NN VBD IN NNP , WRB NNS VBD CD IN DT CD NNP NNP NNS IN NNP NNP VBD PRP IN NN IN PRP . China 's state media report the environmental impact of the Three Gorges Dam project may force four million more people to relocate from the area . NNP POS NN NNS VBP DT JJ NN IN DT CD NNP NNP NN MD VB CD CD JJR NNS TO VB IN DT NN . Friday 's reports say residents near the dam will be encouraged to move to the outskirts of the nearby city of Chongqing in southwestern China . NNP POS NNS VBP NNS IN DT NN MD VB VBN TO VB TO DT NNS IN DT JJ NN IN VBG IN JJ NNP . Nearly 1.5 million people have already been displaced to make way for the world 's biggest hydroelectric project . RB CD CD NNS VBP RB VBN VBN TO VB NN IN DT NN POS JJS JJ NN . The reports quote Chongqing 's Vice Mayor Yu Yuanmu as saying the reservoir area near the dam has a vulnerable environment that is threatened by overpopulation . DT NNS VBP NNP POS NNP NNP NNP NNP IN VBG DT NN NN IN DT NN VBZ DT JJ NN WDT VBZ VBN IN NN . Last month , Chinese media reports said the project had created potentially catastrophic environmental problems , including flooding and land erosion . JJ NN , JJ NNS NNS VBD DT NN VBD VBN RB JJ JJ NNS , VBG NN CC NN NN . Environmentalists , who have long condemned the project , say the dam 's reservoir will likely become heavily polluted with industrial waste . NNS , WP VBP RB VBN DT NN , VBP DT NN POS NN MD RB VB RB JJ IN JJ NN . Delegates from 57 Muslim countries will discuss the challenges and dangers of Islamic extremism when they meet Wednesday at the Organization of Islamic Conference summit in Saudi Arabia . NNS IN CD NNP NNS MD VB DT NNS CC NNS IN JJ NN WRB PRP VBP NNP IN DT NNP IN NNP NNP NN IN NNP NNP . Representatives began discussing the agenda Tuesday in the Red Sea city of Jeddah , with plans to combat terrorism high on the list . NNS VBD VBG DT NN NNP IN DT NNP NNP NN IN NNP , IN NNS TO VB NN NN IN DT NN . OIC Secretary-General Ekmeleddin Ihsanoglu , who is from Turkey , proposed a plan to restructure the 36-year-old organization over the next ten years . NNP NNP NNP NNP , WP VBZ IN NNP , VBD DT NN TO VB DT JJ NN IN DT JJ JJ NNS . The so-called ' 10 Year Program of Action ' calls for decisive cooperation to deal with political , socio-economic , cultural and scientific challenges that weaken Islamic nations . DT JJ `` CD NN NN IN NNP `` VBZ IN JJ NN TO VB IN JJ , JJ , JJ CC JJ NNS WDT VBP JJ NNS . The summit begins Wednesday in the Muslim holy city of Mecca . DT NN VBZ NNP IN DT NNP JJ NN IN NNP . Iranian health officials have begun slaughtering thousands of birds along the country 's border with Turkey , in an attempt to prevent the spread of avian flu . JJ NN NNS VBP VBN VBG NNS IN NNS IN DT NN POS NN IN NNP , IN DT NN TO VB DT NN IN JJ NN . The move reported Saturday comes as the disease continues to spread in Turkey . DT NN VBD NNP VBZ IN DT NN VBZ TO VB IN NNP . Three children died of bird flu there last week , and 15 more people have been diagnosed with the disease . CD NNS VBD IN NN NN RB JJ NN , CC CD JJR NNS VBP VBN VBN IN DT NN . In Ankara , government ministers and representatives of the poultry industry are discussing how to minimize the economic effects of the bird flu outbreak . IN NNP , NN NNS CC NNS IN DT NN NN VBP VBG WRB TO VB DT JJ NNS IN DT NN NN NN . Industry experts say poultry sales in the country have dropped by 70 percent since the deadly H5N1 strain of bird flu was reported in humans in Turkey late last month - the first bird flu deaths outside Asia . NN NNS VBP NN NNS IN DT NN VBP VBN IN CD NN IN DT JJ NNP NN IN NN NN VBD VBN IN NNS IN NNP RB JJ NN IN DT JJ NN NN NNS IN NNP . Meanwhile , Belgian health officials said a Russian journalist hospitalized in Brussels for suspected bird flu has been tested and shows no sign of the disease . RB , JJ NN NNS VBD DT JJ NN VBN IN NNP IN JJ NN NN VBZ VBN VBN CC VBZ DT NN IN DT NN . Polish President Lech Kaczynski has called the roof collapse at an exhibition hall the worst tragedy to strike post-communist Poland . JJ NNP NNP NNP VBZ VBN DT NN NN IN DT NN NN DT JJS NN TO VB JJ NNP . Sixty-six people were killed and at least 141 others injured when the roof of an exhibition hall in the city of Katowice caved in Saturday evening . CD NNS VBD VBN CC IN JJS CD NNS VBN WRB DT NN IN DT NN NN IN DT NN IN NNP VBD IN NNP NN . The hall was hosting a pigeon racing exhibition and a number of foreigners are among the victims . DT NN VBD VBG DT NN NN NN CC DT NN IN NNS VBP IN DT NNS . President Kaczynski declared three days of mourning and has canceled Monday 's scheduled visit to the Czech Republic . NNP NNP VBD CD NNS IN NN CC VBZ VBN NNP POS JJ NN TO DT JJ NNP . Pope Benedict and Russian President Vladimir Putin have sent messages of condolences . NNP NNP CC JJ NNP NNP NNP VBP VBN NNS IN NNS . Polish authorities say they do not expect to find any more survivors in the wreckage . JJ NNS VBP PRP VBP RB VB TO VB DT JJR NNS IN DT NN . They say heavy snow piled on the roof may have contributed to the collapse . PRP VBP JJ NN VBN IN DT NN MD VB VBN TO DT NN . Continental Airlines says soaring prices for jet fuel are forcing it to slash 3,000 jobs from its 45,000-person workforce , retire some old , inefficient planes , and cut flights . NNP NNP VBZ VBG NNS IN NN NN VBP VBG PRP TO VB CD NNS IN PRP$ JJ NN , VB DT JJ , JJ NNS , CC VB NNS . Thursday 's announcement by Continental follows similar drastic actions by rival carriers Delta , United , and American . NNP POS NN IN NNP VBZ JJ JJ NNS IN JJ NNS NNP , NNP , CC NNP . Continental officials say fuel prices are up 75 percent in a year , fundamentally ' shifting the economics ' of the business . NNP NNS VBP NN NNS VBP RB CD NN IN DT NN , RB `` VBG DT NNS `` IN DT NN . Top Continental executives will not take their salaries for the rest of this year , and will forgo bonuses . NNP NNP NNS MD RB VB PRP$ NNS IN DT NN IN DT NN , CC MD VB NNS . The carrier will cut 67 older model planes from its fleet of 375 planes , and replace some of them with newer , more fuel-efficient aircraft . DT NN MD VB CD JJR NN NNS IN PRP$ NN IN CD NNS , CC VB DT IN PRP IN JJR , RBR JJ NN . Officials in Afghanistan say two roadside bombings have killed eight civilians in southern Kandahar province . NNS IN NNP VBP CD NN NNS VBP VBN CD NNS IN JJ NNP NN . Six more people were wounded in the blasts near the town of Spin Boldak . CD JJR NNS VBD VBN IN DT NNS IN DT NN IN NNP NNP . Wednesday , Afghan officials said at least seven people were killed when security forces raided a Kabul hideout housing militants involved in an attack on President Hamid Karzai . NNP , JJ NNS VBD IN JJS CD NNS VBD VBN WRB NN NNS VBD DT NNP NN NN NNS VBN IN DT NN IN NNP NNP NNP . Afghan intelligence chief Amrullah Saleh said at least one of the dead militants directly participated in Sunday 's attack on the president during a military parade in Kabul . JJ NN NN NNP NNP VBD IN JJS CD IN DT JJ NNS RB VBD IN NNP POS NN IN DT NN IN DT JJ NN IN NNP . Mr. Karzai escaped unharmed . NNP NNP VBD JJ . The intelligence chief also said there is evidence that militants based in Pakistan 's tribal region planned the assassination attempt . DT NN NN RB VBD EX VBZ NN IN NNS VBN IN NNP POS JJ NN VBD DT NN NN . But Saleh said he had no proof the Pakistani government was involved . CC NNP VBD PRP VBD DT NN DT JJ NN VBD VBN . Saleh told Afghanistan 's Parliament Tuesday he knew of the plot to murder President Karzai and had warned the Afghan leader and his security advisor . NNP VBD NNP POS NNP NNP PRP VBD IN DT NN TO NN NNP NNP CC VBD VBN DT JJ NN CC PRP$ NN NN . Italian troops have begun arriving in Lebanon to boost a United Nations peacekeeping mission . JJ NNS VBP VBN VBG IN NNP TO VB DT NNP NNP NN NN . Helicopters and rubber boats were bringing ashore the more than 800 soldiers from an Italian military ship off the coast of the southern city of Tyre . NNS CC NN NNS VBD VBG RB DT JJR IN CD NNS IN DT JJ JJ NN IN DT NN IN DT JJ NN IN NNP . Those troops are part of the first large contingent to arrive since Israel and Hezbollah agreed to end their fighting in Lebanon . DT NNS VBP NN IN DT JJ JJ JJ TO VB IN NNP CC NNP VBD TO VB PRP$ NN IN NNP . Italy 's military plans to deploy more than 2,000 soldiers in the coming months to the international force that will include some 15,000 personnel . NNP POS JJ NNS TO VB JJR IN CD NNS IN DT VBG NNS TO DT JJ NN WDT MD VB DT CD NNS . Spain and France also are making large contributions to the force . NNP CC NNP RB VBP VBG JJ NNS TO DT NN . In Beirut , Lebanese lawmakers began a sit-in to protest Israel 's continued blockade of air , land and sea access to Lebanon . IN NNP , JJ NNS VBD DT NN TO VB NNP POS JJ NN IN NN , NN CC NN NN TO NNP . U.N. Secretary-General Kofi Annan has said Israel should withdraw from Lebanon once five thousand U.N. peacekeepers have deployed . NNP NNP NNP NNP VBZ VBN NNP MD VB IN NNP RB CD CD NNP NNS VBP VBN . The head of Iran 's atomic energy agency has proposed building nuclear power plants jointly with neighboring Arab countries . DT NN IN NNP POS JJ NN NN VBZ VBN VBG JJ NN NNS RB IN JJ JJ NNS . Gholam Reza Aghazadeh did not give any specifics about his proposal Sunday for the development of light-water nuclear plants . NNP NNP NNP VBD RB VB DT NNS IN PRP$ NN NNP IN DT NN IN JJ JJ NNS . Iran is building its first nuclear power plant with Russia 's help . NNP VBZ VBG PRP$ JJ JJ NN NN IN NNP POS NN . Iran says it is developing nuclear power , not weapons . NNP VBZ PRP VBZ VBG JJ NN , RB NNS . But Western nations are concerned Tehran 's intentions are militaristic . CC JJ NNS VBP JJ NNP POS NNS VBP JJ . The U.N. Security Council has imposed sanctions on Iran to try to stop it from enriching uranium . DT NNP NNP NNP VBZ VBN NNS IN NNP TO VB TO VB PRP IN VBG NN . Tehran says it wants to produce low-grade fuel for peaceful nuclear power plants . NNP VBZ PRP VBZ TO VB JJ NN IN JJ JJ NN NNS . But the same process could be used to enrich uranium to a higher grade for nuclear weapons . CC DT JJ NN MD VB VBN TO VB NN TO DT JJR NN IN JJ NNS . A recent International Atomic Energy Agency report says Iran is defying U.N. sanctions and has stopped providing substantial information to the U.N. nuclear agency about its activities . DT JJ NNP NNP NNP NNP NN VBZ NNP VBZ VBG NNP NNS CC VBZ VBN VBG JJ NN TO DT NNP JJ NN IN PRP$ NNS . Capping a day of solemn remembrance , thousands of paper lanterns representing the souls of those killed in the atomic attack on Hiroshima , Japan , 60 years ago have floated down the city 's Motoyasu River . VBG DT NN IN NN NN , NNS IN NN NNS VBG DT NNS IN DT VBN IN DT JJ NN IN NNP , NNP , CD NNS RB VBP VBN RP DT NN POS NNP NNP . Families and friends gathered along the banks of the river Saturday night to launch the candlelit lanterns . NNS CC NNS VBD IN DT NNS IN DT NN NNP NN TO VB DT NN NNS . The river is the same one survivors fled to in an effort to escape the horrific heat of the nuclear blast . DT NN VBZ DT JJ CD NNS VBD TO IN DT NN TO VB DT JJ NN IN DT JJ NN . The annual lantern observance brought to a close a full day of memorials , including official ceremonies at the Peace Memorial Park and dozens of peace rallies . DT JJ NN NN VBD TO DT RB DT JJ NN IN NNS , VBG JJ NNS IN DT NNP NNP NNP CC NNS IN NN NNS . Thousands of residents , joined by Japanese and foreign dignitaries , bowed their heads at 8.15 a.m. - the exact moment of the attack - and offered prayers for world peace and for the souls of those who died in the blast . NNS IN NNS , VBN IN JJ CC JJ NNS , VBD PRP$ NNS IN CD RB IN DT JJ NN IN DT NN : CC VBN NNS IN NN NN CC IN DT NNS IN DT WP VBD IN DT NN . Nepalese politicians say police detained hundreds of protesters across the country Monday as they protested King Gyanendra 's seizure of absolute power last month . JJ NNS VBP NNS VBD NNS IN NNS IN DT NN NNP IN PRP VBD NNP NNP POS NN IN JJ NN JJ NN . The Communist Party of Nepal says 500 people were arrested in the eastern city of Janakpur , where the largest demonstration took place . DT NNP NNP IN NNP VBZ CD NNS VBD VBN IN DT JJ NN IN NNP , WRB DT JJS NN VBD NN . Five political parties vowed to hold protests Monday in defiance of a ban on public demonstrations . CD JJ NNS VBD TO VB NNS NNP IN NN IN DT NN IN JJ NNS . Dozens of people were also arrested in Kathmandu . NNS IN NNS VBD RB VBN IN NNP . As the protests took place , Maoist rebels set fire to four buses near Itahari after their leader , Prachanda , ordered stepped up attacks and strikes against King Gyanendra . IN DT NNS VBD NN , JJ NNS VBN NN TO CD NNS IN NNP IN PRP$ NN , NNP , VBD VBN RP NNS CC NNS IN NNP NNP . The New Delhi-based Asia Center for Human Rights is calling for international intervention in the political crisis in Nepal , saying it could deepen if not resolved soon . DT NNP JJ NNP NNP IN NNP NNP VBZ VBG IN JJ NN IN DT JJ NN IN NNP , VBG PRP MD VB IN RB VBN RB . Lebanese military sources say dozens of family members of Islamic militants have been evacuated from a Palestinian refugee camp where militants have been battling government forces for months . JJ JJ NNS VBP NNS IN NN NNS IN NNP NNS VBP VBN VBN IN DT JJ NN NN WRB NNS VBP VBN VBG NN NNS IN NNS . The sources say some 60 women and children left the battered Nahr el-Bared camp in northern Lebanon Friday after a cease-fire was negotiated with the militants . DT NNS VBP DT CD NNS CC NNS VBD DT JJ NNP JJ NN IN JJ NNP NNP IN DT NN VBD VBN IN DT NNS . Fighting between the Lebanese Army and the Fatah al-Islam militants began May 20 . VBG IN DT JJ NNP CC DT NNP NNP NNS VBD NNP CD . Since then , government troops have tried to evict the al-Qaida-inspired militants , who have defied demands to leave the camp . IN RB , NN NNS VBP VBN TO VB DT JJ NNS , WP VBP VBN NNS TO VB DT NN . The fighting has killed 142 Lebanese troops and many militants and civilians . DT NN VBZ VBN CD JJ NNS CC JJ NNS CC NNS . The government believes less than 100 militants remain in the camp . DT NN VBZ JJR IN CD NNS VBP IN DT NN . Before the fighting , the camp had a population of more than 30,000 people . IN DT NN , DT NN VBD DT NN IN JJR IN CD NNS . Most of the residents have since fled . JJS IN DT NNS VBP IN VBN . Sri Lankan government supporters clashed with opposition activists protesting the arrest of their defeated presidential candidate Sarath Fonseka . NNP NNP NN NNS VBD IN NN NNS VBG DT NN IN PRP$ VBN JJ NN NNP NNP . Thousands of opposition demonstrators gathered in front of the Supreme Court in Colombo Wednesday , when they were confronted by ruling-party activists who pelted them with stones . NNS IN NN NNS VBD IN NN IN DT NNP NNP IN NNP NNP , WRB PRP VBD VBN IN JJ NNS WP VBD PRP IN NNS . Police stepped in to break up the clashes . NNP VBD IN TO VB RP DT NNS . Witnesses say several people were wounded . NNS VBP JJ NNS VBD VBN . Opposition supporters are demanding the release of Fonseka , the former chief of the armed forces , who was arrested Monday on charges of conspiring against the government . NNP NNS VBP VBG DT NN IN NNP , DT JJ NN IN DT JJ NNS , WP VBD VBN NNP IN NNS IN VBG IN DT NN . Fonseka lost last month 's election to President Mahinda Rajapaksa , but the retired general and his allies allege the polls were rigged . NNP VBD JJ NN POS NN TO NNP NNP NNP , CC DT JJ NN CC PRP$ NNS VBP DT NNS VBD VBN . The Sri Lankan election commissioner said there is no evidence of any tampering . DT NNP NNP NN NN VBD EX VBZ DT NN IN DT NN . On Tuesday , Mr. Rajapaksa dissolved parliament to clear the way for parliamentary elections to be held in early April . IN NNP , NNP NNP VBD NN TO VB DT NN IN JJ NNS TO VB VBN IN JJ NNP . An official at the Chinese embassy in Jakarta says Beijing is ' astonished and strongly dissatisfied ' after gunfire from an Indonesian warship killed a Chinese fisherman and wounded two others . DT NN IN DT JJ NN IN NNP VBZ NNP VBZ `` JJ CC RB VBD `` IN NN IN DT JJ NN VBD DT JJ NN CC VBD CD NNS . The China Daily Thursday quotes the official , Yu Hongyao , as saying China expects to be informed of any developments in the incident , which took place Monday in the Arafura Sea off eastern Indonesia . DT NNP NNP NNP VBZ DT NN , NNP NNP , IN VBG NNP VBZ TO VB VBN IN DT NNS IN DT NN , WDT VBD NN NNP IN DT NNP NNP IN JJ NNP . The Indonesian navy intercepted four Chinese boats believed to be fishing illegally . DT JJ NN VBD CD JJ NNS VBN TO VB VBG RB . Indonesian navy officials say three of the boats fled and the warship fired shots when the fourth boat did not respond to radio and visual signals . JJ NN NNS VBP CD IN DT NNS VBD CC DT NN VBD NNS WRB DT JJ NN VBD RB VB TO NN CC JJ NNS . The damaged fishing boat and its remaining 13 crew members are being held at an Indonesian naval base in the Papua coastal town of Merauke . DT JJ NN NN CC PRP$ VBG CD NN NNS VBP VBG VBN IN DT JJ JJ NN IN DT NNP JJ NN IN NNP . Upjohn Co. said it will offer an early retirement package to as many as 1,100 employees in a cost-cutting move expected to result in a fourth-quarter charge . NNP NNP VBD PRP MD VB DT JJ NN NN TO RB JJ IN CD NNS IN DT JJ NN VBN TO VB IN DT JJ NN . Upjohn officials said they could n't estimate the size of the charge until they determine which employees , and how many , will participate in the retirement plan . NNP NNS VBD PRP MD RB VB DT NN IN DT NN IN PRP VBP WDT NNS , CC WRB JJ , MD VB IN DT NN NN . But the pharmaceutical company said it ' anticipates the long-term savings resulting from the plan 's implementation will more than offset short-term costs . ' CC DT JJ NN VBD PRP `` VBZ DT JJ NNS VBG IN DT NN POS NN MD RBR IN VBN JJ NNS . `` The program , available to Upjohn employees 55 years old or older , could increase an individual 's retirement benefits 10 % to 20 % . DT NN , JJ TO NNP NNS CD NNS JJ CC JJR , MD VB DT NN POS NN NNS CD NN TO CD NN . In addition , Upjohn is offering a one-time retirement bonus equal to six months of base pay . IN NN , NNP VBZ VBG DT JJ NN NN JJ TO CD NNS IN NN NN . Chairman Theodore Cooper called the program part of the company 's two-year strategy to implement budget constraints and ' an effective headcount-control program . ' NNP NNP NNP VBD DT NN NN IN DT NN POS JJ NN TO VB NN NNS CC `` DT JJ NN NN . `` But some analysts questioned how much of an impact the retirement package will have , because few jobs will end up being eliminated . CC DT NNS VBD WRB RB IN DT NN DT NN NN MD VB , IN JJ NNS MD VB RP VBG VBN . ' It 's a cosmetic move , ' said Jonathan S. Gelles of Wertheim Schroder & Co . `` PRP VBZ DT JJ NN , `` VBD NNP NNP NNP IN NNP NNP CC NNP . According to Upjohn 's estimates , only 50 % to 60 % of the 1,100 eligible employees will take advantage of the plan . VBG TO NNP POS NNS , RB CD NN TO CD NN IN DT CD JJ NNS MD VB NN IN DT NN . Upjohn further estimated that about 50 % of the employees who leave for early retirement may be replaced . NNP RBR VBD IN IN CD NN IN DT NNS WP VBP IN JJ NN MD VB VBN . As a result , Upjohn will likely trim only about 275 to 350 of its more than 21,000 jobs world-wide . IN DT NN , NNP MD RB VB RB IN CD TO CD IN PRP$ JJR IN CD NNS JJ . In composite trading on the New York Stock Exchange yesterday , Upjohn shares rose 87.5 cents to $ 38.875 apiece . IN JJ NN IN DT NNP NNP NNP NNP NN , NNP NNS VBD CD NNS TO $ CD RB . An Upjohn spokesman said he had ' heard nothing ' to suggest the early retirement package was spurred by shareholder pressure or a potential bidder for the company , which occasionally has been the target of takeover speculation . DT NNP NN VBD PRP VBD `` VBN NN `` TO VB DT JJ NN NN VBD VBN IN NN NN CC DT JJ NN IN DT NN , WDT RB VBZ VBN DT NN IN NN NN . The company earlier this year adopted a shareholder-rights plan to ward off unwanted suitors . DT NN RBR DT NN VBD DT JJ NN TO VB RP JJ NNS . The spokesman said it is the first early retirement plan offered under its two-year cost-control strategy . DT NN VBD PRP VBZ DT JJ JJ NN NN VBN IN PRP$ JJ JJ NN . Earlier staff-reduction moves have trimmed about 300 jobs , the spokesman said . JJR NN NNS VBP VBN IN CD NNS , DT NN VBD . Lithuania gained membership in the World Trade Organization and joined the EU in May 2004 . NNP VBD NN IN DT NNP NNP NNP CC VBD DT NNP IN NNP CD . Despite Lithuania 's EU accession , Lithuania 's trade with its Central and Eastern European neighbors , and Russia in particular , accounts for a growing percentage of total trade . IN NNP POS NNP NN , NNP POS NN IN PRP$ NNP CC NNP NNP NNS , CC NNP IN JJ , NNS IN DT VBG NN IN JJ NN . Privatization of the large , state-owned utilities is nearly complete . NN IN DT JJ , JJ NNS VBZ RB JJ . Foreign government and business support have helped in the transition from the old command economy to a market economy . JJ NN CC NN NN VBP VBN IN DT NN IN DT JJ NN NN TO DT NN NN . Lithuania 's economy grew on average 8 % per year for the four years prior to 2008 driven by exports and domestic demand . NNP POS NN VBD IN JJ CD NN IN NN IN DT CD NNS RB TO CD VBN IN NNS CC JJ NN . However , GDP plunged nearly 15 % in 2009 - during the 2008 - 9 crisis the three former Soviet Baltic republics had the world 's worst economic declines . RB , NN VBD RB CD NN IN CD : IN DT CD : CD NN DT CD JJ JJ JJ NNS VBD DT NN POS JJS JJ NNS . In 2009 , the government launched a high-profile campaign , led by Prime Minister KUBILIUS , to attract foreign investment and to develop export markets . IN CD , DT NN VBD DT JJ NN , VBN IN NNP NNP NNP , TO VB JJ NN CC TO VB NN NNS . The current account deficit , which had risen to roughly 15 % of GDP in 2007 - 8 , recovered to a surplus of 4 % 2009 and 3.4 % in 2010 in the wake of a cutback in imports to almost half the 2008 level . DT JJ NN NN , WDT VBD VBN TO RB CD NN IN NN IN CD : CD , VBD TO DT NN IN CD NN CD CC CD NN IN CD IN DT NN IN DT NN IN NNS TO RB PDT DT CD NN . Nevertheless , economic growth was flat and unemployment continued upward to 17.9 % in 2010 . RB , JJ NN VBD JJ CC NN VBD JJ TO CD NN IN CD . South Africa is a middle-income , emerging market with an abundant supply of natural resources ; well-developed financial , legal , communications , energy , and transport sectors ; a stock exchange that is the 18th largest in the world ; and modern infrastructure supporting a relatively efficient distribution of goods to major urban centers throughout the region . NNP NNP VBZ DT NN , VBG NN IN DT JJ NN IN JJ NNS ; JJ JJ , JJ , NNS , NN , CC NN NNS ; DT NN NN WDT VBZ DT JJ JJS IN DT NN ; CC JJ NN VBG DT RB JJ NN IN NNS TO JJ JJ NNS IN DT NN . At the end of 2007 , South Africa began to experience an electricity crisis . IN DT NN IN CD , NNP NNP VBD TO VB DT NN NN . State power supplier Eskom encountered problems with aged plants , necessitating ' load-shedding ' cuts to residents and businesses in the major cities . NN NN NN NNP VBD NNS IN VBN NNS , VBG `` JJ `` NNS TO NNS CC NNS IN DT JJ NNS . Growth was robust from 2004 to 2007 as South Africa reaped the benefits of macroeconomic stability and a global commodities boom , but began to slow in the second half of 2007 due to the electricity crisis and the subsequent global financial crisis ' impact on commodity prices and demand . NN VBD JJ IN CD TO CD IN NNP NNP VBD DT NNS IN JJ NN CC DT JJ NNS NN , CC VBD TO VB IN DT JJ NN IN CD JJ TO DT NN NN CC DT JJ JJ JJ NN POS NN IN NN NNS CC NN . GDP fell nearly 2 % in 2009 . NN VBD RB CD NN IN CD . Unemployment remains high and outdated infrastructure has constrained growth . NN VBZ JJ CC JJ NN VBZ VBN NN . Daunting economic problems remain from the apartheid era - especially poverty , lack of economic empowerment among the disadvantaged groups , and a shortage of public transportation . VBG JJ NNS VBP IN DT NN NN IN RB NN , NN IN JJ NN IN DT JJ NNS , CC DT NN IN JJ NN . South Africa 's former economic policy was fiscally conservative , focusing on controlling inflation , and attaining a budget surplus . NNP NNP POS JJ JJ NN VBD RB JJ , VBG IN VBG NN , CC VBG DT NN NN . The current government largely follows the same prudent policies , but must contend with the impact of the global crisis and is facing growing pressure from special interest groups to use state-owned enterprises to deliver basic services to low-income areas and to increase job growth . DT JJ NN RB VBZ DT JJ JJ NNS , CC MD VB IN DT NN IN DT JJ NN CC VBZ VBG VBG NN IN JJ NN NNS TO VB JJ NNS TO VB JJ NNS TO JJ NNS CC TO VB NN NN . More than a quarter of South Africa 's population currently receives social grants . JJR IN DT NN IN NNP NNP POS NN RB VBZ JJ NNS . This uninhabited island was claimed by the US in 1857 for its guano . DT JJ NN VBD VBN IN DT NNP IN CD IN PRP$ NN . Mining took place between 1865 and 1898 . NN VBD NN IN CD CC CD . The lighthouse , built in 1917 , was shut down in 1996 and administration of Navassa Island transferred from the Coast Guard to the Department of the Interior . DT NN , VBN IN CD , VBD VBN RP IN CD CC NN IN NNP NNP VBD IN DT NNP NNP TO DT NNP IN DT NNP . A 1998 scientific expedition to the island described it as a unique preserve of Caribbean biodiversity ; the following year it became a National Wildlife Refuge and annual scientific expeditions have continued . DT CD JJ NN TO DT NN VBD PRP IN DT JJ NN IN NNP NN ; DT JJ NN PRP VBD DT NNP NNP NNP CC JJ JJ NNS VBP VBN . Explored and settled by the Spanish in the 16th century , Panama broke with Spain in 1821 and joined a union of Colombia , Ecuador , and Venezuela - named the Republic of Gran Colombia . VBN CC VBN IN DT JJ IN DT JJ NN , NNP VBD IN NNP IN CD CC VBD DT NN IN NNP , NNP , CC NNP : VBD DT NNP IN NNP NNP . When the latter dissolved in 1830 , Panama remained part of Colombia . WRB DT NN VBN IN CD , NNP VBD NN IN NNP . With US backing , Panama seceded from Colombia in 1903 and promptly signed a treaty with the US allowing for the construction of a canal and US sovereignty over a strip of land on either side of the structure ( the Panama Canal Zone ) . IN NNP NN , NNP VBD IN NNP IN CD CC RB VBD DT NN IN DT NNP VBG IN DT NN IN DT NN CC NNP NN IN DT NN IN NN IN DT NN IN DT NN LRB DT NNP NNP NNP RRB . The Panama Canal was built by the US Army Corps of Engineers between 1904 and 1914 . DT NNP NNP VBD VBN IN DT NNP NNP NNP IN NNPS IN CD CC CD . In 1977 , an agreement was signed for the complete transfer of the Canal from the US to Panama by the end of the century . IN CD , DT NN VBD VBN IN DT JJ NN IN DT NNP IN DT NNP TO NNP IN DT NN IN DT NN . Certain portions of the Zone and increasing responsibility over the Canal were turned over in the subsequent decades . JJ NNS IN DT NNP CC VBG NN IN DT NNP VBD VBN RP IN DT JJ NNS . With US help , dictator Manuel NORIEGA was deposed in 1989 . IN NNP NN , NN NNP NNP VBD VBN IN CD . The entire Panama Canal , the area supporting the Canal , and remaining US military bases were transferred to Panama by the end of 1999 . DT JJ NNP NNP , DT NN VBG DT NNP , CC VBG NNP JJ NNS VBD VBN TO NNP IN DT NN IN CD . In October 2006 , Panamanians approved an ambitious plan ( estimated to cost $ 5.3 billion ) to expand the Canal . IN NNP CD , NNS VBD DT JJ NN LRB VBN TO VB $ CD CD RRB TO VB DT NNP . The project , which began in 2007 and could double the Canal 's capacity , is expected to be completed in 2014 - 15 . DT NN , WDT VBD IN CD CC MD VB DT NNP POS NN , VBZ VBN TO VB VBN IN CD IN CD . Paraguay achieved its independence from Spain in 1811 . NNP VBD PRP$ NN IN NNP IN CD . In the disastrous War of the Triple Alliance ( 1865 - 70 ) - between Paraguay and Argentina , Brazil , and Uruguay - Paraguay lost two-thirds of all adult males and much of its territory . IN DT JJ NNP IN DT NNP NNP LRB CD IN CD RRB : IN NNP CC NNP , NNP , CC NNP : NNP VBD NNS IN DT NN NNS CC NN IN PRP$ NN . The country stagnated economically for the next half century . DT NN VBD RB IN DT JJ JJ NN . Following the Chaco War of 1932 - 35 with Bolivia , Paraguay gained a large part of the Chaco lowland region . VBG DT NNP NNP IN CD IN CD IN NNP , NNP VBD DT JJ NN IN DT NNP NN NN . The 35-year military dictatorship of Alfredo STROESSNER ended in 1989 , and , despite a marked increase in political infighting in recent years , Paraguay has held relatively free and regular presidential elections since then . DT JJ JJ NN IN NNP NNP VBD IN CD , CC , IN DT JJ NN IN JJ NN IN JJ NNS , NNP VBZ VBN RB JJ CC JJ JJ NNS IN RB . Celtic tribes arrived on the island between 600 - 150 B.C. NNP NNS VBD IN DT NN IN CD : CD NNP Invasions by Norsemen that began in the late 8th century were finally ended when King Brian BORU defeated the Danes in 1014 . NNS IN NNS WDT VBD IN DT JJ JJ NN VBD RB VBN WRB NNP NNP NNP VBD DT NNS IN CD . English invasions began in the 12th century and set off more than seven centuries of Anglo-Irish struggle marked by fierce rebellions and harsh repressions . JJ NNS VBD IN DT JJ NN CC VB RP JJR IN CD NNS IN JJ NN VBN IN JJ NNS CC JJ NNS . A failed 1916 Easter Monday Rebellion touched off several years of guerrilla warfare that in 1921 resulted in independence from the UK for 26 southern counties ; six northern ( Ulster ) counties remained part of the UK . DT VBN CD NNP NNP NNP VBD RP JJ NNS IN NN NN IN IN CD VBD IN NN IN DT NNP IN CD JJ NNS ; CD JJ LRB NNP RRB NNS VBD NN IN DT NNP . In 1949 , Ireland withdrew from the British Commonwealth ; it joined the European Community in 1973 . IN CD , NNP VBD IN DT JJ NN ; PRP VBD DT NNP NNP IN CD . Irish governments have sought the peaceful unification of Ireland and have cooperated with Britain against terrorist groups . JJ NNS VBP VBN DT JJ NN IN NNP CC VBP VBN IN NNP IN JJ NNS . A peace settlement for Northern Ireland is gradually being implemented despite some difficulties . DT NN NN IN NNP NNP VBZ RB VBG VBN IN DT NNS . In 2006 , the Irish and British governments developed and began to implement the St. Andrews Agreement , building on the Good Friday Agreement approved in 1998 . IN CD , DT JJ CC JJ NNS VBD CC VBD TO VB DT NNP NNP NNP , NN IN DT JJ NNP NN VBN IN CD . A LION came across a Hare , who was fast asleep . DT NN VBD IN DT NN , WP VBD JJ JJ . He was just in the act of seizing her , when a fine young Hart trotted by , and he left the Hare to follow him . PRP VBD RB IN DT NN IN VBG PRP , WRB DT JJ JJ NNP VBN IN , CC PRP VBD DT NNP TO VB PRP . The Hare , scared by the noise , awoke and scudded away . DT NN , VBN IN DT NN , NN CC VBD RB . The Lion was unable after a long chase to catch the Hart , and returned to feed upon the Hare . DT NN VBD JJ IN DT JJ NN TO VB DT NN , CC VBD TO VB IN DT NN . On finding that the Hare also had run off , he said , ' I am rightly served , for having let go of the food that I had in my hand for the chance of obtaining more . ' IN VBG IN DT NN RB VBD VBN RP , PRP VBD , `` PRP VBP RB VBN , IN VBG VBN NN IN DT NN IN PRP VBD IN PRP$ NN IN DT NN IN VBG RBR . `` To the optimist , the glass is half full . TO DT NN , DT NN VBZ JJ JJ . To the pessimist , the glass is half empty . TO DT NN , DT NN VBZ JJ JJ . To the engineer , the glass is twice as big as it needs to be . TO DT NN , DT NN VBZ RB RB JJ IN PRP VBZ TO VB . Insurgents in Iraq carried out several attacks in Baghdad Wednesday as a week-long surge of violence in the capital continues . NNS IN NNP VBD RP JJ NNS IN NNP NNP IN DT JJ NN IN NN IN DT NN VBZ . Officials say three separate suicide car bombings in different parts of Baghdad killed at least two Iraqis and wounded eight others . NNS VBP CD JJ NN NN NNS IN JJ NNS IN NNP VBD IN JJS CD NNS CC VBD CD NNS . The attacks came a day after two U.S soldiers and at least 12 Iraqis were killed in a series of attacks across the country . DT NNS VBD DT NN IN CD NNP NNS CC IN JJS CD NNS VBD VBN IN DT NN IN NNS IN DT NN . A U.S. military spokesman said today the American casualties occurred in a suicide car bomb blast near a U.S. patrol in southern Baghdad . DT NNP NN NN VBD NN DT JJ NNS VBD IN DT NN NN NN NN IN DT NNP NN IN JJ NNP . Al-Qaida in Iraq , the nation 's most feared terrorist group , claimed responsibility for one of Tuesday 's deadliest attacks , in which six Iraqis were killed and more than 30 others wounded in a car bomb blast at an army recruitment center in Baghdad . NNP IN NNP , DT NN POS RBS VBN JJ NN , VBD NN IN CD IN NNP POS JJS NNS , IN WDT CD NNS VBD VBN CC JJR IN CD NNS VBD IN DT NN NN NN IN DT NN NN NN IN NNP . Other attacks killed four Iraqi troops and a Baghdad university professor and his son . JJ NNS VBD CD JJ NNS CC DT NNP NN NN CC PRP$ NN . Asian stock markets were mostly lower in trading Monday . JJ NN NNS VBD RB JJR IN NN NNP . Tokyo 's Nikkei index lost 85 points , to finish at 13.857 . NNP POS NNP NN VBD CD NNS , TO VB IN CD . Hong Kong 's Hang Seng index gained 27 points , to end at 22.772 . NNP NNP POS NNP NNP NN VBD CD NNS , TO VB IN CD . Elsewhere , share prices were lower in Shanghai , Singapore and Taipei . RB , NN NNS VBD JJR IN NNP , NNP CC NNP . Stocks closed slightly higher in Wellington . NNS VBD RB JJR IN NNP . The dollar was selling at 107.41 yen in Tokyo currency trading , up from 107.25 yen late Friday in New York . DT NN VBD VBG IN CD NN IN NNP NN NN , RB IN CD NN JJ NNP IN NNP NNP . Yemeni officials say government troops killed seven suspected al-Qaida militants in the country 's restive south Sunday . JJ NNS VBP NN NNS VBD CD JJ NNP NNS IN DT NN POS JJ NN NNP . The officials said the seven were killed in the town of Loder in southern Abyan province , where 11 soldiers and seven other suspected al-Qaida militants died in clashes Thursday and Friday . DT NNS VBD DT CD VBD VBN IN DT NN IN NNP IN JJ NNP NN , WRB CD NNS CC CD JJ JJ NNP NNS VBD IN NNS NNP CC NNP . On Saturday , the government urged security forces in six provinces to tighten security measures . IN NNP , DT NN VBD NN NNS IN CD NNS TO VB NN NNS . It also called for increased vigilance and said a massive manhunt was under way for suspects linked to the violence . PRP RB VBD IN VBN NN CC VBD DT JJ NN VBD IN NN IN NNS VBN TO DT NN . South Yemen is feared to have become a base for al-Qaida 's local branch , Al-Qaida in the Arabian Peninsula . NNP NNP VBZ VBN TO VB VBN DT NN IN NNP POS JJ NN , NNP IN DT NNP NNP . Earlier this month , al-Qaida threatened to target anyone who supports Yemeni President Ali Abdullah Saleh or what it called the ' crusader campaign ' by the United States . RBR DT NN , NNP VBD TO VB DT WP VBZ JJ NNP NNP NNP NNP CC WP PRP VBD DT `` NN NN `` IN DT NNP NNPS . Kiefer Sutherland was arrested early Tuesday on misdemeanor drunk driving charges after reportedly failing a field sobriety test . NNP NNP VBD VBN RB NNP IN NN JJ NN NNS IN RB VBG DT NN NN NN . Officer Kevin Maiberger says the 40-year-old star of the TV series 24 was pulled over at about 1.10 a.m. in West Los Angeles after officers spotted him making an illegal U-Turn . NNP NNP NNP VBZ DT JJ NN IN DT NN NN CD VBD VBN RP IN IN CD NN IN NNP NNP NNP IN NNS VBD PRP VBG DT JJ NN . Officer Karen Smith says Sutherland tested over California 's legal blood alcohol limit of 0.08 percent , and was arrested on a misdmeanor charge of driving under the influence . NNP NNP NNP VBZ NNP VBD IN NNP POS JJ NN NN NN IN CD NN , CC VBD VBN IN DT NN NN IN VBG IN DT NN . Sheriff 's Department records indicate he was released around 4.00 a.m. after posting $ 25,000 bail . NNP POS NNP NNS VBP PRP VBD VBN IN CD NN IN VBG $ CD NN . Maiberger says Sutherland faces an October 16 court date . NNP VBZ NNP VBZ DT NNP CD NN NN . Keifer Sutherland last year won a best actor Emmy Award for his starring role in the FOX series 24 . NNP NNP JJ NN VBD DT JJS NN NNP NNP IN PRP$ VBG NN IN DT NNP NN CD . The series is set to return to the air in January . DT NN VBZ VBN TO VB TO DT NN IN NNP . British Prime Minister Tony Blair says it is a ' complete obscenity ' for terrorists to try to justify their actions . JJ JJ NN NNP NNP VBZ PRP VBZ DT `` JJ NN `` IN NNS TO VB TO VB PRP$ NNS . Mr. Blair was referring to a videotape aired Thursday of al-Qaida 's second in command , Ayman al-Zawahiri , who said Britain and the United States would face more deaths unless they pull out of Iraq . NNP NNP VBD VBG TO DT NN VBN NNP IN NNP POS JJ IN NN , NNP NNP , WP VBD NNP CC DT NNP NNPS MD VB JJR NNS IN PRP VBP IN IN NNP . The prime minister charged that those responsible for the video support the killing of innocent people in Iraq , Afghanistan and anywhere that people want to live under the rules of democracy . DT JJ NN VBD IN DT JJ IN DT NN VBP DT NN IN JJ NNS IN NNP , NNP CC RB IN NNS VBP TO VB IN DT NNS IN NN . The al-Zawahiri video aired on the Arab satellite channel al-Jazeera . DT NNP NN VBD IN DT JJ NN NN NNP . Chinese President Hu Jintao will hold talks with the leaders of Russia , Britain and France next month during commemorations in Moscow of the end of the Second World War . JJ NNP NNP NNP MD VB NNS IN DT NNS IN NNP , NNP CC NNP JJ NN IN NNS IN NNP IN DT NN IN DT NNP NNP NNP . An official announcement in Beijing Saturday , says it is not known whether Mr. Hu will meet with President Bush , who will be among scores of leaders attending ceremonies marking the end of the European phase of the war . DT JJ NN IN NNP NNP , VBZ PRP VBZ RB VBN IN NNP NNP MD VB IN NNP NNP , WP MD VB IN NNS IN NNS VBG NNS VBG DT NN IN DT JJ NN IN DT NN . China 's assistant foreign minister Li Hui says President Hu will discuss international and regional issues in talks with Russian President Vladimir Putin . NNP POS JJ JJ NN NNP NNP VBZ NNP NNP MD VB JJ CC JJ NNS IN NNS IN JJ NNP NNP NNP . The official added that there are no plans for a meeting in Moscow between the Chinese leader and Japanese Prime Minister Junichiro Koizumi . DT NN VBD IN EX VBP DT NNS IN DT NN IN NNP IN DT JJ NN CC JJ NNP NNP NNP NNP . China says Mr. Hu also will hold talks with the leaders of South Korea , Turkmenistan and Romania . NNP VBZ NNP NNP RB MD VB NNS IN DT NNS IN NNP NNP , NNP CC NNP . European Union foreign ministers are gathered in Brussels ahead of a meeting where heads of state and government are expected to endorse new security initiatives and hold talks on the new EU treaty . NNP NNP JJ NNS VBP VBN IN NNP RB IN DT NN WRB NNS IN NN CC NN VBP VBN TO VB JJ NN NNS CC VB NNS IN DT JJ NNP NN . An EU statement says the ministers are to discuss the Middle East peace process , the Democratic Republic of Congo , and prospects for boosting political dialogue between the union and Israel . DT NNP NN VBZ DT NNS VBP TO VB DT NNP NNP NN NN , DT JJ NNP IN NNP , CC NNS IN VBG JJ NN IN DT NN CC NNP . They also are expected to discuss international security issues . PRP RB VBP VBN TO VB JJ NN NNS . Before the summit on Thursday and Friday , EU foreign ministers are also holding talks on the eventual accession of Macedonia into the union and discussing the situation in the Western Balkans and Pakistan . IN DT NN IN NNP CC NNP , NNP JJ NNS VBP RB VBG NNS IN DT JJ NN IN NNP IN DT NN CC VBG DT NN IN DT JJ NNPS CC NNP . State media in China say authorities have stopped a toxic chemical slick from reaching the major southern metropolis of Guangzhou by closing a dam on the Bei River . NNP NNS IN NNP VBP NNS VBP VBN DT JJ NN NN IN VBG DT JJ JJ NNS IN NNP IN VBG DT NN IN DT NNP NNP . The China Daily newspaper reports Friday that government workers have lowered the gates of the Baishiyao dam to trap the cadmium spill . DT NNP NNP NN VBZ NNP IN NN NNS VBP VBN DT NNS IN DT NNP NN TO NN DT NN NN . The dam is about 100 kilometers north of Guangzhou , a densely populated city of about 10 million people . DT NN VBZ IN CD NNS RB IN NNP , DT RB JJ NN IN IN CD CD NNS . A local government spokesman says the water quality south of the dam is safe . DT JJ NN NN VBZ DT NN NN NN IN DT NN VBZ JJ . Farther upstream , officials plan to dilute the cadmium by releasing nearly 400 billion liters of water from a reservoir into the Bei River . NNP NN , NNS VBP TO VB DT NN IN VBG RB CD CD NNS IN NN IN DT NN IN DT NNP NNP . The contamination of the river by a smelter in Guangdong province a week ago is China 's second major environmental incident in recent weeks . DT NN IN DT NN IN DT NN IN NNP NN DT NN RB VBZ NNP POS JJ JJ JJ NN IN JJ NNS . North Korea says it has asked the United Nations to end all humanitarian aid to the country by the end of the year . NNP NNP VBZ PRP VBZ VBN DT NNP NNPS TO VB DT JJ NN TO DT NN IN DT NN IN DT NN . But the U.N. World Food Program , which administers aid to Pyongyang , said it has received no word about such a move . CC DT NNP NNP NNP NNP , WDT VBZ NN TO NNP , VBD PRP VBZ VBN DT NN IN PDT DT NN . North Korea 's Deputy Foreign Minister Choe Su Hon announced Pyongyang 's intentions Thursday at U.N. headquarters . NNP NNP POS NNP NNP NNP NNP NNP NNP VBD NNP POS NNS NNP IN NNP NN . He said his country made the decision because it has experienced improved food production and because countries such as the United States are politicizing humanitarian assistance . PRP VBD PRP$ NN VBD DT NN IN PRP VBZ VBN VBN NN NN CC IN NNS JJ IN DT NNP NNPS VBP VBG JJ NN . The World Food Program says it has not been asked to leave North Korea , but that its operation there may change in the new year . DT NNP NNP NNP VBZ PRP VBZ RB VBN VBN TO VB NNP NNP , CC IN PRP$ NN EX MD VB IN DT JJ NN . A spokesman said the organization expects to shift from humanitarian aid to funding development projects . DT NN VBD DT NN VBZ TO VB IN JJ NN TO VBG NN NNS . Details have not been finalized . NNS VBP RB VBN VBN . Author Betty Friedan , frequently credited with laying the groundwork for modern feminism with her book , The Feminine Mystique , died of congestive heart failure Saturday . NN NNP NNP , RB VBN IN VBG DT NN IN JJ NN IN PRP$ NN , DT NNP NNP , VBD IN JJ NN NN NNP . It was her 85th birthday . PRP VBD PRP$ JJ NN . Friedan was born in Peoria , Illinois on 4 February 1921 . NNP VBD VBN IN NNP , NNP IN CD NNP CD . She studied psychology and worked as a journalist , but was primarily a housewife when she published her groundbreaking book in 1963 . PRP VBD NN CC VBD IN DT NN , CC VBD RB DT NN WRB PRP VBD PRP VBG NN IN CD . The book 's theme was that society forced women to find their identity through their husbands and children and allowed them little personal autonomy , leaving them unfulfilled . DT NN POS NN VBD DT NN VBD NNS TO VB PRP$ NN IN PRP$ NNS CC NNS CC VBD PRP JJ JJ NN , VBG PRP JJ . ' The Feminine Mystique ' was an immediate best-seller and made Friedan one of the most prominent voices in the women 's movement of the 1960s and 70s . `` DT NNP NNP `` VBD DT JJ NN CC VBD NNP CD IN DT RBS JJ NNS IN DT NNS POS NN IN DT NNS CC NNS . She co-founded the National Organization for Women in 1966 and the National Political Women 's Caucus in 1971 . PRP VBD DT NNP NNP IN NNP IN CD CC DT NNP NNP NNP POS NNP IN CD . Friedan 's later work concentrated on how society views aging . NNP POS JJ NN VBD IN WRB NN VBZ NN . Authorities in South Korea say a person there has contracted bird flu but has no symptoms of the disease . NNS IN NNP NNP VBP DT NN RB VBZ VBN NN NN CC VBZ DT NNS IN DT NN . And in Japan , officials are investigating a possible outbreak at a chicken farm . CC IN NNP , NNS VBP VBG DT JJ NN IN DT NN NN . South Korean health officials said Thursday the person was infected during an outbreak of the potentially deadly H5N1 virus that hit poultry farms late last year . JJ JJ NN NNS VBD NNP DT NN VBD VBN IN DT NN IN DT RB JJ NNP NN WDT VBD NN NNS RB JJ NN . In Japan , government officials at the Agriculture , Forestry and Fisheries Ministry told the Kyodo news agency that they are looking into what might be an outbreak of bird flu at a farm in Miyazaki Prefecture . IN NNP , NN NNS IN DT NNP , NNP CC NNP NNP VBD DT NNP NN NN IN PRP VBP VBG IN WP MD VB DT NN IN NN NN IN DT NN IN NNP NNP . The farm feeds about 10,000 chickens . DT NN VBZ IN CD NNS . It was not immediately clear how many birds may already have been infected or killed by the suspected virus . PRP VBD RB RB JJ WRB JJ NNS MD RB VB VBN VBN CC VBN IN DT JJ NN . The H5N1 strain of bird flu has killed more than 150 people worldwide over the past three years - none in Japan or South Korea . DT NNP NN IN NN NN VBZ VBN JJR IN CD NNS JJ IN DT JJ CD NNS IN NN IN NNP CC NNP NNP . Niger 's electoral commission has postponed local and regional elections scheduled for Saturday by three days , citing logistical problems . NNP POS JJ NN VBZ VBN JJ CC JJ NNS VBN IN NNP IN CD NNS , VBG JJ NNS . Niger 's electoral commission says the country will now hold its municipal and regional elections on Tuesday , instead of Saturday as planned . NNP POS JJ NN VBZ DT NN MD RB VB PRP$ JJ CC JJ NNS IN NNP , IN IN NNP IN VBN . Electoral commission president , Abdouramane Goushmane says the commission postponed the elections after it realized that all of the ballots would not be ready in time for the poll Saturday . NNP NN NN , NNP NNP VBZ DT NN VBD DT NNS IN PRP VBD IN DT IN DT NNS MD RB VB JJ IN NN IN DT NN NNP . The local and regional polls are the first in a series of a elections this month meant to return the country to civilian rule after a military coup in February 2010 . DT JJ CC JJ NNS VBP DT JJ IN DT NN IN DT NNS DT NN VBN TO VB DT NN TO JJ NN IN DT JJ NN IN NNP CD . Goushmane said this postponement will not affect the timing of legislative elections and a presidential poll planned for January 31 . NNP VBD DT NN MD RB VB DT NN IN JJ NNS CC DT JJ NN VBN IN NNP CD . Niger has been under military rule since February , when the army overthrew the country 's increasingly unpopular leader , President Mamadou Tandja . NNP VBZ VBN IN JJ NN IN NNP , WRB DT NN VBD DT NN POS RB JJ NN , NNP NNP NNP . The military promised elections within the year . DT JJ JJ NNS IN DT NN . The new constitution , voted on by referendum in October , gives the army until April 6 to restore civilian rule . DT JJ NN , VBD IN IN NN IN NNP , VBZ DT NN IN NNP CD TO VB JJ NN . Somalia 's exiled Islamist opposition is rejecting peace talks with the government that began in Djibouti on Tuesday . NNP POS VBN NN NN VBZ VBG NN NNS IN DT NN WDT VBD IN NNP IN NNP . The Alliance for the Re-Liberation of Somalia says that opposition figures attending the talks are not authorized to meet with the government or sign any agreements . DT NNP IN DT NN IN NNP VBZ IN NN NNS VBG DT NNS VBP RB VBN TO VB IN DT NN CC VB DT NNS . In the statement posted on its Web site on Wednesday , the group says it will never hold talks with the Somali government as long as Ethiopian troops remain in Somalia . IN DT NN VBD IN PRP$ NNP NN IN NNP , DT NN VBZ PRP MD RB VB NNS IN DT JJ NN RB RB IN JJ NNS VBP IN NNP . Ethiopia has several thousand soldiers in Somalia to help the interim government battle an Islamist-led insurgency . NNP VBZ JJ CD NNS IN NNP TO VB DT JJ NN NN DT JJ NN . The exiled opposition alliance is based in Eritrea and includes members of the Islamic Courts Union , which controlled much of Somalia in 2006 before being ousted by government and Ethiopian troops . DT VBN NN NN VBZ VBN IN NNP CC VBZ NNS IN DT NNP NNP NNP , WDT VBD NN IN NNP IN CD IN VBG VBN IN NN CC JJ NNS . Fighting between insurgents and pro-government forces has killed thousands of Somalis in the year-and-a-half since . VBG IN NNS CC JJ NNS VBZ VBN NNS IN NNS IN DT NN IN . Somalia has endured 17 years of chaos and conflict since the fall of the last stable government . NNP VBZ VBN CD NNS IN NN CC NN IN DT NN IN DT JJ JJ NN . Fifteen people have been killed in the crash of an airplane belonging to Venezuela 's state-run airline , Conviasa . CD NNS VBP VBN VBN IN DT NN IN DT NN VBG TO NNP POS JJ NN , NNP . Thirty-six others on board survived the accident in a steel mill yard in Bolivar state . CD NNS IN NN VBD DT NN IN DT NN NN NN IN NNP NN . Steel mill workers helped pull the survivors from the smoking wreckage . NN NN NNS VBD VB DT NNS IN DT NN NN . It is not clear what caused the crash , but officials say the pilot had radioed traffic controllers that something was wrong before the plane went down on the property of the state-run Sidor steel mill . PRP VBZ RB JJ WP VBD DT NN , CC NNS VBP DT NN VBD VBN NN NNS IN DT VBD JJ IN DT NN VBD RB IN DT NN IN DT JJ NNP NN NN . The aircraft , a twin-engine turboprop , was carrying 47 passengers and a crew of four . DT NN , DT JJ NN , VBD VBG CD NNS CC DT NN IN CD . It was flying from the Caribbean resort island of Margarita to the industrial city of Puerto Ordaz . PRP VBD VBG IN DT NNP NN NN IN NNP TO DT JJ NN IN NNP NNP . Bolivar 's state governor described the large number of survivors as ' a miracle . ' NNP POS NN NN VBD DT JJ NN IN NNS IN `` DT NN . `` And he called the steel mill workers ' heroes ' for assisting the survivors . CC PRP VBD DT NN NN NNS `` NNS `` IN VBG DT NNS . North Korea has criticized recent reports of a crisis in its leadership as a U.S.-organized smear campaign . NNP NNP VBZ VBN JJ NNS IN DT NN IN PRP$ NN IN DT JJ NN NN . A statement from the Foreign Ministry in Pyongyang Monday denies reports of mass defections by North Korean generals to China and called them part of a propaganda campaign designed to create instability . DT NN IN DT NNP NNP IN NNP NNP VBZ NNS IN NN NNS IN JJ JJ NNS TO NNP CC VBD PRP NN IN DT NN NN VBN TO VB NN . The Ministry says the campaign is forcing North Korea to reconsider its participation in talks with the United States - an apparent reference to the six-party talks aimed at ending Pyongyang 's nuclear weapons ambitions . DT NNP VBZ DT NN VBZ VBG NNP NNP TO VB PRP$ NN IN NNS IN DT NNP NNPS IN DT JJ NN TO DT JJ NNS VBN IN VBG NNP POS JJ NNS NNS . The statement carried by the official Korean Central News Agency also denounced reports in Western news media that some of the many portraits of the Communist state 's leader , Kim Jong-il , have been removed from display in North Korean cities . DT NN VBN IN DT JJ JJ NNP NNP NNP RB VBD NNS IN JJ NN NNS IN DT IN DT JJ NNS IN DT NNP NN POS NN , NNP NNP , VBP VBN VBN IN NN IN JJ JJ NNS . Askar Akayev Kyrgyzstan 's parliament has voted to strip ousted President Askar Akayev of many of his special privileges . NNP NNP NNP POS NN VBZ VBN TO VB JJ NNP NNP NNP IN NN IN PRP$ JJ NNS . Lawmakers meeting Friday voted almost unanimously to repeal legislation that would allow the former leader to participate in government and parliament sessions . NNS VBG NNP VBD RB RB TO VB NN WDT MD VB DT JJ NN TO VB IN NN CC NN NNS . The lawmakers held off , however , a discussion of Mr. Akayev 's resignation . DT NNS VBD RP , RB , DT NN IN NNP NNP POS NN . Although the ousted leader submitted his resignation Monday it will not be valid until parliament votes to accept it . IN DT JJ NN VBD PRP$ NN NNP PRP MD RB VB JJ IN NN NNS TO VB PRP . Such a vote would legitimize the country 's new authorities and clear the way for new presidential elections . JJ DT NN MD VB DT NN POS JJ NNS CC VB DT NN IN JJ JJ NNS . Mr. Akayev fled Kyrgyzstan on March 24 after protesters stormed his office and the opposition seized power . NNP NNP VBD NNP IN NNP CD IN NNS VBD PRP$ NN CC DT NN VBD NN . Meanwhile , 500 protestors in the southern part of the country ended a three-day occupation of a regional governor 's administrative offices in Naryn . RB , CD NNS IN DT JJ NN IN DT NN VBD DT JJ NN IN DT JJ NN POS JJ NNS IN NNP . The activists were demanding the reversal of a court decision that annulled the new prime minister 's win in parliamentary elections . DT NNS VBD VBG DT NN IN DT NN NN WDT VBD DT JJ JJ NN POS NN IN JJ NNS . Royal Dutch-Shell Group says it will pour $ 600 million into the development of an onshore gas field in China . NNP NNP NNP VBZ PRP MD VB $ CD CD IN DT NN IN DT JJ NN NN IN NNP . The project represents a major foreign investment into China 's natural gas sector . DT NN VBZ DT JJ JJ NN IN NNP POS JJ NN NN . Shell officials tell the Wall Street Journal they will spend the money over the next couple of years to develop and operate the field in Changbei . NNP NNS VBP DT NNP NNP NNP PRP MD VB DT NN IN DT JJ NN IN NNS TO VB CC VB DT NN IN NNP . Natural gas will then be distributed to Beijing , Tianjin , Hebei and Shandong . JJ NN MD RB VB VBN TO NNP , NNP , NNP CC NNP . The field is expected to begin production in 2007 through a pipeline that is being built by PetroChina . DT NN VBZ VBN TO VB NN IN CD IN DT NN WDT VBZ VBG VBN IN NNP . Shell officials tell the Wall Street Journal plans for the project have already been submitted to the Chinese authorities for approval . NNP NNS VBP DT NNP NNP NNP NNS IN DT NN VBP RB VBN VBN TO DT JJ NNS IN NN . U.S. Homeland Security officials have prepared a report listing 12 ways terrorists might attack the country and estimates of the death toll each attack might produce . NNP NNP NNP NNS VBP VBN DT NN VBG CD NNS NNS MD VB DT NN CC NNS IN DT NN NN DT NN MD VB . Existence of the unreleased document was first reported by the New York Times newspaper late Tuesday . NN IN DT JJ NN VBD RB VBN IN DT NNP NNP NNP NN RB NNP . The Times says the scenarios include terrorists blowing up a chlorine tank , killing more than 17,000 people , and spreading pneumonic plague in public areas , killing 2500 . DT NNP VBZ DT NNS VBP NNS VBG RP DT NN NN , VBG JJR IN CD NNS , CC VBG JJ NN IN JJ NNS , VBG CD . In another scenario , terrorists would infect cattle with foot-and-mouth disease at several sites , resulting in financial losses in the hundreds of millions of dollars . IN DT NN , NNS MD VB NNS IN JJ NN IN JJ NNS , VBG IN JJ NNS IN DT NNS IN NNS IN NNS . Homeland Security officials say the report was drawn up to help federal , state , and local officials develop preparedness plans . NNP NNP NNS VBP DT NN VBD VBN RP TO VB JJ , NN , CC JJ NNS VBP NN NNS . The officials say there is no credible evidence that the attacks mentioned in the report are being planned . DT NNS VBP EX VBZ DT JJ NN IN DT NNS VBN IN DT NN VBP VBG VBN . Sudan is expelling the country directors for two foreign aid groups , accusing them of violating a ban on engaging in political activities . NNP VBZ VBG DT NN NNS IN CD JJ NN NNS , VBG PRP IN VBG DT NN IN VBG IN JJ NNS . The British charities Oxfam and Save the Children received letters warning of the expulsion orders , and said they plan to follow up with Sudan 's government . DT JJ NNS NNP CC NNP DT NNPS VBD NNS VBG IN DT NN NNS , CC VBD PRP VBP TO VB RP IN NNP POS NN . The United Nations is pressing Khartoum to reverse the orders , saying the aid groups play a key role in helping victims of fighting in western Sudan . DT NNP NNP VBZ VBG NNP TO VB DT NNS , VBG DT NN NNS VBP DT JJ NN IN VBG NNS IN VBG IN JJ NNP . Sudan 's government has criticized the groups for issuing statements which it says indicate support for the rebels in the western Darfur region . NNP POS NN VBZ VBN DT NNS IN VBG NNS WDT PRP VBZ VB NN IN DT NNS IN DT JJ NNP NN . It also rejected a Save the Children press release that accused Sudanese troops of bombing a site near a refugee camp in the town of Tawilla earlier this month . PRP RB VBD DT NNP DT NNP NN NN WDT VBD JJ NNS IN VBG DT NN IN DT NN NN IN DT NN IN NNP RBR DT NN . Syrian President Bashar al-Assad is in Iran Saturday to meet with President Mahmoud Ahmadinejad and top officials . JJ NNP NNP NNP VBZ IN NNP NNP TO VB IN NNP NNP NNP CC JJ NNS . Iran 's state-owned media report the leaders are expected to discuss instability in Iraq , the crisis in Lebanon and ways to strengthen bilateral ties . NNP POS JJ NNS VBP DT NNS VBP VBN TO VB NN IN NNP , DT NN IN NNP CC NNS TO VB JJ NNS . State-run news agency IRNA says the Syrian president is also scheduled to meet with Iran 's Supreme Leader Ayatollah Ali Khamenei during the two-day visit . JJ NN NN NNP VBZ DT JJ NN VBZ RB VBN TO VB IN NNP POS NNP NNP NNP NNP NNP IN DT JJ NN . Syria and Iran are close regional allies . NNP CC NNP VBP JJ JJ NNS . Washington accuses the two countries of fomenting tension in Iraq by allowing insurgents to enter Iraq and then aiding them . NNP VBZ DT CD NNS IN VBG NN IN NNP IN VBG NNS TO VB NNP CC RB VBG PRP . Syria is a firm supporter of Iran 's nuclear program , which the United States says is aimed at building atomic weapons . NNP VBZ DT JJ NN IN NNP POS JJ NN , WDT DT NNP NNP VBZ VBZ VBN IN VBG JJ NNS . Iran says the program is solely for peaceful purposes . NNP VBZ DT NN VBZ RB IN JJ NNS . Riot police in Santiago , Chile have fired tear gas and water cannon at hundreds of students protesting President Bush 's arrival later this week at an economic summit in the Chilean capital . NN NN IN NNP , NNP VBP VBN JJ NN CC NN NN IN NNS IN NNS VBG NNP NNP POS NN RB DT NN IN DT JJ NN IN DT JJ NN . Street clashes erupted Wednesday , just before foreign and trade ministers from the 21-member Asia-Pacific Economic Cooperation ( APEC ) opened two days of talks on free trade and other issues . NN NNS VBD NNP , RB IN JJ CC NN NNS IN DT JJ NNP NNP NNP LRB NNP RRB VBD CD NNS IN NNS IN JJ NN CC JJ NNS . Police arrested dozens of demonstrators protesting the U.S.-led war in Iraq and globalization , which they say widens the gap between rich and poor nations . NNS VBN NNS IN NNS VBG DT JJ NN IN NNP CC NN , WDT PRP VBP VBZ DT NN IN JJ CC JJ NNS . No injuries were reported . DT NNS VBD VBN . In addition to President Bush , outgoing U.S. Secretary of State Colin Powell , Chinese President Hu Jintao and Japanese Prime Minister Junichiro Koizumi will attend the talks , which take place this Saturday and Sunday . IN NN TO NNP NNP , VBG NNP NNP IN NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP NNP MD VB DT NNS , WDT VBP NN DT NNP CC NNP . Mexico 's conservative ruling party says it will ask the Supreme Court to review Mexico City 's recent decision to allow first-trimester abortions in the capital . NNP POS JJ VBG NN VBZ PRP MD VB DT NNP NNP TO VB NNP NNP POS JJ NN TO VB JJ NNS IN DT NN . City lawmakers approved the measure Tuesday on a 46 - 19 vote . NNP NNS VBD DT NN NNP IN DT CD : CD NN . The move makes it legal to have an abortion within the first 12 weeks of pregnancy . DT NN VBZ PRP JJ TO VB DT NN IN DT JJ CD NNS IN NN . Elsewhere in Mexico , abortion is legal only in cases of rape , incest , or danger to the mother 's health . RB IN NNP , NN VBZ JJ RB IN NNS IN NN , NN , CC NN TO DT NN POS NN . Supporters , including Mexico 's liberal Party of the Democratic Revolution , say the new law will protect women from unsafe , illegal abortions . NNS , VBG NNP POS JJ NN IN DT JJ NN , VBP DT JJ NN MD VB NNS IN JJ , JJ NNS . But critics , including the Roman Catholic Church and President Felipe Calderon 's National Action Party , fear it is a step toward legalized abortion across Latin America . CC NNS , VBG DT NNP NNP NNP CC NNP NNP NNP POS NNP NNP NNP , VBP PRP VBZ DT NN IN VBN NN IN NNP NNP . Only Cuba and Guyana currently allow abortions , though Colombia is considering a law to allow the procedure . RB NNP CC NNP RB VBP NNS , IN NNP VBZ VBG DT NN TO VB DT NN . Former senior White House aide Lewis Libby is scheduled to make his first court appearance Thursday to face perjury , FALSE statement and obstruction of justice charges . JJ JJ NNP NNP NN NNP NNP VBZ VBN TO VB PRP$ JJ NN NN NNP TO VB NN , JJ NN CC NN IN NN NNS . A grand jury indicted Mr. Libby on Friday in connection with statements he made to jurors and FBI agents investigating who in the White House publicly identified a covert CIA officer . DT JJ NN VBD NNP NNP IN NNP IN NN IN NNS PRP VBD TO NNS CC NNP NNS VBG WP IN DT NNP NNP RB VBD DT JJ NNP NN . Mr. Libby stepped down from his post as Vice President Dick Cheney 's chief of staff after the indictments were handed down . NNP NNP VBD RB IN PRP$ NN IN NNP NNP NNP NNP POS NN IN NN IN DT NNS VBD VBN RP . Monday , Mr. Cheney named his official government lawyer , David Addington , to replace Mr. Libby as chief of staff . NNP , NNP NNP VBD PRP$ JJ NN NN , NNP NNP , TO VB NNP NNP IN NN IN NN . He chose a member of his national security team , John Hannah , to fill Mr. Libby 's other post as assistant to the vice president for national security affairs . PRP VBD DT NN IN PRP$ JJ NN NN , NNP NNP , TO VB NNP NNP POS JJ NN IN NN TO DT NN NN IN JJ NN NNS . At least one other person , President Bush 's chief adviser Karl Rove , reportedly remains under investigation in the CIA leak probe . IN JJS CD JJ NN , NNP NNP POS JJ NN NNP NNP , RB VBZ IN NN IN DT NNP NN NN . A Spanish military hospital ship Wednesday picked up the bodies of 24 migrants in the Atlantic Ocean off the coast of Mauritania . DT JJ JJ NN NN NNP VBD RP DT NNS IN CD NNS IN DT NNP NNP IN DT NN IN NNP . The bodies were floating about 720 kilometers south of Spain 's Canary Islands . DT NNS VBD VBG IN CD NNS RB IN NNP POS NNP NNP . Authorities believe they were North Africans who drowned while trying to reach Spain . NNS VBP PRP VBD JJ NNS WP VBD IN VBG TO VB NNP . The bodies were found one day after more than 330 migrants reached the islands in several boats - a single-day record for the Canaries . DT NNS VBD VBN CD NN IN JJR IN CD NNS VBD DT NNS IN JJ NNS IN DT JJ NN IN DT NNS . A delegation of Spanish officials plans to fly to Mauritania Thursday to discuss the migrant situation . DT NN IN JJ NNS VBZ TO VB TO NNP NNP TO VB DT JJ NN . Spain has already offered the west African nation patrol boats to intercept would-be immigrants . NNP VBZ RB VBN DT JJS JJ NN NN NNS TO VB JJ NNS . Spanish officials say about 3,000 North Africans have reached the Canary Islands in the first three months of the year . JJ NNS VBP IN CD JJ NNS VBP VBN DT NNP NNP IN DT JJ CD NNS IN DT NN . The Red Cross says more than 1,000 died trying . DT NNP NNP VBZ JJR IN CD VBD VBG . Typhoon Utor is whipping across the central Philippines , killing at least three people and forcing 70,000 residents from their homes . NN NNP VBZ VBG IN DT JJ NNP , VBG IN JJS CD NNS CC VBG CD NNS IN PRP$ NNS . Evacuees huddled in makeshift emergency shelters Sunday as the typhoon toppled power lines across the island nation with winds of 120 kilometers an hour . NNS VBD IN JJ NN NNS NNP IN DT NN VBD NN NNS IN DT NN NN IN NNS IN CD NNS DT NN . Authorities are urging villagers on the western island of Mindoro to head to higher ground to avoid possible flash floods and large waves . NNS VBP VBG NNS IN DT JJ NN IN NNP TO VB TO JJR NN TO VB JJ NN NNS CC JJ NNS . Authorities ordered the mass evacuation from Albay province to prevent a repeat of the disaster that struck just over a week ago when another typhoon triggered mudslides on Mayon Volcano . NNS VBD DT NN NN IN NNP NN TO VB DT NN IN DT NN WDT VBD RB IN DT NN IN WRB DT NN VBD NNS IN NNP NNP . The massive sludge covered entire villages , leaving at least 1,300 people dead or missing . DT JJ NN VBD JJ NNS , VBG IN JJS CD NNS JJ CC JJ . Somalia 's prime minister has ordered all aid agencies operating in the country to register with the government or leave . NNP POS JJ NN VBZ VBN DT NN NNS VBG IN DT NN TO VB IN DT NN CC VB . A spokesman for the prime minister , Abdulkadir Walayo , said the government will protect aid workers who register , but said it will not be liable for the safety of those who fail to sign up . DT NN IN DT JJ NN , NNP NNP , VBD DT NN MD VB NN NNS WP VBP , CC VBD PRP MD RB VB JJ IN DT NN IN DT WP VBP TO VB RP . Kidnappings of foreign aid workers by armed groups are frequent in Somalia . NNS IN JJ NN NNS IN JJ NNS VBP JJ IN NNP . The spokesman did not provide details on what registration would involve and had no specifics on how the Somali government planned to provide security for registered aid organizations . DT NN VBD RB VB NNS IN WP NN MD VB CC VBD DT NNS IN WRB DT JJ NN VBD TO VB NN IN JJ NN NNS . The government controls very little of the countryside where humanitarian agencies do most of their work . DT NN VBZ RB RB IN DT NN WRB JJ NNS VBP JJS IN PRP$ NN . The hardline al-Shabab militant group and related Islamic groups control much of the country after a two year long insurgency . DT JJ NNP JJ NN CC JJ JJ NNS VBP NN IN DT NN IN DT CD NN RB RB . Iran is loaning cash-strapped Cuba $ 26 Million . NNP VBZ VBG JJ NNP $ CD NN . The loan is part of a bilateral cooperation agreement between the two countries covering key areas such as banking , farming and biotechnology . DT NN VBZ NN IN DT JJ NN NN IN DT CD NNS VBG JJ NNS JJ IN NN , NN CC NN . Cuba 's state-run newspaper Granma Friday reported details of the agreement . NNP POS JJ NN NNP NNP VBD NNS IN DT NN . The newspaper says Iran will offer Cuba assistance and equipment to help it fight the effects of a drought plaguing the eastern portion of the island . DT NN VBZ NNP MD VB NNP NN CC NN TO VB PRP VB DT NNS IN DT NN VBG DT JJ NN IN DT NN . In return , Havana will help Tehran build a biotechnology factory to produce hepatitis B vaccines and Cuban-engineered medicines to treat heart and kidney disease . IN NN , NNP MD VB NNP VB DT NN NN TO VB NNP NNP NNS CC JJ NNS TO VB NN CC NN NN . Iran 's official news agency IRNA hailed Iranian-Cuban relations , and said the agreement paves the way for further joint economic cooperation between the two nations . NNP POS JJ NN NN NNP VBD JJ NNS , CC VBD DT NN VBZ DT NN IN JJ JJ JJ NN IN DT CD NNS . The United States has accused Iran of running a secret nuclear weapons program , and has recently tightened a long-standing economic embargo on Cuba . DT NNP NNPS VBZ VBN NNP IN VBG DT JJ JJ NNS NN , CC VBZ RB VBN DT JJ JJ NN IN NNP . Former Chilean dictator Augusto Pinochet has been charged with tax evasion and corruption related to multi-million-dollar bank accounts he allegedly opened in the United States and other countries . JJ JJ NN NNP NNP VBZ VBN VBN IN NN NN CC NN VBN TO JJ NN NNS PRP RB VBD IN DT NNP NNPS CC JJ NNS . Court officials in Santiago say General Pinochet , who will be 90 on Friday , has been placed under house arrest . NNP NNS IN NNP VBP NNP NNP , WP MD VB CD IN NNP , VBZ VBN VBN IN NN NN . Judge Carlos Cerda has questioned the former dictator three times during the past two weeks over some $ 27 million prosecutors allege he hid in foreign accounts . NNP NNP NNP VBZ VBN DT JJ NN CD NNS IN DT JJ CD NNS IN DT $ CD CD NNS VBP PRP VBD IN JJ NNS . The general 's wife and youngest son have been indicted as accomplices . DT NN POS NN CC JJS NN VBP VBN VBN IN NNS . General Pinochet also faces charges in the disappearances and deaths of 119 leftist opponents in 1975 and is suspected of involvement in hundreds of other deaths while he was in power from 1973 - 1990 . NNP NNP RB VBZ NNS IN DT NNS CC NNS IN CD JJ NNS IN CD CC VBZ VBN IN NN IN NNS IN JJ NNS IN PRP VBD IN NN IN CD IN CD . A senior U.N. official says Algerian authorities never responded to a request for tighter security for U.N. offices in Algiers that were later hit by a suicide bombing . DT JJ NNP NN VBZ JJ NNS RB VBD TO DT NN IN JJR NN IN NNP NNS IN NNP WDT VBD RB VBN IN DT NN NN . The head of the U.N. Development Agency , Kemal Dervis , said U.N. officials submitted a formal request to the Algerian government for road blockades , but no action was taken . DT NN IN DT NNP NNP NNP , NNP NNP , VBD NNP NNS VBD DT JJ NN TO DT JJ NN IN NN NNS , CC DT NN VBD VBN . The bombing in December destroyed the offices in Algiers and killed at least 37 people , including 17 U.N. staffers . DT NN IN NNP VBD DT NNS IN NNP CC VBN IN JJS CD NNS , VBG CD NNP NNS . Al-Qaida 's North African wing later claimed responsibility . NNP POS JJ JJ NN RB VBD NN . The U.N. secretary-general has decided to set up an independent panel to investigate the attack . DT NNP NN VBZ VBN TO VB RP DT JJ NN TO VB DT NN . But Algerian Prime Minister Abdelaziz Belkhadem has criticized that move , saying the investigation will not be welcome . CC JJ NNP NNP NNP NNP VBZ VBN IN NN , VBG DT NN MD RB VB JJ . He said the move was decided without consulting the Algerian government . PRP VBD DT NN VBD VBN IN VBG DT JJ NN . Venezuela 's defense minister says his country is considering building unmanned planes and may look to allied countries , such as Iran , for help . NNP POS NN NN VBZ PRP$ NN VBZ VBG VBG JJ NNS CC MD VB TO JJ NNS , JJ IN NNP , IN NN . General Raul Baduel says Venezuela has made progress in the development of planes that do not require human pilots . NNP NNP NNP VBZ NNP VBZ VBN NN IN DT NN IN NNS WDT VBP RB VB JJ NNS . Speaking in Caracas Monday , he said Venezuela will look to other countries for help in maintaining its aging U.S.-made F-5 fighter jets . VBG IN NNP NNP , PRP VBD NNP MD VB TO JJ NNS IN NN IN VBG PRP$ NN JJ NN NN NNS . Venezuela has had trouble maintaining the jets since the United States began blocking arms sales to the South American country . NNP VBZ VBN NN VBG DT NNS IN DT NNP NNPS VBD VBG NNS NNS TO DT NNP NNP NN . The Bush administration has said it considers Venezuelan President Hugo Chavez a destabilizing factor in Latin America . DT NNP NN VBZ VBN PRP VBZ JJ NNP NNP NNP DT JJ NN IN NNP NNP . Costa Rica is asking a United Nations court to order Nicaragua to withdraw its troops from disputed land along the river that forms the border between the two nations . NNP NNP VBZ VBG DT NNP NNP NN TO VB NNP TO VB PRP$ NNS IN JJ NN IN DT NN WDT VBZ DT NN IN DT CD NNS . The International Court of Justice in The Hague began hearing arguments on the issue Tuesday . DT NNP NNP IN NNP IN DT NNP VBD VBG NNS IN DT NN NNP . Costa Rica accuses Nicaragua of violating international law by putting troops on Costa Rican territory for a dredging project to build a canal . NNP NNP VBZ NNP IN VBG JJ NN IN VBG NNS IN JJ JJ NN IN DT VBG NN TO VB DT NN . Nicaragua denies violating Costa Rican territory , saying the work is being done on its own land . NNP VBZ VBG JJ JJ NN , VBG DT NN VBZ VBG VBN IN PRP$ JJ NN . Costa Rican diplomat Edgar Ugalde told the court the action is threatening peace in the region . JJ JJ NN NNP NNP VBD DT NN DT NN VBZ VBG NN IN DT NN . Costa Rica also says the project is damaging to the area 's wetlands and wildlife . NNP NNP RB VBZ DT NN VBZ VBG TO DT NN POS NNS CC NN . Nicaraguan officials are also scheduled to address the court Tuesday . JJ NNS VBP RB VBN TO VB DT NN NNP . Banned American sprinter Justin Gatlin has lost his appeal to run in the U.S. Olympic athletics trials in Eugene , Oregon . VBN JJ NN NNP NNP VBZ VBN PRP$ NN TO VB IN DT NNP NNP NNS NNS IN NNP , NNP . Gatlin says he will end his legal effort rather than take the case to the U.S. Supreme Court . NNP VBZ PRP MD VB PRP$ JJ NN RB IN VB DT NN TO DT NNP NNP NNP . Gatlin has twice tested positive for banned substances . NNP VBZ RB VBN JJ IN VBN NNS . But his first doping violation resulted from prescribed medication to treat attention deficit disorder . CC PRP$ JJ NN NN VBD IN JJ NN TO VB NN NN NN . In a brief decision Thursday , the 11th U.S. Circuit Court of Appeals in Atlanta ruled Gatlin 's case is not eligible for an injunction . IN DT JJ NN NNP , DT JJ NNP NNP NNP IN NNPS IN NNP VBD NNP POS NN VBZ RB JJ IN DT NN . Earlier this month , the Court of Arbitration for Sport upheld a four-year ban against Gatlin for doping violations . RBR DT NN , DT NNP IN NNP IN NNP VBD DT JJ NN IN NNP IN VBG NNS . The defending Olympic 100-meter champion sought a court ruling that would allow him to run in the U.S. trials starting Saturday . DT VBG NNP JJ NN VBD DT NN NN WDT MD VB PRP TO VB IN DT NNP NNS VBG NNP . A team of Hubble Telescope astronomers has announced the discovery of infant stars in a galaxy neighboring the Milky Way . DT NN IN NNP NNP NNS VBZ VBN DT NN IN NN NNS IN DT JJ VBG DT NNP NNP . The stars were found in the Small Magellanic Cloud , a fragmentary galaxy some 2,00,000 light years from earth used by scientists as a laboratory to study how stars are born . DT NNS VBD VBN IN DT JJ NNP NNP , DT JJ NN DT CD NN NNS IN NN VBN IN NNS IN DT NN TO VB WRB NNS VBP VBN . Astronomers say Hubble has taken images of a large number of infant stars still forming from collapsing gas clouds , and say the youngest of these is only half the mass of our sun . NNS VBP NNP VBZ VBN NNS IN DT JJ NN IN NN NNS RB VBG IN VBG NN NNS , CC VBP DT JJS IN DT VBZ RB PDT DT NN IN PRP$ NN . Though star birth is common in Earth 's own galaxy , scientists say the young star is unusual because it lacks many of the elements it needs to fuel itself . IN NN NN VBZ JJ IN NNP POS JJ NN , NNS VBP DT JJ NN VBZ JJ IN PRP VBZ NN IN DT NNS PRP VBZ TO VB PRP . The lawyer for an Iranian-American journalist prevented from leaving Iran says his client is facing a new charge of acting against Iran 's national security . DT NN IN DT JJ NN VBD IN VBG NNP VBZ PRP$ NN VBZ VBG DT JJ NN IN VBG IN NNP POS JJ NN . The lawyer for Parnaz Azima told U.S.-funded Radio Farda that Iranian authorities have given no indication when the Radio Farda journalist can leave Iran . DT NN IN NNP NNP VBD JJ NNP NNP IN JJ NNS VBP VBN DT NN WRB DT NNP NNP NN MD VB NNP . Azima is already facing charges of working with Radio Farda and spreading propaganda against the Iranian state . NNP VBZ RB VBG NNS IN VBG IN NNP NNP CC VBG NN IN DT JJ NN . Azima traveled to Tehran in January to visit her sick mother , but has been prevented from leaving . NNP VBD TO NNP IN NNP TO VB PRP$ JJ NN , CC VBZ VBN VBN IN VBG . Last week , Iran released on bail an Iranian-American academic who has been jailed in Tehran since May on security charges . JJ NN , NNP VBD IN NN DT JJ NN WP VBZ VBN VBN IN NNP IN NNP IN NN NNS . Haleh Esfandiari is a Middle East expert for the Woodrow Wilson Center . NNP NNP VBZ DT NNP NNP NN IN DT NNP NNP NNP . Two other Iranian-Americans - urban planner Kian Tajbakhsh and Ali Shakeri , who works for a university conflict-resolution group - are also being held . CD JJ NNS : JJ NN NNP NNP CC NNP NNP , WP VBZ IN DT NN NN NN : VBP RB VBG VBN . A top Venezuelan official says his country will fight drug trafficking without the help of the United States . DT JJ JJ NN VBZ PRP$ NN MD VB NN NN IN DT NN IN DT NNP NNPS . Foreign Minister Nicolas Maduro said Tuesday that Venezuela is a sovereign nation that does not need what he described as ' money from the devil . ' NNP NNP NNP NNP VBD NNP IN NNP VBZ DT JJ NN WDT VBZ RB VB WP PRP VBD IN `` NN IN DT NN . `` Maduro 's comments come after the release of President Bush 's budget , in which a request for aid for anti-drug efforts in Venezuela was eliminated . NNP POS NNS VBP IN DT NN IN NNP NNP POS NN , IN WDT DT NN IN NN IN JJ NNS IN NNP VBD VBN . Venezuelan President Hugo Chavez severed ties with the U.S. Drug Enforcement Administration in 2005 , claiming agents were involved in espionage . JJ NNP NNP NNP VBD NNS IN DT NNP NNP NNP NNP IN CD , VBG NNS VBD VBN IN NN . The South American country is a major transit route for cocaine destined for the United States or Europe . DT NNP NNP NN VBZ DT JJ NN NN IN NN VBN IN DT NNP NNPS CC NNP . Chinese President Hu Jintao has signed several agreements during his visit to Spain to improve relations and trade between the two countries . JJ NNP NNP NNP VBZ VBN JJ NNS IN PRP$ NN TO NNP TO VB NNS CC NN IN DT CD NNS . Mr. Hu and Spanish Prime Minister Jose Luis Rodriguez Zapatero signed a document Monday making Spain a privileged partner in economic and political dealings . NNP NNP CC JJ NNP NNP NNP NNP NNP NNP VBD DT NN NNP VBG NNP DT JJ NN IN JJ CC JJ NNS . China has similar deals with Britain , France and Germany . NNP VBZ JJ NNS IN NNP , NNP CC NNP . Spain and China also reached an extradition accord . NNP CC NNP RB VBD DT NN NN . But Spain , in accordance with European Union policy , will not send back suspects who could face the death penalty in Spain . CC NNP , IN NN IN NNP NNP NN , MD RB VB RB NNS WP MD VB DT NN NN IN NNP . During his visit to Spain , Mr. Hu also met with King Juan Carlos . IN PRP$ NN TO NNP , NNP NNP RB VBD IN NNP NNP NNP . Spain is the last stop on Mr. Hu 's European tour , which also brought him to Germany and Britain . NNP VBZ DT JJ NN IN NNP NNP POS JJ NN , WDT RB VBD PRP TO NNP CC NNP . Demonstrators protesting Chinese policies on human rights and Tibet have followed Mr. Hu throughout his trip . NNS VBG JJ NNS IN JJ NNS CC NNP VBP VBN NNP NNP IN PRP$ NN . Firefighters battling a fast moving wildfire in southern California say the blaze is now about 40 percent contained , and should be fully under control by Tuesday . NNS VBG DT JJ VBG NN IN JJ NNP VBP DT NN VBZ RB IN CD NN VBN , CC MD VB RB IN NN IN NNP . When the fire began Saturday in the beach community of Malibu , strong winds and high temperatures helped spread the flames rapidly , forcing more than 10,000 people to leave their homes . WRB DT NN VBD NNP IN DT NN NN IN NNP , JJ NNS CC JJ NNS VBD VB DT NNS RB , VBG JJR IN CD NNS TO VB PRP$ NNS . Los Angeles County fire officials say the blaze has destroyed nearly 50 homes and scorched about 2,000 hectares of land . NNP NNP NNP NN NNS VBP DT NN VBZ VBN RB CD NNS CC VBN IN CD NNS IN NN . At least 500 firefighters are working to contain the flames , aided by water drops from 10 helicopters and other aircraft . IN JJS CD NNS VBP VBG TO VB DT NNS , VBN IN NN NNS IN CD NNS CC JJ NN . Last month , 24 fires in southern California burned through nearly 2,00,000 hectares and destroyed 2,000 homes . JJ NN , CD NNS IN JJ NNP VBD IN RB CD NNS CC VBD CD NNS . A British official says the government has been talking with the United States about placing part of an American anti-missile system in Britain . DT JJ NN VBZ DT NN VBZ VBN VBG IN DT NNP NNPS IN VBG NN IN DT JJ JJ NN IN NNP . A spokeswoman for British Prime Minister Tony Blair said Friday talks with Washington have been held at various levels , but the discussions are at an early stage . DT NN IN JJ NNP NNP NNP NNP VBD NNP NNS IN NNP VBP VBN VBN IN JJ NNS , CC DT NNS VBP IN DT JJ NN . A U.S. official in London says Washington has been discussing possible joint efforts with Britain . DT NNP NN IN NNP VBZ NNP VBZ VBN VBG JJ JJ NNS IN NNP . But he says right now , the U.S. is concentrating on Poland and the Czech Republic as the main European sites for a missile defense shield . CC PRP VBZ RB RB , DT NNP VBZ VBG IN NNP CC DT JJ NNP IN DT JJ JJ NNS IN DT NN NN NN . Moscow has objected to U.S. plans for placing the system so close to Russia . NNP VBZ VBN TO NNP NNS IN VBG DT NN RB RB TO NNP . U.S. officials say the system is no threat to Russia , and the system is aimed at stopping such countries as Iran . NNP NNS VBP DT NN VBZ DT NN TO NNP , CC DT NN VBZ VBN IN VBG JJ NNS IN NNP . Palestinian Authority President Mahmoud Abbas is expected to ask Hamas prime minister-designate Ismail Haniyeh to form a new government Tuesday . JJ NNP NNP NNP NNP VBZ VBN TO VB NNP JJ JJ NNP NNP TO VB DT JJ NN NNP . Hamas wants to build a coalition government , but Mr. Abbas 's Fatah party and the militant Islamic Jihad group have declined to join . NNP VBZ TO VB DT NN NN , CC NNP NNP POS NNP NN CC DT JJ NNP NNP NN VBP VBN TO VB . The new Palestinian government is facing a financial crisis because of Western threats to cut aid and Israel 's freeze on the transfer of customs revenues it collects for the Palestinian Authority . DT JJ JJ NN VBZ VBG DT JJ NN IN IN JJ NNS TO VB NN CC NNP POS NN IN DT NN IN NNS NNS PRP VBZ IN DT JJ NNP . Iran is urging Muslim nations to make up the funding shortfall . NNP VBZ VBG NNP NNS TO VB RP DT NN NN . Hamas leader Khaled Mashaal said Tuesday Iran will play a greater role in Palestinian affairs . NNP NN NNP NNP VBD NNP NNP MD VB DT JJR NN IN JJ NNS . Israel has said it will not have contact with a Hamas-led government , but Israel 's interim Prime MInister Ehud Ohlmert said Tuesday there is still hope for reaching peace . NNP VBZ VBN PRP MD RB VB NN IN DT JJ NN , CC NNP POS JJ NNP NNP NNP NNP VBD NNP EX VBZ RB NN IN VBG NN . Japan says it will provide Iraq with $ 655 million in loans for port reconstruction and other infrastructure projects . NNP VBZ PRP MD VB NNP IN $ CD CD IN NNS IN JJ NN CC JJ NN NNS . Japan 's foreign ministry said Tuesday the loans will be used to help reconstruct the port of Umm Qasr and repair a thermal power plant near Baghdad . NNP POS JJ NN VBD NNP DT NNS MD VB VBN TO VB VB DT NN IN NNP NNP CC VB DT JJ NN NN IN NNP . It said the funds would also be used for irrigation projects . PRP VBD DT NNS MD RB VB VBN IN NN NNS . The infrastructure loans are part of $ 3.5 billion in lending that Japan pledged at a 2003 Iraq donors conference in Madrid . DT NN NNS VBP NN IN $ CD CD IN NN IN NNP VBD IN DT CD NNP NNS NN IN NNP . Japan has around 600 non-combat troops in the southern Iraqi city of Samawa . NNP VBZ IN CD JJ NNS IN DT JJ JJ NN IN NNP . In December , the Cabinet approved an extension of the troop 's mission for up to one year . IN NNP , DT NNP VBD DT NN IN DT NN POS NN IN RB TO CD NN . Prime Minister Junichiro Koizumi has not said whether the troops would remain the entire year , but reports from Japan have said Tokyo may consider withdrawing them sooner . NNP NNP NNP NNP VBZ RB VBN IN DT NNS MD VB DT JJ NN , CC NNS IN NNP VBP VBN NNP MD VB VBG PRP RBR . Indonesian doctors say a 20-year-old woman showing symptoms of bird flu has died in a Jakarta hospital . JJ NNS VBP DT JJ NN VBG NNS IN NN NN VBZ VBN IN DT NNP NN . A hospital spokesman , Dr. Ilham Patu , said test results confirming the cause of death are expected to be available by Monday . DT NN NN , NNP NNP NNP , VBD NN NNS VBG DT NN IN NN VBP VBN TO VB JJ IN NNP . Meanwhile , China confirmed its eighth outbreak of bird flu within a month on Saturday , this time in birds on farms in the central Hubei province . RB , NNP VBD PRP$ JJ NN IN NN NN IN DT NN IN NNP , DT NN IN NNS IN NNS IN DT JJ NNP NN . The Ministry of Agriculture said the latest outbreak killed a total of 2,500 birds and prompted health officials to cull more than 30,000 birds . DT NNP IN NNP VBD DT JJS NN VBD DT NN IN CD NNS CC VBD NN NNS TO VB JJR IN CD NNS . China has not reported any confirmed human cases of bird flu . NNP VBZ RB VBN DT VBD JJ NNS IN NN NN . Kuwait has also found the deadly H5N1 variety of avian flu in a bird culled by authorities . NNP VBZ RB VBN DT JJ NNP NN IN JJ NN IN DT NN VBN IN NNS . Zimbabwe marks 25 years of independence from Britain Monday amid opposition claims that the country 's economy has not done well during those years . NNP VBZ CD NNS IN NN IN NNP NNP IN NN NNS IN DT NN POS NN VBZ RB VBN RB IN DT NNS . Officials said leaders of neighboring Democratic Republic of Congo , Tanzania , Namibia , Angola , Mozambique and Botswana are attending the anniversary celebrations . NNS VBD NNS IN VBG JJ NNP IN NNP , NNP , NNP , NNP , NNP CC NNP VBP VBG DT NN NNS . President Robert Mugabe , who has led the country since independence , is scheduled to give a speech extolling the country 's achievements . NNP NNP NNP , WP VBZ VBN DT NN IN NN , VBZ VBN TO VB DT NN VBG DT NN POS NNS . But opposition groups are saying that the country is worse off today than when it gained independence 25 years ago . CC NN NNS VBP VBG IN DT NN VBZ JJR IN NN IN WRB PRP VBD NN CD NNS RB . Hundreds of Somalis have rallied in support of interim Prime Minister Ali Mohamed Gedi , who narrowly survived a no-confidence vote in parliament Sunday . NNS IN NNS VBP VBN IN NN IN JJ NNP NNP NNP NNP NNP , WP RB VBD DT JJ NN IN NN NNP . Crowds of supporters marched in the Somali town of Baidoa Monday carrying signs and chanting Mr. Gedi 's name . NNS IN NNS VBD IN DT JJ NN IN NNP NNP VBG NNS CC VBG NNP NNP POS NN . The no-confidence measure Sunday needed 139 votes for passage but only got 126 . DT JJ NN NNP VBD CD NNS IN NN CC RB VBD CD . Eighty-eight lawmakers voted to keep Mr. Gedi in office . JJ NNS VBD TO VB NNP NNP IN NN . Many lawmakers have criticized Mr. Gedi 's decision to allow Ethiopian troops onto Somali soil . JJ NNS VBP VBN NNP NNP POS NN TO VB JJ NNS IN JJ NN . Ethiopia sent the troops earlier this month after Islamic militias that control much of southern Somalia appeared to be moving on the government 's base of Baidoa . NNP VBD DT NNS RBR DT NN IN JJ NNS IN VBP NN IN JJ NNP VBD TO VB VBG IN DT NN POS NN IN NNP . The transitional government has international backing but virtually no power outside the town . DT JJ NN VBZ JJ NN CC RB DT NN IN DT NN . The government suffered major political blows last week when 18 cabinet ministers resigned and another overseeing a rewrite of the constitution was shot and killed . DT NN VBD JJ JJ NNS JJ NN WRB CD NN NNS VBD CC DT VBG DT NN IN DT NN VBD VBN CC VBN . Pakistani officials say pneumonia is spreading among children who survived the October earthquake that left more than three million people out in the cold . JJ NNS VBP NN VBZ VBG IN NNS WP VBD DT NNP NN WDT VBD JJR IN CD CD NNS IN IN DT NN . They say hundreds of homeless people have contracted pneumonia in the quake-zone as the harsh Himalayan winter sets in . PRP VBP NNS IN JJ NNS VBP VBN NN IN DT NN IN DT JJ JJ NN NNS IN . The Himalayan region got its first harsh winter weather at the weekend with up to 20 centimeters of snow falling at some high altitudes and heavy rain in some lower areas , bringing relief operations to a halt . DT JJ NN VBD PRP$ JJ JJ NN NN IN DT NN IN RB TO CD NNS IN NN VBG IN DT JJ NNS CC JJ NN IN DT JJR NNS , VBG NN NNS TO DT NN . Aid agencies are racing to ensure that survivors get adequate shelter and enough food to see them through the winter . JJ NNS VBP VBG TO VB IN NNS VBP JJ NN CC JJ NN TO VB PRP IN DT NN . Relief workers say the fear is that disease could sweep through cold , poorly nourished survivors , causing a second wave of deaths . NN NNS VBP DT NN VBZ DT NN MD VB IN JJ , RB JJ NNS , VBG DT JJ NN IN NNS . Northern California 's wine-making region is bracing for more flooding as a second wave of rainstorms approaches . NNP NNP POS JJ NN VBZ VBG IN JJR NN IN DT JJ NN IN NNS NNS . Residents of Napa and Sonoma are still recovering from Saturday 's storms , which dumped about 17 centimeters of rains in some places , swelling rivers , causing mudslides and flooding downtown areas . NNS IN NNP CC NNP VBP RB VBG IN NNP POS NNS , WDT VBD IN CD NNS IN NNS IN DT NNS , VBG NNS , VBG NNS CC NN NN NNS . Another wave of storms is expected to dump even more rain in the region . DT NN IN NNS VBZ VBN TO VB RB JJR NN IN DT NN . Officials continue to urge people to go to higher ground . NNS VBP TO VB NNS TO VB TO JJR NN . The Russian and Napa rivers have now receded from flood levels and officials do not expect the additional rains to again cause them to breach their banks . DT JJ CC NNP NNS VBP RB VBN IN NN NNS CC NNS VBP RB VB DT JJ NNS TO RB VB PRP TO VB PRP$ NNS . But the storms are threatening the streak of good weather for Pasadena 's annual Rose Bowl parade Monday before the College Football Championship game . CC DT NNS VBP VBG DT NN IN JJ NN IN NNP POS JJ NNP NNP NN NNP IN DT NNP NNP NNP NN . It has not rained during the event since 1955 . PRP VBZ RB VBN IN DT NN IN CD . France has indicated it would support referring Iran to the U.N. Security Council for possible sanctions , if Tehran fails to meet its obligations for nuclear non-proliferation . NNP VBZ VBN PRP MD VB VBG NNP TO DT NNP NNP NNP IN JJ NNS , IN NNP VBZ TO VB PRP$ NNS IN JJ NN . French Prime Minister Dominique de Villepin , speaking at a United Nations summit of world leaders , did not mention Iran by name . JJ NNP NNP NNP NNP NNP , NN IN DT NNP NNP NN IN NN NNS , VBD RB VB NNP IN NN . But he said such a referral for sanctions is ' legitimate ' once dialogue has been exhausted . CC PRP VBD PDT DT NN IN NNS VBZ `` JJ `` RB NN VBZ VBN VBN . President Bush , in an address to the General Assembly , said countries that sponsor terrorism and pursue weapons of mass destruction must be sent a message that they will not be allowed to threaten world peace . NNP NNP , IN DT NN TO DT NNP NNP , VBD NNS WDT VBP NN CC VB NNS IN NN NN MD VB VBN DT NN IN PRP MD RB VB VBN TO VB NN NN . The United States accuses Iran of using its nuclear program to develop atomic weapons -- a charge Tehran has repeatedly denied . DT NNP NNPS VBZ NNP IN VBG PRP$ JJ NN TO VB JJ NNS IN DT NN NNP VBZ RB VBN . Washington is pushing to have Iran referred to the Security Council . NNP VBZ VBG TO VB NNP VBN TO DT NNP NNP . The European Union has warned Iran to stop uranium processing and enrichment activities or face referral to the Security Council . DT NNP NNP VBZ VBN NNP TO VB NN NN CC NN NNS CC NN NN TO DT NNP NNP . Two senior Taiwanese Cabinet ministers have offered to resign , following the ruling Democratic Progressive Party 's defeat in legislative elections held last week . CD JJ JJ NN NNS VBP VBN TO VB , VBG DT NN JJ NNP NNP POS NN IN JJ NNS VBN JJ NN . Government Information Office chief Shieh Jhy-wey told reporters Friday that he wanted to quit ahead of the Cabinet 's planned mass resignation on January 28 . NNP NNP NNP NN NNP NNP VBD NNS NNP IN PRP VBD TO VB RB IN DT NNP POS JJ NN NN IN NNP CD . Media reports say Education Minister Tu Cheng-sheng has also offered to go as well . NNS NNS VBP NNP NNP NNP NNP VBZ RB VBN TO VB RB RB . In last week 's elections , the opposition Nationalists won 81 of the 113 seats in Taiwan 's legislature . IN JJ NN POS NNS , DT NN NNS VBD CD IN DT CD NNS IN NNP POS NN . The Nationalists campaigned on a theme of improving ties with China and strengthening Taiwan 's stagnant economy , which they blamed on President Chen Shu-bian 's pro-independence stance . DT NNPS VBD IN DT NN IN VBG NNS IN NNP CC VBG NNP POS JJ NN , WDT PRP VBD IN NNP NNP NNP POS JJ NN . China and Taiwan split in 1949 during the Chinese civil war , and Beijing regards the self-ruled island as part of its territory . NNP CC NNP NN IN CD IN DT JJ JJ NN , CC NNP VBZ DT JJ NN IN NN IN PRP$ NN . China has threatened to use force if Taiwan takes steps towards formal independence . NNP VBZ VBN TO VB NN IN NNP VBZ NNS IN JJ NN . Insurgents in Iraq carried out a series of attacks Wednesday , as they pressed on with their violent campaign to disrupt Sunday 's national elections . NNS IN NNP VBD RP DT NN IN NNS NNP , IN PRP VBD IN IN PRP$ JJ NN TO VB NNP POS JJ NNS . In northern Iraq , around Kirkuk , three car bomb blasts killed at least five people , including policemen . IN JJ NNP , IN NNP , CD NN NN NNS VBD IN JJS CD NNS , VBG NNS . In Baquba , also in the north , at least one policeman was killed when gunmen attacked the local offices of three political parties contesting in the upcoming vote . IN NNP , RB IN DT NN , IN JJS CD NN VBD VBN WRB NNS VBD DT JJ NNS IN CD JJ NNS VBG IN DT JJ NN . The U.S. military says one soldier was killed and two others wounded in Tikrit , where insurgents attacked their patrol with rocket propelled grenades . DT NNP NN VBZ CD NN VBD VBN CC CD NNS VBD IN NNP , WRB NNS VBD PRP$ NN IN NN VBN NNS . A U.S. military convoy also came under attack on the road to Baghdad 's airport . DT NNP JJ NN RB VBD IN NN IN DT NN TO NNP POS NN . Tuesday , U.S. and Iraqi forces said they were stepping up security efforts ahead of Sunday 's vote . NNP , NNP CC JJ NNS VBD PRP VBD VBG RP NN NNS RB IN NNP POS NN . The Israeli military says it will complete its withdrawal from the Gaza Strip by September 15 , but warned it will strike the territory hard if Israel comes under attack . DT JJ NN VBZ PRP MD VB PRP$ NN IN DT NNP NNP IN NNP CD , CC VBD PRP MD VB DT NN RB IN NNP VBZ IN NN . The warning came as Palestinian militants on Saturday reaffirmed their plan to resist disarmament , a key to peace efforts between the Israelis and Palestinians . DT NN VBD IN JJ NNS IN NNP VBD PRP$ NN TO VB NN , DT NN TO NN NNS IN DT NNS CC NNS . In a direct challenge to the Palestinian leadership , Hamas ' secretive military wing has emerged from hiding and posted information about its command structure on its Web site . IN DT JJ NN TO DT JJ NN , NNP POS JJ JJ NN VBZ VBN IN NN CC VBD NN IN PRP$ NN NN IN PRP$ NNP NN . For the first time , the group has identified its leadership , including the commander of the Ezzedine al-Qassem Brigade military wing , Mohammed Deif . IN DT JJ NN , DT NN VBZ VBN PRP$ NN , VBG DT NN IN DT NNP NNP NNP JJ NN , NNP NNP . In an interview posted on the Web site , the elusive commander warned the Palestinian leadership not to contemplate any move to disarm the militants . IN DT NN VBN IN DT NN NN , DT JJ NN VBD DT JJ NN RB TO VB DT NN TO VB DT NNS . Canada says it has discovered what may be another case of mad cow disease . NNP VBZ PRP VBZ VBN WP MD VB DT NN IN JJ NN NN . The news comes just one day after the United States announced plans to reopen its border in March to nearly all Canadian beef and live cattle . DT NN VBZ RB CD NN IN DT NNP NNP VBD NNS TO VB PRP$ NN IN NNP TO RB DT JJ NN CC JJ NNS . U.S. officials banned the import of Canadian cattle in May , 2003 after Canada found its first case of the disease . NNP NNS VBD DT NN IN JJ NNS IN NNP , CD IN NNP VBD PRP$ JJ NN IN DT NN . The Canadian Food Inspection Agency says the suspected new case involves a 10-year-old dairy cow , but the human food and animal feed systems have not been effected . DT JJ NNP NNP NNP VBZ DT JJ JJ NN VBZ DT JJ NN NN , CC DT JJ NN CC NN NN NNS VBP RB VBN VBN . The agency says final results from tests on the cow will be ready in three to five days . DT NN VBZ JJ NNS IN NNS IN DT NN MD VB JJ IN CD CC CD NNS . Mad cow disease attacks the central nervous system of cattle and can be harmful to humans if tainted meat is consumed . JJ NN NN VBZ DT JJ JJ NN IN NNS CC MD VB JJ TO NNS IN JJ NN VBZ VBN . India says it has successfully test-fired two nuclear-capable missiles . NNP VBZ PRP VBZ RB VBN CD JJ NNS . Defense sources say the Prithvi-II missiles were fired Monday from a test range in Chandipur in eastern Orissa state . NNP NNS VBP DT NNP NNS VBD VBN NNP IN DT NN NN IN NNP IN JJ NNP NN . The missile has a range of about 220 kilometers and can carry a 500-kilogram warhead . DT NN VBZ DT NN IN IN CD NNS CC MD VB DT JJ NN . Analysts say Monday 's test is considered routine and unlikely to aggravate tensions with longtime rival Pakistan . NNS VBP NNP POS NN VBZ VBN JJ CC JJ TO VB NNS IN JJ JJ NNP . The United Nations Tribunal in The Hague has released its indictment against former Kosovo Prime Minister Ramush Haradinaj , charging him with 37 counts of war crimes and crimes against humanity . DT NNP NNPS NNP IN DT NNP VBZ VBN PRP$ NN IN JJ NNP NNP NNP NNP NNP , VBG PRP IN CD NNS IN NN NNS CC NNS IN NN . The indictment , unsealed Thursday , charges Mr. Haradinaj and two other former Kosovo ethnic Albanian guerilla leaders with murder , rape , deportation and other offenses . DT NN , JJ NNP , VBZ NNP NNP CC CD JJ JJ NNP JJ JJ NN NNS IN NN , NN , NN CC JJ NNS . The two other men , Idriz Balaj and Lahi Brahimaj , face 35 counts each of war crimes and crimes against humanity . DT CD JJ NNS , NNP NNP CC NNP NNP , NN CD VBZ DT IN NN NNS CC NNS IN NN . Hague prosecutors say Mr. Haradinaj and the two other men , whom the indictment describes as his wartime subordinates , persecuted , mistreated and killed ethnic Serbs in 1998 . NNP NNS VBP NNP NNP CC DT CD JJ NNS , WP DT NN VBZ IN PRP$ NN NNS , VBN , VBN CC VBN JJ NNS IN CD . The alleged offenses took place during the conflict between ethnic Albanian guerrillas and Serbian and Yugoslav forces in Kosovo . DT JJ NNS VBD NN IN DT NN IN JJ JJ NNS CC JJ CC JJ NNS IN NNP . The three men gave themselves up to the court Wednesday , one day after Mr. Haradinaj resigned as Kosovo prime minister . DT CD NNS VBD PRP RP TO DT NN NNP , CD NN IN NNP NNP VBD IN NNP JJ NN . Health officials in India have reported the country 's first death from the H1N1 swine flu virus . NN NNS IN NNP VBP VBN DT NN POS JJ NN IN DT NNP NN NN NN . Officials quoted in media reports say the victim was a 14-year-old girl in the western city of Pune . NNS VBN IN NNS NNS VBP DT NN VBD DT JJ NN IN DT JJ NN IN NNP . India has reported hundreds of cases of swine flu but Monday 's reported death is the country 's first . NNP VBZ VBN NNS IN NNS IN NN NN CC NNP POS VBN NN VBZ DT NN POS JJ . The World Health Organization has declared the swine flu virus a pandemic . DT NNP NNP NNP VBZ VBN DT JJ NN NN DT NN . Since late July , The WHO reports 1,34,503 cases of swine flu worldwide and 816 deaths . IN JJ NNP , DT NNP VBZ CD NNS IN NN NN NN CC CD NNS . Health experts say the majority of patients infected with the virus recover fully within a week , even without any medical treatment . NN NNS VBP DT NN IN NNS VBN IN DT NN VB RB IN DT NN , RB IN DT JJ NN . Amnesty International has reported to the United Nations that Brazil has scarcely improved its human rights record over the past decade . NNP NNP VBZ VBN TO DT NNP NNP IN NNP VBZ RB VBN PRP$ JJ NNS NN IN DT JJ NN . The international human rights group Tuesday submitted a report to the U.N. Human Rights Committee in Geneva . DT JJ JJ NNS NN NNP VBD DT NN TO DT NNP NNP NNP NNP IN NNP . It expresses concern about continued high numbers of extra-judicial killings , the widespread use of torture , and attacks against human rights defenders by police officers in Brazil That U.N. committee is to begin Wednesday to conduct its own review of Brazil 's progress on human rights . PRP VBZ NN IN VBN JJ NNS IN JJ NNS , DT JJ NN IN NN , CC NNS IN JJ NNS NNS IN NN NNS IN NNP IN NNP NN VBZ TO VB NNP TO VB PRP$ JJ NN IN NNP POS NN IN JJ NNS . The Amnesty report says despite implementation of a National Human Rights Plan in 1996 and an anti-torture law in 1997 , Brazilian authorities continue to abuse their power , and that incidents of abuse often go unreported or unpunished . DT NNP NN VBZ IN NN IN DT NNP NNP NNP NNP IN CD CC DT JJ NN IN CD , JJ NNS VBP TO VB PRP$ NN , CC IN NNS IN NN RB VBP JJ CC JJ . It says frequent targets for such abuse include include poor black or mixed-race men who are suspected of a crime . PRP VBZ JJ NNS IN JJ NN VBP VBP JJ JJ CC JJ NNS WP VBP VBN IN DT NN . Hundreds of Pakistani women have gathered in the capital , Islamabad , to denounce President Pervez Musharraf 's reported remarks about rape victims in the country , and to demand his apology . NNS IN JJ NNS VBP VBN IN DT NN , NNP , TO VB NNP NNP NNP POS JJ NNS IN NN NNS IN DT NN , CC TO VB PRP$ NN . The participants condemned the comments published in the Washington Post , in which General Musharraf said that many Pakistanis believe crying rape is an easy way to get a visa to go abroad and make money . DT NNS VBD DT NNS VBN IN DT NNP NNP , IN WDT NNP NNP VBD IN JJ NNS VBP VBG NN VBZ DT JJ NN TO VB DT NN TO VB RB CC VB NN . The Pakistani leader insists he was misquoted and was only expressing a commonly held opinion in Pakistan , not his own . DT JJ NN VBZ PRP VBD VBN CC VBD RB VBG DT RB VBN NN IN NNP , RB PRP$ NN . But the women activists say he should have been careful in choosing his words about rape victims . CC DT NNS NNS VBP PRP MD VB VBN JJ IN VBG PRP$ NNS IN NN NNS . Pakistani human rights groups have also been protesting the so-called ' honor killings ' of women in the country . JJ JJ NNS NNS VBP RB VBN VBG DT JJ `` NN NNS `` IN NNS IN DT NN . The groups say hundreds of women are killed every year in Pakistan in the name of family honor after they are accused of having affairs . DT NNS VBP NNS IN NNS VBP VBN DT NN IN NNP IN DT NN IN NN NN IN PRP VBP VBN IN VBG NNS . A well-known U.S. consumer group is calling for a ban on some of the most widely-used dyes in food products sold in the United States and elsewhere . DT JJ NNP NN NN VBZ VBG IN DT NN IN DT IN DT RBS JJ NNS IN NN NNS VBN IN DT NNP NNPS CC RB . The Center for Science in the Public Interest says there is evidence that these dyes are harmful for children . DT NNP IN NNP IN DT NNP NN VBZ EX VBZ NN IN DT NNS VBP JJ IN NNS . VOA 's Carol Pearson has more . NNP POS NNP NNP VBZ RBR . Negotiators from Iran and several European countries have resumed talks in Geneva on resolving the international standoff over Tehran 's nuclear program . NNS IN NNP CC JJ JJ NNS VBP VBN NNS IN NNP IN VBG DT JJ NN IN NNP POS JJ NN . Iran insists it has the right to enrich uranium , which can be used in energy production and nuclear weapons . NNP VBZ PRP VBZ DT NN TO VB NN , WDT MD VB VBN IN NN NN CC JJ NNS . Britain , France and Germany say Iran must permanently abandon such activities . NNP , NNP CC NNP VBP NNP MD RB VB JJ NNS . Iranian officials have said they will never agree to such a halt . JJ NNS VBP VBN PRP MD RB VB TO PDT DT NN . The latest round of confidential talks is scheduled to continue through Thursday . DT JJS NN IN JJ NNS VBZ VBN TO VB IN NNP . Last week , diplomats at an International Atomic Energy Agency meeting in Vienna said Iran is building a system of underground tunnels to conceal and protect parts of its nuclear program . JJ NN , NNS IN DT NNP NNP NNP NNP NN IN NNP VBD NNP VBZ VBG DT NN IN JJ NNS TO VB CC VB NNS IN PRP$ JJ NN . The United States maintains Iran is trying to covertly develop nuclear weapons , but Tehran says its program is meant only to meet the country 's energy needs . DT NNP NNPS VBZ NNP VBZ VBG TO RB VB JJ NNS , CC NNP VBZ PRP$ NN VBZ VBN RB TO VB DT NN POS NN NNS . Japanese officials have lifted the tsunami warning they issued for the nation 's Pacific coastline after strong earthquakes struck the Kuril Islands northeast of Japan earlier Wednesday . JJ NNS VBP VBN DT NN NN PRP VBD IN DT NN POS NNP NN IN JJ NNS VBD DT NNP NNP NN IN NNP RB NNP . Earthquake monitoring agencies recorded a quake with a magnitude of at least 7.8 followed by three tremors with magnitudes of 6 or higher . NN NN NNS VBD DT NN IN DT NN IN IN JJS CD VBN IN CD NNS IN NNS IN CD CC JJR . Japanese officials advised people in Pacific coastal areas to flee to higher ground , but only minimal waves were reported in northern Japan . JJ NNS VBD NNS IN NNP JJ NNS TO VB TO JJR NN , CC RB JJ NNS VBD VBN IN JJ NNP . The Japanese Meteorological agency warns other waves still could follow and urged continued caution . DT JJ JJ NN VBZ JJ NNS RB MD VB CC VBD JJ NN . Strong earthquakes have the potential to generate a destructive wave that can strike coastlines near the epicenter within minutes of the quake . JJ NNS VBP DT JJ TO VB DT JJ NN WDT MD VB NNS IN DT NN IN NNS IN DT NN . Iraq 's president says he expects the country 's new constitution to be ready Sunday , one day ahead of schedule . NNP POS NN VBZ PRP VBZ DT NN POS JJ NN TO VB JJ NNP , CD NN RB IN NN . Jalal Talabani told reporters Saturday that the committee drafting the document had resolved several outstanding issues . NNP NNP VBD NNS NNP IN DT NN VBG DT NN VBD VBN JJ JJ NNS . He said the delegates are working to reach agreement on the issues of federalism and the relationship between Islam and the state . PRP VBD DT NNS VBP VBG TO VB NN IN DT NNS IN NN CC DT NN IN NNP CC DT NN . Some members of the 71-person drafting committee say most areas of disagreement have been resolved . DT NNS IN DT JJ NN NN VBP RBS NNS IN NN VBP VBN VBN . Meanwhile , a roadside bomb killed a U.S. soldier and wounded another in western Baghdad . RB , DT NN NN VBD DT NNP NN CC VBD DT IN JJ NNP . And residents near the western city of Ramadi are blaming U.S. troops for a shooting incident Friday outside a mosque that local officials say killed 15 people , eight of them children . CC NNS IN DT JJ NN IN NNP VBP VBG NNP NNS IN DT NN NN NNP IN DT NN IN JJ NNS VBP VBN CD NNS , CD IN PRP NNS . The U.S. military says its troops were not involved in any shooting in the area . DT NNP NN VBZ PRP$ NNS VBD RB VBN IN DT NN IN DT NN . A U.S. government report says the country 's trade deficit rose to an all-time high of $ 60.3 billion in November . DT NNP NN NN VBZ DT NN POS NN NN VBD TO DT JJ NN IN $ CD CD IN NNP . The Commerce Department says the trade gap grew nearly eight percent from the previous record of $ 56 billion in October . DT NNP NNP VBZ DT NN NN VBD RB CD NN IN DT JJ NN IN $ CD CD IN NNP . The department says the unexpected increase reflected record levels for imports of oil and consumer goods , while exports fell . DT NN VBZ DT JJ NN VBD NN NNS IN NNS IN NN CC NN NNS , IN NNS VBD . The trade deficit through November totaled $ 561 billion , which exceeds the record for all of 2003 . DT NN NN IN NNP VBD $ CD CD , WDT VBZ DT NN IN DT IN CD . The Associated Press quotes U.S. Treasury Secretary John Snow as saying the trade gap reflects the fact that Americans are becoming more prosperous . DT NNP NNP VBZ NNP NNP NNP NNP NNP IN VBG DT NN NN VBZ DT NN IN NNS VBP VBG RBR JJ . A senior Palestinian official says President Mahmoud Abbas will meet with Israeli Foreign Minister Tzipi Livni on the sidelines of an economic conference in Egypt . DT JJ JJ NN VBZ NNP NNP NNP MD VB IN JJ NNP NNP NNP NNP IN DT NNS IN DT JJ NN IN NNP . Saeb Erekat said Thursday the meeting has been arranged for Sunday at the Egyptian resort of Sharm el-Sheikh . NNP NNP VBD NNP DT NN VBZ VBN VBN IN NNP IN DT JJ NN IN NNP NNP . Mark Regev , a spokesman for the Israeli Foreign Ministry did not confirm the meeting , saying only that Livni 's schedule has not been finalized . NNP NNP , DT NN IN DT JJ NNP NNP VBD RB VB DT NN , VBG RB IN NNP POS NN VBZ RB VBN VBN . A meeting between the two would be the first high-level contact between the parties since Hamas Islamists were swept to power in Palestinian elections in January . DT NN IN DT CD MD VB DT JJ JJ NN IN DT NNS IN NNP NNPS VBD VBN TO NN IN JJ NNS IN NNP . Israel has boycotted the Hamas-led government and ruled out peace talks unless the militant group renounces violence , recognizes Israel 's right to exist and accepts interim Israeli- Palestinian accords . NNP VBZ VBN DT JJ NN CC VBD RP NN NNS IN DT JJ NN VBZ NN , VBZ NNP POS NN TO VB CC VBZ JJ JJ JJ NNS . Hamas leaders say negotiations with Israel would be a waste of time . NNP NNS VBP NNS IN NNP MD VB DT NN IN NN . British insurance company Prudential says it will buy the Asian unit of U.S. insurer AIG for $ 35 billion , allowing AIG to repay some of the money it owes U.S. taxpayers . JJ NN NN NNP VBZ PRP MD VB DT JJ NN IN NNP NN NNP IN $ CD CD , VBG NNP TO VB DT IN DT NN PRP VBZ NNP NNS . Prudential announced its proposed takeover of AIG 's AIA Group Monday , saying the deal will make the British company the largest insurer in Southeast Asia . NNP VBD PRP$ JJ NN IN NNP POS NNP NNP NNP , VBG DT NN MD VB DT JJ NN DT JJS NN IN NNP NNP . Prudential says AIG will get $ 25 billion in cash and $ 10 billion in new Prudential shares in return for AIA . NNP VBZ NNP MD VB $ CD CD IN NN CC $ CD CD IN JJ JJ NNS IN NN IN NNP . The deal is subject to approval by shareholders and regulators . DT NN VBZ JJ TO NN IN NNS CC NNS . AIG says it will use the funds to repay some of the $ 180 billion it received in a U.S. government bailout in 2008 during the height of the global financial crisis . NNP VBZ PRP MD VB DT NNS TO VB DT IN DT $ CD CD PRP VBD IN DT NNP NN NN IN CD IN DT NN IN DT JJ JJ NN . Prudential already has a significant presence in Asia 's insurance market . NNP RB VBZ DT JJ NN IN NNP POS NN NN . Its chief executive Tidjane Thiam said Monday he sees Asia as the ' engine ' of the group 's future growth . PRP$ JJ NN NNP NNP VBD NNP PRP VBZ NNP IN DT `` NN `` IN DT NN POS JJ NN . President Bush has restated the message he delivered to the United Nations General Assembly earlier this week , a call to support moderates and reformers in the Middle East . NNP NNP VBZ VBN DT NN PRP VBD TO DT NNP NNP NNP NNP RBR DT NN , DT NN TO VB NNS CC NNS IN DT NNP NNP . In his weekly Saturday radio address , Mr. Bush said the alternative is to yield the future to terrorists and extremists . IN PRP$ JJ NNP NN NN , NNP NNP VBD DT NN VBZ TO VB DT NN TO NNS CC NNS . Mr. Bush noted that while he was in New York this week , he met with Palestinian President Mahmoud Abbas . NNP NNP VBD IN IN PRP VBD IN NNP NNP DT NN , PRP VBD IN JJ NNP NNP NNP . He said that by supporting moderate leaders like Mr. Abbas , the United States can help Palestinians and Israelis achieve peace in the Middle East . PRP VBD IN IN VBG JJ NNS IN NNP NNP , DT NNP NNPS MD VB NNS CC NNS VBP NN IN DT NNP NNP . The president said he plans to meet next week with the presidents of Pakistan and Afghanistan to discuss the fight against terrorism in their region . DT NN VBD PRP VBZ TO VB JJ NN IN DT NNS IN NNP CC NNP TO VB DT NN IN NN IN PRP$ NN . The British government is planning to send an additional 220 soldiers to Iraq to help replace Dutch troops who are leaving the country later this year . DT JJ NN VBZ VBG TO VB DT JJ CD NNS TO NNP TO VB VB JJ NNS WP VBP VBG DT NN RB DT NN . Defense Minister Geoff Hoon made the announcement Thursday . NNP NNP NNP NNP VBD DT NN NNP . The Dutch government is to pull its 1,400 troops out of Iraq on March 15 . DT JJ NN VBZ TO VB PRP$ CD NNS IN IN NNP IN NNP CD . Mr. Hoon says Britain will deploy 600 of its soldiers to provide stability in the area of southern Iraq evacuated by the Dutch . NNP NNP VBZ NNP MD VB CD IN PRP$ NNS TO VB NN IN DT NN IN JJ NNP VBN IN DT NNS . He said the 220 additional British troops will supplement Iraqi forces and provide them with logistics and other ' essential support . ' PRP VBD DT CD JJ JJ NNS MD VB JJ NNS CC VB PRP IN NNS CC JJ `` JJ NN . `` Mr. Hoon said British troops will also support Iraqi security forces in the run-up to Sunday 's general elections and help protect Japanese troops who are engaged in construction projects . NNP NNP VBD JJ NNS MD RB VB JJ NN NNS IN DT NN TO NNP POS JJ NNS CC VB VB JJ NNS WP VBP VBN IN NN NNS . About 9,000 British troops are deployed in Iraq , concentrated in the southern provinces around Basra . IN CD JJ NNS VBP VBN IN NNP , VBN IN DT JJ NNS IN NNP . Venezuelan President Hugo Chavez has made another verbal attack on British Prime Minister Tony Blair , saying he should return the Falkland Islands to Argentina . JJ NNP NNP NNP VBZ VBN DT JJ NN IN JJ NNP NNP NNP NNP , VBG PRP MD VB DT NNP NNP TO NNP . Mr. Chavez has strongly criticized the British leader for saying that Venezuela should respect the rules of the international community . NNP NNP VBZ RB VBN DT JJ NN IN VBG DT NNP MD VB DT NNS IN DT JJ NN . Mr. Blair made the comment Wednesday in the British parliament . NNP NNP VBD DT NN NNP IN DT JJ NN . Mr. Chavez said Thursday it was Britain that has violated international law by joining the U.S.-led invasion of Iraq . NNP NNP VBD NNP PRP VBD NNP WDT VBZ VBN JJ NN IN VBG DT JJ NN IN NNP . He also accused Britain of ' stealing ' the Falkland Islands from Argentina , and called on Mr. Blair to give them back . PRP RB VBD NNP IN `` VBG `` DT NNP NNP IN NNP , CC VBD IN NNP NNP TO VB PRP RB . Argentina claims sovereignty over the Falkland Islands , and invaded the territory in 1982 , triggering a three-month war with Britain in which hundreds were killed on both sides . NNP VBZ NN IN DT NNP NNP , CC VBD DT NN IN CD , VBG DT JJ NN IN NNP IN WDT NNS VBD VBN IN DT NNS . Britain repelled the invasion , and continues to control the island chain . NNP VBD DT NN , CC VBZ TO VB DT NN NN . Indonesian Muslim protesters display big banner saying Save Al Aqsa Mosque during anti-Israel protest in Jakarta Thousands of Muslims across Indonesia staged peaceful anti-Israel protests Sunday , including a major demonstration at the U.S. Embassy in Jakarta . JJ NN NNS VBP JJ NN VBG NNP NNP NNP NNP IN JJ NN IN NNP NNS IN NNPS IN NNP VBD JJ JJ NNS NNP , VBG DT JJ NN IN DT NNP NNP IN NNP . As many as 10,000 protesters from the Prosperous Justice Party shouted anti-American slogans outside the heavily guarded embassy in the Indonesian capital . RB JJ IN CD NNS IN DT NNP NNP NNP VBD JJ NNS IN DT RB VBN NN IN DT JJ NN . Speakers lashed out at Israel and demanded Washington stop financial and political support for the Jewish state . NNS VBD RP IN NNP CC VBD NNP VB JJ CC JJ NN IN DT JJ NN . Traffic in the center of the city was disrupted for several hours . NN IN DT NN IN DT NN VBD VBN IN JJ NNS . Party members held smaller protests in at least three other cities across the world 's most populous Muslim nation . NNP NNS VBD JJR NNS IN IN JJS CD JJ NNS IN DT NN POS RBS JJ NN NN . Indonesia does not have diplomatic relations with Israel , and there are periodic street protests in the country against the Jewish state and against the U.S. war on terrorism . NNP VBZ RB VB JJ NNS IN NNP , CC EX VBP JJ NN NNS IN DT NN IN DT JJ NN CC IN DT NNP NN IN NN . Afghan President Hamid Karzai condemned a recent drug raid by U.S. and Russian forces as a violation of Afghan sovereignty . JJ NNP NNP NNP VBD DT JJ NN NN IN NNP CC JJ NNS IN DT NN IN JJ NN . U.S. and Russian officials say they seized a metric ton of heroin from four clandestine laboratories earlier this week in Nangarhar province , near the border with Pakistan . NNP CC JJ NNS VBP PRP VBD DT JJ NN IN NN IN CD JJ NNS RBR DT NN IN NNP NN , IN DT NN IN NNP . Mr. Karzai was outraged , saying in a statement Saturday that he was not previously informed of the operation . NNP NNP VBD VBN , VBG IN DT NN NNP IN PRP VBD RB RB VBN IN DT NN . U.S. and Russian officials have both said that Afghan forces were involved in the raid . NNP CC JJ NNS VBP DT VBD IN JJ NNS VBD VBN IN DT NN . Russian foreign minister Sergei Lavrov told Itar-Tass news agency Saturday that Russia was satisfied with the operation and plans to continue to cooperate in the fight against drug trafficking . JJ JJ NN NNP NNP VBD JJ NN NN NNP IN NNP VBD VBN IN DT NN CC VBZ TO VB TO VB IN DT NN IN NN NN . Russia has been wary of supporting NATO military operations in Afghanistan but has called on NATO to do more to combat the Afghan heroin trade . NNP VBZ VBN JJ IN VBG NNP JJ NNS IN NNP CC VBZ VBN IN NNP TO VB JJR TO VB DT JJ NN NN . The Iraqi parliament has again failed to approve a law that would govern next year 's national elections . DT JJ NN VBZ RB VBN TO VB DT NN WDT MD VB JJ NN POS JJ NNS . Iraqi lawmakers say they will consider the bill again on Sunday . JJ NNS VBP PRP MD VB DT NN RB IN NNP . Their repeated failure to reach a consensus on the controversial bill has raised doubts that the elections will take place as planned on January 16 . PRP$ JJ NN TO VB DT NN IN DT JJ NN VBZ VBN NNS IN DT NNS MD VB NN IN VBN IN NNP CD . The election commission chief , Faraj al-Haidari , had warned parliament that if it did not approve the bill this week , there would not be enough time to get ready for the vote . DT NN NN NN , NNP NNP , VBD VBN NN IN IN PRP VBD RB VB DT NN DT NN , EX MD RB VB JJ NN TO VB JJ IN DT NN . Lawmakers can not agree on the voting guidelines for Kirkuk , an oil-rich province that is home to Kurdish , Arab and Turkmen communities . NNS MD RB VB IN DT NN NNS IN NNP , DT JJ NN WDT VBZ NN TO VB , JJ CC JJ NNS . Some parliamentarians support using current voter records for Kirkuk , which would favor Kurds . DT NNS VBP VBG JJ NN NNS IN NNP , WDT MD VB NNS . Others have suggested using a voter registry dating back to 2004 , which would favor Arabs . NNS VBP VBN VBG DT NN NN VBG RB TO CD , WDT MD VB NNS . Police say a former U.S. presidential aide whose body was found in a landfill in the northeastern U.S. state of Delaware was murdered . NNS VBP DT JJ NNP JJ NN WP$ NN VBD VBN IN DT NN IN DT JJ NNP NN IN NNP VBD VBN . Authorities announced Monday that they found the body of John Wheeler at a Wilmington , Delaware landfill on New Year 's Eve . NNS VBD NNP IN PRP VBD DT NN IN NNP NNP IN DT NNP , NNP NN IN NNP NNP POS NNP . They said his body was spotted as a trash truck was emptying its load into the landfill . PRP VBD PRP$ NN VBD VBN IN DT NN NN VBD VBG PRP$ NN IN DT NN . Police have asked the public for tips on Wheeler 's whereabouts prior to his death . NNS VBP VBN DT NN IN NNS IN NNP POS NNS RB TO PRP$ NN . He was last seen Tuesday , exiting a train from Washington , D.C. to Wilmington . PRP VBD JJ VBN NNP , VBG DT NN IN NNP , NNP TO NNP . Wheeler served in the Vietnam War and later was one of the principal backers of a controversial drive for a Vietnam War memorial in Washington , D.C. NNP VBD IN DT NNP NNP CC RB VBD CD IN DT JJ NNS IN DT JJ NN IN DT NNP NNP NN IN NNP , NNP Wheeler served in the Pentagon under four presidents . NNP VBD IN DT NNP IN CD NNS . He created a Vietnam War veterans ' leadership program for President Ronald Reagan and later an environmental conservation group for at-risk youth under President George W. Bush . PRP VBD DT NNP NNP NNS POS NN NN IN NNP NNP NNP CC RB DT JJ NN NN IN JJ NN IN NNP NNP NNP NNP . Ivory Coast 's officials say presidential elections will be held on October 30 as part of the effort to reunify the West African nation that has been divided since a rebel uprising in September 2002 . NNP NNP POS NNS VBP JJ NNS MD VB VBN IN NNP CD IN NN IN DT NN TO VB DT JJ JJ NN WDT VBZ VBN VBN IN DT NN NN IN NNP CD . The announcement Thursday is seen as a major step toward implementing a peace deal signed earlier this month in South Africa . DT NN NNP VBZ VBN IN DT JJ NN IN VBG DT NN NN VBN RBR DT NN IN NNP NNP . On Tuesday , Ivorian President Laurent Gbagbo announced that Alassane Ouattara , a formerly excluded opposition leader , would be allowed to run in the election . IN NNP , JJ NNP NNP NNP VBD IN NNP NNP , DT RB VBN NN NN , MD VB VBN TO VB IN DT NN . The popular northern leader was barred from earlier elections because of questions over his citizenship . DT JJ JJ NN VBD VBN IN JJR NNS IN IN NNS IN PRP$ NN . Mr. Ouattara 's candidacy has been a key demand by northern rebels who control half of the country . NNP NNP POS NN VBZ VBN DT JJ NN IN JJ NNS WP VBP NN IN DT NN . Thursday , Mr. Ouattara who lives in self-imposed exile in France , praised Mr. Gabgbo 's decision and said he will return to Ivory Coast soon . NNP , NNP NNP WP VBZ IN JJ NN IN NNP , VBD NNP NNP POS NN CC VBD PRP MD VB TO NNP NNP RB . An artist based in Los Angeles , California , is attracting attention with a showing of his work that combines video , audio and sculpture . DT NN VBN IN NNP NNP , NNP , VBZ VBG NN IN DT NN IN PRP$ NN IN VBZ NN , NN CC NN . Video art , or what some call ' new media art , ' has been around for some time . NNP NN , CC WP DT NN `` JJ NNS NN , `` VBZ VBN IN IN DT NN . But this artist 's work is unusual - he combines high technology and digital gadgets , making the art interactive but as in traditional art , you could put some of the sculptures in your home . CC DT NN POS NN VBZ JJ IN PRP VBZ JJ NN CC JJ NNS , VBG DT NN JJ CC IN IN JJ NN , PRP MD VB DT IN DT NNS IN PRP$ NN . VOA 's Paul Sisco reports on the artist , who calls himself simply , ' Matteo . ' NNP POS NNP NNP VBZ IN DT NN , WP VBZ PRP RB , `` NNP . `` Cuba and Panama have restored diplomatic ties , one year after they were severed due to Panama 's decision to pardon four Cubans accused of trying to assassinate Cuban President Fidel Castro . NNP CC NNP VBP VBN JJ NNS , CD NN IN PRP VBD VBN JJ TO NNP POS NN TO VB CD NNS VBN IN VBG TO VB JJ NNP NNP NNP . Cuban Foreign Minister Felipe Perez Roque and his Panamanian counterpart , Ricardo Duran , Saturday signed documents in Havana to officially declare normal relations . JJ NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , NNP VBD NNS IN NNP TO RB VB JJ NNS . Havana cut off relations with Panama on August 26 , 2004 , after then-President Mireya Moscoso pardoned the Cuban exiles . NNP VBD RP NNS IN NNP IN NNP CD , CD , IN JJ NNP NNP VBD DT JJ NNS . Her successor , Martin Torrijos , had vowed to re-establish ties after his inauguration last year . PRP$ NN , NNP NNP , VBD VBN TO VB NNS IN PRP$ NN JJ NN . Mr. Torrijos arrived Saturday in Cuba , where he attended a graduation ceremony at the Latin American School of Medicine along with Mr. Castro and Venezuelan President Hugo Chavez . NNP NNP VBD NNP IN NNP , WRB PRP VBD DT NN NN IN DT NNP NNP NNP IN NNP IN IN NNP NNP CC JJ NNP NNP NNP . A suicide car bomber in the Iraqi capital has struck a convoy carrying an elite Iraqi police unit , killing at least nine people , most of them anti-terror commandos . DT NN NN NN IN DT JJ NN VBZ VBN DT NN VBG DT JJ JJ NN NN , VBG IN JJS CD NNS , JJS IN PRP JJ NNS . Authorities say at least 10 others were wounded in the attack . NNS VBP IN JJS CD NNS VBD VBN IN DT NN . The bombing followed clashes overnight in Baghdad between U.S. troops and militiamen loyal to Shi'ite cleric Moqtada al-Sadr . DT NN VBD NNS RB IN NNP IN NNP NNS CC NNS JJ IN NNP NN NNP NNP . Coalition authorities say U.S. troops killed at least eight militiamen and wounded five others , as they sought to detain a group of fighters suspected of carrying out guerrilla attacks . NN NNS VBP NNP NNS VBD IN JJS CD NNS CC VBD CD NNS , IN PRP VBD TO VB DT NN IN NNS VBN IN VBG RP NN NNS . Elsewhere in Baghdad , police say gunmen raided a convoy of armored vehicles , killing two guards and stealing $ 8,50,000 . RB IN NNP , NNS VBP NNS VBD DT NN IN JJ NNS , VBG CD NNS CC VBG $ CD . To the south , a bomber on a bicycle blew himself up in a crowded market in Hilla , killing at least one other person and wounding dozens of others . TO DT NN , DT NN IN DT NN VBD PRP RP IN DT JJ NN IN NNP , VBG IN JJS CD JJ NN CC VBG NNS IN NNS . The European Commission says it plans to contribute $ 100 million in aid to help countries prevent the spread of bird flu . DT JJ NNP VBZ PRP VBZ TO VB $ CD CD IN NN TO VB NNS VB DT NN IN NN NN . EU External Relations Commissioner Benita Ferrero-Walder said Friday in Brussels the aid will be offered at next week 's bird flu conference in Beijing . NNP NNP NNP NNP NNP NNP VBD NNP IN NNP DT NN MD VB VBN IN JJ NN POS NN NN NN IN NNP . She noted that never before has an animal disease posed such a global threat . PRP VBD IN RB RB VBZ DT NN NN VBN JJ DT JJ NN . Thursday , the World Bank said it had approved $ 500 million in aid to help fight bird flu . NNP , DT NNP NNP VBD PRP VBD VBN $ CD CD IN NN TO VB VB NN NN . The World Health Organization says samples of the deadly H5N1 strain taken from two bird flu victims in Turkey show a slight genetic change in the virus - a sign it may be mutating into a human flu virus that could kill millions . DT NNP NNP NNP VBZ NNS IN DT JJ NNP NN VBN IN CD JJ NN NNS IN NNP VBP DT JJ JJ NN IN DT NN IN DT NN PRP MD VB VBG IN DT JJ NN NN WDT MD VB NNS . Bird flu has killed three people in Turkey and 79 in East Asia since 2003 . NN NN VBZ VBN CD NNS IN NNP CC CD IN NNP NNP IN CD . Former world 200-meter breaststroke record holder Brendan Hansen has failed to make the U.S. Olympic team in the event . JJ NN JJ NN NN NN NNP NNP VBZ VBN TO VB DT NNP NNP NN IN DT NN . Hansen held the record of 2.08.50 minutes until Japanese rival Kosuke Kitajima smashed it by nearly one second on June 7 ( 2.07.51 ) . NNP VBD DT NN IN CD NNS IN JJ JJ NNP NNP VBD PRP IN RB CD JJ IN NNP CD LRB CD RRB . On Thursday at the U.S. Olympic swimming trials in Omaha , Nebraska , Hansen was nearly three seconds slower ( 2.11.37 ) than his best time , which remains an American record . IN NNP IN DT NNP NNP NN NNS IN NNP , NNP , NNP VBD RB CD NNS JJR LRB CD RRB IN PRP$ JJS NN , WDT VBZ DT JJ NN . Hansen is on the Olympic team in the 100-meter breaststroke and could qualify in the 400-meter medley relay . NNP VBZ IN DT NNP NN IN DT JJ NN CC MD VB IN DT JJ NN NN . Katie Hoff , who qualified for four individual events and one relay , failed to advance out of the semifinals of the 100-meter freestyle . NNP NNP , WP VBD IN CD JJ NNS CC CD NN , VBD TO VB IN IN DT NNS IN DT JJ NN . That ended her bid for as many as eight medals at the Olympics . DT VBD PRP$ NN IN RB JJ IN CD NNS IN DT NNP . The Smithsonian Institution has decided to build a national museum of African American history on the National Mall in Washington , D.C. , near the Washington Monument . DT NNP NNP VBZ VBN TO VB DT JJ NN IN JJ JJ NN IN DT NNP NNP IN NNP , NNP , IN DT NNP NN . The Institution 's Board of Regents , which oversees a complex of national museums and research centers , chose the site in a voice vote late Monday . DT NNP POS NNP IN NNPS , WDT VBZ DT NN IN JJ NNS CC NN NNS , VBD DT NN IN DT NN NN JJ NNP . This new museum will be housed in a 31,500 square-meter building on the two-hectare site , a prime location for visitors because of its proximity to the Washington Monument and the White House . DT JJ NN MD VB VBN IN DT CD JJ NN IN DT JJ NN , DT JJ NN IN NNS IN IN PRP$ NN TO DT NNP NN CC DT NNP NNP . The National Museum of African American History and Culture will tell the story of black Americans from slavery through civil rights . DT NNP NNP IN NNP NNP NNP CC NNP MD VB DT NN IN JJ NNS IN NN IN JJ NNS . Officials at the Smithsonian hope to complete construction of the building by 2016 . NNS IN DT JJ NN TO JJ NN IN DT NN IN CD . An American museum that wants to honor a Cuban scientist says it is frustrated the U.S. government denied the scientist a visa to come and pick up his award . DT JJ NN WDT VBZ TO VB DT JJ NN VBZ PRP VBZ VBN DT NNP NN VBD DT NN DT NN TO VB CC VB RP PRP$ NN . A spokesman for the Tech Museum of Innovation , in San Jose , California , said the museum had wanted the federal government to grant a visa to Vicente Verez Bencomo for the Wednesday ceremony . DT NN IN DT NNP NNP IN NNP , IN NNP NNP , NNP , VBD DT NN VBD VBN DT JJ NN TO VB DT NN TO NNP NNP NNP IN DT NNP NN . The Miami Herald newspaper quoted the spokesman as saying Mr. Verez-Bencomo had been allowed entry as recently as March . DT NNP NNP NN VBD DT NN IN VBG NNP NNP VBD VBN VBN NN RB RB IN NNP . The U.S. State Department has declined to comment . DT NNP NNP NNP VBZ VBN TO VB . Mr. Verez-Bencomo was one of a number of scientists being honored for innovations that use technology to benefit mankind . NNP NNP VBD CD IN DT NN IN NNS VBG VBN IN NNS WDT VBP NN TO VB NN . He helped develop a low-cost vaccine that fights the bacteria causing pneumonia and meningitis , diseases which kill some 7,00,000 children each year . PRP VBD VB DT JJ NN WDT VBZ DT NNS VBG NN CC NN , NNS WDT VBP DT CD NNS DT NN . Zimbabwe 's main opposition group appears to be split over whether to participate in elections next month for a newly created upper house of parliament . NNP POS JJ NN NN VBZ TO VB VBN IN IN TO VB IN NNS JJ NN IN DT RB VBN JJ NN IN NN . The leader of the Movement for Democratic Change , Morgan Tsvangirai , announced Wednesday that the party had decided to boycott the November 26 poll . DT NN IN DT NN IN JJ NNP , NNP NNP , VBD NNP IN DT NN VBD VBN TO VB DT NNP CD NN . But later in the day , MDC spokesman Paul Themba-Nyathi said a majority of the party 's national council had voted in favor of participating . CC RB IN DT NN , NNP NN NNP NNP VBD DT NN IN DT NN POS JJ NN VBD VBN IN NN IN VBG . Lawmakers approved the newly created Senate in August as part of a package of constitutional reforms proposed by President Robert Mugabe . NNS VBD DT RB VBN NNP IN NNP IN NN IN DT NN IN JJ NNS VBN IN NNP NNP NNP . The opposition has strongly objected to the creation of the new upper house , calling it a ploy by the ruling party to cement its grip on power . DT NN VBZ RB VBN IN DT NN IN DT JJ JJ NN , VBG PRP DT NN IN DT VBG NN TO VB PRP$ NN IN NN . A majority of U.S. lawmakers say the revised economic bailout plan defeated Monday failed to address major concerns . DT NN IN NNP NNS VBP DT JJ JJ NN NN VBN NNP VBD TO VB JJ NNS . Lawmakers had modified President George Bush 's original $ 700 billion plan to rescue key financial institutions by adding more scrutiny and limits on dispersing the money . NNS VBD VBN NNP NNP NNP POS JJ $ CD CD NN TO VB JJ JJ NNS IN VBG JJR NN CC NNS IN VBG DT NN . The Congressional measure would have phased in funding , provided homeowners some protection and let them share in any profits of the financial firms receiving the money . DT JJ NN MD VB VBN IN NN , VBN NNS DT NN CC VB PRP VB IN DT NNS IN DT JJ NNS VBG DT NN . But even in its modified form , enough opposing members of Congress felt the bill was still flawed . CC RB IN PRP$ VBN NN , RB VBG NNS IN NNP VBD DT NN VBD RB VBN . They said both the original bill and the defeated measure put the taxpayer at far too great a risk for the benefit of large corporations and did not address underlying economic problems . PRP VBD DT DT JJ NN CC DT VBN NN VBD DT NN IN RB RB JJ DT NN IN DT NN IN JJ NNS CC VBD RB VB VBG JJ NNS . Most members of Congress face verdict of voters during election day November 4 . JJS NNS IN NNP VBP NN IN NNS IN NN NN NNP CD . The Turkish man who tried to assassinate Pope John Paul in 1981 has asked Turkish authorities to briefly allow him out of prison to attend the pope 's funeral . DT JJ NN WP VBD TO VB NNP NNP NNP IN CD VBZ VBN JJ NNS TO RB VB PRP IN IN NN TO VB DT NN POS NN . Mehmet Ali Agca 's lawyer Mustafa Demirbag said Tuesday that he has applied to the Justice Ministry for a short compassionate leave . NNP NNP NNP POS NN NNP NNP VBD NNP IN PRP VBZ VBN TO DT NNP NNP IN DT JJ NN NN . On Sunday , Agca said from his Istanbul jail cell that he had lost , in his words , his ' spiritual brother ' and was grief stricken over the pontiff 's death . IN NNP , NNP VBD IN PRP$ NNP NN NN IN PRP VBD VBN , IN PRP$ NNS , PRP$ `` JJ NN `` CC VBD JJ NN IN DT NN POS NN . Agca gravely wounded John Paul in the 1981 shooting in Saint Peter 's Square . NNP RB VBD NNP NNP IN DT CD NN IN NNP NNP POS NNP . Two years later , the pope visited Agca in the Italian prison where he served 19 years and forgave him . CD NNS RB , DT NN VBD NNP IN DT JJ NN WRB PRP VBD CD NNS CC VB PRP . In 2000 , Agca was extradited to Istanbul where he is serving out a 17-year sentence for earlier crimes committed in Turkey . IN CD , NNP VBD VBN TO VB WRB PRP VBZ VBG RP DT JJ NN IN JJR NNS VBN IN NNP . Colombia 's second-largest rebel group has accepted an offer from neighboring Venezuela to facilitate peace talks between the guerrillas and the Colombian government . NNP POS JJ NN NN VBZ VBN DT NN IN VBG NNP TO VB NN NNS IN DT NNS CC DT JJ NN . The National Liberation Army , the ELN , said in a statement dated September 16 but released Friday , that it accepts the offer from Venezuela 's government and people . DT NNP NNP NNP , DT NNP , VBD IN DT NN JJ NNP CD CC VBN NNP , IN PRP VBZ DT NN IN NNP POS NN CC NNS . There was no immediate comment from officials in Bogota , but the government of Colombian President Alvaro Uribe has shown an interest in opening talks with the ELN . EX VBD DT JJ NN IN NNS IN NNP , CC DT NN IN JJ NNP NNP NNP VBZ VBN DT NN IN VBG NNS IN DT NNP . Earlier this month , Colombia agreed to temporarily release jailed ELN rebel leader Francisco Galan to allow him to negotiate with civil society leaders about launching talks with the Uribe government . RBR DT NN , NNP VBD TO RB VB JJ NNP NN NN NNP NNP TO VB PRP TO VB IN JJ NN NNS IN VBG NNS IN DT NNP NN . The ELN and a larger rebel group , the Revolutionary Armed Forces of Colombia , are mired in a long-running civil war that also involves rightist paramilitaries and the government . DT NNP CC DT JJR NN NN , DT NNP NNP NNS IN NNP , VBP VBN IN DT JJ JJ NN WDT RB VBZ NN NNS CC DT NN . The conflict leaves thousands of people dead each year . DT NN VBZ NNS IN NNS JJ DT NN . Morocco says security forces have broken up an al-Qaida-linked militant cell that was planning attacks throughout the country . NNP VBZ NN NNS VBP VBN RP DT JJ JJ NN WDT VBD VBG NNS IN DT NN . Morocco 's state news agency quotes the Interior Ministry as saying the group consisted of 24 militants . NNP POS NN NN NN VBZ DT NNP NNP IN VBG DT NN VBD IN CD NNS . It said the group was ' planning assassinations and acts of sabotage ' targeting the security services and foreign interests in Morocco . PRP VBD DT NN VBD `` VBG NNS CC NNS IN NN `` VBG DT NN NNS CC JJ NNS IN NNP . The agency news report says four of the group 's members had been jailed previously on terror-related charges . DT NN NN NN VBZ CD IN DT NN POS NNS VBD VBN VBN RB IN JJ NNS . It says the group also recruited Moroccan citizens to send to conflict areas such as Afghanistan , Iraq and Somalia . PRP VBZ DT NN RB VBD JJ NNS TO VB TO NN NNS JJ IN NNP , NNP CC NNP . The suspects were captured after an assault on a police officer in Casablanca . DT NNS VBD VBN IN DT NN IN DT NN NN IN NNP . Bette Midler will replace Celine Dion as headliner at Caesar 's Palace Hotel-Casino in Las Vegas . NNP NNP MD VB NNP NNP IN NN IN NNP POS NNP NNP IN NNP NNP . Famed for her bawdy stage routine , the 61-year-old Midler reportedly agreed to a two-year run of 100 shows per year . VBN IN PRP$ JJ NN NN , DT JJ NNP RB VBD TO DT JJ NN IN CD NNS IN NN . Her five-night-a-week performances begin February 20 . PRP$ JJ NNS VBP NNP CD . Replacing Celine Dion is no mean feat : since inaugurating her show , ' A New Day , ' in March 2003 , the French-Canadian singer has grossed more than $ 500 million . VBG NNP NNP VBZ DT JJ NN IN IN VBG PRP$ NN , `` DT NNP NNP , `` IN NNP CD , DT JJ NN VBZ VBN JJR IN $ CD CD . She will give her final performance December 15 . PRP MD VB PRP$ JJ NN NNP CD . Sharing space in the 4,100-seat , $ 95 million Colosseum is Elton John , who will continue his 50 show-per-year schedule through 2008 . VBG NN IN DT JJ , $ CD CD NN VBZ NNP NNP , WP MD VB PRP$ CD JJ NN IN CD . Booking agent John Meglen says the new performance schedule leaves room for a probable third headliner . VBG NN NNP NNP VBZ DT JJ NN NN VBZ NN IN DT JJ JJ NN . He would not comment on who it may be , although entertainment insiders have mentioned Cher as a likely candidate . PRP MD RB VB IN WP PRP MD VB , IN NN NNS VBP VBN NNP IN DT JJ NN . Venezuela has agreed to delay its planned suspension of some U.S. flights to allow talks with the affected airlines . NNP VBZ VBN TO VB PRP$ VBN NN IN DT NNP NNS TO VB NNS IN DT JJ NNS . In a statement , the Venezuelan aviation ministry said the restrictions , set to take effect on Wednesday , will now be postponed until March 30 . IN DT NN , DT JJ NN NN VBD DT NNS , VBN TO VB NN IN NNP , MD RB VB VBN IN NNP CD . It added that officials met Friday with representatives from several U.S. airlines , and said more talks are expected in coming days . PRP VBD IN NNS VBD NNP IN NNS IN JJ NNP NNS , CC VBD JJR NNS VBP VBN IN VBG NNS . U.S. officials have said the suspension of flights would violate a 50-year-old aviation deal between the nations . NNP NNS VBP VBN DT NN IN NNS MD VB DT JJ NN NN IN DT NNS . They expressed hope that talks will help resolve the dispute . PRP VBD NN IN NNS MD VB VB DT NN . Venezuelan officials announced the ban last week in response to U.S. restrictions placed on Venezuelan planes 10-years-ago because of security concerns . JJ NNS VBD DT NN JJ NN IN NN TO NNP NNS VBN IN JJ NNS JJ IN IN NN NNS . They say the United States has failed to acknowledge security improvements taken by Venezuelan companies in recent years . PRP VBP DT NNP NNP VBZ VBN TO VB NN NNS VBN IN JJ NNS IN JJ NNS . Iraq has agreed to resume imports of Australian wheat as long as they are not handled by the monopoly wheat exporter at the center of a bribery investigation . NNP VBZ VBN TO VB NNS IN JJ NN RB RB IN PRP VBP RB VBN IN DT NN NN NN IN DT NN IN DT NN NN . The Australian government is investigating whether A.W.B Limited paid about $ 220 million to secure more than two billion dollars in wheat contracts with Saddam Hussein 's government . DT JJ NN VBZ VBG IN NNP NNP VBD RB $ CD CD TO VB JJR IN CD CD NNS IN NN NNS IN NNP NNP POS NN . Earlier this month , the Iraqi Grain Board suspended its relationship with A.W.B. . RBR DT NN , DT JJ NNP NNP VBD PRP$ NN IN NNP . Australian Trade Minister Mark Vaile made an emergency trip to Iraq last week to discuss the suspension . JJ NNP NNP NNP NNP VBD DT NN NN TO NNP JJ NN TO VB DT NN . Vaile told ABC radio Monday that the new agreement with Iraq is something that has to be worked out with the industry and with growers . NNP VBD NNP NN NNP IN DT JJ NN IN NNP VBZ DT WDT VBZ TO VB VBN RP IN DT NN CC IN NNS . Prime Minister John Howard has rejected accusations that his government knew about the kickbacks . NNP NNP NNP NNP VBZ VBN NNS IN PRP$ NN VBD IN DT NNS . The BBC says it may start to filter out the sound of vuvuzelas from its World Cup broadcasts , following complaints about the incessant drone . DT NNP VBZ PRP MD VB TO VB RP DT NN IN NNS IN PRP$ NNP NNP NNS , VBG NNS IN DT NN NN . The BBC said Tuesday it had received 545 complaints from viewers , forcing officials to look into options to reduce the noise from the plastic trumpets . DT NNP VBD NNP PRP VBD VBN CD NNS IN NNS , VBG NNS TO VB IN NNS TO VB DT NN IN DT NN NNS . One option would be to offer an electronic filter that reduces most of the ambient noise while maintaining the game commentary . CD NN MD VB TO VB DT JJ NN WDT VBZ JJS IN DT JJ NN IN VBG DT NN NN . Football coaches , players and reporters have all complained about the constant din generated by thousands of vuvuzelas at the stadiums . NN NNS , NNS CC NNS VBP DT VBN IN DT JJ NN VBN IN NNS IN NNS IN DT NNS . However , FIFA officials say the horns are a South African tradition and will not be banned . RB , NNP NNS VBP DT NNS VBP DT JJ JJ NN CC MD RB VB VBN . Camel racers in the United Arab Emirates are experimenting with robots now that it is no longer legal to use small boys as jockeys . NNP NNS IN DT NNP NNP NNPS VBP VBG IN NNS RB IN PRP VBZ RB RB JJ TO VB JJ NNS IN NNS . The UAE has instituted new regulations as of March 31 , which forbid boys younger than 16 years of age or lighter than 45 kilograms from being jockeys . DT NNP VBZ VBN JJ NNS IN IN NNP CD , WDT VBD NNS JJR IN CD NNS IN NN CC JJR IN CD NNS IN VBG NNS . Human rights groups had called the former practice of using underage jockeys a form of slavery . JJ NNS NNS VBD VBN DT JJ NN IN VBG NN NNS DT NN IN NN . The groups say boys , some as young as four , were kept in prison-like conditions and underfed to keep their weight down . DT NNS VBP NNS , DT RB JJ IN CD , VBD VBN IN JJ NNS CC VBD TO VB PRP$ NN RB . A prototype of a new robotic jockey was tested Saturday . DT NN IN DT JJ JJ NN VBD VBN NNP . The first production robots should be assembled by August , in time for the beginning of the next camel racing season . DT JJ NN NNS MD VB VBN IN NNP , IN NN IN DT NN IN DT JJ NN NN NN . A U.S. soldier has pleaded guilty to murdering a wounded 16-year-old Iraqi boy . DT NNP NN VBZ VBN JJ TO VBG DT VBN JJ JJ NN . Staff Sergeant Johnny Horne was convicted Friday of the unpremeditated murder of the civilian youth in Baghdad 's Sadr City district in August . NNP NNP NNP NNP VBD VBN NNP IN DT JJ NN IN DT JJ NN IN NNP POS NNP NNP NN IN NNP . The sergeant was one of several soldiers who had found the wounded teenager in a burning garbage truck they had just fired on . DT NN VBD CD IN JJ NNS WP VBD VBN DT JJ NN IN DT NN NN NN PRP VBD RB VBN IN . The youth had severe abdominal wounds and Horne said he decided to , in his words , ' put him out of his misery ' by shooting him in the head . DT NN VBD JJ JJ NNS CC NNP VBD PRP VBD TO , IN PRP$ NNS , `` VB PRP IN IN PRP$ NN `` IN VBG PRP IN DT NN . Two other soldiers are also implicated in the murder , but have yet to stand trial . CD JJ NNS VBP RB VBN IN DT NN , CC VBP RB TO VB NN . Under a plea bargain agreement , Horne faces a maximum of 10 years instead of the possibility of life in prison . IN DT NN NN NN , NNP VBZ DT NN IN CD NNS RB IN DT NN IN NN IN NN . Three Iraqi men have gone on trial in Stuttgart , Germany , suspected of plotting an assassination attempt against former Iraqi Prime Minister Iyad Allawi in 2004 . CD JJ NNS VBP VBN IN NN IN NNP , NNP , VBN IN VBG DT NN NN IN JJ JJ NNP NNP NNP NNP IN CD . The three men are being tried on charges of conspiracy and membership in Ansar al-Islam , an Islamic militant group that U.S. authorities have linked to al-Qaida . DT CD NNS VBP VBG VBN IN NNS IN NN CC NN IN NNP NNP , DT JJ JJ NN WDT NNP NNS VBP VBN TO NNP . They were arrested in Germany after police intercepted phone calls during which they allegedly plotted an attack on Mr. Allawi during his visit to Berlin in December 2004 . PRP VBD VBN IN NNP IN NN VBD NN NNS IN WDT PRP RB VBD DT NN IN NNP NNP IN PRP$ NN TO NNP IN NNP CD . Mr. Allawi changed his travel plans after the alleged plot was uncovered . NNP NNP VBD PRP$ NN NNS IN DT JJ NN VBD VBN . Police say two of the men also are believed to have collected funds for Ansar al-Islam and recruited members to the group . NNS VBP CD IN DT NNS RB VBP VBN TO VB VBN NNS IN NNP NNP CC VBD NNS TO DT NN . In a separate case , two other men are being tried in Munich for allegedly providing logistical and financial aid to Ansar al-Islam . IN DT JJ NN , CD JJ NNS VBP VBG VBN IN NNP IN RB VBG JJ CC JJ NN TO NNP NNP . An Uzbek human rights group says authorities there executed a prisoner last month , despite a United Nations appeal to suspend the death penalty because of torture concerns . DT JJ JJ NNS NN VBZ NNS RB VBD DT NN JJ NN , IN DT NNP NNP NN TO VB DT NN NN IN IN NN NNS . The head of the group ' Mothers Against Execution and Torture , ' Tamara Chikunova , says the 25-year-old prisoner Akhrorkhodzha Tolipkhodzhayev was executed by a firing squad after being found guilty of murdering two teenagers . DT NN IN DT NN `` NNPS IN NNP CC NNP , `` NNP NNP , VBZ DT JJ NN NNP NNP VBD VBN IN DT NN NN IN VBG VBN JJ IN VBG CD NNS . Ms. Chikunova says there was evidence that the man 's charges were not proven at the trial , and that his confession was extracted under torture . NNP NNP VBZ EX VBD NN IN DT NN POS NNS VBD RB VBN IN DT NN , CC IN PRP$ NN VBD VBN IN NN . Uzbekistan 's autocratic government has long been accused of human rights abuses , including torture in detention centers and prisons . NNP POS JJ NN VBZ RB VBN VBN IN JJ NNS NNS , VBG NN IN NN NNS CC NNS . Amnesty International said recently that at least 6,000 political prisoners , including dozens of women , are being held in degrading conditions in Uzbekistan . NNP NNP VBD RB IN IN JJS CD JJ NNS , VBG NNS IN NNS , VBP VBG VBN IN VBG NNS IN NNP . Afghan officials say police have killed six Taliban insurgents , including a militant-appointed provincial governor , during a clash in western Afghanistan . JJ NNS VBP NNS VBP VBN CD NNP NNS , VBG DT JJ JJ NN , IN DT NN IN JJ NNP . The interior ministry says the fighting erupted Thursday in the western province of Ghor . DT JJ NN VBZ DT NN VBD NNP IN DT JJ NN IN NNP . A ministry statement says a militant police chief and a Taliban-appointed governor of Ghor were among those killed in the clash . DT NN NN VBZ DT JJ NN NN CC DT JJ NN IN NNP VBD IN DT VBN IN DT NN . A police official says at least two police officers and a civilian were wounded in the fighting . DT NN NN VBZ IN JJS CD NNS NNS CC DT JJ VBD VBN IN DT NN . Afghan , NATO and U.S. troops are fighting a resurgent Taliban and other rebels who have strongholds in the southern and eastern parts of the country . JJ , NNP CC NNP NNS VBP VBG DT JJ NNP CC JJ NNS WP VBP NNS IN DT JJ CC JJ NNS IN DT NN . In some areas , the Taliban have appointed and run their own parallel administration . IN DT NNS , DT NNP VBP VBN CC VB PRP$ JJ JJ NN . The Bush administration has expressed confidence in United Nations Secretary-General Kofi Annan , despite calls for his resignation from several U.S. lawmakers over a scandal involving the U.N.-administered oil-for-food program for Iraq . DT NNP NN VBZ VBN NN IN NNP NNP NNP NNP NNP , IN NNS IN PRP$ NN IN JJ NNP NNS IN DT NN VBG DT JJ NN NN IN NNP . The U.S. ambassador to the United Nations , John Danforth , said Thursday that President Bush has confidence in Mr. Annan , and dismissed speculation the administration was trying to push the Ghanaian diplomat out . DT NNP NN TO DT NNP NNP , NNP NNP , VBD NNP IN NNP NNP VBZ NN IN NNP NNP , CC VBD NN DT NN VBD VBG TO VB DT JJ NN IN . Mr. Danforth also stressed the importance of a U.S. investigation of the oil-for-food program , saying it would be the only way to - in his words - lift the cloud from the United Nations . NNP NNP RB VBD DT NN IN DT NNP NN IN DT NN NN , VBG PRP MD VB DT JJ NN TO : IN PRP$ NNS IN NN DT NN IN DT NNP NNPS . Several prominent Africans , including Nelson Mandela and Desmond Tutu , are defending the secretary-general . JJ JJ NNS , VBG NNP NNP CC NNP NNP , VBP VBG DT NN . The African statesmen are linking the calls for Mr. Annan 's resignation to his sharp differences with President Bush over the U.S.-led war in Iraq . DT JJ NNS VBP VBG DT NNS IN NNP NNP POS NN TO PRP$ JJ NNS IN NNP NNP IN DT JJ NN IN NNP . Two French journalists who were held hostage in Iraq for four months have arrived back in France . CD JJ NNS WP VBD VBN NN IN NNP IN CD NNS VBP VBN RB IN NNP . Joyful relatives tearfully greeted the men - Christian Chesnot and Georges Malbrunot - upon their arrival at an air base outside Paris Wednesday . JJ NNS RB VBD DT NNS IN NNP NNP CC NNP NNP : IN PRP$ NN IN DT NN NN IN NNP NNP . French President Jacques Chirac cut short a vacation in Morocco to be on hand for the arrival . JJ NNP NNP NNP VBD RB DT NN IN NNP TO VB IN NN IN DT NN . French officials have said no ransom was paid for the release , which came Tuesday . JJ NNS VBP VBN DT NN VBD VBN IN DT NN , WDT VBD NNP . The journalists were abducted while traveling to Najaf August 20 . DT NNS VBD VBN IN VBG TO NNP NNP CD . They were held by a group calling itself the Islamic Army of Iraq , which has previously killed hostages . PRP VBD VBN IN DT NN VBG PRP DT NNP NNP IN NNP , WDT VBZ RB VBN NNS . Police in northwestern Pakistan say a suicide bomber detonated an explosives #NAME? car at a security post Tuesday , killing a Pakistani soldier and wounding at least seven others . NNS IN JJ NNP VBP DT NN NN VBD DT NNS JJ NN IN DT NN NN NNP , VBG DT JJ NN CC VBG IN JJS CD NNS . Authorities say the attack occurred in the town of Doaba in Hangu district . NNS VBP DT NN VBD IN DT NN IN NNP IN NNP NN . Pakistan 's northwestern tribal areas are considered to be Taliban and al-Qaida militant strongholds . NNP POS JJ JJ NNS VBP VBN TO VB NNP CC NNP JJ NNS . Elsewhere in the northwest , officials say two rockets landed near the runway of Peshawar airport before dawn Tuesday . RB IN DT NN , NNS VBP CD NNS VBD IN DT NN IN NNP NN IN NN NNP . Reports of damage varied , from slight to none at all . NNS IN NN VBN , IN JJ IN NN IN DT . China 's foreign ministry says it plans to work closely with Russian officials to minimize the effects of pollution from a toxic chemicals slick moving along a major river toward Russia . NNP POS JJ NN VBZ PRP VBZ TO VB RB IN JJ NNS TO VB DT NNS IN NN IN DT JJ NNS VBP VBG IN DT JJ NN IN NNP . Russian environmental officials report an increase in the level of cancer-causing benzene in the Amur River . JJ JJ NNS VBP DT NN IN DT NN IN JJ NN IN DT NNP NNP . But Russian authorities say it is not clear if it is from the Chinese chemical spill . CC JJ NNS VBP PRP VBZ RB JJ IN PRP VBZ IN DT JJ NN NN . They say it could take several more days before the worst of the spill reaches Russian territory . PRP VBP PRP MD VB JJ JJR NNS IN DT JJS IN DT NN VBZ JJ NN . Meanwhile , a top United Nations official , Klaus Toepfer , told China 's Xinhua news agency Thursday that Beijing will allow U.N. officials to inspect the effects of the spill . RB , DT JJ NNP NNP NN , NNP NNP , VBD NNP POS NNP NN NN NNP IN NNP MD VB NNP NNS TO VB DT NNS IN DT NN . An explosion at a Chinese factory two weeks ago released 100 tons of poisonous chemicals into the Songhua river . DT NN IN DT JJ NN CD NNS RB VBD CD NNS IN JJ NNS IN DT NNP NN . As they flow toward Russia , riverside cities are shutting down water systems to avoid contamination . IN PRP VBP IN NNP , JJ NNS VBP VBG RP NN NNS TO VB NN . Pakistan 's security force has arrested 10 terrorists in North Wazirstan along the border area of Pakistan and Afghanistan . NNP POS NN NN VBZ VBN CD NNS IN NNP NNP IN DT NN NN IN NNP CC NNP . Pakistani officials say the operation was launched Sunday after intelligence reports indicated that several al-Qaida suspects were hiding in the mountainous region , about 300 kilometers southwest of Islamabad . JJ NNS VBP DT NN VBD VBN NNP IN NN NNS VBD IN JJ NNP NNS VBD VBG IN DT JJ NN , IN CD NNS JJS IN NNP . The latest offensive comes after the Pakistani army warned local tribesman to stop protecting terrorists , or face military action . DT JJS NN VBZ IN DT JJ NN VBD JJ NN TO VB VBG NNS , CC VB JJ NN . Last week , Pakistani soldiers killed two foreign al-Qaida members and arrested 11 in the same region . JJ NN , JJ NNS VBD CD JJ NNP NNS CC VBN CD IN DT JJ NN . Thailand 's parliament has elected Prime Minister Thaksin Shinawatra to a second four-year term . NNP POS NN VBZ VBN NNP NNP NNP NNP TO DT JJ JJ NN . Mr. Thaksin received the votes of 377 lawmakers out of 500 in the parliament 's lower house during a televised vote Wednesday , making him the first democratically elected prime minister to hold a second term . NNP NNP VBD DT NNS IN CD NNS IN IN CD IN DT NN POS JJR NN IN DT JJ NN NNP , VBG PRP DT JJ RB JJ JJ NN TO VB DT JJ NN . The 55-year-old prime minister led his Thai Rak Thai party to an overwhelming victory in last month 's general elections . DT JJ JJ NN VBD PRP$ JJ NNP JJ NN TO DT JJ NN IN JJ NN POS JJ NNS . He says the focus of his second term will be coping with rising oil prices , bird flu , and the separatist insurgency in the Muslim-dominated south . PRP VBZ DT NN IN PRP$ JJ NN MD VB VBG IN VBG NN NNS , NN NN , CC DT JJ NN IN DT JJ NN . Mr. Thaksin and his government are expected to be sworn in on Monday . NNP NNP CC PRP$ NN VBP VBN TO VB VBN IN IN NNP . Pakistani authorities are hunting for a militant who escaped from custody after being detained in connection with a plot to assassinate President Pervez Musharraf in December 2003 . JJ NNS VBP VBG IN DT NN WP VBD IN NN IN VBG VBN IN NN IN DT NN TO VB NNP NNP NNP IN NNP CD . Information Minister Sheikh Rashid Ahmed confirmed Tuesday that Mushtaq Ahmed had escaped but did not provide any details . NNP NNP NNP NNP NNP VBD NNP IN NNP NNP VBD VBN CC VBD RB VB DT NNS . The French News Agency says the man has been on the run for nearly seven weeks since he vanished after being allowed to go the bathroom at the detention facility near Rawalpindi , a garrison city adjacent to Islamabad . DT NNP NNP NNP VBZ DT NN VBZ VBN IN DT NN IN RB CD NNS IN PRP VBD IN VBG VBN TO VB DT NN IN DT NN NN IN NNP , DT NN NN JJ TO NNP . There were two failed attempts on Mr. Musharraf 's life in December 2003 . EX VBD CD VBN NNS IN NNP NNP POS NN IN NNP CD . The Pakistani leader has angered many extremist groups by his support for the U.S.-led war on terrorism . DT JJ NN VBZ VBN JJ NN NNS IN PRP$ NN IN DT JJ NN IN NN . Military officials in Nepal say 11 Maoist rebels and two soldiers were killed during fighting at an army camp in eastern Nepal . JJ NNS IN NNP VBP CD JJ NNS CC CD NNS VBD VBN IN VBG IN DT NN NN IN JJ NNP . Officials say the rebels attacked the army camp , located 400 kilometers east of the capital , Kathmandu , late Friday . NNS VBP DT NNS VBD DT NN NN , VBN CD NNS NN IN DT NN , NNP , JJ NNP . Maoist rebels have carried out a series of attacks across Nepal since ending their four-month , unilateral cease-fire on January 2 . NNP NNS VBP VBN RP DT NN IN NNS IN NNP IN VBG PRP$ JJ , JJ NN IN NNP CD . They have been fighting to overthrow the constitutional monarchy and replace it with a communist state since 1996 . PRP VBP VBN VBG TO VB DT JJ NN CC VB PRP IN DT JJ NN IN CD . At least 12,000 people have died in the fighting . IN JJS CD NNS VBP VBN IN DT NN . Nepal 's King Gyanendra took absolute control of the country nearly a year ago . NNP POS NNP NNP VBD JJ NN IN DT NN RB DT NN RB . Formerly the British protectorate of Bechuanaland , Botswana adopted its new name upon independence in 1966 . RB DT JJ NN IN NNP , NNP VBD PRP$ JJ NN IN NN IN CD . Four decades of uninterrupted civilian leadership , progressive social policies , and significant capital investment have created one of the most dynamic economies in Africa . CD NNS IN JJ JJ NN , JJ JJ NNS , CC JJ NN NN VBP VBN CD IN DT RBS JJ NNS IN NNP . Mineral extraction , principally diamond mining , dominates economic activity , though tourism is a growing sector due to the country 's conservation practices and extensive nature preserves . NN NN , RB NN NN , VBZ JJ NN , IN NN VBZ DT VBG NN JJ TO DT NN POS NN NNS CC JJ NN NNS . Botswana has one of the world 's highest known rates of HIV / AIDS infection , but also one of Africa 's most progressive and comprehensive programs for dealing with the disease . NNP VBZ CD IN DT NN POS JJS VBN NNS IN NNP NNP NNP NN , CC RB CD IN NNP POS JJS JJ CC JJ NNS IN VBG IN DT NN . During the 17th century , the archipelago was divided into two territorial units , one English and the other Danish . IN DT JJ NN , DT NN VBD VBN IN CD JJ NNS , CD JJ CC DT JJ JJ . Sugarcane , produced by slave labor , drove the islands ' economy during the 18th and early 19th centuries . NN , VBN IN JJ NN , VBD DT NNS POS NN IN DT CD CC RB JJ NNS . In 1917 , the US purchased the Danish portion , which had been in economic decline since the abolition of slavery in 1848 . IN CD , DT NNP VBD DT JJ NN , WDT VBD VBN IN JJ NN IN DT NN IN NN IN CD . In 1895 , military defeat forced China to cede Taiwan to Japan . IN CD , JJ NN VBD NNP TO VB NNP TO NNP . Taiwan reverted to Chinese control after World War II . NNP VBD TO JJ NN IN NNP NNP NNP . Following the Communist victory on the mainland in 1949 , 2 million Nationalists fled to Taiwan and established a government using the 1947 constitution drawn up for all of China . VBG DT JJ NN IN DT NN IN CD , CD CD NNS VBD TO NNP CC VBD DT NN VBG DT CD NN VBN RP IN DT IN NNP . Over the next five decades , the ruling authorities gradually democratized and incorporated the local population within the governing structure . IN DT JJ CD NNS , DT NN NNS RB VBN CC VBN DT JJ NN IN DT NN NN . In 2000 , Taiwan underwent its first peaceful transfer of power from the Nationalist to the Democratic Progressive Party . IN CD , NNP VBD PRP$ JJ JJ NN IN NN IN DT NN TO DT JJ NNP NNP . Throughout this period , the island prospered and became one of East Asia 's economic ' Tigers . ' IN DT NN , DT NN VBD CC VBD CD IN NNP NNP POS JJ `` NNPS . `` The dominant political issues continue to be the relationship between Taiwan and China - specifically the question of Taiwan 's eventual status - as well as domestic political and economic reform . DT JJ JJ NNS VBP TO VB DT NN IN NNP CC NNP : RB DT NN IN NNP POS JJ NN : RB RB IN JJ JJ CC JJ NN . The inhabitants of this tiny isolated economy exist on fishing , subsistence farming , handicrafts , and postage stamps . DT NNS IN DT JJ JJ NN VBP IN NN , NN NN , NNS , CC NN NNS . The fertile soil of the valleys produces a wide variety of fruits and vegetables , including citrus , sugarcane , watermelons , bananas , yams , and beans . DT JJ NN IN DT NNS VBZ DT JJ NN IN NNS CC NNS , VBG NNS , NN , NNS , NNS , NNS , CC NNS . Bartering is an important part of the economy . NNP VBZ DT JJ NN IN DT NN . The major sources of revenue are the sale of postage stamps to collectors and the sale of handicrafts to passing ships . DT JJ NNS IN NN VBP DT NN IN JJ NNS TO NNS CC DT NN IN NNS TO VBG NNS . In October 2004 , more than one-quarter of Pitcairn 's small labor force was arrested , putting the economy in a bind , since their services were required as lighter crew to load or unload passing ships . IN NNP CD , JJR IN NN IN NNP POS JJ NN NN VBD VBN , VBG DT NN IN DT NN , IN PRP$ NNS VBD VBN IN JJR NN TO VB CC VB NN NNS . In this small , landlocked economy , subsistence agriculture occupies approximately 70 % of the population . IN DT JJ , JJ NN , NN NN VBZ RB CD NN IN DT NN . The manufacturing sector has diversified since the mid-1980s . DT NN NN VBZ VBN IN DT NNS . Sugar and wood pulp were major foreign exchange earners ; however , the wood pulp producer closed in January 2010 , and sugar is now the main export earner . NN CC NN NN VBD JJ JJ NN NNS ; RB , DT NN NN NN VBD IN NNP CD , CC NN VBZ RB DT JJ NN NN . In 2007 , the sugar industry increased efficiency and diversification efforts , in response to a 17 % decline in EU sugar prices . IN CD , DT NN NN VBD NN CC NN NNS , IN NN TO DT CD NN NN IN NNP NN NNS . Mining has declined in importance in recent years with only coal and quarry stone mines remaining active . NN VBZ VBN IN NN IN JJ NNS IN JJ NN CC NN NN NNS VBG JJ . Surrounded by South Africa , except for a short border with Mozambique , Swaziland is heavily dependent on South Africa from which it receives more than nine-tenths of its imports and to which it sends 60 % of its exports . VBN IN NNP NNP , IN IN DT JJ NN IN NNP , NNP VBZ RB JJ IN NNP NNP IN WDT PRP VBZ JJR IN NNS IN PRP$ NNS CC TO WDT PRP VBZ CD NN IN PRP$ NNS . Swaziland 's currency is pegged to the South African rand , subsuming Swaziland 's monetary policy to South Africa . NNP POS NN VBZ VBN TO DT JJ JJ NN , VBG NNP POS JJ NN TO NNP NNP . The government is heavily dependent on customs duties from the Southern African Customs Union ( SACU ) , and worker remittances from South Africa substantially supplement domestically earned income . DT NN VBZ RB JJ IN NNS NNS IN DT NNP NNP NNP NNP LRB NNP RRB , CC NN NNS IN NNP NNP RB NN RB VBD NN . The government has also legislated that 30 % of local pension funds need to be invested in Swaziland , boosting demand for government bonds . DT NN VBZ RB VBN IN CD NN IN JJ NN NNS VBP TO VB VBN IN NNP , VBG NN IN NN NNS . Customs revenues plummeted due to the global economic crisis and a drop in South African imports . NN NNS VBD JJ TO DT JJ JJ NN CC DT NN IN JJ JJ NNS . The resulting decline in revenue has pushed the country into a fiscal crisis . DT VBG NN IN NN VBZ VBN DT NN IN DT JJ NN . The government has requested assistance from the IMF and from the African Development Bank . DT NN VBZ VBN NN IN DT NNP CC IN DT NNP NNP NNP . With an estimated 40 % unemployment rate , Swaziland 's need to increase the number and size of small and medium enterprises and attract foreign direct investment is acute . IN DT VBN CD NN NN NN , NNP POS NN TO VB DT NN CC NN IN JJ CC JJ NNS CC VB JJ JJ NN VBZ JJ . Overgrazing , soil depletion , drought , and floods persist as problems for the future . NN , NN NN , NN , CC NNS VBP IN NNS IN DT NN . More than one-fourth of the population needed emergency food aid in 2006 - 7 because of drought , and more than one-quarter of the adult population has been infected by HIV / AIDS . JJR IN NN IN DT NN VBD NN NN NN IN CD : CD IN IN NN , CC JJR IN NN IN DT NN NN VBZ VBN VBN IN NNP NNP NNP . AN Ambitious Writer , distinguished for the condition of his linen , was travelling the high road to fame , when he met a Tramp . DT JJ NN , VBN IN DT NN IN PRP$ NN , VBD VBG DT JJ NN TO NN , WRB PRP VBD DT NN . ' What is the matter with your shirt ? ' inquired the Tramp . `` WP VBZ DT NN IN PRP$ NN . `` VBD DT NN . ' It bears the marks of that superb unconcern which is the characteristic of genius , ' replied the Ambitious Writer , contemptuously passing him by . `` PRP VBZ DT NNS IN DT NN JJ WDT VBZ DT NN IN NN , `` VBD DT JJ NN , RB VBG PRP IN . Resting by the wayside a little later , the Tramp carved upon the smooth bark of a birch-tree the words , ' John Gump , Champion Genius . ' VBG IN DT NN DT NN RB , DT NNP VBD IN DT JJ NN IN DT NN DT NNS , `` NNP NNP , NNP NNP . `` I think the political correctness is getting ridiculous . PRP VBP DT JJ NN VBZ VBG JJ . Today I overheard a little boy say he was going to go play a game of Cattle Management Specialists and Native Americans . NN PRP VBD DT JJ NN VBP PRP VBD VBG TO VB VB DT NN IN NNP NNP NNPS CC NNP NNS . Haiti is marking six months since the powerful earthquake that killed more than 2,20,000 people and left Port-au-Prince and surrounding areas in ruins . NNP VBZ VBG CD NNS IN DT JJ NN WDT VBD JJR IN CD NNS CC VBD NNP CC VBG NNS IN NNS . The 7 magnitude earthquake on January 12 left some 1.5 million others homeless . DT CD NN NN IN NNP CD VBD DT CD CD NNS JJ . Haitian Prime Minister Jean-Max Bellerive and former U.S. President Bill Clinton say millions of Haitians still lack access to basic services such as shelter , water , sanitation and health care . JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP VBP NNS IN NNS RB VBP NN TO JJ NNS JJ IN NN , NN , NN CC NN NN . In an opinion piece in The New York Times , they say progress has been made , but that all involved in Haiti 's recovery must do better . IN DT NN NN IN DT NNP NNP NNP , PRP VBP NN VBZ VBN VBN , CC IN DT VBN IN NNP POS NN MD VB JJR . Mr. Clinton and Mr. Bellerive , who are the co-chairs of the Interim Haiti Reconstruction Commission , say that so far only 10 percent of the $ 5.3 billion pledged by governments to Haiti has been disbursed to the Haitian government . NNP NNP CC NNP NNP , WP VBP DT NNS IN DT NNP NNP NNP NNP , VBP IN RB RB RB CD NN IN DT $ CD CD VBN IN NNS TO NNP VBZ VBN VBN TO DT JJ NN . Top U.S. and Japanese negotiators in nuclear disarmament talks with North Korea said the North must agree to a verification of its disarmament activities in writing . JJ NNP CC JJ NNS IN JJ NN NNS IN NNP NNP VBD DT NNP MD VB TO DT NN IN PRP$ NN NNS IN NN . U.S. Assistant Secretary of State Christopher Hill and his Japanese counterpart Akitaka Saiki met Tuesday in Tokyo ahead of six-nation talks in Beijing next week . NNP NNP NNP IN NNP NNP NNP CC PRP$ JJ NN NNP NNP VBD NNP IN NNP RB IN JJ NNS IN NNP JJ NN . After the meeting , the two envoys told reporters they expect tough negotiations with North Korea . IN DT NN , DT CD NNS VBD NNS PRP VBP JJ NNS IN NNP NNP . They say the Beijing talks will focus on hammering out a document with a detailed list of verification measures . PRP VBP DT NNP NNS MD VB IN VBG RP DT NN IN DT JJ NN IN NN NNS . Hill said the North must commit in writing to allow international inspectors to take samples from its nuclear facilities . NNP VBD DT NNP MD VB IN VBG TO VB JJ NNS TO VB NNS IN PRP$ JJ NNS . Washington said North Korea agreed to sampling during a meeting with Hill in October , but Pyongyang denies it . NNP VBD NNP NNP VBD TO VBG IN DT NN IN NNP IN NNP , CC NNP VBZ PRP . North Korea has agreed to dismantle its nuclear activities in exchange for aid and energy , but has halted the process several times . NNP NNP VBZ VBN TO VB PRP$ JJ NNS IN NN IN NN CC NN , CC VBZ VBN DT NN JJ NNS . Hill plans to hold talks Wednesday with Saiki and the South Korean negotiator Kim Sook before heading for Singapore , where he is meeting with North Korean officials . NNP VBZ TO VB NNS NNP IN NNP CC DT JJ JJ NN NNP NNP IN VBG IN NNP , WRB PRP VBZ VBG IN JJ JJ NNS . U.S. Secretary of Defense Donald Rumsfeld is in Algeria , in what officials believe is the first such visit by a U.S. defense secretary . NNP NNP IN NNP NNP NNP VBZ IN NNP , IN WP NNS VBP VBZ DT JJ JJ NN IN DT NNP NN NN . Secretary Rumsfeld says he came to Algeria because it has become a good partner in the war on terrorism . NNP NNP VBZ PRP VBD TO NNP IN PRP VBZ VBN DT JJ NN IN DT NN IN NN . He says the country has come a long way since the years when it was a staunch opponent of U.S. policy , as a member of the Non-Aligned Movement . PRP VBZ DT NN VBZ VBN DT JJ NN IN DT NNS WRB PRP VBD DT JJ NN IN NNP NN , IN DT NN IN DT JJ NN . Now , Algerian forces are preparing to participate in a NATO counter-terrorism operation in the Mediterranean , starting in June . RB , JJ NNS VBP VBG TO VB IN DT NNP NN NN IN DT NNP , VBG IN NNP . Algeria is also one of the most active participants in the U.S. Trans-Saharan Counter-Terrorism Initiative . NNP VBZ RB CD IN DT RBS JJ NNS IN DT NNP NNP NNP NNP . A senior U.S. official , who spoke on condition of anonymity says the United States wants to further expand military relations with Algeria . DT JJ NNP NN , WP VBD IN NN IN NN VBZ DT NNP NNPS VBZ TO RB VB JJ NNS IN NNP . But , he says , it also wants the Algerian government to think more creatively about how to implement greater political reforms . CC , PRP VBZ , PRP RB VBZ DT JJ NN TO VB RBR RB IN WRB TO VB JJR JJ NNS . The African Union has condemned a roadside bomb attack in Somalia that killed one AU peacekeeper and wounded two others in the capital , Mogadishu . DT NNP NNP VBZ VBN DT NN NN NN IN NNP WDT VBD CD NNP NN CC VBD CD NNS IN DT NN , NNP . In a statement Thursday , Special A.U. Representative for Somalia Nicolas Bwakira condemned the attack and said it would not derail the A.U. 's peacekeeping mission in Somalia . IN DT NN NNP , NNP NNP NNP IN NNP NNP NNP VBD DT NN CC VBD PRP MD RB VB DT NNP POS VBG NN IN NNP . Bwakira says two bombs exploded late Wednesday on a road between the airport and the K-4 Section of Mogadishu . NNP VBZ CD NNS VBD JJ NNP IN DT NN IN DT NN CC DT NNP NN IN NNP . He says the wounded peacekeepers were taken to Nairobi , Kenya for treatment . PRP VBZ DT JJ NNS VBD VBN TO NNP , NNP IN NN . The AU peacekeeping mission in Somalia currently consists of about 3,400 troops contributed by Uganda and Burundi . DT NNP NN NN IN NNP RB VBZ IN IN CD NNS VBN IN NNP CC NNP . The troops have come under frequent attack from the al-Shabab militant group . DT NNS VBP VBN IN JJ NN IN DT JJ JJ NN . Al-Shabab controls much of southern and central Somalia after a two-year insurgency , and has moved to impose its own strict form of Islamic law in areas under its control . NNP VBZ NN IN JJ CC JJ NNP IN DT JJ NN , CC VBZ VBN TO VB PRP$ JJ JJ NN IN JJ NN IN NNS IN PRP$ NN . Last week , Somalia 's cabinet voted to make Sharia the basis of Somalia 's legal system , in an effort to appease the insurgents . JJ NN , NNP POS NN VBD TO VB NNP DT NN IN NNP POS JJ NN , IN DT NN TO VB DT NNS . The child molestation trial of pop superstar Michael Jackson is underway in southern California , where scores of fans turned out to show their support . DT NN NN NN IN NN NN NNP NNP VBZ JJ IN JJ NNP , WRB NNS IN NNS VBD RP TO VB PRP$ NN . Lawyers at a Santa Barbara county court Monday began screening the first of up to 750 potential jurors for the trial , which could last several months . NNS IN DT NNP NNP NN NN NNP VBD VBG DT NN IN RB TO CD JJ NNS IN DT NN , WDT MD VB JJ NNS . Mr. Jackson faces 10 charges involving alleged sexual molestation of a child under the age of 14 . NNP NNP VBZ CD NNS VBG JJ JJ NN IN DT NN IN DT NN IN CD . The singer has pleaded not guilty , saying he is completely innocent . DT NN VBZ VBN RB JJ , VBG PRP VBZ RB JJ . Mr. Jackson gave a V-for-victory sign as he entered the courtroom Monday , dressed entirely in white and surrounded by bodyguards . NNP NNP VBD DT NN NN IN PRP VBD DT NN NNP , VBN RB IN JJ CC VBN IN NNS . In a video statement released Sunday , Mr. Jackson criticized recent leaks of grand jury testimony on the case , calling them ' malicious , disgusting and FALSE . ' IN DT NN NN VBN NNP , NNP NNP VBD JJ NNS IN JJ NN NN IN DT NN , VBG PRP `` JJ , JJ CC JJ . `` Afghan officials say airstrikes by U.S. helicopter gunships and tankbuster jets have killed at least 12 suspected Taleban in southern Afghanistan . JJ NNS VBP NNS IN NNP NN NNS CC NN NNS VBP VBN IN JJS CD JJ NNP IN JJ NNP . They say the fighting began after insurgents tried to kill the former military commander of Khost province , Kheyal Baaz Khan Sherzai , in an ambush . PRP VBP DT NN VBD IN NNS VBD TO VB DT JJ JJ NN IN NNP NN , NNP NNP NNP NNP , IN DT NN . The suspected Taleban fired rockets at Mr. Sherzai on a main road between the Afghan capital , Kabul and Gardez . DT JJ NNP VBD NNS IN NNP NNP IN DT JJ NN IN DT JJ NN , NNP CC NNP . He was not injured . PRP VBD RB VBN . The French press agency ( AFP ) says Afghan soldiers chased the attackers into the mountains and U.S. air support was called in . DT JJ NN NN LRB NNP RRB VBZ JJ NNS VBD DT NNS IN DT NNS CC NNP NN NN VBD VBN IN . Taleban fighters have carried out a number of attacks recently after a winter lull . NNP NNS VBP VBN RP DT NN IN NNS RB IN DT NN NN . A U.S.-led coalition ousted the Taleban regime in 2001 . DT JJ NN VBD DT NNP NN IN CD . About 17,000 US military personnel are in Afghanistan trying to weed out Taleban remnants . IN CD NNP JJ NNS VBP IN NNP VBG TO VB RP NNP NNS . Mexico 's state-run oil company , Pemex , said its 2008 production of crude oil fell 9.2 percent from 2007 . NNP POS JJ NN NN , NNP , VBD PRP$ CD NN IN JJ NN VBD CD NN IN CD . Pemex said Wednesday that daily production last year dropped to almost 2.8 million barrels compared to three million barrels the year before . NNP VBD NNP IN JJ NN JJ NN VBD TO RB CD CD NNS VBN TO CD CD NNS DT NN IN . The oil company blamed bad weather and operational factors at its biggest oil field , Cantarell , for the production 2008 shortfall . DT NN NN VBD JJ NN CC JJ NNS IN PRP$ JJS NN NN , NNP , IN DT NN CD NN . Exports were also down 16.8 percent last year . NNS VBD RB RB CD NN JJ NN . Mexican President Felipe Calderon has sought more private investment in Pemex to boost falling production . JJ NNP NNP NNP VBZ VBN RBR JJ NN IN NNP TO VB VBG NN . Opponents have said opening the struggling oil industry to private interests would threaten Mexico 's sovereignty . NNS VBP VBN VBG DT JJ NN NN TO JJ NNS MD VB NNP POS NN . Mexico is a major oil supplier to the United States . NNP VBZ DT JJ NN NN TO DT NNP NNPS . Leaders of 53 Commonwealth nations have gathered in the Mediterranean island of Malta for a summit . NNS IN CD NNP NNS VBP VBN IN DT JJ NN IN NNP IN DT NN . The Commonwealth 's three-day biennial meeting is set to begin Friday . DT NNP POS JJ JJ NN VBZ VBN TO VB NNP . Most , but not all , members of the Commonwealth were once part of the British Empire . JJS , CC RB DT , NNS IN DT NNP VBD RB NN IN DT JJ NN . Member nations include developed countries such as Australia and Canada , developing nations including India and Pakistan , and island nations such as Vanuatu . NNP NNS VBP JJ NNS JJ IN NNP CC NNP , VBG NNS VBG NNP CC NNP , CC NN NNS JJ IN NNP . Almost one-third of the world 's population lives in Commonwealth member nations . RB NN IN DT NN POS NN VBZ IN NNP NN NNS . The Commonwealth says the group 's values include democracy , good governance , equality and economic development . DT NNP VBZ DT NN POS NNS VBP NN , JJ NN , NN CC JJ NN . A European investigator says there appears to be evidence that the U.S. Central Intelligence Agency abducted people in Europe and transferred them between countries illegally . DT JJ NN VBZ EX VBZ TO VB NN IN DT NNP NNP NNP NNP VBD NNS IN NNP CC VBD PRP IN NNS RB . Swiss Senator Dick Marty made the comment in a report to the Council of Europe , which brings together lawmakers from democratic European countries to discuss such issues as human rights . JJ NNP NNP NNP VBD DT NN IN DT NN TO DT NNP IN NNP , WDT VBZ RB NNS IN JJ JJ NNS TO VB JJ NNS IN JJ NNS . U.S. newspapers last month reported that the CIA has been using European airports and airspace to transport terror suspects to secret prisons in eastern Europe . NNP NNS JJ NN VBD IN DT NNP VBZ VBN VBG JJ NNS CC NN TO VB NN NNS TO JJ NNS IN JJ NNP . Mr. Marty criticized U.S. Secretary of State Condoleezza Rice for not providing information or explanation of the issue during her recent visit to Europe . NNP NNP VBD NNP NNP IN NNP NNP NNP IN RB VBG NN CC NN IN DT NN IN PRP$ JJ NN TO NNP . On Monday , British Foreign Secretary Jack Straw said his government has found no evidence the Bush administration requested permission to fly terror suspects through Britain or its airspace . IN NNP , NNP NNP NNP NNP NNP VBD PRP$ NN VBZ VBN DT NN DT NNP NN VBD NN TO VB NN NNS IN NNP CC PRP$ NN . The United Nations war crimes tribunal has authorized former Kosovo Prime Minister Ramush Haradinaj to engage in political activities during his provisional release . DT NNP NNPS NN NNS JJ VBZ VBN JJ NNP NNP NNP NNP NNP TO VB IN JJ NNS IN PRP$ JJ NN . Judges at the tribunal in The Hague , in a split decision Wednesday , allowed Mr. Haradinaj to join in such activities if U.N. administrators in Kosovo approve his participation on a case-by-case basis . NNS IN DT NN IN DT NNP , IN DT NN NN NNP , VBD NNP NNP TO VB IN JJ NNS IN NNP NNS IN NNP VB PRP$ NN IN DT JJ NN . Mr. Haradinaj , a former Kosovo Albanian guerrilla leader , resigned his post and surrendered to The Hague tribunal in March after the court indicted him on 37 counts of war crimes during the Kosovo conflict of the late 1990s . NNP NNP , DT JJ NNP JJ NN NN , VBD PRP$ NN CC VBD TO DT NNP NN IN NNP IN DT NN VBD PRP IN CD NNS IN NN NNS IN DT NNP NN IN DT JJ NNS . Mr. Haradinaj has insisted his actions were consistent with international law . NNP NNP VBZ VBN PRP$ NNS VBD JJ IN JJ NN . Serbian politicians have condemned Wednesday 's decision . JJ NNS VBP VBN NNP POS NN . They demanded that Serb defendants on provisional release be granted similar privileges . PRP VBD IN JJ NNS IN JJ NN VB VBN JJ NNS . The Reuters news agency says the tribunal 's chief prosecutor plans to appeal the ruling . DT NNP NN NN VBZ DT NN POS NN NN VBZ TO VB DT NN . Israel says it will be forced to defend itself against Iran , if the United Nations Security Council fails to take action to stop Tehran from acquiring nuclear weapons . NNP VBZ PRP MD VB VBN TO VB PRP IN NNP , IN DT NNP NNP NNP NNP VBZ TO VB NN TO VB NNP IN VBG JJ NNS . In an interview with Reuters news agency , Israeli Defense Minister Shaul Mofaz was asked whether Israel is ready to use military force , if the Security Council does not stop what Israel believes is a covert Iranian weapons program . IN DT NN IN NNP NN NN , JJ NNP NNP NNP NNP VBD VBN IN NNP VBZ JJ TO VB JJ NN , IN DT NNP NNP VBZ RB VB WP NNP VBZ VBZ DT JJ JJ NNS NN . Mofaz replied , ' we have to defend ourselves . ' NNP VBD , `` PRP VBP TO VB PRP . `` He said any military action would be based on Israel 's right to provide security to its people . PRP VBD DT JJ NN MD VB VBN IN NNP POS NN TO VB NN TO PRP$ NNS . In 1981 , Israel bombed a nuclear reactor in Iraq to prevent Saddam Hussein from developing nuclear weapons . IN CD , NNP VBD DT JJ NN IN NNP TO VB NNP NNP IN VBG JJ NNS . Iranian President Mahmoud Ahmadinejad has called for the destruction of Israel since taking office last year . JJ NNP NNP NNP VBZ VBN IN DT NN IN NNP IN VBG NN JJ NN . He also has rejected the vast body of historical documentation of the Holocaust as myth . PRP RB VBZ VBN DT JJ NN IN JJ NN IN DT NNP IN NN . Afghanistan 's anti-drug force commander says foreign help to combat trade in opium and heroin has been very slow , but he predicted big gains in the anti-narcotic campaign in the coming year . NNP POS JJ NN NN VBZ JJ NN TO VB NN IN NN CC NN VBZ VBN RB JJ , CC PRP VBD JJ NNS IN DT JJ NN IN DT JJ NN . The international community has committed hundreds of millions of dollars to train Afghan police in destroying laboratories and opium crops , as well as to fund projects to help farmers grow legal crops . DT JJ NN VBZ VBN NNS IN NNS IN NNS TO VB JJ NNS IN VBG NNS CC NN NNS , RB RB IN TO VB NNS TO VB NNS VB JJ NNS . General Mohammed Daud told reporters the international community must do more to provide alternative sources of income for farmers being forced to stop growing opium poppies . NNP NNP NNP VBD NNS DT JJ NN MD VB JJR TO VB JJ NNS IN NN IN NNS VBG VBN TO VB VBG NN NNS . He said the donor countries have not yet fully delivered on their promises . PRP VBD DT NN NNS VBP RB RB RB VBN IN PRP$ NNS . The general said 1,300 police officers were being deployed this month from Kabul to provinces where local authorities need help to enforce the government 's anti-poppy campaign . DT NN VBD CD NN NNS VBD VBG VBN DT NN IN NNP TO NNS WRB JJ NNS VBP NN TO VB DT NN POS JJ NN . He said 2006 will be the year when his special force will arrest all smugglers , especially those who have links with the government . PRP VBD CD MD VB DT NN WRB PRP$ JJ NN MD VB DT NNS , RB DT WP VBP NNS IN DT NN . The French parliament has given final approval to a bill extending the state of emergency aimed at stopping riots by mostly North African youths . DT JJ NN VBZ VBN JJ NN TO DT NN VBG DT NN IN NN VBN IN VBG NNS IN RB JJ JJ NNS . The Senate approved the bill Wednesday despite objections from leftist lawmakers who say the continued emergency measures are not needed because the violence is easing . DT NNP VBD DT NN NNP IN NNS IN JJ NNS WP VBP DT JJ NN NNS VBP RB VBN IN DT NN VBZ VBG . But Interior Minister Nicolas Sarkozy said many cities are still tense . CC NNP NNP NNP NNP VBD JJ NNS VBP RB JJ . The lower house of parliament passed the bill Monday . DT JJR NN IN NN VBD DT NN NNP . It gives local authorities the power to impose curfews for three more months . PRP VBZ JJ NNS DT NN TO VB NNS IN CD JJR NNS . The violence began late last month when two teenagers of North African origin accidentally electrocuted themselves while hiding from police in a power station near Paris . DT NN VBD RB JJ NN WRB CD NNS IN JJ JJ NN RB VBD PRP IN VBG IN NN IN DT NN NN IN NNP . Thousands of cars and a number of buildings were burned in the riots that followed . NNS IN NNS CC DT NN IN NNS VBD VBN IN DT NNS WDT VBD . The government has promised to tackle what it says are the real causes of the violence , including unemployment and racism . DT NN VBZ VBN TO VB WP PRP VBZ VBP DT JJ NNS IN DT NN , VBG NN CC NN . Pakistani President Pervez Musharraf has arrived in London for talks with Prime Minister Tony Blair on terrorism , trade and the situation in Afghanistan . JJ NNP NNP NNP VBZ VBN IN NNP IN NNS IN NNP NNP NNP NNP IN NN , NN CC DT NN IN NNP . General Musharraf traveled from Washington where he met with President Bush . NNP NNP VBD IN NNP WRB PRP VBD IN NNP NNP . During his visit he said the search for al-Qaida leader Osama bin Laden has gone completely cold . IN PRP$ NN PRP VBD DT NN IN NNP NN NNP NNP NNP VBZ VBN RB JJ . In an interview published Sunday General Musharraf says Pakistani forces are aggressively pursuing Osama bin Laden , but have only been able to determine that he is still alive . IN DT NN VBN NNP NNP NNP VBZ JJ NNS VBP RB VBG NNP NNP NNP , CC VBP RB VBN JJ TO VB IN PRP VBZ RB JJ . Mr. Musharraf says the United States must share responsibility for the failure to track him down because the U.S.-led coalition does not have enough troops in neighboring Afghanistan . NNP NNP VBZ DT NNP NNPS MD VB NN IN DT NN TO VB PRP RB IN DT JJ NN VBZ RB VB JJ NNS IN JJ NNP . During his visit , Mr. Bush said ' there is nobody more dedicated ' to tracking down Osama bin Laden than Mr. Musharraf . IN PRP$ NN , NNP NNP VBD `` EX VBZ DT RBR JJ `` TO VBG RP NNP NNP NNP IN NNP NNP . Brazilian President Luiz Inacio Lula da Silva has apologized for a corruption scandal that is rocking his government and threatening his own popularity . JJ NNP NNP NNP NNP NNP NNP VBZ VBN IN DT NN NN WDT VBZ VBG PRP$ NN CC VBG PRP$ JJ NN . In a televised address Friday , Mr. da Silva said his ruling Workers ' Party must apologize for its mistakes . IN DT JJ NN NNP , NNP NNP NNP VBD PRP$ NN NNS POS NN MD VB IN PRP$ NNS . The party is embroiled in a scandal over allegations it bought votes in Congress . DT NN VBZ VBN IN DT NN IN NNS PRP VBD NNS IN NNP . There are also accusations that private businessmen bribed lawmakers . EX VBP RB NNS IN JJ NNS VBD NNS . Earlier Friday , a public opinion poll indicated the Brazilian leader would lose a re-election bid in 2006 because of the growing scandal . RBR NNP , DT JJ NN NN VBD DT JJ NN MD VB DT NN NN IN CD IN IN DT VBG NN . On Thursday , the publicist behind Mr. da Silva 's 2002 presidential campaign , Duda Mendonca told congressional investigators that he was partly paid for his services with illegal funds from an offshore bank . IN NNP , DT NN IN NNP NNP NNP POS CD JJ NN , NNP NNP VBD JJ NNS IN PRP VBD RB VBN IN PRP$ NNS IN JJ NNS IN DT JJ NN . Several lawmakers have resigned since the corruption scandal surfaced in June . JJ NNS VBP VBN IN DT NN NN VBD IN NNP . Hospitals in Bombay are struggling to cope with hundreds of patients infected by waterborne diseases in the aftermath of western India 's monsoon floods , and they say the death toll is rising . NNS IN NNP VBP VBG TO VB IN NNS IN NNS VBN IN JJ NNS IN DT NN IN JJ NNP POS NN NNS , CC PRP VBP DT NN NN VBZ VBG . A government health official says illnesses caused by contaminated water have killed at least 66 people , and there are fears the TRUE death toll could be far higher , since many cases have not been reported . DT NN NN NN VBZ NNS VBN IN JJ NN VBP VBN IN JJS CD NNS , CC EX VBP NNS DT JJ NN NN MD VB RB JJR , IN JJ NNS VBP RB VBN VBN . Thousands of people seeking medical care crowded into the city 's handful of state-run hospitals , Friday . NNS IN NNS VBG JJ NN VBN IN DT NN POS NN IN JJ NNS , NNP . The facilities are short of beds , and many patients are forced to sleep on floors or wait for care in the streets outside the hospitals . DT NNS VBP JJ IN NNS , CC JJ NNS VBP VBN TO VB IN NNS CC VB IN NN IN DT NNS IN DT NNS . Bombay 's medical crisis continues , two weeks after record monsoon floods that inundated the city killed more than 1,000 people . NNP POS JJ NN VBZ , CD NNS IN NN NN NNS WDT VBD DT NN VBD JJR IN CD NNS . Egyptian authorities say the death toll from the collapse of a residential building last week has risen to 35 . JJ NNS VBP DT NN NN IN DT NN IN DT JJ NN JJ NN VBZ VBN TO CD . The 12-story building in the Mediterranean port city of Alexandria crumbled on Monday . DT JJ NN IN DT JJ JJ NN IN NNP VBD IN NNP . Rescue workers have pulled three survivors from the rubble . NN NNS VBP VBN CD NNS IN DT NN . The building collapsed as construction workers carried out repairs on the first floor . DT NN VBD IN NN NNS VBD RP NNS IN DT JJ NN . Prosecutors have issued arrest warrants for the building 's owner and a contractor responsible for repair work . NNS VBP VBN NN NNS IN DT NN POS NN CC DT NN JJ IN NN NN . Buildings frequently collapse in Egypt because of poor maintenance and inferior construction in violation of regulations . NNS RB VBP IN NNP IN IN JJ NN CC JJ NN IN NN IN NNS . Egyptian authorities say the building was erected 25 years ago without a permit . JJ NNS VBP DT NN VBD VBN CD NNS RB IN DT NN . It was originally seven stories , but five more were added later . PRP VBD RB CD NNS , CC CD JJR VBD VBN RB . Pakistani police say a suicide bomber crashed an explosives-laden car into a police checkpoint killing at least three officers and wounding 17 others . JJ NNS VBP DT NN NN VBD DT JJ NN IN DT NN NN VBG IN JJS CD NNS CC VBG CD NNS . Officials say Monday 's early morning attack occurred in northwest Pakistan , near the North Waziristan tribal region bordering Afghanistan . NNS VBP NNP POS JJ NN NN VBD IN JJ NNP , IN DT NNP NNP JJ NN VBG NNP . No one has claimed responsibility for the incident . DT NN VBZ VBN NN IN DT NN . Many Taliban and al-Qaida militants fled to Pakistan from neighboring Afghanistan after the U.S.-led invasion in Afghanistan toppled the Taliban in late 2001 . JJ NNP CC NNP NNS VBD TO NNP IN VBG NNP IN DT JJ NN IN NNP VBD DT NNP IN JJ CD . Insurgents have a strong presence in Pakistan 's volatile tribal areas . NNS VBP DT JJ NN IN NNP POS JJ JJ NNS . Afghan officials say five people were killed and six others injured when an earthquake struck near the country 's eastern border with Pakistan . JJ NNS VBP CD NNS VBD VBN CC CD NNS VBN WRB DT NN VBD IN DT NN POS JJ NN IN NNP . A Defense Ministry spokesman , General Mohammed Zahir Azimi , said several homes were destroyed in the quake in Zabul province , correcting an earlier statement that the quake struck in neighboring Paktika province . DT NNP NNP NN , NNP NNP NNP NNP , VBD JJ NNS VBD VBN IN DT NN IN NNP NN , VBG DT JJR NN IN DT NN VBD IN JJ NNP NN . The spokesman said that Army rescue teams and doctors were in the region assessing the damage and helping villagers . DT NN VBD IN NNP NN NNS CC NNS VBD IN DT NN VBG DT NN CC VBG NNS . Pakistan 's Seismological Center in the city of Peshawar said two quakes were registered along the border area early Sunday . NNP POS NNP NNP IN DT NN IN NNP VBD CD NNS VBD VBN IN DT NN NN JJ NNP . War-shattered Afghanistan does not have a meteorological agency that can provide information about the scale of earthquakes . JJ NNP VBZ RB VB DT JJ NN WDT MD VB NN IN DT NN IN NNS . Afghanistan was spared the devastation caused by a massive October 8 earthquake in neighboring Pakistan and in India . NNP VBD VBN DT NN VBN IN DT JJ NNP CD NN IN JJ NNP CC IN NNP . The United Nations is launching a massive campaign in Burma this week to fight the spread of dengue fever in areas hard-hit by last month 's deadly cyclone . DT NNP NNP VBZ VBG DT JJ NN IN NNP DT NN TO VB DT NN IN NN NN IN NNS JJ IN JJ NN POS JJ NN . Starting Tuesday , hundreds of volunteers will begin fanning out across the main city of Rangoon and into the Irrawaddy Delta , where the U.N. estimates more than two million people have been affected by the storm . VBG NNP , NNS IN NNS MD VB VBG RP IN DT JJ NN IN NNP CC IN DT NNP NNP , WRB DT NNP VBZ JJR IN CD CD NNS VBP VBN VBN IN DT NN . The groups will be looking for mosquito larvae that breed in pools of standing water during the monsoon season . DT NNS MD VB VBG IN NN NN IN VBP IN NNS IN VBG NN IN DT NN NN . That season began early last month when Cyclone Nargis ripped across the delta , leaving more than 1,30,000 people dead and missing . DT NN VBD RB JJ NN WRB NNP NNP VBD IN DT NN , VBG JJR IN CD NNS JJ CC JJ . U.N. officials fear the number of cases of the mosquito-borne disease could be higher than usual this year because many people have lost their homes and are more exposed to mosquitoes . NNP NNS VBP DT NN IN NNS IN DT JJ NN MD VB JJR IN JJ DT NN IN JJ NNS VBP VBN PRP$ NNS CC VBP RBR JJ TO NNS . Members of the international community are meeting Wednesday in Afghanistan to reduce record-high opium production and illegal drug trafficking . NNS IN DT JJ NN VBP VBG NNP IN NNP TO VB JJ NN NN CC JJ NN NN . The anti-drug conference opened in Kabul with United Nations experts discussing the security threat that opium poses to Afghanistan and surrounding nations . DT JJ NN VBD IN NNP IN NNP NNP NNS VBG DT NN NN WDT VBD NNS TO NNP CC VBG NNS . A U.N. report released earlier this year showed poppy cultivation reached new highs this year in Afghanistan , with nearly 95 percent of the world 's opium produced in the country . DT NNP NN VBN RBR DT NN VBD NN NN VBD JJ NNS DT NN IN NNP , IN RB CD NN IN DT NN POS NN VBN IN DT NN . The U.N. report also said the illegal opium trade drives instability by helping fund Taliban insurgents . DT NNP NN RB VBD DT JJ NN NN VBZ NN IN VBG VB NNP NNS . Topics on the agenda include ways to strengthen border security among Central Asian countries that are increasingly becoming a destination for heroin . NNS IN DT NN VBP NNS TO VB NN NN IN JJ JJ NNS WDT VBP RB VBG DT NN IN NN . Last week , the European Union suggested some of Afghanistan 's poppy crop should be used to make legal opium-based pain medicine instead of heroin . JJ NN , DT NNP NNP VBD DT IN NNP POS NN NN MD VB VBN TO VB JJ JJ NN NN IN IN NN . The United States and the Afghan government oppose the idea . DT NNP NNPS CC DT JJ NN VBP DT NN . North Korean state radio reportedly has raised the question of a dynastic transfer of power from Kim Jong-il to one of his sons when the Stalinist leader dies . JJ JJ NN NN RB VBZ VBN DT NN IN DT JJ NN IN NN IN NNP NNP TO CD IN PRP$ NNS WRB DT JJ NN VBZ . Mr. Kim , who turns 63 next month , inherited power from his father Kim Il-Sung in 1994 , establishing what has been called the world 's first Communist dynasty . NNP NNP , WP VBZ CD JJ NN , VBD NN IN PRP$ NN NNP NNP IN CD , VBG WP VBZ VBN VBN DT NN POS JJ JJ NN . South Korean media report Monday that a recent political commentary on North Korean radio , heard last Thursday , referred to comments by the elder Kim saying his son or even his grandson should complete his work if he falls short of completing the country 's ' revolution . ' JJ JJ NNS VBP NNP IN DT JJ JJ NN IN JJ JJ NN , VBN JJ NNP , VBD TO NNS IN DT NN NNP VBG PRP$ NN CC RB PRP$ NN MD VB PRP$ NN IN PRP VBZ JJ IN VBG DT NN POS `` NN . `` Kim Jong-il has three sons , the eldest being 33-year-old Kim Jong-Nam . NNP NNP VBZ CD NNS , DT JJS VBG JJ NNP NNP . His two rivals for a possible succession are 23-year-old Kim Jong-Chul and 21-year-old Kim Jong-Woon . PRP$ CD NNS IN DT JJ NN VBP JJ NNP NNP CC JJ NNP NNP . Recent civil wars in the West African nations of Liberia , Sierra Leone and Ivory Coast destabilized neighboring southeast Guinea with a flood of refugees and increased poverty . JJ JJ NNS IN DT JJ JJ NNS IN NNP , NNP NNP CC NNP NNP VBD JJ NN NNP IN DT NN IN NNS CC VBD NN . Health workers say the movement of displaced people and an increase in sexual assaults have caused the region to have the highest HIV / AIDS rate in the country . NN NNS VBP DT NN IN JJ NNS CC DT NN IN JJ NNS VBP VBN DT NN TO VB DT JJS NNP NNP NNP NN IN DT NN . As people die from the virus , many leave behind children to face life as AIDS orphans . IN NNS VBP IN DT NN , JJ NN IN NNS TO VB NN IN NNP NNS . Kari Barber has more from the town of N'Zerekore in Guinea . NNP NNP VBZ RBR IN DT NN IN NNP IN NNP . South Korean diplomats have taken custody of eight people believed to be North Koreans who entered a South Korean school in eastern China . JJ JJ NNS VBP VBN NN IN CD NNS VBN TO VB JJ NNS WP VBD DT JJ JJ NN IN JJ NNP . The North Koreans entered the school Tuesday in the city of Qingdao , along China 's eastern coast asking to be sent to South Korea . DT NNP NNS VBD DT NN NNP IN DT NN IN NNP , IN NNP POS JJ NN VBG TO VB VBN TO NNP NNP . South Korea 's Foreign Ministry says it has appealed to Beijing not to send the asylum seekers back to North Korea . NNP NNP POS NNP NNP VBZ PRP VBZ VBN TO NNP RB TO VB DT NN NNS RB TO NNP NNP . China recently sent home seven North Koreans who sought asylum in August at a South Korean school in the Chinese city of Yentai . NNP RB VBD NN CD NNP NNS WP VBD NN IN NNP IN DT JJ JJ NN IN DT JJ NN IN NNP . Beijing has an agreement with Pyongyang to return asylum seekers , but has allowed many to travel to South Korea through third countries . NNP VBZ DT NN IN NNP TO VB NN NNS , CC VBZ VBN JJ TO VB TO NNP NNP IN JJ NNS . Hundreds of North Koreans have broken into embassies and foreign schools in China in recent years seeking asylum . NNS IN NNP NNS VBP VBN IN NNS CC JJ NNS IN NNP IN JJ NNS VBG NN . The Nepalese military says a fierce battle between government troops and Maoist rebels has left at least five soldiers and an unknown number of guerillas dead . DT JJ NN VBZ DT JJ NN IN NN NNS CC JJ NNS VBZ VBN IN JJS CD NNS CC DT JJ NN IN NNS JJ . A military statement says the clash occurred Friday in the western Kapilvastu district as security forces were trying to clear roadblocks set up by the rebels . DT JJ NN VBZ DT NN VBD NNP IN DT JJ NNP NN IN NN NNS VBD VBG TO VB NNS VBN RP IN DT NNS . The statement says the rebels , who were hiding in the area , set off bombs targeting the security forces , who retaliated with heavy gunfire . DT NN VBZ DT NNS , WP VBD VBG IN DT NN , VBD RP NNS VBG DT NN NNS , WP VBD IN JJ NN . The Maoists are fighting to topple Nepal 's constitutional monarchy and replace it with a communist state . DT NNS VBP VBG TO VB NNP POS JJ NN CC VB PRP IN DT JJ NN . In an unrelated development , Nepalese authorities released a journalist held in detention by security forces for almost 21 months . IN DT JJ NN , JJ NNS VBD DT NN VBN IN NN IN NN NNS IN RB CD NNS . The Federation of Nepalese Journalists says Bhaikaji Ghimire was released Thursday afternoon on the Supreme Court 's order . DT NNP IN JJ NNPS VBZ NNP NNP VBD VBN NNP NN IN DT NNP NNP POS NN . A UN report on human rights abuses in Ivory Coast has been published in the Paris-based newspaper Liberation , several days after it was leaked to Ivorian papers . DT NNP NN IN JJ NNS NNS IN NNP NNP VBZ VBN VBN IN DT JJ NN NN , JJ NNS IN PRP VBD VBN TO JJ NNS . The report outlines examples of death squads , mass executions , torture and rapes in the country over the past two years . DT NN VBZ NNS IN NN NNS , NN NNS , NN CC NNS IN DT NN IN DT JJ CD NNS . VOA West Africa correspondent Nico Colombant , based in Abidjan , talked with English to Africa reporter William Eagle about the abuses . NNP NNP NNP NN NNP NNP , VBN IN NNP , VBD IN NNP TO NNP NN NNP NNP IN DT NNS . Correspondent Colombant says authorities are probably directing them , although it is difficult to determine who exactly is giving the orders . NNP NNP VBZ NNS VBP RB VBG PRP , IN PRP VBZ JJ TO VB WP RB VBZ VBG DT NNS . Among those abused are women , and he says soldiers and rebels engage in rape . IN DT VBN VBP NNS , CC PRP VBZ NNS CC NNS VBP IN NN . He says warfare and economic hard times have led to a growth in prostitution , which is sometimes controlled by soldiers . PRP VBZ NN CC JJ JJ NNS VBP VBN TO DT NN IN NN , WDT VBZ RB VBN IN NNS . UN peacekeepers have also been seen soliciting prostitutes , which could lead to the spread of AIDS and other sexually transmitted diseases NNP NNS VBP RB VBN VBN VBG NNS , WDT MD VB TO DT NN IN NNP CC JJ RB JJ NNS U.N. Secretary-General Ban Ki-moon says the Lebanese militant group Hezbollah has outlined its terms for further prisoner exchanges with Israel . NNP NNP NNP NNP VBZ DT JJ JJ NN NNP VBZ VBN PRP$ NNS IN JJ NN NNS IN NNP . Mr. Ban Wednesday said he received a letter from Hezbollah chief Hassan Nasrallah . NNP NNP NNP VBD PRP VBD DT NN IN NNP NN NNP NNP . He said Nasrallah indicated his willingness to resolve the remaining Israeli missing in action humanitarian cases of the 1980s . PRP VBD NNP VBD PRP$ NN TO VB DT VBG NNS VBG IN NN JJ NNS IN DT NNS . But before Hezbollah acts , the Lebanese Shi'ite leader wants the release of hundreds of ' minors , women and elderly people being held in Israeli detention ' as well as detainees suffering from handicaps and injuries . CC IN NNP NNS , DT JJ NNP NN VBZ DT NN IN NNS IN `` NNS , NNS CC JJ NNS VBG VBN IN JJ NN `` RB RB IN NNS VBG IN NNS CC NNS . Last week , Israel released five prisoners and the remains of some 200 militants to Lebanon in exchange for the bodies of two Israeli soldiers whose capture two years ago triggered a 34-day war . JJ NN , NNP VBD CD NNS CC DT NNS IN DT CD NNS TO NNP IN NN IN DT NNS IN CD JJ NNS WP$ NN CD NNS RB VBD DT JJ NN . Wednesday , Hezbollah transferred the remains of 114 of those militants to Syria . NNP , NNP VBD DT NNS IN CD IN DT NNS TO NNP . Hundreds of relatives greeted the bodies as they were handed over at the Lebanese-Syrian border . NNS IN NNS VBD DT NNS IN PRP VBD VBN RP IN DT JJ NN . Arnold Schwarzenegger , the Republican governor of California , is scheduled to address this year 's conference of Britain 's Conservative Party . NNP NNP , DT JJ NN IN NNP , VBZ VBN TO VB DT NN POS NN IN NNP POS NNP NNP . Party officials said Sunday in London that Schwarzenegger would speak about climate change at the party 's annual meeting . NNP NNS VBD NNP IN NNP IN NNP MD VB IN NN NN IN DT NN POS JJ NN . British conservative leader David Cameron said Schwarzenegger had shown tremendous leadership in pioneering measures to protect the environment . JJ JJ NN NNP NNP VBD NNP VBD VBN JJ NN IN VBG NNS TO VB DT NN . Schwarzenegger signed into law last year a measure that imposed emissions limits on utilities , refineries and manufacturing plants . NNP VBD IN NN JJ NN DT NN WDT VBD NNS NNS IN NNS , NNS CC NN NNS . The goal is to cut greenhouse gas emissions 25 percent by the year 2020 . DT NN VBZ TO VB NN NN NNS CD NN IN DT NN CD . He said California could set the standard for the United States and the rest of the world . PRP VBD NNP MD VB DT NN IN DT NNP NNPS CC DT NN IN DT NN . Taleban militants in Afghanistan bombed a convoy carrying a provincial governor and later opened fire on the vehicles , killing one official . NNP NNS IN NNP VBD DT NN VBG DT JJ NN CC RB VBD NN IN DT NNS , VBG CD NN . Authorities said the governor of eastern Lagham province was unhurt in the attack Saturday . NNS VBD DT NN IN JJ NNP NN VBD JJ IN DT NN NNP . They said one official in the provincial government was killed by gunfire . PRP VBD CD NN IN DT JJ NN VBD VBN IN NN . A Taleban spokesman claimed responsibility for the attack . DT NNP NN VBD NN IN DT NN . Police said they had detained several suspects . NNS VBD PRP VBD VBN JJ NNS . Meanwhile , Afghan officials said a roadside bomb killed six members of a security force in eastern Paktia province . RB , JJ NNS VBD DT NN NN VBD CD NNS IN DT NN NN IN JJ NNP NN . In Kandahar province , two NATO soldiers were killed and three wounded by militants firing rocket propelled grenades and small arms . IN NNP NN , CD NNP NNS VBD VBN CC CD VBN IN NNS VBG NN VBD NNS CC JJ NNS . Coalition officials did not release the nationality of the troops involved . NN NNS VBD RB VB DT NN IN DT NNS VBN . Friday , a suicide attack on a NATO convoy in Kandahar killed one NATO soldier and eight Afghan civilians . NNP , DT NN NN IN DT NNP NN IN NNP VBD CD NNP NN CC CD JJ NNS . A report by the U.S. Defense Department estimates about 26,000 Iraqi civilians have been killed or wounded in attacks by insurgents since January last year . DT NN IN DT NNP NNP NNP VBZ IN CD JJ NNS VBP VBN VBN CC VBN IN NNS IN NNS IN NNP JJ NN . The Pentagon provided the estimate in a report to Congress this month . DT NNP VBD DT NN IN DT NN TO NNP DT NN . It says about 80 percent of all insurgent attacks were directed at coalition forces , but that the majority of all casualties , 80 percent , are among Iraqi civilians . PRP VBZ IN CD NN IN DT JJ NNS VBD VBN IN NN NNS , CC IN DT NN IN DT NNS , CD NN , VBP IN JJ NNS . Further , the Pentagon says the number of Iraqi casualties has risen , from about 26 a day between the months of January and March 2004 , to about 64 a day in the period between August 29 of this year and September 16 . RB , DT NNP VBZ DT NN IN JJ NNS VBZ VBN , IN IN CD DT NN IN DT NNS IN NNP CC NNP CD , TO IN CD DT NN IN DT NN IN NNP CD IN DT NN CC NNP CD . Violence continued Saturday , when at least 25 people died following a bomb explosion in a Shi'ite village north of Baghdad . NN VBD NNP , WRB IN JJS CD NNS VBD VBG DT NN NN IN DT NNP NN NN IN NNP . Pakistani President Pervez Musharraf has dismissed opposition protests over the suspension of the country 's top judge , saying his critics are trying to politicize a constitutional and judicial issue . JJ NNP NNP NNP VBZ VBN NN NNS IN DT NN IN DT NN POS JJ NN , VBG PRP$ NNS VBP VBG TO VB DT JJ CC JJ NN . Thousands of people across Pakistan protested Monday against the removal of Chief Justice Iftikhar Mohammed Chaudry earlier this month on allegations of abusing authority . NNS IN NNS IN NNP VBD NNP IN DT NN IN NNP NNP NNP NNP NNP RBR DT NN IN NNS IN VBG NN . Lawyers and opposition parties say General Musharraf is trying to interfere with the independence of the judiciary . NNS CC NN NNS VBP NNP NNP VBZ VBG TO VB IN DT NN IN DT NN . He insists there is little public support for the protests . PRP VBZ EX VBZ JJ JJ NN IN DT NNS . During a speech Tuesday in Rawalpindi , the Pakistani leader also denied the government has been involved in the disappearance of hundreds of people since Pakistan joined the U.S.-led war on terrorism in 2001 . IN DT NN NNP IN NNP , DT JJ NN RB VBD DT NN VBZ VBN VBN IN DT NN IN NNS IN NNS IN NNP VBD DT JJ NN IN NN IN CD . Human rights groups say the government has detained hundreds of people in secret , accusing them of links to extremist groups . JJ NNS NNS VBP DT NN VBZ VBN NNS IN NNS IN NN , VBG PRP IN NNS IN NN NNS . International health workers in Angola say they are still struggling to end an outbreak of the Marburg virus , which has killed 156 people in the southern African nation . JJ NN NNS IN NNP VBP PRP VBP RB VBG TO VB DT NN IN DT NNP NN , WDT VBZ VBN CD NNS IN DT JJ JJ NN . Representatives of Doctors without Borders and the U.N. children 's fund expressed concern Wednesday that the death toll continues to rise , despite emergency efforts . NNS IN NNS IN NNS CC DT NNP NNS POS NN VBD NN NNP IN DT NN NN VBZ TO VB , IN NN NNS . The Associated Press quoted Health Minister Sebastiao Veloso as saying no new cases have been reported outside northwestern Uige province , where the rare virus was first spotted . DT NNP NNP VBD NNP NNP NNP NNP IN VBG DT JJ NNS VBP VBN VBN IN JJ NNP NN , WRB DT JJ NN VBD RB VBN . Hospital workers are using isolation units and protective clothing to limit the spread of the virus , which causes fever , diarrhea and bleeding . NN NNS VBP VBG NN NNS CC JJ NN TO VB DT NN IN DT NN , WDT VBZ NN , NN CC NN . Angola 's government and aid groups have also launched campaigns to warn people that the illness can spread through contact with body fluids . NNP POS NN CC NN NNS VBP RB VBN NNS TO VB NNS IN DT NN MD VB IN NN IN NN NNS . The Discovery Channel and NASA have restored 50 years of history for the U.S. space agency 's archives . DT NNP NNP CC NNP VBP VBN CD NNS IN NN IN DT NNP NN NN POS NNS . Discovery has used the material to produce a documentary series called , When We Left Earth : NNP VBZ VBN DT NN TO VB DT NN NN VBN , WRB PRP VBD NNP : The NASA Missions . DT NNP NNPS . It will be broadcast internationally next month . PRP MD VB VBN RB JJ NN . This week in Washington , former senator and astronaut John Glenn joined members of the U.S. Congress , officials from NASA and others for a sneak preview . DT NN IN NNP , JJ NN CC NN NNP NNP VBD NNS IN DT NNP NNP , NNS IN NNP CC NNS IN DT NN NN . VOA 's Paul Sisco reports . NNP POS NNP NNP VBZ . Venezuelan President Hugo Chavez arrived in Iran Wednesday for talks with officials on bilateral issues . JJ NNP NNP NNP VBD IN NNP NNP IN NNS IN NNS IN JJ NNS . Reports say he is expected to meet with Iranian President Mahmoud Ahmadinejad on Thursday as well as launch a joint development bank and bilateral investment fund . NNS VBP PRP VBZ VBN TO VB IN JJ NNP NNP NNP IN NNP RB RB IN NN DT JJ NN NN CC JJ NN NN . Mr. Chavez ' visit to Iran follows a meeting with Latin American and Arab leaders in Qatar . NNP NNP POS NN TO NNP VBZ DT NN IN JJ JJ CC JJ NNS IN NNP . The Venezuelan president has made several trips to Iran since Mr. Ahmadinejad took power in 2005 . DT JJ NN VBZ VBN JJ NNS TO NNP IN NNP NNP VBD NN IN CD . Both leaders have forged close ties . DT NNS VBP VBN JJ NNS . Later this week , Mr. Chavez heads to Asia for talks with regional leaders . RB DT NN , NNP NNP VBZ TO NNP IN NNS IN JJ NNS . Pakistan 's military says it has successfully test-fired a short-range nuclear-capable missile . NNP POS JJ VBZ PRP VBZ RB VBN DT JJ JJ NN . Officials say the ( Abdali ) surface-to-surface ballistic missile , with a range of 200 kilometers , was launched Saturday from an undisclosed location inside Pakistan . NNS VBP DT LRB NNP RRB JJ JJ NN , IN DT NN IN CD NNS , VBD VBN NNP IN DT JJ NN IN NNP . It is the country 's second missile test this month . PRP VBZ DT NN POS JJ NN NN DT NN . The launch comes one day after Pakistan 's rival , India , test-fired a nuclear-capable ballistic missile from a ship off its east coast in the Bay of Bengal . DT NN VBZ CD NN IN NNP POS NN , NNP , VBD DT JJ JJ NN IN DT NN IN PRP$ JJ NN IN DT NNP IN NNP . Pakistan and India often conduct such tests to demonstrate their defensive readiness . NNP CC NNP RB VBP JJ NNS TO VB PRP$ JJ NN . The two rivals normally give each other notice for long-range missile launches . DT CD NNS RB VBP DT JJ NN IN JJ NN NNS . A team of inspectors from the United Nations nuclear agency has visited a heavy water reactor in Iran . DT NN IN NNS IN DT NNP NNP JJ NN VBZ VBN DT JJ NN NN IN NNP . Iranian state media reports Monday 's inspection of the Arak facility took five hours . JJ NN NNS NNS NNP POS NN IN DT NNP NN VBD CD NNS . The facility will produce plutonium once it is completed . DT NN MD VB NN RB PRP VBZ VBN . Foreign Ministry spokesman Mohammad Ali Hosseini says another team from the IAEA will visit Iran on August 6 to work out a framework for inspecting the Natanz uranium enrichment facility . NNP NNP NN NNP NNP NNP VBZ DT NN IN DT NNP MD VB NNP IN NNP CD TO VB RP DT NN IN VBG DT NNP NN NN NN . Iran has agreed to allow the inspections as part of a deal to resolve questions about its nuclear activities . NNP VBZ VBN TO VB DT NNS IN NN IN DT NN TO VB NNS IN PRP$ JJ NNS . Plutonium and highly enriched uranium can be used to build nuclear weapons . NN CC RB VBN NN MD VB VBN TO VB JJ NNS . The U.N. Security Council has imposed two sets of sanctions on Iran because of its refusal to suspend uranium enrichment . DT NNP NNP NNP VBZ VBN CD NNS IN NNS IN NNP IN IN PRP$ NN TO VB NN NN . The United States and its Western allies accuse Iran of trying to develop nuclear weapons , but Iran says its atomic program is for peaceful purposes . DT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS , CC NNP VBZ PRP$ JJ NN VBZ IN JJ NNS . Saudi King Abdullah says dangerous conditions in Iraq , Lebanon and the Palestinian territories could trigger broad conflict in the region . NNP NNP NNP VBZ JJ NNS IN NNP , NNP CC DT JJ NNS MD VB JJ NN IN DT NN . Speaking at a summit of Gulf leaders in Riyadh Saturday , the Saudi king said the Middle East is like a powder keg waiting for a spark to explode . VBG IN DT NN IN NNP NNS IN NNP NNP , DT NNP NN VBD DT NNP NNP VBZ IN DT NN NN VBG IN DT NN TO VB . He expressed concern that Palestinians are fighting among themselves , and that Iraqis are killing each other . PRP VBD NN IN NNS VBP VBG IN PRP , CC IN NNS VBP VBG DT NN . King Abdullah added that unity in Lebanon is at risk , following a month-long war between Israel and Hezbollah militants . NNP NNP VBD IN NN IN NNP VBZ IN NN , VBG DT JJ NN IN NNP CC NNP NNS . Officials at the Riyadh meeting of the Gulf Cooperation Council were expected to discuss Iran 's nuclear program . NNS IN DT NNP NN IN DT NNP NNP NNP VBD VBN TO VB NNP POS JJ NN . The regional group brings together Bahrain , Kuwait , Oman , Qatar , Saudi Arabia and the United Arab Emirates . DT JJ NN VBZ RB NNP , NNP , NNP , NNP , NNP NNP CC DT NNP NNP NNPS . The U.S. Defense Department says U.S. and North Korean officials have reached agreement on a framework to recover the remains of American servicmen missing from the Korean War . DT NNP NNP NNP VBZ NNP CC JJ JJ NNS VBP VBN NN IN DT NN TO VB DT NNS IN JJ NNS VBG IN DT JJ NNP . Two days of talks in Bangkok were led by U.S. Deputy Assistant Secretary of Defense Jerry Jennings . CD NNS IN NNS IN NNP VBD VBN IN NNP NNP NNP NNP IN NNP NNP NNP . The agreement reached Thursday will mark the 10th consecutive year that U.S. specialists have carried out remains recovery missions in North Korea . DT NN VBN NNP MD VB DT JJ JJ NN IN NNP NNS VBP VBN RP VBZ NN NNS IN NNP NNP . The remains of more than 200 soldiers have been recovered since 1996 . DT NNS IN JJR IN CD NNS VBP VBN VBN IN CD . Of the 88,000 Americans missing from all conflicts , more than 8,100 are from the Korean War . IN DT CD NNS VBG IN DT NNS , JJR IN CD VBP IN DT NNP NNP . Financial regulators in the United States have introduced new rules intended to curb a trading strategy that benefits investors when stock prices fall , and that has been blamed for market turmoil . NNP NNS IN DT NNP NNPS VBP VBN JJ NNS VBN TO VB DT NN NN WDT VBZ NNS WRB NN NNS VBP , CC DT VBZ VBN VBN IN NN NN . New rules from the U.S. Securities and Exchange Commission that went into effect Thursday restrict certain types of so-called short-selling . NNP NNS IN DT NNP NNPS CC NNP NNP WDT VBD IN NN NNP VB JJ NNS IN JJ NN . Short-selling occurs when a trader borrows shares in a stock from a broker to sell . NN VBZ WRB DT NN VBZ NNS IN DT NN IN DT NN TO VB . If the stock price goes down , the trader buys back more shares at a cheaper price , returns the broker 's portion and keeps the rest . IN DT NN NN VBZ RB , DT NN VBZ RB JJR NNS IN DT JJR NN , VBZ DT NN POS NN CC VBZ DT NN . Regulators in Great Britain have enacted a temporary ban on short-selling . NNS IN NNP NNP VBP VBN DT JJ NN IN NN . New York state 's attorney general , Andrew Cuomo , says he is launching an investigation into instances of illegal short-selling , in which traders or brokers spread FALSE information about the deals . NNP NNP NN POS NN NN , NNP NNP , VBZ PRP VBZ VBG DT NN IN NNS IN JJ NN , IN WDT NNS CC NNS VBD JJ NN IN DT NNS . An international human rights group says Kuwaiti should stop arresting and deporting expatriate supporters of Egyptian pro-reform activist and Nobel Peace Prize winner Mohammed ElBaradei . DT JJ JJ NNS NN VBZ NNS MD VB VBG CC VBG JJ NNS IN JJ JJ NN CC NNP NNP NNP NN NNP NNP . New York-based Human Rights Watch says Kuwait should release all of the Egyptians still in custody , and allow them and those already deported to return to their homes in Kuwait . NNP JJ NNP NNP NNP VBZ NNP MD VB DT IN DT NNS RB IN NN , CC VB PRP CC DT RB VBN TO VB TO PRP$ NNS IN NNP . Kuwaiti authorities released around 21 Egyptian residents of Kuwait Saturday , and deported them to Egypt . JJ NNS VBN IN CD JJ NNS IN NNP NNP , CC VBD PRP TO NNP . Human Rights Watch says some of the Egyptians were detained after they attended a meeting in support of ElBaradei on April 8 . NNP NNP NNP VBZ DT IN DT NNS VBD VBN IN PRP VBD DT NN IN NN IN NNP IN NNP CD . Others were detained the next day during a meeting to discuss the arrests . NNS VBD VBN DT JJ NN IN DT NN TO VB DT NNS . ElBaradei , a former chief of the International Atomic Energy Agency , is leading a campaign for political reform in Egypt . NNP , DT JJ NN IN DT NNP NNP NNP NNP , VBZ VBG DT NN IN JJ NN IN NNP . He also has expressed a willingness to run against President Hosni Mubarak in an election next year on condition the vote is free and fair . PRP RB VBZ VBN DT NN TO VB IN NNP NNP NNP IN DT NN JJ NN IN NN DT NN VBZ JJ CC JJ . Insurgents trying to derail Iraq 's January elections have attacked a voter registration center in Dujail , north of Baghdad , killing at least one civilian and wounding several others . NNS VBG TO VB NNP POS NNP NNS VBP VBN DT NN NN NN IN NNP , NN IN NNP , VBG IN JJS CD JJ CC VBG JJ NNS . Another attack Saturday in Mosul killed one person and wounded at least six others when a bomb exploded near a U.S. military patrol , but instead hit a passing school bus . DT NN NNP IN NNP VBD CD NN CC VBD IN JJS CD NNS WRB DT NN VBD IN DT NNP JJ NN , CC RB VBD DT NN NN NN . Meanwhile , an Iraqi militant group claimed responsibility for the murders of two American contractors in an ambush December eighth near Baghdad . RB , DT JJ JJ NN VBD NN IN DT NNS IN CD JJ NNS IN DT JJ NNP NN IN NNP . Joseph Wemple and Dale Stoffel worked on construction and engineering projects in Iraq . NNP NNP CC NNP NNP VBD IN NN CC NN NNS IN NNP . And Turkey 's foreign ministry has clarified that five Turkish security guards and two Iraqi drivers were killed in an ambush Friday near Mosul . CC NNP POS JJ NN VBZ VBN IN CD JJ NN NNS CC CD JJ NNS VBD VBN IN DT JJ NNP IN NNP . An earlier ministry statement did not specify how many were killed , but some news reports had said four guards were killed . DT JJR NN NN VBD RB VB WRB JJ VBD VBN , CC DT NN NNS VBD VBN CD NNS VBD VBN . Israeli warplanes have dropped leaflets warning Gaza residents to stay clear of the border , after Palestinian militants fired at least 10 mortar shells at Israel . JJ NNS VBP VBN NNS VBG NNP NNS TO VB JJ IN DT NN , IN JJ NNS VBD IN JJS CD NN NNS IN NNP . The leaflets warned residents not to come within 300 meters of the border fence , and to avoid involvement with weapons smugglers along the Gaza-Egypt border . DT NNS VBD NNS RB TO VB IN CD NNS IN DT NN NN , CC TO VB NN IN NNS NNS IN DT JJ NN . The Israeli army says some of the mortar shells landed in Israel near the Kerem Shalom crossing with the Gaza Strip . DT JJ NN VBZ DT IN DT NN NNS VBD IN NNP IN DT NNP NNP VBG IN DT NNP NNP . There were no reports of casualties or damage . EX VBD DT NNS IN NNS CC NN . The development comes one year after Israel carried out a three-week offensive against Hamas militants in Gaza . DT NN VBZ CD NN IN NNP VBD RP DT JJ NN IN NNP NNS IN NNP . Israel says the operation was aimed at halting rockets attacks into Israel . NNP VBZ DT NN VBD VBN IN VBG NNS NNS IN NNP . Palestinian militants have since carried out sporadic rocket and mortar attacks that have provoked Israeli military strikes . JJ NNS VBP RB VBN IN JJ NN CC NN NNS WDT VBP VBN JJ JJ NNS . At least 1,300 Palestinians and 13 Israelis were killed in the fighting during Israel 's Gaza offensive . IN JJS CD NNS CC CD NNS VBD VBN IN DT NN IN NNP POS NNP NN . Venezuela has deployed troops in two opposition-led states , where final results from Sunday 's general election have yet to be released . NNP VBZ VBN NNS IN CD JJ NNS , WRB JJ NNS IN NNP POS JJ NN VBP RB TO VB VBN . Interior Minister Jesse Chacon says the National Guard troops were sent Tuesday to help prevent violence . NNP NNP NNP NNP VBZ DT NNP NNP NNS VBD VBN NNP TO VB VB NN . In Yaracuy , troops surrounded the office of opposition Governor Eduardo Lapi , who vowed not to leave his post until final vote results are issued . IN NNP , NNS VBN DT NN IN NN NNP NNP NNP , WP VBD RB TO VB PRP$ NN IN JJ NN NNS VBP VBN . He questioned if the troop deployment was a coup attempt against him . PRP VBD IN DT NN NN VBD DT NN NN IN PRP . Security was also boosted in Carabobo state , where another opposition official , Governor Henrique Salas , is seeking re-election . NN VBD RB VBN IN NNP NN , WRB DT NN NN , NNP NNP NNP , VBZ VBG NN . Monday , election officials issued results for many regions , showing Mr. Chavez 's party had won 18 of the country 's 22 state governor posts that were being disputed . NNP , NN NNS VBD NNS IN JJ NNS , VBG NNP NNP POS NN VBD VBN CD IN DT NN POS CD NN NN NNS WDT VBD VBG VBN . Officials say they plan to release final results in the next two day . NNS VBP PRP VBP TO VB JJ NNS IN DT JJ CD NN . Some of this information provided by Reuters . DT IN DT NN VBN IN NNP . The largest U.S. automaker , General Motors , is getting its fourth new chief executive officer in 18 months , Dan Akerson . DT JJS NNP NN , NNP NNPS , VBZ VBG PRP$ JJ JJ JJ NN NN IN CD NNS , NNP NNP . He takes over in September just as GM has posted its second consecutive profitable quarter . PRP VBZ RP IN NNP RB IN NNP VBZ VBN PRP$ JJ JJ JJ NN . That is a major turnaround for the company that emerged from bankruptcy with the aid of $ 50 billion in emergency government loans . DT VBZ DT JJ NN IN DT NN WDT VBD IN NN IN DT NN IN $ CD CD IN NN NN NNS . Akerson is a member of the GM board of directors , but most of his business experience is in running , buying , and selling major telecommunications companies . NNP VBZ DT NN IN DT NNP NN IN NNS , CC JJS IN PRP$ NN NN VBZ IN VBG , NN , CC VBG JJ NNS NNS . While the 61-year-old executive lacks manufacturing experience , analysts say he is well regarded on Wall Street , which will be helpful as the company gets ready to make a major stock offering . IN DT JJ NN VBZ VBG NN , NNS VBP PRP VBZ RB VBN IN NNP NNP , WDT MD VB JJ IN DT NN VBZ JJ TO VB DT JJ NN NN . Described as quiet and private , Akerson is expected to become the face of GM in an industry where the CEO is often required to be the biggest salesman . VBN IN JJ CC JJ , NNP VBZ VBN TO VB DT NN IN NNP IN DT NN WRB DT NN VBZ RB VBN TO VB DT JJS NN . Japanese Prime Minister Junichiro Koizumi has turned down a request by Peruvian President Alejandro Toledo to meet at the Asia-Pacific Economic Cooperation summit in South Korea . JJ NNP NNP NNP NNP VBZ VBN RP DT NN IN JJ NNP NNP NNP TO VB IN DT NNP NNP NNP NN IN NNP NNP . Japanese officials say Mr. Koizumi does not have time . JJ NNS VBP NNP NNP VBZ RB VB NN . Relations between the two countries have soured over former Peruvian President Alberto Fujimori 's recent return to South America . NNP IN DT CD NNS VBP VBN IN JJ JJ NNP NNP NNP POS JJ NN TO NNP NNP . Mr. Fujimori , a Japanese citizen , fled to Japan five years ago in the midst of a corruption scandal . NNP NNP , DT JJ NN , VBD TO NNP CD NNS RB IN DT NN IN DT NN NN . He was arrested last week in Chile . PRP VBD VBN JJ NN IN NNP . If returned to Peru , he faces charges of corruption and of authorizing death squads . IN VBN TO NNP , PRP VBZ NNS IN NN CC IN VBG NN NNS . Last week , Peru recalled its ambassador to Japan after a Japanese consular official in Chile visited Mr. Fujimori in jail . JJ NN , NNP VBD PRP$ NN TO NNP IN DT JJ JJ NN IN NNP VBD NNP NNP IN NN . Lima says Tokyo is interfering in Mr. Fujimori 's extradition process , but Tokyo insists it is treating him like any other Japanese citizen . NNP VBZ NNP VBZ VBG IN NNP NNP POS NN NN , CC NNP VBZ PRP VBZ VBG PRP IN DT JJ JJ NN . Presumed U.S. Republican presidential nominee John McCain says Thursday 's U.S. Supreme Court ruling on detainees at Guantanamo Bay is one of the worst in American history . VBN NNP NNP JJ NN NNP NNP VBZ NNP POS NNP NNP NNP NN IN NNS IN NNP NNP VBZ CD IN DT JJS IN JJ NN . McCain said at a town hall meeting Friday in the U.S. state of New Jersey that detainees at Guantanamo are enemy combatants , and thus do not get the same rights as U.S. citizens . NNP VBD IN DT NN NN NN NNP IN DT NNP NN IN NNP NNP IN NNS IN NNP VBP NN NNS , CC RB VBP RB VB DT JJ NNS IN NNP NNS . He said the ruling will lead to many lawsuits against the government . PRP VBD DT NN MD VB TO JJ NNS IN DT NN . McCain 's Democratic rival , Barack Obama , praised the Supreme Court ruling . NNP POS JJ NN , NNP NNP , VBD DT NNP NNP NN . In a statement after the ruling was announced , he said the decision ensures that U.S. officials can protect the country and bring terrorists to justice , while also protecting core American values . IN DT NN IN DT NN VBD VBN , PRP VBD DT NN VBZ IN NNP NNS MD VB DT NN CC VB NNS TO NN , IN RB VBG JJ JJ NNS . Obama also said the ruling is an important step toward re-establishing the credibility of the United States as a nation committed to the rule of law . NNP RB VBD DT NN VBZ DT JJ NN IN VBG DT NN IN DT NNP NNPS IN DT NN VBN TO DT NN IN NN . Afghan officials say a suicide bomber killed a police officer in eastern Khost province . JJ NNS VBP DT NN NN VBD DT NN NN IN JJ NNP NN . Authorities say Friday 's blast wounded 15 other people , including eight civilians outside police headquarters in Khost . NNS VBP NNP POS NN VBD CD JJ NNS , VBG CD NNS IN NN NN IN NNP . The Taleban claimed responsibility for the blast . DT NNP VBD NN IN DT NN . Hours later , a second bomber blew himself up at a checkpoint in Khost . NNS RB , DT JJ NN VBD PRP RP IN DT NN IN NNP . That explosion wounded the driver of a taxi the bomber in which the bomber was riding . DT NN VBD DT NN IN DT NN DT NN IN WDT DT NN VBD VBG . There has been no initial claim of responsibility for the attack . EX VBZ VBN DT JJ NN IN NN IN DT NN . Frequent suicide attacks blamed on Taleban militants have killed Afghan police and troops during the past year . JJ NN NNS VBN IN NNP NNS VBP VBN JJ NNS CC NNS IN DT JJ NN . President Bush says Taliban militants in Afghanistan were hit hard last year during military operations by U.S. , Afghan and NATO troops . NNP NNP VBZ NNP NNS IN NNP VBD VBN RB JJ NN IN JJ NNS IN NNP , JJ CC NNP NNS . During a news conference Thursday , Mr. Bush said troops were on the offensive against a resurgent and increasingly violent Taliban movement . IN DT NN NN NNP , NNP NNP VBD NNS VBD IN DT NN IN DT JJ CC RB JJ NNP NN . However , the president also said it makes sense to review U.S. strategy in Afghanistan to figure out what works and what does not . RB , DT NN RB VBD PRP VBZ NN TO VB NNP NN IN NNP TO VB RP WP VBZ CC WP VBZ RB . This week , the U.S. military said it is going to assess coalition strategy in Afghanistan in the wake of rising Taliban attacks . DT NN , DT NNP NN VBD PRP VBZ VBG TO VB NN NN IN NNP IN DT NN IN VBG NNP NNS . Mr. Bush expressed concern that NATO allies might tire of what he called the hard work of securing Afghanistan and may want to withdraw . NNP NNP VBD NN IN NNP NNS MD VB RP WP PRP VBD DT JJ NN IN VBG NNP CC MD VB TO VB . He said the U.S. objective is to give them options - other than combat missions - in Afghanistan and to remind NATO allies that the job of securing the strife-torn country will take time . PRP VBD DT NNP NN VBZ TO VB PRP NNS IN JJ IN NN NNS : IN NNP CC TO VB NNP NNS IN DT NN IN VBG DT JJ NN MD VB NN . U.S. President Barack Obama called India a critical partner during talks with Prime Minister Manmohan Singh at the G-20 summit in London . NNP NNP NNP NNP VBD NNP DT JJ NN IN NNS IN NNP NNP NNP NNP IN DT NNP NN IN NNP . The leaders of the world 's two largest democracies affirmed their nations ' enduring friendship when they met for the first time Thursday . DT NNS IN DT NN POS CD JJS NNS VBD PRP$ NNS POS VBG NN WRB PRP VBD IN DT JJ NN NNP . Mr. Obama called India a global power that will be helpful in dealing with climate change , poverty , science and innovation . NNP NNP VBD NNP DT JJ NN WDT MD VB JJ IN VBG IN NN NN , NN , NN CC NN . The Indian prime minister called Mr. Obama a visionary leader who has given hope to all of ' the oppressed people ' of the world . DT JJ JJ NN VBD NNP NNP DT JJ NN WP VBZ VBN NN TO DT IN `` DT JJ NNS `` IN DT NN . Mr. Singh said India is ready to chart a new path of collaboration in diverse fields , including the challenges of terrorism . NNP NNP VBD NNP VBZ JJ TO VB DT JJ NN IN NN IN JJ NNS , VBG DT NNS IN NN . The Obama administration has said defeating Islamic extremism in South Asia requires a comprehensive , regional approach . DT NNP NN VBZ VBN VBG NNP NN IN NNP NNP VBZ DT JJ , JJ NN . Cuba 's top diplomat in the United States says ailing President Fidel Castro will soon return to power . NNP POS JJ NN IN DT NNP NNP VBZ VBG NNP NNP NNP MD RB VB TO NN . Dagoberto Rodriguez told reporters Tuesday that Mr. Castro 's health has been improving daily and that he will soon assume his responsibilities again as president . NNP NNP VBD NNS NNP IN NNP NNP POS NN VBZ VBN VBG JJ CC IN PRP MD RB VB PRP$ NNS RB IN NN . Castro ceded power to his brother Raul Castro at the end of July after undergoing intestinal surgery . NNP VBD NN TO PRP$ NN NNP NNP IN DT NN IN NNP IN VBG JJ NN . Since the surgery , Cuban officials have stated frequently that Mr. Castro was doing well as speculation swirled that his condition was worsening . IN DT NN , JJ NNS VBP VBN RB IN NNP NNP VBD VBG RB IN NN VBD IN PRP$ NN VBD VBG . Earlier this month , Raul Castro said his 80 year old brother was ' not dying . ' RBR DT NN , NNP NNP VBD PRP$ CD NN JJ NN VBD `` RB VBG . `` A key Israeli ultra-Orthodox religious party has agreed to join forces with Prime Minister Ariel Sharon , clearing the way for a unity government needed to push through Israel 's planned withdrawal from the Gaza Strip . DT JJ JJ JJ JJ NN VBZ VBN TO VB NNS IN JJ NN NNP NNP , VBG DT NN IN DT NN NN VBN TO VB IN NNP POS VBN NN IN DT NNP NNP . Mr. Sharon 's Likud coalition lost its parliamentary majority last year , when some right-wing parties opposed to the Gaza withdrawal quit the government . NNP NNP POS NNP NN VBD PRP$ JJ NN JJ NN , WRB DT JJ NNS VBN TO DT NNP NN VBD DT NN . Wednesday 's decision by the United Torah Judaism party to join with Mr. Sharon gives the Israeli leader at least 66 votes in the 120-member Knesset . NNP POS NN IN DT NNP NNP NNP NN TO VB IN NNP NNP VBZ DT JJ NN IN JJS CD NNS IN DT JJ NNP . Last week , the opposition Labor party also agreed to join the coalition . JJ NN , DT NN NN NN RB VBD TO VB DT NN . Hours after the United Torah decision , the prime minister said he expects to present parliament with a national unity government by next week . NNS IN DT NNP NNP NN , DT JJ NN VBD PRP VBZ TO VB NN IN DT JJ NN NN IN JJ NN . The withdrawal of 8,200 Israeli settlers from Gaza and four small West Bank enclaves is set to begin later this year . DT NN IN CD JJ NNS IN NNP CC CD JJ NNP NNP NNS VBZ VBN TO VB RB DT NN . Venezuelan authorities have said they will redistribute more than 1,10,000 hectares of privately-held property to landless farmers . JJ NNS VBP VBN PRP MD VB JJR IN CD NNS IN JJ NN TO JJ NNS . The land seizure is part of an agrarian reform effort led by President Hugo Chavez . DT NN NN VBZ NN IN DT JJ NN NN VBN IN NNP NNP NNP . Since his 1998 election , President Chavez has enacted controversial reform laws , including a 2001 land law aimed at narrowing the gap between Venezuela 's rich and poor . IN PRP$ CD NN , NNP NNP VBZ VBN JJ NN NNS , VBG DT CD NN NN VBN IN VBG DT NN IN NNP POS NN CC NN . The law allows the government to redistribute unused land to the poor . DT NN VBZ DT NN TO VB JJ NN TO DT NN . Critics say the law violates property rights , and could lead to illegal land grabs . NNS VBP DT NN VBZ NN NNS , CC MD VB TO JJ NN NNS . One of four estates to be redistributed includes a 13,000 hectare cattle ranch owned by a British company . CD IN CD NNS TO VB VBN VBZ DT CD NN NNS NN VBN IN DT JJ NN . The company has said it legally owns the property , and that the land is fully productive . DT NN VBZ VBN PRP RB VBZ DT NN , CC IN DT NN VBZ RB JJ . Witnesses say an explosion has killed at least five soldiers in the Somali capital , Mogadishu . NNS VBP DT NN VBZ VBN IN JJS CD NNS IN DT JJ NN , NNP . Residents say they saw the bodies of three Ethiopian and two Somali government soldiers lying in the street after the attack Tuesday . NNS VBP PRP VBD DT NNS IN CD JJ CC CD JJ NN NNS VBG IN DT NN IN DT NN NNP . The witnesses say Ethiopian troops opened fire after the blast . DT NNS VBP JJ NNS VBD NN IN DT NN . There has been no word on additional casualties . EX VBZ VBN DT NN IN JJ NNS . Islamist insurgents launch almost-daily attacks on Somali government forces and allied Ethiopian troops . NNP NNS VBP RB NNS IN JJ NN NNS CC JJ JJ NNS . More than a year of fighting has killed thousands of Somalis and displaced hundreds of thousands more , mostly from Mogadishu . JJR IN DT NN IN NN VBZ VBN NNS IN NNS CC VBD NNS IN NNS RBR , RB IN NNP . U.N.-sponsored peace talks in Djibouti last week ended with no progress toward an agreement . JJ NN NNS IN NNP JJ NN VBD IN DT NN IN DT NN . Ethiopian troops entered Somalia in 2006 to help the government oust an Islamist movement that had seized power in Mogadishu and other cities . JJ NNS VBD NNP IN CD TO VB DT NN VB DT JJ NN WDT VBD VBN NN IN NNP CC JJ NNS . Somalia has endured more than 17 years of chaos and conflict since the fall of the country 's last stable government in 1991 . NNP VBZ VBN JJR IN CD NNS IN NN CC NN IN DT NN IN DT NN POS JJ JJ NN IN CD . The government of Kenya says it has targeted thieves , not political opponents , in a corruption investigation that has caused three cabinet ministers to resign their posts . DT NN IN NNP VBZ PRP VBZ VBN NNS , RB JJ NNS , IN DT NN NN WDT VBZ VBN CD NN NNS TO VB PRP$ NNS . Government spokesman Alfred Mutua said Sunday some have accused the government of witch-hunting , but Mutua said the government will not discriminate in its effort to bring thieves to justice . NNP NN NNP NNP VBD NNP DT VBP VBN DT NN IN NN , CC NNP VBD DT NN MD RB VB IN PRP$ NN TO VB NNS TO NN . Mutua told reporters the signs of corruption were all around , citing holes in recently built roads . NNP VBD NNS DT NNS IN NN VBD DT RB , VBG NNS IN RB VBN NNS . He said those involved in what he called ' shoddy deals ' would be held accountable . PRP VBD DT VBN IN WP PRP VBD `` JJ NNS `` MD VB VBN JJ . On Friday , thousands of protesters took to the streets of Nairobi , demanding the resignations of Vice President Moody Awori and civil service chief Francis Muthaura . IN NNP , NNS IN NNS VBD TO DT NNS IN NNP , VBG DT NNS IN NNP NNP NNP NNP CC JJ NN NN NNP NNP . Their names have been mentioned in connection with a multi-million dollar scandal known as the ' Anglo Leasing ' affair . PRP$ NNS VBP VBN VBN IN NN IN DT JJ NN NN VBN IN DT `` NNP VBG `` NN . Asian stock markets opened dramatically higher Monday morning , rebounding from last week 's losses . JJ NN NNS VBD RB JJR NNP NN , VBG IN JJ NN POS NNS . Japan 's Nikkei 225 Stock Average and South Korea 's Kospi Index each rose more than three percent early in the trading session , and Taiwan 's main stock index was up by four percent after 15 minutes of trading . NNP POS NNP CD NNP NNP CC NNP NNP POS NNP NNP DT VBD JJR IN CD NN RB IN DT NN NN , CC NNP POS JJ NN NN VBD RB IN CD NN IN CD NNS IN NN . U.S. and European stocks rebounded Friday immediately after the U.S. Federal Reserve cut the interest rate it charges on short-term loans to large commercial banks . NNP CC JJ NNS VBD NNP RB IN DT NNP NNP NNP VBD DT NN NN PRP VBZ IN JJ NNS TO JJ JJ NNS . Today was the first trading opportunity since then for Asian investors , whose stock holdings had suffered big losses through most of last week . NN VBD DT JJ NN NN IN RB IN JJ NNS , WP$ NN NNS VBD VBN JJ NNS IN JJS IN JJ NN . The U.S. central bank 's interest-rate cut was intended to buffer the impact on world financial markets of a housing-loan crisis in the United States . DT NNP JJ NN POS NN NN VBD VBN TO VB DT NN IN NN JJ NNS IN DT JJ NN IN DT NNP NNPS . Analysts say the Federal Reserve appears to have succeeded in easing investors ' fears that a credit crisis could hurt economic growth and profits . NNS VBP DT NNP NNP VBZ TO VB VBN IN VBG NNS POS NNS IN DT NN NN MD VB JJ NN CC NNS . African Union officials say rebels in Sudan 's troubled Darfur region have released most of the 18 kidnapped AU workers following negotiations . NNP NNP NNS VBP NNS IN NNP POS JJ NNP NN VBP VBN JJS IN DT CD VBN NNP NNS VBG NNS . The workers were taken Sunday in the town of Tine on the Chad-Sudan border . DT NNS VBD VBN NNP IN DT NN IN NNP IN DT JJ NN . Officials say the 18 included military observers and civilian police , and an official from a Darfur rebel group , the Justice and Equality Movement . NNS VBP DT CD VBD JJ NNS CC JJ NN , CC DT NN IN DT NNP NN NN , DT NNP CC NNP NNP . African Union spokesman Noureddine Mezni says it is unclear how many of the hostages were released . NNP NNP NN NNP NNP VBZ PRP VBZ JJ WRB JJ IN DT NNS VBD VBN . AU officials say the kidnappers are believed to be from a dissident faction of the Justice and Equality Movement . NNP NNS VBP DT NNS VBP VBN TO VB IN DT JJ NN IN DT NNP CC NNP NNP . More than six-thousand African Union peacekeepers are in Darfur to monitor a cease-fire between pro-government forces and non-Arab rebels . JJR IN JJ NNP NNP NNS VBP IN NNP TO VB DT NN IN JJ NNS CC JJ NNS . Two AU peacekeepers from Nigeria and two civilian contractors were killed Saturday in an ambush the AU blamed on the main Darfur rebel group , the Sudan Liberation Army . CD NNP NNS IN NNP CC CD JJ NNS VBD VBN NNP IN DT JJ DT NNP VBD IN DT JJ NNP NN NN , DT NNP NNP NNP . A third peacekeeper died Sunday from wounds . DT JJ NN VBD NNP IN NNS . NATO and Afghan officials say more than 90 insurgents have been killed during heavy fighting in southern Afghanistan . NNP CC JJ NNS VBP JJR IN CD NNS VBP VBN VBN IN JJ NN IN JJ NNP . The officials say at least 78 insurgents were killed Saturday as coalition forces repelled an attack on a NATO outpost in southeastern Paktika province . DT NNS VBP IN JJS CD NNS VBD VBN NNP IN NN NNS VBD DT NN IN DT NNP NN IN JJ NNP NN . Five NATO troops were injured in the fighting . CD NNP NNS VBD VBN IN DT NN . The NATO-led International Security Assistance Force says troops called in airstrikes that helped beat back the assault . DT JJ NNP NNP NNP NNP VBZ NNS VBN IN NNS WDT VBD VB RP DT NN . In a separate incident , an Afghan official says NATO and Afghan forces killed 17 insurgents during an operation in Helmand province Saturday . IN DT JJ NN , DT JJ NN VBZ NNP CC JJ NNS VBD CD NNS IN DT NN IN NNP NN NNP . A provincial government spokesman says the fighting the Deshu district lasted about 12 hours . DT JJ NN NN VBZ DT VBG DT NNP NN VBD RB CD NNS . Also , NATO says a senior Taliban leader , Mullah Abdullah Kakar , was killed during an airstrike in southern Zabul province on Thursday . RB , NNP VBZ DT JJ NNP NN , NNP NNP NNP , VBD VBN IN DT NN IN JJ NNP NN IN NNP . Tuesday has been a lucky day for the official U.S. national Thanksgiving turkey and its alternate . NNP VBZ VBN DT JJ NN IN DT JJ NNP JJ NNP NN CC PRP$ NN . President Bush gave the national turkey , whose name is Marshmallow , and its alternate , Yam , the traditional Thanksgiving pardon in a ceremony at the White House . NNP NNP VBD DT JJ NN , WP$ NN VBZ NNP , CC PRP$ NN , NNP , DT JJ NNP NN IN DT NN IN DT NNP NNP . The two turkeys will be flown to Disneyland in California to be part of the holiday display , and will also serve as honorary grand marshals for Disneyland 's Thanksgiving Day parade on Thursday . DT CD NNS MD VB VBN TO VB IN NNP TO VB NN IN DT NN NN , CC MD RB VB IN JJ JJ NNS IN NNP POS NNP NNP NN IN NNP . They will spend the rest of their lives at a Disneyland ranch . PRP MD VB DT NN IN PRP$ NNS IN DT NNP NN . For the past 15 years , the national Thanksgiving turkey and its alternate have been retired to a farm just outside Washington , DC in Virginia . IN DT JJ CD NNS , DT JJ NNP NN CC PRP$ NN VBP VBN VBN TO DT NN RB IN NNP , NNP IN NNP . On the Thursday Thanksgiving Day holiday , millions of Americans traditionally enjoy a roasted turkey meal , which often includes yams with marshmallows . IN DT NNP NNP NNP NN , NNS IN NNS RB VBP DT JJ NN NN , WDT RB VBZ NNS IN NNS . The Communist Party of the Philippines says it has directed its armed unit , the New People 's Army , to go on an offensive nationwide . DT NNP NNP IN DT NNP VBZ PRP VBZ VBN PRP$ JJ NN , DT NNP NNP POS NNP , TO VB IN DT JJ NN . In a statement issued Sunday , the CPP also said it would consider forming an alliance with any of the parties seeking to oust President Gloria Macapagal Arroyo from power . IN DT NN VBN NNP , DT NNP RB VBD PRP MD VB VBG DT NN IN DT IN DT NNS VBG TO VB NNP NNP NNP NNP IN NN . The CPP said its list of potential allies include disgruntled military and police units and conservative political parties . DT NNP VBD PRP$ NN IN JJ NNS VBP JJ NN CC NN NNS CC JJ JJ NNS . On Friday , President Arroyo declared that government troops would observe four days of unilateral cease-fire with communist rebels to mark the Christian holiday season . IN NNP , NNP NNP VBD IN NN NNS MD VB CD NNS IN JJ NN IN JJ NNS TO VB DT JJ NN NN . The days of the cease-fire are Christmas Eve , Christmas Day , New Year 's Eve and New Year 's Day . DT NNS IN DT NN VBP NNP NNP , NNP NNP , NNP NNP POS NNP CC NNP NNP POS NN . The government and communist rebels have been engaged in armed conflict for more than 40 years . DT NN CC JJ NNS VBP VBN VBN IN JJ NN IN JJR IN CD NNS . Turkey 's military says troops killed four Kurdish guerrillas in operations Friday night near the border with northern Iraq . NNP POS JJ VBZ NNS VBD CD JJ NNS IN NNS NNP NN IN DT NN IN JJ NNP . Military authorities said Saturday the clash occurred in southeastern Hakkari province . JJ NNS VBD NNP DT NN VBD IN JJ NNP NN . The banned Kurdistan Workers ' Party ( PKK ) has been fighting for autonomy for ethnic Kurds in Turkey 's southeast since 1984 . DT VBN NNP NNP POS NNP LRB NNP RRB VBZ VBN VBG IN NN IN JJ NNS IN NNP POS NN IN CD . More than 30,000 people have been killed in the conflict . JJR IN CD NNS VBP VBN VBN IN DT NN . Authorities in Haiti have killed at least one person during a protest by supporters of ousted former President Jean-Bertrand Aristide . NNS IN NNP VBP VBN IN JJS CD NN IN DT NN IN NNS IN JJ JJ NNP NNP NNP . Thousands of protesters marched in the Bel-air section of Port-au-Prince to demand the return Mr. Aristide , who has been in exile in South Africa since last February . NNS IN NNS VBD IN DT JJ NN IN NNP TO VB DT NN NNP NNP , WP VBZ VBN IN NN IN NNP NNP IN JJ NNP . Authorities opened fire on the crowd as they entered an intersection in Bel-air . NNS VBD NN IN DT NN IN PRP VBD DT NN IN NNP . Few other details were given . JJ JJ NNS VBD VBN . Violence in Port-au-Prince 's pro-Aristide slums has killed more than 200 people in the last four months . NN IN NNP POS JJ NNS VBZ VBN JJR IN CD NNS IN DT JJ CD NNS . Philippine President Benigno Aquino has launched his first executive order , creating a truth commission to investigate possible corruption by the administration of former President Gloria Arroyo . JJ NNP NNP NNP VBZ VBN PRP$ JJ NN NN , VBG DT NN NN TO VB JJ NN IN DT NN IN JJ NNP NNP NNP . Mr. Aquino announced the order Friday , saying the move would bring ' necessary closure to allegations of official wrongdoing and impunity . ' NNP NNP VBD DT NN NNP , VBG DT NN MD VB `` JJ NN TO NNS IN JJ NN CC NN . `` The commission will probe allegations of corruption in a deal with a Chinese company to provide broadband Internet access in the Philippines , among other questions . DT NN MD VB NNS IN NN IN DT NN IN DT JJ NN TO VB JJ NN NN IN DT NNPS , IN JJ NNS . The commission has until the end of 2012 to finish its investigation . DT NN VBZ IN DT NN IN CD TO VB PRP$ NN . Mr. Aquino campaigned for the presidency on an anti-corruption platform . NNP NNP VBD IN DT NN IN DT JJ NN . Former Supreme Court Chief Justice Hilario Davide has been selected to head the commission . JJ NNP NNP NNP NNP NNP NNP VBZ VBN VBN TO VB DT NN . Venezuelan President Hugo Chavez has replaced his vice president and justice minister just days before he is inaugurated for a second term . JJ NNP NNP NNP VBZ VBN PRP$ NN NN CC NN NN RB NNS IN PRP VBZ VBN IN DT JJ NN . Mr. Chavez said in a television interview late Wednesday that the decision to replace Vice President Jose Vicente Rangel was not easy because he regards Rangel as a ' star pitcher , ' as in a baseball game , and respects him like a father . NNP NNP VBD IN DT NN NN JJ NNP IN DT NN TO VB NNP NNP NNP NNP NNP VBD RB JJ IN PRP VBZ NNP IN DT `` NN NN , `` IN IN DT NN NN , CC VBZ PRP IN DT NN . In talking about the replacement of Justice Minister Jesse Chacon , Chavez alluded to a recent rise in crime and prison violence in Venezuela . IN VBG IN DT NN IN NNP NNP NNP NNP , NNP VBD TO DT JJ NN IN NN CC NN NN IN NNP . Psychiatrist and politician Jorge Rodriguez will become Venezuela 's new vice president , and parliamentary deputy Pedro Carreno will be the new justice minister . NN CC NN NNP NNP MD VB NNP POS JJ NN NN , CC JJ NN NNP NNP MD VB DT JJ NN NN . Mr. Chavez will be inaugurated for a second six-year term on January 10 . NNP NNP MD VB VBN IN DT JJ JJ NN IN NNP CD . Mr. Chavez has said he hopes to merge all the political parties supporting him into one party . NNP NNP VBZ VBN PRP VBZ TO VB PDT DT JJ NNS VBG PRP IN CD NN . He also wants to re-write the constitution . PRP RB VBZ TO VB DT NN . Indonesia 's Health Ministry says a 12-year-old boy has died of bird-flu . NNP POS NNP NNP VBZ DT JJ NN VBZ VBN IN NN . Officials say the boy , who had tested positive for the H5N1 strain of the virus , died Saturday in a hospital in Tangerang . NNS VBP DT NN , WP VBD VBN JJ IN DT NNP NN IN DT NN , VBD NNP IN DT NN IN NNP . If confirmed by the World Health Organization ( WHO ) , it would bring to 88 the number of people who have died from the virus in Indonesia . IN VBN IN DT NNP NNP NNP LRB NNP RRB , PRP MD VB TO CD DT NN IN NNS WP VBP VBN IN DT NN IN NNP . More than 200 people worldwide have died from bird flu since the outbreak began in 2003 , mostly in Asian nations . JJR IN CD NNS JJ VBP VBN IN NN NN IN DT NN VBD IN CD , RB IN JJ NNS . Indonesia has been sharply criticized for being slow to act in its fight to control bird flu , which has spread easily in a nation where many people keep chickens and other birds in their backyards and homes . NNP VBZ VBN RB VBN IN VBG JJ TO VB IN PRP$ NN TO VB NN NN , WDT VBZ VBN RB IN DT NN WRB JJ NNS VBP NNS CC JJ NNS IN PRP$ NNS CC NNS . Bird flu is usually transmitted directly from infected birds . NN NN VBZ RB JJ RB IN JJ NNS . However , experts fear the virus could mutate into a form easily transmissible by human-to-human contact . RB , NNS VBP DT NN MD VB IN DT NN RB JJ IN JJ NN . The U.S. Treasury Department has taken action against three Saudi Arabian nationals suspected of raising money for terrorists . DT NNP NNP NNP VBZ VBN NN IN CD JJ JJ NNS VBN IN VBG NN IN NNS . The three men , identified as Abdul Rahim al-Talhi , Muhammad Abdallah Salih Sughayr and Fahd Muhammad Abd Al-Aziz Al-Khashiban are accused of providing support to the al-Qaida-linked Abu Sayyaf Group , responsible for a string of bombings and kidnappings in Southeast Asia . DT CD NNS , VBN IN NNP NNP NNP , NNP NNP NNP NNP CC NNP NNP NNP NNP NNP VBP VBN IN VBG NN TO DT JJ NNP NNP NNP , JJ IN DT NN IN NNS CC NNS IN NNP NNP . Treasury department official , Stuart Levey , Under Secretary for Terrorism and Financial Intelligence says it is important to hold the men publicly responsible to deter other would-be donors . NNP NN NN , NNP NNP , IN NNP IN NNP CC NNP NNP VBZ PRP VBZ JJ TO VB DT NNS RB JJ TO VB JJ JJ NNS . Wednesday 's action freezes assets belonging to the men . NNP POS NN VBZ NNS VBG TO DT NNS . It also forbids U.S. citizens from doing business with them . PRP RB VBZ NNP NNS IN VBG NN IN PRP . Venezuela 's vice president says military officials at the U.S. embassy in Caracas helped pass state secrets to the Pentagon . NNP POS NN NN VBZ JJ NNS IN DT NNP NN IN NNP VBD VB NN NNS TO DT NNP . Jose Vicente Rangel told reporters Friday that the Venezuelan government has confidential information proving the U.S. officials ' involvement . NNP NNP NNP VBD NNS NNP IN DT JJ NN VBZ JJ NN VBG DT NNP NNS POS NN . He also alleged that embassy officials were involved in a brief coup against President Hugo Chavez in 2002 . PRP RB VBD IN NN NNS VBD VBN IN DT JJ NN IN NNP NNP NNP IN CD . U.S. officials have long denied that charge . NNP NNS VBP RB VBN IN NN . Rangel first said on Wednesday that some low-level Venezuelan officials , both active and retired navy officers , had been caught passing information to the Pentagon . NNP RB VBD IN NNP IN DT JJ JJ NNS , DT JJ CC JJ NN NNS , VBD VBN VBN VBG NN TO DT NNP . The U.S. ambassador in Caracas , William Brownfield , said he has not been contacted by the Venezuelan government about the matter . DT NNP NN IN NNP , NNP NNP , VBD PRP VBZ RB VBN VBN IN DT JJ NN IN DT NN . He said on Venezuelan television Thursday that when Caracas presents the United States with a statement , he will respond . PRP VBD IN JJ NN NNP IN WRB NNP VBZ DT NNP NNPS IN DT NN , PRP MD VB . North Korea is criticizing the United States for keeping it on a list of nations that support terrorism . NNP NNP VBZ VBG DT NNP NNPS IN VBG PRP IN DT NN IN NNS WDT VBP NN . An annual U.S. State Department report on state-sponsored terrorism issued last month said North Korea is among several nations that maintain ties to terrorists . DT JJ NNP NNP NNP NN IN JJ NN VBN JJ NN VBD NNP NNP VBZ IN JJ NNS WDT VBP NNS TO NNS . Pyongyang 's state-run news agency says the report proves the Bush Administration is frantic to overthrow the government of North Korea , and called the United States the kingpin of state-sponsored terrorism . NNP POS JJ NN NN VBZ DT NN VBZ DT NNP NN VBZ JJ TO VB DT NN IN NNP NNP , CC VBD DT NNP NNPS DT NN IN JJ NN . A South Korean newspaper , Chosun Ilbo , said Tuesday that U.S. spy satellites have spotted activity that could mean North Korea is preparing for a nuclear test . DT JJ JJ NN , NNP NNP , VBD NNP IN NNP NN NNS VBP VBN NN WDT MD VB NNP NNP VBZ VBG IN DT JJ NN . However , South Korean officials are denying the report . RB , JJ JJ NNS VBP VBG DT NN . Monday U.S. Secretary of State Condoleezza Rice said there should be no doubt about the United States ' ability to deter a North Korean nuclear threat . NNP NNP NNP IN NNP NNP NNP VBD EX MD VB DT NN IN DT NNP NNPS POS NN TO VB DT JJ JJ JJ NN . Saudi Arabia 's King Abdullah has issued new rules regarding political succession in the country . NNP NNP POS NNP NNP VBZ VBN JJ NNS VBG JJ NN IN DT NN . The rules issued Monday outline who can become members of the Allegiance Commission , the body established last year to vote on future kings . DT NNS VBD NNP NN WP MD VB NNS IN DT NNP NNP , DT NN VBN JJ NN TO VB IN JJ NNS . The order also details what should be done if a member dies and how a crown prince should be chosen . DT NN RB NNS WP MD VB VBN IN DT NN VBZ CC WRB DT NN NN MD VB VBN . Saudi Arabia was founded in 1932 by the Saud family . NNP NNP VBD VBN IN CD IN DT NNP NN . The country 's current leader , King Abdullah , came to power in 2005 . DT NN POS JJ NN , NNP NNP , VBD TO NN IN CD . Saudi rule has traditionally been passed down to the sons of Abdul Aziz bin Saud , the founder of the Islamic kingdom . JJ NN VBZ RB VBN VBN RP TO DT NNS IN NNP NNP NNP NNP , DT NN IN DT NNP NN . Palestinian factions have agreed to extend an open-ended truce with Israel in exchange for a halt to Israeli attacks and the release of prisoners . JJ NNS VBP VBN TO VB DT JJ NN IN NNP IN NN IN DT NN TO JJ NNS CC DT NN IN NNS . The Palestinian groups made the decision Thursday , following a meeting with Palestinian leader Mahmoud Abbas in Cairo , Egypt . DT JJ NNS VBD DT NN NNP , VBG DT NN IN JJ NN NNP NNP IN NNP , NNP . In a statement , the groups said continuation of the cease-fire depends on Israel 's commitment to halt all assaults against Palestinians . IN DT NN , DT NNS VBD NN IN DT NN VBZ IN NNP POS NN TO VB DT NNS IN NNS . Mr. Abbas and Israeli Prime Minister Ariel Sharon declared a cease-fire at a February 8 summit meeting in Egypt . NNP NNP CC JJ NNP NNP NNP NNP VBD DT NN IN DT NNP CD NN NN IN NNP . Mr. Abbas met with Palestinian militants in Cairo to persuade them to join the cease-fire . NNP NNP VBD IN JJ NNS IN NNP TO VB PRP TO VB DT NN . Israeli Prime Minister Ariel Sharon says Palestinians must disarm and dismantle the militant groups , in addition to agreeing to a cease-fire . JJ NNP NNP NNP NNP VBZ NNS MD VB CC VB DT JJ NNS , IN NN TO VBG TO DT NN . Russia 's Foreign Minister Sergei Lavrov is scheduled to meet later Tuesday in Washington with President Bush and Secretary of State Condoleezza Rice . NNP POS NNP NNP NNP NNP VBZ VBN TO VB RB NNP IN NNP IN NNP NNP CC NNP IN NNP NNP NNP . Among other issues , Lavrov is expected to discuss Russia 's attempt to negotiate a compromise on the Iranian nuclear situation . IN JJ NNS , NNP VBZ VBN TO VB NNP POS NN TO VB DT NN IN DT JJ JJ NN . Meanwhile , the influential Council on Foreign Relations has released a report saying U.S.-Russian relations are heading in the wrong direction . RB , DT JJ NNP IN NNP NNP VBZ VBN DT NN VBG JJ NNS VBP VBG IN DT JJ NN . The foreign policy organization says Russia is trying to curtail U.S. and NATO access to Central Asian military bases . DT JJ NN NN VBZ NNP VBZ VBG TO VB NNP CC NNP NN TO NNP NNP JJ NNS . It also accuses Russia of using energy supplies as a political weapon , and says Russian political institutions are becoming corrupt . PRP RB VBZ NNP IN VBG NN NNS IN DT JJ NN , CC VBZ JJ JJ NNS VBP VBG JJ . The head of the independent task force that wrote the report later said Russia could be thrown out of the G-8 if it does not cooperate on major world problems . DT NN IN DT JJ NN NN WDT VBD DT NN RB VBD NNP MD VB VBN IN IN DT NNP IN PRP VBZ RB VB IN JJ NN NNS . The G-8 comprises Britain , Canada , France , Germany , Italy , Japan , the United States and Russia . DT NNP VBZ NNP , NNP , NNP , NNP , NNP , NNP , DT NNP NNPS CC NNP . A Nigerian official says two children suspected of having the deadly bird flu virus are healthy and were probably never infected . DT JJ NN VBZ CD NNS VBN IN VBG DT JJ NN NN NN VBP JJ CC VBD RB RB VBN . A Kuduna state health official , Abdulhamid Abubakar , said Tuesday that the two boys have recovered after being treated for a fever and a cough . DT NNP NN NN NN , NNP NNP , VBD NNP IN DT CD NNS VBP VBN IN VBG VBN IN DT NN CC DT NN . Officials are still awaiting test results to see if the boys were infected with the H5N1 bird flu strain , which can be deadly to humans . NNS VBP RB VBG NN NNS TO VB IN DT NNS VBD VBN IN DT NNP NN NN NN , WDT MD VB JJ TO NNS . Nigerian authorities are on high alert for any outbreaks after the virus was discovered on four bird farms in northern Nigeria last week . JJ NNS VBP IN JJ NN IN DT NNS IN DT NN VBD VBN IN CD NN NNS IN JJ NNP JJ NN . However , an official with the United Nations Food and Agriculture Organization says restrictions on poultry trading are not being widely enforced . RB , DT NN IN DT NNP NNPS NNP CC NNP NNP VBZ NNS IN JJ NN VBP RB VBG RB VBN . That official , Juan Lubroth , also says the H5N1 virus may have entered Niger . DT NN , NNP NNP , RB VBZ DT NNP NN MD VB VBN NNP . The French news agency quotes a Niger government spokesman as rejecting that assertion . DT JJ NN NN VBZ DT NNP NN NN IN VBG IN NN . Two new economic reports say U.S. consumer confidence fell in March while home prices dropped in January . CD JJ JJ NNS VBP NNP NN NN VBD IN NNP IN NN NNS VBD IN NNP . Consumer confidence fell sharply , by 11.9 points to a reading of 64.5 , to a five-year low as consumers worried about tight credit , a troubled job market , rising prices , and falling home values . NN NN VBD RB , IN CD NNS TO DT NN IN CD , TO DT JJ NN IN NNS VBN IN JJ NN , DT JJ NN NN , VBG NNS , CC VBG NN NNS . Economists watch consumer confidence because consumer demand drives about two-thirds of the U.S. economy . NNS VBP NN NN IN NN NN VBZ IN NNS IN DT NNP NN . The bad news was reinforced by a separate report from a business group , Standard & Poor 's / Case-Shiller index , which said U.S. home prices fell around 11 percent from a year ago in the nation 's largest cities . DT JJ NN VBD VBN IN DT JJ NN IN DT NN NN , NNP CC NNP POS NNP NNP NN , WDT VBD NNP NN NNS VBD RB CD NN IN DT NN RB IN DT NN POS JJS NNS . Falling home values make it difficult for consumers to borrow money with the value of their homes as collateral . VBG NN NNS VBP PRP JJ IN NNS TO VB NN IN DT NN IN PRP$ NNS IN NN . The problem can further slow consumer spending . DT NN MD RB VB NN NN . Sinbad is alive and well . NNP VBZ JJ CC RB . The 50-year-old actor-comedian says he ' rose from the dead ' last week , after Wikipedia mistakenly proclaimed his demise . DT JJ NN VBZ PRP `` VBD IN DT JJ `` JJ NN , IN NNP RB VBD PRP$ NN . An editor on the vast Internet site posted that Sinbad had succumbed to a heart attack . DT NN IN DT JJ NNP NN VBD IN NNP VBD VBN TO DT NN NN . Email links of the erroneous page were forwarded nationwide before other members of the Wikipedia community corrected the mistake . NNP NNS IN DT JJ NN VBD VBN JJ IN JJ NNS IN DT NNP NN VBD DT NN . Sinbad , whose real name is David Adkins , says he 's not upset at the error - although he would n't mind an apology from Wikipedia headquarters in St. Petersburg , Florida . NNP , WP$ JJ NN VBZ NNP NNP , VBZ PRP VBZ RB VBN IN DT NN : IN PRP MD RB VB DT NN IN NNP NN IN NNP NNP , NNP . President Bush has conveyed his greetings to Jewish Americans as they begin observing Rosh Hashanah , the Jewish New Year . NNP NNP VBZ VBN PRP$ NNS TO JJ NNS IN PRP VBP VBG NNP NNP , DT JJ NNP NN . Mr. Bush released a statement Friday , offering his best wishes for the occasion and the start of the Days of Awe , in which Jews reflect on the past year and welcome the year to come . NNP NNP VBD DT NN NNP , VBG PRP$ JJS NNS IN DT NN CC DT NN IN DT NNS IN NNP , IN WDT NNPS VBP IN DT JJ NN CC VB DT NN TO VB . At the sound of the Shofar , a musical instrument blown like a trumpet , Jews around the world are called to gather to celebrate Rosh Hashanah . IN DT NN IN DT NNP , DT JJ NN VBN IN DT NN , NNPS IN DT NN VBP VBN TO VB TO VB NNP NNP . Mr. Bush says the period is also a time to reflect on the history of the Jewish people , from the days of Abraham to the present . NNP NNP VBZ DT NN VBZ RB DT NN TO VB IN DT NN IN DT JJ NNS , IN DT NNS IN NNP TO DT NN . The president says throughout America 's history , Jewish Americans have strengthened and enriched the character of the nation . DT NN VBZ IN NNP POS NN , JJ NNS VBP VBN CC VBN DT NN IN DT NN . Investigators in Ethiopia say police killed 193 people during anti-government protests last year - a figure nearly triple the official death toll . NNS IN NNP VBP NNS VBD CD NNS IN JJ NNS JJ NN IN DT NN RB RB DT JJ NN NN . VOA has obtained a report from an Ethiopian government-backed inquiry team charged with determining if police used excessive force in ending the June and November 2005 protests . NNP VBZ VBN DT NN IN DT JJ JJ NN NN VBN IN VBG IN NNS VBD JJ NN IN VBG DT NNP CC NNP CD NNS . The team concluded that police did use excessive force , employing means such as shooting , strangling , and beating demonstrators . DT NN VBD IN NNS VBD VB JJ NN , VBG NNS JJ IN NN , VBG , CC NN NNS . It also says six police officers were killed in the protests . PRP RB VBZ CD NNS NNS VBD VBN IN DT NNS . There has been no public comment on the report from Ethiopian officials . EX VBZ VBN DT JJ NN IN DT NN IN JJ NNS . At least one member of the inquiry team , Judge Wolde-Michael Meshesha , has left Ethiopia for fear of political reprisals . IN JJS CD NN IN DT NN NN , NNP NNP NNP , VBZ VBN NNP IN NN IN JJ NNS . The protests followed elections won by the ruling party that opposition groups say were rigged . DT NNS VBD NNS VBN IN DT VBG NN IN NN NNS VBP VBD VBN . The European Union and U.S.-based Carter Center expressed concerns over the vote and the post-election violence . DT NNP NNP CC JJ NNP NNP VBD NNS IN DT NN CC DT JJ NN . Health officials in Turkey say a 12-year-old girl with symptoms of bird flu has died while her younger brother has tested positive for the virus and is in critical condition . NNP NNS IN NNP VBP DT JJ NN IN NNS IN NN NN VBZ VBN IN PRP$ JJR NN VBZ VBN JJ IN DT NN CC VBZ IN JJ NN . The girl , Fatma Ozcan , had been hospitalized in the eastern city of Van with her five-year-old brother Muhammed for several days . DT NN , NNP NNP , VBD VBN VBN IN DT JJ NN IN NNP IN PRP$ JJ NN NNP IN JJ NNS . Late Sunday , the Turkish Health Ministry said the boy has tested positive for bird flu . RB NNP , DT JJ NNP NNP VBD DT NN VBZ VBN JJ IN NN NN . Doctors were performing tests to determine whether the H5N1 strain killed the girl . NNS VBD VBG NNS TO VB IN DT NNP NN VBD DT NN . Initial tests were negative . JJ NNS VBD JJ . Turkey previously found 18 people testing positive for bird flu , including three children from the same family who died in a village near Van last week . NNP RB VBD CD NNS VBG JJ IN NN NN , VBG CD NNS IN DT JJ NN WP VBD IN DT NN IN NNP JJ NN . Those deaths were the first reported bird flu fatalities outside eastern Asia , where more than 70 infected people have died since 2003 DT NNS VBD DT JJ VBN NN NN NNS IN JJ NNP , WRB JJR IN CD JJ NNS VBP VBN IN CD Authorities in Spain and Morocco closed airports Tuesday , as ash from an Icelandic volcano once again disrupts air travel . NNS IN NNP CC NNP VBD NNS NNP , IN NN IN DT JJ NN RB RB VBZ NN NN . Spain 's air traffic control agency ( Aena ) said Tuesday that four airports in the Canary Islands and three airports in southern Spain have been shut down . NNP POS NN NN NN NN LRB NNP RRB VBD NNP IN CD NNS IN DT NNP NNP CC CD NNS IN JJ NNP VBP VBN VBN RP . Morocco closed several of its airports including Casablanca . NNP VBD JJ IN PRP$ NNS VBG NNP . The volcano continued belching ash on Tuesday . DT NN VBD VBG NN IN NNP . Officials say they do not know how long the eruption will continue . NNS VBP PRP VBP RB VB WRB JJ DT NN MD VB . Volcanic activity has shut down sections of European airspace on-and-off for more than a month . NNP NN VBZ VBN RP NNS IN JJ NN NN IN JJR IN DT NN . The cloud of abrasive ash can damage aircraft engines and cause other problems for airplanes in flight . DT NN IN JJ NN MD VB NN NNS CC VB JJ NNS IN NNS IN NN . The European Union says airlines lost more than $ 3 billion when ash from the same volcano crippled air travel across Europe for nearly a week in April . DT NNP NNP VBZ NNS VBD JJR IN $ CD CD WRB NN IN DT JJ NN VBD NN NN IN NNP IN RB DT NN IN NNP . The death toll from two bombings in Pakistan 's eastern city of Lahore has risen to six , with at least 26 others wounded . DT NN NN IN CD NNS IN NNP POS JJ NN IN NNP VBZ VBN TO CD , IN IN JJS CD NNS VBD . Local police say the first bomb placed under the seat of a bicycle went off Thursday near a national monument - Minar-e-Pakistan . JJ NNS VBP DT JJ NN VBN IN DT NN IN DT NN VBD RP NNP IN DT JJ NN IN NNP . Minutes later , a second device detonated in a crowded shopping district in a central part of the city . NNS RB , DT JJ NN VBN IN DT JJ NN NN IN DT JJ NN IN DT NN . After the bombings , police stepped up security across the region while investigators said they were probing various leads . IN DT NNS , NNS VBD RP NN IN DT NN IN NNS VBD PRP VBD VBG JJ NNS . There has been no immediate claim of responsibility . EX VBZ VBN DT JJ NN IN NN . In an unrelated development , Pakistani security forces arrested at least 10 suspected militants and recovered weapons in the remote North Waziristan region - the scene of a major military offensive last week against al-Qaida-linked militants . IN DT JJ NN , JJ NN NNS VBN IN JJS CD JJ NNS CC VBD NNS IN DT JJ NNP NNP NN IN DT NN IN DT JJ JJ NN JJ NN IN JJ NNS . A U.S. State Department spokesman says North Korea 's chief nuclear negotiator Kim Kye Kwan and his U.S. counterpart , Christopher Hill , are expected to meet in New York later this week . DT NNP NNP NNP NN VBZ NNP NNP POS JJ JJ NN NNP NNP NNP CC PRP$ NNP NN , NNP NNP , VBP VBN TO VB IN NNP NNP RB DT NN . Sean McCormack was responding to media reports that Vice Foreign Minister Kim will visit San Francisco on Thursday for a lecture at Stanford and then will head to New York for a meeting with Assistant Secretary of State Hill . NNP NNP VBD VBG TO NNS NNS IN NNP NNP NNP NNP MD VB NNP NNP IN NNP IN DT NN IN NNP CC RB MD VB TO NNP NNP IN DT NN IN NNP NNP IN NNP NNP . He said the two sides were still working through the logistics and a date . PRP VBD DT CD NNS VBD RB VBG IN DT NNS CC DT NN . The planned trip was first reported Saturday by South Korean media . DT JJ NN VBD RB VBN NNP IN NNP JJ NNS . Earlier this month , North Korea agreed to close its main nuclear facility in Yongbyong and allow atomic energy inspectors in the country within 60 days in exchange for energy aid . RBR DT NN , NNP NNP VBD TO VB PRP$ JJ JJ NN IN NNP CC VB JJ NN NNS IN DT NN IN CD NNS IN NN IN NN NN . North Korea expelled IAEA weapons inspectors in late December , 2002 , and officially withdrew from the Nuclear Non-Proliferation Treaty in January 2003 . NNP NNP VBD NNP NNS NNS IN JJ NNP , CD , CC RB VBD IN DT NNP NNP NNP IN NNP CD . President Bush Wednesday will attend six events related to his inauguration for a second term in the White House . NNP NNP NNP MD VB CD NNS VBN TO PRP$ NN IN DT JJ NN IN DT NNP NNP . Mr. Bush plans to make stops at a luncheon , a pop music concert , three candlelight dinners , and a reception for his Texas supporters called the ' Black Tie and Boots Ball . ' NNP NNP VBZ TO VB NNS IN DT NN , DT NN NN NN , CD NN NNS , CC DT NN IN PRP$ NNP NNS VBD DT `` NNP NNP CC NNP NNP . `` The concert , dubbed ' A Celebration of Freedom , ' features The Temptations , country singer Kenny Chesney , and a drop-in by the U.S. Army 's parachute team . DT NN , VBD `` DT NN IN NNP , `` VBZ DT NNS , NN NN NNP NNP , CC DT NN IN DT NNP NNP POS NN NN . Sub-freezing temperatures and a forecast of snow are not expected to put a chill on the celebrations . JJ NNS CC DT NN IN NN VBP RB VBN TO VB DT NN IN DT NNS . The president will take the oath of office Thursday outside the U.S. Capitol building , watched by unprecedented security and a crowd expected to number several hundred thousand people . DT NN MD VB DT NN IN NN NNP IN DT NNP NNP NN , VBN IN JJ NN CC DT NN VBN TO NN JJ CD CD NNS . The Israeli military says troops have shot and killed two armed Palestinian gunmen outside a Jewish settlement in the West Bank . DT JJ NN VBZ NNS VBP VBN CC VBN CD JJ JJ NNS IN DT JJ NN IN DT NNP NNP . The military said the shootings occurred Tuesday at a settlement near the West Bank town of Nablus . DT NN VBD DT NNS VBD NNP IN DT NN IN DT NNP NNP NN IN NNP . Reuters quotes Palestinian sources as saying the two men belonged to the militant al-Aqsa Martyrs Brigades . NNP VBZ JJ NNS IN VBG DT CD NNS VBD TO DT JJ JJ NNS NNS . Earlier today , Palestinians say a teenager was shot dead and another youth was wounded near Ramallah by Israeli gunfire during a stone-throwing protest against the barrier fence that Israel is building in the West Bank . RBR NN , NNS VBP DT NN VBD VBN JJ CC DT NN VBD VBN IN NNP IN JJ NN IN DT JJ NN IN DT NN NN IN NNP VBZ VBG IN DT NNP NNP . Israeli sources say troops were not involved in the shooting . JJ NNS VBP NNS VBD RB VBN IN DT NN . Reports from the Hurricane Katrina disaster zone Sunday say the American singer and musician Clarence ' Gatemouth ' Brown has died at the age of 81 , shortly after he was forced to leave his home just outside New Orleans . NNS IN DT NNP NNP NN NN NNP VBP DT JJ NN CC NN NNP `` NNP `` NNP VBZ VBN IN DT NN IN CD , RB IN PRP VBD VBN TO VB PRP$ NN RB IN NNP NNP . According to Associated Press , Brown died Saturday in Orange , Texas , the town where he grew up . VBG TO NNP NNP , NNP VBD NNP IN NNP , NNP , DT NN WRB PRP VBD RP . He reportedly had suffered from both lung cancer and heart disease . PRP RB VBD VBN IN DT NN NN CC NN NN . For 50 years Brown 's career was based in New Orleans , where he played guitar and sang blues , country , jazz , zydeco and Cajun music . IN CD NNS NNP POS NN VBD VBN IN NNP NNP , WRB PRP VBD NN CC VBD NNS , NN , NN , NN CC NNP NN . The nickname ' Gatemouth ' derived from Brown 's distinctive deep voice . DT NN `` NNP `` VBN IN NNP POS JJ JJ NN . His early blues hits included Okie Dokie Stomp and Ai n't That Dandy . PRP$ JJ NN NNS VBD NNP NNP NNP CC VBZ RB DT NN . George W. Bush NNP NNP NNP President Bush is to deliver a speech in Washington Wednesday in which he will offer proposals aimed at reining in high energy prices . NNP NNP VBZ TO VB DT NN IN NNP NNP IN WDT PRP MD VB NNS VBN IN VBG IN JJ NN NNS . Senior administration officials say Mr. Bush will encourage construction of new nuclear power plants and propose making closed military bases available for new oil refineries . NNP NN NNS VBP NNP NNP MD VB NN IN JJ JJ NN NNS CC VB VBG JJ JJ NNS JJ IN JJ NN NNS . The lack of adequate oil refining capacity is often cited by experts as one reason for high gasoline prices in the United States . DT NN IN JJ NN NN NN VBZ RB VBN IN NNS IN CD NN IN JJ NN NNS IN DT NNP NNPS . Officials say Mr. Bush will also call for the further use of hybrid automobiles and those that burn clean diesel fuel by adding them to a list of vehicles eligible for tax credits . NNS VBP NNP NNP MD RB VB IN DT JJ NN IN JJ NNS CC DT WDT VBP JJ NN NN IN VBG PRP TO DT NN IN NNS JJ IN NN NNS . The speech will be Mr. Bush 's second on energy issues in a week . DT NN MD VB NNP NNP POS JJ IN NN NNS IN DT NN . A U.S. report has criticized the Federal Bureau of Investigation for missing key information about terrorists planning the September 11 , 2001 attacks , more than a year before the strike . DT NNP NN VBZ VBN DT NNP NNP IN NNP IN VBG JJ NN IN NNS VBG DT NNP CD , CD NNS , JJR IN DT NN IN DT NN . The Justice Department issued the report Thursday , saying FBI officials had at least five chances to discover two of the airline hijackers as they prepared for the attacks , but failed to do so . DT NNP NNP VBD DT NN NNP , VBG NNP NNS VBD IN JJS CD NNS TO VB CD IN DT NN NNS IN PRP VBD IN DT NNS , CC VBD TO VB RB . In one case , it says an agent working for the Central Intelligence Agency ( CIA ) was blocked by a supervisor from sending information on the hijackers to FBI officials . IN CD NN , PRP VBZ DT NN VBG IN DT NNP NNP NNP LRB NNP RRB VBD VBN IN DT NN IN VBG NN IN DT NNS TO NNP NNS . Attorney General Alberto Gonzales told NBC 's Today show that reforms have been made to increase intelligence sharing among U.S. authorities , following the attacks . NNP NNP NNP NNP VBD NNP POS NN NN IN NNS VBP VBN VBN TO VB NN NN IN NNP NNS , VBG DT NNS . Publication of the report had been stalled for a year , due in part to legal challenges by Zacarias Moussaoui , who pleaded guilty this year to a role in the attacks . NN IN DT NN VBD VBN VBN IN DT NN , JJ IN NN TO JJ NNS IN NNP NNP , WP VBD JJ DT NN TO DT NN IN DT NNS . Iraqi authorities say they have found a mass grave containing at least 20 bodies in Karbala , a holy city for Shi'ite Muslims . JJ NNS VBP PRP VBP VBN DT NN NN VBG IN JJS CD NNS IN NNP , DT JJ NN IN NNP NNPS . They say the grave was found by construction workers who were laying a pipeline near the mausoleum of Imam Hussein , which is the Shi'ites ' holiest shrine . PRP VBP DT NN VBD VBN IN NN NNS WP VBD VBG DT NN IN DT NN IN NNP NNP , WDT VBZ DT NNS POS JJS NN . Authorities are examining the remains , which they say include the bodies of women and children . NNS VBP VBG DT NNS , WDT PRP VBP VBP DT NNS IN NNS CC NNS . They believe those in the grave were victims of Saddam Hussein 's bloody suppression of a Shi'ite uprising after the Gulf War in 1991 . PRP VBP DT IN DT NN VBD NNS IN NNP NNP POS JJ NN IN DT NNP NN IN DT NNP NNP IN CD . More than 200 suspected mass graves have been reported since the fall of Saddam 's regime in 2003 . JJR IN CD JJ NN NNS VBP VBN VBN IN DT NN IN NNP POS NN IN CD . Most of them were found in Iraq 's Shi'ite-dominated south and northern Kurdish region . JJS IN PRP VBD VBN IN NNP POS JJ NN CC JJ NNP NN . A senior Burmese prison official says more than 9,000 inmates promised freedom under the military government 's prisoner release program will be freed by the end of Friday . DT JJ JJ NN NN VBZ JJR IN CD NNS VBN NN IN DT JJ NN POS NN NN NN MD VB VBN IN DT NN IN NNP . A senior official at Rangoon 's notorious Insein prison Zaw Win , told reporters about the mass release , Friday . DT JJ NN IN NNP POS JJ NNP NN NNP NNP , VBD NNS IN DT NN NN , NNP . Witnesses say they have only seen 1,000 prisoners released Friday . NNS VBP PRP VBP RB VBN CD NNS VBN NNP . Sources tell VOA 's Burmese service that of those released Friday , only three were political detainees . NNS VBP NNP POS JJ NN IN IN DT VBN NNP , RB CD VBD JJ NNS . Burma says the inmates were wrongly detained by the recently-disbanded security apparatus , the National Intelligence Bureau . NNP VBZ DT NNS VBD RB VBN IN DT JJ NN NN , DT NNP NNP NNP . The agency was headed by ousted Burmese Prime Minister General Khin Nyunt . DT NN VBD VBN IN JJ JJ NNP NNP NNP NNP NNP . Most of those already freed are ordinary prisoners . JJS IN DT RB VBN VBP JJ NNS . Iran says it is donating $ 50 million to the Hamas-led Palestinian government , to ease a Palestinian cash crisis spurred by Western aid cuts . NNP VBZ PRP VBZ VBG $ CD CD TO DT JJ JJ NN , TO VB DT JJ NN NN VBN IN JJ NN NNS . Iranian Foreign Minister Manouchehr Mottaki announced the donation Sunday during a conference in Tehran . JJ NNP NNP NNP NNP VBD DT NN NNP IN DT NN IN NNP . The promise of funding comes after the United States and the European Union said they were stopping aid to the Hamas government because it refuses to renounce violence and accept Israel . DT NN IN NN VBZ IN DT NNP NNPS CC DT NNP NNP VBD PRP VBD VBG NN TO DT NNP NN IN PRP VBZ TO VB NN CC VB NNP . Israel is withholding about $ 50 million in monthly payments of tax revenues it collects for the Palestinian Authority . NNP VBZ VBG IN $ CD CD IN JJ NNS IN NN NNS PRP VBZ IN DT JJ NNP . Indian veterinary officials are killing thousands of birds this week to try to control the country 's latest outbreak of avian influenza . JJ JJ NNS VBP VBG NNS IN NNS DT NN TO VB TO VB DT NN POS JJS NN IN JJ NN . Authorities said Thursday that about 44,000 birds will be killed in West Bengal state 's Malda district . NNS VBD NNP IN IN CD NNS MD VB VBN IN NNP NNP NN POS NNP NN . An outbreak of the H5N1 virus has killed about 1,000 chickens in Malda in recent days . DT NN IN DT NNP NN VBZ VBN IN CD NNS IN NNP IN JJ NNS . West Bengal is struggling with recurrent bird flu infections . NNP NNP VBZ VBG IN JJ NN NN NNS . About 50,000 birds were slaughtered earlier this month after an outbreak in Murshidabad district . IN CD NNS VBD VBN RBR DT NN IN DT NN IN NNP NN . Another massive outbreak last January led to the slaughter of nearly four million chickens . DT JJ NN JJ NNP VBD TO DT NN IN RB CD CD NNS . The virus hit 13 of West Bengal 's 19 districts and was considered India 's worst bird flu outbreak . DT NN VBD CD IN NNP NNP POS CD NNS CC VBD VBN NNP POS JJS NN NN NN . No cases of human infection have been reported so far in India . DT NNS IN JJ NN VBP VBN VBN RB RB IN NNP . The Sudanese government is accusing Chad of sending troops into Darfur to supply rebels in the region . DT JJ NN VBZ VBG NNP IN VBG NNS IN NNP TO VB NNS IN DT NN . Sudan 's Information Minister Kamal Obeid issued a statement Wednesday saying Chadian troops took supplies to the rebel Justice and Equality Movement near the North Darfur capital of El-Fasher . NNP POS NN NN NNP NNP VBD DT NN NNP VBG JJ NNS VBD NNS TO DT NN NN CC NN NN IN DT NNP NNP NN IN NNP . He also accused Chad of providing protection to the rebels . PRP RB VBD NNP IN VBG NN TO DT NNS . The Reuters news agency quotes a statement from Chad 's communications minister denying the accusations . DT NNP NN NN VBZ DT NN IN NNP POS NNS NN VBG DT NNS . Chad and Sudan broke off diplomatic relations last year , with each accusing the other of supporting rebel assaults on their capitals . NNP CC NNP VBD RP JJ NNS JJ NN , IN DT VBG DT NN IN VBG JJ NNS IN PRP$ NNS . The countries re-established relations in November , but tensions between the two nations remain high . DT NNS JJ NNS IN NNP , CC NNS IN DT CD NNS VBP JJ . On Monday , Chad accused Sudan of supporting the formation of a new insurgent group opposed to the Chadian government . IN NNP , NNP VBD NNP IN VBG DT NN IN DT JJ JJ NN VBN TO DT JJ NN . China says it will again call on the European Union to lift its arms sales embargo during upcoming talks with German Chancellor Gerhard Schroeder and EU officials . NNP VBZ PRP MD RB VB IN DT NNP NNP TO VB PRP$ NNS NNS NN IN VBG NNS IN JJ NNP NNP NNP CC NNP NNS . Mr. Schroeder will be in China next week for talks with President Hu Jintao and Prime Minister Wen Jiabao . NNP NNP MD VB IN NNP JJ NN IN NNS IN NNP NNP NNP CC NNP NNP NNP NNP . Afterwards , Mr. Wen will travel to the Netherlands to attend Wednesday 's China - European Union summit . RB , NNP NNP MD VB TO DT NNP TO VB NNP POS NNP IN NNP NNP NN . Chinese foreign ministry spokeswoman Zhang Qiyue says Beijing should not be expected to make any concessions on human rights to have the embargo lifted . JJ JJ NN NN NNP NNP VBZ NNP MD RB VB VBN TO VB DT NNS IN JJ NNS TO VB DT NN VBD . The European Union imposed the embargo in 1989 after China 's violent crackdown on pro-democracy demonstrations in Beijing 's Tiananmen Square . DT NNP NNP VBD DT NN IN CD IN NNP POS JJ NN IN JJ NNS IN NNP POS NNP NNP . President Bush has outlined the agenda for his second term in office and has asked for the support of all Americans in his weekly Saturday morning radio address . NNP NNP VBZ VBN DT NN IN PRP$ JJ NN IN NN CC VBZ VBN IN DT NN IN DT NNS IN PRP$ JJ NNP NN NN NN . Mr. Bush Saturday promised to reach out to friends and allies , including NATO and the European Union , to promote global development and progress , defeat terrorists and encourage democracy as an alternative to tyranny and terror . NNP NNP NNP VBD TO VB RP TO NNS CC NNS , VBG NNP CC DT NNP NNP , TO VB JJ NN CC NN , NN NNS CC VB NN IN DT NN TO VB CC VB . He said in order to create jobs he will propose what he called ' practical measures ' to help small business , including the elimination of so-called ' frivolous ' lawsuits he said drive up the cost of health care . PRP VBD IN NN TO VB NNS PRP MD VB WP PRP VBD `` JJ NNS `` TO VB JJ NN , VBG DT NN IN JJ `` JJ `` NNS PRP VBD NN IN DT NN IN NN NN . The president also promised education and tax code reform and a revision of the U.S. Social Security system . DT NN RB VBD NN CC NN NN NN CC DT NN IN DT NNP NNP NNP NN . The President said there is no limit to the greatness of America when its citizens work together . DT NNP VBD EX VBZ DT NN TO DT NN IN NNP WRB PRP$ NNS VBP RB . Mexican President-elect Felipe Calderon has called for reconciliation in his first mass victory celebration since his narrow election victory in July . JJ NNP NNP NNP VBZ VBN IN NN IN PRP$ JJ NN NN NN IN PRP$ JJ NN NN IN NNP . Mr. Calderon told supporters in an open air bullring in Mexico City Sunday that he will work to create jobs , cut crime and fight poverty . NNP NNP VBD NNS IN DT JJ NN NN IN NNP NNP NNP IN PRP MD VB TO VB NNS , VB NN CC VB NN . Meanwhile , opposition candidate Andres Manuel Lopez Obrador has agreed to temporarily end a mass protest in downtown Mexico City . RB , NN NN NNP NNP NNP NNP VBZ VBN TO RB VB DT NN NN IN NN NNP NNP . Lopez Obrador called for the halt to allow the army to hold its traditional September 16th military parade through the city center . NNP NNP VBD IN DT NN TO VB DT NN TO VB PRP$ JJ NNP JJ JJ NN IN DT NN NN . He said Sunday that demonstrators , who are protesting alleged election fraud , have nothing against the military . PRP VBD NNP IN NNS , WP VBP VBG JJ NN NN , VBP DT IN DT NN . Lopez Obrador also called for stepped up demonstrations on September 15th when outgoing Mexican President Vicente Fox is due to make an annual address to the nation . NNP NNP RB VBD IN VBN RP NNS IN NNP CD WRB VBG JJ NNP NNP NNP VBZ JJ TO VB DT JJ NN TO DT NN . Last week Mexico 's top electoral court officially declared Mr. Calderon the winner of the disputed election . JJ NN NNP POS JJ JJ NN RB VBD NNP NNP DT NN IN DT JJ NN . Orthodox Christians across the globe who retain the Julian calendar are celebrating Christmas Monday . NNP NNPS IN DT NN WP VBP DT JJ NN VBP VBG NNP NNP . For many , the holiday season often starts with a midnight Mass . IN NN , DT NN NN RB VBZ IN DT NN NNP . In Russia , President Vladimir Putin attended Mass in a church north of Moscow . IN NNP , NNP NNP NNP VBD NNP IN DT NN NN IN NNP . Mikhail Saakashvili , fresh from his victorious and controversial Georgian presidential bid , attended the same Mass as his political rival , Levan Gachechiladze . NNP NNP , JJ IN PRP$ JJ CC JJ JJ JJ NN , VBD DT JJ NNP IN PRP$ JJ NN , NNP NNP . Greek Orthodox Patriarch Theofilos the Third welcomed Palestinian President Mahmoud Abbas to the midnight Mass at the Church of the Nativity in Bethlehem . JJ NNP NNP NNP DT NNP VBD JJ NNP NNP NNP TO DT NN NNP IN DT NN IN DT NN IN NNP . Russia 's Interfax news agency says Christmas this year also will be celebrated in outer space . NNP POS NNP NN NN VBZ NNP DT NN RB MD VB VBN IN JJ NN . Yuri Malenchenko , the Russian flight engineer aboard the International Space Station , will mark Orthodox Christmas today with his two American crew members . NNP NNP , DT JJ NN NN IN DT NNP NNP NNP , MD VB NNP NNP NN IN PRP$ CD JJ NN NNS . Oil giant Shell has resumed production at two flowstations after Nigerian authorities intervened to resolve a dispute with villagers . NN NN NNP VBZ VBN NN IN CD NNS IN JJ NNS VBD TO VB DT NN IN NNS . Shell reopened the facilities Tuesday , nearly one month after a protest by members of the remote fishing village of Kula stopped the flow of some 1,00,000 barrels of crude a day . NNP VBD DT NNS NNP , RB CD NN IN DT NN IN NNS IN DT JJ NN NN IN NNP VBD DT NN IN DT CD NNS IN NN DT NN . On December 5 , the villagers seized two Shell oil facilities and one from ChevronTexaco , demanding jobs and investment in the local community . IN NNP CD , DT NNS VBD CD NNP NN NNS CC CD IN NNP , VBG NNS CC NN IN DT JJ NN . The protesters left the flowstations several days later but threatened to attack again unless their demands were met . DT NNS VBD DT NNS JJ NNS RB CC VBD TO VB RB IN PRP$ NNS VBD VBN . Last week , ChevronTexaco struck a deal , allowing it to resume oil production in the village . JJ NN , NNP VBD DT NN , VBG PRP TO VB NN NN IN DT NN . Multinational oil companies in Nigeria are routinely targeted by impoverished locals , who say their communities are deprived of the oil wealth pumped from their lands . JJ NN NNS IN NNP VBP RB VBN IN JJ NNS , WP VBP PRP$ NNS VBP VBN IN DT NN NN VBD IN PRP$ NNS . Former U.S. President Bill Clinton has praised the lasting peace forged by the Dayton Peace Accords a decade ago , but urged Serbs to do more to bring top fugitive war crimes suspects in the Balkans to justice . JJ NNP NNP NNP NNP VBZ VBN DT JJ NN VBN IN DT NNP NNP VBZ DT NN RB , CC VBD NNS TO VB JJR TO VB JJ JJ NN NNS VBZ IN DT NNPS TO NN . Writing in Wednesday 's Wall Street Journal , Mr. Clinton said the U.S.-brokered agreement was not a perfect peace , but it ended Bosnia-Herzegovina 's ethnic conflict and provided for national security and a shared form of government . VBG IN NNP POS NNP NNP NNP , NNP NNP VBD DT JJ NN VBD RB DT JJ NN , CC PRP VBD NNP POS JJ NN CC VBN IN JJ NN CC DT JJ NN IN NN . However , he stressed that Serb authorities must continue to work toward arresting and transferring all indicted war crimes suspects , especially , Radovan Karadzic and Ratko Mladic , to The Hague war crimes tribunal . RB , PRP VBD IN JJ NNS MD VB TO VB IN VBG CC VBG DT VBN NN NNS VBZ , RB , NNP NNP CC NNP NNP , TO DT NNP NN NNS JJ . He said failure to do so will prevent the Balkans from breaking with the past . PRP VBD NN TO VB RB MD VB DT NNPS IN VBG IN DT NN . The tribunal indicted the two fugitives for their roles in attacks on civilians during the Bosnian conflict . DT NN VBD DT CD NNS IN PRP$ NNS IN NNS IN NNS IN DT JJ NN . The Netherlands has defeated Japan , 02-Jan while Benin and Australia played to a 01-Jan draw on the first day of the World Under-20 men 's football ( soccer ) tournament in the Netherlands . DT NNP VBZ VBN NNP , CD IN NNP CC NNP VBD TO DT JJ NN IN DT JJ NN IN DT NNP NNP NNS POS NN LRB NN RRB NN IN DT NNP . Ryan Babel scored one goal and set PSV Eindhoven striker Ibrahim Afellay 's goal for the Dutch . NNP NNP VBD CD NN CC VBN NNP NNP NN NNP NNP POS NN IN DT NNS . Sota Hirayama scored for Japan in the 68th minute . NNP NNP VBD IN NNP IN DT JJ NN . Meanwhile , Australia had to rally from one goal down to tie Benin , 01-Jan , after Razak Omotoyossi scored in the 32nd minute . RB , NNP VBD TO VB IN CD NN IN TO VB NNP , CD , IN NNP NNP VBD IN DT JJ NN . Australia 's Nick Ward tied the match in the 59th minute . NNP POS NNP NNP VBD DT NN IN DT JJ NN . The top two teams in each of the six groups plus the four best teams among those ranked third after the first round qualify for the round of 16 . DT JJ CD NNS IN DT IN DT CD NNS CC DT CD JJS NNS IN DT VBN JJ IN DT JJ NN VB IN DT NN IN CD . The winners in the round of 16 make the quarterfinals . DT NNS IN DT NN IN CD VBP DT NNS . The tournament final is scheduled for July 5th . DT NN JJ VBZ VBN IN NNP CD . Israeli police have removed a large group of illegal Jewish squatters trying to set up makeshift settlement outposts near the West Bank city of Hebron . JJ NNS VBP VBN DT JJ NN IN JJ JJ NNS VBG TO VB RP NN NN NNS IN DT NNP NNP NN IN NNP . Police say at least 150 Israeli youths were evacuated Thursday as they occupied several hilltops sites in the area . NNS VBP IN JJS CD JJ NNS VBD VBN NNP IN PRP VBD JJ NNS NNS IN DT NN . Authorities say the youths were removed before they were able to erect permanent structures . NNS VBP DT NNS VBD VBN IN PRP VBD JJ TO VB JJ NNS . Israeli news reports say several people were injured during the evictions , including a deputy police commander who was hospitalized with an eye injury . JJ NN NNS VBP JJ NNS VBD VBN IN DT NNS , VBG DT NN NN NN WP VBD VBN IN DT NN NN . Police say at least three of the settlers were arrested . NNS VBP IN JJS CD IN DT NNS VBD VBN . The Yediot Aharonot newspaper says Army Chief of Staff Dan Halutz was sharply critical of the youths ' conduct . DT NNP NNP NN VBZ NNP NNP IN NNP NNP NNP VBD RB JJ IN DT NNS POS NN . The paper quoted him as blaming settler leadership for encouraging what he called ' thuggish ' behavior by the protesters . DT NN VBD PRP IN VBG NN NN IN VBG WP PRP VBD `` VBP `` NN IN DT NNS . The Fitch rating agency slashed BP 's credit rating drastically six steps from AA to BBB Tuesday , on concerns about the cost of cleaning up the firm 's Gulf of Mexico oil spill . DT NNP NN NN VBD NNP POS NN NN RB CD NNS IN NNP TO NNP NNP , IN NNS IN DT NN IN VBG RP DT NN POS NNP IN NNP NN NN . U.S. political leaders are asking BP to set aside billions of dollars in a special fund to be sure claims will be paid . NNP JJ NNS VBP VBG NNP TO VB RP NNS IN NNS IN DT JJ NN TO VB JJ NNS MD VB VBN . Some estimates put cleanup and other costs as high at $ 40 billion . DT NNS VBP NN CC JJ NNS IN JJ IN $ CD CD . Rating agencies give lenders guidance on how likely a particular borrower is to repay its debt , and a lower rating is likely to mean higher interest charges . VBG NNS VBP NNS NN IN WRB JJ DT JJ NN VBZ TO VB PRP$ NN , CC DT JJR NN VBZ JJ TO VB JJR NN NNS . A new Israeli public opinion poll indicates most Israelis want Prime Minister Ehud Olmert to resign because of the way he handled the war against Hezbollah in Lebanon . DT JJ JJ JJ NN NN VBZ RBS NNS VBP NNP NNP NNP NNP TO VB IN IN DT NN PRP VBD DT NN IN NNP IN NNP . Results of the survey published Friday in the Yediot Ahronot daily newspaper show 63 percent of those questioned say Mr. Olmert should step down . NNS IN DT NN VBN NNP IN DT NNP NNP JJ NN VBZ CD NN IN DT VBN VBP NNP NNP MD VB RB . A similar poll published a week ago showed 41 percent said they want Mr. Olmert to resign . DT JJ NN VBN DT NN RB VBD CD NN VBD PRP VBP NNP NNP TO VB . The new survey also indicates that most Israelis view the U.N.-brokered ceasefire as a failure for Israel because Hezbollah leadership remained intact and the two Israeli soldiers , whose capture last month sparked the war , are still in captivity . DT JJ NN RB VBZ IN JJS NNS VBP DT JJ NN IN DT NN IN NNP IN NNP NN VBD JJ CC DT CD JJ NNS , WP$ NN JJ NN VBD DT NN , VBP RB IN NN . The survey also indicates a strong swing toward the hard-line Likud party led by former Prime Minister Benjamin Netanyahu and away from Mr. Olmert 's centrist Kadima party . DT NN RB VBZ DT JJ NN IN DT JJ NNP NN VBN IN JJ NNP NNP NNP NNP CC RB IN NNP NNP POS NN NNP NN . A well-known Lebanese television journalist has been wounded by a bomb blast that damaged her car north of Beirut . DT JJ JJ NN NN VBZ VBN VBN IN DT NN NN WDT VBD PRP$ NN NN IN NNP . Security officials say May Shidiac of LBC television has been taken to a hospital in serious condition . NN NNS VBP NNP NNP IN NNP NN VBZ VBN VBN TO DT NN IN JJ NN . The bombing was the latest of several attacks against prominent Lebanese this year , including a journalist and a politician killed in separate attacks in June , and former Prime Minister Rafiq Hariri who was assassinated in February . DT NN VBD DT JJS IN JJ NNS IN JJ NNS DT NN , VBG DT NN CC DT NN VBN IN JJ NNS IN NNP , CC JJ NNP NNP NNP NNP WP VBD VBN IN NNP . All were outspoken critics of Syria . DT VBD JJ NNS IN NNP . Earlier Sunday , in Cairo , Egyptian President Hosni Mubarak urged his Syrian counterpart , Bashar al-Assad , to continue cooperating in a U.N. probe of the Hariri assassination . RBR NNP , IN NNP , JJ NNP NNP NNP VBD PRP$ JJ NN , NNP NNP , TO VB VBG IN DT NNP NN IN DT NNP NN . A Mubarak spokesman urged the international community to refrain from pre-judging any Syrian role . DT NNP NN VBD DT JJ NN TO VB IN VBG DT JJ NN . Four pro-Syrian former Lebanese security chiefs have been indicted in the killings . CD JJ JJ JJ NN NNS VBP VBN VBN IN DT NNS . On Friday , U.N. investigators finished questioning several Syrian officials . IN NNP , NNP NNS VBD VBG JJ JJ NNS . It will issue a final report late next month . PRP MD VB DT JJ NN RB JJ NN . Police in Rangoon , Burma 's largest city , kept close watch Saturday outside the headquarters of Aung San Suu Kyi 's pro-democracy party , as it celebrated its 20th anniversary . NNS IN NNP , NNP POS JJS NN , VBD JJ NN NNP IN DT NN IN NNP NNP NNP NNP POS JJ NN , IN PRP VBD PRP$ JJ NN . Plainclothes officers took pictures of people arriving for the ceremony , attended by at least 200 members of the National League for Democracy , as well as foreign diplomats . NNS NNS VBD NNS IN NNS VBG IN DT NN , VBN IN IN JJS CD NNS IN DT NNP NNP IN NNP , RB RB IN JJ NNS . The ceremony was also a homecoming for prominent journalist Win Tin , who was released from prison earlier this week after 19 years behind bars . DT NN VBD RB DT NN IN JJ NN NNP NNP , WP VBD VBN IN NN RBR DT NN IN CD NNS IN NNS . He is Burma 's longest-held political prisoner . PRP VBZ NNP POS JJ JJ NN . The NLD released a statement calling for the ruling generals to release all political prisoners , including Aung San Suu Kyi , who has spent 13 of the last 19 years under house arrest . DT NNP VBD DT NN VBG IN DT NN NNS TO VB DT JJ NNS , VBG NNP NNP NNP NNP , WP VBZ VBN CD IN DT JJ CD NNS IN NN NN . The NLD was founded in 1988 , after the military crushed a pro-democracy uprising in Burma . DT NNP VBD VBN IN CD , IN DT NN VBD DT JJ NN IN NNP . Police say a NATO strike has killed a Taliban commander involved in the suicide attack on a USAID contractor in northern Afghanistan earlier this month . NNS VBP DT NNP NN VBZ VBN DT NNP NN VBN IN DT NN NN IN DT NNP NN IN JJ NNP RBR DT NN . NATO says the Taliban commander , who was targeted Thursday in Kunduz province , openly claimed responsibility for the July 2 attack on the U.S. contractor 's compound in Kunduz city that killed five people . NNP VBZ DT NNP NN , WP VBD VBN NNP IN NNP NN , RB VBD NN IN DT NNP CD NN IN DT NNP NN POS NN IN NNP NN WDT VBD CD NNS . In western Farah province , NATO says a joint Afghan-international force killed a Taliban commander and a ' number of ' insurgents during a raid on a militant training camp on Thursday . IN JJ NNP NN , NNP VBZ DT JJ JJ NN VBD DT NNP NN CC DT `` NN IN `` NNS IN DT NN IN DT JJ NN NN IN NNP . The alliance says the commander , Mullah Akhtar , was responsible for brining foreign fighters from Iran into Afghanistan . DT NN VBZ DT NN , NNP NNP , VBD JJ IN VBG JJ NNS IN NNP IN NNP . NATO and Afghan forces are increasingly targeting Taliban leadership during operations throughout Afghanistan . NNP CC JJ NNS VBP RB VBG NNP NN IN NNS IN NNP . NATO said Friday that at least 12 Taliban commanders have been killed or captured in the southern province of Helmand since May 1 . NNP VBD NNP IN IN JJS CD NNP NNS VBP VBN VBN CC VBN IN DT JJ NN IN NNP IN NNP CD . A top Spanish judge has approved a request by public prosecutors for a probe of suspected links between the Basque separatist group ETA and Colombia 's Marxist rebel FARC movement . DT JJ JJ NN VBZ VBN DT NN IN JJ NNS IN DT NN IN JJ NNS IN DT NNP NN NN NNP CC NNP POS JJ NN NNP NN . National Court Judge Eloy Velasco acted on a petition prosecutors filed last month as they sought to indict five ETA members on suspicion of collaborating with the Colombian rebels . NNP NNP NNP NNP NNP VBD IN DT NN NNS VBN JJ NN IN PRP VBD TO VB CD NNP NNS IN NN IN VBG IN DT JJ NNS . The prosecutors said the two groups have held joint training sessions in the use of explosives . DT NNS VBD DT CD NNS VBP VBN JJ NN NNS IN DT NN IN NNS . They said FARC and ETA have a relationship stretching back to at least 1993 . PRP VBD NNP CC NNP VBP DT NN VBG RB TO IN JJS CD . ETA is blamed for more than 820 deaths in its 40-year violent campaign for the creation of an independent Basque state in northern Spain and southwestern France . NNP VBZ VBN IN JJR IN CD NNS IN PRP$ JJ JJ NN IN DT NN IN DT JJ JJ NN IN JJ NNP CC JJ NNP . The FARC is Colombia 's most powerful rebel movement . DT NNP VBZ NNP POS RBS JJ NN NN . Colombia , the United States and the European Union designate the FARC as a terrorist group . NNP , DT NNP NNPS CC DT NNP NNP VBP DT NNP IN DT JJ NN . U.S. Secretary of State Condoleezza Rice says Washington has no plans to have a military base in Tajikistan , or to increase its military presence abroad . NNP NNP IN NNP NNP NNP VBZ NNP VBZ DT NNS TO VB DT JJ NN IN NNP , CC TO VB PRP$ JJ NN RB . Ms. Rice made the comment Thursday at a news conference in Dushanbe , following a meeting with Tajik Foreign Minister Talbak Nazarov . NNP NNP VBD DT NN NNP IN DT NN NN IN NNP , VBG DT NN IN JJ NNP NNP NNP NNP . The top U.S. diplomat said that , on the contrary , the United States is reducing the number of its military bases across the world . DT JJ NNP NN VBD IN , IN DT NN , DT NNP NNPS VBZ VBG DT NN IN PRP$ JJ NNS IN DT NN . Earlier in the day , Ms. Rice held talks with President Emomali Rakhmonov that focused on cooperation in democracy building and the war against terrorism and drug trafficking . RBR IN DT NN , NNP NNP VBD NNS IN NNP NNP NNP WDT VBD IN NN IN NN NN CC DT NN IN NN CC NN NN . Ms. Rice arrived in Tajikistan - the last stop on her Central Asian tour - from Kazakhstan , where she denied suggestions that Washington was putting its oil interests ahead of democracy in the Central Asian nation . NNP NNP VBD IN NNP IN DT JJ NN IN PRP$ JJ JJ NN : IN NNP , WRB PRP VBD NNS IN NNP VBD VBG PRP$ NN NNS RB IN NN IN DT JJ JJ NN . Ralston Purina Co. reported a 47 % decline in fourth-quarter earnings , reflecting restructuring costs as well as a more difficult pet food market . NNP NNP NNP VBD DT CD NN NN IN JJ NNS , VBG NN NNS RB RB IN DT RBR JJ NN NN NN . The St. Louis company earned $ 45.2 million , or 65 cents a share , compared with $ 84.9 million , or $ 1.24 a share , a year earlier . DT NN NNP NN VBD $ CD CD , CC CD NNS DT NN , VBN IN $ CD CD , CC $ CD DT NN , DT NN RBR . Sales in the latest period were $ 1.76 billion , a 13 % increase from last year 's $ 1.55 billion . NNS IN DT JJS NN VBD $ CD CD , DT CD NN NN IN JJ NN POS $ CD CD . For the year ended Sept. 30 , Ralston earned $ 422.5 million , or $ 6.44 a share , up 8.9 % from $ 387.8 million , or $ 5.63 a share . IN DT NN VBN NNP CD , NNP VBD $ CD CD , CC $ CD DT NN , RB CD NN IN $ CD CD , CC $ CD DT NN . This year 's results included a gain of $ 70.2 million on the disposal of seafood operations . DT NN POS NNS VBD DT NN IN $ CD CD IN DT NN IN NN NNS . Sales for the full year were $ 6.6 billion , up 13 % from $ 5.8 billion . NNS IN DT JJ NN VBD $ CD CD , RB CD NN IN $ CD CD . Ralston said its restructuring costs include the phase-out of a battery facility in Greenville , N.C. , the recent closing of a Hostess cake bakery in Cincinnati and a reduction in staff throughout the company . NNP VBD PRP$ NN NNS VBP DT NN IN DT NN NN IN NNP , NN , DT JJ NN IN DT NNP NN NN IN NNP CC DT NN IN NN IN DT NN . The battery plant , which makes rechargeable nickel cadmium and carbon zinc products , will be closed over the next year or so , a spokesman said . DT NN NN , WDT VBZ JJ NN NN CC NN NN NNS , MD VB VBN IN DT JJ NN CC RB , DT NN VBD . Ralston attributed its fourth-quarter slump partly to higher costs of ingredients in the pet food business as well as competitive pressures , which required higher advertising spending . NNP VBD PRP$ JJ NN RB TO JJR NNS IN NNS IN DT NN NN NN RB RB IN JJ NNS , WDT VBD JJR NN NN . For the year , pet food volume was flat , the company said . IN DT NN , NN NN NN VBD JJ , DT NN VBD . Its cereal division realized higher operating profit on volume increases , but also spent more on promotion . PRP$ NN NN VBD JJR NN NN IN NN NNS , CC RB VBD RBR IN NN . The Continental Baking business benefited from higher margins on bread and on increased cake sales , it added . DT NNP NNP NN VBD IN JJR NNS IN NN CC IN VBN NN NNS , PRP VBD . Ralston said its Eveready battery unit was hurt by continuing economic problems in South America . NNP VBD PRP$ NNP NN NN VBD VBN IN VBG JJ NNS IN NNP NNP . Ralston shares closed yesterday at $ 80.5 , off $ 1 , in New York Stock Exchange composite trading . NNP NNS VBD NN IN $ CD , IN $ CD , IN NNP NNP NNP NNP JJ NN . The island - discovered by Christopher COLUMBUS in 1494 - was settled by the Spanish early in the 16th century . DT NN : VBN IN NNP NNP IN CD : VBD VBN IN DT JJ JJ IN DT JJ NN . The native Taino Indians , who had inhabited Jamaica for centuries , were gradually exterminated and replaced by African slaves . DT JJ NNP NNS , WP VBD VBN NNP IN NNS , VBD RB VBN CC VBN IN JJ NNS . England seized the island in 1655 and established a plantation economy based on sugar , cocoa , and coffee . NNP VBD DT NN IN CD CC VBD DT NN NN VBN IN NN , NN , CC NN . The abolition of slavery in 1834 freed a quarter million slaves , many of whom became small farmers . DT NN IN NN IN CD VBD DT NN CD NNS , NN IN WP VBD JJ NNS . Jamaica gradually obtained increasing independence from Britain . NNP RB VBD VBG NN IN NNP . In 1958 it joined other British Caribbean colonies in forming the Federation of the West Indies . IN CD PRP VBD JJ JJ NNP NNS IN VBG DT NNP IN DT NNP NNPS . Jamaica gained full independence when it withdrew from the Federation in 1962 . NNP VBD JJ NN WRB PRP VBD IN DT NNP IN CD . Deteriorating economic conditions during the 1970s led to recurrent violence as rival gangs affiliated with the major political parties evolved into powerful organized crime networks involved in international drug smuggling and money laundering . VBG JJ NNS IN DT NNS VBD TO JJ NN IN JJ NNS VBN IN DT JJ JJ NNS VBN IN JJ JJ NN NNS VBN IN JJ NN NN CC NN NN . Violent crime , drug trafficking , and poverty pose significant challenges to the government today . JJ NN , NN NN , CC NN VBP JJ NNS TO DT NN NN . Nonetheless , many rural and resort areas remain relatively safe and contribute substantially to the economy . RB , JJ JJ CC NN NNS VBP RB JJ CC VBP RB TO DT NN . Despite being the smallest country geographically in Central America , El Salvador has the third largest economy in the region . IN VBG DT JJS NN RB IN NNP NNP , NNP NNP VBZ DT JJ JJS NN IN DT NN . The economy took a hit from the global recession and real GDP contracted by 3.5 % in 2009 . DT NN VBD DT NN IN DT JJ NN CC JJ NN VBN IN CD NN IN CD . The economy began a slow recovery in 2010 on the back of improved export and remittances figures . DT NN VBD DT JJ NN IN CD IN DT NN IN JJ NN CC VBZ NNS . Remittances accounted for 16 % of GDP in 2009 , and about a third of all households receive these transfers . NNS VBD IN CD NN IN NN IN CD , CC IN DT NN IN DT NNS VBP DT NNS . In 2006 El Salvador was the first country to ratify the Dominican Republic-Central American Free Trade Agreement ( CAFTA-DR ) , which has bolstered the export of processed foods , sugar , and ethanol , and supported investment in the apparel sector amid increased Asian competition and the expiration of the Multi-Fiber Agreement in 2005 . IN CD NNP NNP VBD DT JJ NN TO VB DT NNP JJ NNP NNP NNP NNP LRB NNP RRB , WDT VBZ VBN DT NN IN JJ NNS , NN , CC NN , CC VBD NN IN DT NN NN IN JJ JJ NN CC DT NN IN DT NNP NNP IN CD . El Salvador has promoted an open trade and investment environment , and has embarked on a wave of privatizations extending to telecom , electricity distribution , banking , and pension funds . NNP NNP VBZ VBN DT JJ NN CC NN NN , CC VBZ VBN IN DT NN IN NNS VBG TO NN , NN NN , NN , CC NN NNS . In late 2006 , the government and the Millennium Challenge Corporation signed a five-year , $ 461 million compact to stimulate economic growth and reduce poverty in the country 's northern region , the primary conflict zone during the civil war , through investments in education , public services , enterprise development , and transportation infrastructure . IN JJ CD , DT NN CC DT NNP NNP NNP VBD DT JJ , $ CD CD JJ TO VB JJ NN CC VB NN IN DT NN POS JJ NN , DT JJ NN NN IN DT JJ NN , IN NNS IN NN , JJ NNS , NN NN , CC NN NN . With the adoption of the US dollar as its currency in 2001 , El Salvador lost control over monetary policy . IN DT NN IN DT NNP NN IN PRP$ NN IN CD , NNP NNP VBD NN IN JJ NN . Any counter-cyclical policy response to the downturn must be through fiscal policy , which is constrained by legislative requirements for a two-thirds majority to approve any international financing , and by already high levels of debt . DT JJ NN NN TO DT NN MD VB IN JJ NN , WDT VBZ VBN IN JJ NNS IN DT JJ NN TO VB DT JJ NN , CC IN RB JJ NNS IN NN . Iran 's economy is marked by an inefficient state sector , reliance on the oil sector , which provides the majority of government revenues , and statist policies , which create major distortions throughout the system . NNP POS NN VBZ VBN IN DT JJ NN NN , NN IN DT NN NN , WDT VBZ DT NN IN NN NNS , CC JJ NNS , WDT VBP JJ NNS IN DT NN . Private sector activity is typically limited to small-scale workshops , farming , and services . JJ NN NN VBZ RB VBN TO JJ NNS , NN , CC NNS . Price controls , subsidies , and other rigidities weigh down the economy , undermining the potential for private-sector-led growth . NN NNS , NNS , CC JJ NNS VBP IN DT NN , VBG DT NN IN JJ NN . Significant informal market activity flourishes . JJ JJ NN NN NNS . The legislature in late 2009 passed President Mahmud AHMADI-NEJAD 's bill to reduce subsidies , particularly on food and energy . DT NN IN JJ CD VBD NNP NNP NNP POS NN TO VB NNS , RB IN NN CC NN . The bill would phase out subsidies - which benefit Iran 's upper and middle classes the most - over three to five years and replace them with cash payments to Iran 's lower classes . DT NN MD VB RP NNS : WDT VBP NNP POS JJ CC JJ NNS DT RBS : IN CD CC CD NNS CC VB PRP IN NN NNS TO NNP POS JJR NNS . However , the start of the program was delayed repeatedly throughout 2010 over fears of public reaction to higher prices . RB , DT NN IN DT NN VBD VBN RB IN CD IN NNS IN JJ NN TO JJR NNS . This is the most extensive economic reform since the government implemented gasoline rationing in 2007 . DT VBZ DT RBS JJ JJ NN IN DT NN VBD NN VBG IN CD . The recovery of world oil prices in the last year increased Iran 's oil export revenue by at least $ 10 billion over 2009 , easing some of the financial impact of the newest round of international sanctions . DT NN IN NN NN NNS IN DT JJ NN VBD NNP POS NN NN NN IN IN JJS $ CD CD IN CD , VBG DT IN DT JJ NN IN DT JJS NN IN JJ NNS . Although inflation has fallen substantially since the mid-2000s , Iran continues to suffer from double-digit unemployment and underemployment . IN NN VBZ VBN RB IN DT NNS , NNP VBZ TO VB IN JJ NN CC NN . Underemployment among Iran 's educated youth has convinced many to seek jobs overseas , resulting in a significant ' brain drain . ' NN IN NNP POS VBN NN VBZ VBN JJ TO VB NNS RB , VBG IN DT JJ `` NN NN . `` Kazakhstan , geographically the largest of the former Soviet republics , excluding Russia , possesses enormous fossil fuel reserves and plentiful supplies of other minerals and metals , such as uranium , copper , and zinc . NNP , RB DT JJS IN DT JJ JJ NNS , VBG NNP , VBZ JJ NN NN NNS CC JJ NNS IN JJ NNS CC NNS , JJ IN NN , NN , CC NN . It also has a large agricultural sector featuring livestock and grain . PRP RB VBZ DT JJ JJ NN VBG NN CC NN . In 2002 Kazakhstan became the first country in the former Soviet Union to receive an investment-grade credit rating , and from 2000 through 2007 , Kazakhstan 's economy grew more than 9 % per year . IN CD NNP VBD DT JJ NN IN DT JJ NNP NNP TO VB DT JJ NN NN , CC IN CD IN CD , NNP POS NN VBD RBR IN CD NN IN NN . Extractive industries , particularly hydrocarbons and mining , have been the engines of this growth . JJ NNS , RB NNS CC NN , VBP VBN DT NNS IN DT NN . However , geographic limitations and decaying infrastructure present serious obstacles . RB , JJ NNS CC VBG NN JJ JJ NNS . Landlocked , with restricted access to the high seas , Kazakhstan relies on its neighbors to export its products , especially oil and gas . JJ , IN JJ NN TO DT JJ NNS , NNP VBZ IN PRP$ NNS TO VB PRP$ NNS , RB NN CC NN . Although its Caspian Sea ports and rail lines carrying oil have been upgraded , civil aviation has been neglected . IN PRP$ NNP NNP NNS CC NN NNS VBG NN VBP VBN VBN , JJ NN VBZ VBN VBN . Telecoms are improving , but require considerable investment , as does the information technology base . NNS VBP VBG , CC VBP JJ NN , IN VBZ DT NN NN NN . Supply and distribution of electricity can be erratic . NN CC NN IN NN MD VB JJ . At the end of 2007 , global financial markets froze up and the loss of capital inflows to Kazakhstani banks caused a credit crunch . IN DT NN IN CD , JJ JJ NNS VBP RB CC DT NN IN NN NNS TO NNP NNS VBD DT NN NN . The subsequent and sharp fall of oil and commodity prices in 2008 aggravated the economic situation , and Kazakhstan plunged into recession . DT JJ CC JJ NN IN NN CC NN NNS IN CD VBD DT JJ NN , CC NNP VBD IN NN . While the global financial crisis took a significant toll on Kazakhstan 's economy , it has rebounded well . IN DT JJ JJ NN VBD DT JJ NN IN NNP POS NN , PRP VBZ VBN RB . In response to the crisis , Kazakhstan 's government devalued the tenge ( Kazakhstan 's currency ) to stabilize market pressures and injected $ 19 billion in economic stimulus . IN NN TO DT NN , NNP POS NN VBD DT NN LRB NNP POS NN RRB TO VB NN NNS CC VBD $ CD CD IN JJ NN . Rising commodity prices have helped revive Kazakhstan 's economy , which registered 7 % growth in 2010 . VBG NN NNS VBP VBN VB NNP POS NN , WDT VBD CD NN NN IN CD . Barring a dramatic decline in oil prices , strong growth is expected to continue in 2011 . VBG DT JJ NN IN NN NNS , JJ NN VBZ VBN TO VB IN CD . Despite solid macroeconomic indicators , the government realizes that its economy suffers from an overreliance on oil and extractive industries , the so-called ' Dutch disease . ' IN JJ JJ NNS , DT NN VBZ IN PRP$ NN VBZ IN DT NN IN NN CC JJ NNS , DT JJ `` JJ NN . `` In response , Kazakhstan has embarked on an ambitious diversification program , aimed at developing targeted sectors like transport , pharmaceuticals , telecommunications , petrochemicals and food processing . IN NN , NNP VBZ VBN IN DT JJ NN NN , VBN IN VBG JJ NNS IN NN , NNS , NNS , NNS CC NN NN . Lucayan Indians inhabited the islands when Christopher COLUMBUS first set foot in the New World on San Salvador in 1492 . JJ NNS VBD DT NNS WRB NNP NNP RB VBD NN IN DT NNP NNP IN NNP NNP IN CD . British settlement of the islands began in 1647 ; the islands became a colony in 1783 . JJ NN IN DT NNS VBD IN CD ; DT NNS VBD DT NN IN CD . Since attaining independence from the UK in 1973 , The Bahamas has prospered through tourism and international banking and investment management . IN VBG NN IN DT NNP IN CD , DT NNPS VBZ VBN IN NN CC JJ NN CC NN NN . Because of its geography , the country is a major transshipment point for illegal drugs , particularly shipments to the US and Europe , and its territory is used for smuggling illegal migrants into the US . IN IN PRP$ NN , DT NN VBZ DT JJ NN NN IN JJ NNS , RB NNS TO DT NNP CC NNP , CC PRP$ NN VBZ VBN IN VBG JJ NNS IN DT NNP . What is now Ecuador formed part of the northern Inca Empire until the Spanish conquest in 1533 . WP VBZ RB NNP VBD NN IN DT JJ NNP NNP IN DT JJ NN IN CD . Quito became a seat of Spanish colonial government in 1563 and part of the Viceroyalty of New Granada in 1717 . NNP VBD DT NN IN JJ JJ NN IN CD CC NN IN DT NNP IN NNP NNP IN CD . The territories of the Viceroyalty - New Granada ( Colombia ) , Venezuela , and Quito - gained their independence between 1819 and 1822 and formed a federation known as Gran Colombia . DT NNS IN DT NNP IN NNP NNP LRB NNP RRB , NNP , CC NNP : VBD PRP$ NN IN CD CC CD CC VBD DT NN VBN IN NNP NNP . When Quito withdrew in 1830 , the traditional name was changed in favor of the ' Republic of the Equator . ' WRB NNP VBD IN CD , DT JJ NN VBD VBN IN NN IN DT `` NNP IN DT NNP . `` Between 1904 and 1942 , Ecuador lost territories in a series of conflicts with its neighbors . IN CD CC CD , NNP VBD NNS IN DT NN IN NNS IN PRP$ NNS . A border war with Peru that flared in 1995 was resolved in 1999 . DT NN NN IN NNP WDT VBD IN CD VBD VBN IN CD . Although Ecuador marked 30 years of civilian governance in 2004 , the period was marred by political instability . IN NNP VBD CD NNS IN JJ NN IN CD , DT NN VBD VBN IN JJ NN . Protests in Quito contributed to the mid-term ouster of three of Ecuador 's last four democratically elected Presidents . NNS IN NNP VBD TO DT JJ NN IN CD IN NNP POS JJ CD RB VBN NNS . In September 2008 , voters approved a new constitution , Ecuador 's 20th since gaining independence . IN NNP CD , NNS VBD DT JJ NN , NNP POS JJ IN VBG NN . General elections , under the new constitutional framework , were held in April 2009 , and voters re-elected President Rafael CORREA . NNP NNS , IN DT JJ JJ NN , VBD VBN IN NNP CD , CC NNS VBD NNP NNP NNP . JUPITER ISSUED a proclamation to all the beasts of the forest and promised a royal reward to the one whose offspring should be deemed the handsomest . NNP VBD DT NN TO PDT DT NNS IN DT NN CC VBD DT JJ NN TO DT CD WP$ NN MD VB VBN DT JJS . The Monkey came with the rest and presented , with all a mother 's tenderness , a flat-nosed , hairless , ill-featured young Monkey as a candidate for the promised reward . DT NN VBD IN DT NN CC VBN , IN PDT DT NN POS NN , DT JJ , JJ , JJ JJ NN IN DT NN IN DT JJ NN . A general laugh saluted her on the presentation of her son . DT JJ NN VBD PRP IN DT NN IN PRP$ NN . She resolutely said , ' I know not whether Jupiter will allot the prize to my son , but this I do know , that he is at least in the eyes of me his mother , the dearest , handsomest , and most beautiful of all . ' PRP RB VBD , `` PRP VBP RB IN NNP MD VB DT NN TO PRP$ NN , CC DT PRP VBP VB , IN PRP VBZ IN JJS IN DT NNS IN PRP PRP$ NN , DT JJS , JJS , CC RBS JJ IN DT . `` Have you been following this steroid scandal ? This is first time in baseball history that the players have more additives in them than the hot dogs . VB PRP VBN VBG DT JJ NN . DT VBZ JJ NN IN NN NN IN DT NNS VBP JJR NNS IN PRP IN DT JJ NNS . Normal people believe that if it is n't broke , do n't fix it . JJ NNS VBP IN IN PRP VBZ RB RB , VBP RB VB PRP . Engineers believe that if it is n't broke , it does n't have enough features yet . NNS VBP IN IN PRP VBZ RB RB , PRP VBZ RB VB JJ NNS RB . At least 12 people have died in Haiti after heavy rains caused flooding around earthquake-devastated Port-au-Prince . IN JJS CD NNS VBP VBN IN NNP IN JJ NNS VBD VBG IN JJ NNP . The floods over the last several days were particularly damaging to tent cities where people have been living following the powerful earthquake in January that destroyed much of the capital . Water and earth crashed through low-lying areas , damaging structures and scattering objects in their paths . DT NNS IN DT JJ JJ NNS VBD RB JJ TO JJ NNS WRB NNS VBP VBN VBG VBG DT JJ NN IN NNP WDT VBD NN IN DT NN . NN CC NN VBD IN JJ NNS , JJ NNS CC VBG NNS IN PRP$ NNS . At least two children are believed to be among the dead . IN JJS CD NNS VBP VBN TO VB IN DT NN . Aid groups working on earthquake relief have been ferrying supplies to the flood victims . NN NNS VBG IN NN NN VBP VBN VBG NNS TO DT NN NNS . Experts have warned since the earthquake about the consequences of heavy rains on damaged areas . NNS VBP VBN IN DT NN IN DT NNS IN JJ NNS IN JJ NNS . The Manila-based Asian Development Bank says it will provide a $ 5,00,000 grant for a major highway project in northeastern China . DT JJ NNP NNP NNP VBZ PRP MD VB DT $ CD NN IN DT JJ NN NN IN JJ NNP . The money will be used to upgrade or build more than half of the 828-kilometer Jixi-Nehe highway , located in the province of Heilongjiang , bordered by Russia on the north and North Korea on the east . DT NN MD VB VBN TO VB CC VB JJR IN NN IN DT JJ JJ NN , VBN IN DT NN IN NNP , VBN IN NNP IN DT NN CC NNP NNP IN DT NN . The ADB says the road project will boost the province 's economy . DT NNP VBZ DT NN NN MD VB DT NN POS NN . Heilongjiang has the largest cultivated land area in China along with heavy industry and timber resources . NNP VBZ DT JJS JJ NN NN IN NNP IN IN JJ NN CC NN NNS . It is heavily dependent on foreign trade . PRP VBZ RB JJ IN JJ NN . The bank says inadequate transportation conditions in the province also hurt the rural poor by restricting their access to basic goods and services . DT NN VBZ JJ NN NNS IN DT NN RB VBD DT JJ NN IN VBG PRP$ NN TO JJ NNS CC NNS . The United Nations says fighting between armed militants and government troops has driven nearly 4,000 people from their homes in Congo 's eastern Ituri province . DT NNP NNP VBZ VBG IN JJ NNS CC NN NNS VBZ VBN RB CD NNS IN PRP$ NNS IN NNP POS JJ NNP NN . A spokesman for the U.N. peacekeeping mission in the region , Floruan Barbey , said the displaced people have taken shelter in a church and school in the town of Fataki , near the provincial capital Bunia . DT NN IN DT NNP NN NN IN DT NN , NNP NNP , VBD DT JJ NNS VBP VBN NN IN DT NN CC NN IN DT NN IN NNP , IN DT JJ NN NNP . The spokesman said the militants and government troops engaged in sporadic fighting this week . DT NN VBD DT NNS CC NN NNS VBD IN JJ NN DT NN . It was unclear if there were any casualties . PRP VBD JJ IN EX VBD DT NNS . He says the fighters are apparently loyal to rebel leader Peter Karim . PRP VBZ DT NNS VBP RB JJ TO JJ NN NNP NNP . Talks are underway between Karim and the government over how to demobilize his forces . NNS VBP JJ IN NNP CC DT NN IN WRB TO VB PRP$ NNS . Congo 's government is struggling to rebuild following a civil war in which some four million people died , mostly from hunger and disease . NNP POS NN VBZ VBG TO VB VBG DT JJ NN IN WDT DT CD CD NNS VBD , RB IN NN CC NN . The United Nations has about 17,000 troops in the DRC to assist the government and maintain peace . DT NNP NNP VBZ IN CD NNS IN DT NNP TO VB DT NN CC VB NN . The White House has rejected calls by opposition Democrats for an independent commission to probe allegations of detainee abuse at the U.S. detention facility at Guantanamo Bay , Cuba . DT NNP NNP VBZ VBN NNS IN NN NNS IN DT JJ NN TO VB NNS IN NN NN IN DT NNP NN NN IN NNP NNP , NNP . White House spokesman Scott McClellan told reporters Tuesday the Department of Defense is already probing such allegations . NNP NNP NN NNP NNP VBD NNS NNP DT NNP IN NNP VBZ RB VBG JJ NNS . On Tuesday , Congressional Democrats presented draft legislation that would create an independent commission , which they say would serve the national interest . IN NNP , NNP NNPS VBD NN NN WDT MD VB DT JJ NN , WDT PRP VBP MD VB DT JJ NN . Some lawmakers have called for closing down the Guantanamo prison , following recent reports by human rights groups of detainee abuse . DT NNS VBP VBN IN VBG RP DT NNP NN , VBG JJ NNS IN JJ NNS NNS IN NN NN . President Bush has not ruled out the possibility , but Vice President Dick Cheney said last week there are no plans to shut it down . NNP NNP VBZ RB VBN IN DT NN , CC NNP NNP NNP NNP VBD JJ NN EX VBP DT NNS TO VB PRP RP . Last month , the U.S. military said it found five instances of mishandling of the Koran , the Muslim holy book , at Guantanamo . JJ NN , DT NNP NN VBD PRP VBD CD NNS IN NN IN DT NNP , DT NNP JJ NN , IN NNP . It said guards were punished in two cases . PRP VBD NNS VBD VBN IN CD NNS . The All India Football Federation ( AIFF ) has appointed a new national team manager ahead of next month 's Asian Cup football tournament after Pradip Choudhury walked out , following reported differences with coach Bob Houghton . DT NNP NNP NNP NNP LRB NNP RRB VBZ VBN DT JJ JJ NN NN RB IN JJ NN POS NNP NNP NN NN IN NNP NNP VBD RP , VBG VBN NNS IN NN NNP NNP . Raul Carmo Fernandes was named as the replacement after Choudhury left the Indian training camp in Dubai , United Arab Emirates . NNP NNP NNP VBD VBN IN DT NN IN NNP VBD DT JJ NN NN IN NNP , NNP NNP NNPS . The loss of Choudhury , who was popular with players , has apparently negatively impacted the team . DT NN IN NNP , WP VBD JJ IN NNS , VBZ RB RB VBN DT NN . AIFF officials have announced they will travel to Dubai Wednesday in an attempt to boost morale . NNP NNS VBP VBN PRP MD VB TO NNP NNP IN DT NN TO VB NN . The team put out a statement saying it believed that Choudhury should have set aside his personal differences with the coach for the good of the team . DT NN VBD RP DT NN VBG PRP VBD IN NNP MD VB VBN RP PRP$ JJ NNS IN DT NN IN DT NN IN DT NN . India has been drawn into Group C at the Asian Cup -- where it will face Australia , South Korea and Bahrain . NNP VBZ VBN VBN IN NNP NNP IN DT NNP NNP : WRB PRP MD VB NNP , NNP NNP CC NNP . The tournament will be held in Doha from January 7 to 29 . DT NN MD VB VBN IN NNP IN NNP CD TO CD . At 17 , DeAndre Way became known around the world as Soulja Boy on the success of his number one hit , ' Crank That . ' IN CD , NNP NNP VBD VBN IN DT NN IN NNP NNP IN DT NN IN PRP$ NN CD NN , `` NNP NNP . `` The song was also number one for seven weeks on the iTunes digital download site in September 2007 . DT NN VBD RB NN CD IN CD NNS IN DT NNP JJ NN NN IN NNP CD . Despite the criticism from other rap stars like 50 Cent and Jay-Z , Soulja Boy says the numbers speak for themselves . IN DT NN IN JJ NN NNS IN NNP NNP CC NNP , NNP NNP VBZ DT NNS VBP IN PRP . Larry London caught up with Soulja Boy on tour in Washington . NNP NNP VBD RP IN NNP NNP IN NN IN NNP . The New York Times says a controversial government surveillance program has monitored a handful of purely domestic communications . DT NNP NNP NNP VBZ DT JJ NN NN NN VBZ VBN DT NN IN RB JJ NNS . Unidentified officials say the National Security Agency intercepted the communications apparently by accident . JJ NNS VBP DT NNP NNP NNP VBD DT NNS RB IN NN . The White House says President Bush 's order setting up the domestic surveillance program applied only to cases where one party on a call or e-mail message was outside the United States . DT NNP NNP VBZ NNP NNP POS NN VBG RP DT JJ NN NN VBD RB TO NNS WRB CD NN IN DT NN CC JJ NN VBD IN DT NNP NNPS . But telecommunications experts say with the globalized nature of communications networks , it is difficult to pinpoint exactly where a message originated from . CC NN NNS VBP IN DT JJ NN IN NNS NNS , PRP VBZ JJ TO VB RB WRB DT NN VBN IN . In a separate development , The Washington Post says a federal judge has resigned from the secret court that oversees government surveillance in intelligence cases , apparently due to deep concerns that the administration 's actions may have tainted the court 's work . IN DT JJ NN , DT NNP NNP VBZ DT JJ NN VBZ VBN IN DT JJ NN WDT VBZ NN NN IN NN NNS , RB JJ TO JJ NNS IN DT NN POS NNS MD VB VBN DT NN POS NN . World oil prices continued declining Monday as members of the Organization of Petroleum Exporting Countries said they would consider raising oil output quotas to continue easing prices . NNP NN NNS VBD VBG NNP IN NNS IN DT NNP IN NNP NNP NNPS VBD PRP MD VB VBG NN NN NNS TO VB VBG NNS . Crude oil for May delivery dropped as low as $ 52.1 a barrel in New York trading on Monday . JJ NN IN NNP NN VBD RB JJ IN $ CD DT NN IN NNP NNP NN IN NNP . That is down sharply from a week ago when crude oil futures hit a record high price of $ 58.28 a barrel . DT VBZ RB RB IN DT NN RB WRB JJ NN NNS VBD DT NN JJ NN IN $ CD DT NN . The decline follows last week 's U.S. government report showing an increasing supply of crude oil in the U.S. market , and growing refinery operations to turn out gasoline . DT NN VBZ JJ NN POS NNP NN NN VBG DT VBG NN IN JJ NN IN DT NNP NN , CC VBG NN NNS TO VB RP NN . Meantime , U.S. retail gasoline prices hit a record high average of $ 2.29 a gallon or about 60 cents a liter . RB , NNP JJ NN NNS VBD DT NN JJ NN IN $ CD DT NN CC RB CD NNS DT NN . The lingering high prices are thought to reflect the time it takes to refine crude oil into gasoline . DT VBG JJ NNS VBP VBN TO VB DT NN PRP VBZ TO VB JJ NN IN NN . Japan 's foreign minister says his country and North Korea will resume bilateral talks on November 3 in Beijing . NNP POS JJ NN VBZ PRP$ NN CC NNP NNP MD VB JJ NNS IN NNP CD IN NNP . Japanese Foreign Minister Nobutaka Machimura said Wednesday the talks will include North Korea 's nuclear weapons program and the abductee issue . JJ NNP NNP NNP NNP VBD NNP DT NNS MD VB NNP NNP POS JJ NNS NN CC DT JJ NN . The North has admited abducting 13 Japanese citizens to help train North Korean spies . DT NNP VBZ VBN VBG CD JJ NNS TO VB VB JJ JJ NNS . Five of the abductees have returned to Japan . CD IN DT NNS VBP VBN TO NNP . Pyongyang says the other eight are dead . NNP VBZ DT JJ CD VBP JJ . Bilateral talks at government level have been held up since late last year when Japan accused North Korea of lying over the fate of the abductees . NNP NNS IN NN NN VBP VBN VBN RP IN JJ JJ NN WRB NNP VBD NNP NNP IN VBG IN DT NN IN DT NNS . Mr. Machimura said he expects North Korea to also bring up the issue of reparation for Japan 's colonial rule of Korea , from 1910 to 1945 . NNP NNP VBD PRP VBZ NNP NNP TO RB VB RP DT NN IN NN IN NNP POS JJ NN IN NNP , IN CD TO CD . Hundreds of people marched through downtown Hong Kong Sunday to protest Japan 's wartime atrocities . NNS IN NNS VBD IN NN NNP NNP NNP TO VB NNP POS NN NNS . Demonstrators set out from an urban park and wound their way through some of the city 's busiest streets to government headquarters in the central business district . NNS VBD RP IN DT JJ NN CC VBD PRP$ NN IN DT IN DT NN POS JJS NNS TO NN NNS IN DT JJ NN NN . They carried banners denouncing Japanese militarism and calling for Japan 's withdrawal from disputed islands that are also claimed by China . PRP VBD NNS VBG JJ NN CC NN IN NNP POS NN IN JJ NNS WDT VBP RB VBN IN NNP . Unlike some of the protests in mainland China in the past weeks , the march in Hong Kong was peaceful . IN DT IN DT NNS IN JJ NNP IN DT JJ NNS , DT NN IN NNP NNP VBD JJ . Organizers said the march was meant to protest Japanese militarism and not the Japanese people . NNS VBD DT NN VBD VBN TO VB JJ NN CC RB DT JJ NNS . Many Chinese feel that Tokyo is not contrite enough about its wartime record in China , when Japanese troops slaughtered tens of thousands of Chinese . JJ JJ NN IN NNP VBZ RB JJ RB IN PRP$ NN NN IN NNP , WRB JJ NNS VBD NNS IN NNS IN NNS . Finance ministers and central bank governors of the G-7 countries have called on the World Trade Organization to make significant progress toward a global trade agreement at a summit in Hong Kong later this month . NNP NNS CC JJ NN NNS IN DT NN NNS VBP VBN IN DT NNP NNP NNP TO VB JJ NN IN DT JJ NN NN IN DT NN IN NNP NNP RB DT NN . In a statement at the conclusion of two days of talks in London , officials from the world 's seven leading industrialized countries said the WTO meeting will be a critical step in seeking agreement on a comprehensive package for developing countries . IN DT NN IN DT NN IN CD NNS IN NNS IN NNP , NNS IN DT NN POS CD JJ JJ NNS VBD DT NNP NN MD VB DT JJ NN IN VBG NN IN DT JJ NN IN VBG NNS . The G-7 countries are Britain , Canada , France , Germany , Japan , Italy , and the United States . DT NN NNS VBP NNP , NNP , NNP , NNP , NNP , NNP , CC DT NNP NNPS . Trade negotiators are working on a binding treaty that would expand the global economy by lowering trade barriers across all sectors . NNP NNS VBP VBG IN DT NN NN WDT MD VB DT JJ NN IN VBG NN NNS IN DT NNS . Disputes over agricultural subsidies are the major stumbling block in the current round launched in Doha , Qatar in 2001 . NNS IN JJ NNS VBP DT JJ NN NN IN DT JJ NN VBN IN NNP , NNP IN CD . The London meeting expressed hope for a final accord by the end of next year . DT NNP NN VBD NN IN DT JJ NN IN DT NN IN JJ NN . The U.S. military in Afghanistan says a U.S. Marine and an American solider were killed in separate insurgent attacks Monday . DT NNP NN IN NNP VBZ DT NNP NN CC DT JJ NN VBD VBN IN JJ JJ NNS NNP . The military says the marine was killed when suspected Taleban insurgents fired rocket-propelled grenades and mortars at a U.S. base near the eastern city of Asadabad . DT JJ VBZ DT NN VBD VBN WRB VBN NNP NNS VBD JJ NNS CC NNS IN DT NNP NN IN DT JJ NN IN NNP . The military says the solider was killed when his unit came under similar attack near the southern city of Kandahar . DT JJ VBZ DT NN VBD VBN WRB PRP$ NN VBD IN JJ NN IN DT JJ NN IN NNP . The attacks occured just a week after Afghanistan held landmark general elections . DT NNS VBD RB DT NN IN NNP VBD JJ JJ NNS . The election took place without any major violence despite Taleban threats to disrupt the vote . DT NN VBD NN IN DT JJ NN IN NNP NNS TO VB DT NN . Iraqi police say insurgents have killed at least 40 people and wounded dozens more in attacks just four days before a national referendum on a new constitution . JJ NNS VBP NNS VBP VBN IN JJS CD NNS CC VBD NNS RBR IN NNS RB CD NNS IN DT JJ NN IN DT JJ NN . In the deadliest attack Tuesday , a suicide car bomber struck a crowded market in the town of Tal Afar , near the Syrian border , killing at least 30 people and wounding 45 others . IN DT JJS NN NNP , DT NN NN NN VBD DT JJ NN IN DT NN IN NNP NNP , IN DT JJ NN , VBG IN JJS CD NNS CC VBG CD NNS . In Kirkuk , at least three people were killed in a drive-by shooting , and in Baghdad a suicide car bomber killed at least seven people at an Iraqi army checkpoint . IN NNP , IN JJS CD NNS VBD VBN IN DT JJ NN , CC IN NNP DT NN NN NN VBD IN JJS CD NNS IN DT JJ NN NN . U.S. and Iraqi officials have repeatedly warned that insurgents - many of whom are Sunni Arabs - will step up attacks to undermine Saturday 's constitutional referendum . NNP CC JJ NNS VBP RB VBN IN NNS IN NN IN WP VBP NNP NNS : MD VB RP NNS TO VB NNP POS JJ NN . Shi'ite and Kurdish political leaders have been pursuing last-minute negotiations with Sunni political leaders who are concerned their community will be sidelined under the constitution 's proposed federal system . NNP CC NNP JJ NNS VBP VBN VBG JJ NNS IN NNP JJ NNS WP VBP VBN PRP$ NN MD VB VBN IN DT NN POS VBN JJ NN . James Brown , revered as the ' Godfather of Soul ' , will undergo surgery for prostate cancer next week . NNP NNP , VBN IN DT `` NNP IN NNP `` , MD VB NN IN NN NN JJ NN . The 71-year-old musician said in a statement he has overcome a lot of things in his life , and he will overcome this as well . DT JJ NN VBD IN DT NN PRP VBZ VBN DT NN IN NNS IN PRP$ NN , CC PRP MD VB DT RB RB . James Brown finished a two-week tour in Canada earlier this week . NNP NNP VBD DT JJ NN IN NNP RBR DT NN . In January , he is set to release an autobiography entitled I Feel Good : IN NNP , PRP VBZ VBN TO VB DT NN VBD PRP NNP NNP : A Memoir of a Life of Soul . DT NNP IN DT NN IN NNP . The influential soul , rock , rap and funk musician has made more than 50 albums , selling millions worldwide , since he broke onto the scene with ' Please , Please , Please ' in 1956 . DT JJ NN , NN , NN CC NN NN VBZ VBN JJR IN CD NNS , VBG NNS JJ , IN PRP VBD IN DT NN IN `` NNP , NNP , NNP `` IN CD . Egypt has begun the military trial of at least 33 members of the banned opposition group , the Muslim Brotherhood . NNP VBZ VBN DT JJ NN IN IN JJS CD NNS IN DT VBN NN NN , DT NNP NNP . Defense lawyers boycotted Thursday 's opening session because they say they were not informed that the trial was starting . NN NNS VBD NNP POS NN NN IN PRP VBP PRP VBD RB VBN IN DT NN VBD VBG . The charges against the Muslim Brotherhood members are related to money laundering and terrorism . DT NNS IN DT NNP NNP NNS VBP VBN TO NN NN CC NN . The defendants include the Brotherhood 's third highest ranking member , Khayrat el-Shater , who was arrested in December during a crackdown on the organization . DT NNS VBP DT NNP POS JJ JJS JJ NN , NNP NNP , WP VBD VBN IN NNP IN DT NN IN DT NN . The Muslim Brotherhood is officially banned in Egypt . DT NNP NNP VBZ RB VBN IN NNP . But the group won nearly one-fifth of the seats in the lower house of parliament in 2005 by fielding candidates as independents . CC DT NN VBD RB JJ IN DT NNS IN DT JJR NN IN NN IN CD IN VBG NNS IN NNS . A published report says U.S. Defense Secretary Donald Rumsfeld has created an espionage unit in the Pentagon that gives him wide authority over spy operations abroad . DT JJ NN VBZ NNP NNP NNP NNP NNP VBZ VBN DT NN NN IN DT NNP WDT VBZ PRP JJ NN IN NN NNS RB . The Washington Post says the Strategic Support Branch reaches into what has normally been Central Intelligence Agency territory . DT NNP NNP VBZ DT NNP NNP NNP VBZ IN WP VBZ RB VBN NNP NNP NNP NN . The report in Sunday 's newspaper says the unit has been secretly operating for two years in Iraq , Afghanistan and elsewhere . DT NN IN NNP POS NN VBZ DT NN VBZ VBN RB VBG IN CD NNS IN NNP , NNP CC RB . A Defense Department statement released Sunday denies the existence of such a unit , but says it is consulting with other agencies in the U.S. intelligence community , including the CIA , to improve human intelligence capability . DT NNP NNP NN VBN NNP VBZ DT NN IN JJ DT NN , CC VBZ PRP VBZ VBG IN JJ NNS IN DT NNP NN NN , VBG DT NNP , TO VB JJ NN NN . The Post says its information comes from interviews with participants , and documents obtained by the newspaper . DT NNP VBZ PRP$ NN VBZ IN NNS IN NNS , CC NNS VBN IN DT NN . The unit is said to deploy special operations forces and experts such as linguists and interrogators into both friendly and unfriendly nations . DT NN VBZ VBN TO VB JJ NNS NNS CC NNS JJ IN NNS CC NNS IN DT JJ CC JJ NNS . The man accused of masterminding Rwanda 's 1994 genocide says the accusation a malicious attempt to destroy his name . DT NN VBN IN VBG NNP POS CD NN VBZ DT NN DT JJ NN TO VB PRP$ NN . Colonel Theoneste Bagosora , the former director of Rwanda 's Defense Ministry , began testifying Monday before a United Nations war crimes court in Tanzania . NNP NNP NNP , DT JJ NN IN NNP POS NNP NNP , VBD VBG NNP IN DT NNP NNP NN NNS NN IN NNP . He denied planning the government-sponsored killing of some 8,00,000 minority Tutsis and their Hutu sympathizers . PRP VBD VBG DT JJ NN IN DT CD NN NN CC PRP$ NNP NNS . The prosecution says Colonel Bagosora ordered military commanders to start the killings shortly after President Juvenal Habyarimana was killed in a plane crash in April of 1994 . DT NN VBZ NNP NNP VBD JJ NNS TO VB DT NNS RB IN NNP NNP NNP VBD VBN IN DT NN NN IN NNP IN CD . Colonel Bagosora is being tried with three military codefendants on charges of genocide and crimes against humanity . NNP NNP VBZ VBG VBN IN CD JJ NNS IN NNS IN NN CC NNS IN NN . The U.N. Security Council established the International Criminal Tribunal for Rwanda in November , 1994 . DT NNP NNP NNP VBD DT NNP NNP NNP IN NNP IN NNP , CD . It has so far convicted 22 people and acquitted three others . PRP VBZ RB RB VBN CD NNS CC VBN CD NNS . Oil futures are again breaking records after surpassing $ 110 a barrel on March 13 in New York . NN NNS VBP RB VBG NNS IN VBG $ CD DT NN IN NNP CD IN NNP NNP . Despite evidence to suggest that high fuel prices are not justified -- weakening demand and growing supplies have been unable to stop skyrocketing prices . IN NN TO VB IN JJ NN NNS VBP RB JJ : VBG NN CC VBG NNS VBP VBN JJ TO VB VBG NNS . With gasoline prices expected to rise even more in the next few months , consumers are starting to lose patience . IN NN NNS VBN TO VB RB RBR IN DT JJ JJ NNS , NNS VBP VBG TO VB NN . And as VOA 's Mil Arcega reports , it is not just average motorists who are hurting . CC IN NNP POS NNP NNP VBZ , PRP VBZ RB RB JJ NNS WP VBP VBG . President Bush will deliver a speech Tuesday outlining the administration 's goals for Iraq in the coming year . NNP NNP MD VB DT NN NNP VBG DT NN POS NNS IN NNP IN DT JJ NN . In a speech to a gathering of war veterans in Washington , Mr. Bush will discuss the ongoing process of rebuilding Iraq 's economy , establishing democracy and training Iraqi security forces . IN DT NN TO DT NN IN NN NNS IN NNP , NNP NNP MD VB DT JJ NN IN VBG NNP POS NN , VBG NN CC NN JJ NN NNS . White House spokesman Scott McClellan says the president will talk about how the administration has ' learned from experience ' in all of these areas . NNP NNP NN NNP NNP VBZ DT NN MD VB IN WRB DT NN VBZ `` VBN IN NN `` IN DT IN DT NNS . He also says Mr. Bush will call on the international community to fulfill its financial pledges to Iraq . PRP RB VBZ NNP NNP MD VB IN DT JJ NN TO VB PRP$ JJ NNS TO NNP . The president gave a series of speeches late last year aimed at restoring public confidence in his handling of Iraq , which has plummeted due to the ongoing violence and instability in the country . DT NN VBD DT NN IN NNS RB JJ NN VBN IN VBG JJ NN IN PRP$ NN IN NNP , WDT VBZ VBN JJ TO DT JJ NN CC NN IN DT NN . Mr. McClellan notes that 2006 will be ' a time of more testing and sacrifice . ' NNP NNP VBZ IN CD MD VB `` DT NN IN JJR NN CC NN . `` The Venezuelan government has taken over the Bancoro bank , the 13th financial institution the government has seized in the last year . DT JJ NN VBZ VBN IN DT NNP NN , DT JJ JJ NN DT NN VBZ VBN IN DT JJ NN . Venezuelan Finance Minister Jorge Giordani , speaking Friday in Caracas , said that the government decided to intervene in the operations of Bancoro because of liquidity problems and significant financial losses . JJ NNP NNP NNP NNP , VBG NNP IN NNP , VBD IN DT NN VBD TO VB IN DT NNS IN NNP IN IN NN NNS CC JJ JJ NNS . Venezuelan President Hugo Chavez says he will nationalize any bank that fails to meet government lending guidelines or is in financial trouble . JJ NNP NNP NNP VBZ PRP MD VB DT NN WDT VBZ TO VB NN NN NNS CC VBZ IN JJ NN . The government began taking over small and midsized banks in November of 2009 , citing irregularities . DT NN VBD VBG RP JJ CC JJ NNS IN NNP IN CD , VBG NNS . In recent years , Mr. Chavez has nationalized firms in many sectors , including petroleum , communications , electricity , agriculture and banking . IN JJ NNS , NNP NNP VBZ VBN NNS IN JJ NNS , VBG NN , NNS , NN , NN CC NN . Critics say he is trying to model Venezuela on communist-led Cuba , but Mr. Chavez has said he is working to improve the lives of the country 's impoverished majority . NNS VBP PRP VBZ VBG TO VB NNP IN JJ NNP , CC NNP NNP VBZ VBN PRP VBZ VBG TO VB DT NNS IN DT NN POS JJ NN . A Kuwaiti oil and gas producer says it has discovered nearly 142 billion cubic meters of recoverable natural gas in the southern U.S. state of Texas . DT JJ NN CC NN NN VBZ PRP VBZ VBN RB CD CD JJ NNS IN JJ JJ NN IN DT JJ NNP NN IN NNP . The company , Aref Energy , said Monday that its U.S. project manager is Texas-based energy giant Halliburton . DT NN , NNP NNP , VBD NNP IN PRP$ NNP NN NN VBZ JJ NN NN NNP . Aref Energy holds a 50 percent share in the operation in south-central Texas . NNP NNP VBZ DT CD NN NN IN DT NN IN JJ NNP . The company has not named its partners in the operation . DT NN VBZ RB VBN PRP$ NNS IN DT NN . Halliburton says it is taking measures to start gas production operations early next year . NNP VBZ PRP VBZ VBG NNS TO VB NN NN NNS RB JJ NN . Aref says a survey by the joint venture indicates a total of 538 billion cubic meters of natural gas at the Texas site . NNP VBZ DT NN IN DT JJ NN VBZ DT NN IN CD CD JJ NNS IN JJ NN IN DT NNP NN . Pakistan 's opposition has held a ' black day ' of protests across the country after President Pervez Musharraf 's decision to retain the powerful post of army chief . NNP POS NN VBZ VBN DT `` JJ NN `` IN NNS IN DT NN IN NNP NNP NNP POS NN TO VB DT JJ NN IN NN NN . Members of an Islamic alliance and other parties took to the streets Saturday in all major cities and towns , where speakers denounced General Musharraf for breaking his promise . NNS IN DT JJ NN CC JJ NNS VBD TO DT NNS NNP IN DT JJ NNS CC NNS , WRB NNS VBD NNP NNP IN VBG PRP$ NN . The rallies came two days after the Pakistani leader said in a televised address he had decided to retain both portfolios for the sake of the economic and political stability of the country . DT NNS VBD CD NNS IN DT JJ NN VBD IN DT JJ NN PRP VBD VBN TO VB DT NNS IN DT NN IN DT JJ CC JJ NN IN DT NN . General Musharraf , who seized power in a bloodless coup in 1999 , has angered the religious right by going back on a pledge he made to win its support for constitutional amendments that gave him sweeping powers . NNP NNP , WP VBD NN IN DT JJ NN IN CD , VBZ VBN DT JJ NN IN VBG RB IN DT NN PRP VBD TO VB PRP$ NN IN JJ NNS WDT VBD PRP JJ NNS . Italian President Carlo Azeglio Ciampi is holding formal talks with political leaders Thursday , the first step in forming a new government . JJ NNP NNP NNP NNP VBZ VBG JJ NNS IN JJ NNS NNP , DT JJ NN IN VBG DT JJ NN . Prime Minister Silvio Berlusconi resigned Wednesday , two weeks after his center-right coalition suffered a crushing defeat in regional elections , losing 11 of 13 regions . NNP NNP NNP NNP VBD NNP , CD NNS IN PRP$ JJ NN VBD DT VBG NN IN JJ NNS , VBG CD IN CD NNS . One party pulled out of the coalition last week and another has threatened to also drop out . CD NN VBD IN IN DT NN JJ NN CC DT VBZ VBN TO RB VB RP . The president is expected later this week to ask Mr. Berlusconi to form a new cabinet . DT NN VBZ VBN RB DT NN TO VB NNP NNP TO VB DT JJ NN . Earlier , the prime minister told parliament he is stepping down with plans to form a new and stronger coalition . RB , DT JJ NN VBD NN PRP VBZ VBG RP IN NNS TO VB DT JJ CC JJ NN . He praised the outgoing government for what he called its ' secure leadership ' over the past four years which he says increased Italian prestige on the world stage . PRP VBD DT JJ NN IN WP PRP VBD PRP$ `` JJ NN `` IN DT JJ CD NNS WDT PRP VBZ VBN JJ NN IN DT NN NN . Indonesia says it will carry out a third nationwide polio vaccination drive in November to curb the spread of the crippling virus in children . NNP VBZ PRP MD VB RP DT JJ JJ NN NN NN IN NNP TO VB DT NN IN DT JJ NN IN NNS . Health Minister Siti Fadilah Supari said Tuesday the next round of free vaccinations will be held November 27 . NNP NNP NNP NNP NNP VBD NNP DT JJ NN IN JJ NNS MD VB VBN NNP CD . She said about 97 percent of children under five years of age were immunized during two earlier drives . PRP VBD IN CD NN IN NNS IN CD NNS IN NN VBD VBN IN CD JJR NNS . Indonesia is battling its first polio outbreak in a decade . NNP VBZ VBG PRP$ JJ NN NN IN DT NN . About 264 children have been diagnosed with the waterborne virus since it was detected in March . IN CD NNS VBP VBN VBN IN DT JJ NN IN PRP VBD VBN IN NNP . Officials today said a child in tsunami-devastated Aceh province , where thousands remain in refugee camps , is among the latest to develop polio . NNS NN VBD DT NN IN JJ NNP NN , WRB NNS VBP IN NN NNS , VBZ IN DT JJS TO VB NN . Health experts are concerned that the polio virus could spread from Indonesia to other parts of Southeast Asia . NNP NNS VBP VBN IN DT NN NN MD VB IN NNP TO JJ NNS IN NNP NNP . A British soldier facing court martial in Britain has pleaded guilty to committing the war crime of treating detainees inhumanely while serving in Iraq . DT JJ NN VBG NN NN IN NNP VBZ VBN JJ TO VBG DT NN NN IN VBG NNS RB IN VBG IN NNP . Corporal Donald Payne entered his plea today on a military base southwest of London . NNP NNP NNP VBD PRP$ NN NN IN DT JJ NN NN IN NNP . He is one of seven British soldiers charged in the 2003 death of an Iraqi hotel receptionist held in British custody in the southern Iraqi city of Basra . PRP VBZ CD IN CD JJ NNS VBN IN DT CD NN IN DT JJ NN NN VBN IN JJ NN IN DT JJ JJ NN IN NNP . The remaining six defendants pleaded not guilty to all charges . DT VBG CD NNS VBD RB JJ TO DT NNS . Authorities say the receptionist sustained more than 90 injuries . NNS VBP DT NN VBD JJR IN CD NNS . A second detainee was described as so badly beaten that he nearly died of kidney failure . DT JJ NN VBD VBN IN RB RB VBN IN PRP RB VBD IN NN NN . Corporal Payne has pleaded not guilty to the more serious charges of manslaughter and obstructing justice . NNP NNP VBZ VBN RB JJ TO DT RBR JJ NNS IN NN CC VBG NN . A military prosecutor told the tribunal today Tuesday his case will show systematic abuse and unacceptable violence against prisoners . DT JJ NN VBD DT NN NN NNP PRP$ NN MD VB JJ NN CC JJ NN IN NNS . The trial is expected to last at least four months . DT NN VBZ VBN TO VB IN JJS CD NNS . Mullah Mohammad Omar , the Taleban leader who fled to Pakistan after U.S.-led forces routed his fighters in Afghanistan , has resurfaced with a message asking all Muslims to join his fight . NNP NNP NNP , DT NNP NN WP VBD TO NNP IN JJ NNS VBD PRP$ NNS IN NNP , VBZ VBN IN DT NN VBG DT NNS TO VB PRP$ NN . Mullah Omar dropped out of sight in late 2001 , but he is believed to be in hiding somewhere near the Afghan-Pakistani border . NNP NNP VBD IN IN NN IN JJ CD , CC PRP VBZ VBN TO VB IN VBG RB IN DT JJ NN . In a message distributed during the past several days in the southern Afghan city of Kandahar , his former stronghold , the Taleban leader said his forces are intensifying their fight against those whom he called foreign occupiers of their homeland . IN DT NN VBN IN DT JJ JJ NNS IN DT JJ JJ NN IN NNP , PRP$ JJ NN , DT NNP NN VBD PRP$ NNS VBP VBG PRP$ NN IN DT WP PRP VBD JJ NNS IN PRP$ NN . Football 's ( soccer 's ) world governing body FIFA has fined the Mexican football federation after two of its players were expelled from last month 's Confederations Cup in Germany following positive doping tests . NNP POS LRB NN POS RRB NN VBG NN NNP VBZ VBN DT JJ NN NN IN CD IN PRP$ NNS VBD VBN IN JJ NN POS NNPS NNP IN NNP VBG JJ NN NNS . In a statement Wednesday , FIFA said it fined the Mexican Federation more than $ 5,83,000 after Aaron Galindo and Salvador Carmona tested positive for the steroid nandrolone . IN DT NN NNP , NNP VBD PRP VBD DT JJ NNP JJR IN $ CD IN NNP NNP CC NNP NNP VBD JJ IN DT JJ NN . The Mexican Federation tested the players before the tournament , which began on June 15 . DT JJ NNP VBD DT NNS IN DT NN , WDT VBD IN NNP CD . However , the men were not expelled until June 22 , after they played in Mexico 's 02-Jan victory over Japan and 1-0 win over Brazil . RB , DT NNS VBD RB VBN IN NNP CD , IN PRP VBD IN NNP POS JJ NN IN NNP CC JJ NN IN NNP . Mexico lost to Argentina on penalties in the tournament semi-final . NNP VBD TO NNP IN NNS IN DT NN JJ . Pakistani officials say a roadside bomb killed seven Pakistani soldiers in the northwest Saturday , as the army pushed forward with its offensive against Taliban militants . JJ NNS VBP DT NN NN VBD CD JJ NNS IN DT JJ NNP , IN DT NN VBD RB IN PRP$ NN IN NNP NNS . Officials say the bomb attack occurred in the Khyber tribal area , home to the Khyber Pass , the main route for moving supplies to international forces fighting in Afghanistan . NNS VBP DT NN NN VBD IN DT NNP JJ NN , NN TO DT NNP NNP , DT JJ NN IN VBG NNS TO JJ NNS VBG IN NNP . The attack came as Pakistani warplanes bombed Taliban bases in the tribal regions . DT NN VBD IN JJ NNS VBD NNP NNS IN DT JJ NNS . The army said troops killed 33 militants in the latest operations . DT NN VBD NNS VBD CD NNS IN DT JJS NNS . It said forces are closing in on key Taliban strongholds in the South Waziristan region , where it launched its offensive two weeks ago . PRP VBD NNS VBP VBG IN IN JJ NNP NNS IN DT NNP NNP NN , WRB PRP VBD PRP$ NN CD NNS RB . The military 's latest report comes a day after U.S. Secretary of State Hillary Clinton ended her confrontational visit to Pakistan . DT NN POS JJS NN VBZ DT NN IN NNP NNP IN NNP NNP NNP VBD PRP$ JJ NN TO NNP . During her three-day trip , Clinton questioned why the country has not captured al-Qaida leaders , saying ' somebody , somewhere in Pakistan ' must know where they are . IN PRP$ JJ NN , NNP VBD WRB DT NN VBZ RB VBN NNP NNS , VBG `` DT , RB IN NNP `` MD VB WRB PRP VBP . African leaders are mourning Pope John Paul , while praising his teachings and his leadership in the significant growth of the church on the African continent . JJ NNS VBP VBG NNP NNP NNP , IN VBG PRP$ NNS CC PRP$ NN IN DT JJ NN IN DT NN IN DT JJ NN . South Africa 's President Thabo Mbeki said the pontiff 's guidance would continue to inspire people of all faiths and that he had strengthened the moral fiber of the world . NNP NNP POS NNP NNP NNP VBD DT NN POS NN MD VB TO VB NNS IN DT NNS CC IN PRP VBD VBN DT JJ NN IN DT NN . Mr. Mbeki thanked John Paul for his support in the development and rebirth of Africa . NNP NNP VBD NNP NNP IN PRP$ NN IN DT NN CC NN IN NNP . Nigerian President Olusegun Obasanjo praised the pope for advocating religious tolerance and remembered his unwavering support for democracy while Nigeria fought against dictatorship in the 1990s . JJ NNP NNP NNP VBD DT NN IN VBG JJ NN CC VBD PRP$ JJ NN IN NN IN NNP VBD IN NN IN DT NNS . Nigeria has 20 million Catholics , the most of any African nation . NNP VBZ CD CD NNPS , DT JJS IN DT JJ NN . Nigerian Cardinal Francis Arinze has been mentioned as a possible successor as pope , although analysts say there is no clear cut favorite . JJ NNP NNP NNP VBZ VBN VBN IN DT JJ NN IN NN , IN NNS VBP EX VBZ DT JJ NN NN . Hurricane Paula has now weakened into a tropical storm , as it continues to dump heavy rain along Cuba 's northern coast . NNP NNP VBZ RB VBN IN DT JJ NN , IN PRP VBZ TO VB JJ NN IN NNP POS JJ NN . The storm , with maximum sustained winds of 105 kilometers per hour , moved slowly ( 16 kilometers per hour ) Thursday over Cuba 's tobacco fields as it headed in a more easterly direction . DT NN , IN JJ JJ NNS IN CD NNS IN NN , VBD RB LRB CD NNS IN NN RRB NNP IN NNP POS NN NNS IN PRP VBD IN DT JJR JJ NN . At last report ( 1800 UTC ) , the U.S. National Hurricane Center said Paula was centered 115 kilometers west of Havana . IN JJ NN LRB CD NNP RRB , DT NNP NNP NNP NNP VBD NNP VBD VBN CD NNS NN IN NNP . It said the storm could weaken further and be classified as a tropical depression by Friday . PRP VBD DT NN MD VB JJ CC VB VBN IN DT JJ NN IN NNP . Heavy rain could fall in parts of Cuba , with up to 25 centimeters in the western and central regions . JJ NN MD VB IN NNS IN NNP , IN RB TO CD NNS IN DT JJ CC JJ NNS . Forecasters posted a tropical storm watch for parts of the Florida Keys , a chain of islands off southern Florida . NNS VBD DT JJ NN NN IN NNS IN DT NNP NNP , DT NN IN NNS IN JJ NNP . Ukraine 's opposition has pulled out of talks with Prime Minister Viktor Yanukovych on ending the country 's political crisis . NNP POS NN VBZ VBN IN IN NNS IN NNP NNP NNP NNP IN VBG DT NN POS JJ NN . The announcement came amid continued opposition protests over charges of widespread fraud after Mr. Yanukovych was declared the winner of the November 21 vote . DT NN VBD IN JJ NN NNS IN NNS IN JJ NN IN NNP NNP VBD VBN DT NN IN DT NNP CD NN . Opposition candidate Viktor Yushchenko says the vote was rigged and is challenging the results in Ukraine 's Supreme Court , which could order a new election . NN NN NNP NNP VBZ DT NN VBD VBN CC VBZ VBG DT NNS IN NNP POS NNP NNP , WDT MD VB DT JJ NN . Talks collapsed Tuesday when the pro-western Mr. Yushchenko rejected an offer to become the new prime minister in a Yanukovych presidency . NNS VBD NNP WRB DT JJ NNP NNP VBD DT NN TO VB DT JJ JJ NN IN DT NNP NN . The disputed election is threatening to split Ukraine apart . DT JJ NN VBZ VBG TO VB NNP RB . Lawmakers in pro-Russian eastern Ukraine are threatening to declare autonomy if Mr. Yanukovych does not become president . NNS IN JJ JJ NNP VBP VBG TO VB NN IN NNP NNP VBZ RB VB NN . European leaders are converging on Ukraine to mediate . JJ NNS VBP VBG IN NNP TO VB . They include European Union foreign policy chief Javier Solana and Polish President Aleksander Kwasniewski . PRP VBP NNP NNP JJ NN NN NNP NNP CC JJ NNP NNP NNP . President Bush has said the will of the Ukrainian people must prevail . NNP NNP VBZ VBN DT NN IN DT JJ NNS MD VB . Indonesian health officials say their tests show two women from the same area have been infected by the bird-flu virus . JJ NN NNS VBP PRP$ NNS VBP CD NNS IN DT JJ NN VBP VBN VBN IN DT NN NN . The two patients , both from a town just east of Indonesia 's capital , Jakarta , are being treated at a hospital there . DT CD NNS , DT IN DT NN RB RB IN NNP POS NN , NNP , VBP VBG VBN IN DT NN RB . The World Health Organization has not confirmed the results yet . DT NNP NNP NNP VBZ RB VBN DT NNS RB . So far , 23 people have been confirmed as having bird flu in Indonesia . RB RB , CD NNS VBP VBN VBN IN VBG NN NN IN NNP . Seven people who contracted the deadly H5N1 strain of the virus have died . CD NNS WP VBD DT JJ NNP NN IN DT NN VBP VBN . Elsewhere , Africa 's first outbreak of the H5N1 virus strain was confirmed in Nigeria Wednesday . RB , NNP POS JJ NN IN DT NNP NN NN VBD VBN IN NNP NNP . The ( Paris-based ) World Organization for Animal Health says the virus killed 40,000 chickens on a farm in Kaduna state . DT LRB JJ RRB NNP NNP IN NNP NNP VBZ DT NN VBD CD NNS IN DT NN IN NNP NN . No human cases of bird flu have been reported in the West African nation . DT JJ NNS IN NN NN VBP VBN VBN IN DT JJ JJ NN . Avian flu has killed 88 people in southeast Asia , China , and Turkey since 2003 . JJ NN VBZ VBN CD NNS IN JJ NNP , NNP , CC NNP IN CD . Officials with the U.N. World Food Program , WFP , say a ship carrying food aid for Somalian tsunami victims has been hijacked and the ship 's crew taken hostage . NNS IN DT NNP NNP NNP NNP , NNP , VBP DT NN VBG NN NN IN JJ NN NNS VBZ VBN VBN CC DT NN POS NN VBN NN . The WFP issued a statement early Thursday , saying unidentified pirates boarded the freighter MV Semlow off the coast of Somalia earlier this week . DT NNP VBD DT NN RB NNP , VBG JJ NNS VBD DT NN NNP NNP IN DT NN IN NNP RBR DT NN . The ship was carrying 850 metric tons of rice donated by Japan and Germany . DT NN VBD VBG CD JJ NNS IN NN VBN IN NNP CC NNP . The ship is registered in St. Vincent and the Grenadines and had a crew of ten . DT NN VBZ VBN IN NNP NNP CC DT NNPS CC VBD DT NN IN NN . The WFP says it has appealed to local leaders and clan elders for the safe return of the crew and the food aid . DT NNP VBZ PRP VBZ VBN TO JJ NNS CC JJ NNS IN DT JJ NN IN DT NN CC DT NN NN . Maritime officials say piracy has become increasingly common off the coast of Somalia . NNP NNS VBP NN VBZ VBN RB JJ IN DT NN IN NNP . Vietnamese health officials say bird flu has been detected in ducks in the country 's south just one day after authorities lifted a ban on hatching ducks and other waterfowl . JJ NN NNS VBP NN NN VBZ VBN VBN IN NNS IN DT NN POS NN RB CD NN IN NNS VBD DT NN IN VBG NNS CC JJ NN . Authorities say tests showed 800 ducks in the Mekong delta province of Vinh Long were infected with bird flu , but it is not immediately clear if they had the deadly H5N1 strain of the virus . NNS VBP NNS VBD CD NNS IN DT NNP NN NN IN NNP NNP VBD VBN IN NN NN , CC PRP VBZ RB RB JJ IN PRP VBD DT JJ NNP NN IN DT NN . All the birds have been slaughtered . PDT DT NNS VBP VBN VBN . Earlier this week , authorities announced an outbreak of bird flu in the country 's north . RBR DT NN , NNS VBD DT NN IN NN NN IN DT NN POS NN . Vietnam plans to begin a massive new poultry vaccination campaign in the coming week . NNP VBZ TO VB DT JJ JJ NN NN NN IN DT JJ NN . Meanwhile , officials in Burma say crows and sparrows may have carried the H5N1 virus to a poultry farm in the suburbs of Rangoon sparking an outbreak . RB , NNS IN NNP VBP NNS CC NNS MD VB VBN DT NNP NN TO DT NN NN IN DT NNS IN NNP VBG DT NN . More than 160 people have died from bird flu worldwide since the outbreak began in late 2003 . JJR IN CD NNS VBP VBN IN NN NN NN IN DT NN VBD IN JJ CD . German Chancellor Angela Merkel says the situation is ' serious ' as bird flu reaches the German mainland for the first time . JJ NNP NNP NNP VBZ DT NN VBZ `` JJ `` IN NN NN VBZ DT JJ NN IN DT JJ NN . Authorities Sunday found the deadly H5N1 strain in two wild birds in the north . NNS NNP VBD DT JJ NNP NN IN CD JJ NNS IN DT NN . Eighteen new cases were also discovered on the Baltic island of Ruegen . NNP JJ NNS VBD RB VBN IN DT JJ NN IN NNP . Meanwhile , French Agriculture Minister Dominique Bussereau is urging consumers to keep eating chicken , assuring them it is perfectly safe to eat properly-cooked meat . RB , JJ NNP NNP NNP NNP VBZ VBG NNS TO VB JJ NN , VBG PRP PRP VBZ RB JJ TO VB JJ NN . France reported its first bird flu case Saturday . NNP VBD PRP$ JJ NN NN NN NNP . Italy says it will ask for European Union aid for poultry farmers who have lost millions of dollars as chicken consumption there plummets . NNP VBZ PRP MD VB IN NNP NNP NN IN JJ NNS WP VBP VBN NNS IN NNS IN NN NN RB VBZ . Also , India has begun killing chickens in western Maharastra state after reporting the country 's first bird flu case Saturday . RB , NNP VBZ VBN VBG NNS IN JJ NNP NN IN VBG DT NN POS JJ NN NN NN NNP . No human bird flu cases have been reported outside of Asia and Turkey , where about 90 people have died since 2003 . DT JJ NN NN NNS VBP VBN VBN IN IN NNP CC NNP , WRB RB CD NNS VBP VBN IN CD . Four U.S. financial giants have agreed to temporarily halt housing foreclosures . CD NNP JJ NNS VBP VBN TO RB VB NN NNS . J.P. Morgan Chase , Bank of America and Morgan Stanley said Friday their mortgage institutions would not begin the foreclosure process on any owner-occupied properties until March 6 . NNP NNP NNP , NNP IN NNP CC NNP NNP VBD NNP PRP$ NN NNS MD RB VB DT NN NN IN DT JJ NNS IN NNP CD . Citigroup said its moratorium would last until March 12 , unless President Barack Obama finalizes his administration 's loan modification program at an earlier date . NNP VBD PRP$ NN MD VB IN NNP CD , IN NNP NNP NNP VBZ PRP$ NN POS NN NN NN IN DT JJR NN . A key U.S. congressman , Barney Frank , had urged the industry to hold off on foreclosures until a new process for helping homeowners could be put in place . DT JJ NNP NN , NNP NNP , VBD VBN DT NN TO VB RP IN NNS IN DT JJ NN IN VBG NNS MD VB VBN IN NN . The Massachusetts Democrat is head of the House financial services committee . DT NNP NNP VBZ NN IN DT NNP JJ NNS NN . A White House spokesman , Robert Gibbs , announced Friday that President Obama will outline a plan to tackle the home foreclosure crisis during a visit Wednesday to the western state of Arizona . DT NNP NNP NN , NNP NNP , VBD NNP IN NNP NNP MD VB DT NN TO VB DT NN NN NN IN DT NN NNP TO DT JJ NN IN NNP . Two astronauts are back aboard the International Space Station after a spacewalk to conduct experiments and maintenance . CD NNS VBP RB IN DT NNP NNP NNP IN DT NN TO VB NNS CC NN . Station Commander Leroy Chiao of the United States and Russian flight engineer Salizhan Sharipov spent a total of five hours , 28 minutes outside the orbiting station Wednesday . NNP NNP NNP NNP IN DT NNP NNPS CC JJ NN NN NNP NNP VBD DT NN IN CD NNS , CD NNS IN DT NN NN NNP . The U.S. space agency says the crew members installed a work platform , set up two experiments , and checked vents on systems that help control the station 's atmosphere . DT NNP NN NN VBZ DT NN NNS VBD DT NN NN , VBD RP CD NNS , CC VBD NNS IN NNS WDT VBP VB DT NN POS NN . The spacewalk was the first for the current two-man crew , who arrived at the station in October . DT NN VBD DT JJ IN DT JJ JJ NN , WP VBD IN DT NN IN NNP . NASA says the crew members plan to conduct their second spacewalk in March . NNP VBZ DT NN NNS VBP TO VB PRP$ JJ NN IN NNP . Hurricane Danielle is picking up strength as it moves over the Atlantic Ocean . NNP NNP VBZ VBG RP NN IN PRP VBZ IN DT NNP NNP . The U.S. National Hurricane Center said the storm 's sustained winds increased to nearly 140 kilometers per hour Wednesday morning . DT NNP NNP NNP NNP VBD DT NN POS JJ NNS VBD TO RB CD NNS IN NN NNP NN . It remains a Category 1 on the five-point scale of hurricane strength . PRP VBZ DT NNP CD IN DT JJ NN IN NN NN . Danielle is moving northwest in the open waters of the Atlantic . NNP VBZ VBG JJS IN DT JJ NNS IN DT NNP . As of the last report , it was about 1,275 kilometers east of the Northern Leeward Islands . IN IN DT JJ NN , PRP VBD IN CD NNS NN IN DT NNP NNP NNP . Meanwhile , in the Pacific , Tropical Storm Frank is also gaining strength as it continues on its path away from the southwestern coast of Mexico . RB , IN DT NNP , NNP NNP NNP VBZ RB VBG NN IN PRP VBZ IN PRP$ NN RB IN DT JJ NN IN NNP . Forecasters say the storm could become a hurricane later Wednesday . NNS VBP DT NN MD VB DT NN RB NNP . Its sustained winds were last recorded at nearly 110 kilometers per hour . PRP$ JJ NNS VBD JJ VBN IN RB CD NNS IN NN . As of now , neither storm is posing a threat to land . IN IN RB , DT NN VBZ VBG DT NN TO NN . Usher is off the market . NNP VBZ IN DT NN . The multi-platinum R&B star is officially engaged to his longtime girlfriend , stylist Tameka Foster . DT JJ NN NN VBZ RB VBN TO PRP$ JJ NN , NN NNP NNP . Usher 's publicist Simone Smalls made the announcement March 30 , but provided no further details . NNP POS NN NNP NNP VBD DT NN NNP CD , CC VBD DT JJ NNS . Usher had previously announced the engagement to MTV News . NNP VBD RB VBN DT NN TO NNP NNP . The 28-year-old singer said he may be getting married by year 's end . DT JJ NN VBD PRP MD VB VBG VBN IN NN POS NN . A five-time Grammy Award winner , Usher has sold more than 35 million albums worldwide . DT JJ NNP NNP NN , NNP VBZ VBN JJR IN CD CD NNS JJ . The 34-nation Organization of American States ( OAS ) has postponed choosing a new chief , saying many foreign ministers who had planned to attend the election session here in Washington are instead heading to Rome for the pope 's funeral . DT JJ NNP IN NNP NNP LRB NNP RRB VBZ VBN VBG DT JJ NN , VBG JJ JJ NNS WP VBD VBN TO VB DT NN NN RB IN NNP VBP RB VBG TO NNP IN DT NN POS NN . The OAS Permanent Council had scheduled an election to choose a new secretary general on Thursday , but the vote will now take place April 11 . DT NNP NNP NNP VBD VBN DT NN TO VB DT JJ NN NN IN NNP , CC DT NN MD RB VB NN NNP CD . The top candidates for the post are Mexico 's conservative foreign secretary Luis Ernesto Derbez , Chile 's socialist interior minister Jose Miguel Insulza and a pro-business former Salvadoran president with close ties to Washington - Francisco Flores . DT JJ NNS IN DT NN VBP NNP POS JJ JJ NN NNP NNP NNP , NNP POS JJ JJ NN NNP NNP NNP CC DT JJ JJ JJ NN IN JJ NNS TO NNP : NNP NNP . The International Football Federation ( FIFA ) and the European Football Union ( UEFA ) have agreed to stage a charity match with the proceeds going to victims of last month 's devastating Indian Ocean tsunami . DT NNP NNP NNP LRB NNP RRB CC DT JJ NNP NNP LRB NNP RRB VBP VBN TO VB DT NN NN IN DT NNS VBG TO NNS IN JJ NN POS JJ NNP NNP NN . In a statement released Friday , FIFA said the two associations decided to organize the match ' on a grand scale ' in a major European stadium in February . IN DT NN VBN NNP , NNP VBD DT CD NNS VBD TO VB DT NN `` IN DT JJ NN `` IN DT JJ JJ NN IN NNP . Several national football associations -- including England , Germany , Greece , Portugal , Spain , India , and Malaysia -- have said they want to arrange charity matches . JJ JJ NN NNS : VBG NNP , NNP , NNP , NNP , NNP , NNP , CC NNP : VBP VBN PRP VBP TO VB NN NNS . FIFA did not say who would play in the match , or where it would be held . NNP VBD RB VB WP MD VB IN DT NN , CC WRB PRP MD VB VBN . Earlier this week , FIFA and the Asian Football Confederation called for famous players to help with aid distribution . RBR DT NN , NNP CC DT NNP NNP NNP VBD IN JJ NNS TO VB IN NN NN . FIFA and the Asian confederation also agreed to deliver football equipment to national associations in nations struck by the tsunami . NNP CC DT JJ NN RB VBD TO VB NN NN TO JJ NNS IN NNS VBN IN DT NN . Lawmakers in Spain have voted to send about 400 troops to join anti-piracy patrols off the coast of Somalia . NNS IN NNP VBP VBN TO VB IN CD NNS TO VB JJ NNS IN DT NN IN NNP . The Spanish parliament approved the deployment on a vote of 311 to nothing Wednesday . DT JJ NN VBD DT NN IN DT NN IN CD TO DT NNP . Defense Minister Carme Chacon said the first 200 troops will leave for the Gulf of Aden on a frigate and supply vessel this Friday . NNP NNP NNP NNP VBD DT JJ CD NNS MD VB IN DT NNP IN NNP IN DT NN CC NN NN DT NNP . The Spanish troops will join the European Union force sent to protect ships against hijackings and attacks by Somali pirates . DT JJ NNS MD VB DT NNP NNP NN VBN TO VB NNS IN NNS CC NNS IN JJ NNS . The International Maritime Bureau said Somali pirates attacked at least 111 ships last year , an increase of nearly 200 percent from 2007 . DT NNP NNP NNP VBD JJ NNS VBD IN JJS CD NNS JJ NN , DT NN IN RB CD NN IN CD . The United States , China , and several other countries have also put ships on patrol in the Gulf of Aden and Somalia 's Indian Ocean coast . DT NNP NNPS , NNP , CC JJ JJ NNS VBP RB VBN NNS IN NN IN DT NNP IN NNP CC NNP POS NNP NNP NN . A Belarusian court has sentenced former opposition presidential candidate Alexander Kozulin , to 5 01-Feb years in prison . DT JJ NN VBZ VBN JJ NN JJ NN NNP NNP , TO CD CD NNS IN NN . The judge cleared the courtroom before delivering the verdict after the accused called the proceedings unfair and a farce . DT NN VBD DT NN IN VBG DT NN IN DT VBN VBD DT NNS JJ CC DT NN . Authorities had charged Kozulin with hooliganism and incitement to disorder in connection with mass protests by opposition activists over what they considered fraud in the vote . NNS VBD VBN NNP IN NN CC NN TO NN IN NN IN JJ NNS IN NN NNS IN WP PRP VBD NN IN DT NN . Belarus authorities arrested Kozulin a week after the March 19 vote in which authorities say President Alexander Lukashenko won a landslide victory . NNP NNS VBN NNP DT NN IN DT NNP CD NN IN WDT NNS VBP NNP NNP NNP VBD DT NN NN . Demonstrators said the election was fraudulent . NNS VBD DT NN VBD JJ . Prosecutors say more than 500 people were detained during the protests , but opposition activists put the number at more than one thousand . NNS VBP JJR IN CD NNS VBD VBN IN DT NNS , CC NN NNS VBD DT NN IN JJR IN CD CD . The United States and the European Union denounced the arrests , and enacted a visa ban on President Lukashenko and other top Belarus officials to protest the fraud . DT NNP NNPS CC DT NNP NNP VBD DT NNS , CC VBD DT NN NN IN NNP NNP CC JJ JJ NNP NNS TO VB DT NN . Chadian Prime Minister Pascal Yoadimadji has died in Paris at the age of 56 . JJ JJ NN NNP NNP VBZ VBN IN NNP IN DT NN IN CD . Chad 's ambassador to France says Mr. Yoadimnadji died Friday from a brain hemorrhage . NNP POS NN TO NNP VBZ NNP NNP VBD NNP IN DT NN NN . The prime minister was flown to Paris earlier this week after suffering a heart attack . DT JJ NN VBD VBN TO NNP RBR DT NN IN VBG DT NN NN . Mr. Yoadimnadji was named prime minister in 2005 by Chadian President Idriss Deby . NNP NNP VBD VBN JJ NN IN CD IN JJ NNP NNP NNP . He had previously served in the government as agricultural minister , president of the national electoral commission and president of the constitutional council . PRP VBD RB VBN IN DT NN IN JJ NN , NN IN DT JJ JJ NN CC NN IN DT JJ NN . China has confirmed an outbreak of the H5N1 strain of bird flu among wilds birds in western China . NNP VBZ VBN DT NN IN DT NNP NN IN NN NN IN NNS NNS IN JJ NNP . The Ministry of Agriculture said Friday that the outbreak was discovered in Qinghai province after 123 birds were found dead . DT NNP IN NNP VBD NNP IN DT NN VBD VBN IN NNP NN IN CD NNS VBD VBN JJ . The bird flu virus killed more than 1,000 geese in Qinghai last year . DT NN NN NN VBD JJR IN CD NNS IN NNP JJ NN . The province is located along a major Asian migratory route for birds . DT NN VBZ VBN IN DT JJ JJ JJ NN IN NNS . Researchers believe wild birds from the region may have carried bird flu along migratory paths to Europe . NNS VBP JJ NNS IN DT NN MD VB VBN JJ NN IN JJ NNS TO NNP . US computer maker Dell has says it plans to substantially expand its customer support and software development centers in India . NNP NN NN NNP VBZ VBZ PRP VBZ TO RB VB PRP$ NN NN CC NN NN NNS IN NNP . Officials say the state of Texas-based company intends to add 2,000 more employees to its staff , bringing the total in India to 10,000 by January , 2006 . NNS VBP DT NN IN JJ NN VBZ TO VB CD JJR NNS TO PRP$ NN , VBG DT NN IN NNP TO CD IN NNP , CD . The company runs three call centers in India , with most of the operations centered in Bangalore , India 's ' silicon valley . ' DT NN VBZ CD NN NNS IN NNP , IN JJS IN DT NNS VBN IN NNP , NNP POS `` NN NN . `` Dell officials say they will open several more offices in India . NNP NNS VBP PRP MD VB JJ JJR NNS IN NNP . Scores of Western companies have cut costs by shifting software development , engineering design and routine office functions to countries such as India , which has a large pool of English-speaking workers and low wages . NNS IN JJ NNS VBP VBN NNS IN VBG NN NN , NN NN CC JJ NN NNS TO NNS JJ IN NNP , WDT VBZ DT JJ NN IN JJ NNS CC JJ NNS . Computer experts estimate that such outsourcing could create as many as 1.2 million jobs in India by 2008 and bring in revenues of at least $ 21 billion . NN NNS VBP IN JJ NN MD VB RB JJ IN CD CD NNS IN NNP IN CD CC VB IN NNS IN IN JJS $ CD CD . NATO says it trained almost 1,500 Iraqi military officers in 2005 , and hopes to train a similar number this year . NNP VBZ PRP VBD RB CD JJ JJ NNS IN CD , CC VBZ TO VB DT JJ NN DT NN . The organization says 1,000 officers were trained inside Iraq at a NATO college on the outskirts of Baghdad . DT NN VBZ CD NNS VBD VBN IN NNP IN DT NNP NN IN DT NNS IN NNP . Around 160 NATO personnel are based at the college , which opened in September 2005 . IN CD NNP NNS VBP VBN IN DT NN , WDT VBD IN NNP CD . The remaining Iraqi officers , numbering about 500 , were trained at NATO facilities in Europe . DT VBG JJ NNS , VBG IN CD , VBD VBN IN NNP NNS IN NNP . NATO says the training effort is designed to teach Iraqi military officers modern leadership skills and democratic values . NNP VBZ DT NN NN VBZ VBN TO VB JJ JJ NNS JJ NN NNS CC JJ NNS . The organization also supplies military equipment to Iraqi forces and logistical support to Polish troops inside Iraq . DT NN RB VBZ JJ NN TO JJ NNS CC JJ NN TO JJ NNS IN NNP . But NATO has not engaged in any combat in Iraq because of opposition from NATO members France and Germany . CC NNP VBZ RB VBN IN DT NN IN NNP IN IN NN IN NNP NNS NNP CC NNP . The cholera outbreak in Angola continues . DT NN NN IN NNP VBZ . The medical aid group - Doctors Without Borders - says in all there have been about 32,000 cases over the past 13 weeks , with about 1,200 deaths . DT JJ NN NN ; NNPS NNP NNPS : VBZ IN DT EX VBP VBN IN CD NNS IN DT JJ CD NNS , IN IN CD NNS . Richard Veerman is the group 's head of mission in Angola . NNP NNP VBZ DT NN POS NN IN NN IN NNP . From the capital , Luanda , he gave English to Africa reporter Joe De Capua an update on the cholera outbreak . IN DT NN , NNP , PRP VBD NNP TO NNP NN NNP NNP NNP DT NN IN DT NN NN . He says there are about 600 new cases a day in the country , about half of those in Luanda . PRP VBZ EX VBP IN CD JJ NNS DT NN IN DT NN , IN NN IN DT IN NNP . That 's down from over 900 cases a day about a week ago . DT VBZ RB IN IN CD NNS DT NN IN DT NN RB . However , Veerman says it 's still too early to tell whether this means the outbreak is truly on the decline . RB , NNP VBZ PRP VBZ RB RB JJ TO VB IN DT VBZ DT NN VBZ RB IN DT NN . Taiwan 's Defense Ministry says China 's military buildup and modernization is aimed directly at the island . NNP POS NNP NNP VBZ NNP POS JJ NN CC NN VBZ VBN RB IN DT NN . A Taiwanese Defense Ministry spokesman made the comments Tuesday one day after China released a white paper on national defense . DT JJ NNP NNP NN VBD DT NNS NNP CD NN IN NNP VBD DT JJ NN IN JJ NN . China 's Information Office of the State Council said the white paper is intended to illustrate China 's national defense policies and the progress made in national defense over the past two years . NNP POS NNP NNP IN DT NNP NNP VBD DT JJ NN VBZ VBN TO VB NNP POS JJ NN NNS CC DT NN VBN IN JJ NN IN DT JJ CD NNS . Taiwanese Defense Ministry spokesman Wang Shih-chien says the white paper shows that China is emphasizing the buildup of its air and amphibious forces , proving that Beijing is targeting the island . JJ NNP NNP NN NNP NNP VBZ DT JJ NN VBZ IN NNP VBZ VBG DT NN IN PRP$ NN CC JJ NNS , VBG IN NNP VBZ VBG DT NN . The Chinese policy document threatens to crush any attempt by Taiwan to become independent . DT JJ NN NN VBZ TO VB DT NN IN NNP TO VB JJ . Beijing considers the island part of its territory . NNP VBZ DT NN NN IN PRP$ NN . Some members of the Organization of Petroleum Exporting Countries are calling for cuts in oil output . DT NNS IN DT NNP IN NNP NNP NNPS VBP VBG IN NNS IN NN NN . The comments come as officials of the 11 member cartel gather in Cairo for a meeting Friday to discuss oil supplies and prices . DT NNS VBP IN NNS IN DT CD NN NN VB IN NNP IN DT NN NNP TO VB NN NNS CC NNS . OPEC supplies about 40 percent of the world 's oil . NNP NNS IN CD NN IN DT NN POS NN . Oil prices have fallen significantly from their record highs in October , and economists say a reduction in oil output would put upward pressure on prices . NN NNS VBP VBN RB IN PRP$ NN NNS IN NNP , CC NNS VBP DT NN IN NN NN MD VB JJ NN IN NNS . Crude prices soared this year due to strong demand from China and the United States amid worries that political problems , violence , or bad weather would disrupt oil supplies in some key producing nations . NN NNS VBD DT NN RB TO JJ NN IN NNP CC DT NNP NNPS IN NNS IN JJ NNS , NN , CC JJ NN MD VB NN NNS IN DT JJ VBG NNS . OPEC oil output has been close to 25-year highs , and exceeds the cartel 's self-imposed production quotas . NNP NN NN VBZ VBN JJ TO JJ NNS , CC VBZ DT NN POS JJ NN NNS . Rebels in Sudan 's Darfur region say they clashed with government forces Wednesday , days before a scheduled new round of peace talks . NNS IN NNP POS NNP NN VBP PRP VBD IN NN NNS NNP , NNS IN DT VBN JJ NN IN NN NNS . The Sudan Liberation Army faction of Abdel Wahid Nur said its troops attacked the government-held Golo district in the Jebel Marra mountains . DT NNP NNP NNP NN IN NNP NNP NNP VBD PRP$ NNS VBD DT JJ NNP NN IN DT NNP NNP NNS . A spokesman said there were casualties on both sides . DT NN VBD EX VBD NNS IN DT NNS . He did not give specific figures . PRP VBD RB VB JJ NNS . The joint U.N.-African Union peacekeeping mission confirmed there was fighting in the area . DT JJ NNP NNP VBG NN VBD EX VBD VBG IN DT NN . The rebels say earlier this week , Sudanese warplanes bombarded rebel-controlled areas in Jebel Marra and in Jebel Moun , near the border with Chad . DT NNS VBP RBR DT NN , JJ NNS VBD JJ NNS IN NNP NNP CC IN NNP NNP , IN DT NN IN NNP . Peace talks between Khartoum and Darfur rebel groups are due to resume later this month in Qatar . NN NNS IN NNP CC NNP NN NNS VBP JJ TO VB RB DT NN IN NNP . The United Nations says the fighting in Darfur has killed up to 3,00,000 people and displaced 2.7 million since 2003 . DT NNP NNP VBZ DT NN IN NNP VBZ VBN RP TO CD NNS CC VBD CD CD IN CD . The government says 10,000 people have died in the conflict . DT NN VBZ CD NNS VBP VBN IN DT NN . Members of the Organization of Petroleum Exporting Countries are meeting in Vienna to consider offering as much as another two million barrels of crude oil a day to world markets . NNS IN DT NNP IN NNP NNP NNPS VBP VBG IN NNP TO VB VBG RB JJ IN DT CD CD NNS IN JJ NN DT NN TO NN NNS . Oil and gasoline prices soared to record highs in recent weeks as Hurricane Katrina threatened oil production and refining capacity on the U.S. Gulf Coast . NN CC NN NNS VBD TO VB NNS IN JJ NNS IN NNP NNP VBD NN NN CC NN NN IN DT NNP NNP NNP . Some analysts say OPEC 's offer would have symbolic rather than practical impact because gasoline prices were driven upward by a shortage of refining capacity rather than a lack of crude oil . DT NNS VBP NNP POS NN MD VB JJ RB IN JJ NN IN NN NNS VBD VBN RB IN DT NN IN NN NN RB IN DT NN IN JJ NN . World oil prices have fallen from their record high of $ 70.85 , but rebounded more than $ 2 a barrel to $ 65.25 cents on the New York market Monday morning . NNP NN NNS VBP VBN IN PRP$ NN NN IN $ CD , CC VBD JJR IN $ CD DT NN TO $ CD NNS IN DT NNP NNP NN NNP NN . Traders were reacting to news that another tropical storm is on a course that might hurt oil and gasoline production . NNS VBD VBG TO NN IN DT JJ NN VBZ IN DT NN WDT MD VB NN CC NN NN . Officials in Afghanistan say the United States has released 17 Afghan detainees from military custody at Guantanamo Bay in Cuba . NNS IN NNP VBP DT NNP NNPS VBZ VBN CD JJ NNS IN JJ NN IN NNP NNP IN NNP . Abdul Wakil Omari , a spokesman for the Afghan Supreme Court , said the men would be formally handed over during a ceremony at the court later Tuesday . NNP NNP NNP , DT NN IN DT JJ NNP NNP , VBD DT NNS MD VB RB VBN RP IN DT NN IN DT NN RB NNP . He did not say how many prisoners had been released , but other officials put the number at 17 . PRP VBD RB VB WRB JJ NNS VBD VBN VBN , CC JJ NNS VBD DT NN IN CD . It was not clear if the men will face charges in their home country . PRP VBD RB JJ IN DT NNS MD VB NNS IN PRP$ NN NN . The U.S. military had no immediate comment . DT NNP NN VBD DT JJ NN . The United States has released more than 200 detainees from Guantanamo , but many , including dozens of prisoners sent to the United Kingdom , Russia , France , Morocco , Saudi Arabia and Pakistan , are freed on the condition they will be held by their home countries . DT NNP NNPS VBZ VBN JJR IN CD NNS IN NNP , CC JJ , VBG NNS IN NNS VBN TO DT NNP NNP , NNP , NNP , NNP , NNP NNP CC NNP , VBP VBN IN DT NN PRP MD VB VBN IN PRP$ NN NNS . Pakistan has officially raised the death toll from last month 's massive earthquake to 73,276 . NNP VBZ RB VBN DT NN NN IN JJ NN POS JJ NN TO CD . The country 's head of relief operations , Major-General Farooq Ahmed Khan , said Wednesday the October 8 quake also left more than 69,000 people injured . DT NN POS NN IN NN NNS , NNP NNP NNP NNP , VBD NNP DT NNP CD NN RB VBD JJR IN CD NNS VBN . On Tuesday , government officials had put the death toll at 57,600 , with most fatalities registered in Pakistani-controlled Kashmir . IN NNP , NN NNS VBD VBN DT NN NN IN CD , IN JJS NNS VBN IN JJ NNP . General Khan gave no reason for the abrupt increase in the death toll , but Pakistani officials say it could rise further . NNP NNP VBD DT NN IN DT JJ NN IN DT NN NN , CC JJ NNS VBP PRP MD VB RB . Meanwhile , the U.S. military said it resumed helicopter relief flights in northern Pakistan , one day after one of its aircraft is believed to have come under fire . RB , DT NNP NN VBD PRP VBD NN NN NNS IN JJ NNP , CD NN IN CD IN PRP$ NN VBZ VBN TO VB VBN IN NN . U.S. officials say a suspected rocket-propelled grenade was fired on Tuesday at a helicopter delivering relief aid , causing no damage or injuries . NNP NNS VBP DT JJ JJ NN VBD VBN IN NNP IN DT NN VBG NN NN , VBG DT NN CC NNS . Pakistani officials said the helicopter crew probably heard dynamite being used to clear landslides triggered by the quake . JJ NNS VBD DT NN NN RB VBD NN VBG VBN TO VB NNS VBN IN DT NN . The U.S. Energy Department says Washington is prepared to tap its emergency oil stockpile to help oil producers and refiners in the path of Hurricane Katrina . DT NNP NNP NNP VBZ NNP VBZ VBN TO VB PRP$ NN NN NN TO VB NN NNS CC NNS IN DT NN IN NNP NNP . The storm is lashing a part of the U.S. Gulf coast responsible for about one quarter of U.S. crude oil production . DT NN VBZ VBG DT NN IN DT NNP NNP NN JJ IN IN CD NN IN NNP JJ NN NN . It is also home to key oil import facilities and refineries . PRP VBZ RB NN TO JJ NN NN NNS CC NNS . The oil would be loaned to refiners and producers to lessen the effect of disrupted energy production . DT NN MD VB VBN TO NNS CC NNS TO VB DT NN IN VBN NN NN . Worries about damage to energy production infrastructure have pushed crude oil prices up to record levels . NNS IN NN TO NN NN NN VBP VBN JJ NN NNS RB TO NN NNS . A similar oil loan program aided oil companies after a hurricane disrupted production last year . DT JJ NN NN NN VBN NN NNS IN DT NN VBN NN JJ NN . Two exit polls are predicting victory for Ukraine 's pro-western opposition leader Viktor Yushchenko in Sunday 's presidential run-off election , though the polls differ widely on the margin of victory CD NN NNS VBP VBG NN IN NNP POS JJ NN NN NNP NNP IN NNP POS JJ NN NN , IN DT NNS VBP RB IN DT NN IN NN One exit poll , conducted by the Kiev Institute of Sociology and the Razumkov Center for Economic and Political Studies , shows Mr.Yushchenko ahead of Ukraine 's Moscow-leaning Prime Minister Viktor Yanukovich by a double-digit margin CD NN NN , VBN IN DT NNP NNP IN NNP CC DT NNP NNP IN NNP CC NNP NNP , VBZ NNP RB IN NNP POS JJ NNP NNP NNP NNP IN DT JJ NN But the Interfax news agency quotes another exit poll showing Mr.Yushchenko ahead by less than four percentage points . CC DT NNP NN NN VBZ DT NN NN VBG NNP RB IN JJR IN CD NN NNS . But both sides are claiming numerous instances of voting irregularities . CC DT NNS VBP VBG JJ NNS IN NN NNS . In the first round of voting last month , neither candidate won a majority , but Mr. Yushchenko alleged voting fraud had cost him the election . IN DT JJ NN IN NN JJ NN , DT NN VBD DT NN , CC NNP NNP VBD NN NN VBD NN PRP DT NN . Three Pakistani troops were wounded Monday when attackers fired rockets at their security checkpoint in a remote tribal area near the Afghan border . CD JJ NNS VBD VBN NNP WRB NNS VBD NNS IN PRP$ NN NN IN DT JJ JJ NN IN DT JJ NN . The troops were manning the post near the town of Miran Shah in the troubled North Waziristan region when the attack occurred before dawn . DT NNS VBD VBG DT NN IN DT NN IN NNP NNP IN DT JJ NNP NNP NN WRB DT NN VBD IN NN . Soldiers returned fire with artillery and machine guns and a gun battle broke out . NNS VBD NN IN NN CC NN NNS CC DT NN NN VBD RP . Three soldiers were hit by shrapnel from rockets . CD NNS VBD VBN IN NN IN NNS . Islamic militants have been blamed for attacks on security forces in the region . NNP NNS VBP VBN VBN IN NNS IN NN NNS IN DT NN . Meanwhile , Pakistani security forces are pressuring tribal leaders to hand over suspected militants responsible for recent attacks on government forces that have claimed more than 22 lives , including at least eight soldiers at a checkpoint in North Waziristan . RB , JJ NN NNS VBP VBG JJ NNS TO VB IN JJ NNS JJ IN JJ NNS IN NN NNS WDT VBP VBN JJR IN CD NNS , VBG IN JJS CD NNS IN DT NN IN NNP NNP . Tens of thousands of Pakistani forces have been deployed in the region to search for foreign militants . NNS IN NNS IN JJ NNS VBP VBN VBN IN DT NN TO VB IN JJ NNS . Thousands of Croatians have gathered in the city of Split to show support for war crimes suspect General Ante Gotovina . NNS IN NNS VBP VBN IN DT NN IN NNP TO VB NN IN NN NNS VBP NNP NNP NNP . The demonstrators waved Croatian flags and posters of General Gotovina , who was arrested in Spain 's Canary Islands on Wednesday after being on the run since 2001 . DT NNS VBD JJ NNS CC NNS IN NNP NNP , WP VBD VBN IN NNP POS NNP NNP IN NNP IN VBG IN DT NN IN CD . The general was extradited to the United Nations tribunal in the Hague on Saturday to face charges involving the deaths of civilians during a 1995 Croatian army sweep through a Serb-held region . DT NN VBD VBN TO DT NNP NNPS NN IN DT NNP IN NNP TO VB NNS VBG DT NNS IN NNS IN DT CD JJ NN NN IN DT JJ NN . He is expected to appear before the court next week . PRP VBZ VBN TO VB IN DT NN JJ NN . Thousands of his supporters also gathered on Saturday in Croatia 's port city of Zadar to protest his arrest . NNS IN PRP$ NNS RB VBD IN NNP IN NNP POS JJ NN IN NNP TO VB PRP$ NN . They call General Gotovina a hero who helped free Croatia from the former Yugoslavia . PRP VBP NNP NNP DT NN WP VBD JJ NN IN DT JJ NNP . The Taliban has claimed responsibility for killing ten people , including foreigners , after the bodies were found in dense forest in northern Afghanistan . DT NNP VBZ VBN NN IN VBG JJ NNS , VBG NNS , IN DT NNS VBD VBN IN JJ NN IN JJ NNP . The International Assistance Mission , a Christian charity providing health services to the Afghan people , said on its website Saturday the dead people are ' likely ' members of its eye camp team , who were returning to Kabul after working in Nuristan . DT NNP NNP NNP , DT JJ NN VBG NN NNS TO DT JJ NNS , VBD IN PRP$ JJ NNP DT JJ NNS VBP `` JJ `` NNS IN PRP$ NN NN NN , WP VBD VBG TO NNP IN VBG IN NNP . U.S. officials in Afghanistan say at least two Americans were among the group of eight foreigners and two Afghans killed . NNP NNS IN NNP VBP IN JJS CD NNS VBD IN DT NN IN CD NNS CC CD NNS VBD . Local officials said six Germans were among those killed in Badakhshan province . JJ NNS VBD CD NNS VBD IN DT VBN IN NNP NN . Taliban spokesman Zabihullah Mujahed told the French news agency a patrol confronted the ' Christian missionaries and we killed them all . ' NNP NN NNP NNP VBD DT JJ NN NN DT NN VBD DT `` NNP NNS CC PRP VBD PRP DT . `` One Afghan man survived the attack . CD JJ NN VBD DT NN . The bullet-riddled bodies were discovered Friday . DT JJ NNS VBD VBN NNP . At least seven Indian police officers were killed Sunday when their vehicle struck a landmine in the eastern region of the country . IN JJS CD JJ NNS NNS VBD VBN NNP WRB PRP$ NN VBD DT NN IN DT JJ NN IN DT NN . Officials say they suspect the bombs were planted by Maoist rebels . NNS VBP PRP VBP DT NNS VBD VBN IN NNP NNS . The attack was in Orissa state , nearly 550 kilometers south of the state capital Bhubaneshwar . DT NN VBD IN NNP NN , RB CD NNS RB IN DT NN NN NNP . Indian officials say the long-running Maoist insurgency , which has spread to 20 of the country 's 28 states , is India 's most serious domestic security issue . JJ NNS VBP DT JJ NNP NN , WDT VBZ VBN TO CD IN DT NN POS CD NNS , VBZ NNP POS RBS JJ JJ NN NN . The rebels , also called Naxalites , are demanding land and jobs for the poor . DT NNS , RB VBD NNP , VBP VBG NN CC NNS IN DT NN . The media rights group Reporters Without Borders has recognized a Burmese-run television and radio network for its work , including coverage of September 's pro-democracy protests in Burma . DT NNS NNS NN NNP NNP NNP VBZ VBN DT JJ NN CC NN NN IN PRP$ NN , VBG NN IN NNP POS JJ NNS IN NNP . The group says the Norway-based Democratic Voice of Burma was one of the few media that sent out images of the Burmese military crackdown on demonstrations led by Buddhist monks . DT NN VBZ DT JJ JJ NN IN NNP VBD CD IN DT JJ NNS WDT VBD RP NNS IN DT JJ JJ NN IN NNS VBN IN NNP NNS . Reporters Without Borders chose the station to receive its 2007 award recognizing ' a media that exemplifies the battle for the right to inform the public and be informed . ' NNPS IN NNPS VBD DT NN TO VB PRP$ CD NN VBG `` DT NNS WDT VBZ DT NN IN DT NN TO VB DT NN CC VB VBN . `` The non-profit media organization was founded in 1992 by a group of pro-democracy students who escaped the massacres of a 1988 crackdown by Burma 's military government . DT JJ NNS NN VBD VBN IN CD IN DT NN IN JJ NNS WP VBD DT NNS IN DT CD NN IN NNP POS JJ NN . The U.S. government has launched a new website designed to help new immigrants find information about federal government resources . DT NNP NN VBZ VBN DT JJ NN VBN TO VB JJ NNS VBP NN IN JJ NN NNS . The new site , welcometousa.gov , is an initiative of the interagency Task Force on New Americans established by President Bush in 2006 . DT JJ NN , NNP , VBZ DT NN IN DT NN NNP NNP IN NNP NNS VBN IN NNP NNP IN CD . The website provides information on how to become a U.S. citizen , how to get a driver 's license , and ways for new immigrants to find employment . DT NN VBZ NN IN WRB TO VB DT NNP NN , WRB TO VB DT NN POS NN , CC NNS IN JJ NNS TO VB NN . Another objective of the website is to encourage immigrants and native-born Americans to engage in volunteer activities . DT NN IN DT NN VBZ TO VB NNS CC JJ NNS TO VB IN NN NNS . Most of the website is in English , but it includes links to new immigration guides in 11 languages , including Chinese , Korean , Haitian Creole , Spanish , French , Russian , Vietnamese and Arabic . JJS IN DT NN VBZ IN NNP , CC PRP VBZ NNS TO JJ NN NNS IN CD NNS , VBG NNP , NNP , JJ NNP , JJ , NNP , JJ , NNP CC NNP . China has cut the size of its military by 2,00,000 soldiers to make it a leaner , more high-tech fighting force . NNP VBZ VBN DT NN IN PRP$ JJ IN CD NNS TO VB PRP DT JJR , RBR JJ NN NN . The People 's Liberation Army newspaper said Monday the military had been reduced to 2.3 million troops as part of a three-year modernization program that ended last year . DT NNS POS NNP NNP NN VBD NNP DT NN VBD VBN VBN TO CD CD NNS IN NN IN DT JJ NN NN WDT VBD JJ NN . The program involved shutting down Chinese military farms and schools not involved in combat , and removing layers of military bureaucracy . DT NN VBN VBG RP JJ JJ NNS CC NNS RB VBN IN NN , CC VBG NNS IN JJ NN . China has been trimming the size of its military since the mid-1980s , when it had about 4.2 million soldiers . NNP VBZ VBN VBG DT NN IN PRP$ JJ IN DT NNS , WRB PRP VBD RB CD CD NNS . However , Beijing continued a sizable increase in military spending last year . RB , NNP VBD DT JJ NN IN JJ NN JJ NN . Beijing has spent heavily on high-tech weapons in recent years to back up threats against Taiwan . NNP VBZ VBN RB IN JJ NNS IN JJ NNS TO VB RP NNS IN NNP . Japan , South Korea and the United States have repeatedly expressed about China 's military build-up , and have accused Beijing of underreporting its defense spending . NNP , NNP NNP CC DT NNP NNPS VBP RB VBN IN NNP POS JJ NN , CC VBP VBN NNP IN VBG PRP$ NN NN . Spain and Morocco have called for a European-African summit to discuss the surge of illegal immigration from the North African country to Europe . NNP CC NNP VBP VBN IN DT JJ NN TO VB DT NN IN JJ NN IN DT JJ JJ NN TO NNP . The announcement was made in Rabat Tuesday by Spanish Foreign Minister Miguel Angel Moratinos . DT NN VBD VBN IN NNP NNP IN JJ NNP NNP NNP NNP NNP . Earlier Tuesday , Morocco flew 140 illegal migrants back to Senegal . RBR NNP , NNP VBD CD JJ NNS RB TO NNP . Other flights to Senegal and Mali are planned . JJ NNS TO NNP CC NNP VBP VBN . Spain has been sending Africans who have illegally entered its enclaves in Melilla and Ceuta back into Morocco , which has started sending them home . NNP VBZ VBN VBG NNS WP VBP RB VBN PRP$ NNS IN NNP CC NNP RB IN NNP , WDT VBZ VBN VBG PRP NN . More than 1,000 migrants have scaled the razor-wire fences surrounding the enclaves since August , seeking a better life in Europe . JJR IN CD NNS VBP VBN DT JJ NNS VBG DT NNS IN NNP , VBG DT JJR NN IN NNP . At least 14 have died during the attempts . IN JJS CD VBP VBN IN DT NNS . Amnesty International has accused the European Union of failing to protect refugees . NNP NNP VBZ VBN DT NNP NNP IN VBG TO VB NNS . Indian novelist Kiran Desai has become the youngest female writer to win Britain 's Man Booker prize - one of the world 's most prestigious literary awards . JJ NN NNP NNP VBZ VBN DT JJS JJ NN TO VB NNP POS NNP NNP NN IN CD IN DT NN POS RBS JJ JJ NNS . Desai was selected the winner of the $ 93,000 prize Tuesday for her novel The Inheritance of Loss . NNP VBD VBN DT NN IN DT $ CD NN NNP IN PRP$ NN DT NN IN NNP . Judges called it a ' magnificent novel of humane breadth and wisdom , comic tenderness , and powerful political acuteness . ' NNP VBD PRP DT `` JJ NN IN JJ NN CC NN , JJ NN , CC JJ JJ NN . `` It is the story of a retired judge who moves into an isolated and crumbling house in the Himalayas hoping to live in peace when his orphaned granddaughter unexpectedly comes to live with him . PRP VBZ DT NN IN DT JJ NN WP VBZ IN DT JJ CC VBG NN IN DT NNP VBG TO VB IN NN WRB PRP$ VBN NN RB VBZ TO VB IN PRP . The 35-year-old Desai was born in India and educated in the United States and England . DT JJ NNP VBD VBN IN NNP CC VBN IN DT NNP NNPS CC NNP . She is the daughter of novelist Anita Desai , who has been nominated for a Booker prize three times . PRP VBZ DT NN IN NN NNP NNP , WP VBZ VBN VBN IN DT NNP NN CD NNS . The U.N. war crimes tribunal in the Hague has overturned a conviction for complicity in genocide against a former Bosnian Serb army officer . DT NNP NN NNS JJ IN DT NNP VBZ VBN DT NN IN NN IN NN IN DT JJ JJ JJ NN NN . In 2005 , Vidoje Blagojevic was convicted on several war crimes charges for giving logistical support to the 1995 massacre of more than 7,000 Muslims in the Bosnian enclave of Srebrenica . IN CD , NNP NNP VBD VBN IN JJ NN NNS NNS IN VBG JJ NN TO DT CD NN IN JJR IN CD NNS IN DT JJ NN IN NNP . Blagojevic appealed the conviction . NNP VBD DT NN . Wednesday , appeals judges let most of the convictions stand but ruled he should have been acquitted on the genocide charge . NNP , NNS NNS VBP JJS IN DT NNS VBP CC VBD PRP MD VB VBN VBN IN DT NN NN . The judges said it was impossible to show that he had knowledge of the ' genocidal intent ' of the massacre 's perpetrators . DT NNS VBD PRP VBD JJ TO VB IN PRP VBD NN IN DT `` JJ NN `` IN DT NN POS NNS . The tribunal judges cut his sentence Wednesday , from 18 years in prison to 15 years . DT JJ NNS VBD PRP$ NN NNP , IN CD NNS IN NN TO CD NNS . The massacre happened after Serb troops captured Srebrenica , which the U.N. had declared a safe area . DT NN VBD IN JJ NNS VBD NNP , WDT DT NNP VBD VBN DT JJ NN . In 2004 , Bosnian Serb authorities acknowledged the deaths as a massacre for the first time . IN CD , JJ JJ NNS VBD DT NNS IN DT NN IN DT JJ NN . United Nations officials say some indigenous groups in Colombia face extinction because of ongoing political fighting that has forced them to flee their ancestral homes . NNP NNP NNS VBP DT JJ NNS IN NNP NN NN IN IN JJ JJ NN WDT VBZ VBN PRP TO VB PRP$ JJ NNS . Fighting between the Colombian army and guerrillas from the Revolutionary Armed Forces of Colombia , FARC , in the past week has caused the displacement of an estimated 3,500 indigenous Nasa people in one southwest province . VBG IN DT JJ NN CC NNS IN DT JJ JJ NNS IN NNP , NNP , IN DT JJ NN VBZ VBN DT NN IN DT VBN CD JJ NNP NNS IN CD NN NN . Observers say that if the fighting continues , the number of displaced could reach 5,000 . NNS VBP IN IN DT NN VBZ , DT NN IN JJ MD VB CD . U.N. officials say the Embera people are also under threat . NNP NNS VBP DT NNP NNS VBP RB IN NN . About 4,000 of them could soon be driven from their homes in the northwest . IN CD IN PRP MD RB VB VBN IN PRP$ NNS IN DT NN . Colombia 's indigenous peoples have suffered heavily during the civil war . NNP POS JJ NNS VBP VBN RB IN DT JJ NN . Illegal armed groups have killed their leaders and conscripted young people into the ranks . JJ JJ NNS VBP VBN PRP$ NNS CC VBN JJ NNS IN DT NNS . The National Indigenous Organization of Colombia estimates that more than 20 indigenous leaders have disappeared or have been murdered so far this year . DT NNP NNP NNP IN NNP VBZ IN JJR IN CD JJ NNS VBP VBN CC VBP VBN VBN RB RB DT NN . A published report says the Bush administration has initiated a top-level internal review of its anti-terrorism policy , with the aim of moving away from hunting al-Qaida leadership and towards a broader strategy of dealing with violent extremism . DT JJ NN VBZ DT NNP NN VBZ VBN DT JJ JJ NN IN PRP$ JJ NN , IN DT NN IN VBG RB IN VBG NNP NN CC IN DT JJR NN IN VBG IN JJ NN . The Washington Post in its Sunday edition says the new strategy has evolved as al-Qaida has become increasingly decentralized since the attacks of September 11 , 2001 . DT NNP NNP IN PRP$ NNP NN VBZ DT JJ NN VBZ VBN IN NNP VBZ VBN RB VBN IN DT NNS IN NNP CD , CD . White House officials tell the newspaper a new anti-terrorism model must emerge to cope with the rapid global spread of pro-al-Qaida Islamic jihadists . NNP NNP NNS VBP DT NN DT JJ JJ NN MD VB TO VB IN DT JJ JJ NN IN NNP NNP NNS . Officials say hitting al-Qaida in Afghanistan after the 2001 attacks was a logical tactical maneuver . NNS VBP VBG NNP IN NNP IN DT CD NNS VBD DT JJ JJ NN . But they say the new leadership among terror groups is difficult to target as they adapt and blend into multiple societies . CC PRP VBP DT JJ NN IN NN NNS VBZ JJ TO VB IN PRP VBP CC VBP IN JJ NNS . The reported policy shift is the first major change in anti-terrorism strategy for the Bush administration since the attacks . DT JJ NN NN VBZ DT JJ JJ NN IN JJ NN IN DT NNP NN IN DT NNS . President Bush has called the ideology of Islamic radicals the great challenge of the 21st century . NNP NNP VBZ VBN DT NN IN NNP VBZ DT JJ NN IN DT JJ NN . The president spoke Friday in Norfolk , Virginia , home to the world 's largest naval base , to a receptive audience that often broke into applause . DT NN VBD NNP IN NNP , NNP , NN TO DT NN POS JJS JJ NN , TO DT JJ NN WDT RB VBD IN NN . The president compared Islamic radicals to dictators from the past including Hitler and Stalin . DT NN VBN NNP NNS TO NNS IN DT JJ VBG NNP CC NNP . He said such militants must be taken seriously and stopped before their crimes multiply . PRP VBD JJ NNS MD VB VBN RB CC VBD IN PRP$ NNS RB . He said protecting the freedoms of others in the world protects freedom in the United States . PRP VBD VBG DT NNS IN NNS IN DT NN VBZ NN IN DT NNP NNPS . Mr. Bush stressed that Islamic radicalism is very different from Islam . NNP NNP VBD IN NNP NN VBZ RB JJ IN NNP . During his speech , a protester in the audience yelled , ' Mr. President , war is terror , ' and revealed a shirt saying ' Dump Bush . ' IN PRP$ NN , DT NN IN DT NN VBD , `` NNP NNP , NN VBZ NN , `` CC VBD DT NN VBG `` NNP NNP . `` He was escorted out of the auditorium , as other audience members voiced their disapproval of him . PRP VBD VBN IN IN DT NN , IN JJ NN NNS VBD PRP$ NN IN PRP . Afghan authorities say a roadside bomb in Afghanistan 's southern Kandahar province killed two police officers and wounded three others . JJ NNS VBP DT NN NN IN NNP POS JJ NNP NN VBD CD NNS NNS CC VBD CD NNS . A provincial spokesman said the intelligence chief of the capital city of Kabul was in the convoy , but the bomb missed him because he was in another car . DT JJ NN VBD DT NN NN IN DT NN NN IN NNP VBD IN DT NN , CC DT NN VBD PRP IN PRP VBD IN DT NN . Separately , coalition and Afghan forces killed more 30 Taleban fighters in the southern Afghan province of Zabul Saturday . RB , NN CC JJ NNS VBN RBR CD NNP NNS IN DT JJ JJ NN IN NNP NNP . No Afghan or coalition troops were hurt in the battle . DT JJ CC NN NNS VBD VBN IN DT NN . In another incident , an Afghan army commander said fighting in Zabul left two Taliban dead and at least two others captured . IN DT NN , DT JJ NN NN VBD NN IN NNP VBD CD NNP JJ CC IN JJS CD NNS VBD . The Taleban ruled Afghanistan between 1996 and 2001 , when they were toppled in a US-led invasion . DT NNP VBD NNP IN CD CC CD , WRB PRP VBD VBN IN DT JJ NN . They are now waging an insurgency against the government and its allies . PRP VBP RB VBG DT NN IN DT NN CC PRP$ NNS . Nigerian health officials say a deadly strain of bird flu has been detected for the first time in the southwestern state of Ogun . JJ NN NNS VBP DT JJ NN IN NN NN VBZ VBN VBN IN DT JJ NN IN DT JJ NN IN NNP . Officials Saturday said H5N1 was found at a single farm in that state . NNP NNP VBD NNP VBD VBN IN DT JJ NN IN DT NN . They said further testing and decontaminating processes are under way . PRP VBD JJ NN CC NN NNS VBP IN NN . Health experts fear the disease could spread from Ogun to nearby Lagos , home to more than 13 million people . NNP NNS VBP DT NN MD VB IN NNP TO JJ NNP , NN TO JJR IN CD CD NNS . Also Saturday , Poland confirmed a second outbreak of H5N1 among wild birds . RB NNP , NNP VBD DT JJ NN IN NNP IN JJ NNS . The nation 's chief veterinary officer told reporters that a dead infected swan was found in a western town bordering Germany . DT NN POS JJ JJ NN VBD NNS IN DT JJ JJ NN VBD VBN IN DT JJ NN VBG NNP . In recent days , dead swans with H5N1 were discovered in the central Polish town of Torun . IN JJ NNS , JJ NNS IN NNP VBD VBN IN DT JJ JJ NN IN NNP . Avian flu has spread from Asia to Europe , Africa and the Middle East . JJ NN VBZ VBN IN NNP TO NNP , NNP CC DT NNP NNP . The World Health Organization says bird flu has killed 97 people since 2003 , mostly in Asia . DT NNP NNP NNP VBZ NN NN VBZ VBN CD NNS IN CD , RB IN NNP . U.S. Democratic presidential candidate Barack Obama met Sunday with T. Boone Pickens , a billionaire oilman and Republican , to discuss the future of U.S. energy policy . NNP JJ JJ NN NNP NNP VBD NNP IN NNP NNP NNP , DT NN NN CC JJ , TO VB DT NN IN NNP NN NN . Before the meeting in Reno , Nevada , Senator Obama dismissed questions about Pickens 's involvement in the 2004 presidential election . IN DT NN IN NNP , NNP , NNP NNP VBD NNS IN NNP POS NN IN DT CD JJ NN . Pickens contributed $ 3 million to a group called ' Swift Boat Veterans for Truth , ' which sought to discredit the Vietnam war service of then-Democratic presidential nominee John Kerry . NNP VBD $ CD CD TO DT NN VBN `` NNP NNP NNP IN NNP , `` WDT VBD TO VB DT NNP NN NN IN JJ JJ NN NNP NNP . The attacks were seen as a factor in President George Bush 's 2004 victory . DT NNS VBD VBN IN DT NN IN NNP NNP NNP POS CD NN . Pickens has endorsed neither Obama nor Republican candidate John McCain . NNP VBZ VBN DT NNP CC JJ NN NNP NNP . Pickens is promoting a national energy plan that relies on natural gas to cut U.S. dependence on foreign oil . NNP VBZ VBG DT JJ NN NN WDT VBZ IN JJ NN TO VB NNP NN IN JJ NN . Pickens met last week with Senator McCain , who had no public appearances scheduled Sunday . NNP VBD JJ NN IN NNP NNP , WP VBD DT JJ NNS VBN NNP . U.S.-based Muslim groups have joined governments and organizations around the world in condemning Thursday 's deadly bombings in London . JJ NN NNS VBP VBN NNS CC NNS IN DT NN IN VBG NNP POS JJ NNS IN NNP . In a statement , the Washington-based Council on American-Islamic Relations condemned the attacks as ' barbaric crimes , ' which it said ' can never be justified or excused . ' IN DT NN , DT JJ NNP IN NNP NNP VBD DT NNS IN `` JJ NNS , `` WDT PRP VBD `` MD RB VB VBN CC VBN . `` The group has said in the past that those who commit acts of terror in the name of Islam are betraying that religion 's values . DT NN VBZ VBN IN DT NN IN DT WP VBP NNS IN NN IN DT NN IN NNP VBP VBG DT NN POS NNS . In a separate statement , the Muslim Public Affairs Council extended condolences to the families of the victims and to the British people . IN DT JJ NN , DT NNP NNP NNP NNP VBD NNS TO DT NNS IN DT NNS CC TO DT JJ NNS . It called the bombings an ' attack against humanity . ' PRP VBD DT NNS DT `` NN IN NN . `` An Iranian exile has accused Tehran of building a secret underground facility for enriching uranium at the Parchin military complex in northern Iran . DT JJ NN VBZ VBN NNP IN VBG DT JJ NN NN IN VBG NN IN DT NNP JJ NN IN JJ NNP . Ali Reza Jafarzadeh , who has previously revealed accurate information about two hidden nuclear sites in Iran , told VOA Thursday that the Parchin facility was recently completed . NNP NNP NNP , WP VBZ RB VBN JJ NN IN CD JJ JJ NNS IN NNP , VBD NNP NNP IN DT NNP NN VBD RB VBN . Mr. Jafarzadeh cited what he called sources inside the regime . NNP NNP VBD WP PRP VBD NNS IN DT NN . He said the new facility has the capability to enrich uranium using laser technology . PRP VBD DT JJ NN VBZ DT NN TO VB NN VBG NN NN . In certain forms , enriched uranium can be used to fuel nuclear weapons . IN JJ NNS , VBN NN MD VB VBN TO VB JJ NNS . In January , international nuclear inspectors visited Parchin , but Tehran denied a second request to revisit the facility . IN NNP , JJ JJ NNS VBD NNP , CC NNP VBD DT JJ NN TO VB DT NN . The United States has alleged that Iran is engaged in secret nuclear weapons research at Parchin , a charge Iran denies . DT NNP NNPS VBZ VBN IN NNP VBZ VBN IN JJ JJ NNS NN IN NNP , DT NN NNP VBZ . Mr. Jafarzadeh previously was the spokesman for the National Council of Resistance of Iran , which Washington has designated as a terrorist organization . NNP NNP RB VBD DT NN IN DT NNP NNP IN NNP IN NNP , WDT NNP VBZ VBN IN DT JJ NN . Iraqi officials say anti-American Shi'ite cleric Moqtada al-Sadr has returned to Iraq , after a nearly three-year absence . JJ NNS VBP JJ NNP NN NNP NNP VBZ VBN TO NNP , IN DT RB JJ NN . Sadrist officials say the radical and influential figure returned to his family home in the city of Najaf on Wednesday . NNP NNS VBP DT JJ CC JJ NN VBD TO PRP$ NN NN IN DT NN IN NNP IN NNP . Al-Sadr has been living in Iran , and it is unclear how long he plans to stay in Iraq . NNP VBZ VBN VBG IN NNP , CC PRP VBZ JJ WRB RB PRP VBZ TO VB IN NNP . The cleric emerged as a key U.S. foe after the 2003 invasion of Iraq , leading two uprisings carried out by his Mehdi Army against American forces . DT NN VBD IN DT JJ NNP NN IN DT CD NN IN NNP , VBG CD NNS VBN RP IN PRP$ NNP NNP IN JJ NNS . Al-Sadr 's political movement was a key player following last year 's disputed elections in Iraq . NNP POS JJ NN VBD DT JJ NN VBG JJ NN POS JJ NNS IN NNP . The cleric 's bloc worked out a deal to be part of the new Iraqi government , and its support helped Prime Minister Nouri al-Maliki secure a second term . DT NN POS NN VBD RP DT NN TO VB NN IN DT JJ JJ NN , CC PRP$ NN VBD NNP NNP NNP NNP VB DT JJ NN . The Sadrists won 39 out of 325 seats in parliament in the March , 2010 , elections . DT NNS VBD CD IN IN CD NNS IN NN IN DT NNP , CD , NNS . British director Ken Loach 's The Wind that Shakes the Barley - a drama about the struggle for Irish independence in the 1920s - has won the Palme d'Or , the top prize at the Cannes Film Festival . JJ NN NNP NNP POS DT NNP WDT VBZ DT NNP IN DT NN IN DT NN IN JJ NN IN DT NNS : VBZ VBN DT NNP NNP , DT JJ NN IN DT NNP NNP NNP . The runner-up prize , The Grand Prix , was won by the French film Flanders . DT NN NN , DT NNP NNP , VBD VBN IN DT JJ NN NNP . Other winners in this year 's Cannes festival include Mexico 's Alejandro Gonzales Inarritu as Best Director . JJ NNS IN DT NN POS NNP NN VBP NNP POS NNP NNP NNP IN NNP NNP . The female cast of the Spanish film Volver won collectively as Best actress - and the Best Actor award also want to a cast for Days of Glory , about North African soldiers defending France during World War II . DT JJ NN IN DT JJ NN NNP VBD RB IN JJS NN : CC DT JJS NN NN RB VBP TO DT NN IN NNS IN NNP , IN JJ JJ NNS VBG NNP IN NNP NNP NNP . Witnesses say a group of Palestinian policemen firing in the air took over the parliament building in Gaza City Monday . NNS VBP DT NN IN JJ NNS VBG IN DT NN VBD RP DT NN NN IN NNP NNP NNP . Eyewitnesses say about 30 policemen entered the compound and closed the gates behind them . NNS VBP IN CD NNS VBD DT NN CC VBD DT NNS IN PRP . Some policemen were seen taking up positions on the roof . DT NNS VBD VBN VBG RP NNS IN DT NN . It was not immediately clear why they took over the building . PRP VBD RB RB JJ WRB PRP VBD RP DT NN . Last week , Palestinian police and Fatah party activists held protests across the West Bank and Gaza Strip following the defeat of the long-dominant Fatah faction by the militant Hamas group in Wednesday 's parliamentary elections . JJ NN , JJ NN CC NNP NN NNS VBD NNS IN DT NNP NNP CC NNP NNP VBG DT NN IN DT JJ NNP NN IN DT JJ NNP NN IN NNP POS JJ NNS . Protesters demanded that Fatah leaders resign , and also warned against allowing Hamas to take control of Palestinian security forces . NNS VBD IN NNP NNS VB , CC RB VBD IN VBG NNP TO VB NN IN JJ NN NNS . The European Union has submitted a package of proposals to Iran aimed at ending a long-running standoff over Tehran 's nuclear program . DT NNP NNP VBZ VBN DT NN IN NNS TO NNP VBN IN VBG DT JJ NN IN NNP POS JJ NN . The offer was transmitted Friday by the ambassadors of Britain , France and Germany , which have been negotiating with Tehran to seek guarantees that its nuclear program is peaceful . DT NN VBD VBN NNP IN DT NNS IN NNP , NNP CC NNP , WDT VBP VBN VBG IN NNP TO VB NNS IN PRP$ JJ NN VBZ JJ . Details of the plan were not immediately known . NNS IN DT NN VBD RB RB VBN . But diplomats quoted by the New York Times said Europe planned to offer Iran a sweeping proposal allowing it to acquire nuclear reactors and fuel and achieve a full economic relationship with the West if it ends its suspected weapons program . CC NNS VBN IN DT NNP NNP NNP VBD NNP VBD TO VB NNP DT JJ NN VBG PRP TO VB JJ NNS CC NN CC VB DT JJ JJ NN IN DT NNP IN PRP VBZ PRP$ JJ NNS NN . The report says the proposal seeks a pledge by Iran to end any uranium conversion and enrichment activities . DT NN VBZ DT NN VBZ DT NN IN NNP TO VB DT NN NN CC NN NNS . A spokesman for the International Atomic Energy Agency said Friday a special session will be held Tuesday to discuss Iran 's threat to resume sensitive nuclear fuel cycle work . DT NN IN DT NNP NNP NNP NNP VBD NNP DT JJ NN MD VB VBN NNP TO VB NNP POS NN TO VB JJ JJ NN NN NN . Three bombings in northern Iraq killed six people Saturday , including one child . CD NNS IN JJ NNP VBD CD NNS NNP , VBG CD NN . In one attack , police say a roadside bomb exploded about 80 kilometers south of Mosul , killing two police officers and one soldier . IN CD NN , NNS VBP DT NN NN VBD IN CD NNS RB IN NNP , VBG CD NNS NNS CC CD NN . In a second attack , a roadside bomb targeting an Iraqi army patrol exploded about 25 kilometers south of Mosul , killing the child and one soldier . IN DT JJ NN , DT NN NN VBG DT JJ NN NN VBD IN CD NNS RB IN NNP , VBG DT NN CC CD NN . The third bombing took place in Fallujah , about 50 kilometers west of Baghdad . DT JJ NN VBD NN IN NNP , IN CD NNS JJS IN NNP . Police say two bombs exploded near the home of a former police officer , killing a woman . NNS VBP CD NNS VBD IN DT NN IN DT JJ NN NN , VBG DT NN . Insurgent attacks remain common in some areas of Iraq , although such violence has dropped significantly since reaching its highest levels between 2005 to 2007 . JJ NNS VBP JJ IN DT NNS IN NNP , IN JJ NN VBZ VBN RB IN VBG PRP$ JJS NNS IN CD TO CD . The International Committee of the Red Cross says one of its aid workers has been killed in Haiti . DT NNP NNP IN DT NNP NNP VBZ CD IN PRP$ NN NNS VBZ VBN VBN IN NNP . In Geneva Friday , a spokesman for the aid agency said Joel Cauvin , a Haitian staff member , was found dead Thursday . IN NNP NNP , DT NN IN DT NN NN VBD NNP NNP , DT JJ NN NN , VBD VBN JJ NNP . He said Mr. Cauvin was abducted Wednesday night near his home in Port-au-Prince . PRP VBD NNP NNP VBD VBN NNP NN IN PRP$ NN IN NN . The ICRC said it has no information that the killing was targeted at the agency . DT NNP VBD PRP VBZ DT NN IN DT NN VBD VBN IN DT NN . It said it will continue its humanitarian operations in Haiti . PRP VBD PRP MD VB PRP$ JJ NNS IN NNP . Political and gang violence has plagued the country since President Jean-Bertrand Arrested was ousted in February 2004 following an armed revolt . NN CC NN NN VBZ VBN DT NN IN NNP NNP NNP VBD VBN IN NNP CD VBG DT JJ NN . Last week , the United Nations Security Council agreed to add another 1,000 soldiers and police to the peacekeeping mission ahead of elections later this year . JJ NN , DT NNP NNP NNP NNP VBD TO VB DT CD NNS CC NNS TO DT VBG NN RB IN NNS RBR DT NN . That would bring the number of troops in Haiti to 7,500 . DT MD VB DT NN IN NNS IN NNP TO CD . Colombian police say suspected leftist rebels have executed at least seven farm workers involved in coca harvesting in the southwest of the country . JJ NNS VBP VBN JJ NNS VBP VBN IN JJS CD NN NNS VBN IN NN NN IN DT JJS IN DT NN . Authorities say the attack was carried out Wednesday in the province of Narino by gunmen from Revolutionary Armed Forces of Colombia , or FARC . NNS VBP DT NN VBD VBN IN NNP IN DT NN IN NNP IN NNS IN NNP NNP NNS IN NNP , CC NNP . They say the rebel group killed the farm workers as part of its battle for ownership of lucrative coca fields used in the production of cocaine . PRP VBP DT NN NN VBD DT NN NNS IN NN IN PRP$ NN IN NN IN JJ NN NNS VBN IN DT NN IN NN . FARC militants have been fighting a long-running conflict with far-right paramilitaries in the region , with each side trying to control drug smuggling routes to Central America . NNP NNS VBP VBN VBG DT JJ NN IN JJ NNS IN DT NN , IN DT NN VBG TO VB NN VBG NNS TO NNP NNP . U.S. Defense Secretary Donald Rumsfeld has left Washington on a trip scheduled to take him to several Asian and European nations . NNP NNP NNP NNP NNP VBZ VBN NNP IN DT NN VBN TO VB PRP TO JJ JJ CC JJ NNS . His first stop is China , where he is scheduled to meet with his counterpart General Cao Gangchuan and Chinese President Hu Jintao . PRP$ JJ NN VBZ NNP , WRB PRP VBZ VBN TO VB IN PRP$ NN NNP NNP NNP CC JJ NNP NNP NNP . Talks are expected to focus on military relations between the two nations . NNS VBP VBN TO VB IN JJ NNS IN DT CD NNS . Relations have been strained in recent years over the Taiwan issue , China 's rapid military buildup and the 2001 collision between a U.S. surveillance plane and a Chinese fighter jet . NNP VBP VBN VBN IN JJ NNS IN DT NNP NN , NNP POS JJ JJ NN CC DT CD NN IN DT NNP NN NN CC DT JJ NN NN . Mr. Rumsfeld is scheduled to tour the headquarters of China 's Second Artillery Corps , which controls the country 's strategic missiles . NNP NNP VBZ VBN TO VB DT NN IN NNP POS JJ NNP NNP , WDT VBZ DT NN POS JJ NNS . Chinese officials denied a request to visit the national military command center . JJ NNS VBD DT NN TO VB DT JJ JJ NN NN . The Defense Secretary is also scheduled to visit South Korea , Mongolia , Kazakhstan and Lithuania . DT NNP NNP VBZ RB VBN TO VB NNP NNP , NNP , NNP CC NNP . The United Nations ' special envoy for human rights has visited with prisoners in a northwest Burmese jail . DT NNP NNPS POS JJ NN IN JJ NNS VBZ VBN IN NNS IN DT JJ JJ NN . Officials say Tomas Ojea Quintana traveled to the northwestern state of Rakhine to meet Wednesday with detainees being held at the Butheetaung prison near the border with Bangladesh . NNS VBP NNP NNP NNP VBD TO DT JJ NN IN NNP TO VB NNP IN NNS VBG VBN IN DT NNP NN IN DT NN IN NNP . He is also expected to visit Burma 's infamous Insein prison near Rangoon , and travel to Naypyidaw , Burma 's administrative capital , to meet with several officials from Burma 's military government . PRP VBZ RB VBN TO VB NNP POS JJ NNP NN IN NNP , CC NN TO NNP , NNP POS JJ NN , TO VB IN JJ NNS IN NNP POS JJ NN . He is scheduled to leave Burma on Friday . PRP VBZ VBN TO VB NNP IN NNP . Ahead of his trip to the region , the military released National League for Democracy vice chairman Tin Oo , after seven years of detention . NN IN PRP$ NN TO DT NN , DT JJ VBN NNP NNP IN NNP NN NN NNP NNP , IN CD NNS IN NN . NLD leader Aung San Suu Kyi remains one of 2,100 political dissidents being held in Burma . NNP NN NNP NNP NNP NNP VBZ CD IN CD JJ NNS VBG VBN IN NNP . She has been under some form of detention in Burma for 14 of the past 20 years . PRP VBZ VBN IN DT NN IN NN IN NNP IN CD IN DT JJ CD NNS . The son of professional wrestler Hulk Hogan has been released from a Florida hospital , after being involved in an August 26 car crash . DT NN IN JJ NN NNP NNP VBZ VBN VBN IN DT NNP NN , IN VBG VBN IN DT NNP CD NN NN . Police in Clearwater , Florida say Nick Bollea was driving his Toyota Supra sports car at a high rate of speed when it hit a median , flipped , and struck a tree . NNS IN NNP , NNP VBP NNP NNP VBD VBG PRP$ NNP NNP NNS NN IN DT JJ NN IN NN WRB PRP VBD DT NN , VBD , CC VBD DT NN . Clearwater Police spokesman Wayne Shelor said the car was destroyed . NNP NNP NN NNP NNP VBD DT NN VBD VBN . Bollea and a companion , 22-year-old John Graziano , were extricated from the vehicle and airlifted to Bayfront Medical Center in St. Petersburg . NNP CC DT NN , JJ NNP NNP , VBD VBN IN DT NN CC VBN TO NNP NNP NNP IN NNP NNP . Bollea was released from the hospital on August 27 , while Graziano is reportedly in critical condition . NNP VBD VBN IN DT NN IN NNP CD , IN NNP VBZ RB IN JJ NN . Shelor said alcohol did not appear to be a factor in the crash , with excessive speed the likely culprit . NNP VBD NN VBD RB VB TO VB DT NN IN DT NN , IN JJ NN DT JJ NN . Seventeen-year-old Nick Bollea appears on the reality TV show Hogan Knows Best with his father , mother , and sister . JJ NNP NNP VBZ IN DT NN NN NN NNP NNP NNP IN PRP$ NN , NN , CC NN . An Iraqi man convicted in the 2004 kidnapping and killing of a British aid worker may have escaped from prison . DT JJ NN VBN IN DT CD NN CC NN IN DT JJ NN NN MD VB VBN IN NN . A lawyer for former Care International worker Margaret Hassan told the French news agency that Ali Lutfi Jassar al-Rawi did not appear at a Thursday appeal hearing . DT NN IN JJ NNP NNP NN NNP NNP VBD DT JJ NN NN WDT NNP NNP NNP NNP VBD RB VB IN DT NNP NN NN . Hassan 's lawyer says Iraqi officials have told him Jassar is missing from prison and his whereabouts are unknown . NNP POS NN VBZ JJ NNS VBP VBN PRP NNP VBZ VBG IN NN CC PRP$ NNS VBP JJ . Last year , a Baghdad court sentenced Jassar to life in prison for his role in Hassan 's death . JJ NN , DT NNP NN VBD NNP TO NN IN NN IN PRP$ NN IN NNP POS NN . Iraqi officials had sentenced a second man , Mustafa Salman al-Jibouri , to life in the case but later reduced his sentence on appeal . JJ NNS VBD VBN DT JJ NN , NNP NNP NNP , TO NN IN DT NN CC RB VBD PRP$ NN IN NN . Hassan had lived in Iraq for 30 years and served as the head of Care International in Baghdad . NNP VBD VBN IN NNP IN CD NNS CC VBD IN DT NN IN NNP NNP IN NNP . After she was kidnapped , she appeared in several videos appealing for British forces to withdraw from Iraq . IN PRP VBD VBN , PRP VBD IN JJ NNS VBG IN JJ NNS TO VB IN NNP . Investigators have not found her body . NNS VBP RB VBN PRP$ NN . The United States says it is monitoring the situation closely regarding Iran 's controversial presidential election , including reports of voting irregularities . DT NNP NNPS VBZ PRP VBZ VBG DT NN RB VBG NNP POS JJ JJ NN , VBG NNS IN NN NNS . White House spokesman Robert Gibbs says the U.S. is impressed by the ' vigorous debate and enthusiasm ' the election generated , particularly among young Iranians . NNP NNP NN NNP NNP VBZ DT NNP VBZ VBN IN DT `` JJ NN CC NN `` DT NN VBD , RB IN JJ NNS . Speaking Saturday in Canada , U.S. Secretary of State Hillary Clinton said the United States hopes the outcome of the Iranian election reflects the ' genuine will and desire of the Iranian people . ' VBG NNP IN NNP , NNP NNP IN NNP NNP NNP VBD DT NNP NNPS VBZ DT NN IN DT JJ NN VBZ DT `` JJ NN CC NN IN DT JJ NNS . `` She said like the rest of the world , the U.S. is waiting and watching to see what the Iranian people decide . PRP VBD IN DT NN IN DT NN , DT NNP VBZ VBG CC VBG TO VB WP DT JJ NNS VBP . Standing alongside Clinton , Canadian Foreign Minister Lawrence Cannon said his country is ' deeply concerned ' with reports of voting irregularities in Iran . VBG IN NNP , JJ NNP NNP NNP NNP VBD PRP$ NN VBZ `` RB JJ `` IN NNS IN NN NNS IN NNP . He called on Iranian authorities to conduct a ' fair and transparent ' counting of the ballots . PRP VBD RP JJ NNS TO VB DT `` JJ CC JJ `` NN IN DT NNS . U.S. Olympic speedskater Joey Cheek is following through on his promise to lend a helping hand to children in Africa . NNP NNP NN NNP NNP VBZ VBG IN IN PRP$ NN TO VB DT VBG NN TO NNS IN NNP . Cheek met with U.S. lawmakers Tuesday to promote the work of the humanitarian aid group Right to Play . NNP VBD IN NNP NNS NNP TO VB DT NN IN DT JJ NN NN RB TO VB . The gold and silver medalist made headlines during the Olympics when he donated his $ 40,000 Olympic bonus to support the group 's work in Sudan 's violence wracked Darfur region . DT NN CC NN NN VBD NNS IN DT NNS WRB PRP VBD PRP$ $ CD NNP NN TO VB DT NN POS NN IN NNP POS NN VBD NNP NN . The organization , founded by Norwegian Olympic champ Johann Koss , emphasizes sporting and recreational activities for children in 23 countries , 14 of them in Africa . DT NN , VBN IN JJ NNP NN NNP NNP , VBZ NN CC JJ NNS IN NNS IN CD NNS , CD IN PRP IN NNP . Cheek told VOA 's English to Africa service that he plans to visit Zambia in April to observe some of the group 's projects . NNP VBD NNP POS NNP TO NNP NN IN PRP VBZ TO VB NNP IN NNP TO VB DT IN DT NN POS NNS . They include AIDS awareness and prevention , and vaccinations against diseases . PRP VBP NNP NN CC NN , CC NNS IN NNS . Mexican federal police say they have captured a regional leader of the Zetas drug gang , who allegedly trafficked drugs from the Dominican Republic and Panama to the United States . JJ JJ NNS VBP PRP VBP VBN DT JJ NN IN DT NNP NN NN , WP RB VBD NNS IN DT NNP NNP CC NNP TO DT NNP NNPS . Security official Luis Cardenas said Thursday that Eduardo Ramirez Valencia was detained Wednesday along with an accomplice in Hidalgo state . NNP NN NNP NNP VBD NNP IN NNP NNP NNP VBD VBN NNP IN IN DT NN IN NNP NN . Cardenas also said Ramirez was thought to have collaborated closely with Heriberto Lazcano , an alleged Zeta leader . NNP RB VBD NNP VBD VBN TO VB VBN RB IN NNP NNP , DT JJ NNP NN . Authorities have blamed the Zetas , in part , for an escalation in violence in northeastern Mexico this year . NNS VBP VBN DT NNP , IN NN , IN DT NN IN NN IN JJ NNP DT NN . Mexico 's northern border is being rocked by violent crime and clashes involving groups battling for control of drug-trafficking routes into the United States . NNP POS JJ NN VBZ VBG VBN IN JJ NN CC NNS VBG NNS VBG IN NN IN JJ NNS IN DT NNP NNPS . About 30,000 people have been killed in Mexico 's drug war since President Felipe Calderon took office in late 2006 and began cracking down on the cartels . IN CD NNS VBP VBN VBN IN NNP POS NN NN IN NNP NNP NNP VBD NN IN JJ CD CC VBD VBG RP IN DT NNS . Britain 's Prime Minister Tony Blair says last week 's terrorist attacks in London were probably carried out by Islamist extremists . NNP POS NNP NNP NNP NNP VBZ JJ NN POS JJ NNS IN NNP VBD RB VBN RP IN NNP NNS . Speaking to parliament , Mr. Blair declined to give details on an ongoing police investigation . VBG TO NN , NNP NNP VBD TO VB NNS IN DT JJ NN NN . But he praised the work of police and emergency services after the blasts on underground trains and a double-decker bus . CC PRP VBD DT NN IN NN CC NN NNS IN DT NNS IN JJ NNS CC DT JJ NN . Opposition leader Michael Howard said he hopes the government in coming weeks will try to uncover possible security flaws exploited in the attacks . NN NN NNP NNP VBD PRP VBZ DT NN IN VBG NNS MD VB TO VB JJ NN NNS VBN IN DT NNS . Meantime , police say the confirmed number of dead in the bombings has risen to 52 , with about 700 people injured . RB , NNS VBP DT VBN NN IN JJ IN DT NNS VBZ VBN TO CD , IN RB CD NNS VBN . Forensic experts say it may be weeks before all of the victims are publicly identified . JJ NNS VBP PRP MD VB NNS IN DT IN DT NNS VBP RB VBN . London Mayor Ken Livingstone became the first to sign a book of condolences for the victims , writing ' the city will endure . ' NNP NNP NNP NNP VBD DT JJ TO VB DT NN IN NNS IN DT NNS , VBG `` DT NN MD VB . `` New Zealand occupied the German protectorate of Western Samoa at the outbreak of World War I in 1914 . NNP NNP VBD DT JJ NN IN JJ NNP IN DT NN IN NNP NNP NNP IN CD . It continued to administer the islands as a mandate and then as a trust territory until 1962 , when the islands became the first Polynesian nation to reestablish independence in the 20th century . PRP VBD TO VB DT NNS IN DT NN CC RB IN DT NN NN IN CD , WRB DT NNS VBD DT JJ JJ NN TO VB NN IN DT JJ NN . The country dropped the ' Western ' from its name in 1997 . DT NN VBD DT `` JJ `` IN PRP$ NN IN CD . Guam was ceded to the US by Spain in 1898 . NNP VBD VBN TO DT NNP IN NNP IN CD . Captured by the Japanese in 1941 , it was retaken by the US three years later . VBN IN DT NNS IN CD , PRP VBD VBN IN DT NNP CD NNS RB . The military installation on the island is one of the most strategically important US bases in the Pacific . DT JJ NN IN DT NN VBZ CD IN DT RBS RB JJ NNP NNS IN DT NNP . After three decades as part of the UN Trust Territory of the Pacific under US administration , this westernmost cluster of the Caroline Islands opted for independence in 1978 rather than join the Federated States of Micronesia . IN CD NNS IN NN IN DT NNP NNP NNP IN DT NNP IN NNP NN , DT JJ NN IN DT NNP NNP VBD IN NN IN CD RB IN VB DT NNP NNPS IN NNP . A Compact of Free Association with the US was approved in 1986 but not ratified until 1993 . DT NN IN NNP NNP IN DT NNP VBD VBN IN CD CC RB VBN IN CD . It entered into force the following year when the islands gained independence . PRP VBD IN NN DT JJ NN WRB DT NNS VBD NN . Burkina Faso is a poor , landlocked country that relies heavily on cotton and gold exports for revenue . NNP NNP VBZ DT JJ , JJ NN WDT VBZ RB IN NN CC NN NNS IN NN . The country has few natural resources and a weak industrial base . DT NN VBZ JJ JJ NNS CC DT JJ JJ NN . About 90 % of the population is engaged in subsistence agriculture , which is vulnerable to periodic drought . RB CD NN IN DT NN VBZ VBN IN NN NN , WDT VBZ JJ TO JJ NN . Cotton is the main cash crop . NN VBZ DT JJ NN NN . Since 1998 , Burkina Faso has embarked upon a gradual privatization of state-owned enterprises and in 2004 revised its investment code to attract foreign investment . IN CD , NNP NNP VBZ VBN IN DT JJ NN IN JJ NNS CC IN CD VBN PRP$ NN NN TO VB JJ NN . As a result of this new code and other legislation favoring the mining sector , the country has seen an upswing in gold exploration and production . IN DT NN IN DT JJ NN CC JJ NN VBG DT NN NN , DT NN VBZ VBN DT NN IN NN NN CC NN . By 2010 , gold had become the main source of export revenue . IN CD , NN VBD VBN DT JJ NN IN NN NN . Burundi 's first democratically elected president was assassinated in October 1993 after only 100 days in office , triggering widespread ethnic violence between Hutu and Tutsi factions . NNP POS JJ RB VBN NN VBD VBN IN NNP CD IN RB CD NNS IN NN , VBG JJ JJ NN IN NNP CC NNP NNS . More than 2,00,000 Burundians perished during the conflict that spanned almost a dozen years . JJR IN CD NNS VBN IN DT NN WDT VBD RB DT NN NNS . Hundreds of thousands of Burundians were internally displaced or became refugees in neighboring countries . NNS IN NNS IN NNS VBD RB JJ CC VBD NNS IN JJ NNS . An internationally brokered power-sharing agreement between the Tutsi-dominated government and the Hutu rebels in 2003 paved the way for a transition process that led to an integrated defense force , established a new constitution in 2005 , and elected a majority Hutu government in 2005 . DT RB VBN JJ NN IN DT JJ NN CC DT NNP NNS IN CD VBD DT NN IN DT NN NN WDT VBD TO DT JJ NN NN , VBD DT JJ NN IN CD , CC VBD DT NN NNP NN IN CD . The new government , led by President Pierre NKURUNZIZA , signed a South African brokered ceasefire with the country 's last rebel group in September of 2006 but still faces many challenges . DT JJ NN , VBN IN NNP NNP NNP , VBD DT JJ JJ JJ NN IN DT NN POS JJ NN NN IN NNP IN CD CC RB VBZ JJ NNS . THREE BULLS for a long time pastured together . NN NNS IN DT JJ NN VBN RB . A Lion lay in ambush in the hope of making them his prey , but was afraid to attack them while they kept together . DT NN VBD IN NN IN DT NN IN VBG PRP PRP$ NN , CC VBD JJ TO VB PRP IN PRP VBD RB . Having at last by guileful speeches succeeded in separating them , he attacked them without fear as they fed alone , and feasted on them one by one at his own leisure . VBG IN JJ IN JJ NNS VBN IN VBG PRP , PRP VBD PRP IN NN IN PRP VBD RB , CC VBN IN PRP CD IN CD IN PRP$ JJ NN . Union is strength . NN VBZ NN . THE SWALLOW and the Crow had a contention about their plumage . DT NN CC DT NN VBD DT NN IN PRP$ NN . The Crow put an end to the dispute by saying , ' Your feathers are all very well in the spring , but mine protect me against the winter . ' DT NN VBD DT NN TO DT NN IN VBG , `` PRP$ NNS VBP DT RB RB IN DT NN , CC NN VBP PRP IN DT NN . `` Fair weather friends are not worth much . JJ NN NNS VBP RB JJ NN . I just read that last year 41,53,237 people got married . PRP RB VBD IN JJ NN CD NNS VBD VBN . I do n't want to start any trouble , but should n't that be an even number ? PRP VBP RB VB TO VB DT NN , CC MD RB DT VB DT RB NN . Burma 's second ranking official has arrived in Bangladesh for talks that will focus on border issues and a possible land leasing deal for Bangladeshi farmers . NNP POS JJ JJ NN VBZ VBN IN NNP IN NNS WDT MD VB IN NN NNS CC DT JJ NN NN NN IN JJ NNS . Vice Senior General Maung Aye brought an entourage of 55 officials with him , including seven ministers , for the three-day visit . NNP NNP NNP NNP NNP VBD DT NN IN CD NNS IN PRP , VBG CD NNS , IN DT JJ NN . During meetings with Bangladeshi officials the delegation will discuss sea border issues , cross-border road projects and a plan to lease border land to farmers in Bangladesh for cultivation . IN NNS IN JJ NNS DT NN MD VB NN NN NNS , JJ NN NNS CC DT NN TO VB NN NN TO NNS IN NNP IN NN . The establishment of a cross-border road is expected to top the agenda . DT NN IN DT JJ NN VBZ VBN TO VB DT NN . The road is part of a plan to create an overland link between Bangladesh and China . DT NN VBZ NN IN DT NN TO VB DT JJ NN IN NNP CC NNP . The European Union 's top military advisor says a lack of equipment , including helicopters , may delay the bloc 's peacekeeping mission to Chad . DT NNP NNP POS JJ JJ NN VBZ DT NN IN NN , VBG NNS , MD VB DT NN POS NN NN TO NNP . General Henri Bentegeat says the mission also needs medical support and logistics assets . NNP NNP NNP VBZ DT NN RB VBZ JJ NN CC NNS NNS . He is to discuss the issue with EU defense ministers on Monday in Brussels . PRP VBZ TO VB DT NN IN NNP NN NNS IN NNP IN NNP . The EU plans to send about 3,000 peacekeeping troops to Chad to help secure refugee camps along Chad 's border with Sudan 's troubled Darfur region . DT NNP VBZ TO VB IN CD VBG NNS TO VB TO VB VB NN NNS IN NNP POS NN IN NNP POS JJ NNP NN . Violence from the Darfur conflict has spilled into Chad , displacing tens of thousands of people . NN IN DT NNP NN VBZ VBN IN NNP , VBG NNS IN NNS IN NNS . The first EU troops are expected to arrive in Chad in December . DT JJ NNP NNS VBP VBN TO VB IN NNP IN NNP . China and India reported new human deaths from the deadly H5N1 strain of the avian flu on Friday , as authorities in Azerbaijan and Nigeria moved to contain newly reported cases among birds . NNP CC NNP VBD JJ JJ NNS IN DT JJ NNP NN IN DT JJ NN IN NNP , IN NNS IN NNP CC NNP VBD TO VB RB VBN NNS IN NNS . China 's Health Ministry said a 20-year-old woman from the central Hunan province died from bird flu last week . NNP POS NNP NNP VBD DT JJ NN IN DT JJ NNP NN VBD IN NN NN JJ NN . Indonesian officials also reported that a woman has died from bird flu . JJ NNS RB VBD IN DT NN VBZ VBN IN NN NN . They said a second woman suspected of having the virus is in critical condition at a Jakarta hospital . PRP VBD DT JJ NN VBN IN VBG DT NN VBZ IN JJ NN IN DT NNP NN . Azerbaijan on Friday became the latest country to report an outbreak of the virus among waterfowl . NNP IN NNP VBD DT JJS NN TO VB DT NN IN DT NN IN NN . Health officials said lab tests revealed the deadly H5N1 strain among wild birds found dead near the Caspian Sea . NNP NNS VBD NN NNS VBD DT JJ NNP NN IN JJ NNS VBN JJ IN DT NNP NNP . The first cases in Africa were detected earlier this week on poultry farms in Nigeria . DT JJ NNS IN NNP VBD VBN RBR DT NN IN NN NNS IN NNP . Foreign governments and aid organization have promised to help Nigeria contain the virus , which has killed nearly 90 people worldwide since 2003 . JJ NNS CC NN NN VBP VBN TO VB NNP VB DT NN , WDT VBZ VBN RB CD NNS JJ IN CD . The European Parliament has urged European Union states to maintain their almost 16-year-old arms embargo on China in light of what lawmakers call Beijing 's lack of progress on human rights . DT NNP NNP VBZ VBN NNP NNP NNS TO VB PRP$ RB JJ NNS NN IN NNP IN NN IN WP NNS VBP NNP POS NN IN NN IN JJ NNS . A resolution approved Thursday in Strasbourg also notes China 's adoption of a so-called anti-secession law that authorizes the use of force against Taiwan if the island moves towards declaring formal independence from Beijing . DT NN VBN NNP IN NNP RB VBZ NNP POS NN IN DT JJ NN NN WDT VBZ DT NN IN NN IN NNP IN DT NN VBZ IN VBG JJ NN IN NNP . The European Union imposed the embargo in 1989 following Beijing 's bloody crackdown on pro-democracy demonstrators . DT NNP NNP VBD DT NN IN CD VBG NNP POS JJ NN IN JJ NNS . But late last year , EU member states agreed in principle to lift the restrictions by the end of June . CC RB JJ NN , NNP NN NNS VBD IN NN TO VB DT NNS IN DT NN IN NNP . In Berlin , German Chancellor Gerhard Schroeder again backed plans for lifting the ban . IN NNP , JJ NNP NNP NNP RB VBD NNS IN VBG DT NN . He told parliament the embargo is unnecessary , because China has changed much in the past 15 years . PRP VBD NN DT NN VBZ JJ , IN NNP VBZ VBN RB IN DT JJ CD NNS . An environmental organization says several countries are refusing to cooperate with an investigation of the deadly strain of bird flu . DT JJ NN VBZ JJ NNS VBP VBG TO VB IN DT NN IN DT JJ NN IN NN NN . Dutch-based Wetlands International is the non-governmental agency commissioned by the U.N. Food and Agriculture Organization to research H5N1 in wild birds . JJ NNP NNP VBZ DT JJ NN VBN IN DT NNP NNP CC NNP NNP TO VB NNP IN JJ NNS . Wetlands International says Iran , Nigeria , Sudan , Tunisia and Turkey have refused to grant access to researchers . NNP NNP VBZ NNP , NNP , NNP , NNP CC NNP VBP VBN TO VB NN TO NNS . The organization says it believes the refusals are the result of concerns by those countries about the potential impact on poultry exports and tourism if the virus is found in wild birds . DT NN VBZ PRP VBZ DT NNS VBP DT NN IN NNS IN DT NNS IN DT JJ NN IN NN NNS CC NN IN DT NN VBZ VBN IN JJ NNS . Meanwhile , European Union countries are dealing with millions of dollars in lost revenue as demand for poultry products falls off sharply . RB , NNP NNP NNS VBP VBG IN NNS IN NNS IN JJ NN IN NN IN NN NNS VBZ RP RB . Bird flu has spread from Asia to Europe , Africa and the Mideast , killing 94 people since 2003 . NN NN VBZ VBN IN NNP TO NNP , NNP CC DT NN , VBG CD NNS IN CD . Five Sudanese men have been formally charged with murdering a U.S. diplomat and his driver last year . CD JJ NNS VBP VBN RB VBN IN VBG DT NNP NN CC PRP$ NN JJ NN . The men , who could face the death penalty if convicted , entered pleas of not guilty during a hearing in a Khartoum court Thursday . DT NNS , WP MD VB DT NN NN IN VBN , VBD NNS IN RB JJ IN DT NN IN DT NNP NN NNP . The men are accused of killing John Granville , an officer with the U.S. Agency for International Development , and his driver , Abdelrahman Abbas Rahama . DT NNS VBP VBN IN VBG NNP NNP , DT NN IN DT NNP NNP IN NNP NNP , CC PRP$ NN , NNP NNP NNP . The two were shot and killed in Khartoum in the early hours of New Year 's Day , 2008 . DT CD VBD VBN CC VBN IN NNP IN DT JJ NNS IN NNP NNP POS NNP , CD . Prosecutors say the alleged assailants were Islamic extremists who decided to attack foreigners . NNS VBP DT JJ NNS VBD JJ NNS WP VBD TO VB NNS . The men have said they were tortured into confessing to the crimes . DT NNS VBP VBN PRP VBD VBN IN VBG TO DT NNS . Venezuelan prosecutors want Colombia to extradite businessman Pedro Carmona , who assumed power in Venezuela during a brief coup against President Hugo Chavez in 2002 . JJ NNS VBP NNP TO VB NN NNP NNP , WP VBD NN IN NNP IN DT JJ NN IN NNP NNP NNP IN CD . Prosecutors provided evidence Monday detailing their accusations against Carmona . NNS VBD NN NNP VBG PRP$ NNS IN NNP . They have requested that he be charged with civilian rebellion . PRP VBP VBN IN PRP VB VBN IN JJ NN . Venezuelan military officers arrested President Chavez in April 2002 and announced his resignation after at least 17 unarmed protesters were shot and killed during an anti-government rally . JJ JJ NNS VBD NNP NNP IN NNP CD CC VBD PRP$ NN IN IN JJS CD JJ NNS VBD VBN CC VBN IN DT JJ NN . Coup leaders installed Carmona as interim leader . NN NNS VBD NNP IN JJ NN . He was forced out two days later when military leaders withdrew their support and returned President Chavez to office . PRP VBD VBN IN CD NNS RB WRB JJ NNS VBD PRP$ NN CC VBD NNP NNP TO NN . Palestinian President Mahmoud Abbas says Israeli and Palestinian negotiators will meet Monday to begin talks on issues that must be resolved for a peace treaty . JJ NNP NNP NNP VBZ JJ CC JJ NNS MD VB NNP TO VB NNS IN NNS WDT MD VB VBN IN DT NN NN . Speaking in Ramallah Sunday , Mr. Abbas said teams from the two sides would hold talks on issues including the status of Jerusalem , Palestinian refugees and the borders of the future Palestinian state . VBG IN NNP NNP , NNP NNP VBD NNS IN DT CD NNS MD VB NNS IN NNS VBG DT NN IN NNP , JJ NNS CC DT NNS IN DT JJ JJ NN . Also Sunday , Israeli Prime Minister Ehud Olmert criticized the continued presence of unauthorized Israeli settler outposts in the West Bank . RB NNP , JJ NNP NNP NNP NNP VBD DT JJ NN IN JJ JJ NN NNS IN DT NNP NNP . Mr. Olmert told a group of political allies that it is a ' disgrace ' the settlements are still standing some four years after Israel pledged to dismantle them . NNP NNP VBD DT NN IN JJ NNS IN PRP VBZ DT `` NN `` DT NNS VBP RB VBG DT CD NNS IN NNP VBD TO VB PRP . In other news Sunday , Palestinian medical sources said an Israeli missile struck a car in the Gaza Strip , killing two Palestinian militants and critically wounding a third individual . IN JJ NN NNP , JJ JJ NNS VBD DT JJ NN VBD DT NN IN DT NNP NNP , VBG CD JJ NNS CC RB VBG DT JJ NN . Israel 's army confirmed the strike . NNP POS NN VBD DT NN . Gunmen in Nigeria have killed at least five police officers in an attack on a police station in the restive southern oil region early this morning Sunday . NNS IN NNP VBP VBN IN JJS CD NNS NNS IN DT NN IN DT NN NN IN DT JJ JJ NN NN RB DT NN NNP . Police spokeswoman Ireju Bares said the unidentified gunmen also stole arms and ammunition from the station at Bonny in the southern Nigerian state of Rivers . NNP NN NNP NNP VBD DT JJ NNS RB VBP NNS CC NN IN DT NN IN NNP IN DT JJ JJ NN IN NNS . A leading group of American pediatricians says some children with high cholesterol should take cholesterol lowering medications . DT VBG NN IN JJ NNS VBZ DT NNS IN JJ NN MD VB NN VBG NNS . Some doctors criticize the recommendation . DT NNS VBP DT NN . Other support it . JJ VBP PRP . There is no doubt , it has stirred up a furious debate . EX VBZ DT NN , PRP VBZ VBN RP DT JJ NN . VOA 's Carol Pearson reports . NNP POS NNP NNP VBZ . The price of crude oil hit a new record high above $ 122 a barrel in Tuesday 's New York trading . DT NN IN JJ NN VBD DT JJ NN NN IN $ CD DT NN IN NNP POS NNP NNP NN . Prices rose more than $ 2 to go as high as $ 122.73 a barrel . NNS VBD JJR IN $ CD TO VB RB JJ IN $ CD DT NN . Prices have soared on concerns that supplies might not meet growing demand after recent militant attacks on Nigeria 's oil facilities hampered exports from the world 's eighth largest oil exporter . NNS VBP VBN IN NNS IN NNS MD RB VB VBG NN IN JJ JJ NNS IN NNP POS NN NNS VBN NNS IN DT NN POS JJ JJS NN NN . Tensions in Iraq and between Western nations and Iran reinforced supply worries . NNS IN NNP CC IN JJ NNS CC NNP VBD NN NNS . The price of oil has nearly doubled over the past year . DT NN IN NN VBZ RB VBN IN DT JJ NN . The Tibetan spiritual leader who teaches age-old principles of peace and tolerance has gone high-tech , joining the online messaging service Twitter . DT JJ JJ NN WP VBZ JJ NNS IN NN CC NN VBZ VBN JJ , VBG DT JJ NN NN NNP . The Dalai Lama 's office in India set up a Twitter account this week under the name @dalailama . DT NNP NNP POS NN IN NNP VBD RP DT NNP NN DT NN IN DT NN NNP . The Buddhist leader has not personally written any messages , but his office has posted Web links to the Dalai Lama 's interviews and photos during his visit to the United States . DT NNP NN VBZ RB RB VBN DT NNS , CC PRP$ NN VBZ VBN NNP NNS TO DT NNP NNP POS NNS CC NNS IN PRP$ NN TO DT NNP NNPS . The Dalai Lama signed up for his online account Monday , a day after meeting Twitter founder Evan Williams in Los Angeles , California . DT NNP NNP VBD RP IN PRP$ JJ NN NNP , DT NN IN VBG NNP NN NNP NNP IN NNP NNP , NNP . Williams says the Dalai Lama laughed at the idea of using the social network service . NNP VBZ DT NNP NNP VBD IN DT NN IN VBG DT JJ NN NN . But as of Tuesday , the spiritual leader has attracted 69,000 followers . CC IN IN NNP , DT JJ NN VBZ VBN CD NNS . The Dalai Lama was in Florida Tuesday giving a speech on global compassion . DT NNP NNP VBD IN NNP NNP VBG DT NN IN JJ NN . United Nations Secretary-General Kofi Annan says a peace agreement that ended the civil war in southern Sudan appears to be floundering . NNP NNP NN NNP NNP VBZ DT NN NN WDT VBD DT JJ NN IN JJ NNP VBZ TO VB VBG . In a report released late Tuesday , Mr. Annan said many important pledges have not been fulfilled . IN DT NN VBN JJ NNP , NNP NNP VBD JJ JJ NNS VBP RB VBN VBN . The Khartoum-based government and the southern Sudan People 's Liberation Army signed the peace agreement in January 2005 , ending 21 years of civil war . DT JJ NN CC DT JJ NNP NNP POS NNP NNP VBD DT NN NN IN NNP CD , VBG CD NNS IN JJ NN . Mr. Annan says both sides have been observing security commitments ' reasonably well , ' but they have not embraced all the provisions of the pact . NNP NNP VBZ DT NNS VBP VBN VBG NN NNS `` RB RB , `` CC PRP VBP RB VBN PDT DT NNS IN DT NN . He says plans for elections , as well as power and wealth sharing , have not been met . PRP VBZ NNS IN NNS , RB RB IN NN CC NN NN , VBP RB VBN VBN . The U.N. secretary-general also notes that international donors have only provided a fraction of the money needed to rebuild southern Sudan . DT NNP NN RB VBZ IN JJ NNS VBP RB VBN DT NN IN DT NN VBN TO VB JJ NNP . Mexican authorities are investigating a report that a violent drug cartel has obtained anti-aircraft missiles that could be used to kill President Vicente Fox . JJ NNS VBP VBG DT NN IN DT JJ NN NN VBZ VBN JJ NNS WDT MD VB VBN TO VB NNP NNP NNP . The Mexican newspaper El~Universal says a U.S.-based private intelligence firm , Stratfor , has issued a report saying the Soviet-era weapons were purchased on the black market by a group of ex-Mexican army commandoes now working with drug traffickers . DT JJ NN NNP VBZ DT JJ JJ NN NN , NNP , VBZ VBN DT NN VBG DT JJ NNS VBD VBN IN DT JJ NN IN DT NN IN JJ NN NNS RB VBG IN NN NNS . The weapons were said to have been first acquired by Nicaragua during its civil war in the 1980s , and some could have been passed on to drug-smuggling groups . DT NNS VBD VBN TO VB VBN JJ VBN IN NNP IN PRP$ JJ NN IN DT NNS , CC DT MD VB VBN VBN IN TO JJ NNS . A Mexican prosecutor says the report lacks credibility , but says his country is contacting U.S. authorities to determine if the report is TRUE , or , in his words , ' taken from a movie script . ' DT JJ NN VBZ DT NN VBZ NN , CC VBZ PRP$ NN VBZ VBG NNP NNS TO VB IN DT NN VBZ JJ , CC , IN PRP$ NNS , `` VBN IN DT NN NN . `` President Fox has launched a massive crackdown on drug traffickers to combat a surge of drug-related violence . NNP NNP VBZ VBN DT JJ NN IN NN NNS TO VB DT NN IN JJ NN . Doctors in northwest China say they have performed the country 's first face transplant on a Chinese man who was mauled by a black bear . NNS IN JJ NNP VBP PRP VBP VBN DT NN POS JJ NN NN IN DT JJ NN WP VBD VBN IN DT JJ NN . Xijing Hospital in Shaanxi province 's Xi'an city announced it had attached a new cheek , upper lip , nose and eyebrow to a 30-year-old man . NNP NNP IN NNP NN POS JJ NN VBD PRP VBD VBN DT JJ NN , JJ NN , NN CC NN TO DT JJ NN . A single donor provided the parts for the 14-hour operation on Friday . DT JJ NN VBD DT NNS IN DT JJ NN IN NNP . Xinhua news agency reports the director of the plastic surgery department said it would be six months before the patient has feeling in his new face . NNP NN NN VBZ DT NN IN DT NN NN NN VBD PRP MD VB CD NNS IN DT NN VBZ NN IN PRP$ JJ NN . Xinhua says the man was attacked by a bear in Yunnan province two years ago and has since lived as a recluse because of his disfigurement . NNP VBZ DT NN VBD VBN IN DT NN IN NNP NN CD NNS RB CC VBZ RB VBN IN DT NN IN IN PRP$ NN . Earlier this year , surgeons in France performed the world 's first partial face transplant on a woman whose lips and nose were ripped off by a dog . RBR DT NN , NNS IN NNP VBD DT NN POS JJ JJ NN NN IN DT NN WP$ NNS CC NN VBD VBN RP IN DT NN . The leader of Nepal 's Maoist insurgency says he thinks the king will ultimately be exiled or executed to make way for a republic in the world 's only Hindu monarchy . DT NN IN NNP POS NNP NN VBZ PRP VBZ DT NN MD RB VB VBN CC VBN TO VB NN IN DT NN IN DT NN POS JJ NNP NN . In a BBC television interview broadcast Monday , top Nepali communist leader Prachanda said King Gyanendra , who seized total power a year ago , had not left any room for compromise . IN DT NNP NN NN NN NNP , JJ JJ NN NN NNP VBD NNP NNP , WP VBD JJ NN DT NN RB , VBD RB VBN DT NN IN NN . The reclusive 52-year-old Prachanda has been living underground ( in hiding ) for more than two decades . DT JJ JJ NNP VBZ VBN VBG JJ LRB IN VBG RRB IN JJR IN CD NNS . Last year , he forged a loose alliance with the main political parties to topple the king and restore democracy . JJ NN , PRP VBD DT JJ NN IN DT JJ JJ NNS TO VB DT NN CC VB NN . The Maoists have been fighting since 1996 to overthrow Nepal 's government and install communist rule , a war that has killed about 13,000 people and shattered the economy . DT NNS VBP VBN VBG IN CD TO VB NNP POS NN CC VB JJ NN , DT NN WDT VBZ VBN IN CD NNS CC VBD DT NN . Leaders in South Asia are expressing sadness at the death of Pope John Paul . NNS IN NNP NNP VBP VBG NN IN DT NN IN NNP NNP NNP . Indian President Abdul Kalam said Sunday the world has lost a church leader and a statesman who tirelessly worked for peace . JJ NNP NNP NNP VBD NNP DT NN VBZ VBN DT NN NN CC DT NN WP RB VBD IN NN . Pakistan President Pervez Musharraf said the pope had brought people of different faiths closer . NNP NNP NNP NNP VBD DT NN VBD VBN NNS IN JJ NNS RBR . In Afghanistan , President Hamid Karzai said Pope John Paul was a man with concern for all human beings . IN NNP , NNP NNP NNP VBD NNP NNP NNP VBD DT NN IN NN IN DT JJ NNS . Pope John Paul 's travels to South and Central Asia reflected his stated belief that spreading the Catholic faith and dialogue with other religions were not mutually exclusive but complimentary . NNP NNP NNP POS VBZ TO NNP CC NNP NNP VBD PRP$ JJ NN IN VBG DT JJ NN CC NN IN JJ NNS VBD RB RB JJ CC JJ . During his long papacy , the pontiff took trips to Pakistan , Bangladesh , Kazakhstan and , twice , to India . IN PRP$ JJ NN , DT NN VBD NNS TO NNP , NNP , NNP CC , RB , TO NNP . Secretary of State Condoleezza Rice leaves Sunday on a five-day trip to the Middle East . NNP IN NNP NNP NNP VBZ NNP IN DT JJ NN TO DT NNP NNP . Rice is expected to meet with Saudi King Abdullah in Jeddah and hold talks with Egypt 's president Hosni Mubarak and foreign minister Aboul Gheit . NNP VBZ VBN TO VB IN NNP NNP NNP IN NNP CC VB NNS IN NNP POS NN NNP NNP CC JJ NN NNP NNP . Later , she will meet with Palestinian Authority President Mahmoud Abbas and Israeli Prime Minister Ehud Olmert . RB , PRP MD VB IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP . President Bush said he is sending Rice to the region to lead a diplomatic effort to engage moderate leaders , to help Palestinians reform their security services and to support the Israeli-Palestinian peace process . NNP NNP VBD PRP VBZ VBG NNP TO DT NN TO VB DT JJ NN TO VB JJ NNS , TO VB NNS VB PRP$ NN NNS CC TO VB DT JJ NN NN . Ms. Rice last visited the region in July , during the 34-day war between Israel and Hezbollah militants in Lebanon . NNP NNP JJ VBD DT NN IN NNP , IN DT JJ NN IN NNP CC NNP NNS IN NNP . Italian Prime Minister Silvio Berlusconi faces a political crisis as one key ally has demanded that he put his government to a confidence vote while another has raised the possibility of withdrawing from his coalition . JJ NNP NNP NNP NNP VBZ DT JJ NN IN CD JJ NN VBZ VBN IN PRP VBD PRP$ NN TO DT NN NN IN DT VBZ VBN DT NN IN VBG IN PRP$ NN . Foreign Minister Gianfranco Fini issued the call for a confidence vote next week as Mr. Berlusconi met with his coalition allies to discuss strategy after a crushing defeat in local elections last week . NNP NNP NNP NNP VBD DT NN IN DT NN NN JJ NN IN NNP NNP VBD IN PRP$ NN NNS TO VB NN IN DT VBG NN IN JJ NNS JJ NN . Mr. Fini heads the National Alliance , a junior partner in the ruling coalition . NNP NNP VBZ DT NNP NNP , DT JJ NN IN DT NN NN . Officials of another junior partner , the Union of Christian Democrats , said its leaders are considering a withdrawal from the cabinet . NNS IN DT JJ NN , DT NNP IN NNP NNPS , VBD PRP$ NNS VBP VBG DT NN IN DT NN . Mr. Berlusconi is struggling to keep his government together , and is suggesting a cabinet reshuffle and review of the government 's program . NNP NNP VBZ VBG TO VB PRP$ NN RB , CC VBZ VBG DT NN NN CC NN IN DT NN POS NN . Coalition parties went down to defeat in 11 of 13 regional elections . NN NNS VBD RB TO VB IN CD IN CD JJ NNS . Previously , the coalition controlled eight of the regions . RB , DT NN VBD CD IN DT NNS . The Pakistani military says its troops killed 30 militants in the country 's northwest Saturday , in an operation that also killed six soldiers . DT JJ NN VBZ PRP$ NNS VBD CD NNS IN DT NN POS JJS NNP , IN DT NN WDT RB VBD CD NNS . Both ground forces and helicopters took part in the operation in the Orakzai tribal region near the Afghan border . DT NN NNS CC NNS VBD NN IN DT NN IN DT NNP JJ NN IN DT JJ NN . Military officials say security forces captured six insurgents after the fighting and also took control of important heights around the Bezoti area , a militant stronghold in the region . JJ NNS VBP NN NNS VBN CD NNS IN DT NN CC RB VBD NN IN JJ NNS IN DT NNP NN , DT JJ NN IN DT NN . Pakistan 's military launched an offensive in Orakzai in March to flush out Taliban insurgents who are believed to have fled an earlier military offensive in South Waziristan . NNP POS NN VBD DT NN IN NNP IN NNP TO VB RP NNP NNS WP VBP VBN TO VB VBN DT JJR JJ NN IN NNP NNP . The military says more than 100 militants have been killed in the Orakzai operation , but that figure can not be independently verified because access to the remote area is limited . DT JJ VBZ JJR IN CD NNS VBP VBN VBN IN DT NNP NN , CC DT NN MD RB VB RB VBN IN NN TO DT JJ NN VBZ VBN . Pakistan 's Supreme Court has declared unconstitutional a bill passed by a staunchly Islamic province to enforce Islamic values on society with the help of so-called religious police . NNP POS NNP NNP VBZ VBN JJ DT NN VBN IN DT RB JJ NN TO VB JJ NNS IN NN IN DT NN IN JJ JJ NN . The Supreme Court ordered the governor of North West Frontier Province not to sign the bill in its present form . DT NNP NNP VBD DT NN IN NNP NNP NNP NNP RB TO VB DT NN IN PRP$ JJ NN . The bill was passed by the provincial assembly where hardline religious parties are in a majority . DT NN VBD VBN IN DT JJ NN WRB JJ JJ NNS VBP IN DT NN . But it must be approved by the provincial governor , who is appointed by Islamabad , before it can become law . CC PRP MD VB VBN IN DT JJ NN , WP VBZ VBN IN NNP , IN PRP MD VB NN . The issue was referred to the Supreme Court by President Pervez Musharraf who has vowed to rid society of Muslim extremism . DT NN VBD VBN TO DT NNP NNP IN NNP NNP NNP WP VBZ VBN TO VB NN IN NNP NN . The court spent four days on the federal government 's challenge to the legislation . DT NN VBD CD NNS IN DT JJ NN POS NN TO DT NN . The nine-member bench ruled that many of the provisions in the bill violate the country 's 1973 constitution . DT JJ NN VBD IN NN IN DT NNS IN DT NN VBP DT NN POS CD NN . Astronauts at the International Space Station have completed the second spacewalk of five , during the shuttle Endeavour 's 11-day mission at the station . NNS IN DT NNP NNP NNP VBP VBN DT JJ NN IN CD , IN DT NN NNP POS JJ NN IN DT NN . Astronauts Dave Wolf and Tom Marshburn undertook a 6-hour , 53-minute spacewalk Monday to conduct maintenance work at the station . NNS NNP NNP CC NNP NNP VBD DT JJ , JJ NN NNP TO VB NN NN IN DT NN . The walk coincided with the 40th anniversary of man 's landing on the moon . DT NN VBD IN DT JJ NN IN NN POS NN IN DT NN . Wolf and astronaut Tim Kopra completed the first spacewalk of the mission during a 5.5-hour operation Saturday . NNP CC JJ NNP NNP VBD DT JJ NN IN DT NN IN DT JJ NN NNP . They installed an external platform on the massive Japanese lab at the space station . PRP VBD DT JJ NN IN DT JJ JJ NN IN DT NN NN . The lab is known as Kibo , or ' hope . ' DT NN VBZ VBN IN NNP , CC `` NN . `` The platform will allow scientists to conduct experiments in the vacuum of space . DT NN MD VB NNS TO VB NNS IN DT NN IN NN . With the shuttle crew 's visit , there are 13 astronauts aboard the space station , the most ever . IN DT NN NN POS NN , EX VBP CD NNS IN DT NN NN , DT RBS RB . Kopra is taking the place of Japan 's Koichi Wakata , who has been on the space station since March . NNP VBZ VBG DT NN IN NNP POS NNP NNP , WP VBZ VBN IN DT NN NN IN NNP . Brazil and Argentina have announced they will build a pharmaceutical plant to produce AIDS drugs and other medications . NNP CC NNP VBP VBN PRP MD VB DT JJ NN TO VB NNP NNS CC JJ NNS . Argentine officials made the announcement Wednesday in the Argentine capital , Buenos Aires , after a meeting there between the two countries ' health ministers . JJ NNS VBD DT NN NNP IN DT JJ NN , NNP NNP , IN DT NN RB IN DT CD NNS POS NN NNS . The $ 10-million drug plant is expected to be located on Argentine territory , but both nations will contribute to the project . DT $ JJ NN NN VBZ VBN TO VB VBN IN JJ NN , CC DT NNS MD VB TO DT NN . The announcement came as Argentine President Nestor Kirchner met with his Brazilian counterpart , Luis Inacio Lula da Silva , in Brasilia . DT NN VBD IN JJ NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP NNP NNP NNP , IN NNP . President Bush has again urged Congress to approve his plan for adding private investment accounts to the national retirement system known as Social Security . NNP NNP VBZ RB VBN NNP TO VB PRP$ NN IN VBG JJ NN NNS TO DT JJ NN NN VBN IN NNP NNP . In Saturday 's weekly radio address , Mr. Bush repeated his warning that the system will soon run short of money because the amount collected in taxes is far less than the money needed to pay benefits . IN NNP POS JJ NN NN , NNP NNP VBD PRP$ NN IN DT NN MD RB VB RB IN NN IN DT NN VBN IN NNS VBZ RB JJR IN DT NN VBN TO VB NNS . He stressed that if Congress does not act , the government could be forced to dramatically increase taxes , borrow money or reduce Social Security benefits . PRP VBD IN IN NNP VBZ RB VB , DT NN MD VB VBN TO RB VB NNS , VB NN CC VB NNP NNP NNS . Under Mr. Bush 's plan , younger workers would be able to divert some of their Social Security taxes into private accounts that could be invested in stocks or bonds . IN NNP NNP POS NN , JJR NNS MD VB JJ TO VB DT IN PRP$ NNP NNP NNS IN JJ NNS WDT MD VB VBN IN NNS CC NNS . Speaking for the opposition Democratic party , US Senator Charles Schumer , of New York said the federal retirement program only needs fine-tuning . VBG IN DT NN JJ NN , NNP NNP NNP NNP , IN NNP NNP VBD DT JJ NN NN RB VBZ NN . He said Mr. Bush 's plan will not fix the system 's long-term financial problems . PRP VBD NNP NNP POS NN MD RB VB DT NN POS JJ JJ NNS . A new industry claims to let you peer into your medical future and see what diseases you are likely to get . DT JJ NN VBZ TO VB PRP VB IN PRP$ JJ NN CC VB WP NNS PRP VBP JJ TO VB . The industry is at-home genetic testing . DT NN VBZ JJ JJ NN . VOA 's Carol Pearson has more . NNP POS NNP NNP VBZ RBR . Peru has withdrawn its ambassador to Japan , Luis Macchiavello and warned Tokyo against interfering in Lima 's effort to extradite former Peruvian President Alberto Fujimori from Chile . NNP VBZ VBN PRP$ NN TO NNP , NNP NNP CC VBD NNP IN VBG IN NNP POS NN TO VB JJ JJ NNP NNP NNP IN NNP . After Peru announced the decision to recall its ambassador , the foreign ministry issued a statement saying such interference by Japan would be unacceptable . IN NNP VBD DT NN TO VB PRP$ NN , DT JJ NN VBD DT NN VBG JJ NN IN NNP MD VB JJ . Japanese officials say they can not comment because they have yet to be officially informed of the decision . JJ NNS VBP PRP MD RB VB IN PRP VBP RB TO VB RB VBN IN DT NN . Earlier this week , Mr. Fujimori left Japan after five years in exile and flew to Chile with the intention of returning to Peru to run for president next year . RBR DT NN , NNP NNP VBD NNP IN CD NNS IN NN CC VBD TO NNP IN DT NN IN VBG TO NNP TO VB IN NN JJ NN . He was arrested in Chile at Peru 's request . PRP VBD VBN IN NNP IN NNP POS NN . Mr. Fujimori fled to Japan in 2000 amid charges of corruption and human rights abuses stemming from his 10 years in office . NNP NNP VBD TO NNP IN CD IN NNS IN NN CC JJ NNS NNS VBG IN PRP$ CD NNS IN NN . Mr. Fujimori is recognized as a citizen in Japan , which refused to extradite him to Peru . NNP NNP VBZ VBN IN DT NN IN NNP , WDT VBD TO VB PRP TO NNP . A new United Nations report by some of the world 's top scientists says global warming is ' very likely ' man-made and that the world can expect higher temperatures , rising sea levels , and erratic weather . DT JJ NNP NNPS NN IN DT IN DT NN POS JJ NNS VBZ JJ NN VBZ `` RB JJ `` JJ CC IN DT NN MD VB JJR NNS , VBG NN NNS , CC JJ NN . The Intergovernmental Panel on Climate Change will formally release its report Friday in Paris , where experts from more than 100 nations have been meeting . DT NNP NNP IN NNP NNP MD RB VB PRP$ NN NNP IN NNP , WRB NNS IN JJR IN CD NNS VBP VBN VBG . The panel defines the term ' very likely ' as meaning there is a 90 percent chance that man-made pollutants are causing the Earth to warm up . DT NN VBZ DT NN `` RB JJ `` IN VBG EX VBZ DT CD NN NN WDT JJ NNS VBP VBG DT NNP TO VB RP . A draft of the report forecasts global temperatures rising up to four degrees Celsius by the end of the century . DT NN IN DT NN VBZ JJ NNS VBG RP TO CD NNS NNP IN DT NN IN DT NN . Some scientists believe natural weather patterns may be causing climate change and say the future will not be as dire as some experts predict . DT NNS VBP JJ NN NNS MD VB VBG NN NN CC VB DT NN MD RB VB RB JJ IN DT NNS VBP . A top international economic organization says Turkey is ' at a crossroads ' , noting that the country has done much to enhance its economic stability , but needs to do more . DT JJ JJ JJ NN VBZ NNP VBZ `` IN DT NNS `` , VBG IN DT NN VBZ VBN RB TO VB PRP$ JJ NN , CC VBZ TO VB JJR . The Paris-based Organization for Economic Cooperation and Development presented the report Thursday during a visit to the French capital by Turkish Prime Minister Recep Tayyip Erdogan . DT JJ NNP IN NNP NNP CC NNP VBD DT NN NNP IN DT NN TO DT JJ NN IN NNP NNP NNP NNP NNP NNP . The report says Turkey had made efforts to improve governance , macroeconomic policy and investor confidence , following an economic crisis three years ago . DT NN VBZ NNP VBD VBN NNS TO VB NN , JJ NN CC NN NN , VBG DT JJ NN CD NNS RB . However , the OECD report says the Ankara government should do more to enhance long-term economic growth by guaranteeing property rights and improving the justice system . RB , DT NNP NN VBZ DT NNP NN MD VB JJR TO VB JJ JJ NN IN VBG NN NNS CC VBG DT NN NN . It also says the large size of Turkey 's informal , or underground , economy remains a problem as it narrows the country 's tax base . PRP RB VBZ DT JJ NN IN NNP POS JJ , CC RB , NN VBZ DT NN IN PRP VBZ DT NN POS NN NN . French filmmaker Eric Rohmer , a founding director of the French ' New Wave ' movement , has died at the age of 89 . JJ NN NNP NNP , DT JJ NN IN DT JJ `` NNP NNP `` NN , VBZ VBN IN DT NN IN CD . Rohmer died Monday in Paris . NNP VBD NNP IN NNP . Relatives say he was hospitalized a week ago , but gave no further details about his condition . NNS VBP PRP VBD VBN DT NN RB , CC VBD DT JJ NNS IN PRP$ NN . Rohmer 's films explored relationships and love affairs from a philosophical perspective . NNP POS NNS VBD NNS CC NN NNS IN DT JJ NN . Rohmer achieved critical acclaim in the late 1960s and early 1970s with films such as My Night at Maud 's and Claire 's Knee . NNP VBD JJ NN IN DT JJ NNS CC JJ NNS IN NNS JJ IN NNP NNP IN NNP POS CC NNP POS NN . French President Nicholas Sarkozy said the filmmaker created the ' Rohmer style ' that will survive for years to come . JJ NNP NNP NNP VBD DT NN VBD DT `` NNP NN `` WDT MD VB IN NNS TO VB . British Prime Minister Tony Blair has met separately with Northern Ireland 's two rival political leaders , for the first time since the Irish Republican Army was declared disarmed . JJ NNP NNP NNP NNP VBZ VBN RB IN NNP NNP POS CD JJ JJ NNS , IN DT JJ NN IN DT JJ NNP NNP VBD VBN JJ . The head of the Protestant Democratic Unionist Party , Ian Paisley , Thursday gave Mr. Blair a 64-page document outlining measures needed for talks with the IRA to resume . DT NN IN DT NNP NNP NNP NNP , NNP NNP , NNP VBD NNP NNP DT JJ NN VBG NNS VBN IN NNS IN DT NNP TO VB . They include an agreement for Britain to retain at least one battalion of the Royal Irish Regiment in Northern Ireland . PRP VBP DT NN IN NNP TO VB IN JJS CD NN IN DT NNP NNP NNP IN NNP NNP . Gerry Adams , who leads the IRA 's political wing , Sinn Fein , told Mr. Blair it is vital to restore power-sharing institutions in the British province . NNP NNP , WP VBZ DT NNP POS JJ NN , NNP NNP , VBD NNP NNP PRP VBZ JJ TO VB JJ NNS IN DT JJ NN . Meanwhile , Britain 's Assets Recovery Agency today said it raided 250 properties worth more than $ 50 million in an investigation focusing on the financing of IRA activities . RB , NNP POS NNS NNP NNP NN VBD PRP VBD CD NNS JJ JJR IN $ CD CD IN DT NN VBG IN DT NN IN NNP NNS . Canadian General John de Chastelain , who oversaw IRA disarmament , said last week the group has scrapped all its weapons . JJ NNP NNP NNP NNP , WP VBD NNP NN , VBD JJ NN DT NN VBZ VBN DT PRP$ NNS . Former U.S. President George W. Bush , in a rare public appearance , said Saturday the mission in Afghanistan is ' necessary for peace and stability . ' JJ NNP NNP NNP NNP NNP , IN DT JJ JJ NN , VBD NNP DT NN IN NNP VBZ `` JJ IN NN CC NN . `` Speaking at a leadership conference in India 's capital , New Delhi , Mr. Bush warned that if the Taliban and al-Qaida take control of Afghanistan , the people there will ' face a return to a brutal tyranny . ' VBG IN DT NN NN IN NNP POS NN , NNP NNP , NNP NNP VBD IN IN DT NNP CC NNP VBP NN IN NNP , DT NNS RB MD `` VB DT NN TO DT JJ NN . `` Mr. Bush ordered U.S. troops into Afghanistan in late 2001 , after the September 11 attacks on the United States . NNP NNP VBD NNP NNS IN NNP IN JJ CD , IN DT NNP CD NNS IN DT NNP NNPS . The invasion to fight militants quickly ousted the hardline Taliban government . DT NN TO VB NNS RB VBD DT JJ NNP NN . The former president has made few public appearances since leaving office in January . DT JJ NN VBZ VBN JJ JJ NNS IN VBG NN IN NNP . top U.S official has called for unifying Bosnian government institutions that have remained divided on ethnic lines since the 1995 Dayton Peace Agreement halted the conflict in the country . JJ NNP NN VBZ VBN IN VBG JJ NN NNS WDT VBP VBN VBN IN JJ NNS IN DT CD NNP NNP NNP VBD DT NN IN DT NN . U.S. Undersecretary of State for Political Affairs Nicholas Burns told reporters in Sarajevo the Dayton agreement has served its purpose and the time has come to transform Bosnia-Herzegovina into a unitary state . NNP NNP IN NNP IN NNP NNP NNP NNP VBD NNS IN NNP DT NNP NN VBZ VBN PRP$ NN CC DT NN VBZ VBN TO VB NNP IN DT JJ NN . He urged major constitutional reforms that would lead to creation of a single Bosnian presidency , a stronger government and an effective parliament . PRP VBD JJ JJ NNS WDT MD VB TO NN IN DT JJ JJ NN , DT JJR NN CC DT JJ NN . The Dayton Agreement left Bosnia with a collective presidency , made up of Croat , Muslim and Serb members and divided the country into a Serb Republic and Muslim-Croat Federation . DT NNP NNP VBD NNP IN DT JJ NN , VBD IN IN JJ , NNP CC JJ NNS CC VBD DT NN IN DT JJ NNP CC NNP NNP . Each has its own administration and parliament under a weak central government . DT VBZ PRP$ JJ NN CC NN IN DT JJ JJ NN . Sarajevo is the first stop of Mr. Burns ' Balkan trip , which also will take him to Pristina and Belgrade . NNP VBZ DT JJ NN IN NNP NNP POS NNP NN , WDT RB MD VB PRP TO NNP CC NNP . Armenia says it could take part in a commission with Turkey to study decades-old allegations of Turkish genocide against Armenians during World War I and other issues , but first calls for improved ties . NNP VBZ PRP MD VB NN IN DT NN IN NNP TO VB JJ NNS IN JJ NN IN NNS IN NNP NNP NNP CC JJ NNS , CC RB VBZ IN JJ NNS . Armenian President Robert Kocharian said the proposal would only work if the two countries improve bilateral relations . JJ NNP NNP NNP VBD DT NN MD RB VB IN DT CD NNS VBP JJ NNS . The neighbors share a border , but have no diplomatic ties . DT NNS VBP DT NN , CC VBP DT JJ NNS . Turkish Foreign Minister Abdullah Gul earlier this month said Prime Minister Recep Tayyip Erdogan made the offer in a letter to the Armenian president . NNP NNP NNP NNP NNP RBR DT NN VBD NNP NNP NNP NNP NNP VBD DT NN IN DT NN TO DT JJ NN . Turkey has refused to establish diplomatic ties with Armenia because of Armenia 's campaign to gain international recognition of the World War One massacres as genocide . NNP VBZ VBN TO VB JJ NNS IN NNP IN IN NNP POS NN TO VB JJ NN IN DT NNP NNP CD NNS IN NN . Armenia says 1.5 million of its nationals were slaughtered by the Turks during the final years of the Ottoman Empire 90 years ago . NNP VBZ CD CD IN PRP$ NNS VBD VBN IN DT NNS IN DT JJ NNS IN DT NNP NNP CD NNS RB . Turkey says 3,00,000 Armenians and thousands of Turks were killed during a Russia-backed Armenian uprising against Ottoman rule . NNP VBZ CD NNS CC NNS IN NNS VBD VBN IN DT JJ JJ NN IN NNP NN . Ukraine 's parliament has voted to dismiss the country 's foreign and interior ministers , dealing another blow to President Viktor Yushchenko . NNP POS NN VBZ VBN TO VB DT NN POS JJ CC JJ NNS , VBG DT NN TO NNP NNP NNP . The resolution to fire Foreign Minister Borys Tarasyuk secured 247 votes in the 450-seat assembly Friday . DT NN TO VB NNP NNP NNP NNP VBD CD NNS IN DT JJ NN NNP . Minutes later , 248 lawmakers voted to oust Interior Minister Yuri Lutsenko - who had barely survived a parliamentary attempt to dismiss him Thursday . NNS RB , CD NNS VBD TO VB NNP NNP NNP NNP : WP VBD RB VBN DT JJ NN TO VB PRP NNP . Lawmakers then named economist Vasil Tsushko the new interior minister . NNS RB VBD NN NNP NNP DT JJ JJ NN . Mr. Tarasyuk later called the vote illegitimate and said the question of his dismissal will be resolved by Ukraine 's Supreme Court . NNP NNP RB VBD DT NN NN CC VBD DT NN IN PRP$ NN MD VB VBN IN NNP POS NNP NNP . The two dismissed officials were some of Mr. Yushchenko 's staunchest supporters . DT CD VBN NNS VBD DT IN NNP NNP POS JJS NNS . The Ukrainian president is in a power struggle with Prime Minister Viktor Yanukovych . DT JJ NN VBZ IN DT NN NN IN NNP NNP NNP NNP . Mr. Yushchenko won Ukraine 's 2004 presidential election after Ukraine 's Supreme Court threw out an earlier victory by Mr. Yanukovych because of what it said was massive fraud . NNP NNP VBD NNP POS CD JJ NN IN NNP POS NNP NNP VBD RP DT JJR NN IN NNP NNP IN IN WP PRP VBD VBD JJ NN . Justin Timberlake has a message for U.S. celebrity journalists : drop dead . NNP NNP VBZ DT NN IN NNP NN NNS IN NN NN . Speaking to Details Magazine , the 26-year-old entertainer says he despises tabloids for turning his personal life into gossip fodder . VBG TO NNP NNP , DT JJ NN VBZ PRP VBZ NNS IN VBG PRP$ JJ NN IN NN NN . ' They create soap operas out of people 's lives ... it 's a spin game , and I choose not to take part in it , ' Timberlake said . `` PRP VBP NN NNS IN IN NNS POS NNS : PRP VBZ DT NN NN , CC PRP VBP RB TO VB NN IN PRP , `` NNP VBD . He takes particular exception to speculation about his relationships with Britney Spears and Cameron Diaz . PRP VBZ JJ NN TO NN IN PRP$ NNS IN NNP NNPS CC NNP NNP . He and Britney ended their three-year relationship in 2002 . PRP CC NNP VBD PRP$ JJ NN IN CD . He and Diaz , who had dated since 2003 , confirmed their split in January . PRP CC NNP , WP VBD VBN IN CD , VBD PRP$ NN IN NNP . The lawyer for former Iraqi deputy prime minister Tariq Aziz says his client has refused to testify against Saddam Hussein at a future war crimes trial . DT NN IN JJ JJ NN JJ NN NNP NNP VBZ PRP$ NN VBZ VBN TO VB IN NNP NNP IN DT JJ NN NNS NN . The lawyer said he met Thursday for the first time with Mr. Aziz , who is in U.S. custody somewhere near Baghdad . DT NN VBD PRP VBD NNP IN DT JJ NN IN NNP NNP , WP VBZ IN NNP NN RB IN NNP . He said his client appeared in good health and spirits , despite 20 months of confinement . PRP VBD PRP$ NN VBD IN JJ NN CC NNS , IN CD NNS IN NN . During their four-hour meeting Mr. Aziz also reportedly denied any wrongdoing in the United Nations-run oil-for-food program , which allowed Iraq to sell oil to buy food and medicine for its people . IN PRP$ JJ NN NNP NNP RB RB VBD DT NN IN DT NNP NNP NN NN , WDT VBD NNP TO VB NN TO VB NN CC NN IN PRP$ NNS . Tariq Aziz and 11 of Saddam 's other top lieutenants face charges including crimes against Iraq 's Kurdish and Shi'ite communities . NNP NNP CC CD IN NNP POS JJ JJ NNS VBP NNS VBG NNS IN NNP POS NNP CC NNP NNS . The presidents of Russia and Ukraine are expected to meet next week in the wake of a dispute between their countries over the price Kiev pays Moscow for natural gas . DT NNS IN NNP CC NNP VBP VBN TO VB JJ NN IN DT NN IN DT NN IN PRP$ NNS IN DT NN NNP VBZ NNP IN JJ NN . A Kremlin spokesman says Russian President Vladimir Putin will confer with Ukrainian President Viktor Yushchenko January 11 in Kazakhstan on the sidelines of the inauguration of President Nursultan Nazarbayev . DT NNP NN VBZ JJ NNP NNP NNP MD VB IN JJ NNP NNP NNP NNP CD IN NNP IN DT NNS IN DT NN IN NNP NNP NNP . Russian news reports say Mr. Putin and Mr. Yushchenko also exchanged Orthodox Christmas greetings by telephone late Friday . JJ NN NNS VBP NNP NNP CC NNP NNP RB VBD NNP NNP NNS IN NN JJ NNP . Russia 's state-run natural gas company , Gazprom , cut off exports to Ukraine Sunday after Kiev refused a contract that increased the price by 400 percent . NNP POS JJ JJ NN NN , NNP , VBD RP NNS TO NNP NNP IN NNP VBD DT NN WDT VBD DT NN IN CD NN . On Wednesday , the two sides agreed Ukraine will pay nearly double the price for natural gas it paid in 2005 . IN NNP , DT CD NNS VBD NNP MD VB RB JJ DT NN IN JJ NN PRP VBD IN CD . The United States on Thursday announced $ 190 million in aid for victims of last year 's devastating floods in Pakistan . DT NNP NNPS IN NNP VBD $ CD CD IN NN IN NNS IN JJ NN POS JJ NNS IN NNP . The pledge was made by the acting U.S. special representative for Pakistan and Afghanistan , Frank Ruggiero , who said it fulfills a promise made by his predecessor Richard Holbrooke , who died suddenly in December . DT NN VBD VBN IN DT VBG NNP JJ NN IN NNP CC NNP , NNP NNP , WP VBD PRP VBZ DT NN VBN IN PRP$ NN NNP NNP , WP VBD RB IN NNP . Speaking to reporters in Islamabad alongside Pakistan 's Finance Minister Abdul Hafeez Shaikh , Ruggiero said the money will be put into a cash compensation fund for the estimated 1.6 million families worst-hit by the floods . VBG TO NNS IN NNP IN NNP POS NNP NNP NNP NNP NNP , NNP VBD DT NN MD VB VBN IN DT NN NN NN IN DT VBN CD CD NNS JJ IN DT NNS . Ruggiero also signed an agreement to provide Pakistan with $ 66 million to help complete two dam projects . NNP RB VBD DT NN TO VB NNP IN $ CD CD TO VB JJ CD NN NNS . Last year 's floods , which were caused by unusually heavy monsoon rains , affected 21 million people and are considered to be Pakistan 's worst natural disaster . JJ NN POS NNS , WDT VBD VBN IN RB JJ NN NNS , VBD CD CD NNS CC VBP VBN TO VB NNP POS JJS JJ NN . At least 10,000 people , including current and former lawmakers , have rallied in Tokyo to protest proposals that would allow a woman to assume the imperial throne . IN JJS CD NNS , VBG JJ CC JJ NNS , VBP VBN IN NNP TO VB NNS WDT MD VB DT NN TO VB DT JJ NN . Speakers at Tuesday 's rally said efforts to alter the royal line threaten the nation 's most sacred traditions . NNS IN NNP POS NN VBD NNS TO VB DT NN NN VBP DT NN POS JJS JJ NNS . Japan has the world 's oldest continuous monarchy . NNP VBZ DT NN POS JJS JJ NN . The imperial family has not produced a male heir since 1965 , prompting Prime Minister Junichiro Koizumi to propose a bill recommending that the emperor 's first-born child - regardless of sex - ascend to the Chrysanthemum throne . DT JJ NN VBZ RB VBN DT JJ NN IN CD , VBG NNP NNP NNP NNP TO VB DT NN VBG IN DT NN POS JJ NN : RB IN NN IN VB IN DT NNP NN . The proposal was put on hold after an announcement last month that the wife of the second son of Emperor Akihito is pregnant with her third child . DT NN VBD VBN IN NN IN DT NN JJ NN IN DT NN IN DT JJ NN IN NNP NNP VBZ JJ IN PRP$ JJ NN . A recent poll indicated a wide majority of Japanese favor allowing a woman to inherit the imperial throne . DT JJ NN VBD DT JJ NN IN JJ NN VBG DT NN TO VB DT JJ NN . Russian media say the country 's Strategic Missile Forces have successfully tested an intercontinental ballistic missile . JJ NNS VBP DT NN POS NNP NNP NNS VBP RB VBN DT JJ JJ NN . The media quote Colonel Alexander Vovk , a spokesman for the missile forces , as saying the RS-12M Topol ballistic missile was launched Saturday evening from Kapustin Yar firing range in southern Russia . DT NNS VBP NNP NNP NNP , DT NN IN DT NN NNS , IN VBG DT NNP NNP JJ NN VBD VBN NNP NN IN NNP NNP VBG NN IN JJ NNP . The spokesman said the aim of the test was to confirm the stability of this class of missile . DT NN VBD DT NN IN DT NN VBD TO VB DT NN IN DT NN IN NN . The launch comes amid U.S. plans for a missile defense system based in Europe which Russian President Vladimir Putin says will destabilize the region and lead to a new arms race . DT NN VBZ IN NNP NNS IN DT NN NN NN VBN IN NNP WDT JJ NNP NNP NNP VBZ MD VB DT NN CC NN TO DT JJ NNS NN . The United States wants to deploy 10 missile interceptors in Poland and guidance radar in the Czech Republic , to counter what it says are threats from such nations as Iran and North Korea . DT NNP NNPS VBZ TO VB CD NN NNS IN NNP CC NN NN IN DT JJ NNP , TO VB WP PRP VBZ VBP NNS IN JJ NNS IN NNP CC NNP NNP . The new speaker of the U.S. House of Representatives has met in Islamabad with Pakistani President Pervez Musharraf . DT JJ NN IN DT NNP NNP IN NNP VBZ VBN IN NNP IN JJ NNP NNP NNP . Nancy Pelosi 's talks with General Musharraf focused on the war on terrorism and the situation in Afghanistan . NNP NNP POS NNS IN NNP NNP VBD IN DT NN IN NN CC DT NN IN NNP . Pelosi 's visit to Islamabad comes as U.S. lawmakers consider a bill to link military aid to Pakistan 's commitment to fighting Islamic extremists and Taleban militants . NNP POS NN TO NNP VBZ IN NNP NNS VBP DT NN TO VB JJ NN TO NNP POS NN TO VBG JJ NNS CC NNP NNS . Pelosi and her congressional delegation are expected to visit Afghanistan Sunday . NNP CC PRP$ JJ NN VBP VBN TO VB NNP NNP . The U.S. ambassador to Afghanistan , Ronald Neumann said Saturday that Afghan and coalition forces have the means to successfully fight the Taleban this year . DT NNP NN TO NNP , NNP NNP VBD NNP IN JJ CC NN NNS VBP DT NNS TO RB VB DT NNP DT NN . Earlier this week , NATO officials said the U.S. would extend the tour of 3,000 troops in Afghanistan by four months to help fight resurgent Taleban fighters . RBR DT NN , NNP NNS VBD DT NNP MD VB DT NN IN CD NNS IN NNP IN CD NNS TO VB VB JJ NNP NNS . Pope Benedict XVI has told Venezuela 's President Hugo Chavez that he is concerned about religious reforms in the largely Catholic nation . NNP NNP NNP VBZ VBN NNP POS NNP NNP NNP IN PRP VBZ VBN IN JJ NNS IN DT RB JJ NN . The pontiff and Mr. Chavez met at the Vatican Thursday . DT NN CC NNP NNP VBD IN DT NNP NNP . A Vatican spokesman says Pope Benedict was worried about a proposal to ban teaching religion in Venezuelan schools . DT NNP NN VBZ NNP NNP VBD VBN IN DT NN TO VB NN NN IN JJ NNS . He said the pope expressed his hope that Santa Rosa Catholic University can maintain its religious identity . PRP VBD DT NN VBD PRP$ NN IN NNP NNP NNP NNP MD VB PRP$ JJ NN . The pontiff also asked that the nation 's health programs ' respect life , ' an apparent reference to abortion , which the church opposes . DT NN RB VBD IN DT NN POS NN NNS `` VB NN , `` DT JJ NN TO NN , WDT DT NN VBZ . The Venezuelan leader assured the pope of his commitment to ' overcome every tension in respecting the legitimate rights of all . ' DT JJ NN VBD DT NN IN PRP$ NN TO `` VB DT NN IN VBG DT JJ NNS IN DT . `` Mr. Chavez often quotes from the bible during speeches . NNP NNP RB VBZ IN DT NN IN NNS . But he has clashed with the Catholic leadership in Venezuela , referring to it as a ' cancer . ' CC PRP VBZ VBN IN DT JJ NN IN NNP , VBG TO PRP IN DT `` NN . `` The hurricane-damaged city of New Orleans is celebrating the final weekend of its famous Mardi Gras festival . DT JJ NN IN NNP NNP VBZ VBG DT JJ NN IN PRP$ JJ NNP NNP NN . Thousands of people gathered to see decorated vehicles , called floats , parade through the city 's streets Saturday and catch strings of beads thrown from the floats and nearby buildings . NNS IN NNS VBN TO VB JJ NNS , VBD NNS , NN IN DT NN POS NNS NNP CC VB NNS IN NNS VBN IN DT NNS CC JJ NNS . More parades were scheduled Sunday . RBR NNS VBD VBN NNP . Some of the city 's social clubs had rescheduled their activities because of rain . DT IN DT NN POS JJ NNS VBD VBN PRP$ NNS IN IN NN . The Mardi Gras festival often draws more than one million visitors to the city , but fewer were expected this year because of flooding and other damage caused by Hurricane Katrina in August . DT NNP NNP NN RB VBZ JJR IN CD CD NNS TO DT NN , CC JJR VBD VBN DT NN IN IN NN CC JJ NN VBN IN NNP NNP IN NNP . City officials agreed to carry on with the annual tradition , in part to attract tourists and help rebuild the city 's economy . NNP NNS VBD TO VB RP IN DT JJ NN , IN NN TO VB NNS CC VB VB DT NN POS NN . The celebrations culminate February 28 , on what is known as ' Fat Tuesday , ' the last day before the Christian Lenten season of fasting begins . DT NNS VBP NNP CD , IN WP VBZ VBN IN `` NNP NNP , `` DT JJ NN IN DT NNP NNP NN IN NN VBZ . Residents of flood-stricken California are bracing for more rain Monday . NNS IN JJ NNP VBP VBG IN JJR NN NNP . Earlier rains and winds pushed rivers out of their banks in northern California and killed at least one person . RBR NNS CC NNS VBD NNS IN IN PRP$ NNS IN JJ NNP CC VBN IN JJS CD NN . While the western state of California is being hit by too much rain , the southwest of the United States has been hit by wildfires driven by high winds and hot dry weather . IN DT JJ NN IN NNP VBZ VBG VBN IN RB JJ NN , DT JJS IN DT NNP NNPS VBZ VBN VBN IN NNS VBN IN JJ NNS CC JJ JJ NN . Authorities ordered residents of a section of Oklahoma City to evacuate Sunday . NNS VBD NNS IN DT NN IN NNP NNP TO VB NNP . In some cases , people had just minutes to packs and flee their homes . IN DT NNS , NNS VBD RB NNS TO NNS CC VB PRP$ NNS . A number of houses burned to the ground . DT NN IN NNS VBN TO DT NN . Fires have burned tens of thousands of hectares of grassland in New Mexico , Oklahoma , and Texas since last week . NNS VBP VBN NNS IN NNS IN NNS IN NN IN NNP NNP , NNP , CC NNP IN JJ NN . Mexican authorities say federal riot police will stay in the town of Oaxaca until order is restored . JJ NNS VBP JJ NN NNS MD VB IN DT NN IN NNP IN NN VBZ VBN . Police took control of the city Sunday , ending five months of sometimes violent protests by striking teachers and other groups who took over streets and buildings and called for the resignation of the state governor . NNP VBD NN IN DT NN NNP , VBG CD NNS IN RB JJ NNS IN JJ NNS CC JJ NNS WP VBD RP NNS CC NNS CC VBN IN DT NN IN DT NN NN . Witnesses say at least one person was killed as police broke through street barricades and turned water cannons on demostrators . NNS VBP IN JJS CD NN VBD VBN IN NN VBD IN NN NNS CC VBD NN NNS IN NNS . President Vicente Fox ordered federal action after a U.S. activist-journalist and two Mexican men , one of them a teacher , were shot and killed Friday near the site of the protests . NNP NNP NNP VBD JJ NN IN DT NNP NN CC CD JJ NNS , CD IN PRP DT NN , VBD VBN CC VBN NNP IN DT NN IN DT NNS . Leaders of the teachers union said Monday they plan further marches . NNS IN DT NNS NN VBD NNP PRP VBP JJ NNS . They had earlier agreed to go back to work , but it is unclear if classes have resumed for the more than a million public school students in Oaxaca state . PRP VBD RB VBN TO VB RB TO NN , CC PRP VBZ JJ IN NNS VBP VBN IN DT JJR IN DT CD JJ NN NNS IN NNP NN . Canada 's Food Inspection Agency - which confirmed the results Sunday - had suspected last week the cow was infected with the disease based on preliminary testing . NNP POS NNP NNP NNP : WDT VBD DT NNS NNP : VBD VBN JJ NN DT NN VBD VBN IN DT NN VBN IN JJ NN . The agency said at the time that human food and animal feed supplies were not affected . DT NN VBD IN DT NN IN JJ NN CC NN NN NNS VBD RB VBN . The confirmation comes just days after the United States announced plans to reopen its border in March to nearly all Canadian beef and live cattle . DT NN VBZ RB NNS IN DT NNP NNP VBD NNS TO VB PRP$ NN IN NNP TO RB DT JJ NN CC JJ NNS . U.S. officials banned the import of Canadian cattle in May , 2003 , after Canada found its first case of the disease . NNP NNS VBD DT NN IN JJ NNS IN NNP , CD , IN NNP VBD PRP$ JJ NN IN DT NN . Mad cow disease attacks the central nervous system of cattle and can be harmful to humans if tainted meat is consumed . JJ NN NN VBZ DT JJ JJ NN IN NNS CC MD VB JJ TO NNS IN JJ NN VBZ VBN . Russia has added more world champions to compete at next month 's European figure skating championships . NNP VBZ VBN JJR NN NNS TO VB IN JJ NN POS JJ NN VBG NNS . Irina Slutskaya , Tatiana Totmianina and Maxim Marinin were named Thursday to skate alongside men 's star Evgeny Plushenko , the 2002 Olympic silver medalist . NNP NNP , NNP NNP CC NNP NNP VBD VBN NNP TO VB IN NNS POS NN NNP NNP , DT CD NNP NN NN . The three skaters are likely to be the same the Russian figure skating federation sends to the Turin Olympics . DT CD NNS VBP JJ TO VB DT JJ DT JJ NN VBG NN VBZ TO DT NNP NNPS . The exception will be in the men 's category where Russia will be allowed only two entrants . DT NN MD VB IN DT NNS POS NN WRB NNP MD VB VBN RB CD NNS . The women 's entries include world champion and 2002 Olympics silver medalist Slutskaya , Elena Sokolova and Viktoria Volchkova . DT NNS POS NNS VBP NN NN CC CD NNS JJ NN NNP , NNP NNP CC NNP NNP . World champions Totmianina and Marinin were also selected despite withdrawing from the Russian national competition . NNP NNS NNP CC NNP VBD RB VBN IN VBG IN DT JJ JJ NN . Tatiana Navka and Roman Kostomarov , Russia 's world champion ice dancers , head the list for that event . NNP NNP CC NNP NNP , NNP POS NN NN NN NNS , VBP DT NN IN DT NN . Palestinian lawmakers say Prime Minister Ahmed Qureia has agreed to change his proposed cabinet to include more reform-minded ministers . JJ NNS VBP NNP NNP NNP NNP VBZ VBN TO VB PRP$ JJ NN TO VB JJR JJ NNS . Several legislators from the dominant Fatah faction had threatened Monday to vote down the original cabinet list , saying it had too many ministers associated with corruption . JJ NNS IN DT JJ NNP NN VBD VBN NNP TO VB RP DT JJ NN NN , VBG PRP VBD RB JJ NNS VBN IN NN . They say Mr. Qureia is expected to soon present a revised cabinet that includes more technocrats and reformers . PRP VBP NNP NNP VBZ VBN TO RB VB DT JJ NN WDT VBZ RBR NNS CC NNS . Prime Minister Ariel Sharon is also facing a challenge from Israeli lawmakers who have reservations about the plan to remove Israeli settlers from Gaza . NNP NNP NNP NNP VBZ RB VBG DT NN IN JJ NNS WP VBP NNS IN DT NN TO VB JJ NNS IN NNP . Some 26 of the right-wing Likud party 's 40 parliament ( Knesset ) members have signed a petition calling for a referendum on the Gaza pullout . DT CD IN DT JJ NNP NN POS CD NN LRB NNP RRB NNS VBP VBN DT NN VBG IN DT NN IN DT NNP NN . This year , the price of oil has soared , in recent weeks reaching a new high of $ 135 a barrel . DT NN , DT NN IN NN VBZ VBN , IN JJ NNS VBG DT JJ NN IN $ CD DT NN . This has sparked protests in many countries , including Britain , where truck drivers recently blocked roads in several cities to protest the price of fuel . DT VBZ VBN NNS IN JJ NNS , VBG NNP , WRB NN NNS RB VBD NNS IN JJ NNS TO VB DT NN IN NN . For some , the high cost of fuel has prompted more creativity . IN DT , DT JJ NN IN NN VBZ VBN JJR NN . A growing number of motorists are making their own bio-diesel with recycled cooking oil . DT VBG NN IN NNS VBP VBG PRP$ JJ NN IN JJ NN NN . It 's only cheaper , but greener too . PRP VBZ RB JJR , CC NN RB . Catherine Drew visited a course near Oxford , England to see how it is done . NNP NNP VBD DT NN IN NNP , NNP TO VB WRB PRP VBZ VBN . South Korean President Roh Moo-hyun and his Mexican counterpart , Vicente Fox , met in Mexico City Friday for talks covering economic cooperation . JJ JJ NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBD IN NNP NNP NNP IN NNS VBG JJ NN . President Roh is eager for Mexico to eliminate legal restrictions that prevent South Korean construction firms from bidding on large public works projects . NNP NNP VBZ JJ IN NNP TO VB JJ NNS WDT VBP JJ JJ NN NNS IN NN IN JJ JJ NNS NNS . President Fox wants to equalize the trade flow with South Korea and for Seoul to further open its markets to Mexican farm products . NNP NNP VBZ TO VB DT NN NN IN NNP NNP CC IN NNP TO RB VB PRP$ NNS TO JJ NN NNS . Currently , Korean exports dominate the exchange , valued at approximately $ 5.4 billion annually . RB , JJ NNS VBP DT NN , VBN IN RB $ CD CD RB . South Korea is Mexico 's sixth-largest trading partner . NNP NNP VBZ NNP POS JJ NN NN . The two leaders also signed a variety of small accords covering such topics as customs procedures and unfair trade practices at the National Palace in Mexico City . DT CD NNS RB VBD DT NN IN JJ NNS VBG JJ NNS IN NNS NNS CC JJ NN NNS IN DT NNP NNP IN NNP NNP . President Roh leaves for Costa Rica on Sunday . NNP NNP VBZ IN NNP NNP IN NNP . A Georgian policeman has been shot and killed near the breakaway province of Abkhazia . DT JJ NN VBZ VBN VBN CC VBN IN DT NN NN IN NNP . Georgian Interior Ministry spokesman Shota Utiashvili said the policeman was shot and killed Saturday when shots were fired from the direction of a nearby Abkhaz-controlled checkpoint . JJ NNP NNP NN NNP NNP VBD DT NN VBD VBN CC VBN NNP WRB NNS VBD VBN IN DT NN IN DT JJ JJ NN . The incident occurred on the same day that Russian forces left key positions in western Georgia as part of a deal brokered by France . DT NN VBD IN DT JJ NN IN JJ NNS VBD JJ NNS IN JJ NNP IN NN IN DT NN VBN IN NNP . Georgian authorities confirmed that Russian troops have left posts around the Black Sea port of Poti . JJ NNS VBD IN JJ NNS VBP VBN NNS IN DT NNP NNP NN IN NNP . Russian forces pushed into neighboring Georgia last month after the Georgian military tried to retake control of the breakaway region of South Ossetia . JJ NNS VBD IN VBG NNP JJ NN IN DT JJ NN VBD TO VB NN IN DT JJ NN IN NNP NNP . Russia has recognized both South Ossetia and Abkhazia as independent states . NNP VBZ VBN DT NNP NNP CC NNP IN JJ NNS . Although the Russians have withdrawn from several positions in Georgia , they continue to maintain a security zone around the separatist region . IN DT NNS VBP VBN IN JJ NNS IN NNP , PRP VBP TO VB DT NN NN IN DT JJ NN . Jane Fonda reportedly scolded her co-star Lindsay Lohan about her antics on the set of their film Georgia Rules . NNP NNP RB VBD PRP$ NN NNP NNP IN PRP$ NNS IN DT NN IN PRP$ NN NNP NNP . The veteran star is said to have sent Lohan a note taking her to task for widely-publicized bad behavior . DT NN NN VBZ VBN TO VB VBN NNP DT NN VBG PRP TO NN IN JJ JJ NN . Fonda 's publicist denies reports that Lindsay Lohan is not welcome at the film 's May 7 premiere . NNP POS NN VBZ NNS IN NNP NNP VBZ RB JJ IN DT NN POS NNP CD NN . Held in Atlanta , Georgia , it will benefit the non-profit organization G-CAPP , which Jane Fonda co-chairs . NNP IN NNP , NNP , PRP MD VB DT JJ NN NNP , WDT NNP NNP VBZ . At least seven coal miners were reported killed and 19 were missing after an explosion at a mine in the eastern U.S. state of West Virginia . IN JJS CD NN NNS VBD VBN VBN CC CD VBD VBG IN DT NN IN DT NN IN DT JJ NNP NN IN NNP NNP . State mine safety director Ron Wooten says the blast happened Monday afternoon at Massey Energy 's Upper Big Branch South Mine mine in Raleigh County , about 50 kilometers from Charleston , the state capital . NN NN NN NN NNP NNP VBZ DT NN VBD NNP NN IN NNP NNP POS NNP NNP NNP NNP NNP NN IN NNP NNP , IN CD NNS IN NNP , DT NN NN . Rescue efforts are under way and state Governor Joe Manchin , who was away on a personal trip , is returning home . NN NNS VBP IN NN CC NN NNP NNP NNP , WP VBD RB IN DT JJ NN , VBZ VBG NN . Massey Energy told the Charleston Gazette there is little information yet on what happened . NNP NNP VBD DT NNP NNP EX VBZ JJ NN RB IN WP VBD . West Virginia is the state where 12 miners died after an explosion in the Sago coal mine in January 2006 . NNP NNP VBZ DT NN WRB CD NNS VBD IN DT NN IN DT NNP NN NN IN NNP CD . That accident trapped 13 men underground for two days . DT NN VBN CD NNS RB IN CD NNS . One miner survived , while the rest died of carbon monoxide poisoning . CD NN VBD , IN DT NN VBD IN NN NN NN . The World Health Organization has reported another bird flu death in Indonesia , confirming Monday that a five-year-old boy who died last month was infected with the virus . DT NNP NNP NNP VBZ VBN DT NN NN NN IN NNP , VBG NNP IN DT JJ NN WP VBD JJ NN VBD VBN IN DT NN . Officials said the victim died June 16 in East Java province . NNS VBD DT NN VBD NNP CD IN NNP NNP NN . He was believed to have come into contact with infected chickens . PRP VBD VBN TO VB VBN IN NN IN JJ NNS . Scientists have diagnosed more than 120 bird flu fatalities since late 2003 . NNS VBP VBN JJR IN CD NN NN NNS IN JJ CD . Most of them have been in Asia . JJS IN PRP VBP VBN IN NNP . Scientists worry that human-to-human transmission of the virus could spark a global pandemic . NNS VBP IN JJ NN IN DT NN MD VB DT JJ NN . In late June , the WHO said it believed one Indonesian family became infected through such human-to-human transmission . IN JJ NNP , DT NNP VBD PRP VBD CD JJ NN VBD JJ IN JJ JJ NN . But health officials say that the specific H5N1 virus strain that killed seven of eight family members died out with its last victim . CC NN NNS VBP IN DT JJ NNP NN NN WDT VBD CD IN CD NN NNS VBD RP IN PRP$ JJ NN . European Union and Mediterranean officials at a summit in Barcelona , Spain , have reached a last-minute agreement on a code of conduct in the war against terrorism . NNP NNP CC NNP NNS IN DT NN IN NNP , NNP , VBP VBN DT JJ NN IN DT NN IN NN IN DT NN IN NN . At an often fractious conference that ended Monday , diplomats worked into the night Sunday trying to agree on how to define terrorism . IN DT RB JJ NN WDT VBD NNP , NNS VBD IN DT NN NNP VBG TO VB IN WRB TO VB NN . Some Arab delegates wanted to distinguish between terrorism and what they call ' resistance movements , ' but European officials insisted that the code reflect that terrorism is never justified . DT JJ NNS VBD TO VB IN NN CC WP PRP VBP `` NN NNS , `` CC JJ NNS VBD IN DT NN VBP DT NN VBZ RB JJ . First reports indicated that a compromise was worked out . JJ NNS VBD IN DT NN VBD VBN RP . The summit marked the 10th anniversary of the Euro-Mediterranean partnership , which includes all 25 EU states , Israel , the Palestinian Authority and eight mostly Arab Mediterranean countries . DT NN VBD DT JJ NN IN DT JJ NN , WDT VBZ DT CD NNP NNS , NNP , DT JJ NNP CC CD RB JJ JJ NNS . But only the Mediterranean leaders from Turkey and the Palestinian Authority attending the Barcelona summit . CC RB DT JJ NNS IN NNP CC DT JJ NNP VBG DT NNP NN . Others were absent for various reasons . NNS VBD JJ IN JJ NNS . Britain 's Prince Charles and his new wife , Camilla , have visited the site of the 09-Nov terrorist attacks in New York City , as they begin a weeklong trip to the United States . NNP POS NNP NNP CC PRP$ JJ NN , NNP , VBP VBN DT NN IN DT CD JJ NNS IN NNP NNP NNP , IN PRP VBP DT NN NN TO DT NNP NNPS . After visiting the World Trade Center site Tuesday , the couple traveled to a nearby memorial garden to unveil a stone marker for British victims of the terrorist attacks . IN VBG DT NNP NNP NNP NN NNP , DT NN VBD TO DT JJ JJ NN TO VB DT NN NN IN JJ NNS IN DT JJ NNS . Television reports say few onlookers turned out for a glimpse of the Prince of Wales and his longtime companion , the Duchess of Cornwall , whom he married earlier this year . NN NNS VBP JJ NNS VBD RP IN DT NN IN DT NNP IN NNP CC PRP$ JJ NN , DT NNP IN NNP , WP PRP VBD RBR DT NN . Prince Charles also met with U.N. Secretary-General Kofi Annan at the United Nations . NNP NNP RB VBD IN NNP NNP NNP NNP IN DT NNP NNPS . On Wednesday , Prince Charles and Camilla travel to Washington to visit President and Mrs. Bush at the White House . IN NNP , NNP NNP CC NNP VBP IN NNP TO VB NNP CC NNP NNP IN DT NNP NNP . Friday , the royal couple will visit New Orleans to meet with victims of Hurricane Katrina , which devastated the Gulf Coast in August . NNP , DT JJ NN MD VB NNP NNP TO VB IN NNS IN NNP NNP , WDT VBD DT NNP NNP IN NNP . Estonian President Arnold Ruutel has formally approved the country 's new government , three weeks after the previous ruling coalition collapsed . JJ NNP NNP NNP VBZ RB VBN DT NN POS JJ NN , CD NNS IN DT JJ NN NN VBD . The president 's action followed a parliamentary vote confirming Andrus Ansip and his coalition government . DT NN POS NN VBD DT JJ NN VBG NNP NNP CC PRP$ NN NN . The 48-year-old Mr. Ansip was the minister of economics and communications minister in the previous government . DT JJ NNP NNP VBD DT NN IN NNS CC NNS NN IN DT JJ NN . The new coalition brings together Mr. Ansip 's Reform Party , the Centre Party and the People 's Union . DT JJ NN VBZ RB NNP NNP POS NNP NNP , DT NNP NNP CC DT NNS POS NNP . Estonia 's previous prime minister , Juhan Parts , resigned last month after lawmakers voted no-confidence in his justice minister . NNP POS JJ JJ NN , NNP NNP , VBD JJ NN IN NNS VBD NN IN PRP$ NN NN . Tickets have gone on sale for the International Football Federation 's all-star match to raise money for the victims of last month 's devastating Indian Ocean tsunami . NNS VBP VBN IN NN IN DT NNP NNP NNP POS JJ NN TO VB NN IN DT NNS IN JJ NN POS JJ NNP NNP NN . Tickets for the so-called ' Football for Hope ' match February 15 in Barcelona will cost between $ 13 - $ 38 . NNS IN DT JJ `` NN IN NNP `` NN NNP CD IN NNP MD VB IN $ CD IN $ CD . All proceeds will be donated to the Tsunami Solidarity Fund set up by FIFA and the Asian Football Confederation . DT NNS MD VB VBN TO DT NNP NNP NNP VBN RP IN NNP CC DT NNP NNP NNP . FIFA player of the Year Ronaldinho of Brazil and European player of the year Andriy Shevchenko of Ukraine will captain the two teams . NNP NN IN DT NN NNP IN NNP CC JJ NN IN DT NN NNP NNP IN NNP MD VB DT CD NNS . Other stars slated to appear include Brazil 's Ronaldo , David Beckham of England and Frenchman Zinedine Zidane . JJ NNS VBN TO VB VBP NNP POS NNP , NNP NNP IN NNP CC NN NNP NNP . The Israeli cabinet has postponed a vote to open a key border crossing between the Gaza Strip and Egypt . DT JJ NN VBZ VBN DT NN TO VB DT JJ NN VBG IN DT NNP NNP CC NNP . Israeli radio linked the delay to a disagreement over the role of European security monitors at the Rafah crossing . JJ NN VBD DT NN TO DT NN IN DT NN IN JJ NN NNS IN DT NNP VBG . Last week , the Israeli security cabinet voted to reopen the crossing under Egyptian and Palestinian control , with Europeans monitoring the flow of people . JJ NN , DT JJ NN NN VBD TO VB DT VBG IN JJ CC JJ NN , IN NNS VBG DT NN IN NNS . But the radio report says the European Union is balking at Israel 's demand that its monitors arrest anyone suspected of arms smuggling . CC DT NN NN VBZ DT NNP NNP VBZ VBG IN NNP POS NN IN PRP$ NNS NN DT VBN IN NNS VBG . Israeli forces left the Gaza Strip in September after a 38-year occupation , but they still control the borders of the Palestinian territory . JJ NNS VBD DT NNP NNP IN NNP IN DT JJ NN , CC PRP RB VBP DT NNS IN DT JJ NN . European delegates and Israeli negotiators met Sunday in Jerusalem in a push to resolve the dispute . JJ NNS CC JJ NNS VBD NNP IN NNP IN DT NN TO VB DT NN . The Europeans are to meet with Palestinians later in the day and Monday in Ramallah and Gaza City . DT NNS VBP TO VB IN NNS RB IN DT NN CC NNP IN NNP CC NNP NNP . A strong earthquake has hit southern Iran . DT JJ NN VBZ VBN JJ NNP . Officials expect some damage , but there are no reports of casualties . NNS VBP DT NN , CC EX VBP DT NNS IN NNS . Iranian officials say the magnitude six quake was centered in a lightly-populated rural area north of Bandar Abbas , a major port on the Persian Gulf . JJ NNS VBP DT NN CD NN VBD VBN IN DT JJ JJ NN NN IN NNP NNP , DT JJ NN IN DT NNP NNP . Iran 's state-run news agency reported at least two aftershocks , the strongest measuring 4.8 magnitude . NNP POS JJ NN NN VBD IN JJS CD NNS , DT JJS NN CD NN . Last November , a quake of 5.9 magnitude struck Qeshm island , south of Bandar Abbas , killing nine people and injuring scores of others . JJ NNP , DT NN IN CD NN VBD NNP NN , NN IN NNP NNP , VBG CD NNS CC VBG NNS IN NNS . Shuttle astronauts are more than half way through a record sixteen day construction mission to the International Space Station . NNP NNS VBP JJR IN DT NN IN DT NN CD NN NN NN TO DT NNP NNP NNP . Endeavor is docked for the International Space Station , where it will remain until next Wednesday when unhitches for the return to earth . NNP VBZ VBN IN DT NNP NNP NNP , WRB PRP MD VB IN JJ NNP WRB NNS IN DT NN TO NN . VOA 's Paul Sisco has today 's mission update . NNP POS NNP NNP VBZ NN POS NN NN . Ukraine 's defense ministry says it will begin a three-stage withdrawal of its troops from Iraq next week . NNP POS NN NN VBZ PRP MD VB DT JJ NN IN PRP$ NNS IN NNP JJ NN . The Interfax news agency reports Saturday that 150 of Ukraine 's more than 1600 soldiers will leave Iraq on Tuesday . DT NNP NN NN VBZ NNP IN CD IN NNP POS JJR IN CD NNS MD VB NNP IN NNP . A full withdrawal should be complete by October . DT JJ NN MD VB JJ IN NNP . Meanwhile , Bulgaria says U.S. forces have admitted responsibility for the ' friendly-fire ' death of a Bulgarian soldier in southern Iraq a week ago . RB , NNP VBZ NNP NNS VBP VBN NN IN DT `` JJ `` NN IN DT JJ NN IN JJ NNP DT NN RB . The Bulgarian defense ministry said the U.S. military said the shooting was ' unintentional , ' but that U.S. troops failed to carefully identify the target and opened fire without warning shots . DT JJ NN NN VBD DT NNP NN VBD DT NN VBD `` JJ , `` CC IN NNP NNS VBD TO RB VB DT NN CC VBD NN IN VBG NNS . There was no immediate confirmation from the U.S. military . EX VBD DT JJ NN IN DT NNP NN . In a separate incident , the U.S. military says it is investigating whether six American soldiers mistreated two Iraqi detainees they were transporting to a detention facility last month . IN DT JJ NN , DT NNP NN VBZ PRP VBZ VBG IN CD JJ NNS VBD CD JJ NNS PRP VBD VBG TO DT NN NN JJ NN . Both detainees sustained minor injuries . DT NNS VBD JJ NNS . Top officials of the U.S. central bank held a key interest rate steady at two percent Tuesday . JJ NNS IN DT NNP JJ NN VBD DT JJ NN NN JJ IN CD NN NNP . Some economists had been expecting the U.S. Federal Reserve to cut interest rates in an effort to ease the current financial crisis by making it easier for businesses and consumers to borrow money . DT NNS VBD VBN VBG DT NNP NNP NNP TO VB NN NNS IN DT NN TO VB DT JJ JJ NN IN VBG PRP JJR IN NNS CC NNS TO VB NN . In a statement explaining their decision , Fed officials said they were not changing rates in part because the danger of inflation is still high . IN DT NN VBG PRP$ NN , NNP NNS VBD PRP VBD RB VBG NNS IN NN IN DT NN IN NN VBZ RB JJ . The statement did say that strains in the financial markets have increased ' significantly ' and labor markets are weakening . DT NN VBD VB IN NNS IN DT JJ NNS VBP VBN `` RB `` CC NN NNS VBP VBG . The Fed often lowers interest rates in an effort to stimulate the economy , and raises them to fight inflation . DT NNP RB VBZ NN NNS IN DT NN TO VB DT NN , CC VBZ PRP TO VB NN . China 's foreign ministry has denied reports that Chinese banks loaned six billion dollars to a Russian bank to buy the main oil production unit of the Yukos energy company . NNP POS JJ NN VBZ VBN NNS IN JJ NNS VBD CD CD NNS TO DT JJ NN TO VB DT JJ NN NN NN IN DT NNP NN NN . Russia 's finance minister said Wednesday that Chinese funds helped a Russian bank and the Roseneft state-owned oil firm buy ex-Yukos unit Yuganskneftegaz . NNP POS NN NN VBD NNP IN JJ NNS VBD DT JJ NN CC DT NNP JJ NN NN VB NNP NN NNP . But after his comments , Roseneft and the finance ministry said the Chinese funds were used to buy oil , not to buy Yugansk . CC IN PRP$ NNS , NNP CC DT NN NN VBD DT JJ NNS VBD VBN TO VB NN , RB TO VB NNP . The Chinese foreign ministry Thursday confirmed that it did not provide any loans for the Yugansk deal , but it did not say if the funds were used to purchase oil . DT JJ JJ NN NNP VBD IN PRP VBD RB VB DT NNS IN DT NNP NN , CC PRP VBD RB VB IN DT NNS VBD VBN TO VB NN . The Yugansk company was sold last December to a mysterious buyer in a $ 9 billion deal that President Vladimir Putin 's economic advisor called ' the fraud of the year . ' DT NNP NN VBD VBN JJ NNP TO DT JJ NN IN DT $ CD CD NN IN NNP NNP NNP POS JJ NN VBD `` DT NN IN DT NN . `` Yukos has challenged the sale in U.S. courts . NNP VBZ VBN DT NN IN NNP NNS . Reports from Somalia say two people were killed and six others wounded when a bomb exploded in the capital , Mogadishu in what officials believe may have been an attempt to attack an African Union delegation . NNS IN NNP VBP CD NNS VBD VBN CC CD NNS VBD WRB DT NN VBD IN DT NN , NNP IN WP NNS VBP MD VB VBN DT NN TO VB DT NNP NNP NN . Witnesses say the blast went off early Thursday on a road near where the AU delegation was scheduled to pass . NNS VBP DT NN VBD RB JJ NNP IN DT NN IN WRB DT NNP NN VBD VBN TO VB . The officials say the explosive device had been attached to a motorcycle which had been parked by the side of the road . DT NNS VBP DT JJ NN VBD VBN VBN TO DT NN WDT VBD VBN VBN IN DT NN IN DT NN . The AU team has been in Somalia to asses security for a regional peacekeeping force . DT NNP NN VBZ VBN IN NNP TO VB NN IN DT JJ NN NN . Somalia 's new government had asked for AU peacekeepers to defend officials as they begin moving home from their current base in Kenya later this month . NNP POS JJ NN VBD VBN IN NNP NNS TO VB NNS IN PRP VBP VBG NN IN PRP$ JJ NN IN NNP RB DT NN . The campaign of Barack Obama says the Democratic presidential hopeful is about to choose a running mate and wants his supporters to be the first to know . DT NN IN NNP NNP VBZ DT JJ JJ NN VBZ IN TO VB DT NN NN CC VBZ PRP$ NNS TO VB DT JJ TO VB . Campaign manager David Plouffe has notified backers that they can sign up to receive an e-mail or text message ' the moment ' the decision is made . NN NN NNP NNP VBZ VBN NNS IN PRP MD VB RP TO VB DT NN CC NN NN `` DT NN `` DT NN VBZ VBN . The Obama campaign has used technology , especially the Internet , to build an on-line community of two million volunteers and to raise hundreds of millions of dollars in campaign funds . DT NNP NN VBZ VBN NN , RB DT NNP , TO VB DT JJ NN IN CD CD NNS CC TO VB NNS IN NNS IN NNS IN NN NNS . Obama is vacationing in the U.S. Pacific state of Hawaii , two weeks ahead of the Democratic National Convention , where he and his vice presidential running mate will be formally nominated . NNP VBZ VBG IN DT NNP NNP NN IN NNP , CD NNS RB IN DT JJ NNP NNP , WRB PRP CC PRP$ NN JJ VBG NN MD VB RB VBN . Republican presidential candidate John McCain campaigns Tuesday in Pennsylvania and New Jersey . JJ JJ NN NNP NNP NNS NNP IN NNP CC NNP NNP . The veteran Arizona lawmaker is to be nominated as his party 's candidate in the first week of September at the Republican National Convention . DT JJ NNP NN VBZ TO VB VBN IN PRP$ NN POS NN IN DT JJ NN IN NNP IN DT NNP NNP NNP . The head of Iran 's nuclear negotiators has warned that the country 's incoming president may reverse an agreement to freeze uranium enrichment activities . DT NN IN NNP POS JJ NNS VBZ VBN IN DT NN POS JJ NN MD VB DT NN TO VB NN NN NNS . Hassan Rohani told an Iranian daily he believes elected President Mahmoud Ahmadinejad will remain committed to nuclear talks with the European Union . NNP NNP VBD DT JJ NN PRP VBZ VBN NNP NNP NNP MD VB JJ TO JJ NNS IN DT NNP NNP . But he says the new president has a different view on the enrichment freeze , and may implement a change in a new round of talks with EU diplomats next month . CC PRP VBZ DT JJ NN VBZ DT JJ NN IN DT NN NN , CC MD VB DT NN IN DT JJ NN IN NNS IN NNP NNS JJ NN . Tuesday , Mr. Ahmadinejad vowed ' new measures ' in nuclear talks when he takes over Iran 's government on August 3 . NNP , NNP NNP VBD `` JJ NNS `` IN JJ NNS WRB PRP VBZ RP NNP POS NN IN NNP CD . EU officials have been offering economic incentives if Iran agrees to end uranium enrichment , amid fears the Islamic Republic may develop a nuclear weapon . NNP NNS VBP VBN VBG JJ NNS IN NNP VBZ TO VB NN NN , IN NNS DT NNP NNP MD VB DT JJ NN . Tehran insists its program is for peaceful ends . NNP VBZ PRP$ NN VBZ IN JJ NNS . Sri Lankan government negotiators and Tamil Tiger rebels have agreed to resume their cease-fire talks in April and to restrain the level of violence between them . NNP NNP NN NNS CC NNP NNP NNS VBP VBN TO VB PRP$ NN NNS IN NNP CC TO VB DT NN IN NN IN PRP . Norwegian mediator Erik Solheim said the agreement came during two days of talks in Geneva that ended Thursday . JJ NN NNP NNP VBD DT NN VBD IN CD NNS IN NNS IN NNP WDT VBD NNP . Earlier , Solheim had played down expectations of a breakthrough , saying confidence was low . RB , NNP VBD VBN RP NNS IN DT NN , VBG NN VBD JJ . Sri Lanka wants to make some changes to a 2002 ceasefire accord signed by the rebels . NNP NNP VBZ TO VB DT NNS TO DT CD NN NN VBN IN DT NNS . But the Tamil rebels say they will only discuss implementing the existing ceasefire deal . CC DT NNP NNS VBP PRP MD RB VB VBG DT VBG NN NN . Both sides blame the other for a surge in violence in December and January that killed at least 150 people . DT NNS VBP DT JJ IN DT NN IN NN IN NNP CC NNP WDT VBD IN JJS CD NNS . In the latest incident , Sri Lanka 's military accuses Tamil rebels of killing a Muslim man in the east of the country on Wednesday . IN DT JJS NN , NNP NNP POS JJ NNS NNP NNS IN VBG DT NNP NN IN DT NN IN DT NN IN NNP . Recep Tayyip Erdogan NNP NNP NNP Turkey 's prime minister says his country will not agree to new conditions for European Union membership . NNP POS JJ NN VBZ PRP$ NN MD RB VB TO JJ NNS IN NNP NNP NN . In comments Sunday , Prime Minister Recep Tayyip Erdogan said Turkey was in no position to renegotiate so close to the start of EU accession talks , which are scheduled to begin this October . IN NNS NNP , NNP NNP NNP NNP NNP VBD NNP VBD IN DT NN TO VB RB RB TO DT NN IN NNP NN NNS , WDT VBP VBN TO VB DT NNP . Mr. Erdogan said that would not be ' honest politics . ' NNP NNP VBD DT MD RB VB `` JJ NNS . `` Last week EU Commission President Jose Manuel Barroso said the bloc should have an open debate on Turkey 's candidacy . JJ NN NNP NNP NNP NNP NNP NNP VBD DT NN MD VB DT JJ NN IN NNP POS NN . But British Prime Minister Tony Blair warned against shutting the EU to new members like Turkey , remarks welcomed by Mr. Erdogan . CC JJ NNP NNP NNP NNP VBD IN VBG DT NNP TO JJ NNS IN NNP , NNS VBN IN NNP NNP . Opposition to the largely Muslim nation 's membership in the European bloc contributed to the defeat of the EU constitution in recent referenda in France and the Netherlands . NN TO DT RB JJ NN POS NN IN DT JJ NN VBD TO DT NN IN DT NNP NN IN JJ NN IN NNP CC DT NNP . The U.S. military says four American soldiers have died in separate attacks in Baghdad . DT NNP NN VBZ CD JJ NNS VBP VBN IN JJ NNS IN NNP . Three of the soldiers were killed Monday in east Baghdad , where U.S. and Iraqi troops have waged intense battles with Shi'ite militiamen . CD IN DT NNS VBD VBN NNP IN JJ NNP , WRB NNP CC JJ NNS VBP VBN JJ NNS IN NNP NNS . The fourth soldier was killed by indirect fire during a separate incident in western Baghdad . DT JJ NN VBD VBN IN JJ NN IN DT JJ NN IN JJ NNP . Earlier , the U.S. military reported it had killed seven militants in Baghdad 's Sadr City district . RB , DT NNP NN VBD PRP VBD VBN CD NNS IN NNP POS NNP NNP NN . The casualties came during a combined air and ground assault launched in response to small arms fire directed at U.S. troops . DT NNS VBD IN DT JJ NN CC NN NN VBN IN NN TO JJ NNS NN VBD IN NNP NNS . On Sunday , Iraqi and American troops killed 38 suspected militants in Baghdad , in the fiercest fighting in weeks . IN NNP , JJ CC JJ NNS VBD CD JJ NNS IN NNP , IN DT JJS NN IN NNS . Officials said gunmen took advantage of a sandstorm that blanketed the Iraqi capital to launch apparently coordinated assaults . NNS VBD NNS VBD NN IN DT NN WDT VBD DT JJ NN TO VB RB VBN NNS . The sandstorm grounded American helicopters , the main weapon used by U.S. forces to hunt insurgent rocket-launching crews . DT NN VBD JJ NNS , DT JJ NN VBN IN NNP NNS TO VB JJ NN NNS . Car bombs killed at least 24 people in Iraq Sunday and police found the bullet-riddled bodies of 42 men in Baghdad . NN NNS VBD IN JJS CD NNS IN NNP NNP CC NN VBD DT JJ NNS IN CD NNS IN NNP . In the deadliest blast , at least 15 people were killed in the southern Shi'ite holy city of Karbala . IN DT JJS NN , IN JJS CD NNS VBD VBN IN DT JJ NNP JJ NN IN NNP . In Baghdad , a car bomb near an army patrol in a Sunni neighborhood ( Adhamiyah ) killed eight people and wounded 15 . IN NNP , DT NN NN IN DT NN NN IN DT NNP NN LRB NNP RRB VBD CD NNS CC VBD CD . At nearly the same time , another blast ( in the Waziriyah neighborhood ) killed one person . IN RB DT JJ NN , DT NN LRB IN DT NNP NN RRB VBD CD NN . And a U.S. Marine died from wounds sustained during an operation in al-Anbar province . CC DT NNP NN VBD IN NNS VBN IN DT NN IN NNP NN . To the north , Kurdistan 's parliament formally unified the autonomous region 's two local governments . IN DT NN , NNP POS NN RB VBN DT JJ NN POS CD JJ NNS . In southern Iraq , Basra was reported calm and an overnight curfew was lifted after Saturday 's clash between Shi'ite gunmen and British troops who were trying to recover a downed British military helicopter . IN JJ NNP , NNP VBD VBN NN CC DT JJ NN VBD VBN IN NNP POS NN IN NNP NNS CC JJ NNS WP VBD VBG TO VB DT JJ JJ JJ NN . The number of Indonesian children infected with the crippling polio virus has risen to 155 , with the discovery of 33 new cases in the last two weeks . DT NN IN JJ NNS VBN IN DT JJ NN NN VBZ VBN TO CD , IN DT NN IN CD JJ NNS IN DT JJ CD NNS . The World Health Organization says the new infections were found in areas on western Java island , where the disease originally broke out earlier this year . DT NNP NNP NNP VBZ DT JJ NNS VBD VBN IN NNS IN JJ NNP NN , WRB DT NN RB VBD RP RBR DT NN . The polio outbreak - Indonesia 's first in 10 years - has prompted authorities to vaccinate 6.5 million children . DT NN NN IN NNP POS JJ IN CD NNS : VBZ VBN NNS TO VB CD CD NNS . Another 24 million will be immunized in new rounds of a vaccination campaign on August 30 and September 27 . DT CD CD MD VB VBN IN JJ NNS IN DT NN NN IN NNP CD CC NNP CD . Polio is usually spread through polluted water . NNP VBZ RB VBN IN JJ NN . It affects the nervous system , causing paralysis , muscular atrophy and death . PRP VBZ DT JJ NN , VBG NN , JJ NN CC NN . Police have arrested four more suspects in connection with July 's train bombings in Mumbai ( formerly known as Bombay ) that killed nearly 200 people and wounded more than 800 others . NNS VBP VBN CD JJR NNS IN NN IN NNP POS NN NNS IN NNP LRB RB VBN IN NNP RRB WDT VBD RB CD NNS CC VBD JJR IN CD NNS . Authorities identified the men as Mohammed Shafi , Shaikh Mohammed , Mohammed Majid and Abdul Vahiuddin . NNS VBD DT NNS IN NNP NNP , NNP NNP , NNP NNP CC NNP NNP . Police arrested three of the suspects in Mumbai and the fourth in the eastern city of Calcutta . NNS VBN CD IN DT NNS IN NNP CC DT NN IN DT JJ NN IN NNP . This raises the total number of arrests in the case to more than 15 people . DT VBZ DT JJ NN IN NNS IN DT NN TO JJR IN CD NNS . Indian officials say they suspect the Pakistan-based Lashkar-e-Toiba militant group was behind the attacks . JJ NNS VBP PRP VBP DT JJ NNP JJ NN VBD IN DT NNS . The group , which is fighting Indian rule in Kashmir , has denied involvement . DT NN , WDT VBZ VBG JJ NN IN NNP , VBZ VBN NN . The explosions on packed commuter trains in Mumbai prompted police raids on the city 's Muslim ghettos and the questioning of hundreds of people across the country . DT NNS IN VBN NN NNS IN NNP VBD NN NNS IN DT NN POS NNP NNS CC DT VBG IN NNS IN NNS IN DT NN . The head of the Organization of the Islamic Conference has rejected calls by a Pakistani cleric for the murder of Danish cartoonists who drew depictions of the Muslim Prophet Muhammad . DT NN IN DT NNP IN DT NNP NNP VBZ VBN NNS IN DT JJ NN IN DT NN IN JJ NNS WP VBD NNS IN DT NNP NNP NNP . Secretary-General Ekmeleddin Ihsanoglu said in Pakistan Tuesday that the death treats and violent reaction against the cartoons are un-Islamic . JJ NNP NNP VBD IN NNP NNP IN DT NN NNS CC JJ NN IN DT NNS VBP JJ . Meanwhile , a United Nations spokesman says Secretary-General Kofi Annan has made a last-minute decision to visit the Middle East to try to calm Muslim anger . RB , DT NNP NNP NN VBZ NNP NNP NNP VBZ VBN DT JJ NN TO VB DT NNP NNP TO VB TO VB NNP NN . Mr. Annan will speak at a previously-scheduled U.N.-sponsored meeting in Qatar Sunday on how to bring civilizations closer together . NNP NNP MD VB IN DT JJ JJ NN IN NNP NNP IN WRB TO VB NNS RBR RB . The 12 cartoons first appeared in a Danish newspaper in September and have been reprinted in other European newspapers . DT CD NNS RB VBD IN DT JJ NN IN NNP CC VBP VBN VBN IN JJ JJ NNS . One of the cartoons depicts Muhammad as a terrorist . CD IN DT NNS VBZ NNP IN DT NN . Islam forbids any depictions of the prophet . NNP VBZ DT NNS IN DT NN . The U.S. ambassador to Venezuela says the United States could suspend flights by Venezuelan airlines if Caracas carries out a threat to ban or restrict U.S. carriers flying to the South American nation . DT NNP NN TO NNP VBZ DT NNP NNPS MD VB NNS IN JJ NNS IN NNP VBZ RP DT NN TO VB CC VB NNP NNS VBG TO DT NNP NNP NN . Ambassador William Brownfield made the remark Tuesday , saying that under that situation , neither Venezuela nor the United States wins . NNP NNP NNP VBD DT NN NNP , VBG IN IN DT NN , CC NNP CC DT NNP NNPS VBZ . Last month , the Venezuelan government said it would cut the number of airline flights by U.S. carriers , saying the U.S. has not complied with bilateral aviation accords between the two countries . JJ NN , DT JJ NN VBD PRP MD VB DT NN IN NN NNS IN NNP NNS , VBG DT NNP VBZ RB VBN IN JJ NN NNS IN DT CD NNS . The U.S. put restrictions on flights from Venezuela 10 years ago because of security concerns . DT NNP VBD NNS IN NNS IN NNP CD NNS RB IN IN NN NNS . Caracas has been trying , unsuccessfully , to get those restrictions removed and threatens to limit U.S. flights as of March 30 . NNP VBZ VBN VBG , RB , TO VB DT NNS VBN CC VBZ TO VB NNP NNS IN IN NNP CD . The Venezuelan ban would put an end to flights between the two countries by Continental Airlines and Delta Air Lines and restrict some by American Airlines . DT JJ NN MD VB DT NN TO NNS IN DT CD NNS IN NNP NNPS CC NNP NNP NNPS CC VB DT IN NNP NNPS . A prominent politician and a candidate in Kyrgyzstan 's upcoming presidential election has survived an attempt on his life . DT JJ NN CC DT NN IN NNP POS JJ JJ NN VBZ VBN DT NN IN PRP$ NN . Wearing a bandage over his nose , Bayaman Erkinbayev told parliamentarians he was shot and wounded in the face in an assassination attempt late Thursday . VBG DT NN IN PRP$ NN , NNP NNP VBD NNS PRP VBD VBN CC VBN IN DT NN IN DT NN NN JJ NNP . He said the shots were fired by assailants from a car in the capital , Bishkek . PRP VBD DT NNS VBD VBN IN NNS IN DT NN IN DT NN , NNP . Mr. Erkinbayev said he believed that his candidacy was the reason for the attack , but a Kyrgyz police official said the shooting may not have been politically motivated . NNP NNP VBD PRP VBD IN PRP$ NN VBD DT NN IN DT NN , CC DT JJ NN NN VBD DT NN MD RB VB VBN RB JJ . A wealthy businessman from southern Kyrgyzstan , Mr. Erkinbayev and his supporters were the catalyst behind mass popular protests which forced former President Askar Akayev from office on March 24 . DT JJ NN IN JJ NNP , NNP NNP CC PRP$ NNS VBD DT NN IN JJ JJ NNS WDT VBD JJ NNP NNP NNP IN NN IN NNP CD . Bishkek mayor and former security chief Felix Kulov and interim President Kurmanbek Bakiyev are considered the front-runners in the July presidential elections . NNP NN CC JJ NN NN NNP NNP CC JJ NNP NNP NNP VBP VBN DT NNS IN DT NNP JJ NNS . The death toll from five days of fighting in Somalia rose to more than 120 on Thursday , as the United Nations said weapons are flowing into the country despite an arms embargo . DT NN NN IN CD NNS IN VBG IN NNP VBD TO JJR IN CD IN NNP , IN DT NNP NNP VBD NNS VBP VBG IN DT NN IN DT NNS NN . Islamic militias and an alliance of warlords have been fighting for control of parts of Mogadishu , mainly in the northern Sii-Sii neighborhood since Sunday . JJ NNS CC DT NN IN NNS VBP VBN VBG IN NN IN NNS IN NNP , RB IN DT JJ NNP NN IN NNP . Witnesses say most of the casualties have been civilians caught in the crossfire . NNS VBP JJS IN DT NNS VBP VBN NNS VBN IN DT NN . Meanwhile , the United Nations says it is investigating claims that an unnamed country is funneling weapons into Somalia in violation of an international embargo . RB , DT NNP NNP VBZ PRP VBZ VBG NNS IN DT JJ NN VBZ VBG NNS IN NNP IN NN IN DT JJ NN . Somalia has suffered 15 years of sporadic violence since the ouster of former dictator Mohamed Siad Barre in 1991 . NNP VBZ VBN CD NNS IN JJ NN IN DT NN IN JJ NN NNP NNP NNP IN CD . A California man has filed a lawsuit against Sean ' Diddy ' Combs , claiming the rap mogul punched and pushed him and his girlfriend in a Hollywood nightclub . DT NNP NN VBZ VBN DT NN IN NNP `` NNP `` NNP , VBG DT NN NN VBD CC VBD PRP CC PRP$ NN IN DT NNP NN . Gerard Rechnitzer claims he and his girlfriend encountered Combs in Hollywood 's Roosevelt Hotel on February 25 . NNP NNP VBZ PRP CC PRP$ NN VBD NNP IN NNP POS NNP NNP IN NNP CD . The lawsuit states Combs was speaking to Rechnitzer 's girlfriend . DT NN NNS NNP VBD VBG TO NNP POS NN . As Rechnitzer approached , Combs yelled at him and pushed him into a parked car . IN NNP VBD , NNP VBD IN PRP CC VBD PRP IN DT JJ NN . The March 2 lawsuit asks for unspecified damages . DT NNP CD NN VBZ IN JJ NNS . An attorney for Combs called the suit ' completely baseless . ' DT NN IN NNP VBD DT NN `` RB JJ . `` Sri Lanka 's international financial backers have met with the country 's president to try to salvage the 2002 ceasefire between the government and Tamil Tiger rebels . NNP NNP POS JJ JJ NNS VBP VBN IN DT NN POS NN TO VB TO VB DT CD NN IN DT NN CC NNP NNP NNS . Envoys from the United States , European Union , Norway and Japan met with President Mahinda Rajapakse Monday in Colombo to express their concern over the escalating violence that has claimed hundreds of lives this year . NNS IN DT NNP NNPS , NNP NNP , NNP CC NNP VBD IN NNP NNP NNP NNP IN NNP TO VB PRP$ NN IN DT VBG NN WDT VBZ VBN NNS IN NNS DT NN . The diplomats discussed the need for an immediate halt to the bloodshed . DT NNS VBD DT NN IN DT JJ NN TO DT NN . They also discussed the humanitarian crisis in the northern Jaffna peninsula , which is cut off from the rest of the country following battles between the two sides . PRP RB VBD DT JJ NN IN DT JJ NNP NN , WDT VBZ VBN RP IN DT NN IN DT NN VBG NNS IN DT CD NNS . Meanwhile , the foreign ceasefire monitoring mission says it is temporarily retreating to Colombo because neither the government nor the rebels are allowing its monitors access to the battlefield in northern Jaffna peninsula . RB , DT JJ NN VBG NN VBZ PRP VBZ RB VBG TO NNP IN CC DT NN CC DT NNS VBP VBG PRP$ NNS NN TO DT NN IN JJ NNP NN . A new public opinion poll finds President Bush 's approval rating sinking to an all-time low . DT JJ JJ NN NN VBZ NNP NNP POS NN NN NN TO DT JJ NN . Only 39 percent of those surveyed in the Washington Post-ABC News poll said they approve of the president 's overall job performance . RB CD NN IN DT VBN IN DT NNP NNP NNP NN VBD PRP VBP IN DT NN POS JJ NN NN . That figure is down from 42 percent in the Post-ABC poll last month , and down from 52 percent the week of Mr. Bush 's second inauguration in January . DT NN VBZ RB IN CD NN IN DT NNP NN JJ NN , CC RB IN CD NN DT NN IN NNP NNP POS JJ NN IN NNP . The poll of 600 Americans was taken Friday and Saturday , after former top White House aide Lewis Libby was indicted on criminal charges related to the probe into who leaked the identity of a secret CIA operative . DT NN IN CD NNS VBD VBN NNP CC NNP , IN JJ JJ NNP NNP NN NNP NNP VBD VBN IN JJ NNS VBN TO DT NN IN WP VBD DT NN IN DT JJ NNP NN . The poll found that 55 percent of Americans believe the Libby case indicates broader ethical problems in the White House . DT NN VBD IN CD NN IN NNS VBP DT NNP NN VBZ JJR JJ NNS IN DT NNP NNP . Forty-one percent said the case was an ' isolated incident . ' CD NN VBD DT NN VBD DT `` JJ NN . `` The survey has a four-point margin of error . DT NN VBZ DT JJ NN IN NN . Pakistani security officials say some 150 militants stormed five checkpoints in northwest Pakistan Friday in a coordinated attack that left 11 soldiers and 24 militants dead . JJ NN NNS VBP DT CD NNS VBD CD NNS IN JJ NNP NNP IN DT JJ NN WDT VBD CD NNS CC CD NNS JJ . The clashes took place overnight in the Mohmand tribal region near the Afghan border . DT NNS VBD NN RB IN DT NNP JJ NN IN DT JJ NN . A Taliban spokesman disputed the casualty figures , claiming the militants killed about 12 soldiers . DT NNP NN VBD DT NN NNS , VBG DT NNS VBD IN CD NNS . U.S. officials say the region has become a base for Taliban and al-Qaida militants responsible for deadly attacks against coalition forces in Afghanistan . NNP NNS VBP DT NN VBZ VBN DT NN IN NNP CC NNP NNS JJ IN JJ NNS IN NN NNS IN NNP . A recent review of the U.S. strategy in Afghanistan and Pakistan called for greater cooperation with Pakistan , to deny safe havens to terrorists who operate in the border regions . DT JJ NN IN DT NNP NN IN NNP CC NNP VBD IN JJR NN IN NNP , TO VB JJ NNS TO NNS WP VBP IN DT NN NNS . In the southwestern city of Quetta Friday , a bomb planted on a bicycle exploded killing a police officer and wounding several others . IN DT JJ NN IN NNP NNP , DT NN VBN IN DT NN VBD VBG DT NN NN CC VBG JJ NNS . Officials say the bomb was detonated by remote control as a police vehicle passed by . NNS VBP DT NN VBD VBN IN JJ NN IN DT NN NN VBN IN . Independent Senator and former Democratic vice-presidential nominee Joseph Lieberman is endorsing Republican Senator John McCain 's presidential bid . NNP NNP CC JJ JJ JJ NN NNP NNP VBZ VBG NNP NNP NNP NNP POS JJ NN . Lieberman said his support for the Arizona Senator is based on McCain 's military career and legislative experience and their common view of U.S. foreign policy . NNP VBD PRP$ NN IN DT NNP NNP VBZ VBN IN NNP POS JJ NN CC JJ NN CC PRP$ JJ NN IN NNP JJ NN . Both men backed the U.S. invasion of Iraq in 2003 and have supported the war ever since . DT NNS VBD DT NNP NN IN NNP IN CD CC VBP VBN DT NN RB IN . Lieberman was former Vice President Al Gore 's running mate in the 2000 presidential election . NNP VBD JJ NNP NNP NNP NNP POS VBG NN IN DT CD JJ NN . In the years since , the Connecticut senator distanced himself from the Democratic Party over the war in Iraq and became an independent , frequently voting with Republicans on foreign policy and national security issues . IN DT NNS IN , DT NNP NN VBD PRP IN DT JJ NN IN DT NN IN NNP CC VBD DT JJ , RB VBG IN NNS IN JJ NN CC JJ NN NNS . The U.S. presidential campaign primary season is entering its final stage in the coming weeks , when voters in the states of Iowa and New Hampshire vote in early January for the candidates who will represent the Democratic and Republican parties in the November 2008 election . DT NNP JJ NN JJ NN VBZ VBG PRP$ JJ NN IN DT JJ NNS , WRB NNS IN DT NNS IN NNP CC NNP NNP NN IN JJ NNP IN DT NNS WP MD VB DT JJ CC JJ NNS IN DT NNP CD NN . Tropical depression Gamma is expected to dissipate Monday after battering the coasts of Honduras and Belize , killing at least 14 people . JJ NN NNP VBZ VBN TO VB NNP IN VBG DT NNS IN NNP CC NNP , VBG IN JJS CD NNS . In the storm 's wake , U.S. military helicopters have joined Honduran aircraft in flying aid to survivors along the Caribbean coast who have been cut off by flooding and mudslides . IN DT NN POS NN , NNP JJ NNS VBP VBN JJ NN IN VBG NN TO NNS IN DT NNP NN WP VBP VBN VBN RP IN NN CC NNS . At least 11 people in Honduras have died and 13 others are missing . IN JJS CD NNS IN NNP VBP VBN CC CD NNS VBP VBG . The bad weather is also blamed for a plane crash that killed the pilot and two passengers in Belize . DT JJ NN VBZ RB VBN IN DT NN NN WDT VBD DT NN CC CD NNS IN NNP . The plane was heading towards a resort lodge owned by U.S. filmmaker Francis Ford Coppola . DT NN VBD VBG IN DT NN NN VBN IN NNP NN NNP NNP NNP . The U.S. National Hurricane Center says the center of Gamma is about 135 kilometers northeast of Limon , Honduras , carrying maximum sustained winds of 55 kilometers an hour . DT NNP NNP NNP NNP VBZ DT NN IN NNP VBZ IN CD NNS RB IN NNP , NNP , VBG NN VBD NNS IN CD NNS DT NN . Gamma is the 24th named storm of this year 's record-breaking Atlantic hurricane season . NNP VBZ DT JJ VBN NN IN DT NN POS JJ NNP NN NN . Members of the party of Liberian presidential candidate George Weah have threatened to boycott parliament to protest alleged fraud in last week 's presidential run-off . NNS IN DT NN IN JJ JJ NN NNP NNP VBP VBN TO VB NN TO VB JJ NN IN JJ NN POS JJ NN . The lawmakers-elect from the Congress for Democratic Change issued a statement Monday vowing not to take their 18 legislative seats if Mr. Weah 's complaints of fraud are not addressed . DT NN IN DT NNP IN JJ NNP VBD DT NN NNP VBG RB TO VB PRP$ CD JJ NNS IN NNP NNP POS NNS IN NN VBP RB VBN . They won their seats in Liberia 's first post-war general elections last month . PRP VBD PRP$ NNS IN NNP POS JJ JJ JJ NNS JJ NN . The National Election Commission says it will hear Mr. Weah 's complaints starting on Tuesday . DT NNP NNP NNP VBZ PRP MD VB NNP NNP POS NNS VBG IN NNP . Hundreds of Mr. Weah 's supporters marched peacefully through the capital , Monrovia , Monday . NNS IN NNP NNP POS NNS VBD RB IN DT NN , NNP , NNP . Former Liberian Finance Minister Ellen Johnson-Sirleaf won about 60 percent of the vote , to 40 percent for Mr. Weah , a former soccer ( football ) star . JJ JJ NNP NNP NNP NNP VBD IN CD NN IN DT NN , TO CD NN IN NNP NNP , DT JJ NN LRB NN RRB NN . International observers say there is no evidence of widespread fraud . JJ NNS VBP EX VBZ DT NN IN JJ NN . And leaders from several African countries praised the run-off as peaceful , transparent , free and fair . CC NNS IN JJ JJ NNS VBD DT NN IN JJ , JJ , JJ CC JJ . Authorities in Kenya have filed charges against 150 people arrested in an ongoing crackdown against a militia in the western Mount Elgon region . NNS IN NNP VBP VBN NNS IN CD NNS VBN IN DT JJ NN IN DT NN IN DT JJ NNP NNP NN . Judicial sources said Tuesday that the suspects appeared before a court in Sirisia on Sunday and were charged with promoting ' war-like activities . ' NNP NNS VBD NNP IN DT NNS VBD IN DT NN IN NNP IN NNP CC VBD VBN IN VBG `` JJ NNS . `` Most of the suspects are said to be under 30 years of age and are accused of supporting the Sabaot Land Defense Force , a militia that has been fighting the government over land disputes . JJS IN DT NNS VBP VBN TO VB IN CD NNS IN NN CC VBP VBN IN VBG DT NNP NNP NNP NNP , DT NN WDT VBZ VBN VBG DT NN IN NN NNS . The government blames the militia for the deaths of more than 500 people over the past two years . DT NN VBZ DT NN IN DT NNS IN JJR IN CD NNS IN DT JJ CD NNS . Security forces backed by helicopters began attacking targets in Mount Elgon last week . NNP NNS VBN IN NNS VBD VBG NNS IN NNP NNP JJ NN . At least eight people have been killed in the fighting . IN JJS CD NNS VBP VBN VBN IN DT NN . Local officials have criticized the operation as being too heavy-handed . JJ NNS VBP VBN DT NN IN VBG RB JJ . The head of the International Atomic Energy Agency says Iran is insisting that some of its uranium enrichment centrifuges be exempt from a freeze of its nuclear program . DT NN IN DT NNP NNP NNP NNP VBZ NNP VBZ VBG IN DT IN PRP$ NN NN VBZ VB JJ IN DT NN IN PRP$ JJ NN . Mohamed ElBaradei told reporters in Vienna Thursday , that he would report to the IAEA board that Iran has frozen most of its uranium enrichment activity , except for 20 centrifuges . NNP NNP VBD NNS IN NNP NNP , IN PRP MD VB TO DT NNP NN IN NNP VBZ VBN JJS IN PRP$ NN NN NN , IN IN CD NNS . Iran 's new request is partial reversal of a recent agreement with the European Union to suspend all enrichment activity . NNP POS JJ NN VBZ JJ NN IN DT JJ NN IN DT NNP NNP TO VB DT NN NN . The IAEA chief says said he hopes the dispute will soon be resolved . DT NNP NN VBZ VBD PRP VBZ DT NN MD RB VB VBN . The IAEA board is meeting to decide whether to refer Iran to the U.N. Security Council for possible sanctions over its nuclear program . DT NNP NN VBZ VBG TO VB IN TO VB NNP TO DT NNP NNP NNP IN JJ NNS IN PRP$ JJ NN . The United States says Iran is secretly developing nuclear weapons - a charge Iran denies . DT NNP NNP VBZ NNP VBZ RB VBG JJ NNS IN DT NN NNP VBZ . Palestinian officials say Israeli troops have killed at least seven Palestinians and wounded 20 other people in the Gaza Strip . JJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS CC VBN CD JJ NNS IN DT NNP NNP . Security officials say the violence erupted early Monday in the town of Beit Hanoun , in northern Gaza . NN NNS VBP DT NN VBD JJ NNP IN DT NN IN NNP NNP , IN JJ NNP . Witnesses say the Israelis appeared to be looking for a member of the militant Popular Resistance Committees . NNS VBP DT NNS VBD TO VB VBG IN DT NN IN DT JJ NNP NNP NNS . The Israeli army said troops opened fire on Palestinian militants in the area attempting to launch rockets at southern Israel . DT JJ NN VBD NNS VBD NN IN JJ NNS IN DT NN VBG TO VB NNS IN JJ NNP . In other news , the leader of a hard-line Israeli party says he has decided to join the government of Israeli Prime Minister Ehud Olmert . IN JJ NN , DT NN IN DT JJ JJ NN VBZ PRP VBZ VBN TO VB DT NN IN JJ NNP NNP NNP NNP . Avigdor Lieberman , head of the Yisrael Beitenu party , said he agreed to join the goverment , giving it 78 seats in the 120-member parliament . NNP NNP , NN IN DT NNP NNP NN , VBD PRP VBD TO VB DT NN , VBG PRP CD NNS IN DT JJ NN . Tajikistan and the United Nations are appealing for $ 5.3 million in international aid following deadly floods and mudslides that killed at least 40 people . NNP CC DT NNP NNPS VBP VBG IN $ CD CD IN JJ NN VBG JJ NNS CC NNS WDT VBD IN JJS CD NNS . The U.N. Resident Coordinator in Tajikistan , Michael Jones , launched the appeal Wednesday to provide relief to the thousands affected by the May 7 flash floods in the town of Kulyab and surrounding districts . DT NNP NNP NNP IN NNP , NNP NNP , VBD DT NN NNP TO VB NN TO DT NNS VBN IN DT NNP CD NN NNS IN DT NN IN NNP CC VBG NNS . The floods , and resulting mudslides , displaced 4,500 people and destroyed homes , schools and roads . DT NNS , CC VBG NNS , VBD CD NNS CC VBN NNS , NNS CC NNS . At least 33 people remain missing . IN JJS CD NNS VBP JJ . Jones said Tajikistan was counting on the international community 's help to support those displaced and the affected communities . NNP VBD NNP VBD VBG IN DT JJ NN POS NN TO VB DT JJ CC DT JJ NNS . The U.N. appeal includes projects aimed at providing food and basic social services to those living in tents . DT NNP NN VBZ NNS VBN IN VBG NN CC JJ JJ NNS TO DT VBG IN NNS . The plan also intends to restore drinking water and sanitation in Kulyab and surrounding areas . DT NN RB VBZ TO VB NN NN CC NN IN NNP CC VBG NNS . The mountainous country is impacted by mudslides every year as snow begins to thaw in the spring . DT JJ NN VBZ VBN IN NNS DT NN IN NN VBZ TO VB IN DT NN . The U.S. unemployment rate increased to a four-year high in July . DT NNP NN NN VBD TO DT JJ NN IN NNP . A Labor Department report issued Friday shows 5.7 percent of the U.S. workforce is unemployed , a slight increase from June . DT NNP NNP NN VBN NNP VBZ CD NN IN DT NNP NN VBZ JJ , DT JJ NN IN NNP . Meanwhile the number of jobs fell by 51,000 , marking the seventh straight month of losses . RB DT NN IN NNS VBD IN CD , VBG DT JJ JJ NN IN NNS . White House spokeswoman Dana Perino said the administration is ' displeased ' with the report . NNP NNP NN NNP NNP VBD DT NN VBZ `` JJ `` IN DT NN . But she said the economy remains resilient . CC PRP VBD DT NN VBZ JJ . The manufacturing and construction industries cut the most jobs . DT NN CC NN NNS VBD DT JJS NNS . The two sectors have been hit hard by a housing slump and credit crisis . DT CD NNS VBP VBN VBN RB IN DT NN NN CC NN NN . Analysts say job cuts , combined with high energy costs , could impact consumer spending , which drives about two-thirds of the total economy . NNS VBP NN NNS , VBN IN JJ NN NNS , MD VB NN NN , WDT VBZ IN NNS IN DT JJ NN . A roadside explosion in southern Afghanistan has ripped through a coalition convoy , killing one Romanian soldier and wounding another . DT NN NN IN JJ NNP VBZ VBN IN DT NN NN , VBG CD JJ NN CC VBG DT . It was not immediately clear if the explosion was from a recently planted device , or the vehicle ran over ordinance from a past conflict . PRP VBD RB RB JJ IN DT NN VBD IN DT RB VBN NN , CC DT NN VBD IN NN IN DT JJ NN . Earlier reports indicated the blast late Sunday near the city of Kandahar killed an Afghan soldier . RBR NNS VBD DT NN JJ NNP IN DT NN IN NNP VBD DT JJ NN . But the U.S. military later confirmed the explosion hit a vehicle with Romanian soldiers inside . CC DT NNP NN RB VBD DT NN VBD DT NN IN JJ NNS IN . In a separate incident Sunday , in the capital , Kabul , a car bomb exploded on a road near a crowded residential area , causing material damage but no injuries . IN DT JJ NN NNP , IN DT NN , NNP , DT NN NN VBD IN DT NN IN DT JJ JJ NN , VBG NN NN CC DT NNS . Interior Ministry spokesman , Lutfullah Mashal , told reporters at the scene , the explosion was the work of the enemies of peace and stability . NNP NNP NN , NNP NNP , VBD NNS IN DT NN , DT NN VBD DT NN IN DT NNS IN NN CC NN . The inhabitants have traditionally earned their livelihood by fishing and by servicing fishing fleets operating off the coast of Newfoundland . DT NNS VBP RB VBN PRP$ NN IN NN CC IN VBG NN NNS VBG IN DT NN IN NNP . The economy has been declining , however , because of disputes with Canada over fishing quotas and a steady decline in the number of ships stopping at Saint Pierre . DT NN VBZ VBN VBG , RB , IN IN NNS IN NNP IN NN NNS CC DT JJ NN IN DT NN IN NNS VBG IN NNP NNP . In 1992 , an arbitration panel awarded the islands an exclusive economic zone of 12,348 sq km to settle a longstanding territorial dispute with Canada , although it represents only 25 % of what France had sought . IN CD , DT NN NN VBD DT NNS DT JJ JJ NN IN CD NN NN TO VB DT JJ JJ NN IN NNP , IN PRP VBZ RB CD NN IN WP NNP VBD VBN . France heavily subsidizes the islands to the great betterment of living standards . NNP RB VBZ DT NNS TO DT JJ NN IN VBG NNS . The government hopes an expansion of tourism will boost economic prospects . DT NN VBZ DT NN IN NN MD VB JJ NNS . Fish farming , crab fishing , and agriculture are being developed to diversify the local economy . NNP NN , NN NN , CC NN VBP VBG VBN TO VB DT JJ NN . Recent test drilling for oil may pave the way for development of the energy sector . JJ NN NN IN NN MD VB DT NN IN NN IN DT NN NN . One of the poorest countries in the world , Guinea-Bissau 's legal economy depends mainly on farming and fishing , but trafficking narcotics is probably the most lucrative trade . CD IN DT JJS NNS IN DT NN , NNP POS JJ NN VBZ RB IN NN CC NN , CC VBG NNS VBZ RB DT RBS JJ NN . Cashew crops have increased remarkably in recent years . NNP NNS VBP VBN RB IN JJ NNS . Guinea-Bissau exports fish and seafood along with small amounts of peanuts , palm kernels , and timber . NNP NNS NN CC NN IN IN JJ NNS IN NNS , NN NNS , CC NN . Rice is the major crop and staple food . NN VBZ DT JJ NN CC NN NN . However , intermittent fighting between Senegalese-backed government troops and a military junta destroyed much of the country 's infrastructure and caused widespread damage to the economy in 1998 ; the civil war led to a 28 % drop in GDP that year , with partial recovery in 1999 - 2002 . RB , JJ NN IN JJ NN NNS CC DT JJ NN VBD NN IN DT NN POS NN CC VBD JJ NN TO DT NN IN CD ; DT JJ NN VBD TO DT CD NN NN IN NN IN NN , IN JJ NN IN CD : CD . In December 2003 , the World Bank , IMF , and UNDP were forced to step in to provide emergency budgetary support in the amount of $ 107 million for 2004 , representing over 80 % of the total national budget . IN NNP CD , DT NNP NNP , NNP , CC NNP VBD VBN TO VB IN TO VB NN JJ NN IN DT NN IN $ CD CD IN CD , VBG IN CD NN IN DT JJ JJ NN . The combination of limited economic prospects , a weak and faction-ridden government , and favorable geography have made this West African country a way station for drugs bound for Europe . DT NN IN JJ JJ NNS , DT JJ CC JJ NN , CC JJ NN VBP VBN DT JJ JJ NN DT NN NN IN NNS VBN IN NNP . Present day Benin was the site of Dahomey , a prominent West African kingdom that rose in the 15th century . JJ NN NNP VBD DT NN IN NNP , DT JJ JJ JJ NN WDT VBD IN DT JJ NN . The territory became a French Colony in 1872 and achieved independence on 1 August 1960 , as the Republic of Benin . DT NN VBD DT JJ NN IN CD CC VBD NN IN CD NNP CD , IN DT NNP IN NNP . A succession of military governments ended in 1972 with the rise to power of Mathieu KEREKOU and the establishment of a government based on Marxist-Leninist principles . DT NN IN JJ NNS VBN IN CD IN DT NN TO NN IN NNP NNP CC DT NN IN DT NN VBN IN JJ NNS . A move to representative government began in 1989 . DT NN TO JJ NN VBD IN CD . Two years later , free elections ushered in former Prime Minister Nicephore SOGLO as president , marking the first successful transfer of power in Africa from a dictatorship to a democracy . CD NNS RB , JJ NNS VBD IN JJ NNP NNP NNP NNP IN NN , VBG DT JJ JJ NN IN NN IN NNP IN DT NN TO DT NN . KEREKOU was returned to power by elections held in 1996 and 2001 , though some irregularities were alleged . NNP VBD VBN TO NN IN NNS VBN IN CD CC CD , IN DT NNS VBD VBN . KEREKOU stepped down at the end of his second term in 2006 and was succeeded by Thomas YAYI Boni , a political outsider and independent . NNP VBD RB IN DT NN IN PRP$ JJ NN IN CD CC VBD VBN IN NNP NNP NNP , DT JJ NN CC JJ . YAYI has attempted to stem corruption and has strongly promoted accelerating Benin 's economic growth . NNP VBZ VBN TO VB NN CC VBZ RB VBN VBG NNP POS JJ NN . Hungary has made the transition from a centrally planned to a market economy , with a per capita income nearly two-thirds that of the EU-25 average . NNP VBZ VBN DT NN IN DT RB VBN TO DT NN NN , IN DT IN NN NN RB NNS IN IN DT JJ NN . The private sector accounts for more than 80 % of GDP . DT JJ NN NNS IN JJR IN CD NN IN NN . Foreign ownership of and investment in Hungarian firms are widespread , with cumulative foreign direct investment worth more than $ 70 billion . JJ NN IN CC NN IN JJ NNS VBP JJ , IN JJ JJ JJ NN NN JJR IN $ CD CD . The government 's austerity measures , imposed since late 2006 , have reduced the budget deficit from over 9 % of GDP in 2006 to 3.2 % in 2010 , with a target of less than 3 % in 2011 . DT NN POS NN NNS , VBN IN JJ CD , VBP VBN DT NN NN IN IN CD NN IN NN IN CD TO CD NN IN CD , IN DT NN IN JJR IN CD NN IN CD . Hungary 's impending inability to service its short-term debt - brought on by the global financial crisis in late 2008 - led Budapest to obtain an IMF/EU/World Bank-arranged financial assistance package worth over $ 25 billion . NNP POS JJ NN TO VB PRP$ JJ NN IN VBN RP IN DT JJ JJ NN IN JJ CD : VBD NNP TO VB DT NNP JJ JJ NN NN NN IN $ CD CD . The global economic downturn , declining exports , and low domestic consumption and fixed asset accumulation , dampened by government austerity measures , resulted in an economic contraction of 6.3 % in 2009 . DT JJ JJ NN , VBG NNS , CC JJ JJ NN CC JJ NN NN , VBN IN NN NN NNS , VBD IN DT JJ NN IN CD NN IN CD . In 2010 the new government implemented a number of changes including cutting business and personal income taxes , but imposed ' crisis taxes ' on financial institutions , energy and telecom companies , and retailers . IN CD DT JJ NN VBD DT NN IN NNS VBG VBG NN CC JJ NN NNS , CC VBD `` NN NNS `` IN JJ NNS , NN CC NN NNS , CC NNS . The economy rebounded in 2010 with a big boost from exports , especially to Germany , and growth of more than 2.5 % is expected in 2011 . DT NN VBD IN CD IN DT JJ NN IN NNS , RB TO NNP , CC NN IN JJR IN CD NN VBZ VBN IN CD . Unemployment remained high , at more than 10 % in 2010 . NN VBD JJ , IN JJR IN CD NN IN CD . The economy was formerly based on agriculture , mainly sheep farming , but today fishing contributes the bulk of economic activity . DT NN VBD RB VBN IN NN , RB JJ NN , CC NN NN VBZ DT NN IN JJ NN . In 1987 , the government began selling fishing licenses to foreign trawlers operating within the Falkland Islands ' exclusive fishing zone . IN CD , DT NN VBD VBG NN NNS TO JJ NNS VBG IN DT NNP NNP POS JJ NN NN . These license fees total more than $ 40 million per year , which help support the island 's health , education , and welfare system . DT NN NNS VBP JJR IN $ CD CD IN NN , WDT VBP VB DT NN POS NN , NN , CC NN NN . Squid accounts for 75 % of the fish taken . JJ NNS IN CD NN IN DT NN VBN . Dairy farming supports domestic consumption ; crops furnish winter fodder . NNP NN VBZ JJ NN ; NNS VBP NN NN . Foreign exchange earnings come from shipments of high-grade wool to the UK and the sale of postage stamps and coins . JJ NN NNS VBP IN NNS IN JJ NN TO DT NNP CC DT NN IN JJ NNS CC NNS . The islands are now self-financing except for defense . DT NNS VBP RB JJ IN IN NN . The British Geological Survey announced a 200-mile oil exploration zone around the islands in 1993 , and early seismic surveys suggest substantial reserves capable of producing 5,00,000 barrels per day ; to date , no exploitable site has been identified . DT JJ NNP NNP VBD DT JJ NN NN NN IN DT NNS IN CD , CC RB JJ NNS VBP JJ NNS JJ IN VBG CD NNS IN NN ; TO NN , DT JJ NN VBZ VBN VBN . An agreement between Argentina and the UK in 1995 seeks to defuse licensing and sovereignty conflicts that would dampen foreign interest in exploiting potential oil reserves . DT NN IN NNP CC DT NNP IN CD VBZ TO VB NN CC NN NNS WDT MD VB JJ NN IN VBG JJ NN NNS . Political tensions between the UK and Argentina rose in early 2010 after a UK company began oil drilling activities in the waters around the Falkland Islands but abated somewhat when the drilling operation failed to discover commercially exploitable oil reserves . JJ NNS IN DT NNP CC NNP VBD IN JJ CD IN DT NNP NN VBD NN NN NNS IN DT NNS IN DT NNP NNP CC VBD RB WRB DT NN NN VBD TO VB RB JJ NN NNS . Tourism , especially eco-tourism , is increasing rapidly , with about 30,000 visitors in 2001 . NNP , RB NN , VBZ VBG RB , IN IN CD NNS IN CD . Another large source of income is interest paid on money the government has in the bank . DT JJ NN IN NN VBZ NN VBN IN NN DT NN VBZ IN DT NN . The British military presence also provides a sizeable economic boost . DT JJ JJ NN RB VBZ DT JJ JJ NN . AN EAGLE , flying down from his perch on a lofty rock , seized upon a lamb and carried him aloft in his talons . DT NNP , VBG RP IN PRP$ NN IN DT JJ NN , VBD IN DT NN CC VBD PRP RB IN PRP$ NNS . A Jackdaw , who witnessed the capture of the lamb , was stirred with envy and determined to emulate the strength and flight of the Eagle . DT NNP , WP VBD DT NN IN DT NN , VBD VBN IN NN CC VBN TO VB DT NN CC NN IN DT NNP . He flew around with a great whir of his wings and settled upon a large ram , with the intention of carrying him off , but his claws became entangled in the ram 's fleece and he was not able to release himself , although he fluttered with his feathers as much as he could . PRP VBD RP IN DT JJ NN IN PRP$ NNS CC VBD IN DT JJ NN , IN DT NN IN VBG PRP RP , CC PRP$ NNS VBD VBN IN DT NN POS NN CC PRP VBD RB JJ TO VB PRP , IN PRP VBD IN PRP$ NNS RB RB IN PRP MD . The shepherd , seeing what had happened , ran up and caught him . DT NN , VBG WP VBD VBN , VBD RB CC VBD PRP . He at once clipped the Jackdaw 's wings , and taking him home at night , gave him to his children . PRP IN RB VBD DT NNP POS NNS , CC VBG PRP NN IN NN , VBD PRP TO PRP$ NNS . On their saying , ' Father , what kind of bird is it ? ' he replied , ' To my certain knowledge he is a Daw ; but he would like you to think an Eagle . ' IN PRP$ NN , `` NNP , WP NN IN NN VBZ PRP . `` PRP VBD , `` TO PRP$ JJ NN PRP VBZ DT NNP ; CC PRP MD VB PRP TO VB DT NNP . `` A LION demanded the daughter of a woodcutter in marriage . DT NN VBD DT NN IN DT NN IN NN . The Father , unwilling to grant , and yet afraid to refuse his request , hit upon this expedient to rid himself of his importunities . DT NN , JJ TO VB , CC RB JJ TO VB PRP$ NN , VBD IN DT NN TO VB PRP IN PRP$ NNS . He expressed his willingness to accept the Lion as the suitor of his daughter on one condition : that he should allow him to extract his teeth , and cut off his claws , as his daughter was fearfully afraid of both . PRP VBD PRP$ NN TO VB DT NN IN DT NN IN PRP$ NN IN CD NN IN IN PRP MD VB PRP TO VB PRP$ NNS , CC VB RP PRP$ NNS , IN PRP$ NN VBD RB JJ IN DT . The Lion cheerfully assented to the proposal . DT NN RB VBD TO DT NN . But when the toothless , clawless Lion returned to repeat his request , the Woodman , no longer afraid , set upon him with his club , and drove him away into the forest . CC WRB DT NN , JJ NN VBD TO VB PRP$ NN , DT NN , RB RBR JJ , VBN IN PRP IN PRP$ NN , CC VBD PRP RB IN DT NN . It happened that a Countryman was sowing some hemp seeds in a field where a Swallow and some other birds were hopping about picking up their food . PRP VBD IN DT NN VBD VBG DT NN NNS IN DT NN WRB DT NN CC DT JJ NNS VBD VBG IN VBG RP PRP$ NN . ' Beware of that man , ' quoth the Swallow . `` NN IN DT NN , `` VBZ DT NNP . ' Why , what is he doing ? ' said the others . `` WRB , WP VBZ PRP VBG . `` VBD DT NNS . ' That is hemp seed he is sowing ; be careful to pick up every one of the seeds , or else you will repent it . ' `` DT VBZ JJ NN PRP VBZ VBG ; VB JJ TO VB RP DT CD IN DT NNS , CC RB PRP MD VB PRP . `` The birds paid no heed to the Swallow 's words , and by and by the hemp grew up and was made into cord , and of the cords nets were made , and many a bird that had despised the Swallow 's advice was caught in nets made out of that very hemp . DT NNS VBD DT NN TO DT NNP POS NNS , CC IN CC IN DT NN VBD RB CC VBD VBN IN NN , CC IN DT NNS NNS VBD VBN , CC JJ DT NN WDT VBD VBN DT NNP POS NN VBD VBN IN NNS VBN IN IN DT RB JJ . ' What did I tell you ? ' said the Swallow . `` WP VBD PRP VB PRP . `` VBD DT NNP . Destroy the seed of evil , or it will grow up to your ruin . NNP DT NN IN NN , CC PRP MD VB RP TO PRP$ NN . I had someone ask for an aisle seat on the plane so that their hair would n't get messed up by being near the window . PRP VBD DT VB IN DT JJ NN IN DT NN RB IN PRP$ NN MD RB VB VBN RP IN VBG IN DT NN . A senior Iranian cleric says Iran 's suspension of its nuclear program is temporary . DT JJ JJ NN VBZ NNP POS NN IN PRP$ JJ NN VBZ JJ . Former Iranian President Akbar Hashemi Rafsanjani told worshippers during prayers Friday , Iran could resume enriching uranium within six months . JJ JJ NNP NNP NNP NNP VBD NNS IN NNS NNP , NNP MD VB VBG NN IN CD NNS . Mr. Rafsanjani , the head of the Expediency Council , Iran 's final arbiter on legislation , said Iran has the right to enrich uranium at low levels to fuel nuclear power stations . NNP NNP , DT NN IN DT NNP NNP , NNP POS JJ NN IN NN , VBD NNP VBZ DT NN TO VB NN IN JJ NNS TO VB JJ NN NNS . Earlier this week , the International Atomic Energy Agency spared Iran the fate of being referred to the United Nations Security Council for possible sanctions after Tehran agreed to suspend its nuclear program . RBR DT NN , DT NNP NNP NNP NNP VBD NNP DT NN IN VBG VBN TO DT NNP NNP NNP NNP IN JJ NNS IN NNP VBD TO VB PRP$ JJ NN . The United States has accused Iran of secretly seeking to develop nuclear weapons . DT NNP NNPS VBZ VBN NNP IN RB VBG TO VB JJ NNS . An explosion at the home of a Hezbollah official in a small Lebanese village has killed at least two people . DT NN IN DT NN IN DT NNP NN IN DT JJ JJ NN VBZ VBN IN JJS CD NNS . Officials say the blast happened Monday evening in Tayr Filsi , a village near the coastal city of Tyre . NNS VBP DT NN VBD NNP NN IN NNP NNP , DT NN IN DT JJ NN IN NNP . Authorities are investigating the cause of the explosion and have not said whether the Hezbollah official was among the casualties . NNS VBP VBG DT NN IN DT NN CC VBP RB VBN IN DT NNP NN VBD IN DT NNS . In July , an explosion at a suspected Hezbollah arms depot in southern Lebanon near the Israeli border raised concerns about the group 's weapons caches . IN NNP , DT NN IN DT JJ NNP NNS NN IN JJ NNP IN DT JJ NN VBD NNS IN DT NN POS NNS NNS . The militant Hezbollah movement fought a 34-day war with Israel in 2006 that killed about 1,200 people in Lebanon and 160 in Israel . DT JJ NNP NN VBD DT JJ NN IN NNP IN CD WDT VBD IN CD NNS IN NNP CC CD IN NNP . Medics treating cases of Marburg fever in Angola say a hospital at the center of the outbreak should be closed to all non-emergency patients to stop the disease from spreading . NNS VBG NNS IN NNP NN IN NNP VBP DT NN IN DT NN IN DT NN MD VB VBN TO DT JJ NNS TO VB DT NN IN VBG . Doctors Without Borders , a global relief organization , recommends suspending non-emergency services at the hospital in Angola 's northwestern Uige province , where victims of the fatal virus are being held in isolation . NNS IN NNS , DT JJ NN NN , VBZ VBG JJ NNS IN DT NN IN NNP POS JJ NNP NN , WRB NNS IN DT JJ NN VBP VBG VBN IN NN . The organization 's emergency coordinator in Uige says this step is necessary to reduce infection risks . DT NN POS NN NN IN NNP VBZ DT NN VBZ JJ TO VB NN NNS . So far , Marburg fever has killed at least 192 of the more than 200 people known to be infected . RB RB , NNP NN VBZ VBN IN JJS CD IN DT JJR IN CD NNS VBN TO VB VBN . The Ebola-like hemorrhagic fever spreads through contact with bodily fluids , and can kill rapidly . DT JJ JJ NN NNS IN NN IN RB NNS , CC MD VB RB . The World Health Organization has sent in teams to remove bodies and trace contacts with infected patients . DT NNP NNP NNP VBZ VBN IN NNS TO VB NNS CC NN NNS IN JJ NNS . A private funeral for the late United States Chief Justice William Rehnquist will be held Wednesday at Arlington National Cemetery , near Washington D.C. Memorial observances began Tuesday for the conservative chief justice in the Great Hall of the Supreme Court building in Washington . DT JJ NN IN DT JJ NNP NNPS NNP NNP NNP NNP MD VB VBN NNP IN NNP NNP NNP , IN NNP NNP NNP NNS VBD NNP IN DT JJ NN NN IN DT NNP NNP IN DT NNP NNP NN IN NNP . President Bush paid his respects to the late chief justice , pausing for a moment of silence beside his flag-draped coffin . NNP NNP VBD PRP$ NNS TO DT JJ NN NN , VBG IN DT NN IN NN IN PRP$ JJ NN . The public memorial continues until noon today . DT JJ NN VBZ IN NN NN . Mr. Rehnquist died of cancer Saturday at the age of 80 . NNP NNP VBD IN NN NNP IN DT NN IN CD . He was first appointed to the nine-member court by President Nixon in 1972 . PRP VBD RB VBN TO DT JJ NN IN NNP NNP IN CD . President Reagan appointed him chief justice 14 years later , in 1986 . NNP NNP VBD PRP JJ NN CD NNS RB , IN CD . President Bush has nominated federal appeals court judge John Roberts to be the next chief justice . NNP NNP VBZ VBN JJ NNS NN NN NNP NNP TO VB DT JJ NN NN . Senate confirmation hearings for Mr. Roberts are scheduled to begin Monday . NNP NN NNS IN NNP NNP VBP VBN TO VB NNP . Hurricane Katrina has battered the southern part of the U.S. state of Florida with high winds and heavy rain , leaving four people dead as it crossed the state to move out over the Gulf of Mexico . NNP NNP VBZ VBN DT JJ NN IN DT NNP NN IN NNP IN JJ NNS CC JJ NN , VBG CD NNS JJ IN PRP VBD DT NN TO VB RP IN DT NNP IN NNP . Forecasters say Katrina is now likely to get stronger and perhaps make a second landfall in the Florida Panhandle early next week as a major hurricane . NNS VBP NNP VBZ RB JJ TO VB JJR CC RB VB DT JJ NN IN DT NNP NNP RB JJ NN IN DT JJ NN . The 11th named storm of this year 's Atlantic hurricane season came ashore Thursday between Hallandale Beach and North Miami Beach , packing 130 kilometer-per-hour winds . DT JJ VBN NN IN DT NN POS NNP NN NN VBD RB NNP IN NNP NNP CC NNP NNP NNP , VBG CD JJ NNS . It knocked down trees , flooded streets and left more than one million people without power . PRP VBD RP NNS , VBN NNS CC VBD JJR IN CD CD NNS IN NN . The U.S. Coast Guard is searching for a family of five who went out boating Thursday morning and never reached their destination Cape Coral on Florida 's southwest coast . DT NNP NNP NNP VBZ VBG IN DT NN IN CD WP VBD RP VBG NNP NN CC RB VBD PRP$ NN NNP NNP IN NNP POS JJS NN . A group of retired U.S. military officers is expressing ' deep concern ' about President Bush 's nominee to lead the U.S. Justice Department . DT NN IN JJ NNP JJ NNS VBZ VBG `` JJ NN `` IN NNP NNP POS NN TO VB DT NNP NNP NNP . The officers want Attorney General nominee Alberto Gonzales to explain his views on torture , and his role in crafting Bush administration policy on the treatment of terror suspects . DT NNS VBP NNP NNP NN NNP NNP TO VB PRP$ NNS IN NN , CC PRP$ NN IN VBG NNP NN NN IN DT NN IN NN NNS . As the White House legal counsel , Mr. Gonzales wrote a January 2002 memo advising Mr. Bush that prisoner of war protections in the Geneva Convention were ' rendered obsolete ' by the U.S.-led war on terror . IN DT NNP NNP JJ NN , NNP NNP VBD DT NNP CD NN VBG NNP NNP IN NN IN NN NNS IN DT NNP NNP VBD `` VBD JJ `` IN DT JJ NN IN NN . He later approved a separate Justice Department memo suggesting some legal defenses U.S. officials could use to defend themselves against prosecution for torture . PRP RB VBD DT JJ NNP NNP NN VBG DT JJ NNS NNP NNS MD VB TO VB PRP IN NN IN NN . The group of officers includes retired Army General John Shalikashvili , who was chairman of the military 's Joint Chiefs of Staff . DT NN IN NNS VBZ JJ NN NNP NNP NNP , WP VBD NN IN DT NN POS NNP NNPS IN NNP . Mr. Gonzales faces a Senate confirmation hearing on Thursday . NNP NNP VBZ DT NNP NN NN IN NNP . Israeli Prime Minister Ehud Olmert says countries without diplomatic relations with Israel should not participate in the U.N. peacekeeping force for Lebanon . JJ NNP NNP NNP NNP VBZ NNS IN JJ NNS IN NNP MD RB VB IN DT NNP NN NN IN NNP . Those countries include Bangladesh , Indonesia , and Malaysia - three Muslim nations that have already offered to send troops . DT NNS VBP NNP , NNP , CC NNP : CD NNP NNS WDT VBP RB VBN TO VB NNS . Meanwhile , Mr. Olmert says Italy may be ready to take a significant role in the U.N. peacekeeping force . RB , NNP NNP VBZ NNP MD VB JJ TO VB DT JJ NN IN DT NNP NN NN . He spoke with Italian Prime Minister Romano Prodi by telephone Sunday . PRP VBD IN JJ NNP NNP NNP NNP IN NN NNP . Italy has already approved plans to send as many as 3,000 troops to Lebanon . NNP VBZ RB VBN NNS TO VB RB JJ IN CD NNS TO NNP . But it is unclear if it will lead the force . CC PRP VBZ JJ IN PRP MD VB DT NN . The United Nations plans to deploy up to 15,000 soldiers to boost a peacekeeping force already in southern Lebanon . DT NNP NNPS VBZ TO VB RP TO CD NNS TO VB DT NN NN RB IN JJ NNP . Lebanon has also started deploying the first of 15,000 troops it plans to send to the area . NNP VBZ RB VBN VBG DT NN IN CD NNS PRP VBZ TO VB TO DT NN . Iraq 's neighbors have called on all Iraqis to vote in the January 30 polls , saying they must determine their future through democratic means . NNP POS NNS VBP VBN IN DT NNS TO VB IN DT NNP CD NNS , VBG PRP MD VB PRP$ NN IN JJ NNS . The joint statement was issued at the end of a day-long meeting Thursday in the Jordanian capital Amman . DT JJ NN VBD VBN IN DT NN IN DT JJ NN NNP IN DT JJ NN NNP . It tacitly encouraged Iraq 's minority Sunni Muslims to vote , saying ' all segments ' of the Iraqi people must go to the polls . PRP RB VBD NNP POS NN NNP NNPS TO VB , VBG `` DT NNS `` IN DT JJ NNS MD VB TO DT NNS . Some Sunni groups have urged a boycott in the face of escalating violence . DT NNP NNS VBP VBN DT NN IN DT NN IN VBG NN . Iraq 's neighbors also reaffirmed their respect for Iraq 's sovereignty and territorial integrity , and pledged not to interfere in Iraq 's internal affairs . NNP POS NNS RB VBD PRP$ NN IN NNP POS NN CC JJ NN , CC VBD RB TO VB IN NNP POS JJ NNS . When the participants convened earlier , Jordan 's foreign minister said the election is a ' golden opportunity ' for Iraqis to get their country on the right track . WRB DT NNS VBD RBR , NNP POS JJ NN VBD DT NN VBZ DT `` JJ NN `` IN NNS TO VB PRP$ NN IN DT JJ NN . Pakistan 's ruling parties are deliberating the future of the coalition as a deadline looms for the reinstatement of deposed judges . NNP POS NN NNS VBP VBG DT NN IN DT NN IN DT NN VBZ IN DT NN IN VBN NNS . Aides close to the Pakistan Muslim League ( N ) say party leaders will meet Monday to decide whether to stay in the coalition with the Pakistan People 's Party . NNS RB TO DT NNP NNP NNP LRB NNP RRB VBP NN NNS MD VB NNP TO VB IN TO VB IN DT NN IN DT NNP NNP POS NNP . Former Prime Minister Nawaz Sharif , the head of the Pakistan Muslim League ( N ) , has indicated his party could join the opposition if the PPP does not agree by Monday to restore judges fired by former President Pervez Musharraf . JJ JJ NN NNP NNP , DT NN IN DT NNP NNP NNP LRB NNP RRB , VBZ VBN PRP$ NN MD VB DT NN IN DT NNP VBZ RB VB IN NNP TO VB NNS VBN IN JJ NNP NNP NNP . Analysts say PPP leader Asif Ali Zardari is reluctant to reinstate the judges because of concerns they could reopen old corruption cases against him . NNS VBP NNP NN NNP NNP NNP VBZ JJ TO VB DT NNS IN IN NNS PRP MD VB JJ NN NNS IN PRP . Zardari announced plans Saturday to run for president , after Mr. Musharraf stepped down to avoid impeachment charges this past week . NNP VBD NNS NNP TO VB IN NN , IN NNP NNP VBD RB TO VB NN NNS DT JJ NN . A smaller coalition partner , the Awami National Party , announced its support for Zardari today . DT JJR NN NN , DT NNP NNP NNP , VBD PRP$ NN IN NNP NN . Final results from Sunday 's Ukrainian parliamentary elections show the pro-Russian party of former Prime Minister Viktor Yanukovych won the most votes followed by two reformist groups . JJ NNS IN NNP POS JJ JJ NNS VBP DT JJ NN IN JJ NNP NNP NNP NNP VBD DT JJS NNS VBN IN CD NN NNS . The central election committee announced the results Thursday showing Mr. Yanukovych 's Party of Regions with more than 32 percent of the vote . DT JJ NN NN VBD DT NNS NNP VBG NNP NNP POS NN IN NNS IN JJR IN CD NN IN DT NN . The liberal bloc of former Prime Minister Yulia Timoshenko won more than 22 percent , while supporters of President Viktor Yushchenko came in third with just under 14 percent . DT JJ NN IN JJ NNP NNP NNP NNP VBD JJR IN CD NN , IN NNS IN NNP NNP NNP VBD IN JJ IN RB IN CD NN . Only two other parties , the Socialists and Communists , managed to clear the three percent barrier to gain parliamentary representation . RB CD JJ NNS , DT NNPS CC NNPS , VBD TO VB DT CD NN NN TO VB JJ NN . Wednesday , Ms. Timoshenko urged Yushchenko allies to band together to keep the opposition from returning to power . NNP , NNP NNP VBD NNP NNS TO VB RB TO VB DT NN IN VBG TO NN . The former prime minister , one of the leaders of the 2004 Orange Revolution that brought Mr. Yushchenko to power , called Sunday 's vote Ukraine 's first honest election in 15 years of independence . DT JJ JJ NN , CD IN DT NNS IN DT CD NNP NNP WDT VBD NNP NNP TO NN , VBD NNP POS NN NNP POS JJ JJ NN IN CD NNS IN NN . The head of U.S. homeland security , Michael Chertoff , says officials remain vigilant for terrorist attacks after a plot to blow up airliners was uncovered last week . DT NN IN NNP NN NN , NNP NNP , VBZ NNS VBP NN IN JJ NNS IN DT NN TO VB RP NNS VBD VBN JJ NN . Chertoff told Fox News Sunday U.S. officials are concerned that some people involved in the alleged plot may still be at large . NNP VBD NNP NNP NNP NNP NNS VBP VBN IN DT NNS VBN IN DT JJ NN MD RB VB IN JJ . He says there also is concern that other groups may try to carry out attacks because they think U.S. officials are distracted by the situation . PRP VBZ EX RB VBZ NN IN JJ NNS MD VB TO VB RP NNS IN PRP VBP NNP NNS VBP VBN IN DT NN . Chertoff added there is no evidence that planning or operational activities took place in the United States . NNP VBD EX VBZ DT NN IN NN CC JJ NNS VBD NN IN DT NNP NNPS . British authorities detained 23 people last week . JJ NNS VBD CD NNS JJ NN . U.S. officials raised the security alert level on flights from Britain to the United States after the plot was uncovered . NNP NNS VBD DT NN NN NN IN NNS IN NNP TO DT NNP NNPS IN DT NN VBD VBN . Chertoff says officials planned to announce new security measures for flights today . NNP VBZ NNS VBD TO VB JJ NN NNS IN NNS NN . The European Union has banned the import of live birds and feathers from Turkey because of the threat of bird flu . DT NNP NNP VBZ VBN DT NN IN JJ NNS CC NNS IN NNP IN IN DT NN IN NN NN . EU officials say the ban is needed after tests confirmed the presence of an avian virus in Turkey , where thousands of birds are being killed in an effort to prevent its spread . NNP NNS VBP DT NN VBZ VBN IN NNS VBD DT NN IN DT JJ NN IN NNP , WRB NNS IN NNS VBP VBG VBN IN DT NN TO VB PRP$ NN . The officials say they still have not determined which strain of bird flu it is . DT NNS VBP PRP RB VBP RB VBN WDT NN IN NN NN PRP VBZ . But Turkish officials say the outbreak is contained in a small area of the western province of Balikesir . CC JJ NNS VBP DT NN VBZ VBN IN DT JJ NN IN DT JJ NN IN NNP . The European Union is also monitoring the situation in Romania , where tests are underway and more than 1,000 birds have been killed after a suspected outbreak of bird flu . DT NNP NNP VBZ RB VBG DT NN IN NNP , WRB NNS VBP JJ CC JJR IN CD NNS VBP VBN VBN IN DT JJ NN IN NN NN . Bird flu has killed more than 60 people in Asia since 2003 . NN NN VBZ VBN JJR IN CD NNS IN NNP IN CD . A longtime donor for U.S. Democratic presidential contender Barack Obama went on trial Monday , accused of money laundering and extorting bribes . DT JJ NN IN NNP JJ JJ NN NNP NNP VBD IN NN NNP , VBN IN NN NN CC VBG NNS . Prosecutors charge that Antoin ' Tony ' Rezko tried to extort millions of dollars in kickbacks from investment houses that wanted to do business with Illinois state boards . NNS VBP IN NNP `` NNP `` NNP VBD TO VB NNS IN NNS IN NNS IN NN NNS WDT VBD TO VB NN IN NNP NN NNS . Jury selection started Monday . NN NN VBD NNP . As Rezko sat in a Chicago courtroom , Illinois Senator Obama was campaigning in Texas and answering questions by reporters about his relationship with Rezko . IN NNP VBD IN DT NNP NN , NNP NNP NNP VBD VBG IN NNP CC VBG NNS IN NNS IN PRP$ NN IN NNP . Obama said Rezko was a friend and supporter for many years , but that the charges facing him are not related to the senator . NNP VBD NNP VBD DT NN CC NN IN JJ NNS , CC IN DT NNS VBG PRP VBP RB VBN TO DT NN . Obama allegedly received $ 10,000 from a Rezko associate , which the senator 's campaign team later gave to charity . NNP RB VBD $ CD IN DT NNP NN , WDT DT NN POS NN NN RB VBD TO NN . U.S. Secretary of State Condoleezza Rice has rejected the idea of holding talks with Iran and Syria about reducing violence in Iraq . NNP NNP IN NNP NNP NNP VBZ VBN DT NN IN VBG NNS IN NNP CC NNP IN VBG NN IN NNP . Rice told the Washington Post newspaper she opposes the bipartisan Iraq Study Group 's recommendation to engage the two countries . NNP VBD DT NNP NNP NN PRP VBZ DT JJ NNP NNP NNP POS NN TO VB DT CD NNS . She said she will not allow Syria to interfere in Lebanon or let Iran obtain a nuclear weapon as a price for their help in bringing peace to Iraq . PRP VBD PRP MD RB VB NNP TO VB IN NNP CC VB NNP VB DT JJ NN IN DT NN IN PRP$ NN IN VBG NN TO NNP . The secretary said that if the two countries had an interest in stabilizing Iraq they would do it anyway . DT NN VBD IN IN DT CD NNS VBD DT NN IN VBG NNP PRP MD VB PRP RB . President Bush is to announce his decision on a new strategy for Iraq in early January . NNP NNP VBZ TO VB PRP$ NN IN DT JJ NN IN NNP IN JJ NNP . Syrian President Bashar al-Assad says he favors talks with the United States . JJ NNP NNP NNP VBZ PRP VBZ NNS IN DT NNP NNPS . He told an Italian newspaper , La Repubblica , that Washington should hold talks with his country and Iran on stabilizing the Middle East . PRP VBD DT JJ NN , NNP NNP , IN NNP MD VB NNS IN PRP$ NN CC NNP IN VBG DT NNP NNP . At least one person was killed in the Somali capital of Mogadishu Monday when unidentified attackers threw grenades at Ethiopian troops searching for weapons and insurgents . IN JJS CD NN VBD VBN IN DT JJ NN IN NNP NNP WRB JJ NNS VBD NNS IN JJ NNS VBG IN NNS CC NNS . Several other explosions were also heard in the city . JJ JJ NNS VBD RB VBN IN DT NN . Government and Ethiopian soldiers began the house-to-house search on Sunday in an effort to reduce attacks by Islamist insurgents . NN CC JJ NNS VBD DT NN NN IN NNP IN DT NN TO VB NNS IN NNP NNS . Dozens of people are reported to have been detained . NNS IN NNS VBP VBN TO VB VBN VBN . Earlier Monday , soldiers searched the Horn-Afrik radio station in the middle of a news broadcast , but they did not interrupt any of the programs . RBR NNP , NNS VBD DT NNP NN NN IN DT NN IN DT NN NN , CC PRP VBD RB VB DT IN DT NNS . Last year the Islamic Courts Union took control of Mogadishu until troops supporting an interim government backed by Ethiopian forces kicked them out . JJ NN DT NNP NNP NNP VBD NN IN NNP IN NNS VBG DT JJ NN VBN IN JJ NNS VBD PRP RP . The chaos in Somalia has been going on for 16 years . DT NN IN NNP VBZ VBN VBG IN IN CD NNS . The violence started in 1991 when warlords overthrew dictator Mohammed Siad Barre . DT NN VBD IN CD WRB NNS VBP NN NNP NNP NNP . The United Nations helped form a government in 2004 , but it has not been able to restore peace . DT NNP NNPS VBD VB DT NN IN CD , CC PRP VBZ RB VBN JJ TO VB NN . President Bush addressed the nation Tuesday evening in a major speech outlining his military and political strategy for winning the conflict in Iraq . NNP NNP VBD DT NN NNP NN IN DT JJ NN VBG PRP$ JJ CC JJ NN IN VBG DT NN IN NNP . His speech marks the one-year anniversary of U.S. transfer of sovereignty to Iraq . PRP$ NN VBZ DT JJ NN IN NNP NN IN NN TO NNP . It comes as a new poll Washington Post-ABC News released shows a majority of Americans ( 56 percent ) disapprove of Mr. Bush 's handling of the war . PRP VBZ IN DT JJ NN NNP NNP NNP VBN VBZ DT NN IN NNS LRB CD NN RRB VB IN NNP NNP POS NN IN DT NN . A clear majority , however , say they are willing to see U.S. forces remain in Iraq for an extended time until the country is stabilized . DT JJ NN , RB , VBP PRP VBP JJ TO VB NNP NNS VBP IN NNP IN DT JJ NN IN DT NN VBZ VBN . Before his speech at a large military base in North Carolina , Mr. Bush is set to meet privately with some of the family members of the more than 1,700 U.S. service members who have died since the U.S.-led invasion in March 2003 . IN PRP$ NN IN DT JJ JJ NN IN NNP NNP , NNP NNP VBZ VBN TO VB RB IN DT IN DT NN NNS IN DT JJR IN CD NNP NN NNS WP VBP VBN IN DT JJ NN IN NNP CD . The chariot of one of Egypt 's most famous ancient pharaohs is heading to New York City this week to join the Discovery Times Square Exposition exhibit of the boy ruler . DT NN IN CD IN NNP POS JJS JJ JJ NNS VBZ VBG TO NNP NNP NNP DT NN TO VB DT NNP NNP NNP NNP NN IN DT NN NN . Egyptian antiquities official , Zahi Hawass said Monday the trip will be the first time the chariot of King Tutankhamun has traveled outside of Egypt . JJ NNS NN , NNP NNP VBD NNP DT NN MD VB DT JJ NN DT NN IN NNP NNP VBZ VBN IN IN NNP . King Tut 's chariot was found in his tomb when Howard Carter discovered it in 1922 . NNP NNP POS NN VBD VBN IN PRP$ NN WRB NNP NNP VBD PRP IN CD . Officials say the chariot 's extremely worn wheels could indicate it was used for hunting . NNS VBP DT NN POS RB JJ NNS MD VB PRP VBD VBN IN NN . An antiquities official suggests that King Tut may have fallen off this chariot during a hunting trip , in an accident that could ultimately have led to his early death . DT NNS NN VBZ IN NNP NNP MD VB VBN RP DT NN IN DT NN NN , IN DT NN WDT MD RB VB VBN TO PRP$ JJ NN . The chariot was originally slated to join the exhibit in April but was delayed by travel complications . DT NN VBD RB VBN TO VB DT NN IN NNP CC VBD VBN IN NN NNS . Police in Argentina have arrested at least 87 people after a mob of angry commuters rioted at a train station on the outskirts of Buenos Aires . NNS IN NNP VBP VBN IN JJS CD NNS IN DT NN IN JJ NNS VBD IN DT NN NN IN DT NNS IN NNP NNPS . Commuters were angered Tuesday morning when service was interrupted because of technical problems . NNS VBD VBN NNP NN WRB NN VBD VBN IN IN JJ NNS . During some five hours of violence , the rioters set fire to at least 15 rail cars and parts of the train station . IN DT CD NNS IN NN , DT NNS VBD NN TO IN JJS CD NN NNS CC NNS IN DT NN NN . They also overturned at least one police car . PRP RB VBD IN JJS CD NN NN . Riot police fired rubber bullets to break up the crowds . NNP NN VBD NN NNS TO VB RP DT NNS . At least 13 people , including policemen , were injured . IN JJS CD NNS , VBG NNS , VBD VBN . The violence comes just days before the start of the 34-nation Summit of the Americas , to take place at Mar del Plata , some 370 kilometers south of Buenos Aires . DT NN VBZ RB NNS IN DT NN IN DT JJ NN IN DT NNPS , TO VB NN IN NNP NNP NNP , DT CD NNS RB IN NNP NNPS . The head of the Arab League says Syria will ' soon ' take steps toward withdrawing its troops from Lebanon . DT NN IN DT NNP NNP VBZ NNP MD `` RB `` VB NNS IN VBG PRP$ NNS IN NNP . Arab League chief Amr Mussa made his statement Monday after meeting with Syrian President Bashar al-Assad in Damascus . NNP NNP NN NNP NNP VBD PRP$ NN NNP IN VBG IN JJ NNP NNP NNP IN NNP . Mr. Mussa said the Syrian leader stressed ' more than once ' his intention to implement the 1989 Taif agreement and withdraw the 14,000 troops . NNP NNP VBD DT JJ NN VBD `` JJR IN RB `` PRP$ NN TO VB DT CD NNP NN CC VB DT CD NNS . The Taif agreement , which ended Lebanon 's civil war , committed Syria to move its troops to Lebanon 's Bekaa Valley ahead of later talks on a complete pullout . DT NNP NN , WDT VBD NNP POS JJ NN , VBN NNP TO VB PRP$ NNS TO NNP POS NNP NNP RB IN JJ NNS IN DT JJ NN . Mr. Mussa spoke as thousands of protesters rallied in Beirut to demand the troops ' departure and the resignation of Lebanon 's pro-Syrian government . NNP NNP VBD IN NNS IN NNS VBD IN NNP TO VB DT NNS POS NN CC DT NN IN NNP POS JJ NN . The demonstration came a week after the car bomb attack that killed former Lebanese Prime Minister Rafik Hariri and at least 14 others . DT NN VBD DT NN IN DT NN NN NN WDT VBD JJ JJ NNP NNP NNP NNP CC IN JJS CD NNS . Lebanon 's opposition politicians blame Syria for the killing . NNP POS NN NNS VBP NNP IN DT NN . Syria insists it was not involved . NNP VBZ PRP VBD RB VBN . The Beijing skyline has undergone massive transformation in preparation for the Olympics . DT NNP NN VBZ VBN JJ NN IN NN IN DT NNS . The people who were evicted from their homes to make way for some of the new development are not happy , though , and were among the first to publicly protest this week , even before the games began . DT NNS WP VBD VBN IN PRP$ NNS TO VB NN IN DT IN DT JJ NN VBP RB JJ , RB , CC VBD IN DT JJ TO RB VB DT NN , RB IN DT NNS VBD . Stephanie Ho reports from Beijing . NNP NNP VBZ IN NNP . Chinese authorities say they have punished 31 officials and fired 12 others because of their poor handling of relief supplies and response to the country 's massive earthquake last month . JJ NNS VBP PRP VBP VBN CD NNS CC VBD CD NNS IN IN PRP$ JJ NN IN NN NNS CC NN TO DT NN POS JJ NN JJ NN . China 's top anti-corruption official , Ma Wen , told reporters Monday that most of the demerits and firings were a response to complaints about misuse of tents and improper distribution of food and other goods . NNP POS JJ NN NN , NNP NNP , VBD NNS NNP IN JJS IN DT NNS CC NNS VBD DT NN TO NNS IN NN IN NNS CC JJ NN IN NN CC JJ NNS . China 's May 12 quake killed nearly 70,000 people and left millions homeless . NNP POS NNP CD NN VBD RB CD NNS CC VBD NNS JJ . The government has previously warned that it would come down hard on those who misused aid funds or relief supplies . DT NN VBZ RB VBN IN PRP MD VB RP RB IN DT WP VBD NN NNS CC NN NNS . Corruption is rampant across China , and there is concern about the use and destination of donations . NN VBZ JJ IN NNP , CC EX VBZ NN IN DT NN CC NN IN NNS . During Monday 's briefing for correspondents in Beijing , a top finance official reminded government departments to cut spending by five percent this year to help with the quake relief effort . IN NNP POS NN IN NNS IN NNP , DT JJ NN NN VBD NN NNS TO VB NN IN CD NN DT NN TO VB IN DT NN NN NN . Rights group Amnesty International has accused China and Russia of breaching a United Nations arms embargo by letting weapons into Sudan that were then used in the Darfur region . NNP NN NNP NNP VBZ VBN NNP CC NNP IN VBG DT NNP NNP NNS NN IN VBG NNS IN NNP WDT VBD RB VBN IN DT NNP NN . An Amnesty report published Tuesday expresses dismay that two permanent members of the U.N. Security Council were allowing weapons to flow into Sudan . DT JJ NN VBN NNP VBZ NN IN CD JJ NNS IN DT NNP NNP NNP VBD VBG NNS TO VB IN NNP . Russia and China have dismissed the allegation . NNP CC NNP VBP VBN DT NN . Amnesty International urged the U.N. to strengthen the existing arms embargo on Darfur . NNP NNP VBD DT NNP TO VB DT VBG NNS NN IN NNP . The Amnesty report also accuses the Sudanese air force of operating airplanes and helicopters painted white to resemble U.N. aircraft . DT NNP NN RB VBZ DT JJ NN NN IN VBG NNS CC NNS VBD JJ TO VB NNP NN . A U.N. report that was leaked to the media last month found that Sudan was using disguised airplanes to carry out bombing raids in Darfur . DT NNP NN WDT VBD VBN TO DT NNS JJ NN VBD IN NNP VBD VBG JJ NNS TO VB RP VBG NNS IN NNP . Sudan rejected the charge . NNP VBD DT NN . More than 2,00,000 people have been killed in Darfur since rebels began an uprising against Sudan 's central government in early 2003 . JJR IN CD NNS VBP VBN VBN IN NNP IN NNS VBD DT NN IN NNP POS JJ NN IN JJ CD . Four-time champion Argentina has defeated Colombia , 02-Jan , while Nigeria blanked Ukraine , 1-0 , to reach the quarterfinals of the World Youth football ( soccer ) championships in the Netherlands . JJ NN NNP VBZ VBN NNP , CD , IN NNP VBD NNP , CD , TO VB DT NNS IN DT NNP NNP NN LRB NN RRB NNS IN DT NNP . In Emmen , Julio Barroso 's goal in injury time gave the under-age-20 Argentines the win after his team came back from a 1-0 deficit . IN NNP , NNP NNP POS NN IN NN NN VBD DT JJ NNS DT NN IN PRP$ NN VBD RB IN DT CD NN . Colombia 's Harrison Otalvaro had opened the scoring in the 52nd minute . NNP POS NNP NNP VBD VBN DT VBG IN DT JJ NN . Argentina 's Lionel Messi tied the match six minutes later . NNP POS NNP NNP VBD DT NN CD NNS RB . Argentina takes on Spain , which scored a 3-0 win over Turkey . NNP VBZ IN NNP , WDT VBD DT CD NN IN NNP . Meanwhile in Doetinchem , Nigeria defeated Ukraine , 1-0 , on Taye Taiwo 's 80th-minute goal . RB IN NNP , NNP VBD NNP , CD , IN NNP NNP POS JJ NN . In the final eight , Nigeria faces the host country , which beat Chile , 3-0 . IN DT JJ CD , NNP VBZ DT NN NN , WDT VBD NNP , CD . The other quarterfinals have Germany playing Brazil and Morocco taking on Italy . DT JJ NNS VBP NNP VBG NNP CC NNP VBG IN NNP . A top Russian prosecutor says he will not open a criminal investigation against security forces involved in last year 's deadly hostage crisis at a school in the southern city of Beslan . DT JJ JJ NN VBZ PRP MD RB VB DT JJ NN IN NN NNS VBN IN JJ NN POS JJ NN NN IN DT NN IN DT JJ NN IN NNP . Deputy Prosecutor General Vladimir Kolesnikov Thursday rejected arguments made by relatives of the victims . NNP NNP NNP NNP NNP NNP VBD NNS VBN IN NNS IN DT NNS . Relatives blamed security forces for using flame-throwers and starting a fire that caused the roof to collapse as they moved on the school , seized by Chechen militants . NNS VBD NN NNS IN VBG NNS CC VBG DT NN WDT VBD DT NN TO VB IN PRP VBD IN DT NN , VBN IN JJ NNS . They said the rescue attempt was chaotic and caused many of the 331 deaths , most of them children . PRP VBD DT NN NN VBD JJ CC VBD NN IN DT CD NNS , JJS IN PRP NNS . Children and teachers were held for three days as hostage takers demanded Russian forces leave Chechnya . NNS CC NNS VBD VBN IN CD NNS IN NN NNS VBD JJ NNS VBP NNP . Australia and Indonesia have agreed to negotiate a new security pact to replace one that was scrapped in 1999 . NNP CC NNP VBP VBN TO VB DT JJ NN NN TO VB CD WDT VBD VBN IN CD . The proposed treaty will cover a wide area including defense , police cooperation , counter-terrorism , and the territorial integrity of the two countries . DT VBN NN MD VB DT JJ NN VBG NN , NN NN , NN , CC DT JJ NN IN DT CD NNS . Foreign ministers Hassan Wirajuda of Indonesia and Alexander Downer of Australia announced the proposal Friday at the end of a bilateral ministerial forum in Canberra . JJ NNS NNP NNP IN NNP CC NNP NNP IN NNP VBD DT NN NNP IN DT NN IN DT JJ JJ NN IN NNP . Mr. Downer says the treaty could be concluded within months . NNP NNP VBZ DT NN MD VB VBN IN NNS . The two countries forged a treaty in 1995 , but Indonesia abandoned it in 1999 in retaliation for Australia leading a U.N. peacekeeping force into what was then the Indonesian province of East Timor following violence surrounding its vote for independence . DT CD NNS VBD DT NN IN CD , CC NNP VBD PRP IN CD IN NN IN NNP VBG DT NNP NN NN IN WP VBD RB DT JJ NN IN NNP NNP VBG NN VBG PRP$ NN IN NN . A former bodyguard for Osama bin Laden says he is boycotting legal proceedings against him at the Guantanamo Bay naval base in Cuba . DT JJ NN IN NNP NNP NNP VBZ PRP VBZ VBG JJ NNS IN PRP IN DT NNP NNP JJ NN IN NNP . Yemeni national Ali Hamza Ahmad al-Bahlul is accused of conspiracy to commit terrorism . JJ NN NNP NNP NNP NNP VBZ VBN IN NN TO VB NN . He admitted during a previous hearing that he was a member of bin Laden 's al Qaida . PRP VBD IN DT JJ NN IN PRP VBD DT NN IN NNP NNP POS NNP NNP . Al-Bahlul announced he was boycotting Wednesday 's hearing because he is not being allowed to defend himself . NNP VBD PRP VBD VBG NNP POS NN IN PRP VBZ RB VBG VBN TO VB PRP . Also Wednesday , a separate panel at the Guantanamo tribunal will hear the case of a Canadian-born teenager accused of killing a U.S. military medic with a hand grenade in Afghanistan four years ago . RB NNP , DT JJ NN IN DT NNP NN MD VB DT NN IN DT JJ NN VBN IN VBG DT NNP JJ NN IN DT NN NN IN NNP CD NNS RB . Meanwhile , a former Guantanamo Bay prisoner who was handed over to France a year-and-a-half ago , Nizar Sassi , has been released from custody in Paris . RB , DT JJ NNP NNP NN WP VBD VBN RP TO NNP DT NN RB , NNP NNP , VBZ VBN VBN IN NN IN NNP . The price of crude oil declined after the U.S. government reported an increase in U.S. inventories of oil and gasoline . DT NN IN JJ NN VBD IN DT NNP NN VBD DT NN IN NNP NNS IN NN CC NN . Wednesday 's report from the Department of Energy says crude oil reserves rose by 1.7 million barrels to nearly 347 million barrels last week . NNP POS NN IN DT NNP IN NNP VBZ JJ NN NNS VBD IN CD CD NNS TO RB CD CD NNS JJ NN . Gasoline reserves rose more than two million barrels to 202.7 million . NN NNS VBD JJR IN CD CD NNS TO CD CD . The larger inventories may ease concerns that U.S. fuel supplies might fall short during June , July and August when many Americans drive long distances on vacation . DT JJR NNS MD VB NNS IN NNP NN NNS MD VB JJ IN NNP , NNP CC NNP WRB JJ NNS VBP JJ NNS IN NN . The price of crude oil for June delivery declined nearly $ 1 to $ 73.85 a barrel in New York trading . DT NN IN JJ NN IN NNP NN VBD RB $ CD TO $ CD DT NN IN NNP NNP NN . Oil prices have surged 21 percent this year . NN NNS VBP VBN CD NN DT NN . One factor is concern about the dispute about Iran 's nuclear program . CD NN VBZ NN IN DT NN IN NNP POS JJ NN . Iran is the world 's fourth-largest oil exporter . NNP VBZ DT NN POS JJ NN NN . German lawmakers reflected on the pains of the holocaust Friday and urged the world to learn from the past on this first international Holocaust Remembrance Day . JJ NNS VBD IN DT NNS IN DT NN NNP CC VBD DT NN TO VB IN DT NN IN DT JJ JJ NNP NNP NNP . German Parliament Speaker Norbert Lammert said recent statements by Iran 's president describing the Holocaust as a ' myth ' show the need for this day of remembrance . JJ NNP NNP NNP NNP VBD JJ NNS IN NNP POS NN VBG DT NNP IN DT `` NN `` VBP DT NN IN DT NN IN NN . He said time will never diminish the need to commemorate the millions of Jews and others who died at the hands of the Nazis . PRP VBD NN MD RB VB DT NN TO VB DT NNS IN NNPS CC NNS WP VBD IN DT NNS IN DT NNPS . In Poland , leaders also participated in ceremonies to mark this day , 61 years ago , when Soviet troops liberated the Auschwitz concentration camp . IN NNP , NNS RB VBD IN NNS TO VB DT NN , CD NNS RB , WRB JJ NNS VBD DT NNP NN NN . In November , the United Nations declared January 27 the International Day of Commemoration . IN NNP , DT NNP NNP VBD NNP CD DT NNP NNP IN NNP . U.N. Secretary General Kofi Annan has called those who deny the Holocaust ' bigots . ' NNP NNP NNP NNP NNP VBZ VBN DT WP VBP DT NNP `` NNS . `` He said the Holocaust must always be remembered with shame and horror . PRP VBD DT NNP MD RB VB VBN IN NN CC NN . Venezuela has freed 11 Colombian soldiers who had been detained after entering Venezuelan territory without authorization . NNP VBZ VBN CD JJ NNS WP VBD VBN VBN IN VBG JJ NN IN NN . Colombia 's government says the soldiers were turned over to consular officers Thursday at a military base in Venezuela 's Apure state . NNP POS NN VBZ DT NNS VBD VBN RP TO JJ NNS NNP IN DT JJ NN IN NNP POS NNP NN . The soldiers were taken into custody Sunday while entering Venezuela in a taxi . DT NNS VBD VBN IN NN NNP IN VBG NNP IN DT NN . Colombia says the soldiers were using Venezuelan territory as a safe travel corridor to avoid leftist rebels on the Colombian side of the 2,200-kilometer border . NNP VBZ DT NNS VBD VBG JJ NN IN DT JJ NN NN TO VB JJ NNS IN DT JJ NN IN DT JJ NN . Colombia 's ambassador to Venezuela , Enrique Vargas Ramirez , thanked Caracas for the soldiers ' release , saying it showed the advances that the two governments have made in security efforts . NNP POS NN TO NNP , NNP NNP NNP , VBD NNP IN DT NNS POS NN , VBG PRP VBD DT NNS IN DT CD NNS VBP VBN IN NN NNS . The two countries recently resolved a dispute sparked by Bogota 's admission it paid bounty hunters to seize a Colombian rebel in Caracas and return him to Colombia . DT CD NNS RB VBD DT NN VBN IN NNP POS NN PRP VBD NN NNS TO VB DT JJ NN IN NNP CC VB PRP TO NNP . A new report shows consumer spending in the United States dropped for a record sixth consecutive month in December - another sign the economy is deteriorating . DT JJ NN VBZ NN NN IN DT NNP NNPS VBD IN DT NN JJ JJ NN IN NNP IN DT NN DT NN VBZ VBG . The report from the Commerce Department says spending fell one percent in the month . DT NN IN DT NNP NNP VBZ NN VBD CD NN IN DT NN . The drop is significant because consumer spending is the major force behind the U.S. economy . DT NN VBZ JJ IN NN NN VBZ DT JJ NN IN DT NNP NN . Falling consumer demand has forced American companies to cut workers in an effort to save costs . VBG NN NN VBZ VBN JJ NNS TO VB NNS IN DT NN TO VB NNS . The rising wave of unemployment has put pressure on American households to spend less money . DT VBG NN IN NN VBZ VBN NN IN JJ NNS TO VB JJR NN . The report also shows Americans are saving more money , as they brace for the possibility of further job cuts . DT NN RB VBZ NNS VBP VBG JJR NN , IN PRP VBP IN DT NN IN JJ NN NNS . British police have released pictures of the four London suicide bombers in the hope of gathering new information about their final movements before the attacks . JJ NNS VBP VBN NNS IN DT CD NNP NN NNS IN DT NN IN VBG JJ NN IN PRP$ JJ NNS IN DT NNS . British media Sunday have been showing surveillance camera footage of the four bombers with backpacks as they enter a train station ( Luton ) north of London the morning of the attacks . JJ NNS NNP VBP VBN VBG NN NN NN IN DT CD NNS IN NNS IN PRP VBP DT NN NN LRB NNP RRB NN IN NNP DT NN IN DT NNS . Police believe the men rode the train to London ( King 's Cross station ) , then split up to carry out the bombings on three subway trains and one bus . NNS VBP DT NNS VBD DT NN TO NNP LRB NNP POS NNP NN RRB , RB VBD RB TO VB RP DT NNS IN CD NN NNS CC CD NN . Authorities on Saturday confirmed the identities of all four bombers as investigators in Britain , Egypt and Pakistan pursued leads in the case . NNS IN NNP VBD DT NNS IN DT CD NNS IN NNS IN NNP , NNP CC NNP VBD NNS IN DT NN . Meanwhile , British Prime Minister Tony Blair called on the world to confront what he called the ' evil ideology ' of Islamic extremism . RB , NNP NNP NNP NNP NNP VBD IN DT NN TO VB WP PRP VBD DT `` JJ NN `` IN NNP NN . The death toll from the terrorist attacks stands at 55 , and is expected to rise . DT NN NN IN DT JJ NNS VBZ IN CD , CC VBZ VBN TO VB . The company that owns the Chilean mine 33 men were trapped in for more than two months has agreed to sell its assets to avoid bankruptcy . DT NN WDT VBZ DT JJ NN CD NNS VBD VBN IN IN JJR IN CD NNS VBZ VBN TO VB PRP$ NNS TO VB NN . Judge Rocio Perez said Thursday creditors have given the San Esteban mining company 15 months to repay its debts . NNP NNP NNP VBD NNP NNS VBP VBN DT NNP NNP NN NN CD NNS TO VB PRP$ NNS . Thirty-three of the company 's miners were rescued last month from a mine in northern Chile after a tunnel collapse on August 5 left them trapped for 69 days . CD IN DT NN POS NNS VBD VBN JJ NN IN DT NN IN JJ NNP IN DT NN NN IN NNP CD VBD PRP VBN IN CD NNS . Chile 's Radio Cooperativa reports some of the money will be used as severance pay for the 300 miners of the San Jose mine who lost their jobs after the collapse . NNP POS NNP NNP VBZ DT IN DT NN MD VB VBN IN JJ NN IN DT CD NNS IN DT NNP NNP NN WP VBD PRP$ NNS IN DT NN . The mining company also owes the Chilean government between $ 10 and $ 20 million for the rescue operation . DT NN NN RB VBZ DT JJ NN IN $ CD CC $ CD CD IN DT NN NN . Chilean courts are holding the company 's total wealth , which amounts to about $ 10 million . JJ NNS VBP VBG DT NN POS JJ NN , WDT VBZ TO IN $ CD CD . Philippine military soldiers have clashed with Islamic extremists Tuesday , killing at least one and wounding a senior leader of the al-Qaida-linked Abu Sayyaf group . JJ JJ NNS VBP VBN IN JJ NNS NNP , VBG IN JJS CD CC VBG DT JJ NN IN DT JJ NNP NNP NN . Military officials say they believe that Abu Solaiman , a wanted Abu Sayyaf leader , was injured during the fighting . JJ NNS VBP PRP VBP IN NNP NNP , DT JJ NNP NNP NN , VBD VBN IN DT NN . Solaiman is wanted by the United States for his alleged role in kidnappings and terror attacks . NNP VBZ VBN IN DT NNP NNPS IN PRP$ JJ NN IN NNS CC NN NNS . The U.S. government is offering a $ 5 million reward for his capture . DT NNP NN VBZ VBG DT $ CD CD NN IN PRP$ NN . Army soldiers clashed with 60 Abu Sayyaf extremists in a mountainous town on the southwestern Philippine island of Jolo . NNP NNS VBD IN CD NNP NNP NNS IN DT JJ NN IN DT JJ JJ NN IN NNP . Officials say they found bomb-making materials at the camp after members of the group fled . NNS VBP PRP VBD JJ NNS IN DT NN IN NNS IN DT NN VBD . U.S. Secretary of State Condoleezza Rice has arrived in Haiti for a one-day visit aimed at showing U.S. support for elections scheduled there for November . NNP NNP IN NNP NNP NNP VBZ VBN IN NNP IN DT JJ NN VBN IN VBG NNP NN IN NNS VBN RB IN NNP . Ms. Rice is to meet Tuesday with U.N. peacekeepers and leaders of the interim government , including President Boniface Alexandre and Prime Minister Gerard Latortue . NNP NNP VBZ TO VB NNP IN NNP NNS CC NNS IN DT JJ NN , VBG NNP NNP NNP CC NNP NNP NNP NNP . The elections in Haiti will be the first since a political crisis in 2004 drove then-President Jean-Bertrand Aristide from office . DT NNS IN NNP MD VB DT JJ IN DT JJ NN IN CD VBD JJ JJ NN IN NN . Haiti has been torn by gang warfare and political violence since Mr. Aristide 's departure . NNP VBZ VBN VBN IN NN NN CC JJ NN IN NNP NNP POS NN . The United Nations , which has 7,000 peacekeepers in Haiti , and the 15-member Caribbean community have offered to help ensure the balloting is free and fair . DT NNP NNPS , WDT VBZ CD NNS IN NNP , CC DT JJ JJ NN VBP VBN TO VB VB DT NN VBZ JJ CC JJ . Indian Prime Minister Manmohan Singh is in Kashmir , hours after soldiers killed two suspected separatists near the stadium where the Indian leader plans to deliver a speech Wednesday . JJ NNP NNP NNP NNP VBZ IN NNP , NNS IN NNS VBD CD JJ NNS IN DT NN WRB DT JJ NN VBZ TO VB DT NN NNP . The rebels were killed in a gunbattle that broke out in Kashmir 's summer capital , Srinagar , after troops surrounded a building where authorities had learned the militants had taken up positions . DT NNS VBD VBN IN DT NN WDT VBD RP IN NNP POS NN NN , NNP , IN NNS VBN DT NN WRB NNS VBD VBN DT NNS VBD VBN RP NNS . After arriving in Kashmir under heavy security for a two-day visit , Mr. Singh visited a Muslim holy site and spoke to students at a medical college . IN VBG IN NNP IN JJ NN IN DT JJ NN , NNP NNP VBD DT NNP JJ NN CC VBD TO NNS IN DT JJ NN . He repeated his offer to hold talks with all Kashmiri separatist groups in an effort to resolve their decades-old dispute . PRP VBD PRP$ NN TO VB NNS IN DT JJ NN NNS IN DT NN TO VB PRP$ JJ NN . Earlier , Indian troops began pulling out of Kashmir in the first phase of a gradual withdrawal of half the soldiers stationed there . RB , JJ NNS VBD VBG IN IN NNP IN DT JJ NN IN DT JJ NN IN PDT DT NNS VBN RB . Hundreds of Afghans have marched through the northern city of Mazar-e-Sharif to protest the killing of a candidate in the country 's recent legislative elections . NNS IN NNS VBP VBN IN DT JJ NN IN NNP TO VB DT NN IN DT NN IN DT NN POS JJ JJ NNS . The protesters were demanding the arrest and trial of those responsible . DT NNS VBD VBG DT NN CC NN IN DT JJ . National Assembly candidate Mohammad Ashraf Ramazan and his bodyguard were gunned down last week by unidentified attackers . NNP NNP NN NNP NNP NNP CC PRP$ NN VBD VBN RB JJ NN IN JJ NNS . Although the Taleban claimed responsibility for the killings , the protesters blamed the local administration . IN DT NNP VBD NN IN DT NNS , DT NNS VBD DT JJ NN . Mr. Ramazan was the first candidate killed since the September 18 parliamentary polls . NNP NNP VBD DT JJ NN VBN IN DT NNP CD JJ NNS . Meanwhile , the chairman of the joint U.N.-Afghan election body says ballot boxes from about four percent of 26,000 polling stations were being checked for reported irregularities . RB , DT NN IN DT JJ JJ NN NN VBZ NN NNS IN IN CD NN IN CD NN NNS VBD VBG VBN IN VBN NNS . But Peter Erben said the cases of fraud are localized rather than widespread , and will not affect the overall integrity of the landmark vote . CC NNP NNP VBD DT NNS IN NN VBP VBN RB IN JJ , CC MD RB VB DT JJ NN IN DT NN NN . A U.S. diplomatic cable released by WikiLeaks on Wednesday says Israel 's blockade of Gaza aimed to ' keep Gaza 's economy on the brink of collapse . ' DT NNP JJ NN VBN IN NNS IN NNP VBZ NNP POS NN IN NNP VBD TO `` VB NNP POS NN IN DT NN IN NN . `` The document says Israeli officials repeatedly confirmed the embargo 's goal was to keep Gaza 's economy functioning ' at its lowest possible level without getting a humanitarian crisis . ' DT NN VBZ JJ NNS RB VBD DT NN POS NN VBD TO VB NNP POS NN VBG `` IN PRP$ JJS JJ NN IN VBG DT JJ NN . `` The newly released cable was published by Norway 's Aftenposten newspaper . DT RB VBN NN VBD VBN IN NNP POS JJ NN . The document was dated November 3 , 2008 , just weeks before Israel launched an offensive in the Gaza Strip to stop Hamas militants from firing rockets on Israeli towns . DT NN VBD VBN NNP CD , CD , RB NNS IN NNP VBD DT NN IN DT NNP NNP TO VB NNP NNS IN VBG NNS IN JJ NNS . Israel says the blockade seeks to weaken Hamas . NNP VBZ DT NN VBZ TO VB NNP . Humanitarian groups argue the embargo is taking the heaviest toll on civilians , while Hamas militants continue to smuggle in building materials , weapons and cash through tunnels under the border with Egypt . JJ NNS VBP DT NN VBZ VBG DT JJS NN IN NNS , IN NNP NNS VBP TO VB IN NN NNS , NNS CC NN IN NNS IN DT NN IN NNP . Attorneys have said U.S. authorities will deport a former Florida professor and Palestinian rights activist who was acquitted on terrorism charges in December . NNS VBP VBN NNP NNS MD VB DT JJ NNP NN CC NN NNS NN WP VBD VBN IN NN NNS IN NNP . Attorneys involved in the case of Sami al-Arian say he has reached an agreement with prosecutors to plead guilty to a terrorism-related charge . NNS VBN IN DT NN IN NNP NNP NN PRP VBZ VBN DT NN IN NNS TO VB JJ TO DT JJ NN . A jury in Florida found him not guilty last year on eight counts , including conspiracy to murder people overseas . DT NN IN NNP VBD PRP RB JJ JJ NN IN CD NNS , VBG NN TO NN NNS RB . The jury deadlocked on nine other charges . DT NN VBD IN CD JJ NNS . Al-Arian had been accused of helping to finance the activities of Islamic Jihad , a militant group blamed for terrorist attacks in Israel . NNP VBD VBN VBN IN VBG TO VB DT NNS IN NNP NNP , DT JJ NN VBN IN JJ NNS IN NNP . The University of South Florida fired al-Arian from his position as a computer science professor after he was indicted in 2003 , saying he used his academic position for noneducational , improper purposes . DT NNP IN NNP NNP VBD NNP IN PRP$ NN IN DT NN NN NN IN PRP VBD VBN IN CD , VBG PRP VBD PRP$ JJ NN IN JJ , JJ NNS . He has been in jail since the indictment . PRP VBZ VBN IN NN IN DT NN . A suicide bomber disguised as a soldier has blown himself up in front of police headquarters in Afghanistan 's southern Helmand province , killing himself and four policemen . DT NN NN VBN IN DT NN VBZ VBN PRP RP IN NN IN NN NN IN NNP POS JJ NNP NN , VBG PRP CC CD NNS . A police chief in Helmand says the bomber dressed in an Afghan army uniform detonated his explosives after police stopped him as he tried to enter the station in Lashkar Gah , the province capital . DT NN NN IN NNP VBZ DT NN VBN IN DT JJ NN NN VBD PRP$ NNS IN NNS VBD PRP IN PRP VBD TO VB DT NN IN NNP NNP , DT NN NN . At least one other policeman was injured . IN JJS CD JJ NN VBD VBN . NATO forces have launched a major offensive in Helmand , Afghanistan 's top opium producing region where Taleban militants have staged attacks . NNP NNS VBP VBN DT JJ NN IN NNP , NNP POS JJ NN VBG NN WRB NNP NNS VBP VBN NNS . NATO and Afghan forces say they have killed dozens of Taleban fighters in recent days . NNP CC JJ NNS VBP PRP VBP VBN NNS IN NNP NNS IN JJ NNS . In other news , U.S.-led coalition forces and Afghan troops arrested four men and seized weapons in a raid on a compound in Jalalabad in the eastern province of Nangarhar . IN JJ NN , JJ NN NNS CC JJ NNS VBN CD NNS CC VBD NNS IN DT NN IN DT NN IN NNP IN DT JJ NN IN NNP . U.S. President Barack Obama has urged Israeli Prime Minister Benjamin Netanyahu to find out all the facts of the deadly raid on a Gaza-bound international aid flotilla . NNP NNP NNP NNP VBZ VBN JJ NNP NNP NNP NNP TO VB RP PDT DT NNS IN DT JJ NN IN DT JJ JJ NN NN . The two leaders spoke by telephone Monday shortly after Mr. Netanyahu canceled his visit to Washington because of the raid . DT CD NNS VBD IN NN NNP RB IN NNP NNP VBD PRP$ NN TO NNP IN IN DT NN . They had been scheduled to meet Tuesday at the White House . PRP VBD VBN VBN TO VB NNP IN DT NNP NNP . The White House said Mr. Obama expressed deep regret at the loss life in the raid and said it was important to learn all the circumstances surrounding the event . DT NNP NNP VBD NNP NNP VBD JJ NN IN DT NN NN IN DT NN CC VBD PRP VBD JJ TO VB PDT DT NNS VBG DT NN . Mr. Obama said he understood Mr. Netanyahu 's decision to return to Israel immediately . NNP NNP VBD PRP VBD NNP NNP POS NN TO VB TO NNP RB . The two agreed to reschedule their meeting at ' the first opportunity ' . DT CD VBD TO VB PRP$ NN IN `` DT JJ NN `` . The United States has acted against two Iranian companies suspected of helping to proliferate weapons of mass destruction through involvement in Iran 's nuclear program . DT NNP NNPS VBZ VBN IN CD JJ NNS VBN IN VBG TO VB NNS IN NN NN IN NN IN NNP POS JJ NN . The U.S. Treasury Department Wednesday ordered American banks to freeze any accounts or other financial assets in the United States belonging to the Novin Energy company and Mesbah Energy company . DT NNP NNP NNP NNP VBD JJ NNS TO VB DT NNS CC JJ JJ NNS IN DT NNP NNPS VBG TO DT NNP NNP NN CC NNP NNP NN . Officials also are prohibiting Americans from doing business with the two companies . NNS RB VBP VBG NNS IN VBG NN IN DT CD NNS . The Treasury Department said the Novin Energy company has transferred millions of dollars on behalf of Iran 's atomic energy agency to entities linked to the country 's nuclear program . DT NNP NNP VBD DT NNP NNP NN VBZ VBN NNS IN NNS IN NN IN NNP POS JJ NN NN TO NNS VBN TO DT NN POS JJ NN . The department said the Mesbah Energy company is a state-owned entity that has been used to obtain products for Iran 's heavy water project . DT NN VBD DT NNP NNP NN VBZ DT JJ NN WDT VBZ VBN VBN TO VB NNS IN NNP POS JJ NN NN . A heavy water reactor has the potential to produce high-quality plutonium , a key component for a nuclear weapon . DT JJ NN NN VBZ DT NN TO VB JJ NN , DT JJ NN IN DT JJ NN . Officials in Afghanistan say U.S. and Afghan troops have killed eight suspected Taleban fighters and captured 16 others in a firefight in a mountain area south of the capital . NNS IN NNP VBP NNP CC JJ NNS VBP VBN CD JJ NNP NNS CC VBD CD NNS IN DT NN IN DT NN NN NN IN DT NN . An Afghan Defense Ministry spokesman said Tuesday the fighting occurred in the Dai Chopan district of southern Zabul province . DT JJ NNP NNP NN VBD NNP DT NN VBD IN DT NNP NNP NN IN JJ NNP NN . Independent confirmation of the details of the fighting in the remote area was not immediately available . JJ NN IN DT NNS IN DT NN IN DT JJ NN VBD RB RB JJ . The U.S. military had no immediate comment . DT NNP NN VBD DT JJ NN . Guerrilla activity in Afghanistan has increased after a winter lull , but activity is down compared to past years . NN NN IN NNP VBZ VBN IN DT NN NN , CC NN VBZ RB VBN TO JJ NNS . U.S.-led forces overthrew the Taleban after they refused to hand over al-Qaida leader Osama bin Laden , the architect of the September 11 attacks on U.S. cities . JJ NNS VBP DT NNP IN PRP VBD TO VB RP NNP NN NNP NNP NNP , DT NN IN DT NNP CD NNS IN NNP NNS . Election officials predict a large turnout Sunday as Thailand 's 44 million eligible voters deliver what is being seen as a judgment on the policies of Prime Minister Thaksin Shinawatra . NN NNS VBP DT JJ NN NNP IN NNP POS CD CD JJ NNS VBP WP VBZ VBG VBN IN DT NN IN DT NNS IN NNP NNP NNP NNP . At one final campaign rally , Mr. Thaksin urged the crowd to give him a strong mandate so that his Thai Rak Thai party can govern without coalition partners . IN CD JJ NN NN , NNP NNP VBD DT NN TO VB PRP DT JJ NN IN IN PRP$ JJ NNP JJ NN MD VB IN NN NNS . Opinion polls give Mr. Thaksin a commanding lead and the opposition is appealing for at least two hundred of the five hundred seats in the national assembly . NN NNS VBP NNP NNP DT JJ NN CC DT NN VBZ VBG IN IN JJS CD CD IN DT CD CD NNS IN DT JJ NN . They say this will allow them to maintain checks and balances in government . PRP VBP DT MD VB PRP TO VB NNS CC NNS IN NN . Official results are expected within 30 days but a preliminary tally has been promised by Monday . JJ NNS VBP VBN IN CD NNS CC DT JJ NN VBZ VBN VBN IN NNP . Fighting continues in the eastern Democratic Republic of Congo , where a joint force of United Nations and Congolese troops is trying to subdue Ugandan rebels . VBG VBZ IN DT JJ JJ NNP IN NNP , WRB DT JJ NN IN NNP NNPS CC JJ NNS VBZ VBG TO VB JJ NNS . Reports of new clashes Monday follow a battle in North Kivu province Sunday . NNS IN JJ NNS NNP VB DT NN IN NNP NNP NN NNP . The United Nations says at least 35 rebels were killed , along with three Congolese government troops and an Indian U.N. peacekeeper . DT NNP NNP VBZ IN JJS CD NNS VBD VBN , IN IN CD JJ NN NNS CC DT JJ NNP NN . A U.N. spokesman , Major Hans-Jakob Reichenm , says about 3,500 Congolese troops and 600 U.N. peacekeepers are battling an estimated 1,000 Ugandan rebels . DT NNP NN , NNP NNP NNP , VBZ IN CD JJ NNS CC CD NNP NNS VBP VBG DT VBN CD JJ NNS . U.N. and Congolese forces are trying to assert government control in North Kivu and other areas dominated by local militias and foreign rebels using eastern Congo as a base . NNP CC JJ NNS VBP VBG TO VB NN NN IN NNP NNP CC JJ NNS VBN IN JJ NNS CC JJ NNS VBG JJ NNP IN DT NN . The offensives were launched after Congo 's constitutional referendum last week . DT NNS VBD VBN IN NNP POS JJ NN JJ NN . Partial results from the vote show the new constitution heading toward overwhelming approval . JJ NNS IN DT NN VBP DT JJ NN VBG IN JJ NN . Turkish leaders , concerned that new political power for Iraqi Kurds could lead to their control of the oil-rich province of Kirkuk , have received reassurance from a visiting U.S. official that Kirkuk is a matter for all Iraqis to decide . JJ NNS , VBN IN JJ JJ NN IN JJ NNPS MD VB TO PRP$ NN IN DT JJ NN IN NNP , VBP VBN NN IN DT VBG NNP NN IN NNP VBZ DT NN IN DT NNS TO VB . The Pentagon 's Douglas Feith told Turkish Foreign Minister Abdullah Gul Monday the United States is committed to preserving Iraq 's territorial integrity . DT NNP POS NNP NNP VBD NNP NNP NNP NNP NNP NNP DT NNP NNPS VBZ VBN TO VBG NNP POS JJ NN . The defense policy official said the issue of Kirkuk is not a matter for one group to decide , but for the Iraqi people in general . DT NN NN NN VBD DT NN IN NNP VBZ RB DT NN IN CD NN TO VB , CC IN DT JJ NNS IN JJ . Turkey is worried that Kurds in northern Iraq might use their increased influence to press for independence , and that could inspire Kurdish separatists living in southeastern Turkey . NNP VBZ VBN IN NNS IN JJ NNP MD VB PRP$ VBN NN TO VB IN NN , CC DT MD VB NNP NNS VBG IN JJ NNP . On Monday , Mr. Gul said if ethnic unrest were to erupt in Kirkuk , the Turkish public would pressure the government to respond . IN NNP , NNP NNP VBD IN JJ NN VBD TO VB IN NNP , DT JJ NN MD VB DT NN TO VB . Some infomation for this report provided by AP and AFP . DT NN IN DT NN VBN IN NNP CC NNP . The Israeli newspaper Haaretz says the number of Jewish settlers in the West Bank has topped 3,00,000 . DT JJ NN NNP VBZ DT NN IN JJ NNS IN DT NNP NNP VBZ VBN CD . In a report Monday , Haaretz said as of June 30 , there were 3,04,569 settlers living in the Palestinian territory , an increase of 2.3 percent since January . IN DT NN NNP , NNP VBD IN IN NNP CD , EX VBD CD NNS VBG IN DT JJ NN , DT NN IN CD NN IN NNP . The paper said the figures came from an Israeli government report . DT NN VBD DT NNS VBD IN DT JJ NN NN . The settlement issue is one of the main obstacles in the stalled Israeli-Palestinian peace process . DT NN NN VBZ CD IN DT JJ NNS IN DT VBN JJ NN NN . The administration of U.S. President Barack Obama has repeatedly called on Israel to halt all settlement activity as part of efforts to revive the peace process . DT NN IN NNP NNP NNP NNP VBZ RB VBN IN NNP TO VB DT NN NN IN NN IN NNS TO VB DT NN NN . Three top U.S. officials , U.S. special envoy to the Middle East George Mitchell , Defense Secretary Robert Gates and National Security Advisor James Jones , are holding talks in Israel this week and are pushing for a settlement freeze . CD JJ NNP NNS , NNP JJ NN TO DT NNP NNP NNP NNP , NNP NNP NNP NNP CC NNP NNP NNP NNP NNP , VBP VBG NNS IN NNP DT NN CC VBP VBG IN DT NN NN . Israeli Prime Minister Benjamin Netanyahu has so far refused the demand , creating tensions with Washington . JJ NNP NNP NNP NNP VBZ RB RB VBD DT NN , VBG NNS IN NNP . Afghan officials say a suicide bombing outside a northern police station has killed one civilian and wounded at least 27 others . JJ NNS VBP DT NN VBG IN DT JJ NN NN VBZ VBN CD JJ CC VBN IN JJS CD NNS . No one claimed responsibility for the attack that took place Thursday in the town of Faizabad , in northern Badakshan province . DT NN VBD NN IN DT NN WDT VBD NN NNP IN DT NN IN NNP , IN JJ NNP NN . Separately , Afghan officials say armed men kidnapped two Germans and at least two of their Afghan colleagues Wednesday in central Afghanistan . RB , JJ NNS VBP JJ NNS VBD CD NNS CC IN JJS CD IN PRP$ JJ NNS NNP IN JJ NNP . It is unclear who was behind the abductions . PRP VBZ JJ WP VBD IN DT NNS . Authorities in Afghanistan say they are investigating . NNS IN NNP VBP PRP VBP VBG . In late June , a German national and his Afghan translator were abducted in southern Afghanistan . IN JJ NNP , DT JJ NN CC PRP$ JJ NN VBD VBN IN JJ NNP . They were freed a week later . PRP VBD VBN DT NN RB . A strong , 7.5 magnitude earthquake has struck near India 's Nicobar Islands , initially triggering a tsunami watch for all areas of the Indian Ocean . DT JJ , CD NN NN VBZ VBN IN NNP POS NNP NNP , RB VBG DT NN NN IN DT NNS IN DT NNP NNP . There were no immediate reports of damage or injury , and the tsunami warning was eventually lifted . EX VBD DT JJ NNS IN NN CC NN , CC DT NN NN VBD RB VBN . The quake , which struck early Sunday , was centered 150 kilometers west of Mohean on the Nicobar Islands at a depth of 35 kilometers . DT NN , WDT VBD JJ NNP , VBD VBN CD NNS JJS IN NNP IN DT NNP NNP IN DT NN IN CD NNS . The Nicobar Islands make up a small chain that runs across the Andaman Sea near southern Thailand . DT NNP NNP VB RP DT JJ NN WDT VBZ IN DT NNP NNP IN JJ NNP . Elsewhere on the globe , earthquakes took place in Japan and California Sunday , but no injuries or building damage were reported in either location . RB IN DT NN , NNS VBD NN IN NNP CC NNP NNP , CC DT NNS CC NN NN VBD VBN IN DT NN . A 6.1 magnitude quake jolted northern Japan , while a 4.4 earthquake was felt in the southwestern U.S. city of San Diego . DT CD NN NN VBD JJ NNP , IN DT CD NN VBD VBN IN DT JJ NNP NN IN NNP NNP . The outgoing president of Georgia 's Abkhazia region , Vladislav Ardzinba , has fired his chosen successor and warned of a possible civil war in the breakaway area . DT JJ NN IN NNP POS NNP NN , NNP NNP , VBZ VBN PRP$ JJ NN CC VBN IN DT JJ JJ NN IN DT JJ NN . Mr. Ardzinba removed Prime Minister Raul Khadjimba from his post Wednesday and replaced him with a former Russian emergency ministries official , Nodar Khashba . NNP NNP VBD NNP NNP NNP NNP IN PRP$ NN NNP CC VBD PRP IN DT JJ JJ NN NNS NN , NNP NNP . He also blamed opposition candidate Sergei Bagapsh for the region 's current political problems that began after Sunday 's presidential elections . PRP RB VBD NN NN NNP NNP IN DT NN POS JJ JJ NNS WDT VBD IN NNP POS JJ NNS . Mr. Bagapsh has already claimed victory against Mr. Khadjimba . NNP NNP VBZ RB VBN NN IN NNP NNP . Election officials say latest returns put Mr. Bagapsh in the lead . NN NNS VBP JJS NNS VBD NNP NNP IN DT NN . Mr. Khadjimba wanted the election voided because of alleged fraud . NNP NNP VBD DT NN VBD IN IN JJ NN . Electoral officials say the southern Gali district will hold a re-vote on October 17 because of voting problems . NNP NNS VBP DT JJ NNP NN MD VB DT NN IN NNP CD IN IN NN NNS . The contest was the first open presidential election in Abkhazia since the area declared independence from Georgia in 1993 . DT NN VBD DT JJ JJ JJ NN IN NNP IN DT NN VBD NN IN NNP IN CD . Georgian officials say the vote was illegal . JJ NNS VBP DT NN VBD JJ . India says its security forces have killed 11 suspected Islamic militants who infiltrated into Indian-controlled Kashmir from the Pakistani part of Kashmir . NNP VBZ PRP$ NN NNS VBP VBN CD JJ JJ NNS WP VBD IN JJ NNP IN DT JJ NN IN NNP . Military officials say the 11 were killed during a gunbattle early Friday . JJ NNS VBP DT CD VBD VBN IN DT NN JJ NNP . Officials say the militants opened fire after Indian troops ordered them to surrender . NNS VBP DT NNS VBD NN IN JJ NNS VBD PRP TO VB . India accuses Pakistan of arming and funding Kashmiri rebels , a charge Islamabad denies . NNP VBZ NNP IN VBG CC VBG JJ NNS , DT NN NNP VBZ . Both nations claim all of Kashmir and have fought two of their three wars over the Himalayan region . DT NNS VBP DT IN NNP CC VBP VBN CD IN PRP$ CD NNS IN DT JJ NN . The two sides have been engaged in a peace process since January 2004 to resolve all of their disputes , including Kashmir . DT CD NNS VBP VBN VBN IN DT NN NN IN NNP CD TO VB DT IN PRP$ NNS , VBG NNP . Saudi Arabian security forces have arrested 17 suspected militants with ties to al-Qaida . JJ JJ NN NNS VBP VBN CD JJ NNS IN NNS TO NNP . An interior ministry statement carried Saturday by Saudi media said the group was arrested during simultaneous early morning raids of 12 homes in the capital , Riyadh , and two nearby districts , Kharj and Majmaah . DT JJ NN NN VBN NNP IN NNP NNS VBD DT NN VBD VBN IN JJ JJ NN NNS IN CD NNS IN DT NN , NNP , CC CD JJ NNS , NNP CC NNP . All of the suspected militants are Saudi nationals . DT IN DT JJ NNS VBP JJ NNS . In addition to the arrests , security forces seized weapons , ammunition , electronic equipment and assorted militant literature and documents . IN NN TO DT NNS , NN NNS VBN NNS , NN , JJ NN CC JJ JJ NN CC NNS . The oil-rich kingdom has been battling supporters and sympathizers of al-Qaida leader Osama bin Laden for the last two years . DT JJ NN VBZ VBN VBG NNS CC NNS IN NNP NN NNP NNP NNP IN DT JJ CD NNS . It has been nearly a year since the last terror attack on Saudi soil . PRP VBZ VBN RB DT NN IN DT JJ NN NN IN JJ NN . Since then , security forces have made significant progress , arresting and killing dozens of suspected militants . IN RB , NN NNS VBP VBN JJ NN , VBG CC VBG NNS IN JJ NNS . North Korea has lashed out at Japan 's new defense guidelines . NNP NNP VBZ VBN RP IN NNP POS JJ NN NNS . An editorial in the official Rodon Sinmun newspaper Sunday says Japan has adopted the so-called ' U.S. vicious hostile policy ' toward North Korea , and is joining in U.S. efforts to ' stifle ' the Pyongyang government . DT NN IN DT JJ NNP NNP NN NNP VBZ NNP VBZ VBN DT JJ `` NNP JJ NN NN `` IN NNP NNP , CC VBZ VBG IN NNP NNS TO `` VB `` DT NNP NN . Japan 's new defense plan , adopted in December , eased a ban on weapons exports , allowing the country to pursue a missile defense program with Washington . NNP POS JJ NN NN , VBN IN NNP , VBD DT NN IN NNS NNS , VBG DT NN TO VB DT NN NN NN IN NNP . The plan also singled out the threats posed by North Korean missiles . DT NN RB VBD RP DT NNS VBN IN JJ JJ NNS . The North Korean comments follow a meeting in Washington Saturday top diplomatic and defense officials from both the United States and Japan . DT JJ JJ NNS VBP DT NN IN NNP NNP JJ JJ CC NN NNS IN DT DT NNP NNPS CC NNP . The two sides issued a joint statement saying North Korea 's nuclear program poses a serious challenge to the international Nuclear Non-Proliferation Treaty . DT CD NNS VBD DT JJ NN VBG NNP NNP POS JJ NN VBZ DT JJ NN TO DT JJ NNP NNP NNP . Somaliland 's interior minister has ordered foreign Islamic clerics and other non-natives to leave the breakaway region immediately , following the arrest of several alleged al-Qaida operatives . NNP POS JJ NN VBZ VBN JJ NNP NNS CC JJ NNS TO VB DT JJ NN RB , VBG DT NN IN JJ JJ NNP NNS . Ismail Osman Aden says his order was prompted by security concerns . NNP NNP NNP VBZ PRP$ NN VBD VBN IN NN NNS . Police detained at least one al-Qaida suspect in an overnight raid in the region 's capital , Hargeisa , bringing to at least seven the number arrested over the previous two days . NNS VBD IN JJS CD NNP NN IN DT JJ NN IN DT NN POS NN , NNP , VBG TO IN JJS CD DT NN VBN IN DT JJ CD NNS . Mr. Aden says the suspects had traveled from the Somali capital , Mogadishu , and were planning attacks against senior officials and foreign workers in an effort to disrupt next week 's elections in Somaliland . NNP NNP VBZ DT NNS VBD VBN IN DT JJ NN , NNP , CC VBD VBG NNS IN JJ NNS CC JJ NNS IN DT NN TO VB JJ NN POS NNS IN NNP . The breakaway region , which is not internationally recognized , split from Somalia after the country descended into anarchy following the overthrow of Mohamed Siad Barre in 1991 . DT NN NN , WDT VBZ RB RB VBN , VBD IN NNP IN DT NN VBD IN NN VBG DT NN IN NNP NNP NNP IN CD . The United States and other western intelligence agencies see Somalia as a potential safe haven for terrorists . DT NNP NNPS CC JJ JJ NN NNS VBP NNP IN DT JJ JJ NN IN NNS . Hamas ordered all smuggling tunnels along the Gaza border with Egypt to be immediately closed , cutting the flow of critical goods into the Gaza strip . NNP VBD DT VBG NNS IN DT NNP NN IN NNP TO VB RB VBD , VBG DT NN IN JJ NNS IN DT NNP NN . Hamas , which controls Gaza , temporarily shut the tunnels at Egypt 's urging , after Israel warned tourists in the Sinai peninsula to immediately leave because of a terrorist plot to kidnap Israelis . NNP , WDT VBZ NNP , RB VBD DT NNS IN NNP POS VBG , IN NNP VBD NNS IN DT NNP NN TO RB VB IN IN DT JJ NN TO VB NNS . Security officials say Israel warned that the tunnels could be used in the kidnapping plot . NN NNS VBP NNP VBD IN DT NNS MD VB VBN IN DT NN NN . The Associated Press quoted a Hamas official who said Gaza leaders feared Israel could launch new airstrikes on the tunnels . DT NNP NNP VBD DT NNP NN WP VBD NNP NNS VBD NNP MD VB JJ NNS IN DT NNS . Israel and Egypt sealed their borders with the Gaza Strip in 2007 to prevent Hamas militants from getting weapons . NNP CC NNP VBD PRP$ NNS IN DT NNP NNP IN CD TO VB NNP NNS IN VBG NNS . But the blockades also have slowed efforts to rebuild Gaza and prevented Palestinians from accessing basic necessities . CC DT NNS RB VBP VBN NNS TO VB NNP CC VBN NNS IN VBG JJ NNS . Smugglers have skirted the blockade by bringing in goods through the tunnels . NNS VBP VBN DT NN IN VBG IN NNS IN DT NNS . Officials in Niger report a new outbreak of the deadly H5N1 strain of bird flu . NNS IN NNP VBP DT JJ NN IN DT JJ NNP NN IN NN NN . Government officials Friday said tests have confirmed the presence of H5N1 in the village of Boko Maigao , in southern Niger . NN NNS NNP VBD NNS VBP VBN DT NN IN NNP IN DT NN IN NNP NNP , IN JJ NNP . Thousands of birds were slaughtered after scientists detected H5N1 in two other parts of southern Niger back in February . NNS IN NNS VBD VBN IN NNS VBD NNP IN CD JJ NNS IN JJ NNP RB IN NNP . Several west African countries are grappling with outbreaks of the disease , including Niger 's neighbors Nigeria and Burkina Faso . JJ JJ JJ NNS VBP VBG IN NNS IN DT NN , VBG NNP POS NNS NNP CC NNP NNP . No human cases have been detected in the area , though the disease is believed to have killed at least 124 people around the world since 2003 . DT JJ NNS VBP VBN VBN IN DT NN , IN DT NN VBZ VBN TO VB VBN IN JJS CD NNS IN DT NN IN CD . A public opinion poll released in Paksitan on June 20th shows that 58 percent of Pakistanis support talks with the tribal militants , and that anti-U.S. sentiments remain negative . DT JJ NN NN VBN IN NNP IN NNP JJ VBZ IN CD NN IN NNS VBP NNS IN DT JJ NNS , CC IN JJ NNS VBP JJ . The pollsters found more than half of the respondents blame the U.S. for the violence occurring in Pakistan while few hold al-Qaida responsible , but that the U.S. has an opportunity to turn public opinion in its favor . DT NNS VBD JJR IN NN IN DT NNS VBP DT NNP IN DT NN VBG IN NNP IN JJ NN NNP JJ , CC IN DT NNP VBZ DT NN TO VB JJ NN IN PRP$ NN . The survey was conducted in Pakistan by two Washington-based not profit organizations : DT NN VBD VBN IN NNP IN CD JJ RB NN NNS : Terror Free Tomorrow and a think tank , the New America Foundation . NNP NNP NNP CC DT NN NN , DT NNP NNP NNP . VOA 's Ravi Khanna has more . NNP POS NNP NNP VBZ RBR . The U.N. Security Council is considering a draft statement condemning North Korea 's long-range rocket launch earlier this month . DT NNP NNP NNP VBZ VBG DT NN NN VBG NNP NNP POS JJ NN NN RBR DT NN . The Council 's five permanent members and Japan reached an agreement on a draft statement Saturday and presented it to the full Council within hours . DT NNP POS CD JJ NNS CC NNP VBD DT NN IN DT NN NN NNP CC VBD PRP TO DT JJ NN IN NNS . The draft ' condemns ' the April 5 launch and says North Korea must comply fully with Security Council Resolution 1718 , which banned such launches . DT NN `` VBZ `` DT NNP CD NN CC VBZ NNP NNP MD VB RB IN NNP NNP NNP CD , WDT VBD JJ NNS . It also says the Security Council will demand North Korea not conduct any further launches . PRP RB VBZ DT NNP NNP MD VB NNP NNP RB VB DT JJ NNS . And it calls for an early resumption of six-party disarmament talks with Pyongyang . CC PRP VBZ IN DT JJ NN IN JJ NN NNS IN NNP . Japan had been seeking a Security Council resolution -- a measure seen as a stronger response . NNP VBD VBN VBG DT NNP NNP NN IN DT NN VBN IN DT JJR NN . But Tokyo now says it would consider a Council presidential statement instead . CC NNP RB VBZ PRP MD VB DT NNP JJ NN RB . The Security Council had been deadlocked for almost a week over how it should respond to the North Korean launch . DT NNP NNP VBD VBN VBN IN RB DT NN IN WRB PRP MD VB TO DT JJ JJ NN . The South Asia Free Trade Agreement , or SAFTA , came into effect Sunday , paving the way for free trade of goods among the member nations . DT NNP NNP NNP NNP NNP , CC NNP , VBD IN NN NNP , VBG DT NN IN JJ NN IN NNS IN DT NN NNS . India 's Commerce Minister Kamal Nath said implementation of the accord will benefit the entire region - a home to 1.5 billion people . NNP POS NNP NNP NNP NNP VBD NN IN DT NN MD VB DT JJ NN IN DT NN TO CD CD NNS . Under the agreement , the more developed member countries - India , Pakistan and Sri Lanka - will reduce their customs duties to between zero and five percent by the year 2013 . IN DT NN , DT RBR JJ NN NNS IN NNP , NNP CC NNP NNP : MD VB PRP$ NNS NNS TO IN CD CC CD NN IN DT NN CD . Less developed Bangladesh , Bhutan , the Maldives and Nepal have until 2018 to do the same . RBR JJ NNP , NNP , DT NNP CC NNP VBP IN CD TO VB DT NN . Leaders of the South Asian Association for Regional Cooperation , or SAARC , agreed to forge ahead with the free trade zone at their summit in Pakistan in 2004 . NNS IN DT NNP NNP NNP IN NNP NNP , CC NNP , VBD TO VB RB IN DT JJ NN NN IN PRP$ NN IN NNP IN CD . Lebanese officials say a suspect in the assassination of former Prime Minister Rafik Hariri has been taken to a Beirut hospital . JJ NNS VBP DT NN IN DT NN IN JJ NNP NNP NNP NNP VBZ VBN VBN TO DT NNP NN . Former Lebanese intelligence chief Raymond Azar , who was arrested in August , was moved from his prison cell to a hospital intensive care unit . JJ JJ NN NN NNP NNP , WP VBD VBN IN NNP , VBD VBN IN PRP$ NN NN TO DT NN JJ NN NN . Officials say he is suffering from a heart problem . NNS VBP PRP VBZ VBG IN DT NN NN . His arrest , along with three other Lebanese generals , was on the recommendation of the United Nations commission investigating Mr. Hariri 's killing . PRP$ NN , IN IN CD JJ JJ NNS , VBD IN DT NN IN DT NNP NNPS NN VBG NNP NNP POS NN . The head of that commission , German prosecutor Detlev Mehlis , had been expected to interview five Syrian officials Tuesday in Vienna . DT NN IN DT NN , JJ NN NNP NNP , VBD VBN VBN TO VB CD JJ NNS NNP IN NNP . But a U.N. diplomat says they are likely to be questioned next week . CC DT NNP NN VBZ PRP VBP JJ TO VB VBN JJ NN . Last month , Mr. Mehlis issued a report implicating top Syrian officials in the February assassination . JJ NN , NNP NNP VBD DT NN VBG JJ JJ NNS IN DT NNP NN . Syria has repeatedly denied any role , and has pledged to cooperate with the U.N. investigation . NNP VBZ RB VBN DT NN , CC VBZ VBN TO VB IN DT NNP NN . Ukrainian President Viktor Yushchenko says his country must strengthen its military defenses and step up efforts to gain membership in the NATO military alliance . JJ NNP NNP NNP VBZ PRP$ NN MD VB PRP$ JJ NNS CC VB RP NNS TO VB NN IN DT NNP JJ NN . Mr. Yushchenko spoke Sunday in Kyiv , in an address marking Ukraine 's 17th anniversary of independence from the former Soviet Union . NNP NNP VBD NNP IN NNP , IN DT NN VBG NNP POS JJ NN IN NN IN DT JJ NNP NNP . He spoke as Russia , which strenuously opposes the NATO aspirations of both Ukraine and Georgia , continued its occupation of Georgian territory . PRP VBD IN NNP , WDT RB VBZ DT NNP NNS IN DT NNP CC NNP , VBD PRP$ NN IN JJ NN . Mr. Yushchenko condemned what he called the ' aggression ' of Russian forces in Georgia , while pledging that Ukraine will not become Moscow 's next target . NNP NNP VBD WP PRP VBD DT `` NN `` IN JJ NNS IN NNP , IN VBG DT NNP MD RB VB NNP POS JJ NN . The Yushchenko address was followed by a rare parade of Ukraine military hardware , including tanks , armored personnel carriers and missile launchers . DT NNP NN VBD VBN IN DT JJ NN IN NNP JJ NN , VBG NNS , VBD NNS NNS CC NN NNS . Military jets flew overhead in formation . JJ NNS VBD RB IN NN . In Moscow , Russian President Dmitri Medvedev and Prime Minister Vladimir Putin marked the Ukrainian anniversary with statements calling for closer bilateral relations . IN NNP , JJ NNP NNP NNP CC NNP NNP NNP NNP VBD DT JJ NN IN NNS VBG IN JJR JJ NNS . The head of the U.S. central bank is warning Americans not to assume that recent soaring home values will continue forever . DT NN IN DT NNP JJ NN VBZ VBG NNS RB TO VB IN JJ VBG NN NNS MD VB RB . On Friday , Federal Reserve Chairman Alan Greenspan told economists gathered at a resort in Wyoming that increased buying power fueled by higher home prices could disappear if investors turn cautious . IN NNP , NNP NNP NNP NNP NNP VBD NNS VBN IN DT NN IN NNP IN JJ VBG NN VBN IN JJR NN NNS MD VB IN NNS VBP JJ . Huge numbers of U.S. homeowners have taken out loans against the increased value of their homes to pay for renovations and other purchases , fueling much of the recent growth in the economy . JJ NNS IN NNP NNS VBP VBN RP NNS IN DT JJ NN IN PRP$ NNS TO VB IN NNS CC JJ NNS , VBG NN IN DT JJ NN IN DT NN . Mr. Greenspan also warned that growing trade protectionism and bloated government budget deficits will make it more difficult for the U.S. economy to weather the kind of problems that would follow an abrupt fall in asset prices or other economic shocks . NNP NNP RB VBD IN VBG NN NN CC JJ NN NN NNS MD VB PRP RBR JJ IN DT NNP NN TO VB DT NN IN NNS WDT MD VB DT JJ NN IN NN NNS CC JJ JJ NNS . President Bush has repeated his vow to work together with the new Democrat-controlled Congress on spending measures and education . NNP NNP VBZ VBN PRP$ NN TO VB RB IN DT JJ JJ NNP IN NN NNS CC NN . Mr. Bush said in his weekly radio address Saturday some Democrats agree with him that balancing the budget is a top priority . NNP NNP VBD IN PRP$ JJ NN NN NNP DT NNS VBP IN PRP IN VBG DT NN VBZ DT JJ NN . He also called on Congress to reauthorize his ' No Child Left Behind ' Act , which establishes testing and benchmarks for measuring a student 's progress . PRP RB VBD IN NNP TO VB PRP$ `` DT NN VBN NNP `` NNP , WDT VBZ NN CC NNS IN VBG DT NN POS NN . Democrats say the former Republican-controlled Congress has not authorized the money needed to fully fund the law . NNS VBP DT JJ JJ NNP VBZ RB VBN DT NN VBN TO RB VB DT NN . Meanwhile , in the Democrats ' weekly response , Senate Majority Leader Harry Reid of the southwestern state of Nevada spoke out against troop increases in Iraq that Mr. Bush is expected to announce in the coming week . RB , IN DT NNPS POS JJ NN , NNP NNP NNP NNP NNP IN DT JJ NN IN NNP VBD RP IN NN NNS IN NNP IN NNP NNP VBZ VBN TO VB IN DT JJ NN . Reid called any such increases ' a serious mistake . ' NNP VBD DT JJ NNS `` DT JJ NN . `` He called instead for phased redeployment of U.S. troops from Iraq in the next four to six months . PRP VBD RB IN VBN NN IN NNP NNS IN NNP IN DT JJ CD CC CD NNS . A presidential commission says U.S. intelligence agencies were completely wrong in most of their pre-war judgments about Iraq 's weapons of mass destruction . DT JJ NN VBZ NNP NN NNS VBD RB JJ IN JJS IN PRP$ JJ NNS IN NNP POS NNS IN NN NN . The commission report being released Thursday makes scores of recommendations for improving the U.S. intelligence community 's performance . DT NN NN VBG VBN NNP VBZ NNS IN NNS IN VBG DT NNP NN NN POS NN . Proposals include creation of a separate national counter-proliferation center to fight the spread of chemical , nuclear , and biological weapons . NNS VBP NN IN DT JJ JJ NN NN TO VB DT NN IN NN , JJ , CC JJ NNS . The report blames the failures in Iraq on an inability to collect good information , errors in analysis , and a failure to make clear how much of that analysis was based on assumptions rather than evidence . DT NN VBZ DT NNS IN NNP IN DT NN TO VB JJ NN , NNS IN NN , CC DT NN TO VB JJ WRB RB IN DT NN VBD VBN IN NNS RB IN NN . It also says U.S. intelligence still knows ' disturbingly little ' about the nuclear programs of what it calls the world 's most dangerous countries . PRP RB VBZ NNP NN RB VBZ `` RB JJ `` IN DT JJ NNS IN WP PRP VBZ DT NN POS RBS JJ NNS . President Bush is due to make a statement on the report after meeting with the commission today . NNP NNP VBZ JJ TO VB DT NN IN DT NN IN VBG IN DT NN NN . Palestinian medical officials say one militant has been killed and at least 14 other Palestinians have been wounded during an overnight incursion by Israeli forces in the southern Gaza Strip . JJ JJ NNS VBP CD NN VBZ VBN VBN CC IN JJS CD JJ NNS VBP VBN VBN IN DT JJ NN IN JJ NNS IN DT JJ NNP NNP . Witnesses say the Palestinians were wounded after troops backed by at least 25 tanks and armed bulldozers and aircraft entered an area east of the town of Khan Younis . NNS VBP DT NNS VBD VBN IN NNS VBN IN IN JJS CD NNS CC JJ NNS CC NN VBD DT NN NN IN DT NN IN NNP NNP . They say the militant , from the Islamic Jihad movement , was killed in an Israeli air strike targeting a house where several Palestinians were meeting . PRP VBP DT NN , IN DT NNP NNP NN , VBD VBN IN DT JJ NN NN VBG DT NN WRB JJ NNS VBD NN . Witnesses say the Israeli air force carried out at least two air strikes on the area . NNS VBP DT JJ NN NN VBD RP IN JJS CD NN NNS IN DT NN . Israeli forces regularly raid the Hamas-ruled Gaza Strip to stop Palestinian militants from firing rockets into southern Israel . JJ NNS RB VBD DT JJ NNP NNP TO VB JJ NNS IN VBG NNS IN JJ NNP . Indonesia has received permission from Swiss drug giant Roche to locally produce Tamiflu , the drug thought to be most effective in treating bird flu in humans . NNP VBZ VBN NN IN JJ NN NN NNP TO RB VB NNP , DT NN VBN TO VB RBS JJ IN VBG NN NN IN NNS . Indonesian Health Minister Siti Fadillah Supari made the announcement Friday , in Jakarta . JJ NN NN NNP NNP NNP VBD DT NN NNP , IN NNP . Indonesia is the second country to get the go-ahead to produce the anti-flu medicine , along with Vietnam . NNP VBZ DT JJ NN TO VB DT NN TO VB DT JJ NN , IN IN NNP . Thursday , Indonesian agriculture officials said hundreds of chickens infected with the deadly H5N1 strain of the virus died in Aceh province . NNP , JJ NN NNS VBD NNS IN NNS VBN IN DT JJ NNP NN IN DT NN VBD IN NNP NN . And in Vietnam , public health officials said a 15-year-old boy from the northern port city of Haiphong tested positive for the same H5N1 strain . CC IN NNP , JJ NN NNS VBD DT JJ NN IN DT JJ JJ NN IN NNP VBD JJ IN DT JJ NNP NN . The findings have not yet been confirmed by the World Health Organization . DT NNS VBP RB RB VBN VBN IN DT NNP NNP NNP . Elsewhere , China also reported a new outbreak of the deadly strain in poultry in the northwestern region of Xinjiang . RB , NNP RB VBD DT JJ NN IN DT JJ NN IN NN IN DT JJ NN IN NNP . More than 60 people have died from bird flu in Asia since 2003 . JJR IN CD NNS VBP VBN IN NN NN IN NNP IN CD . The International Olympic Committee has announced it will review its procedures for the Olympic torch relay after a series of protests marred the Beijing flame 's worldwide journey . DT NNP NNP NNP VBZ VBN PRP MD VB PRP$ NNS IN DT NNP NN NN IN DT NN IN NNS VBD DT NNP NN POS JJ NN . IOC president Jacques Rogge said Tuesday the tradition of lighting the Olympic flame in Ancient Olympia and starting the torch relay in Greece will continue . NNP NN NNP NNP VBD NNP DT NN IN VBG DT NNP NN IN NNP NNP CC VBG DT NN NN IN NNP MD VB . But he said the IOC 's executive board could limit future torch relays to within the borders of the Olympic host nation . CC PRP VBD DT NNP POS JJ NN MD VB JJ NN VBZ TO IN DT NNS IN DT NNP NN NN . Angry and sometimes violent protests of China 's human rights record took place as the flame traveled through San Francisco , London and Paris . NNP CC RB JJ NNS IN NNP POS JJ NNS NN VBD NN IN DT NN VBD IN NNP NNP , NNP CC NNP . In his opening speech at the three-day IOC session on the eve of the Beijing Games , Rogge said that his organization respect protests and freedom of expression , but violence is against the Olympic spirit . IN PRP$ NN NN IN DT JJ NNP NN IN DT NN IN DT NNP NNPS , NNP VBD IN PRP$ NN NN NNS CC NN IN NN , CC NN VBZ IN DT NNP NN . U.S. Secretary of State Condoleezza Rice says she welcomes the invitation by Iraq 's independent electoral commission to international monitors to review complaints of fraud in this month 's parliamentary vote . NNP NN IN NN NNP NNP VBZ PRP VBZ DT NN IN NNP POS JJ JJ NN TO JJ NNS TO VB NNS IN NN IN DT NN POS JJ NN . Ms. Rice said Thursday that the panel has ' again demonstrated its commitment to fair and credible elections that meet international standards . ' NNP NNP VBD NNP IN DT NN VBZ `` RB VBN PRP$ NN TO JJ CC JJ NNS WDT VBP JJ NNS . `` She says the United States strongly backs the review process and looks forward to final results that she says reflect the will of the Iraqi people . PRP VBZ DT NNP NNPS RB VBZ DT NN NN CC VBZ RB TO JJ NNS IN PRP VBZ VBP DT NN IN DT JJ NNS . Sunni Arab and secular Shi'ite political factions have alleged widespread fraud in the December 15 election . NNP NNP CC JJ NNP JJ NNS VBP VBN JJ NN IN DT NNP CD NN . Initial results show that Shi'ite candidates won 130 seats in the 275-seat parliament . JJ NNS VBP IN NNP NNS VBD CD NNS IN DT JJ NN . Many Sunnis have held street protests demanding a re-vote . JJ NNPS VBP VBN NN NNS VBG DT NN . The U.N. representative to Iraq 's election commission has said the parliamentary elections were transparent with relatively few instances of fraud . DT NNP NN TO NNP POS NN NN VBZ VBN DT JJ NNS VBD JJ IN RB JJ NNS IN NN . Bulgaria 's center-left government has survived a no-confidence vote prompted by a suspension of European Union subsidies . NNP POS JJ NN VBZ VBN DT JJ NN VBN IN DT NN IN NNP NNP NNS . All 150 representatives of the three-party ruling coalition voted against the motion , which won the backing of 84 deputies . DT CD NNS IN DT JJ NN NN VBD IN DT NN , WDT VBD DT NN IN CD NNS . The European Commission , last week , suspended nearly $ 800 million in aid to the government . DT JJ NNP , JJ NN , VBD RB $ CD CD IN NN TO DT NN . EU officials said Bulgaria 's push against corruption and criminal gangs is not producing needed results . NNP NNS VBD NNP POS NN IN NN CC JJ NNS VBZ RB VBG VBN NNS . Prime Minister Stanishev acknowledged what he called ' serious problems ' in many Bulgarian institutions . NNP NNP NNP VBD WP PRP VBD `` JJ NNS `` IN JJ JJ NNS . But he also cited ' positive steps ' in recent months , including new laws on conflict of interest . CC PRP RB VBD `` JJ NNS `` IN JJ NNS , VBG JJ NNS IN NN IN NN . The no-confidence motion was the sixth against Mr. Stanishev , since he took office in 2005 . DT JJ NN VBD DT NN IN NNP NNP , IN PRP VBD NN IN CD . Russia says it again has presented to Iran a proposal for reprocessing uranium in Russia from Iran 's nuclear plants . NNP VBZ PRP RB VBZ VBN TO NNP DT NN IN VBG NN IN NNP IN NNP POS JJ NNS . The Foreign Ministry , in a statement , said its embassy in Tehran Saturday presented Iranian authorities with a note saying that its offer for setting up a joint Russian-Iranian uranium enrichment facility remains valid . DT NNP NNP , IN DT NN , VBD PRP$ NN IN NNP NNP VBD JJ NNS IN DT NN VBG IN PRP$ NN IN VBG RP DT JJ JJ NN NN NN VBZ JJ . Iran has turned down previous Russian suggestions , insisting it has the right to enrich uranium and produce nuclear fuel domestically despite international efforts to curb its nuclear program . NNP VBZ VBN RP JJ JJ NNS , VBG PRP VBZ DT NN TO VB NN CC VB JJ NN RB IN JJ NNS TO VB PRP$ JJ NN . The United States and the European Union have expressed grave concerns that Tehran will use its nuclear program as a cover for developing atomic weapons . DT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS IN NNP MD VB PRP$ JJ NN IN DT NN IN VBG JJ NNS . Under a deal signed earlier this year , Moscow agreed to supply enriched uranium fuel for Iran 's Bushehr reactor . IN DT NN VBN RBR DT NN , NNP VBD TO VB VBN NN NN IN NNP POS NNP NN . But it also demanded the return of spent fuel , to prevent Tehran from reprocessing it into bomb-grade material . CC PRP RB VBD DT NN IN JJ NN , TO VB NNP IN VBG PRP IN JJ NN . A retired U.S. Army general and former director of the National Security Agency has called on President Bush to sign a war funding bill passed by Congress this week that would authorize the withdrawal of U.S. troops from Iraq . DT JJ NNP NNP JJ CC JJ NN IN DT NNP NNP NNP VBZ VBN IN NNP NNP TO VB DT NN NN NN VBN IN NNP DT NN WDT MD VB DT NN IN NNP NNS IN NNP . In the Democratic Party 's weekly radio address Saturday , former lieutenant general William Odom said he generally does not favor congressional involvement in foreign and military policy . IN DT NNP NNP POS JJ NN NN NNP , JJ NN NN NNP NNP VBD PRP RB VBZ RB VB JJ NN IN JJ CC JJ NN . But he said Mr. Bush has allowed the United States to squander its influence , money and blood in the Iraq war . CC PRP VBD NNP NNP VBZ VBN DT NNP NNPS TO VB PRP$ NN , NN CC NN IN DT NNP NN . Odom said the challenge now is not how to win in Iraq , but how to recover from the mistake of invading Iraq in the first place . NNP VBD DT NN RB VBZ RB WRB TO VB IN NNP , CC WRB TO VB IN DT NN IN VBG NNP IN DT JJ NN . President Bush has promised to veto the funding bill , which requires the U.S. to begin withdrawing troops from Iraq by October 1 . NNP NNP VBZ VBN TO VB DT NN NN , WDT VBZ DT NNP TO VB VBG NNS IN NNP IN NNP CD . Sub-freezing temperatures have killed scores of people throughout eastern and central Europe in the past week , as natural gas shortages compounded the bitter chill in several countries . JJ NNS VBP VBN NNS IN NNS IN JJ CC JJ NNP IN DT JJ NN , IN JJ NN NNS VBD DT JJ NN IN JJ NNS . Ukraine 's health ministry Thursday said the Arctic cold has claimed at least 181 lives and led to more than 2000 hospitalizations since Saturday . NNP POS NN NN NNP VBD DT NNP NN VBZ VBN IN JJS CD NNS CC VBN TO JJR IN CD NNS IN NNP . Weather-related deaths also have been reported in Russia , Croatia , Romania , Bulgaria , Serbia , Poland and the Baltic countries among others . JJ NNS RB VBP VBN VBN IN NNP , NNP , NNP , NNP , NNP , NNP CC DT JJ NNS IN NNS . The situation remains critical in Georgia , where gas shortages and power outages compounded the bitter cold . DT NN VBZ JJ IN NNP , WRB NN NNS CC NN NNS VBD DT JJ NN . In a statement Thursday , Russian oil giant Gazprom accused Ukraine of diverting gas meant for the rest of Europe . IN DT NN NNP , JJ NN NN NNP VBD NNP IN VBG NN VBN IN DT NN IN NNP . When faced with similar allegations earlier this week , Ukraine said it was meeting all transit requirements . WRB VBN IN JJ NNS RBR DT NN , NNP VBD PRP VBD VBG DT NN NNS . In hopeful news , the icy temperatures that have gripped much of Eastern Europe for the past week have begun to ease up Thursday . IN JJ NN , DT NN NNS WDT VBP VBN NN IN NNP NNP IN DT JJ NN VBP VBN TO VB RP NNP . The White House has released new details of President Bush 's planned May trip commemorating the end of World War II in Europe with stops in Russia and three other countries . DT NNP NNP VBZ VBN JJ NNS IN NNP NNP POS JJ NNP NN VBG DT NN IN NNP NNP NNP IN NNP IN NNS IN NNP CC CD JJ NNS . A White House statement released Thursday , said President Bush will meet the presidents of Latvia , Estonia and Lithuania in Riga , Latvia May 6 . DT NNP NNP NN VBN NNP , VBD NNP NNP MD VB DT NNS IN NNP , NNP CC NNP IN NNP , NNP NNP CD . In the Netherlands President Bush is is expected to take part in commemorations of the end of World War II in Europe on May 8 . IN DT NNP NNP NNP VBZ VBZ VBN TO VB NN IN NNS IN DT NN IN NNP NNP NNP IN NNP IN NNP CD . He will then travel to Russia , which commemorates the end of the war on May 9 , and meet President Vladimir Putin . PRP MD RB VB TO NNP , WDT VBZ DT NN IN DT NN IN NNP CD , CC VB NNP NNP NNP . Mr. Bush will conclude his visit in Tbilisi , Georgia , where the White House says he plans to ' underscore his support for democracy . ' NNP NNP MD VB PRP$ NN IN NNP , NNP , WRB DT NNP NNP VBZ PRP VBZ TO `` VB PRP$ NN IN NN . `` Cuban President Raul Castro says he is open to direct talks with the incoming U.S. president , saying he believes Barack Obama is an honest and sincere man who could improve relations between the two countries . JJ NNP NNP NNP VBZ PRP VBZ JJ TO JJ NNS IN DT JJ NNP NN , VBG PRP VBZ NNP NNP VBZ DT JJ CC JJ NN WP MD VB NNS IN DT CD NNS . However , Mr. Castro says he is in no hurry , and is not sure Mr. Obama can change what the Cuban leader called the ' overall hostile U.S. policy ' towards Cuba . RB , NNP NNP VBZ PRP VBZ IN DT NN , CC VBZ RB JJ NNP NNP MD VB WP DT JJ NN VBD DT `` JJ JJ NNP NN `` IN NNP . President-elect Obama has said he would be willing to speak with Cuba 's leaders . NNP NNP VBZ VBN PRP MD VB JJ TO VB IN NNP POS NNS . But he also says he will keep the long-standing economic embargo as a way to push for democratic change . CC PRP RB VBZ PRP MD VB DT JJ JJ NN IN DT NN TO VB IN JJ NN . Mr. Castro 's comments , aired Friday on state television , came the day after Cuba marked the 50th anniversary of the revolution that brought his brother Fidel Castro to power . NNP NNP POS NNS , VBD NNP IN NN NN , VBD DT NN IN NNP VBD DT JJ NN IN DT NN WDT VBD PRP$ NN NNP NNP TO NN . President Bush has rejected calls for withdrawing U.S. troops from Iraq , saying it would be a ' huge mistake ' at this point . NNP NNP VBZ VBN NNS IN VBG NNP NNS IN NNP , VBG PRP MD VB DT `` JJ NN `` IN DT NN . At a news conference Monday , Mr. Bush said that leaving the country now would send the wrong message to reformers in the Middle East , and embolden Iran and extremists . IN DT NN NN NNP , NNP NNP VBD IN VBG DT NN RB MD VB DT JJ NN TO NNS IN DT NNP NNP , CC VB NNP CC NNS . He added he is committed to securing peace in Iraq and strengthening its government , saying a failure in Iraq would threaten the security of the United States . PRP VBD PRP VBZ VBN TO VBG NN IN NNP CC VBG PRP$ NN , VBG DT NN IN NNP MD VB DT NN IN DT NNP NNPS . The president said U.S. military commanders are continuing to adjust their tactics to prevent attacks by terrorist groups and end violence among sectarian groups . DT NN VBD NNP JJ NNS VBP VBG TO VB PRP$ NNS TO VB NNS IN JJ NNS CC NN NN IN JJ NNS . Some U.S. lawmakers have been calling on the president to set a date for withdrawing U.S. troops from Iraq . DT NNP NNS VBP VBN VBG IN DT NN TO VB DT NN IN VBG NNP NNS IN NNP . In Baghdad , U.S. military officials said a service member died in a roadside bomb attack Monday . IN NNP , NNP JJ NNS VBD DT NN NN VBD IN DT NN NN NN NNP . Human Rights Watch is urging the United States to use its Security Council presidency to create a new U.N. force in Sudan 's troubled Darfur region . NNP NNP NNP VBZ VBG DT NNP NNPS TO VB PRP$ NNP NNP NN TO VB DT JJ NNP NN IN NNP POS JJ NNP NN . The New York-based group says such a mission should have a strong mandate to protect civilians . DT NNP JJ NN VBZ PDT DT NN MD VB DT JJ NN TO VB NNS . The rights group says the African Union troops now in Darfur have acted with great resolve and courage , but lack manpower and resources . DT NNS NN VBZ DT NNP NNP NNS RB IN NNP VBP VBN IN JJ NN CC NN , CC VBZ NN CC NNS . It says the deteriorating situation in Darfur demands a major new international effort to save lives there . PRP VBZ DT VBG NN IN NNP VBZ DT JJ JJ JJ NN TO VB NNS RB . Human Rights Watch says the United States should use its presidency of the Security Council in February to jump-start this effort . NNP NNP NNP VBZ DT NNP NNPS MD VB PRP$ NN IN DT NNP NNP IN NNP TO VB DT NN . Violence against civilians in Darfur has surged in the last three months . NN IN NNS IN NNP VBZ VBN IN DT JJ CD NNS . Human Rights Watch blames militias sponsored by Sudan 's government . NNP NNP NNP VBZ NNS VBN IN NNP POS NN . News reports said a small aircraft that crashed in northeast China may have been a North Korean fighter jet . NNP NNS VBD DT JJ NN WDT VBD IN NN NNP MD VB VBN DT JJ JJ NN NN . Beijing 's official Xinhua news agency said the aircraft went down Tuesday in Fushun County , located in Liaoning province . NNP POS JJ NNP NN NN VBD DT NN VBD RB NNP IN NNP NNP , VBN IN VBG NN . An unnamed government source told Xinhua the jet ' might be ' a North Korean plane . DT JJ NN NN VBD NNP DT NN `` MD VB `` DT JJ JJ NN . Xinhua did not identify the pilot or the aircraft . NNP VBD RB VB DT NN CC DT NN . South Korea 's Yonhap news agency said intelligence sources believe the aircraft appeared to be a Soviet-era jet fighter , after earlier reporting said it may have been a helicopter . NNP NNP POS NNP NN NN VBD NN NNS VBP DT NN VBD TO VB DT JJ NN NN , IN RBR VBG VBD PRP MD VB VBN DT NN . The anonymous sources said the pilot could have lost his way while flying to Russia . DT JJ NNS VBD DT NN MD VB VBN PRP$ NN IN VBG TO NNP . Yonhap said the pilot , who was the only person on board the aircraft , was killed . NNP VBD DT NN , WP VBD DT JJ NN IN NN DT NN , VBD VBN . Fushun is located about 150 kilometers from the North Korean city of Sinuiju , where a military airbase is located . NNP VBZ VBN IN CD NNS IN DT JJ JJ NN IN NNP , WRB DT JJ NN VBZ VBN . Hundreds of protesters marched through the streets of Guatemala City Friday to voice opposition to the Central American Free Trade Agreement with the United States . NNS IN NNS VBD IN DT NNS IN NNP NNP NNP TO VB NN TO DT NNP NNP NNP NNP NNP IN DT NNP NNPS . The protesters said the pact , known as CAFTA , will benefit only large companies and harm the poor . DT NNS VBD DT NN , VBN IN NNP , MD VB RB JJ NNS CC VB DT NN . Supporters say the deal will help lift the region out of poverty . NNS VBP DT NN MD VB VB DT NN IN IN NN . The trade agreement was supposed to take effect on January 1 , but was delayed . DT NN NN VBD VBN TO VB NN IN NNP CD , CC VBD VBN . U.S. Trade Representative Rob Portman , however , recommended Friday that the accord with El Salvador take effect on March 1 . NNP NNP NNP NNP NNP , RB , VBD NNP IN DT NN IN NNP NNP VBP NN IN NNP CD . The other countries that make up CAFTA have not yet met rules proposed by the United States . DT JJ NNS WDT VBP RP NNP VBP RB RB VBN NNS VBN IN DT NNP NNPS . CAFTA also comprises Costa Rica , Honduras , Nicaragua and the Dominican Republic . NNP RB VBZ NNP NNP , NNP , NNP CC DT NNP NNP . Costa Rica is the only country within CAFTA that has not yet ratified the agreement . NNP NNP VBZ DT JJ NN IN NNP WDT VBZ RB RB VBN DT NN . President Bush has congratulated the Congolese people for what he called ' their deep desire to embrace democracy ' - because of the country 's constitutional referendum . NNP NNP VBZ VBN DT JJ NNS IN WP PRP VBD `` PRP$ JJ NN TO VB NN `` : IN IN DT NN POS JJ NN . A White House spokesman , in a statement , said the referendum represents an important step in the democratic process in the Democratic Republic of Congo . DT NNP NNP NN , IN DT NN , VBD DT NN VBZ DT JJ NN IN DT JJ NN IN DT JJ NNP IN NNP . Polls closed Monday after a second day of voting on a new constitution designed to end years of war and chaos . NNS VBD NNP IN DT JJ NN IN VBG IN DT JJ NN VBN TO VB NNS IN NN CC NN . Officials say turnout was high for the referendum . NNS VBP NN VBD JJ IN DT NN . Final results are not expected for several days . JJ NNS VBP RB VBN IN JJ NNS . If approved , the constitution would pave the way for Congolese elections next year . IN VBN , DT NN MD VB DT NN IN JJ NNS JJ NN . The DRC is struggling to emerge from decades of political instability and violence . DT NNP VBZ VBG TO VB IN NNS IN JJ NN CC NN . The country 's most recent conflict , which ended in 2003 , drew in armies from six neighboring states and left nearly four million people dead . DT NN POS RBS JJ NN , WDT VBD IN CD , VBD IN NNS IN CD JJ NNS CC VBD RB CD CD NNS JJ . One of the world 's top think-tanks says the Middle East is more secure than a year ago , in part because of U.S. policies promoting democracy in the region . CD IN DT NN POS JJ NNS VBZ DT NNP NNP VBZ RBR JJ IN DT NN RB , IN NN IN IN NNP NNS VBG NN IN DT NN . But the London-based International Institute for Strategic Studies also says that al-Qaida terrorists continue to use the U.S. presence in Iraq as a recruitment tool across much of the Muslim world . CC DT JJ NNP NNP IN NNP NNP RB VBZ IN NNP NNS VBP TO VB DT NNP NN IN NNP IN DT NN NN IN NN IN DT NNP NN . In its annual survey , the IISS hails progress in the Israeli-Palestinian conflict , the promise of multi-party elections in Egypt , and the popular uprising against Syria in Lebanon . IN PRP$ JJ NN , DT NNP VBZ NN IN DT JJ NN , DT NN IN JJ NNS IN NNP , CC DT JJ NN IN NNP IN NNP . It calls U.S. policy ' fairly effective ' in encouraging political reforms throughout the region . PRP VBZ NNP NN `` RB JJ `` IN VBG JJ NNS IN DT NN . The report calls the November , 2004 death of Palestinian leader Yasser Arafat the tipping point in the push to end the Israel-Palestinian conflict . DT NN VBZ DT NNP , CD NN IN JJ NN NNP NNP DT NN NN IN DT NN TO VB DT JJ NN . It also notes President Bush 's use of U.S. influence to bring the two sides together . PRP RB VBZ NNP NNP POS NN IN NNP NN TO VB DT CD NNS RB . Indian police say a bus and van collision has killed 34 people , including the bus driver , and injured more than two dozen other people . JJ NNS VBP DT NN CC NN NN VBZ VBN CD NNS , VBG DT NN NN , CC VBD JJR IN CD NN JJ NNS . Investigators say the van was returning from a funeral with mourners Saturday when the crash occurred near Badaun , in Uttar Pradesh state . NNS VBP DT NN VBD VBG IN DT NN IN NNS NNP WRB DT NN VBD IN NNP , IN NNP NNP NN . The World Health Organiation says India has the highest number of road fatalities in the world . DT NNP NNP NNP VBZ NNP VBZ DT JJS NN IN NN NNS IN DT NN . Authorities say more than 1,10,000 people die each year on India 's roads , due mainly to speeding , bad roads and poorly maintained vehicles . NNS VBP JJR IN CD NNS VBP DT NN IN NNP POS NNS , JJ RB TO NN , JJ NNS CC RB VBN NNS . Iraqi police say insurgents have carried out at least four more car bomb attacks in Baghdad and the northern city of Mosul , killing nine people and wounding nearly 30 others . JJ NNS VBP NNS VBP VBN RP IN JJS CD JJR NN NN NNS IN NNP CC DT JJ NN IN NNP , VBG CD NNS CC VBG RB CD NNS . The attacks are part of a sharp upsurge in bombings since Baghdad 's new government was announced last week . DT NNS VBP NN IN DT JJ NN IN NNS IN NNP POS JJ NN VBD VBN JJ NN . More than 100 people , most of them civilians , have been killed since Friday . JJR IN CD NNS , JJS IN PRP NNS , VBP VBN VBN IN NNP . In Monday 's deadliest attack , a car bomb exploded in a south Baghdad market area , killing six pedestrians . IN NNP POS JJS NN , DT NN NN VBD IN DT JJ NNP NN NN , VBG CD NNS . At least two other people were killed in a second attack in the capital . IN JJS CD JJ NNS VBD VBN IN DT JJ NN IN DT NN . To the north , U.S. officials say two suicide bombers in Mosul blew themselves up , killing a child and wounding 15 others . TO DT NN , NNP NNS VBP CD NN NNS IN NNP VBD PRP RP , VBG DT NN CC VBG CD NNS . Sunday , bombings killed more than 30 people , including 25 Kurds attending the funeral of a slain local Kurdish official in the northern town of Tall Afar . NNP , NNS VBD JJR IN CD NNS , VBG CD NNPS VBG DT NN IN DT NN JJ NNP NN IN DT JJ NN IN NNP NNP . A Pakistani immigrant accused of plotting to bomb a subway station in New York City took the stand in his own defense Monday . DT JJ NN VBN IN VBG TO VB DT NN NN IN NNP NNP NNP VBD DT NN IN PRP$ JJ NN NNP . Shahawar Matin Siraj told a Brooklyn , New York courtroom that he planned the attack only after a police informer stoked his anger against the United States . NNP NNP NNP VBD DT NNP , NNP NNP NN IN PRP VBD DT NN RB IN DT NN NN VBD PRP$ NN IN DT NNP NNPS . The 23-year-old defendant said he came up with the plot to bomb the busy Herald Square subway station in 2004 to impress the informer , Osama Eldawoody . DT JJ NN VBD PRP VBD RP IN DT NN TO VB DT JJ NNP NNP NN NN IN CD TO VB DT NN , NNP NNP . Siraj says he viewed Eldawoody as a brother figure , and maintains Eldawoody was the leader of the bombing conspiracy . NNP VBZ PRP VBD NNP IN DT NN NN , CC VBZ NNP VBD DT NN IN DT VBG NN . The defendant said he backed out of the plot when he realized civilians could be hurt . DT NN VBD PRP VBD IN IN DT NN WRB PRP VBD NNS MD VB VBN . Manhattan 's Herald Square is a central shopping district , and includes department store Macy 's famed flagship store . NNP POS NNP NNP VBZ DT JJ NN NN , CC VBZ NN NN NNP POS JJ NN NN . President Bush has welcomed congressional approval of a plan to allow the United States to ship civilian nuclear fuel and technology to India . NNP NNP VBZ VBN JJ NN IN DT NN TO VB DT NNP NNPS TO VB JJ JJ NN CC NN TO NNP . In a statement issued Saturday , the president said the deal will help both nations meet their energy needs without increasing air pollution and greenhouse gases . IN DT NN VBN NNP , DT NN VBD DT NN MD VB DT NNS VBP PRP$ NN NNS IN VBG NN NN CC NN NNS . He said it also promotes clean development and non-proliferation . PRP VBD PRP RB VBZ JJ NN CC NN . U.S. lawmakers voted overnight Saturday to approve the measure , which requires India to open its civilian nuclear facilities to international inspection . NNP NNS VBD JJ NNP TO VB DT NN , WDT VBZ NNP TO VB PRP$ JJ JJ NNS TO JJ NN . India 's government welcomed the agreement . NNP POS NN VBD DT NN . But the foreign ministry expressed concern about terms of the U.S. law that call on India to oppose Iran 's nuclear ambitions . CC DT JJ NN VBD NN IN NNS IN DT NNP NN WDT VBP IN NNP TO VB NNP POS JJ NNS . Ministry officials said India 's foreign policy will be determined only by national interests . NNP NNS VBD NNP POS JJ NN MD VB VBN RB IN JJ NNS . Pro-democracy supporters protested across Egypt Wednesday to demand political reforms and an end to President Hosni Mubarak 's decades-long rule . JJ NNS VBD IN NNP NNP TO VB JJ NNS CC DT NN TO NNP NNP NNP POS JJ NN . Protesters are demanding multi-party elections and restrictions on the number of terms any candidate can run . NNS VBP VBG JJ NNS CC NNS IN DT NN IN NNS DT NN MD VB . Mr. Mubarak , who has already served four terms , said in an interview Tuesday that he has not yet decided whether to run in elections expected in September . NNP NNP , WP VBZ RB VBN CD NNS , VBD IN DT NN NNP IN PRP VBZ RB RB VBN IN TO VB IN NNS VBN IN NNP . Witnesses and protest organizers in Cairo , Suez and several other towns say police detained dozens of demonstrators carrying the banner of the Kifaya Movement . NNS CC NN NNS IN NNP , NNP CC JJ JJ NNS VBP NNS VBD NNS IN NNS VBG DT NN IN DT NNP NNP . In March , Mr. Mubarak 's 41-year-old son , Gamal , ruled out running for the presidency , and denied his father ordered multi-party amendments to the constitution so the son could run . IN NNP , NNP NNP POS JJ NN , NNP , VBD RP VBG IN DT NN , CC VBD PRP$ NN VBD JJ NNS TO DT NN IN DT NN MD VB . A college professor and his wife in Florida have been accused of spying for Cuba for decades . DT NN NN CC PRP$ NN IN NNP VBP VBN VBN IN VBG IN NNP IN NNS . In an indictment made public Monday in Miami , prosecutors said 61 year-old Carlos Alvarez and his 55 year-old wife Elsa had been sending to Cuba information on U.S. government officials and anti-Castro exile groups . IN DT NN VBN JJ NNP IN NNP , NNS VBD CD JJ NNP NNP CC PRP$ CD JJ NN NNP VBD VBN VBG TO NNP NN IN NNP NN NNS CC JJ NN NNS . Prosecutor Brian Frazier said Carlos began spying for Cuba in 1977 , and Elsa began in 1982 . NNP NNP NNP VBD NNP VBD VBG IN NNP IN CD , CC NNP VBD IN CD . Frazier said the couple used short wave radio and encryption equipment to send messages to Cuba . NNP VBD DT NN VBD JJ NN NN CC NN NN TO VB NNS TO NNP . An agent for the Federal Bureau of Investigation said there was no evidence they provided classified or military information to Cuba . DT NN IN DT NNP NNP IN NNP VBD EX VBD DT NN PRP VBD JJ CC JJ NN TO NNP . The couple was employed at Florida International University . DT NN VBD VBN IN NNP NNP NNP . The judge in the case ordered them held without bail and scheduled another hearing for January 19 . DT NN IN DT NN VBD PRP VBN IN NN CC VBN DT NN IN NNP CD . President Bush has extended his greetings to Muslims observing Ramadan in America and around the world . NNP NNP VBZ VBN PRP$ NNS TO NNP VBG NNP IN NNP CC IN DT NN . In a White House statement released Friday , Mr. Bush said Ramadan is the holiest time of the Muslim year and an important holiday . IN DT NNP NNP NN VBN NNP , NNP NNP VBD NNP VBZ DT JJS NN IN DT NNP NN CC DT JJ NN . He said Ramadan observes the delivery of God 's word , in the form of the Qur'an , to the prophet Muhammad . PRP VBD NNP VBZ DT NN IN NNP POS NN , IN DT NN IN DT NNP , TO DT NN NNP . The president also said the holiday is an opportunity to gather with friends and family and to show thanks for God 's blessings through works of charity . DT NN RB VBD DT NN VBZ DT NN TO VB IN NNS CC NN CC TO VB NNS IN NNP POS NNS IN NNS IN NN . Mr. Bush said Ramadan and the upcoming holiday seasons are good times to remember common values that bind all people together . NNP NNP VBD NNP CC DT JJ NN NNS VBP JJ NNS TO VB JJ NNS WDT VBP DT NNS RB . He added that Muslim Americans enrich U.S. society . PRP VBD IN NNP NNS VBP NNP NN . Israel says Syria has test-fired three Scud missiles - the first such tests since 2001 . NNP VBZ NNP VBZ VBN CD NNP NNS IN DT JJ JJ NNS IN CD . Israeli military officials said their air defense systems detected the missile launches from northern Syria last Friday . JJ NN NNS VBD PRP$ NN NN NNS VBD DT NN NNS IN JJ NNP JJ NNP . They said one missile broke up over Turkey , showering debris on two towns . PRP VBD CD NN VBD RP IN NNP , VBG NN IN CD NNS . Turkish officials say Syria has informed them that the incident was an accident that happened during a military exercise . JJ NNS VBP NNP VBZ VBN PRP IN DT NN VBD DT NN WDT VBD IN DT JJ NN . Turkish authorities say no injuries were reported . JJ NNS VBP DT NNS VBD VBN . There has been no public comment from Syria . EX VBZ VBN DT JJ NN IN NNP . Israel 's military described the tests as an act of defiance toward the United States and the United Nations , which pushed Syria to withdraw its troops from Lebanon this year . NNP POS JJ VBD DT NNS IN DT NN IN NN IN DT NNP NNPS CC DT NNP NNPS , WDT VBD NNP TO VB PRP$ NNS IN NNP DT NN . Israeli officials also expressed concern that the missiles could carry chemical weapons capable of hitting Israeli targets . JJ NNS RB VBD NN IN DT NNS MD VB NN NNS JJ IN VBG JJ NNS . Nigerian police say four people have been detained for allegedly stealing election machines at the Lagos airport . JJ NNS VBP CD NNS VBP VBN VBN IN RB VBG NN NNS IN DT NNP NN . Police say the suspects were taken into custody overnight Friday . NNS VBP DT NNS VBD VBN IN NN JJ NNP . They allegedly stole 20 of what are known as ' direct data capture machines ' after being unloaded at the airport Monday . PRP RB VBP CD IN WP VBP VBN IN `` JJ NN NN NNS `` IN VBG VBN IN DT NN NNP . Authorities say 16 of the machines have been recovered . NNS VBP CD IN DT NNS VBP VBN VBN . Police are investigating whether others may have been involved in the heist . NNS VBP VBG IN NNS MD VB VBN VBN IN DT NN . Officials say the thefts will not impact voter registration set for January 15 and lasting two weeks . NNS VBP DT NNS MD RB VB NN NN VBN IN NNP CD CC JJ CD NNS . Nigeria will hold elections for president , parliament and state level races in April . NNP MD VB NNS IN NN , NN CC NN NN NNS IN NNP . A leading international human rights group says Russia 's new law restricting non-governmental groups is repressive and it is asking the Group of Eight industrialized nations to make it a key issue on the agendas of future meetings . DT VBG JJ JJ NNS NN VBZ NNP POS JJ NN VBG JJ NNS VBZ JJ CC PRP VBZ VBG DT NNP IN CD JJ NNS TO VB PRP DT JJ NN IN DT NNS IN JJ NNS . Moscow takes over the rotating leadership of the G-8 , the world 's seven leading industrialized nation plus Russia , on January 1 and President Vladimir Putin is expected to sign the bill into law before the end of this year . NNP VBZ RP DT VBG NN IN DT NNP , DT NN POS CD VBG JJ NN IN NNP , IN NNP CD CC NNP NNP NNP VBZ VBN TO VB DT NN IN NN IN DT NN IN DT NN . New York-based Human Rights Watch says the legislation is broad and ambiguous , giving Russian government offices an unprecedented level of discretion in regulating non-governmental organizations . NNP JJ NNP NNP NNP VBZ DT NN VBZ JJ CC JJ , VBG JJ NN NNS DT JJ NN IN NN IN VBG JJ NNS . It notes that Russian leaders insist the limitations are necessary for Russia 's security . PRP VBZ IN JJ NNS VBP DT NNS VBP JJ IN NNP POS NN . However , the organization says enactment of the law will not only severely restrict NGOs , but will also undermine the rights of all Russians . RB , DT NN VBZ NN IN DT NN MD RB RB RB VB NNS , CC MD RB VB DT NNS IN DT NNS . The international agency that suspended millions of dollars in AIDS grants to Uganda last week says it likely will resume funding by October . DT JJ NN WDT VBD NNS IN NNS IN NNP NNS TO NNP JJ NN VBZ PRP RB MD VB NN IN NNP . A spokesman for the Global Fund to Fight AIDS , Tuberculosis and Malaria , Bradford Herbert , said Wednesday that Uganda has taken quick steps to resolve concerns about the mismanagement of agency funding . DT NN IN DT NNP NNP TO VB NNP , NNP CC NNP , NNP NNP , VBD NNP IN NNP VBZ VBN JJ NNS TO VB NNS IN DT NN IN NN NN . He told reporters in Kampala the suspension will be lifted as long as progress continues . PRP VBD NNS IN NNP DT NN MD VB VBN RB RB IN NN VBZ . Just days after grants to Uganda were suspended , the government appointed an international auditing firm to oversee its AIDS programs . RB NNS IN NNS TO NNP VBD VBN , DT NN VBD DT JJ NN NN TO VB PRP$ NNP NNS . Ernst and Young will run Uganda 's Project Management Unit - which disburses grants . NNP CC NNP MD VB NNP POS NNP NNP NNP : WDT VBZ NNS . Mr. Herbert said three Global Fund staffers will stay in Uganda to monitor the project and make sure that life-saving drugs are distributed . NNP NNP VBD CD NNP NNP NNS MD VB IN NNP TO VB DT NN CC VB JJ IN JJ NNS VBP VBN . A top Ugandan finance ministry official , Chris Kasami , said the government is committed to recovering any money that may have been stolen . DT JJ JJ NN NN NN , NNP NNP , VBD DT NN VBZ VBN TO VBG DT NN WDT MD VB VBN VBN . Indian families have begun to bury relatives killed by a series of bomb blasts in the western part of the country , as security forces patrol to avoid further violence . JJ NNS VBP VBN TO VB NNS VBN IN DT NN IN NN NNS IN DT JJ NN IN DT NN , IN NN NNS VBP TO VB JJ NN . Several funerals were held overnight in the city of Malegaon , as Muslims celebrated a religious festival called Shab-e-Barat . JJ NNS VBD VBN RB IN DT NN IN NNP , IN NNPS VBD DT JJ NN VBD NNP . Officials said at least 31 people were killed and 100 others were wounded in the attacks Friday near a burial ground , a mosque and the town square . NNS VBD IN JJS CD NNS VBD VBN CC CD NNS VBD VBN IN DT NNS NNP IN DT JJ NN , DT NN CC DT NN NN . The head of India 's ruling Congress Party , Sonia Gandhi , arrived in the town to visit with the wounded and relatives of the dead . DT NN IN NNP POS VBG NNP NNP , NNP NNP , VBD IN DT NN TO VB IN DT VBN CC NNS IN DT NN . Authorities imposed a curfew on Malegaon , amid concern that the blasts might spark clashes between the local Muslim and Hindu communities . NNS VBD DT NN IN NNP , IN NN IN DT NNS MD VB NNS IN DT JJ NN CC NNP NNS . There have been no claims of responsibility for the attacks . EX VBP VBN DT NNS IN NN IN DT NNS . Russia 's Defense Minister Sergei Ivanov says the Russian military plans to deploy a new intercontinental ballistic missile system . NNP POS NNP NNP NNP NNP VBZ DT JJ NN VBZ TO VB DT JJ JJ JJ NN NN . A successful test launch of the system was conducted Friday . DT JJ NN NN IN DT NN VBD VBN NNP . Mr. Ivanov said the military expects to begin buying the new mobile Topol-M missiles in 2005 , and to put them in service by January , 2006 . NNP NNP VBD DT NN VBZ TO VB VBG DT JJ JJ JJ NNS IN CD , CC TO VB PRP IN NN IN NNP , CD . Mr. Ivanov said this latest test was the final one for the new weapon , which he said was easier to fire and had greater accuracy and range than the current model . NNP NNP VBD DT JJS NN VBD DT JJ NN IN DT JJ NN , WDT PRP VBD VBD JJR TO VB CC VBD JJR NN CC NN IN DT JJ NN . Mr. Ivanov added that Russia will keep its nuclear capability equal to that of the United States and other nuclear powers in technological sophistication , but not in the actual numbers of weapons . NNP NNP VBD IN NNP MD VB PRP$ JJ NN JJ TO DT IN DT NNP NNPS CC JJ JJ NNS IN JJ NN , CC RB IN DT JJ NNS IN NNS . The U.S. Consumer Product Safety Commission [ CPSC ] has launched a new program to screen toys and other imports for potential safety hazards . DT NNP NNP NNP NNP NNP LRB NNP RRB VBZ VBN DT JJ NN TO VB NNS CC JJ NNS IN JJ NN NNS . Working with U.S. Customs agents , the new import surveillance program plans to test selected products at various ports in the United States to make sure the products are safe before they enter the U.S. market . VBG IN NNP NNP NNS , DT JJ NN NN NN VBZ TO VB JJ NNS IN JJ NNS IN DT NNP NNPS TO VB JJ DT NNS VBP JJ IN PRP VBP DT NNP NN . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . A strong winter storm has caused trouble for travelers , downed power lines to thousands of homes and caused deadly accidents in the midwestern United States . DT JJ NN NN VBZ VBN NN IN NNS , VBN NN NNS TO NNS IN NNS CC VBN JJ NNS IN DT JJ NNP NNPS . In Dallas , Texas , icy conditions on Sunday prompted the cancellation of about 300 airline flights . IN NNP , NNP , NN NNS IN NNP VBD DT NN IN IN CD NN NNS . The storm also prompted the governors of Missouri and Oklahoma to declare a state of emergency . DT NN RB VBD DT NNS IN NNP CC NNP TO VB DT NN IN NN . Police in Oklahoma say icy roads were to blame for a head-on crash between a minivan and a tractor trailer truck that killed seven occupants of the van . NNS IN NNP VBP NN NNS VBD TO VB IN DT JJ NN IN DT NN CC DT NN NN NN WDT VBD CD NNS IN DT NN . The seven were Mexican nationals . DT CD VBD JJ NNS . Five other occupants of the van were taken to the hospital . CD JJ NNS IN DT NN VBD VBN TO DT NN . Investigators said the minivan was hit after it skidded across the median of the divided highway Sunday morning about 180 kilometers west of Oklahoma City . NNS VBD DT NN VBD VBN IN PRP VBD IN DT NN IN DT VBN NN NNP NN IN CD NNS JJS IN NNP NNP . Spain says it will lift immigration restrictions for workers from the European Union 's new Eastern European member states . NNP VBZ PRP MD VB NN NNS IN NNS IN DT NNP NNP POS JJ JJ JJ NN NNS . Prime Minister Jose Luis Rodriguez Zapatero said Thursday that beginning May 1 , the government will open the Spanish labor market to workers from Poland , the Czech Republic , Latvia , Lithuania , Estonia , Hungary , Slovakia and Slovenia . NNP NNP NNP NNP NNP NNP VBD NNP IN VBG NNP CD , DT NN MD VB DT JJ NN NN TO NNS IN NNP , DT JJ NNP , NNP , NNP , NNP , NNP , NNP CC NNP . Workers from the two other new EU members , Cyprus and Malta , already have free access to Spain . NNS IN DT CD JJ JJ NNP NNS , NNP CC NNP , RB VBP JJ NN TO NNP . The decision brings Spain into line with some EU countries such as Britain , Ireland and Sweden , which have no restrictions on workers from Eastern Europe . DT NN VBZ NNP IN NN IN DT NNP NNS JJ IN NNP , NNP CC NNP , WDT VBP DT NNS IN NNS IN NNP NNP . Spain 's move follows an immigration amnesty begun last year that granted nearly 8,00,000 new residence permits and moved thousands of undocumented workers out of the country 's underground economy . NNP POS NN VBZ DT NN NN VBN JJ NN WDT VBD RB CD JJ NN NNS CC VBD NNS IN JJ NNS IN IN DT NN POS JJ NN . A tribal chieftain in Sudan 's Darfur region says at least 55 people have been killed and more than 80 others wounded in fighting between the south Sudan army and Darfuri Arab tribes . DT JJ NN IN NNP POS NNP NN VBZ IN JJS CD NNS VBP VBN VBN CC JJR IN CD NNS VBN IN VBG IN DT JJ NNP NN CC NNP NNP NNS . Rizeigat tribal leader Mohamed Eissa Aliu said the fighting occurred Friday . NNP JJ NN NNP NNP NNP VBD DT NN VBD NNP . He said reinforcements from both sides are converging on the area near the border of the southern state of Western Bahr al-Ghazal . PRP VBD NNS IN DT NNS VBP VBG IN DT NN IN DT NN IN DT JJ NN IN NNP NNP NNP . Aliu 's account to Western reporters has not been confirmed . NNP POS NN TO JJ NNS VBZ RB VBN VBN . The south Sudan army confirmed Saturday it had come under attack , but it said the assault came from the northern-based central government army and not Rizeigat tribesmen . DT JJ NNP NN VBD NNP PRP VBD VBN IN NN , CC PRP VBD DT NN VBD IN DT JJ JJ NN NN CC RB NNP NNS . Tensions in Sudan remain high following the country 's first multi-party elections in 24 years . NNS IN NNP VBP JJ VBG DT NN POS JJ JJ NNS IN CD NNS . The polls earlier this month were boycotted by several opposition parties and marred by a series of technical and logistical problems . DT NNS RBR DT NN VBD VBN IN JJ NN NNS CC VBN IN DT NN IN JJ CC JJ NNS . Pakistani Prime Minister Shaukat Aziz says progress in peace talks with India hinges on progress in resolving the Kashmir dispute . JJ NNP NNP NNP NNP VBZ NN IN NN NNS IN NNP VBZ IN NN IN VBG DT NNP NN . Mr. Aziz spoke to reporters after talks with his Indian counterpart , Manmohan Singh , in New Delhi Wednesday . NNP NNP VBD TO NNS IN NNS IN PRP$ JJ NN , NNP NNP , IN NNP NNP NNP . Mr. Aziz said Pakistan believes the ' core issue of Kashmir ' needs to be addressed , and progress on other issues will be made in tandem . NNP NNP VBD NNP VBZ DT `` JJ NN IN NNP `` VBZ TO VB VBN , CC NN IN JJ NNS MD VB VBN IN NN . New Delhi says further improvements in relations between the two nuclear-armed neighbors should not be held hostage to their decades-old dispute over Kashmir . NNP NNP VBZ JJ NNS IN NNS IN DT CD JJ NNS MD RB VB VBN NN TO PRP$ JJ NN IN NNP . Mr. Aziz , who arrived in New Delhi Tuesday , has had separate meetings with Indian Foreign Minister Natwar Singh and Muslim separatist leaders of Indian Kashmir . NNP NNP , WP VBD IN NNP NNP NNP , VBZ VBN JJ NNS IN JJ NNP NNP NNP NNP CC NNP JJ NNS IN JJ NNP . The Pakistani prime minister is in India as part of a South Asia tour as the outgoing chairman of a regional grouping - the South Asian Association for Regional Cooperation , or SAARC . DT JJ JJ NN VBZ IN NNP IN NN IN DT NNP NNP NN IN DT JJ NN IN DT JJ NN IN DT NNP NNP NNP IN NNP NNP , CC NNP . An explosion during a parade of the militant Palestinian group Hamas has killed 15 people and wounded 80 others , including children , in the Gaza Strip . DT NN IN DT NN IN DT JJ JJ NN NNP VBZ VBN CD NNS CC VBD CD NNS , VBG NNS , IN DT NNP NNP . Palestinian President Mahmoud Abbas 's Fatah faction blamed Hamas for the casualties for holding a military parade in the densely populated Jebaliya refugee camp . JJ NNP NNP NNP POS NNP NN VBD NNP IN DT NNS IN VBG DT JJ NN IN DT RB JJ NNP NN NN . Witnesses say a truck carrying homemade weapons accidentally exploded . NNS VBP DT NN VBG JJ NNS RB VBD . But Hamas blamed Israel , saying a drone flying over the area fired a missile at the vehicle . CC NNP VBD NNP , VBG DT NN VBG IN DT NN VBD DT NN IN DT NN . Israel quickly denied any involvement . NNP RB VBD DT NN . Earlier Friday , an Israeli raid in the West Bank town of Tulkarem turned violent and three Islamic Jihad members were killed . RBR NNP , DT JJ NN IN DT NNP NNP NN IN NNP VBD JJ CC CD NNP NNP NNS VBD VBN . Islamic Jihad retaliated , firing several rockets into Israel that did not cause casualties or damage . NNP NNP VBD , VBG JJ NNS IN NNP WDT VBD RB VB NNS CC NN . Palestinian chief negotiator Saeb Erekat condemned the Israeli raid and urged calm on all sides . JJ NN NN NNP NNP VBD DT JJ NN CC VBD NN IN DT NNS . A new constitution took effect in Kyrgyzstan Friday , as officials announced the final results from the country 's referendum . DT JJ NN VBD NN IN NNP NNP , IN NNS VBD DT JJ NNS IN DT NN POS NN . Central Election Commission official Akylbek Sariyev said over 90 percent of voters on Sunday backed the new charter , which establishes Kyrgyzstan as a parliamentary republic . NNP NNP NNP NN NNP NNP VBD IN CD NN IN NNS IN NNP VBD DT JJ NN , WDT VBZ NNP IN DT JJ NN . Sariyev said interim leader Roza Otunbayeva was officially approved as interim president until the end of 2011 . NNP VBD JJ NN NNP NNP VBD RB VBN IN JJ NN IN DT NN IN CD . She is expected to be sworn in during an inauguration ceremony on Saturday and parliamentary elections are set for October 10 . PRP VBZ VBN TO VB VBN IN IN DT NN NN IN NNP CC JJ NNS VBP VBN IN NNP CD . Kyrgyzstan 's interim government has struggled to impose order since it took power following the April 7 deadly uprising that ousted President Kurmanbek Bakiyev . NNP POS JJ NN VBZ VBN TO VB NN IN PRP VBD NN VBG DT NNP CD JJ NN WDT VBD NNP NNP NNP . An estimated 2,000 people were killed during ethnic clashes between Kyrgyz and Uzbeks that erupted in June in the southern cities of Osh and Jalalabad . DT VBN CD NNS VBD VBN IN JJ NNS IN NNS CC NNS WDT VBD IN NNP IN DT JJ NNS IN NNP CC NNP . Populated for centuries by aboriginal peoples , the island was claimed by the Spanish Crown in 1493 following COLUMBUS ' second voyage to the Americas . VBN IN NNS IN JJ NNS , DT NN VBD VBN IN DT JJ NNP IN CD VBG NNS POS JJ NN TO DT NNPS . In 1898 , after 400 years of colonial rule that saw the indigenous population nearly exterminated and African slave labor introduced , Puerto Rico was ceded to the US as a result of the Spanish-American War . IN CD , IN CD NNS IN NN NN WDT VBD DT JJ NN RB VBD CC JJ NN NN VBN , NNP NNP VBD VBN TO DT NNP IN DT NN IN DT NNP NNP . Puerto Ricans were granted US citizenship in 1917 . NNP NNPS VBD VBN NNP NN IN CD . Popularly-elected governors have served since 1948 . JJ NNS VBP VBN IN CD . In 1952 , a constitution was enacted providing for internal self government . IN CD , DT NN VBD VBN VBG IN JJ JJ NN . In plebiscites held in 1967 , 1993 , and 1998 , voters chose not to alter the existing political status . IN NNS VBN IN CD , CD , CC CD , NNS VBD RB TO VB DT VBG JJ NN . Close ties to France since independence in 1960 , the development of cocoa production for export , and foreign investment made Cote d'Ivoire one of the most prosperous of the West African states , but did not protect it from political turmoil . JJ NNS TO NNP IN NN IN CD , DT NN IN NN NN IN NN , CC JJ NN VBD NNP NNP CD IN DT RBS JJ IN DT JJ JJ NNS , CC VBD RB VB PRP IN JJ NN . In December 1999 , a military coup - the first ever in Cote d'Ivoire 's history - overthrew the government . IN NNP CD , DT JJ NN IN DT JJ RB IN NNP NNP POS NN : VBD DT NN . Junta leader Robert GUEI blatantly rigged elections held in late 2000 and declared himself the winner . NNP NN NNP NNP RB VBD NNS VBN IN JJ CD CC VBD PRP DT NN . Popular protest forced him to step aside and brought Laurent GBAGBO into power . JJ NN VBD PRP TO VB RB CC VBD NNP NNP IN NN . Ivorian dissidents and disaffected members of the military launched a failed coup attempt in September 2002 . JJ NNS CC JJ NNS IN DT NN VBD DT VBN NN NN IN NNP CD . Rebel forces claimed the northern half of the country , and in January 2003 were granted ministerial positions in a unity government under the auspices of the Linas-Marcoussis Peace Accord . NN NNS VBD DT JJ NN IN DT NN , CC IN NNP CD VBD VBN JJ NNS IN DT NN NN IN DT NNS IN DT NNP NNP NNP . President GBAGBO and rebel forces resumed implementation of the peace accord in December 2003 after a three-month stalemate , but issues that sparked the civil war , such as land reform and grounds for citizenship , remained unresolved . NNP NNP CC JJ NNS VBD NN IN DT NN NN IN NNP CD IN DT JJ NN , CC NNS WDT VBD DT JJ NN , JJ IN NN NN CC NNS IN NN , VBD JJ . In March 2007 President GBAGBO and former New Force rebel leader Guillaume SORO signed the Ouagadougou Political Agreement . IN NNP CD NNP NNP CC JJ NNP NNP NN NN NNP NNP VBD DT NNP NNP NNP . As a result of the agreement , SORO joined GBAGBO 's government as Prime Minister and the two agreed to reunite the country by dismantling the zone of confidence separating North from South , integrate rebel forces into the national armed forces , and hold elections . IN DT NN IN DT NN , NNP VBD NNP POS NN IN NNP NNP CC DT CD VBD TO VB DT NN IN VBG DT NN IN NN VBG NNP IN NNP , VB JJ NNS IN DT JJ JJ NNS , CC VB NNS . Disarmament , demobilization , and reintegration of rebel forces have been problematic as rebels seek to enter the armed forces . NN , NN , CC NN IN JJ NNS VBP VBN JJ IN NNS VBP TO VB DT JJ NNS . Citizen identification and voter registration pose election difficulties , and balloting planned for November 2009 was postponed to 2010 . NNP NN CC NN NN VBP NN NNS , CC NN VBN IN NNP CD VBD VBN TO CD . On 28 November 2010 , Alassane Dramane OUATTARA won the presidential election , defeating then President Laurent GBAGBO . IN CD NNP CD , NNP NNP NNP VBD DT JJ NN , VBG RB NNP NNP NNP . GBAGBO refused to hand over power , resulting in a 6-month stand-off . NNP VBD TO VB IN NN , VBG IN DT JJ NN . In April 2011 , after widespread fighting , GBAGBO was formally forced from office by OUATTARA supporters with the support of UN and French forces . IN NNP CD , IN JJ NN , NNP VBD RB VBN IN NN IN NNP NNS IN DT NN IN NNP CC JJ NNS . Several thousand UN troops and several hundred French remain in Cote d'Ivoire to support the transition process . JJ CD NNP NNS CC JJ CD NNS VBP IN NNP NNP TO VB DT NN NN . Monaco , bordering France on the Mediterranean coast , is a popular resort , attracting tourists to its casino and pleasant climate . NNP , VBG NNP IN DT NNP NN , VBZ DT JJ NN , VBG NNS TO PRP$ NN CC JJ NN . The principality also is a major banking center and has successfully sought to diversify into services and small , high-value-added , nonpolluting industries . DT NN RB VBZ DT JJ NN NN CC VBZ RB VBN TO VB IN NNS CC JJ , JJ , JJ NNS . The state has no income tax and low business taxes and thrives as a tax haven both for individuals who have established residence and for foreign companies that have set up businesses and offices . DT NN VBZ DT NN NN CC JJ NN NNS CC NNS IN DT NN NN DT IN NNS WP VBP VBN NN CC IN JJ NNS WDT VBP VBN RP NNS CC NNS . Monaco , however , is not a tax-free shelter ; it charges nearly 20 % value-added tax , collects stamp duties , and companies face a 33 % tax on profits unless they can show that three-quarters of profits are generated within the principality . NNP , RB , VBZ RB DT JJ NN ; PRP VBZ RB CD NN JJ NN , VBZ NN NNS , CC NNS VBP DT CD NN NN IN NNS IN PRP MD VB IN NNS IN NNS VBP VBN IN DT NN . Monaco was formally removed from the OECD 's ' grey list ' of uncooperative tax jurisdictions in late 2009 , but continues to face international pressure to abandon its banking secrecy laws and help combat tax evasion . NNP VBD RB VBN IN DT NNP POS `` NN NN `` IN JJ NN NNS IN JJ CD , CC VBZ TO VB JJ NN TO VB PRP$ NN NN NNS CC VB VB NN NN . The state retains monopolies in a number of sectors , including tobacco , the telephone network , and the postal service . DT NN VBZ NNS IN DT NN IN NNS , VBG NN , DT NN NN , CC DT JJ NN . Living standards are high , roughly comparable to those in prosperous French metropolitan areas . VBG NNS VBP JJ , RB JJ TO DT IN JJ JJ JJ NNS . Economic activity is limited to providing services to the military and their families located in Akrotiri . JJ NN VBZ VBN IN VBG NNS TO DT NN CC PRP$ NNS VBN IN NNP . All food and manufactured goods must be imported . DT NN CC JJ NNS MD VB VBN . Colombia was one of the three countries that emerged from the collapse of Gran Colombia in 1830 ( the others are Ecuador and Venezuela ) . NNP VBD CD IN DT CD NNS WDT VBD IN DT NN IN NNP NNP IN CD LRB DT NNS VBP NNP CC NNP RRB . A four-decade long conflict between government forces and anti-government insurgent groups , principally the Revolutionary Armed Forces of Colombia ( FARC ) heavily funded by the drug trade , escalated during the 1990s . DT JJ JJ NN IN NN NNS CC JJ JJ NNS , RB DT JJ JJ NNS IN NNP LRB NNP RRB RB VBN IN DT NN NN , VBN IN DT NNS . The insurgents lack the military or popular support necessary to overthrow the government , and violence has been decreasing since about 2002 . DT NNS VBP DT JJ CC JJ NN JJ TO VB DT NN , CC NN VBZ VBN VBG IN IN CD . However , insurgents continue attacks against civilians and large areas of the countryside are under guerrilla influence or are contested by security forces . RB , NNS VBP NNS IN NNS CC JJ NNS IN DT NN VBP IN NN NN CC VBP VBN IN NN NNS . More than 31,000 former paramilitaries had demobilized by the end of 2006 and the United Self Defense Forces of Colombia ( AUC ) as a formal organization had ceased to function . JJR IN CD JJ NNS VBD VBN IN DT NN IN CD CC DT NNP NNP NNP NNP IN NNP LRB NNP RRB IN DT JJ NN VBD VBN TO VB . In the wake of the paramilitary demobilization , emerging criminal groups arose , whose members include some former paramilitaries . IN DT NN IN DT JJ NN , VBG JJ NNS VBD , WP$ NNS VBP DT JJ NNS . The Colombian Government has stepped up efforts to reassert government control throughout the country , and now has a presence in every one of its administrative departments . DT JJ NN VBZ VBN RP NNS TO VB NN NN IN DT NN , CC RB VBZ DT NN IN DT CD IN PRP$ JJ NNS . However , neighboring countries worry about the violence spilling over their borders . RB , VBG NNS VBP IN DT NN NN IN PRP$ NNS . In January 2011 , Colombia assumed a nonpermanent seat on the UN Security Council for the 2011 - 12 term . IN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD : CD NN . DURING the Civil War a Patriot was passing through the State of Maryland with a pass from the President to join Grant 's army and see the fighting . IN DT NNP NNP DT NN VBD VBG IN DT NN IN NNP IN DT NN IN DT NN TO VB NNP POS NN CC VB DT NN . Stopping a day at Annapolis , he visited the shop of a well-known optician and ordered seven powerful telescopes , one for every day in the week . VBG DT NN IN NNP , PRP VBD DT NN IN DT JJ NN CC VBD CD JJ NNS , CD IN DT NN IN DT NN . In recognition of this munificent patronage of the State 's languishing industries , the Governor commissioned him a colonel . IN NN IN DT JJ NN IN DT NNP POS NN NNS , DT NN VBD PRP DT NN . A KANGAROO hopping awkwardly along with some bulky object concealed in her pouch met a Zebra , and desirous of keeping his attention upon himself , said : DT NN VBG RB IN IN DT JJ NN VBN IN PRP$ NN VBD DT NN , CC NN IN VBG PRP$ NN IN PRP , VBD : ' Your costume looks as if you might have come out of the penitentiary . ' `` PRP$ NN VBZ IN IN PRP MD VB VBN IN IN DT JJ . `` ' Appearances are deceitful , ' replied the Zebra , smiling in the consciousness of a more insupportable wit , ' or I should have to think that you had come out of the Legislature . ' `` NNS VBP JJ , `` VBD DT NN , VBG IN DT NN IN DT RBR JJ NN , `` CC PRP MD VB TO VB IN PRP VBD VBN IN IN DT NN . `` THE Dog , as created , had a rigid tail , but after some centuries of a cheerless existence , unappreciated by Man , who made him work for his living , he implored the Creator to endow him with a wag . DT NN , IN VBN , VBD DT JJ NN , CC IN DT NNS IN DT JJ NN , JJ IN NN , WP VBD PRP VB IN PRP$ NN , PRP VBD DT NN TO VB PRP IN DT NN . This being done he was able to dissemble his resentment with a sign of affection , and the earth was his and the fulness thereof . DT VBG VBN PRP VBD JJ TO VB PRP$ NN IN DT NN IN NN , CC DT NN VBD PRP$ CC DT NN RB . Observing this , the Politician ( an animal created later ) petitioned that a wag might be given him too . VBG DT , DT NN LRB DT NN VBN RB RRB VBD IN DT NN MD VB VBN PRP RB . As he was incaudate it was conferred upon his chin , which he now wags with great profit and gratification except when he is at his meals . IN PRP VBD JJ PRP VBD VBN IN PRP$ NN , WDT PRP RB VBZ IN JJ NN CC NN IN WRB PRP VBZ IN PRP$ NNS . The U.S. space agency is making final preparations to launch the first direct space probe to the distant planet of Pluto . DT NNP NN NN VBZ VBG JJ NNS TO VB DT JJ JJ NN NN TO DT JJ NN IN NNP . NASA 's New Horizons probe is scheduled to blast off from Cape Canaveral , Florida , early in the New Year . NNP POS NNP NNP NN VBZ VBN TO VB RP IN NNP NNP , NNP , RB IN DT NNP NNP . If all goes well , the spacecraft - the size of a grand piano and weighing about half a ton ( 454 kilograms ) - will reach Pluto in 10 to 15 years . IN DT VBZ RB , DT NN IN DT NN IN DT JJ NN CC VBG IN PDT DT NN LRB CD NNS RRB : MD VB NNP IN CD CC CD NNS . The $ 650-million mission calls for an extensive study of Pluto and its primary moon , Charon . DT $ JJ NN VBZ IN DT JJ NN IN NNP CC PRP$ JJ NN , NNP . The New Horizons probe will photograph Pluto and gather data about its atmosphere , surface geology and temperature . DT NNP NNP NN MD VB NNP CC VB NNS IN PRP$ NN , NN NN CC NN . After flying past the frozen planet , the spacecraft is to explore a distant part of the solar system known as the Kuiper Belt , an area where scores of Pluto-like objects have been discovered in recent months and years . IN VBG IN DT JJ NN , DT NN VBZ TO VB DT JJ NN IN DT JJ NN VBN IN DT NNP NNP , DT NN WRB NNS IN JJ NNS VBP VBN VBN IN JJ NNS CC NNS . U.S. and Afghan forces have killed a suspected Taleban commander and three of his fighters in southern Afghanistan . NNP CC JJ NNS VBP VBN DT JJ NNP NN CC CD IN PRP$ NNS IN JJ NNP . A U.S. military spokesman says Payenda Mohammed , who was thought to have led about 150 rebels , was killed in a battle in Kandahar province Wednesday . DT NNP JJ NN VBZ NNP NNP , WP VBD VBN TO VB VBN IN CD NNS , VBD VBN IN DT NN IN NNP NN NNP . He was believed responsible for numerous rocket attacks , ambushes and other guerrilla-style assaults . PRP VBD VBN JJ IN JJ NN NNS , NNS CC JJ JJ NNS . At least three other militants were killed and 15 wounded as U.S. warplanes and helicopters rocketed caves along a ridge where they were hiding . IN JJS CD JJ NNS VBD VBN CC CD VBN IN NNP NNS CC NNS VBD NNS IN DT NN WRB PRP VBD VBG . Afghan and U.S. forces have stepped up attacks in recent months to flush out militants and boost security to prevent the Taleban from carrying out threats of subverting next month 's parliamentary polls . JJ CC NNP NNS VBP VBN RP NNS IN JJ NNS TO VB RP NNS CC VB NN TO VB DT NNP IN VBG RP NNS IN VBG JJ NN POS JJ NNS . Final results show the president of Niger , Tandja Mamadou , has won a second five-year term in office . JJ NNS VBP DT NN IN NNP , NNP NNP , VBZ VBN DT JJ JJ NN IN NN . Niger 's electoral commission said Tuesday that President Tandja won 65.5 percent of the vote in the run-off balloting on Saturday . NNP POS JJ NN VBD NNP IN NNP NNP VBD CD NN IN DT NN IN DT JJ NN IN NNP . It says opposition candidate Mahamadou Issoufou received 34.5 percent of the vote . PRP VBZ NN NN NNP NNP VBD CD NN IN DT NN . President Tandja had been heavily favored to win a new term after four opponents who lost in the first round decided to back him . NNP NNP VBD VBN RB VBN TO VB DT JJ NN IN CD NNS WP VBD IN DT JJ NN VBD TO VB PRP . The president is the first elected leader of Niger to complete a five-year term without being assassinated or deposed in a coup . DT NN VBZ DT JJ JJ NN IN NNP TO VB DT JJ NN IN VBG VBN CC VBN IN DT NN . Results from the Niger 's parliamentary elections , also held Sarturday , have not been announced . NNS IN DT NNP POS JJ NNS , RB VBD NNP , VBP RB VBN VBN . The U.S.-led coalition in Afghanistan says its forces have killed at least 24 militants during two separate battles . DT JJ NN IN NNP VBZ PRP$ NNS VBP VBN IN JJS CD NNS IN CD JJ NNS . In a statement Friday , the coalition says Afghan and U.S. forces killed at least 12 militants , after an attack on a coalition base in the Shahidi Hassas district of southern Uruzgan province on Thursday . IN DT NN NNP , DT NN VBZ JJ CC NNP NNS VBD IN JJS CD NNS , IN DT NN IN DT NN NN IN DT NNP NNP NN IN JJ NNP NN IN NNP . Also Thursday , the coalition says its forces killed another 12 militants while on patrol in eastern Paktika province . RB NNP , DT NN VBZ PRP$ NNS VBD DT CD NNS IN IN NN IN JJ NNP NN . U.S. officials say troops came under attack , while looking for militants who were transporting foreign fighters between the two countries . NNP NNS VBP NNS VBD IN NN , IN VBG IN NNS WP VBD VBG JJ NNS IN DT CD NNS . On Thursday , the U.S.-led coalition said its troops killed more than 100 militants during four days of fighting in southern Afghanistan . IN NNP , DT JJ NN VBD PRP$ NNS VBD JJR IN CD NNS IN CD NNS IN VBG IN JJ NNP . Also , officials say three civilians - a woman and two children - were killed late Thursday after German and Afghan forces fired at a car that failed to stop at a checkpoint in the northern province of Kunduz . RB , NNS VBP CD NNS IN DT NN CC CD NNS : VBD VBN JJ NNP IN JJ CC JJ NNS VBD IN DT NN WDT VBD TO VB IN DT NN IN DT JJ NN IN NNP . Police in Pakistan say a suicide car bomber attacked an army checkpost in the country 's northwest , killing four soldiers . NNS IN NNP VBP DT NN NN NN VBD DT NN NN IN DT NN POS JJS , VBG CD NNS . The attack took place Monday in the Khawaza Khela area of the restive Swat Valley . DT NN VBD NN NNP IN DT NNP NNP NN IN DT JJ NNP NNP . Officials say at least three other people were also wounded in the blast . NNS VBP IN JJS CD JJ NNS VBD RB VBN IN DT NN . Militants control large parts of the Swat valley region . NNS VBP JJ NNS IN DT NNP NN NN . Government officials signed a peace agreement in May with militants in Swat to try to end months of fighting that began in late 2007 . NN NNS VBD DT NN NN IN NNP IN NNS IN NNP TO VB TO VB NNS IN VBG DT VBD IN JJ CD . Soon after it was signed , militants resumed burning schools and blowing up barbershops , and the government stepped up anti-insurgent operations . RB IN PRP VBD VBN , NNS VBD VBG NNS CC VBG RP NNS , CC DT NN VBD RP JJ NNS . Pakistani security forces are said to have killed up to 2,000 militants since early August in the Swat district and the Bajaur tribal region on the Afghan border . JJ NN NNS VBP VBN TO VB VBN RP TO CD NNS IN JJ NNP IN DT NNP NN CC DT NNP JJ NN IN DT JJ NN . Syria has expressed ' deep regret ' over an Iraqi statement that Damascus is not taking serious steps to prevent insurgents from crossing into Iraqi territory . NNP VBZ VBN `` JJ NN `` IN DT JJ NN IN NNP VBZ RB VBG JJ NNS TO VB NNS IN VBG IN JJ NN . Iraqi Interior Minister Bayan Jabr Iraqi Interior Minister Bayan Jabr told the Associated Press Sunday that he was not optimistic Damascus would crack down on the insurgents . JJ NNP NNP NNP NNP JJ NNP NNP NNP NNP VBD DT NNP NNP NNP IN PRP VBD RB JJ NNP MD VB RP IN DT NNS . He said he has photographs and addresses of insurgent leaders in Syria but indicated they had not yet been captured . PRP VBD PRP VBZ NNS CC NNS IN JJ NNS IN NNP CC VBD PRP VBD RB RB VBN VBN . Syria 's state-run SANA news agency quotes an unidentified foreign ministry official as saying Mr. Jabr 's interview ' contradicts ' previous agreements with Baghdad . NNP POS JJ NNP NN NN VBZ DT JJ JJ NN NN IN VBG NNP NNP POS NN `` VBZ `` JJ NNS IN NNP . The official added that Syria is committed to good relations with Iraq and to helping stop violence in that country . DT NN VBD IN NNP VBZ VBN TO JJ NNS IN NNP CC TO VBG VB NN IN DT NN . The official was also quoted as saying Syria has deployed what he described as a ' great number ' of soldiers to the border and increased the number of checkpoints . DT NN VBD RB VBN IN VBG NNP VBZ VBN WP PRP VBD IN DT `` JJ NN `` IN NNS TO DT NN CC VBN DT NN IN NNS . A senior Palestinian negotiator says Israel plans to hand over the first of five occupied West Bank cities this week , after the resumption of stalled talks on security . DT JJ JJ NN VBZ NNP VBZ TO VB IN DT NN IN CD JJ NNP NNP NNS DT NN , IN DT NN IN VBN NNS IN NN . Those talks resumed Sunday with generals from each side meeting to discuss Israel 's conditions for handing over the cities . DT NNS VBD NNP IN NNS IN DT NN NN TO VB NNP POS NNS IN VBG IN DT NNS . Palestinian West Bank commander Hajj Ismail Jabber later said they agreed to hand over Tulkarem to Palestinian control this week . JJ NNP NNP NN NNP NNP NNP RB VBD PRP VBD TO VB IN NN TO JJ NN DT NN . The Israeli side confirmed that Tulkarem will be the first to be turned over , but officials did not say when they expect that to happen . DT JJ NN VBD IN NNP MD VB DT JJ TO VB VBN RP , CC NNS VBD RB VB WRB PRP VBP IN TO VB . These withdrawals are part of pledges made by Israel during an Israeli-Palestinian summit early last month . DT NNS VBP NN IN NNS VBN IN NNP IN DT JJ NN RB JJ NN . The two sides resumed talks that were suspended in the wake of a Palestinian suicide bombing that killed five Israelis in Tel Aviv two weeks ago . DT CD NNS VBD NNS WDT VBD VBN IN DT NN IN DT JJ NN NN WDT VBD CD NNS IN NNP NNP CD NNS RB . Indian police say they have arrested a key suspect in the July train bombings that killed nearly 200 people and wounded more than 800 others in Mumbai , formerly known as Bombay . JJ NNS VBP PRP VBP VBN DT JJ NN IN DT NNP NN NNS WDT VBD RB CD NNS CC VBD JJR IN CD NNS IN NNP , RB VBN IN NNP . Police say they arrested Asif Khan , who used the alias Junaid , in the Indian city of Belgaum in Karnataka state Tuesday . NNS VBP PRP VBD NNP NNP , WP VBD DT NN NNP , IN DT JJ NN IN NNP IN NNP NN NNP . They say he is one of the organizers of the attack . PRP VBP PRP VBZ CD IN DT NNS IN DT NN . He is the 16th person to be arrested in connection with the Mumbai blasts , and was scheduled to appear in court Wednesday . PRP VBZ DT JJ NN TO VB VBN IN NN IN DT NNP NNS , CC VBD VBN TO VB IN NN NNP . Indian Prime Minister Manmohan Singh says Saturday 's bombings in New Delhi are linked to foreign elements . JJ JJ NN NNP NNP VBZ NNP POS NNS IN NNP NNP VBP VBN TO JJ NNS . During a phone conversation Monday with Pakistan 's President Pervez Musharraf , he urged Mr. Musharraf to act against terrorism directed at India . IN DT NN NN NNP IN NNP POS NNP NNP NNP , PRP VBD NNP NNP TO VB IN NN VBN IN NNP . Mr. Musharraf said Pakistan stands with India against what he called a ' dastardly terrorist attack . ' NNP NNP VBD NNP VBZ IN NNP IN WP PRP VBD DT `` RB JJ NN . `` The bombings killed almost 60 people and wounded more than 150 others as Hindus prepared for the Diwali festival . DT NNS VBD RB CD NNS CC VBD JJR IN CD NNS IN NNS VBD IN DT NNP NN . Tuesday , marks the height of Diwali , also known as the festival of lights . NNP , VBZ DT NN IN NNP , RB VBN IN DT NN IN NNS . Responsibilty for the attacks has been claimed by the little-known Islamic Revolutionary Front . NN IN DT NNS VBZ VBN VBN IN DT JJ NNP NNP NNP . Indian officials say it has ties to a Kashmiri separatist group outlawed in Pakistan . JJ NNS VBP PRP VBZ NNS TO DT JJ NN NN VBN IN NNP . Pakistani officials say they have no evidence that Pakistani groups were involved in the attack . JJ NNS VBP PRP VBP DT NN IN JJ NNS VBD VBN IN DT NN . U.S. Secretary of State Condoleezza Rice has criticized Russia 's behavior towards Georgia , saying it is adding to tensions in the area . NNP NNP IN NNP NNP NNP VBZ VBN NNP POS NN IN NNP , VBG PRP VBZ VBG TO NNS IN DT NN . As she arrived in Prague Tuesday , Rice noted that the former Soviet republic of Georgia is an independent state , and called on both Russia and Georgia to avoid ' provocative ' actions . IN PRP VBD IN NNP NNP , NNP VBD IN DT JJ JJ NN IN NNP VBZ DT JJ NN , CC VBN IN DT NNP CC NNP TO VB `` JJ `` NNS . U.S. officials have been dismayed by a series of Russian actions involving Georgia 's breakaway regions of Abkhazia and South Ossetia . NNP NNS VBP VBN VBN IN DT NN IN JJ NNS VBG NNP POS JJ NNS IN NNP CC NNP NNP . Meanwhile , Georgian Defense Ministry officials say four Georgian servicemen detained by South Ossetian authorities near the administrative border of the breakaway area earlier Tuesday have been released . RB , JJ NNP NNP NNS VBP CD JJ NNS VBN IN NNP NNP NNS IN DT JJ NN IN DT NN NN JJR NNP VBP VBN VBN . Georgian President Mikhail Saakashvili had threatened action unless they were freed . JJ NNP NNP NNP VBD VBN NN IN PRP VBD VBN . Abkhazia and South Ossetia declared independence from Georgia in the early 1990s , sparking fighting and the dispatch of Russian peacekeepers to the region . NNP CC NNP NNP VBD NN IN NNP IN DT JJ NNS , VBG NN CC DT NN IN JJ NNS TO DT NN . Georgia has vowed to bring the territories back under central government control . NNP VBZ VBN TO VB DT NNS RB IN JJ NN NN . North Korea says the United States has conducted some 200 spy flights over the country this month . NNP NNP VBZ DT NNP NNPS VBZ VBN DT CD NN NNS IN DT NN DT NN . The official Korean Central News Agency said Tuesday the alleged spying shows the U.S. is scared by Pyongyang 's recent nuclear test . DT JJ JJ NNP NNP NNP VBD NNP DT JJ NN VBZ DT NNP VBZ VBN IN NNP POS JJ JJ NN . KCNA said the U.S. has conducted 20 more spy flights this month than in October last year . NNP VBD DT NNP VBZ VBN CD JJR NN NNS DT NN IN IN NNP JJ NN . North Korea shocked the world October 9 by detonating an underground nuclear device . NNP NNP VBD DT NN NNP CD IN VBG DT JJ JJ NN . The country said it had to test the weapon to strengthen its defenses against what it considers U.S. aggression . DT NN VBD PRP VBD TO VB DT NN TO VB PRP$ NNS IN WP PRP VBZ NNP NN . KCNA quotes a military official as saying the spy flights further underscore the need for North Korea to bolster its war deterrent . NNP VBZ DT JJ NN IN VBG DT NN NNS RB VBP DT NN IN NNP NNP TO VB PRP$ NN NN . The U.S. has not yet commented on the report . DT NNP VBZ RB RB VBN IN DT NN . Washington has repeatedly said it has no intention of attacking North Korea and is urging a resumption of stalled multilateral talks aimed at disarming Pyongyang 's nuclear program . NNP VBZ RB VBN PRP VBZ DT NN IN VBG NNP NNP CC VBZ VBG DT NN IN VBN JJ NNS VBN IN VBG NNP POS JJ NN . Outgoing Nigerian President Olusegun Obasanjo has bid farewell to the nation he led for eight years . VBG JJ NNP NNP NNP VBZ VBN JJ TO DT NN PRP VBD IN CD NNS . In a nationally televised address Monday , Mr. Obasanjo gave himself high marks as a civilian ruler , saying that under his leadership , Nigeria became stronger and more united . IN DT RB VBN NN NNP , NNP NNP VBD PRP JJ NNS IN DT JJ NN , VBG IN IN PRP$ NN , NNP VBD JJR CC JJR JJ . He praised his successor , Umaru Yar'Adua , a little-known governor from the far northern state of Katsina , who is set to assume office on Tuesday . PRP VBD PRP$ NN , NNP NNP , DT JJ NN IN DT RB JJ NN IN NNP , WP VBZ VBN TO VB NN IN NNP . Yar'Adua scored a landslide victory in last month 's disputed presidential elections . NNP VBD DT NN NN IN JJ NN POS JJ JJ NNS . International observers said the polls were not credible . JJ NNS VBD DT NNS VBD RB JJ . Monitors reported many instances of vote-rigging and violence . NNS VBD JJ NNS IN NN CC NN . Last week , the opposition filed a lawsuit seeking a court annulment of the polls . JJ NN , DT NN VBD DT NN VBG DT NN NN IN DT NNS . Tuesday 's handover is the first from one civilian administration to another since Nigeria 's independence in 1960 . NNP POS NN VBZ DT JJ IN CD JJ NN TO DT IN NNP POS NN IN CD . Fourteen Muslim men went on trial in the Netherlands Monday , accused of plotting the murder of Dutch politicians . CD NNP NNS VBD IN NN IN DT NNP NNP , VBN IN VBG DT NN IN JJ NNS . Dutch police arrested the men after the murder of filmmaker Theo van Gogh in November of 2004 by Mohammed Bouyeri . JJ NN VBN DT NNS IN DT NN IN NN NNP NNP NNP IN NNP IN CD IN NNP NNP . Bouyeri was sentenced to life in prison earlier this year . NNP VBD VBN TO NN IN NN RBR DT NN . He and most of the other defendants are Dutch-born offspring of North African immigrants . PRP CC JJS IN DT JJ NNS VBP JJ NN IN JJ JJ NNS . After acquittals in other prominent cases , the trial will be a test for new Dutch laws that supporters say should make it easier to convict extremists . IN NNS IN JJ JJ NNS , DT NN MD VB DT NN IN JJ JJ NNS IN NNS VBP MD VB PRP JJR TO VB NNS . The first witness , a woman identified as the former wife of one of the accused , refused to speak in court , but a statement she had given to police earlier was read out . DT JJ NN , DT NN VBN IN DT JJ NN IN CD IN DT VBN , VBD TO VB IN NN , CC DT NN PRP VBD VBN TO NNS RBR VBD VBN RP . The court is also scheduled to hear testimony Monday from an expert on Islamic fundamentalism . DT NN VBZ RB VBN TO VB NN NNP IN DT NN IN NNP NN . Energy officials from India , Iran and Pakistan have failed to reach an agreement on a gas pricing formula for a multi-billion dollar joint pipeline project under consideration . NN NNS IN NNP , NNP CC NNP VBP VBN TO VB DT NN IN DT NN NN NN IN DT JJ NN JJ NN NN IN NN . They met for two days in Islamabad and have agreed to meet again in July in New Delhi . PRP VBD IN CD NNS IN NNP CC VBP VBN TO VB RB IN NNP IN NNP NNP . Iran first proposed the $ 7-billion project in 1996 , but hostilities between India and Pakistan kept it dormant . NNP RB VBD DT $ CD NN IN CD , CC NNS IN NNP CC NNP VBD PRP JJ . Talks have revived as warming relations between the two countries in recent years have reduced India 's fears about the 3,000 - kilometer pipeline 's security in Pakistan . NNS VBP VBN IN NN NNS IN DT CD NNS IN JJ NNS VBP VBN NNP POS NNS IN DT CD IN NN NN POS NN IN NNP . The United States has long opposed the pipeline because its differences with Iran over that country 's nuclear ambitions . DT NNP NNPS VBZ RB VBN DT NN IN PRP$ NNS IN NNP IN DT NN POS JJ NNS . The Ford Motor Company says sales of its products in China are booming . DT NNP NNP NNP VBZ NNS IN PRP$ NNS IN NNP VBP JJ . In a statement Monday Ford says sales rose 46 percent last year to more than 82,000 vehicles - a record . IN DT NN NNP NNP VBZ NNS VBD CD NN JJ NN TO JJR IN CD NNS IN DT NN . If Ford 's affiliated brands - like Mazda - are added to the total , the company sold 2,20,000 vehicles in China last year . IN NNP POS JJ NNS : IN NNP : VBP VBN TO DT NN , DT NN VBD CD NNS IN NNP JJ NN . Ford is the second largest U.S. automaker , and number three in the world after General Motors and Toyota . NNP VBZ DT JJ JJS NNP NN , CC NN CD IN DT NN IN NNP NNPS CC NNP . In China , Ford is outsold by both GM and Volkswagen . IN NNP , NNP VBZ VBN IN DT NNP CC NNP . Officials say four policemen were killed and three seriously injured Monday when their vehicle hit a landmine near Agadez , in northern Niger . NNS VBP CD NNS VBD VBN CC CD RB VBN NNP WRB PRP$ NN VBD DT NN IN NNP , IN JJ NNP . Officials say the landmine was planted by the ethnic Tuareg rebel group , the Niger Movement for Justice . NNS VBP DT NN VBD VBN IN DT JJ NNP NN NN , DT NNP NNP IN NNP . The Niger Movement for Justice , known by its French initials MNJ , came to international attention earlier this year after the rebels launched a number of attacks against government and foreign interests in northern Niger . DT NNP NNP IN NNP , VBN IN PRP$ JJ NNS NNP , VBD TO JJ NN RBR DT NN IN DT NNS VBD DT NN IN NNS IN NN CC JJ NNS IN JJ NNP . A previous Tuareg rebellion broke out in Niger in the early 1990s . DT JJ NNP NN VBD RP IN NNP IN DT JJ NNS . The rebel group contends that Niger 's government has failed to live up to a 1995 peace deal that promised a degree of autonomy for the group . DT NN NN VBZ IN NNP POS NN VBZ VBN TO VB RP TO DT CD NN NN WDT VBD DT NN IN NN IN DT NN . At least 11 members of the military police have died in similar attacks in the last two months . IN JJS CD NNS IN DT JJ NNS VBP VBN IN JJ NNS IN DT JJ CD NNS . The National Guard is dropping hay bales from helicopters over the western U.S. state of Colorado to feed stranded cattle , while officials in surrounding states work to restore power after two powerful snowstorms hit the region in two weeks . DT NNP NNP VBZ VBG JJ NNS IN NNS IN DT JJ NNP NN IN NNP TO VB JJ NNS , IN NNS IN VBG NNS VBP TO VB NN IN CD JJ NNS VBD DT NN IN CD NNS . Guard members began this week to drop hay over snow-crusted pastures where cattle are immobilized in deep drifts . NNP NNS VBD DT NN TO VB NN IN JJ NNS WRB NNS VBP VBN IN JJ NNS . Authorities say they could soon die of starvation or dehydration if not fed . NNS VBP PRP MD RB VB IN NN CC NN IN RB VBN . That would deeply hurt the state 's economy . DT MD RB VB DT NN POS NN . The operation is hampered by the fact that many of the Guard 's larger helicopters are in use in Iraq . DT NN VBZ VBN IN DT NN IN NN IN DT NNP POS JJR NNS VBP IN NN IN NNP . Meanwhile , officials in Colorado , Nebraska , Kansas and Oklahoma are working to restore electricity to tens of thousands of homes and businesses . RB , NNS IN NNP , NNP , NNP CC NNP VBP VBG TO VB NN TO NNS IN NNS IN NNS CC NNS . Emergency workers are searching for people trapped in their homes without food or power . NN NNS VBP VBG IN NNS VBN IN PRP$ NNS IN NN CC NN . Many residents are staying in emergency shelters to keep warm . JJ NNS VBP VBG IN NN NNS TO VB JJ . New U.S. Supreme Court Justice Samuel Alito has cast his first decision on the nation 's highest court , refusing to let the state of Missouri execute a death-row inmate contesting lethal injection . JJ NNP NNP NNP NNP NNP NNP VBZ VBN PRP$ JJ NN IN DT NN POS JJS NN , VBG TO VB DT NN IN NNP VBP DT NN NN VBG JJ NN . Alito broke ranks with the court 's conservatives late Wednesday , siding with the majority in a six-to-three vote rejecting a last-minute request to allow Missouri to execute Michael Taylor . NNP VBD NNS IN DT NN POS NNS JJ NNP , VBG IN DT NN IN DT JJ NN VBG DT JJ NN TO VB NNP TO VB NNP NNP . Chief Justice John Roberts and Justices Antonin Scalia and Clarence Thomas supported allowing the execution to proceed . NNP NNP NNP NNP CC NNS NNP NNP CC NNP NNP VBD VBG DT NN TO VB . Taylor pleaded guilty to kidnapping , raping and murdering a 15-year-old girl in 1989 . NNP VBD JJ TO NN , VBG CC VBG DT JJ NN IN CD . He has challenged his death sentence by lethal injection as cruel and unusual punishment . PRP VBZ VBN PRP$ NN NN IN JJ NN IN JJ CC JJ NN . The Philippine military has placed the country 's troubled south under ' extreme alert ' after a string of deadly bombings . DT JJ NN VBZ VBN DT NN POS JJ NN IN `` JJ NN `` IN DT NN IN JJ NNS . Military chief General Hermogenes Esperon said Thursday , government troops and police have intensified security patrols because of the possibility of more terrorist attacks . NNP NN NNP NNP NNP VBD NNP , NN NNS CC NNS VBP VBN NN NNS IN IN DT NN IN JJR JJ NNS . He noted specific concerns about operations by the local militant group Abu Sayyaf and Jemaah Islamiyah , a Southeast Asian terrorist network linked to al-Qaida . PRP VBD JJ NNS IN NNS IN DT JJ JJ NN NNP NNP CC NNP NNP , DT JJ JJ JJ NN VBN TO NNP . Three bombs ripped through the southern island of Mindanao Tuesday and Wednesday , killing at least six people and wounding 29 . CD NNS VBN IN DT JJ NN IN NNP NNP CC NNP , VBG IN JJS CD NNS CC VBG CD . Philippine forces have been fighting Abu Sayyaf on the southern island of Jolo . JJ NNS VBP VBN VBG NNP NNP IN DT JJ NN IN NNP . The militants are believed to be aiding Dulmatin and Umar Patek , two key members of Jemaah Islamiyah wanted in connection with the 2002 bombings in Bali , Indonesia . DT NNS VBP VBN TO VB VBG NNP CC NNP NNP , CD JJ NNS IN NNP NNP VBN IN NN IN DT CD NNS IN NNP , NNP . Brazil says it is sending a team of investigators to Britain next week to look into the killing of a Brazilian man who was fatally shot in the London subway last month after being mistaken for a terrorist . NNP VBZ PRP VBZ VBG DT NN IN NNS TO NNP JJ NN TO VB IN DT NN IN DT JJ NN WP VBD RB VBN IN DT NNP NN JJ NN IN VBG VBN IN DT JJ . The announcement Friday came some 24 hours after the head of the independent British panel investigating the death of Jean-Charles de Menezes said London Police Commissioner Ian Blair tried to stop the probe . DT NN NNP VBD DT CD NNS IN DT NN IN DT JJ JJ NN VBG DT NN IN NNP NNP NNP VBD NNP NNP NNP NNP NNP VBD TO VB DT NN . Police shot and killed Mr. de Menezes on a London subway July 22 saying he was acting suspiciously and ignored orders to stop running . NNS VBD CC VBD NNP NNP NNP IN DT NNP NN NNP CD VBG PRP VBD VBG RB CC VBD NNS TO VB VBG . But Britain 's ITV television , citing security video and witnesses , said Mr. de Menezes was behaving normally . CC NNP POS NNP NN , VBG NN NN CC NNS , VBD NNP NNP NNP VBD VBG RB . Commissioner Blair has rejected calls by Mr. de Menezes ' lawyers and family for his resignation and denied allegations of a cover-up . NN NNP VBZ VBN NNS IN NNP NNP NNP POS NNS CC NN IN PRP$ NN CC VBD NNS IN DT NN . Police in Nepal have detained some 185 Tibetan exiles who demonstrated outside the Chinese embassy in the capital , Kathmandu . NNS IN NNP VBP VBN DT CD JJ NNS WP VBD IN DT JJ NN IN DT NN , NNP . Sunday 's arrests come after Saturday 's detention of 450 Tibetans who held a similar demonstration . NNP POS NNS VBP IN NNP POS NN IN CD NNS WP VBD DT JJ NN . The protests are the latest in the almost-daily demonstrations by Tibetan exiles in Kathmandu since March , when deadly clashes broke out between protesters and Chinese authorities in their homeland , Tibet . DT NNS VBP DT JJS IN DT JJ NNS IN JJ NNS IN NNP IN NNP , WRB JJ NNS VBD RP IN NNS CC JJ NNS IN PRP$ NN , NNP . They temporarily suspended demonstrations in Nepal after the earthquake in China , but recently have restarted protests . PRP RB VBD NNS IN NNP IN DT NN IN NNP , CC RB VBP VBN NNS . Nepal , which regards Tibet as part of China , is home to some 20,000 Tibetan refugees . NNP , WDT VBZ NNP IN NN IN NNP , VBZ NN TO DT CD JJ NNS . China and Japan say the six-nation North Korean nuclear disarmament talks will resume next week in Beijing as scheduled . NNP CC NNP VBP DT JJ JJ JJ JJ NN NNS MD VB JJ NN IN NNP IN VBN . China 's chief negotiator , Vice Foreign Minister Wu Dawei , met with his Japanese counterpart Kenichiro Sasae Wednesday , in Tokyo . NNP POS NN NN , NNP NNP NNP NNP NNP , VBD IN PRP$ JJ NN NNP NNP NNP , IN NNP . The diplomats discussed Pyongyang 's nuclear weapons program and North Korea 's relations with Japan . DT NNS VBD NNP POS JJ NNS NN CC NNP NNP POS NNS IN NNP . Tokyo says it wants to include the issue of the kidnapping of several Japanese citizens by North Korea in 1970s and `80s within the framework of the nuclear talks . NNP VBZ PRP VBZ TO VB DT NN IN DT NN IN JJ JJ NNS IN NNP NNP IN NNS CC CD IN DT NN IN DT JJ NNS . Pyongyang returned to the negotiations earlier this month after a one-year boycott . NNP VBD TO DT NNS RBR DT NN IN DT JJ NN . The talks were recessed earlier this month after disagreements surfaced over North Korea 's insistence to retain a civilian nuclear program . DT NNS VBD VBN RBR DT NN IN NNS VBD IN NNP NNP POS NN TO VB DT JJ JJ NN . The chief U.S. negotiator in the talks Christopher Hill , says the issue is not a ' show stopper ' that could potentially derail the talks . DT JJ NNP NN IN DT NNS NNP NNP , VBZ DT NN VBZ RB DT `` NN NN `` WDT MD RB VB DT NNS . Media reports from Tehran quote Iranian officials as saying Iranian-American journalist Roxana Saberi will be released within days . NNS NNS IN NNP VBP JJ NNS IN VBG JJ NN NNP NNP MD VB VBN IN NNS . The reports indicate that Iranian officials have completed their investigation into her case . DT NNS VBP IN JJ NNS VBP VBN PRP$ NN IN PRP$ NN . Saberi 's family in the U.S. alerted media to her detention last week . NNP POS NN IN DT NNP VBD NNS TO PRP$ NN JJ NN . Iranian officials then confirmed the 31-year-old journalist is being held in Tehran 's infamous Evin prison , saying that she worked illegally in the country after her press credentials had been revoked . JJ NNS RB VBD DT JJ NN VBZ VBG VBN IN NNP POS JJ NNP NN , VBG IN PRP VBD RB IN DT NN IN PRP$ NN NNS VBD VBN VBN . U.S. Secretary of State Hillary Clinton Thursday called on Iran to release Saberi , who has been in prison for the past month . NNP NNP IN NNP NNP NNP NNP VBD IN NNP TO VB NNP , WP VBZ VBN IN NN IN DT JJ NN . Clinton added that the United States is working through Swiss officials to request information on the journalist . NNP VBD IN DT NNP NNPS VBZ VBG IN JJ NNS TO VB NN IN DT NN . The French parliament has thrown out a bill that would have allowed farmers to grow genetically modified crops . DT JJ NN VBZ VBN RP DT NN WDT MD VB VBN NNS TO VB RB VBN NNS . Lawmakers narrowly rejected the bill Tuesday 136 to 135 . NNS RB VBD DT NN NNP CD TO CD . Protesters against the bill , some wearing hats shaped like corn cobs , cheered when the results were announced . NNS IN DT NN , DT VBG NNS VBD IN NN NNS , VBD WRB DT NNS VBD VBN . French Prime Minister Francois Fillon says he plans to submit a new bill to parliament . JJ JJ NN NNP NNP VBZ PRP VBZ TO VB DT JJ NN TO NN . Genetically modified crops have had their DNA engineered to make them resistant to disease and pests . RB VBN NNS VBP VBN PRP$ NN VBN TO VB PRP JJ TO NN CC NNS . Surveys show many French oppose such foods , saying their safety is still not assured . NNS VBP JJ NNS VBP JJ NNS , VBG PRP$ NN VBZ RB RB VBN . In February , France imposed a temporary ban on genetically modified corn approved for sale by the European Union . IN NNP , NNP VBD DT JJ NN IN RB VBN NN VBN IN NN IN DT NNP NNP . The corn is produced by the U.S. company Monsanto . DT NN VBZ VBN IN DT NNP NN NNP . The European Union 's top security official says erecting new walls will not hold back the flood of African immigrants seeking to enter EU countries . DT NNP NNP POS JJ NN NN VBZ VBG JJ NNS MD RB VB RP DT NN IN JJ NNS VBG TO VB NNP NNS . EU Security Commissioner Franco Frattini told EU Justice and interior ministers meeting in Luxembourg that 30,000 would-be migrants are waiting in Algeria and Morocco to enter their countries . NNP NNP NNP NNP NNP VBD NNP NNP CC JJ NNS NN IN NNP IN CD JJ NNS VBP VBG IN NNP CC NNP TO VB PRP$ NNS . He was referring to Spain 's North African enclaves of Melilla and Ceuta , where more than one thousand migrants have scaled razor-wire fences to enter Europe since August . PRP VBD VBG TO NNP POS JJ JJ NNS IN NNP CC NNP , WRB JJR IN CD CD NNS VBP VBN JJ NNS TO VB NNP IN NNP . At least 14 have died during the attempts . IN JJS CD VBP VBN IN DT NNS . Participants at the talks called for debt relief and economic support , as well as closer cooperation with Sub-Saharan African states to address the immigrant issue . NNS IN DT NNS VBD IN NN NN CC JJ NN , RB RB IN JJR NN IN JJ JJ NNS TO VB DT JJ NN . African Union President Alpha Oumar Konare , who attended the meeting , called for closer coordination in efforts to deal with the crisis . NNP NNP NNP NNP NNP NNP , WP VBD DT NN , VBN IN JJR NN IN NNS TO VB IN DT NN . U.S. Homeland Security Secretary Michael Chertoff has rejected charges that he was ' detached ' from the disastrous flooding of Hurricane Katrina . NNP NNP NNP NNP NNP NNP VBZ VBN NNS IN PRP VBD `` VBN `` IN DT JJ NN IN NNP NNP . Chertoff told a Senate panel Wednesday that officials were aware of the danger ahead of time , but said his department was simply overwhelmed by the catastrophe . NNP VBD DT NNP NN NNP IN NNS VBD JJ IN DT NN RB IN NN , CC VBD PRP$ NN VBD RB VBN IN DT NN . The committee chairwoman , Republican Senator Susan Colllins , said Chertoff seemed strangely detached in the aftermath of the storm that devastated New Orleans and other areas of the U.S. Gulf Coast last August . DT NN NN , NNP NNP NNP NNP , VBD NNP VBD RB VBN IN DT NN IN DT NN WDT VBD NNP NNP CC JJ NNS IN DT NNP NNP NNP JJ NNP . A congressional report due out later today strongly criticizes the Bush administration 's response to Hurricane Katrina . DT JJ NN RB RB RB NN RB VBZ DT NNP NN POS NN TO NNP NNP . Excerpts say the government had a clear indication of how bad the damage to New Orleans would be , but failed to act . NNS VBP DT NN VBD DT JJ NN IN WRB JJ DT NN TO NNP NNP MD VB , CC VBD TO VB . The report says Chertoff enacted emergency response programs late or ineffectively , and President Bush failed to use his power to cut through government bureaucracy . DT NN VBZ NNP VBD NN NN NNS JJ CC RB , CC NNP NNP VBD TO VB PRP$ NN TO VB IN NN NN . The U.S. government has chartered three of Carnival Cruise lines ships for the next six months to provide temporary housing for victims of Hurricane Katrina . DT NNP NN VBZ VBN CD IN NNP NNP NNS NNS IN DT JJ CD NNS TO VB JJ NN IN NNS IN NNP NNP . Carnival officials say the ships will be able to provide shelter for as many as 7,000 people displaced by Katrina . NNP NNS VBP DT NNS MD VB JJ TO VB NN IN RB JJ IN CD NNS VBN IN NNP . Two of the cruise liners will be based in Galveston , Texas and the other will likely be docked in Mobile , Alabama . CD IN DT NN NNS MD VB VBN IN NNP , NNP CC DT NN MD RB VB VBN IN NNP , NNP . Indian officials say a bomb blast killed eight people and wounded at least 12 others Sunday , a day after the device was discovered in the eastern state of Bihar . JJ NNS VBP DT NN NN VBD CD NNS CC VBD IN JJS CD NNS NNP , DT NN IN DT NN VBD VBN IN DT JJ NN IN NNP . Police in the Aurangabad district say the bomb was found Saturday but could not be immediately defused . NNS IN DT NNP NN VBP DT NN VBD VBN NNP CC MD RB VB RB VBN . Local officials believe the bomb was planted by Maoist rebels who had called for a boycott of Saturday 's state legislative elections . JJ NNS VBP DT NN VBD VBN IN NNP NNS WP VBD VBN IN DT NN IN NNP POS NN JJ NNS . A Mexican police chief has been ambushed and shot dead in the border city of Nuevo Laredo . DT JJ NN NN VBZ VBN VBN CC VBN JJ IN DT NN NN IN NNP NNP . Authorities say Commander Victor Berrones died Tuesday when gunmen attacked the vehicle in which he was traveling . NNS VBP NNP NNP NNP VBD NNP WRB NNS VBD DT NN IN WDT PRP VBD VBG . Another officer with him was also killed , along with at least one of the suspected assailants . DT NN IN PRP VBD RB VBN , IN IN IN JJS CD IN DT JJ NNS . The incident took place on a highway leading to the airport in Nuevo Laredo . DT NN VBD NN IN DT NN VBG TO DT NN IN NNP NNP . Authorities recovered at least 100 bullet casings as well as rifles at the scene . NNS VBD IN JJS CD NN NNS RB RB IN NNS IN DT NN . Nuevo Laredo has been plagued for years by violence between gangs fighting for control of lucrative drug smuggling routes into the U.S. NNP NNP VBZ VBN VBN IN NNS IN NN IN NNS VBG IN NN IN JJ NN VBG NNS IN DT NNP Thai police say a Lao couple has been found beheaded in southern Thailand , the latest victims of suspected Muslim separatist violence . JJ NNS VBP DT JJ NN VBZ VBN VBN JJ IN JJ NNP , DT JJS NNS IN JJ NNP NN NN . The bodies of the young migrant workers were found Saturday in Pattani province , one of the three Muslim-dominated southern provinces where more than 700 people have died in violence since January of 2004 . DT NNS IN DT JJ JJ NNS VBD VBN NNP IN NNP NN , CD IN DT CD JJ JJ NNS WRB JJR IN CD NNS VBP VBN IN NN IN NNP IN CD . The couple left Laos about two months ago to work on a Thai chicken farm . DT NN VBD NNP IN CD NNS RB TO VB IN DT JJ NN NN . Muslim militants have carried out almost daily bombings , murders and arson in the provinces of Yala , Pattani and Narathiwat . NNP NNS VBP VBN RP RB JJ NNS , NNS CC NN IN DT NNS IN NNP , NNP CC NNP . Southern Thai Muslims have complained for years of discrimination by the central government , particularly in jobs and education . NNP JJ NNPS VBP VBN IN NNS IN NN IN DT JJ NN , RB IN NNS CC NN . China says a gas explosion in an illegal coal mine in the country 's north has killed 20 people . NNP VBZ DT NN NN IN DT JJ NN NN IN DT NN POS NN VBZ VBN CD NNS . The official Xinhua news agency said Monday that the blast occurred Sunday evening in Shanxi province , while miners were trying to mine coal secretly . DT JJ NNP NN NN VBD NNP IN DT NN VBD NNP NN IN NNP NN , IN NNS VBD VBG TO VB NN RB . Xinhua gave no further details . NNP VBD DT JJ NNS . China 's mining industry is the most dangerous in the world , with numerous fires , floods and other disasters every year , despite repeated government promises to improve safety . NNP POS NN NN VBZ DT RBS JJ IN DT NN , IN JJ NNS , NNS CC JJ NNS DT NN , IN JJ NN NNS TO VB NN . Many of the accidents are in small , illegal mines , where safety procedures are often ignored . NN IN DT NNS VBP IN JJ , JJ NNS , WRB NN NNS VBP RB VBN . An average of 13 Chinese workers die every day in mining accidents . DT NN IN CD JJ NNS VBP DT NN IN NN NNS . Pope Benedict XVI returned to Rome Monday , after his six-day trip to the United States . NNP NNP NNP VBD TO NNP NNP , IN PRP$ JJ NN TO DT NNP NNPS . The pope 's U.S. visit included a meeting with President Bush , outdoor Masses , and a visit to one of the sites attacked on September 11 , 2001 . DT NN POS NNP NN VBD DT NN IN NNP NNP , JJ NNS , CC DT NN TO CD IN DT NNS VBN IN NNP CD , CD . During his trip , the pope repeatedly referred to the sexual abuse scandal that has wracked the U.S. church . IN PRP$ NN , DT NN RB VBD TO DT JJ NN NN WDT VBZ VBN DT NNP NN . He had an unprecedented meeting with victims of abusive priests . PRP VBD DT JJ NN IN NNS IN JJ NNS . Benedict celebrated Mass Sunday at a New York City baseball stadium packed with 57,000 worshippers . NNP VBD NNP NNP IN DT NNP NNP NNP NN NN VBN IN CD NNS . The pope was met with loud cheers when he arrived at Yankee Stadium . DT NN VBD VBN IN JJ NNS WRB PRP VBD IN NNP NNP . Some in the crowd waved handkerchiefs in the Vatican 's colors - white and yellow . DT IN DT NN VBD NNS IN DT NNP POS NNS IN NN CC NN . A Hungarian government spokesman says the deadly strain of bird flu virus has been found in the southern part of Hungary . DT JJ NN NN VBZ DT JJ NN IN NN NN NN VBZ VBN VBN IN DT JJ NN IN NNP . Spokesman Andras Batiz said Tuesday three wild swans found last week have tested positive for the H5N1 virus . NN NNP NNP VBD NNP CD JJ NNS VBN JJ NN VBP VBN JJ IN DT NNP NN . German veterinary officials Tuesday confirmed 22 new cases of flu in birds on the island of Ruegen , bringing the total in the country to 103 . JJ JJ NNS NNP VBD CD JJ NNS IN NN IN NNS IN DT NN IN NNP , VBG DT NN IN DT NN TO CD . Croatia has confirmed the H5N1 virus in a wild swan found dead last week . NNP VBZ VBN DT NNP NN IN DT JJ NN VBN JJ JJ NN . Tuesday , France and the Netherlands petitioned European Union animal health experts to allow them to vaccinate their poultry . NNP , NNP CC DT NNP JJ NNP NNP NN NN NNS TO VB PRP TO VB PRP$ NN . However , after a day of debate , the experts failed to reach agreement but decided to continue the discussion Wednesday . RB , IN DT NN IN NN , DT NNS VBD TO VB NN CC VBD TO VB DT NN NNP . Bird flu has killed more than 90 people since 2003 in Asia . NN NN VBZ VBN JJR IN CD NNS IN CD IN NNP . Long before the Olympic games in Beijing dazzled the world , China had generated interest among filmmakers . RB IN DT NNP NNS IN NNP VBD DT NN , NNP VBD VBN NN IN NNS . One of those filmmakers is Sue Williams , who has produced a number of documentaries about China in the last two decades . CD IN DT NNS VBZ NNP NNP , WP VBZ VBN DT NN IN NNS IN NNP IN DT JJ CD NNS . Her latest work ' Young & Restless in China ' has been broadcast on Frontline , a program which airs on PBS , an American television network . PRP$ JJS NN `` NNP CC NNP IN NNP `` VBZ VBN VBN IN NNP , DT NN WDT VBZ IN NNP , DT JJ NN NN . VOA 's Yi Suli talked recently with Sue Williams about her interest in China . NNP POS NNP NNP VBD RB IN NNP NNP IN PRP$ NN IN NNP . Elaine Lu narrates . NNP NNP VBZ . The Lebanese army says it is closing in on militants inside a Palestinian refugee camp in northern Lebanon . DT JJ NN VBZ PRP VBZ VBG RP IN NNS IN DT JJ NN NN IN JJ NNP . Lebanese troops bombarded Islamic militant positions Saturday and the Fatah al-Islam militants responded with artillery and rocket fire . JJ NNS VBD JJ JJ NNS NNP CC DT NNP NNP NNS VBD IN NN CC NN NN . Military sources say militants launched eight Katyusha rockets at positions outside the Nahr el-Bared camp , near the city of Tripoli . JJ NNS VBP NNS VBD CD NNP NNS IN NNS IN DT NNP JJ NN , IN DT NN IN NNP . No military casualties were confirmed from today 's violence . DT JJ NNS VBD VBN IN NN POS NN . But military officials say a soldier who was wounded in clashes Friday died today . CC JJ NNS VBP DT NN WP VBD VBN IN NNS NNP VBD NN . At least 11 soldiers have been killed in fighting since Thursday . IN JJS CD NNS VBP VBN VBN IN VBG IN NNP . More than 170 people , including at least 96 Lebanese soldiers , have been killed since the standoff began May 20 . JJR IN CD NNS , VBG IN JJS CD JJ NNS , VBP VBN VBN IN DT NN VBD NNP CD . Nearly all of the Palestinian refugees living in the camp have fled . RB DT IN DT JJ NNS VBG IN DT NN VBP VBN . Last month , Lebanese officials claimed victory in the fighting , but daily firefights have continued since then . JJ NN , JJ NNS VBD NN IN DT NN , CC JJ NNS VBP VBN IN RB . An Indian army spokesman says troops have shot dead a top rebel leader in Kashmir . DT JJ NN NN VBZ NNS VBP VBN RB DT JJ NN NN IN NNP . The spokesman said Saturday the militant , identified simply as Saad , was a local administrator and financial controller of the Lashkar-e-Toiba group . DT NN VBD NNP DT NN , VBN RB IN NNP , VBD DT JJ NN CC JJ NN IN DT NNP NN . Lashkar has not commented on the army statement . NNP VBZ RB VBN IN DT NN NN . Indian authorities have blamed the Pakistan-based group for a series of attacks in the mountainous region . JJ NNS VBP VBN DT JJ NN IN DT NN IN NNS IN DT JJ NN . Both India and Pakistan claim ownership of Kashmir . DT NNP CC NNP VBP NN IN NNP . The region is suffering from a 17-year insurgency that has taken more than 45,000 lives . DT NN VBZ VBG IN DT JJ NN WDT VBZ VBN JJR IN CD NNS . Various rebel groups are fighting for independence from New Delhi 's control or a merger with Pakistan . JJ NN NNS VBP VBG IN NN IN NNP NNP POS NN CC DT NN IN NNP . The former chief of Russia 's giant Yukos oil company says he has transferred his majority stake in the Group Menatep holding company to a fellow shareholder . DT JJ NN IN NNP POS JJ NNP NN NN VBZ PRP VBZ VBN PRP$ NN NN IN DT NNP NNP VBG NN TO DT JJ NN . The lawyer for Mikhail Khodorkovsky says the transaction was made after December 's government-ordered auction of the main Yukos production unit Yuganskneftegaz . DT NN IN NNP NNP VBZ DT NN VBD VBN IN NNP POS JJ NN IN DT JJ NNP NN NN NNP . Mr. Khodorkovsky transferred the 60 percent stake in Group Menatep to Leonid Nevzlin , who is wanted in Russia on charges of a role in several murders . NNP NNP VBD DT CD NN NN IN NNP NNP TO NNP NNP , WP VBZ VBN IN NNP IN NNS IN DT NN IN JJ NNS . He is said to be living in exile in Israel . PRP VBZ VBN TO VB VBG IN NN IN NNP . Yukos has been the focus of an extensive government investigation . NNP VBZ VBN DT NN IN DT JJ NN NN . Russian officials say the company owes billions of dollars in back taxes . JJ NNS VBP DT NN VBZ NNS IN NNS IN JJ NNS . Mr. Khodorkovsky is in jail on trial for tax evasion and fraud . NNP NNP VBZ IN NN IN NN IN NN NN CC NN . Critics say the actions against him and his former company are retaliation for his support for the political opposition . NNS VBP DT NNS IN PRP CC PRP$ JJ NN VBP NN IN PRP$ NN IN DT JJ NN . Kremlin officials deny this NNP NNS VBP DT Israeli forces have handed over control of some checkpoints around the town of Jericho to Palestinian security forces , but a last-minute legal hitch apparently has stalled the formal transfer . JJ NNS VBP VBN RP NN IN DT NNS IN DT NN IN NNP TO JJ NN NNS , CC DT JJ JJ NN RB VBZ VBN DT JJ NN . Officials at the handover said a dispute arose Wednesday over several documents that needed to be signed . NNS IN DT NN VBD DT NN VBD NNP IN JJ NNS WDT VBD TO VB VBN . It is not clear when that situation will be resolved . PRP VBZ RB JJ WRB DT NN MD VB VBN . Israeli forces have dismantled one roadblock and Palestinian forces have taken up positions inside the town . JJ NNS VBP VBN CD NN CC JJ NNS VBP VBN RP NNS IN DT NN . Two other checkpoints will remain in place for a one-month trial period to test the Palestinians ' ability to ensure calm . CD JJ NNS MD VB IN NN IN DT JJ NN NN TO VB DT NNS POS NN TO VB NN . Jericho is the first of five towns - Tulkarem , Qalqiliya , Ramallah , Bethlehem - that Israel plans to turn over to Palestinian control . NNP VBZ DT NN IN CD NNS IN NNP , NNP , NNP , NNP : IN NNP VBZ TO VB RP TO JJ NN . Meanwhile , in Cairo , Egyptian and Palestinian officials and Palestinian militant leaders are discussing a proposed one-year halt to Palestinian attacks on Israeli targets . RB , IN NNP , JJ CC JJ NNS CC JJ JJ NNS VBP VBG DT VBN JJ NN TO JJ NNS IN JJ NNS . Iran 's chief nuclear negotiator says Russia 's proposal to carry out sensitive nuclear fuel work outside Iran is not sufficient for the Islamic country 's energy needs . NNP POS JJ JJ NN VBZ NNP POS NN TO VB RP JJ JJ NN NN IN NNP VBZ RB JJ IN DT NNP NN POS NN NNS . Ali Larijani , secretary of Iran 's Supreme National Security Council , told reporters Friday in Tehran the plan can be considered as part of a package , but that alone it is insufficient . NNP NNP , NN IN NNP POS NNP NNP NNP NNP , VBD NNS NNP IN NNP DT NN MD VB VBN IN NN IN DT NN , CC IN RB PRP VBZ JJ . Moscow 's idea to have Iran enrich uranium in facilities in Russia , where the work can be closely monitored , is seen as a way out of a growing crisis over Tehran 's nuclear ambitions . NNP POS NN TO VB NNP NNP NN IN NNS IN NNP , WRB DT NN MD VB RB VBN , VBZ VBN IN DT NN IN IN DT VBG NN IN NNP POS JJ NNS . It has been backed by the United States , China and the European Union . PRP VBZ VBN VBN IN DT NNP NNPS , NNP CC DT NNP NNP . White House spokesman Scott McClellan said Friday Iran ' appears to be playing more games with the international community ' in its shifting positions on the Russian proposal . NNP NNP NN NNP NNP VBD NNP NNP `` VBZ TO VB VBG JJR NNS IN DT JJ NN `` IN PRP$ VBG NNS IN DT JJ NN . Israel 's Likud Party chairman Benjamin Netanyahu says his party 's remaining Cabinet ministers will resign from Prime Minister Ariel Sharon 's government on Sunday . NNP POS NNP NNP NN NNP NNP VBZ PRP$ NN POS VBG NNP NNS MD VB IN NNP NNP NNP NNP POS NN IN NNP . Mr. Netanyahu announced Tuesday morning that Foreign Minister Silvan Shalom and three other Likud ministers will quit the government at the next weekly Cabinet meeting . NNP NNP VBD NNP NN IN NNP NNP NNP NNP CC CD JJ NNP NNS MD VB DT NN IN DT JJ JJ NNP NN . Despite Likud 's departure , Mr. Sharon 's caretaker government is expected to remain in office until elections later this year . IN NNP POS NN , NNP NNP POS NN NN VBZ VBN TO VB IN NN IN NNS RB DT NN . Mr. Netanyahu was elected to lead Likud last month , after Mr. Sharon left the party . NNP NNP VBD VBN TO VB NNP JJ NN , IN NNP NNP VBD DT NN . The prime minister has faced strong opposition from right-wing Likud members over his decision to withdraw from the Gaza Strip last year . DT JJ NN VBZ VBN JJ NN IN JJ NNP NNS IN PRP$ NN TO VB IN DT NNP NNP JJ NN . Shortly before the party leadership election , Mr. Netanyahu had pledged all Likud ministers would leave the Sharon government as quickly as possible . RB IN DT NN NN NN , NNP NNP VBD VBN DT NNP NNS MD VB DT NNP NN RB RB IN JJ . Mr. Sharon has formed a new party , Kadima , to contest the elections on March 28 . NNP NNP VBZ VBN DT JJ NN , NNP , TO NN DT NNS IN NNP CD . The United Nations says peacekeepers have launched a major military operation in eastern Congo , where militiamen killed nine peacekeepers last month . DT NNP NNP VBZ NNS VBP VBN DT JJ JJ NN IN JJ NNP , WRB NNS VBD CD NNS JJ NN . U.N. officials said Friday at least 500 peacekeepers are involved in the operation in Congo 's troubled northeastern Ituri region . NNP NNS VBD NNP IN JJS CD NNS VBP VBN IN DT NN IN NNP POS JJ JJ NNP NN . A U.N. military source told Reuters news agency the troops are trying to catch the militiamen , believed to be ethnic Lendu fighters , who are suspected of ambushing the Bangladeshi peacekeepers . DT NNP JJ NN VBD NNP NN NN DT NNS VBP VBG TO VB DT NNS , VBN TO VB JJ NNP NNS , WP VBP VBN IN VBG DT JJ NNS . Earlier this month , U.N. soldiers killed at least 50 militiamen in Ituri province . RBR DT NN , NNP NNS VBD IN JJS CD NNS IN NNP NN . That battle was the most serious involving the U.N. Congo mission since it began deploying in 1999 . DT NN VBD DT RBS JJ VBG DT NNP NNP NN IN PRP VBD VBG IN CD . The United Nations has been under fire for failing to stop ongoing ethnic violence in Ituri . DT NNP NNP VBZ VBN IN NN IN VBG TO VB JJ JJ NN IN NNP . This month , the mission pledged to step up its operations . DT NN , DT NN VBD TO VB RP PRP$ NNS . A strong earthquake rocked Indonesia Friday , even as recovery efforts continued from last month 's devastating quake there . DT JJ NN VBD NNP NNP , RB IN NN NNS VBD IN JJ NN POS JJ NN RB . The earthquake made buildings sway in the capital Jakarta and caused panic in some villages , but there were no immediate reports of injuries . DT NN VBD NNS VB IN DT NN NNP CC VBD NN IN DT NNS , CC EX VBD DT JJ NNS IN NNS . Officials said the 6.4 magnitude quake struck in the Sunda Strait , off the western coast of Java island . NNS VBD DT CD NN NN VBD IN DT NNP NNP , IN DT JJ NN IN NNP NN . A 7.6 magnitude earthquake struck West Sumatra September 30 - killing at least 1,000 people , collapsing buildings and triggering landslides . DT CD NN NN VBD NNP NNP NNP CD : VBG IN JJS CD NNS , VBG NNS CC VBG NNS . Indonesia frequently experiences earthquakes because it sits on an arc of volcanos and fault lines encircling the Pacific Basin . NNP RB VBZ NNS IN PRP VBZ IN DT NN IN NNS CC NN NNS VBG DT NNP NNP . The family of former French prime minister and prominent economist Raymond Barre says he has died at the age of 83 . DT NN IN JJ JJ JJ NN CC JJ NN NNP NNP VBZ PRP VBZ VBN IN DT NN IN CD . Relatives said Barre died Saturday at the Val-de-Grace hospital in Paris , where he had been hospitalized since April with heart problems . NNS VBD NNP VBD NNP IN DT NNP NN IN NNP , WRB PRP VBD VBN VBN IN NNP IN NN NNS . Mr. Barre served in the Industry Ministry from 1959 through 1962 during President Charles de Gaule 's administration . NNP NNP VBD IN DT NNP NNP IN CD IN CD IN NNP NNP NNP NNP POS NN . He was prime minister of France from 1976 through 1981 , and also held the posts of vice president of the European Union , French economics minister and mayor of Lyon . PRP VBD JJ NN IN NNP IN CD IN CD , CC RB VBD DT NNS IN NN NN IN DT NNP NNP , JJ NNS NN CC NN IN NNP . He retired from politics in 2002 . PRP VBD IN NNS IN CD . Iraq 's prime minister says he is prepared to present his national reconciliation plan to the Iraqi parliament as violence continues elsewhere in the country . NNP POS JJ NN VBZ PRP VBZ VBN TO VB PRP$ JJ NN NN TO DT JJ NN IN NN VBZ RB IN DT NN . Iraqi police said a roadside bomb killed a local intelligence chief and his two guards in the northern city of Kirkuk Saturday . JJ NNS VBD DT NN NN VBD DT JJ NN NN CC PRP$ CD NNS IN DT JJ NN IN NNP NNP . In another development , the U.S. military says an American soldier was killed Saturday in a bomb attack in central Baghdad . IN DT NN , DT NNP NN VBZ DT JJ NN VBD VBN NNP IN DT NN NN IN JJ NNP . North of the capital , in Tikrit , protests erupted after U.S. forces detained a top Sunni religious leader and at least two of his sons . NNP IN DT NN , IN NNP , NNS VBD IN NNP NNS VBD DT JJ NNP JJ NN CC IN JJS CD IN PRP$ NNS . Sheikh Jamal Abdel Karim al-Dabaan and his sons were released several hours later . NNP NNP NNP NNP NNP CC PRP$ NNS VBD VBN JJ NNS RB . Meanwhile , political sources say Iraqi Prime Minister Nuri al-Maliki will announce his national reconciliation plan to parliament Sunday . RB , JJ NNS VBP JJ NNP NNP NNP NNP MD VB PRP$ JJ NN NN TO NN NNP . Mr. al-Maliki 's office said the 28-point plan will offer some insurgents amnesty in an attempt to bring militant groups to the negotiating table . NNP NNP POS NN VBD DT JJ NN MD VB DT NNS NN IN DT NN TO VB JJ NNS TO DT NN NN . Lebanese officials say Israeli warplanes have again violated Lebanon 's airspace . JJ NNS VBP JJ NNS VBP RB VBN NNP POS NN . Security officials said Thursday , that Israeli fighter jets flew over the southern town of Naqoura and the eastern city of Baalbek . NNP NNS VBD NNP , IN JJ NN NNS VBD IN DT JJ NN IN NNP CC DT JJ NN IN NNP . A large United Nations peacekeeping base is in Naqoura . DT JJ NNP NNP NN NN VBZ IN NNP . The international community has criticized Israel for such overflights . DT JJ NN VBZ VBN NNP IN JJ NNS . It says they violate the ceasefire agreement that ended a month-long war between Israel and Hezbollah guerrillas in Lebanon . PRP VBZ PRP VBP DT JJ NN WDT VBD DT JJ NN IN NNP CC NNP NNS IN NNP . Earlier , the French Foreign Ministry summoned Israel 's ambassador over a similar incident . RB , DT NNP NNP NNP VBD NNP POS NN IN DT JJ NN . French officials say Israeli warplanes aggressively dove toward French peacekeepers in southern Lebanon . JJ NNS VBP JJ NNS RB VBP IN JJ NNS IN JJ NNP . A spokeswoman for the Israeli embassy in France said the overflights must continue to prevent arms from being smuggled to Hezbollah . DT NN IN DT JJ NN IN NNP VBD DT NNS MD VB TO VB NNS IN VBG VBN TO NNP . French Defense Minister Michele Alliot-Marie said Wednesday the incident nearly caused a catastrophe . JJ NNP NNP NNP NNP VBD NNP DT NN RB VBD DT NN . She said French troops were seconds away from firing anti-aircraft missiles at the warplanes . PRP VBD JJ NNS VBD NNS RB IN VBG JJ NNS IN DT NNS . Ugandan President Yoweri Museveni will extend his 20-year hold on power with an inauguration ceremony Friday . JJ NNP NNP NNP MD VB PRP$ JJ NN IN NN IN DT NN NN NNP . African heads of state gathered in the capital Kampala for the swearing-in , as Mr. Museveni begins a new five-year term in office . JJ NNS IN NN VBN IN DT NN NNP IN DT NN , IN NNP NNP VBZ DT JJ JJ NN IN NN . Mr. Museveni was declared the winner of disputed February elections - the African country 's first multiparty elections in 25 years . NNP NNP VBD VBN DT NN IN JJ NNP NNS IN DT JJ NN POS JJ JJ NNS IN CD NNS . Mr. Museveni garnered 59 percent of the vote , compared to 37 percent for opposition leader Kizza Besigye . NNP NNP VBD CD NN IN DT NN , VBN TO CD NN IN NN NN NNP NNP . The opposition party had asked the high court to overturn the results , charging they were distorted by bribery and government intimidation . DT NN NN VBD VBN DT JJ NN TO VB DT NNS , VBG PRP VBD VBN IN NN CC NN NN . Officials in Iraq say two bomb attacks in the country have killed at least seven people and wounded about 20 others . NNS IN NNP VBP CD NN NNS IN DT NN VBP VBN IN JJS CD NNS CC VBN IN CD NNS . In the deadliest attack Sunday , a bomb exploded in a market in the eastern town of Khalis in Diyala province , killing four people . IN DT JJS NN NNP , DT NN VBD IN DT NN IN DT JJ NN IN NNP IN NNP NN , VBG CD NNS . Officials say the bomb targeted the town 's mayor , whose condition was unclear . NNS VBP DT NN VBD DT NN POS NN , WP$ NN VBD JJ . Diyala province still sees frequent insurgent attacks despite significant drops in violence elsewhere in Iraq . NNP NN RB VBZ JJ JJ NNS IN JJ NNS IN NN RB IN NNP . In the other incident , a female suicide bomber blew herself up at a hospital near the western town of Fallujah in Anbar province , killing three people . IN DT JJ NN , DT JJ NN NN VBD PRP RP IN DT NN IN DT JJ NN IN NNP IN NNP NN , VBG CD NNS . Anbar is a former stronghold of al-Qaida insurgents . NNP VBZ DT JJ NN IN NNP NNS . U.S. forces handed over security control of the province to Iraqi forces two months ago . NNP NNS VBD IN NN NN IN DT NN TO JJ NNS CD NNS RB . The White House has expressed concern about reports that the U.S. military paid Iraqi newspapers to run pro-American stories about the war and rebuilding effort . DT NNP NNP VBZ VBN NN IN NNS IN DT NNP NN VBD JJ NNS TO VB JJ NNS IN DT NN CC NN NN . Spokesman Scott McClellan Thursday said the White House is seeking more information from the Defense Department . NNP NNP NNP NNP VBD DT NNP NNP VBZ VBG JJR NN IN DT NNP NNP . The Los Angeles Times on Wednesday first reported the program to plant articles in Iraqi media . DT NNP NNP NNP IN NNP RB VBD DT NN TO NN NNS IN JJ NNS . It reported that American soldiers wrote the articles and presented them to Iraqi media as unbiased accounts from independent journalists . PRP VBD IN JJ NNS VBD DT NNS CC VBD PRP TO JJ NNS IN JJ NNS IN JJ NNS . The Defense Department said it is looking into the matter . DT NNP NNP VBD PRP VBZ VBG IN DT NN . Pentagon spokesman Bryan Whitman said he sent inquiries to military officials in Iraq about the alleged activity . NNP NN NNP NNP VBD PRP VBD NNS TO JJ NNS IN NNP IN DT JJ NN . He added that , if TRUE , some of the activities are troubling . PRP VBD IN , IN JJ , DT IN DT NNS VBP JJ . The United States and South Korea have signed a new cost-sharing agreement for funding the American military presence on the peninsula . DT NNP NNPS CC NNP NNP VBP VBN DT JJ JJ NN IN VBG DT JJ JJ NN IN DT NN . And for the first time , Seoul 's share of the expense has been cut . CC IN DT JJ NN , NNP POS NN IN DT NN VBZ VBN VBN . Under the deal signed Thursday , South Korea will pay about $ 676 million - nearly 9-percent less than last year - to help finance the U.S. military presence for 2005 and 2006 . IN DT NN VBD NNP , NNP NNP MD VB IN $ CD CD : RB JJ JJR IN JJ NN : TO VB VB DT NNP JJ NN IN CD CC CD . Some 32,500 U.S. troops are stationed in South Korea but that number is set to decline as part of Washington 's worldwide redeployment of forces . DT CD NNP NNS VBP VBN IN NNP NNP CC DT NN VBZ VBN TO VB IN NN IN NNP POS JJ NN IN NNS . The United States has maintained a military presence in South Korea since the 1950 - 1953 Korean War , which ended in a cease-fire , leaving the two Koreas technically still at war . DT NNP NNPS VBZ VBN DT JJ NN IN NNP NNP IN DT CD : CD NNP NNP , WDT VBD IN DT NN , VBG DT CD NNS RB RB IN NN . Leaders of the African Union have begun a three-day summit during which they are expected to address the situation in Darfur and the issue of African unity . NNS IN DT NNP NNP VBP VBN DT JJ NN IN WDT PRP VBP VBN TO VB DT NN IN NNP CC DT NN IN JJ NN . Police monitored the streets of Accra , Ghana , as more than 30 heads of state gathered for the summit . NNP VBD DT NNS IN NNP , NNP , IN JJR IN CD NNS IN NN VBD IN DT NN . The agenda includes discussion of the idea of a United States of Africa . DT NN VBZ NN IN DT NN IN DT NNP NNP IN NNP . Proponents of the plan argue a federation of African nations could exercise more influence and better address problems facing the world 's poorest continent . NNS IN DT NN VBP DT NN IN JJ NNS MD VB JJR NN CC JJR NN NNS VBG DT NN POS JJS NN . But regional powers like South Africa favor a more gradual consolidation of regional economic groups . CC JJ NNS IN NNP NNP VBP DT JJR JJ NN IN JJ JJ NNS . The idea of a united Africa was conceived four decades ago by Ghana 's first president , Kwame Nkrumah . DT NN IN DT JJ NNP VBD VBN CD NNS RB IN NNP POS JJ NN , NNP NNP . Afghan authorities say security forces are hunting for an Indian telecommunications worker kidnapped by Taleban insurgents . JJ NNS VBP NN NNS VBP VBG IN DT JJ NN NN VBN IN NNP NNS . Officials say the Indian contractor , who was working for the Afghan telecommunications company Roshan , was kidnapped Friday on a main road in the southern province of Zabul . NNS VBP DT JJ NN , WP VBD VBG IN DT JJ NNS NN NNP , VBD VBN NNP IN DT JJ NN IN DT JJ NN IN NNP . A Taleban spokesman said the Indian was healthy and that higher authorities within the Taleban would soon decide on the captive 's fate . DT NNP NN VBD DT NN VBD JJ CC IN JJR NNS IN DT NNP MD RB VB IN DT NN POS NN . Afghan security forces clashed Saturday with Taleban militants hiding in a cave complex in southern Helmand province , killing two of them and seizing weapons . JJ NN NNS VBD NNP IN NNP NNS VBG IN DT NN NN IN JJ NNP NN , VBG CD IN PRP CC VBG NNS . U.S. and Afghan opposition forces drove the Taleban from power in late 2001 after the extremist Islamic government refused to hand over Osama bin Laden . NNP CC JJ NN NNS VBD DT NNP IN NN IN JJ CD IN DT NN JJ NN VBD TO VB IN NNP NNP NNP . Russia 's lower house of parliament , the Duma , on Friday gave preliminary approval to a historic nuclear weapons reduction pact with the U.S. Final ratification is not expected until next year . NNP POS JJR NN IN NN , DT NNP , IN NNP VBD JJ NN TO DT JJ JJ NNS NN NN IN DT NNP JJ NN VBZ RB VBN IN JJ NN . Lawmakers voted 350-58 in favor of the New Strategic Arms Reduction Treaty in the first of three required readings of the accord . NNS VBD CD IN NN IN DT NNP NNP NNP NNP NNP IN DT NN IN CD VBN NNS IN DT NN . The two additional readings are not expected to happen until January 2011 . DT CD JJ NNS VBP RB VBN TO VB IN NNP CD . Senior lawmaker Konstantin Kosachev , says further work on the treaty will continue once the Duma resumes meeting in January . JJ NN NNP NNP , VBZ JJ NN IN DT NN MD VB RB DT NNP VBZ NN IN NNP . He has been quoted as saying START as it was voted for by the U.S. Senate this week contains a large number of interpretations that require study and response from the Russian lawmakers . PRP VBZ VBN VBN IN VBG NNP IN PRP VBD VBN IN IN DT NNP NNP DT NN VBZ DT JJ NN IN NNS WDT VBP NN CC NN IN DT JJ NNS . The U.S. Senate voted 71-26 in favor of the accord . DT NNP NNP VBD CD IN NN IN DT NN . PepsiCo , the U.S. company that markets Pepsi and other beverages , has selected a woman born in India to be its next chief executive officer . NNP , DT NNP NN WDT VBZ NNP CC JJ NNS , VBZ VBN DT NN VBN IN NNP TO VB PRP$ JJ JJ NN NN . Indra Nooyi will assume control of the company on Oct. 1 , PepsiCo announced Monday . NNP NNP MD VB NN IN DT NN IN NNP CD , NNP VBD NNP . Nooyi was born in Madras and earned her undergraduate and master 's degrees in India . NNP VBD VBN IN NNP CC VBD PRP$ NN CC NN POS NNS IN NNP . She is also a graduate of the Yale School of Management in the United States . PRP VBZ RB DT NN IN DT NNP NNP IN NNP IN DT NNP NNPS . The business magazine Forbes included Nooyi in a list of the 100 most powerful women in the United States last year . DT NN NN NNP VBD NNP IN DT NN IN DT CD RBS JJ NNS IN DT NNP NNPS JJ NN . She has worked for PepsiCo for the past 12 years , most recently as the company 's chief financial officer . PRP VBZ VBN IN NNP IN DT JJ CD NNS , RBS RB IN DT NN POS JJ JJ NN . The value of the company 's stock rose slightly after her promotion was announced . DT NN IN DT NN POS NN VBD RB IN PRP$ NN VBD VBN . New data show the U.S. trade deficit grew slightly in June as imports rose for the first time in 11 months . NNP NNS VBP DT NNP NN NN VBD RB IN NNP IN NNS VBD IN DT JJ NN IN CD NNS . The U.S. Commerce Department says the deficit reached $ 27 billion in June , up from $ 26 billion in May . DT NNP NNP NNP VBZ DT NN VBD $ CD CD IN NNP , RB IN $ CD CD IN NNP . The increase reflects a 2.3 percent jump in U.S. imports of goods and services in June - the biggest increase this year . DT NN VBZ DT CD NN NN IN NNP NNS IN NNS CC NNS IN NNP IN DT JJS NN DT NN . U.S. exports rose 2 percent in the same month . NNP NNS VBD CD NN IN DT JJ NN . A trade deficit occurs when a country imports more than it exports . DT NN NN VBZ WRB DT NN NNS RBR IN PRP VBZ . The widening U.S. deficit indicates increased demand by American consumers - a sign the recession is starting to ease . DT VBG NNP NN VBZ VBN NN IN JJ NNS IN DT NN DT NN VBZ VBG TO VB . The U.S. central bank , known as the Federal Reserve , is wrapping up a two-day meeting on the economic situation . DT NNP JJ NN , VBN IN DT NNP NNP , VBZ VBG RP DT JJ NN IN DT JJ NN . Officials are scheduled to publish their closely-watched economic assessment Wednesday afternoon , Washington time . NNS VBP VBN TO VB PRP$ JJ JJ NN NNP NN , NNP NN . Iranian President Mahmoud Ahmadinejad says his recent comments that Israel should be ' wiped off the map ' reflect Iran 's long-standing policy and do not mark a change in its position . JJ NNP NNP NNP VBZ PRP$ JJ NNS IN NNP MD VB `` VBN RP DT NN `` VBP NNP POS JJ NN CC VBP RB VB DT NN IN PRP$ NN . Speaking Sunday in Tehran , Mr. Ahmadinejad said his words were the same ones used by the late Ayatollah Ruhollah Khomeini nearly 27 years ago . VBG NNP IN NNP , NNP NNP VBD PRP$ NNS VBD DT JJ NNS VBN IN DT JJ NNP NNP NNP RB CD NNS RB . The president 's latest comments , reported by Iran 's news agency , follow a string of international condemnations of his remarks against Israel . DT NN POS JJS NNS , VBN IN NNP POS NN NN , VB DT NN IN JJ NNS IN PRP$ NNS IN NNP . On Friday , the United Nations Security Council backed a statement from Secretary-General Kofi Annan warning Iran that threats against another country violate the U.N. charter . IN NNP , DT NNP NNP NNP NNP VBD DT NN IN NNP NNP NNP NN NNP IN NNS IN DT NN VBP DT NNP NN . The United States and the European Union said Mr. Ahmadinejad 's comments on Israel added to Western fears about what they believe is Iran 's quest to develop nuclear weapons . DT NNP NNPS CC DT NNP NNP VBD NNP NNP POS NNS IN NNP VBD TO JJ NNS IN WP PRP VBP VBZ NNP POS NN TO VB JJ NNS . The man who guided the world 's largest economy for the past 18 years today presides over his last meeting of the committee that sets the key U.S. interest rate . DT NN WP VBD DT NN POS JJS NN IN DT JJ CD NNS NN VBZ IN PRP$ JJ NN IN DT NN WDT VBZ DT JJ NNP NN NN . Economists and politicians say 79-year-old Federal Reserve Chairman Alan Greenspan is world 's most influential economic figure . NNS CC NNS VBP JJ NNP NNP NNP NNP NNP VBZ NN POS RBS JJ JJ NN . Greenspan was first appointed to head the U.S. central bank in 1987 by President Ronald Reagan . NNP VBD JJ VBN TO VB DT NNP JJ NN IN CD IN NNP NNP NNP . Since then he has built a reputation for skillfully fighting inflation and helping the U.S. economy weather stock market declines , terror attacks and recession . IN RB PRP VBZ VBN DT NN IN RB VBG NN CC VBG DT NNP NN NN NN NN NNS , NN NNS CC NN . Most economists say Greenspan and his colleagues will probably raise U.S. interest rates again Tuesday as they near the end of a campaign of boosting rates to fight inflation . JJS NNS VBP NNP CC PRP$ NNS MD RB VB NNP NN NNS RB NNP IN PRP IN DT NN IN DT NN IN VBG NNS TO VB NN . Former White House economic advisor Ben Bernanke is set to be confirmed as Greenspan 's successor . JJ NNP NNP JJ NN NNP NNP VBZ VBN TO VB VBN IN NNP POS NN . Defense lawyers for former Iraqi President Saddam Hussein say an unidentified man attacked the ousted leader during his appearance at a court hearing in Baghdad Thursday . NN NNS IN JJ JJ NNP NNP NNP VBP DT JJ NN VBD DT JJ NN IN PRP$ NN IN DT NN NN IN NNP NNP . The Jordan-based legal team said in a statement Saturday the man attacked Saddam as he stood to leave the courtroom , and the two exchanged blows . DT JJ JJ NN VBD IN DT NN NNP DT NN VBD NNP IN PRP VBD TO VB DT NN , CC DT CD VBN NNS . The lawyers did not say if Saddam was hurt . DT NNS VBD RB VB IN NNP VBD VBN . The statement says the head of the tribunal did nothing to stop the assault . DT NN VBZ DT NN IN DT JJ VBD DT TO VB DT NN . Saddam appeared in court to answer question about the repression of a Shi'ite uprising in 1991 . NNP VBD IN NN TO VB NN IN DT NN IN DT NNP NN IN CD . Earlier this month , he was formally charged with the killings of Shi'ite Muslims in the village of Dujail in 1982 , but no date has been set for his trial . RBR DT NN , PRP VBD RB VBN IN DT NNS IN NNP NNPS IN DT NN IN NNP IN CD , CC DT NN VBZ VBN VBN IN PRP$ NN . The U.S. Embassy in Beijing has issued a warning of a possible terrorist threat against U.S. interests in China . DT NNP NNP IN NNP VBZ VBN DT NN IN DT JJ JJ NN IN NNP NNS IN NNP . An embassy statement Friday says the U.S. government has received unconfirmed information of possible threats , especially in the cities of Beijing , Shanghai and Guangzhou . DT JJ NN NNP VBZ DT NNP NN VBZ VBN JJ NN IN JJ NNS , RB IN DT NNS IN NNP , NNP CC NNP . The embassy says the threat may exist in places where Americans congregate such as clubs , restaurants , schools or outdoor recreation events . DT NN VBZ DT NN MD VB IN NNS WRB NNS VBP JJ IN NNS , NNS , NNS CC JJ NN NNS . The warning advises U.S. citizens in China to be aware of their surroundings and remain alert to possible threats . DT NN VBZ NNP NNS IN NNP TO VB JJ IN PRP$ NNS CC VBP JJ TO JJ NNS . Citizens living or traveling in China are advised to register with the U.S. Embassy or nearest consulate through the State Department Web site . NNPS VBG CC VBG IN NNP VBP VBN TO VB IN DT NNP NNP CC JJS VBP IN DT NNP NNP NNP NN . The registration will make them easier to contact in case of emergency . DT NN MD VB PRP JJR TO VB IN NN IN NN . A suicide bomber wearing an Iraqi army uniform killed 26 Iraqi soldiers Wednesday at an army dining hall north of Baghdad . DT NN NN VBG DT JJ NN NN VBD CD JJ NNS NNP IN DT NN VBG NN NN IN NNP . Military authorities say the bomber waited until lunchtime at the base in Khalis before entering the dining hall and blowing himself up . JJ NNS VBP DT NN VBD IN NN IN DT NN IN NNP IN VBG DT NN NN CC VBG PRP RP . In Baghdad , a suicide bomber killed 10 people , mostly police , when he attacked a police patrol . IN NNP , DT NN NN VBD CD NNS , RB NN , WRB PRP VBD DT NN NN . To the north , near Kirkuk , gunmen killed two senior anti-terrorism police . TO DT NN , IN NNP , NNS VBD CD JJ JJ NN . And mortar attacks killed five Iraqis outside Baghdad . CC NN NNS VBD CD NNS IN NNP . In other developments , Iraqi and U.S. troops found and freed an Australian hostage , six weeks after his abduction in Baghdad . IN JJ NNS , JJ CC NNP NNS VBD CC VBD DT JJ NN , CD NNS IN PRP$ NN IN NNP . The U.S. military says troops discovered Douglas Wood and an Iraqi hostage during a routine search operation in Baghdad . DT NNP NN VBZ NNS VBD NNP NNP CC DT JJ NN IN DT JJ NN NN IN NNP . Three people were detained . CD NNS VBD VBN . Mr. Wood , a 63-year-old engineer , later issued a statement thanking his rescuers . NNP NNP , DT JJ NN , RB VBD DT NN VBG PRP$ NNS . Afghan authorities say security forces in southern Helmand province have shot and killed four suspected Taleban insurgents planting land mines intended for counter-narcotics forces . JJ NNS VBP NN NNS IN JJ NNP NN VBP VBN CC VBN CD JJ NNP NNS VBG NN NNS VBN IN NNS NNS . Helmand is Afghanistan 's largest grower of opium poppies and a hotbed of insurgent activity . NNP VBZ NNP POS JJS NN IN NN NNS CC DT NN IN JJ NN . In other violence Tuesday , in neighboring Nimroz province , unidentified gunmen shot dead a district intelligence officer as he was driving in his car . IN JJ NN NNP , IN JJ NNP NN , JJ NNS VBD RB DT NN NN NN IN PRP VBD VBG IN PRP$ NN . Meanwhile , U.S.-led coalition forces in Afghanistan say they are investigating whether an American and a Canadian soldier killed in a battle against Taleban rebels last week were victims of friendly fire . RB , JJ NN NNS IN NNP VBP PRP VBP VBG IN DT JJ CC DT JJ NN VBN IN DT NN IN NNP NNS JJ NN VBD NNS IN JJ NN . Five coalition troops , an American , three Canadians and one Afghan , also were wounded in the battle in Helmand province . CD NN NNS , DT NN , CD NNS CC CD NN , RB VBD VBN IN DT NN IN NNP NN . The U.S. military says coalition troops killed 32 Taleban insurgents in the operation . DT NNP NN VBZ NN NNS VBD CD NNP NNS IN DT NN . Uzbekistan has canceled the accreditation of German broadcaster Deutsche Welle 's correspondents in the Central Asian state , the latest foreign reporters to have their credentials revoked . NNP VBZ VBN DT NN IN JJ NN NNP NNP POS NNS IN DT JJ JJ NN , DT JJS JJ NNS TO VB PRP$ NNS VBN . The country has taken an increasingly tough line with foreign media since they reported eyewitness accounts of troops shooting on a crowd in the town of Andijan last year and killing hundreds of civilians . DT NN VBZ VBN DT RB JJ NN IN JJ NNS IN PRP VBD NN NNS IN NNS VBG IN DT NN IN DT NN IN NNP JJ NN CC VBG NNS IN NNS . Under a new media law introduced this month , it is illegal to work as a reporter in Uzbekistan without accreditation from the Foreign Ministry . IN DT JJ NNS NN VBN DT NN , PRP VBZ JJ TO VB IN DT NN IN NNP IN NN IN DT NNP NNP . The law says accreditation can be revoked for a range of reasons including interfering in the country 's internal affairs . DT NN VBZ NN MD VB VBN IN DT NN IN NNS VBG VBG IN DT NN POS JJ NNS . Earlier , the Uzbek government shut down local offices of the BBC and U.S.-funded Radio Free Europe / Radio Liberty . RB , DT JJ NN VBD RP JJ NNS IN DT NNP CC JJ NNP NNP NNP NNP NNP NNP . The moves followed the bloodshed in Andijan , which led to European Union sanctions against Uzbekistan and criticism from former ally Washington . DT NNS VBD DT NN IN NNP , WDT VBD TO NNP NNP NNS IN NNP CC NN IN JJ NN NNP . Health officials in Thailand say they have confirmed that a woman outside Bangkok is the 20th person in the country to contract bird flu since it hit Thailand two years ago . NNP NNS IN NNP VBP PRP VBP VBN IN DT NN IN NNP VBZ DT JJ NN IN DT NN TO NN NN NN IN PRP VBD NNP CD NNS RB . Officials say the 50-year-old woman was hospitalized with the deadly H5N1 flu virus on Saturday after cleaning up chicken excrement . NNS VBP DT JJ NN VBD VBN IN DT JJ NNP NN NN IN NNP IN VBG RP NN NN . Elsewhere , Vietnamese officials are calling for more international assistance to help fight avian influenza . RB , JJ NNS VBP VBG IN JJR JJ NN TO VB VB JJ NN . They made the appeal at a meeting of health and disaster officials from the Asia-Pacific Economic Cooperation forum in Brisbane , Australia . PRP VBD DT NN IN DT NN IN NN CC NN NNS IN DT NNP NNP NNP NN IN NNP , NNP . Meanwhile , health officials from African nations are meeting in Kigali , Rwanda Monday to discuss ways of dealing with migratory birds that may carry the virus to the continent . RB , NN NNS IN JJ NNS VBP VBG IN NNP , NNP NNP TO VB NNS IN VBG IN JJ NNS WDT MD VB DT NN TO DT NN . Sunni Muslim mosques in the Iraqi capital are closed Saturday , to protest sectarian violence . NNP NNP NNS IN DT JJ NN VBP VBN NNP , TO VB JJ NN . Sunni clerics ordered the three-day closure to protest what they call deliberate killings of some of their preachers by members of a Shi'ite militia . NNP NNS VBD DT JJ NN TO VB WP PRP VBP JJ NNS IN DT IN PRP$ NNS IN NNS IN DT NNP NN . The militia has denied the charge . DT NN VBZ VBN DT NN . Meanwhile , Iraqi Prime Minister Ibrahim al-Jaafari wrapped up a visit to neighboring Turkey . RB , JJ NNP NNP NNP NNP VBD RP DT NN TO JJ NNP . Mr. al-Jaafari discussed a wide range of topics with Prime Minister Recep Tayyip Erdogan and other officials . NNP NNP VBD DT JJ NN IN NNS IN NNP NNP NNP NNP NNP CC JJ NNS . Turkey is especially concerned about Kurdish separatists in northern Iraq , and Mr. al-Jaafari pledged that Iraq will not allow ' any group to harm ' Turkey . NNP VBZ RB JJ IN NNP NNS IN JJ NNP , CC NNP NNP VBD IN NNP MD RB VB `` DT NN TO VB `` NNP . He also said Kirkuk will continue to reflect Iraq 's diverse demographic makeup and will remain a part of a united Iraq . PRP RB VBD NNP MD VB TO VB NNP POS JJ JJ NN CC MD VB DT NN IN DT JJ NNP . For his part , Mr. Erdogan said Turkey seeks to end the use of Iraq as what he called a ' virtual terrorism training ground . ' IN PRP$ NN , NNP NNP VBD NNP VBZ TO VB DT NN IN NNP IN WP PRP VBD DT `` JJ NN NN NN . `` Pakistani authorities say at least 30 people were killed and more than 50 others injured in a suspected suicide bombing near a Shi'ite mosque in central Pakistan Thursday . JJ NNS VBP IN JJS CD NNS VBD VBN CC JJR IN CD NNS VBN IN DT JJ NN VBG IN DT NNP NN IN JJ NNP NNP . Police say the blast in the city of Dera Ghazi Khan occurred as a religious procession was passing the mosque . NNS VBP DT NN IN DT NN IN NNP NNP NNP VBD IN DT JJ NN VBD VBG DT NN . There was no immediate claim of responsibility , and the motivation for the attack is not clear . EX VBD DT JJ NN IN NN , CC DT NN IN DT NN VBZ RB JJ . Most Pakistanis are Sunni Muslim , while Shi'ites make up about 20 percent of the country 's population . JJS NNS VBP NNP NNP , IN NNS VBP RP IN CD NN IN DT NN POS NN . Also Thursday , Poland 's Foreign Ministry said Pakistani Taliban militants who kidnapped a Polish geologist last year have extended a deadline for the Pakistani government to meet their demands . RB NNP , NNP POS NNP NNP VBD JJ NNP NNS WP VBD DT JJ NN JJ NN VBP VBN DT NN IN DT JJ NN TO VB PRP$ NNS . The ministry did not provide further details . DT NN VBD RB VB JJ NNS . Piotr Stanczak , who works for Geofizyka Krakow , was abducted in Punjab province on September 28 . NNP NNP , WP VBZ IN NNP NNP , VBD VBN IN NNP NN IN NNP CD . Three Pakistanis were killed during the kidnapping . CD NNS VBD VBN IN DT NN . A French investment banker , who invested with disgraced financier Bernard Madoff , took his own life in New York this week . DT JJ NN NN , WP VBD IN JJ NN NNP NNP , VBD PRP$ JJ NN IN NNP NNP DT NN . VOA 's Barry Wood reports that the alleged 50 billion dollar Madoff fraud is only the latest in a string of pyramid schemes that have robbed millions of people of their savings . NNP POS NNP NNP VBZ IN DT JJ CD CD NN NNP NN VBZ RB DT JJS IN DT NN IN JJ NNS WDT VBP VBN NNS IN NNS IN PRP$ NNS . The schemes pay old investors with the funds of new contributors . DT NNS VBP JJ NNS IN DT NNS IN JJ NNS . They collapse when investors rush to get their money out , as happened in the latest New York scandal . PRP VBP WRB NNS VBP TO VB PRP$ NN RB , IN VBN IN DT JJS NNP NNP NN . Revelers in Brazil have gathered to celebrate the last day of Carnival celebrations , before the start of Lent . NNS IN NNP VBP VBN TO VB DT JJ NN IN NNP NNS , IN DT NN IN NNP . Authorities in Rio de Janeiro say more than 7,00,000 tourists have come to the city for the celebrations , which kicked off over the weekend . NNS IN NNP IN NNP VBP JJR IN CD NNS VBP VBN TO DT NN IN DT NNS , WDT VBD RP IN DT NN . The largest parades took place Sunday and Monday nights in Rio 's Sambadrome where the city 's top samba groups , dressed in elaborate costumes , competed against each other to put on the best show . DT JJS NNS VBD NN NNP CC NNP NNS IN NNP POS NNP WRB DT NN POS JJ NN NNS , VBN IN JJ NNS , VBN IN DT NN TO VB IN DT JJS NN . Organized into samba schools , the groups spend all year preparing and rehearsing for Carnival . VBN IN NN NNS , DT NNS VBP DT NN VBG CC VBG IN NNP . After two nights of carnival parades , celebrations in Rio de Janeiro returned to the streets Tuesday for one last day of revelry . IN CD NNS IN JJ NNS , NNS IN NNP IN NNP VBD TO DT NNS NNP IN CD JJ NN IN NN . Celebrations are also taking place in other Brazilian cities . NNS VBP RB VBG NN IN JJ JJ NNS . Ash Wednesday is the start of Lent , which for Roman Catholics opens the 40-day period of penitence , sacrifice and reflection . NNP NNP VBZ DT NN IN NNP , WDT IN NNP NNPS VBZ DT JJ NN IN NN , NN CC NN . U.S. Secretary of State Condoleezza Rice waves as she is escorted by Palestinian Foreign Minister Nasser Al Kidwa , second left as she arrives at the office of Palestinian Prime Minister Ahmed Qureia in Ramallah NNP NNP IN NNP NNP NNP VBZ IN PRP VBZ VBN IN JJ NNP NNP NNP NNP NNP , JJ NN IN PRP VBZ IN DT NN IN JJ NNP NNP NNP NNP IN NNP U.S. Secretary of State Condoleezza Rice has launched a Middle East visit to help Israeli and Palestinian leaders prepare for Israel 's planned withdrawal from the Gaza Strip . NNP NNP IN NNP NNP NNP VBZ VBN DT NNP NNP NN TO VB JJ CC JJ NNS VBP IN NNP POS VBN NN IN DT NNP NNP . Ms. Rice met Saturday with Palestinian Prime Minister Ahmed Qureia in Ramallah , ahead of talks with President Mahmoud Abbas . NNP NNP VBD NNP IN JJ NNP NNP NNP NNP IN NNP , RB IN NNS IN NNP NNP NNP . Sunday , she is to meet Israeli Prime Minister Ariel Sharon in Jerusalem . NNP , PRP VBZ TO VB JJ NNP NNP NNP NNP IN NNP . Before arriving , she told reporters that Palestinians must work to ensure security ahead of the Israeli withdrawal , set for August . IN VBG , PRP VBD NNS IN NNS MD VB TO VB NN RB IN DT JJ NN , VBN IN NNP . She also expressed concern over Israeli plans to expand settlements in the West Bank . PRP RB VBD NN IN JJ NNS TO VB NNS IN DT NNP NNP . Meantime , the militant group Islamic Jihad says one of its fighters was killed in a clash with Israeli forces in southern Gaza . RB , DT JJ NN NNP NNP VBZ CD IN PRP$ NNS VBD VBN IN DT NN IN JJ NNS IN JJ NNP . Iraqi political leaders representing the country 's different ethnic and religious groups held more separate consultations Thursday to work out key points of a new constitution . JJ JJ NNS VBG DT NN POS JJ JJ CC JJ NNS VBD RBR JJ NNS NNP TO VB RP JJ NNS IN DT JJ NN . A draft of the document is due on Monday , but several issues are still not resolved . DT NN IN DT NN VBZ JJ IN NNP , CC JJ NNS VBP RB RB VBN . One of those is federalism , which the Kurds want to protect their self-rule in northern Iraq . CD IN DT VBZ NN , WDT DT NNPS VBP TO VB PRP$ NN IN JJ NNP . The Shi'ites are divided , while Sunni Arabs are strongly against federalism . DT NNS VBP VBN , IN NNP NNS VBP RB IN NN . Meanwhile , the United Nations Security Council renewed for another year its Assistance Mission for Iraq ( UNAMI ) . RB , DT NNP NNP NNP NNP VBN IN DT NN PRP$ NNP NNP IN NNP LRB NNP RRB . That mission helps Iraqis draft the constitution and organize elections . DT NN VBZ NNS VB DT NN CC NN NNS . In the northern city of Mosul , the U.S. military says one of its unmanned aerial vehicles crashed without harming anyone on the ground . IN DT JJ NN IN NNP , DT NNP NN VBZ CD IN PRP$ JJ JJ NNS VBD IN VBG DT IN DT NN . But it says the vehicle has not been recovered because people on the ground carried it away after it crashed . CC PRP VBZ DT NN VBZ RB VBN VBN IN NNS IN DT NN VBD PRP RB IN PRP VBD . A Kenyan High Court judge has formally dropped murder charges against a prominent white rancher accused of killing a game warden . DT JJ NNP NNP NN VBZ RB VBN NN NNS IN DT JJ JJ NN VBN IN VBG DT NN NN . Judge Muga Apondi Wednesday approved a request by the attorney general to drop the case against Thomas Cholmondeley , the grandson of one of Kenya 's original British settlers , Lord Delamere . NNP NNP NNP NNP VBD DT NN IN DT NN NN TO VB DT NN IN NNP NNP , DT NN IN CD IN NNP POS JJ JJ NNS , NNP NNP . Mr. Cholmondeley was charged with killing a plainclothes Kenyan game warden who was investigating allegations his ranch harbored illegal trade in game meat . NNP NNP VBD VBN IN VBG DT NNS JJ NN NN WP VBD VBG NNS PRP$ NN VBD JJ NN IN NN NN . The rancher said he thought the game warden was an armed robber . DT NN VBD PRP VBD DT NN NN VBD DT JJ NN . Judge Apondi said the court was sympathetic to the pain of the deceased man 's family but asked them to be patient and wait for the inquest into the killing . NNP NNP VBD DT NN VBD JJ TO DT NN IN DT JJ NN POS NN CC VBD PRP TO VB JJ CC VB IN DT NN IN DT NN . Mr. Cholmondeley 's ranch in the central Rift Valley is one of the biggest in Kenya . NNP NNP POS NN IN DT JJ NNP NNP VBZ CD IN DT JJS IN NNP . The U.S. military says American and Iraqi forces fighting insurgents in western Iraq have encountered strong resistance as they battle to secure the border region and prevent terrorist infiltrations from Syria . DT NNP NN VBZ NNP CC JJ NNS VBG NNS IN JJ NNP VBP VBN JJ NN IN PRP VBP TO VB DT NN NN CC VB JJ NNS IN NNP . The military says coalition forces have encountered some of the heaviest fighting in the city of Ubaydi since Operation Steel Curtain began 10 days ago . DT JJ VBZ NN NNS VBP VBN DT IN DT JJS NN IN DT NN IN NNP IN NNP NNP NNP VBD CD NNS RB . Three Marines and 80 insurgents have been killed since coalition forces entered the city on Monday . CD NNS CC CD NNS VBP VBN VBN IN NN NNS VBD DT NN IN NNP . They have found houses rigged with explosives , more than 100 explosive devices and mines , as well as 36 weapons caches . PRP VBP VBN NNS VBN IN NNS , JJR IN CD JJ NNS CC NNS , RB RB IN CD NNS NNS . The operation is intended to restore security along the Euphrates River Valley ahead of next month 's parliamentary elections . DT NN VBZ VBN TO VB NN IN DT NNP NNP NNP RB IN JJ NN POS JJ NNS . Meanwhile , attacks in Baghdad and Kirkuk killed eight policemen Tuesday . RB , NNS IN NNP CC NNP VBD CD NNS NNP . And coalition forces say they captured a high level Baath Party leader Hamid Sharki Shadid in Diyala province . CC NN NNS VBP PRP VBD DT JJ NN NNP NNP NN NNP NNP NNP IN NNP NN . Despite the global financial crisis , Qatar has prospered in the last several years - in 2010 Qatar had the world 's highest growth rate . IN DT JJ JJ NN , NNP VBZ VBN IN DT JJ JJ NNS : IN CD NNP VBD DT NN POS JJS NN NN . Qatari authorities throughout the crisis sought to protect the local banking sector with direct investments into domestic banks . NNP NNS IN DT NN VBD TO VB DT JJ NN NN IN JJ NNS IN JJ NNS . GDP rebounded in 2010 largely due to the increase in oil prices . NN VBD IN CD RB JJ TO DT NN IN NN NNS . Economic policy is focused on developing Qatar 's nonassociated natural gas reserves and increasing private and foreign investment in non-energy sectors , but oil and gas still account for more than 50 % of GDP , roughly 85 % of export earnings , and 70 % of government revenues . JJ NN VBZ VBN IN VBG NNP POS JJ JJ NN NNS CC VBG JJ CC JJ NN IN JJ NNS , CC NN CC NN RB VBP IN JJR IN CD NN IN NN , RB CD NN IN NN NNS , CC CD NN IN NN NNS . Oil and gas likely have made Qatar the highest per-capita income country - ahead of Liechtenstein - and the country with the lowest unemployment . NN CC NN RB VBP VBN NNP DT JJS JJ NN NN : RB IN NNP : CC DT NN IN DT JJS NN . Proved oil reserves of 25 billion barrels should enable continued output at current levels for 57 years . NNP NN NNS IN CD CD NNS MD VB JJ NN IN JJ NNS IN CD NNS . Qatar 's proved reserves of natural gas exceed 25 trillion cubic meters , about 14 % of the world total and third largest in the world . NNP POS JJ NNS IN JJ NN VBP CD CD JJ NNS , IN CD NN IN DT NN JJ CC JJ JJS IN DT NN . Qatar 's successful 2022 world cup bid will likely accelerate large-scale infrastructure projects such as Qatar 's metro system and the Qatar-Bahrain causeway . NNP POS JJ CD NN NN NN MD RB VB JJ NN NNS JJ IN NNP POS NN NN CC DT JJ NN . Once the seat of Viking raiders and later a major north European power , Denmark has evolved into a modern , prosperous nation that is participating in the general political and economic integration of Europe . RB DT NN IN VBG NNS CC RB DT JJ JJ JJ NN , NNP VBZ VBN IN DT JJ , JJ NN WDT VBZ VBG IN DT JJ JJ CC JJ NN IN NNP . It joined NATO in 1949 and the EEC ( now the EU ) in 1973 . PRP VBD NNP IN CD CC DT NNP LRB RB DT NNP RRB IN CD . However , the country has opted out of certain elements of the European Union 's Maastricht Treaty , including the European Economic and Monetary Union ( EMU ) , European defense cooperation , and issues concerning certain justice and home affairs . RB , DT NN VBZ VBN IN IN JJ NNS IN DT NNP NNP POS NNP NNP , VBG DT JJ NNP CC NNP NNP LRB NNP RRB , JJ NN NN , CC NNS VBG JJ NN CC NN NNS . The native Taino Amerindians - who inhabited the island of Hispaniola when it was discovered by COLUMBUS in 1492 - were virtually annihilated by Spanish settlers within 25 years . DT JJ NNP NNPS : WP VBD DT NN IN NNP WRB PRP VBD VBN IN NNP IN CD : VBD RB VBN IN JJ NNS IN CD NNS . In the early 17th century , the French established a presence on Hispaniola . IN DT JJ JJ NN , DT NNS VBD DT NN IN NNP . In 1697 , Spain ceded to the French the western third of the island , which later became Haiti . IN CD , NNP VBD TO DT JJ DT JJ NN IN DT NN , WDT RB VBD NNP . The French colony , based on forestry and sugar-related industries , became one of the wealthiest in the Caribbean but only through the heavy importation of African slaves and considerable environmental degradation . DT JJ NN , VBN IN NN CC JJ NNS , VBD CD IN DT JJS IN DT NNP CC RB IN DT JJ NN IN JJ NNS CC JJ JJ NN . In the late 18th century , Haiti 's nearly half million slaves revolted under Toussaint L'OUVERTURE . IN DT JJ JJ NN , NNP POS RB JJ CD NNS VBN IN NNP NNP . After a prolonged struggle , Haiti became the first black republic to declare independence in 1804 . IN DT JJ NN , NNP VBD DT JJ JJ NN TO VB NN IN CD . The poorest country in the Western Hemisphere , Haiti has been plagued by political violence for most of its history . DT JJS NN IN DT NNP NNP , NNP VBZ VBN VBN IN JJ NN IN JJS IN PRP$ NN . After an armed rebellion led to the forced resignation and exile of President Jean-Bertrand ARISTIDE in February 2004 , an interim government took office to organize new elections under the auspices of the United Nations Stabilization Mission in Haiti ( MINUSTAH ) . IN DT JJ NN VBD TO DT JJ NN CC NN IN NNP NNP NNP IN NNP CD , DT JJ NN VBD NN TO VB JJ NNS IN DT NNS IN DT NNP NNPS NNP NNP IN NNP LRB NNP RRB . Continued violence and technical delays prompted repeated postponements , but Haiti finally did inaugurate a democratically elected president and parliament in May of 2006 . JJ NN CC JJ NNS VBD VBN NNS , CC NNP RB VBD VB DT RB VBN NN CC NN IN NNP IN CD . A massive magnitude 7 earthquake struck Haiti in January 2010 with an epicenter about 15 km southwest of the capital , Port-au-Prince . DT JJ NN CD NN VBD NNP IN NNP CD IN DT NN IN CD NN NN IN DT NN , NNP . An estimated 2 million people lived within the zone of heavy to moderate structural damage . DT VBN CD CD NNS VBD IN DT NN IN JJ TO JJ JJ NN . The earthquake was assessed as the worst in this region over the last 200 years and massive international assistance will be required to help the country recover . DT NN VBD VBN IN DT JJS IN DT NN IN DT JJ CD NNS CC JJ JJ NN MD VB VBN TO VB DT NN VB . Two neighbours came before Jupiter and prayed him to grant their hearts ' desire . CD NNS VBD IN NNP CC VBD PRP TO VB PRP$ NNS POS NN . Now the one was full of avarice , and the other eaten up with envy . RB DT CD VBD JJ IN NN , CC DT JJ JJ RP IN NN . So to punish them both , Jupiter granted that each might have whatever he wished for himself , but only on condition that his neighbour had twice as much . RB TO VB PRP DT , NNP VBD IN DT MD VB WDT PRP VBD IN PRP , CC RB IN NN IN PRP$ NN VBD RB RB JJ . The Avaricious man prayed to have a room full of gold . DT JJ NN VBN TO VB DT NN JJ IN NN . No sooner said than done ; but all his joy was turned to grief when he found that his neighbour had two rooms full of the precious metal . DT RBR VBD IN VBN ; CC DT PRP$ NN VBD VBN TO NN WRB PRP VBD IN PRP$ NN VBD CD NNS JJ IN DT JJ NN . Then came the turn of the Envious man , who could not bear to think that his neighbour had any joy at all . RB VBD DT NN IN DT JJ NN , WP MD RB VB TO VB IN PRP$ NN VBD DT NN IN DT . So he prayed that he might have one of his own eyes put out , by which means his companion would become totally blind . RB PRP VBD IN PRP MD VB CD IN PRP$ JJ NNS VBP RP , IN WDT VBZ PRP$ NN MD VB RB JJ . Vices are their own punishment . NNS VBP PRP$ JJ NN . A LION entered a farmyard . DT NN VBD DT NN . The Farmer , wishing to catch him , shut the gate . DT NN , VBG TO VB PRP , VBD DT NN . When the Lion found that he could not escape , he flew upon the sheep and killed them , and then attacked the oxen . WRB DT NN VBD IN PRP MD RB VB , PRP VBD IN DT NNS CC VBD PRP , CC RB VBD DT NNS . The Farmer , beginning to be alarmed for his own safety , opened the gate and released the Lion . DT NN , VBG TO VB VBN IN PRP$ JJ NN , VBD DT NN CC VBD DT NN . On his departure the Farmer grievously lamented the destruction of his sheep and oxen , but his wife , who had been a spectator to all that took place , said , ' On my word , you are rightly served , for how could you for a moment think of shutting up a Lion along with you in your farmyard when you know that you shake in your shoes if you only hear his roar at a distance ? ' IN PRP$ NN DT NN RB VBD DT NN IN PRP$ NNS CC NNS , CC PRP$ NN , WP VBD VBN DT NN TO DT IN VBD NN , VBD , `` IN PRP$ NN , PRP VBP RB VBN , IN WRB MD PRP IN DT NN VB IN VBG RP DT NN IN IN PRP IN PRP$ NN WRB PRP VBP IN PRP VBP IN PRP$ NNS IN PRP RB VB PRP$ NN IN DT NN . `` SOME Pigeons exposed to the attacks of a Kite asked a Hawk to defend them . DT NNS VBN TO DT NNS IN DT NN VBD DT NN TO VB PRP . He consented , and being admitted into the cote waited for the Kite , whom he fell upon and devoured . PRP VBD , CC VBG VBN IN DT NN VBD IN DT NN , WP PRP VBD IN CC VBD . When he was so surfeited that he could scarcely move , the grateful Pigeons scratched out his eyes . WRB PRP VBD RB VBN IN PRP MD RB VB , DT JJ NNS VBD RP PRP$ NNS . It is well documented that for every mile that you jog , you add one minute to your life . PRP VBZ RB VBN IN IN DT NN IN PRP VBP , PRP VBP CD NN TO PRP$ NN . This enables you at 85 years old to spend an additional 5 months in a nursing home at $ 5000 per month . DT VBZ PRP IN CD NNS JJ TO VB DT JJ CD NNS IN DT NN NN IN $ CD IN NN . The International Olympic Committee says several top athletes are considering a boycott of this year 's Beijing Olympics as a protest against China 's crackdown on activists in Tibet . DT NNP NNP NNP VBZ JJ JJ NNS VBP VBG DT NN IN DT NN POS NNP NNPS IN DT NN IN NNP POS NN IN NNS IN NNP . However , IOC members and senior government officials in several European countries said Sunday that they oppose any boycott of the games beginning this August . RB , NNP NNS CC JJ NN NNS IN JJ JJ NNS VBD NNP IN PRP VBP DT NN IN DT NNS VBG DT NNP . France 's Foreign Ministry expressed concern Sunday over recent events in Tibet and asked Chinese authorities to recognize the importance of protecting human rights in advance of the Olympics . NNP POS NNP NNP VBD NN NNP IN JJ NNS IN NNP CC VBD JJ NNS TO VB DT NN IN VBG JJ NNS IN NN IN DT NNPS . Hundreds of pro-Tibet activists in The Hague and Paris clashed with police Sunday outside China 's embassies in those countries . NNS IN JJ NNS IN DT NNP CC NNP VBD IN NN NNP IN NNP POS NNS IN DT NNS . The protesters managed to pull down the embassies ' Chinese flags and raise Tibetan banners . DT NNS VBD TO VB RP DT NNS POS JJ NNS CC VB JJ NNS . Tibetan exiles and their supporters in other European cities and around the world organized another day of protests Sunday . JJ NNS CC PRP$ NNS IN JJ JJ NNS CC IN DT NN VBN DT NN IN NNS NNP . Some called for a boycott of this year 's Olympics , but Tibet 's exiled spiritual leader , the Dalai Lama , says he does not oppose Beijing 's role as host of the summer games . DT VBN IN DT NN IN DT NN POS NNS , CC NNP POS JJ JJ NN , DT NNP NNP , VBZ PRP VBZ RB VB NNP POS NN IN NN IN DT NN NNS . Chinese Olympic Committee officials said Sunday that the unrest in Tibet will not affect their plans to bring the Olympic torch through Tibet and up to the summit of Mount Everest during May . JJ NNP NNP NNS VBD NNP IN DT NN IN NNP MD RB VB PRP$ NNS TO VB DT NNP NN IN NNP CC RB TO DT NN IN NNP NNP IN NNP . During the past week , many world leaders have called on China to exercise restraint in dealing with Tibetan protesters . IN DT JJ NN , JJ NN NNS VBP VBN IN NNP TO VB NN IN VBG IN JJ NNS . U.S. Secretary of State Condoleezza Rice has called on Chinese authorities to release detained demonstrators and hold talks with the Dalai Lama . NNP NNP IN NNP NNP NNP VBZ VBN IN JJ NNS TO VB JJ NNS CC VB NNS IN DT NNP NNP . The head of Russia 's state arms trading agency says Russia has signed contracts to sell Venezuela 24 jet fighter planes and 53 military helicopters . DT NN IN NNP POS NN NNS VBG NN VBZ NNP VBZ VBN NNS TO VB NNP CD NN NN NNS CC CD JJ NNS . Details of the deal were not immediately clear . NNS IN DT NN VBD RB RB JJ . But the head of Russia 's arms export agency said the two countries have signed contracts for Venezuelan purchase of some $ 3 billion worth of military equipment over the last 18 months . CC DT NN IN NNP POS NNS NN NN VBD DT CD NNS VBP VBN NNS IN JJ NN IN DT $ CD CD NN IN JJ NN IN DT JJ CD NNS . His comments came as Russian President Vladimir Putin and Venezuelan leader Hugo Chavez met in Moscow . PRP$ NNS VBD IN JJ NNP NNP NNP CC JJ NN NNP NNP VBD IN NNP . The newly acquired Russian fighter planes are expected to replace a fleet of U.S.-made F-16 fighter jets . DT RB VBN JJ NN NNS VBP VBN TO VB DT NN IN JJ NN NN NNS . Venezuelan authorities say they have not been able to buy spare parts for the F-16s since Washington imposed an arms embargo on Venezuela earlier this year . JJ NNS VBP PRP VBP RB VBN JJ TO VB JJ NNS IN DT NNS IN NNP VBD DT NNS NN IN NNP RBR DT NN . Mr. Putin said Thursday the contracts are not directed against other states . NNP NNP VBD NNP DT NNS VBP RB VBN IN JJ NNS . He said they are aimed at developing the economies of the two countries . PRP VBD PRP VBP VBN IN VBG DT NNS IN DT CD NNS . Continuing concerns about European economies sent gold prices up and pushed stock and oil prices down sharply on Friday . VBG NNS IN JJ NNS VBD NN NNS RB CC VBN NN CC NN NNS RB RB IN NNP . The euro currency also dropped sharply . DT NN NN RB VBD RB . Debt problems in Greece and other nations have prompted governments to slash spending , which could slow economic growth . NN NNS IN NNP CC JJ NNS VBP VBN NNS TO VB NN , WDT MD VB JJ NN . Worried investors sold euros and sought the perceived safety of gold investments . JJ NNS VBD NNS CC VBD DT VBN NN IN JJ NNS . The precious metal rose to a new record high of nearly $ 1,250 before declining . DT JJ NN VBD TO DT JJ NN NN IN RB $ CD IN VBG . Oil prices fell as traders calculated that slower economic growth would cut energy demand . NN NNS VBD IN NNS VBD IN JJR JJ NN MD VB NN NN . Those same concerns pushed the major French stock index down more than four percent and slashed Spanish stocks more than six percent . DT JJ NNS VBD DT JJ JJ NN NN RB RBR IN CD NN CC VBD JJ NNS RBR IN CD NN . Israeli and Palestinian officials met Friday to discuss the agenda of an upcoming summit between Israeli Prime Minister Ariel Sharon and Palestinian leader Mahmoud Abbas . JJ CC JJ NNS VBD NNP TO VB DT NN IN DT JJ NN IN JJ NNP NNP NNP NNP CC JJ NN NNP NNP . Officials on both sides characterized the talks in Tel Aviv as ' positive , ' and said a second preparatory session is planned , possibly for Sunday . NNS IN DT NNS VBD DT NNS IN NNP NNP IN `` JJ , `` CC VBD DT JJ JJ NN VBZ VBN , RB IN NNP . King Abdullah of Jordan said this week that Mr. Abbas and Mr. Sharon would meet next Tuesday , but Israeli and Palestinian officials say that is only likely if an agreement can be reached on the meeting 's agenda . NNP NNP IN NNP VBD DT NN IN NNP NNP CC NNP NNP MD VB JJ NNP , CC JJ CC JJ NNS VBP DT VBZ RB JJ IN DT NN MD VB VBN IN DT NN POS NN . Palestinian officials say they will use the summit to ask Israel to release Palestinian prisoners , ease roadblocks and withdraw troops from West Bank towns . JJ NNS VBP PRP MD VB DT NN TO VB NNP TO VB JJ NNS , VB NNS CC VB NNS IN NNP NNP NNS . Israel wants the Palestinian Authority to disarm militants . NNP VBZ DT JJ NNP TO VB NNS . The two leaders were originally scheduled to meet this past Sunday . DT CD NNS VBD RB VBN TO VB DT JJ NNP . But the summit was canceled in the wake of renewed violence . CC DT NN VBD VBN IN DT NN IN VBN NN . U.N. special envoy Terje Roed-Larsen has met with Syrian President Bashar al-Assad to press international demands for a full and rapid withdrawal of all Syrian troops from Lebanon . NNP JJ NN NNP NNP VBZ VBN IN JJ NNP NNP NNP TO VB JJ NNS IN DT JJ CC JJ NN IN DT JJ NNS IN NNP . A spokesman for the U.N. envoy said Mr. Roed-Larsen and Mr. Assad have been meeting Saturday in the northern city of Aleppo . DT NN IN DT NNP NN VBD NNP NNP CC NNP NNP VBP VBN VBG NNP IN DT JJ NN IN NNP . The spokesman gave no details of the discussions . DT NN VBD DT NNS IN DT NNS . Mr. Roed-Larsen was expected to tell the Syrian president his country faces political and economic isolation if he does not quickly withdraw all Syrian troops . NNP NNP VBD VBN TO VB DT JJ NN PRP$ NN VBZ JJ CC JJ NN IN PRP VBZ RB RB VB DT JJ NNS . The meeting came after a large convoy of Syrian forces returned home Saturday from positions in northern Lebanon . DT NN VBD IN DT JJ NN IN JJ NNS VBD NN NNP IN NNS IN JJ NNP . However , thousands of Syrian troops are still located elsewhere in the country . RB , NNS IN JJ NNS VBP RB VBN RB IN DT NN . Afghan police say a roadside bomb exploded near a military convoy in western Afghanistan Sunday , killing two civilians . JJ NNS VBP DT NN NN VBD IN DT JJ NN IN JJ NNP NNP , VBG CD NNS . Authorities say the blast took place as the two men were passing a Western military convoy in Herat province . NNS VBP DT NN VBD NN IN DT CD NNS VBD VBG DT JJ JJ NN IN NNP NN . There were no reports of anyone injured in the convoy . EX VBD DT NNS IN DT VBN IN DT NN . On Saturday , Afghani Pajhwok news agency said an Italian photojournalist had been kidnapped by the Taleban in southern Afghanistan . IN NNP , NNP NNP NN NN VBD DT JJ NN VBD VBN VBN IN DT NNP IN JJ NNP . The news agency identified the journalist as Gabriele Torsello and said a call to his mobile phone Saturday had been answered by someone who said the Taleban abducted the foreigner on charges of spying . DT NN NN VBD DT NN IN NNP NNP CC VBD DT NN TO PRP$ JJ NN NNP VBD VBN VBN IN DT WP VBD DT NNP VBD DT NN IN NNS IN VBG . Also Saturday , in neighboring Kandahar province , two NATO soldiers from Canada were killed and three others wounded when militants ambushed their unit . RB NNP , IN JJ NNP NN , CD NNP NNS IN NNP VBD VBN CC CD NNS VBD WRB NNS VBD PRP$ NN . Haitian Prime Minister Gerard Latortue has unveiled some new initiatives in memory of Jacques Roche , a local journalist who was kidnapped and murdered in Port-au-Prince last week . JJ NNP NNP NNP NNP VBZ VBN DT JJ NNS IN NN IN NNP NNP , DT JJ NN WP VBD VBN CC VBN IN NN JJ NN . In an interview with VOA 's Creole Service , Mr. Latortue said he will consult with Minister of Interior Paul Magloire on an initiative to name the street where the journalist 's body was found after Mr. Roche . IN DT NN IN NNP POS NNP NNP , NNP NNP VBD PRP MD VB IN NNP IN NNP NNP NNP IN DT NN TO VB DT NN WRB DT NN POS NN VBD VBN IN NNP NNP . He also said the country will observe a day of mourning on July 21 , the day of Mr. Roche 's funeral . PRP RB VBD DT NN MD VB DT NN IN VBG IN NNP CD , DT NN IN NNP NNP POS NN . Haitian authorities discovered Mr. Roche 's body last Thursday , four days after armed gunmen abducted him . JJ NNS VBD NNP NNP POS NN JJ NNP , CD NNS IN JJ NNS VBD PRP . On other issues , Mr. Latortue said there is no doubt a presidential election will be held later this year despite on-going violence . IN JJ NNS , NNP NNP VBD EX VBZ DT NN DT JJ NN MD VB VBN RBR DT NN IN JJ NN . Haiti has seen a mounting wave of violence ahead of the election . NNP VBZ VBN DT JJ NN IN NN RB IN DT NN . Hundreds of people have been killed since September . NNS IN NNS VBP VBN VBN IN NNP . Former U.S. president Jimmy Carter has left a Cleveland , Ohio hospital , where he had been treated for a stomach ailment . JJ NNP NN NNP NNP VBZ VBN DT NNP , NNP NN , WRB PRP VBD VBN VBN IN DT NN NN . A statement from the medical center in Cleveland says Mr. Carter left the hospital after midday Thursday . DT NN IN DT JJ NN IN NNP VBZ NNP NNP VBD DT NN IN NN NNP . The statement says he thanked his medical team for the care and treatment he received during his stay . DT NN VBZ PRP VBD PRP$ JJ NN IN DT NN CC NN PRP VBD IN PRP$ NN . The 85-year-old former president had been admitted to the hospital Tuesday after developing an upset stomach during a flight to Cleveland . DT JJ JJ NN VBD VBN VBN TO DT NN NNP IN VBG DT JJ NN IN DT NN TO NNP . Doctors had determined he had been suffering from a viral infection and kept him in the hospital for two nights to monitor his health . NNS VBD VBN PRP VBD VBN VBG IN DT JJ NN CC VBD PRP IN DT NN IN CD NNS TO VB PRP$ NN . Mr. Carter has been traveling across the country to promote his new book , White House Diary . NNP NNP VBZ VBN VBG IN DT NN TO VB PRP$ JJ NN , NNP NNP NNP . The hospital says he will resume his schedule with a meeting in Washington . DT NN VBZ PRP MD VB PRP$ NN IN DT NN IN NNP . Mr. Carter served as U.S. president from 1977 to 1981 . NNP NNP VBD IN NNP NN IN CD TO CD . Georgia 's defense minister says his country will reduce its military presence in Iraq to 300 soldiers by next summer . NNP POS NN NN VBZ PRP$ NN MD VB PRP$ JJ NN IN NNP TO CD NNS IN JJ NN . Davit Kezerashvili told reporters Friday the planned cut is part of a previous agreement with the United States . NNP NNP VBD NNS NNP DT JJ NN VBZ NN IN DT JJ NN IN DT NNP NNPS . Kezerashvili says no reduction is expected before mid-2008 . NNP VBZ DT NN VBZ VBN IN NN . Georgia currently has 2,000 soldiers in Iraq . NNP RB VBZ CD NNS IN NNP . The number was increased from 850 in July after Georgia 's parliament approved a proposal by President Mikhail Saakashvili . DT NN VBD VBN IN CD IN NNP IN NNP POS NN VBD DT NN IN NNP NNP NNP . The Georgian president and the ruling party have been working to build closer ties with the United States and other western nations in a bid to gain NATO membership . DT JJ NN CC DT NN NN VBP VBN VBG TO VB JJR NNS IN DT NNP NNPS CC JJ JJ NNS IN DT NN TO VB NNP NN . Pakistani officials say 40 people were killed and at least 40 others wounded in fierce sectarian clashes in a remote northwestern town . JJ NNS VBP CD NNS VBD VBN CC IN JJS CD NNS VBN IN JJ JJ NNS IN DT JJ JJ NN . A military-imposed curfew is in place in Parachinar , in the semi-autonomous Kurram region , after gunbattles erupted Friday between Sunni and Shi'ite Muslims . DT JJ NN VBZ IN NN IN NNP , IN DT JJ NNP NN , IN NNS VBD NNP IN NNP CC NNP NNPS . The cause of the violence has not been independently confirmed . DT NN IN DT NN VBZ RB VBN RB VBN . But residents have said the trouble began when one group held a demonstration denouncing the other sect . CC NNS VBP VBN DT NN VBD WRB CD NN VBD DT NN VBG DT JJ NN . An official in the tribal region , Sahibzada Mohammad Anis , Saturday told reporters that army helicopters are patrolling the area . DT NN IN DT JJ NN , NNP NNP NNP , NNP VBD NNS IN NN NNS VBP VBG DT NN . Authorities say soldiers have been given shoot-on-sight orders . NNS VBP NNS VBP VBN VBN JJ NNS . The town of Parachinar is located about 250 kilometers southwest of Peshawar , the capital of North West Frontier province . DT NN IN NNP VBZ VBN IN CD NNS JJS IN NNP , DT NN IN NNP NNP NNP NN . Thousands of people have been killed in sectarian violence between Sunnis and Shi'ites in Pakistan since the 1980s . NNS IN NNS VBP VBN VBN IN JJ NN IN NNP CC NNP IN NNP IN DT NNS . More than 100 people have died in the central Democratic Republic of Congo , in what health officials suspect is an outbreak of hemorrhagic fever . JJR IN CD NNS VBP VBN IN DT JJ NNP NNP IN NNP , IN WP NN NNS VBP VBZ DT NN IN JJ NN . The chief health official for Kasai Occidental Province , Jean-Constatin Kanow , says a total of 217 people in four villages have come down with the illness . DT JJ NN NN IN NNP NNP NNP , NNP NNP , VBZ DT NN IN CD NNS IN CD NNS VBP VBN RP IN DT NN . Kanow says the outbreak appears related to the funerals of two village chiefs in early June . NNP VBZ DT NN VBZ VBN TO DT NNS IN CD NN NNS IN JJ NNP . The U.N.-funded IRIN news service quotes him as saying all the people who assisted with those burials have died . DT JJ NNP NN NN VBZ PRP IN VBG PDT DT NNS WP VBD IN DT NNS VBP VBN . Medical teams dispatched the region plan to take blood samples to better identify the illness . JJ NNS VBD DT NN NN TO VB NN NNS TO JJR VB DT NN . In the past , the Democratic Republic of Congo has endured outbreaks of both Marburg and Ebola , two types of hemorrhagic fever caused by viruses that can attack the central nervous system and cause bleeding from the eyes , ears , and other parts of the body . IN DT NN , DT JJ NNP IN NNP VBZ VBN NNS IN DT NNP CC NNP , CD NNS IN JJ NN VBN IN NNS WDT MD VB DT JJ JJ NN CC NN NN IN DT NNS , NNS , CC JJ NNS IN DT NN . The Russian men 's ice hockey team has stormed into the Olympic tournament quarterfinals in Turin , Italy with a dominating 09-Feb victory over Latvia . DT JJ NNS POS NN NN NN VBZ VBN IN DT NNP NN NNS IN NNP , NNP IN DT NN CD NN IN NNP . After dropping the opener to Slovakia , 05-Mar , Russia has won three straight games by a combined score of 15-Feb . IN VBG DT NN TO NNP , CD , NNP VBZ VBN CD JJ NNS IN DT JJ NN IN CD . Ilya Kovalchuk scored four goals Sunday with two in each of the first two periods . NNP NNP VBD CD NNS NNP IN CD IN DT IN DT JJ CD NNS . Russian goaltender Evgeni Nabokov posted consecutive shutout victories over Sweden and Kazakhstan with 48 saves . JJ NN NNP NNP VBD JJ NN NNS IN NNP CC NNP IN CD NNS . Although he allowed one goal by Latvia , he faced only seven shots in two periods before being replaced by his back-up . IN PRP VBD CD NN IN NNP , PRP VBD RB CD NNS IN CD NNS IN VBG VBN IN PRP$ NN . Russia 's victory put the eight-time Olympic champions into the quarterfinals and also clinched a spot for Sweden . NNP POS NN VBD DT JJ NNP NNS IN DT NNS CC RB VBD DT NN IN NNP . Slovakia advanced with a win over the United States ( 02-Jan ) on Saturday , leaving one remaining spot from Group-B . NNP VBD IN DT NN IN DT NNP NNPS LRB CD RRB IN NNP , VBG CD VBG NN IN NNP . China has announced its sixth human bird flu death . NNP VBZ VBN PRP$ JJ NN NN NN NN . Chinese health officials said Wednesday a 35-year-old woman from Sichuan province died last week from the H5N1 strain . JJ NN NNS VBD NNP DT JJ NN IN NNP NN VBD JJ NN IN DT NNP NN . Meanwhile , Turkish officials say bird flu killed an 11-year-old girl on her way to a hospital Wednesday . RB , JJ NNS VBP NN NN VBD DT JJ NN IN PRP$ NN TO DT NN NNP . And Iraqi health officials have sent samples to a lab , suspecting bird flu in the death of 14-year-old girl in the Kurdish city of Suleimaniya . CC JJ NN NNS VBP VBN NNS TO DT NN , VBG NN NN IN DT NN IN JJ NN IN DT JJ NN IN NNP . The news of the deaths came as international donors pledged nearly two billion dollars at a bird flu conference in Beijing , exceeding expectations . DT NN IN DT NNS VBD IN JJ NNS VBD RB CD CD NNS IN DT NN NN NN IN NNP , VBG NNS . The money will be used by poor countries to set up prevention programs . DT NN MD VB VBN IN JJ NNS TO VB RP NN NNS . U.N. officials say the virus - which has spread from southeast Asia and China into Turkey - could soon move into Africa and Europe with devastating effects . NNP NNS VBP DT NN : WDT VBZ VBN IN JJ NNP CC NNP IN NNP : MD RB VB IN NNP CC NNP IN JJ NNS . Bird flu has killed more than 80 people since 2003 . NN NN VBZ VBN JJR IN CD NNS IN CD . Lawmakers in Chad have voted to relax controls on the use of the country 's oil revenue despite objections from the World Bank . NNS IN NNP VBP VBN TO VB NNS IN DT NN IN DT NN POS NN NN IN NNS IN DT NNP NNP . The new legislation abolishes a fund that reserved 10 percent of oil revenue for future generations . DT JJ NN VBZ DT NN WDT VBD CD NN IN NN NN IN JJ NNS . It also doubles the share of revenues to be made available to the public treasury and makes security one of the priority sectors where the money can be spent . PRP RB VBZ DT NN IN NNS TO VB VBN JJ TO DT JJ NN CC VBZ NN NN IN DT NN NNS WRB DT NN MD VB VBN . World Bank President Paul Wolfowitz said in a statement Thursday the legislation is a material breach of the original agreement the bank made with Chad . NNP NNP NNP NNP NNP VBD IN DT NN NNP DT NN VBZ DT NN NN IN DT JJ NN DT NN VBD IN NNP . He says it harms the well-being of Chad 's poorest and most vulnerable citizens . PRP VBZ PRP VBZ DT NN IN NNP POS JJS CC RBS JJ NNS . The bank provided money for Chad 's oil industry with the condition that the central African nation use the profits to reduce poverty . DT NN VBD NN IN NNP POS NN NN IN DT NN IN DT JJ JJ NN VBP DT NNS TO VB NN . Burma is rejecting the latest U.S. report on human trafficking , which blacklisted the country as one of the world 's worst offenders for a seventh consecutive year . NNP VBZ VBG DT JJS NNP NN IN JJ NN , WDT VBD DT NN IN CD IN DT NN POS JJS NNS IN DT JJ JJ NN . Burma 's state-run New Light of Myanmar newspaper quoted a foreign ministry official as saying the annual report lacks objectivity and does not fully reflect Burma 's efforts against human trafficking . NNP POS JJ NNP NNP IN NNP NN VBD DT JJ NN NN IN VBG DT JJ NN VBZ NN CC VBZ RB RB VB NNP POS NNS IN JJ NN . The U.S. State Department 's ' Trafficking in Persons Report ' listed Burma in tier three , meaning it is one of the world 's worst offenders , along with North Korea and Sudan . DT NNP NNP NNP POS `` VBG IN NNP NNP `` VBN NNP IN JJR CD , VBG PRP VBZ CD IN DT NN POS JJS NNS , IN IN NNP NNP CC NNP . Burma 's foreign ministry , however , said that it had taken action against around 400 traffickers in 2006 . NNP POS JJ NN , RB , VBD IN PRP VBD VBN NN IN IN CD NNS IN CD . The United States and the European Union have imposed economic sanctions on Burma to protests human rights abuses and the lack of democratic progress in the military-run country . DT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS IN NNP TO NNS JJ NNS NNS CC DT NN IN JJ NN IN DT JJ NN . Iran has tested new Russian-built air defenses , as part of two-day war games off the Persian Gulf and Sea of Oman . NNP VBZ VBN JJ JJ NN NNS , IN NN IN JJ NN NNS IN DT NNP NNP CC NNP IN NNP . Iran 's Revolutionary Guard commander , Brigadier General Hossein Salami , told state-run media that the military and air force are ' enhancing the defensive capabilities . ' NNP POS NNP NNP NN , NNP NNP NNP NNP , VBD JJ NNS IN DT NN CC NN NN VBP `` VBG DT JJ NNS . `` He said they test-fired their new Russian defense missile system called TOR-M1 . PRP VBD PRP VBD PRP$ JJ JJ NN NN NN VBD NNP . Russia completed delivery of the system last month . NNP VBD NN IN DT NN JJ NN . Wednesday 's test comes as the United States moves a second aircraft carrier to the Gulf . NNP POS NN VBZ IN DT NNP NNPS VBZ DT JJ NN NN TO DT NNP . U.S. Defense Secretary Robert Gates said Friday the Bush administration is not planning to go to war with Iran . NNP NNP NNP NNP NNP VBD NNP DT NNP NN VBZ RB VBG TO VB TO NN IN NNP . The United States and other Western nations accuse Tehran of seeking nuclear weapons . DT NNP NNPS CC JJ JJ NNS VBP NNP IN VBG JJ NNS . But Iran maintains its nuclear program is solely for peaceful purposes . CC NNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS . Hundreds of student supporters of the militant group Hamas have clashed with those backing the ruling Fatah party of Palestinian leader Mahmoud Abbas . NNS IN NN NNS IN DT JJ NN NNP VBP VBN IN DT VBG DT NN NNP NN IN JJ NN NNP NNP . Witnesses say the massive brawl erupted Sunday when several hundred Fatah backers at the West Bank 's Hebron University started shouting their own party 's slogans in the midst of a large Hamas campaign rally for student council elections . NNS VBP DT JJ NN VBD NNP WRB JJ CD NNP NNS IN DT NNP NNP POS NNP NNP VBD VBG PRP$ JJ NN POS NNS IN DT NN IN DT JJ NNP NN NN IN NN NN NNS . Hospital officials say at least eight people were injured . NN NNS VBP IN JJS CD NNS VBD VBN . Hamas , the largest and most powerful Palestinian militant group , has emerged as a key player in Palestinian politics . NNP , DT JJS CC RBS JJ JJ JJ NN , VBZ VBN IN DT JJ NN IN JJ NNS . On Saturday , the Islamic group announced it will end a nearly decade-long boycott and take part in Palestinian parliamentary elections in July . IN NNP , DT NNP NN VBD PRP MD VB DT RB JJ NN CC VB NN IN JJ JJ NNS IN NNP . Venezuelan President Hugo Chavez says he plans to raise taxes on foreign oil companies in Venezuela . JJ NNP NNP NNP VBZ PRP VBZ TO VB NNS IN JJ NN NNS IN NNP . Mr. Chavez Sunday described the move as a ' tax on extraction , ' saying it would create one billion dollars in new state revenue . NNP NNP NNP VBD DT NN IN DT `` NN IN NN , `` VBG PRP MD VB CD CD NNS IN JJ NN NN . He made the announcement Sunday during his weekly television and radio program . PRP VBD DT NN NNP IN PRP$ JJ NN CC NN NN . The new tax will be 33 percent - up from 16.7 percent . DT JJ NN MD VB CD NN IN RB IN CD NN . Mr. Chavez has accused foreign oil companies of exploiting his country 's vast petroleum reserves without paying sufficient taxes , and has taken steps to increase revenue from the industry . NNP NNP VBZ VBN JJ NN NNS IN VBG PRP$ NN POS JJ NN NNS IN VBG JJ NNS , CC VBZ VBN NNS TO VB NN IN DT NN . American skier Bode Miller has captured the Vancouver Olympic gold medal in the men 's super-combined event , which combines one downhill run with one slalom run . JJ NN NNP NNP VBZ VBN DT NNP NNP NN NN IN DT NNS POS JJ NN , WDT VBZ CD NN NN IN CD NN NN . After finishing seventh in the opening downhill run in Whistler , British Columbia Sunday , the 32-year-old Miller skied one of the fastest slalom . IN VBG JJ IN DT NN NN NN IN NNP , NNP NNP NNP , DT JJ NNP VBD CD IN DT JJS NN . He finished with a two-run combined time of two minutes and 44.92 seconds . PRP VBD IN DT JJ JJ NN IN CD NNS CC CD NNS . Ivica Kostelic of Croatia took the silver medal , 33/100ths of a second back , while Silvan Zurbriggen of Switzerland took the bronze , another 7/100ths behind . NNP NNP IN NNP VBD DT NN NN , NNS IN DT JJ NN , IN NNP NNP IN NNP VBD DT NN , DT CD NN . With the win , Miller now has three medals in Vancouver - the super-combined gold , a silver in the super-G and the downhill bronze . IN DT NN , NNP RB VBZ CD NNS IN NNP IN DT JJ NN , DT NN IN DT NN CC DT NN NN . South Africa is sending a representative to next week 's Middle East peace conference in the U.S. city of Annapolis , Maryland near Washington . NNP NNP VBZ VBG DT NN TO JJ NN POS NNP NNP NN NN IN DT NNP NN IN NNP , NNP IN NNP . In a statement Saturday the South African government says Foreign Affairs Minister Nkosazana Dlamini-Zuma will participate in the summit designed to find a peaceful resolution to the Israeli-Palestinian conflict . IN DT NN NNP DT JJ JJ NN VBZ NNP NNP NNP NNP NNP MD VB IN DT NN VBN TO VB DT JJ NN TO DT JJ NN . The Foreign Affairs Ministry says South Africa hopes to share its experience transitioning from apartheid to democracy as part of the international effort to achieve peace in the Middle East . DT NNP NNP NNP VBZ NNP NNP VBZ TO VB PRP$ NN VBG IN NN TO NN IN NN IN DT JJ NN TO VB NN IN DT NNP NNP . Israeli Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas are scheduled to attend the peace summit . JJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBP VBN TO VB DT NN NN . Saudi Arabia which has no diplomatic ties with Israel will also be in attendance . NNP NNP WDT VBZ DT JJ NNS IN NNP MD RB VB IN NN . The U.S. State Department says Washington has invited some 50 nations and entities to the conference to be held Tuesday . DT NNP NNP NNP VBZ NNP VBZ VBN DT CD NNS CC NNS TO DT NN TO VB VBN NNP . A top Spanish court has announced that it will no longer handle fast-track extraditions for Germany after that country refused to hand over a suspected al-Qaida member to Madrid . DT JJ JJ NN VBZ VBN IN PRP MD RB RB VB JJ NNS IN NNP IN DT NN VBD TO VB IN DT JJ NNP NN TO NNP . The court , in Madrid , announced the policy change Wednesday , saying it will now revert to the the old , much slower way of processing extradition to Germany . DT NN , IN NNP , VBD DT NN NN NNP , VBG PRP MD RB VB TO DT DT JJ , RB JJR NN IN VBG NN TO NNP . Spain 's move comes after Germany 's top court in July ordered the release of Mamoun Darkazanli , a dual German-Syrian citizen indicted in Spain as an al-Qaida suspect . NNP POS NN VBZ IN NNP POS JJ NN IN NNP VBD DT NN IN NNP NNP , DT JJ JJ NN VBN IN NNP IN DT NNP NN . Germany 's Federal Constitutional court said the EU arrest warrant for Mr. Darkazanli violated the country 's constitution . NNP POS NNP NNP NN VBD DT NNP NN NN IN NNP NNP VBD DT NN POS NN . Spain is holding 50 suspects wanted by Germany on charges such as fraud , drug trafficking and robbery . NNP VBZ VBG CD NNS VBN IN NNP IN NNS JJ IN NN , NN NN CC NN . The Spanish court says it will give German authorities 40 days to present standard extradition documents . DT JJ NN VBZ PRP MD VB JJ NNS CD NNS TO JJ JJ NN NNS . If Germany fails to do so , Spain will release the suspects . IN NNP VBZ TO VB RB , NNP MD VB DT NNS . Russian Defense Minister Sergei Ivanov says his government would be worried by any U.S. and NATO attempts to further expand their influence into the former Soviet sphere . JJ NNP NNP NNP NNP VBZ PRP$ NN MD VB VBN IN DT NNP CC NNP NNS TO RBR VB PRP$ NN IN DT JJ JJ NN . At a speech to the American Council for International Relations in New York Thursday , Mr. Ivanov said Russia sees no sense in further NATO enlargement . IN DT NN TO DT NNP NNP IN NNP NNPS IN NNP NNP NNP , NNP NNP VBD NNP VBZ DT NN IN JJ NNP NN . The 26-member organization added seven European countries last year . DT JJ NN VBD CD JJ NNS JJ NN . He also said Russia is concerned about American military presence in Georgia , a former Soviet republic where a pro-U.S. president came to power last year following a popular uprising . PRP RB VBD NNP VBZ VBN IN JJ JJ NN IN NNP , DT JJ JJ NN WRB DT JJ NN VBD TO NN JJ NN VBG DT JJ NN . Mr. Ivanov stressed that Russia is not opposed to U.S. training of Georgian peacekeepers for overseas missions . NNP NNP VBD IN NNP VBZ RB VBN TO NNP NN IN JJ NNS IN JJ NNS . But he says Moscow would not like Georgian peacekeepers to get involved in conflicts in the Caucasus . CC PRP VBZ NNP MD RB VB JJ NNS TO VB VBN IN NNS IN DT NNP . A top World Health Organization official says the H1N1 swine flu virus is ' unstoppable ' and says every country needs the vaccine . DT JJ NNP NNP NNP NN VBZ DT NNP NN NN NN VBZ `` JJ `` CC VBZ DT NN VBZ DT NN . WHO vaccine research chief Marie-Paule Kieny said Monday that health care workers should get immunized first because they are needed during an outbreak . NNP NN NN NN NNP NNP VBD NNP IN NN NN NNS MD VB VBN RB IN PRP VBP VBN IN DT NN . She said authorities must then decide who gets shots next . PRP VBD NNS MD RB VB WP VBZ NNS JJ . Swine flu is mild in healthy people and most victims do not need hospitalization . NNP NN VBZ JJ IN JJ NNS CC JJS NNS VBP RB VB NN . But the virus can be severe and even deadly in those with other serious health concerns , including asthma and pregnancy . CC DT NN MD VB JJ CC RB JJ IN DT IN JJ JJ NN NNS , VBG NN CC NN . Researchers also say that extreme obesity is now considered a risk factor for a severe reaction . NNS RB VBP IN JJ NN VBZ RB VBN DT NN NN IN DT JJ NN . Meanwhile , officials in Britain , Thailand , and the Philippines all reported new swine flu deaths Monday . RB , NNS IN NNP , NNP , CC DT NNPS DT VBD JJ JJ NN NNS NNP . The latest WHO report confirms nearly 95,000 swine flu cases around the world , with 429 deaths . DT JJS NNP NN VBZ RB CD JJ NN NNS IN DT NN , IN CD NNS . Pakistan 's Prime Minister Shaukat Aziz Pakistani Prime Minister says Pakistan wants the peaceful settlement of its dispute with India over Kashmir but will never accept the ceasefire Line of Control as a permanent border . NNP POS NNP NNP NNP NNP JJ NNP NNP VBZ NNP VBZ DT JJ NN IN PRP$ NN IN NNP IN NNP CC MD RB VB DT JJ NN IN NNP IN DT JJ NN . The dispute over the Himalayan region is at the heart of decades of tension between South Asia 's nuclear-armed rivals . DT NN IN DT JJ NN VBZ IN DT NN IN NNS IN NN IN NNP NNP POS JJ NNS . Speaking to legislators of Pakistani-ruled Kashmir in Muzaffarabad Thursday , Mr. Aziz said Pakistan has always emphasized that differences with India should be resolved through ' meaningful and constructive ' dialogue . VBG TO NNS IN JJ NNP IN NNP NNP , NNP NNP VBD NNP VBZ RB VBN IN NNS IN NNP MD VB VBN IN `` JJ CC JJ `` NN . But he said Pakistan can not agree to any proposal that aims at converting the existing Line of Control into a permanent border . CC PRP VBD NNP MD RB VB TO DT NN WDT VBZ IN VBG DT VBG NN IN NNP IN DT JJ NN . He also said the ongoing peace process between the two rivals is irreversible and they will have to show courage and flexibility to continue the dialogue . PRP RB VBD DT JJ NN NN IN DT CD NNS VBZ JJ CC PRP MD VB TO VB NN CC NN TO VB DT NN . The billionaire founder of Facebook , and 16 other extremely wealthy individuals and families in the United States have agreed to give most of their fortunes to charity . DT NN NN IN NNP , CC CD JJ RB JJ NNS CC NNS IN DT NNP NNPS VBP VBN TO VB JJS IN PRP$ NNS TO NN . Mark Zuckerberg 's social media empire is estimated to have earned him $ 6.9 billion . NNP NNP POS JJ NNS NN VBZ VBN TO VB VBN PRP $ CD CD . The 26-year old entrepreneur says some wealthy people wait until late in their lives to give back . DT JJ JJ NN VBZ DT JJ NNS VB IN JJ IN PRP$ NNS TO VB RP . He says it is a mistake to wait ' when there is so much to be done . ' PRP VBZ PRP VBZ DT NN TO VB `` WRB EX VBZ RB RB TO VB VBN . `` The new donors have joined a charitable project called the ' Giving Pledge ' started by billionaires Warren Buffett and Bill Gates . DT JJ NNS VBP VBN DT JJ NN VBD DT `` VBG NNP `` VBN IN NNS NNP NNP CC NNP NNP . The group now has 57 members and is looking for new recruits outside the United States . DT NN RB VBZ CD NNS CC VBZ VBG IN JJ NNS IN DT NNP NNPS . The pledges come at a time when the economic crisis has increased the need for social services and decreased overall charitable donations . DT NNS VBP IN DT NN WRB DT JJ NN VBZ VBN DT NN IN JJ NNS CC VBN JJ JJ NNS . The cholera epidemic ravaging Zimbabwe has commanded the attention of public authorities and international relief organizations , but meanwhile a less-visible tragedy is unfolding among those living with - and dying in large numbers from - HIV / AIDS . DT NN NN VBG NNP VBZ VBN DT NN IN JJ NNS CC JJ NN NNS , CC RB DT JJ NN VBZ VBG IN DT VBG IN ; CC JJ IN JJ NNS IN ; NNP NNP NNP . HIV / AIDS advocates say resources have been concentrated on fighting the cholera epidemic , draining funds away from programs supporting those living with HIV / AIDS , who are highly vulnerable to the cholera bacterium which is almost ubiquitous in the country . NNP NNP NNP NNS VBP NNS VBP VBN VBN IN VBG DT NN NN , VBG NNS RB IN NNS VBG DT VBG IN NNP NNP NNP , WP VBP RB JJ TO DT NN NN WDT VBZ RB JJ IN DT NN . Research suggests about 15 % of Zimbabwe 's population is HIV-positive . NNP VBZ IN CD NN IN NNP POS NN VBZ JJ . Frenk Guni , technical director for HIV-AIDS with Management Systems International in Washington , told reporter Patience Rusere of VOA 's Studio 7 for Zimbabwe that someone is dying from HIV / AIDS every three minutes in Zimbabwe . NNP NNP , JJ NN IN NNS IN NNP NNP NNP IN NNP , VBD NN NNP NNP IN NNP POS NNP CD IN NNP IN DT VBZ VBG IN NNP NNP NNP DT CD NNS IN NNP . More reports from VOA 's Studio 7 for Zimbabwe ... JJR NNS IN NNP POS NNP CD IN NNP : European Union foreign ministers have renewed sanctions against Burma 's military rulers for another year . NNP NNP JJ NNS VBP VBN NNS IN NNP POS JJ NNS IN DT NN . Under the sanctions , members of the ruling military junta and their families are barred from entering the EU . IN DT NNS , NNS IN DT NN JJ NN CC PRP$ NNS VBP VBN IN VBG DT NNP . The measures also ban EU companies and organizations from doing business in Burma . DT NNS RB VBP NNP NNS CC NNS IN VBG NN IN NNP . The 25-member bloc initially imposed the sanctions in 1996 after Rangoon failed to meet EU demands for democratic reforms . DT JJ NN RB VBD DT NNS IN CD IN NNP VBD TO VB NNP NNS IN JJ NNS . The EU also wants pro-democracy leader Aung San Suu Kyi to be released from house arrest . DT NNP RB VBZ JJ NN NNP NNP NNP NNP TO VB VBN IN NN NN . Burma 's military rulers are coming under increasing pressure to implement democratic reforms . NNP POS JJ NNS VBP VBG IN VBG NN TO VB JJ NNS . There are calls to deny Burma its scheduled chairmanship of the Association of Southeast Asian Nations ( ASEAN ) in 2006 . EX VBP NNS TO VB NNP PRP$ JJ NN IN DT NNP IN NNP NNP NNP LRB NNP RRB IN CD . Center-left candidate Alvaro Colom is holding the lead as official return are counted from Guatemala 's run-off presidential election . JJ NN NNP NNP VBZ VBG DT NN IN JJ NN VBP VBN IN NNP POS JJ JJ NN . With ballots from 68 percent of the nation 's polling stations counted Sunday night , Colom had 51.4 percent of the vote , to 41.6 percent for retired General Otto Perez Molina . IN NNS IN CD NN IN DT NN POS NN NNS VBN NNP NN , NNP VBD CD NN IN DT NN , TO CD NN IN JJ NNP NNP NNP NNP . Colom and Perez were the top two finishers in the first-round presidential election , in September . NNP CC NNP VBD DT JJ CD NNS IN DT JJ JJ NN , IN NNP . Perez based his campaign on pledges to fight crime and combat drug trafficking . NNP VBD PRP$ NN IN NNS TO VB NN CC NN NN NN . Colom 's platform focused on poverty issues . NNP POS NN VBD IN NN NNS . About 50 people died in election-related violence before September 's vote , making it the deadliest political campaign since Guatemala 's 36-year civil war ended in 1996 . IN CD NNS VBD IN JJ NN IN NNP POS NN , VBG PRP DT JJS JJ NN IN NNP POS JJ JJ NN VBN IN CD . Gunmen in Guatemala City killed a Perez aide last month . NNS IN NNP NNP VBD DT NNP NN JJ NN . The retired general has linked the killing to his vow to crack down on drug trafficking . DT JJ NN VBZ VBN DT NN TO PRP$ NN TO VB RP IN NN NN . The best-known U.S. stock market index , the Dow Jones Industrial Average , rose higher than ever before Wednesday , passing the 13,000 mark for the first time . DT JJ NNP NN NN NN , DT NNP NNP NNP NNP , VBD JJR IN RB IN NNP , VBG DT CD NN IN DT JJ NN . The Dow rose as high as 13,107 during trading , before easing slightly to 13,090 at the close . DT NNP VBD RB JJ IN CD IN NN , IN VBG RB TO CD IN DT NN . Major companies like Amazon and Boeing reported stronger earnings than investors expected , giving them hope these corporations will continue to prosper even though the U.S. economy is slowing down . JJ NNS IN NNP CC NNP VBD JJR NNS IN NNS VBN , VBG PRP VBP DT NNS MD VB TO VB RB IN DT NNP NN VBZ VBG RP . The Dow also gained after Alcoa said it might sell parts of its business , and economic reports showed rising orders for manufactured goods and rising sales for new homes . DT NNP RB VBD IN NNP VBD PRP MD VB NNS IN PRP$ NN , CC JJ NNS VBD VBG NNS IN JJ NNS CC VBG NNS IN JJ NNS . The Dow Jones Industrial Average is a composite measure of what are called ' blue-chip ' stocks from the biggest U.S. companies in a variety of industries . DT NNP NNP NNP NNP VBZ DT JJ NN IN WP VBP VBN `` JJ `` NNS IN DT JJS NNP NNS IN DT NN IN NNS . Colombian officials say 552 right-wing paramilitary fighters have turned over their weapons as part of an on-going peace agreement with the government . JJ NNS VBP CD JJ JJ NNS VBP VBN RP PRP$ NNS IN NN IN DT JJ NN NN IN DT NN . Colombia 's Peace Commission says the weapons were turned in at a ceremony Thursday in Santuario , nearly 300 kilometers west of the capital , Bogota . NNP POS NNP NNP VBZ DT NNS VBD VBN RP IN DT NN NNP IN NNP , RB CD NNS JJS IN DT NN , NNP . The militia men were from a group known as the Heroes and Martyrs of Guatica , a faction of the United Self-Defense Forces of Colombia . DT NN NNS VBD IN DT NN VBN IN DT NNP CC NNP IN NNP , DT NN IN DT NNP NNP NNS IN NNP . Peace Commissioner Luis Carlos Restrepo attended the ceremony , along with other officials . NNP NNP NNP NNP NNP VBD DT NN , IN IN JJ NNS . The commission says more than 13,000 paramilitary fighters have now turned over their weapons and will take part in programs designed to reintegrate the fighters into society . DT NN VBZ JJR IN CD JJ NNS VBP RB VBN RP PRP$ NNS CC MD VB NN IN NNS VBN TO VB DT NNS IN NN . Colombia has been mired in a nearly 40-year conflict between leftist rebels , rightist paramilitaries and the government . NNP VBZ VBN VBN IN DT RB JJ NN IN JJ NNS , JJ NNS CC DT NN . The conflict leaves thousands of people dead each year . DT NN VBZ NNS IN NNS JJ DT NN . Crude oil prices fell after some downbeat economic reports pointed to a deeper recession in the United States , which would push energy demand down . JJ NN NNS VBD IN DT JJ JJ NNS VBD TO DT JJR NN IN DT NNP NNPS , WDT MD VB NN NN RB . Traders also expect a U.S. government report to show continued growth of oil inventories in the world 's biggest energy market . NNS RB VBP DT NNP NN NN TO VB JJ NN IN NN NNS IN DT NN POS JJS NN NN . The price of a barrel of oil for future delivery fell more than $ 4 to hit $ 41.67 at the close of trading in New York . DT NN IN DT NN IN NN IN JJ NN VBD JJR IN $ CD TO VB $ CD IN DT NN IN NN IN NNP NNP . Oil has fallen as low as $ 33 a barrel recently , and hit an all-time high above $ 147 a barrel last July . NNP VBZ VBN RB JJ IN $ CD DT NN RB , CC VBD DT JJ NN IN $ CD DT NN JJ NNP . AIDS activists in South Africa are expressing outrage over testimony by former Deputy President Jacob Zuma at his trial on rape charges . NNP NNS IN NNP NNP VBP VBG NN IN NN IN JJ NNP NNP NNP NNP IN PRP$ NN IN NN NNS . In court Wednesday , Zuma said he showered after having unprotected sex with his accuser in order to minimize the chance of acquiring AIDS . IN NN NNP , NNP VBD PRP VBD IN VBG JJ NN IN PRP$ NN IN NN TO VB DT NN IN VBG NNP . Zuma 's 31-year-old accuser has HIV , the virus that causes AIDS . NNP POS JJ NN VBZ NNP , DT NN WDT VBZ NNP . Zuma is not infected . NNP VBZ RB JJ . He says the sexual contact was consensual . PRP VBZ DT JJ NN VBD JJ . AIDS activists say Zuma 's testimony undermines the nation 's prevention campaign . NNP NNS VBP NNP POS NN VBZ DT NN POS NN NN . They say it gives the impression that men who do not use a condom during intercourse with HIV-positive women are not at risk . PRP VBP PRP VBZ DT NN IN NNS WP VBP RB VB DT NN IN NN IN JJ NNS VBP RB IN NN . Some five million people in South Africa suffer from AIDS , the greatest number of any country in the world . DT CD CD NNS IN NNP NNP VBP IN NNP , DT JJS NN IN DT NN IN DT NN . Zuma is the former head of South Africa 's AIDS Council . NNP VBZ DT JJ NN IN NNP NNP POS NNP NNP . South Africa 's government is often accused of not taking AIDS seriously . NNP NNP POS NN VBZ RB VBN IN RB VBG NNP RB . Authorities in Japan say they have detected signs of bird flu at a farm north of Tokyo . NNS IN NNP VBP PRP VBP VBN NNS IN NN NN IN DT NN NN IN NNP . Japan 's Kyodo news agency said Monday officials plan to kill 82,000 chickens at the farm . NNP POS NNP NN NN VBD NNP NNS VBP TO VB CD NNS IN DT NN . The farm is in a quarantined area of Ibaraki prefecture , where media reports say approximately 1.5 million birds have already been culled because of past bird-flu outbreaks . DT NN VBZ IN DT JJ NN IN NNP NN , WRB NNS NNS VBP RB CD CD NNS VBP RB VBN VBN IN IN JJ NN NNS . It was not clear if the bird flu detected in Japan was the H5N1 strain of the virus that has killed more than 60 people in Asia over the past two years . PRP VBD RB JJ IN DT NN NN VBN IN NNP VBD DT NNP NN IN DT NN WDT VBZ VBN JJR IN CD NNS IN NNP IN DT JJ CD NNS . Meanwhile , Vietnam is calling for more international assistance to help it fight avian influenza . RB , NNP VBZ VBG IN JJR JJ NN TO VB PRP VB JJ NN . A Vietnamese official asked for help at a meeting of health and disaster officials from the Asia-Pacific Economic Cooperation forum in Brisbane , Australia . DT JJ NN VBD IN NN IN DT NN IN NN CC NN NNS IN DT NNP NNP NNP NN IN NNP , NNP . The APEC officials are discussing contingency plans in case H5N1 strain of the bird-flu virus begins spreading between humans . DT NNP NNS VBP VBG NN NNS IN NN NNP NN IN DT NN NN VBZ VBG IN NNS . Iraqi officials say they have a fugitive half-brother and former adviser to ousted president Saddam Hussein in custody . JJ NNS VBP PRP VBP DT JJ NN CC JJ NN TO JJ NN NNP NNP IN NN . Authorities have not released details of the arrest of Sabawi Ibrahim al-Hasan . NNS VBP RB VBN NNS IN DT NN IN NNP NNP NNP . But there are reports that Syria was involved in the capture . CC EX VBP NNS IN NNP VBD VBN IN DT NN . The Associated Press says Damascus handed over the former intelligence chief early Sunday as a goodwill gesture . DT NNP NNP VBZ NNP VBD IN DT JJ NN NN JJ NNP IN DT NN NN . Sabawi Ibrahim al-Hasan was number 36 on a U.S. list of the most wanted people in Iraq . NNP NNP NNP VBD NN CD IN DT NNP NN IN DT RBS JJ NNS IN NNP . He had a bounty on his head of one million dollars . PRP VBD DT NN IN PRP$ NN IN CD CD NNS . In other developments , a bombing at a police station killed at least five Iraqis Sunday near the northern city of Mosul . IN JJ NNS , DT NN IN DT NN NN VBD IN JJS CD NNS NNP IN DT JJ NN IN NNP . British media report that two British hostages kidnapped in Iraq two years ago are believed to be dead . JJ NNS NN IN CD JJ NNS VBN IN NNP CD NNS RB VBP VBN TO VB JJ . Reports say the British Foreign Office told the families of the two last week that it believed the men were dead . NNS VBP DT NNP NNP NNP VBD DT NNS IN DT CD JJ NN IN PRP VBD DT NNS VBD JJ . The two were among a group of five Britons who were seized from an Iraqi Finance Ministry building in Baghdad by men disguised as Iraqi police in 2007 . DT CD VBD IN DT NN IN CD NNS WP VBD VBN IN DT JJ NNP NNP NN IN NNP IN NNS VBN IN JJ NN IN CD . The bodies of two of the other hostages were handed over to British authorities last month . DT NNS IN CD IN DT JJ NNS VBD VBN IN TO JJ NNS JJ NN . The fate of the fifth hostage remains unclear and the Foreign Office says all efforts are being made to secure his release . DT NN IN DT JJ NN VBZ JJ CC DT NNP NNP VBZ DT NNS VBP VBG VBN TO VB PRP$ NN . A group calling itself the Islamic Shi'ite Resistance in Iraq says it is behind the abductions . DT NN VBG PRP DT NNP NNP NNP IN NNP VBZ PRP VBZ IN DT NNS . The main Marxist ally of Sri Lanka 's ruling coalition government has quit in protest over a plan to share the distribution of tsunami aid with the Tamil Tiger rebels . DT JJ JJ NN IN NNP NNP POS NN NN NN VBZ VBN IN NN IN DT NN TO VB DT NN IN NN NN IN DT NNP NNP NNS . The People 's Liberation Front , popularly known as the JVP , has 39 seats in the 225-seat parliament in which President Chandrika Kumaratunga has only a five-seat majority . DT NNS POS NNP NNP , RB VBN IN DT NNP , VBZ CD NNS IN DT JJ NN IN WDT NNP NNP NNP VBZ RB DT JJ NN . President Kumaratunga wants to share the distribution of tsunami aid with the Tamil Tigers as an opportunity to forge peace with them . NNP NNP VBZ TO VB DT NN IN NN NN IN DT NNP NNP IN DT NN TO VB NN IN PRP . The donors also have insisted on a joint aid-distribution mechanism . DT NNS RB VBP VBN IN DT JJ NN NN . But the JVP and the country 's influential Buddhist monks have opposed the move , saying such an agreement would help the rebels ' cause for a separate state . CC DT NNP CC DT NN POS JJ NN NNS VBP VBN DT NN , VBG JJ DT NN MD VB DT NNS POS NN IN DT JJ NN . Reports from Colombo say the pullout may not bring the government down because the president has secured support of some of the opposition lawmakers in parliament . NNS IN NNP VBP DT NN MD RB VB DT NN RB IN DT NN VBZ VBN NN IN DT IN DT NN NNS IN NN . Polls are open in all four of the U.S. states holding primary elections today Tuesday as U.S. Senators Hillary Clinton and Barack Obama battle for support for the Democratic Party nomination . NNS VBP JJ IN DT CD IN DT NNP NNS VBG JJ NNS NN NNP IN NNP NNP NNP NNP CC NNP NNP NN IN NN IN DT JJ NNP NN . Texas and Ohio are the two key states in Tuesday 's balloting , because they have many more delegates than the small northeastern states of Vermont and Rhode Island . NNP CC NNP VBP DT CD JJ NNS IN NNP POS NN , IN PRP VBP JJ JJR NNS IN DT JJ JJ NNS IN NNP CC NNP NNP . Delegates choose the party 's nominee for the presidential race . NNS VBP DT NN POS NN IN DT JJ NN . Clinton lags behind Obama , with 11 straight losses in primaries and caucuses . NNP VBZ IN NNP , IN CD JJ NNS IN NNS CC NNS . Former U.S. President Bill Clinton has said his wife needs to win both Texas and Ohio to keep her campaign alive . JJ NNP NNP NNP NNP VBZ VBN PRP$ NN VBZ TO VB DT NNP CC NNP TO VB PRP$ NN JJ . On the Republican side , Senator John McCain seems on the verge of clinching his party 's nomination . IN DT JJ NN , NNP NNP NNP VBZ IN DT NN IN VBG PRP$ NN POS NN . Senator McCain could secure the Republican Party nomination with victories Tuesday . NNP NNP MD VB DT NNP NNP NN IN NNS NNP . He has a commanding lead over former Arkansas Governor Mike Huckabee . PRP VBZ DT JJ NN IN JJ NNP NNP NNP NNP . Egypt 's top cleric has angrily condemned those responsible for last week 's terrorist bombings in Sharm el-Sheikh . NNP POS JJ NN VBZ RB VBN DT JJ IN JJ NN POS JJ NNS IN NNP NNP . Speaking in that Red Sea resort town , the grand imam of the Al-Azhar mosque , Mohammed Sayyed Tantawi , rejected terrorist attacks in the name of Islam . VBG IN DT NNP NNP NN NN , DT JJ NN IN DT NNP NN , NNP NNP NNP , VBD JJ NNS IN DT NN IN NNP . He said the bombers will be cursed by God . PRP VBD DT NNS MD VB VBN IN NNP . Egyptian officials say 64 people died in the blasts , but local doctors say the death toll is nearly 90 . JJ NNS VBP CD NNS VBD IN DT NNS , CC JJ NNS VBP DT NN NN VBZ RB CD . The grand imam called on Egyptians to help find those responsible for the attacks . DT JJ NN VBN IN NNS TO VB VB DT JJ IN DT NNS . Egypt 's President Hosni Mubarak has called for an Arab summit next month in Sharm el-Sheikh to discuss terrorism and other concerns . NNP POS NNP NNP NNP VBZ VBN IN DT JJ NN JJ NN IN NNP NNP TO VB NN CC JJ NNS . Thousands of military personnel from several countries have been deployed to hard-hit areas of the Indian Ocean tsunami . NNS IN JJ NNS IN JJ NNS VBP VBN VBN TO JJ NNS IN DT NNP NNP NN . Worldwide public and private aid pledges now top $ 5 billion , but those contributions do not include the cost of the military personnel that relief workers say are urgently needed to deliver aid to remote areas . RB JJ CC JJ NN NNS RB VBP $ CD CD , CC DT NNS VBP RB VB DT NN IN DT JJ NNS IN NN NNS VBP VBP RB VBN TO VB NN TO VB NNS . The United Nations-coordinated effort includes 16,000 U.S. forces , 16,000 Indian troops and 350 Australian military personnel . DT NNP NNP NN VBZ CD NNP NNS , CD JJ NNS CC CD JJ JJ NNS . Pakistan and Spain each plan to deploy some 500 military personnel . NNP CC NNP DT NN TO VB DT CD JJ NNS . Japan expects to send about 1,000 troops . NNP VBZ TO VB RB CD NNS . Countries as far away as Switzerland , Germany and Russia have contributed aircraft , ships and tons of supplies for the relief effort . NNS IN RB RB IN NNP , NNP CC NNP VBP VBN NN , NNS CC NNS IN NNS IN DT NN NN . Large so-called ' floating hospitals , ' capable of purifying water and accommodating hundreds of victims , also have been deployed to the region . JJ JJ `` VBG NNS , `` JJ IN VBG NN CC VBG NNS IN NNS , RB VBP VBN VBN TO DT NN . Police in the Iraqi city of Najaf say at least three civilians have been killed in a car bombing Saturday , less than a week after an attack there killed 52 people . NNS IN DT JJ NN IN NNP VBP IN JJS CD NNS VBP VBN VBN IN DT NN VBG NNP , JJR IN DT NN IN DT NN RB VBD CD NNS . Initial details are sketchy , but police say the incident occurred on the highway between the Shi'ite holy cities of Najaf and Karbala and appeared to have targeted a U.S. military convoy . JJ NNS VBP JJ , CC NNS VBP DT NN VBD IN DT NN IN DT NNP JJ NNS IN NNP CC NNP CC VBD TO VB VBN DT NNP JJ NN . There was no word on whether there were U.S. casualties . EX VBD DT NN IN IN EX VBD NNP NNS . Meanwhile , Najaf 's governor says police have arrested a group of men suspected of having organized last Sunday 's attack and an announcement would be made in Baghdad next week . RB , NNP POS NN VBZ NNS VBP VBN DT NN IN NNS VBN IN VBG VBN JJ NNP POS NN CC DT NN MD VB VBN IN NNP JJ NN . In Baghdad , it was a bleak Christmas for the city 's small Christian community . IN NNP , PRP VBD DT JJ NNP IN DT NN POS JJ JJ NN . Further unnerved by an apparent suicide attack Christmas Eve that killed nine people , the city 's churches were mostly empty today . RB VBN IN DT JJ NN NN NNP NNP WDT VBD CD NNS , DT NN POS NNS VBD RB JJ NN . Pakistan has condemned India 's remarks on the escalating violence in Baluchistan province , warning that such statements are unhelpful and will not improve bilateral relations . NNP VBZ VBN NNP POS NNS IN DT VBG NN IN NNP NN , VBG IN JJ NNS VBP JJ CC MD RB VB JJ NNS . India 's Foreign Ministry spokesman Navtej Sarna last week expressed concern over what he called the ' spiraling violence ' between Pakistani security forces and restive tribesmen in Baluchistan province . NNP POS NNP NNP NN NNP NNP JJ NN VBD NN IN WP PRP VBD DT `` VBG NN `` IN JJ NN NNS CC JJ NNS IN NNP NN . Pakistan 's Foreign Ministry spokeswoman Tasnim Aslam told reporters in Islamabad that India should mind its own business . NNP POS NNP NNP NN NNP NNP VBD NNS IN NNP IN NNP MD VB PRP$ JJ NN . In recent weeks , Pakistani army helicopters and ground troops have overrun suspected training bases in Baluchistan thought to be used by militants for attacks on government installations . IN JJ NNS , JJ NN NNS CC NN NNS VBP VBN JJ NN NNS IN NNP VBN TO VB VBN IN NNS IN NNS IN NN NNS . Baluch tribesmen have been launching attacks to press their demands for an increase in royalties for resources extracted in their areas . NNP NNS VBP VBN VBG NNS TO VB PRP$ NNS IN DT NN IN NNS IN NNS VBN IN PRP$ NNS . Ms. Aslam warned that such Indian criticism could weaken attempts by the neighboring countries to resolve bilateral issues , including the long-standing dispute over Kashmir . NNP NNP VBD IN JJ JJ NN MD VB NNS IN DT JJ NNS TO VB JJ NNS , VBG DT JJ NN IN NNP . Pakistani authorities say gunmen on a motorcycle have killed three Chinese engineers and their Pakistani driver in the troubled southwestern Baluchistan province . JJ NNS VBP NNS IN DT NN VBP VBN CD JJ NNS CC PRP$ JJ NN IN DT JJ JJ NNP NN . Local police say the drive-by shooting occurred Wednesday in a remote town southeast of the provincial capital , Quetta . JJ NNS VBP DT JJ NN VBD NNP IN DT JJ NN NN IN DT JJ NN , NNP . The Associated Press says a tribal militant group , the Baluchistan Liberation Army , claimed responsibility for the attack . DT NNP NNP VBZ DT JJ JJ NN , DT NNP NNP NNP , VBD NN IN DT NN . In a separate development , in the North Waziristan tribal region bordering Afghanistan , Pakistani security forces arrested two men late Tuesday on suspicion of links with al-Qaida . IN DT JJ NN , IN DT NNP NNP JJ NN VBG NNP , JJ NN NNS VBN CD NNS JJ NNP IN NN IN NNS IN NNP . Pakistan 's army has conducted a series of counter-terrorism operations in North and South Waziristan in the past three years , aimed at trapping Arab , Afghan and Central Asian militants with links to the Taliban and al-Qaida . NNP POS NN VBZ VBN DT NN IN NN NNS IN NNP CC NNP NNP IN DT JJ CD NNS , VBN IN VBG NNP , JJ CC NNP NNP NNS IN NNS TO DT NNP CC NNP . Cuba has placed two large billboards with pictures of U.S. soldiers abusing Iraqi prisoners near the U.S. mission in Havana -- in apparent retaliation for a dispute over the mission 's Christmas decorations . NNP VBZ VBN CD JJ NNS IN NNS IN NNP NNS VBG JJ NNS IN DT NNP NN IN NNP : IN JJ NN IN DT NN IN DT NN POS NNP NNS . The billboards contain photographs of hooded Iraqi detainees from Baghdad 's notorious Abu Ghraib prison , as well as an image of a swastika and the word ' fascists . ' DT NNS VBP NNS IN JJ JJ NNS IN NNP POS JJ NNP NNP NN , RB RB IN DT NN IN DT NN CC DT NN `` NNS . `` There was no immediate reaction from the United States . EX VBD DT JJ NN IN DT NNP NNPS . The large signs went up Friday , three days after the Cuban government threatened consequences for Christmas decorations displayed outside the offices of the U.S. special interest section . DT JJ NNS VBD RB NNP , CD NNS IN DT JJ NN VBD NNS IN NNP NNS VBD IN DT NNS IN DT NNP JJ NN NN . A U.S. official said Cuba was upset because the decorations include a neon sign with the number ' 75 ' on it -- a reference to the 75 political dissidents imprisoned in Cuba last year . DT NNP NN VBD NNP VBD VBN IN DT NNS VBP DT NN NN IN DT NN `` CD `` IN PRP IN DT NN TO DT CD JJ NNS VBN IN NNP JJ NN . Cuba and the United States do not have diplomatic relations . NNP CC DT NNP NNPS VBP RB VB JJ NNS . The full U.S. Senate begins debate Monday on the nomination of John Roberts as chief justice of the United States . DT JJ NNP NNP VBZ NN NNP IN DT NN IN NNP NNP IN JJ NN IN DT NNP NNPS . Mr. Roberts appears to have more than enough votes to be confirmed in the Republican-controlled Senate . NNP NNP VBZ TO VB JJR IN JJ NNS TO VB VBN IN DT JJ NNP . At least nine Democrats have pledged their support for the conservative judge , along with all 55 Republican senators . IN JJS CD NNS VBP VBN PRP$ NN IN DT JJ NN , IN IN DT CD NNP NNS . Confirmation requires a simple majority of the 100 senators . NNP VBZ DT JJ NN IN DT CD NNS . A final vote is expected to take place Thursday . DT JJ NN VBZ VBN TO VB NN NNP . With Mr. Roberts ' confirmation virtually assured , many lawmakers are turning their attention to President Bush 's next nomination to the Supreme Court . IN NNP NNP POS NN RB VBN , JJ NNS VBP VBG PRP$ NN TO NNP NNP POS JJ NN TO DT NNP NNP . Many senators are urging Mr. Bush to pick a moderate candidate to succeed Justice Sandra Day O'Connor , who announced her retirement in July . JJ NNS VBP VBG NNP NNP TO VB DT JJ NN TO VB NNP NNP NNP NNP , WP VBD PRP$ NN IN NNP . Crude oil prices have again hit record highs . JJ NN NNS VBP RB VBN NN NNS . The spike in prices Wednesday came after a U.S. government report said inventories of crude oil and gasoline declined last week . DT NN IN NNS NNP VBD IN DT NNP NN NN VBD NNS IN JJ NN CC NN VBD JJ NN . The Bloomberg financial news service says U.S. crude oil briefly jumped to $ 71.79 a barrel before easing slightly . DT NNP JJ NN NN VBZ NNP JJ NN RB VBD TO $ CD DT NN IN VBG RB . In Britain , Brent crude rose to equal Tuesday 's record high of $ 72.64 . IN NNP , NNP NN VBD TO VB NNP POS NN NN IN $ CD . Analysts say prices are being pushed up by worries that oil supplies from Iran and Nigeria might be disrupted by political disputes . NNS VBP NNS VBP VBG VBN RP IN NNS IN NN NNS IN NNP CC NNP MD VB VBN IN JJ NNS . These concerns come at a time of strong demand for oil in the United States , China , and other big nations . DT NNS VBP IN DT NN IN JJ NN IN NN IN DT NNP NNPS , NNP , CC JJ JJ NNS . Democratic U.S. Senator Edward Kennedy has urged the government to spend more money on education as millions of students return to school for a new academic year . JJ NNP NNP NNP NNP VBZ VBN DT NN TO VB JJR NN IN NN IN NNS IN NNS VBP IN NN IN DT JJ JJ NN . Senator Kennedy delivered the Democrats ' weekly radio address Saturday . NNP NNP VBD DT NNPS POS JJ NN NN NNP . He said Democrats want more money for teacher training , small class sizes , early childhood education and college aid . PRP VBD NNPS VBP JJR NN IN NN NN , JJ NN NNS , JJ NN NN CC NN NN . Mr. Kennedy accused the Bush administration and Republican leaders in Congress of underfunding an education law passed in 2001 called the No Child Left Behind Act . NNP NNP VBD DT NNP NN CC JJ NNS IN NNP IN VBG DT NN NN VBN IN CD VBD DT NNP NNP NNP NNP NNP . He said without more money spent on education , America 's national security and competitive standing in the world are at risk . PRP VBD IN JJR NN VBN IN NN , NNP POS JJ NN CC JJ NN IN DT NN VBP IN NN . The senator from Massachusetts is the senior Democrat on the Senate committee that oversees education . DT NN IN NNP VBZ DT JJ NNP IN DT NNP NN WDT VBZ NN . Spain 's top anti-terrorism judge has indicted eight Islamic militants for allegedly helping a suspected mastermind of the September 11 attacks on the United States . NNP POS JJ NN NN VBZ VBN CD JJ NNS IN RB VBG DT JJ NN IN DT NNP CD NNS IN DT NNP NNPS . Judge Baltasar Garzon Monday formally charged the eight with providing fake identity papers and other documents to Ramzi Binalshibh . NNP NNP NNP NNP RB VBD DT CD IN VBG JJ NN NNS CC JJ NNS TO NNP NNP . He is in U.S. custody , suspected of being the contact between al-Qaida and the September 11 hijackers . PRP VBZ IN NNP NN , VBN IN VBG DT NN IN NNP CC DT NNP CD NNS . One of the suspects charged Monday - Tahar Ezirouali - is still at large and was indicted in absentia . CD IN DT NNS VBN NNP IN NNP NNP : VBZ RB IN JJ CC VBD VBN IN NN . The International Olympic Committee says a Ukrainian heptathlon silver medalist is under investigation for a positive drug test at the Beijing Olympics . DT NNP NNP NNP VBZ DT JJ NN NN NN VBZ IN NN IN DT JJ NN NN IN DT NNP NNPS . The IOC said Wednesday it has opened a probe into Lyudmila Blonska , who finished second behind Ukrainian Natalia Dobrynska last Saturday . DT NNP VBD NNP PRP VBZ VBN DT NN IN NNP NNP , WP VBD JJ IN JJ NNP NNP JJ NNP . The IOC 's disciplinary commission and executive board are expected to rule on the case Thursday . DT NNP POS JJ NN CC JJ NN VBP VBN TO VB IN DT NN NNP . If found guilty , Blonska would be stripped of her medal and could be subjected to a lifetime ban . IN VBN JJ , NNP MD VB VBN IN PRP$ NN CC MD VB VBN TO DT NN NN . Blonska served a separate doping suspension earlier this decade . NNP VBD DT JJ NN NN RBR DT NN . Iraqi police guard site where head of Diyala provincial council Hussein Alwan al-Tamimi was killed in Baquoba A series of suicide car bombings and two-bomb rigged motorcycles killed at least 33 people across northern Iraq Thursday . JJ NN NN NN WRB NN IN NNP JJ NN NNP NNP NNP VBD VBN IN NNP NNP NN IN NN NN NNS CC JJ JJ NNS VBN IN JJS CD NNS IN JJ NNP NNP . The worst attack was on a restaurant in the town of Tuz Khurmatu , where bodyguards of Deputy Prime Minster Rowsch Nouri Shaways were eating . DT JJS NN VBD IN DT NN IN DT NN IN NNP NNP , WRB NNS IN NNP NNP NNP NNP NNP NNPS VBD JJ . Twelve people were killed . CD NNS VBD VBN . Mr. Shaways was not present . NNP NNP VBD RB JJ . Bombers also struck the gates of a state-run oil firm in Kirkuk and a government convoy in Baquba . NNS RB VBD DT NNS IN DT JJ NN NN IN NNP CC DT NN NN IN NNP . Two parked motorcycles rigged with bombs also exploded outside a cafe in Mosul , killing five people . CD JJ NNS VBN IN NNS RB VBD IN DT NN IN NNP , VBG CD NNS . Meanwhile , Iraq 's Interior Ministry says 700 terror suspects have been arrested and a huge number of weapons seized so far in a massive security sweep in Baghdad that began Sunday . RB , NNP POS NNP NNP VBZ CD NN NNS VBP VBN VBN CC DT JJ NN IN NNS VBN RB RB IN DT JJ NN NN IN NNP WDT VBD NNP . Operation Lightning is aimed against Iraqi insurgents . NNP NNP VBZ VBN IN JJ NNS . U.S. crude oil prices have risen to another record high , passing $ 78 a barrel , as violence in the Middle East and Nigeria threatened supplies . NNP JJ NN NNS VBP VBN TO DT NN NN , VBG $ CD DT NN , IN NN IN DT NNP NNP CC NNP VBD NNS . Crude oil for August delivery closed at a record $ 76.7 in New York Thursday . JJ NN IN NNP NN VBD IN DT NN $ CD IN NNP NNP NNP . The price continued to rise in after-hours trading , hitting $ 78.4 . DT NN VBD TO VB IN JJ NN , VBG $ CD . That is the highest price for oil since the New York Mercantile Exchange began the contract in 1983 . DT VBZ DT JJS NN IN NN IN DT NNP NNP NNP NNP VBD DT NN IN CD . In early Asian trading Friday crude oil was at $ 77.95 a barrel . IN JJ JJ NN NNP JJ NN VBD IN $ CD DT NN . Strong demand for oil leaves little unused oil production capacity anywhere in the world . JJ NN IN NN NNS RB JJ NN NN NN RB IN DT NN . The tight balance between supply and demand means any disruption in oil supplies could cause prices to soar . DT JJ NN IN NN CC NN VBZ DT NN IN NN NNS MD VB NNS TO VB . Chad 's government has acknowledged that its forces crossed into Sudanese territory Monday and clashed with Sudanese troops . NNP POS NN VBZ VBN IN PRP$ NNS VBD IN JJ NN NNP CC VBN IN JJ NNS . Reversing a previous denial of the incident , Chad 's Information Minister Hourmadji Moussa Doumgor said Tuesday that Chadian troops had crossed the border to pursue rebels they had been fighting in eastern Chad . VBG DT JJ NN IN DT NN , NNP POS NNP NNP NNP NNP NNP VBD NNP IN JJ NNS VBD VBN DT NN TO VB NNS PRP VBD VBN VBG IN JJ NNP . He said the clash occurred when Chad 's troops made contact with Sudan 's forces , whom he said had been deployed to protect the rebels ' retreat . PRP VBD DT NN VBD WRB NNP POS NNS VBD NN IN NNP POS NNS , WP PRP VBD VBD VBN VBN TO VB DT NNS POS NN . Sudan 's military says 17 of its soldiers were killed in the clash , and that its troops forced the Chadians back across the border . NNP POS JJ VBZ CD IN PRP$ NNS VBD VBN IN DT NN , CC IN PRP$ NNS VBD DT NNS RB IN DT NN . Chad and Sudan have repeatedly accused each other of supporting the other country 's rebel movements . NNP CC NNP VBP RB VBN DT NN IN VBG DT JJ NN POS NN NNS . Cross-border raids and incidents have continued despite mediation efforts by Libyan leader Moammar Gadhafi . NN NNS CC NNS VBP VBN IN NN NNS IN JJ NN NNP NNP . Both countries have refused the deployment of international peacekeepers on their border . DT NNS VBP VBN DT NN IN JJ NNS IN PRP$ NN . The International Committee of the Red Cross says 15 people have died in ethnic clashes around the western Ivory Coast town of Duekoue . DT NNP NNP IN DT NNP NNP VBZ CD NNS VBP VBN IN JJ NNS IN DT JJ NNP NNP NN IN NNP . The agency says at least 6,000 people have fled last week 's violence between between indigenous tribes and migrant farm workers . DT NN VBZ IN JJS CD NNS VBP VBN JJ NN POS NN IN IN JJ NNS CC JJ NN NNS . The mayor of Duekoue told Reuters news agency that U.N. soldiers are patrolling the town and surrounding villages . DT NN IN NNP VBD NNP NN NN IN NNP NNS VBP VBG DT NN CC VBG NNS . He said shops have reopened and public transportation is resuming . PRP VBD NNS VBP VBN CC JJ NN VBZ VBG . Ethnic tension is common in the region , but it has been exacerbated by Ivory Coast 's civil war which started in 2002 . NNP NN VBZ JJ IN DT NN , CC PRP VBZ VBN VBN IN NNP NNP POS JJ NN WDT VBD IN CD . The country remains divided between the rebel-held north , and the government-controlled south . DT NN VBZ VBN IN DT JJ NN , CC DT JJ NN . Bangladesh 's government has brought new corruption charges against detained former Prime Minister Khaleda Zia . NNP POS NN VBZ VBN JJ NN NNS IN JJ JJ NNP NNP NNP NNP . The country 's Anti-Corruption Commission Thursday accused Ms. Zia , her son , Tarique Rahman and five others of embezzling more than $ 3,00,000 ( 21 million taka ) from a trust meant for orphans . DT NN POS JJ NNP NNP VBD NNP NNP , PRP$ NN , NNP NNP CC CD NNS IN VBG JJR IN $ CD LRB CD CD NN RRB IN DT NN VBN IN NNS . She and her two sons already are being held on other corruption charges . PRP CC PRP$ CD NNS RB VBP VBG VBN IN JJ NN NNS . They were among 170 politicians and business people arrested last year during an anti-graft sweep by Bangladesh 's military-backed caretaker government . PRP VBD IN CD NNS CC NN NNS VBN JJ NN IN DT JJ NN IN NNP POS JJ NN NN . Former Prime Minister Sheikh Hasina also was detained in the crackdown . JJ JJ NN NNP NNP RB VBD VBN IN DT NN . She was recently released on parole to receive medical treatment in the U.S. PRP VBD RB VBN IN NN TO VB JJ NN IN DT NNP Ms. Zia 's Bangladesh Nationalist Party has vowed to boycott the country 's parliamentary elections , set for December , unless the former prime minister is released from detention . NNP NNP POS NNP NNP NNP VBZ VBN TO VB DT NN POS JJ NNS , VBN IN NNP , IN DT JJ JJ NN VBZ VBN IN NN . China says a fourth person is ill with bird flu . NNP VBZ DT JJ NN VBZ JJ IN NN NN . The official Xinhua news agency reports the ministry of health has confirmed that a 10-year-old girl in China 's southern Guangxi Zhuang Autonomous Region has the potentially deadly H5N1 virus . DT JJ NNP NN NN VBZ DT NN IN NN VBZ VBN IN DT JJ NN IN NNP POS JJ NNP NNP NNP NNP VBZ DT RB JJ NNP NN . Meanwhile , Ukraine has declared a state of emergency to help combat a bird flu outbreak in Crimea . RB , NNP VBZ VBN DT NN IN NN TO VB VB DT NN NN NN IN NNP . More than 22,000 birds have been seized from villages in the affected area . JJR IN CD NNS VBP VBN VBN IN NNS IN DT JJ NN . Also Tuesday , President Bush met with the director-general of the World Health Organization ( WHO ) to discuss the global strategy against a possible bird flu pandemic . RB NNP , NNP NNP VBD IN DT NN IN DT NNP NNP NNP LRB NNP RRB TO VB DT JJ NN IN DT JJ NN NN NN . Mr. Bush called the strategy a remarkable collaborative effort . NNP NNP VBD DT NN DT JJ JJ NN . Earlier , Burma said it is on the alert for bird flu and will cooperate with international organizations in tracking outbreaks of the disease . RB , NNP VBD PRP VBZ IN DT NN IN NN NN CC MD VB IN JJ NNS IN VBG NNS IN DT NN . Venezuela 's government has promised new measures to combat the country 's inflation rate , which is the highest in the region . NNP POS NN VBZ VBN JJ NNS TO VB DT NN POS NN NN , WDT VBZ DT JJS IN DT NN . Finance Minister Rodrigo Cabezas said Wednesday that his country 's inflation rate of 22.5 percent is ' unsatisfactory . ' NNP NNP NNP NNP VBD NNP IN PRP$ NN POS NN NN IN CD NN VBZ `` JJ . `` He promised new anti-inflationary measures but did not disclose any details . PRP VBD JJ JJ NNS CC VBD RB VB DT NNS . Meanwhile , Venezuela has begun using a new currency system in an effort to slow the inflation rate . RB , NNP VBZ VBN VBG DT JJ NN NN IN DT NN TO VB DT NN NN . The ' strong bolivar ' entered circulation on Tuesday . DT `` JJ NN `` VBD NN IN NNP . It was created by taking three trailing zeros off the value of the former currency , the bolivar . PRP VBD VBN IN VBG CD VBG NNS IN DT NN IN DT JJ NN , DT NN . Officials say the new currency also will simplify transactions . NNS VBP DT JJ NN RB MD VB NNS . But critics say they doubt it will stabilize rising prices . CC NNS VBP PRP VBP PRP MD VB VBG NNS . A prominent Russian newspaper says investigators have identified a teenager as one of two suicide bombers responsible for Monday 's attacks that killed 39 people in two Moscow subway stations . DT JJ JJ NN VBZ NNS VBP VBN DT NN IN CD IN CD NN NNS JJ IN NNP POS NNS WDT VBD CD NNS IN CD NNP NN NNS . Kommersant said Friday 17-year-old Dzhennet Abdurakhmanova , the widow of a slain Caucasus militant , was one of the bombers . NNP VBD NNP JJ NNP NNP , DT NN IN DT NN NN NN , VBD CD IN DT NNS . The newspaper published a photograph of the young woman in a Muslim headscarf with her late husband Umalat Magomedov . DT NN VBD DT NN IN DT JJ NN IN DT NN NN IN PRP$ JJ NN NNP NNP . The Kommersant reports authorities have not yet officially identified the second bomber , but she is believed to be 20-year-old Markha Ustarkhanova from Chechnya . DT NN VBZ NNS VBP RB RB RB VBN DT JJ NN , CC PRP VBZ VBN TO VB JJ NNP NNP IN NNP . Ustarkhanova is the widow of a Chechen militant who was killed last year while allegedly preparing for an assassination attempt on Chechen leader Ramzan Kadyrov . NNP VBZ DT NN IN DT JJ NN WP VBD VBN JJ NN IN RB VBG IN DT NN NN IN JJ NN NNP NNP . Election results from Colombia show the ruling coalition of President Alvaro Uribe has won a strong majority in the country 's Congress . NN NNS IN NNP VBP DT NN NN IN NNP NNP NNP VBZ VBN DT JJ NN IN DT NN POS NNP . With most of the ballots counted from Sunday 's vote , parties loyal to Mr. Uribe are projected to win more than 60 Senate seats in the 102-member upper house . IN JJS IN DT NNS VBN IN NNP POS NN , NNS JJ TO NNP NNP VBP VBN TO VB JJR IN CD NNP NNS IN DT JJ JJ NN . Colombian voters also selected 166 members of the lower house of Congress . JJ NNS RB VBD CD NNS IN DT JJR NN IN NNP . Mr. Uribe 's coalition fared much better than pollsters had expected , and the results could give a boost to his campaign for re-election in May . NNP NNP POS NN VBD RB JJR IN NNS VBD VBN , CC DT NNS MD VB DT NN TO PRP$ NN IN NN IN NNP . Mr. Uribe is seeking a second four-year term as president to continue the struggle against the leftist guerilla group FARC ( the Revolutionary Armed Forces of Colombia ) . NNP NNP VBZ VBG DT JJ JJ NN IN NN TO VB DT NN IN DT JJ NN NN NNP LRB DT NNP NNP NNS IN NNP RRB . He called on the FARC to abandon its four-decade old insurgency and resume the stalled peace process . PRP VBD IN DT NNP TO VB PRP$ JJ JJ NN CC VB DT VBN NN NN . Sunday 's congressional elections were largely peaceful , and polling stations were protected by a large security force of 2,00,000 troops . NNP POS JJ NNS VBD RB JJ , CC VBG NNS VBD VBN IN DT JJ NN NN IN CD NNS . The U.S. military is fighting efforts to release more photos and videotapes that document the abuse of detainees at Iraq 's Abu Ghraib prison . DT NNP NN VBZ VBG NNS TO VB JJR NNS CC NNS IN NN DT NN IN NNS IN NNP POS NNP NNP NN . General Richard Myers , chairman of the Joint Chiefs of Staff , warns that releasing the images would inflame Arab opinion and put U.S. troops at risk . NNP NNP NNP , NN IN DT NNP NNP IN NNP , VBZ IN VBG DT NNS MD VB JJ NN CC VB NNP NNS IN NN . He also argues that al-Qaida and other groups would use the photos for propaganda . PRP RB VBZ IN NNP CC JJ NNS MD VB DT NNS IN NN . General Myers ' statements were contained in recently-unsealed court papers filed in U.S. district court in New York City . NNP NNPS POS NNS VBD VBN IN JJ NN NNS VBN IN NNP NN NN IN NNP NNP NNP . The American Civil Liberties Union has sued the government for the release of 87 photos and four videotapes taken at the U.S.-run Abu Ghraib prison . DT NNP NNP NNP NNP VBZ VBN DT NN IN DT NN IN CD NNS CC CD NNS VBN IN DT JJ NNP NNP NN . The group says release of the images will lead to a public examination of Army interrogation policies . DT NN VBZ NN IN DT NNS MD VB TO DT JJ NN IN NNP NN NNS . Photos from Abu Ghraib released last year showed Iraqi detainees with leashes around their necks and in other humiliating positions . NNS IN NNP NNP VBN JJ NN VBD JJ NNS IN NNS IN PRP$ NNS CC IN JJ JJ NNS . U.S.-led forces in Afghanistan say they killed 15 militants during an overnight operation in the east , while local officials says those killed were civilians . JJ NNS IN NNP VBP PRP VBD CD NNS IN DT JJ NN IN DT NN , IN JJ NNS VBZ DT VBN VBD NNS . In a statement Saturday , coalition forces say their troops were targeting Taliban militants in Laghman province when they came under attack . IN DT NN NNP , NN NNS VBP PRP$ NNS VBD VBG NNP NNS IN NNP NN WRB PRP VBD IN NN . It says the troops returned fire , killing 15 militants , including a woman carrying a rocket-propelled grenade . PRP VBZ DT NNS VBD NN , VBG CD NNS , VBG DT NN VBG DT JJ NN . Local officials dispute the account and say as many as 22 civilians were killed . JJ NNS VBP DT NN CC VB RB JJ IN CD NNS VBD VBN . India and Pakistan have opened a third crossing at the Line of Control that divides Kashmir to provide aid to victims of last month 's devastating earthquake . NNP CC NNP VBP VBN DT JJ VBG IN DT NN IN NNP WDT VBZ NNP TO VB NN TO NNS IN JJ NN POS JJ NN . Officials from the two countries opened the river crossing Saturday to allow passage of relief goods in both directions . NNS IN DT CD NNS VBD DT NN VBG NNP TO VB NN IN NN NNS IN DT NNS . Earlier this week India delayed opening the third crossing because it said the Pakistani army had not completed work on a border bridge . RBR DT NN NNP VBD VBG DT NN VBG IN PRP VBD DT JJ NN VBD RB VBN NN IN DT NN NN . But Pakistani spokesman disputed the claim , saying his side was ready to open . CC JJ NN VBD DT NN , VBG PRP$ NN VBD JJ TO VB . The two nations agreed last month to open five border crossings in Kashmir to facilitate aid flow and to allow quake survivors to reunite with family members on the other side . DT CD NNS VBD JJ NN TO VB CD NN NNS IN NNP TO VB NN NN CC TO VB NN NNS TO VB IN NN NNS IN DT JJ NN . Pro-Taleban militants have captured 24 soldiers from a military checkpoint in northwestern Pakistan . JJ NNS VBP VBN CD NNS IN DT JJ NN IN JJ NNP . Police say more than 150 militants attacked the post Monday night near the town of Bannu , in the restive North Waziristan region . NNS VBP JJR IN CD NNS VBD DT NN NNP NN IN DT NN IN NNP , IN DT JJ NNP NNP NN . Officials say the militants captured the soldiers after heavy gunfire . NNS VBP DT NNS VBD DT NNS IN JJ NN . Last month , officials said pro-Taleban militants released at least 25 of nearly 250 Pakistani soldiers held captive near the Afghan border since late August . JJ NN , NNS VBD JJ NNS VBN IN JJS CD IN RB CD JJ NNS VBD JJ IN DT JJ NN IN JJ NNP . Pakistan is struggling to contain a recent upsurge in violence in its northwestern region following the collapse of a peace deal in July between the government and pro-Taleban tribesmen . NNP VBZ VBG TO VB DT JJ NN IN NN IN PRP$ JJ NN VBG DT NN IN DT NN NN IN NNP IN DT NN CC JJ NNS . Tidal waves caused by the massive Asian earthquake have killed at least 10 people on Africa 's east coast with a number of other tourists and residents reported missing . JJ NNS VBN IN DT JJ JJ NN VBP VBN IN JJS CD NNS IN NNP POS JJ NN IN DT NN IN JJ NNS CC NNS VBD VBG . Authorities from Somalia to South Africa and the Indian Ocean islands have urged people to move inland . NNS IN NNP TO NNP NNP CC DT NNP NNP NNS VBP VBN NNS TO VB RB . At least one death is reported in Kenya while the Associated Press reports nine drowned in Somalia . IN JJS CD NN VBZ VBN IN NNP IN DT NNP NNP VBZ CD VBN IN NNP . High waves have also smashed a number of fishing boats and left parts of the island of Rodrigues under water . JJ NNS VBP RB VBN DT NN IN NN NNS CC VBD NNS IN DT NN IN NNS IN NN . Egypt has freed a blogger who served a four-year prison term on a conviction of insulting Islam and Egyptian President Hosni Mubarak . NNP VBZ VBN DT NN WP VBD DT JJ NN NN IN DT NN IN VBG NNP CC JJ NNP NNP NNP . Human rights groups and a relative said Wednesday that Egyptian security officials freed Abdel Kareem Nabil earlier this week . JJ NNS NNS CC DT NN VBD NNP IN JJ NN NNS VBD NNP NNP NNP RBR DT NN . The Cairo-based Arabic Network for Human Rights and Information says he was beaten while in detention . DT JJ NNP NNP IN NNP NNP CC NNP VBZ PRP VBD VBN IN IN NN . Nabil , who is also known as Kareem Amer , was attending a university before authorities convicted him in 2006 . NNP , WP VBZ RB VBN IN NNP NNP , VBD VBG DT NN IN NNS VBD PRP IN CD . He was the first blogger in Egypt to be sentenced specifically for his writings . PRP VBD DT JJ NN IN NNP TO VB VBN RB IN PRP$ NNS . Last week , human rights groups called for his release , saying he had been held beyond his four-year prison sentence . JJ NN , JJ NNS NNS VBN IN PRP$ NN , VBG PRP VBD VBN VBN IN PRP$ JJ NN NN . Egyptian officials have not explained why he remained imprisoned about a week-and-a-half beyond his term . JJ NNS VBP RB VBN WRB PRP VBD VBN IN DT JJ IN PRP$ NN . The Reporters Without Borders rights group says Amer was subjected to ' appalling conditions ' while in detention and that he has described being tortured . DT NNS IN NNS NNS NN VBZ NNP VBD VBN TO `` VBG NNS `` IN IN NN CC IN PRP VBZ VBN VBG VBN . Russian President Vladimir Putin has arrived in Beijing to begin a two-day state visit likely to focus on China 's energy needs and bilateral investments . JJ NNP NNP NNP VBZ VBN IN NNP TO VB DT JJ NN NN JJ TO VB IN NNP POS NN NNS CC JJ NNS . Mr. Putin , at the head of a large delegation of business leaders and top officials , landed at Beijing International Airport Tuesday and was expected to meet with Chinese President Hu Jintao later in the day . NNP NNP , IN DT NN IN DT JJ NN IN NN NNS CC JJ NNS , VBD IN NNP NNP NNP NNP CC VBD VBN TO VB IN JJ NNP NNP NNP RB IN DT NN . In addition to energy and other industrial issues , the two leaders are expected to discuss disputes over the Iranian and North Korean nuclear programs . IN NN TO NN CC JJ JJ NNS , DT CD NNS VBP VBN TO VB NNS IN DT JJ CC JJ JJ JJ NNS . As permanent members of the U.N. Security Council , both Russia and China are playing a key role in the current diplomatic efforts to resolve the dispute over Tehran 's nuclear ambitions . IN JJ NNS IN DT NNP NNP NNP , DT NNP CC NNP VBP VBG DT JJ NN IN DT JJ JJ NNS TO VB DT NN IN NNP POS JJ NNS . The two countries also participate in six-nation disarmament talks on North Korea 's nuclear program , along with the United States , the two Koreas and Japan . DT CD NNS RB VBP IN JJ NN NNS IN NNP NNP POS JJ NN , IN IN DT NNP NNPS , DT CD NNP CC NNP . Iraq 's national assembly met Tuesday for only the second time since its election in January , but the session ended in chaos when lawmakers failed to agree on a parliament speaker . NNP POS JJ NN VBD NNP IN RB DT JJ NN IN PRP$ NN IN NNP , CC DT NN VBD IN NN WRB NNS VBD TO VB IN DT NN NN . The meeting began nearly three hours late , with the chairman 's announcement that Sunni Muslim deputies had failed to nominate a speaker from among their ranks . DT NN VBD RB CD NNS RB , IN DT NN POS NN IN NNP NNP NNS VBD VBN TO VB DT NN IN IN PRP$ NNS . He then declared the session over and said a vote would not take place before Sunday . PRP RB VBD DT NN IN CC VBD DT NN MD RB VB NN IN NNP . Several of the assembly 's 275-members immediately called for an explanation , with one legislator asking , ' what shall we tell the voters ? ' Outgoing interim Prime Minister Iyad Allawi stormed out in frustration , and the media were expelled . NN IN DT NN POS NNS RB VBD IN DT NN , IN CD NN NN , `` WP MD PRP VB DT NNS . `` VBG JJ NNP NNP NNP NNP VBD RP IN NN , CC DT NNS VBD VBN . Meanwhile , in the northern city of Kirkuk , a car bomb explosion killed one person and injured at least a dozen others . RB , IN DT JJ NN IN NNP , DT NN NN NN VBD CD NN CC NN IN JJS DT NN NNS . Separately , three Romanian journalists were reported kidnapped . RB , CD JJ NNS VBD VBN VBN . Pakistan 's chief justice has formally resumed his post , two years after his controversial dismissal threw the country into political turmoil . NNP POS NN NN VBZ RB VBN PRP$ NN , CD NNS IN PRP$ JJ NN VBD DT NN IN JJ NN . The Supreme Court says Iftikhar Mohammed Chaudhry was reinstated at midnight ( Saturday ) and immediately began work Sunday morning . DT NNP NNP VBZ NNP NNP NNP VBD VBN IN NN LRB NNP RRB CC RB VBD NN NNP NN . The independent-minded judge was fired in 2007 by then-President Pervez Musharraf , after pursuing a case challenging the president 's rule . DT JJ NN VBD VBN IN CD IN JJ NNP NNP , IN VBG DT NN VBG DT NN POS NN . Chaudhry 's dismissal sparked widespread protests that helped force Mr. Musharraf to resign last year . NNP POS NN VBD JJ NNS WDT VBD VB NNP NNP TO VB JJ NN . Mr. Musharraf 's successor , Asif Ali Zardari , faced a new wave of protests after he delayed Chaudhry 's reinstatement . NNP NNP POS NN , NNP NNP NNP , VBD DT JJ NN IN NNS IN PRP VBD NNP POS NN . Pakistan 's government relented to activists ' demands last week , however , reappointing Chaudhry in an effort to end a volatile political stand-off with the opposition . NNP POS NN VBD TO NNS POS NNS JJ NN , RB , VBG NNP IN DT NN TO VB DT JJ JJ NN IN DT NN . Prime Minister Yousuf Raza Gilani traveled to the Lahore area Sunday to meet opposition leader Nawaz Sharif in a further attempt at political reconciliation . NNP NNP NNP NNP NNP VBD TO DT NNP NN NNP TO VB NN NN NNP NNP IN DT JJ NN IN JJ NN . The Iraqi government has ordered the pan-Arab satellite network Al-Arabiya to close its bureau in Baghdad for one month . DT JJ NN VBZ VBN DT JJ NN NN NNP TO VB PRP$ NN IN NNP IN CD NN . Iraqi officials are quoted as saying the ban is because of what they have described as the network 's uneven reporting and unprofessional conduct in covering events in Iraq . JJ NNS VBP VBN IN VBG DT NN VBZ IN IN WP PRP VBP VBN IN DT NN POS JJ NN CC JJ NN IN VBG NNS IN NNP . Dubai-based Al-Arabiya was briefly banned in November 2003 after airing an audiotape from Saddam Hussein . JJ NNP VBD RB VBN IN NNP CD IN VBG DT NN IN NNP NNP . The U.S.-backed interim Iraqi government banned the Arabic satellite network Al-Jazeera in 2004 for allegedly inciting violence . DT JJ JJ JJ NN VBD DT JJ NN NN NNP IN CD IN RB VBG NN . Tropical Storm Epsilon has been upgraded to a hurricane , a record 14th for this year . NNP NNP NNP VBZ VBN VBN TO DT NN , DT NN NN IN DT NN . Forecasters said Friday that Epsilon is east of Bermuda and is not expected to hit land . NNS VBD NNP IN NNP VBZ JJ IN NNP CC VBZ RB VBN TO VB NN . The six-month hurricane season officially ended November 30 , the busiest period on record . DT JJ NN NN RB VBD NNP CD , DT JJS NN IN NN . With 26 named storms , forecasters used up their list of designated names and resorted to marking the storms with letters of the Greek alphabet . IN CD VBN NNS , NNS VBD RP PRP$ NN IN VBN NNS CC VBD TO VBG DT NNS IN NNS IN DT JJ NN . The season was also unusually intense . DT NN VBD RB RB JJ . Three hurricanes briefly reached the most violent Category Five status , with Katrina devastating New Orleans and other parts of the U.S. Gulf coast . CD NNS RB VBD DT RBS JJ NNP CD NN , IN NNP JJ NNP NNP CC JJ NNS IN DT NNP NNP NN . Some experts believe the intensity marks the beginning of a cycle expected to last more than a decade . DT NNS VBP DT NN VBZ DT NN IN DT NN VBN TO VB JJR IN DT NN . Experts say the mass exodus of people from the devastated Gulf Coast region is unprecedented in American history . NNS VBP DT NN NN IN NNS IN DT JJ NNP NNP NN VBZ JJ IN JJ NN . Federal officials say up to one million people , mostly from New Orleans , have been displaced in the aftermath of Hurricane Katrina . NNP NNS VBP RP TO CD CD NNS , RB IN NNP NNP , VBP VBN VBN IN DT NN IN NNP NNP . More than 2,00,000 victims have taken refuge in nearby Texas , while others are scattered in cities and towns from California to New York City . JJR IN CD NNS VBP VBN NN IN JJ NNP , IN NNS VBP VBN IN NNS CC NNS IN NNP TO NNP NNP NNP . War , economic disaster , religious and social persecution and natural catastrophes have forced large populations to relocate many times in American history . NNP , JJ NN , JJ CC JJ NN CC JJ NNS VBP VBN JJ NNS TO VB JJ NNS IN JJ NN . Experts say this time , however , the migration of hundreds of thousands from New Orleans and the U.S. Gulf Coast is completely different - as the newly homeless are coming from one of America 's most unique and diverse cities , and it is happening over a much shorter period of time . NNS VBP DT NN , RB , DT NN IN NNS IN NNS IN NNP NNP CC DT NNP NNP NNP VBZ RB JJ : IN DT RB JJ VBP VBG IN CD IN NNP POS RBS JJ CC JJ NNS , CC PRP VBZ VBG IN DT JJ JJR NN IN NN . Iraqi authorities say car bombs in Baghdad and the northern city of Kirkuk killed 62 people Sunday . JJ NNS VBP NN NNS IN NNP CC DT JJ NN IN NNP VBD CD NNS NNP . They say the deadliest blast occurred in Baghdad 's Sadr City neighborhood when a bomb killed 34 near a busy market . PRP VBP DT JJS NN VBD IN NNP POS NNP NNP NN WRB DT NN VBD CD IN DT JJ NN . A short time later , another blast killed eight more people outside a municipal building . DT JJ NN RB , DT NN VBD CD JJR NNS IN DT JJ NN . The bombings came hours after U.S. and Iraqi government forces raided the district and clashed with militiamen loyal to radical Shi'ite cleric Moqtada al-Sadr . DT NNS VBD NNS IN NNP CC JJ NN NNS VBD DT NN CC VBN IN NNS JJ TO JJ NNP NN NNP NNP . To the north , a car bomb killed 20 people and wounded 50 others near a courthouse in Kirkuk Sunday . TO DT NN , DT NN NN VBD CD NNS CC VBD CD NNS IN DT NN IN NNP NNP . On Saturday , Iraqi political and religious leaders met to discuss Prime Minister Nouri al-Maliki 's national reconciliation plan to end sectarian violence . IN NNP , JJ JJ CC JJ NNS VBD TO VB NNP NNP NNP NNP POS JJ NN NN TO VB JJ NN . After the meeting , Mr. Maliki said insurgents guilty of bloodshed should not be included in his proposed amnesty . IN DT NN , NNP NNP VBD NNS JJ IN NN MD RB VB VBN IN PRP$ JJ NN . Mr. Maliki will visit Washington Tuesday for talks with President Bush . NNP NNP MD VB NNP NNP IN NNS IN NNP NNP . The U.S. military has drafted a document that calls for nuclear strikes against nations or terrorist groups to prevent them from using weapons of mass destruction against the United States or its allies . DT NNP NN VBZ VBN DT NN WDT VBZ IN JJ NNS IN NNS CC JJ NNS TO VB PRP IN VBG NNS IN NN NN IN DT NNP NNPS CC PRP$ NNS . The document ( ' Doctrine for Joint Nuclear Operations ' ) was drafted in March . DT NN LRB `` NNP IN NNP NNP NNP `` RRB VBD VBN IN NNP . It updates a 1995 version from the Clinton administration to reflect President Bush 's doctrine of pre-emptive military strikes against nations or groups posing a threat to the United States . PRP VBZ DT CD NN IN DT NNP NN TO VB NNP NNP POS NN IN JJ JJ NNS IN NNS CC NNS VBG DT NN TO DT NNP NNPS . The document outlines a number of scenarios for the use of nuclear weapons , which would require the approval of the president . DT NN VBZ DT NN IN NNS IN DT NN IN JJ NNS , WDT MD VB DT NN IN DT NN . The revised draft has yet to become official policy . DT JJ NN VBZ RB TO VB JJ NN . The document envisions the use of earth-penetrating nuclear weapons to destroy deeply buried weapons . DT NN VBZ DT NN IN JJ JJ NNS TO VB RB VBN NNS . The Bush administration has been looking to develop the so-called ' bunker-busters , ' but U.S. Congress stopped funding the program last year . DT NNP NN VBZ VBN VBG TO VB DT JJ `` NNS , `` CC NNP NNP VBD VBG DT NN JJ NN . The Organization of American States has rejected Colombia 's recent raid against a rebel camp in Ecuador , saying the cross-border incursion was a clear violation of the OAS charter . DT NNP IN NNP NNP VBZ VBN NNP POS JJ NN IN DT NN NN IN NNP , VBG DT JJ NN VBD DT JJ NN IN DT NNP NN . In a resolution after a meeting of foreign ministers and ambassadors that began Monday , the OAS also took note of Colombia 's apology for the incursion and its pledge to not carry out another raid . IN DT NN IN DT NN IN JJ NNS CC NNS WDT VBD NNP , DT NNP RB VBD NN IN NNP POS NN IN DT NN CC PRP$ NN TO RB VB RP DT NN . Venezuela and Ecuador responded to the March 1 incursion by taking diplomatic action against Colombia and sending troops to the border with Colombia . NNP CC NNP VBD TO DT NNP CD NN IN VBG JJ NN IN NNP CC VBG NNS TO DT NN IN NNP . The leaders of all three countries have since said they have settled the crisis . DT NNS IN DT CD NNS VBP IN VBN PRP VBP VBN DT NN . The raid killed more than 20 rebels with the Revolutionary Armed Forces of Colombia , including a top rebel leader . DT NN VBD JJR IN CD NNS IN DT JJ JJ NNS IN NNP , VBG DT JJ NN NN . A Vatican delegation is meeting with officials in Iran this week to discuss ways of strengthening interfaith ties . DT NNP NN VBZ VBG IN NNS IN NNP DT NN TO VB NNS IN VBG JJ NNS . The visit , led by Cardinal Jean-Louis Tauran , is part of an ongoing attempt by the Vatican to reach out to the largely Muslim Islamic Republic . DT NN , VBN IN NNP NNP NNP , VBZ NN IN DT JJ NN IN DT NNP TO VB RP TO DT RB NNP NNP NNP . Pope Benedict met last year with a delegation of Catholic bishops from Iran and said he wanted to improve relations with the Islamic Republic . NNP NNP VBD JJ NN IN DT NN IN JJ NNS IN NNP CC VBD PRP VBD TO VB NNS IN DT NNP NNP . Tauran met with Iranian President Mahmoud Ahmadinejad on Tuesday . NNP VBD IN JJ NNP NNP NNP IN NNP . Vatican delegation members will also visit the city of Qom , a Shi'ite spiritual center in Iran , before wrapping up their trip Wednesday . NNP NN NNS MD RB VB DT NN IN NNP , DT NNP JJ NN IN NNP , IN VBG RP PRP$ NN NNP . The Zaragoza airport in northern Spain was evacuated Wednesday morning after it received threats made in the name of the Basque separatist group ETA . DT NNP NN IN JJ NNP VBD VBN NNP NN IN PRP VBD NNS VBN IN DT NN IN DT NNP NN NN NNP . Officials say they received word that a rocket launcher had been set up to carry out an attack during a two-hour period at midday ( 800 to 1000 GMT ) . NNS VBP PRP VBD NN IN DT NN NN VBD VBN VBN RP TO VB RP DT NN IN DT JJ NN IN NN LRB CD TO CD NNP RRB . ETA staged a rocket attack on the Zaragoza airport back in June , but no one was hurt . NNP VBD DT NN NN IN DT NNP NN RB IN NNP , CC DT NN VBD VBN . ETA has been blamed for more than 800 deaths since the 1960s when it began its armed campaign for an independent Basque state in northern Spain and southwestern France . NNP VBZ VBN VBN IN JJR IN CD NNS IN DT NNS WRB PRP VBD PRP$ JJ NN IN DT JJ JJ NN IN JJ NNP CC JJ NNP . Russia is promising to follow through on a pledge to forgive $ 2.2 billion in debt owed by African nations . NNP VBZ VBG TO VB IN IN DT NN TO VB $ CD CD IN NN VBN IN JJ NNS . Russia 's ambassador to the United Nations , Andrey Denisov , told a U.N. ministerial meeting focusing on the fight against poverty Tuesday that Moscow wants to underline its general support to the Group of Eight industrial nations . NNP POS NN TO DT NNP NNPS , NNP NNP , VBD DT NNP JJ NN VBG IN DT NN IN NN NNP IN NNP VBZ TO VB PRP$ JJ NN TO DT NNP IN CD JJ NNS . The group 's finance ministers decided to cancel more than $ 40 billion in debt owed by 18 mostly African nations at a meeting in London earlier this month . DT NN POS NN NNS VBD TO VB JJR IN $ CD CD IN NN VBN IN CD RB JJ NNS IN DT NN IN NNP RBR DT NN . Under the agreement , the 18 countries would receive immediate relief on debt they owe to the World Bank , the International Monetary Fund and other lenders . IN DT NN , DT CD NNS MD VB JJ NN IN NN PRP VBP TO DT NNP NNP , DT NNP NNP NNP CC JJ NNS . Nine other African nations are likely to qualify for debt relief soon . CD JJ JJ NNS VBP JJ TO VB IN NN NN RB . Nepalese army officials say the kingdom 's Maoist rebels killed four people and injured at least 11 in two separate attacks Monday . JJ NN NNS VBP DT NN POS NN NNS VBD CD NNS CC VBN IN JJS CD IN CD JJ NNS NNP . Officials say three soldiers and one civilian died in a clash at an army checkpoint about 30 kilometers from the capital , Kathmandu . NNS VBP CD NNS CC CD JJ VBD IN DT NN IN DT NN NN IN CD NNS IN DT NN , NNP . Police said at least 11 people were injured when a bomb exploded in a market in Pokhara , about 200 kilometers west of the capital . NNS VBD IN JJS CD NNS VBD VBN WRB DT NN VBD IN DT NN IN NNP , IN CD NNS NN IN DT NN . On Sunday , government troops killed at least 16 Maoists following a rebel assault on a security patrol in western Nepal . IN NNP , NN NNS VBD IN JJS CD NNS VBG DT JJ NN IN DT NN NN IN JJ NNP . At least five soldiers were wounded . IN JJS CD NNS VBD VBN . Rebel attacks have increased since The Maoists broke a ceasefire last month . NN NNS VBP VBN IN DT NNS VBD DT NN JJ NN . They are fighting to establish a single party communist republic . PRP VBP VBG TO VB DT JJ NN NN NN . About 13,000 people have been killed in the fighting . IN CD NNS VBP VBN VBN IN DT NN . France 's lower house of parliament has approved a new anti-terrorism bill that includes increasing the use of video surveillance . NNP POS JJR NN IN NN VBZ VBN DT JJ JJ NN WDT VBZ VBG DT NN IN NN NN . The National Assembly voted 373 to 27 in favor of the legislation . DT NNP NNP VBD CD TO CD IN NN IN DT NN . The bill now requires approval by the Senate , which begins debate in January . DT NN RB VBZ NN IN DT NNP , WDT VBZ NN IN NNP . The draft law extends the detention period without charges for terrorism suspects from four days to six days . DT NN NN VBZ DT NN NN IN NNS IN NN NNS IN CD NNS TO CD NNS . It also provides for an increase of video surveillance in French subways , airports and train stations , and requires Internet cafes to keep more detailed information about their clients . PRP RB VBZ IN DT NN IN NN NN IN JJ NNS , NNS CC NN NNS , CC VBZ NNP NNS TO VB RBR JJ NN IN PRP$ NNS . Critics of the bill say it will erode basic civil liberties . NNS IN DT NN VBP PRP MD VB JJ JJ NNS . Insurgents in Iraq have intensified their campaign of pre-election violence , killing two aides to the country 's highest Shi'ite authority , Grand Ayatollah Ali al-Sistani . NNS IN NNP VBP VBN PRP$ NN IN JJ NN , VBG CD NNS TO DT NN POS JJS JJ NN , NNP NNP NNP NNP . Sheikh Mahmoud al-Madai'ni , his son and four bodyguards , were gunned down Wednesday as they left evening prayers south of Baghdad in Salman Pak . NNP NNP NNP , PRP$ NN CC CD NNS , VBD VBN RB NNP IN PRP VBD NN NNS RB IN NNP IN NNP NNP . Another aide was found dead in the ayatollah 's office in Najaf . DT NN VBD VBN JJ IN DT NN POS NN IN NNP . Ayatollah al-Sistani is not a candidate in the January 30 polls , but he supports the United Iraqi Alliance , a mainly Shi'ite coalition that is likely to win a large number of seats in the national assembly . NNP NNP VBZ RB DT NN IN DT NNP CD NNS , CC PRP VBZ DT NNP JJ NNP , DT RB JJ NN WDT VBZ JJ TO VB DT JJ NN IN NNS IN DT JJ NN . Meanwhile , gunmen opened fire on a minibus outside a Baghdad hotel Thursday , killing six people and kidnapping a Turkish businessman . RB , NNS VBD NN IN DT NN IN DT NNP NN NNP , VBG CD NNS CC VBG DT JJ NN . And near the town of Baquba , police say three people were killed and at least 13 others were hurt in a car bombing outside a Shi'ite mosque . CC IN DT NN IN NNP , NNS VBP CD NNS VBD VBN CC IN JJS CD NNS VBD VBN IN DT NN VBG IN DT NNP NN . Venezuela and Mexico are recalling each others ambassadors , amid an escalating dispute between the countries ' presidents . NNP CC NNP VBP VBG DT NNS NNS , IN DT VBG NN IN DT NNS POS NNS . Venezuela has ordered the withdrawal of its ambassador to Mexico . NNP VBZ VBN DT NN IN PRP$ NN TO NNP . Mexican President Vicente Fox said on U.S. television ( CNN ) Monday that his country would also recall its ambassador . JJ NNP NNP NNP VBD IN NNP NN LRB NNP RRB NNP IN PRP$ NN MD RB VB PRP$ NN . Mr. Fox said he will not accept verbal attacks made on him by Venezuelan President Hugo Chavez . NNP NNP VBD PRP MD RB VB JJ NNS VBN IN PRP IN JJ NNP NNP NNP . Mr. Chavez used his Sunday radio and television show to criticize Mr. Fox after last week 's Summit of the Americas , saying Mr. Fox was the U.S. government 's ' cub ' for supporting a U.S.-proposed Western Hemisphere free trade zone . NNP NNP VBD PRP$ NNP NN CC NN NN TO VB NNP NNP IN JJ NN POS NN IN DT NNPS , VBG NNP NNP VBD DT NNP NN POS `` NN `` IN VBG DT JJ JJ NNP JJ NN NN . Today , Venezuela 's Foreign Minister Ali Rodriguez rejected Mexico 's demand that Venezuela apologize for the comments . NN , NNP POS NNP NNP NNP NNP VBD NNP POS NN IN NNP VB IN DT NNS . Pakistani officials say troops backed by fighter aircraft pounded three militant hideouts Sunday in northwestern Pakistan , killing at least 10 suspected insurgents in the troubled Orakzai tribal district . JJ NNS VBP NNS VBN IN NN NN VBD CD JJ NNS NNP IN JJ NNP , VBG IN JJS CD JJ NNS IN DT JJ NNP NN NN . The assault came a day after fighter jets bombed a militant stronghold in the neighboring Khyber tribal region on the Afghan border , killing 45 people . DT NN VBD DT NN IN NN NNS VBD DT JJ NN IN DT JJ NNP JJ NN IN DT JJ NN , VBG CD NNS . Pakistani officials said Saturday 's strike took place in the valley of Tirah . JJ NNS VBD NNP POS NN VBD NN IN DT NN IN NNP . Khyber is the main supply route for NATO troops through Pakistan into Afghanistan . NNP VBZ DT JJ NN NN IN NNP NNS IN NNP IN NNP . Militants are blamed for frequent attacks on NATO convoys traveling through the region . NNS VBP VBN IN JJ NNS IN NNP NNS VBG IN DT NN . Pakistan 's military has recently stepped up offensives in Khyber and Orakzai . NNP POS NN VBZ RB VBN RP NNS IN NNP CC NNP . Officials say more than 300 militants have been killed so far in the fighting . NNS VBP JJR IN CD NNS VBP VBN VBN RB RB IN DT NN . Afghanistan 's election officials have again postponed the announcement of final results of the September 18 parliamentary elections . NNP POS NN NNS VBP RB VBN DT NN IN JJ NNS IN DT NNP CD JJ NNS . The Joint Electoral Management Body says claims of widespread fraud in southern Afghanistan are delaying the results that were expected Wednesday , but now will be announced ' in the next few days . ' DT NNP NNP NNP NNP VBZ NNS IN JJ NN IN JJ NNP VBP VBG DT NNS WDT VBD VBN NNP , CC RB MD VB VBN `` IN DT JJ JJ NNS . `` Based on provisional results declared last month , the 249-seat Lower House will be dominated by former warlords and Mujahedin fighters . VBN IN JJ NNS VBN JJ NN , DT JJ NNP NNP MD VB VBN IN JJ NNS CC NNP NNS . The country 's first parliament in decades will also have several members of the ousted Taleban regime as well as more than 60 women legislators , who were declared provisional winners . DT NN POS JJ NN IN NNS MD RB VB JJ NNS IN DT JJ NNP NN RB RB IN JJR IN CD NNS NNS , WP VBD VBN JJ NNS . Meanwhile , a roadside bomb exploded near a U.N. convoy in southern Kandahar province , damaging an armored vehicle but causing no injuries . RB , DT NN NN VBD IN DT NNP NN IN JJ NNP NN , VBG DT JJ NN CC VBG DT NNS . Two suspects have been arrested . CD NNS VBP VBN VBN . U.S.-led coalition forces prevented another attack by discovering a bomb near the eastern city of Jalalabad . JJ NN NNS VBD DT NN IN VBG DT NN IN DT JJ NN IN NNP . The press freedom group Reporters Without Borders has condemned the decision by Venezuelan President Hugh Chavez to shut down one of the country 's oldest television stations The group issued a statement Friday calling the move ' a serious attack against editorial pluralism . ' DT NN NN NN VBZ IN NNS VBZ VBN DT NN IN JJ NNP NNP NNP TO VB RP CD IN DT NN POS JJS NN NNS DT NN VBD DT NN NNP VBG DT NN `` DT JJ NN IN JJ NN . `` Mr. Chavez announced Thursday that his government will not renew the broadcast license for Radio Caracas Television , or RCTV . NNP NNP VBD NNP IN PRP$ NN MD RB VB DT NN NN IN NNP NNP NNP , CC NNP . The station is one of Venezuela 's main private stations and has been critical of the president . DT NN VBZ CD IN NNP POS JJ JJ NNS CC VBZ VBN JJ IN DT NN . Mr. Chavez accused RCTV of plotting against him . NNP NNP VBD NNP IN VBG IN PRP . He also said he will not tolerate any media outlets that support efforts to remove him from power . PRP RB VBD PRP MD RB VB DT NNS NNS WDT VBP NNS TO VB PRP IN NN . The license for RCTV expires in March . DT NN IN NNP VBZ IN NNP . Reporters Without Borders urged Venezuela 's government to reconsider its stance and guarantee an independent system of granting and renewing broadcast rights . NNS IN NNS VBD NNP POS NN TO VB PRP$ NN CC VB DT JJ NN IN VBG CC VBG NN NNS . Afghan President Hamid Karzai is considering holding presidential elections in April , four months earlier than an election date set by the country 's Independent Election Commission . JJ NNP NNP NNP VBZ VBG VBG JJ NNS IN NNP , CD NNS JJR IN DT NN NN VBN IN DT NN POS NNP NNP NNP . Afghanistan 's constitution requires that the presidential election be held by April 21 , one month before Mr. Karzai 's five-year term expires . NNP POS NN VBZ IN DT JJ NN VB VBN IN NNP CD , CD NN IN NNP NNP POS JJ NN VBZ . Last month , Afghan election chief , Azizullah Lodin , said the commission decided to reschedule the vote for August to give incoming U.S. forces time to stabilize the country . JJ NN , JJ NN NN , NNP NNP , VBD DT NN VBD TO VB DT NN IN NNP TO VB JJ NNP NNS NN TO VB DT NN . But opposition leaders have insisted that Mr. Karzai step down when his term expires in May and install a caretaker government . CC NN NNS VBP VBN IN NNP NNP VB RP WRB PRP$ NN VBZ IN NNP CC VB DT NN NN . U.S. support for the embattled president came into question after the Obama administration openly accused Mr. Karzai of failing to crack down on government corruption . NNP NN IN DT JJ NN VBD IN NN IN DT NNP NN RB VBD NNP NNP IN VBG TO VB RP IN NN NN . Democratic U.S. Senator Joseph Biden of Delaware has announced he is seeking his party 's 2008 presidential nomination . JJ NNP NNP NNP NNP IN NNP VBZ VBN PRP VBZ VBG PRP$ NN POS CD JJ NN . Biden announced his intention to enter the race on American television Wednesday . NNP VBD PRP$ NN TO VB DT NN IN JJ NN NNP . Biden is currently the chairman of the Senate Foreign Relations Committee and is a prominent critic of President Bush 's Iraq war strategy . NNP VBZ RB DT NN IN DT NNP NNP NNP NNP CC VBZ DT JJ NN IN NNP NNP POS NNP NN NN . On his campaign web site , the senator highlights his plan for Iraq , which calls for most U.S. troops to withdraw by the end of 2007 . IN PRP$ NN NN NN , DT NN VBZ PRP$ NN IN NNP , WDT VBZ IN JJS NNP NNS TO VB IN DT NN IN CD . Biden has served in the U.S. Senate for more than 30 years . NNP VBZ VBN IN DT NNP NNP IN JJR IN CD NNS . He lost a previous bid for the Democratic nomination in 1988 . PRP VBD DT JJ NN IN DT JJ NN IN CD . More candidates are expected to join the race to be the Democratic Party 's nominee , a field that has been dominated so far by popular senators Hillary Clinton and Barack Obama . JJR NNS VBP VBN TO VB DT NN TO VB DT NNP NNP POS NN , DT NN WDT VBZ VBN VBN RB RB IN JJ NNS NNP NNP CC NNP NNP . Dozens of U.S. Christian missionaries have left their posts in Venezuela 's jungle ahead of a government order to leave the area . NNS IN NNP NNP NNS VBP VBN PRP$ NNS IN NNP POS NN RB IN DT NN NN TO VB DT NN . The New Tribes Mission said it had withdrawn all of its missionaries from Venezuelan tribal areas , where the evangelical group had been active for decades . DT NNP NNP NNP VBD PRP VBD VBN DT IN PRP$ NNS IN JJ JJ NNS , WRB DT JJ NN VBD VBN JJ IN NNS . A spokeswoman for the group , Nita Zelenak , told VOA news Sunday that 35 adults and 19 children have left the tribal areas . DT NN IN DT NN , NNP NNP , VBD NNP NN NNP IN CD NNS CC CD NNS VBP VBN DT JJ NNS . Some returned to the United States and others have moved to other locations in Venezuela . DT VBD TO DT NNP NNPS CC NNS VBP VBN TO JJ NNS IN NNP . In November , Venezuelan President Hugo Chavez gave the group a February 12 deadline to leave . IN NNP , JJ NNP NNP NNP VBD DT NN DT NNP CD NN TO VB . He accused the missionaries of having links to the CIA and abusing indigenous groups . PRP VBD DT NNS IN VBG NNS TO DT NNP CC VBG JJ NNS . The New Tribes Mission denies the accusations . DT NNP NNP NNP VBZ DT NNS . The group has filed a legal challenge to the expulsion order . DT NN VBZ VBN DT JJ NN TO DT NN NN . U.S. and European naval officials say pirates have hijacked two European-owned tanker ships off the coast of Somalia . NNP CC JJ JJ NNS VBP NNS VBP VBN CD JJ NN NNS IN DT NN IN NNP . The officials say a Greek-owned chemical tanker , the MV Nipayia , was seized late Wednesday with 19 crew members on board . DT NNS VBP DT JJ NN NN , DT NNP NNP , VBD VBN JJ NNP IN CD NN NNS IN NN . They say pirates seized the Norwegian-owned MV Bow Asir on Thursday . PRP VBP NNS VBD DT JJ NNP NNP NNP IN NNP . That ship is said to have a crew of at least 23 . DT NN VBZ VBN TO VB DT NN IN IN JJS CD . Both hijackings occurred off Somalia 's eastern coast , in the Indian Ocean . DT NNS VBD RP NNP POS JJ NN , IN DT NNP NNP . Somali pirates seized more than 40 ships during 2008 and received millions of dollars in ransom payments in a hijacking spree . JJ NNS VBD JJR IN CD NNS IN CD CC VBD NNS IN NNS IN NN NNS IN DT NN NN . The hijackings have become less frequent since the United States , China , Russia and other nations began conducting anti-piracy patrols in the waters near Somalia . DT NNS VBP VBN RBR JJ IN DT NNP NNPS , NNP , NNP CC JJ NNS VBD VBG JJ NNS IN DT NNS IN NNP . Venezuelan President Hugo Chavez and Iranian President Mohammad Khatami took turns attacking the United States Friday in Caracas during a state visit by the Iranian leader . JJ NNP NNP NNP CC JJ NNP NNP NNP VBD NNS VBG DT NNP NNPS NNP IN NNP IN DT NN NN IN DT JJ NN . In a speech to Venezuela 's National Assembly , Mr. Chavez declared that Iran has every right to develop atomic energy , and promised to oppose any U.S. efforts to stop Iran . IN DT NN TO NNP POS NNP NNP , NNP NNP VBD DT NNP VBZ DT NN TO VB JJ NN , CC VBD TO VB DT NNP NNS TO VB NNP . Washington accuses Iran of secretly developing nuclear weapons . NNP VBZ NNP IN RB VBG JJ NNS . In Mr. Khatami 's speech to the lawmakers , he denounced terrorism while condemning what he called ' crimes of liberty , ' specifically citing the U.S. Abu Ghraib prison scandal in Iraq and ongoing detentions at the U.S. naval base in Guantanamo , Cuba . IN NNP NNP POS NN TO DT NNS , PRP VBD NN IN VBG WP PRP VBD `` NNS IN NN , `` RB VBG DT NNP NNP NNP NN NN IN NNP CC JJ NNS IN DT NNP JJ NN IN NNP , NNP . On other issues , the presidents of two oil producing countries signed a number of cooperation agreements relating to oil , taxes , commerce and construction . IN JJ NNS , DT NNS IN CD NN VBG NNS VBD DT NN IN NN NNS VBG TO NN , NNS , NN CC NN . Iraqi security officials say an explosives-packed motorcycle blew up in Baghdad JJ NN NNS VBP DT JJ NN VBD RP IN NNP Thursday , killing at least four people and wounding nearly 20 others . NNP , VBG IN JJS CD NNS CC VBG RB CD NNS . Police say the blast occurred in the Shorja market area of central Baghdad . NNS VBP DT NN VBD IN DT NNP NN NN IN JJ NNP . On Wednesday , the U.S. military said Iraqi and American troops killed at least 30 insurgents and detained 27 suspects during fierce fighting in city 's the Haifa Street region , known as a Sunni Arab stronghold In another operation in Baghdad , the U.S. military says troops detained 10 terrorists after witnesses reported seeing men loading weapons into a car . IN NNP , DT NNP NN VBD JJ CC JJ NNS VBD IN JJS CD NNS CC VBD CD NNS IN JJ NN IN NN POS DT NNP NNP NN , VBN IN DT NNP NNP NN IN DT NN IN NNP , DT NNP NN VBZ NNS VBD CD NNS IN NNS VBD VBG NNS VBG NNS IN DT NN . They also seized four weapons caches . PRP RB VBD CD NNS NNS . And the U.S. military says an American soldier was killed in a Baghdad operation Wednesday . CC DT NNP NN VBZ DT JJ NN VBD VBN IN DT NNP NN NNP . Separately , the U.S. military announced the deaths of two Marines killed Tuesday in combat operations in al-Anbar province , west of the capital . RB , DT NNP NN VBD DT NNS IN CD NNS VBD NNP IN NN NNS IN NNP NN , NN IN DT NN . Lebanese forces have unearthed a mass grave in an eastern town that was the headquarters of Syrian intelligence in Lebanon for nearly three decades . JJ NNS VBP VBN DT NN NN IN DT JJ NN WDT VBD DT NN IN JJ NN IN NNP IN RB CD NNS . The remains of at least 20 people were exhumed Saturday in the Bekaa Valley town of Anjar . DT NNS IN IN JJS CD NNS VBD VBN NNP IN DT NNP NNP NN IN NNP . Officials said the bodies had been buried for years and that the remains - mostly bones - would be sent for DNA testing in an effort to identify them . NNS VBD DT NNS VBD VBN VBN IN NNS CC IN DT VBZ : RB NNS : MD VB VBN IN NNP NN IN DT NN TO VB PRP . Residents in the town discovered the grave and informed Lebanese authorities . NNS IN DT NN VBD DT JJ CC JJ JJ NNS . Syria was the main power broker in Lebanon until April , when it withdrew its remaining 15,000 troops under intense international pressure after the assassination of former Lebanese Prime Minister Rafik Hariri . NNP VBD DT JJ NN NN IN NNP IN NNP , WRB PRP VBD PRP$ VBG CD NNS IN JJ JJ NN IN DT NN IN JJ JJ NNP NNP NNP NNP . An ongoing U.N. investigation has implicated top Syrian officials in the murder , but Damascus has denied any role . DT JJ NNP NN VBZ VBN JJ JJ NNS IN DT NN , CC NNP VBZ VBN DT NN . The United States and the European Union have urged Ethiopians to reduce tensions and follow political processes to resolve an election crisis . DT NNP NNPS CC DT NNP NNP VBP VBN NNS TO VB NNS CC VB JJ NNS TO VB DT NN NN . A joint U.S. and EU statement Wednesday commended the Ethiopian people for the peaceful May 15 vote , but warned all parties to renounce violence and refrain from inflaming ethnic tensions . DT JJ NNP CC NNP NN NNP VBD DT JJ NNS IN DT JJ NNP CD NN , CC VBD DT NNS TO VB NN CC NN IN VBG JJ NNS . The election outcome remains undecided , and charges of electoral fraud sparked anti-government protests last month in which 36 people were killed . DT NN NN VBZ JJ , CC NNS IN JJ NN VBD JJ NNS JJ NN IN WDT CD NNS VBD VBN . The statement urged full participation in the official inquiry into the allegations of fraud in 140 constituencies . DT NN VBD JJ NN IN DT JJ NN IN DT NNS IN NN IN CD NNS . Wednesday 's statement also called on all Ethiopian political parties , including the Ethiopian People 's Democratic Front ( EPRDF ) , the Coalition for Unity and Democracy ( CUD ) and the United Ethiopian Democratic Forces ( UEDF ) , to respect the National Election Board and to continue working for democracy . NNP POS NN RB VBD IN DT JJ JJ NNS , VBG DT NNP NNP POS JJ NNP LRB NNP RRB , DT NN IN NNP CC NNP LRB NNP RRB CC DT NNP NNP NNP NNP LRB NNP RRB , TO VB DT NNP NNP NNP CC TO VB VBG IN NN . Authorities in Afghanistan say they have arrested four foreigners suspected of plotting terrorist attacks . NNS IN NNP VBP PRP VBP VBN CD NNS VBN IN VBG JJ NNS . Government officials say the four men - one from Iran and three from Pakistan - were picked up after they crossed illegally into Afghanistan 's Nimroz province from neighboring Iran this week . NN NNS VBP DT CD NNS IN CD IN NNP CC CD IN NNP : VBD VBN RP IN PRP VBD RB IN NNP POS NNP NN IN VBG NNP DT NN . At least one of the suspects was believed to be headed to Kandahar province in southern Afghanistan . IN JJS CD IN DT NNS VBD VBN TO VB VBN TO NNP NN IN JJ NNP . Officials in Kabul and Kandahar say the four men are suspected terrorists , but gave no details about their targets or methods . NNS IN NNP CC NNP VBP DT CD NNS VBP VBN NNS , CC VBD DT NNS IN PRP$ NNS CC NNS . Attacks by militants have increased in Afghanistan in recent months , primarily in southern and eastern regions where U.S.-led coalition forces are hunting remnants of the Taleban and al-Qaida fighters . NNS IN NNS VBP VBN IN NNP IN JJ NNS , RB IN JJ CC JJ NNS WRB JJ NN NNS VBP VBG NNS IN DT NNP CC NNP NNS . Afghan authorities have blamed the increase in suicide attacks and car-bomb explosions on foreign insurgents . JJ NNS VBP VBN DT NN IN NN NNS CC JJ NNS IN JJ NNS . A team of Dutch researchers says vaccinating chickens against bird flu can prevent a major outbreak of the disease by preventing transmission from bird to bird . DT NN IN JJ NNS VBZ VBG NNS IN NN NN MD VB DT JJ NN IN DT NN IN VBG NN IN NN TO NN . The finding was published in the American scientific journal , Proceedings of the National Academy of Sciences . DT NN VBD VBN IN DT JJ JJ NN , NNS IN DT NNP NNP IN NNPS . Scientist Jeanet Van der Goot said the study showed vaccination reduced the infectiousness of chickens with avian flu as well as reducing the susceptibility of healthy chickens . NN NNP NNP NN NNP VBD DT NN VBD NN VBD DT NN IN NNS IN JJ NN RB RB IN VBG DT NN IN JJ NNS . The study concludes that vaccination can be an attractive tool to prevent outbreaks of bird flu in poultry , thereby eliminating a source of human infections . DT NN VBZ IN NN MD VB DT JJ NN TO VB NNS IN NN NN IN NN , RB VBG DT NN IN JJ NNS . The Dutch study was conducted using a strain of the virus different from the H5N1 strain that has caused human fatalities . DT JJ NN VBD VBN VBG DT NN IN DT NN JJ IN DT NNP NN WDT VBZ VBN JJ NNS . The study says it takes about two weeks from the date of inoculation for a vaccine to protect a flock . DT NN VBZ PRP VBZ IN CD NNS IN DT NN IN NN IN DT NN TO VB DT NN . Part of the Norwegian Kingdom of the Hebrides until the 13th century when it was ceded to Scotland , the isle came under the British crown in 1765 . NN IN DT JJ NNP IN DT NNS IN DT JJ NN WRB PRP VBD VBN TO NNP , DT NN VBD IN DT JJ NN IN CD . Current concerns include reviving the almost extinct Manx Gaelic language . JJ NNS VBP VBG DT RB JJ NNP NNP NN . Isle of Man is a British crown dependency but is not part of the UK or of the European Union . NNP IN NNP VBZ DT JJ NN NN CC VBZ RB NN IN DT NNP CC IN DT NNP NNP . However , the UK Government remains constitutionally responsible for its defense and international representation . RB , DT NNP NNP VBZ RB JJ IN PRP$ NN CC JJ NN . The colonial boundaries created by Britain to delimit Uganda grouped together a wide range of ethnic groups with different political systems and cultures . DT NN NNS VBN IN NNP TO VB NNP VBD RB DT JJ NN IN JJ NNS IN JJ JJ NNS CC NNS . These differences prevented the establishment of a working political community after independence was achieved in 1962 . DT NNS VBD DT NN IN DT VBG JJ NN IN NN VBD VBN IN CD . The dictatorial regime of Idi AMIN ( 1971 - 79 ) was responsible for the deaths of some 3,00,000 opponents ; guerrilla war and human rights abuses under Milton OBOTE ( 1980 - 85 ) claimed at least another 1,00,000 lives . DT JJ NN IN NNP NNP LRB CD IN CD RRB VBD JJ IN DT NNS IN DT CD NNS ; NN NN CC JJ NNS NNS IN NNP NNP LRB CD IN CD RRB VBD IN JJS DT CD NNS . The rule of Yoweri MUSEVENI since 1986 has brought relative stability and economic growth to Uganda . DT NN IN NNP NNP IN CD VBZ VBN JJ NN CC JJ NN TO NNP . During the 1990s , the government promulgated non-party presidential and legislative elections . IN DT NNS , DT NN VBD JJ JJ CC JJ NNS . Tanzania is one of the world 's poorest economies in terms of per capita income , however , Tanzania average 7 % GDP growth per year between 2000 and 2008 on strong gold production and tourism . NNP VBZ CD IN DT NN POS JJS NNS IN NNS IN IN NN NN , RB , NNP JJ CD NN NN NN IN NN IN CD CC CD IN JJ NN NN CC NN . The economy depends heavily on agriculture , which accounts for more than 40 % of GDP , provides 85 % of exports , and employs about 80 % of the work force . DT NN VBZ RB IN NN , WDT VBZ IN JJR IN CD NN IN NN , VBZ CD NN IN NNS , CC VBZ IN CD NN IN DT NN NN . The World Bank , the IMF , and bilateral donors have provided funds to rehabilitate Tanzania 's aging economic infrastructure , including rail and port infrastructure that are important trade links for inland countries . DT NNP NNP , DT NNP , CC JJ NNS VBP VBN NNS TO VB NNP POS VBG JJ NN , VBG NN CC NN NN WDT VBP JJ NN NNS IN JJ NNS . Recent banking reforms have helped increase private-sector growth and investment , and the government has increased spending on agriculture to 7 % of its budget . JJ NN NNS VBP VBN VB JJ NN CC NN , CC DT NN VBZ VBN NN IN NN TO CD NN IN PRP$ NN . Continued donor assistance and solid macroeconomic policies supported a positive growth rate , despite the world recession . JJ NN NN CC JJ JJ NNS VBD DT JJ NN NN , IN DT NN NN . In 2008 , Tanzania received the world 's largest Millennium Challenge Compact grant , worth $ 698 million . IN CD , NNP VBD DT NN POS JJS NNP NNP NNP NN , JJ $ CD CD . Dar es Salaam used fiscal stimulus and loosened monetary policy to ease the impact of the global recession . NNP NNP NNP VBD JJ NN CC JJ JJ NN TO VB DT NN IN DT JJ NN . GDP growth in 2009 - 10 was a respectable 6 % per year due to high gold prices and increased production . NN NN IN CD : CD VBD DT JJ CD NN IN NN JJ TO JJ NN NNS CC VBN NN . Formerly an independent kingdom , Madagascar became a French colony in 1896 but regained independence in 1960 . RB DT JJ NN , NNP VBD DT JJ NN IN CD CC VBD NN IN CD . During 1992 - 93 , free presidential and National Assembly elections were held ending 17 years of single-party rule . IN CD IN CD , JJ JJ CC NNP NNP NNS VBD VBN VBG CD NNS IN JJ NN . In 1997 , in the second presidential race , Didier RATSIRAKA , the leader during the 1970s and 1980s , was returned to the presidency . IN CD , IN DT JJ JJ NN , NNP NNP , DT NN IN DT NNS CC NNS , VBD VBN TO DT NN . The 2001 presidential election was contested between the followers of Didier RATSIRAKA and Marc RAVALOMANANA , nearly causing secession of half of the country . DT CD JJ NN VBD VBN IN DT NNS IN NNP NNP CC NNP NNP , RB VBG NN IN NN IN DT NN . In April 2002 , the High Constitutional Court announced RAVALOMANANA the winner . IN NNP CD , DT NNP NNP NNP VBD NNP DT NN . RAVALOMANANA achieved a second term following a landslide victory in the generally free and fair presidential elections of 2006 . NNP VBD DT JJ NN VBG DT NN NN IN DT RB JJ CC JJ JJ NNS IN CD . In early 2009 , protests over increasing restrictions on opposition press and activities resulted in RAVALOMANANA stepping down and the presidency was conferred to the mayor of Antananarivo , Andry RAJOELINA . IN JJ CD , NNS IN VBG NNS IN NN NN CC NNS VBD IN NNP VBG RB CC DT NN VBD VBN TO DT NN IN NNP , NNP NNP . Following negotiations in July and August of 2009 , a power-sharing agreement with a 15-month transitional period was established , but has not yet been implemented . VBG NNS IN NNP CC NNP IN CD , DT JJ NN IN DT JJ JJ NN VBD VBN , CC VBZ RB RB VBN VBN . Tunisia has a diverse economy , with important agricultural , mining , tourism , and manufacturing sectors . NNP VBZ DT JJ NN , IN JJ JJ , NN , NN , CC VBG NNS . Governmental control of economic affairs while still heavy has gradually lessened over the past decade with increasing privatization , simplification of the tax structure , and a prudent approach to debt . JJ NN IN JJ NNS IN RB JJ VBZ RB VBN IN DT JJ NN IN VBG NN , NN IN DT NN NN , CC DT JJ NN TO NN . Progressive social policies also have helped raise living conditions in Tunisia relative to the region . NNP JJ NNS RB VBP VBN VB VBG NNS IN NNP JJ TO DT NN . Real growth , which averaged almost 5 % over the past decade , declined to 4.6 % in 2008 and to 03-Apr % in 2009 - 10 because of economic contraction and slowing of import demand in Europe - Tunisia 's largest export market . JJ NN , WDT VBD RB CD NN IN DT JJ NN , VBD TO CD NN IN CD CC TO CD NN IN CD IN CD IN IN JJ NN CC NN IN NN NN IN NNP IN NNP POS JJS NN NN . However , development of non-textile manufacturing , a recovery in agricultural production , and strong growth in the services sector somewhat mitigated the economic effect of slowing exports . RB , NN IN JJ NN , DT NN IN JJ NN , CC JJ NN IN DT NNS NN RB VBD DT JJ NN IN VBG NNS . Tunisia will need to reach even higher growth levels to create sufficient employment opportunities for an already large number of unemployed as well as the growing population of university graduates . NNP MD VB TO VB RB JJR NN NNS TO VB JJ NN NNS IN DT RB JJ NN IN JJ RB RB IN DT VBG NN IN NN NNS . The challenges ahead include : privatizing industry , liberalizing the investment code to increase foreign investment , improving government efficiency , reducing the trade deficit , and reducing socioeconomic disparities in the impoverished south and west . DT NNS RB VBP IN VBG NN , VBG DT NN NN TO VB JJ NN , VBG NN NN , VBG DT NN NN , CC VBG JJ NNS IN DT JJ NN CC NN . A FATHER , being on the point of death , wished to be sure that his sons would give the same attention to his farm as he himself had given it . DT NN , VBG IN DT NN IN NN , VBD TO VB JJ IN PRP$ NNS MD VB DT JJ NN TO PRP$ NN IN PRP PRP VBD VBN PRP . He called them to his bedside and said , ' My sons , there is a great treasure hid in one of my vineyards . ' PRP VBD PRP TO PRP$ NN CC VBD , `` PRP$ NNS , EX VBZ DT JJ NN NN IN CD IN PRP$ NNS . `` The sons , after his death , took their spades and mattocks and carefully dug over every portion of their land . DT NNS , IN PRP$ NN , VBD PRP$ NNS CC NNS CC RB VBD IN DT NN IN PRP$ NN . They found no treasure , but the vines repaid their labor by an extraordinary and superabundant crop . PRP VBD DT NN , CC DT NNS VBD PRP$ NN IN DT JJ CC JJ NN . A CERTAIN rich man bought in the market a Goose and a Swan . DT JJ JJ NN VBN IN DT NN DT NN CC DT NN . He fed the one for his table and kept the other for the sake of its song . PRP VBD DT CD IN PRP$ NN CC VBD DT JJ IN DT NN IN PRP$ NN . When the time came for killing the Goose , the cook went to get him at night , when it was dark , and he was not able to distinguish one bird from the other . WRB DT NN VBD IN VBG DT NN , DT NN VBD TO VB PRP IN NN , WRB PRP VBD JJ , CC PRP VBD RB JJ TO VB CD NN IN DT JJ . By mistake he caught the Swan instead of the Goose . IN NN PRP VBD DT NN RB IN DT NN . The Swan , threatened with death , burst forth into song and thus made himself known by his voice , and preserved his life by his melody . DT NN , VBN IN NN , VBD RB IN NN CC RB VBD PRP VBN IN PRP$ NN , CC VBD PRP$ NN IN PRP$ NN . AN EAGLE stayed his flight and entreated a Lion to make an alliance with him to their mutual advantage . DT NN VBD PRP$ NN CC VBD DT NN TO VB DT NN IN PRP TO PRP$ JJ NN . The Lion replied , ' I have no objection , but you must excuse me for requiring you to find surety for your good faith , for how can I trust anyone as a friend who is able to fly away from his bargain whenever he pleases ? ' DT NN VBD , `` PRP VBP DT NN , CC PRP MD VB PRP IN VBG PRP TO VB NN IN PRP$ JJ NN , IN WRB MD PRP VB DT IN DT NN WP VBZ JJ TO VB RB IN PRP$ NN WRB PRP VBZ . `` Try before you trust . VB IN PRP NN . A D.C. federal judge has ruled that begging is a form of free speech protected by the Constitution . DT NNP JJ NN VBZ VBN IN VBG VBZ DT NN IN JJ NN VBN IN DT NNP . The U.S. government says it 's a crime to give FALSE weather reports . DT NNP NN VBZ PRP VBZ DT NN TO VB JJ NN NNS . In Washington D.C. it is illegal to post a notice in public which calls another person a ' coward ' for refusing to accept a challenge to duel . IN NNP NNP PRP VBZ JJ TO VB DT NN IN JJ WDT VBZ DT NN DT `` NN `` IN VBG TO VB DT NN TO NN . William Joy ( 37 ) , of Cookstown , Co. Tyrone , is paralysed from the waist down and confined to a wheelchair as a result of a fall from a bar stool in 1989 . NNP NNP LRB CD RRB , IN NNP , NNP NNP , VBZ VBN IN DT NN RB CC VBN TO DT NN IN DT NN IN DT NN IN DT NN NN IN CD . The High Court in Belfast heard during the week that Mr. Joy is suing Michael Newell , the man who owned the bar in which the accident occurred , for damages . DT NNP NNP IN NNP VBD IN DT NN IN NNP NNP VBZ VBG NNP NNP , DT NN WP VBD DT NN IN WDT DT NN VBD , IN NNS . He claims that Mr. Newell was negligent for allowing him to sit on a 3 foot high stool while drunk . PRP VBZ IN NNP NNP VBD JJ IN VBG PRP TO VB IN DT CD NN JJ NN IN NN . Two new studies offer good news to those with high blood pressure . CD JJ NNS VBP JJ NN IN DT IN JJ NN NN . The best part is the drugs are already available . DT JJS NN VBZ DT NNS VBP RB JJ . VOA 's Carol Pearson has more . NNP POS NNP NNP VBZ RBR . U.S. federal prosecutors are conducting a criminal investigation into the levee failures that led to widespread flooding in New Orleans after Hurricane Katrina . NNP JJ NNS VBP VBG DT JJ NN IN DT NN NNS WDT VBD TO JJ NN IN NNP NNP IN NNP NNP . The office of U.S. Attorney Jim Letten says it is examining possible corruption in the flood barriers ' design , construction and maintenance . DT NN IN NNP NNP NNP NNP VBZ PRP VBZ VBG JJ NN IN DT NN NNS POS NN , NN CC NN . Mr. Letten said Wednesday that some public officials were found to have ' undisclosed conflicts of interest , ' and that his office is ' extremely concerned about those . ' NNP NNP VBD NNP IN DT JJ NNS VBD VBN TO VB `` JJ NNS IN NN , `` CC IN PRP$ NN VBZ `` RB JJ IN DT . `` New Orleans FBI agent James Bernazzani said federal agents have received numerous tips about possible misconduct related to the levees . NNP NNP NNP NN NNP NNP VBD JJ NNS VBP VBN JJ NNS IN JJ NN VBN TO DT NNS . Louisiana state and local officials are also investigating the levee failures . NNP NN CC JJ NNS VBP RB VBG DT NN NNS . At the peak of the flooding , some 80 percent of New Orleans was underwater . IN DT NN IN DT NN , DT CD NN IN NNP NNP VBD NN . It took engineers several weeks to dry out the city , most of which sits below sea level . PRP VBD NNS JJ NNS TO VB RP DT NN , JJS IN WDT VBZ IN NN NN . NATO officials say alliance troops Friday raided the home of Mladjen Kenjic , a suspected backer of fugitive wartime Bosnian Serb military commander General Ratko Mladic . NNP NNS VBP NN NNS NNP VBD DT NN IN NNP NNP , DT JJ NN IN JJ NN JJ JJ JJ NN NNP NNP NNP . A NATO spokesman says troops searched his home in the village of Vojkovici , just outside Sarajevo . DT NNP NN VBZ NNS VBD PRP$ NN IN DT NN IN NNP , RB IN NNP . News reports identify Mr. Kenjic as a former member of General Mladic 's personal security team . NNP NNS VBP NNP NNP IN DT JJ NN IN NNP NNP POS JJ NN NN . The Hague tribunal indicted General Mladic on genocide and other charges for attacks against civilians during the 1990 's conflict in Bosnia-Herzegovina . DT NNP NN VBD NNP NNP IN NN CC JJ NNS IN NNS IN NNS IN DT CD POS NN IN NNP . Kosovo police say an explosion during a protest by ethnic Serbs has wounded about a dozen people in an ethnically divided town . NNP NNS VBP DT NN IN DT NN IN JJ NNS VBZ VBN IN DT NN NNS IN DT RB VBN NN . The cause of the blast was not immediately clear . DT NN IN DT NN VBD RB RB JJ . Officials say Friday 's demonstration was called to protest the opening of a Kosovo government office in Mitrovica . NNS VBP NNP POS NN VBD VBN TO VB DT NN IN DT NNP NN NN IN NNP . The town remains deeply spit and is fraught with tension between Serbs and ethnic Albanians , more than two years after Kosovo declared independence from Serbia . DT NN VBZ RB JJ CC VBZ JJ IN NN IN NNS CC JJ NNS , JJR IN CD NNS IN NNP VBD NN IN NNP . The United States is a key supporter of Kosovo 's independence , and has maintained a peacekeeping force of more than 1,400 troops there since the country 's declaration of independence . DT NNP NNPS VBZ DT JJ NN IN NNP POS NN , CC VBZ VBN DT NN NN IN JJR IN CD NNS RB IN DT NN POS NN IN NN . The U.S. detachment is part of a 10,000-strong NATO-EU force that along with some 2,000 police , judges and prosecutors are deployed in Kosovo to help the country develop democratic institutions . DT NNP NN VBZ NN IN DT JJ NNP NN IN IN IN DT CD NNS , NNS CC NNS VBP VBN IN NNP TO VB DT NN VB JJ NNS . The U.S. embassy in Nairobi has warned that Somali-based militants may attempt to kidnap Americans and other Westerners from Kenya 's tourist beaches . DT NNP NN IN NNP VBZ VBN IN JJ NNS MD VB TO VB NNS CC JJ NNS IN NNP POS NN NNS . An embassy statement Friday said there were indications that extremists might target Westerners at Kiwayu Island and other popular resorts along Kenya 's northeastern coast , near the Somali border . DT JJ NN NNP VBD EX VBD NNS IN NNS MD VB NNS IN NNP NNP CC JJ JJ NNS IN NNP POS JJ NN , IN DT JJ NN . The warning is based on a tip Kenyan police passed along to embassy officials . DT NN VBZ VBN IN DT NN JJ NN VBD IN TO JJ NNS . Kenya closed its border with Somalia in January during fighting that pitted Islamic militia against Somali government troops and their Ethiopian allies . NNP VBD PRP$ NN IN NNP IN NNP IN VBG IN VBD JJ NN IN JJ NN NNS CC PRP$ JJ NNS . The U.S. blames the al-Qaida terrorist network for the 1998 attack that destroyed its embassy in Nairobi and for a 2002 car bombing of a beachfront hotel in southeastern Kenya . DT NNP VBZ DT NNP JJ NN IN DT CD NN WDT VBD PRP$ NN IN NNP CC IN DT CD NN NN IN DT NN NN IN JJ NNP . The U.S. military launched strikes on suspected al-Qaida targets in Somalia earlier this year . DT NNP NN VBD NNS IN JJ NNP NNS IN NNP RBR DT NN . Cambodia 's military court has laid more charges against two former Khmer Rouge leaders awaiting trial for genocide . NNP POS JJ NN VBZ VBN JJR NNS IN CD JJ NNP NNP NNS VBG NN IN NN . Military chief Ta Mok , and the head of the Tuol Sleng interrogation center , Duch , have been charged with genocide and crimes against humanity . JJ NN NNP NNP , CC DT NN IN DT NNP NNP NN NN , NNP , VBP VBN VBN IN NN CC NNS IN NN . The new charges allow the two to be held for another three years without trial . DT JJ NNS VBP DT CD TO VB VBN IN DT CD NNS IN NN . Both men were originally jailed in 1999 and charged with genocide , which meant they could be held for three years without trial . DT NNS VBD RB VBN IN CD CC VBN IN NN , WDT VBD PRP MD VB VBN IN CD NNS IN NN . In 2002 , they were charged with crimes against humanity to prevent their release . IN CD , PRP VBD VBN IN NNS IN NN TO VB PRP$ NN . The United Nations is trying to raise $ 56 million to fund a genocide tribunal . DT NNP NNP VBZ VBG TO VB $ CD CD TO VB DT NN NN . None of the leaders of the Khmer Rouge has ever been brought to trial . NN IN DT NNS IN DT NNP NNP VBZ RB VBN VBN TO NN . A Mexican court has reduced the prison sentences of two brothers who were convicted of heading a drug cartel that smuggled tons of methamphetamine into the United States . DT JJ NN VBZ VBN DT NN NNS IN CD NNS WP VBD VBN IN VBG DT NN NN WDT VBD NNS IN NN IN DT NNP NNPS . Jose de Jesus Amezcua Thursday had a 53-year prison sentence reduced to 28 years . NNP NNP NNP NNP NNP VBD DT JJ NN NN VBN TO CD NNS . His brother , Adan , had his sentence cut from 22 years to nine-and-a-half years . PRP$ NN , NNP , VBD PRP$ NN VBN IN CD NNS TO JJ NNS . No reason was given for the reduction in sentences . DT NN VBD VBN IN DT NN IN NNS . The original sentences were handed down in September of last year . DT JJ NNS VBD VBN RP IN NNP IN JJ NN . Authorities say the brothers , dubbed the ' methamphetamine kings , ' led a drug ring that imported chemical ingredients from Europe , India and Pakistan , and manufactured the stimulant for export to the United States . NNS VBP DT NNS , VBD DT `` NN NNS , `` VBD DT NN NN WDT VBD NN NNS IN NNP , NNP CC NNP , CC VBD DT NN IN NN TO DT NNP NNPS . A court in the U.S. state of California has indicted Jose de Jesus Amezcua and another brother , Luis , on drug charges . DT NN IN DT NNP NN IN NNP VBZ VBN NNP NNP NNP NNP CC DT NN , NNP , IN NN NNS . Mexican authorities have refused to extradite the brothers . JJ NNS VBP VBN TO VB DT NNS . Exit polling shows the economy to be the most pressing concern on U.S. voters ' minds . NN NN VBZ DT NN TO VB DT RBS JJ NN IN NNP NNS POS NNS . Some 60 percent of voters Tuesday named the troubled economy as the most important issue facing the nation . DT CD NN IN NNS NNP VBD DT JJ NN IN DT RBS JJ NN VBG DT NN . That finding was mirrored in two separate surveys of voters who had cast their ballots , conducted by CNN and the Associated Press . DT NN VBD VBN IN CD JJ NNS IN NNS WP VBD VBN PRP$ NNS , VBN IN NNP CC DT NNP NNP . No other issue was named the most important by more than one in 10 Americans . DT JJ NN VBD VBN DT RBS JJ IN JJR IN CD IN CD NNS . In CNN 's polling , 10 percent named Iraq as the top issue , while terrorism and health care were the most important for nine percent . IN NNP POS NN , CD NN VBD NNP IN DT JJ NN , IN NN CC NN NN VBD DT RBS JJ IN CD NN . Exit polling on voters ' preferences for president will not be released until voting stations begin to close . NN NN IN NNS POS NNS IN NN MD RB VB VBN IN NN NNS VBP TO VB . Colombian President Alvaro Uribe says he is willing to send officials to a neutral area to negotiate the swap of government-held rebels for rebel-held hostages . JJ NNP NNP NNP VBZ PRP VBZ JJ TO VB NNS TO DT JJ NN TO VB DT NN IN JJ NNS IN JJ NNS . During a speech Friday in Bogota , Mr. Uribe said international observers should go to the yet-to-be-announced meeting zone , an area he said should be free of weapons . IN DT NN NNP IN NNP , NNP NNP VBD JJ NNS MD VB TO DT JJ NN NN , DT NN PRP VBD MD VB JJ IN NNS . Wednesday , French President Nicolas Sarkozy appealed to the leftist FARC rebels to release some 45 hostages , including French-Colombian politician Ingrid Betancourt and three Americans . NNP , JJ NNP NNP NNP VBD TO DT JJ NNP NNS TO VB DT CD NNS , VBG JJ NN NNP NNP CC CD NNS . Talks between the Colombian government and the rebels had been stalled over proposals to swap the hostages for about 500 FARC prisoners being held in Colombian jails . NNS IN DT JJ NN CC DT NNS VBD VBN VBN IN NNS TO VB DT NNS IN IN CD NNP NNS VBG VBN IN JJ NNS . President Sarkozy 's appeal this week was apparently prompted by a recent videotape of the hostages which showed Betancourt looking extremely gaunt and despondent . NNP NNP POS NN DT NN VBD RB VBN IN DT JJ NN IN DT NNS WDT VBD NNP VBG RB JJ CC JJ . A former Colombian presidential candidate , Betancourt was kidnapped in February 2002 . DT JJ JJ JJ NN , NNP VBD VBN IN NNP CD . Taiwan President Chen Shui-bian says he plans to join a rally Saturday in Taipei to protest China 's threat to use force against the island if it formally declares independence . NNP NNP NNP NNP VBZ PRP VBZ TO VB DT NN NNP IN NNP TO VB NNP POS NN TO VB NN IN DT NN IN PRP RB VBZ NN . The protest is being held amid this week 's one-year anniversary of China 's approval of an anti-secession law . DT NN VBZ VBG VBN IN DT NN POS JJ NN IN NNP POS NN IN DT JJ NN . The law says China will employ ' non-peaceful means ' to prevent Taiwan 's independence if efforts at peaceful reunification fail . DT NN VBZ NNP MD VB `` JJ NNS `` TO VB NNP POS NN IN NNS IN JJ NN VBP . China and Taiwan split in 1949 after a civil war , but Beijing considers Taiwan a renegade province . NNP CC NNP NN IN CD IN DT JJ NN , CC NNP VBZ NNP DT NN NN . Mr. Chen angered Beijing last month when he decided to stop funding a unification council and scrap guidelines for reunification with China . NNP NNP VBD NNP JJ NN WRB PRP VBD TO VB VBG DT NN NN CC NN NNS IN NN IN NNP . Hobart Boulevard Elementary School is located in a poor Los Angeles neighborhood , infested with gangs and drugs . NNP NNP NNP NNP VBZ VBN IN DT JJ NNP NNP NN , VBN IN NNS CC NNS . Yet in a fifth grade classroom , children of immigrants , many who speak English as a second language , are learning important life lessons thanks to one teacher and the works of William Shakespeare . RB IN DT JJ NN NN , NNS IN NNS , NN WP VBP NNP IN DT JJ NN , VBP VBG JJ NN NNS NNS TO CD NN CC DT NNS IN NNP NNP . VOA 's Yi Suli introduces us to a group of young thespians who are known around the world as the ' Hobart Shakespeareans . ' NNP POS NNP NNP VBZ PRP TO DT NN IN JJ NNS WP VBP VBN IN DT NN IN DT `` NNP NNPS . `` In Afghanistan , a suicide bomber dressed in a military uniform has blown himself up outside an army training center in Kabul killing 10 people , including himself , and wounding at least 28 others . IN NNP , DT NN NN VBN IN DT JJ NN VBZ VBN PRP RP IN DT NN NN NN IN NNP VBG CD NNS , VBG PRP , CC VBG IN JJS CD NNS . An Afghan Defense Ministry spokesman , Mohammed Zaher Azimi , said the blast came as officers and soldiers were leaving the training center at the end of the day and were waiting for buses to take them home . DT JJ NNP NNP NN , NNP NNP NNP , VBD DT NN VBD IN NNS CC NNS VBD VBG DT NN NN IN DT NN IN DT NN CC VBD VBG IN NNS TO VB PRP NN . A purported Taleban spokesman , Abdul Latif Hakimi , claimed responsibility for the deadly attack . DT JJ NNP NN , NNP NNP NNP , VBD NN IN DT JJ NN . He identified the bomber as Kabul resident Sardar Mohammad . PRP VBD DT NN IN NNP NN NNP NNP . President Hamid Karzai condemned the attack in ' the strongest terms ' and ordered an immediate investigation . NNP NNP NNP VBD DT NN IN `` DT JJS NNS `` CC VBD DT JJ NN . Also Wednesday , three people were killed and at least four others wounded in a landmine blast in Kunar province bordering Pakistan . RB NNP , CD NNS VBD VBN CC IN JJS CD NNS VBN IN DT NN NN IN NNP NN VBG NNP . People in Georgia are voting Thursday to choose more than 1,700 members of municipal and regional councils . NNS IN NNP VBP VBG NNP TO VB JJR IN CD NNS IN JJ CC JJ NNS . The local elections are seen as a test of support for President Mikhail Saakashvili 's National Movement and its pro-Western stance . DT JJ NNS VBP VBN IN DT NN IN NN IN NNP NNP NNP POS NNP NNP CC PRP$ JJ NN . The election originally focused on local issues , but may now be seen as a barometer of Mr. Saakashvili 's performance in his standoff with Russia following last week 's arrest of four Russian officers accused of spying . DT NN RB VBD IN JJ NNS , CC MD RB VB VBN IN DT NN IN NNP NNP POS NN IN PRP$ NN IN NNP VBG JJ NN POS NN IN CD JJ NNS VBN IN VBG . The Russian government has severed transport and postal links with Tbilisi , cutting an economic lifeline for hundreds of thousands of Georgians dependent on relatives living in Russia . DT JJ NN VBZ VBN NN CC JJ NNS IN NNP , VBG DT JJ NN IN NNS IN NNS IN NNS JJ IN NNS VBG IN NNP . Since coming to power in the 2003 Rose Revolution , Mr. Saakashvili has sought to forge closer ties with the European Union and United States . IN VBG TO NN IN DT CD NNP NNP , NNP NNP VBZ VBN TO VB JJR NNS IN DT NNP NNP CC NNP NNPS . Additionally , Georgia has long accused Russia of interfering in its internal affairs by backing separatists in two breakaway areas of the country - Abkhazia and South Ossetia . RB , NNP VBZ RB VBN NNP IN VBG IN PRP$ JJ NNS IN VBG NNS IN CD JJ NNS IN DT NN IN NNP CC NNP NNP . An advisory panel for a U.S. government health agency recommends greatly increasing the number of American children who receive the influenza immunization each year . DT JJ NN IN DT NNP NN NN NN VBZ RB VBG DT NN IN JJ NNS WP VBP DT NN NN DT NN . The panel suggests every child from age six months to 18 years receive a flu shot . DT NN VBZ DT NN IN NN CD NNS TO CD NNS VBP DT NN NN . The new guideline would expand by some 30 million the number of young people who should be vaccinated . DT JJ NN MD VB IN DT CD CD DT NN IN JJ NNS WP MD VB VBN . Leta Hong Fincher has more . NNP NNP NNP VBZ RBR . Philippine communist guerrillas say they will not observe the usual Christmas ceasefire with the government . JJ NN NNS VBP PRP MD RB VB DT JJ NNP NN IN DT NN . Spokesman Gregorio Rosal for two communist groups ( the New People 's Army and the Communist Party of the Philippines ) said Thursday there is no point in a truce , and accused government forces of murdering allied leftists . NNP NNP NNP IN CD JJ NNS LRB DT NNP NNP POS NNP CC DT NNP NNP IN DT NNPS RRB VBD NNP EX VBZ DT NN IN DT NN , CC VBN NN NNS IN VBG JJ NNS . The Philippine military had recommended a unilateral ceasefire for Christmas Day ( December 25 ) and New Year 's Day , pending approval by President Gloria Arroyo . DT JJ NN VBD VBN DT JJ NN IN NNP NNP LRB NNP CD RRB CC NNP NNP POS NN , VBG NN IN NNP NNP NNP . The government and communist rebels have been engaged in armed conflict for more than 40 years . DT NN CC JJ NNS VBP VBN VBN IN JJ NN IN JJR IN CD NNS . Media reports in the United States say the Central Intelligence Agency has closed a unit that was devoted to tracking international terrorist leader Osama bin Laden and his top lieutenants . NNS NNS IN DT NNP NNPS VBP DT NNP NNP NNP VBZ VBN DT NN WDT VBD VBN TO VBG JJ JJ NN NNP NNP NNP CC PRP$ JJ NNS . The New York Times Tuesday published a report quoting officials who confirmed that the unit was disbanded last year , and that its analysts were reassigned within the agency 's counterterrorism center . DT NNP NNP NNP NNP VBD DT NN VBG NNS WP VBD IN DT NN VBD VBN JJ NN , CC IN PRP$ NNS VBD VBN IN DT NN POS NN NN . Initial news of the unit 's closure was reported on National Public Radio Monday . JJ NN IN DT NN POS NN VBD VBN IN NNP NNP NNP NNP . The Times quotes a CIA spokeswoman , Jennifer Millerwise Dyck , as saying bin Laden 's capture remains a high priority . DT NNP VBZ DT NNP NN , NNP NNP NNP , IN VBG NNP NNP POS NN VBZ DT JJ NN . Intelligence officials say the unit closure reflects a view that al-Qaida is not as hierarchical as it once was , and that terrorists may be carrying out attacks independent of bin Laden . NN NNS VBP DT NN NN VBZ DT NN IN NNP VBZ RB RB JJ IN PRP RB VBD , CC IN NNS MD VB VBG RP NNS JJ IN NNP NNP . The Times reports that the disbanded unit , known as Alec Station , operated for a decade just outside Washington , and was staffed by 24 people . DT NNP VBZ IN DT JJ NN , VBN IN NNP NNP , VBD IN DT NN RB IN NNP , CC VBD VBN IN CD NNS . Russian officials say jailed oil tycoon Mikhail Khodorkovsky has been sent to a prison colony in eastern Siberia to serve out the rest of his eight-year sentence for financial crimes . JJ NNS VBP VBN NN NN NNP NNP VBZ VBN VBN TO DT NN NN IN JJ NNP TO VB RP DT NN IN PRP$ JJ NN IN JJ NNS . The head of the local prison administration Alexander Pleshkov told the Interfax news agency Thursday Khodorkovsky had been sent to a colony in the Krasnokamensk district of Chita province , close to the Chinese border . DT NN IN DT JJ NN NN NNP NNP VBD DT NNP NN NN NNP NNP VBD VBN VBN TO DT NN IN DT NNP NN IN NNP NN , RB TO DT JJ NN . Khodorkovsky was convicted on May 31 on charges of embezzlement , fraud and tax evasion relating to his business activities in the 1990s . NNP VBD VBN IN NNP CD IN NNS IN NN , NN CC NN NN VBG TO PRP$ NN NNS IN DT NNS . Supporters of Khodorkovsky say the state 's legal action against him and the Yukos oil firm was a Kremlin-driven reprisal for the tycoon 's forays into politics in opposition to President Vladimir Putin . NNS IN NNP VBP DT NN POS JJ NN IN PRP CC DT NNP NN NN VBD DT JJ NN IN DT NN POS NNS IN NNS IN NN TO NNP NNP NNP . Russian officials deny this and say he is a common criminal . JJ NNS VBP DT CC VB PRP VBZ DT JJ NN . A former Serb leader of the Yugoslav Army has surrendered to the U.N. war crimes tribunal in The Hague . DT JJ JJ NN IN DT JJ NNP VBZ VBN TO DT NNP NN NNS JJ IN DT NNP . General Momcilo Perisic is the fourth high-ranking Serb suspect to turn himself in this year for alleged crimes during the 1990s Balkan wars . NNP NNP NNP VBZ DT JJ JJ JJ NN TO VB PRP IN DT NN IN JJ NNS IN DT NNS NNP NNS . The International Criminal Tribunal for the former Yugoslavia made public Monday eight counts of crimes against humanity and five counts of war crimes against General Perisic for his role as Chief of the General Staff of the Yugoslav Army . DT NNP NNP NNP IN DT JJ NNP VBD JJ NNP CD NNS IN NNS IN NN CC CD NNS IN NN NNS IN NNP NNP IN PRP$ NN IN NNP IN DT NNP NNP IN DT JJ NNP . The tribunal states the charges cover his actions in Sarajevo , Zagreb and Srebrenica . DT NN VBZ DT NNS VBP PRP$ NNS IN NNP , NNP CC NNP . The former general said last week that appearing before the tribunal was the best way to defend his honor and the reputation of the army . DT JJ NN VBD JJ NN IN VBG IN DT NN VBD DT JJS NN TO VB PRP$ NN CC DT NN IN DT NN . The UN Food and Agriculture Organization says migratory birds from Africa could help spread Avian Flu in the coming months . DT NNP NNP CC NNP NNP VBZ JJ NNS IN NNP MD VB VB NNP NNP IN DT JJ NNS . At the bird flu conference in Beijing , FAO Deputy Director-General David Harcharik says Avian Flu could become ' entrenched ' in the Black Sea , the Caucasus and Near East regions through trade and travel . IN DT NN NN NN IN NNP , NNP NNP NNP NNP NNP VBZ NNP NNP MD VB `` VBN `` IN DT NNP NNP , DT NNP CC NNP NNP NNS IN NN CC NN . But he says migratory birds coming from Africa in the spring could spread it further . CC PRP VBZ JJ NNS VBG IN NNP IN DT NN MD VB PRP RBR . The FAO official says countries in Africa deserve special attention . DT NNP NN VBZ NNS IN NNP VBP JJ NN . He says if bird flu were to become ' rooted in the African countryside , the consequences of a continent already devastated by hunger and poverty could be truly catastrophic . ' PRP VBZ IN NN NN VBD TO VB `` JJ IN DT JJ NN , DT NNS IN DT NN RB VBN IN NN CC NN MD VB RB JJ . `` Palestinian officials say Palestinian Authority President Mahmoud Abbas has undergone a heart procedure at a hospital in Jordan . JJ NNS VBP JJ NNP NNP NNP NNP VBZ VBN DT NN NN IN DT NN IN NNP . Officials said Wednesday Mr. Abbas would only remain briefly at the hospital . NNS VBD NNP NNP NNP MD RB VB RB IN DT NN . Reports say the Palestinian leader underwent an angioplasty , or procedure aimed at opening clogged heart arteries to increase the blood flow to his heart . NNS VBP DT JJ NN VBD DT NN , CC NN VBN IN VBG JJ NN NNS TO VB DT NN NN TO PRP$ NN . He is expected to return to the Palestinian territories Thursday . PRP VBZ VBN TO VB TO DT JJ NNS NNP . Mr. Abbas met last week at the White House with President Bush , who reaffirmed his support for the creation of a Palestinian state . NNP NNP VBD JJ NN IN DT NNP NNP IN NNP NNP , WP VBD PRP$ NN IN DT NN IN DT JJ NN . Mr. Bush also offered 50 million dollars for housing and construction in the Gaza Strip after Israel pulls out in August . NNP NNP RB VBD CD CD NNS IN NN CC NN IN DT NNP NNP IN NNP VBZ RP IN NNP . Pakistani officials say at least 90 people have been killed in the worst flooding in Pakistan 's northwest in almost 100 years . JJ NNS VBP IN JJS CD NNS VBP VBN VBN IN DT JJS NN IN NNP POS JJS IN RB CD NNS . Heavy monsoon rains continued to flood Khyber-Pakhtunkhwa province Thursday , leaving towns in the Swat Valley badly affected . NNP NN NNS VBD TO VB NNP NN NNP , VBG NNS IN DT NNP NNP RB VBD . Several thousand people have been displaced . JJ CD NNS VBP VBN VBN . Aid workers say the heavy rains are impeding the ability to reach affected areas by helicopter . JJ NNS VBP DT JJ NNS VBP VBG DT NN TO VB VBN NNS IN NN . Just across the border in Afghanistan , NATO says the Afghan National Army rescued more than 200 Afghan civilians stranded by flash floods in Nangarhar province . RB IN DT NN IN NNP , NNP VBZ DT JJ NNP NNP VBD JJR IN CD JJ NNS VBN IN NN NNS IN NNP NN . Another 50 people have been killed in southern Pakistan since storms began earlier this month . DT CD NNS VBP VBN VBN IN JJ NNP IN NNS VBD RBR DT NN . Rescue workers say more than 50,000 people have been impacted in the worst-hit areas of Baluchistan province . NN NNS VBP JJR IN CD NNS VBP VBN VBN IN DT JJ NNS IN NNP NN . Bad weather also was said to be a factor in the crash of a passenger plane Wednesday in the capital , Islamabad . JJ NN RB VBD VBN TO VB DT NN IN DT NN IN DT NN NN NNP IN DT NN , NNP . Iraqi officials say a car bomb explosion has killed at least 20 people in northern Baghdad . JJ NNS VBP DT NN NN NN VBZ VBN IN JJS CD NNS IN JJ NNP . The blast Thursday ripped through a crowd near a busy shopping area in the mainly Shi'ite neighborhood of Shaab . DT NN NNP VBD IN DT NN IN DT JJ NN NN IN DT RB JJ NN IN NNP . Iraqi officials say at least four children and three women are among the dead . JJ NNS VBP IN JJS CD NNS CC CD NNS VBP IN DT NN . At least 35 others were wounded . IN JJS CD NNS VBD VBN . On Wednesday , U.S. and Iraqi security officials said the number of insurgent attacks in Iraq has fallen to the lowest level in nearly six years . IN NNP , NNP CC JJ NN NNS VBD DT NN IN JJ NNS IN NNP VBZ VBN TO DT JJS NN IN RB CD NNS . Officials acknowledged that daily attacks continue in some areas , but military spokesman Major General David Perkins said the number of insurgent attacks has declined 90 percent since mid-2007 , when the unrest was at its height . NNS VBD IN JJ NNS VBP IN DT NNS , CC JJ NN NNP NNP NNP NNP VBD DT NN IN JJ NNS VBZ VBN CD NN IN CD , WRB DT NN VBD IN PRP$ NN . Iraqi police said a roadside bombing in the northern city of Mosul Wednesday killed three children on their way home from school . JJ NNS VBD DT NN VBG IN DT JJ NN IN NNP NNP VBD CD NNS IN PRP$ NN NN IN NN . The attack is believed to have targeted a nearby U.S. military patrol . DT NN VBZ VBN TO VB VBN DT JJ NNP JJ NN . Uniformed gunmen have kidnapped the chief of Iraq 's Olympic Committee along with some 30 other sports officials and bodyguards . JJ NNS VBP VBN DT NN IN NNP POS NNP NNP IN IN DT CD JJ NNS NNS CC NNS . Ahmed al-Hadjiya and the others were kidnapped Saturday afternoon from a conference center in Baghdad where they were holding a meeting . NNP NNP CC DT NNS VBD VBN NNP NN IN DT NN NN IN NNP WRB PRP VBD VBG DT NN . Gunmen stormed the building , blindfolded and handcuffed the hostages , then drove them away in a convoy of vehicles . NNS VBD DT NN , VBD CC VBD DT NNS , RB VBD PRP RB IN DT NN IN NNS . The bodies of two bodyguards were found later dumped along a street . DT NNS IN CD NNS VBD VBN RB VBN IN DT NN . The International Olympic Committee in Geneva condemned the kidnappings and called for the immediate release of the sports officials . DT NNP NNP NNP IN NNP VBD DT NNS CC VBN IN DT JJ NN IN DT NNS NNS . The kidnappings came after Iraq 's parliament voted to extend a state of emergency for 30 days in an effort to quell sectarian violence and insurgent attacks . DT NNS VBD IN NNP POS NN VBD TO VB DT NN IN NN IN CD NNS IN DT NN TO VB JJ NN CC JJ NNS . Elsewhere , fifteen people died in clashes and bombings , including two American soldiers . RB , CD NNS VBD IN NNS CC NNS , VBG CD JJ NNS . Army officials in the Democratic Republic of Congo say several days of skirmishes with rebel militias have killed at least 23 fighters , mostly among the militias . NNP NNS IN DT JJ NNP IN NNP VBP JJ NNS IN NNS IN JJ NNS VBP VBN IN JJS CD NNS , RB IN DT NNS . The fighting was in North Kivu province , near the DRC 's eastern border with Rwanda and Uganda . DT NN VBD IN NNP NNP NN , IN DT NNP POS JJ NN IN NNP CC NNP . Despite the presence of 17,000 U.N. peacekeeping soldiers , bands of foreign and domestic militia fighters still terrorize the country 's east . IN DT NN IN CD NNP NN NNS , NNS IN JJ CC JJ NN NNS RB VBP DT NN POS NN . The Rwandan Hutu militia , the Democratic Forces for the Liberation of Rwanda or FLDR , has operated in eastern DRC since fleeing Rwanda in 1994 , when many of them took part in the slaughter of some 8,00,000 people . DT JJ NNP NN , DT JJ NNS IN DT NN IN NNP CC NNP , VBZ VBN IN JJ NNP IN VBG NNP IN CD , WRB NN IN PRP VBD NN IN DT NN IN DT CD NNS . The DRC is struggling to rebuild after a civil war from 1998 to 2002 , when approximately four million died , mostly from hunger and disease . DT NNP VBZ VBG TO VB IN DT JJ NN IN CD TO CD , WRB RB CD CD VBD , RB IN NN CC NN . However , violence continues in the country 's east , despite a peace deal in 2003 . RB , NN VBZ IN DT NN POS JJ , IN DT NN NN IN CD . U.S. Army dog handler Sergeant Michael Smith has admitted to using his canine to scare Iraqi detainees into soiling themselves , according to witness testimony Tuesday . NNP NNP NN NN NN NNP NNP VBZ VBN TO VBG PRP$ NN TO VB JJ NNS IN VBG PRP , VBG TO NN NN NNP . The 24-year-old Smith is charged with 13 counts of abuse during his time at Abu Ghraib prison , located just outside Baghdad . DT JJ NNP VBZ VBN IN CD NNS IN NN IN PRP$ NN IN NNP NNP NN , VBN RB IN NNP . If convicted on all counts , he faces 24.5 years in prison . IN VBN IN DT NNS , PRP VBZ CD NNS IN NN . Witness John Ketzer also worked at Abu Ghraib , and says the two had a contest to see if they could force the prisoners to soil themselves . NN NNP NNP RB VBD IN NNP NNP , CC VBZ DT CD VBD DT NN TO VB IN PRP MD VB DT NNS TO VB PRP . Abu Ghraib came to the public 's attention after a 2004 investigation revealed numerous cases of prisoner abuse by American soldiers . NNP NNP VBD TO DT NN POS NN IN DT CD NN VBD JJ NNS IN NN NN IN JJ NNS . Graphic photographs showing military personnel in the act of abusing prisoners were widely circulated and led to the discharge of more than a dozen U.S. soldiers . JJ NNS VBG JJ NNS IN DT NN IN VBG NNS VBD RB VBN CC VBN TO DT NN IN JJR IN DT NN NNP NNS . A North Korean official says the country has built nuclear weapons to cope with what it calls the ' U.S. nuclear threat ' and says the nation is prepared to counter any U.S. pre-emptive strike . DT JJ JJ NN VBZ DT NN VBZ VBN JJ NNS TO VB IN WP PRP VBZ DT `` NNP JJ NN `` CC VBZ DT NN VBZ VBN TO VB DT NNP JJ NN . The state-run Korean Central News Service Tuesday quotes an unnamed North Korean Foreign Ministry spokesman as saying the United States should seek cooperation with North Korea rather than pressing it to abandon its nuclear program . DT JJ JJ NNP NNP NNP NNP VBZ DT JJ JJ JJ NNP NNP NN IN VBG DT NNP NNPS MD VB NN IN NNP NNP RB IN VBG PRP TO VB PRP$ JJ NN . The spokesman made the comments in response to the U.S. National Security Strategy released last week , which says the United States will act pre-emptively to prevent hostile acts . DT NN VBD DT NNS IN NN TO DT NNP NNP NNP NNP VBN JJ NN , WDT VBZ DT NNP NNPS MD VB RB TO VB JJ NNS . Six-nation talks over North Korea 's nuclear program have been stalled since November . JJ NNS IN NNP NNP POS JJ NN VBP VBN VBN IN NNP . North Korea is demanding that U.S. economic sanctions against Pyongyang be lifted . NNP NNP VBZ VBG IN NNP JJ NNS IN NNP VB VBN . Washington has rejected the demand , saying the sanctions are not related to the talks . NNP VBZ VBN DT NN , VBG DT NNS VBP RB VBN TO DT NNS . The African Union says it is making a symbolic contribution of $ 1,00,000 to areas affected by the Asian tsunami . DT NNP NNP VBZ PRP VBZ VBG DT JJ NN IN $ CD TO NNS VBN IN DT JJ NN . In announcing the donation , the African Union expressed its solidarity with victims from southeast Asia to the Indian Ocean coast of Africa . IN VBG DT NN , DT NNP NNP VBD PRP$ NN IN NNS IN NN NNP TO DT NNP NNP NN IN NNP . The chairman of the African Union Commission , Alpha Oumar Konare , also expressed his solidarity and sympathy to everyone affected by the disaster . DT NN IN DT NNP NNP NNP , NNP NNP NNP , RB VBD PRP$ NN CC NN TO DT VBN IN DT NN . He commended efforts by nations that are working to alleviate suffering , and called on African Union member states to provide assistance . PRP VBD NNS IN NNS WDT VBP VBG TO VB NN , CC VBN IN NNP NNP NN NNS TO VB NN . The tsunami devastated coastal areas from Malaysia to East Africa . DT NN VBD JJ NNS IN NNP TO NNP NNP . At least 200 people died in the northern Somali fishing community of Halfun . IN JJS CD NNS VBD IN DT JJ JJ NN NN IN NNP . The ocean surge also took lives in Tanzania , the Seychelles , and Kenya . DT NN NN RB VBD NNS IN NNP , DT NNP , CC NNP . Thirty-two Cuban migrants have landed on a small island in the Florida Keys . CD JJ NNS VBP VBN IN DT JJ NN IN DT NNP NNPS . Coast Guard spokeswoman Sandra Bartlett said Friday the migrants were found on an uninhabited strip of land . NNP NNP NN NNP NNP VBD NNP DT NNS VBD VBN IN DT JJ NN IN NN . She said the Coast Guard picked up the Cubans and handed them over to the U.S. Customs and Border Protection agency . PRP VBD DT NNP NNP VBD RP DT NNS CC VBD PRP RP TO DT NNP NNP CC NNP NNP NN . A border protection spokesman said Friday the 32 were in good health . DT NN NN NN VBD NNP DT CD VBD IN JJ NN . He said the migrants told him they left Cuba Monday and arrived on the island Thursday night . PRP VBD DT NNS VBD PRP PRP VBD NNP NNP CC VBD IN DT NN NNP NN . Nearly 1,500 Cubans were caught trying to reach the United States last year . RB CD NNS VBD VBN VBG TO VB DT NNP NNPS JJ NN . Cubans who set foot on U.S. territory are usually allowed to stay , while those intercepted at sea generally are sent home . NNS WP VBD NN IN NNP NN VBP RB VBN TO VB , IN DT VBN IN NN RB VBP VBN NN . Crude oil and gasoline prices eased Friday after Rita was downgraded to a category 4 Hurricane . JJ NN CC NN NNS VBD NNP IN NNP VBD VBN TO DT NN CD NNP . Prices also declined when the storm 's predicted path shifted slightly away from the center of the U.S. oil refining industry to a less populated part of the Gulf Coast . NNS RB VBD WRB DT NN POS VBN NN VBD RB RB IN DT NN IN DT NNP NN NN NN TO DT RBR JJ NN IN DT NNP NNP . But investors remain on watch because hurricanes are unpredictable , and the ' weaker ' storm is still just as strong as Hurricane Katrina , which devastated nearby New Orleans , killed more than 1,000 people , and damaged key parts of the U.S. energy industry . CC NNS VBP IN NN IN NNS VBP JJ , CC DT `` JJR `` NN VBZ RB RB RB JJ IN NNP NNP , WDT VBD JJ NNP NNP , VBD JJR IN CD NNS , CC VBN JJ NNS IN DT NNP NN NN . In the wake of Hurricane Katrina , world oil prices and gasoline prices spiked to all-time highs . IN DT NN IN NNP NNP , NN NN NNS CC NN NNS VBD TO JJ NNS . Consumers and analysts say they are worried that serious damage from Hurricane Rita could drive prices to new record highs , damaging economic growth . NNS CC NNS VBP PRP VBP VBN IN JJ NN IN NNP NNP MD VB NNS TO JJ NN NNS , VBG JJ NN . Three more concerts have been planned for the Live 8 charity event - in Japan , Canada and South Africa . CD JJR NNS VBP VBN VBN IN DT NNP CD NN NN : IN NNP , NNP CC NNP NNP . Rock star Bob Geldof , who is organizing the events , says the concerts in Tokyo and Toronto were arranged to put pressure on the Japanese and Canadian governments to increase aid to Africa . NNP NN NNP NNP , WP VBZ VBG DT NNS , VBZ DT NNS IN NNP CC NNP VBD VBN TO VB NN IN DT JJ CC JJ NNS TO VB NN TO NNP . He said now that Europe has agreed to double its aid to Africa , the Americans , Japanese and Canadians have a chance to do so as well . PRP VBD RB IN NNP VBZ VBN TO VB PRP$ NN TO NNP , DT NNS , NNS CC NNS VBP DT NN TO VB RB RB RB . For the concert in Johannesburg , Geldof said former president Nelson Mandela will open the event , as long as he is healthy enough . IN DT NN IN NNP , NNP VBD JJ NN NNP NNP MD VB DT NN , RB RB IN PRP VBZ JJ RB . Concerts also are planned in London , Paris , Rome , Berlin and Philadelphia - all on July 2 . NNS RB VBP VBN IN NNP , NNP , NNP , NNP CC NNP : DT IN NNP CD . The goal is to persuade world leaders to increase assistance to Africa . DT NN VBZ TO VB NN NNS TO VB NN TO NNP . Iran has denied allegations by an exiled opposition group that said Tehran has a secret nuclear weapons facility . NNP VBZ VBN NNS IN DT JJ NN NN WDT VBD NNP VBZ DT JJ JJ NNS NN . A top Iranian diplomat for nuclear affairs told reporters Thursday the site in question has nothing to do with nuclear activities . DT JJ JJ NN IN JJ NNS VBD NNS NNP DT NN IN NN VBZ DT TO VB IN JJ NNS . He said Iran has no undeclared nuclear facilities . PRP VBD NNP VBZ DT JJ JJ NNS . On Wednesday , the opposition National Council of Resistance of Iran alleged that Tehran has a secret uranium enrichment facility and has imported weapons-grade uranium and blueprints for a nuclear bomb . IN NNP , DT NN NNP NNP IN NNP IN NNP VBD IN NNP VBZ DT JJ NN NN NN CC VBZ VBN JJ NN CC NNS IN DT JJ NN . But Tehran says its nuclear programs are strictly for electricity generation . CC NNP VBZ PRP$ JJ NNS VBP RB IN NN NN . A recent International Atomic Energy Agency report said Iran has not diverted nuclear materials to a weapons program , although it did not rule out the possibility of secret atomic activities . DT JJ NNP NNP NNP NNP NN VBD NNP VBZ RB VBN JJ NNS TO DT NNS NN , IN PRP VBD RB VB RP DT NN IN JJ JJ NNS . Ukrainian authorities say Saturday 's scheduled signing of a controversial natural gas deal with Russia has been postponed until Wednesday , to allow officials to complete work on documents . JJ NNS VBP NNP POS VBN NN IN DT JJ JJ NN NN IN NNP VBZ VBN VBN IN NNP , TO VB NNS TO VB NN IN NNS . Under the deal reached earlier this month after a three-day Russian suspension of deliveries , Ukraine agreed to buy gas from Russia at a rate of $ 95 per 1000 cubic meters , up from the previous rate of $ 50 . IN DT NN VBN RBR DT NN IN DT JJ JJ NN IN NNS , NNP VBD TO VB NN IN NNP IN DT NN IN $ CD IN CD JJ NNS , RB IN DT JJ NN IN $ CD . But the agreement triggered a political crisis , and Ukraine 's parliament voted to dismiss the government of Prime Minister Yuriy Yekhanurov . CC DT NN VBD DT JJ NN , CC NNP POS NN VBD TO VB DT NN IN NNP NNP NNP NNP . Lawmakers Thursday also endorsed the dismissal of Justice Minister Serhiy Holovaty and Fuel and Energy Minister Ivan Plachkov . NNS NNP RB VBD DT NN IN NNP NNP NNP NNP CC NNP CC NNP NNP NNP NNP . News reports from Kiev say Mr. Plachkov may travel to Moscow Sunday for talks on gas supplies . NN NNS IN NNP VBP NNP NNP MD VB TO NNP NNP IN NNS IN NN NNS . Turkmen President Saparmurat Niyazov , whose country is also a leading supplier of natural gas to Ukraine , will also be in Moscow Sunday . JJ NNP NNP NNP , WP$ NN VBZ RB DT VBG NN IN JJ NN TO NNP , MD RB VB IN NNP NNP . It is an anxious time for the families of several Western hostages being held in Iraq - they are awaiting news on the fate of their loved ones . PRP VBZ DT JJ NN IN DT NNS IN JJ JJ NNS VBG VBN IN NNP IN PRP VBP VBG NN IN DT NN IN PRP$ VBN NNS . On Thursday , the Islamic Army in Iraq said it killed American security consultant Ronald Schulz . IN NNP , DT NNP NNP IN NNP VBD PRP VBD JJ NN NN NNP NNP . The group promised to release photos of his murder , but there has been no evidence to corroborate its claim . DT NN VBD TO VB NNS IN PRP$ NN , CC EX VBZ VBN DT NN TO VB PRP$ NN . Meanwhile , the families of another American , a Briton and two Canadians continue to fear for their loved ones , as a Saturday deadline for their execution draws closer . RB , DT NNS IN DT NN , DT NN CC CD NNS VBP TO VB IN PRP$ VBN NNS , IN DT NNP NN IN PRP$ NN VBZ RBR . Their captors have threatened to kill them unless all Iraqi prisoners are freed . PRP$ NNS VBP VBN TO VB PRP IN DT JJ NNS VBP VBN . Against this backdrop , Iraq is preparing for Thursday 's parliamentary election . IN DT NN , NNP VBZ VBG IN NNP POS JJ NN . Voters will choose a new 275-member national assembly to sit for a four-year term . NNS MD VB DT JJ JJ JJ NN TO VB IN DT JJ NN . New fighting in the Somali capital , Mogadishu , has killed at least 11 people . JJ NN IN DT JJ NN , NNP , VBZ VBN IN JJS CD NNS . In one incident , Islamist insurgents fired mortars at an African Union peacekeepers ' base Wednesday , prompting soldiers to respond . IN CD NN , NNP NNS VBD NNS IN DT NNP NNP NNS POS NN NNP , VBG NNS TO VB . Witnesses say at least seven civilians were killed and several others injured . NNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBN . In another incident , a clash between police and government soldiers at the Mogadishu police academy killed at least four people , including three soldiers and one policeman . IN DT NN , DT NN IN NNS CC NN NNS IN DT NNP NN NN VBD IN JJS CD NNS , VBG CD NNS CC CD NN . Reports say the clash began when police tried to take a gun from a solider . NNS VBP DT NN VBD WRB NNS VBD TO VB DT NN IN DT NN . Mogadishu has endured years of violence since the fall of Somalia 's last stable government in 1991 . NNP VBZ VBN NNS IN NN IN DT NN IN NNP POS JJ JJ NN IN CD . Thousands of residents have fled the city this week , ahead of an expected new round of fighting between the transitional government and the insurgents . NNS IN NNS VBP VBN DT NN DT NN , RB IN DT VBN JJ NN IN VBG IN DT JJ NN CC DT NNS . The government has promised an offensive against the Islamists , who control large portions of the capital . DT NN VBZ VBN DT NN IN DT NNS , WP VBP JJ NNS IN DT NN . France has summoned the Israeli ambassador in Paris to demand an immediate end to the construction of Jewish settlements . NNP VBZ VBN DT JJ NN IN NNP TO VB DT JJ NN TO DT NN IN JJ NNS . A French Foreign Ministry spokesman , Eric Chevallier , says the ministry 's political director met with Israeli Ambassador Daniel Shek on Thursday and called for a halt to settlement building , including in east Jerusalem . DT JJ NNP NNP NN , NNP NNP , VBZ DT NN POS JJ NN VBD IN JJ NNP NNP NNP IN NNP CC VBD IN DT NN TO NN NN , VBG IN JJ NNP . Earlier this week , both the European Union and Russia called on Israel to halt plans to build some 20 new apartments in east Jerusalem 's Sheikh Jarrah neighborhood . RBR DT NN , CC DT NNP NNP CC NNP VBD IN NNP TO VB NNS TO VB DT CD JJ NNS IN JJ NNP POS NNP NNP NN . Israeli Deputy Foreign Minister Danny Ayalon said Tuesday that Israel has the right to build anywhere in Jerusalem . JJ NNP NNP NNP NNP NNP VBD NNP IN NNP VBZ DT NN TO VB RB IN NNP . The French Foreign Ministry on Thursday also urged Israel to reopen border crossings in the Gaza Strip , to allow reconstruction of the Palestinian territory following Israel 's offensive that ended in January . DT NNP NNP NNP IN NNP RB VBD NNP TO VB NN NNS IN DT NNP NNP , TO VB NN IN DT JJ NN VBG NNP POS NN WDT VBD IN NNP . French officials expressed concern about restrictions on the movements of French diplomats in the Palestinian territories due to Israeli security measures . JJ NNS VBD NN IN NNS IN DT NNS IN JJ NNS IN DT JJ NNS JJ TO JJ NN NNS . Leaders from the African Union are gathering in Sirte , Libya , for a two-day summit to focus on fighting poverty , disease and war on the continent . NNS IN DT NNP NNP VBP VBG IN NNP , NNP , IN DT JJ NN TO VB IN VBG NN , NN CC NN IN DT NN . The leaders are expected to use the summit , which opens Monday , to pressure rich countries for more engagement in Africa . DT NNS VBP VBN TO VB DT NN , WDT VBZ NNP , TO VB JJ NNS IN JJR NN IN NNP . This includes calls for debt cancellation as well as increased funding for AU peacekeeping missions . DT VBZ NNS IN NN NN RB RB IN VBN NN IN NNP VBG NNS . U.S. and European leaders say they hope the African summit will also include a strongly worded statement about Zimbabwe 's recent clampdown on shantytowns - a move that has left millions homeless . NNP CC JJ NNS VBP PRP VBP DT JJ NN MD RB VB DT RB VBN NN IN NNP POS JJ NN IN NNS IN DT NN WDT VBZ VBN NNS JJ . On Saturday , AU foreign ministers proposed a reform plan that would give the continent two permanent seats on the United Nations Security Council , along with three non-permanent seats . IN NNP , NNP JJ NNS VBD DT NN NN WDT MD VB DT NN CD JJ NNS IN DT NNP NNP NNP NNP , IN IN CD JJ NNS . The 15-member Security Council now has five permanent members -- a status that includes veto power ( for the United States , Britain , France , Russia and China ) . DT JJ NNP NNP RB VBZ CD JJ NNS IN DT NN WDT VBZ NN NN LRB IN DT NNP NNPS , NNP , NNP , NNP CC NNP RRB . Two NATO soldiers have died in an explosion in southern Afghanistan . CD NNP NNS VBP VBN IN DT NN IN JJ NNP . NATO 's International Security Assistance Force released a statement Wednesday saying the soldiers were killed by an improvised explosive device . NNP POS NNP NNP NNP NNP VBD DT NN NNP VBG DT NNS VBD VBN IN DT JJ JJ NN . Officials did not disclose the soldiers ' nationalities . NNS VBD RB VB DT NNS POS NNS . Separately , NATO says coalition forces captured a Taliban sub-commander late Tuesday while searching a compound in Nangarhar province , east of Kabul . RB , NNP VBZ NN NNS VBD DT NNP NN RB NNP IN VBG DT NN IN NNP NN , NN IN NNP . An ISAF statement says the unidentified sub-commander was involved in kidnappings , weapons purchases and spying on coalition forces . DT NNP NN VBZ DT JJ NN VBD VBN IN NNS , NNS NNS CC VBG IN NN NNS . ISAF also says allied forces captured several other suspected militants in Helmand province late Tuesday . NNP RB VBZ JJ NNS VBN JJ JJ JJ NNS IN NNP NN RB NNP . Palestinian leader Mahmoud Abbas says he might resign if extremists block his program of peace negotiations with Israel after next week 's Palestinian parliamentary elections . JJ NN NNP NNP VBZ PRP MD VB IN NNS VBP PRP$ NN IN NN NNS IN NNP IN JJ NN POS JJ JJ NNS . Speaking to reporters in the West Bank town of Ramallah Wednesday , Mr. Abbas also defended the inclusion in the election of the militant faction Hamas , which refuses to disarm and opposes peace talks with Israel . VBG TO NNS IN DT NNP NNP NN IN NNP NNP , NNP NNP RB VBD DT NN IN DT NN IN DT JJ NN NNP , WDT VBZ TO VB CC VBZ NN NNS IN NNP . He expressed hope Hamas would moderate its views . PRP VBD NN NNP MD VB PRP$ NNS . Mr. Abbas said he remains committed to peace talks , which he described as a ' political program , ' and that he would step down if unable to carry out the program . NNP NNP VBD PRP VBZ JJ TO NN NNS , WDT PRP VBD IN DT `` JJ NN , `` CC IN PRP MD VB RB IN JJ TO VB RP DT NN . Hamas is expected to do well in the election . NNP VBZ VBN TO VB RB IN DT NN . Israel says Palestinian gunmen must be disarmed before resumption of peace talks . NNP VBZ JJ NNS MD VB VBN IN NN IN NN NNS . Brazilian President Luiz Inacio Lula da Silva and his Venezuelan counterpart , Hugo Chavez , have signed a series of agreements in what they called a strategic alliance . JJ NNP NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBP VBN DT NN IN NNS IN WP PRP VBD DT JJ NN . The two presidents met Monday in Caracas . DT CD NNS VBD NNP IN NNP . They signed accords on cooperation in the areas of oil , construction , science and the military . PRP VBD NNS IN NN IN DT NNS IN NN , NN , NN CC DT NN . The Associated Press quotes President Chavez as saying the meeting was a critical development for the countries ' integration . DT NNP NNP VBZ NNP NNP IN VBG DT NN VBD DT JJ NN IN DT NNS POS NN . During their meeting , the leaders were also to discuss the selling of Brazilian aircraft to Venezuela 's military . IN PRP$ NN , DT NNS VBD RB TO VB DT NN IN JJ NN TO NNP POS JJ . Is the leader of Coldplay icy to the press ? A Brazilian journalist claims Chris Martin is so rude that he feels sorry for his wife , actress Gwyneth Paltrow . VBZ DT NN IN NNP NN TO DT NN . DT JJ NN VBZ NNP NNP VBZ RB JJ IN PRP VBZ RB IN PRP$ NN , NN NNP NNP . A writer from Folha de Sao Paolo opined ' Gwyneth Paltrow must suffer . DT NN IN NNP NNP NNP NNP VBD `` NNP NNP MD VB . Chris Martin , her husband , is n't one of the nicest persons on earth . NNP NNP , PRP$ NN , VBZ RB CD IN DT JJS NNS IN NN . At least that 's what it seemed on the 20-minute press conference . ' IN JJS DT VBZ WP PRP VBD IN DT JJ NN NN . `` While in Brazil , Chris Martin became testy when a reporter asked him if he were planning a duet with Gwyneth . IN IN NNP , NNP NNP VBD NN WRB DT NN VBD PRP IN PRP VBD VBG DT NN IN NNP . He also complained that all that matters in today 's pop market is that one 's song becomes a ringtone . PRP RB VBD IN DT IN NNS IN NN POS NN NN VBZ IN NN POS NN VBZ DT NN . Sweden 's Anja Paerson has won her second career World Cup downhill ski race by edging home favorite Michaela Dorfmeister by 0.04 seconds in Bad Kleinkirchheim , Austria ( 0.068171296 to 0.068217593 ) . NNP POS NNP NNP VBZ VBN PRP$ JJ NN NNP NNP NN NN NN IN VBG NN NN NNP NNP IN CD NNS IN NNP NNP , NNP LRB CD TO CD RRB . Fraenzi Aufdenblatten of Sweden was a close third , only 0.08 seconds off the pace ( 0.068263889 ) . NNP NNP IN NNP VBD DT JJ NN , RB CD NNS IN DT NN LRB CD RRB . Croatian Janica Kostelic , the World Cup overall leader , missed the podium by a mere 0.01 seconds ( 0.068275463 ) . JJ NNP NNP , DT NNP NNP JJ NN , VBD DT NN IN DT JJ CD NNS LRB CD RRB . She finished less than 0.1 seconds behind Paerson , her main rival for the World Cup overall title . PRP VBD JJR IN CD NNS IN NNP , PRP$ JJ NN IN DT NNP NNP JJ NN . Last season , Kostelic was second to Paerson overall by just three points . JJ NN , NNP VBD JJ TO NNP JJ IN RB CD NNS . So far this season the Croatian skier has 782 points to the Swede 's 685 . RB RB DT NN DT JJ NN VBZ CD NNS TO DT NNP POS CD . Another women 's downhill will be held Saturday at the same site , followed by a Super G on Sunday at the redesigned Franz Klammer slope , where the first World Cup is being staged since 1997 . DT NNS POS NN MD VB VBN NNP IN DT JJ NN , VBN IN DT NNP NNP IN NNP IN DT VBN NNP NNP NN , WRB DT JJ NNP NNP VBZ VBG VBN IN CD . Thousands of fans waiting in line to enter a concert in South Korea have caused a stampede that killed 11 people and injured at least 60 . NNS IN NNS VBG IN NN TO VB DT NN IN NNP NNP VBP VBN DT NN WDT VBD CD NNS CC VBN IN JJS CD . The victims were trampled Monday when a near-capacity crowd surged toward a gate at a stadium in the city of Sangju , 270 kilometers south of Seoul . DT NNS VBD VBN NNP WRB DT NN NN VBD IN DT NN IN DT NN IN DT NN IN NNP , CD NNS RB IN NNP . Among the dead were several young boys and elderly women . IN DT NN VBD JJ JJ NNS CC JJ NNS . Officials later canceled the concert of South Korean singers popular with older audiences . NNS RB VBD DT NN IN JJ JJ NNS JJ IN JJR NNS . It was part of festivities for Korea 's National Founding Day , marking the legendary date of the country 's founding some 4000 years ago . PRP VBD NN IN NNS IN NNP POS NNP NNP NNP , VBG DT JJ NN IN DT NN POS NN DT CD NNS RB . Leftist former Mexico City Mayor Andres Manuel Lopez Obrador has kicked off his campaign for next year 's presidential election . JJ JJ NNP NNP NNP NNP NNP NNP NNP VBZ VBN RP PRP$ NN IN JJ NN POS JJ NN . Mr. Lopez Obrador opened his campaign Thursday in the northern Baja , California city of La Paz . NNP NNP NNP VBD PRP$ NN NNP IN DT JJ NNP , NNP NN IN NNP NNP . He pledged to spur the economy and fight poverty by closing the gap between the rich and poor . PRP VBD TO VB DT NN CC VB NN IN VBG DT NN IN DT JJ CC JJ . The candidate also planned campaign stop in the northern border cities of Tijuana and Mexicali . DT NN RB VBD NN NN IN DT JJ NN NNS IN NNP CC NNP . The popular 51-year-old leads public opinion polls ahead of the July , 2006 presidential race . DT JJ JJ NNS JJ NN NNS RB IN DT NNP , CD JJ NN . Much of his popularity is in the capital , where he resigned as mayor two weeks ago to pursue the presidency . NN IN PRP$ NN VBZ IN DT NN , WRB PRP VBD IN NN CD NNS RB TO VB DT NN . President Vicente Fox is prevented from running for office again by Mexico 's constitution , which limits the presidency to a single six-year term . NNP NNP NNP VBZ VBN IN VBG IN NN RB IN NNP POS NN , WDT VBZ DT NN TO DT JJ JJ NN . An outbreak of the deadly H5N1 strain of bird flu has killed at least four peacocks and one goose in the Pakistani capital , Islamabad . DT NN IN DT JJ NNP NN IN NN NN VBZ VBN IN JJS CD NNS CC CD NN IN DT JJ NN , NNP . A livestock official from the ministry of Food and Agriculture said test results confirmed the presence of H5N1 and that affected birds are being destroyed . DT NN NN IN DT NN IN NNP CC NNP VBD NN NNS VBD DT NN IN NNP CC IN JJ NNS VBP VBG VBN . Officials have closed Islamabad 's Marghzar zoo where the outbreak occurred . NNS VBP VBN NNP POS NNP NN WRB DT NN VBD . This is the fourth case of deadly bird flu detected in Pakistan . DT VBZ DT JJ NN IN JJ NN NN VBN IN NNP . No human cases have been recorded . DT JJ NNS VBP VBN VBN . The United Nations Food and Agriculture Organization ( FAO ) is warning the global fight against bird flu remains underfunded . DT NNP NNPS NNP CC NNP NNP LRB NNP RRB VBZ VBG DT JJ NN IN JJ NN VBZ JJ . FAO officials say some nations have made essential contributions , but tens of millions of dollars more than the nearly $ 20 million already given is urgently needed to prevent the spread of the virus . NNP NNS VBP DT NNS VBP VBN JJ NNS , CC NNS IN NNS IN NNS RBR IN DT RB $ CD CD RB VBN VBZ RB VBN TO VB DT NN IN DT NN . Australia Monday says it will donate an additional 40,000 courses of the anti-viral medication Tamiflu to Indonesia . NNP NNP VBZ PRP MD VB DT JJ CD NNS IN DT JJ NN NNP TO NNP . Australia 's foreign minister Alexander Downer said Indonesian authorities had been somewhat unprepared for the spread of bird flu , but they are getting better organized . NNP POS JJ NN NNP NNP VBD JJ NNS VBD VBN RB JJ IN DT NN IN NN NN , CC PRP VBP VBG RBR VBN . Meanwhile , doctors in Jakarta today said initial tests suggest a 27-year-old Indonesian woman has died of bird flu . RB , NNS IN NNP NN VBD JJ NNS VBP DT JJ JJ NN VBZ VBN IN NN NN . Bird flu has killed more than 60 people in Southeast Asia since 2003 . NN NN VBZ VBN JJR IN CD NNS IN NNP NNP IN CD . Security officials in Iraq say at least three Iraqi policemen have been killed and seven others wounded in a roadside bomb attack in the northern city of Kirkuk . NN NNS IN NNP VBP IN JJS CD JJ NNS VBP VBN VBN CC CD NNS VBN IN DT NN NN NN IN DT JJ NN IN NNP . Authorities say the attack occurred Saturday as police took part in a funeral procession for a comrade killed by insurgents on Friday . NNS VBP DT NN VBD NNP IN NNS VBD NN IN DT JJ NN IN DT NN VBN IN NNS IN NNP . Insurgents have killed hundreds of policemen in a bloody campaign to topple Iraq 's U.S.-backed government . NNS VBP VBN NNS IN NNS IN DT JJ NN TO VB NNP POS JJ NN . Saturday 's attack came on the second anniversary of the beginning of the war in Iraq . NNP POS NN VBD IN DT JJ NN IN DT NN IN DT NN IN NNP . U.S. Defense Secretary Donald Rumsfeld told Pentagon workers Friday that Iraq has made remarkable changes since U.S.-led forces invaded the country to topple Saddam Hussein . NNP NNP NNP NNP NNP VBD NNP NNS NNP IN NNP VBZ VBN JJ NNS IN JJ NNS VBD DT NN TO VB NNP NNP . Some infromation for this report provided by AP , AFP and Reuters . DT NN IN DT NN VBN IN NNP , NNP CC NNP . At least 16 people were killed and an unknown number are still trapped in a residential building that collapsed in Lagos , Nigerla late Tuesday . IN JJS CD NNS VBD VBN CC DT JJ NN VBP RB VBN IN DT JJ NN WDT VBD IN NNP , NNP JJ NNP . The four-story apartment building collapsed in the evening after many occupants had returned home from work . DT JJ NN NN VBD IN DT NN IN JJ NNS VBD VBN NN IN NN . Rescuers saved at least 36 people from the rubble , many of them injured . NNS VBD IN JJS CD NNS IN DT NN , NN IN PRP VBN . The Associated Press says authorities are blaming poor construction as the likely cause of the collapse . DT NNP NNP VBZ NNS VBP VBG JJ NN IN DT JJ NN IN DT NN . Poor construction has been blamed for previous collapses in Lagos , including the fall of an 18-story building in March that killed two people and injured 24 . JJ NN VBZ VBN VBN IN JJ NNS IN NNP , VBG DT NN IN DT JJ NN IN NNP WDT VBD CD NNS CC VBN CD . Initial sales reports from U.S. retailers have been mixed at the beginning of the important Christmas holiday shopping season . JJ NNS NNS IN NNP NNS VBP VBN VBN IN DT NN IN DT JJ NNP NN NN NN . A national shopping research group , ShopperTrak RCT corp. , reported Friday 's total sales at $ 8 billion , down about 0.9 percent from last year . DT JJ NN NN NN , NNP NNP NNP , VBD NNP POS JJ NNS IN $ CD CD , RB IN CD NN IN JJ NN . Sales had been projected to rise by about four percent . NNS VBD VBN VBN TO VB IN IN CD NN . Retailers rely on the first few days after the Thanksgiving holiday as a key time to boost overall sales for the year . NNS VBP IN DT JJ JJ NNS IN DT NNP NN IN DT JJ NN TO VB JJ NNS IN DT NN . They offer deep discounts and special deals to draw consumers shopping for presents for the annual gift-giving season . PRP VBP JJ NNS CC JJ NNS TO VB NNS NN IN NNS IN DT JJ NN NN . Sales figures were not down for all U.S. retailers . NNS NNS VBD RB RB IN DT NNP NNS . Discount store chain Wal-Mart reported sales for the month of November were up 4.3 percent from last year . NNP NN NN NNP VBD NNS IN DT NN IN NNP VBD IN CD NN IN JJ NN . Analysts examine store receipts at this time of year for clues about the overall strength of the US economy . NNS VB NN NNS IN DT NN IN NN IN NNS IN DT JJ NN IN DT NNP NN . Police in Istanbul , Turkey have arrested four men suspected of having links to al-Qaida . NNS IN NNP , NNP VBP VBN CD NNS VBN IN VBG NNS TO NNP . Police say they made the arrests in a low income area of the city and found small arms and documents on bomb-making in the men 's homes . NNS VBP PRP VBD DT NNS IN DT JJ NN NN IN DT NN CC VBD JJ NNS CC NNS IN NN IN DT NNS POS NNS . Police say the men may have been planning bomb attacks . NNS VBP DT NNS MD VB VBN VBG NN NNS . Security sources say the men were first spotted chanting slogans and hanging banners in support of al-Qaida in Iraq chief Abu Musab al-Zarqawi , shortly after U.S. forces killed him in June . NN NNS VBP DT NNS VBD JJ JJ NN NNS CC VBG NNS IN NN IN NNP IN NNP NN NNP NNP NNP , RB IN NNP NNS VBD PRP IN NNP . The International Atomic Energy Agency says Iran has failed to meet a United Nations Security Council deadline for suspending uranium enrichment . DT NNP NNP NNP NNP VBZ NNP VBZ VBN TO VB DT NNP NNP NNP NNP NN IN VBG NN NN . That assessment came in an IAEA report delivered to the U.N. Security Council Friday . DT NN VBD IN DT NNP NN VBN TO DT NNP NNP NNP NNP . On Thursday , U.S. Ambassador John Bolton said the United States is seeking a legally binding U.N. resolution to demand that Iran halt the enrichment . IN NNP , NNP NNP NNP NNP VBD DT NNP NNPS VBZ VBG DT RB JJ NNP NN TO VB IN NNP VBP DT NN . The so-called Chapter Seven resolution would clear the way for possible penalties against Iran , and would leave the door open to possible future military action . DT JJ NN CD NN MD VB DT NN IN JJ NNS IN NNP , CC MD VB DT NN JJ TO JJ JJ JJ NN . But China and Russia , who also are veto-wielding members of the Security Council , oppose sanctions against Iran . CC NNP CC NNP , WP RB VBP JJ NNS IN DT NNP NNP , VBP NNS IN NNP . Despite the international pressure , Iran remains defiant about its nuclear program , which it says is for peaceful purposes . IN DT JJ NN , NNP VBZ JJ IN PRP$ JJ NN , WDT PRP VBZ VBZ IN JJ NNS . The United States accuses Tehran of seeking nuclear weapons . DT NNP NNPS VBZ NNP IN VBG JJ NNS . Iranian President Mahmoud Ahmadinejad was quoted as saying Iran does not ' give a damn ' about Security Council resolutions . JJ NNP NNP NNP VBD VBN IN VBG NNP VBZ RB `` VB DT NN `` IN NNP NNP NNS . The United Nations children 's fund , UNICEF , has appealed for an initial $ 20 million to provide emergency relief to children and families affected by the Pakistan earthquake . DT NNP NNP NNS POS NN , NNP , VBZ VBN IN DT JJ $ CD CD TO VB NN NN TO NNS CC NNS VBN IN DT NNP NN . The agency says that almost one in every five people in the affected area is a child under the age five , and nearly half are younger than 18 . DT NN VBZ IN RB CD IN DT CD NNS IN DT JJ NN VBZ DT NN IN DT NN CD , CC RB NN VBP JJR IN CD . Many of the victims were schoolchildren just starting the day 's lessons when the quake struck . NN IN DT NNS VBD VBN RB VBG DT NN POS NNS WRB DT NN VBD . UNICEF 's Executive Director Ann M. Veneman says the appeal means immediate action to save children 's lives . NNP POS NNP NNP NNP NNP NNP VBZ DT NN VBZ JJ NN TO VB NNS POS NNS . She said needed assistance includes medical care , clean water , nutritional food for infants , clothing and shelter . PRP VBD JJ NN VBZ JJ NN , JJ NN , JJ NN IN NNS , NN CC NN . UNICEF says it has begun moving additional staff and supplies into Pakistan from its regional offices . NNP VBZ PRP VBZ VBN VBG JJ NN CC NNS IN NNP IN PRP$ JJ NNS . It says that , in addition , it is providing logistics and supplies for the frontline Pakistani surgical teams being dropped by helicopters into the most remote areas . PRP VBZ IN , IN NN , PRP VBZ VBG NNS CC NNS IN DT NN JJ JJ NNS VBG VBN IN NNS IN DT RBS JJ NNS . Turkish police say one person was killed in a marketplace blast Saturday in the western port city of Izmir . JJ NNS VBP CD NN VBD VBN IN DT NN NN NNP IN DT JJ JJ NN IN NNP . Officials say 14 others were wounded in the early morning blast . NNS VBP CD NNS VBD VBN IN DT JJ NN NN . Authorities say the homemade bomb was in a bag on a bicycle , and exploded as vendors were preparing their stalls for the day . NNS VBP DT JJ NN VBD IN DT NN IN DT NN , CC VBD IN NNS VBD VBG PRP$ NNS IN DT NN . The blast comes one day before a planned massive demonstration in Izmir to support Turkey 's secular system . DT NN VBZ CD NN IN DT JJ JJ NN IN NNP TO VB NNP POS JJ NN . Secularists say the government wants to undermine the country 's strict separation of state and religion . NNS VBP DT NN VBZ TO VB DT NN POS JJ NN IN NN CC NN . It is not clear who was responsible for the blast , which shattered windows in homes and cars . PRP VBZ RB JJ WP VBD JJ IN DT NN , WDT VBD NNS IN NNS CC NNS . Kurdish militants , leftists and radical Islamic groups have carried out bombings in Turkey in the past . NNP NNS , NNS CC JJ JJ NNS VBP VBN RP NNS IN NNP IN DT NN . Somali gunmen who hijacked a ship carrying food aid for tsunami victims have let it dock near the capital , Mogadishu , two months after the vessel 's capture . JJ NNS WP VBD DT NN VBG NN NN IN NN NNS VBP VBN PRP NN IN DT NN , NNP , CD NNS IN DT NN POS NN . A U.N. World Food Program spokeswoman confirmed Monday that the U.N.-chartered ship had arrived at El-Maan . DT NNP NNP NNP NNP NN VBD NNP IN DT JJ NN VBD VBN IN NNP . The WFP had negotiated with El-Maan port authorities to ensure a free passage of the food aid to Somalia 's transitional government for distribution . DT NNP VBD VBN IN JJ NN NNS TO VB DT JJ NN IN DT NN NN TO NNP POS JJ NN IN NN . However some reports cast doubt over whether the gunmen , who are still aboard the ship , will allow the cargo to be handed over to Somali officials . RB DT NNS VBD NN IN IN DT NNS , WP VBP RB IN DT NN , MD VB DT NN TO VB VBN IN TO JJ NNS . The ship and its 10-member crew were hijacked as it sailed from Kenya to Somalia in June . DT NN CC PRP$ JJ NN VBD VBN IN PRP VBD IN NNP TO NNP IN NNP . The WFP had hired the Kenyan vessel to carry 850 metric tons of rice donated by Japan and Germany . DT NNP VBD VBN DT JJ NN TO VB CD JJ NNS IN NN VBN IN NNP CC NNP . A private Afghan television station has aired a video of an Italian aid worker kidnapped two weeks ago in Kabul . DT JJ JJ NN NN VBZ VBN DT NN IN DT JJ NN NN VBN CD NNS RB IN NNP . The video footage , first aired by Tolo TV station Sunday , shows Clementina Cantoni wrapped in a blanket , sitting between two men pointing assault rifles at her head . DT NN NN , RB VBN IN NNP NNP NN NNP , VBZ NNP NNP VBN IN DT NN , VBG IN CD NNS VBG NN NNS IN PRP$ NN . Ms. Cantoni , who works for CARE International , spoke quietly on the recording and looked nervous . NNP NNP , WP VBZ IN NNP NNP , VBD RB IN DT NN CC VBD JJ . The TV station did not say how it had obtained the tape . DT NN NN VBD RB VB WRB PRP VBD VBN DT NN . The Italian government called the video reassuring because it shows that Ms. Cantoni is in good health . DT JJ NN VBD DT NN NN IN PRP VBZ IN NNP NNP VBZ IN JJ NN . Without elaborating , a spokesman said ' contacts are continuing . ' IN VBG , DT NN VBD `` NNS VBP VBG . `` On Friday , Afghan religious leaders issued a fatwa , or religious decree , pledging death to anyone killing a foreigner who is in the country legally . IN NNP , JJ JJ NNS VBD DT NN , CC JJ NN , VBG NN TO DT VBG DT NN WP VBZ IN DT NN RB . Afghan officials say a clash between security forces and suspected Taleban militants in eastern Nangarhar province bordering Pakistan has left two militants and one woman dead . JJ NNS VBP DT NN IN NN NNS CC VBN NNP NNS IN JJ NNP NN VBG NNP VBZ VBN CD NNS CC CD NN NN . The officials say heavy fighting between the troops and the insurgents hiding in a building in the province 's Chaparhar district began late Wednesday and lasted for hours . DT NNS VBP JJ NN IN DT NNS CC DT NNS VBG IN DT NN IN DT NN POS NNP NN VBD JJ NNP CC VBD IN NNS . Several suspected Taleban appeared to have fled . JJ JJ NNP VBD TO VB VBN . Authorities say U.S. troops supported local forces . NNS VBP NNP NNS VBD JJ NNS . But U.S. military officials could not confirm the incident . CC NNP JJ NNS MD RB VB DT NN . The clash is the latest rebel violence to hit southern and eastern provinces . DT NN VBZ DT JJS NN NN TO VB JJ CC JJ NNS . U.S.-led forces ousted the Taleban from power in late 2001 , after they refused to hand over al-Qaida leader Osama bin Laden following the September 11 attacks on the United States . JJ NNS VBD DT NNP IN NN IN JJ CD , IN PRP VBD TO VB RP NNP NN NNP NNP NNP VBG DT NNP CD NNS IN DT NNP NNPS . Iran says it has allowed U.N. nuclear inspectors to visit a high-security military site to counter U.S. accusations it is secretly developing nuclear weapons . NNP VBZ PRP VBZ VBN NNP JJ NNS TO VB DT JJ JJ NN TO VB NNP NNS PRP VBZ RB VBG JJ NNS . Foreign Ministry spokesman Hamid Reza Asefi told reporters Sunday that International Atomic Energy Agency ( IAEA ) inspectors were recently given access to the Parchin military complex , 30 kilometers southeast of Tehran . NNP NNP NN NNP NNP NNP VBD NNS NNP IN NNP NNP NNP NNP LRB NNP RRB NNS VBD RB VBN NN TO DT NNP JJ NN , CD NNS NN IN NNP . The inspectors arrived in Iran on October 28 for a weeklong visit . DT NNS VBD IN NNP IN NNP CD IN DT JJ NN . The inspection followed repeated IAEA efforts to return to Parchin to again check for radioactivity in buildings and other areas within the sprawling military complex . DT NN VBD VBN NNP NNS TO VB TO VB TO RB VB IN NN IN NNS CC JJ NNS IN DT VBG JJ NN . A previous inspection was conducted last January . DT JJ NN VBD VBN JJ NNP . Meanwhile , Iranian officials said Tehran was in talks with Russia about joint production of nuclear fuel in Iran . RB , JJ NNS VBD NNP VBD IN NNS IN NNP IN JJ NN IN JJ NN IN NNP . The officials said allowing foreign partners would help assure the international community of the peaceful nature of Iran 's nuclear program . DT NNS VBD VBG JJ NNS MD VB VB DT JJ NN IN DT JJ NN IN NNP POS JJ NN . Three U.S. companies are being sued for selling material to the former Iraqi government of Saddam Hussein used in his chemical weapon attacks against Iraqi Kurds . CD NNP NNS VBP VBG VBN IN VBG NN TO DT JJ JJ NN IN NNP NNP VBD IN PRP$ NN NN NNS IN JJ NNPS . Five Iraqi expatriates filed a class action lawsuit this week in the U.S. state of Maryland , accusing the companies of violating the Geneva Conventions in connection with the attacks . CD JJ NNS VBD DT NN NN NN DT NN IN DT NNP NN IN NNP , VBG DT NNS IN VBG DT NNP NNS IN NN IN DT NNS . The Republic of Iraq is also named in the suit . DT NNP IN NNP VBZ RB VBN IN DT NN . Saddam 's government used various chemical weapons in the anti-Kurd Anfal campaign in the late 1980s . NNP POS NN VBD JJ NN NNS IN DT JJ NNP NN IN DT JJ NNS . At a ceremony last month honoring victims in Halabja , one of the most infamous attacks , Iraq 's environment minister Narim Osman told VOA Kurdish Service foreign companies should be put on trial for their role in the killings . IN DT NN JJ NN VBG NNS IN NNP , CD IN DT RBS JJ NNS , NNP POS NN NN NNP NNP VBD NNP NNP NNP JJ NNS MD VB VBN IN NN IN PRP$ NN IN DT NNS . The companies being sued are Alcolac , VWR International , and Thermo Fisher Scientific . DT NNS VBG VBN VBP NNP , NNP NNP , CC NNP NNP NNP . China 's official news agency reports that rescuers in the southeast of the country have recovered 50 bodies from a police academy hit by a typhoon-triggered landslide . NNP POS JJ NN NN VBZ IN NNS IN DT NN IN DT NN VBP VBN CD NNS IN DT NN NN VBN IN DT JJ NN . Xinhua says some 7,000 soldiers are still searching for 36 people who remain missing . NNP VBZ DT CD NNS VBP RB VBG IN CD NNS WP VBP JJ . Officials said heavy rains from Typhoon Longwang on Sunday caused flooding and landslides in the Fujian province capital city , washing away two training school barracks that housed police recruits . NNS VBD JJ NNS IN NNP NNP IN NNP VBD NN CC NNS IN DT JJ NN NN NN , VBG RB CD NN NN NNS WDT VBD NN NNS . In a separate development , Xinhua says authorities have evacuated about 13,000 people from their homes in central China along a tributary of the Yangtze River . IN DT JJ NN , NNP VBZ NNS VBP VBN IN CD NNS IN PRP$ NNS IN JJ NNP IN DT NN IN DT NNP NNP . It says heavy rains in Hubei province have cut off several roads , and more rain is expected in the next two days . PRP VBZ JJ NNS IN NNP NN VBP VBN RP JJ NNS , CC JJR NN VBZ VBN IN DT JJ CD NNS . Crude oil prices surged above $ 50 a barrel in New York on Tuesday , amid cold weather , a falling dollar , and uncertainty about oil supplies . JJ NN NNS VBD IN $ CD DT NN IN NNP NNP IN NNP , IN JJ NN , DT VBG NN , CC NN IN NN NNS . The Bloomberg financial news service says crude oil for March delivery rose nearly $ 2 to hit $ 50.05 a barrel in late morning trading . DT NNP JJ NN NN VBZ JJ NN IN NNP NN VBD RB $ CD TO VB $ CD DT NN IN JJ NN NN . Analysts said colder-than-normal weather in key heating oil markets in Europe and the United States was one factor in boosting both demand and prices . NNS VBD JJ NN IN JJ NN NN NNS IN NNP CC DT NNP NNPS VBD CD NN IN VBG DT NN CC NNS . They also said traders are concerned that the Organization of Petroleum Exporting Countries might cut production quotas further at a meeting next month . PRP RB VBD NNS VBP VBN IN DT NNP IN NNP NNP NNPS MD VB NN NNS RB IN DT NN JJ NN . The declining value of the U.S. dollar also played a role in boosting prices because international oil transactions are generally priced in dollars . DT VBG NN IN DT NNP NN RB VBD DT NN IN VBG NNS IN JJ NN NNS VBP RB VBN IN NNS . Jordan 's national security advisor and 10 other top officials have resigned , following last week 's suicide bombings at three hotels in Amman . NNP POS JJ NN NN CC CD JJ JJ NNS VBP VBN , VBG JJ NN POS NN NNS IN CD NNS IN NNP . State media reported Tuesday that Jordan 's ambassador to Israel , Maruf Bakhit , would replace Saad Kheir as the security chief . NNP NNS VBD NNP IN NNP POS NN TO NNP , NNP NNP , MD VB NNP NNP IN DT NN NN . Royal Court chief Faisal Fayez also stepped down , and officials said Salim al-Turk would replace him . NNP NNP NN NNP NNP RB VBD RB , CC NNS VBD NNP NNP MD VB PRP . No reasons were given for the resignations . DT NNS VBD VBN IN DT NNS . Also Tuesday , officials reported that a fourth American died from injuries suffered in the attacks , raising the death toll to 58 people . RB NNP , NNS VBD IN DT JJ NNP VBD IN NNS VBN IN DT NNS , VBG DT NN NN TO CD NNS . Jordan 's Interior Ministry says it is pressing for quick approval of tougher anti-terrorism laws to prevent future attacks . NNP POS NNP NNP VBZ PRP VBZ VBG IN JJ NN IN JJR NN NNS TO VB JJ NNS . Al-Qaida in Iraq has claimed responsibility for the blasts carried out by three bombers . NNP IN NNP VBZ VBN NN IN DT NNS VBN RP IN CD NNS . Officials have arrested an Iraqi woman whose suicide vest failed to detonate in the attacks . NNS VBP VBN DT JJ NN WP$ NN NN VBD TO VB IN DT NNS . The European Union Naval Force says Somali pirates have hijacked a Panamanian-flagged cargo ship in the Gulf of Aden . DT NNP NNP NNP NNP VBZ JJ NNS VBP VBN DT JJ NN NN IN DT NNP IN NNP . The European Union 's anti-piracy force said the MV Suez vessel was captured early Monday . DT NNP NNP POS JJ NN VBD DT NNP NNP NN VBD VBN RB NNP . The ship has a 23-member crew from Egypt , Pakistan , Sri Lanka and India . DT NN VBZ DT JJ NN IN NNP , NNP , NNP NNP CC NNP . The EU force said the ship 's crew called for help when the vessel came under attack by gunfire , but by the time a naval helicopter arrived , the pirates had seized control . DT NNP NN VBD DT NN POS NN VBD IN NN WRB DT NN VBD IN NN IN NN , CC IN DT NN DT JJ NN VBD , DT NNS VBD VBN NN . Pirates have hijacked dozens of ships over the last few years , taking in tens of millions of dollars in ransom payments from ship owners . NNS VBP VBN NNS IN NNS IN DT JJ JJ NNS , VBG IN NNS IN NNS IN NNS IN NN NNS IN NN NNS . Hijackings have continued this year despite patrols off Somalia 's coast by warships from the United States , European Union , NATO and China . NNS VBP VBN DT NN IN NNS IN NNP POS NN IN NNS IN DT NNP NNPS , NNP NNP , NNP CC NNP . Somalia 's central government , fighting an Islamist insurgency , lacks the power and resources to combat piracy . NNP POS JJ NN , VBG DT NN NN , VBZ DT NN CC NNS TO VB NN . Pakistani officials say a bomb explosion ripped through a mosque in northwest Pakistan killing 11 people as they gathered for Friday prayers . JJ NNS VBP DT NN NN VBD IN DT NN IN JJ NNP VBG CD NNS IN PRP VBD IN NNP NNS . The blast targeted a mosque located next to local police headquarters in the Lower Dir region . DT NN VBD DT NN VBN JJ TO JJ NN NN IN DT NNP NNP NN . Hospital officials say at least 28 people were wounded in the bombing , including several children . NN NNS VBP IN JJS CD NNS VBD VBN IN DT NN , VBG JJ NNS . Lower Dir lies next to Swat Valley , the site of a fierce military offensive earlier this year to the oust the Taliban . NNP NNP VBZ JJ TO NNP NNP , DT NN IN DT JJ JJ NN RBR DT NN TO DT VB DT NNP . Militants have since retaliated with a series of attacks targeting security forces in the area . NNS VBP IN VBN IN DT NN IN NNS VBG NN NNS IN DT NN . In other violence , Pakistani intelligence officials say a suspected U.S. drone attack has killed three militants in the country 's northwest . IN JJ NN , JJ NN NNS VBP DT JJ NNP NN NN VBZ VBN CD NNS IN DT NN POS NN . Officials say the drone fired missiles at a house in North Waziristan Friday , killing three militants and wounding two others . NNS VBP DT NN VBD NNS IN DT NN IN NNP NNP NNP , VBG CD NNS CC VBG CD NNS . The attack , was the third by a suspected U.S. drone since Thursday . DT NN , VBD DT JJ IN DT JJ NNP NN IN NNP . An Iranian exile group says Iran has built an extensive underground tunnel network to hide a secret nuclear weapons program . DT JJ NN NN VBZ NNP VBZ VBN DT JJ JJ NN NN TO VB DT JJ JJ NNS NN . The National Council of Resistance of Iran ( NCRI ) says 14 tunnels house nuclear equipment , research workshops , and command centers across Iran . DT NNP NNP IN NNP IN NNP LRB NNP RRB VBZ CD NNS NN JJ NN , NN NNS , CC NN NNS IN NNP . The group , which the United States has designated a terrorist organization , urged the International Atomic Energy Agency ( IAEA ) to take action . DT NN , WDT DT NNP NNPS VBZ VBN DT JJ NN , VBD DT NNP NNP NNP NNP LRB NNP RRB TO VB NN . NCRI officials spoke to reporters in London about the tunnels Tuesday , one day before Britain , France and Germany hold new talks with Iran on its nuclear program . NNP NNS VBD TO NNS IN NNP IN DT NNS NNP , CD NN IN NNP , NNP CC NNP VBP JJ NNS IN NNP IN PRP$ JJ NN . European officials say the talks in Vienna will be ' talks about the talks . ' JJ NNS VBP DT NNS IN NNP MD VB `` NNS IN DT NNS . `` European nations have been pressing Iran to abandon its nuclear-fuel program . JJ NNS VBP VBN VBG NNP TO VB PRP$ JJ NN . The United States accuses Iran of secretly trying to develop a nuclear bomb , charges Tehran denies . DT NNP NNPS VBZ NNP IN RB VBG TO VB DT JJ NN , NNS NNP VBZ . Egypt 's Health Ministry says an 18-month-old boy has contracted the bird flu virus - the 55th such case since the first outbreak of the disease in the country in 2006 . NNP POS NNP NNP VBZ DT JJ NN VBZ VBN DT NN NN NN IN DT JJ JJ NN IN DT JJ NN IN DT NN IN DT NN IN CD . Egyptian media say the boy , from the central province of Minia , first showed symptoms on Friday after coming into contact with dead birds . JJ NNS VBP DT NN , IN DT JJ NN IN NNP , RB VBD NNS IN NNP IN VBG IN NN IN JJ NNS . He was taken to a hospital on Saturday and is in stable condition . PRP VBD VBN TO DT NN IN NNP CC VBZ IN JJ NN . The avian virus normally passes from bird to bird and occasionally to humans . DT JJ NN RB VBZ IN NN TO NN CC RB TO NNS . But experts fear a mutation of the virus could begin spreading from one human to another and start a pandemic that could kill millions . CC NNS VBP DT NN IN DT NN MD VB VBG IN CD JJ TO DT CC VB DT NN WDT MD VB NNS . The World Health Organization says the H5N1 strain of the virus has killed 248 people since it resurfaced in Asia in 2003 . DT NNP NNP NNP VBZ DT NNP NN IN DT NN VBZ VBN CD NNS IN PRP VBD IN NNP IN CD . A group of about 150 South Koreans has arrived in the North Korean capital of Pyongyang to take part in a half marathon race aimed at promoting reconciliation between the two Koreas . DT NN IN IN CD NNP NNS VBZ VBN IN DT JJ JJ NN IN NNP TO VB NN IN DT NN NN NN VBN IN VBG NN IN DT CD NNS . The South Korean runners arrived Wednesday and will join North Korean runners for Thursday 's 22-kilometer race through Pyongyang . DT JJ JJ NNS VBD NNP CC MD VB JJ JJ NNS IN NNP POS JJ NN IN NNP . This first-ever jointly organized half marathon is being held to commemorate the 60th anniversary of Korea 's liberation from Japan . DT JJ RB JJ NN NN VBZ VBG VBN TO VB DT JJ NN IN NNP POS NN IN NNP . After the race , the South Korean runners will take a two-day tour of historical sights and other attractions in Pyongyang . IN DT NN , DT JJ JJ NNS MD VB DT JJ NN IN JJ NNS CC JJ NNS IN NNP . They will return home on Saturday . PRP MD VB NN IN NNP . The event is the latest in a series of social , sports and cultural exchanges between the two Koreas since 2000 . DT NN VBZ DT JJS IN DT NN IN JJ , NNS CC JJ NNS IN DT CD NNP IN CD . Members of the U.S. Congress have questioned top oil company executives about record-high oil and gasoline prices , record-high profits , and billions of dollars in tax breaks that help the companies . NNS IN DT NNP NNP VBP VBN JJ NN NN NNS IN JJ NN CC NN NNS , JJ NNS , CC NNS IN NNS IN NN NNS WDT VBP DT NNS . The hearing before the House Select Committee on Energy Independence and Global Warming convened Tuesday as gasoline prices hit an average price of 86 cents a liter ( $ 3.29 a gallon ) across the United States . DT NN IN DT NNP NNP NNP IN NNP NNP CC NNP NNP VBD NNP IN NN NNS VBD DT JJ NN IN CD NNS DT NN LRB $ CD DT NN RRB IN DT NNP NNPS . The top companies together cleared $ 123 billion in profits last year , with Exxon reaping about one-third of that . DT JJ NNS RB VBD $ CD CD IN NNS JJ NN , IN NNP VBG IN NN IN DT . Majority Democrats asked why such profitable companies need $ 18 billion in tax breaks , and why they do not invest more money in renewable energy sources , such as wind or solar . NNP NNPS VBD WRB JJ JJ NNS VBP $ CD CD IN NN NNS , CC WRB PRP VBP RB VB JJR NN IN JJ NN NNS , JJ IN NN CC JJ . The executives say their profits are reasonable considering the huge size of their companies . DT NNS VBP PRP$ NNS VBP JJ VBG DT JJ NN IN PRP$ NNS . They also argue that ending tax breaks will just make soaring oil costs hit consumers even harder . PRP RB VBP IN VBG NN NNS MD RB VB VBG NN NNS VBD NNS RB RBR . A group of American civil rights lawyers and four Iraqi citizens have filed a criminal complaint in Germany calling for an investigation into top U.S. officials over the Iraqi prisoner abuse scandal . DT NN IN JJ JJ NNS NNS CC CD JJ NNS VBP VBN DT JJ NN IN NNP VBG IN DT NN IN JJ NNP NNS IN DT JJ NN NN NN . The Center for Constitutional Rights filed the complaint Tuesday with the German Federal Prosecutor 's office , under the doctrine of ' universal jurisdiction ' of alleged war criminals . DT NNP IN NNP NNP VBD DT NN NNP IN DT JJ NNP NNP POS NN , IN DT NN IN `` JJ NN `` IN JJ NN NNS . A statement from the group asks the German prosecutor to meet ' obligations ' under law to investigate allegations of torture and war crimes . DT NN IN DT NN VBZ DT JJ NN TO VB `` NNS `` IN NN TO VB NNS IN NN CC NN NNS . The statement alleges the four Iraqis were subject to beatings and sexual abuse while in U.S. detention at Baghdad 's Abu Ghraib prison . DT NN VBZ DT CD NNS VBD JJ TO NNS CC JJ NN IN IN NNP NN IN NNP POS NNP NNP NN . The complaint calls for an investigation into top U.S. officials , including Defense Secretary Donald Rumsfeld , former CIA Director George Tenet and the former commander of U.S. forces in Iraq , Lieutenant General Ricardo Sanchez . DT NN VBZ IN DT NN IN JJ NNP NNS , VBG NNP NNP NNP NNP , JJ NNP NNP NNP NNP CC DT JJ NN IN NNP NNS IN NNP , NNP NNP NNP NNP . The attorneys say U.S. investigations into the abuse have not gone far enough . DT NNS VBP NNP NNS IN DT NN VBP RB VBN RB RB . The U.S. Secret Service has begun protecting Democratic Senator and presidential candidate Barack Obama - a full 18 months before the country 's next presidential election . DT NNP NNP NNP VBZ VBN VBG JJ NNP CC JJ NN NNP NNP IN DT JJ CD NNS IN DT NN POS JJ JJ NN . The Department of Homeland Security says Obama requested the protection . DT NN IN NNP NNP VBZ NNP VBD DT NN . His fellow senator from Illinois , Richard Durban , tells reporters he got information that made him concerned for Obama 's safety , including some racist remarks on the Internet . PRP$ JJ NN IN NNP , NNP NNP , VBZ NNS PRP VBD NN WDT VBD PRP JJ IN NNP POS NN , VBG DT JJ NNS IN DT NN . Obama is seeking to become the first African-American U.S. president . NNP VBZ VBG TO VB DT JJ JJ NNP NN . Normally , protection for U.S. presidential candidates is not provided until the election year . RB , NN IN NNP JJ NNS VBZ RB VBN IN DT NN NN . Senator Durbin says he also was concerned about the large crowds that Obama draws at campaign events . NNP NNP VBZ PRP RB VBD VBN IN DT JJ NNS IN NNP VBZ IN NN NNS . New York Senator and presidential candidate Hillary Clinton has Secret Service protection , but hers is linked to her status as a former first lady . NNP NNP NNP CC JJ NN NNP NNP VBZ NNP NNP NN , CC PRP$ VBZ VBN TO PRP$ NN IN DT JJ JJ NN . Two roadside bombings in the Iraqi capital Tuesday killed four people and wounded at least 15 others . CD NN NNS IN DT JJ NN NNP VBD CD NNS CC VBD IN JJS CD NNS . Iraqi officials say the attacks were aimed at police patrols in Baghdad . JJ NNS VBP DT NNS VBD VBN IN NN NNS IN NNP . Authorities say in one case , a roadside bomb exploded near a hospital in central Baghdad , killing a police officer and a civilian . NNS VBP IN CD NN , DT NN NN VBD IN DT NN IN JJ NNP , VBG DT NN NN CC DT JJ . The second roadside attack happened in western Baghdad , killing two people . DT JJ NN NN VBD IN JJ NNP , VBG CD NNS . The music of jazz musician Miles Davis remains popular more than 16 years after his death . DT NN IN NN NN NNP NNP VBZ JJ JJR IN CD NNS IN PRP$ NN . His music is being sampled by hip-hop artists , actor Don Cheadle is set to portray him in a movie and a new CD has been released with remixed and updated versions of his music . PRP$ NN VBZ VBG VBN IN NN NNS , NN NNP NNP VBZ VBN TO VB PRP IN DT NN CC DT JJ NN VBZ VBN VBN IN VBN CC VBN NNS IN PRP$ NN . VOA Persian Service 's Benham Natagehi sat down with Davis ' son Erin to discuss his father 's music . NNP NNP NNP POS NNP NNP VBD RP IN NNP POS NN NNP TO VB PRP$ NN POS NN . Ruth Reader narrates . NNP NNP VBZ . The International Security Assistance Force in Afghanistan says its paratroopers and Afghan National Army soldiers have advanced deep into the Taliban 's heartland in Helmand province . DT NNP NNP NNP NNP IN NNP VBZ PRP$ NNS CC JJ NNP NNP NNS VBP VBN RB IN DT NNP POS NN IN NNP NN . A NATO statement Monday says the excursion marks the first time Afghan and ISAF forces ' have driven this deep ' into the area . DT NNP NN NNP VBZ DT NN VBZ DT JJ NN JJ CC NNP NNS `` VBP VBN DT JJ `` IN DT NN . NATO said as the Afghan Army arrived in large numbers , the insurgents were not able to sustain the fight and retreated . NNP VBD IN DT JJ NNP VBD IN JJ NNS , DT NNS VBD RB JJ TO VB DT NN CC VBD . Also , several suspects have been arrested after a suicide attack killed six American troops when an explosives-packed minibus blew up at the entrance of a joint NATO-Afghan base in southern Afghanistan , officials said Monday . RB , JJ NNS VBP VBN VBN IN DT NN NN VBD CD JJ NNS WRB DT JJ NN VBD RP IN DT NN IN DT JJ JJ NN IN JJ NNP , NNS VBD NNP . The assault came days ahead of a major White House review of its Afghan strategy following President Barack Obama 's decision last year to send 30,000 American reinforcements in a bid to reverse gains by the Taliban since they were ousted from power in the 2001 U.S.-led invasion . DT NN VBD NNS RB IN DT JJ NNP NNP NN IN PRP$ JJ NN VBG NNP NNP NNP POS NN JJ NN TO VB CD JJ NNS IN DT NN TO VB NNS IN DT NNP IN PRP VBD VBN IN NN IN DT CD JJ NN . The United Nations War Crimes Tribunal in The Hague will hold the first of a series of hearings Thursday on whether to transfer cases against 18 suspects to national courts in the Balkans . DT NNP NNP NNP NNP NNP IN DT NNP MD VB DT NN IN DT NN IN NNS NNP IN IN TO VB NNS IN CD NNS TO JJ NNS IN DT NNPS . Court spokesman Jim Landale told VOA the tribunal will consider a prosecution motion to transfer the cases against war crimes suspects Mirko Norac and Rahim Ademi to courts in Croatia . NNP NN NNP NNP VBD NNP DT NN MD VB DT NN NN TO VB DT NNS IN NN NNS VBZ NNP NNP CC NNP NNP TO NNS IN NNP . The two , both Croatian army officers , are accused of killing Serb civilians in Croatia 's Medak pocket in 1993 . DT CD , DT JJ NN NNS , VBP VBN IN VBG JJ NNS IN NNP POS NNP NN IN CD . He said the court will hold several more hearings against other suspects in coming months . PRP VBD DT NN MD VB JJ JJR NNS IN JJ NNS IN VBG NNS . The Hague court is scheduled to complete all its activities by 2010 . DT NNP NN VBZ VBN TO VB DT PRP$ NNS IN CD . The prosecution calls the nine cases a ' first batch ' and says other cases may be moved to the Balkans later to allow The Hague tribunal to deal with more important trials . DT NN VBZ DT CD NNS DT `` JJ NN `` CC VBZ JJ NNS MD VB VBN TO DT NNPS RB TO VB DT NNP NN TO VB IN RBR JJ NNS . French Prime Minister Jean-Pierre Raffarin has successfully undergone gall bladder surgery . NNP NNP NNP NNP NNP VBZ RB VBN NN NN NN . Defense ministry officials say the surgery Saturday went well and they indicate that Mr. Raffarin will remain in the hospital for several days . NNP NN NNS VBP DT NN NNP VBD RB CC PRP VBP IN NNP NNP MD VB IN DT NN IN JJ NNS . Earlier Saturday , Mr. Raffarin abruptly canceled plans to travel to World War II anniversary ceremonies in the city of Reims . RBR NNP , NNP NNP RB VBD NNS TO VB TO NNP NNP NNP NN NNS IN DT NN IN NNP . Instead , he entered the Paris Val De Grace military hospital . RB , PRP VBD DT NNP NNP NNP NNP JJ NN . The 56-year-old Mr. Raffarin assumed the post of prime minister three years ago . DT JJ NNP NNP VBD DT NN IN JJ NN CD NNS RB . Iraqi security forces say a car bomb exploded at a market in northern Diyala province Friday , killing at least 23 people . JJ NN NNS VBP DT NN NN VBD IN DT NN IN JJ NNP NN NNP , VBG IN JJS CD NNS . Officials say the blast occurred in the town of Khalis and injured more than 50 people . NNS VBP DT NN VBD IN DT NN IN NNP CC VBD JJR IN CD NNS . In late March , at least 42 people were killed in twin bombings near a restaurant in Khalis . IN JJ NNP , IN JJS CD NNS VBD VBN IN JJ NNS IN DT NN IN NNP . The explosions occurred shortly before Iraqi officials announced full preliminary results from the March 7 parliamentary election . DT NNS VBD RB IN JJ NNS VBD JJ JJ NNS IN DT NNP CD JJ NN . Election officials say former Prime Minister Ayad Allawi 's bloc won 91 seats , the most of any political group . NN NNS VBP JJ JJ NN NNP NNP POS NN VBD CD NNS , DT JJS IN DT JJ NN . Prime Minister Nouri al-Maliki 's coalition won 89 . JJ NN NNP NNP POS NN VBD CD . Neither party had the majority needed to form a government . DT NN VBD DT NN VBN TO VB DT NN . Residents of a Kurdish area in northeastern Iraq are alleging that Iran has fired artillery shells across the border into two villages in Iraq . NNS IN DT JJ NN IN JJ NNP VBP VBG IN NNP VBZ VBN NN NNS IN DT NN IN CD NNS IN NNP . Residents say farmland was damaged in the alleged shelling in Penjwin , which is east of Sulaimaniya . NNS VBP NN VBD VBN IN DT JJ NN IN NNP , WDT VBZ NN IN NNP . No injuries were reported . DT NNS VBD VBN . Earlier this week , Kurdish leaders said two other villages in northeastern Iraq had been the target of Iranian shelling , prompting frightened residents to flee their homes . RBR DT NN , NNP NNS VBD CD JJ NNS IN JJ NNP VBD VBN DT NN IN JJ NN , VBG JJ NNS TO VB PRP$ NNS . In recent months , Iranian forces have clashed with Kurdish rebels in northwestern Iran . IN JJ NNS , JJ NNS VBP VBN IN JJ NNS IN JJ NNP . The insurgents are believed to be linked to Turkey 's separatist Kurdistan Workers Party , or PKK . DT NNS VBP VBN TO VB VBN TO NNP POS JJ NNP NNP NNP , CC NNP . Opponents of Venezuelan President Hugo Chavez marched through the streets of Caracas Saturday to demand a fair and legitimate vote during next Sunday 's local elections . NNS IN JJ NNP NNP NNP VBD IN DT NNS IN NNP NNP TO VB DT JJ CC JJ NN IN JJ NNP POS JJ NNS . The protesters say they are concerned the August 7 vote will be plagued by irregularities favoring Mr. Chavez 's ruling party . DT NNS VBP PRP VBP VBN DT NNP CD NN MD VB VBN IN NNS VBG NNP NNP POS VBG NN . The protesters are demanding anti-fraud measures be put in place , including an independent audit of the vote . DT NNS VBP VBG JJ NNS VB VBN IN NN , VBG DT JJ NN IN DT NN . Some supporters of the president threw rocks and bottles at the marchers . DT NNS IN DT NN VBD NNS CC NNS IN DT NNS . Police blocked the crowd of at least 1,000 protesters from reaching the electoral council 's office where they had planned to hand over a list of demands . NNP VBD DT NN IN IN JJS CD NNS IN VBG DT JJ NN POS NN WRB PRP VBD VBN TO VB IN DT NN IN NNS . Mr. Chavez 's opponents say he is ruling Venezuela like a dictator , and have accused him of rigging last year 's referendum of his rule , although international observers endorsed results of the vote . NNP NNP POS NNS VBP PRP VBZ VBG NNP IN DT NN , CC VBP VBN PRP IN VBG JJ NN POS NN IN PRP$ NN , IN JJ NNS VBD NNS IN DT NN . President Bush says he supports a criminal investigation into the destruction of CIA videotapes showing interrogations of terror suspects . NNP NNP VBZ PRP VBZ DT JJ NN IN DT NN IN NNP NNS VBG NNS IN NN NNS . Mr. Bush made the comment Thursday in an interview with Reuters new agency . NNP NNP VBD DT NN NNP IN DT NN IN NNP JJ NN . Earlier today , White House spokeswoman Dana Perino said Mr. Bush will cooperate with U.S. Attorney General Michael Mukasey in the investigation . RBR NN , NNP NNP NN NNP NNP VBD NNP NNP MD VB IN NNP NNP NNP NNP NNP IN DT NN . She said Mr. Bush has full confidence in both Mukasey and the head of the Central Intelligence Agency , Michael Hayden . PRP VBD NNP NNP VBZ JJ NN IN DT NNP CC DT NN IN DT NNP NNP NNP , NNP NNP . Mukasey announced the Justice Department investigation Wednesday , appointing federal prosecutor John Durham to lead the inquiry . NNP VBD DT NNP NNP NN NNP , VBG JJ NN NNP NNP TO VB DT NN . The CIA said last month that some videotapes of al-Qaida suspect interrogations , made in 2002 , had been destroyed in 2005 to protect the identities of the interrogators . DT NNP VBD JJ NN IN DT NNS IN NNP NN NNS , VBN IN CD , VBD VBN VBN IN CD TO VB DT NNS IN DT NNS . Critics of the move accuse the CIA of destroying evidence of torture . NNS IN DT NN VBP DT NNP IN VBG NN IN NN . President Bush has said the United States does not use torture as a method of interrogation . NNP NNP VBZ VBN DT NNP NNPS VBZ RB VB NN IN DT NN IN NN . The U.S. military in Afghanistan says it is spending $ 83 million to upgrade its two main air bases at Bagram and Kandahar . DT NNP NN IN NNP VBZ PRP VBZ VBG $ CD CD TO VB PRP$ CD JJ NN NNS IN NNP CC NNP . The commander of U.S. air forces in the war-torn country , Brigadier General James Hunt , told a news conference in Kabul Monday the money will be spent to improve vital facilities at the two bases . DT NN IN NNP NN NNS IN DT JJ NN , NNP NNP NNP NNP , VBD DT NN NN IN NNP NNP DT NN MD VB VBN TO VB JJ NNS IN DT CD NNS . He said the military has been continuously improving runways , taxiways , navigation aids , airfield lighting , and other facilities . PRP VBD DT NN VBZ VBN RB VBG NNS , NNS , NN NNS , NN NN , CC JJ NNS . The U.S.-led coalition has more than 17,000 troops in Afghanistan , mostly in the south and southeast , where the remnants of the ousted Taleban regime are most active . DT JJ NN VBZ JJR IN CD NNS IN NNP , RB IN DT NN CC NN , WRB DT NNS IN DT JJ NNP NN VBP RBS JJ . Afghan leaders say they want a long-term strategic partnership with the United States , and Washington has expressed interest in having permanent bases in Afghanistan . JJ NNS VBP PRP VBP DT JJ JJ NN IN DT NNP NNPS , CC NNP VBZ VBN NN IN VBG JJ NNS IN NNP . Somalia 's transitional government has ordered the closure of four major news outlets in the capital , Mogadishu . NNP POS JJ NN VBZ VBN DT NN IN CD JJ NN NNS IN DT NN , NNP . Officials issued a letter Monday ordering the al-Jazeera network and three local private radio stations - Shabelle , Holy Koran , and HornAfrik - to shut down their operations immediately . NNS VBD DT NN NNP VBG DT NNP NN CC CD JJ JJ NN NNS IN NNP , NNP NNP , CC NNP : TO VB RP PRP$ NNS RB . A government spokesman , Abdirahman Dinari , said that now there is a government in place , the media outlets need to get a license , and , in his words , ' avoid causing unrest by airing unconfirmed reports . ' DT NN NN , NNP NNP , VBD IN RB EX VBZ DT NN IN NN , DT NNS NNS VBP TO VB DT NN , CC , IN PRP$ NNS , `` VB VBG NN IN VBG JJ NNS . `` The U.N.-backed Somali interim government declared three months of martial law on Saturday . DT JJ JJ JJ NN VBD CD NNS IN JJ NN IN NNP . U.N. Secretary-General Kofi Annan has asked the Security Council to move faster to help end violence in Sudan 's western Darfur region . NNP NNP NNP NNP VBZ VBN DT NNP NNP TO VB RBR TO VB VB NN IN NNP POS JJ NNP NN . Mr. Annan met with council members Monday after new reports that people are being killed and raped , and villages continue to be burned in Darfur . NNP NNP VBD IN NN NNS NNP IN JJ NNS IN NNS VBP VBG VBN CC VBN , CC NNS VBP TO VB VBN IN NNP . He says council members promised to introduce a new resolution on Darfur this week , which will include measures for holding accountable those accused of crimes . PRP VBZ NN NNS VBD TO VB DT JJ NN IN NNP DT NN , WDT MD VB NNS IN VBG JJ DT VBN IN NNS . Security Council members are also considering sending peacekeepers or imposing sanctions on Sudan 's government . NNP NNP NNS VBP RB VBG VBG NNS CC VBG NNS IN NNP POS NN . Mr. Annan says U.N. members should back an African Union team monitoring a cease-fire between pro-government forces and Darfur rebels . NNP NNP VBZ NNP NNS MD VB DT NNP NNP NN VBG DT NN IN JJ NNS CC NNP NNS . Meantime , the top U.N. humanitarian official , Jan Egeland , says humanitarian conditions have improved in Darfur , despite continued fighting . RB , DT JJ NNP JJ NN , NNP NNP , VBZ JJ NNS VBP VBN IN NNP , IN JJ NN . The United Nations tribunal in The Hague has given Serbian General Sreten Lukic 30 days to enter a plea to charges of war crimes in Kosovo . DT NNP NNP NN IN DT NNP VBZ VBN JJ NNP NNP NNP CD NNS TO VB DT NN TO NNS IN NN NNS IN NNP . General Lukic , who arrived in The Hague Monday , sought the extra time to permit a medical examination following vascular surgery last week . NNP NNP , WP VBD IN DT NNP NNP , VBD DT JJ NN TO VB DT JJ NN VBG JJ NN JJ NN . The tribunal has indicted General Lukic and three other Serbian generals on charges of war crimes and crimes against humanity against Kosovo Albanians in 1999 . DT NN VBZ VBN NNP NNP CC CD JJ JJ NNS IN NNS IN NN NNS CC NNS IN NN IN NNP NNS IN CD . One of the three has surrendered voluntarily , the two others are in hiding . CD IN DT CD VBZ VBN RB , DT CD NNS VBP IN NN . Meanwhile , in Belgrade , Serbia 's extreme nationalist Radical Party has filed a motion of no-confidence in the government of Prime Minister Vojislav Kostunica to protest the extradition of 11 suspects to the court since October . RB , IN NNP , NNP POS JJ NN NNP NNP VBZ VBN DT NN IN NN IN DT NN IN NNP NNP NNP NNP TO VB DT NN IN CD NNS TO DT NN IN NNP . The Serbian government says it has encouraged war crimes suspects to surrender to the tribunal . DT JJ NN VBZ PRP VBZ VBN NN NNS VBZ TO VB TO DT NN . Montevideo , founded by the Spanish in 1726 as a military stronghold , soon took advantage of its natural harbor to become an important commercial center . NNP , VBN IN DT JJ IN CD IN DT JJ NN , RB VBD NN IN PRP$ JJ NN TO VB DT JJ JJ NN . Claimed by Argentina but annexed by Brazil in 1821 , Uruguay declared its independence four years later and secured its freedom in 1828 after a three-year struggle . VBN IN NNP CC VBN IN NNP IN CD , NNP VBD PRP$ NN CD NNS RB CC VBN PRP$ NN IN CD IN DT JJ NN . The administrations of President Jose BATLLE in the early 20th century established widespread political , social , and economic reforms that established a statist tradition . DT NNS IN NNP NNP NNP IN DT JJ JJ NN VBD JJ JJ , JJ , CC JJ NNS WDT VBD DT JJ NN . A violent Marxist urban guerrilla movement named the Tupamaros , launched in the late 1960s , led Uruguay 's president to cede control of the government to the military in 1973 . DT JJ JJ JJ NN NN VBD DT NNPS , VBN IN DT JJ NNS , VBD NNP POS NN TO VB NN IN DT NN TO DT NN IN CD . By yearend , the rebels had been crushed , but the military continued to expand its hold over the government . IN NN , DT NNS VBD VBN VBN , CC DT NN VBD TO VB PRP$ NN IN DT NN . Civilian rule was not restored until 1985 . JJ NN VBD RB VBN IN CD . In 2004 , the left-of-center Frente Amplio Coalition won national elections that effectively ended 170 years of political control previously held by the Colorado and Blanco parties . IN CD , DT NN NNP NNP NNP VBD JJ NNS IN RB VBN CD NNS IN JJ NN RB VBN IN DT NNP CC NNP NNS . Uruguay 's political and labor conditions are among the freest on the continent . NNP POS JJ CC NN NNS VBP IN DT JJS IN DT NN . The Cayman Islands were colonized from Jamaica by the British during the 18th and 19th centuries and were administered by Jamaica after 1863 . DT NNP NNP VBD VBN IN NNP IN DT JJ IN DT JJ CC JJ NNS CC VBD VBN IN NNP IN CD . In 1959 , the islands became a territory within the Federation of the West Indies . IN CD , DT NNS VBD DT NN IN DT NNP IN DT NNP NNPS . When the Federation dissolved in 1962 , the Cayman Islands chose to remain a British dependency . WRB DT NNP VBD IN CD , DT NNP NNP VBD TO VB DT JJ NN . The West Bank - the larger of the two areas comprising the Palestinian territories - experienced a high single-digit economic growth rate in 2010 as a result of inflows of donor aid , the Palestinian Authority 's ( PA ) implementation of economic and security reforms , and the easing of some movement and access restrictions by the Israeli Government . DT NNP NNP IN DT JJR IN DT CD NNS VBG DT JJ NNS : VBD DT JJ JJ JJ NN NN IN CD IN DT NN IN NNS IN NN NN , DT JJ NNP POS LRB NNP RRB NN IN JJ CC NN NNS , CC DT NN IN DT NN CC NN NNS IN DT JJ NN . Nevertheless , overall standard-of-living measures remain near levels seen prior to the start of the second intifada in 2000 . RB , JJ JJ NNS VBP JJ NNS VBN RB TO DT NN IN DT JJ NN IN CD . The almost decade-long downturn largely has been a result of Israeli closure policies - a steady increase in movement and access restrictions across the West Bank in response to Israeli security concerns which have disrupted labor and trade flows , industrial capacity , and basic commerce , both external and internal . DT RB JJ NN RB VBZ VBN DT NN IN JJ NN NNS IN DT JJ NN IN NN CC NN NNS IN DT NNP NNP IN NN TO JJ NN NNS WDT VBP VBN NN CC NN NNS , JJ NN , CC JJ NN , DT JJ CC JJ . Since 2008 , the PA under President Mahmoud ABBAS and Prime Minister Salam FAYYAD has implemented a largely successful campaign of institutional reforms that has contributed to increased security and economic performance , supported by more than $ 3 billion in direct foreign donor assistance to the PA 's budget since 2007 . IN CD , DT NNP IN NNP NNP NNP CC NNP NNP NNP NNP VBZ VBN DT RB JJ NN IN JJ NNS WDT VBZ VBN TO VBN NN CC JJ NN , VBN IN JJR IN $ CD CD IN JJ JJ NN NN TO DT NNP POS NN IN CD . An easing of some Israeli restrictions on West Bank movement and access since 2008 also has contributed to an uptick in retail activity in larger cities . DT NN IN DT JJ NNS IN NNP NNP NN CC NN IN CD RB VBZ VBN TO DT NN IN JJ NN IN JJR NNS . The biggest impediments to economic improvements in the West Bank remain Palestinians ' lack of access to land and resources in Israeli-controlled areas , import and export restrictions , and a high-cost capital structure . DT JJS NNS TO JJ NNS IN DT NNP NNP VBP NNS POS NN IN NN TO NN CC NNS IN JJ NNS , NN CC NN NNS , CC DT JJ NN NN . Absent robust private sector growth , the PA will continue to rely heavily on donor aid for its budgetary needs . NNP JJ JJ NN NN , DT NNP MD VB TO VB RB IN NN NN IN PRP$ JJ NNS . The Indian Ocean is the third largest of the world 's five oceans ( after the Pacific Ocean and Atlantic Ocean , but larger than the Southern Ocean and Arctic Ocean ) . DT NNP NNP VBZ DT JJ JJS IN DT NN POS CD NNS LRB IN DT NNP NNP CC NNP NNP , CC JJR IN DT NNP NNP CC NNP NNP RRB . Four critically important access waterways are the Suez Canal ( Egypt ) , Bab el Mandeb ( Djibouti-Yemen ) , Strait of Hormuz ( Iran-Oman ) , and Strait of Malacca ( Indonesia-Malaysia ) . CD RB JJ NN NNS VBP DT NNP NNP LRB NNP RRB , NNP NNP NNP LRB NNP RRB , NNP IN NNP LRB NNP RRB , CC NNP IN NNP LRB NNP RRB . The decision by the International Hydrographic Organization in the spring of 2000 to delimit a fifth ocean , the Southern Ocean , removed the portion of the Indian Ocean south of 60 degrees south latitude . DT NN IN DT NNP NNP NNP IN DT NN IN CD TO VB DT JJ NN , DT NNP NNP , VBD DT NN IN DT NNP NNP NN IN CD NNS JJ NN . SOME CRANES made their feeding grounds on some plowlands newly sown with wheat . DT NNS VBD PRP$ NN NNS IN DT NNS RB VBN IN NN . For a long time the Farmer , brandishing an empty sling , chased them away by the terror he inspired ; but when the birds found that the sling was only swung in the air , they ceased to take any notice of it and would not move . IN DT JJ NN DT NNP , VBG DT JJ NN , VBD PRP RP IN DT NN PRP VBD ; CC WRB DT NNS VBD IN DT NN VBD RB VBN IN DT NN , PRP VBD TO VB DT NN IN PRP CC MD RB VB . The Farmer , on seeing this , charged his sling with stones , and killed a great number . DT NNP , IN VBG DT , VBD PRP$ VBG IN NNS , CC VBD DT JJ NN . The remaining birds at once forsook his fields , crying to each other , ' It is time for us to be off to Liliput : for this man is no longer content to scare us , but begins to show us in earnest what he can do . ' DT VBG NNS IN RB VB PRP$ NNS , VBG TO DT NN , `` PRP VBZ NN IN PRP TO VB RB TO NNP IN IN DT NN VBZ RB RB JJ TO VB PRP , CC VBZ TO VB PRP IN JJ WP PRP MD VB . `` If words suffice not , blows must follow . IN NNS VBP RB , NNS MD VB . A VERY HUNGRY FOX , seeing some bread and meat left by shepherds in the hollow of an oak , crept into the hole and made a hearty meal . DT RB JJ NN , VBG DT NN CC NN VBN IN NNS IN DT NN IN DT NN , VBD IN DT NN CC VBD DT JJ NN . When he finished , he was so full that he was not able to get out , and began to groan and lament his fate . WRB PRP VBD , PRP VBD RB JJ IN PRP VBD RB JJ TO VB RP , CC VBD TO VB CC VB PRP$ NN . Another Fox passing by heard his cries , and coming up , inquired the cause of his complaining . DT NN VBG IN VBD PRP$ NNS , CC VBG RB , VBD DT NN IN PRP$ VBG . On learning what had happened , he said to him , ' Ah , you will have to remain there , my friend , until you become such as you were when you crept in , and then you will easily get out . ' IN VBG WP VBD VBN , PRP VBD TO PRP , `` UH , PRP MD VB TO VB RB , PRP$ NN , IN PRP VBP JJ IN PRP VBD WRB PRP VBP IN , CC RB PRP MD RB VB RP . `` AN Orator afflicted with atrophy of the organ of common-sense rose in his place in the halls of legislation and pointed with pride to his Unblotted Escutcheon . DT NN VBD IN NN IN DT NN IN NN VBD IN PRP$ NN IN DT NNS IN NN CC VBD IN NN TO PRP$ JJ NN . Seeing what it supposed to be the finger of scorn pointed at it , the Unblotted Escutcheon turned black with rage . VBG WP PRP VBD TO VB DT NN IN NN VBD IN PRP , DT JJ NN VBD JJ IN NN . Seeing the Unblotted Escutcheon turning black with what he supposed to be the record of his own misdeeds showing through the whitewash , the Orator fell dead of mortification . VBG DT JJ NN VBG JJ IN WP PRP VBD TO VB DT NN IN PRP$ JJ NNS VBG IN DT NN , DT NN VBD NN IN NN . Seeing the Orator fall dead of what they supposed to be atrophy of the organ of common-sense , his colleagues resolved that whenever they should adjourn because they were tired , it should be out of respect to the memory of him who had so frequently made them so . VBG DT NN VB NN IN WP PRP VBD TO VB NN IN DT NN IN NN , PRP$ NNS VBD IN WRB PRP MD VB IN PRP VBD JJ , PRP MD VB IN IN NN TO DT NN IN PRP WP VBD RB RB VBN PRP RB . U.S. President George Bush has commented on his meeting this week with Iraqi Prime Minister Nouri al-Maliki , saying Mr. Maliki made it clear that the Iraqi people do not want the country partitioned . NNP NNP NNP NNP VBZ VBN IN PRP$ NN DT NN IN JJ NNP NNP NNP NNP , VBG NNP NNP VBD PRP JJ IN DT JJ NNS VBP RB VB DT NN VBN . Mr. Bush said in his Saturday radio address Saturday that Mr. Maliki told him partitioning the country would lead to more sectarian violence . NNP NNP VBD IN PRP$ NNP NN NN NNP IN NNP NNP VBD PRP VBG DT NN MD VB TO RBR JJ NN . Mr. Bush said the success of the Iraqi government depends on the success of Iraqi security forces . NNP NNP VBD DT NN IN DT JJ NN VBZ IN DT NN IN JJ NN NNS . He added that he and Mr. Maliki agree that training of Iraqi security forces needs to be done faster and on a broader scale . PRP VBD IN PRP CC NNP NNP VBP IN NN IN JJ NN NNS VBZ TO VB VBN RBR CC IN DT JJR NN . President Bush said he recognizes that recent violence in Iraq has been unsettling . NNP NNP VBD PRP VBZ IN JJ NN IN NNP VBZ VBN JJ . And he pledged to work with U.S. leaders in both political parties to find consensus on the best path forward . CC PRP VBD TO VB IN NNP NNS IN DT JJ NNS TO VB NN IN DT JJS NN RB . Louisiana 's governor has announced a long-awaited rebuilding proposal , almost six months after Hurricane Katrina and Hurricane Rita ravaged the U.S. state . NNP POS NN VBZ VBN DT JJ NN NN , RB CD NNS IN NNP NNP CC NNP NNP VBD DT NNP NN . Governor Kathleen Blanco Monday said the state 's $ 7.5 billion plan offers up to $ 1,50,000 to homeowners to repair , rebuild or relocate to a designated area . NNP NNP NNP NNP VBD DT NN POS $ CD CD NN VBZ RP TO $ CD TO NNS TO VB , VB CC VB TO DT VBN NN . Homeowners could also accept a buyout of 60 percent of the pre-storm value of their houses , not to exceed $ 1,50,000 . NNS MD RB VB DT NN IN CD NN IN DT JJ NN IN PRP$ NNS , RB TO VB $ CD . Officials say some 3,30,000 homes suffered damage , including more than 1,00,000 that were significantly damaged or destroyed . NNS VBP DT CD NNS VBD NN , VBG JJR IN CD WDT VBD RB VBN CC VBN . Uninsured homeowners would also be covered under the plan , but would be subject to a 30 percent penalty . JJ NNS MD RB VB VBN IN DT NN , CC MD VB JJ TO DT CD NN NN . Registration for the program would begin in March , but the proposal is dependent upon congressional approval of the funds . NN IN DT NN MD VB IN NNP , CC DT NN VBZ JJ IN JJ NN IN DT NNS . Last week , the White House requested $ 4.2 billion in funding for Louisiana . JJ NN , DT NNP NNP VBD $ CD CD IN NN IN NNP . At least 18 people have been slain in attacks central Nigeria , in the latest breakout of inter-religious violence that has killed thousands over the past decade . IN JJS CD NNS VBP VBN VBN IN NNS JJ NNP , IN DT JJS NN IN JJ NN WDT VBZ VBN NNS IN DT JJ NN . Authorities in Plateau State said people with machetes on Tuesday killed 13 people , including women and children . NNS IN NNP NNP VBD NNS IN NNS IN NNP VBD CD NNS , VBG NNS CC NNS . The attack took place before dawn in the majority Christian village of Kuru Wareng . DT NN VBD NN IN NN IN DT NN JJ NN IN NNP NNP . Five other people were killed in a separate attack Tuesday in the nearby area of Barakin Ladi . CD JJ NNS VBD VBN IN DT JJ NN NNP IN DT JJ NN IN NNP NNP . The two sites are located in Nigeria 's volatile Middle Belt , where the mostly Muslim north meets the mainly Christian south . DT CD NNS VBP VBN IN NNP POS JJ NN NNP , WRB DT RB JJ NN VBZ DT RB JJ NN . Nearby is the city of Jos , where at least 80 people died in a wave of Christmas Eve bombings claimed by the radical Islamist group Boko Haram . RB VBZ DT NN IN NNP , WRB IN JJS CD NNS VBD IN DT NN IN NNP NNP NNS VBN IN DT JJ NN NN NNP NNP . Nigerian authorities say the attacks were intended to inflame tensions between Muslims and Christians before April 's scheduled presidential election . JJ NNS VBP DT NNS VBD VBN TO VB NNS IN NNPS CC NNPS IN NNP POS JJ JJ NN . The Arab television station al-Jazeera has aired a new videotape in which the deputy leader of the al-Qaida 's terror network denounces U.S. calls for reform in the Middle East and rejects the possibility of peaceful change . DT JJ NN NN NNP VBZ VBN DT JJ NN IN WDT DT NN NN IN DT NNP POS NN NN VBZ NNP NNS IN NN IN DT NNP NNP CC VBZ DT NN IN JJ NN . The tape , broadcast Friday , carries a message from Ayman al-Zawahiri in which he says expelling the ' invading Crusaders and Jewish ' forces from the Middle East will not be accomplished through demonstrations . DT NN , NN NNP , VBZ DT NN IN NNP NNP IN WDT PRP VBZ VBG DT `` VBG NNPS CC JJ `` NNS IN DT NNP NNP MD RB VB VBN IN NNS . He said reform is possible only through fighting for the sake of God . PRP VBD NN VBZ JJ RB IN VBG IN DT NN IN NNP . Ayman al-Zawahiri , speaking with a rifle beside him , also criticized the Pakistani , Saudi and Egyptian governments . NNP NNP , VBG IN DT NN IN PRP , RB VBD DT JJ , NNP CC JJ NNS . U.S. officials say they believe Osama bin Laden and his former deputy may be hiding in the rugged mountains along the Pakistan-Afghanistan border . NNP NNS VBP PRP VBP NNP NNP NNP CC PRP$ JJ NN MD VB VBG IN DT JJ NNS IN DT JJ NN . A Pakistani court has sentenced an al-Qaida-linked militant to death for plotting a suicide attack that killed a U.S. diplomat in Karachi two years ago . DT JJ NN VBZ VBN DT JJ NN TO NN IN VBG DT NN NN WDT VBD DT NNP NN IN NNP CD NNS RB . The anti-terrorism court in Karachi convicted Anwarul Haq Wednesday of murder and terrorism in connection with the bombing . DT JJ NN IN NNP VBD NNP NNP NNP IN NN CC NN IN NN IN DT NN . In the March 2006 attack , a suicide bomber rammed his car into a vehicle carrying U.S. diplomat David Foy near the American consulate in Karachi . IN DT NNP CD NN , DT NN NN VBD PRP$ NN IN DT NN VBG NNP NN NNP NNP IN DT JJ NN IN NNP . The explosion killed Foy and three Pakistanis , one day before President Bush began an official visit to Pakistan . DT NN VBD NNP CC CD NNS , CD NN IN NNP NNP VBD DT JJ NN TO NNP . Pakistani authorities arrested Haq and another suspect , Usman Ghani , several months later and accused both of links to al-Qaida . JJ NNS VBN NNP CC DT NN , NNP NNP , JJ NNS RB CC VBN DT IN NNS TO NNP . The Karachi court acquitted Ghani for lack of evidence . DT NNP NN VBN NNP IN NN IN NN . The Associated Press quotes a defense lawyer Mohammed Farooq as saying Haq will appeal his conviction . DT NNP NNP VBZ DT NN NN NNP NNP IN VBG NNP MD VB PRP$ NN . The lawyer also accused police of producing ' fake ' witnesses against his client . DT NN RB VBD NNS IN VBG `` JJ `` NNS IN PRP$ NN . The ruling party of Egyptian President Hosni Mubarak looks set to retain its two-thirds majority in the 454-seat parliament , following Thursday 's final round of legislative voting . DT VBG NN IN JJ NNP NNP NNP VBZ VBN TO VB PRP$ NNS NN IN DT JJ NN , VBG NNP POS JJ NN IN JJ NN . Preliminary results Friday indicate the National Democratic Party won at least 120 seats in the first two rounds and at least four seats Thursday . JJ NNS NNP VBP DT NNP NNP NNP VBD IN JJS CD NNS IN DT JJ CD NNS CC IN JJS CD NNS NNP . It will have about 125 candidates competing in next week 's run-off . PRP MD VB RB CD NNS VBG IN JJ NN POS NN . That run-off will be held in districts where no candidate won more than 50 percent of the vote . DT NN MD VB VBN IN NNS WRB DT NN VBD JJR IN CD NN IN DT NN . Egypt 's main opposition group , the Muslim Brotherhood , won 76 seats in the first two phases , but none on Thursday . NNP POS JJ NN NN , DT NNP NNP , VBD CD NNS IN DT JJ CD NNS , CC NN IN NNP . However , 35 of the candidates it endorsed qualified to compete in the run-off . RB , CD IN DT NNS PRP VBD VBD TO VB IN DT NN . Brotherhood officials accuse authorities of manipulating the vote . NNP NNS VBP NNS IN VBG DT NN . They point to widespread reports of police interference at polling centers in opposition strongholds , and to the arrest of hundreds of Brotherhood supporters . PRP VBP TO JJ NNS IN NN NN IN VBG NNS IN NN NNS , CC TO DT NN IN NNS IN NNP NNS . An opposition leader in Belarus has been released after being detained trying to enter a political convention in Minsk . DT NN NN IN NNP VBZ VBN VBN IN VBG VBN VBG TO VB DT JJ NN IN NNP . Police officials say presidential hopeful Alexander Kozulin was detained while trying to register to attend a political gathering . NN NNS VBP JJ JJ NNP NNP VBD VBN IN VBG TO VB TO VB DT JJ NN . Witnesses say Mr. Kozulin was beaten and driven to a police station where he was detained . NNS VBP NNP NNP VBD VBN CC VBN TO DT NN NN WRB PRP VBD VBN . He was later released , but prosecutors say he may face charges of hooliganism for allegedly shoving a police officer and damaging a picture of President Alexander Lukashenko . PRP VBD RB VBN , CC NNS VBP PRP MD VB NNS IN NN IN RB VBG DT NN NN CC VBG DT NN IN NNP NNP NNP . Mr. Kozulin is one of three people challenging Mr. Lukashenko in elections scheduled for March 19 . NNP NNP VBZ CD IN CD NNS VBG NNP NNP IN NNS VBN IN NNP CD . The United States has criticized Mr. Lukashenko , calling him Europe 's last dictator . DT NNP NNPS VBZ VBN NNP NNP , VBG PRP NNP POS JJ NN . The Belarusian leader has , in turn , railed against what he called Western attempts to destabilize his administration . DT JJ NN VBZ , IN NN , VBN IN WP PRP VBD JJ NNS TO VB PRP$ NN . The United States and Russia say they hope to sign a formal agreement next week that paves the way for Russia to join the World Trade Organization . DT NNP NNPS CC NNP VBP PRP VBP TO VB DT JJ NN JJ NN WDT VBZ DT NN IN NNP TO VB DT NNP NNP NNP . The two sides announced an agreement in principle Friday that covers tariffs on agricultural and industrial goods , access to Russian financial markets , and Moscow 's protection of intellectual property rights . DT CD NNS VBD DT NN IN NN NNP WDT VBZ NNS IN JJ CC JJ NNS , NN TO JJ JJ NNS , CC NNP POS NN IN JJ NN NNS . Terms of the agreement were not released . NNS IN DT NN VBD RB VBN . U.S. Trade Representative Susan Schwab said the two countries are still finalizing the details but hope to sign a formal document at the Asia-Pacific Economic Cooperation summit in Hanoi next week . NNP NNP NNP NNP NNP VBD DT CD NNS VBP RB VBG DT NNS CC VBP TO VB DT JJ NN IN DT NNP NNP NNP NN IN NNP JJ NN . The United States has been the last W.T.O . member to reach an bilateral pact with Russia . DT NNP NNPS VBZ VBN DT JJ NNP . NN TO VB DT JJ NN IN NNP . Moscow would then enter into membership negotiations with the entire trade organization . NNP MD RB VB IN NN NNS IN DT JJ NN NN . The World Health Organization is warning of the danger of small , undetected bird flu outbreaks in China , following the country 's third confirmed human fatality from the virus . DT NNP NNP NNP VBZ VBG IN DT NN IN JJ , JJ NN NN NNS IN NNP , VBG DT NN POS NN VBD JJ NN IN DT NN . China announced on Thursday the latest bird flu victim was a 41-year-old woman in Fujian province who had died last week . NNP VBD IN NNP DT JJS NN NN NN VBD DT JJ NN IN JJ NN WP VBD VBN JJ NN . No outbreaks were reported in the area where she lived , and authorities are unsure how she contracted the virus . DT NNS VBD VBN IN DT NN WRB PRP VBD , CC NNS VBP JJ WRB PRP VBD DT NN . The WHO 's spokesman in Beijing , Roy Wadia , said Friday many bird flu outbreaks among wild birds and poultry in China are small and hard to detect . DT NNP POS NN IN NNP , NNP NNP , VBD NNP JJ NN NN NNS IN JJ NNS CC NN IN NNP VBP JJ CC JJ TO VB . He said it is hard for China to alert the public when infected birds die in small numbers . PRP VBD PRP VBZ JJ IN NNP TO VB DT NN WRB JJ NNS VBP IN JJ NNS . Police in Indian Kashmir say a Muslim woman has died when a bomb she was carrying exploded . NNS IN JJ NNP VBP DT NNP NN VBZ VBN WRB DT NN PRP VBD VBG VBN . A militant group claimed she was a suicide bomber who killed or injured five soldiers , but police denied there were any casualties . DT JJ NN VBD PRP VBD DT NN NN WP VBD CC VBD CD NNS , CC NNS VBD EX VBD DT NNS . The separatist group , Jaish-e-Mohammad , called the Srinagar-based Current News Service Thursday to say she blew up an army vehicle , killing five soldiers . DT JJ NN , NNP , VBD DT JJ NNP NNP NNP NNP TO VB PRP VBD RP DT NN NN , VBG CD NNS . A spokesman identified the attacker as Hafsa , a member of the women 's wing of the group . DT NN VBD DT NN IN NNP , DT NN IN DT NNS POS NN IN DT NN . While Kashmiri militants use women members for transporting arms and explosives , they have never used them as suicide bombers . IN JJ NNS VBP NNS NNS IN VBG NNS CC NNS , PRP VBP RB VBN PRP IN NN NNS . Muslim separatists in Indian Kashmir are fighting for an independent Kashmir or its merger with neighboring Pakistan . NNP NNS IN JJ NNP VBP VBG IN DT JJ NNP CC PRP$ NN IN JJ NNP . The fight against Indian rule has killed tens of thousands of people since it began in 1989 . DT NN IN JJ NN VBZ VBN NNS IN NNS IN NNS IN PRP VBD IN CD . World oil prices rose to another record high after a government report showed a decline in U.S. stocks of gasoline Wednesday . NNP NN NNS VBD TO DT NN NN IN DT NN NN VBD DT NN IN NNP NNS IN NN NNP . The price of crude oil for future delivery hit $ 64.35 cents a barrel after the U.S. Energy Department reported the sixth-straight week of falling gasoline stocks . DT NN IN JJ NN IN JJ NN VBD $ CD NNS DT NN IN DT NNP NNP NNP VBD DT JJ NN IN VBG NN NNS . The report showed gasoline supplies falling last week by just over two million barrels to a total of 203.1 million barrels . DT NN VBD NN NNS VBG JJ NN IN RB IN CD CD NNS TO DT NN IN CD CD NNS . The closely watched report also showed an unexpected increase in crude oil supplies , prompting an initial decline in oil prices . DT RB VBN NN RB VBD DT JJ NN IN JJ NN NNS , VBG DT JJ NN IN NN NNS . Oil prices are about 42 percent higher than they were a year ago . NN NNS VBP IN CD NN JJR IN PRP VBD DT NN RB . Analysts say strong demand and worries about possible disruptions in supplies are key reasons for the higher prices . NNS VBP JJ NN CC NNS IN JJ NNS IN NNS VBP JJ NNS IN DT JJR NNS . The new head of the U.S. Federal Reserve , Ben Bernanke , was formally sworn in to office Wednesday morning in Washington . DT JJ NN IN DT NNP NNP NNP , NNP NNP , VBD RB VBN IN TO NN NNP NN IN NNP . Bernanke succeeds Alan Greenspan and is expected to continue his fight to contain inflation . NNP VBZ NNP NNP CC VBZ VBN TO VB PRP$ NN TO VB NN . Bernanke heads the committee that sets the key U.S. interest rate . NNP VBZ DT NN WDT VBZ DT JJ NNP NN NN . Tuesday , on Greenspan 's last day as chairman , the committee hiked interest rates one quarter of a percent in an effort to cool the economy and fend off inflation . NNP , IN NNP POS JJ NN IN NN , DT NN VBD NN NNS CD NN IN DT NN IN DT NN TO VB DT NN CC VB RP NN . Fed officials said they remain concerned about high energy prices and worry that busier factories and low unemployment could raise production costs and increase inflation . NNP NNS VBD PRP VBP JJ IN JJ NN NNS CC VBP IN JJR NNS CC JJ NN MD VB NN NNS CC VB NN . Most analysts expect Bernanke and his colleagues to raise interest rates at least one more time at their next meeting on March 28 . JJS NNS VBP NNP CC PRP$ NNS TO VB NN NNS IN JJS CD JJR NN IN PRP$ JJ NN IN NNP CD . A prison riot in Venezuela has killed seven inmates and wounded 11 more . DT NN NN IN NNP VBZ VBN CD NNS CC VBD CD JJR . Prison officials said the riot broke out late Monday , as inmates battled for control of cell blocks inside the prison west of Caracas . NN NNS VBD DT NN VBD IN JJ NNP , IN NNS VBD IN NN IN NN NNS IN DT NN NN IN NNP . It is unclear whether prison authorities have quelled the riot . PRP VBZ JJ IN NN NNS VBP VBN DT NN . Violence is common in Venezuela 's overcrowded prisons , where about 20,000 inmates live in facilities built to hold 15,000 people . NN VBZ JJ IN NNP POS JJ NNS , WRB IN CD NNS VBP IN NNS VBN TO VB CD NNS . Iraqi police have detained a Saudi militant found crossing the border into Iraq . JJ NNS VBP VBN DT JJ NN VBN VBG DT NN IN NNP . Police said Abdullah Saleh al-Harbi is one of a group of militants that attacked a Saudi oil facility last week . NNS VBD NNP NNP NNP VBZ CD IN DT NN IN NNS WDT VBD DT JJ NN NN JJ NN . They say al-Harbi claimed to be on his way to the northern Iraqi city of Mosul , where he was to meet al-Qaida contacts . PRP VBP NNP VBD TO VB IN PRP$ NN TO DT JJ JJ NN IN NNP , WRB PRP VBD TO VB NNP NNS . Iraqi authorities say al-Harbi will be taken to Baghdad for interrogation . JJ NNS VBP NNP MD VB VBN IN NNP IN NN . However , Saudi officials have said the kingdom has no information about al-Harbi being a wanted militant . RB , NNP NNS VBP VBN DT NN VBZ DT NN IN NNP VBG DT JJ NN . The arrest comes days after Saudi officials reported killing the leader of al-Qaida forces operating in the kingdom in a firefight . DT NN VBZ NNS IN NNP NNS VBD VBG DT NN IN NNP NNS VBG IN DT NN IN DT NN . Al-Qaida 's Saudi branch has claimed responsibility for last week 's failed attack on the oil facility and has vowed to hit other Saudi oil installations . NNP POS JJ NN VBZ VBN NN IN JJ NN POS JJ NN IN DT NN NN CC VBZ VBN TO VB JJ JJ NN NNS . Experts and policy makers from around the world have gathered in Cameroon to discuss new ways to battle malaria , which remains one of Africa 's main killers . NNS CC NN NNS IN IN DT NN VBP VBN IN NNP TO VB JJ NNS TO VB NN , WDT VBZ CD IN NNP POS JJ NNS . About 1,500 doctors , scientists and health workers are expected to attend the week-long Pan-Africa malaria conference in Cameroon 's capital , Yaounde . IN CD NNS , NNS CC NN NNS VBP VBN TO VB DT JJ NN NN NN IN NNP POS NN , NNP . The event was organized by the Multilateral Initiative on Malaria , a global alliance of organizations . DT NN VBD VBN IN DT NNP NNP IN NNP , DT JJ NN IN NNS . Topics to be covered include new drug treatment methods , prevention techniques , and the development of a malaria vaccine . NNS TO VB VBN VBP JJ NN NN NNS , NN NNS , CC DT NN IN DT NN NN . The deputy director of the London-based Gates Malaria Partnership , created four years ago by U.S. computer magnate Bill Gates , says the foundation recently approved grants to fund more malaria programs in Africa . DT NN NN IN DT JJ NNP NNP NNP , VBN CD NNS RB IN NNP NN NN NNP NNP , VBZ DT NN RB VBD NNS TO VB JJR NN NNS IN NNP . The Multilateral Initiative on Malaria estimates that an African child dies from malaria every 30 seconds . DT NNP NNP IN NNP VBZ IN DT JJ NN VBZ IN NN DT CD NNS . U.S. National Security Advisor Stephen Hadley says he can not confirm reports that terror leader Musab al-Zarqawi has been seriously wounded in Iraq . NNP NNP NNP NNP NNP NNP VBZ PRP MD RB VB NNS IN NN NN NNP NNP VBZ VBN RB VBN IN NNP . But Mr. Hadley told U.S. television that Zarqawi heads a lethal network and his death would lead to a significant difference in the level of violence in Iraqi . CC NNP NNP VBD NNP NN IN NNP VBZ DT JJ NN CC PRP$ NN MD VB TO DT JJ NN IN DT NN IN NN IN JJ . His comments came after London 's Sunday Times quoted an Iraqi doctor who says he treated Zarqawi at a hospital in Ramadi on Wednesday . PRP$ NNS VBD IN NNP POS NNP NNP VBD DT JJ NN WP VBZ PRP VBD NNP IN DT NN IN NNP IN NNP . The Times report says the doctor was debriefed by U.S. authorities on Friday . DT NNP NN VBZ DT NN VBD VBN IN NNP NNS IN NNP . The doctor said the terrorist was bleeding heavily when treated and left despite recommendations that he remain under hospital care . DT NN VBD DT JJ VBD VBG RB WRB VBN CC VBN IN NNS IN PRP VBP IN NN NN . Saturday , the U.S. military ended a week-long offensive against insurgents holed up near the border town of al-Qaim . NNP , DT NNP NN VBD DT JJ NN IN NNS VBN RP IN DT NN NN IN NNP . Authorities said nine Marines and 125 insurgents were killed in the fighting . NNS VBD CD NNS CC CD NNS VBD VBN IN DT NN . Afghan President Hamid Karzai has marked the Muslim holiday of Eid al-Fitr with a call for peace . JJ NNP NNP NNP VBZ VBN DT NNP NN IN NNP NNP IN DT NN IN NN . Mr. Karzai called on Taliban militants Sunday to renounce violence and join the peace process . NNP NNP VBD IN NNP NNS NNP TO VB NN CC VB DT NN NN . He says insurgents can lay down their arms and help rebuild their war-torn country . PRP VBZ NNS MD VB RP PRP$ NNS CC VB VB PRP$ JJ NN . Meanwhile , the Taliban 's leader has made his own statement for the festival of Eid . RB , DT NNP POS NN VBZ VBN PRP$ JJ NN IN DT NN IN NNP . Mullah Omar warns that U.S. and NATO forces will face defeat in Afghanistan . NNP NNP VBZ IN NNP CC NNP NNS MD VB NN IN NNP . In a statement Saturday , Omar said Westerners need only study Afghanistan 's history to see that they will fail . IN DT NN NNP , NNP VBD NNS VBP RB VB NNP POS NN TO VB IN PRP MD VB . The Taliban leader is thought to be in Pakistan but has not been seen in public for years . DT NNP NN VBZ VBN TO VB IN NNP CC VBZ RB VBN VBN IN JJ IN NNS . An Israeli newspaper reports that Prime Minister Ehud Olmert is urging the United States to impose a naval blockade on Iran in an effort to curb its controversial nuclear program . DT JJ NN NNS IN NNP NNP NNP NNP VBZ VBG DT NNP NNPS TO VB DT JJ NN IN NNP IN DT NN TO VB PRP$ JJ JJ NN . Israel 's Haaretz newspaper says Wednesday that Mr. Olmert raised the issue during a meeting Monday with U.S. House of Representatives speaker Nancy Pelosi . NNP POS NNP NN VBZ NNP IN NNP NNP VBD DT NN IN DT NN NNP IN NNP NNP IN NNP NN NNP NNP . The report says Mr. Olmert told Pelosi that the present economic sanctions on Iran have exhausted themselves , and that aggressive action could be taken that is not violent . DT NN VBZ NNP NNP VBD NNP IN DT JJ JJ NNS IN NNP VBP VBN PRP , CC IN JJ NN MD VB VBN DT VBZ RB JJ . According to the article , Mr. Olmert says international restrictions also should be placed on Iranian aircraft , business executives and senior officials . VBG TO DT NN , NNP NNP VBZ JJ NNS RB MD VB VBN IN JJ NN , NN NNS CC JJ NNS . Israeli government spokesman Mark Regev would not confirm the information . JJ NN NN NNP NNP MD RB VB DT NN . The United States , Israel and other countries accuse Iran of trying to develop nuclear weapons under cover of a civilian energy program . DT NNP NNPS , NNP CC JJ NNS VBP NNP IN VBG TO VB JJ NNS IN NN IN DT JJ NN NN . Iran denies the charges . NNP VBZ DT NNS . Israeli troops have killed two Islamic Jihad militants in a clash near the West Bank town of Jenin . JJ NNS VBP VBN CD NNP NNP NNS IN DT NN IN DT NNP NNP NN IN NNP . Islamic Jihad says one of the two militants who died in the gun battle was a top leader of the group , Nidal Abu Saada . NNP NNP VBZ CD IN DT CD NNS WP VBD IN DT NN NN VBD DT JJ NN IN DT NN , NNP NNP NNP . Israeli and Palestinian officials said Israeli troops had surrounded a house near Jenin in order to arrest the militants when gunfire broke out . JJ CC JJ NNS VBD JJ NNS VBD VBN DT NN IN NNP IN NN TO VB DT NNS WRB NN VBD RP . Islamic Jihad has carried out a string of recent suicide attacks in Israel . NNP NNP VBZ VBN RP DT NN IN JJ NN NNS IN NNP . Elsewhere in the West Bank , Israeli soldiers prepared to evict Jewish settlers and activists from a hilltop settlement , a section of Amona , near Ramallah . RB IN DT NNP NNP , JJ NNS VBD TO VB JJ NNS CC NNS IN DT NN NN , DT NN IN NNP , IN NNP . Hundreds of settler activists entered the area Tuesday in an attempt to resist the eviction , planned for Wednesday . NNS IN NN NNS VBD DT NN NNP IN DT NN TO VB DT NN , VBN IN NNP . A British newspaper quotes Britain 's top military commander in Baghdad as saying the first pull-out of British troops from Iraq could begin in a matter of months , with a final withdrawal by mid-2008 . DT JJ NN VBZ NNP POS JJ JJ NN IN NNP IN VBG DT JJ NN IN JJ NNS IN NNP MD VB IN DT NN IN NNS , IN DT JJ NN IN NN . The Daily Telegraph quotes General Nick Houghton as saying a withdrawal plan is under consideration . DT NNP NNP VBZ NNP NNP NNP IN VBG DT NN NN VBZ IN NN . The Telegraph Tuesday quotes General Houghton as saying a pull-out over two years would prevent Britain 's 8,000 troops from ' overstaying our welcome ' , while allowing time for Iraqi security forces to consolidate . DT NNP NNP VBZ NNP NNP IN VBG DT NN IN CD NNS MD VB NNP POS CD NNS IN `` VBG PRP$ JJ `` , IN VBG NN IN JJ NN NNS TO VB . Britain 's Defense Ministry says the general 's plan depends on conditions in Iraq . NNP POS NNP NNP VBZ DT NN POS NN VBZ IN NNS IN NNP . And the chairman of the U.S. Joint Chiefs of Staff General Peter Pace Sunday flatly denied recent media reports of a scheduled withdrawal of American and British forces . CC DT NN IN DT NNP NNP NNP IN NNP NNP NNP NNP NNP RB VBD JJ NNS NNS IN DT VBN NN IN NNP CC JJ NNS . British and U.S. officials have repeatedly stressed that coalition commanders would assess conditions on the ground and adjust troop levels as necessary . JJ CC NNP NNS VBP RB VBN IN NN NNS MD VB NNS IN DT NN CC VB NN NNS IN JJ . The great-granddaughter of South Africa 's anti-apartheid leader Nelson Mandela has been killed in a car crash as she traveled home from the concert kick-off for the 2010 soccer World Cup . DT NN IN NNP NNP POS JJ NN NNP NNP VBZ VBN VBN IN DT NN NN IN PRP VBD NN IN DT NN NN IN DT CD NN NNP NNP . The Nelson Mandela Foundation said Zenani Mandela died in the one-car accident on a Johannesburg highway . DT NNP NNP NNP VBD NNP NNP VBD IN DT JJ NN IN DT NNP NN . It said no one else was injured in the crash . PRP VBD DT NN RB VBD VBN IN DT NN . Police in Johannesburg have charged the driver with drunk driving and say they are considering ' culpable homicide ' charges as well . NNS IN NNP VBP VBN DT NN IN JJ NN CC VBP PRP VBP VBG `` JJ NN `` NNS RB RB . Zenani had celebrated her 13th birthday only two days earlier . NNP VBD VBN PRP$ JJ NN RB CD NNS RBR . She is one of nine great-grandchildren of Mr. Mandela , who was South Africa 's first black president . PRP VBZ CD IN CD NNS IN NNP NNP , WP VBD NNP NNP POS JJ JJ NN . The foundation said the Mandela family asked for privacy as they mourned their loss . DT NN VBD DT NNP NN VBD IN NN IN PRP VBD PRP$ NN . The World Cup soccer championship officially begins Friday , with a match-up between South Africa and Mexico in Johannesburg . DT NNP NNP NN NN RB VBZ NNP , IN DT NN IN NNP NNP CC NNP IN NNP . Iraqi authorities have freed more prisoners under a national reconciliation plan announced last week by Prime Minister Nouri al-Maliki . JJ NNS VBP VBN RBR NNS IN DT JJ NN NN VBN JJ NN IN NNP NNP NNP NNP . Several hundred detainees were released Thursday from the U.S.-run Abu Ghraib prison , west of Baghdad , and other facilities across the country . JJ CD NNS VBD VBN NNP IN DT JJ NNP NNP NN , NN IN NNP , CC JJ NNS IN DT NN . U.S. officials say more prisoners will be freed Friday . NNP NNS VBP JJR NNS MD VB VBN NNP . Some 600 prisoners were released last week . DT CD NNS VBD VBN JJ NN . Mr. Maliki has promised to free 2,500 prisoners by the end of the month to foster ' reconciliation and national dialogue . ' NNP NNP VBZ VBN TO VB CD NNS IN DT NN IN DT NN TO VB `` NN CC JJ NN . `` Authorities say those being freed are not involved in violent crimes or had been detained by mistake . NNS VBP DT VBG VBN VBP RB VBN IN JJ NNS CC VBD VBN VBN IN NN . New computing device will have web browsing , video-conferencing capabilities , ability to run on solar power , says HRD Minister Sibal India has created a prototype for a $ 35 touch-screen laptop that it hopes to make available to thousands of students . JJ NN NN MD VB JJ NN , JJ NNS , NN TO VB IN JJ NN , VBZ NNP NNP NNP NNP VBZ VBN DT NN IN DT $ CD JJ NN IN PRP VBZ TO VB JJ TO NNS IN NNS . India 's Human Resource Development Minister Kapil Sibal says the computing device will have web browsing and video-conferencing capabilities . NNP POS NNP NNP NNP NNP NNP NNP VBZ DT NN NN MD VB JJ NN CC NN NNS . The iPad-like gadget will also have the ability to run on solar power . DT JJ NN MD RB VB DT NN TO VB IN JJ NN . The Linux-based computer , introduced by the Indian Institute of Technology and the Indian Institute of Science , should be available by 2011 . DT JJ NN , VBN IN DT JJ NNP IN NNP CC DT JJ NNP IN NNP , MD VB JJ IN CD . Sibal says there are plans for the device to become even cheaper , with the price dropping to $ 20 and eventually $ 10 . NNP VBZ EX VBP NNS IN DT NN TO VB RB JJR , IN DT NN VBG TO $ CD CC RB $ CD . The inexpensive laptop is part of a nationwide Indian education initiative that also includes installing broadband capabilities on the nation 's more than 22,000 college campuses . DT JJ NN VBZ NN IN DT JJ JJ NN NN WDT RB VBZ VBG NN NNS IN DT NN POS JJR IN CD NN NNS . Every two to four years , the Perito Moreno Glacier in Los Glacieres National Park , Argentina breaks apart . DT CD CC CD NNS , DT NNP NNP NNP IN NNP NNP NNP NNP , NNP VBZ RB . It 's a spectacular sight that attracts thousands . PRP VBZ DT JJ NN WDT VBZ NNS . This year , for the first time in memory , the breakup took place during the southern hemisphere 's winter . DT NN , IN DT JJ NN IN NN , DT NN VBD NN IN DT JJ NN POS NN . VOA 's Paul Sisco has more . NNP POS NNP NNP VBZ RBR . Bolivian President Evo Morales says he will not agree to a U.S. request to return weapons and equipment in an ongoing disagreement over the naming of a new commander for Bolivia 's counterterrorism unit . JJ NNP NNP NNP VBZ PRP MD RB VB TO DT NNP NN TO VB NNS CC NN IN DT JJ NN IN DT NN IN DT JJ NN IN NNP POS NN NN . Mr. Morales responded Tuesday to a written request by the U.S. Embassy that objected to the new unit commander . NNP NNP VBD NNP TO DT VBN NN IN DT NNP NNP WDT VBD TO DT JJ NN NN . Mr. Morales has called the U.S. request blackmail . NNP NNP VBZ VBN DT NNP NN NN . U.S. officials have confirmed that Washington will cancel its counterterrorism programs in Bolivia after its decision last week to drop the country from its list of anti-terrorism partners . NNP NNS VBP VBN IN NNP MD VB PRP$ NN NNS IN NNP IN PRP$ NN JJ NN TO VB DT NN IN PRP$ NN IN JJ NNS . The lawyer for jailed Iranian-American journalist Roxana Saberi says an Iranian court will hear the appeal against her jail sentence on Sunday . DT NN IN JJ JJ NN NNP NNP VBZ DT JJ NN MD VB DT NN IN PRP$ NN NN IN NNP . Lawyer Abdolsamad Khorramshahi made the announcement Saturday . NNP NNP NNP VBD DT NN NNP . It is not clear how long it will take the court to render a verdict in the case of Saberi , who was sentenced to eight years in prison last month on espionage charges . PRP VBZ RB JJ WRB RB PRP MD VB DT NN TO VB DT NN IN DT NN IN NNP , WP VBD VBN TO CD NNS IN NN JJ NN IN NN NNS . Her family and the U.S. government say the charges against her are baseless . PRP$ NN CC DT NNP NN VBP DT NNS IN PRP VBP JJ . Saberi 's father , Reza Saberi , says the 32-year-old freelance journalist ended a hunger strike Monday after refusing to eat for nearly two weeks . NNP POS NN , NNP NNP , VBZ DT JJ NN NN VBD DT NN NN NNP IN VBG TO VB IN RB CD NNS . Iran has criticized international involvement in the case , saying the judiciary is independent and outside interference contradicts international norms . NNP VBZ VBN JJ NN IN DT NN , VBG DT NN VBZ JJ CC JJ NN VBZ JJ NNS . The former head of a self-proclaimed Serb republic in Croatia has gone on trial before The Hague tribunal on charges of war crimes and violating the laws and customs of war . DT JJ NN IN DT JJ JJ NN IN NNP VBZ VBN IN NN IN DT NNP NN IN NNS IN NN NNS CC VBG DT NNS CC NNS IN NN . Milan Martic is accused of murder , torture and ethnic cleansing of Croats and Muslims in Croatia and Bosnia-Herzegovina . NNP NNP VBZ VBN IN NN , NN CC JJ NN IN NNS CC NNS IN NNP CC NNP . He is accused of actively supporting a criminal enterprise aimed at expelling Croats and Muslims from certain areas of the two countries with the goal of eventually including the regions in a future greater Serbia . PRP VBZ VBN IN RB VBG DT JJ NN VBN IN VBG NNS CC NNS IN JJ NNS IN DT CD NNS IN DT NN IN RB VBG DT NNS IN DT JJ JJR NNP . The indictment mentions that in 1995 , Mr. Martic ordered the bombardment by Serb artillery of downtown Zagreb , the Croatian capital . DT NN VBZ IN IN CD , NNP NNP VBD DT NN IN JJ NN IN NN NNP , DT JJ NN . The attacks caused seven deaths and numerous injuries . DT NNS VBD CD NNS CC JJ NNS . At the time of the attacks , Mr. Martic was head of the self-proclaimed Republic of Serbian Krajina , a Serb entity opposing Croatia 's independence from Yugoslavia . IN DT NN IN DT NNS , NNP NNP VBD NN IN DT JJ NNP IN JJ NNP , DT JJ NN VBG NNP POS NN IN NNP . Iranian media is reporting that the country 's armed forces have staged a mock interception of six foreign planes since the start of a series of military exercises Tuesday . JJ NNS VBZ VBG IN DT NN POS JJ NNS VBP VBN DT JJ NN IN CD JJ NNS IN DT NN IN DT NN IN JJ NNS NNP . The reports Wednesday quote a military exercise spokesman , General Hamid Arjangi , as saying ' hypothetical enemy planes ' crossed into Iranian air space but were turned back by Iranian fighter jets and artillery systems . DT NNS NNP VBP DT JJ NN NN , NNP NNP NNP , IN VBG `` JJ NN NNS `` VBD IN JJ NN NN CC VBD VBN RB IN JJ NN NNS CC NN NNS . Official Iranian media blasted foreign press agencies that quoted state officials Wednesday as saying unknown foreign aircraft violated Iranian airspace . NNP JJ NNS VBD JJ NN NNS WDT VBD NN NNS NNP IN VBG JJ JJ NN VBD JJ NN . Iran is in its second day of the its air force 's five-day military exercise to test the country 's ability to deter air strikes . NNP VBZ IN PRP$ JJ NN IN DT PRP$ NN NN POS JJ JJ NN TO VB DT NN POS NN TO VB NN NNS . The war games are being held near nuclear facilities . DT NN NNS VBP VBG VBN IN JJ NNS . Iran says the exercises include tests of long-range missiles . NNP VBZ DT NNS VBP NNS IN JJ NNS . Tehran says it is the biggest exercise of its kind in the country . NNP VBZ PRP VBZ DT JJS NN IN PRP$ NN IN DT NN . Tehran conducts war games several times a year , often showcasing new military systems . NNP VBZ NN NNS JJ NNS DT NN , RB VBG JJ JJ NNS . At least 10 people are dead after Typhoon Conson struck the main Philippine island Luzon Wednesday . IN JJS CD NNS VBP JJ IN NNP NNP VBD DT JJ JJ NN NNP NNP . The typhoon struck the capital city Manila and surrounding areas Wednesday morning , carrying maximum wind gusts of 120 kilometers an hour . DT NN VBD DT NN NN NNP CC VBG NNS NNP NN , VBG JJ NN NNS IN CD NNS DT NN . Electricity was knocked out throughout Luzon , with tree branches and other debris left scattered across rain-swept streets . NN VBD VBN RP IN NNP , IN NN NNS CC JJ NN VBN VBN IN JJ NNS . The dead include four people who drowned and two others killed by falling trees . DT JJ VBP CD NNS WP VBD CC CD NNS VBN IN VBG NNS . At least 40 people are missing , including 11 fishermen last spotted off the coast of the central island Catandunes . IN JJS CD NNS VBP VBG , VBG CD NNS JJ JJ IN DT NN IN DT JJ NN NNS . Typhoon Conson headed out over the South China Sea after striking Luzon . NN NNP VBD RP IN DT NNP NNP NNP IN VBG NNP . During a meeting of the government 's National Disaster Coordinating Council Wednesday , new Philippine President Benigno Aquino scolded the government 's weather bureau for failing to predict the storm would hit Manila . IN DT NN IN DT NN POS NNP NNP NNP NNP NNP , JJ JJ NNP NNP NNP VBD DT NN POS NN NN IN VBG TO VB DT NN MD VB NNP . Experts studying the flooding of New Orleans after Hurricane Katrina say the breach of key floodwalls might have been caused by soft soil under the walls , a problem the Army Corps of Engineers had been warned about . NNS VBG DT NN IN NNP NNP IN NNP NNP VBP DT NN IN JJ NNS MD VB VBN VBN IN JJ NN IN DT NNS , DT NN DT NNP NNP IN NNPS VBD VBN VBN IN . Engineers from the American Society of Civil Engineers and the University of California at Berkeley said Friday there was no evidence that the floodwaters surged over the tops of the floodwalls at 17th Street or London Avenue Canals , as previously thought . NNS IN DT NNP NNP IN NNP NNPS CC DT NNP IN NNP IN NNP VBD NNP EX VBD DT NN IN DT NNS VBD IN DT NNS IN DT NNS IN CD NNP CC NNP NNP NNP , IN RB VBN . Instead , they said , soft soil may have given way underneath the walls - a danger a contracting company pointed out to the Army Corps of Engineers in the early 1990s . RB , PRP VBD , JJ NN MD VB VBN NN IN DT NNS IN DT NN DT NN NN VBD RP TO DT NNP NNP IN NNPS IN DT JJ NNS . In one section of the 17th Street canal , a levee embankment had moved more than 10 meters from its original spot . IN CD NN IN DT JJ NNP NN , DT NN NN VBD VBN RBR IN CD NNS IN PRP$ JJ NN . The experts also said they found at least 10 breaches and possibly more in the walls . DT NNS RB VBD PRP VBD IN JJS CD NNS CC RB RBR IN DT NNS . Norway says it will allow hunters to kill more than one thousand whales next year - the highest number allowed since the country resumed commercial whaling more than a decade ago . NNP VBZ PRP MD VB NNS TO VB JJR IN CD CD NNS JJ NN IN DT JJS NN VBN IN DT NN VBD JJ VBG JJR IN DT NN RB . Norway 's Fisheries Ministry said Wednesday it will raise the quota of minke whales that can be culled by 30 percent , to 1 , 52 whales . NNP POS NNP NNP VBD NNP PRP MD VB DT NN IN JJ NNS WDT MD VB VBN IN CD NN , TO CD , CD NNS . The Norwegian parliament approved the higher quota in a unanimous vote . DT JJ NN VBD DT JJR NN IN DT JJ NN . Norway has said there are more than enough minke whales in the North Atlantic to sustain increased hunting . NNP VBZ VBN EX VBP JJR IN RB JJ NNS IN DT NNP NNP TO VB VBN NN . But for the past two years , Norwegian whale hunters have fallen short of the quotas . CC IN DT JJ CD NNS , JJ NN NNS VBP VBN JJ IN DT NNS . Norway is the only country that allows commercial whaling , in defiance of a global ban imposed by the International Whaling Commission in 1986 . NNP VBZ DT JJ NN WDT VBZ JJ NN , IN NN IN DT JJ NN VBN IN DT NNP NNP NNP IN CD . Al-Qaida leader Osama bin Laden has warned the European Union that there will be a strong reaction against cartoons of the Prophet Mohammed published in European newspapers . NNP NN NNP NNP NNP VBZ VBN DT NNP NNP IN EX MD VB DT JJ NN IN NNS IN DT NNP NNP VBN IN JJ NNS . In an audio recording posted to an al-Qaida-affiliated Web site late Wednesday , a voice said to be bin-Laden 's described the publishing of the cartoons as part of a new crusade against Islam that involved Pope Benedict - head of the Catholic Church . IN DT NN NN VBN TO DT JJ NN NN JJ NNP , DT NN VBN TO VB NNP POS VBD DT NN IN DT NNS IN NN IN DT JJ NN IN NNP WDT VBD NNP NNP : NN IN DT NNP NNP . Satirical cartoons featuring Islam 's Prophet Mohammed were published in Danish newspapers in 2006 , sparking mass riots in Islamic nations worldwide . JJ NNS VBG NNP POS NNP NNP VBD VBN IN JJ NNS IN CD , VBG NN NNS IN JJ NNS NN . Bin-Laden 's latest recorded statement , entitled ' The response will be what you see , not what you hear ' comes on the fifth anniversary of the U.S.-led invasion of Iraq . NNP POS JJS JJ NN , VBN `` DT NN MD VB WP PRP VBP , RB WP PRP VBP `` VBZ IN DT JJ NN IN DT JJ NN IN NNP . The message is bin Laden 's first public statement since late last year . DT NN VBZ NNP NNP POS JJ JJ NN IN JJ JJ NN . United Nations agencies say it will cost up to $ 50 million to clean up an oil spill caused by Israel 's bombing of a Lebanese power plant last month . NNP NNPS NNS VBP PRP MD VB RP TO $ CD CD TO VB RP DT NN NN VBN IN NNP POS NN IN DT JJ NN NN JJ NN . U.N. officials met experts from Lebanon , Greece , Syria , Turkey and the European Union Thursday in Athens to discuss the 15,000-ton oil slick . NNP NNS VBD NNS IN NNP , NNP , NNP , NNP CC DT NNP NNP NNP IN NNP TO VB DT JJ NN NN . Authorities say four weeks of fighting following the spill kept them from assessing the damage , but they say this week 's cease-fire makes it possible to deal with it . NNS VBP CD NNS IN VBG VBG DT NN VBD PRP IN VBG DT NN , CC PRP VBP DT NN POS NN VBZ PRP JJ TO VB IN PRP . Officials warn the spill has already caused severe damage to the coastline and may also have badly affected the region 's marine life . NNS VBP DT NN VBZ RB VBN JJ NN TO DT NN CC MD RB VB RB VBN DT NN POS JJ NN . Dubai Ports World says it will take months to sell its holdings in the United States , and these assets are worth ' hundreds of millions ' of dollars . NNP NNP NNP VBZ PRP MD VB NNS TO VB PRP$ NNS IN DT NNP NNPS , CC DT NNS VBP JJ `` NNS IN NNS `` IN NNS . DP World was in the middle of a recent political storm in the U.S. after the company , based in the United Arab Emirates , purchased facilities in ports around the world , including some U.S. container and passenger terminals . NNP NNP VBD IN DT NN IN DT JJ JJ NN IN DT NNP IN DT NN , VBN IN DT NNP NNP NNPS , VBN NNS IN NNS IN DT NN , VBG DT NNP NN CC NN NNS . Members of the U.S. Congress and others expressed concern that DP World would not do enough to protect U.S. ports from terror attack . NNS IN DT NNP NNP CC NNS VBD NN IN NNP NNP MD RB VB RB TO VB NNP NNS IN NN NN . DP World said last week that it would ' transfer ' its U.S. holdings to a U.S. entity , but gave few details . NNP NNP VBD JJ NN IN PRP MD `` VB `` PRP$ NNP NNS TO DT NNP NN , CC VBD JJ NNS . Israeli Prime Minister Ariel Sharon has been rushed to a Jerusalem hospital after suffering his second stroke in less than three weeks . JJ NNP NNP NNP NNP VBZ VBN VBN TO DT NNP NN IN VBG PRP$ JJ NN IN JJR IN CD NNS . Doctors at Hadassah Hospital said the stroke Wednesday was ' significant , ' and that Mr. Sharon was given anesthetic after being admitted to the clinic . NNS IN NNP NNP VBD DT NN NNP VBD `` JJ , `` CC IN NNP NNP VBD VBN JJ IN VBG VBN TO DT NN . The prime minister 's office said that while Mr. Sharon was under anesthetic , his duties were transferred to his deputy , Ehud Olmert . DT JJ NN POS NN VBD IN IN NNP NNP VBD IN JJ , PRP$ NNS VBD VBN TO PRP$ NN , NNP NNP . Earlier , his office said the 77-year-old was being accompanied by his personal physician as he was taken to the hospital from his ranch in southern Israel . RB , PRP$ NN VBD DT JJ VBD VBG VBN IN PRP$ JJ NN IN PRP VBD VBN TO DT NN IN PRP$ NN IN JJ NNP . Mr. Sharon was admitted to the same hospital where he was to undergo a procedure Thursday to correct a defect in his heart . NNP NNP VBD VBN TO DT JJ NN WRB PRP VBD TO VB DT NN NNP TO VB DT NN IN PRP$ NN . That procedure was ordered after Mr. Sharon suffered a mild stroke last month . DT NN VBD VBN IN NNP NNP VBD DT JJ NN JJ NN . A group of Indian left wing activists has protested the planned entry of U.S. retailer Wal-Mart into India 's retail market . DT NN IN NNP VBD VBG NNS VBZ VBN DT JJ NN IN NNP NN NNP IN NNP POS JJ NN . About 100 demonstrators rallied outside Indian government offices in the capital , New Delhi , Thursday demanding Wal-Mart stay out of the country . IN CD NNS VBD JJ JJ NN NNS IN DT NN , NNP NNP , NNP VBG JJ NN IN IN DT NN . The world 's largest retailer is planning to set up a chain of stores in India as part of a joint venture with India 's Bharti Retail . DT NN POS JJS NN VBZ VBG TO VB RP DT NN IN NNS IN NNP IN NN IN DT JJ NN IN NNP POS NNP NNP . Wal-Mart 's vice chairman , Michael Duke , visited shopping malls in Mumbai today to learn more about the Indian retail sector . NNP POS NN NN , NNP NNP , VBD NN NNS IN NNP NN TO VB RBR IN DT JJ JJ NN . He is to have talks on the joint venture with Bharti officials in New Delhi Friday . PRP VBZ TO VB NNS IN DT JJ NN IN NNP NNS IN NNP NNP NNP . India 's retail industry is dominated by small shopkeepers who fear that the entry of large retailers could put many of them out of business . NNP POS JJ NN VBZ VBN IN JJ NNS WP VBP IN DT NN IN JJ NNS MD VB NN IN PRP IN IN NN . A Republican-led U.S. Senate committee has rejected a proposed investigation of the Bush administration 's domestic surveillance program . DT JJ NNP NNP NN VBZ VBN DT JJ NN IN DT NNP NN POS JJ NN NN . The Senate Intelligence Committee voted along party lines Tuesday to reject the proposal by Senator Jay Rockefeller , a Democrat . DT NNP NNP NNP VBD IN NN NNS NNP TO VB DT NN IN NNP NNP NNP , DT NNP . Chairman Pat Roberts said the committee agreed to create a subcommittee for ' enhanced oversight ' of the program , in which the government monitors phone conversations and e-mails between people in the United States and suspected terrorists abroad without court approval . NN NNP NNP VBD DT NN VBD TO VB DT NN IN `` JJ NN `` IN DT NN , IN WDT DT NN VBZ NN NNS CC NNS IN NNS IN DT NNP NNPS CC VBN NNS RB IN NN NN . Also Tuesday , the U.S. House of Representatives passed a bill extending the anti-terrorism law known as the U.S.A . RB NNP , DT NNP NNP IN NNPS VBD DT NN VBG DT JJ NN VBN IN DT NN . Patriot Act , which was first enacted after the September 11 , 2001 attacks in the United States . NNP NNP , WDT VBD JJ VBN IN DT NNP CD , CD NNS IN DT NNP NNPS . The Patriot Act expands the government 's power to obtain private records , conduct wiretaps and share information between agencies . DT NNP NNP VBZ DT NN POS NN TO VB JJ NNS , VB NNS CC VB NN IN NNS . Critics say it threatens civil liberties . NNS VBP PRP VBZ JJ NNS . Cuba says it has restored formal relations with Spain , a year after the European Union imposed diplomatic sanctions on the communist island . NNP VBZ PRP VBZ VBN JJ NNS IN NNP , DT NN IN DT NNP NNP VBD JJ NNS IN DT JJ NN . Cuban Foreign Minister Felipe Perez Roque announced the decision Thursday , shortly before a meeting in Havana with new Spanish Ambassador Carlos Zaldivar . JJ NNP NNP NNP NNP NNP VBD DT NN NNP , RB IN DT NN IN NNP IN JJ JJ NNP NNP NNP . The European Union imposed the sanctions after Cuba 's 2003 detainment of 75 dissidents , and the execution of three men who tried to hijack a ferry to the United States . DT NNP NNP VBD DT NNS IN NNP POS CD NN IN CD NNS , CC DT NN IN CD NNS WP VBD TO VB DT NN TO DT NNP NNPS . No additional information has been given by either government . DT JJ NN VBZ VBN VBN IN DT NN . Snow , freezing rain , gusting winds and record low temperatures in Europe are claiming lives and making for treacherous travel across the continent . NN , VBG NN , VBG NNS CC NN JJ NNS IN NNP VBP VBG NNS CC VBG IN JJ NN IN DT NN . As many as 25 deaths have been reported . RB JJ IN CD NNS VBP VBN VBN . Authorities say many of the victims are homeless people who died as a result of exposure to the brutal winter elements . NNS VBP NN IN DT NNS VBP JJ NNS WP VBD IN DT NN IN NN TO DT JJ NN NNS . Vehicle accidents on ice-covered roads have caused many injuries and closed highways . NN NNS IN JJ NNS VBP VBN JJ NNS CC JJ NNS . The M-1 motorway connecting Budapest with Vienna was closed Friday after a multi-car pile-up that killed a boy . DT NNP NN VBG NNP IN NNP VBD VBN NNP IN DT JJ NN WDT VBD DT NN . In Slovakia , the Bratislava-Trnava highway was closed after a 40-car accident killed at least one person and injured 20 others . IN NNP , DT NNP NN VBD VBN IN DT JJ NN VBN IN JJS CD NN CC VBD CD NNS . The storms disrupted rail , road and air transport across the region . DT NNS VBD NN , NN CC NN NN IN DT NN . Electricity outages were reported Friday in Austria and Sweden . NN NNS VBD VBN NNP IN NNP CC NNP . New Year 's revelers across Europe are being advised to take measures to protect themselves against the extreme weather conditions . NNP NNP POS NNS IN NNP VBP VBG VBN TO VB NNS TO VB PRP IN DT JJ NN NNS . Thousands of French workers have marched through Paris and other cities protesting planned government pension reforms as fishermen continued protests against soaring fuel costs . NNS IN JJ NNS VBP VBN IN NNP CC JJ NNS VBG JJ NN NN NNS IN NNS VBD NNS IN VBG NN NNS . Police say about 30,000 protesters marched in the French capital and tens of thousands in other cities protesting changes that will require them to work 41 years to get a pension , an increase of one year . NNS VBP IN CD NNS VBD IN DT JJ NN CC NNS IN NNS IN JJ NNS VBG NNS WDT MD VB PRP TO VB CD NNS TO VB DT NN , DT NN IN CD NN . Trade union officials put the number of protesters nationwide at 7,00,000 . NN NN NNS VBD DT NN IN NNS JJ IN CD . The protests hobbled train traffic . DT NNS VBD NN NN . But subway service in Paris has been largely unaffected . CC NN NN IN NNP VBZ VBN RB JJ . Meanwhile , fishermen rejected as inadequate a new government package aimed at compensating them for soaring fuel prices and continued blocking entry to some ports . RB , NNS VBD IN JJ DT JJ NN NN VBN IN VBG PRP IN VBG NN NNS CC VBD VBG NN TO DT NNS . A nine-day strike by transportation workers last November cost the French economy an estimated $ 400 million a day . DT JJ NN IN NN NNS JJ NNP VBD DT JJ NN DT VBN $ CD CD DT NN . Strikes in 1995 forced then-President Jacques Chirac to back down from reform plans . NNS IN CD VBD JJ NNP NNP TO VB RP IN NN NNS . Italian soldiers have begun arriving in western Afghanistan , under plans by NATO to expand its peacekeeping mission in the country . JJ NNS VBP VBN VBG IN JJ NNP , IN NNS IN NNP TO VB PRP$ NN NN IN DT NN . The Turkish commander of the International Security Assistance Force in Afghanistan , Lieutenant General Ethem Erdagi , said an initial deployment of Italian troops started to arrive today in the main western city of Herat . DT JJ NN IN DT NNP NNP NNP NNP IN NNP , NNP NNP NNP NNP , VBD DT JJ NN IN JJ NNS VBD TO VB NN IN DT JJ JJ NN IN NNP . Soldiers from Spain , Greece and Lithuania are due in the region later . NNS IN NNP , NNP CC NNP VBP JJ IN DT NN RB . NATO took command of ISAF in 2003 . NNP VBD NN IN NNP IN CD . Until now , its peacekeeping troops have only been deployed in the Afghan capital Kabul and the north of the country . IN RB , PRP$ NN NNS VBP RB VBN VBN IN DT JJ NN NNP CC DT NN IN DT NN . NATO defense ministers meeting in France last month approved plans to expand the peacekeeping mission . NNP NN NNS VBG IN NNP JJ NN VBD NNS TO VB DT NN NN . The United States has been pressing for the expansion to relieve pressure on stretched American forces . DT NNP NNPS VBZ VBN VBG IN DT NN TO VB NN IN JJ JJ NNS . Police on horseback charged into crowds of angry British students demonstrating in central London on Thursday to protest university tuition hikes . NNS IN NN VBN IN NNS IN JJ JJ NNS VBG IN JJ NNP IN NNP TO VB NN NN NNS . Lawmakers inside Parliament voted in favor of a controversial bill raising university fees in England , part of the government 's larger austerity plan . NNS IN NNP VBD IN NN IN DT JJ NN VBG NN NNS IN NNP , NN IN DT NN POS JJR NN NN . Government officials have said the increases , which triple the current fees , are necessary to maintain the high quality of education in universities . NN NNS VBP VBN DT NNS , WDT RB DT JJ NNS , VBP JJ TO VB DT JJ NN IN NN IN NNS . Riot police wielding batons scuffled with some students in front of London 's Houses of Parliament as they pushed up against a police barricade . NN NNS VBG NNS VBN IN DT NNS IN NN IN NNP POS NNS IN NNP IN PRP VBD RP IN DT NN NN . Students threw sticks at police and set off smoke bombs in front of the horses . NNS VBD NNS IN NN CC VBD RP NN NNS IN NN IN DT NNS . Television coverage showed at least one demonstrator being handcuffed , and one police officer on the ground . NN NN VBD IN JJS CD NN VBG VBN , CC CD NN NN IN DT NN . It was the latest in a series of student protests against the fee hike , which would raise the yearly bill to about $ 14,000 . PRP VBD DT JJS IN DT NN IN NN NNS IN DT NN NN , WDT MD VB DT JJ NN TO IN $ CD . Chinese Premier Wen Jiabao is ruling out plans to allow more democracy in China 's near future because he says the country must focus first on economic development . JJ NNP NNP NNP VBZ VBG RP NNS TO VB JJR NN IN NNP POS JJ NN IN PRP VBZ DT NN MD VB RB IN JJ NN . In a speech published by China 's state-run media Tuesday , Mr. Wen said that China will remain in the primary state of socialism for a long time . IN DT NN VBN IN NNP POS JJ NNS NNP , NNP NNP VBD IN NNP MD VB IN DT JJ NN IN NN IN DT JJ NN . Mr. Wen did say , however , that China would develop its own democratic policies , and that a socialist system is not contradictory to those policies . NNP NNP VBD VB , RB , IN NNP MD VB PRP$ JJ JJ NNS , CC IN DT JJ NN VBZ RB JJ TO DT NNS . China 's annual parliamentary session is to open next week , with economic reform and social issues expected to be a core focus . NNP POS JJ JJ NN VBZ TO VB JJ NN , IN JJ NN CC JJ NNS VBD TO VB DT NN NN . China 's economy has grown tremendously in recent years . NNP POS NN VBZ VBN RB IN JJ NNS . But leaders of China 's one-party system have carried out only limited democratic and political reforms . CC NNS IN NNP POS JJ NN VBP VBN RP RB JJ JJ CC JJ NNS . The leader of Northern Ireland 's leading Protestant party is warning that the peace process in the British province is at risk unless the Irish Republican Army takes immediate steps toward disarming . DT NN IN NNP NNP POS VBG JJ NN VBZ VBG IN DT NN NN IN DT JJ NN VBZ IN NN IN DT JJ NNP NNP VBZ JJ NNS IN VBG . Democratic Unionist Party leader Ian Paisley said he is amazed that with only days ahead of the British and Irish government deadline for agreement , the Catholic IRA has not contacted monitors who are to oversee the group 's disarmament . JJ NNP NNP NN NNP NNP VBD PRP VBZ VBN IN IN JJ NNS RB IN DT JJ CC JJ NN NN IN NN , DT NNP NNP VBZ RB VBN NNS WP VBP TO VB DT NN POS NN . He spoke after talks in Belfast with the monitors . PRP VBD IN NNS IN NNP IN DT NNS . Mr. Paisley said any progress on restoring Northern Ireland 's power-sharing government requires proof of IRA action instead of continued deception . NNP NNP VBD DT NN IN VBG NNP NNP POS JJ NN VBZ NN IN NNP NN IN IN JJ NN . Meanwhile , Jerry Adams , the leader of the IRA 's political arm , Sinn Fein , expressed doubt whether Mr. Paisley is ready for agreement . RB , NNP NNP , DT NN IN DT NNP POS JJ NN , NNP NNP , VBD NN IN NNP NNP VBZ JJ IN NN . Britain suspended Northern Ireland 's power sharing government in 2002 amid charges of IRA spying on provincial officials . NNP VBD NNP NNP POS NN NN NN IN CD IN NNS IN NNP VBG IN JJ NNS . U.S. officials are downplaying media reports that Washington is investigating possible Iranian involvement in an attack in Iraq that killed five U.S. soldiers . NNP NNS VBP VBG NNS NNS IN NNP VBZ VBG JJ JJ NN IN DT NN IN NNP WDT VBD CD NNP NNS . At the State Department , a senior U.S. official said he does not know anything to substantiate the conclusion that Iran was involved , and called the idea a ' supposition . ' IN DT NNP NNP , DT JJ NNP NN VBD PRP VBZ RB VB DT TO VB DT NN IN NNP VBD VBN , CC VBD DT NN DT `` NN . `` White House spokesman Tony Snow said he would not comment on what it called ' speculation ' about Iranian involvement in the attack last Saturday in Karbala . NNP NNP NN NNP NNP VBD PRP MD RB VB IN WP PRP VBD `` NN `` IN JJ NN IN DT NN JJ NNP IN NNP . The New York Times and CNN had reported that the Defense Department is trying to determine whether Iranians or Iranian-trained operatives carried out the attack . DT NNP NNP NNP CC NNP VBD VBN IN DT NNP NNP VBZ VBG TO VB IN NNS CC JJ NNS VBD IN DT NN . The U.S. military has said the attack was well coordinated , with assailants dressed in U.S. military-style uniforms and driving vehicles similar to those used by U.S. troops . DT NNP NN VBZ VBN DT NN VBD RB VBN , IN NNS VBN IN NNP JJ NNS CC VBG NNS JJ TO DT VBN IN NNP NNS . The United States is recalling to active duty several thousand Marines to bolster American military units in Iraq and Afghanistan . DT NNP NNPS VBZ VBG TO JJ NN JJ CD NNS TO VB JJ JJ NNS IN NNP CC NNP . A military spokesman says the reservists are men and women who returned to civilian life after previous active-duty service . DT JJ NN VBZ DT NNS VBP NNS CC NNS WP VBD TO JJ NN IN JJ JJ NN . They will fill critical shortages among military-police units , intelligence and communications specialists . PRP MD VB JJ NNS IN JJ NNS , NN CC NNS NNS . President Bush issued an order authorizing the involuntary callup . NNP NNP VBD DT NN VBG DT JJ NN . The Marines Corps has 35,000 reserve troops with time remaining on eight-year commitments made when they enlisted . DT NNP NNP VBZ CD NN NNS IN NN VBG IN JJ NNS VBN WRB PRP VBD . Mr. Bush 's order limits the number of those who can be recalled to 2,500 at a time . NNP NNP POS NN VBZ DT NN IN DT WP MD VB VBN TO CD IN DT NN . Meanwhile , in Iraq , U.S. military officials report a declining trend in violence this month in Baghdad . RB , IN NNP , NNP JJ NNS VBP DT VBG NN IN NN DT NN IN NNP . But insurgents carried out more attacks Wednesday , including a suicide bombing in Mosul that killed a woman and wounded eight policemen . CC NNS VBD RP JJR NNS NNP , VBG DT NN VBG IN NNP WDT VBD DT NN CC VBD CD NNS . Malawi 's President , Bingu wa Mutharika , says a motion in parliament to impeach him will not stop his campaign against corruption . NNP POS NNP , NNP NNP NNP , VBZ DT NN IN NN TO VB PRP MD RB VB PRP$ NN IN NN . Addressing a church service Sunday , Mr. wa Mutharika said there are those in parliament who want to remove him from office because of his anti-corruption campaign . VBG DT NN NN NNP , NNP NNP NNP VBD EX VBP DT IN NN WP VBP TO VB PRP IN NN IN IN PRP$ JJ NN . But he said no threat of impeachment would stop his so-called ' zero tolerance ' policy . CC PRP VBD DT NN IN NN MD VB PRP$ JJ `` CD NN `` NN . On Friday , the speaker of parliament , Louis Chimango , introduced an impeachment motion charging him with ignoring the constitution in setting up his own party and with misuse of public funds . IN NNP , DT NN IN NN , NNP NNP , VBD DT NN NN VBG PRP IN VBG DT NN IN VBG RP PRP$ JJ NN CC IN NN IN JJ NNS . Mr. wa Mutharika , a former economist , has won praise from donor nations and aid agencies for his efforts to adopt economic reforms and stamp out corruption . NNP NNP NNP , DT JJ NN , VBZ VBN NN IN NN NNS CC NN NNS IN PRP$ NNS TO VB JJ NNS CC VB RP NN . England 's bowlers have picked apart Sri Lanka 's lineup , with the host nation dismissed for only 188 runs on the first day of their first test match at Asgiriya Stadium in Kandy , Sri Lanka . NNP POS NNS VBP VBN RP NNP NNP POS NN , IN DT NN NN VBD IN RB CD NNS IN DT JJ NN IN PRP$ JJ NN NN IN NNP NNP IN NNP , NNP NNP . England lost the toss , but seam bowler Matthew Hoggard and spinner Monty Panesar took a total of seven wickets . NNP VBD DT NN , CC JJ NN NNP NNP CC NN NNP NNP VBD DT NN IN CD NNS . Hoggard finished at Apr-29 while Panesar was Mar-46 . NNP VBD IN CD IN NNP VBD CD . Kumar Sangakkara top scored for Sri Lanka with 92 runs , including 13 fours before being caught out by Paul Collingwood . NNP NNP NN VBD IN NNP NNP IN CD NNS , VBG CD NNS IN VBG VBN RP IN NNP NNP . Prasanna Jayawardene added another 51 runs but he was caught out by Alastair Cook on a ball bowled by Panesar . NNP NNP VBD DT CD NNS CC PRP VBD VBN RP IN NNP NNP IN DT NN VBN IN NNP . The second test at the Sinhalese Sports Club in Colombo starts December ninth . DT JJ NN IN DT NNP NNP NNP IN NNP VBZ NNP NN . The third test is scheduled for Galle International Stadium beginning December 18th . DT JJ NN VBZ VBN IN NNP NNP NNP VBG NNP CD . England won the five-match , one-day series , 03-Feb . NNP VBD DT JJ , JJ NN , CD . President Barack Obama has reaffirmed his belief in a woman 's right to choose whether to have an abortion as tens of thousands of abortion opponents held their annual rally in Washington . NNP NNP NNP VBZ VBN PRP$ NN IN DT NN POS NN TO VB IN TO VB DT NN IN NNS IN NNS IN NN NNS VBD PRP$ JJ NN IN NNP . President Obama issued a statement Thursday calling abortion a sensitive and divisive issue . NNP NNP VBD DT NN NNP VBG NN DT JJ CC JJ NN . While he said the government must not intrude in private family matters , the country is united on the need to prevent unintended pregnancies . IN PRP VBD DT NN MD RB VB IN JJ NN NNS , DT NN VBZ VBN IN DT NN TO VB JJ NNS . Thursday 's annual gathering , which supporters call the Right to Life March , came on the 36th anniversary of Roe versus Wade - the U.S. Supreme Court decision legalizing abortion . NNP POS JJ NN , WDT NNS VBP DT NNP TO NNP NNP , VBD IN DT JJ NN IN NNP IN NNP IN DT NNP NNP NNP NN VBG NN . Supporters of the landmark decision say it protects women 's lives and makes the right to choose to have a safe and legal abortion sacred . NNS IN DT NN NN VBP PRP VBZ NNS POS NNS CC VBZ DT NN TO VB TO VB DT JJ CC JJ NN VBN . Abortion opponents say life starts at conception and liken abortion to genocide . NN NNS VBP NN NNS IN NN CC JJ NN TO VB . They urge women with unwanted pregnancies to carry their babies to term and give them up for adoption . PRP VBP NNS IN JJ NNS TO VB PRP$ NNS TO NN CC VB PRP RP IN NN . The party of Liberian presidential candidate George Weah has called for a re-run of Tuesday 's run-off vote , charging electoral fraud . DT NN IN JJ JJ NN NNP NNP VBZ VBN IN DT NN IN NNP POS NN NN , VBG JJ NN . The call comes as Liberians await official confirmation of former Finance Minister Ellen Johnson-Sirleaf 's apparent victory . DT NN VBZ IN NNS VBP JJ NN IN JJ NNP NNP NNP NNP POS JJ NN . With 99 percent of the votes counted , Mrs. Johnson-Sirleaf has won about 60 percent of the vote to 40 percent for Mr. Weah , a former football ( soccer ) star . IN CD NN IN DT NNS VBN , NNP NNP VBZ VBN IN CD NN IN DT NN TO CD NN IN NNP NNP , DT JJ NN LRB NN RRB NN . Final results are expected on Tuesday . JJ NNS VBP VBN IN NNP . The National Election Commission says it will hear Mr. Weah 's complaints of election irregularities on Wednesday . DT NNP NNP NNP VBZ PRP MD VB NNP NNP POS NNS IN NN NNS IN NNP . International observers say there is no evidence of widespread fraud in the run-off . NNP NNS VBP EX VBZ DT NN IN JJ NN IN DT NN . Saturday in the capital , Monrovia , hundreds of Mr. Weah 's supporters gathered in front of United Nations headquarters to demand a new election . NNP IN DT NN , NNP , NNS IN NNP NNP POS NNS VBD IN NN IN NNP NNP NN TO VB DT JJ NN . U.N. peacekeepers dispersed the crowd peacefully . NNP NNS VBD DT NN RB . The Afghan Islamic Press says the Taleban has rejected a U.S. appeal for its fighters to surrender under a government offer of amnesty . DT JJ NNP NNP VBZ DT NNP VBZ VBN DT NNP NN IN PRP$ NNS TO VB IN DT NN NN IN NN . The Pakistan-based news organization quoted Taleban spokesman Latifullah Hakimi Friday as saying the group considers the U.S. offer an attempt to divide it . DT JJ NN NN VBN NNP NN NNP NNP NNP IN VBG DT NN VBZ DT NNP NN DT NN TO NN PRP . The Afghan Islamic Press also quotes Mr. Hakimi as saying the Taleban will never stop fighting as long as U.S. troops remain in Afghanistan . DT JJ NNP NNP RB VBZ NNP NNP IN VBG DT NNP MD RB VB VBG RB RB IN NNP NNS VBP IN NNP . Thursday , U.S. Ambassador to Afghanistan Zalmay Khalilzad urged Taleban fighters to lay down their arms under an Afghan government offer of amnesty . NNP , NNP NNP TO NNP NNP NNP VBD NNP NNS TO VB RP PRP$ NNS IN DT JJ NN NN IN NN . Ambassador Khalilzad said U.S. forces will cooperate with the the amnesty , which he said will not apply to those who , have committed ' crimes against the Afghan people . ' NNP NNP VBD NNP NNS MD VB IN DT DT NN , WDT PRP VBD MD RB VB TO DT WP , VBP VBN `` NNS IN DT JJ NNS . `` Officials in Afghanistan say multiple suicide bombers attacked the governor 's compound in the southern Afghan city of Kandahar Saturday , killing five policemen . NNS IN NNP VBP JJ NN NNS VBD DT NN POS NN IN DT JJ JJ NN IN NNP NNP , VBG CD NNS . Provincial official Ahmad Wali Karzai , who is the president 's brother , says three suicide bombers were involved in the attack . NNP JJ NNP NNP NNP , WP VBZ DT NN POS NN , VBZ CD NN NNS VBD VBN IN DT NN . There are reports that at least one of the bombers detonated his explosives outside the compound , while the others may have been inside the compound . EX VBP NNS IN IN JJS CD IN DT NNS VBD PRP$ NNS IN DT NN , IN DT NNS MD VB VBN IN DT NN . The Taliban has claimed responsibility for the attack . DT NNP VBZ VBN NN IN DT NN . Earlier this month , four suicide bombers struck a provincial council office in Kandahar , killing 13 people . RBR DT NN , CD NN NNS VBD DT JJ NN NN IN NNP , VBG CD NNS . Taliban militants also claimed responsibility for that attack . NNP NNS RB VBD NN IN DT NN . China 's ambassador to the United Nations in Geneva says the United States should ' shut up ' about his country 's military spending . NNP POS NN TO DT NNP NNPS IN NNP VBZ DT NNP NNPS MD `` VB RP `` IN PRP$ NN POS JJ NN . Sha Zukang was responding Thursday to a BBC interviewer . NNP NNP VBD VBG NNP TO DT NNP NN . The interviewer had asked him about U.S. Defense Secretary Donald Rumsfeld 's assertion that much of China 's military spending is concealed . DT NN VBD VBN PRP IN NNP NNP NNP NNP NNP POS NN IN NN IN NNP POS JJ NN VBZ VBN . Sha said the United States should keep quiet and not dictate policy to China . NNP VBD DT NNP NNPS MD VB JJ CC RB VB NN TO NNP . He said the United States itself accounts for half of the world 's military spending . PRP VBD DT NNP NNPS PRP VBZ IN NN IN DT NN POS JJ NN . He also said China would sacrifice lives if Taiwan declares independence . PRP RB VBD NNP MD VB NNS IN NNP VBZ NN . He said for China , one inch of territory is more valuable than the lives of its people . PRP VBD IN NNP , CD NN IN NN VBZ RBR JJ IN DT NNS IN PRP$ NNS . He added China has a sacred duty to defend its state sovereignty . PRP VBD NNP VBZ DT JJ NN TO VB PRP$ NN NN . Ethiopia 's main opposition coalition has reaffirmed its commitment to a non-violence pact with the government - a deal aimed at ending post-election violence in the country . NNP POS JJ NN NN VBZ VBN PRP$ NN TO DT JJ NN IN DT NN IN DT NN VBN IN VBG JJ NN IN DT NN . The Coalition for Unity and Democracy , or CUD , Sunday said it ' unequivocally ' accepts the terms of Friday 's deal with Ethiopia 's ruling party . DT NN IN NNP CC NNP , CC NNP , NNP VBD PRP `` RB `` VBZ DT NNS IN NNP POS NN IN NNP POS VBG NN . The pact was negotiated in an effort to stop recent violence sparked by last month 's election results . DT NN VBD VBN IN DT NN TO VB JJ NN VBN IN JJ NN POS NN NNS . At least 29 people were killed in a protest last week , when police opened fire on crowds alleging fraud during the vote . IN JJS CD NNS VBD VBN IN DT NN JJ NN , WRB NNS VBD NN IN NNS VBG NN IN DT NN . Ethiopia 's government has accused the opposition of engineering the protests and breaking the non-violence pact . NNP POS NN VBZ VBN DT NN IN VBG DT NNS CC VBG DT JJ NN . Meanwhile , opposition officials say CUD leader , Hailu Shawel , remains under house arrest for a second day . RB , NN NNS VBP NNP NN , NNP NNP , VBZ IN NN NN IN DT JJ NN . Officials say attempts to contact Mr. Hailu have failed because his telephone is not working . NNS VBP NNS TO VB NNP NNP VBP VBN IN PRP$ NN VBZ RB VBG . Saudi authorities say they have arrested five suspected terrorists linked to a February attack on the world 's largest oil facility , located in the eastern part of the kingdom . JJ NNS VBP PRP VBP VBN CD JJ NNS VBN TO DT NNP NN IN DT NN POS JJS NN NN , VBN IN DT JJ NN IN DT NN . A Saudi Interior Ministry statement said the militants are linked to the foiled assault on the Abqaiq compound February 24 . DT JJ NNP NNP NN VBD DT NNS VBP VBN TO DT VBN NN IN DT NNP NN NNP CD . Police said militants tried to drive two vehicles loaded with explosives past barricades and into the oil facility , which handles about two-thirds of the country 's crude . NNP VBD NNS VBD TO VB CD NNS VBN IN NNS JJ NNS CC IN DT NN NN , WDT VBZ IN NNS IN DT NN POS NN . Authorities said the attack failed when two guards opened fire and the attack vehicles exploded . NNS VBD DT NN VBD WRB CD NNS VBD NN CC DT NN NNS VBD . Two guards and two militants were killed . CD NNS CC CD NNS VBD VBN . The Al-Qaida terror network claimed responsibility for that attack . DT NNP NN NN VBD NN IN DT NN . In late March , Saudi Arabia said it had arrested 40 suspected militants , including eight allegedly linked to the February attack . IN JJ NNP , NNP NNP VBD PRP VBD VBN CD JJ NNS , VBG CD RB VBN TO DT NNP NN . The Hubble Space Telescope has captured a mosaic of images to reveal the most complete picture of the early universe , with thousands of galaxies in ' various stages of assembly . ' DT NNP NNP NNP VBZ VBN DT NN IN NNS TO VB DT RBS JJ NN IN DT JJ NN , IN NNS IN NNS IN `` JJ NNS IN NN . `` The U.S. space agency NASA said Tuesday that the farthest galaxies in the snapshot are seen as they appeared more than 13 billion years ago , or roughly 650 million years after the Big Bang - the massive explosion that many scientists believe formed our universe . DT NNP NN NN NNP VBD NNP IN DT JJS NNS IN DT NN VBP VBN IN PRP VBD JJR IN CD CD NNS RB , CC RB CD CD NNS IN DT NNP NNP IN DT JJ NN IN JJ NNS VBP VBN PRP$ NN . The Hubble picture displays the older , smaller galaxies together with closer , newer and more mature ones . DT NNP NN VBZ DT JJR , JJR NNS RB IN JJR , JJR CC RBR JJ NNS . The result is a galactic family photo of sorts that portrays galaxies in various stages of evolution . DT NN VBZ DT JJ NN NN IN NNS WDT VBZ NNS IN JJ NNS IN NN . NASA says this is the most detailed picture of the universe yet in terms of clarity , accuracy and depth . NNP VBZ DT VBZ DT RBS JJ NN IN DT NN RB IN NNS IN NN , NN CC NN . The Hubble Space Telescope is a joint project between NASA and the European Space Agency . DT NNP NNP NNP VBZ DT JJ NN IN NNP CC DT NNP NNP NNP . Yasser Arafat has been buried at his West Bank compound , as a sea of Palestinian mourners chanted ' With our soul , with our blood , we will support you Abu Ammar . ' NNP NNP VBZ VBN VBN IN PRP$ NNP NNP NN , IN DT NN IN JJ NNS VBD `` IN PRP$ NN , IN PRP$ NN , PRP MD VB PRP NNP NNP . `` The 75-year-old leader , also known by his nom de guerre ' Abu Ammar , ' was laid to rest at the compound where he spent the last three-and-a-half years of his life as a virtual prisoner of Israel . DT JJ NN , RB VBN IN PRP$ NN IN NN `` NNP NNP , `` VBD VBN TO VB IN DT NN WRB PRP VBD DT JJ JJ NNS IN PRP$ NN IN DT JJ NN IN NNP . Palestinian masons worked through the night at the Muqataa compound to prepare his grave . JJ NNS VBD IN DT NN IN DT NNP NN TO VB PRP$ NN . Tens of thousands of mourners waving Palestinian flags , and photos of their leader greeted the military helicopter as it brought his flag-draped coffin from a funeral in Cairo . NNS IN NNS IN NNS VBG JJ NNS , CC NNS IN PRP$ NN VBD DT JJ NN IN PRP VBD PRP$ JJ NN IN DT NN IN NNP . Arab royalty and heads-of-state , joined by European , American and other international officials , gathered for the service at a mosque near Cairo 's airport . JJ NN CC NN , VBN IN NNP , NNP CC JJ JJ NNS , VBD IN DT NN IN DT NN IN NNP POS NN . Mr. Arafat died early Thursday in a Paris hospital after a brief but undisclosed illness . NNP NNP VBD JJ NNP IN DT NNP NN IN DT JJ CC JJ NN . The Sri Lankan military says six soldiers have been killed and another one wounded by a land mine explosion in the country 's volatile north . DT NNP NNP NN VBZ CD NNS VBP VBN VBN CC DT CD VBN IN DT NN NN NN IN DT NN POS JJ NN . The military says the blast , blamed on Tamil Tiger rebels , hit the soldiers Sunday as they were transporting meals to their colleagues in Jaffna , some 400 kilometers north of Colombo . DT JJ VBZ DT NN , VBN IN NNP NNP NNS , VBD DT NNS NNP IN PRP VBD VBG NNS TO PRP$ NNS IN NNP , DT CD NNS RB IN NNP . The attack prompted Scandinavian monitors overseeing Sri Lanka 's truce with Tamil Tiger rebels to warn of ' irreparable deterioration ' of security in the island nation . DT NN VBD JJ NNS VBG NNP NNP POS NN IN NNP NNP NNS TO VB IN `` JJ NN `` IN NN IN DT NN NN . The monitoring mission appealed to all sides to calm the situation before it escalates further . DT NN NN VBD TO DT NNS TO VB DT NN IN PRP VBZ RBR . Tension has been mounting in Sri Lanka since Tamil Tiger leader V. Prabhakaran warned that the rebels will intensify their struggle for a Tamil homeland next year if grievances with the government are not resolved . NNP VBZ VBN VBG IN NNP NNP IN NNP NNP NN NNP NNP VBD IN DT NNS MD VB PRP$ NN IN DT NNP NN IN NN IN NNS IN DT NN VBP RB VBN . A religious festival that drew millions of Shi'ite pilgrims to Iraq 's holy city of Karbala has ended without major incident . DT JJ NN WDT VBD NNS IN NNP NNS TO NNP POS JJ NN IN NNP VBZ VBN IN JJ NN . Heavy security was in place Saturday for the festival of Shaaban . JJ NN VBD IN NN NNP IN DT NN IN NNP . It commemorates the birth of ninth-century Imam al-Mahdi al-Muntadar . PRP VBZ DT NN IN JJ NNP NNP NNP . Violence elsewhere in Iraq killed at least 12 people . NN RB IN NNP VBD IN JJS CD NNS . Bomb attacks in Baghdad left at least two people dead . NN NNS IN NNP VBD IN JJS CD NNS JJ . And a gunman killed an employee of Iraq 's government-run newspaper in the capital . CC DT NN VBD DT NN IN NNP POS JJ NN IN DT NN . On Friday , insurgents firing mortar rounds killed at least three Shi'ite pilgrims in a procession near Karbala . IN NNP , NNS VBG NN NNS VBD IN JJS CD NNP NNS IN DT NN IN NNP . The United States is warning that it would be a major international concern if North Korea launched a long-range ballistic missile . DT NNP NNPS VBZ VBG IN PRP MD VB DT JJ JJ NN IN NNP NNP VBD DT JJ JJ NN . Reports by Japanese media say North Korea may be preparing to test-fire such a weapon . NNS IN JJ NNS VBP NNP NNP MD VB VBG TO VB PDT DT NN . A U.S. State Department spokesman said Friday that a missile launch would also violate an agreement reached in September at the last round of six-party talks on North Korea 's nuclear program . DT NNP NNP NNP NN VBD NNP IN DT NN NN MD RB VB DT NN VBN IN NNP IN DT JJ NN IN JJ NNS IN NNP NNP POS JJ NN . On Friday Japanese broadcaster NHK quoted unidentified South Korean government officials as saying that satellite pictures show signs of activity at a launch site in northeastern North Korea . IN NNP NNS NN NNP VBD JJ JJ JJ NN NNS IN VBG IN NN NNS VBP NNS IN NN IN DT NN NN IN JJ NNP NNP . Japan 's Defense Agency quickly responded , saying that Tokyo does not believe a launch is imminent . NNP POS NNP NNP RB VBD , VBG IN NNP VBZ RB VB DT NN VBZ JJ . However , Japanese Foreign Minister Taro Aso told a parliamentary committee that a launch would be no surprise . RB , JJ NNP NNP NNP NNP VBD DT JJ NN IN DT NN MD VB DT NN . In 1998 , North Korea surprised Japan and governments around the world by firing a long-range missile over Japan into the Pacific Ocean . IN CD , NNP NNP VBD NNP CC NNS IN DT NN IN VBG DT JJ NN IN NNP IN DT NNP NNP . Every year on the last Friday in April Americans observe National Arbor Day . DT NN IN DT JJ NNP IN NNP NNS VBP NNP NNP NNP . Tree plantings and other events are held all across the United States to focus attention on the importance of trees in our communities and on our planet . NNP NNS CC JJ NNS VBP VBN DT IN DT NNP NNPS TO VB NN IN DT NN IN NNS IN PRP$ NNS CC IN PRP$ NN . Sponsored by the National Arbor Day Foundation , a non-profit group founded in 1872 , Arbor Day somewhat overshadows another of the Foundation 's national projects . VBN IN DT NNP NNP NNP NNP , DT JJ NN VBN IN CD , NNP NNP RB VBZ DT IN DT NNP POS JJ NNS . It is called the ' Tree City USA ' program , and it recognizes communities that preserve , protect , and defend their trees every day of the year . PRP VBZ VBN DT `` NNP NNP NNP `` NN , CC PRP VBZ NNS WDT VB , VB , CC VB PRP$ NNS DT NN IN DT NN . VOA 's George Dwyer recently visited a ' tree city ' just outside Washington . NNP POS NNP NNP RB VBD DT `` NN NN `` RB IN NNP . The White House says President Bush will hold a news conference shortly . DT NNP NNP VBZ NNP NNP MD VB DT NN NN RB . A spokeswoman did not say what topics the president plans to address in the meeting with reporters , which is scheduled to take place in the Rose Garden of the White House . DT NN VBD RB VB WP NNS DT NN VBZ TO VB IN DT NN IN NNS , WDT VBZ VBN TO VB NN IN DT NNP NNP IN DT NNP NNP . The announcement comes one day after the president nominated White House Counsel Harriet Miers to replace retiring Justice Sandra Day O'Connor on the Supreme Court . DT NN VBZ CD NN IN DT NN VBD NNP NNP NNP NNP NNP TO VB VBG NNP NNP NNP NNP IN DT NNP NNP . At least three car bombs have exploded in Baghdad , wounding at least six people . IN JJS CD NN NNS VBP VBN IN NNP , VBG IN JJS CD NNS . Iraqi police say the bombs went off almost simultaneously near a market in the southern part of the city . JJ NNS VBP DT NNS VBD RP RB RB IN DT NN IN DT JJ NN IN DT NN . The violence occurred as Iraqi politicians continued in their efforts to form a new government . DT NN VBD IN JJ NNS VBD IN PRP$ NNS TO VB DT JJ NN . Shi'ite , Sunni and Kurdish politicians have been unable to agree on a cabinet . NNP , NNP CC NNP NNS VBP VBN JJ TO VB IN DT NN . Pressure has been mounting on Prime Minister Ibrahim al-Jaafari , a Shi'ite , to give up his post . NN VBZ VBN VBG IN NNP NNP NNP NNP , DT NNP , TO VB RP PRP$ NN . Sunni politicians say Mr. al-Jaafari is a divisive and ineffective leader . NNP NNS VBP NNP NNP VBZ DT JJ CC JJ NN . The United States has been pressuring Iraqi politicians to form a new government , which Washington believes will help stem the violence . DT NNP NNPS VBZ VBN VBG JJ NNS TO VB DT JJ NN , WDT NNP VBZ MD VB VB DT NN . Speaking Friday in northern England , U.S. Secretary of State Condoleezza Rice said the United States had probably made thousands of errors in Iraq , but she defended the decision to overthrow Saddam Hussein . VBG NNP IN JJ NNP , NNP NNP IN NNP NNP NNP VBD DT NNP NNPS VBD RB VBN NNS IN NNS IN NNP , CC PRP VBD DT NN TO VB NNP NNP . President Bush has urged recipients of Medicare , the national health care program for seniors , to sign up for a new prescription drug program . NNP NNP VBZ VBN NNS IN NNP , DT JJ NN NN NN IN NNS , TO VB RP IN DT JJ NN NN NN . In a broadcast on U.S. radio Saturday , Mr. Bush said the prescription drug program is the greatest advance in health care for U.S. seniors since the introduction of Medicare itself 40 years ago . IN DT NN IN NNP NN NNP , NNP NNP VBD DT NN NN NN VBZ DT JJS NN IN NN NN IN NNP NNS IN DT NN IN NNP PRP CD NNS RB . He said the new benefit will help pay for preventative medication that costs far less than the price of treating a serious illness . PRP VBD DT JJ NN MD VB VB IN JJ NN WDT VBZ RB JJR IN DT NN IN VBG DT JJ NN . He said the days of making painful sacrifices to pay for prescription drugs are now over . PRP VBD DT NNS IN VBG JJ NNS TO VB IN NN NNS VBP RB IN . Mr. Bush also urged friends and family of the elderly to help their loved ones enroll , by gathering information , making a phone call , or helping them to fill out forms . NNP NNP RB VBD NNS CC NN IN DT NN TO VB PRP$ VBN NNS NN , IN VBG NN , VBG DT NN NN , CC VBG PRP TO VB RP NNS . Thousands of people in cities across Britain have rallied to protest Israeli military action in Lebanon . NNS IN NNS IN NNS IN NNP VBP VBN TO VB JJ JJ NN IN NNP . A march through central London Saturday drew the largest numbers . DT NN IN JJ NNP NNP VBD DT JJS NNS . Police estimate that crowd at seven thousand people . NNS VBP DT NN IN CD CD NNS . Many of them carried Lebanese flags . NN IN PRP VBD JJ NNS . British Muslim groups organized the protests . JJ NN NNS VBD DT NNS . The current Mideast crisis began July 12 , when Hezbollah guerrillas kidnapped two Israeli soldiers and killed eight in a raid . DT JJ NN NN VBD NNP CD , WRB NNP NNS VBD CD JJ NNS CC VBN CD IN DT NN . Israel then launched an offensive on Hezbollah militias based in Lebanon . NNP RB VBD DT NN IN NNP NNS VBN IN NNP . More than 300 Lebanese and 34 Israelis have died in the violence . JJR IN CD JJ CC CD NNS VBP VBN IN DT NN . Hundreds more have been wounded . NNS RBR VBP VBN VBN . Confessed swindler Bernard Madoff will have to wait a bit longer to find out how long his prison sentence will be . JJ NN NNP NNP MD VB TO VB DT NN RBR TO VB RP WRB JJ PRP$ NN NN MD VB . He could get up to 150 years for stealing tens of billions of dollars from investment clients through an elaborate scheme of lies . PRP MD VB RP TO CD NNS IN VBG NNS IN NNS IN NNS IN NN NNS IN DT JJ NN IN NNS . The judge has put off Madoff 's sentencing until June 29 . DT NN VBZ VBN RP NNP POS NN IN NNP CD . Some of Madoff 's many victims are expected to speak to the court before the judge pronounces the sentence . DT IN NNP POS JJ NNS VBP VBN TO VB TO DT NN IN DT NN VBZ DT NN . Madoff 's $ 65 billion fraud is the largest in U.S. history and it went undetected by U.S. financial regulators for perhaps 20 years . NNP POS $ CD CD NN VBZ DT JJS IN NNP NN CC PRP VBD VBN IN NNP JJ NNS IN RB CD NNS . Thursday , the Securities and Exchange Commission voted to tighten regulations by subjecting investment advisers who hold clients ' money to surprise inspections by independent auditors once a year . NNP , DT NNPS CC NNP NNP VBD TO VB NNS IN VBG NN NNS WP VBP NNS POS NN TO VB NNS IN JJ NNS RB DT NN . The human rights group Amnesty International says China is fast emerging as one of the world 's biggest , most secretive and irresponsible arms exporters . DT JJ NNS NN NNP NNP VBZ NNP VBZ RB VBG IN CD IN DT NN POS JJS , RBS JJ CC JJ NNS NNS . Amnesty says Chinese weapons sales to Sudan , Nepal and Burma have aggravated conflicts there and encouraged repressive rule in those countries . NNP VBZ JJ NNS NNS TO NNP , NNP CC NNP VBP VBN NNS RB CC VBN JJ NN IN DT NNS . In a new report , Amnesty accuses China of shipping tens of thousands of rifles and grenades to Nepal 's security forces . IN DT JJ NN , NNP VBZ NNP IN VBG NNS IN NNS IN NNS CC NNS TO NNP POS NN NNS . It also says Beijing has exported hundreds of military trucks to Burma and Sudan . PRP RB VBZ NNP VBZ VBN NNS IN JJ NNS TO NNP CC NNP . The London-based group says China 's arms exports , estimated to exceed $ 1 billion a year , often involve the exchange of weapons for raw materials to fuel the country 's rapid economic growth . DT JJ NN VBZ NNP POS NNS NNS , VBN TO VB $ CD CD DT NN , RB VBP DT NN IN NNS IN JJ NNS TO VB DT NN POS JJ JJ NN . China rarely confirms sales of military equipment - a policy that has compounded U.S. concerns about Beijing 's military buildup and what Washington says is a lack of transparency in its defense policies . NNP RB VBZ NNS IN JJ NN IN DT NN WDT VBZ VBN NNP NNS IN NNP POS JJ NN CC WP NNP VBZ VBZ DT NN IN NN IN PRP$ NN NNS . Former Haitian leader Jean Bertrand Aristide says he will not play a role in his country 's politics once he returns home . JJ JJ NN NNP NNP NNP VBZ PRP MD RB VB DT NN IN PRP$ NN POS NNS IN PRP VBZ NN . The former president and ex-priest told international news agencies in Pretoria , South Africa Wednesday , that he wants to return to Haiti to teach . DT JJ NN CC NN VBD JJ NN NNS IN NNP , NNP NNP NNP , IN PRP VBZ TO VB TO NNP TO VB . Mr. Aristide has been living in exile in South Africa since he was forced out of office in February 2004 after an armed uprising . NNP NNP VBZ VBN VBG IN NN IN NNP NNP IN PRP VBD VBN IN IN NN IN NNP CD IN DT JJ NN . Mr. Aristide says the date of his return depends upon negotiations between Haitian President-elect Rene Preval , the United Nations and other interested parties . NNP NNP VBZ DT NN IN PRP$ NN VBZ IN NNS IN JJ NNP NNP NNP , DT NNP NNPS CC JJ JJ NNS . Mr. Preval , a former protege of Mr. Aristide , was declared the winner of Haiti 's February 7 presidential elections last week . NNP NNP , DT JJ NN IN NNP NNP , VBD VBN DT NN IN NNP POS NNP CD JJ NNS JJ NN . The Lebanese army Tuesday agreed to a ceasefire request from Islamic militants to allow their families to leave a Palestinian refugee camp where the two factions have been fighting for months . DT JJ NN NNP VBD TO DT NN NN IN NNP NNS TO VB PRP$ NNS TO VB DT JJ NN NN WRB DT CD NNS VBP VBN VBG IN NNS . The mediators , from the Palestinian Cleric 's Association , say Fatah al-Islam asked them late Monday for help in arranging a truce in the fighting at Nahr al-Bared camp near the northern port city of Tripoli . DT NNS , IN DT JJ NNP POS NNP , VBP NNP NNP VBD PRP JJ NNP IN NN IN VBG DT NN IN DT NN IN NNP JJ NN IN DT JJ JJ NN IN NNP . In the past , the clerics ' group has tried but failed to mediate between the militants and the army , which is demanding an unconditional surrender of remaining fighters . IN DT NN , DT NNS POS NN VBZ VBN CC VBN TO VB IN DT NNS CC DT NN , WDT VBZ VBG DT JJ NN IN VBG NNS . Most of the camp 's refugees have fled since fighting began in May . JJS IN DT NN POS NNS VBP VBN IN NN VBD IN NNP . Also Tuesday Lebanon 's military says a soldier was killed during fighting at Nahr al-Bared . RB NNP NNP POS JJ VBZ DT NN VBD VBN IN VBG IN NNP NNP . At least 200 people , including 141 soldiers , have been killed in the battles . IN JJS CD NNS , VBG CD NNS , VBP VBN VBN IN DT NNS . The U.S. State Department has labeled al-Qaida-inspired Fatah al-Islam a terrorist organization . DT NNP NNP NNP VBZ VBN JJ NNP NNP DT JJ NN . Campaigning has ended for the first round of local Palestinian elections to be held on Thursday . NN VBZ VBN IN DT JJ NN IN JJ JJ NNS TO VB VBN IN NNP . Some 1,40,000 Palestinians are eligible to vote in 26 communities around the West Bank . DT CD NNS VBP JJ TO VB IN CD NNS IN DT NNP NNP . More than 800 people are running for local offices . JJR IN CD NNS VBP VBG IN JJ NNS . A second round of voting in other communities is set for early in the new year , after presidential elections that are scheduled for January 9 . DT JJ NN IN NN IN JJ NNS VBZ VBN IN JJ IN DT JJ NN , IN JJ NNS WDT VBP VBN IN NNP CD . The vast majority of candidates in the local elections are members of the mainstream Fatah party . DT JJ NN IN NNS IN DT JJ NNS VBP NNS IN DT NN NNP NN . Results from Thursday 's elections are not expected to be made public until the end of the week . NNS IN NNP POS NNS VBP RB VBN TO VB VBN JJ IN DT NN IN DT NN . Taleban rebels in Afghanistan have launched attacks in the lead-up to Sunday 's parliamentary elections , in an effort to disrupt the vote . NNP NNS IN NNP VBP VBN NNS IN DT JJ TO NNP POS JJ NNS , IN DT NN TO VB DT NN . Government officials say security forces arrested 20 suspected rebels Saturday , who were trying to blow up a large dam in southern Afghanistan . NN NNS VBP NN NNS VBN CD JJ NNS NNP , WP VBD VBG TO VB RP DT JJ NN IN JJ NNP . Late Friday , three police officers were killed when Taleban guerillas ambushed their patrol near the capital . RB NNP , CD NNS NNS VBD VBN WRB NNP NNS VBD PRP$ NN IN DT NN . In a separate attack , rebels ambushed police as they patrolled the main Kabul - Kandahar highway . IN DT JJ NN , NNS VBD NNS IN PRP VBD DT JJ NNP : NNP NN . Seven rebels were killed in the ensuing firefight . CD NNS VBD VBN IN DT VBG NN . Seven national assembly candidates and several poll workers have also been the victims of election-related violence . CD JJ NN NNS CC JJ NN NNS VBP RB VBN DT NNS IN JJ NN . The Taleban have called for an election boycott , threatening attacks on foreign troops , but not on voters . DT NNP VBP VBN IN DT NN NN , VBG NNS IN JJ NNS , CC RB IN NNS . Political leaders representing Iraq 's ethnic and religious groups remain at odds over key provisions of a new constitution , despite Monday 's deadline for completion of a draft document . JJ NNS VBG NNP POS JJ CC JJ NNS VBP IN NNS IN JJ NNS IN DT JJ NN , IN NNP POS NN IN NN IN DT NN NN . Friday prayers brought calls from Sunni Arab clerics for followers to reject federalism and vote against a constitution containing provisions that divide the country . NNP NNS VBD NNS IN NNP NNP NNS IN NNS TO VB NN CC NN IN DT NN VBG NNS WDT VBP DT NN . On Thursday , Abdul-Aziz al-Hakim , the leader of Iraq 's largest Shi'ite party , the Supreme Council for Islamic Revolution announced his support for a federal region in central and southern Iraq . IN NNP , NNP NNP , DT NN IN NNP POS JJS JJ NN , DT NNP NNP IN NNP NNP VBD PRP$ NN IN DT JJ NN IN JJ CC JJ NNP . Iraq 's Kurds also favor a federal structure that will protect their autonomous status in the country 's north . NNP POS NNS RB VBP DT JJ NN WDT MD VB PRP$ JJ NN IN DT NN POS NN . The draft is to be submitted to Iraq 's National Assembly Monday for debate before an October referendum . DT NN VBZ TO VB VBN TO NNP POS NNP NNP NNP IN NN IN DT NNP NN . In other developments , a roadside bomb attack early Friday killed an American soldier who was on patrol in Tikrit , north of Baghdad . IN JJ NNS , DT NN NN NN RB NNP VBD DT JJ NN WP VBD IN NN IN NNP , NN IN NNP . Many commuters in the Brazilian city of Rio de Janeiro were stranded Friday as the city cut back bus service to curb deadly gang attacks on public transportation . JJ NNS IN DT JJ NN IN NNP IN NNP VBD VBN NNP IN DT NN VBD RP NN NN TO VB JJ NN NNS IN JJ NN . City officials took the measure after gangs set fire to at least six buses Thursday , burning seven people alive . NNP NNS VBD DT NN IN NNS VBD NN TO IN JJS CD NNS NNP , VBG CD NNS JJ . Gang members also attacked police stations . NNP NNS RB VBD NN NNS . Two policemen , seven alleged gang members , and two other civilians were reported killed , in addition to the victims on the bus . CD NNS , CD JJ NN NNS , CC CD JJ NNS VBD VBN VBN , IN NN TO DT NNS IN DT NN . Police said the motive for the apparently coordinated attacks was not immediately clear . NNS VBD DT NN IN DT RB VBN NNS VBD RB RB JJ . Some officials said it may be linked to anti-drug efforts in the city . DT NNS VBD PRP MD VB VBN TO JJ NNS IN DT NN . Some 200 people in Sao Paulo died earlier this year in a series of attacks by criminal gangs . DT CD NNS IN NNP NNP VBD RBR DT NN IN DT NN IN NNS IN JJ NNS . Indonesia says it will monitor Islamic boarding schools as part of its effort to fight militant violence and suicide bombings . NNP VBZ PRP MD VB NNP VBG NNS IN NN IN PRP$ NN TO VB JJ NN CC NN NNS . Vice President Jusuf Kalla said Thursday that the religious affairs minister will monitor all Islamic boarding schools . NNP NNP NNP NNP VBD NNP IN DT JJ NNS NN MD VB DT JJ NN NNS . The vice president said he believes there are only a few schools that could be considered possible breeding grounds for terrorists , but he declined to name them . DT NN NN VBD PRP VBZ EX VBP RB DT JJ NNS WDT MD VB VBN JJ NN NNS IN NNS , CC PRP VBD TO VB PRP . However , the Al-Mukmin and Al-Islam schools on the island of Java had previously come under scrutiny after several terrorists were found to have studied at them . RB , DT NNP CC NNP NNS IN DT NN IN NNP VBD RB VBN IN NN IN JJ NNS VBD VBN TO VB VBN IN PRP . The former students include militants convicted in the 2002 Bali bombings and the 2003 bombing of the Marriott hotel in Jakarta . DT JJ NNS VBP NNS VBN IN DT CD NNP NNS CC DT CD NN IN DT NNP NN IN NNP . A Palestinian suicide bomber has blown himself up at an Israeli checkpoint in the northern West Bank , killing one Israeli soldier and at least two Palestinians . DT JJ NN NN VBZ VBN PRP RP IN DT JJ NN IN DT JJ NNP NNP , VBG CD JJ NN CC IN JJS CD NNS . Israeli officials say the bomber struck Thursday , after stepping from a taxi to face soldiers at a makeshift checkpoint near the Israeli border . JJ NNS VBP DT NN VBD NNP , IN VBG IN DT NN TO VB NNS IN DT NN NN IN DT JJ NN . Four other Israelis and several Palestinians were wounded . CD JJ NNS CC JJ NNS VBD VBN . Israeli authorities said they believed the bomber intended to strike in Tel Aviv . JJ NNS VBD PRP VBD DT NN VBD TO VB IN NNP NNP . The bombing occurred as Israeli warplanes and artillery hit targets in the northern Gaza Strip , in a campaign Israel says is aimed at stopping militants from firing rockets into Israel . DT NN VBD IN JJ NNS CC NN VBD NNS IN DT JJ NNP NNP , IN DT NN NNP VBZ VBZ VBN IN VBG NNS IN VBG NNS IN NNP . Meanwhile , Palestinian security forces continue to hunt for a British human rights activist kidnapped along with her parents Wednesday in southern Gaza . RB , JJ NN NNS VBP TO VB IN DT JJ JJ NNS NN VBN IN IN PRP$ NNS NNP IN JJ NNP . Authorities say there has been no claim of responsibility and no ransom demands . NNS VBP EX VBZ VBN DT NN IN NN CC DT NN NNS . Officials in Nigeria say a bomb has exploded at a popular market inside an army barracks in the capital , Abuja . NNS IN NNP VBP DT NN VBZ VBN IN DT JJ NN IN DT NN NNS IN DT NN , NNP . Nigerian television is reporting that at least 30 people died in the explosion . JJ NN VBZ VBG IN IN JJS CD NNS VBD IN DT NN . Police have not confirmed that figure . NNS VBP RB VBN IN NN . Officials say the bomb went off inside Mammy market where people were eating and drinking to celebrate New Year 's Eve . NNS VBP DT NN VBD RB JJ NNP NN WRB NNS VBD JJ CC NN TO VB NNP NNP POS NNP . No one has claimed responsibility for the attack . DT NN VBZ VBN NN IN DT NN . Nigerian President Goodluck Jonathan blamed the bombing on the radical Islamist group Boko Haram . JJ NNP NNP NNP VBD DT VBG IN DT JJ NN NN NNP NNP . The group claimed responsibility for Christmas Eve bomb attacks in the central city of Jos , and for attacking several churches in the northern city of Maiduguri . DT NN VBD NN IN NNP NNP NN NNS IN DT JJ NN IN NNP , CC IN VBG JJ NNS IN DT JJ NN IN NNP . More than 80 people died in those attacks . JJR IN CD NNS VBD IN DT NNS . Abuja was shaken by car bomb attacks in October . NNP VBD VBN IN NN NN NNS IN NNP . Militants from the southern oil-producing Niger Delta claimed responsibility for those blasts . NNS IN DT JJ NN NNP NNP VBD NN IN DT NNS . The eldest daughter of former Chilean dictator Augusto Pinochet has been taken into custody in Santiago , after returning from an unsuccessful bid for asylum in the United States . DT JJS NN IN JJ JJ NN NNP NNP VBZ VBN VBN IN NN IN NNP , IN VBG IN DT JJ NN IN NN IN DT NNP NNPS . Officials say Lucia Pinochet Hiriart was detained at the airport in Santiago Saturday on arrival from Washington . NNS VBP NNP NNP NNP VBD VBN IN DT NN IN NNP NNP IN NN IN NNP . Like her mother , father and several siblings , she faces tax evasion charges linked to $ 27 million the family allegedly hid in overseas bank accounts . IN PRP$ NN , NN CC JJ NNS , PRP VBZ NN NN NNS VBN TO $ CD CD DT NN RB JJ IN JJ NN NNS . Pinochet Hiriart fled Chile Sunday , a day before her mother and four siblings were detained there . NNP NNP VBD NNP NNP , DT NN IN PRP$ NN CC CD NNS VBD VBN RB . They were freed on bail a day later . PRP VBD VBN IN NN DT NN RB . In addition to the tax fraud charges , her father , Augusto Pinochet , also faces human rights charges related to his rule of Chile from 1973 to 1990 . IN NN TO DT NN NN NNS , PRP$ NN , NNP NNP , RB VBZ JJ NNS NNS VBN TO PRP$ NN IN NNP IN CD TO CD . Pakistani officials say the senior officer heading the probe into last week 's suicide attack on former Pakistani Prime Minister Benazir Bhutto has withdrawn from the case . JJ NNS VBP DT JJ NN VBG DT NN IN JJ NN POS NN NN IN JJ JJ NNP NNP NNP NNP VBZ VBN IN DT NN . The home secretary of Sindh province , Ghulam Muhammad Mohtarem , says Manzur Mughal stepped down after Ms. Bhutto accused him of involvement in the alleged torture of her husband while in police custody in 1999 . DT NN NN IN NNP NN , NNP NNP NNP , VBZ NNP NNP VBD RP IN NNP NNP VBD PRP IN NN IN DT JJ NN IN PRP$ NN IN IN NN NN IN CD . Ms. Bhutto survived an assassination attempt last Thursday when suicide attackers struck near her convoy as it drove through the packed streets of Karachi , the capital of Sindh province , hours after she returned to Pakistan , ending years of political exile . NNP NNP VBD DT NN NN JJ NNP WRB NN NNS VBD IN PRP$ NN IN PRP VBD IN DT VBN NNS IN NNP , DT NN IN NNP NN , NNS IN PRP VBD TO NNP , VBG NNS IN JJ NN . The twice-serving former prime minister has said extremist elements in Pakistan 's political establishment were behind the attack , which killed 139 people . DT JJ JJ JJ NN VBZ VBN NN NNS IN NNP POS JJ NN VBD IN DT NN , WDT VBD CD NNS . Investigators have said they suspect two suicide bombers were responsible for the attack . NNS VBP VBN PRP VBP CD NN NNS VBD JJ IN DT NN . Israel says the population of its West Bank settlements has grown , even as the country withdraws from the Gaza Strip . NNP VBZ DT NN IN PRP$ NNP NNP NNS VBZ VBN , RB IN DT NN NNS IN DT NNP NNP . The Israeli Interior Ministry says 2,46,000 Jewish settlers lived in the West Bank as of June , 2005 , about 10,000 more than a year earlier . DT JJ NNP NNP VBZ CD JJ NNS VBD IN DT NNP NNP IN IN NNP , CD , IN CD JJR IN DT NN RBR . A spokesman said the increase resulted from births and an influx of new residents , but he could not give a breakdown for each figure . DT NN VBD DT NN VBD IN NNS CC DT NN IN JJ NNS , CC PRP MD RB VB DT NN IN DT NN . Palestinians claim the West Bank and east Jerusalem as part of a future Palestinian state . NNS VBP DT NNP NNP CC JJ NNP IN NN IN DT JJ JJ NN . Israel captured the territories in the 1967 Mideast war . NNP VBD DT NNS IN DT CD JJ NN . Meanwhile , an Israeli woman has died after setting herself on fire last week to protest Israel 's withdrawal from Gaza . RB , DT JJ NN VBZ VBN IN VBG PRP IN NN JJ NN TO VB NNP POS NN IN NNP . On Tuesday , Israeli troops finished evacuating all 21 Jewish settlements in Gaza and four in the West Bank under Prime Minister Ariel Sharon 's plan to ' disengage ' from the Palestinians . IN NNP , JJ NNS VBD VBG DT CD JJ NNS IN NNP CC CD IN DT NNP NNP IN NNP NNP NNP NNP POS NN TO `` VB `` IN DT NNS . United Nations officials say Secretary-General Ban Ki-moon has urged Burmese Prime Minister Thein Sein to ensure transparent and inclusive elections in the military-ruled country . NNP NNP NNS VBP JJ NNP NNP VBZ VBN JJ NNP NNP NNP NNP TO VB NN CC JJ NNS IN DT JJ NN . A U.N. spokesperson says Mr. Ban met Saturday with the Burmese premier on the sidelines of a Southeast Asia regional summit in Hanoi , Vietnam . DT NNP NN VBZ NNP NNP VBD NNP IN DT JJ NN IN DT NNS IN DT NNP NNP JJ NN IN NNP , NNP . A statement says the secretary-general also reiterated his call for the release of political prisoners and to lift restrictions on detained pro-Democracy advocate Aung San Suu Kyi . DT NN VBZ DT NN RB VBD PRP$ NN IN DT NN IN JJ NNS CC TO VB NNS IN JJ NN NN NNP NNP NNP NNP . Burmese Foreign Minister Nyan Win said earlier this week that Aung San Suu Kyi may be freed soon after the November 7 vote . JJ NNP NNP NNP NNP VBD RBR DT NN IN NNP NNP NNP NNP MD VB VBN RB IN DT NNP CD NN . The election is supposed to transition Burma from military to civilian rule . DT NN VBZ VBN TO NN NNP IN JJ TO JJ NN . It has drawn strong international criticism for imposing rules that ensure most of the seats in parliament will go to a pro-government party . PRP VBZ VBN JJ JJ NN IN VBG NNS IN VB JJS IN DT NNS IN NN MD VB TO DT JJ NN . Iran 's top nuclear official says his country will not abandon its uranium enrichment program , and that the Middle East could become even more unstable if Tehran is referred to the United Nations Security Council for its nuclear activities . NNP POS JJ JJ NN VBZ PRP$ NN MD RB VB PRP$ NN NN NN , CC IN DT NNP NNP MD VB RB RBR JJ IN NNP VBZ VBN TO DT NNP NNP NNP NNP IN PRP$ JJ NNS . Speaking at an international nuclear technology conference in Tehran Saturday , Hassan Rowhani said if Iran is brought before the Security Council , it could cause problems for the regional energy market . VBG IN DT JJ JJ NN NN IN NNP NNP , NNP NNP VBD IN NNP VBZ VBN IN DT NNP NNP , PRP MD VB NNS IN DT JJ NN NN . Iran is the second largest oil producer in OPEC . NNP VBZ DT JJ JJS NN NN IN NNP . Britain , France and Germany are in talks in with Iran , trying to negotiate a permanent end to its uranium enrichment program in exchange for a package of economic incentives . NNP , NNP CC NNP VBP IN NNS IN IN NNP , VBG TO VB DT JJ NN TO PRP$ NN NN NN IN NN IN DT NN IN JJ NNS . But Mr. Rowhani complained that talks with the Europeans are moving slowly , and he remained adamant that Iran will never abandon its enrichment activities . CC NNP NNP VBD IN NNS IN DT NNS VBP VBG RB , CC PRP VBD JJ IN NNP MD RB VB PRP$ NN NNS . A spokesman for an Iraqi court says the trial of a journalist who threw his shoes at U.S. President George Bush has been postponed . DT NN IN DT JJ NN VBZ DT NN IN DT NN WP VBD PRP$ NNS IN NNP NNP NNP NNP VBZ VBN VBN . Muntazer al-Zaidi was scheduled to go on trial Wednesday for the December 14 incident in Baghdad . NNP NNP VBD VBN TO VB IN NN NNP IN DT NNP CD NN IN NNP . He has been charged with assaulting a foreign leader , and faces up to 15 years in jail if convicted . PRP VBZ VBN VBN IN VBG DT JJ NN , CC VBZ RP TO CD NNS IN NN IN VBN . The Iraqi television journalist threw his shoes at Mr. Bush as the outgoing U.S. president stood next to Iraqi Prime Minister Nouri al-Maliki at a news conference . DT JJ NN NN VBD PRP$ NNS IN NNP NNP IN DT JJ NNP NN VBD JJ TO JJ NNP NNP NNP NNP IN DT NN NN . Mr. Bush ducked his head and narrowly missed being hit . NNP NNP VBD PRP$ NN CC RB VBD VBG VBN . Mr. Maliki 's office says Zaidi has confessed to throwing the shoes on the orders of a militant known for beheading people . NNP NNP POS NN VBZ NNP VBZ VBN TO VBG DT NNS IN DT NNS IN DT NN VBN IN VBG NNS . The militant who allegedly masterminded the incident has not been identified . DT NN WP RB VBD DT NN VBZ RB VBN VBN . The journalist 's family says he was coerced into writing the confession letter . DT NN POS NN VBZ PRP VBD VBN IN VBG DT NN NN . Iraq executed three convicted murderers Thursday - the first time the government has carried out the death penalty since Saddam Hussein was in power . NNP VBD CD VBN NNS NNP IN DT JJ NN DT NN VBZ VBN RP DT NN NN IN NNP NNP VBD IN NN . A government spokesman , Laith Kubba , told reporters that the three were hanged at 10 AM local time . DT NN NN , NNP NNP , VBD NNS IN DT CD VBD VBN IN CD NNP JJ NN . They were convicted of kidnapping , rape and murder . PRP VBD VBN IN NN , NN CC NN . The presidential council approved their death sentences last month . DT JJ NN VBD PRP$ NN NNS JJ NN . But President Jalal Talabani , who opposes the death penalty , refused to authorize the hangings , and instead empowered one of his vice presidents to sign on his behalf . CC NNP NNP NNP , WP VBZ DT NN NN , VBD TO VB DT NNS , CC RB VBD CD IN PRP$ NN NNS TO VB IN PRP$ NN . Iran 's ambassador to the United Nations has assured Secretary-General Ban Ki-moon that Iran will cooperate with the International Atomic Energy Agency ( IAEA ) on the nation 's nuclear program . NNP POS NN TO DT NNP NNP VBZ VBN JJ NNP NNP IN NNP MD VB IN DT NNP NNP NNP NNP LRB NNP RRB IN DT NN POS JJ NN . Ambassador Mohammad Khazaee made the remark at a meeting with Mr. Ban during which he personally delivered a letter from Foreign Minister Manouchehr Mottaki . NNP NNP NNP VBD DT NN IN DT NN IN NNP NNP IN WDT PRP RB VBD DT NN IN NNP NNP NNP NNP . In it , Mottaki criticizes the latest Security Council sanctions on Iran for its refusal to stop enriching uranium , a process that can be used to make nuclear weapons . IN PRP , NNP VBZ DT JJS NN NNP NNS IN NNP IN PRP$ NN TO VB VBG NN , DT NN WDT MD VB VBN TO VB JJ NNS . Iran says its nuclear technology is intended for peaceful purposes . NNP VBZ PRP$ JJ NN VBZ VBN IN JJ NNS . Iran 's President Mahmoud Ahmadinejad has said the newest U.N. resolution , which tightens existing sanctions on trade , travel and Iran 's foreign assets , is invalid and lacks legal credibility . NNP POS NNP NNP NNP VBZ VBN DT JJS NNP NN , WDT VBZ VBG NNS IN NN , NN CC NNP POS JJ NNS , VBZ JJ CC VBZ JJ NN . Strategically important , Gibraltar was reluctantly ceded to Great Britain by Spain in the 1713 Treaty of Utrecht ; the British garrison was formally declared a colony in 1830 . RB JJ , NNP VBD RB VBN TO NNP NNP IN NNP IN DT CD NNP IN NNP ; DT JJ NN VBD RB VBN DT NN IN CD . In a referendum held in 1967 , Gibraltarians voted overwhelmingly to remain a British dependency . IN DT NN VBN IN CD , NNPS VBD RB TO VB DT JJ NN . The subsequent granting of autonomy in 1969 by the UK led to Spain closing the border and severing all communication links . DT NN VBG IN NN IN CD IN DT NNP VBD TO NNP VBG DT NN CC VBG DT NN NNS . A series of talks were held by the UK and Spain between 1997 and 2002 on establishing temporary joint sovereignty over Gibraltar . DT NN IN NNS VBD VBN IN DT NNP CC NNP IN CD CC CD IN VBG JJ JJ NN IN NNP . In response to these talks , the Gibraltar Government called a referendum in late 2002 in which the majority of citizens voted overwhelmingly against any sharing of sovereignty with Spain . IN NN TO DT NNS , DT NNP NNP VBD DT NN IN JJ CD IN WDT DT NN IN NNS VBD RB IN DT NN IN NN IN NNP . Since late 2004 , tripartite talks among Spain , the UK , and Gibraltar have been held with the aim of cooperatively resolving problems that affect the local population , and work continues on cooperation agreements in areas such as taxation and financial services ; communications and maritime security ; policy , legal and customs services ; environmental protection ; and education and visa services . IN JJ CD , JJ NNS IN NNP , DT NNP , CC NNP VBP VBN VBN IN DT NN IN RB VBG NNS WDT VBP DT JJ NN , CC NN VBZ IN NN NNS IN NNS JJ IN NN CC JJ NNS ; NNS CC JJ NN ; NN , JJ CC NNS NNS ; JJ NN ; CC NN CC NN NNS . Throughout 2009 , a dispute over Gibraltar 's claim to territorial waters extending out three miles gave rise to periodic non-violent maritime confrontations between Spanish and UK naval patrols . IN CD , DT NN IN NNP POS NN TO JJ NNS VBG RP CD NNS VBD NN TO JJ JJ NN NNS IN JJ CC NNP JJ NNS . A new noncolonial constitution came into effect in 2007 , and the European Court of First Instance recognized Gibraltar 's right to regulate its own tax regime in December 2008 , but the UK retains responsibility for defense , foreign relations , internal security , and financial stability . DT JJ JJ NN VBD IN NN IN CD , CC DT NNP NNP IN NNP NNP VBD NNP POS NN TO VB PRP$ JJ NN NN IN NNP CD , CC DT NNP VBZ NN IN NN , JJ NNS , JJ NN , CC JJ NN . Chad , part of France 's African holdings until 1960 , endured three decades of civil warfare as well as invasions by Libya before a semblance of peace was finally restored in 1990 . NNP , NN IN NNP POS JJ NNS IN CD , VBD CD NNS IN JJ NN RB RB IN NNS IN NNP IN DT NN IN NN VBD RB VBN IN CD . The government eventually drafted a democratic constitution and held flawed presidential elections in 1996 and 2001 . DT NN RB VBD DT JJ NN CC VBD JJ JJ NNS IN CD CC CD . In 1998 , a rebellion broke out in northern Chad , which has sporadically flared up despite several peace agreements between the government and the rebels . IN CD , DT NN VBD RP IN JJ NNP , WDT VBZ RB VBN RP IN JJ NN NNS IN DT NN CC DT NNS . In 2005 , new rebel groups emerged in western Sudan and made probing attacks into eastern Chad despite signing peace agreements in December 2006 and October 2007 . IN CD , JJ NN NNS VBD IN JJ NNP CC VBD VBG NNS IN JJ NNP IN VBG NN NNS IN NNP CD CC NNP CD . Power remains in the hands of an ethnic minority . NN VBZ IN DT NNS IN DT JJ NN . In June 2005 , President Idriss DEBY held a referendum successfully removing constitutional term limits and won another controversial election in 2006 . IN NNP CD , NNP NNP NNP VBD DT NN RB VBG JJ NN NNS CC VBD DT JJ NN IN CD . Sporadic rebel campaigns continued throughout 2006 and 2007 . JJ NN NNS VBD IN CD CC CD . The capital experienced a significant rebel threat in early 2008 . DT NN VBD DT JJ NN NN IN JJ CD . Ahmad Shah DURRANI unified the Pashtun tribes and founded Afghanistan in 1747 . NNP NNP NNP VBD DT NNP NNS CC VBD NNP IN CD . The country served as a buffer between the British and Russian Empires until it won independence from notional British control in 1919 . DT NN VBD IN DT NN IN DT JJ CC JJ NNS IN PRP VBD NN IN JJ JJ NN IN CD . A brief experiment in democracy ended in a 1973 coup and a 1978 Communist counter-coup . DT JJ NN IN NN VBN IN DT CD NN CC DT CD JJ NN . The Soviet Union invaded in 1979 to support the tottering Afghan Communist regime , touching off a long and destructive war . DT NNP NNP VBD IN CD TO VB DT VBG JJ JJ NN , VBG RP DT JJ CC JJ NN . The USSR withdrew in 1989 under relentless pressure by internationally supported anti-Communist mujahedin rebels . DT NNP VBD IN CD IN JJ NN IN RB VBN JJ NN NNS . A series of subsequent civil wars saw Kabul finally fall in 1996 to the Taliban , a hardline Pakistani-sponsored movement that emerged in 1994 to end the country 's civil war and anarchy . DT NN IN JJ JJ NNS VBD NNP RB VB IN CD TO DT NNP , DT JJ JJ NN WDT VBD IN CD TO VB DT NN POS JJ NN CC NN . Following the 11 September 2001 terrorist attacks in New York City and Washington , D.C. , a US , Allied , and anti-Taliban Northern Alliance military action toppled the Taliban for sheltering Osama BIN LADIN . VBG DT CD NNP CD JJ NNS IN NNP NNP NNP CC NNP , NNP , DT NNP , NNP , CC JJ NNP NNP JJ NN VBD DT NNP IN VBG NNP NNP NNP . The UN-sponsored Bonn Conference in 2001 established a process for political reconstruction that included the adoption of a new constitution , a presidential election in 2004 , and National Assembly elections in 2005 . DT JJ NNP NNP IN CD VBD DT NN IN JJ NN WDT VBD DT NN IN DT JJ NN , DT JJ NN IN CD , CC NNP NNP NNS IN CD . In December 2004 , Hamid KARZAI became the first democratically elected president of Afghanistan and the National Assembly was inaugurated the following December . IN NNP CD , NNP NNP VBD DT JJ RB VBN NN IN NNP CC DT NNP NNP VBD VBN DT VBG NNP . KARZAI was re-elected in August 2009 for a second term . NNP VBD VBN IN NNP CD IN DT JJ NN . Despite gains toward building a stable central government , a resurgent Taliban and continuing provincial instability - particularly in the south and the east - remain serious challenges for the Afghan Government . IN NNS IN VBG DT JJ JJ NN , DT JJ NNP CC VBG JJ NN : RB IN DT NN CC DT JJ : VBP JJ NNS IN DT JJ NN . The Pacific coast of Nicaragua was settled as a Spanish colony from Panama in the early 16th century . DT NNP NN IN NNP VBD VBN IN DT JJ NN IN NNP IN DT JJ JJ NN . Independence from Spain was declared in 1821 and the country became an independent republic in 1838 . NN IN NNP VBD VBN IN CD CC DT NN VBD DT JJ NN IN CD . Britain occupied the Caribbean Coast in the first half of the 19th century , but gradually ceded control of the region in subsequent decades . NNP VBD DT NNP NNP IN DT JJ NN IN DT JJ NN , CC RB JJ NN IN DT NN IN JJ NNS . Violent opposition to governmental manipulation and corruption spread to all classes by 1978 and resulted in a short-lived civil war that brought the Marxist Sandinista guerrillas to power in 1979 . NNP NN TO JJ NN CC NN VBD TO DT NNS IN CD CC VBD IN DT JJ JJ NN WDT VBD DT JJ NNP NNS TO NN IN CD . Nicaraguan aid to leftist rebels in El Salvador caused the US to sponsor anti-Sandinista contra guerrillas through much of the 1980s . JJ NN TO JJ NNS IN NNP NNP VBD DT NNP TO VB JJ NN NNS IN NN IN DT NNS . After losing free and fair elections in 1990 , 1996 , and 2001 , former Sandinista President Daniel ORTEGA Saavedra was elected president in 2006 . IN VBG JJ CC JJ NNS IN CD , CD , CC CD , JJ NNP NNP NNP NNP NNP VBD VBN NN IN CD . The 2008 municipal elections were marred by widespread irregularities . DT CD JJ NNS VBD VBN IN JJ NNS . Nicaragua 's infrastructure and economy - hard hit by the earlier civil war and by Hurricane Mitch in 1998 - are slowly being rebuilt , but democratic institutions have been weakened under the ORTEGA administration . NNP POS NN CC NN : RB VBN IN DT JJR JJ NN CC IN NNP NNP IN CD : VBP RB VBG VBN , CC JJ NNS VBP VBN VBN IN DT NNP NN . With a well-developed infrastructure , a free-enterprise economy , generally pro-investment policies , and strong export industries , Thailand enjoyed solid growth from 2000 to 2007 - averaging more than 4 % per year - as it recovered from the Asian financial crisis of 1997 - 98 . IN DT JJ NN , DT JJ NN , RB JJ NNS , CC JJ NN NNS , NNP VBD JJ NN IN CD TO CD : VBG JJR IN CD NN IN NN : IN PRP VBD IN DT JJ JJ NN IN CD IN CD . Thai exports - mostly machinery and electronic components , agricultural commodities , and jewelry - continue to drive the economy , accounting for more than half of GDP . JJ NNS : RB NN CC JJ NNS , JJ NNS , CC NN : VBP TO VB DT NN , VBG IN JJR IN NN IN NN . The global financial crisis of 2008 - 9 severely cut Thailand 's exports , with most sectors experiencing double-digit drops . DT JJ JJ NN IN CD : CD RB VBN NNP POS NNS , IN JJS NNS VBG JJ NNS . In 2009 , the economy contracted 2.2 % . IN CD , DT NN VBD CD NN . In 2010 , Thailand 's economy expanded 7.6 % , its fastest pace since 1995 , as exports rebounded from their depressed 2009 level . IN CD , NNP POS NN VBD CD NN , PRP$ JJS NN IN CD , IN NNS VBD IN PRP$ JJ CD NN . Antigovernment protests during March-May and the country 's polarized political situation had - at most - a temporary impact on business and consumer confidence . JJ NNS IN JJ CC DT NN POS JJ JJ NN VBD : IN JJS IN DT JJ NN IN NN CC NN NN . Although tourism was hit hard during the protests , its quick recovery helped boost consumer confidence to new highs . IN NN VBD VBN RB IN DT NNS , PRP$ JJ NN VBD VB NN NN TO JJ NNS . Moreover , business and investor sentiment remained buoyant as Thailand 's stock market grew almost 5 % during the three-month period . RB , NN CC NN NN VBD JJ IN NNP POS NN NN VBD RB CD NN IN DT JJ NN . The economy probably will continue to experience high grow well into 2011 . DT NN RB MD VB TO VB JJ VB RB IN CD . A FARMER , who bore a grudge against a Fox for robbing his poultry yard , caught him at last , and being determined to take an ample revenge , tied some rope well soaked in oil to his tail , and set it on fire . DT NN , WP VBD DT NN IN DT NN IN VBG PRP$ NN NN , VBD PRP IN JJ , CC VBG VBN TO VB DT JJ NN , VBD DT NN RB VBD IN NN TO PRP$ NN , CC VBD PRP IN NN . The Fox by a strange fatality rushed to the fields of the Farmer who had captured him . DT NN IN DT JJ NN VBD TO DT NNS IN DT NN WP VBD VBN PRP . It was the time of the wheat harvest ; but the Farmer reaped nothing that year and returned home grieving sorely . PRP VBD DT NN IN DT NN NN ; CC DT NN VBD DT DT NN CC VBD NN VBG RB . A LION and a Bear seized a Kid at the same moment , and fought fiercely for its possession . DT NN CC DT NN VBD DT NN IN DT JJ NN , CC VBD RB IN PRP$ NN . When they had fearfully lacerated each other and were faint from the long combat , they lay down exhausted with fatigue . WRB PRP VBD RB VBN DT NN CC VBD NN IN DT JJ NN , PRP VBD RB VBN IN NN . A Fox , who had gone round them at a distance several times , saw them both stretched on the ground with the Kid lying untouched in the middle . DT NN , WP VBD VBN JJ PRP IN DT NN JJ NNS , VBD PRP DT VBN IN DT NN IN DT NN VBG JJ IN DT NN . He ran in between them , and seizing the Kid scampered off as fast as he could . PRP VBD IN IN PRP , CC VBG DT NNP VBD RP RB RB IN PRP MD . The Lion and the Bear saw him , but not being able to get up , said , ' Woe be to us , that we should have fought and belabored ourselves only to serve the turn of a Fox . ' DT NN CC DT NN VBD PRP , CC RB VBG JJ TO VB RP , VBD , `` NN VB TO PRP , IN PRP MD VB VBN CC VBN PRP RB TO VB DT NN IN DT NN . `` It sometimes happens that one man has all the toil , and another all the profit . PRP RB VBZ IN CD NN VBZ PDT DT NN , CC DT PDT DT NN . A CARTER was driving a waggon loaded with a merchant 's goods , when the wheels stuck in a rut . DT NN VBD VBG DT NN VBN IN DT NN POS NNS , WRB DT NNS VBN IN DT NN . Thereupon he began to pray to Hercules , without other exertion . IN PRP VBD TO VB TO NNP , IN JJ NN . ' Indolent fellow ! ' said Hercules ; ' you ask me to help you , but will not help yourself . ' `` JJ NN . `` VBD NNP ; `` PRP VB PRP TO VB PRP , CC MD RB VB PRP . `` So the Carter helped himself to so many of the most valuable goods that the horses easily ran away with the remainder . IN DT NN VBD PRP TO RB NN IN DT RBS JJ NNS IN DT NNS RB VBD RB IN DT NN . These two tuba players walk past a bar ... DT CD NN NNS VBP IN DT NN : Well , it could happen ! RB , PRP MD VB . King Juan Carlos hired a public relations firmn to find out how the Spanish people felt about him . NNP NNP NNP VBD DT JJ NNS VBP TO VB RP WRB DT JJ NNS VBD IN PRP . They informed him that he had 75 % approval in the mountainous areas but only 50 % approval elsewhere The conclusion was that the reign in Spain was shaky on the plain . PRP VBD PRP IN PRP VBD CD NN NN IN DT JJ NNS CC RB CD NN NN RB DT NN VBD IN DT NN IN NNP VBD JJ IN DT NN . The U.S. military in Afghanistan says five American and one Afghan soldiers were injured in two incidents when their helicopters were forced to make emergency landings after being hit by ground fire . DT NNP NN IN NNP VBZ CD NNP CC CD JJ NNS VBD VBN IN CD NNS WRB PRP$ NNS VBD VBN TO VB NN NNS IN VBG VBN IN NN NN . The military says the attacks on the ( CH-47 ) Chinook helicopters occurred Sunday in the southern provinces of Kandahar and Uruzgan - both hotbeds of Taleban insurgents and their allies . DT JJ VBZ DT NNS IN DT LRB NNP RRB NNP NNS VBD NNP IN DT JJ NNS IN NNP CC NNP : DT NNS IN NNP NNS CC PRP$ NNS . In a separate attack Sunday , three American soldiers were wounded in a roadside bomb blast in Zabul - also in southern Afghanistan . IN DT JJ NN NNP , CD JJ NNS VBD VBN IN DT NN NN NN IN NNP : RB IN JJ NNP . The military says the wounded soldiers are in stable condition . DT JJ VBZ DT JJ NNS VBP IN JJ NN . In another incident , a suicide attacker killed a civilian when he blew himself up near a coalition troop convoy in Kandahar . IN DT NN , DT NN NN VBD DT JJ WRB PRP VBD PRP RP IN DT NN NN NN IN NNP . Almost 3,000 workers at an electronics plant in northern China were off the job for a third day Thursday because of a strike demanding better pay and working conditions . RB CD NNS IN DT NN NN IN JJ NNP VBD IN DT NN IN DT JJ NN NNP IN IN DT NN VBG JJR NN CC VBG NNS . The stoppage at the Japanese-owned Tianjin Mitsumi Electric Company is the latest in a growing number of strikes by Chinese workers demanding salaries in line with those paid in other countries . DT NN IN DT JJ NNP NNP NNP NN VBZ DT JJS IN DT VBG NN IN NNS IN JJ NNS VBG NNS IN NN IN DT VBN IN JJ NNS . Most have been aimed at foreign-owned companies . JJS VBP VBN VBN IN JJ NNS . The Associated Press reports security forces were posted around the factory , but have not taken action against about 100 workers gathered outside the factory . DT NNP NNP VBZ NN NNS VBD VBN IN DT NN , CC VBP RB VBN NN IN IN CD NNS VBN IN DT NN . However foreign reporters were detained and removed from the area . RB JJ NNS VBD VBN CC VBN IN DT NN . A worker at the plant told China 's state-run Xinhua news agency he works six days a week with two hours of overtime every day to earn $ 220 a month . DT NN IN DT NN VBD NNP POS JJ NNP NN NN PRP VBZ CD NNS DT NN IN CD NNS IN NN DT NN TO VB $ CD DT NN . Afghans continued protests Saturday against a U.S. pastor 's threat to burn copies of the Quran . NNS VBD NNS NNP IN DT NNP NN POS NN TO VB NNS IN DT NNP . The Associated Press reports protesters have set shops and police checkpoints on fire in eastern Logar province 's capital , Puli Alam . DT NNP NNP NNS NNS VBP VBN NNS CC NNS NNS IN NN IN JJ NNP NN POS NN , NNP NNP . And Reuters news agency says several thousand people gathered in three district in northeastern Badakhshan province . CC NNP NN NN VBZ JJ CD NNS VBN IN CD NN IN JJ NNP NN . On Friday , thousands of Afghans across the country demonstrated their outrage at the preacher 's insistence on burning Islam 's holy book . IN NNP , NNS IN NNS IN DT NN VBD PRP$ NN IN DT NN POS NN IN NN NNP POS JJ NN . At least eight people were wounded in the protests . IN JJS CD NNS VBD VBN IN DT NNS . The preacher has since called off Saturday 's planned burning . DT NN VBZ IN VBN RP NNP POS JJ NN . The obscure Florida pastor , Reverend Terry Jones , arrived in New York late Friday . DT JJ NNP NN , NNP NNP NNP , VBD IN NNP NNP JJ NNP . His plans have created an international firestorm and prompted leading political and religious figures to issue statements condemning the plans . PRP$ NNS VBP VBN DT JJ NN CC VBD VBG JJ CC JJ NNS TO VB NNS VBG DT NNS . Top U.S. officials had warned the pastor that the Quran burning could provoke Islamist violence and put U.S. soldiers ' lives in danger . JJ NNP NNS VBD VBN DT NN IN DT JJ NN MD VB JJ NN CC VB NNP NNS POS NNS IN NN . The U.S. monthly trade deficit rose to an all-time high in November as oil imports soared . DT NNP JJ NN NN VBD TO DT JJ NN IN NNP IN NN NNS VBD . The gap between what Americans bought abroad and the goods and services they sold to foreign nations widened to a record $ 68.9 billion . DT NN IN WP NNS VBD RB CC DT NNS CC NNS PRP VBD TO JJ NNS VBD TO DT NN $ CD CD . The surge surprised economists who expected declining oil prices to ease the trade deficit . DT NN VBD NNS WP VBD VBG NN NNS TO VB DT NN NN . Wednesday 's report from the U.S. Commerce Department says trade deficits with OPEC , China , Canada , the European Union , and Mexico were at record levels . NNP POS NN IN DT NNP NNP NNP VBZ NN NNS IN NNP , NNP , NNP , DT NNP NNP , CC NNP VBD IN NN NNS . Some analysts say November 's huge trade deficit puts the United States on track to exceed last year 's record annual trade deficit of nearly $ 618 billion . DT NNS VBP NNP POS JJ NN NN VBZ DT NNP NNPS IN NN TO VB JJ NN POS NN JJ NN NN IN RB $ CD CD . France , Germany and Britain have warned Iran it will answer to the United Nations Security Council if it resumes uranium enrichment activities that the United States says could produce fuel for nuclear bombs . NNP , NNP CC NNP VBP VBN NNP PRP MD VB TO DT NNP NNP NNP NNP IN PRP VBZ NN NN NNS IN DT NNP NNP VBZ MD VB NN IN JJ NNS . In a letter , foreign ministers from the three countries told top Iranian negotiator Hassan Rowhani that they will break off months of bilateral talks aimed at ending disputes over the nature of Iran 's nuclear ambitions . IN DT NN , JJ NNS IN DT CD NNS VBD JJ JJ NN NNP NNP IN PRP MD VB RP NNS IN JJ NNS VBN IN VBG NNS IN DT NN IN NNP POS JJ NNS . The matter would then be referred to the Security Council for possible sanctions . DT NN MD RB VB VBN TO DT NNP NNP IN JJ NNS . In Tehran , Mr. Rowhani is quoted as saying Iran will no longer respect the Nuclear Non-Proliferation Treaty if it is denied the right to develop a full civilian nuclear energy program . IN NNP , NNP NNP VBZ VBN IN VBG NNP MD RB RB VB DT NNP NNP NNP IN PRP VBZ VBN DT NN TO VB DT JJ JJ JJ NN NN . The United States accuses Iran of clandestine efforts to develop nuclear weapons . DT NNP NNPS VBZ NNP IN JJ NNS TO VB JJ NNS . Tehran has repeatedly denied the charge . NNP VBZ RB VBN DT NN . Ukraine 's parliament has set the inauguration of President-elect Viktor Yushchenko for Sunday . NNP POS NN VBZ VBN DT NN IN JJ NNP NNP IN NNP . Thursday 's decision came hours after the Supreme Court threw out the final legal appeal by former Prime Minister Viktor Yanukovych , who alleged that last month 's election was fraudulent . NNP POS NN VBD NNS IN DT NNP NNP VBD RP DT JJ JJ NN IN JJ NNP NNP NNP NNP , WP VBD IN JJ NN POS NN VBD JJ . Chief Justice Anatoly Varema calls the court 's decision final . NNP NNP NNP NNP VBZ DT NN POS NN JJ . Mr. Yanukovych has finally conceded defeat , telling Ukrainian television Thursday that the election campaign is over . NNP NNP VBZ RB VBN NN , VBG JJ NN NNP IN DT NN NN VBZ IN . He called on supporters to end their protests and begin what he calls a new political struggle . PRP VBD IN NNS TO VB PRP$ NNS CC VB WP PRP VBZ DT JJ JJ NN . But his legal team plans to appeal the election to the European Court of Human Rights . CC PRP$ JJ NN VBZ TO VB DT NN TO DT NNP NNP IN NNP NNP . Meanwhile , Russian President Vladimir Putin , who backed Mr. Yanukovych , congratulated Mr. Yushchenko . RB , JJ NNP NNP NNP , WP VBD NNP NNP , VBD NNP NNP . U.S. Secretary of State Colin Powell will travel to Kiev for Sunday 's inauguration . NNP NNP IN NNP NNP NNP MD VB TO NNP IN NNP POS NN . NATO is sending Secretary General Jaap de Hoop Scheffer . NNP VBZ VBG NNP NNP NNP IN NNP NNP . Britney Spears is officially divorced - but at a stiff price . NNP NNP VBZ RB JJ : CC IN DT JJ NN . The Star Magazine reports the singer 's divorce from Kevin Federline will cost her $ 13 million , including $ 25,000 a month in child support for each of the couple 's two sons until they reach 18 . DT NNP NNP VBZ DT NN POS NN IN NNP NNP MD VB PRP $ CD CD , VBG $ CD DT NN IN NN NN IN DT IN DT NN POS CD NNS IN PRP VBP CD . He also gets custody of the boys four days a week . PRP RB VBZ NN IN DT NNS CD NNS DT NN . Kevin Federline gets to keep all the gifts Britney Spears bought him during their two-year marriage - but is forbidden from writing a tell-all book about their union . NNP NNP VBZ TO VB PDT DT NNS NNP NNP VBD PRP IN PRP$ JJ NN : CC VBZ VBN IN VBG DT JJ NN IN PRP$ NN . He reportedly encouraged Britney to remain in a treatment center by telling her they would reconcile after she got out . PRP RB VBD NNP TO VB IN DT NN NN IN VBG PRP PRP MD VB IN PRP VBD RP . The U.S. Gulf Coast is bracing for Hurricane Katrina as it strengthens after pummeling southeastern Florida with strong winds and sheets of rain . DT NNP NNP NNP VBZ VBG IN NNP NNP IN PRP VBZ IN VBG JJ NNP IN JJ NNS CC NNS IN NN . At least seven people have been killed in the storm , which came ashore Thursday , dumping several centimeters of rain in its path and triggering widespread flooding . IN JJS CD NNS VBP VBN VBN IN DT NN , WDT VBD RB NNP , VBG JJ NNS IN NN IN PRP$ NN CC VBG JJ NN . Hundreds of thousands of homes and businesses lost power and an overpass under construction in the Miami area collapsed onto a main east-west highway . NNS IN NNS IN NNS CC NNS VBD NN CC DT NN IN NN IN DT NNP NN VBD IN DT JJ JJ NN . Katrina was briefly downgraded to a tropical storm as it crossed land , but it has turned into a stronger hurricane while moving over the warm Gulf waters . NNP VBD RB VBN TO DT JJ NN IN PRP VBD NN , CC PRP VBZ VBN IN DT JJR NN IN VBG IN DT JJ NNP NNS . At last report , the 11th named storm of this year 's Atlantic hurricane season was 97 kilometers west-northwest of Key West . IN JJ NN , DT JJ VBN NN IN DT NN POS NNP NN NN VBD CD NNS NN IN NNP NNP . Katrina was moving slowly in a west-northwesterly direction at 13 kilometers per hour . NNP VBD VBG RB IN DT JJ NN IN CD NNS IN NN . A court hearing began in South Africa Friday , pitting an influential AIDS lobby group against a doctor who claims his vitamin therapies are more effective against AIDS than anti-retroviral drugs . DT NN NN VBD IN NNP NNP NNP , VBG DT JJ NNP NN NN IN DT NN WP VBZ PRP$ NN NNS VBP RBR JJ IN NNP IN JJ NNS . Treatment Action Campaign , or TAC , is asking the Cape Town court to order Dr. Matthias Rath to stop making defamatory comments about the lobby group . NNP NNP NNP , CC NNP , VBZ VBG DT NNP NNP NN TO VB NNP NNP NNP TO VB VBG JJ NNS IN DT NN NN . The German-born doctor calls TAC a front for drug companies . DT JJ NN VBZ NNP DT NN IN NN NNS . He also claims AIDS drugs are toxic , saying the deadly disease can be treated successfully with nutrients . PRP RB VBZ NNP NNS VBP JJ , VBG DT JJ NN MD VB VBN RB IN NNS . The World Health Organization has condemned Dr. Rath , saying his claims are unhelpful and dangerous . DT NNP NNP NNP VBZ VBN NNP NNP , VBG PRP$ NNS VBP JJ CC JJ . TAC successfully pressured the South African government to roll out a comprehensive program - including free drugs - to treat AIDS patients . NNP RB VBD DT JJ JJ NN TO VB RP DT JJ NN : VBG JJ NNS : TO VB NNP NNS . Pakistani authorities have released an alleged al-Qaida militant accused of involvement in a bomb attack against former Prime Minister Benazir Bhutto last year . JJ NNS VBP VBN DT JJ NNP NN VBN IN NN IN DT NN NN IN JJ NNP NNP NNP NNP JJ NN . A court in the city of Karachi ordered prison officials to release Qari Saifullah Akhtar Wednesday for lack of evidence . DT NN IN DT NN IN NNP VBD NN NNS TO VB NNP NNP NNP NNP IN NN IN NN . But , the court also ruled that Akhtar must make himself available for further questioning if sufficient evidence is found . CC , DT NN RB VBD IN NNP MD VB PRP JJ IN JJ VBG IN JJ NN VBZ VBN . Ms. Bhutto accused Akhtar of plotting the double suicide bombing of her homecoming parade in Karachi last October that killed about 140 people . NNP NNP VBD NNP IN VBG DT JJ NN NN IN PRP$ NN NN IN NNP JJ NNP WDT VBD IN CD NNS . She made the accusation in a book written before her assassination in a December gun and bomb attack in Rawalpindi . PRP VBD DT NN IN DT NN VBN IN PRP$ NN IN DT NNP NN CC NN NN IN NNP . Pakistani authorities had detained Akhtar last month . JJ NNS VBD VBN NNP JJ NN . They also accuse him of attending al-Qaida training camps in Afghanistan before the fall of the Taliban in 2001 . PRP RB VBP PRP IN VBG NNP NN NNS IN NNP IN DT NN IN DT NNP IN CD . ome information for this report was provided by AFP . JJ NN IN DT NN VBD VBN IN NNP . Suspected Taleban rebels have ambushed a convoy carrying the governor of Afghanistan 's Ghazni province . VBN NNP NNS VBP VBN DT NN VBG DT NN IN NNP POS NNP NN . Governor Sher Alam was not harmed in the attack Saturday , but the resulting shootout left at least two attackers dead . NNP NNP NNP VBD RB VBN IN DT NN NNP , CC DT VBG NN VBD IN JJS CD NNS JJ . In a separate incident Saturday , Taleban fighters are also being blamed for killing the former governor of Ghazni province , Taj Mohammed Qari Baba . IN DT JJ NN NNP , NNP NNS VBP RB VBG VBN IN VBG DT JJ NN IN NNP NN , NNP NNP NNP NNP . Three others , including Baba 's bodyguard , were killed in the attack . CD NNS , VBG NNP POS NN , VBD VBN IN DT NN . Meanwhile , officials say a roadside bomb attack has killed at least nine police officers . RB , NNS VBP DT NN NN NN VBZ VBN IN JJS CD NN NNS . Authorities say the blast occurred Friday as police were transporting the bodies of four citizens of Macedonia kidnapped in the region a week ago by suspected Taleban rebels . NNS VBP DT NN VBD NNP IN NNS VBD VBG DT NNS IN CD NNS IN NNP VBN IN DT NN DT NN RB IN JJ NNP NNS . The four Macedonians , along with four Afghans who were abducted and later released , worked for a company that provided sanitation services at U.S. and Afghan military bases . DT CD NNS , IN IN CD NNS WP VBD VBN CC RB VBN , VBD IN DT NN WDT VBD NN NNS IN NNP CC JJ JJ NNS . Economic reports paint a mixed picture of the U.S. economy , with manufacturing rising and construction dropping . JJ NNS VBP DT JJ NN IN DT NNP NN , IN NN VBG CC NN VBG . Monday 's report from the Institute for Supply Management says an index of manufacturing rose 2.3 percentage points in December . NNP POS NN IN DT NNP IN NNP NNP VBZ DT NN IN NN VBD CD NN NNS IN NNP . Factories are apparently boosting production to meet growing demand from government stimulus programs . NNS VBP RB VBG NN TO VB VBG NN IN NN NN NNS . Demand is also helped by businesses that are rebuilding inventories that were drastically cut during the worst of the economic crisis . NN VBZ RB VBN IN NNS WDT VBP VBG NNS WDT VBD RB VBN IN DT JJS IN DT JJ NN . A separate government report shows a very different trend . DT JJ NN NN VBZ DT RB JJ NN . The latest figures from the U.S. Commerce Department show construction falling to the lowest level in six years . DT JJS NNS IN DT NNP NNP NNP VBP NN VBG TO DT JJS NN IN CD NNS . November 's data show a 0.6 percent decline for the month , which is the seventh drop in as many months . NNP POS NNS VBP DT CD NN NN IN DT NN , WDT VBZ DT JJ NN IN IN JJ NNS . India 's cricket team has scored 216-3 in response to Australia 's first innings total of 463 on the second day of the second test at the Sydney Cricket Ground . NNP POS NN NN VBZ VBN JJ IN NN TO NNP POS JJ NN NN IN CD IN DT JJ NN IN DT JJ NN IN DT NNP NNP NNP . V.V.S. Laxman and Rahul Dravid led the Indian counterattack with Laxman scoring his 18th test century with 109 runs . NNP NNP CC NNP NNP VBD DT JJ NN IN NNP VBG PRP$ JJ NN NN IN CD NNS . Dravid added 53 for India , which lost the first test in Melbourne by 337 runs . NNP VBD CD IN NNP , WDT VBD DT JJ NN IN NNP IN CD NNS . Australian Bowlers Mitchell Johnson and Brad Hogg took one wicket each for Australia . JJ NNS NNP NNP CC NNP NNP VBD CD NN DT IN NNP . Earlier , Andrew Symonds scored 162 not out for the Aussies and revived the home side 's hopes of winning its 16th test match in a row . RB , NNP NNPS VBD CD RB RP IN DT NNS CC VBD DT NN NN POS NNS IN VBG PRP$ JJ NN NN IN DT NN . The third test of the four-match series starts in Perth January 16th . DT JJ NN IN DT JJ NN VBZ IN NNP NNP CD . The two sides will also play in a triangular series that features Sri Lanka beginning February third in Brisbane . DT CD NNS MD RB VB IN DT JJ NN WDT VBZ NNP NNP VBG NNP JJ IN NNP . Yukos , the huge Russian oil company , says Russian authorities have again raided its Moscow offices . NNP , DT JJ JJ NN NN , VBZ JJ NNS VBP RB VBN PRP$ NNP NNS . A company spokeswoman tells VOA , officials Thursday searched an area where financial documents are stored . DT NN NN VBZ NNP , NNS NNP VBD DT NN WRB JJ NNS VBP VBN . The action comes as lawyers for Yukos are asking a U.S. court in Houston , Texas for an order blocking the planned auction of a major part of the company on Sunday . DT NN VBZ IN NNS IN NNP VBP VBG DT NNP NN IN NNP , NNP IN DT NN VBG DT JJ NN IN DT JJ NN IN DT NN IN NNP . The company says it would be seriously hurt by the forced sale of its main oil-producing subsidiary , Yuganskeneftegaz . DT NN VBZ PRP MD VB RB VBN IN DT JJ NN IN PRP$ JJ NN NN , NNP . Russian officials ordered the auction to raise money to pay billions of dollars in back taxes . JJ NNS VBD DT NN TO VB NN TO VB NNS IN NNS IN JJ NNS . Critics of Russia 's government say the tax dispute is retaliation for financial support the company 's chairman Mikhail Khodorkovsky gave to political opponents of Russian President Vladimir Putin . NNS IN NNP POS NN VBP DT NN NN VBZ NN IN JJ NN DT NN POS NN NNP NNP VBD TO JJ NNS IN JJ NNP NNP NNP . The Iranian government says it has the right to decide which international inspectors will be allowed to monitor its nuclear facilities . DT JJ NN VBZ PRP VBZ DT NN TO VB WDT JJ NNS MD VB VBN TO VB PRP$ JJ NNS . A spokesman for Iran 's Foreign Ministry said Tehran could reject the inspectors on the basis of their previous activities . DT NN IN NNP POS NNP NNP VBD NNP MD VB DT NNS IN DT NN IN PRP$ JJ NNS . The official , Ramin Mahmanparast , was echoing comments by the nation 's nuclear chief Ali Akbar Salehi , who noted Iran had accepted alternate inspectors provided by the International Atomic Energy Agency . DT NN , NNP NNP , VBD VBG NNS IN DT NN POS JJ NN NNP NNP NNP , WP VBD NNP VBD VBN JJ NNS VBN IN DT NNP NNP NNP NNP . Salehi was quoted as saying that two inspectors rejected by Iran had filed FALSE reports on Iran 's nuclear program . NNP VBD VBN IN VBG IN CD NNS VBN IN NNP VBD VBN JJ NNS IN NNP POS JJ NN . A report released Monday by the IAEA said Iran 's objections to certain inspectors are complicating efforts to investigate its nuclear program . DT NN VBN NNP IN DT NNP VBD NNP POS NNS TO JJ NNS VBP VBG NNS TO VB PRP$ JJ NN . The program is at the core of an international dispute over whether the activities have a military component . DT NN VBZ IN DT NN IN DT JJ NN IN IN DT NNS VBP DT JJ NN . An uneasy calm has settled over Nigeria , where more than 120 people have been killed in Muslim-Christian violence since Saturday . DT JJ NN VBZ VBN IN NNP , WRB JJR IN CD NNS VBP VBN VBN IN JJ NN IN NNP . Christian youths burned the corpses of Muslims Thursday in Onitsha , the site of riots on Tuesday and Wednesday . NNP NNS VBD DT NNS IN NNPS NNP IN NNP , DT NN IN NNS IN NNP CC NNP . Christian mobs in the city killed at least 80 people , mostly Muslims , in reprisal for rioting against Christians in Nigeria 's largely Muslim north . NNP NNS IN DT NN VBD IN JJS CD NNS , RB NNPS , IN NN IN VBG IN NNS IN NNP POS RB JJ NN . More than 40 people , mainly Christians , died in riots on Saturday and Sunday . JJR IN CD NNS , RB NNPS , VBD IN NNS IN NNP CC NNP . Nigerian police have stepped up security across the country before Friday Muslim prayers , hoping to prevent further violence . JJ NNS VBP VBN RP NN IN DT NN IN NNP NNP NNS , VBG TO VB JJ NN . The sectarian riots began last Saturday in the northern city of Maiduguri during Muslim protests against Danish cartoons of the Prophet Muhammad . DT JJ NNS VBD JJ NNP IN DT JJ NN IN NNP IN NNP NNS IN JJ NNS IN DT NNP NNP . Sudan 's Foreign Ministry says six Sudanese , including a diplomat , have been kidnapped in Iraq . NNP POS NNP NNP VBZ CD NNS , VBG DT NN , VBP VBN VBN IN NNP . The ministry says the victims were seized in Baghdad after attending prayers Friday . DT NN VBZ DT NNS VBD VBN IN NNP IN VBG NNS NNP . The abducted diplomat was identified as the second secretary at Sudan 's mission in Baghdad . DT JJ NN VBD VBN IN DT JJ NN IN NNP POS NN IN NNP . Meanwhile , thousands of Sunni Arabs demonstrated in Baghdad , Tikrit and Mosul to protest what they said were flawed December 15 parliamentary elections . RB , NNS IN NNP NNS VBD IN NNP , NNP CC NNP TO VB WP PRP VBD VBD VBN NNP CD JJ NNS . Preliminary results show a strong lead for the main Shi'ite coalition . JJ NNS VBP DT JJ NN IN DT JJ NNP NN . Elsewhere , insurgents ambushed an Iraqi checkpoint in Adhaim , about 70 kilometers north of Baghdad , killing eight Iraqi soldiers and wounding 17 . RB , NNS VBD DT JJ NN IN NNP , IN CD NNS RB IN NNP , VBG CD JJ NNS CC VBG CD . A suicide bomber also killed at least three people at a Shi'ite mosque in Balad Ruz , about 75 kilometers northeast of Baghdad . DT NN NN RB VBD IN JJS CD NNS IN DT NNP NN IN NNP NNP , IN CD NNS RB IN NNP . The U.S. military also says two U.S. soldiers were killed Friday when their vehicle struck a roadside bomb in Baghdad . DT NNP NN RB VBZ CD NNP NNS VBD VBN NNP WRB PRP$ NN VBD DT NN NN IN NNP . Iraqi authorities say gunmen have killed the chief of police in a town northeast of Baghdad . JJ NNS VBP NNS VBP VBN DT NN IN NN IN DT NN NN IN NNP . Police say Colonel Hatem Rashid Mohammad was killed Friday , along with an aide during an ambush in Balad Ruz , 50 kilometers northeast of the capital . NNS VBP NNP NNP NNP NNP VBD VBN NNP , IN IN DT NN IN DT NN IN NNP NNP , CD NNS RB IN DT NN . Insurgents have been increasingly attacking Iraqi policemen and soldiers , who have taken a larger role in trying to stabilize the country in recent months . NNS VBP VBN RB VBG JJ NNS CC NNS , WP VBP VBN DT JJR NN IN VBG TO VB DT NN IN JJ NNS . Thursday , U.S. Deputy Assistant Secretary of Defense for Detainee Affairs Matthew Waxman said U.S. forces in Iraq are holding a senior aide to terrorist mastermind Abu Musab al-Zarqawi . NNP , NNP NNP NNP NNP IN NNP IN NNP NNP NNP NNP VBD NNP NNS IN NNP VBP VBG DT JJ NN TO JJ NN NNP NNP NNP . Mr. Waxman said the man was arrested in Iraq in late 2004 and that he holds joint U.S. and Jordanian citizenship . NNP NNP VBD DT NN VBD VBN IN NNP IN JJ CD CC IN PRP VBZ JJ NNP CC JJ NN . He said the suspect acted as an emissary between terror groups in Iraq and al-Zarqawi . PRP VBD DT NN VBD IN DT NN IN NN NNS IN NNP CC NNP . Final results from Iraq 's provincial elections show Prime Minister Nouri al-Maliki 's allies have strengthened their standing across the country . JJ NNS IN NNP POS JJ NNS VBP NNP NNP NNP NNP POS NNS VBP VBN PRP$ NN IN DT NN . Candidates backed by the moderate Shi'ite prime minister dominated in the capital , Baghdad , and were victorious over other more sectarian Shi'ite rivals across southern Iraq . NNS VBN IN DT JJ NNP JJ NN VBD IN DT NN , NNP , CC VBD JJ IN JJ JJR JJ NNP NNS IN JJ NNP . The results released Thursday also showed that Sunni Arab tribal leaders who rose up against insurgents won the most seats in the western province of Anbar . DT NNS VBN NNP RB VBD IN NNP NNP JJ NNS WP VBD RP IN NNS VBD DT JJS NNS IN DT JJ NN IN NNP . The tribal chiefs won eight out of 29 provincial council seats in last month 's elections . DT JJ NNS VBD CD IN IN CD JJ NN NNS IN JJ NN POS NNS . The vote in 14 of Iraq 's 18 provinces was seen as a referendum on Mr. Maliki 's leadership ahead of national parliamentary elections later this year . DT NN IN CD IN NNP POS CD NNS VBD VBN IN DT NN IN NNP NNP POS NN RB IN JJ JJ NNS RBR DT NN . Polling is to take place later in the three Kurdish provinces of northern Iraq , as well as the disputed oil-rich region of Kirkuk . NN VBZ TO VB NN RB IN DT CD JJ NNS IN JJ NNP , RB RB IN DT JJ JJ NN IN NNP . Indonesian health officials say former vice president Sudharmono has died at the age of 78 . JJ NN NNS VBP JJ NN NN NNP VBZ VBN IN DT NN IN CD . Officials say Sudharmono died Wednesday in a Jakarta hospital . NNS VBP NNP VBD NNP IN DT NNP NN . He had served as former president Suharto 's fourth vice president , from 1988 to 1993 . PRP VBD VBN IN JJ NN NNP POS JJ NN NN , IN CD TO CD . Sudharmono was a retired army lieutenant general and later a chairman of the powerful Golkar party who aided in intelligence operations to help Suharto stamp out the communist party . NNP VBD DT JJ NN NN JJ CC RB DT NN IN DT JJ NNP NN WP VBD IN NN NNS TO VB NNP VB RP DT JJ NN . Sudharmono is survived by his wife and three children . NNP VBZ VBN IN PRP$ NN CC CD NNS . Bayelsa State government officials in Nigeria say the mother of a state legislator has been kidnapped in the country 's southern Niger Delta . NNP NNP NN NNS IN NNP VBP DT NN IN DT NN NN VBZ VBN VBN IN DT NN POS JJ NNP NNP . Jonah Okah , A spokesman for the Bayelsa state parliament says gunmen took the woman from her home Monday night in Brass , a remote part of the oil-producing delta region . NNP NNP , DT NN IN DT NNP NN NN VBZ NNS VBD DT NN IN PRP$ NN NNP NN IN NNP , DT JJ NN IN DT JJ NN NN . The spokesman also says the 11-year-old son of another local legislator was released by kidnappers Tuesday . DT NN RB VBZ DT JJ NN IN DT JJ NN VBD VBN IN NNS NNP . It is not clear whether ransom money was paid for the child 's release . PRP VBZ RB JJ IN NN NN VBD VBN IN DT NN POS NN . The mother of the speaker of the Bayelsa state parliament was also abducted and released earlier this month . DT NN IN DT NN IN DT NNP NN NN VBD RB VBN CC VBN RBR DT NN . Kidnappings for ransom are frequent in Nigeria 's delta region . NNS IN NN VBP JJ IN NNP POS JJ NN . Armed gangs have mostly abducted foreign oil industry workers , but recently began including relatives of local officials they think can afford to pay for their release . JJ NNS VBP RB VBN JJ NN NN NNS , CC RB VBD VBG NNS IN JJ NNS PRP VBP MD VB TO VB IN PRP$ NN . Voters in Nepal have begun casting ballots in the country 's first nationwide municipal elections in seven years . NNS IN NNP VBP VBN VBG NNS IN DT NN POS JJ JJ JJ NNS IN CD NNS . Security forces have been authorized to shoot anyone caught disrupting the controversial elections . NNP NNS VBP VBN VBN TO VB DT VBN VBG DT JJ NNS . Heavily guarded polling stations opened early Wednesday , but so far only a handful of the country 's nearly two-million registered voters have turned out to vote . RB VBN NN NNS VBD JJ NNP , CC RB RB RB DT NN IN DT NN POS RB JJ JJ NNS VBP VBN RP TO VB . Elections are taking place in only 36 of Nepal 's municipalities . NNS VBP VBG NN IN RB CD IN NNP POS NNS . The remaining 22 either do not have anyone running , or candidates are running unopposed . DT VBG CD CC VBP RB VB DT NN , CC NNS VBP VBG JJ . Nepal 's government says the polls are a step toward democracy . NNP POS NN VBZ DT NNS VBP DT NN IN NN . But opposition parties and communist rebels call the elections a sham aimed at legitimizing King Gyanendra 's seizure of absolute power a year ago . CC NN NNS CC JJ NNS VBP DT NNS DT NN VBN IN VBG NNP NNP POS NN IN JJ NN DT NN RB . Rebels have threatened to harm anyone who participates in the vote . NNS VBP VBN TO VB DT WP VBZ IN DT NN . U.S. stock market indexes posted strong gains in Tuesday 's afternoon trading . NNP NN NN NNS VBD JJ NNS IN NNP POS NN NN . The Dow Jones Industrial Average rose three percent , the S & P 500 advanced 3.6 percent , and the NASDAQ moved up 3.3 percent . DT NNP NNP NNP NNP VBD CD NN , DT NNP CC NNP CD VBD CD NN , CC DT NNP VBD RB CD NN . European stock markets were higher at the close of trading . JJ NN NNS VBD JJR IN DT NN IN NN . London 's Financial Times 100 index gained 1.4 percent to finish at 4,123 . NNP POS NNP NNP CD NN VBD CD NN TO VB IN CD . The CAC-40 in Paris rose 2.4 percent to close at 3,153 , and the DAX in Frankfurt moved up 3.1 percent to hit 4,532 . DT NN IN NNP VBD CD NN TO VB IN CD , CC DT NNP IN NNP VBD RB CD NN TO VB CD . In Asia , Tokyo 's Nikkei index plunged 6.4 percent to finish the day at 7,864 . IN NNP , NNP POS NNP NN VBD CD NN TO VB DT NN IN CD . In Hong Kong , the Hang Seng dropped five percent to end at 13,406 . IN NNP NNP , DT NNP NNP VBD CD NN TO VB IN CD . The price of gold rose more than $ 11 to trade at $ 780.47 an ounce . DT NN IN NN VBD JJR IN $ CD TO VB IN $ CD DT NN . The dollar was higher against the yen but lost value compared to the euro . DT NN VBD JJR IN DT NN CC VBD NN VBN TO DT NN . Venezuela 's oil minister says his country will end talks with foreign oil companies concerning the country 's takeover of oil projects financed by the private companies . NNP POS NN NN VBZ PRP$ NN MD VB NNS IN JJ NN NNS VBG DT NN POS NN IN NN NNS VBN IN DT JJ NNS . Rafael Ramirez said Monday that the negotiations have become impossible . NNP NNP VBD NNP IN DT NNS VBP VBN JJ . Venezuela has said it would take majority control of oil projects along the Orinoco River , where the private companies have invested billions of dollars . NNP VBZ VBN PRP MD VB NN NN IN NN NNS IN DT NNP NNP , WRB DT JJ NNS VBP VBN NNS IN NNS . Ramirez also says a plan by President Hugo Chavez to nationalize Venezuela 's electricity sector would mean the complete takeover of the country 's largest power company , Electricidad de Caracas . NNP RB VBZ DT NN IN NNP NNP NNP TO VB NNP POS NN NN MD VB DT JJ NN IN DT NN POS JJS NN NN , NNP NNP NNP . EDC is owned by a U.S. company , AES . NNP VBZ VBN IN DT NNP NN , NNP . Neither AES nor the foreign oil companies have responded to Ramirez 's statements . CC NNP CC DT JJ NN NNS VBP VBN TO NNP POS NNS . U.S. officials have said nationalizations have a long history of failure and seldom benefit the people they are meant to serve . NNP NNS VBP VBN NNS VBP DT JJ NN IN NN CC RB VB DT NNS PRP VBP VBN TO VB . The Afghan president 's office has responded to criticism by Pakistani President Pervez Musharraf , insisting its intelligence on terrorists hiding in Pakistan is correct . DT JJ NN POS NN VBZ VBN TO NN IN JJ NNP NNP NNP , VBG PRP$ NN IN NNS VBG IN NNP VBZ JJ . President Hamid Karzai 's office Tuesday defended intelligence it says shows terrorists are free to move in Pakistan . NNP NNP NNP POS NN NNP VBD NN PRP VBZ VBZ NNS VBP JJ TO VB IN NNP . The statement was a response to Mr. Musharraf 's accusation that Afghanistan is ' bad-mouthing ' his country and casting doubt on Islamabad 's commitment to fighting terrorism . DT NN VBD DT NN TO NNP NNP POS NN IN NNP VBZ `` JJ `` PRP$ NN CC NN NN IN NNP POS NN TO VBG NN . Mr. Musharraf said Monday , such criticism of Pakistan is ' a deliberate , articulated conspiracy . ' NNP NNP VBD NNP , JJ NN IN NNP VBZ `` DT JJ , JJ NN . `` He contends Afghan intelligence is outdated and incorrect . PRP VBZ JJ NN VBZ JJ CC JJ . Afghanistan 's and Pakistan 's comments , coming on the heels of President Bush 's visit to South Asia last week , point to a new low in relations between the neighboring states , at a time when Afghanistan is facing a sharp rise in attacks by insurgents . NNP POS CC NNP POS NNS , VBG IN DT NNS IN NNP NNP POS NN TO NNP NNP JJ NN , NN TO DT JJ NN IN NNS IN DT JJ NNS , IN DT NN WRB NNP VBZ VBG DT JJ NN IN NNS IN NNS . Latin America enjoyed robust economic growth last year , but a new report by the Inter-American Development Bank warns that several factors could reverse that trend in 2005 . NNP NNP VBD JJ JJ NN JJ NN , CC DT JJ NN IN DT NNP NNP NNP VBZ IN JJ NNS MD VB DT NN IN CD . The IADB says Latin American nations ' overall economic growth was 5.5 percent in 2004 , thanks to China 's increasing demand for raw materials , including steel . DT NNP VBZ JJ JJ NNS POS JJ JJ NN VBD CD NN IN CD , NNS TO NNP POS VBG NN IN JJ NNS , VBG NN . However , Beijing has taken several steps to slow its economy , which grew to by 9.5 percent last year , which the bank says will have an immediate effect on global trade and the price of commodities . RB , NNP VBZ VBN JJ NNS TO VB PRP$ NN , WDT VBD TO IN CD NN JJ NN , WDT DT NN VBZ MD VB DT JJ NN IN JJ NN CC DT NN IN NNS . In addition to a possible economic slowdown by China , the Inter-American Development Bank says , rising U.S. interest rates and a falling dollar could affect Latin America , where many countries already have massive levels of public debt . IN NN TO DT JJ JJ NN IN NNP , DT NNP NNP NNP VBZ , VBG NNP NN NNS CC DT VBG NN MD VB NNP NNP , WRB JJ NNS RB VBP JJ NNS IN JJ NN . Billionaire investor says the U.S. economy could fall into recession in 2007 . NN NN VBZ DT NNP NN MD VB IN NN IN CD . He spoke in Singapore on Monday , and said the U.S. central bank could spark the downturn by raising interest rates too high , crimping the U.S. housing market . PRP VBD IN NNP IN NNP , CC VBD DT NNP JJ NN MD VB DT NN IN VBG NN NNS RB JJ , VBG DT NNP NN NN . High U.S. housing prices are a key reason that rising energy prices did not derail economic growth last year . JJ NNP NN NNS VBP DT JJ NN IN VBG NN NNS VBD RB VB JJ NN JJ NN . The U.S. Federal Reserve has been boosting interest rates steadily in a bid to fend off inflation , but Soros expects that campaign to end after two more quarter-point rate hikes ( at 4.75 percent ) . DT NNP NNP NNP VBZ VBN VBG NN NNS RB IN DT NN TO VB RP NN , CC NNP VBZ DT NN TO VB IN CD JJR JJ NN NNS LRB IN CD NN RRB . The U.S. economy is the world 's largest , and Soros says a U.S. recession could slow global economic growth . DT NNP NN VBZ DT NN POS JJS , CC NNP VBZ DT NNP NN MD VB JJ JJ NN . He also said future global growth could come from Asia , and urged Asian governments to encourage domestic demand to reduce their dependence on exports . PRP RB VBD JJ JJ NN MD VB IN NNP , CC VBD JJ NNS TO VB JJ NN TO VB PRP$ NN IN NNS . World oil prices hit new record highs Wednesday , as experts worried about production problems that could disrupt output . NNP NN NNS VBD JJ NN NNS NNP , IN NNS VBD IN NN NNS WDT MD VB NN . Those concerns include refinery breakdowns and a worse-than-usual hurricane season that could threaten vital offshore wells . DT NNS VBP NN NNS CC DT JJ NN NN WDT MD VB JJ JJ NNS . The production problems come as traders say there is robust demand for oil from growing economies . DT NN NNS VBP IN NNS VBP EX VBZ JJ NN IN NN IN VBG NNS . In New York , the price of crude oil for September delivery went as high as $ 62.47 a barrel . IN NNP NNP , DT NN IN JJ NN IN NNP NN VBD RB JJ IN $ CD DT NN . London 's benchmark Brent contract also hit a new record high of $ 61.25 . NNP POS JJ NNP NN RB VBD DT JJ NN NN IN $ CD . Japan 's Prince Tomohito of Mikasa says there is no need for the government to make an immediate decision on allowing women to succeed to the throne . NNP POS NNP NNP IN NNP VBZ EX VBZ DT NN IN DT NN TO VB DT JJ NN IN VBG NNS TO VB TO DT NN . He told Kyodo news agency that a government panel should reconsider its proposal to allow the first-born child of either sex to ascend to the Chrysanthemum throne . PRP VBD NNP NN NN IN DT NN NN MD VB PRP$ NN TO VB DT JJ NN IN DT NN TO VB TO DT NNP NN . Tomohito is a cousin of Emperor Akihito and fifth in the line of succession . NNP VBZ DT NN IN NNP NNP CC NN IN DT NN IN NN . He has been an outspoken critic against changing Japan 's laws for gaining the throne . PRP VBZ VBN DT JJ NN IN VBG NNP POS NNS IN VBG DT NN . Only males who have emperors on their father 's side can succeed to the throne . RB NNS WP VBP NNS IN PRP$ NN POS NN MD VB TO DT NN . However , Japan is facing a succession crisis due to a lack of a male heirs since the 1960s . RB , NNP VBZ VBG DT NN NN JJ TO DT NN IN DT NN NNS IN DT NNS . Late last year , Tomohito suggested bringing back concubines to produce male heir before allowing a woman to head the ancient monarchy . RB JJ NN , NNP VBD VBG RP NNS TO VB JJ NN IN VBG DT NN TO VB DT JJ NN . Ukraine 's parliament has overwhelmingly confirmed Yulia Tymoshenko as the country 's prime minister . NNP POS NN VBZ RB VBN NNP NNP IN DT NN POS JJ NN . The vote was 373 in favor out of the 450-member chamber . DT NN VBD CD IN NN IN IN DT JJ NN . Earlier , President Viktor Yushchenko told lawmakers in Kiev Ms. Tymoshenko had earned his and the nation 's trust . RB , NNP NNP NNP VBD NNS IN NNP NNP NNP VBD VBN PRP$ CC DT NN POS NN . Calling her his political partner , Mr. Yushchenko said she can be trusted to organize a new government . VBG PRP PRP$ JJ NN , NNP NNP VBD PRP MD VB VBN TO VB DT JJ NN . Ukraine 's parliament Tuesday postponed a hearing on Ms. Tymoshenko 's confirmation as her broad coalition was reported to be finalizing the makeup of a new cabinet . NNP POS NN NNP VBD DT NN IN NNP NNP POS NN IN PRP$ JJ NN VBD VBN TO VB VBG DT NN IN DT JJ NN . Meanwhile , President Yushchenko is reported Friday to have dismissed three deputy prime ministers , 15 cabinet ministers and several other officials in a move political observers say was expected as the new government is being formed . RB , NNP NNP VBZ VBN NNP TO VB VBN CD JJ JJ NNS , CD NN NNS CC JJ JJ NNS IN DT NN JJ NNS VBP VBD VBN IN DT JJ NN VBZ VBG VBN . A moderate earthquake struck central Mexico Friday , forcing residents and office workers to evacuate buildings in Mexico City . DT JJ NN VBD JJ NNP NNP , VBG NNS CC NN NNS TO VB NNS IN NNP NNP . Officials say no major injuries or damages were immediately reported . NNS VBP DT JJ NNS CC NNS VBD RB VBN . The U.S. Geological Survey estimates the earthquake 's magnitude at 6 . DT NNP NNP NNP VBZ DT NN POS NN IN CD . An aftershock that measured 5.5 hit a few hours later . DT NN WDT VBD CD VBD DT JJ NNS RB . The center says the earthquake , which hit Friday morning local time , was centered in the southwestern state of Michoacan , about 200 kilometers southwest of Mexico City . DT NN VBZ DT NN , WDT VBD NNP NN JJ NN , VBD VBN IN DT JJ NN IN NNP , IN CD NNS NN IN NNP NNP . In 1985 , a 7.8 magnitude earthquake in Mexico City killed more than 10,000 people . IN CD , DT CD NN NN IN NNP NNP VBD JJR IN CD NNS . Voters in Burundi are casting ballots in a parliamentary election the ruling party is almost certain to win , amid a boycott by an opposition coalition . NNS IN NNP VBP VBG NNS IN DT JJ NN DT NN NN VBZ RB JJ TO VB , IN DT NN IN DT NN NN . The opposition also boycotted last month 's presidential election . DT NN RB VBD JJ NN POS JJ NN . Unopposed , President Pierre Nkurunziza was re-elected . JJ , NNP NNP NNP VBD VBN . The opposition decided to boycott both votes after accusing the president of using fraud to win local elections in May . DT NN VBD TO VB DT NNS IN VBG DT NN IN VBG NN TO VB JJ NNS IN NNP . International observers said there was no evidence of tampering . JJ NNS VBD EX VBD DT NN IN VBG . Security has also been a concern during this election season . NN VBZ RB VBN DT NN IN DT NN NN . Burundi has been on alert since Somali insurgents threatened to attack the country for its role in the peacekeeping mission in Somalia . NNP VBZ VBN IN NN IN JJ NNS VBD TO VB DT NN IN PRP$ NN IN DT NN NN IN NNP . Somali Islamist rebel group al-Shabab claimed responsibility for bombings in Uganda earlier this month that killed 76 people . JJ NNP NN NN NNP VBD NN IN NNS IN NNP RBR DT NN WDT VBD CD NNS . It said the attacks were revenge for Ugandan participation in the peacekeeping force . PRP VBD DT NNS VBD NN IN JJ NN IN DT NN NN . U.S. senators say security at the country 's borders and ports must be strengthened after a federal investigation revealed critical gaps at two border checkpoints . NNP NNS VBP NN IN DT NN POS NNS CC NNS MD VB VBN IN DT JJ NN VBD JJ NNS IN CD NN NNS . The Senate 's Homeland Security Subcommittee Tuesday is hearing testimony from security officials on the need to speed up improvements in preventing dangerous materials from entering the country . DT NNP POS NNP NNP NNP NNP VBZ VBG NN IN NN NNS IN DT NN TO VB RP NNS IN VBG JJ NNS IN VBG DT NN . A report by Congress 's investigative department says federal investigators tested security at U.S. checkpoints in December and successfully smuggled in enough radioactive material to produce two so-called ' dirty bombs . ' DT NN IN NNP POS JJ NN VBZ JJ NNS VBD NN IN NNP NNS IN NNP CC RB VBN IN JJ JJ NN TO VB CD JJ `` JJ NNS . `` The report says border guards had detected the radioactive material using newly installed equipment , but failed to recognize that investigators used counterfeit documents to transport the material . DT NN VBZ NN NNS VBD VBN DT JJ NN VBG RB VBN NN , CC VBD TO VB IN NNS VBD NN NNS TO VB DT NN . A Republican senator says U.S. cargo security measures now suffer from ' a massive blind spot . ' DT JJ NN VBZ NNP NN NN NNS RB VBP IN `` DT JJ JJ NN . `` Joseph Wilson , the husband of Valerie Plame , the Central Intelligence Agency operative exposed by a newspaper article in 2003 , says his wife received specific threats after her identity was revealed . NNP NNP , DT NN IN NNP NNP , DT NNP NNP NNP JJ VBN IN DT NN NN IN CD , VBZ PRP$ NN VBD JJ NNS IN PRP$ NN VBD VBN . Mr. Wilson spoke to the CBS television program ' 60 Minutes , ' which released excerpts of his interview in advance of Sunday evening 's broadcast . NNP NNP VBD TO DT NNP NN NN `` CD NNS , `` WDT VBD NNS IN PRP$ NN IN NN IN NNP NN POS NN . According to CBS , Mr. Wilson said he could not go into detail about the threats . VBG TO NNP , NNP NNP VBD PRP MD RB VB IN NN IN DT NNS . He told the network that he and his wife have discussed her security with several agencies . PRP VBD DT NN IN PRP CC PRP$ NN VBP VBN PRP$ NN IN JJ NNS . Mr. Wilson said that before Ms. Plame 's identity was published by a newspaper columnist , very few people outside the intelligence community knew she worked for the C.I.A . NNP NNP VBD IN IN NNP NNP POS NN VBD VBN IN DT NN NN , RB JJ NNS IN DT NN NN VBD PRP VBD IN DT NNP . Mr. Wilson has said his wife was exposed to discredit him after he criticized the Bush administration 's rationale for the war in Iraq . NNP NNP VBZ VBN PRP$ NN VBD VBN TO VB PRP IN PRP VBD DT NNP NN POS NN IN DT NN IN NNP . U.S. Defense Secretary Donald Rumsfeld is to travel to India this week to discuss arms sales to New Delhi and Pakistan . NNP NNP NNP NNP NNP VBZ TO VB TO NNP DT NN TO VB NNS NNS TO NNP NNP CC NNP . Mr. Rumsfeld is expected to discuss US-India relations when he meets with Prime Minister Manmohan Singh on Thursday in New Delhi . NNP NNP VBZ VBN TO VB NNP NNS WRB PRP VBZ IN NNP NNP NNP NNP IN NNP IN NNP NNP . India wants to buy the Patriot missile system , which can defend against ballistic and cruise missiles , and aircraft . NNP VBZ TO VB DT NNP NN NN , WDT MD VB IN JJ CC NN NNS , CC NN . India also is expected to raise its concern over Pakistan 's request to buy up to 25 F-16 fighter jets from the United States . NNP RB VBZ VBN TO VB PRP$ NN IN NNP POS NN TO VB RP TO CD NNP NN NNS IN DT NNP NNPS . Indian and Pakistani media say the prospect of American arms sales has stirred up opposition in both South Asian countries . JJ CC JJ NNS VBP DT NN IN JJ NNS NNS VBZ VBN RP NN IN DT JJ JJ NNS . The two nuclear-armed rivals , which have fought three wars in the past five decades , are currently in peace talks over all outstanding issues . DT CD JJ NNS , WDT VBP VBN CD NNS IN DT JJ CD NNS , VBP RB IN NN NNS IN DT JJ NNS . The U.S. ambassador to Nepal has urged King Gyanendra to reconcile with the nation 's political parties , warning that Nepal could ' slide toward confrontation , confusion and chaos . ' DT NNP NN TO NNP VBZ VBN NNP NNP TO VB IN DT NN POS JJ NNS , VBG IN NNP MD `` NN IN NN , NN CC NN . `` Speaking in Kathmandu late Tuesday , Ambassador James Moriarty said the royal palace should reach out to political parties ' with sincere proposals ' that reflect a common agenda of multi-party democracy and constitutional monarchy . VBG IN NNP JJ NNP , NNP NNP NNP VBD DT JJ NN MD VB RP TO JJ NNS `` IN JJ NNS `` WDT VBP DT JJ NN IN JJ NN CC JJ NN . Nepal 's king seized absolute power on February 1 , saying the move was necessary to end government corruption and quell the nine-year-old Maoist insurgency . NNP POS NN VBD JJ NN IN NNP CD , VBG DT NN VBD JJ TO VB NN NN CC VB DT JJ NNP NN . Meanwhile , Nepal 's army troops are continuing a search for soldiers missing since Sunday 's fierce clash with the rebels in a remote western district . RB , NNP POS NN NNS VBP VBG DT NN IN NNS VBG IN NNP POS JJ NN IN DT NNS IN DT JJ JJ NN . Tuesday , the army said it found the bodies of 40 soldiers and 76 were still missing . NNP , DT NN VBD PRP VBD DT NNS IN CD NNS CC CD VBD RB VBG . The rebels say they have killed 159 troops and captured another 50 . DT NNS VBP PRP VBP VBN CD NNS CC VBD DT CD . The army rejects the claim . DT NN VBZ DT NN . The press freedom organization Reporters Without Borders says it is concerned by what it calls the growing repression of journalists and cyber-dissidents in Iran . DT NN NN NN NNS IN NNP VBZ PRP VBZ VBN IN WP PRP VBZ DT VBG NN IN NNS CC NNS IN NNP . In a report issued Sunday , the RSF ( Reporters Sans Frontieres ) announced the detention of five more journalists . IN DT NN VBN NNP , DT NNP LRB NNP NNP NNP RRB VBD DT NN IN CD JJR NNS . RSF says 41 journalists are currently imprisoned in Iran a month after the country 's contested election . NNP VBZ CD NNS VBP RB VBN IN NNP DT NN IN DT NN POS VBN NN . RSF says Iran is currently the world 's biggest prison for journalists , and is becoming the world 's most dangerous place for them to operate . NNP VBZ NNP VBZ RB DT NN POS JJS NN IN NNS , CC VBZ VBG DT NN POS RBS JJ NN IN PRP TO VB . RSF says the recently-detained journalists include photographers Majid Saidi and Tohid Bighi , blogger Henghameh Shahidi , and journalists Somaieh Nosrati and Said Matinpour . NNP VBZ DT JJ NNS VBP NNS NNP NNP CC NNP NNP , NN NNP NNP , CC NNS NNP NNP CC NNP NNP . According to RSF , four of the five are being held in secret locations with no information about their condition being released to their families or legal representatives . VBG TO NNP , CD IN DT CD VBP VBG VBN IN JJ NNS IN DT NN IN PRP$ NN VBG VBN TO PRP$ NNS CC JJ NNS . Ukraine 's Supreme Court has rejected at least two complaints of election fraud filed by Prime Minister Viktor Yanukovych . NNP POS NNP NNP VBZ VBN IN JJS CD NNS IN NN NN VBN IN NNP NNP NNP NNP . The court was expected to rule Thursday on a total of four complaints by Mr. Yanukovych , who lost Sunday 's presidential runoff vote . DT NN VBD VBN TO VB NNP IN DT NN IN CD NNS IN NNP NNP , WP VBD NNP POS JJ NN NN . Mr. Yanukovych alleges there were thousands of election violations and is refusing to concede defeat to his rival , opposition leader Viktor Yushchenko . NNP NNP VBZ EX VBD NNS IN NN NNS CC VBZ VBG TO VB NN TO PRP$ NN , NN NN NNP NNP . Observers say the appeals are unlikely to change the election results because Mr. Yanukovych lacks popular support and because the number of irregularities was not enough to narrow the gap between the two candidates . NNS VBP DT NNS VBP JJ TO VB DT NN NNS IN NNP NNP VBZ JJ NN CC IN DT NN IN NNS VBD RB JJ TO VB DT NN IN DT CD NNS . Official results released Tuesday show Mr. Yushchenko won the runoff with 52 percent of the vote , to 44 percent for the prime minister . JJ NNS VBN NNP NN NNP NNP VBD DT NN IN CD NN IN DT NN , TO CD NN IN DT JJ NN . Brazil 's state-run energy company , Petrobras , has awarded a major contract to a Chinese firm to build a gas pipeline between southeast and northeast Brazil . NNP POS JJ NN NN , NNP , VBZ VBN DT JJ NN TO DT JJ NN TO VB DT NN NN IN NN CC RB NNP . Petrobras signed the $ 239-million deal with China 's state-run oil company , Sinopec , on Monday . NNP VBD DT $ CD NN IN NNP POS JJ NN NN , NNP , IN NNP . Under the contract , Sinopec will build a 300-kilometer stretch of pipeline in southeastern Brazil . IN DT NN , NNP MD VB DT JJ NN IN NN IN JJ NNP . It will connect the gas fields in Rio de Janeiro state to the city of Vitoria ( in Espirito Santo state ) , farther north . PRP MD VB DT NN NNS IN NNP IN NNP NN TO DT NN IN NNP LRB IN NNP NNP NN RRB , RB RB . The pipeline will have a daily capacity of 20 million cubic meters of gas . DT NN MD VB DT JJ NN IN CD CD JJ NNS IN NN . Brazil plans to extend the pipeline from Vitoria to the town of Catu , in northeastern state of Bahia , covering a total distance of 1,300 kilometers . NNP VBZ TO VB DT NN IN NNP TO DT NN IN NNP , IN JJ NN IN NNP , VBG DT JJ NN IN CD NNS . The entire project , known as Gasene , is aimed at improving gas distribution in northeastern Brazil . DT JJ NN , VBN IN NNP , VBZ VBN IN VBG NN NN IN JJ NNP . A new public opinion poll shows that Brazilian President Luiz Inacio Lula da Silva 's popularity has fallen but remains strong despite a bribes-for-votes scandal surrounding his government . DT JJ JJ NN NN VBZ IN JJ NNP NNP NNP NNP NNP NNP POS NN VBZ VBN CC VBZ JJ IN DT JJ NN VBG PRP$ NN . The Datafolha poll shows the number of people who believe the president is honest has fallen 11 percentage points in little more than a month to 62 percent . DT NNP NN VBZ DT NN IN NNS WP VBP DT NN VBZ JJ VBZ VBN CD NN NNS IN RB JJR IN DT NN TO CD NN . Mr. da Silva himself has not been accused of wrongdoing . NNP NNP NNP PRP VBZ RB VBN VBN IN NN . The survey also says the government 's approval rating remains nearly unchanged , dropping one percentage point to 35 percent . DT NN RB VBZ DT NN POS NN NN VBZ RB JJ , VBG CD NN NN TO CD NN . The Datafolha company polled more than 2,000 Brazilians for the survey . DT NNP NN VBN JJR IN CD NNS IN DT NN . The scandal erupted when the ruling Workers Party was accused of paying lawmakers $ 12,000 a month to win their support . DT NN VBD WRB DT NN NNP NNP VBD VBN IN VBG NNS $ CD DT NN TO VB PRP$ NN . The party denies the allegations , which caused some government officials to step down . DT NN VBZ DT NNS , WDT VBD DT NN NNS TO VB RB . Despite the scandal , surveys have shown that Mr. da Silva is still the favorite to win the 2006 presidential election . IN DT NN , NNS VBP VBN IN NNP NNP NNP VBZ RB DT JJ TO VB DT CD JJ NN . One of the defendants on trial for conspiracy in the assassination of reformist Serbian Prime Minister Zoran Djindjic has implicated the leader 's former deputy in the plot . CD IN DT NNS IN NN IN NN IN DT NN IN NN JJ NNP NNP NNP NNP VBZ VBN DT NN POS JJ NN IN DT NN . Dejan ' Bugsy ' Milenkovic told a Belgrade court Thursday that Nebojsa Covic was aware of the conspiracy . NNP `` NNP `` NNP VBD DT NNP NN NNP IN NNP NNP VBD JJ IN DT NN . He said Mr. Djindjic 's sworn enemy , ultranationalist leader Vojislav Seselj , also was aware of the plot . PRP VBD NNP NNP POS JJ NN , JJ NN NNP NNP , RB VBD JJ IN DT NN . Seselj is on trial for war crimes in the Hague . NNP VBZ IN NN IN NN NNS IN DT NNP . Covic has denied any involvement . NNP VBZ VBN DT NN . Officials of Seselj 's Radical Party dismissed the allegations against him . NNS IN NNP POS NNP NNP VBD DT NNS IN PRP . Milenkovic is one of 13 suspects on trial for their roles in the assassination of Mr. Djindjic outside government offices in Belgrade in 2003 . NNP VBZ CD IN CD NNS IN NN IN PRP$ NNS IN DT NN IN NNP NNP IN NN NNS IN NNP IN CD . Mr. Djindjic was one of the leaders of the pro-democracy movement that toppled former Yugoslav President Slobodan Milosevic in 2000 . NNP NNP VBD CD IN DT NNS IN DT JJ NN WDT VBD JJ JJ NNP NNP NNP IN CD . He was also instrumental in extraditing the former leader to the United Nations war crimes tribunal in The Hague . PRP VBD RB JJ IN VBG DT JJ NN TO DT NNP NNPS NN NNS JJ IN DT NNP . Iraqi police say a suicide bomber blew up his explosives filled car near the Oil Ministry in Baghdad , killing at least nine people and wounding eight others . JJ NNS VBP DT NN NN VBD RP PRP$ NNS VBN NN IN DT NNP NNP IN NNP , VBG IN JJS CD NNS CC VBG CD NNS . Another suicide car bomb attack occurred in an eastern part of the capital Thursday . DT NN NN NN NN VBD IN DT JJ NN IN DT NN NNP . Police said there were casualties , but no confirmed figure was immediately available . NNS VBD EX VBD NNS , CC DT VBN NN VBD RB JJ . The attacks come a day after 25 people were killed and 90 others wounded in a suicide attack at a Shi'ite mosque in the town of Hilla . DT NNS VBP DT NN IN CD NNS VBD VBN CC CD NNS VBN IN DT NN NN IN DT NNP NN IN DT NN IN NNP . The bomber struck as the faithful gathered at the mosque to pray before breaking fast Wednesday - the first day of the Muslim holy month of Ramadan . DT NN VBD IN DT NN VBD IN DT NN TO VB IN VBG JJ NNP IN DT JJ NN IN DT NNP JJ NN IN NNP . Meanwhile , Iraqi President Jalal Talabani met with British Prime Minister Tony Blair in London Thursday , to discuss preparations for the October 15 national referendum on Iraq 's new constitution . RB , JJ NNP NNP NNP VBD IN NNP NNP NNP NNP NNP IN NNP NNP , TO VB NNS IN DT NNP CD JJ NN IN NNP POS JJ NN . Russia 's military chief , General Yuri Baluyevsky , has reiterated international calls that North Korea must remain free of nuclear weapons . NNP POS JJ NN , NNP NNP NNP , VBZ VBN JJ NNS IN NNP NNP MD VB JJ IN JJ NNS . Mr. Baluyevsky spoke Monday during a meeting in Moscow with his Japanese counterpart , visiting Military Chief General Hajime Massaki . NNP NNP VBD NNP IN DT NN IN NNP IN PRP$ JJ NN , VBG NNP NNP NNP NNP NNP . He said it is the international community 's duty to prevent any nuclear tests on the Korean peninsula . PRP VBD PRP VBZ DT JJ NN POS NN TO VB DT JJ NNS IN DT JJ NN . On Sunday , North Korea confirmed a meeting with U.S. officials held earlier this month . IN NNP , NNP NNP VBD DT NN IN NNP NNS VBN RBR DT NN . The statement came days after U.S. officials announced they held a rare meeting with North Korean authorities at United Nations headquarters in New York , to urge Pyongyang to return to talks on ending its nuclear weapons program . DT NN VBD NNS IN NNP NNS VBD PRP VBD DT JJ NN IN JJ JJ NNS IN NNP NNP NN IN NNP NNP , TO VB NNP TO VB TO NNS IN VBG PRP$ JJ NNS NN . South Korea , China , Russia and Japan have also been calling on North Korea to re-join the six-nation talks . NNP NNP , NNP , NNP CC NNP VBP RB VBN VBG IN NNP NNP TO VB DT NN NNS . Iraq 's health minister says a girl who died earlier this month in northern Iraq was a victim of the deadly H5N1 strain of the bird flu - the first known case of the disease in the country . NNP POS NN NN VBZ DT NN WP VBD RBR DT NN IN JJ NNP VBD DT NN IN DT JJ NNP NN IN DT NN NN IN DT JJ VBN NN IN DT NN IN DT NN . Abdel Mutalib Mohammed told reporters Monday that new tests of the victim 's blood samples confirmed the Kurdish teenager had contracted the deadly strain . NNP NNP NNP VBD NNS NNP IN JJ NNS IN DT NN POS NN NNS VBD DT NNP NN VBD VBN DT JJ NN . Nearly two weeks ago , the World Health Organization said its tests for the virus were negative . RB CD NNS RB , DT NNP NNP NNP VBD PRP$ NNS IN DT NN VBD JJ . The girl died January 17th in the Kurdish city of Sulaymaniya , near the border with Turkey and Iran . DT NN VBD NNP CD IN DT JJ NN IN NNP , IN DT NN IN NNP CC NNP . The death triggered concerns that infected birds from Turkey had begun spreading the virus in Iraq . DT NN VBD NNS IN JJ NNS IN NNP VBD VBN VBG DT NN IN NNP . Tens of thousands of Georgian opposition demonstrators have marched through the Georgian capital to protest final parliamentary election results they say unfairly favored the ruling party . NNS IN NNS IN JJ NN NNS VBP VBN IN DT JJ NN TO VB JJ JJ NN NNS PRP VBP RB VBN DT NN NN . Protesters marched Monday in Tbilisi , shortly after a military parade marking Georgia 's Independence Day . NNS VBD NNP IN NNP , RB IN DT JJ NN VBG NNP POS NNP NNP . Final results from the May 21 polls show President Mikhail Saakashvili 's United National Movement party winning 120 of 150 parliamentary seats . JJ NNS IN DT NNP CD NNS VBP NNP NNP NNP POS NNP NNP NNP NN VBG CD IN CD JJ NNS . Last week , opposition leader Levan Gachechiladze said his United Opposition Council will not take its 16 seats in the legislature to protest election results . JJ NN , NN NN NNP NNP VBD PRP$ NNP NNP NNP MD RB VB PRP$ CD NNS IN DT NN TO VB NN NNS . Monday he said his supporters will try to prevent the new parliament from convening , by force if necessary . NNP PRP VBD PRP$ NNS MD VB TO VB DT JJ NN IN NN , IN NN IN JJ . Observers from the Organization for Security and Cooperation in Europe noted a number of problems , including pre-election intimidation of candidates and procedural shortcomings in the vote count . NNS IN DT NNP IN NNP CC NNP IN NNP VBD DT NN IN NNS , VBG JJ NN IN NNS CC JJ NNS IN DT NN NN . However , they stopped short of rejecting the poll results . RB , PRP VBD RB IN VBG DT NN NNS . The U.S. military in Afghanistan says a bomb explosion has killed four American service members . DT NNP NN IN NNP VBZ DT NN NN VBZ VBN CD JJ NN NNS . The troops were on patrol in central Uruzgan province Monday , when their vehicle struck the explosive device . DT NNS VBD IN NN IN JJ NNP NN NNP , WRB PRP$ NN VBD DT JJ NN . Meanwhile , in Kunar province bordering Pakistan , an Afghan soldier was killed and five others wounded when their vehicle hit a land mine . RB , IN NNP NN VBG NNP , DT JJ NN VBD VBN CC CD NNS VBN WRB PRP$ NN VBD DT NN NN . Late Sunday , in southern Helmand province , Taleban insurgents ambushed an Afghan militia unit , killing two men and leaving six missing . RB NNP , IN JJ NNP NN , NNP NNS VBD DT JJ NN NN , VBG CD NNS CC VBG CD VBG . A purported spokesman for the Taleban said the missing militiamen were killed , but Afghan authorities confirm only two deaths . DT JJ NN IN DT NNP VBD DT JJ NNS VBD VBN , CC JJ NNS VBP RB CD NNS . In another violence late Sunday , on a highway between Kandahar and Herat , suspected Taleban set fire to a tanker supplying fuel to coalition forces . IN DT NN RB NNP , IN DT NN IN NNP CC NNP , JJ NNP VBD NN TO DT NN VBG NN TO NN NNS . A congressman from South Carolina has urged his colleagues and President Bush to provide better equipment to troops in Iraq . DT NN IN NNP NNP VBZ VBN PRP$ NNS CC NNP NNP TO VB JJR NN TO NNS IN NNP . Representative Jim Clyburn said in the Democratic party 's weekly radio address that U.S. soldiers should never lack proper equipment nor accurate intelligence . JJ NNP NNP VBD IN DT JJ NN POS JJ NN NN IN NNP NNS MD RB VB JJ NN CC JJ NN . Mr. Clyburn also said he opposed attempts to invest Social Security on the stock market , calling proposed plans a gamble that could jeopardize benefits for children . NNP NNP RB VBD PRP VBD NNS TO VB NNP NNP IN DT NN NN , VBG VBN NNS DT NN WDT MD VB NNS IN NNS . He also called for expanding health insurance coverage and making college education more affordable . PRP RB VBD IN VBG NN NN NN CC VBG NN NN RBR JJ . Ambassadors from Spain , Brazil and Venezuela met with a jailed Colombian rebel leader Friday in hopes of securing a cease-fire between his leftist group and Colombia 's government . NNS IN NNP , NNP CC NNP VBD IN DT JJ JJ NN NN NNP IN NNS IN VBG DT NN IN PRP$ JJ NN CC NNP POS NN . The officials traveled to a high-security prison in northwest Colombia to meet with Francisco Galan , a spokesman for the National Liberation Army , or ELN . DT NNS VBD TO DT JJ NN IN JJ NNP TO VB IN NNP NNP , DT NN IN DT NNP NNP NNP , CC NNP . They want the group to halt armed operations and enter peace talks with Colombian President Alvaro Uribe 's government . PRP VBP DT NN TO VB JJ NNS CC VB NN NNS IN JJ NNP NNP NNP POS NN . The ELN and a larger guerrilla group are fighting in a long-running civil war that also involves right-wing paramilitaries . DT NNP CC DT JJR NN NN VBP VBG IN DT JJ JJ NN WDT RB VBZ JJ NNS . A Mexican diplomat met with Mr. Galan last year to push for an ELN cease-fire . DT JJ NN VBD IN NNP NNP JJ NN TO VB IN DT NNP NN . Mexico has offered to monitor negotiations between the group and Colombia 's government . NNP VBZ VBN TO VB NNS IN DT NN CC NNP POS NN . The U.S. military says Afghan police killed a senior militant commander this week in the central province of Ghazni . DT NNP NN VBZ JJ NN VBD DT JJ JJ NN DT NN IN DT JJ NN IN NNP . A military statement says Abdul Baki was killed Wednesday while police were conducting a search of his residence . DT JJ NN VBZ NNP NNP VBD VBN NNP IN NNS VBD VBG DT NN IN PRP$ NN . The statement says Baki was the top militant commander in Ghazni 's Andar district , leading a cell of 20 to 30 fighters who coordinated and carried out attacks on troops and government officials . DT NN VBZ NNP VBD DT JJ JJ NN IN NNP POS NNP NN , VBG DT NN IN CD TO CD NNS WP VBD CC VBD RP NNS IN NNS CC NN NNS . The statement says Baki attacked Afghan police with small-arms fire as they entered his residence . DT NN VBZ NNP VBD JJ NNS IN JJ NN IN PRP VBD PRP$ NN . The military says Afghan police discovered 50 voter registration cards in the compound . DT JJ VBZ JJ NNS VBD CD NN NN NNS IN DT NN . Authorities believe the cards were taken from villagers in order to prevent them from voting in the planned August presidential elections . NNS VBP DT NNS VBD VBN IN NNS IN NN TO VB PRP IN VBG IN DT JJ NNP JJ NNS . In a separate incident in Ghazni Wednesday , the U.S. military said seven militants were killed during an operation to cut the flow of weapons and fighters into eastern Afghanistan . IN DT JJ NN IN NNP NNP , DT NNP NN VBD CD NNS VBD VBN IN DT NN TO VB DT NN IN NNS CC NNS IN JJ NNP . The grandmother of U.S. Democratic presidential candidate Barack Obama has died from cancer . DT NN IN NNP JJ JJ NN NNP NNP VBZ VBN IN NN . Obama announced the death of long-ailing 86-year-old Madelyn Dunham Monday , just one day before voters went to the polls to elect a new president . NNP VBD DT NN IN JJ JJ NNP NNP NNP , RB CD NN IN NNS VBD TO DT NNS TO VB DT JJ NN . The Democratic candidate cried at a rally in North Carolina Monday when talking about the death of his grandmother , who helped raise him . DT JJ NN VBN IN DT NN IN NNP NNP NNP WRB VBG IN DT NN IN PRP$ NN , WP VBD VB PRP . Obama suspended his campaign for two days last month to visit Dunham in the U.S. Pacific island state of Hawaii . NNP VBD PRP$ NN IN CD NNS JJ NN TO VB NNP IN DT NNP NNP NN NN IN NNP . He said he feared she might not survive to see the historic election . PRP VBD PRP VBD PRP MD RB VB TO VB DT JJ NN . But although she did not live to see the outcome , Dunham 's vote - an absentee ballot - will count . CC IN PRP VBD RB VB TO VB DT NN , NNP POS NN IN DT NN NN : MD VB . Obama faces Republican Senator John McCain in the election Tuesday . NNP VBZ JJ NNP NNP NNP IN DT NN NNP . Kenyan authorities report that more than 1,000 teachers have been fired during the past two years for sexually abusing girls . JJ NNS VBP IN JJR IN CD NNS VBP VBN VBN IN DT JJ CD NNS IN RB VBG NNS . Education officials said the teachers have been dismissed for impregnating students and committing other sexual offenses . NNP NNS VBD DT NNS VBP VBN VBN IN VBG NNS CC VBG JJ JJ NNS . More of the cases have occurred in public schools . JJR IN DT NNS VBP VBN IN JJ NNS . In addition to being fired from their jobs , some of the teachers have faced criminal proceedings in courts . IN NN TO VBG VBN IN PRP$ NNS , DT IN DT NNS VBP VBN JJ NNS IN NNS . Officials said more than 500 teachers have been fired so far this year for committing sexual abuses , and that 600 were dismissed last year . NNS VBD JJR IN CD NNS VBP VBN VBN RB RB DT NN IN VBG JJ NNS , CC IN CD VBD VBN JJ NN . The U.S. State Department has renewed a warning to U.S. citizens about the dangers of traveling in Colombia . DT NNP NNP NNP VBZ VBN DT NN TO NNP NNS IN DT NNS IN VBG IN NNP . The department issued an updated travel warning for Colombia Friday . DT NN VBD DT VBN NN NN IN NNP NNP . It said there is potential for violence by terrorists and other criminals in all parts of the South American country . PRP VBD EX VBZ NN IN NN IN NNS CC JJ NNS IN DT NNS IN DT NNP NNP NN . According to the travel warning , violence has decreased in many urban areas , but small towns and rural areas can still be extremely dangerous . VBG TO DT NN NN , NN VBZ VBN IN JJ JJ NNS , CC JJ NNS CC JJ NNS MD RB VB RB JJ . The State Department also said kidnapping in Colombia has decreased from its peak at the beginning of the decade . DT NNP NNP RB VBD NN IN NNP VBZ VBN IN PRP$ NN IN DT NN IN DT NN . However , it said groups such as the FARC and the ELN , which are classified as terrorist groups by the United States , continue to kidnap civilians for ransom and political bargaining power . RB , PRP VBD NNS JJ IN DT NNP CC DT NNP , WDT VBP VBN IN JJ NNS IN DT NNP NNPS , VBP TO VB NNS IN NN CC JJ NN NN . On July 2 , the government of Colombia rescued 15 hostages who had been held for more than five years . IN NNP CD , DT NN IN NNP VBD CD NNS WP VBD VBN VBN IN JJR IN CD NNS . Three of the hostages were Americans . CD IN DT NNS VBD NNS . NATO has detained a former Bosnian Serb policeman suspected of helping war crimes suspects . NNP VBZ VBN DT JJ JJ JJ NN VBN IN VBG NN NNS NNS . NATO said Friday it suspects Dusan Tesic had valuable information about a network officials say has aided indicted war criminals . NNP VBD NNP PRP VBZ NNP NNP VBD JJ NN IN DT NN NNS VBP VBZ VBN VBN NN NNS . But it did not say whom he is suspected of helping . CC PRP VBD RB VB WP PRP VBZ VBN IN VBG . It was the second time this year NATO has held Mr. Tesic for questioning . PRP VBD DT JJ NN DT NN NNP VBZ VBN NNP NNP IN VBG . Thursday , the head of European Union peacekeepers in Bosnia said he was closing a bunker believed to have sheltered General Ratko Mladic , the former Bosnian Serb commander . NNP , DT NN IN NNP NNP NNS IN NNP VBD PRP VBD VBG DT NN VBN TO VB VBN NNP NNP NNP , DT JJ JJ JJ NN . Meanwhile , the French news agency says Serbia has decided to give the guarantees needed for the release of two war crimes suspects until their trial . RB , DT JJ NN NN VBZ NNP VBZ VBN TO VB DT NNS VBN IN DT NN IN CD NN NNS VBZ IN PRP$ NN . Serb ultra-nationalist Vojislav Seselj and General Dragomir Milosevic have been held in The Hague . JJ NN NNP NNP CC NNP NNP NNP VBP VBN VBN IN DT NNP . California Republican Governor Arnold Schwarzenegger and legislative Democrats have reached what he calls a ' historic agreement ' that would make the state the first to impose a limit on greenhouse gas emissions . NNP NNP NNP NNP NNP CC JJ NNS VBP VBN WP PRP VBZ DT `` JJ NN `` WDT MD VB DT NN DT JJ TO VB DT NN IN NN NN NNS . Governor Schwarzenegger and the lawmakers Wednesday agreed to the deal that would require major energy companies to reduce their carbon emissions within 14 years to 1990 levels . NNP NNP CC DT NNS NNP VBD TO DT NN WDT MD VB JJ NN NNS TO VB PRP$ NN NNS IN CD NNS TO CD NNS . California is aiming to reduce gas emissions by 25 percent . NNP VBZ VBG TO VB NN NNS IN CD NN . The bill still needs the approval of the state 's lawmakers . DT NN RB VBZ DT NN IN DT NN POS NNS . It is expected to pass as Democrats currently hold the majority in the state legislature . PRP VBZ VBN TO VB IN NNS RB VBP DT NN IN DT NN NN . Carbon gases trap heat in the atmosphere and scientists believe the gases contribute to global warming . NNP NNS VBZ NN IN DT NN CC NNS VBP DT NNS VBP TO JJ NN . California is the 12th largest producer of greenhouse gas emissions . NNP VBZ DT JJ JJS NN IN NN NN NNS . Zimbabwe has suspended exports of ostrich and other poultry after discovering a strain of avian flu that can be lethal to birds , but poses little risk to humans . NNP VBZ VBN NNS IN NN CC JJ NN IN VBG DT NN IN JJ NN WDT MD VB JJ TO NNS , CC VBZ JJ NN TO NNS . Thursday , Zimbabwe 's state-run newspaper The Herald reported that the H5N2 strain of avian flu was detected on two farms in Zimbabwe 's Matabeleland province . NNP , NNP POS JJ NN DT NNP VBD IN DT NNP NN IN JJ NN VBD VBN IN CD NNS IN NNP POS NNP NN . It quotes the state veterinary services director , Dr. Stuart Hargreaves , as saying the virus was confirmed with samples sent to South Africa . PRP VBZ DT NN JJ NNS NN , NNP NNP NNP , IN VBG DT NN VBD VBN IN NNS VBN TO NNP NNP . The H5N2 strain of avian flu is not known to pass from birds to humans , unlike the H5N1 strain that has killed nearly 70 people in Southeast Asia since 2003 . DT NNP NN IN JJ NN VBZ RB VBN TO VB IN NNS TO NNS , IN DT NNP NN WDT VBZ VBN RB CD NNS IN NNP NNP IN CD . Dr. Hargreaves says all of Zimbabwe 's ostrich farms have been placed under quarantine until a national survey can determine the full extent of virus outbreak . NNP NNP VBZ DT IN NNP POS JJ NNS VBP VBN VBN IN NN IN DT JJ NN MD VB DT JJ NN IN NN NN . The U.S. Geological Survey has reported a 7.1 magnitude earthquake some 300 kilometers off the coast of eastern Indonesia . DT NNP NNP NNP VBZ VBN DT CD NN NN DT CD NNS IN DT NN IN JJ NNP . Geologists say the quake is unlikely to cause a tsunami . NNS VBP DT NN VBZ JJ TO VB DT NN . There were no reports of casualties or damage , but the French news agency , AFP , says the Wednesday evening quake sparked panic among residents in several Indonesian provinces . EX VBD DT NNS IN NNS CC NN , CC DT JJ NN NN , NNP , VBZ DT NNP NN NN VBD NN IN NNS IN JJ JJ NNS . People in Australia also reported feeling tremors . NNS IN NNP RB VBD VBG NNS . Recovery workers in Indonesia are still pulling bodies from the rubble of cities devastated by the December 26 earthquake and tsunami . NNP NNS IN NNP VBP RB VBG NNS IN DT NN IN NNS VBN IN DT NNP CD NN CC NN . Jakarta 's official death count widely varies , but well over 1,00,000 people in Indonesia are believed to have died in the disaster . NNP POS JJ NN NN RB VBZ , CC RB IN CD NNS IN NNP VBP VBN TO VB VBN IN DT NN . China is defending its record of reporting human cases of bird flu following a newspaper report that local health officials may be hiding suspected cases . NNP VBZ VBG PRP$ NN IN VBG JJ NNS IN NN NN VBG DT NN NN IN JJ NN NNS MD VB VBG JJ NNS . China 's health ministry said Saturday that every human case of bird flu in China has been made public once confirmed . NNP POS NN NN VBD NNP IN DT JJ NN IN NN NN IN NNP VBZ VBN VBN JJ RB VBN . On Thursday , the Asian edition of The Wall Street Journal reported that local health officials in China had failed to report possible human cases of bird flu to the central government . IN NNP , DT JJ NN IN DT NNP NNP NNP VBD IN JJ NN NNS IN NNP VBD VBN TO VB JJ JJ NNS IN NN NN TO DT JJ NN . China announced its first human bird flu case last November . NNP VBD PRP$ JJ JJ NN NN NN JJ NNP . The country has reported 18 cases , including 12 deaths . DT NN VBZ VBN CD NNS , VBG CD NNS . China was widely accused of suppressing information about the 2003 Severe Acute Respiratory Syndrome ( SARS ) outbreak . NNP VBD RB VBN IN VBG NN IN DT CD NNP NNP NNP NNP LRB NNP RRB NN . The outbreak infected more than eight-thousand people and killed nearly 800 , mostly in China , between late 2002 and mid-2003 . DT NN VBD JJR IN CD NNS CC VBD RB CD , RB IN NNP , IN JJ CD CC CD . The United Nations has called a special meeting to address the effect of AIDS in southern Africa . DT NNP NNP VBZ VBN DT JJ NN TO VB DT NN IN NNP IN JJ NNP . U.N. officials say Wednesday 's meeting in Johannesburg , South Africa will focus on relief efforts and how to get badly-needed resources to the region to battle the growing epidemic . NNP NNS VBP NNP POS NN IN NNP , NNP NNP MD VB IN NN NNS CC WRB TO VB JJ NNS TO DT NN TO VB DT VBG NN . U.N. special envoy and World Food Program Executive Director James Morris will attend the meeting . NNP JJ NN CC NNP NNP NNP NNP NNP NNP NNP MD VB DT NN . Mr. Morris is currently on an 11-day , four-nation tour of southern Africa to call attention to the region 's problems with drought and AIDS . NNP NNP VBZ RB IN DT JJ , JJ NN IN JJ NNP TO VB NN TO DT NN POS NNS IN NN CC NNP . U.N. Children 's Fund chair Ann Veneman and U.N. AIDS chief Peter Piot are also expected to attend the meeting . NNP NNP POS NNP NN NNP NNP CC NNP NNP NN NNP NNP VBP RB VBN TO VB DT NN . U.N. figures show southern Africa is one of the world 's hardest-hit regions , with infection rates at nearly 40 percent in Botswana and Swaziland . NNP NNS VBP JJ NNP VBZ CD IN DT NN POS JJ NNS , IN NN NNS IN RB CD NN IN NNP CC NNP . South Africa 's infection rate is over 20 percent . NNP NNP POS NN NN VBZ IN CD NN . Surrounded by election staff and bodyguards , former commander of Iran 's elite Revolutionary Guard , Mohsen Rezaei , seated , registers as a presidential candidate in Tehran A hard-line conservative candidate says he is withdrawing from Iran 's presidential election . VBN IN NN NN CC NNS , JJ NN IN NNP POS NN NNP NNP , NNP NNP , VBN , VBZ IN DT JJ NN IN NNP DT JJ JJ NN VBZ PRP VBZ VBG IN NNP POS JJ NN . Mohsen Rezaei Wednesday said he is dropping out to avoid splitting voter support among several conservative candidates . NNP NNP NNP VBD PRP VBZ VBG RP TO VB NN NN NN IN JJ JJ NNS . The announcement comes just two days before Friday 's poll . DT NN VBZ RB CD NNS IN NNP POS NN . His exit leaves three hard-line conservatives in the race , as well as leading reform candidate Mostafa Moin , former president Akbar Hashemi Rafsanjani , and other lesser-known presidential hopefuls . PRP$ NN VBZ CD JJ NNS IN DT NN , RB RB IN VBG NN NN NNP NNP , JJ NN NNP NNP NNP , CC JJ JJ JJ NNS . President Mohammad Khatami is barred from running for a third consecutive term . NNP NNP NNP VBZ VBN IN VBG IN DT JJ JJ NN . Argentina has designated China as a ' market economy , ' a move that will limit the South American country 's ability to impose anti-dumping sanctions on Chinese exports . NNP VBZ VBN NNP IN DT `` NN NN , `` DT NN WDT MD VB DT NNP NNP NN POS NN TO VB JJ NNS IN JJ NNS . The decision comes after China and Argentina signed accords that could bring more than $ 20 billion in Chinese investment to Argentina over the next 10 years . DT NN VBZ IN NNP CC NNP VBD NNS WDT MD VB JJR IN $ CD CD IN JJ NN TO NNP IN DT JJ CD NNS . Brazil also granted China ' market economy ' status during a visit by Chinese President Hu Jintao last week . NNP RB VBD NNP `` NN NN `` NN IN DT NN IN JJ NNP NNP NNP JJ NN . On Wednesday , Argentina 's agriculture department announced that China will increase imports of Argentine beef , apples and pears over the next few years . IN NNP , NNP POS NN NN VBD IN NNP MD VB NNS IN JJ NN , NNS CC NNS IN DT JJ JJ NNS . Suspected Islamic militants have attacked security forces on both sides of the Afghanistan - Pakistan border . VBN JJ NNS VBP VBN NN NNS IN DT NNS IN DT NNP IN NNP NN . Officials in Pakistan 's North Waziristan tribal region say at least eight militants were killed in a gunfight with Pakistani troops Tuesday near the area 's main town of Miran Shah . NNS IN NNP POS NNP NNP JJ NN VBP IN JJS CD NNS VBD VBN IN DT NN IN JJ NNS NNP IN DT NN POS JJ NN IN NNP NNP . The militants ambushed a security convoy and killed one soldier before the troops returned fire . DT NNS VBD DT NN NN CC VBD CD NN IN DT NNS VBD NN . Earlier , militants shot to death two police officers in Miran Shah . RB , NNS VBD TO NN CD NN NNS IN NNP NNP . In neighboring Afghanistan , officials say suspected Taleban militants attacked a police post and a government office near the Pakistani border . IN VBG NNP , NNS VBP VBN NNP NNS VBD DT NN NN CC DT NN NN IN DT JJ NN . Two police officers were killed . CD NNS NNS VBD VBN . Authorities say several Taleban were also killed , but it is not clear how many . NNS VBP JJ NNP VBD RB VBN , CC PRP VBZ RB JJ WRB JJ . Militants linked to the Taleban and al-Qaida have been active along Pakistan 's rugged northwestern border with Afghanistan since a U.S.-led invasion forced the Taleban from power in Afghanistan in late 2001 . NNS VBN TO DT NNP CC NNP VBP VBN JJ IN NNP POS JJ JJ NN IN NNP IN DT JJ NN VBD DT NNP IN NN IN NNP IN JJ CD . Intelligence officials in Pakistan say a suspected U.S. drone has fired missiles into a Taliban training camp in northwest Pakistan , killing as many as 14 militants . NNP NNS IN NNP VBP DT JJ NNP NN VBZ VBN NNS IN DT NNP NN NN IN JJ NNP , VBG RB JJ IN CD NNS . Officials say the attack took place Tuesday in South Waziristan , along the country 's border with Afghanistan . NNS VBP DT NN VBD NN NNP IN NNP NNP , IN DT NN POS NN IN NNP . The area is a stronghold of Baitullah Mehsud , a top Taliban leader and al-Qaida ally wanted by both Pakistan and the United States . DT NN VBZ DT NN IN NNP NNP , DT JJ NNP NN CC NNP NN VBN IN DT NNP CC DT NNP NNPS . Mehsud is blamed for scores of attacks against government and civilian targets , and is believed to be a key facilitator for al-Qaida fighters in Pakistan . NNP VBZ VBN IN NNS IN NNS IN NN CC JJ NNS , CC VBZ VBN TO VB DT JJ NN IN NNP NNS IN NNP . Pakistan 's military has been fighting Taliban militants throughout the country 's northwest for more than two months . NNP POS NN VBZ VBN VBG NNP NNS IN DT NN POS JJS IN JJR IN CD NNS . Islamabad deployed soldiers there to stop insurgents from fleeing into Pakistan after a major U.S. offensive against the Taliban in Afghanistan 's southern Helmand province , which borders Pakistan . NNP VBD NNS RB TO VB NNS IN VBG IN NNP IN DT JJ NNP NN IN DT NNP IN NNP POS JJ NNP NN , WDT VBZ NNP . Palestinian officials said President Mahmoud Abbas will meet with U.S. President Barack Obama in Washington on May 28 . JJ NNS VBD NNP NNP NNP MD VB IN NNP NNP NNP NNP IN NNP IN NNP CD . On Tuesday , the White House announced Mr. Obama has invited the Israeli , Palestinian and Egyptian leaders for talks in the coming weeks . IN NNP , DT NNP NNP VBD NNP NNP VBZ VBN DT JJ , JJ CC JJ NNS IN NNS IN DT JJ NNS . President Obama has said he expects the Israelis and Palestinians to make ' gestures of good faith ' in the coming months , in an effort to revive the Middle East peace process . NNP NNP VBZ VBN PRP VBZ DT NNS CC NNS TO VB `` NNS IN JJ NN `` IN DT JJ NNS , IN DT NN TO VB DT NNP NNP NN NN . Mr. Obama said he is a strong supporter of a two-state solution and that perpetuating the decades-long Israeli-Palestinian conflict is not in the interest of the people in the region . NNP NNP VBD PRP VBZ DT JJ NN IN DT JJ NN CC IN VBG DT JJ JJ NN VBZ RB IN DT NN IN DT NNS IN DT NN . ' The Washington Post ' on Wednesday quoted top Israeli officials as saying they will not move ahead on the peace talks until they see progress on U.S. efforts to stop Iran 's suspected pursuit of nuclear weapons and limit Tehran 's regional influence . `` DT NNP NNP `` IN NNP VBD JJ JJ NNS IN VBG PRP MD RB VB RB IN DT NN NNS IN PRP VBP NN IN NNP NNS TO VB NNP POS JJ NN IN JJ NNS CC VB NNP POS JJ NN . China says it will buy 150 passenger jets from Airbus in a deal worth almost $ 10 billion . NNP VBZ PRP MD VB CD NN NNS IN NNP IN DT NN NN RB $ CD CD . It is the largest single order Airbus has ever gotten from China . PRP VBZ DT JJS JJ NN NNP VBZ RB VBN IN NNP . The agreement was signed Monday in Paris as Chinese Premier Wen Jiabao and his French counterpart , Dominique de Villepin , looked on . DT NN VBD VBN NNP IN NNP IN JJ NNP NNP NNP CC PRP$ JJ NN , NNP NNP NNP , VBD IN . On Sunday , Mr. Wen toured an Airbus manufacturing plant and signed an agreement that may lead to opening an aircraft assembly plant in China . IN NNP , NNP NNP VBD DT NNP NN NN CC VBD DT NN WDT MD VB TO VBG DT NN NN NN IN NNP . The planes in the French deal are part of the A-320 family that can carry between 110 and 185 passengers . DT NNS IN DT JJ NN VBP NN IN DT NNP NN WDT MD VB IN CD CC CD NNS . China bought 70 jets from the U.S. manufacturer Boeing during President Bush 's trip to Beijing last month . NNP VBD CD NNS IN DT NNP NN NNP IN NNP NNP POS NN TO NNP JJ NN . Haitian President Rene Preval has chosen an official with the Inter-American Development Bank to be the country 's new prime minister . JJ NNP NNP NNP VBZ VBN DT NN IN DT NNP NNP NNP TO VB DT NN POS JJ JJ NN . Reports from Port-au-Prince say President Preval named Ericq Pierre to the post Sunday . NNS IN NN VBP NNP NNP VBD NNP NNP TO DT NN NNP . Mr. Pierre 's appointment must be ratified by legislators . NNP NNP POS NN MD VB VBN IN NNS . Earlier this month , lawmakers dismissed Prime Minister Jacques Edouard Alexis to quell violent protests over rising food prices in the impoverished Caribbean nation . RBR DT NN , NNS VBD NNP NNP NNP NNP NNP TO VB JJ NNS IN VBG NN NNS IN DT JJ JJ NN . The legislators said Mr. Alexis had not done enough to improve the economy or keep soaring food prices under control . DT NNS VBD NNP NNP VBD RB VBN RB TO VB DT NN CC VB VBG NN NNS IN NN . At least six people , including a United Nations peacekeeper , were killed as violence erupted in the capital as well as the city of Les Cayes over the cost of food . IN JJS CD NNS , VBG DT NNP NNP NN , VBD VBN IN NN VBD IN DT NN RB RB IN DT NN IN NNP NNP IN DT NN IN NN . Haiti is the poorest country in the Western Hemisphere and has a history of political turmoil . NNP VBZ DT JJS NN IN DT JJ NNP CC VBZ DT NN IN JJ NN . Ukrainian authorities have imposed a quarantine on districts of Crimea affected by the country 's first outbreak of bird flu . JJ NNS VBP VBN DT NN IN NNS IN NNP VBN IN DT NN POS JJ NN IN NN NN . Officials ordered the slaughter of all poultry in five affected villages after officials confirmed the discovery of dead birds infected with an H5 strain of bird flu . NNS VBD DT NN IN DT NN IN CD JJ NNS IN NNS VBD DT NN IN JJ NNS VBN IN DT NNP NN IN NN NN . Authorities are now sending samples to Britain and Italy to determine whether it is the deadly H5N1 strain that has killed nearly 70 people in Asia since 2003 . NNS VBP RB VBG NNS TO NNP CC NNP TO VB IN PRP VBZ DT JJ NNP NN WDT VBZ VBN RB CD NNS IN NNP IN CD . In Indonesia , officials said the World Health Organization has confirmed the country 's eighth human death from bird flu . IN NNP , NNS VBD DT NNP NNP NNP VBZ VBN DT NN POS JJ JJ NN IN NN NN . The officials said Saturday tests conducted at a laboratory in Hong Kong show that a 25-year-old woman who died earlier this week had the H5N1 strain . DT NNS VBD NNP NNS VBN IN DT NN IN NNP NNP VBP IN DT JJ NN WP VBD RBR DT NN VBD DT NNP NN . Health experts fear the virus could mutate into a form that could be easily transmitted between humans and kill millions of people . NN NNS VBP DT NN MD VB IN DT NN WDT MD VB RB VBN IN NNS CC VB NNS IN NNS . Rwandan President Paul Kagame says he disagrees with a U.N. plan for voluntary disarmament of Rwandan rebels based in the neighboring Democratic Republic of Congo . JJ NNP NNP NNP VBZ PRP VBZ IN DT NNP NN IN JJ NN IN JJ NNS VBN IN DT JJ NNP NNP IN NNP . Mr. Kagame says asking the ethnic Hutu rebels to voluntarily disarm is not an attainable goal . NNP NNP VBZ VBG DT JJ NNP NNS TO RB VB VBZ RB DT JJ NN . He spoke Sunday in Kigali , after conferring with a delegation of U.N. Security Council members who are touring African nations affected by a decade of ethnic strife in the continent 's Great Lakes region . PRP VBD NNP IN NNP , IN VBG IN DT NN IN NNP NNP NNP NNS WP VBP VBG JJ NNS VBN IN DT NN IN JJ NN IN DT NN POS NNP NNP NN . President Kagame also criticized a recent U.N. decision to bolster its peacekeeping force in Congo by some 6,000 troops . NNP NNP RB VBD DT JJ NNP NN TO VB PRP$ NN NN IN NNP IN DT CD NNS . He said the issue is not increasing the numbers of U.N. troops , but having a clear definition of what the troops will do once they are in place . PRP VBD DT NN VBZ RB VBG DT NNS IN NNP NNS , CC VBG DT JJ NN IN WP DT NNS MD VB RB PRP VBP IN NN . U.S. authorities say they have arrested a Mexican national alleged to be the leader of an international drug-trafficking ring . NNP NNS VBP PRP VBP VBN DT JJ NN VBN TO VB DT NN IN DT JJ NN NN . The U.S. Drug Enforcement Administration says authorities arrested Augustin Haro-Rodriguez late Sunday as he tried to cross from Mexico into the southwestern U.S. state of Arizona . DT NNP NNP NNP NNP VBZ NNS VBN NNP NNP JJ NNP IN PRP VBD TO VB IN NNP IN DT JJ NNP NN IN NNP . An indictment unsealed after the arrest said Mr. Haro-Rodriguez 's organization smuggled nearly 5,000 kilograms of cocaine into the United States between March , 2004 , and July , 2005 . DT NN VBD IN DT NN VBD NNP NNP POS NN VBD RB CD NNS IN NN IN DT NNP NNPS IN NNP , CD , CC NNP , CD . Prosecutors say 17 members of the smuggling ring are now in custody . NNS VBP CD NNS IN DT NN NN VBP RB IN NN . If convicted , Mr. Haro-Rodriguez faces a possible sentence of life in prison . IN VBN , NNP NNP VBZ DT JJ NN IN NN IN NN . Iraqi medical officials say seven people have been killed in fresh clashes between Shi'ite fighters and U.S. forces in Baghdad 's Shi'ite stronghold of Sadr City . JJ JJ NNS VBP CD NNS VBP VBN VBN IN JJ NNS IN NNP NNS CC NNP NNS IN NNP POS NNP NN IN NNP NNP . At least 20 other people were wounded in Thursday 's fighting . IN JJS CD JJ NNS VBD VBN IN NNP POS NN . U.S. and Iraqi forces have fought fierce battles in Sadr City against Shi'ite militiamen loyal to radical cleric Moqtada al-Sadr for the past month . NNP CC JJ NNS VBP VBN JJ NNS IN NNP NNP IN NNP NNS JJ TO JJ NN NNP NNP IN DT JJ NN . At least 30,000 people attended the funeral Saturday of a Pakistani student who died in German police custody . IN JJS CD NNS VBD DT JJ NNP IN DT JJ NN WP VBD IN JJ NN NN . Twenty-eight-year-old Amir Cheema was arrested in March on charges of attempting to kill the editor of ' Die Welt ' newspaper for reprinting cartoons of the Prophet Muhammad , first published in Denmark last year . JJ NNP NNP VBD VBN IN NNP IN NNS IN VBG TO VB DT NN IN `` NNP NNP `` NN IN VBG NNS IN DT NNP NNP , RB VBN IN NNP JJ NN . German police say Cheema hanged himself in his Berlin jail on May 3 . JJ NNS VBP NNP VBD PRP IN PRP$ NN NN IN NNP CD . After Cheema 's body arrived in Lahore from Germany Saturday , a military helicopter flew his coffin to the family home in the village of Saroki . IN NNP POS NN VBD IN NNP IN NNP NNP , DT JJ NN VBD PRP$ NN TO DT NN NN IN DT NN IN NNP . Officials say the tens of thousands of mourners dispersed peacefully after the funeral . NNS VBP DT NNS IN NNS IN NNS VBD RB IN DT NN . A new report says the industrial world 's economy is recovering faster than expected , but still faces risks from the debt crisis and the possible overheating of emerging economies . DT JJ NN VBZ DT JJ NN POS NN VBZ VBG RBR IN VBN , CC RB VBZ NNS IN DT NN NN CC DT JJ NN IN VBG NNS . The Organization for Economic Cooperation and Development , which includes the world 's 30 richest nations , says its member economies will grow 2.7 percent this year , which is eight-tenths of a percentage point faster than earlier predictions . DT NNP IN NNP NNP CC NNP , WDT VBZ DT NN POS CD JJS NNS , VBZ PRP$ NN NNS MD VB CD NN DT NN , WDT VBZ NNS IN DT NN NN RBR IN JJR NNS . The OECD says the nations that use the euro will expand more slowly ( 1.2 percent ) . DT NNP VBZ DT NNS WDT VBP DT NN MD VB RBR RB LRB CD NN RRB . The report 's authors call on European nations to take ' bolder ' measures to cope with debt and other issues . DT NN POS NNS VBP IN JJ NNS TO VB `` JJR `` NNS TO VB IN NN CC JJ NNS . The report also says trade flows are rising again and strong growth in China and other emerging nations is helping to pull other countries out of recession . DT NN RB VBZ NN NNS VBP VBG RB CC JJ NN IN NNP CC JJ VBG NNS VBZ VBG TO VB JJ NNS IN IN NN . But the OECD cautions that emerging economies should be careful to avoid the threat of inflation . CC DT NNP NNS IN VBG NNS MD VB JJ TO VB DT NN IN NN . The United Nations says it will stop distributing food to Palestinian refugees in the Gaza Strip on Monday , because its vehicles have run out of fuel . DT NNP NNP VBZ PRP MD VB VBG NN TO JJ NNS IN DT NNP NNP IN NNP , IN PRP$ NNS VBP VBN IN IN NN . Gaza has been suffering fuel shortages because of Israeli cutbacks in fuel supplies to the territory and a strike by Palestinian fuel distributors . NNP VBZ VBN VBG NN NNS IN IN JJ NNS IN NN NNS TO DT NN CC DT NN IN JJ NN NNS . Israeli authorities closed a border terminal that supplies fuel to Gaza Sunday after it came under mortar attack from Palestinian militants . JJ NNS VBD DT NN NN WDT VBZ NN TO NNP NNP IN PRP VBD IN NN NN IN JJ NNS . The U.N. Relief and Works Agency suspended food distribution to Gaza refugees for four days last month due to the lack of fuel . DT NNP NNP CC NNP NNP VBD NN NN TO NNP NNS IN CD NNS JJ NN JJ TO DT NN IN NN . It resumed the aid operation last Tuesday . PRP VBD DT NN NN JJ NNP . Israeli authorities have reduced fuel supplies to Gaza to pressure Palestinian militants to stop rocket attacks on southern Israel . JJ NNS VBP VBN NN NNS TO NNP TO VB JJ NNS TO VB NN NNS IN JJ NNP . Gaza fuel distributors went on strike to protest the cutbacks . NNP NN NNS VBD IN NN TO VB DT NNS . Chinese officials say a gas explosion that tore through a mine shaft in northern China has killed at least 16 miners and left at least seven others missing . JJ NNS VBP DT NN NN WDT VBD IN DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD NNS VBG . The official Xinhua news agency says 83 miners were in the mine at the time of Wednesday 's explosion in Shanxi province , but 54 escaped . DT JJ NNP NN NN VBZ CD NNS VBD IN DT NN IN DT NN IN NNP POS NN IN NNP NN , CC CD VBD . Shanxi province is one of China 's biggest coal-producing regions , and mining accidents are common . NNP NN VBZ CD IN NNP POS JJS JJ NNS , CC NN NNS VBP JJ . China has the most dangerous mining industry in the world . NNP VBZ DT RBS JJ NN NN IN DT NN . At least 6,000 Chinese mine workers died on the job last year . IN JJS CD JJ NN NNS VBD IN DT NN JJ NN . French officials say they want to get in contact with al-Qaida-linked militants in hopes of gaining the release of five French nationals and two Africans kidnapped in Niger last week . JJ NNS VBP PRP VBP TO VB IN NN IN JJ NNS IN NNS IN VBG DT NN IN CD JJ NNS CC CD NNS VBN IN NNP JJ NN . Defense Minister Herve Morin said Thursday that France has every reason to believe the hostages are still alive and that they probably have been taken to northern Mali . NN NN NNP NNP VBD NNP IN NNP VBZ DT NN TO VB DT NNS VBP RB JJ CC IN PRP RB VBP VBN VBN TO JJ NNP . France has flown search missions over the Sahara in hopes of locating the victims . NNP VBZ VBN NN NNS IN DT NNP IN NNS IN VBG DT NNS . North Africa 's al-Qaida in the Islamic Maghreb claimed responsibility for the kidnapping . NNP NNP POS NNP IN DT NNP NNP VBD NN IN DT NN . The hostages include two employees of the French nuclear energy firm Areva and five with a subsidiary of the French construction company Vinci . DT NNS VBP CD NNS IN DT JJ JJ NN NN NNP CC CD IN DT NN IN DT JJ NN NN NNP . The group has warned the French government against doing what it described as anything ' stupid . ' DT NN VBZ VBN DT JJ NN IN VBG WP PRP VBD IN DT `` JJ . `` The al-Qaida group has carried out previous kidnappings in the region , including that of a 78-year-old Frenchman who was abducted in Niger in April and later killed . DT NNP NN VBZ VBN RP JJ NNS IN DT NN , VBG IN IN DT JJ NN WP VBD VBN IN NNP IN NNP CC RB VBD . The U.S. state of Connecticut began issuing marriage licenses to same-sex couples Wednesday , making it the second state in the nation to permit gay marriage . DT NNP NN IN NNP VBD VBG NN NNS TO JJ NNS NNP , VBG PRP DT JJ NN IN DT NN TO VB JJ NN . Superior Court judge Jonathan Silbert cleared the way for same-sex unions earlier today , just over a week after Californian voters banned gay marriage in their state . NNP NNP NN NNP NNP VBD DT NN IN JJ NNS RBR NN , RB IN DT NN IN JJ NNS VBD JJ NN IN PRP$ NN . Justices of the peace in Connecticut began issuing marriage licenses to gay couples immediately following today 's ruling . NNS IN DT NN IN NNP VBD VBG NN NNS TO JJ NNS RB VBG NN POS NN . The Connecticut Supreme Court ruled last month that same-sex marriage is legal . DT NNP NNP NNP VBD JJ NN IN JJ NN VBZ JJ . Voters last week rejected a ballot initiative to ban same-sex marriages in the state . NNS JJ NN VBD DT NN NN TO VB JJ NNS IN DT NN . Same-sex marriages are also legal in Massachusetts . JJ NNS VBP RB JJ IN NNP . Gay marriage was legal in California until last week , when voters approved a measure to ban it . NN NN VBD JJ IN NNP IN JJ NN , WRB NNS VBD DT NN TO VB PRP . Similar bans passed last week in Arizona and Florida . JJ NNS VBN JJ NN IN NNP CC NNP . The social-conservative group Family Institute of Connecticut says it will continue to work to ban gay marriage in the state . DT JJ NN NNP NNP IN NNP VBZ PRP MD VB TO VB TO VB JJ NN IN DT NN . The U.S. Congress is considering an additional $ 51.8 billion in emergency aid for Hurricane Katrina relief operations . DT NNP NNP VBZ VBG DT JJ $ CD CD IN NN NN IN NNP NNP NN NNS . After talks with President Bush at the White House Thursday , Senate Majority Leader Bill Frist said Congress is responding aggressively to the disaster , and working to address the short and long-term needs of the victims . IN NNS IN NNP NNP IN DT NNP NNP NNP , NNP NNP NNP NNP NNP VBD NNP VBZ VBG RB TO DT NN , CC VBG TO VB DT JJ CC JJ NNS IN DT NNS . Meanwhile , Senate Democratic Minority Leader Harry Reid accused Republicans of having a flawed plan for recovery , saying most of the money should not go to the Federal Emergency Management Agency . RB , NNP NNP NNP NNP NNP NNP VBD NNS IN VBG DT JJ NN IN NN , VBG JJS IN DT NN MD RB VB TO DT NNP NNP NNP NNP . Opposition Democrats and others have slammed FEMA for what they say was a slow response to the disaster . NNP NNPS CC NNS VBP VBN NNP IN WP PRP VBP VBD DT JJ NN TO DT NN . The Bush administration says the spending bill is the latest installment in a costly relief effort . DT NNP NN VBZ DT NN NN VBZ DT JJS NN IN DT JJ NN NN . President Bush last week signed an aid package of $ 10.5 billion . NNP NNP JJ NN VBD DT NN NN IN $ CD CD . A newspaper reports oil company BP was alerted two years ago to problems that caused a major pipeline shut down in Alaska . DT NN VBZ NN NN NNP VBD VBN CD NNS IN TO NNS WDT VBD DT JJ NN VB RP IN NNP . Wednesday 's Financial Times reports that a BP workers ' advocate , Chuck Hamel , wrote about employee concerns in a letter to the chairman of BP 's environment committee , Walter Massey . NNP POS NNP NNP VBZ IN DT NNP NNS POS NN , NNP NNP , VBD IN NN NNS IN DT NN TO DT NN IN NNP POS NN NN , NNP NNP . The newspaper says the letter raised concerns about corrosion inside the oil pipeline . DT NN VBZ DT NN VBD NNS IN NN IN DT NN NN . Members of the U.S. Congress have called for hearings to investigate BP 's operations at Alaska 's Prudhoe Bay oil field . NNS IN DT NNP NNP VBP VBN IN NNS TO VB NNP POS NNS IN NNP POS NNP NNP NN NN . Democrats on the House Energy and Commerce Committee have said they will examine the shutdown which cut U.S. oil production by about eight percent . NNS IN DT NNP NNP CC NNP NNP VBP VBN PRP MD VB DT NN WDT VBD NNP NN NN IN IN CD NN . Hearings are set for next month when Congress returns from a recess . NNS VBP VBN IN JJ NN WRB NNP VBZ IN DT NN . U.S. government regulators have approved a new partial artificial heart designed to help some patients as they wait for a heart transplant . NNP NN NNS VBP VBN DT JJ JJ JJ NN VBN TO VB DT NNS IN PRP VBP IN DT NN NN . The Food and Drug Administration announced its approval of the new device Monday . DT NNP CC NNP NNP VBD PRP$ NN IN DT JJ NN NNP . The mechanical device is designed to replace the lower part of a diseased heart , and keep patients alive while they await a donor heart for a transplant . DT JJ NN VBZ VBN TO VB DT JJR NN IN DT JJ NN , CC VB NNS JJ IN PRP VBP DT NN NN IN DT NN . The device is implanted in the patient and connected to an outside power source . DT NN VBZ VBN IN DT NN CC VBN TO DT JJ NN NN . The company that manufactures the new device - Syncardia Systems of Tucson , Arizona , in the southwestern U.S. - says it tested it on 81 patients . DT NN WDT VBZ DT JJ NN IN NNP NNP IN NNP , NNP , IN DT JJ NNP : VBZ PRP VBD PRP IN CD NNS . It says it kept 79 of them alive more than two months until donor hearts could be found . PRP VBZ PRP VBD CD IN PRP JJ RBR IN CD NNS IN NN NNS MD VB VBN . Turkish media report police have detained nearly 30 people suspected of links to the al-Qaida terror network . JJ NNS NN NNS VBP VBN RB CD NNS VBN IN NNS TO DT NNP NN NN . Turkey 's state news agency , Anatolia , quoted a local governor as saying 28 suspects were nabbed in simultaneous operations in several districts of Eskisehir province Thursday . NNP POS NN NN NN , NNP , VBD DT JJ NN IN VBG CD NNS VBD VBN IN JJ NNS IN JJ NNS IN NNP NN NNP . Governor Mehmet Kiliclar said they are now being questioned by police . NNP NNP NNP VBD PRP VBP RB VBG VBN IN NNS . In January this year , a suspected al-Qaida terrorist was killed , and three were captured , in a shootout with police during a robbery attempt in Istanbul . IN NNP DT NN , DT VBN NNP NN VBD VBN , CC CD VBD VBN , IN DT NN IN NNS IN DT NN NN IN NNP . Al-Qaida was blamed for a series of bomb attacks in Istanbul that killed more than 60 people in 2003 . NNP VBD VBN IN DT NN IN NN NNS IN NNP WDT VBD JJR IN CD NNS IN CD . Afghan authorities have discovered the bodies of two intelligence agents kidnapped by suspected Taleban militants earlier this week . JJ NNS VBP VBN DT NNS IN CD NN NNS VBN IN JJ NNP NNS RBR DT NN . Officials said Wednesday the men were abducted while on a mission in western Farah province , and their bodies were dumped in the desert . NNS VBD NNP DT NNS VBD VBN IN IN DT NN IN JJ NNP NN , CC PRP$ NNS VBD VBN IN DT NN . They said members of the ousted Taleban were likely behind the killings . PRP VBD NNS IN DT JJ NNP VBD JJ IN DT NNS . Meanwhile , police in central Ghazni province arrested a Taleban commander , Mullah Nazer Shah , after his men set fire to a school . RB , NNS IN JJ NNP NN VBN DT NNP NN , NNP NNP NNP , IN PRP$ NNS VBD NN TO DT NN . Officials have blamed Taleban rebels for a series of attacks on educational facilities , including fires at a dozen schools and the killing of several teachers . NNS VBP VBN NNP NNS IN DT NN IN NNS IN JJ NNS , VBG NNS IN DT NN NNS CC DT NN IN JJ NNS . In other developments , 150 British troops have arrived in southern Helmand province to form part of a NATO peacekeeping mission . IN JJ NNS , CD JJ NNS VBP VBN IN JJ NNP NN TO VB NN IN DT NNP NN NN . Britain has pledged 3,300 soldiers to the expanded NATO mission planned for Helmand . NNP VBZ VBN CD NNS TO DT JJ NNP NN VBN IN NNP . Afghan authorities say suspected Taleban insurgents have attacked a police post in southern part of the country , killing three policemen , while a rocket landed near a top hotel in the capital , Kabul . JJ NNS VBP VBN NNP NNS VBP VBN DT NN NN IN JJ NN IN DT NN , VBG CD NNS , IN DT NN VBD IN DT JJ NN IN DT NN , NNP . The authorities say an unknown number of militants were involved in the assault late Saturday in southern Helmand province that sparked an hour-long exchange of fire . DT NNS VBP DT JJ NN IN NNS VBD VBN IN DT NN JJ NNP IN JJ NNP NN WDT VBD DT JJ NN IN NN . Security forces launched a manhunt for the attackers . NN NNS VBD DT NN IN DT NNS . The Taleban has claimed responsibility for the attack . DT NNP VBZ VBN NN IN DT NN . Also late Saturday , a rocket was fired at a Kabul hotel where foreigners often stay , but no one was hurt . RB JJ NNP , DT NN VBD VBN IN DT NNP NN WRB NNS RB VBP , CC DT NN VBD VBN . Helmand province has seen some of the fiercest fighting in recent months . NNP NN VBZ VBN DT IN DT JJS NN IN JJ NNS . Last week , 150 British troops arrived in the province to form part of a NATO peacekeeping mission . JJ NN , CD JJ NNS VBD IN DT NN TO VB NN IN DT NNP NN NN . The Obama administration says it plans to approve more than $ 6 billion in arms sales to Taiwan . DT NNP NN VBZ PRP VBZ TO VB JJR IN $ CD CD IN NNS NNS TO NNP . The Pentagon 's Defense Cooperation Security Agency says it has notified Congress of possible sales that include 60 Black Hawk helicopters and technical and other related logistics support , worth an estimated $ 3.1 billion . DT NNP POS NNP NNP NNP NNP VBZ PRP VBZ VBN NNP IN JJ NNS WDT VBP CD NNP NNP NNS CC JJ CC JJ JJ NNS NN , IN DT VBN $ CD CD . The agency says the possible sale includes 114 Patriot advanced capability missiles , radar sets and other related equipment and services , worth $ 2.8 billion , two Osprey class mine-hunting ships , and other related support and services , for an estimated cost of $ 105 million . DT NN VBZ DT JJ NN VBZ CD NNP JJ NN NNS , NN NNS CC JJ JJ NN CC NNS , JJ $ CD CD , CD NNP NN NN NNS , CC JJ JJ NN CC NNS , IN DT JJ NN IN $ CD CD . In the notification released Friday , the agency detailed other military hardware and services worth $ 37 million . IN DT NN VBN NNP , DT NN VBN JJ JJ NN CC NNS JJ $ CD CD . China considers self-ruled Taiwan as its sovereign territory , and usually reacts with anger at official contacts between the island and any nation . NNP VBZ JJ NNP IN PRP$ JJ NN , CC RB VBZ IN NN IN JJ NNS IN DT NN CC DT NN . Beijing has threatened to use military force if Taiwan attempts to claim formal independence . NNP VBZ VBN TO VB JJ NN IN NNP VBZ TO VB JJ NN . Turkey 's parliament on Tuesday extended the mandate that allows the military to strike at Kurdish separatist rebels based in neighboring northern Iraq . NNP POS NN IN NNP VBD DT NN WDT VBZ DT JJ TO VB IN NNP JJ NNS VBN IN VBG JJ NNP . The move to extend the mandate by one year coincides with Turkish government efforts to garner support for reforms to boost the rights of Kurds and encourage the rebels to lay down their arms . DT NN TO VB DT NN IN CD NN VBZ IN JJ NN NNS TO VB NN IN NNS TO VB DT NNS IN NNPS CC VB DT NNS TO VB RP PRP$ NNS . Turkish warplanes and artillery units have staged a series of attacks on rebel bases in northern Iraq during the past two years , as part of Turkey 's battle against the outlawed Kurdistan Workers ' Party , or PKK . JJ NNS CC NN NNS VBP VBN DT NN IN NNS IN NN NNS IN JJ NNP IN DT JJ CD NNS , IN NN IN NNP POS NN IN DT JJ NNP NNP POS NNP , CC NNP . The PKK has been fighting for Kurdish autonomy in southeastern Turkey for 25 years . DT NNP VBZ VBN VBG IN NNP NN IN JJ NNP IN CD NNS . The conflict has killed more than 30,000 people . DT NN VBZ VBN JJR IN CD NNS . Turkey and much of the international community consider the PKK a terrorist group . NNP CC NN IN DT JJ NN VBP DT NNP DT JJ NN . The United Nations Security Council is stepping up pressure on Liberia to freeze the assets of accused former president Charles Taylor . DT NNP NNP NNP NNP VBZ VBG RP NN IN NNP TO VB DT NNS IN VBN JJ NN NNP NNP . The 15-member Council on Friday approved a resolution on sanctions that aim to eliminate funds for conflicts through the sale of illegally mined diamonds . DT JJ NN IN NNP VBD DT NN IN NNS WDT VBP TO VB NNS IN NNS IN DT NN IN RB VBN NNS . Taylor allegedly used profits from so-called ' blood diamonds ' to fund years of civil war in Liberia and neighboring Sierra Leone . NNP RB VBD NNS IN JJ `` NN NNS `` TO VB NNS IN JJ NN IN NNP CC JJ NNP NNP . The former Liberian president is facing 11 charges for allegedly instigating a rebel campaign of rape , murder and mutilation in neighboring Sierra Leone that killed more than 1,00,000 people during a decade-long civil war , which started in the late 1990s . DT JJ JJ NN VBZ VBG CD NNS IN RB VBG DT NN NN IN NN , NN CC NN IN JJ NNP NNP WDT VBD JJR IN CD NNS IN DT JJ JJ NN , WDT VBD IN DT JJ NNS . Taylor is currently on trial for war crimes in the Hague , the Netherlands . NNP VBZ RB IN NN IN NN NNS IN DT NNP , DT NNP . The court has set February 8 for the prosecution and defense to start their concluding arguments . DT NN VBZ VBN NNP CD IN DT NN CC NN TO VB PRP$ VBG NNS . Diplomats say Southeast Asian nations are not able to agree on setting up a human rights commission , and on sanctions against members who fail to obey their regional bloc 's rules . NNS VBP JJ JJ NNS VBP RB JJ TO VB IN VBG RP DT JJ NNS NN , CC IN NNS IN NNS WP VBP TO VB PRP$ JJ NN POS NNS . Negotiators meeting in the Philippines are rushing to complete a draft of the Association of Southeast Asian Nation 's first charter before foreign ministers from the 10-nation group meet Sunday . NNS NN IN DT NNPS VBP VBG TO VB DT NN IN DT NNP IN NNP NNP NNP POS JJ NN IN JJ NNS IN DT JJ NN VB NNP . The bloc has agreed on most of the charter , which will help to turn the group into a rules-based organization along the lines of the European Union . DT NN VBZ VBN IN JJS IN DT NN , WDT MD VB TO VB DT NN IN DT JJ NN IN DT NNS IN DT NNP NNP . A key sticking point is Burma , which has long been a problem for ASEAN , because of the country 's poor human rights record and its detention of activists , including Nobel Peace Prize laureate Aung San Suu Kyi . DT JJ NN NN VBZ NNP , WDT VBZ RB VBN DT NN IN NNP , IN IN DT NN POS JJ JJ NNS NN CC PRP$ NN IN NNS , VBG NNP NNP NNP NN NNP NNP NNP NNP . Until now , ASEAN has operated without a constitution , choosing to rely on informal diplomacy and decision-making by consensus . IN RB , NNP VBZ VBN IN DT NN , VBG TO VB IN JJ NN CC NN IN NN . As the tsunami disaster in South Asia continues to unfold , millions of people are turning to the Internet for news updates - or to search for missing relatives . IN DT NN NN IN NNP NNP VBZ TO VB , NNS IN NNS VBP VBG TO DT NN IN NN NNS : CC TO VB IN VBG NNS . Several weblogs , or ' blogs ' have been created in the days since the tragedy dedicated to providing first-hand accounts of the disaster . JJ NNS , CC `` NNS `` VBP VBN VBN IN DT NNS IN DT NN VBN TO VBG JJ NNS IN DT NN . Many websites have set up message boards for families who are searching for loved ones who either live or were vacationing in those countries . JJ NNS VBP VBN RP NN NNS IN NNS WP VBP VBG IN VBN NNS WP RB VBP CC VBD VBG IN DT NNS . The Internet has also been used to raise money for organizations involved in the relief efforts . DT NNP VBZ RB VBN VBN TO VB NN IN NNS VBN IN DT NN NNS . Internet retailer Amazon.com raised more than $ 4.5 million from its customers for the Red Cross . NNP NN NNP VBD JJR IN $ CD CD IN PRP$ NNS IN DT NNP NNP . U.S. and Iraqi forces have raided seven mosques believed to be providing support for insurgents in the restive western city of Ramadi . NNP CC JJ NNS VBP VBN CD NNS VBN TO VB VBG NN IN NNS IN DT JJ JJ NN IN NNP . The U.S. military says the operation is part of a joint effort to search for known terrorists and insurgents , as well as for illegal weapons . DT NNP NN VBZ DT NN VBZ NN IN DT JJ NN TO VB IN VBN NNS CC NNS , RB RB IN IN JJ NNS . Witnesses say soldiers arrested Sheikh Abdul Aleim Saadi , the region 's top Sunni Muslim cleric . NNS VBP NNS VBN NNP NNP NNP NNP , DT NN POS JJ NNP NNP NN . Also Tuesday , the United States said its warplanes conducted two strikes on buildings used by Abu Musab al-Zarqawi 's terror network in the western city of Fallujah . RB NNP , DT NNP NNPS VBD PRP$ NNS VBD CD NNS IN NNS VBN IN NNP NNP NNP POS NN NN IN DT JJ NN IN NNP . Abu Musab al-Zarqawi has claimed responsibility for numerous car bombings , kidnappings and beheadings in Iraq . NNP NNP NNP VBZ VBN NN IN JJ NN NNS , NNS CC NNS IN NNP . In the south , an explosion rocked the city of Basra . IN DT NN , DT NN VBD DT NN IN NNP . It was not immediately clear what caused the blast . PRP VBD RB RB JJ WP VBD DT NN . There were no reports of casualties . EX VBD DT NNS IN NNS . Police in Sweden have arrested a man suspected of planning an attack in Somalia , the second such arrest there within a month . NNS IN NNP VBP VBN DT NN VBN IN VBG DT NN IN NNP , DT JJ JJ NN EX IN DT NN . The Swedish security police say the man , a Swedish citizen , was detained in the capital of Stockholm on Tuesday . DT JJ NN NNS VBP DT NN , DT JJ NN , VBD VBN IN DT NN IN NNP IN NNP . Police did not give the man 's name but said his arrest is linked to that of another Swedish national in the city of Gothenburg in May . NNS VBD RB VB DT NN POS NN CC VBD PRP$ NN VBZ VBN TO DT IN DT JJ JJ IN DT NN IN NNP IN NNP . They say other people will be questioned in connection with the investigation . PRP VBP JJ NNS MD VB VBN IN NN IN DT NN . Swedish authorities have expressed concern about Somali militant groups recruiting fighters from the country 's Somali immigrant population . JJ NNS VBP VBN NN IN JJ JJ NNS VBG NNS IN DT NN POS JJ JJ NN . Over the past two decades , tens of thousands of Somalis have fled to Scandinavia to escape war and poverty in their homeland . IN DT JJ CD NNS , NNS IN NNS IN NNS VBP VBN TO NNP TO VB NN CC NN IN PRP$ NN . Turkish authorities say a double bomb attack in Istanbul has killed at least 15 people and wounded 150 others . JJ NNS VBP DT JJ NN NN IN NNP VBZ VBN IN JJS CD NNS CC VBN CD NNS . The bombs went off several minutes apart Sunday evening on a shopping street in a residential district of Gungoren in western Istanbul . DT NNS VBD RP JJ NNS RB NNP NN IN DT NN NN IN DT JJ NN IN NNP IN JJ NNP . Officials say the first bomb caused a small blast in a telephone booth , drawing a crowd to the site before the second and more powerful device exploded . NNS VBP DT JJ NN VBD DT JJ NN IN DT NN NN , VBG DT NN TO DT NN IN DT JJ CC RBR JJ NN VBD . Both bombs were placed in trash cans . DT NNS VBD VBN IN NN NNS . Turkish President Abdullah Gul condemned the attack and described its perpetrators as ruthless and savage terrorists . JJ NNP NNP NNP VBD DT NN CC VBD PRP$ NNS IN JJ CC JJ NNS . Authorities are investigating who was behind the bombings . NNS VBP VBG WP VBD IN DT NNS . Several groups have carried out bomb attacks in Istanbul in the past , including Kurdish separatists , far-left activists and Islamists . JJ NNS VBP VBN RP NN NNS IN NNP IN DT NN , VBG NNP NNS , JJ NNS CC NNS . Dozens of heads of state in the African continent are meeting in Abuja , Nigeria Sunday to discuss ways to bring peace and prosperity to the world 's most impoverished continent . NNS IN NNS IN NN IN DT JJ NN VBP VBG IN NNP , NNP NNP TO VB NNS TO VB NN CC NN TO DT NN POS RBS JJ NN . Among those attending the summit of the 53-member African Union are United Nations Secretary-General Kofi Annan and Nigerian President Olusegan Obasanjo , who is the head of the AU . IN DT VBG DT NN IN DT JJ NNP NNP VBP NNP NNP NNP NNP NNP CC JJ NNP NNP NNP , WP VBZ DT NN IN DT NNP . Egyptian President Hosni Mubarak is attending his first African summit in a decade . JJ NNP NNP NNP VBZ VBG PRP$ JJ JJ NN IN DT NN . The two-day summit ending Monday will focus on solving ongoing conflicts in the Ivory Coast and the Democratic Republic of Congo , as well as the humanitarian crisis in Sudan 's Darfur region . DT JJ NN VBG NNP MD VB IN VBG JJ NNS IN DT NNP NNP CC DT JJ NNP IN NNP , RB RB IN DT JJ NN IN NNP POS NNP NN . The leaders will also discuss a greater role for Africa on the U.N. Security Council under reforms planned for the 15-member body . DT NNS MD RB VB DT JJR NN IN NNP IN DT NNP NNP NNP IN NNS VBN IN DT JJ NN . Egypt 's President Hosni Mubarak says the militant Islamic group Hamas must recognize Israel if it wants to form a Palestinian government . NNP POS NNP NNP NNP VBZ DT JJ NNP NN NNP MD VB NNP IN PRP VBZ TO VB DT JJ NN . Mr. Mubarak spoke in an interview with an Israeli newspaper , Yedioth Ahronoth . NNP NNP VBD IN DT NN IN DT JJ NN , NNP NNP . It is the first time that Egypt has laid down conditions for Hamas to form a government in the Palestinian territories . PRP VBZ DT JJ NN IN NNP VBZ VBN RP NNS IN NNP TO VB DT NN IN DT JJ NNS . At the same time , Egypt 's president asked Israel to be patient . IN DT JJ NN , NNP POS NN VBD NNP TO VB JJ . He said he was sure Hamas wants to live in peace and has no plans to establish a terrorist state in the West Bank and Gaza Strip . PRP VBD PRP VBD JJ NNP VBZ TO VB IN NN CC VBZ DT NNS TO VB DT JJ NN IN DT NNP NNP CC NNP NNP . Hamas scored an overwhelming victory in Palestinian elections in January , trouncing the ruling Fatah party . NNP VBD DT JJ NN IN JJ NNS IN NNP , VBG DT NN NNP NN . Fatah has indicated that it prefers not to participate in a Hamas-led government . NNP VBZ VBN IN PRP VBZ RB TO VB IN DT JJ NN . Egypt has been trying to mediate between Hamas and Fatah . NNP VBZ VBN VBG TO VB IN NNP CC NNP . Iran 's newly elected President Mahmoud Ahmadinejad NNP POS RB VBN NNP NNP NNP Aides to Iranian President-elect Mahmoud Ahmadinejad have again rejected accusations that he was involved in the 1979 seizure of the American embassy in Tehran . NNS TO JJ NNP NNP NNP VBP RB VBN NNS IN PRP VBD VBN IN DT CD NN IN DT JJ NN IN NNP . One senior campaign advisor said Saturday that photographs of a hostage-taker purported to be a young Mr. Ahmadinejad actually show someone else . CD JJ NN NN VBD NNP IN NNS IN DT NN VBN TO VB DT JJ NNP NNP RB VBP DT RB . Some of the hostage-takers also have denied that he played any role in the siege . DT IN DT NNS RB VBP VBN IN PRP VBD DT NN IN DT NN . And other aides to the president-elect have added to the denials . CC JJ NNS TO DT NN VBP VBN TO DT NNS . The White House says it is looking into allegations linking the Iranian president-elect to the crisis that lasted 444 days . DT NNP NNP VBZ PRP VBZ VBG IN NNS VBG DT JJ NN TO DT NN WDT VBD CD NNS . Another accusation against Mr. Ahmadinejad has surfaced in Europe . DT NN IN NNP NNP VBZ VBN IN NNP . An Austrian political figure contends that the Iranian president-elect was involved in the 1989 slaying in Vienna of a Kurdish opposition leader . DT JJ JJ NN VBZ IN DT JJ NN VBD VBN IN DT CD NN IN NNP IN DT JJ NN NN . Aides to Mr. Ahmadinejad said the latest accusation is not worth comment . NNS TO NNP NNP VBD DT JJS NN VBZ RB JJ NN . An Afghan official says the country has made significant progress in its war on drugs . DT JJ NN VBZ DT NN VBZ VBN JJ NN IN PRP$ NN IN NNS . The deputy interior minister for counternarcotics , General Mohammed Daoud , says anti-drug forces confiscated 40 tons of opium in the first five months of this year , compared to 135 tons during last full year and 10 tons in 2003 . DT JJ JJ NN IN NNS , NNP NNP NNP , VBZ JJ NNS VBD CD NNS IN NN IN DT JJ CD NNS IN DT NN , VBN TO CD NNS IN JJ JJ NN CC CD NNS IN CD . His comments follow U.S. criticism of the Afghan anti-opium program , and President Hamid Karzai 's recent visit to Washington , where he promised to eradicate Afghan poppy production in the next six years . PRP$ NNS VBP NNP NN IN DT JJ NN NN , CC NNP NNP NNP POS JJ NN TO NNP , WRB PRP VBD TO VB JJ NN NN IN DT JJ CD NNS . Afghanistan is the world 's largest producer of opium . NNP VBZ DT NN POS JJS NN IN NN . Washington is pouring hundreds of millions of dollars into Afghanistan 's anti-drug efforts , saying the opium growing industry is now a bigger threat there than the remaining Taleban-led militants . NNP VBZ VBG NNS IN NNS IN NNS IN NNP POS JJ NNS , VBG DT NN VBG NN VBZ RB DT JJR NN RB IN DT VBG JJ NNS . Montenegro severed its economy from federal control and from Serbia during the MILOSEVIC era and maintained its own central bank , adopted the Deutchmark , then the euro - rather than the Yugoslav dinar - as official currency , collected customs tariffs , and managed its own budget . NNP VBD PRP$ NN IN JJ NN CC IN NNP IN DT NNP NN CC VBD PRP$ JJ JJ NN , VBD DT NNP , RB DT NN : RB IN DT JJ NN : IN JJ NN , VBN NNS NNS , CC VBD PRP$ JJ NN . The dissolution of the loose political union between Serbia and Montenegro in 2006 led to separate membership in several international financial institutions , such as the European Bank for Reconstruction and Development . DT NN IN DT JJ JJ NN IN NNP CC NNP IN CD VBD TO JJ NN IN JJ JJ JJ NNS , JJ IN DT NNP NNP IN NNP CC NNP . In January 2007 , Montenegro joined the World Bank and IMF . IN NNP CD , NNP VBD DT NNP NNP CC NNP . Montenegro is pursuing its own membership in the World Trade Organization and signed a Stabilization and Association agreement with the European Union in October 2007 . NNP VBZ VBG PRP$ JJ NN IN DT NNP NNP NNP CC VBD DT NNP CC NNP NN IN DT NNP NNP IN NNP CD . The European Council granted candidate country status to Montenegro at the December 2010 session . DT NNP NNP VBD NN NN NN TO VB IN DT NNP CD NN . Unemployment and regional disparities in development are key political and economic problems . NN CC JJ NNS IN NN VBP JJ JJ CC JJ NNS . Montenegro has privatized its large aluminum complex - the dominant industry - as well as most of its financial sector , and has begun to attract foreign direct investment in the tourism sector . NNP VBZ VBN PRP$ JJ NN NN IN DT JJ NN : RB RB IN JJS IN PRP$ JJ NN , CC VBZ VBN TO VB JJ JJ NN IN DT NN NN . The global financial crisis has had a significant negative impact on the economy , due to the ongoing credit crunch , a decline in the real estate sector , and a fall in aluminum exports . DT JJ JJ NN VBZ VBN DT JJ JJ NN IN DT NN , JJ TO DT JJ NN NN , DT NN IN DT JJ NN NN , CC DT NN IN NN NNS . Afghanistan 's economy is recovering from decades of conflict . NNP POS NN VBZ VBG IN NNS IN NN . The economy has improved significantly since the fall of the Taliban regime in 2001 largely because of the infusion of international assistance , the recovery of the agricultural sector , and service sector growth . DT NN VBZ VBN RB IN DT NN IN DT NNP NN IN CD RB IN IN DT NN IN JJ NN , DT NN IN DT JJ NN , CC NN NN NN . Despite the progress of the past few years , Afghanistan is extremely poor , landlocked , and highly dependent on foreign aid , agriculture , and trade with neighboring countries . IN DT NN IN DT JJ JJ NNS , NNP VBZ RB JJ , JJ , CC RB JJ IN JJ NN , NN , CC NN IN JJ NNS . Much of the population continues to suffer from shortages of housing , clean water , electricity , medical care , and jobs . NN IN DT NN VBZ TO VB IN NNS IN NN , JJ NN , NN , JJ NN , CC NNS . Criminality , insecurity , weak governance , and the Afghan Government 's inability to extend rule of law to all parts of the country pose challenges to future economic growth . NN , NN , JJ NN , CC DT JJ NNP POS NN TO VB NN IN NN TO DT NNS IN DT NN VBP NNS TO JJ JJ NN . Afghanistan 's living standards are among the lowest in the world . NNP POS NN NNS VBP IN DT JJS IN DT NN . While the international community remains committed to Afghanistan 's development , pledging over $ 67 billion at four donors ' conferences since 2002 , the Government of Afghanistan will need to overcome a number of challenges , including low revenue collection , anemic job creation , high levels of corruption , weak government capacity , and poor public infrastructure . IN DT JJ NN VBZ JJ TO NNP POS NN , VBG IN $ CD CD IN CD NNS POS NNS IN CD , DT NN IN NNP MD VB TO VB DT NN IN NNS , VBG JJ NN NN , JJ NN NN , JJ NNS IN NN , JJ NN NN , CC JJ JJ NN . Israel has a technologically advanced market economy . NNP VBZ DT RB JJ NN NN . It depends on imports of crude oil , grains , raw materials , and military equipment . PRP VBZ IN NNS IN JJ NN , NNS , JJ NNS , CC JJ NN . Despite limited natural resources , Israel has intensively developed its agricultural and industrial sectors over the past 20 years . IN JJ JJ NNS , NNP VBZ RB VBN PRP$ JJ CC JJ NNS IN DT JJ CD NNS . Cut diamonds , high-technology equipment , and agricultural products ( fruits and vegetables ) are the leading exports . JJ NNS , NN NN , CC JJ NNS LRB NNS CC NNS RRB VBP DT VBG NNS . Israel usually posts sizable trade deficits , which are covered by large transfer payments from abroad and by foreign loans . NNP RB VBZ JJ NN NNS , WDT VBP VBN IN JJ NN NNS IN RB CC IN JJ NNS . Roughly half of the government 's external debt is owed to the US , its major source of economic and military aid . RB NN IN DT NN POS JJ NN VBZ VBN TO DT NNP , PRP$ JJ NN IN JJ CC JJ NN . Israel 's GDP , after contracting slightly in 2001 and 2002 due to the Palestinian conflict and troubles in the high-technology sector , grew about 5 % per year from 2004 - 7 . NNP POS NN , IN VBG RB IN CD CC CD JJ TO DT JJ NN CC NNS IN DT NN NN , VBD IN CD NN IN NN IN CD IN CD . The global financial crisis of 2008 - 9 spurred a brief recession in Israel , but the country entered the crisis with solid fundamentals - following years of prudent fiscal policy and a series of liberalizing reforms - and a resilient banking sector , and the economy has shown signs of an early recovery . DT JJ JJ NN IN CD : CD VBD DT JJ NN IN NNP , CC DT NN VBD DT NN IN JJ NNS IN VBG NNS IN JJ JJ NN CC DT NN IN VBG NNS : CC DT JJ NN NN , CC DT NN VBZ VBN NNS IN DT JJ NN . Following GDP growth of 4 % in 2008 , Israel 's GDP slipped to 0.2 % in 2009 , but reached 3.4 % in 2010 , as exports rebounded . VBG NN NN IN CD NN IN CD , NNP POS NN VBD TO CD NN IN CD , CC VBD CD NN IN CD , IN NNS VBD . The global economic downturn affected Israel 's economy primarily through reduced demand for Israel 's exports in the United States and EU , Israel 's top trading partners . DT JJ JJ NN VBD NNP POS NN RB IN VBN NN IN NNP POS NNS IN DT NNP NNPS CC NNP , NNP POS JJ NN NNS . Exports of goods and services account for about 40 % of the country 's GDP . NNS IN NNS CC NNS VBP IN RB CD NN IN DT NN POS NN . The Israeli Government responded to the recession by implementing a modest fiscal stimulus package and an aggressive expansionary monetary policy - including cutting interest rates to record lows , purchasing government bonds , and intervening in the foreign currency market . DT JJ NN VBD TO DT NN IN VBG DT JJ JJ NN NN CC DT JJ JJ JJ NN : VBG VBG NN NNS TO NN NNS , VBG NN NNS , CC VBG IN DT JJ NN NN . The Bank of Israel began raising interest rates in the summer of 2009 when inflation rose above the upper end of the Bank 's target and the economy began to show signs of recovery . DT NNP IN NNP VBD VBG NN NNS IN DT NN IN CD WRB NN VBD IN DT JJ NN IN DT NNP POS NN CC DT NN VBD TO VB NNS IN NN . Among the 25 poorest countries in the world , Mali is a landlocked country highly dependent on gold mining and agricultural exports for revenue . IN DT CD JJS NNS IN DT NN , NNP VBZ DT JJ NN RB JJ IN NN NN CC JJ NNS IN NN . The country 's fiscal status fluctuates with gold and agricultural commodity prices and the harvest . DT NN POS JJ NN VBZ IN NN CC JJ NN NNS CC DT NN . Mali remains dependent on foreign aid . NNP VBZ JJ IN JJ NN . Economic activity is largely confined to the riverine area irrigated by the Niger River and about 65 % of its land area is desert or semidesert . JJ NN VBZ RB VBN TO DT JJ NN VBN IN DT NNP NNP CC IN CD NN IN PRP$ NN NN VBZ NN CC NN . About 10 % of the population is nomadic and some 80 % of the labor force is engaged in farming and fishing . IN CD NN IN DT NN VBZ JJ CC DT CD NN IN DT NN NN VBZ VBN IN NN CC NN . Industrial activity is concentrated on processing farm commodities . JJ NN VBZ VBN IN NN NN NNS . The government has continued an IMF-recommended structural adjustment program that has helped the economy grow , diversify , and attract foreign investment . DT NN VBZ VBN DT JJ JJ NN NN WDT VBZ VBN DT NN VB , VB , CC VB JJ NN . Mali is developing its cotton and iron ore extraction industries to diversify its revenue sources because gold production has started to fall . NNP VBZ VBG PRP$ NN CC NN NN NN NNS TO VB PRP$ NN NNS IN NN NN VBZ VBN TO VB . Mali has invested in tourism but security issues are hurting the industry . NNP VBZ VBN IN NN CC NN NNS VBP VBG DT NN . Mali 's adherence to economic reform and the 50 % devaluation of the CFA franc in January 1994 have pushed up economic growth to a 5 % average in 1996 - 2010 . NNP POS NN TO JJ NN CC DT CD NN NN IN DT NNP NN IN NNP CD VBP VBN RP JJ NN TO DT CD NN NN IN CD IN CD . Worker remittances and external trade routes for the landlocked country have been jeopardized by continued unrest in neighboring Cote d'Ivoire . NNP NNS CC JJ NN NNS IN DT JJ NN VBP VBN VBN IN JJ NN IN VBG NNP NNP . However , Mali is building a road network that will connect it to all adjacent countries and it has a railway line to Senegal . RB , NNP VBZ VBG DT NN NN WDT MD VB PRP TO DT JJ NNS CC PRP VBZ DT NN NN TO NNP . In 2010 , Mali experienced a regional drought that hurt livestock and livelihoods . IN CD , NNP VBD DT JJ NN WDT VBD NN CC NNS . The economy benefits substantially from financial assistance from the US . DT NN VBZ RB IN JJ NN IN DT NNP . The rate of funding has declined as locally generated government revenues have grown . DT NN IN NN VBZ VBN IN RB VBN NN NNS VBP VBN . The key tourist industry employs about 50 % of the work force and accounts for roughly one-fourth of GDP . DT JJ NN NN VBZ IN CD NN IN DT NN NN CC NNS IN RB NN IN NN . Japanese tourists predominate . JJ NNS VBP . Annual tourist entries have exceeded one-half million in recent years , but financial difficulties in Japan have caused a temporary slowdown . JJ NN NNS VBP VBN JJ CD IN JJ NNS , CC JJ NNS IN NNP VBP VBN DT JJ NN . The agricultural sector is made up of cattle ranches and small farms producing coconuts , breadfruit , tomatoes , and melons . DT JJ NN VBZ VBN IN IN NNS NNS CC JJ NNS VBG NNS , NN , NNS , CC NNS . Garment production is by far the most important industry with the employment of 17,500 mostly Chinese workers and sizable shipments to the US under duty and quota exemptions . NN NN VBZ IN RB DT RBS JJ NN IN DT NN IN CD RB JJ NNS CC JJ NNS TO DT NNP IN NN CC NN NNS . THE LION , the Fox and the Ass entered into an agreement to assist each other in the chase . DT NNP , DT NNP CC DT NNP VBD IN DT NN TO VB DT NN IN DT NN . Having secured a large booty , the Lion on their return from the forest asked the Ass to allot his due portion to each of the three partners in the treaty . VBG VBN DT JJ NN , DT NNP IN PRP$ NN IN DT NN VBD DT NNP TO VB PRP$ JJ NN TO DT IN DT CD NNS IN DT NN . The Ass carefully divided the spoil into three equal shares and modestly requested the two others to make the first choice . DT NNP RB VBD DT NN IN CD JJ NNS CC RB VBD DT CD NNS TO VB DT JJ NN . The Lion , bursting out into a great rage , devoured the Ass . DT NNP , VBG RP IN DT JJ NN , VBD DT NNP . Then he requested the Fox to do him the favor to make a division . RB PRP VBD DT NNP TO VB PRP DT NN TO VB DT NN . The Fox accumulated all that they had killed into one large heap and left to himself the smallest possible morsel . DT NNP VBN DT IN PRP VBD VBN IN CD JJ NN CC VBD TO PRP DT JJS JJ NN . The Lion said , ' Who has taught you , my very excellent fellow , the art of division ? You are perfect to a fraction . ' DT NNP VBD , `` WP VBZ VBN PRP , PRP$ RB JJ NN , DT NN IN NN . PRP VBP JJ TO DT NN . `` He replied , ' I learned it from the Ass , by witnessing his fate . ' PRP VBD , `` PRP VBD PRP IN DT NNP , IN VBG PRP$ NN . `` Happy is the man who learns from the misfortunes of others . NNP VBZ DT NN WP VBZ IN DT NNS IN NNS . A JUDGE was awakened by the noise of a lawyer prosecuting a Thief . DT NN VBD VBN IN DT NN IN DT NN VBG DT NN . Rising in wrath he was about to sentence the Thief to life imprisonment when the latter said : VBG IN NN PRP VBD RB TO NN DT NN TO NN NN WRB DT NN VBD : ' I beg that you will set me free , and I will some day requite your kindness . ' `` PRP VBP IN PRP MD VB PRP JJ , CC PRP MD DT NN VB PRP$ NN . `` Pleased and flattered to be bribed , although by nothing but an empty promise , the Judge let him go. JJ CC VBD TO VB VBN , IN IN DT CC DT JJ NN , DT NNP VB PRP VB Soon afterward he found that it was more than an empty promise , for , having become a Thief , he was himself set free by the other , who had become a Judge . RB RB PRP VBD IN PRP VBD RBR IN DT JJ NN , IN , VBG VBN DT NN , PRP VBD PRP VBN JJ IN DT JJ , WP VBD VBN DT NNP . If you love something , set it free . IN PRP VBP DT , VBD PRP JJ . If it comes back , it was and always will be yours . IN PRP VBZ RB , PRP VBD CC RB MD VB PRP$ . If it never returns , it was never yours to begin with . IN PRP RB VBZ , PRP VBD RB PRP$ TO VB IN . If it just sits in your living room and messes up your stuff , eats your food , uses your telephone , takes your money and never behaves as if you actually set it free in the first place -- you either married it or gave birth to it ! IN PRP RB VBZ IN PRP$ NN NN CC VBZ RP PRP$ NN , VBZ PRP$ NN , VBZ PRP$ NN , VBZ PRP$ NN CC RB VBZ IN IN PRP RB VBD PRP JJ IN DT JJ NN : PRP RB VBD PRP CC VBD NN TO PRP . Canadian officials say Japan is banning all poultry exports from Canada after bird flu was found in a duck in the western province of British Columbia . JJ NNS VBP NNP VBZ VBG DT NN NNS IN NNP IN NN NN VBD VBN IN DT NN IN DT JJ NN IN NNP NNP . Officials also say Hong Kong , Taiwan , and the United States are imposing temporary bans on poultry from British Columbia . NNS RB VBP NNP NNP , NNP , CC DT NNP NNPS VBP VBG JJ NNS IN NN IN NNP NNP . The sick duck came from a commercial farm near Vancouver . DT JJ NN VBD IN DT JJ NN IN NNP . Canadian authorities said Monday the duck did not have the same bird flu strain that has killed more than 60 people in Asia since 2003 . JJ NNS VBD NNP DT NN VBD RB VB DT JJ NN NN NN WDT VBZ VBN JJR IN CD NNS IN NNP IN CD . But they are killing almost 60-thousand ducks on the farm as a precaution . CC PRP VBP VBG RB JJ NNS IN DT NN IN DT NN . Also Monday , Romanian officials said British lab tests confirmed four dead chickens in a remote Danube River village had bird flu . RB NNP , JJ NNS VBD JJ NN NNS VBD CD JJ NNS IN DT JJ NNP NNP NN VBD VBN NN . China 's agriculture ministry also said Monday that bird flu has been found in chickens , ducks , and geese last week in Inner Mongolia and Hubei province . NNP POS NN NN RB VBD NNP IN NN NN VBZ VBN VBN IN NNS , NNS , CC NNS JJ NN IN NNP NNP CC NNP NN . Venezuela 's state-owned oil company says it is beginning to explore for oil in Cuban waters as part of a joint venture with the island 's state-owned Cubapetroleo . NNP POS JJ NN NN VBZ PRP VBZ VBG TO VB IN NN IN JJ NNS IN NN IN DT JJ NN IN DT NN POS JJ NNP . Petroleos de Venezuela ( PDVSA ) said in a statement that the project would cover a 10,000-square-kilometer area and begin Wednesday . NNP NNP NNP LRB NNP RRB VBD IN DT NN IN DT NN MD VB DT JJ NN CC VB NNP . The Venezuelan company says it expects to confirm the presence of light crude oil after conducting a seismic study . DT JJ NN VBZ PRP VBZ TO VB DT NN IN JJ JJ NN IN VBG DT JJ NN . Earlier this year , Venezuela offered discounted oil to Cuba , Bolivia , Nicaragua and Haiti in exchange for becoming the sole provider to those countries . RBR DT NN , NNP VBD JJ NN TO NNP , NNP , NNP CC NNP IN NN IN VBG DT JJ NN TO DT NNS . Venezuelan President Hugo Chavez said his country 's oil will help with both economic and social development in the area . JJ NNP NNP NNP VBD PRP$ NN POS NN MD VB IN DT JJ CC JJ NN IN DT NN . The proposal called for Venezuela to offer oil at a 50 percent discount . DT NN VBD IN NNP TO VB NN IN DT CD NN NN . Venezuela sells about 98,000 barrels of crude oil daily to Cuba . NNP VBZ IN CD NNS IN JJ NN NN TO NNP . In return , Cuba provides Venezuela with medical personnel . IN NN , NNP VBZ NNP IN JJ NNS . Authorities in Niger have detained a local journalist they say is linked to Tuareg rebels in the northern part of the country . NNS IN NNP VBP VBN DT JJ NN PRP VBP VBZ VBN TO NNP NNS IN DT JJ NN IN DT NN . Moussa Kaka , a reporter for Radio France International , has been held since Thursday . NNP NNP , DT NN IN NNP NNP NNP , VBZ VBN VBN IN NNP . He is accused of what authorities call ' conniving ' with the rebel Niger Movement for Justice . PRP VBZ VBN IN WP NNS VBP `` VBG `` IN DT NN NNP NNP IN NNP . The rebel group has captured about 40 soldiers during raids in northern Niger this year . DT NN NN VBZ VBN IN CD NNS IN NNS IN JJ NNP DT NN . Another 40 government troops have been killed in rebel attacks . DT CD NN NNS VBP VBN VBN IN NN NNS . Tuareg rebels have been demanding a larger share of royalties from uranium mining in the northeast . NNP NNS VBP VBN VBG DT JJR NN IN NNS IN NN NN IN DT NN . The government dismisses the rebels as bandits and drug traffickers . DT NN VBZ DT NNS IN NNS CC NN NNS . Niger temporarily suspended local Radio France FM broadcasts in July , claiming their reports were biased toward the rebels . NNP RB VBD JJ NNP NNP NNP NNS IN NNP , VBG PRP$ NNS VBD VBN IN DT NNS . Radio France confirmed Kaka 's detention on its Web site . NNP NNP VBD NNP POS NN IN PRP$ NNP NN . It did not comment on the charges against him . PRP VBD RB VB IN DT NNS IN PRP . The U.S. Senate has confirmed the nomination of federal Judge Samuel Alito to the Supreme Court . DT NNP NNP VBZ VBN DT NN IN JJ NNP NNP NNP TO DT NNP NNP . The final vote was 58-to-42 , largely along party lines . DT JJ NN VBD CD , RB IN NN NNS . Tuesday 's vote came after the Republican-controlled Senate on Monday stopped an effort by opposition Democrats to extend the debate over Alito 's nomination . NNP POS NN VBD IN DT JJ NNP IN NNP VBD DT NN IN NN NNS TO VB DT NN IN NNP POS NN . Judge Alito is expected to be sworn in today and to attend the president 's State of the Union address with the other Supreme Court justices . NNP NNP VBZ VBN TO VB VBN IN NN CC TO VB DT NN POS NN IN DT NNP NN IN DT JJ NNP NNP NNS . He replaces Justice Sandra Day O'Connor , who is retiring . PRP VBZ NNP NNP NNP NNP , WP VBZ VBG . She was known as a ' swing voter ' on the Court , meaning she sometimes sided with the more conservative justices and sometimes with the more liberal ones . PRP VBD VBN IN DT `` NN NN `` IN DT NNP , VBG PRP RB VBD IN DT JJR JJ NNS CC RB IN DT RBR JJ NNS . Alito 's critics say he will move the Supreme Court in a more conservative direction , especially on issues like abortion and civil rights . NNP POS NNS VBP PRP MD VB DT NNP NNP IN DT RBR JJ NN , RB IN NNS IN NN CC JJ NNS . Delegates to a U.N. conference on global warming are working hard in the meeting 's final hours to reach a deal on long-term efforts to cut carbon emissions . NNS TO DT NNP NN IN JJ NN VBP VBG RB IN DT NN POS JJ NNS TO VB DT NN IN JJ NNS TO VB NN NNS . The biggest stumbling block is the United States , which rejects the Kyoto Protocol on cutting ' greenhouse , ' or heat-trapping , emissions . DT JJS NN NN VBZ DT NNP NNPS , WDT VBZ DT NNP NNP IN VBG `` NN , `` CC JJ , NNS . Delegates want to extend talks on the accord , which is set to expire in 2012 . NNS VBP TO VB NNS IN DT NN , WDT VBZ VBN TO VB IN CD . The Bush administration says the protocol would hurt the U.S. economy , and says it unfairly exempts developing nations such as China and India . DT NNP NN VBZ DT NN MD VB DT NNP NN , CC VBZ PRP RB VBZ VBG NNS JJ IN NNP CC NNP . Former U.S. President Bill Clinton rejected that charge in a surprise talk at the Montreal , Canada , summit Friday . JJ NNP NNP NNP NNP VBD DT NN IN DT NN NN IN DT NNP , NNP , NN NNP . Mr. Clinton , who endorsed the Kyoto protocols while president , told delegates the accord would not hurt developed nations . NNP NNP , WP VBD DT NNP NNS IN NN , VBD VBZ DT NN MD RB VB JJ NNS . He added it was time to stop doubting the effect of these gases , saying ' climate change is real . ' PRP VBD PRP VBD NN TO VB VBG DT NN IN DT NNS , VBG `` NN NN VBZ JJ . `` Britain has announced plans for a database of extremists who would face automatic questioning and could be barred from entering the country . NNP VBZ VBN NNS IN DT NN IN NNS WP MD VB JJ VBG CC MD VB VBN IN VBG DT NN . Home Secretary Charles Clark called the plan a response to the London suicide bombings that left at least 56 people dead this month . NNP NNP NNP NNP VBD DT NN DT NN TO DT NNP NN NNS WDT VBD IN JJS CD NNS JJ DT NN . He told parliament the database will list people known for unacceptable behavior such as preaching radical ideas , running extremist websites or writing articles that could foment terrorism . PRP VBD NN DT NN MD VB NNS VBN IN JJ NN JJ IN VBG JJ NNS , VBG NN NNS CC VBG NNS WDT MD VB NN . Meanwhile , Prime Minister Tony Blair told lawmakers he is considering calling an international conference on ways to root out Islamic extremism . RB , NNP NNP NNP NNP VBD NNS PRP VBZ VBG VBG DT JJ NN IN NNS TO VB RP JJ NN . He said it would address such issues as ways of dealing with Islamic schools that teach extremism . PRP VBD PRP MD VB JJ NNS IN NNS IN VBG IN JJ NNS WDT VBP NN . Late Tuesday , British police removed a bomb-mangled 20-ton train car from a central London subway station nearly two weeks after the attacks . RB NNP , JJ NN VBD DT JJ JJ NN NN IN DT JJ NNP NN NN RB CD NNS IN DT NNS . Mexican police say they have found 12 mutilated corpses in hidden graves on the outskirts of Cancun , the latest sign drug-related violence is spreading to the popular tourist destination . JJ NNS VBP PRP VBP VBN CD JJ NNS IN JJ NNS IN DT NNS IN NNP , DT JJS NN JJ NN VBZ VBG TO DT JJ NN NN . Authorities announced the discovery Friday , adding that some of the bodies had the letter ' Z ' carved on their chests , a likely reference to the powerful Zetas drug smuggling gang . NNS VBD DT NN NNP , VBG IN DT IN DT NNS VBD DT NN `` NNP `` VBN IN PRP$ NNS , DT JJ NN TO DT JJ NNP NN NN NN . The grim find is at least the second such discovery this month . DT JJ NN VBZ IN JJS DT JJ JJ NN DT NN . In May , Mexican police arrested Cancun 's mayor Gregorio Sanchez on suspicion of offering information and protection to the Zetas , as well as the Beltran Leyva cartel . IN NNP , JJ NN VBN NNP POS NN NNP NNP IN NN IN VBG NN CC NN TO DT NNP , RB RB IN DT NNP NNP NN . Sanchez 's Democratic Revolutionary Party denounced the charges . NNP POS JJ NNP NNP VBD DT NNS . President Bush will meet with his Colombian counterpart , Alvaro Uribe , after Mr. Bush leaves the Asia Pacific Economic Cooperation , APEC , summit later this month . NNP NNP MD VB IN PRP$ JJ NN , NNP NNP , IN NNP NNP VBZ DT NNP NNP NNP NNP , NNP , NN RB DT NN . White House spokesman Scott McClellan said Friday the president will briefly meet with President Uribe in the Colombian resort town of Cartagena on November 22 . NNP NNP NN NNP NNP VBD NNP DT NN MD RB VB IN NNP NNP IN DT JJ NN NN IN NNP IN NNP CD . Mr. Bush will be flying back from the two-day meeting of APEC leaders that begins November 21 in Santiago , Chile . NNP NNP MD VB VBG RB IN DT JJ NN IN NNP NNS WDT VBZ NNP CD IN NNP , NNP . It will be his first trip abroad since winning re-election last week . PRP MD VB PRP$ JJ NN RB IN VBG NN JJ NN . Mr. Bush and Mr. Uribe last met at the White House in March , and agreed to begin negotiations on a free trade agreement . NNP NNP CC NNP NNP JJ VBD IN DT NNP NNP IN NNP , CC VBD TO VB NNS IN DT JJ NN NN . After leaving Colombia , the president will head to his ranch in Texas for the Thanksgiving holiday . IN VBG NNP , DT NN MD VB TO PRP$ NN IN NNP IN DT NNP NN . Authorities in Yemen have detained an Australian woman for suspected ties to a militant group and have placed her two young children under house arrest . NNS IN NNP VBP VBN DT JJ NN IN JJ NNS TO DT JJ NN CC VB VBN PRP$ CD JJ NNS IN NN NN . A lawyer for Shyloh Giddens said Wednesday his client was arrested in mid-May along with at least one Bangladeshi woman who has since been deported . DT NN IN NNP NNP VBD NNP PRP$ NN VBD VBN IN NN IN IN IN JJS CD JJ NN WP VBZ IN VBN VBN . Attorney Abdul Rahman Barman says Giddens , who converted to Islam , moved to Yemen in 2006 . NNP NNP NNP NNP VBZ NNP , WP VBD TO NNP , VBD IN NNP IN CD . He says Yemeni authorities have not provided any specific reason for her arrest . PRP VBZ JJ NNS VBP RB VBN DT JJ NN IN PRP$ NN . The French News Agency quotes Barman as saying people get arrested in Yemen based on ' wrong U.S. intelligence information . ' DT NNP NNP NNP VBZ NNP IN VBG NNS VBP VBN IN NNP VBN IN `` JJ NNP NN NN . `` He says many are accused of having links to al-Qaida . PRP VBZ NN VBP VBN IN VBG NNS IN NNP . Germany 's constitutional court has rejected a request by two lawmakers to prevent the deployment of German fighter jets in Afghanistan to support NATO forces there . NNP POS JJ NN VBZ VBN DT NN IN CD NNS TO VB DT NN IN JJ NN NNS IN NNP TO VB NNP NNS RB . The lawmakers argued that sending the aircraft would entangle Germany in what the plaintiffs called ' illegal operations ' of the U.S. military . DT NNS VBD IN VBG DT NN MD VB NNP IN WP DT NNS VBD `` JJ NNS `` IN DT NNP NN . The two are from German Chancellor Angela Merkel 's governing Christian Democratic party and its allied party , the Christian Social Union . DT CD VBP IN JJ NNP NNP NNP POS VBG JJ JJ NN CC PRP$ JJ NN , DT NNP NNP NNP . The two lawmakers went to court after Germany 's lower house of parliament voted overwhelmingly Friday ( 405 - 157 ) to send the Tornado aircraft . DT CD NNS VBD TO NN IN NNP POS JJR NN IN NN VBD RB NNP LRB CD IN CD RRB TO VB DT NNP NN . The planes are to provide NATO forces with aerial images of the positions of Taleban fighters . DT NNS VBP TO VB NNP NNS IN JJ NNS IN DT NNS IN NNP NNS . Opponents say the mission amounts to a combat role for the German planes . NNS VBP DT NN VBZ TO DT NN NN IN DT JJ NNS . Germany has 3,000 troops in Afghanistan in the largely peaceful north , but it has come under pressure to take a more active role in the war . NNP VBZ CD NNS IN NNP IN DT RB JJ NN , CC PRP VBZ VBN IN NN TO VB DT RBR JJ NN IN DT NN . V-E Day is short for Victory in Europe Day , when the Allies accepted Germany 's surrender , ending World War II in Europe . NNP NNP VBZ JJ IN NNP IN NNP NNP , WRB DT NNPS VBD NNP POS NN , VBG NNP NNP NNP IN NNP . The White House hosted an online discussion Wednesday , fielding questions about President Bush 's upcoming trip through Europe and Russia , in honor of the historic moment . DT NNP NNP VBD DT JJ NN NNP , VBG NNS IN NNP NNP POS JJ NN IN NNP CC NNP , IN NN IN DT JJ NN . U.S. Assistant Secretary of State Daniel Fried and Special Assistant to the President Thomas Graham answered questions Wednesday on the White House interactive website about President Bush 's VE day visits to the Netherlands , Russia and Georgia . NNP NNP NNP IN NNP NNP NNP CC NNP NNP TO DT NNP NNP NNP VBD NNS NNP IN DT NNP NNP JJ NN IN NNP NNP POS JJ NN NNS TO DT NNP , NNP CC NNP . Questions were taken from around the world . NNS VBD VBN IN IN DT NN . The discussion covered a range of topics , but mostly focused on issues within each country the president will visit . DT NN VBD DT NN IN NNS , CC RB VBD IN NNS IN DT NN DT NN MD VB . A number of e-mails asked about Russia , its democratization process , and its role in European Union politics . DT NN IN NNS VBD IN NNP , PRP$ NN NN , CC PRP$ NN IN NNP NNP NNS . From May 6 to 10 , President Bush will visit Latvia , the Netherlands , Russia , and Georgia . IN NNP CD TO CD , NNP NNP MD VB NNP , DT NNP , NNP , CC NNP . A new poll indicates U.S. public opinion of President Bush 's handling of the war in Iraq has hit a new low . DT JJ NN VBZ NNP JJ NN IN NNP NNP POS NN IN DT NN IN NNP VBZ VBN DT JJ NN . A survey by the U.S. publication Newsweek magazine indicates that 61 percent disapprove of his effort , with only 34 percent of those polled expressing approval . DT NN IN DT NNP NN NNP NN VBZ IN CD NN NN IN PRP$ NN , IN RB CD NN IN DT VBN VBG NN . The findings , which echo other recent polls , represent the lowest rating yet on Mr. Bush 's handling of Iraq . DT NNS , WDT VBP JJ JJ NNS , VBP DT JJS NN RB IN NNP NNP POS NN IN NNP . The president 's overall approval rating dropped to 42 percent , while 51 percent of Americans answering the poll said they do not like the way he is handling the job . DT NN POS JJ NN NN VBD TO CD NN , IN CD NN IN NNS VBG DT NN VBD PRP VBP RB VB DT NN PRP VBZ VBG DT NN . Supporters have expressed concern Mr. Bush 's plummeting poll numbers and rising U.S. death toll in Iraq will affect next year 's congressional elections . NNS VBP VBN NN NNP NNP POS VBG NN NNS CC VBG NNP NN NN IN NNP MD VB JJ NN POS JJ NNS . Hours after 14 U.S. Marines were killed in Iraq last week , President Bush said American troops will remain in the country until Iraqi forces can deal with the insurgency . NNS IN CD NNP NNPS VBD VBN IN NNP JJ NN , NNP NNP VBD JJ NNS MD VB IN DT NN IN JJ NNS MD VB IN DT NN . American and Iraqi troops have launched a new counterinsurgency operation in western Iraq . NNP CC JJ NNS VBP VBN DT JJ NN NN IN JJ NNP . A U.S. military spokesman Saturday , said about 500 U.S. Marines and 100 Iraqi soldiers are carrying out the offensive in Iraq 's western Anbar province . DT NNP JJ NN NNP , VBD IN CD NNP NNPS CC CD JJ NNS VBP VBG RP DT NN IN NNP POS JJ NNP NN . They say 22 suspected insurgents have been detained since the operation began southeast of Falluja Thursday . PRP VBP CD JJ NNS VBP VBN VBN IN DT NN VBD NN IN NNP NNP . It is the fourth major counterinsurgency operation in Anbar province in the past month . PRP VBZ DT JJ JJ NN NN IN NNP NN IN DT JJ NN . Military officials say the province stretching from the Syrian border to just west of Baghdad is a conduit for foreign militants entering Iraq . JJ NNS VBP DT NN VBG IN DT JJ NN TO RB VB IN NNP VBZ DT NN IN JJ NNS VBG NNP . Meanwhile , Iraqi and U.S. officials say they are concerned over a series of attacks on foreign diplomats in recent days . RB , JJ CC NNP NNS VBP PRP VBP VBN IN DT NN IN NNS IN JJ NNS IN JJ NNS . Several high-level Arab officials have been targeted and Egypt 's ambassador Ihab al-Sherif was assassinated earlier this week . JJ JJ JJ NNS VBP VBN VBN CC NNP POS NN NNP NNP VBD VBN RBR DT NN . Haitian police have killed a prominent rebel wanted in connection with the murder of four police officers earlier in the year . JJ NNS VBP VBN DT JJ NN VBN IN NN IN DT NN IN CD NN NNS RBR IN DT NN . Officials said Sunday Jean Rene Anthony was killed in a shootout with police near the capital city of Port-au-Prince . NNS VBD NNP NNP NNP NNP VBD VBN IN DT NN IN NN IN DT NN NN IN NNP . The gunbattle came a day after another rebel leader , Remissaninthe Ravix , was killed in a shootout with Haitian authorities . DT NN VBD DT NN IN DT JJ NN , NNP NNP , VBD VBN IN DT NN IN JJ NNS . Mr. Ravix , the self-proclaimed leader of Haiti 's disbanded military , was one of four leaders of a February 2004 revolt that forced Mr. Aristide to flee the country . NNP NNP , DT JJ NN IN NNP POS JJ NN , VBD CD IN CD NNS IN DT NNP CD NN WDT VBD NNP NNP TO VB DT NN . Haitian officials had been searching for the two men in recent weeks in connection with several police killings . JJ NNS VBD VBN VBG IN DT CD NNS IN JJ NNS IN NN IN JJ NNS NNS . Hurricane Ike roared through vital parts of the U.S. oil industry , boosted gasoline prices , and probably cost insurance companies billions of dollars Saturday . NNP NNP VBD IN JJ NNS IN DT NNP NN NN , VBD NN NNS , CC RB NN NN NNS NNS IN NNS NNP . Oil company officials say they are sending workers to assess damage at off-shore oil rigs and coastal refineries . NN NN NNS VBP PRP VBP VBG NNS TO VB NN IN JJ NN NNS CC JJ NNS . U.S. government officials say they are prepared to release stocks from the Strategic Petroleum Reserve to help make up for lost production . NNP NN NNS VBP PRP VBP VBN TO VB NNS IN DT NNP NNP NNP TO VB VB RP IN VBN NN . Concerns about possible supply shortages have pushed gasoline prices up in some areas of the U.S. To boost gasoline supplies , the government has made it easier for companies to import fuel by suspending rules requiring certain formulations of gasoline to meet environmental standards . NNS IN JJ NN NNS VBP VBN NN NNS RP IN DT NNS IN DT NNP TO VB NN NNS , DT NN VBZ VBN PRP JJR IN NNS TO VB NN IN VBG NNS VBG JJ NNS IN NN TO VB JJ NNS . Meantime , three groups of insurance industry experts have widely differing estimates of the storm 's cost to insurance companies -- ranging from six billion dollars to 18 billion dollars . RB , CD NNS IN NN NN NNS VBP RB VBG NNS IN DT NN POS NN TO NN NNS : VBG IN CD CD NNS TO CD CD NNS . Following her crucial victory in the Democratic Party U.S. presidential primary in ( the northeastern state of ) Pennsylvania , Senator Hillary Clinton says she is still the best candidate to defeat the presumptive Republican nominee , Senator John McCain , in the general election . VBG PRP$ JJ NN IN DT JJ NNP NN JJ NN IN LRB DT JJ NN IN RRB NNP , NNP NNP NNP VBZ PRP VBZ RB DT JJS NN TO VB DT JJ NNP NN , NN NNP NNP , IN DT JJ NN . VOA 's Robert Raffaele has the story . NNP POS NNP NNP VBZ DT NN . The British government has proposed legally binding targets for reducing carbon emissions , becoming the first country to outline a legal framework for confronting global warming . DT JJ NN VBZ VBN RB JJ NNS IN VBG NN NNS , VBG DT JJ NN TO VB DT JJ NN IN VBG JJ NN . If approved by parliament , the bill introduced Tuesday would bind the government to cut carbon dioxide emissions by 26 to 32 percent by 2020 , and 60 percent by 2050 . IN VBN IN NN , DT NN VBN NNP MD VB DT NN TO VB NN NN NNS IN CD IN CD NN IN CD , CC CD NN IN CD . Officials say failure to meet interim targets could land the government in court . NNS VBP NN TO VB JJ NNS MD VB DT NN IN NN . Prime Minister Tony Blair told reporters the proposed legislation is a revolutionary step that ' sets an example for the rest of the world . ' JJ NN NNP NNP VBD NNS DT VBN NN VBZ DT JJ NN IN `` VBZ DT NN IN DT NN IN DT NN . `` European Union leaders last week agreed to cut carbon emissions from vehicles and factories by at least 20 percent over the next 13 years . NNP NNP NNS JJ NN VBD TO VB NN NNS IN NNS CC NNS IN IN JJS CD NN IN DT JJ CD NNS . The EU plan calls for renewable energy sources , such as hydroelectric , solar and wind power , to replace heavily polluting fossil fuels . DT NNP NN VBZ IN JJ NN NNS , JJ IN JJ , JJ CC NN NN , TO VB RB VBG JJ NNS . Police say insurgents in Russia 's volatile southern republic of Dagestan have killed a prosecutor and then ambushed the regional government 's interior minister on his way to the scene of the first attack . NNS VBP NNS IN NNP POS JJ JJ NN IN NNP VBP VBN DT NN CC RB VBD DT JJ NN POS JJ NN IN PRP$ NN TO DT NN IN DT JJ NN . Russian news reports say the minister escaped , but two police officers accompanying him were mortally wounded . JJ NN NNS VBP DT NN VBD , CC CD NNS NNS VBG PRP VBD RB VBN . Authorities say a bomb exploded as a car carrying prosecutor Bitar Bitarov to his office in the republic capital , Makhachkala , passed by . NNS VBP DT NN VBD IN DT NN VBG NN NNP NNP TO PRP$ NN IN DT NN NN , NNP , VBN IN . The prosecutor later died at a local hospital . DT NN RB VBD IN DT JJ NN . Attackers later fired on a second vehicle carrying regional Interior Minister Adilgerei Magomedtagirov and several police officers as they approached the scene to investigate . NNS RB VBD IN DT JJ NN VBG JJ NNP NNP NNP NNP CC JJ NNS NNS IN PRP VBD DT NN TO VB . The two wounded officers died on the way to a hospital . DT CD JJ NNS VBD IN DT NN TO DT NN . Dagestan borders Chechnya , where Islamic separatists have been fighting government forces for more than a decade . NNP NNS NNP , WRB JJ NNS VBP VBN VBG NN NNS IN JJR IN DT NN . An independent police panel in Britain says its probe into the fatal shooting of a Brazilian man by British police after the London subway bombings should be completed by the end of the year . DT JJ NNS NN IN NNP VBZ PRP$ NN IN DT JJ NN IN DT JJ NN IN JJ NN IN DT NNP NN NNS MD VB VBN IN DT NN IN DT NN . Britain 's Independent Police Complaints Commission said Tuesday findings of the investigation into the death of 27-year-old Jean Charles de Menezes will not be published until all of the case proceedings are complete , including any punishments against the officers involved . NNP POS NNP NNP NNPS NNP VBD NNP NNS IN DT NN IN DT NN IN JJ NNP NNP NNP NNP MD RB VB VBN IN DT IN DT NN NNS VBP JJ , VBG DT NNS IN DT NNS VBN . Monday , two senior Brazilian justice officials conferred in London with senior police officials about the probe . NNP , CD JJ JJ NN NNS VBD IN NNP IN JJ NN NNS IN DT NN . British police shot and killed Mr. de Menezes July 22 on a London subway train - one day after four failed bombings on the city 's transit system . JJ NNS VBD CC VBD NNP NNP NNP NNP CD IN DT NNP NN NN IN CD NN IN CD VBN NNS IN DT NN POS NN NN . Police said the Brazilian man 's suspicious behavior led them to believe he was a terrorist . NNS VBD DT JJ NN POS JJ NN VBD PRP TO VB PRP VBD DT NN . But recent news reports have cast doubt on the official version . CC JJ NN NNS VBP VBN NN IN DT JJ NN . Iran 's supreme leader says he sees no benefit to negotiations with the United States on his country 's nuclear program . NNP POS JJ NN VBZ PRP VBZ DT NN TO NNS IN DT NNP NNPS IN PRP$ NN POS JJ NN . Ayatollah Ali Khamenei added Iran will not negotiate its right to use nuclear technology with anyone . NNP NNP NNP VBD NNP MD RB VB PRP$ NN TO VB JJ NN IN DT . But he says Iran is willing to discuss international supervision of its program if other countries accept Iran 's right to a nuclear program . CC PRP VBZ NNP VBZ JJ TO VB JJ NN IN PRP$ NN IN JJ NNS VBP NNP POS NN TO DT JJ NN . The United States has offered to join European talks with Iran if it first agrees to suspend uranium enrichment . DT NNP NNP VBZ VBN TO VB JJ NNS IN NNP IN PRP RB VBZ TO VB NN NN . On Monday , Iranian nuclear negotiator Ali Larijani said Iran is seriously considering a package of international incentives aimed at convincing Iran to abandon enrichment . IN NNP , JJ JJ NN NNP NNP VBD NNP VBZ RB VBG DT NN IN JJ NNS VBN IN VBG NNP TO VB NN . He said Iran will respond as soon as possible to the offer from the five permanent members of the United Nations Security Council and Germany . PRP VBD NNP MD VB RB RB IN JJ TO DT NN IN DT CD JJ NNS IN DT NNP NNP NNP NNP CC NNP . The United States and its European allies accuse Iran of trying to develop nuclear weapons . DT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS . Tehran denies the allegation . NNP VBZ DT NN . The United States and China have opened annual talks on economic issues , with Washington seeking changes to China 's economy and financial markets . DT NNP NNPS CC NNP VBP VBN JJ NNS IN JJ NNS , IN NNP VBG NNS TO NNP POS NN CC JJ NNS . Treasury Secretary John Snow and Federal Reserve ( central bank ) chairman Alan Greenspan lead the U.S. side at the meeting outside Beijing in Xianghe . NNP NNP NNP NNP CC NNP NNP LRB JJ NN RRB NN NNP NNP VBP DT NNP NN IN DT NN IN NNP IN NNP . The talks are part of an effort to close the record trade gap between the countries . DT NNS VBP NN IN DT NN TO VB DT NN NN NN IN DT NNS . China sold the United States $ 162 billion more goods than it bought last year and a larger gap is forecast for this year . NNP VBD DT NNP NNPS $ CD CD JJR NNS IN PRP VBD JJ NN CC DT JJR NN VBZ VBN IN DT NN . A U.S. treasury official said that Washington is focusing on more than currency issues in its attempts to find a solution to the trade imbalance . DT NNP NN NN VBD IN NNP VBZ VBG IN JJR IN NN NNS IN PRP$ NNS TO VB DT NN TO DT NN NN . U.S. businesses accuse China of manipulating its currency to give Chinese exports an unfair price advantage . NNP NNS VBP NNP IN VBG PRP$ NN TO VB JJ NNS DT JJ NN NN . Afghan officials say they fear more than 64 people may have been killed by a massive avalanche along a key northern road . JJ NNS VBP PRP VBP JJR IN CD NNS MD VB VBN VBN IN DT JJ NN IN DT JJ JJ NN . Interior Minister Hanif Atmar said Tuesday that rescuers have already recovered 24 bodies from the Salang Pass , but they fear that more than 40 others still trapped have already died . NNP NNP NNP NNP VBD NNP IN NNS VBP RB VBN CD NNS IN DT NNP NNP , CC PRP VBP IN JJR IN CD NNS RB VBN VBP RB VBN . Hundreds of people have been rescued , but the 3,400-meter-high mountain pass , as well as a nearby tunnel , remain blocked . NNS IN NNS VBP VBN VBN , CC DT JJ NN NN , RB RB IN DT JJ NN , VBP VBN . Local officials said days of heavy snow led to avalanches that buried part of the mountain pass that connects Kabul to the northern city Mazar-i-Sharif . JJ NNS VBD NNS IN JJ NN VBD TO NNS WDT VBD NN IN DT NN NN WDT VBZ NNP TO DT JJ NN NNP . President Hamid Karzai has released a statement expressing condolences for the victims and ordered Afghan public works officials to assist the rescue effort . NNP NNP NNP VBZ VBN DT NN VBG NNS IN DT NNS CC VBD JJ JJ NNS NNS TO VB DT NN NN . Egypt says it has arrested more than 10 suspected terrorists who it claims were training to wage Jihad or holy war . NNP VBZ PRP VBZ VBN JJR IN CD JJ NNS WP PRP VBZ VBD VBG TO VB NNP CC JJ NN . An interior ministry statement released Monday says the group , including nine French citizens , two Belgians and an American , were living in Egypt under the pretense of studying Arabic and Islam . DT JJ NN NN VBN NNP VBZ DT NN , VBG CD JJ NNS , CD NNS CC DT NN , VBD VBG IN NNP IN DT NN IN VBG NNP CC NNP . The statement says several Egyptians , Tunisians and Syrians are also under arrest . DT NN VBZ JJ NNS , NNPS CC NNS VBP RB IN NN . The statement says the group had adopted extremist views and was working to recruit new members to wage terror in Iraq . DT NN VBZ DT NN VBD VBN NN NNS CC VBD VBG TO VB JJ NNS TO VB NN IN NNP . The government says the group has links to terror organizations abroad . DT NN VBZ DT NN VBZ NNS IN NN NNS RB . The ministry did not reveal the names of those under arrest . DT NN VBD RB VB DT NNS IN DT IN NN . The U.S. embassy in Cairo has refused to comment on the arrests . DT NNP NN IN NNP VBZ VBN TO VB IN DT NNS . The Afghan government and the United Nations refugee agency have pledged to strengthen efforts to resettle returnees and people inside the country displaced by violence . DT JJ NN CC DT NNP NNP NN NN VBP VBN TO VB NNS TO VB NNS CC NNS IN DT NN VBN IN NN . The pledge came after a high-profile visit to the country this week by the head of U.N. High Commissioner for Refugees , Antonio Guterres . DT NN VBD IN DT JJ NN TO DT NN DT NN IN DT NN IN NNP NNP NNP IN NNP , NNP NNP . As VOA 's Ravi Khanna reports , the U.N. official wants the international community to do more to resettle Afghan refugees . IN NNP POS NNP NNP VBZ , DT NNP NN VBZ DT JJ NN TO VB JJR TO VB JJ NNS . Thousands of demonstrators staged a peaceful rally in Russia 's capital Saturday to protest recent reforms that reduced Soviet-era subsidies for rent and utilities . NNS IN NNS VBD DT JJ NN IN NNP POS NN NNP TO VB JJ NNS WDT VBD JJ NNS IN NN CC NNS . Many elderly pensioners were among the 5,000 demonstrators criticizing the rising costs of living . JJ JJ NNS VBD IN DT CD NNS VBG DT VBG NNS IN NN . Protesters say people on fixed incomes can not afford to pay household expenses given recent rate hikes and subsidy reductions . NNS VBP NNS IN JJ NNS MD RB VB TO VB NN NNS VBN JJ NN NNS CC NN NNS . Demonstrators are urging the government to use some of the revenue from Russia 's booming oil industry to help maintain aging buildings and to assist people who can not afford rising housing and utility costs . NNS VBP VBG DT NN TO VB DT IN DT NN IN NNP POS JJ NN NN TO VB VB VBG NNS CC TO VB NNS WP MD RB VB VBG NN CC NN NNS . The Communist Party and other leftist groups sponsored the Moscow rally . DT NNP NNP CC JJ JJ NNS VBD DT NNP NN . Demonstrations were also held elsewhere in Russia Saturday , including the Siberian city of Krasnoyarsk . NNS VBD RB VBN RB IN NNP NNP , VBG DT JJ NN IN NNP . Prosecutors in Kenya have charged a man with illegal possession of weapons just one day after he was acquitted of murder in the 2002 suicide bombing of an Israeli hotel . NNS IN NNP VBP VBN DT NN IN JJ NN IN NNS RB CD NN IN PRP VBD VBN IN NN IN DT CD NN NN IN DT JJ NN . Prosecutors accused Omar Said Omar Friday of possessing an assortment of firearms , including missile launchers and rifles . NNS VBD NNP NNP NNP NNP IN VBG DT NN IN NNS , VBG NN NNS CC NNS . Mr. Omar denied the charges . NNP NNP VBD DT NNS . The prosecution said Mr. Omar should be denied bail . DT NN VBD NNP NNP MD VB VBN NN . But defense lawyers said it would not be fair to keep Mr. Omar in jail , noting that he already was held for nearly two years on charges that ultimately were dismissed . CC NN NNS VBD PRP MD RB VB JJ TO VB NNP NNP IN NN , VBG IN PRP RB VBD VBN IN RB CD NNS IN NNS WDT RB VBD VBN . A ruling on bail is expected Monday . DT NN IN NN VBZ VBN NNP . A Kenyan judge said Thursday there was not sufficient evidence to link Mr. Omar to the 2002 bombing of an Israeli owned hotel in Mombasa that killed at least 15 people . DT JJ NN VBD NNP EX VBD RB JJ NN TO VB NNP NNP TO DT CD NN IN DT JJ JJ NN IN NNP WDT VBD IN JJS CD NNS . Three other Kenyans also were acquitted . CD JJ NNS RB VBD VBN . Health officials in Laos say a woman who fell ill near the Lao capital last month with symptoms of bird flu has died . NN NNS IN NNP VBP DT NN WP VBD RB IN DT JJ NN JJ NN IN NNS IN NN NN VBZ VBN . Laboratory tests had shown the 42-year-old woman had the H5 flu virus . NN NNS VBD VBN DT JJ NN VBD DT NNP NN NN . Hours before the woman 's death in a Vientiane hospital Sunday , authorities said it would take several more days to determine whether she carried the dangerous H5N1 strain . NNS IN DT NN POS NN IN DT NNP NN NNP , NNS VBD PRP MD VB JJ JJR NNS TO VB IN PRP VBD DT JJ NNP NN . The woman lived near a village where bird flu has infected poultry . DT NN VBD IN DT NN WRB NN NN VBZ VBN NN . Last month , health officials confirmed the country 's first known human case of the disease in a 15-year-old girl who also lived near Vientiane . JJ NN , NN NNS VBD DT NN POS JJ VBN JJ NN IN DT NN IN DT JJ NN WP RB VBD IN NNP . Bird flu first appeared in Laos in 2004 . NN NN RB VBD IN NNP IN CD . It is known to have killed 167 people worldwide since 2003 , mostly in Asia . PRP VBZ VBN TO VB VBN CD NNS JJ IN CD , RB IN NNP . Authorities in southern Afghanistan say suspected Taleban insurgents have shot and critically wounded a pro-government Islamic cleric . NNS IN JJ NNP VBP VBN NNP NNS VBP VBN CC RB VBD DT JJ JJ NN . They say Mawlawi Mohammad Nabi Masah , a member of the influential Ulema Council of clerics , was ambushed and shot Sunday as he was leaving home near Kandahar city . PRP VBP NNP NNP NNP NNP , DT NN IN DT JJ NNP NNP IN NNS , VBD VBN CC VBN NNP IN PRP VBD VBG NN IN NNP NN . Elsewhere , Reuters news agency reports U.S. warplanes have again pounded suspected militant positions in eastern Kunar province . RB , NNP NN NN VBZ NNP NNS VBP RB VBN JJ JJ NNS IN JJ NNP NN . U.S. forces are searching the rugged area for a Special Forces unit that has been missing since Tuesday , just before a helicopter going to its rescue was shot down , killing all 16 troops on board . NNP NNS VBP VBG DT JJ NN IN DT JJ NNS NN WDT VBZ VBN VBG IN NNP , RB IN DT NN VBG TO PRP$ NN VBD VBN RB , VBG DT CD NNS IN NN . Afghan government officials say a similar U.S. air strike in Kunar late Friday caused casualties . JJ NN NNS VBP DT JJ NNP NN NN IN NNP RB NNP VBD NNS . There are conflicting accounts whether civilians were killed . EX VBP VBG NNS IN NNS VBD VBN . French Prime Minister Dominique de Villepin has urged the United States and other nations with troops in Iraq to withdraw from the country within one year . NNP NNP NNP NNP NNP NNP VBZ VBN DT NNP NNPS CC JJ NNS IN NNS IN NNP TO VB IN DT NN IN CD NN . In a speech Friday at Harvard University in Cambridge , in the northeastern state of Massachusetts , Villepin said the United States remains the leading power in the world . IN DT NN NNP IN NNP NNP IN NNP , IN DT JJ NN IN NNP , NNP VBD DT NNP NNPS VBZ DT VBG NN IN DT NN . But he noted the war in Iraq marked a turning point , undermining not only America 's image , but also the image of the West as a whole . CC PRP VBD DT NN IN NNP VBD DT NN NN , VBG RB RB NNP POS NN , CC RB DT NN IN DT NNP IN DT NN . Villepin continued that it is time for the United States and Europe to regain the respect and admiration of other peoples . NNP VBD IN PRP VBZ NN IN DT NNP NNPS CC NNP TO VB DT NN CC NN IN JJ NNS . Villepin said he believes a timetable for the withdrawal of all foreign troops is needed to allow Iraqis to feel their future is in their own hands and to put them back on the path of national sovereignty . NNP VBD PRP VBZ DT NN IN DT NN IN DT JJ NNS VBZ VBN TO VB NNS TO VB PRP$ NN VBZ IN PRP$ JJ NNS CC TO VB PRP RB IN DT NN IN JJ NN . Israeli doctors say Prime Minister Ariel Sharon , who remains in a coma since suffering a stroke two weeks ago , underwent a surgical procedure overnight to replace his breathing tube . JJ NNS VBP NNP NNP NNP NNP , WP VBZ IN DT NN IN VBG DT NN CD NNS RB , VBD DT JJ NN JJ TO VB PRP$ NN NN . The Hadassah hospital in Jerusalem issued a statement Wednesday morning , saying the procedure was necessary because the respiratory pipe developed a technical problem . DT NNP NN IN NNP VBD DT NN NNP NN , VBG DT NN VBD JJ IN DT JJ NN VBD DT JJ NN . The statement said Mr. Sharon 's condition continues to be critical but stable . DT NN VBD NNP NNP POS NN VBZ TO VB JJ CC JJ . The 77-year-old prime minister has been on respirator since he was incapacitated by a brain hemorrhage on January 4 . DT JJ JJ NN VBZ VBN IN NN IN PRP VBD VBN IN DT NN NN IN NNP CD . Reporters Without Borders is calling on Venezuela 's government to discuss what it calls FALSE accusations made by Venezuelan officials in response to recent criticism by the organization . NNS IN NNS VBZ VBG IN NNP POS NN TO VB WP PRP VBZ JJ NNS VBN IN JJ NNS IN NN TO JJ NN IN DT NN . The Paris-based group says Venezuela 's information ministry unfairly lashed out after it expressed concern about the recent detention of a Venezuelan journalist ( Gustavo Azocar ) on fraud and embezzlement charges . DT JJ NN VBZ NNP POS NN NN RB VBD RP IN PRP VBD NN IN DT JJ NN IN DT JJ NN LRB NNP NNP RRB IN NN CC NN NNS . The organization says the ministry responded by accusing Reporters Without Borders of being part of a psychological war campaign by the United States . DT NN VBZ DT NN VBD IN VBG NNS IN NNS IN VBG NN IN DT JJ NN NN IN DT NNP NNPS . It says the ministry also said the group was paid by the U.S. government and secret services . PRP VBZ DT NN RB VBD DT NN VBD VBN IN DT NNP NN CC JJ NNS . Reporters Without Borders denies both accusations and says it will continue to question governments on any issue it feels restricts press freedom . NNS IN NNS VBZ DT NNS CC VBZ PRP MD VB TO VB NNS IN DT NN PRP VBZ VBZ NN NN . The U.S. city of Los Angeles in the western state of California , and two Indian film industry groups have signed an agreement to boost cooperation between the U.S. and Indian moviemaking industries . DT NNP NN IN NNP NNP IN DT JJ NN IN NNP , CC CD JJ NN NN NNS VBP VBN DT NN TO VB NN IN DT NNP CC NNP NN NNS . The Motion Picture Association of America announced the deal late Wednesday in Los Angeles . DT NNP NNP NNP IN NNP VBD DT NN JJ NNP IN NNP NNP . At the signing of the deal , Los Angeles Mayor Antonio Villaraigosa said the declaration reinforces the city 's commitment to attracting international production . IN DT NN IN DT NN , NNP NNP NNP NNP NNP VBD DT NN VBZ DT NN POS NN TO VBG JJ NN . The U.S. and Indian film industries , known as Hollywood and Bollywood respectively , dominate the world of moviemaking . DT NNP CC JJ NN NNS , VBN IN NNP CC NNP RB , VB DT NN IN NN . The Hindi films My Name is Khan and Kiteswere recently filmed in Los Angeles . DT NNP NNS PRP$ NN VBZ NNP CC NNP RB VBD IN NNP NNP . Representatives of the two industries agreed earlier this year to fight movie piracy , which is common in India . NNS IN DT CD NNS VBD RBR DT NN TO VB NN NN , WDT VBZ JJ IN NNP . An Associated Press correspondent left Ethiopia Sunday after getting an expulsion order from the government . DT NNP NNP NN VBD NNP NNP IN VBG DT NN NN IN DT NN . Anthony Mitchell was told by Ethiopian officials on Saturday he had 24 hours to leave the country . NNP NNP VBD VBN IN JJ NNS IN NNP PRP VBD CD NNS TO VB DT NN . The news agency says attempts to appeal the order went unanswered . DT NN NN VBZ NNS TO VB DT NN VBD JJ . In a statement , the Ethiopian government accused Mitchell of reporting information ' far from the truth ' and tarnishing the country 's image . IN DT NN , DT JJ NN VBD NNP IN VBG NN `` RB IN DT NN `` CC VBG DT NN POS NN . Associated Press managing editor Mike Silverman says the news agency will stand behind Mitchell , a British journalist he describes as aggressive and fair . NNP NNP NN NN NNP NNP VBZ DT NN NN MD VB IN NNP , DT JJ NN PRP VBZ IN JJ CC JJ . Ethiopia recently began a crackdown on the press and opposition groups , charging 129 people with treason and genocide . NNP RB VBD DT NN IN DT NN CC NN NNS , VBG CD NNS IN NN CC NN . Among those charged are five Voice of America journalists in Washington . IN DT VBN VBP CD NNP IN NNP NNS IN NNP . South Korean Foreign Ministry officials say the Japanese foreign minister has misguided views on the history between the two countries . NNP JJ NNP NNP NNS VBP DT JJ JJ NN VBZ VBN NNS IN DT NN IN DT CD NNS . The criticism from Seoul Monday came in response to Japanese Foreign Minister Taro Aso 's comments Saturday about visits to a controversial war shrine in Tokyo . DT NN IN NNP NNP VBD IN NN TO JJ NNP NNP NNP NNP POS NNS NNP IN NNS TO DT JJ NN NN IN NNP . Mr. Aso said Japan did not have to worry about being isolated because of Prime Minister Junichiro Koizumi 's visits to the shrine since the only countries complaining were South Korea and China . NNP NNP VBD NNP VBD RB VB TO VB IN VBG VBN IN IN NNP NNP NNP NNP POS NNS TO DT NN IN DT JJ NNS VBG VBD NNP NNP CC NNP . Japan 's relations with its two neighbors have deteriorated because of Mr. Koizumi 's annual visits to the shrine most recently last month . NNP POS NNS IN PRP$ CD NNS VBP VBN IN IN NNP NNP POS JJ NNS TO DT NN RBS RB JJ NN . The shrine deifies war criminals among the war dead honored there . DT NN VBZ NN NNS IN DT NN JJ VBN RB . South Korea and China have said the shrine glorifies Japan 's militarist past . NNP NNP CC NNP VBP VBN DT NN VBZ NNP POS NN NN . Syria 's foreign minister , Farouk al-Shara , says his government will exchange ambassadors with Baghdad when a new Iraqi government is formed . NNP POS JJ NN , NNP NNP , VBZ PRP$ NN MD VB NNS IN NNP WRB DT JJ JJ NN VBZ VBN . This is the first time that Damascus has set a time frame for restoring ties . DT VBZ DT JJ NN IN NNP VBZ VBN DT NN NN IN VBG NNS . Al-Shara says Syria welcomes a close relationship with Iraq and is committed to Iraq 's territorial integrity and to an end to the U.S. occupation . NNP VBZ NNP VBZ DT JJ NN IN NNP CC VBZ VBN TO NNP POS JJ NN CC TO DT NN TO DT NNP NN . Damascus broke off relations with Baghdad more than 20 years ago . NNP VBD RP NNS IN NNP JJR IN CD NNS RB . Relations between the two countries deteriorated after Syria sided with Iran in the Iran-Iraq war . NNP IN DT CD NNS VBD IN NNP VBD IN NNP IN DT NNP NN . Syria also joined the U.S.-led coalition against Iraq in the 1991 Gulf War . NNP RB VBD DT JJ NN IN NNP IN DT CD NNP NNP . Iraq is encouraging Arab countries to send ambassadors to Baghdad . NNP VBZ VBG JJ NNS TO VB NNS TO NNP . Turkey 's military says 15 Kurdish rebels have been killed in Turkish attacks on suspected rebel targets in northern Iraq . NNP POS JJ VBZ CD NNP NNS VBP VBN VBN IN JJ NNS IN JJ NN NNS IN JJ NNP . The military said Saturday the rebels - from the outlawed Kurdistan Workers Party ( PKK ) - were killed Thursday in artillery fire aimed at stopping the group from attacking Turkish targets . DT NN VBD NNP DT NNS : IN DT JJ NNP NNP NNP LRB NNP RRB : VBD VBN NNP IN NN NN VBN IN VBG DT NN IN VBG JJ NNS . A military statement said Turkish warplanes followed up the attack with airstrikes in northern Iraq Friday , but it was unclear if there were casualties . DT JJ NN VBD JJ NNS VBD RP DT NN IN NNS IN JJ NNP NNP , CC PRP VBD JJ IN EX VBD NNS . Turkey accuses PKK militants of using suspected strongholds in northern Iraq to launch attacks in Turkey . NNP VBZ NNP NNS IN VBG JJ NNS IN JJ NNP TO VB NNS IN NNP . The PKK has been fighting for Kurdish autonomy in Turkey 's mainly Kurdish southeast for nearly 25 years . DT NNP VBZ VBN VBG IN NNP NN IN NNP POS RB JJ NN IN RB CD NNS . The violence has killed more than 30,000 people . DT NN VBZ VBN JJR IN CD NNS . Turkey , the United States and other nations have designated the PKK a terrorist group . NNP , DT NNP NNPS CC JJ NNS VBP VBN DT NNP DT JJ NN . Venezuela says it hopes to sign a new agreement with the United States next month on anti-drug cooperation . NNP VBZ PRP VBZ TO VB DT JJ NN IN DT NNP NNPS JJ NN IN JJ NN . Venezuelan anti-drug chief Luis Correa said Monday the deal will be signed around July 8 . JJ JJ NN NNP NNP VBD NNP DT NN MD VB VBN IN NNP CD . The U.S. Embassy in Caracas said the two sides are close to an agreement . DT NNP NNP IN NNP VBD DT CD NNS VBP RB TO DT NN . Reports say Venezuela wants the new accord to restrict U.S. agents operating in the Andean country but ensure cooperation in the areas of information-sharing , technology and training . NNS VBP NNP VBZ DT JJ NN TO VB NNP NNS VBG IN DT JJ NN CC VB NN IN DT NNS IN NN , NN CC NN . Last August , Venezuelan President Hugo Chavez accused the U.S. Drug Enforcement Administration of spying on his government under the guise of fighting drug trafficking and suspended cooperation with the agency . JJ NNP , JJ NNP NNP NNP VBD DT NNP NNP NNP NNP IN VBG IN PRP$ NN IN DT NN IN VBG NN NN CC VBD NN IN DT NN . The U.S. government responded by revoking the visas of three Venezuelan military officers suspected of involvement in drug trafficking . DT NNP NN VBD IN VBG DT NNS IN CD JJ JJ NNS VBN IN NN IN NN NN . In September , the U.S. government said Venezuela had ' failed demonstrably ' to adhere to its obligations under international anti-narcotics agreements . IN NNP , DT NNP NN VBD NNP VBD `` VBN RB `` TO VB TO PRP$ NNS IN JJ JJ NNS . Indian Defense Minister Pranab Mukherjee will now run the foreign ministry , after a Cabinet reshuffle that brings in three new faces . JJ NNP NNP NNP NNP MD RB VB DT JJ NN , IN DT NNP NN WDT VBZ IN CD JJ NNS . The new defense minister will be A.K. Antony , a former chief minister of the southern Indian state of Kerala . DT JJ NN NN MD VB NNP NNP , DT JJ JJ NN IN DT JJ JJ NN IN NNP . Also sworn in as junior ministers were M.H. Ambareesh , a film actor-turned Congress politician , and Jayprakash Narain Yadav of the government 's coalition partner , Rashtriya Janata Dal . RB VBN IN IN JJ NNS VBD NNP NNP , DT NN JJ NNP NN , CC NNP NNP NNP IN DT NN POS NN NN , NNP NNP NNP . The crucial foreign ministry post fell vacant last November when then-minister Natwar Singh was charged with receiving kickbacks in the investigation of the UN oil-for-food program in Iraq . DT JJ JJ NN NN VBD JJ JJ NNP WRB JJ NNP NNP VBD VBN IN VBG NNS IN DT NN IN DT NNP NN NN IN NNP . This reshuffle takes the number of ministers in the three-level Cabinet to 80 . DT NN VBZ DT NN IN NNS IN DT JJ NNP TO CD . It has 34 ministers , seven deputy ministers and 39 junior ministers . PRP VBZ CD NNS , CD NN NNS CC CD NN NNS . A suicide attack in southwestern Afghanistan Thursday killed six police officers and an Indian construction engineer , and wounded a dozen others . DT NN NN IN JJ NNP NNP VBD CD NNS NNS CC DT JJ NN NN , CC VBD DT NN NNS . Among those wounded were 11 Afghan police and another Indian . IN DT VBN VBD CD JJ NNS CC DT NN . The attack targeted a convoy carrying a group of Indian engineers in Nimroz province . DT NN VBD DT NN VBG DT NN IN JJ NNS IN NNP NN . Afghan police did not say who was behind the attack , but Taliban rebels have often been blamed for such attacks . JJ NNS VBD RB VB WP VBD IN DT NN , CC NNP NNS VBP RB VBN VBN IN JJ NNS . A resurgent Taliban movement and other Afghan rebel forces have stepped up their attacks against Afghan , U.S. and NATO forces over the past year . DT JJ NNP NN CC JJ JJ NN NNS VBP VBN RP PRP$ NNS IN JJ , NNP CC NNP NNS IN DT JJ NN . On Wednesday , U.S. military officials in Afghanistan said a soldier and his Afghan interpreter were killed in a roadside bombing in the eastern province of Khost . IN NNP , NNP JJ NNS IN NNP VBD DT NN CC PRP$ JJ NN VBD VBN IN DT NN VBG IN DT JJ NN IN NNP . And Afghanistan 's Defense Ministry said Wednesday at least four militants were killed in separate incidents when bombs they were planting exploded prematurely . CC NNP POS NNP NNP VBD NNP IN JJS CD NNS VBD VBN IN JJ NNS WRB NNS PRP VBD VBG VBN RB . Rebels in Sudan 's war-torn Darfur region say they have shot down an unmanned spy plane which , they say , the Sudanese government was using to track their positions . NNS IN NNP POS JJ NNP NN VBP PRP VBP VBN RP DT JJ NN NN WDT , PRP VBP , DT JJ NN VBD VBG TO VB PRP$ NNS . A spokesman for the Sudan Liberation Army said its forces shot down the unmanned drone Thursday in the central mountainous Jabel Marra area . DT NN IN DT NNP NNP NNP VBD PRP$ NNS VBD RP DT JJ NN NNP IN DT JJ JJ NNP NNP NN . A Sudanese army spokesman said an unmanned plane had made an emergency landing in the area , but was not able to say whether the aircraft was shot down . DT JJ NN NN VBD DT JJ NN VBD VBN DT NN NN IN DT NN , CC VBD RB JJ TO VB IN DT NN VBD VBN RB . Rebels say the aircraft appears to be Chinese-made . NNS VBP DT NN VBZ TO VB JJ . Rights groups criticize China for selling weapons to Sudan 's government which , they say , are used against rebels in Darfur . NNS NNS VBP NNP IN VBG NNS TO NNP POS NN WDT , PRP VBP , VBP VBN IN NNS IN NNP . More than five years of fighting in Darfur among rebel groups , the government and government-allied militias have killed more than 2,00,000 people and displaced more than 2.5 million others . JJR IN CD NNS IN VBG IN NNP IN JJ NNS , DT NN CC JJ NNS VBP VBN RBR IN CD NNS CC VBN JJR IN CD CD NNS . Irish physicians have recorded what they believe is the country 's first case of the human variant of mad cow disease , a fatal brain-wasting illness . JJ NNS VBP VBN WP PRP VBP VBZ DT NN POS JJ NN IN DT JJ NN IN JJ NN NN , DT JJ JJ NN . Physicians said Wednesday in Dublin that tests on a man in his early 20s have confirmed he is most likely suffering from variant Creutzfeldt-Jakob disease . NNS VBD NNP IN NNP WDT NNS IN DT NN IN PRP$ JJ NNS VBP VBN PRP VBZ RBS JJ NN IN JJ NNP NN . The illness is the human form of the brain-wasting disease in cattle known as bovine spongiform encephalopathy . DT NN VBZ DT JJ NN IN DT JJ NN IN NNS VBN IN NN NN NN . Physicians say humans usually contract the human form of the illness by eating contaminated beef . NNS VBP NNS RB NN DT JJ NN IN DT NN IN VBG VBN NN . The illness has killed more than 100 people in Europe , most of them in Britain , since the mid-1990s . DT NN VBZ VBN JJR IN CD NNS IN NNP , JJS IN PRP IN NNP , IN DT NNS . The only previous case in Ireland involved a young woman who had spent much of her time in Britain . DT JJ JJ NN IN NNP VBD DT JJ NN WP VBD VBN NN IN PRP$ NN IN NNP . Indian Prime Minister Manmohan Singh says there is an urgent need in India to counter a sense of alienation among its minority Muslims . JJ NNP NNP NNP NNP VBZ EX VBZ DT JJ NN IN NNP TO VB DT NN IN NN IN PRP$ NN NNS . He told a meeting of state chief ministers in New Delhi that they should make sure that efforts to end Islamist militancy do not victimize the entire community . PRP VBD DT NN IN NN NN NNS IN NNP NNP IN PRP MD VB JJ IN NNS TO VB NNP NN VBP RB VB DT JJ NN . He said no innocent person should be harassed in India 's struggle against terrorism . PRP VBD DT JJ NN MD VB VBN IN NNP POS NN IN NN . Mr. Singh said any kind of insecurity among India 's 140 million Muslims could have extremely damaging effects on the country and fuel more terrorism . NNP NNP VBD DT NN IN NN IN NNP POS CD CD NNS MD VB RB JJ NNS IN DT NN CC VB JJR NN . His remarks came less than two months after train bombings in Mumbai were blamed on domestic Islamist militants with links across the border in Pakistan . PRP$ NNS VBD JJR IN CD NNS IN NN NNS IN NNP VBD VBN IN JJ NN NNS IN NNS IN DT NN IN NNP . The bomb attacks in Mumbai prompted police raids on the city 's Muslim ghettos and the detention of hundreds . DT NN NNS IN NNP VBD NN NNS IN DT NN POS NNP NNS CC DT NN IN NNS . U.S. and Brazilian media reports say police have arrested a key al-Qaida operative in the Brazilian city of Sao Paulo . NNP CC JJ NNS NNS VBP NNS VBP VBN DT NN NNP NN IN DT JJ NN IN NNP NNP . The arrest was reported Tuesday by the Associated Press ( AP ) and Brazil 's daily newspaper , Folha de S. Paulo . DT NN VBD VBN NNP IN DT NNP NNP LRB NNP RRB CC NNP POS JJ NN , NNP NNP NNP NNP . The suspect was not identified by name , nor was his nationality given . DT NN VBD RB VBN IN NN , CC VBD PRP$ NN VBN . But the AP said a federal police spokeswoman confirmed the newspaper 's report that the suspect is a top player in al-Qaida 's international communications . CC DT NNP VBD DT JJ NN NN VBD DT NN POS NN IN DT NN VBZ DT JJ NN IN NNP POS JJ NNS . She said the suspect is being held under laws that prohibit the promotion of racism in Brazil . PRP VBD DT NN VBZ VBG VBN IN NNS WDT VBP DT NN IN NN IN NNP . An internet message bearing the signature of a group that says it has links to al-Qaida is threatening a ' bloody war ' against European countries unless they pull their troops out of Iraq within one month . DT NN NN VBG DT NN IN DT NN WDT VBZ PRP VBZ NNS TO NNP VBZ VBG DT `` JJ NN `` IN JJ NNS IN PRP VBP PRP$ NNS IN IN NNP IN CD NN . The message , posted on an Islamist web site , says it speaks for the Abu-Hafs al-Masri Brigades , one of two groups whose signature appeared on statements claiming responsibility for the deadly July seventh bombings in London . DT NN , VBN IN DT JJ NN NN , VBZ PRP VBZ IN DT NNP NNP NNP , CD IN CD NNS WP$ NN VBD IN NNS VBG NN IN DT JJ NNP JJ NNS IN NNP . The statement , which mentioned Denmark , Italy , Britain and the Netherlands , said there will be no other warnings after the one-month ultimatum expires . DT NN , WDT VBD NNP , NNP , NNP CC DT NNP , VBD EX MD VB DT JJ NNS IN DT JJ NN VBZ . Experts have viewed past statements by the Abu-Hafs al-Masri Brigades with doubt , because the group has no proven track record of attacks and has claimed responsibility for events in which it was unlikely to have played any role . NNS VBP VBN JJ NNS IN DT JJ JJ NNS IN NN , IN DT NN VBZ DT JJ NN NN IN NNS CC VBZ VBN NN IN NNS IN WDT PRP VBD JJ TO VB VBN DT NN . A U.S. official in Iraq says four American security guards have been killed in a suicide car bomb attack on a U.S. diplomatic convoy in the northern city of Mosul . DT NNP NN IN NNP VBZ CD JJ NN NNS VBP VBN VBN IN DT NN NN NN NN IN DT NNP JJ NN IN DT JJ NN IN NNP . The official , who spoke on condition of anonymity , said two other guards were wounded in the attack on a three-vehicle diplomatic convoy , Tuesday . DT NN , WP VBD IN NN IN NN , VBD CD JJ NNS VBD VBN IN DT NN IN DT JJ JJ NN , NNP . Meanwhile , Britain has admitted that British troops in Basra used an armored vehicle to smash down a jail wall in a bid to free two detained undercover soldiers . RB , NNP VBZ VBN IN JJ NNS IN NNP VBD DT JJ NN TO VB RP DT NN NN IN DT NN TO VB CD JJ NN NNS . A Defense Ministry statement says the local British commander acted Monday because he feared the detained soldiers were being handed over to local Iraqi militia , which later proved to be correct . DT NNP NNP NN VBZ DT JJ JJ NN VBD NNP IN PRP VBD DT JJ NNS VBD VBG VBN IN TO JJ JJ NN , WDT RB VBD TO VB JJ . Britain says the soldiers were freed from a nearby house where they had been taken before the military action on the prison . NNP VBZ DT NNS VBD VBN IN DT JJ NN WRB PRP VBD VBN VBN IN DT JJ NN IN DT NN . Iraqi police had detained the British undercover soldiers after a clash in the southern city . JJ NNS VBD VBN DT JJ NN NNS IN DT NN IN DT JJ NN . Iraq 's controversial deputy Prime Minister Ahmad Chalabi is meeting with Secretary of State Condoleezza Rice Wednesday in Washington . NNP POS JJ NN NNP NNP NNP NNP VBZ VBG IN NNP IN NNP NNP NNP NNP IN NNP . The meeting comes as Democratic U.S. lawmakers are asking Mr. Chalabi to discuss pre-war Iraq intelligence he provided about Saddam Hussein 's weapons that later proved faulty . DT NN VBZ IN JJ NNP NNS VBP VBG NNP NNP TO VB JJ NNP NN PRP VBD IN NNP NNP POS NNS WDT RB VBD NN . Mr. Chalabi is also accused last year of passing U.S. intelligence to Iran , and in 2004 U.S. forces raided his Baghdad offices . NNP NNP VBZ RB VBN JJ NN IN VBG NNP NN TO NNP , CC IN CD NNP NNS VBD PRP$ NNP NNS . Despite the allegations , U.S. State Department spokesman Adam Ereli said Tuesday U.S. officials regularly meet with Mr. Chalabi in his capacity as a representative of Iraq 's government . IN DT NNS , NNP NNP NNP NN NNP NNP VBD NNP NNP NNS RB VBP IN NNP NNP IN PRP$ NN IN DT NN IN NNP POS NN . Later Wednesday , Mr. Chalabi delivers a speech at a conservative public policy organization , the American Enterprise Institute . RB NNP , NNP NNP VBZ DT NN IN DT JJ JJ NN NN , DT NNP NNP NNP . It will be his first public speech in the United States in more than two years . PRP MD VB PRP$ JJ JJ NN IN DT NNP NNPS IN JJR IN CD NNS . South Korea 's foreign ministry says pirates , probably from Somalia , have hijacked an oil tanker . NNP NNP POS JJ NN VBZ NNS , RB IN NNP , VBP VBN DT NN NN . The ministry says the tanker , the Samho Dream , was on its way from Iraq to the United States when it was seized Sunday off the coast of East Africa . DT NN VBZ DT NN , DT NNP NNP , VBD IN PRP$ NN IN NNP TO DT NNP NNPS WRB PRP VBD VBN NNP IN DT NN IN NNP NNP . It says the ship has a crew of five South Koreans and 19 Filipinos . PRP VBZ DT NN VBZ DT NN IN CD NNP NNS CC CD NNS . Somali pirates have been especially active in recent weeks , taking advantage of good weather to hijack 16 ships since the beginning of March . JJ NNS VBP VBN RB JJ IN JJ NNS , VBG NN IN JJ NN TO VB CD NNS IN DT NN IN NNP . International naval forces have stopped numerous attacks and detained dozens of pirates . NN JJ NNS VBP VBN JJ NNS CC VBN NNS IN NNS . But the forces can not fully cover the vast areas of the Indian Ocean and Gulf of Aden in which the pirates operate . CC DT NNS MD RB RB VB DT JJ NNS IN DT NNP NNP CC NNP IN NNP IN WDT DT NNS VBP . Pirates usually release the hijacked ships and their crews unharmed after receiving a ransom , sometimes worth millions of dollars . NNS RB VBP DT JJ NNS CC PRP$ NNS VBN IN VBG DT NN , RB JJ NNS IN NNS . Turkey 's parliament has approved sending military forces to join a United Nations peacekeeping mission in Lebanon . NNP POS NN VBZ VBN VBG JJ NNS TO VB DT NNP NNP VBG NN IN NNP . Prime Minister Recep Tayyip Erdogan had urged support for the mission following a cease-fire between Israel and the Lebanese group Hezbollah . NNP NNP NNP NNP NNP VBD VBN NN IN DT NN VBG DT NN IN NNP CC DT JJ NN NNP . Lawmakers voted 340 to 192 to approve the deployment Tuesday . NNS VBD CD TO CD TO VB DT NN NNP . Turkish officials say they will send nearly 1,000 military personnel to conduct naval patrols off Lebanon and to help train Lebanese troops . JJ NNS VBP PRP MD VB RB CD JJ NNS TO VB JJ NNS IN NNP CC TO VB VB JJ NNS . Before the vote , thousands of people rallied outside the parliament building in Ankara to protest the mission . IN DT NN , NNS IN NNS VBD IN DT NN NN IN NNP TO VB DT NN . U.N. Secretary-General Kofi Annan arrived in Ankara today for talks on the U.N. force . NNP NNP NNP NNP VBD IN NNP NN IN NNS IN DT NNP NN . Turkey is the second Muslim country , after Qater , to commit troops to the expanded force . NNP VBZ DT JJ NNP NN , IN NNP , TO VB NNS TO DT VBN NN . Militants in Saudi Arabia have attacked the U.S. Consulate in the port city of Jeddah with machine guns and explosives . NNS IN NNP NNP VBP VBN DT NNP NN IN DT JJ NN IN NNP IN NN NNS CC NNS . Authorities say at least four Saudi security guards and three of the attackers are dead . NNS VBP IN JJS CD JJ NN NNS CC CD IN DT NNS VBP JJ . A Saudi Interior Ministry statement said militants launched the late-morning attack with explosives aimed at the main gate of the heavily-fortified U.S. compound . DT JJ NNP NNP NN VBD NNS VBD DT JJ NN IN NNS VBN IN DT JJ NN IN DT JJ NNP NN . Two gunmen were reported in custody and officials say security forces had regained control of the compound by mid-afternoon . CD NNS VBD VBN IN NN CC NNS VBP NN NNS VBD VBN NN IN DT NN IN NN . There has been no claim of responsibility . EX VBZ VBN DT NN IN NN . The attack is the latest in a series of assaults targeting foreigners in the kingdom over the past 18 months . DT NN VBZ DT JJS IN DT NN IN NNS VBG NNS IN DT NN IN DT JJ CD NNS . The U.S. State Department has issued a series of travel warnings in the past year , urging all non-essential Americans to leave the country . DT NNP NNP NNP VBZ VBN DT NN IN NN NNS IN DT JJ NN , VBG DT JJ NNS TO VB DT NN . The U.S. military says nearly two dozen militants were killed during a rare frontal attack on a U.S. base in southern Afghanistan . DT NNP NN VBZ RB CD NN NNS VBD VBN IN DT JJ JJ NN IN DT NNP NN IN JJ NNP . A statement from the U.S. led coalition says a group of 75 Taleban militants tried to overrun the base in southern Uruzgan province earlier Tuesday . DT NN IN DT NNP VBD NN VBZ DT NN IN CD NNP NNS VBD TO VB DT NN IN JJ NNP NN JJR NNP . The statement says Afghan and U.S. forces backed by air support repelled the attack , killing more than 20 militants . DT NN VBZ JJ CC NNP NNS VBN IN NN NN VBD DT NN , VBG JJR IN CD NNS . Two Afghan girls and two Afghan soldiers were wounded . CD JJ NNS CC CD JJ NNS VBD VBN . Violence has surged in Afghanistan over the past year and half as suspected Taleban militants have stepped up suicide attacks and roadside bombings . NN VBZ VBN IN NNP IN DT JJ NN CC NN IN JJ NNP NNS VBP VBN RP NN NNS CC NN NNS . More than 50,000 NATO and U.S. forces are battling the renewed insurgency in their strongholds in southern and eastern Afghanistan . JJR IN CD NNP CC NNP NNS VBP VBG DT VBN NN IN PRP$ NNS IN JJ CC JJ NNP . A South Korean newspaper reports that a North Korean spy entered the South in 2003 by pretending to be an asylum-seeker . DT JJ JJ NN VBZ IN DT JJ JJ NN VBD DT NNP IN CD IN VBG TO VB DT NN . South Korea 's JoongAng Ilbo reports the North Korean joined a group of refugees who entered the South Korean Embassy in Beijing in 2002 . NNP NNP POS NNP NNP VBZ DT NNP JJ VBD DT NN IN NNS WP VBD DT NNP JJ NNP IN NNP IN CD . The newspaper says he spent more than a year in South Korea , collecting information on Seoul 's handling of refugees . DT NN VBZ PRP VBD JJR IN DT NN IN NNP NNP , VBG NN IN NNP POS NN IN NNS . Officials in Seoul say the man returned to North Korea in April , then came back to the South a month later , where he surrendered to authorities . NNS IN NNP VBP DT NN VBD TO NNP NNP IN NNP , RB VBD RB TO DT NNP DT NN RB , WRB PRP VBD TO NNS . South Korea 's Yonhap news agency quotes government officials as saying they are investigating the 28-year-old on suspicion of spying for North Korea , but they doubt he actually conveyed any sensitive information . NNP NNP POS NNP NN NN VBZ NN NNS IN VBG PRP VBP VBG DT JJ IN NN IN VBG IN NNP NNP , CC PRP VBP PRP RB VBD DT JJ NN . Afghan officials say Taliban militants killed 11 policemen late Sunday , while two NATO soldiers died in a separate incident in the southern Afghan province of Kandahar . JJ NNS VBP NNP NNS VBD CD NNS JJ NNP , IN CD NNP NNS VBD IN DT JJ NN IN DT JJ JJ NN IN NNP . The local deputy police chief , Amanullah Khan , says Taliban militants opened fire on a group of sleeping policemen at a remote checkpoint in Kandahar 's Arghandab district . DT JJ NN NN NN , NNP NNP , VBZ NNP NNS VBD NN IN DT NN IN VBG NNS IN DT JJ NN IN NNP POS NNP NN . He said preliminary reports indicate that one of the policemen had links with the Taliban . PRP VBD JJ NNS VBP IN CD IN DT NNS VBD NNS IN DT NNP . Meanwhile , the British Defense Ministry confirmed that two Royal Air Force servicemen were killed when their vehicle hit an explosive device . RB , DT NNP NNP NNP VBD IN CD NNP NNP NNP NNS VBD VBN WRB PRP$ NN VBD DT JJ NN . NATO 's International Security Assistance Force says two other British soldiers were wounded in the blast Sunday . NNP POS NNP NNP NNP NNP VBZ CD JJ JJ NNS VBD VBN IN DT NN NNP . The ISAF did not disclose the exact location of the incident . DT NNP VBD RB VB DT JJ NN IN DT NN . The Taliban ambush was the latest in a series of recent attacks on Afghan police in the south . DT NNP NN VBD DT JJS IN DT NN IN JJ NNS IN JJ NNS IN DT NN . Eight police officers were killed Saturday in Kandahar and neighboring Helmand Provinces by the militant group . CD NN NNS VBD VBN NNP IN NNP CC JJ NNP NNS IN DT JJ NN . Police in Iran say a fire at a mosque in central Tehran has killed at least 59 people and injured more than 200 others . NNS IN NNP VBP DT NN IN DT NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD NNS . Iranian state media said a faulty electrical heater sparked the blaze as crowds gathered in the Arg Mosque for a major Shi'ite religious festival , Ashura . JJ NN NNS VBD DT JJ JJ NN VBD DT NN IN NNS VBD IN DT NNP NNP IN DT JJ NNP JJ NN , NNP . Eyewitnesses said panicked crowds rushed for the exits and some people jumped through windows to escape the flames . NNS VBD JJ NNS VBD IN DT NNS CC DT NNS VBD IN NNS TO VB DT NNS . Officials in Washington and New York say they have uncovered efforts by a Chinese company to sell Iran banned materials that could be used in Tehran 's missile and nuclear programs . NNS IN NNP CC NNP NNP VBP PRP VBP VBN NNS IN DT JJ NN TO VB NNP VBD NNS WDT MD VB VBN IN NNP POS NN CC JJ NNS . Tuesday , the Manhattan ( New York City ) prosecutor unsealed a multi-count indictment against China-based LIMMT Economic and Trade company and Li Fang Wei , one of the firm 's managers . NNP , DT NNP LRB NNP NNP NNP RRB NN VBD DT JJ NN IN JJ NNP NNP CC NNP NN CC NNP NNP NNP , CD IN DT NN POS NNS . Prosecutors allege that the Chinese company used shell ( fake ) companies and aliases to circumvent laws that prevent U.S. banks from processing transactions for certain Iranian weapons companies . NNS VBP IN DT JJ NN VBD NN LRB NN RRB NNS CC NNS TO VB NNS WDT VBP NNP NNS IN VBG NNS IN JJ JJ NNS NNS . At about the same time Tuesday , the U.S. Treasury imposed sanctions on six Iranian companies and one Chinese person in connection with the same case . IN IN DT JJ NN NNP , DT NNP NNP VBD NNS IN CD JJ NNS CC CD JJ NN IN NN IN DT JJ NN . The foreign minister of Chad has called on wealthy nations to help poor countries reduce poverty and advance social and economic progress . DT JJ NN IN NNP VBZ VBN IN JJ NNS TO VB JJ NNS VBP NN CC NN JJ CC JJ NN . In comments at the United Nations World Summit , llam-Mi Ahmad also appealed for fair trade laws and total debt relief for African nations . IN NNS IN DT NNP NNP NNP NNP , NNP NNP RB VBD IN JJ NN NNS CC JJ NN NN IN JJ NNS . He pledged ongoing cooperation with neighboring African countries that face the threat of terrorism . PRP VBD JJ NN IN JJ JJ NNS WDT VBP DT NN IN NN . He also made an impassioned plea for international assistance in resolving the conflict in Sudan 's western Darfur region . PRP RB VBD DT JJ NN IN JJ NN IN VBG DT NN IN NNP POS JJ NNP NN . Over the last two years , at least 2,00,000 Sudanese refugees from Darfur have fled across the border into Chad . IN DT JJ CD NNS , IN JJS CD JJ NNS IN NNP VBP VBN IN DT NN IN NNP . Mr. Ahmad said Chad has helped efforts to mediate the crisis and has taken on the refugees with great cost to its environment , food supply and the constant threat of ongoing violence among the various combatants . NNP NNP VBD NNP VBZ VBN NNS TO VB DT NN CC VBZ VBN IN DT NNS IN JJ NN TO PRP$ NN , NN NN CC DT JJ NN IN JJ NN IN DT JJ NNS . The United Nations has hailed a decision by Pakistan to postpone the purchase of fighter jets from Washington in order to provide more relief to earthquake victims as the Himalayan winter approaches . DT NNP NNP VBZ VBN DT NN IN NNP TO VB DT NN IN NN NNS IN NNP IN NN TO VB JJR NN TO NN NNS IN DT NNP NN NNS . U.N. Emergency Coordinator Jan Vandemoortele says such moves are helpful as U.N. officials work hard to secure more funding for humanitarian aid for victims of the quake . NNP NNP NNP NNP NNP VBZ JJ NNS VBP JJ IN NNP NNS VBP JJ TO VB JJR NN IN JJ NN IN NNS IN DT NN . Officials say hundreds of thousands risk death or illness without tents , food and other supplies . NNS VBP NNS IN NNS NN NN CC NN IN NNS , NN CC JJ NNS . Friday , British Cabinet minister Hilary Benn said the world 's response to the large-scale disaster was not enough . NNP , JJ NNP NN NNP NNP VBD DT NN POS NN TO DT JJ NN VBD RB RB . Earlier , Pakistan President Pervez Musharraf criticized the level of international aid , saying more was given to victims of the tsunami in Asia and Hurricane Katrina in the United States . RB , NNP NNP NNP NNP VBD DT NN IN JJ NN , VBG RBR VBD VBN TO NNS IN DT NN IN NNP CC NNP NNP IN DT NNP NNPS . More than 73,000 Pakistanis died and more than three million people have been left homeless by the October 8 earthquake . JJR IN CD NNS VBD CC JJR IN CD CD NNS VBP VBN VBN JJ IN DT NNP CD NN . Insurgents have killed at least 11 people in attacks across Iraq . NNS VBP VBN IN JJS CD NNS IN NNS IN NNP . In the deadliest attack , a roadside bomb killed a police officer and his four children in Tikrit . IN DT JJS NN , DT NN NN VBD DT NN NN CC PRP$ CD NNS IN NNP . Another roadside bomb killed at least one person in Kirkuk . DT NN NN VBD IN JJS CD NN IN NNP . In Baghdad , a suicide car bomber killed four people , included two police officers . IN NNP , DT NN NN NN VBD CD NNS , VBD CD NNS NNS . Other attacks across the city wounded five U.S. soldiers . JJ NNS IN DT NN VBD CD NNP NNS . And in Baquba , a police officer was killed in a drive-by shooting . CC IN NNP , DT NN NN VBD VBN IN DT JJ NN . Meanwhile , the U.S. military says soldiers killed two suspected members of al-Qaida in Iraq and detained 22 others during raids in Mosul and Ramadi . RB , DT NNP NN VBZ NNS VBD CD JJ NNS IN NNP IN NNP CC VBD CD NNS IN NNS IN NNP CC NNP . The violence comes after Iraq 's Independent Electoral Commission said it found no serious election fraud in Iraq 's recent constitutional referendum . DT NN VBZ IN NNP POS NNP NNP NNP VBD PRP VBD DT JJ NN NN IN NNP POS JJ JJ NN . Official results have not yet been announced . JJ NNS VBP RB RB VBN VBN . officials are searching for survivors in a turbulent river from a ferry that capsized and killed at least 20 people . NNS VBP VBG IN NNS IN DT JJ NN IN DT NN WDT VBD CC VBD IN JJS CD NNS . Officials say more than 100 people were on the ferry when it overturned Saturday in a river in the eastern Indian state of West Bengal . NNS VBP JJR IN CD NNS VBD IN DT NN WRB PRP VBD NNP IN DT NN IN DT JJ JJ NN IN NNP NNP . Officials say about 50 passengers have been rescued and sent to the hospital . NNS VBP IN CD NNS VBP VBN VBN CC VBN TO DT NN . Dozens of others were missing . NNS IN NNS VBD VBG . Authorities say the boat 's maximum capacity was 60 people , but it was badly overloaded . NNS VBP DT NN POS NN NN VBD CD NNS , CC PRP VBD RB VBN . Officials say most of the passengers were Muslims returning to the town of Kakdwip after attending a religious festival . NNS VBP JJS IN DT NNS VBD NNPS VBG TO DT NN IN NNP IN VBG DT JJ NN . Taiwan has asked internet search company Google to stop calling it a province of China on its maps . NNP VBZ VBN JJ NN NN NNP TO VB VBG PRP DT NN IN NNP IN PRP$ NNS . A Taiwan foreign ministry spokesman said Tuesday that the ministry has asked Google to correct the description . DT NNP JJ NN NN VBD NNP IN DT NN VBZ VBN NNP TO VB DT NN . Taiwan says it is a sovereign , independent state officially called the Republic of China . NNP VBZ PRP VBZ DT NN , JJ NN RB VBN DT NNP IN NNP . China views Taiwan as a breakaway province and has threatened to attack the island if it pushes for formal statehood . NNP VBZ NNP IN DT NN NN CC VBZ VBN TO VB DT NN IN PRP VBZ IN JJ NN . The two split in a civil war that ended in 1949 . DT CD NN IN DT JJ NN WDT VBD IN CD . A new public opinion poll indicates Americans are becoming increasingly dissatisfied with the course of the war in Iraq . DT JJ JJ NN NN VBZ NNS VBP VBG RB JJ IN DT NN IN DT NN IN NNP . In a poll conducted by CNN , USA Today , and the Gallup organization , one-third of those surveyed said the United States should withdraw all troops from Iraq . IN DT NN VBN IN NNP , NNP NNP , CC DT NNP NN , NN IN DT VBN VBD DT NNP NNPS MD VB DT NNS IN NNP . That is the highest percentage calling for a full withdrawal since Gallup began asking the question in August 2003 . DT VBZ DT JJS NN NN IN DT JJ NN IN NNP VBD VBG DT NN IN NNP CD . The poll of 1004 adults , taken Friday through Sunday , also found that 57 percent of Americans feel the war has made them ' less safe ' from terrorism . DT NN IN CD NNS , VBN NNP IN NNP , RB VBD IN CD NN IN NNS VBP DT NN VBZ VBN PRP `` RBR JJ `` IN NN . Fifty-four percent of those surveyed said the United States made a mistake in sending troops to Iraq , up from 46 percent in July . CD NN IN DT VBN VBD DT NNP NNPS VBD DT NN IN VBG NNS TO NNP , RB IN CD NN IN NNP . President Bush 's overall approval rating was 45 percent , among the lowest ratings of his presidency . NNP NNP POS JJ NN NN VBD CD NN , IN DT JJS NNS IN PRP$ NN . Venezuela 's President Hugo Chavez has begun a three-day visit to Syria by announcing that the two countries are united against what he called ' U.S. imperialism . ' NNP POS NNP NNP NNP VBZ VBN DT JJ NN TO NNP IN VBG IN DT CD NNS VBP VBN IN WP PRP VBD `` NNP NN . `` Mr. Chavez and Syrian President Bashar Al-Assad met Wednesday in Damascus to discuss bilateral cooperation . NNP NNP CC JJ NNP NNP NNP VBD NNP IN NNP TO VB JJ NN . Mr. Al-Assad stressed that the two countries have very close positions on international issues . NNP NNP VBD IN DT CD NNS VBP RB JJ NNS IN JJ NNS . Support for Mr. Chavez in the Arab world has soared since Venezuela withdrew its ambassador to Israel at the start of the Israeli military offensive in Lebanon . NN IN NNP NNP IN DT JJ NN VBZ VBN IN NNP VBD PRP$ NN TO NNP IN DT NN IN DT JJ JJ NN IN NNP . The Venezuelan president called Israel 's attacks against Hezbollah ' genocide . ' DT JJ NN VBD NNP POS NNS IN NNP `` NN . `` In response , Israel recalled its own ambassador from Venezuela . IN NN , NNP VBD PRP$ JJ NN IN NNP . Mr. Chavez has accused Washington of plotting against him and his government , something U.S. officials deny . NNP NNP VBZ VBN NNP IN VBG IN PRP CC PRP$ NN , DT NNP NNS VBP . Taiwan President Chen Shui-bian has resigned as head of his Democratic Progressive Party , after the party and its allies suffered a major defeat in Saturday 's parliamentary election . NNP NNP NNP NNP VBZ VBN IN NN IN PRP$ JJ NNP NNP , IN DT NN CC PRP$ NNS VBD DT JJ NN IN NNP POS JJ NN . An opposition alliance , led by the Nationalists , won 114 seats in the 225-member chamber . DT NN NN , VBN IN DT NNPS , VBD CD NNS IN DT JJ NN . Mr. Chen 's coalition won 101 seats . NNP NNP POS NN VBD CD NNS . Mr. Chen told reporters NNP NNP VBD NNS Tuesday that he takes full blame for the coalition 's defeat and will leave his party leadership post as a result . NNP IN PRP VBZ JJ NN IN DT NN POS NN CC MD VB PRP$ NN NN NN IN DT NN . Observers say the election deals a setback to President Chen 's drive to move Taiwan toward an identity apart from mainland China . NNS VBP DT NN VBZ DT NN TO NNP NNP POS NN TO VB NNP IN DT NN RB IN JJ NNP . China considers Taiwan a renegade province and has threatened to seize the island by force if it makes moves toward independence . NNP VBZ NNP DT NN NN CC VBZ VBN TO VB DT NN IN NN IN PRP VBZ NNS IN NN . Police in the Nepalese capital , Kathmandu , have used batons to disperse student protesters who are demanding that their jailed leaders be released . NNS IN DT JJ NN , NNP , VBP VBN NNS TO VB NN NNS WP VBP VBG IN PRP$ JJ NNS VB VBN . Witnesses say students retaliated by throwing bricks at police . NNS VBP NNS VBN IN VBG NNS IN NN . At least six demonstrators were injured during Monday 's skirmishes . IN JJS CD NNS VBD VBN IN NNP POS NNS . The student leaders were jailed for staging demonstrations against King Gyanendra 's seizure of absolute power , and for demanding the restoration of democracy . DT NN NNS VBD VBN IN NN NNS IN NNP NNP POS NN IN JJ NN , CC IN VBG DT NN IN NN . The king says he needed to seize full political power to curb corruption and quell a Maoist insurgency that has claimed more than 11,000 lives . DT NN VBZ PRP VBD TO VB JJ JJ NN TO VB NN CC VB DT NN NN WDT VBZ VBN JJR IN CD NNS . The rebels , who claim to be inspired by Chinese revolutionary Mao Zedong , have been fighting since 1996 to replace the constitutional monarchy in the world 's only Hindu kingdom with a communist state . DT NNS , WP VBP TO VB VBN IN JJ JJ NNP NNP , VBP VBN VBG IN CD TO VB DT JJ NN IN DT NN POS JJ NNP NN IN DT JJ NN . Israeli forces have killed three Palestinians Thursday as they pressed on with a three-week offensive in the Gaza Strip . JJ NNS VBP VBN CD NNS NNP IN PRP VBD IN IN DT JJ NN IN DT NNP NNP . Palestinian officials say Israeli air strikes on the Maghazi refugee camp in central Gaza killed two people today . JJ NNS VBP JJ NN NNS IN DT NNP NN NN IN JJ NNP VBD CD NNS NN . Another Palestinian was killed during fighting between Israel and militants in the camp . DT NN VBD VBN IN VBG IN NNP CC NNS IN DT NN . At least 100 Palestinians have been killed since Israel 's Gaza offensive began in late June . IN JJS CD NNS VBP VBN VBN IN NNP POS NNP NN VBD IN JJ NNP . At United Nations headquarters in New York today , Secretary-General Kofi Annan called for an immediate ceasefire in the Israeli-Palestinian conflict . IN NNP NNP NN IN NNP NNP NN , JJ NNP NNP VBD IN DT JJ NN IN DT JJ NN . He said the international community must address the Israeli-Palestinian issue boldly . PRP VBD DT JJ NN MD VB DT JJ NN RB . Israel began its offensive in Gaza after militants captured an Israeli soldier ( Corporal Gilad Shalit ) in a cross-border raid . NNP VBD PRP$ NN IN NNP IN NNS VBD DT JJ NN LRB NNP NNP NNP RRB IN DT JJ NN . It says it will continue the operation until the soldier is released and Palestinian militants stop firing rockets at Israel from Gaza . PRP VBZ PRP MD VB DT NN IN DT NN VBZ VBN CC JJ NNS VBP VBG NNS IN NNP IN NNP . A new report issued by the South African government indicates more than six million people in the country are HIV-positive , a much higher figure than previously thought . DT JJ NN VBN IN DT JJ JJ NN VBZ JJR IN CD CD NNS IN DT NN VBP JJ , DT RB JJR NN IN RB VBN . The Department of Health says a study of women at pre-natal clinics in 2004 suggests that about six and a half million South Africans carry the virus that causes AIDS . DT NNP IN NNP VBZ DT NN IN NNS IN JJ NNS IN CD VBZ IN IN CD CC DT NN CD NNP NNS VBP DT NN WDT VBZ NNP . The figures are in marked contrast to a study earlier this year by the State Statistical Agency , which estimated that about four and a half million South Africans are infected with HIV . DT NNS VBP IN JJ NN TO DT NN RBR DT NN IN DT NNP NNP NNP , WDT VBD IN IN CD CC DT NN CD NNP NNS VBP VBN IN NNP . Business Day newspaper quotes the Health Department 's head of health monitoring and evaluation , Lindy Makubalo as saying the variation in estimates is due to differences in methodology . NNP NNP NN VBZ DT NNP NNP POS NN IN NN NN CC NN , NNP NNP IN VBG DT NN IN NNS VBZ JJ TO NNS IN NN . She says the Health Department follows methodology developed by the United Nations . PRP VBZ DT NNP NNP VBZ NN VBN IN DT NNP NNPS . The Venezuelan government says it is investigating allegations that some members of the navy passed state secrets to the U.S. Defense Department . DT JJ NN VBZ PRP VBZ VBG NNS IN DT NNS IN DT NN VBD NN NNS TO DT NNP NNP NNP . Venezuelan Vice President Jose Vicente Rangel says some low-level officials were caught passing information to the Pentagon . JJ NNP NNP NNP NNP NNP VBZ DT JJ NNS VBD VBN VBG NN TO DT NNP . He said some suspects have been detained and that others have left the country . PRP VBD DT NNS VBP VBN VBN CC IN NNS VBP VBN DT NN . The suspects include active and retired members of Venezuela 's navy . DT NNS VBP JJ CC JJ NNS IN NNP POS NN . Venezuelan authorities also allege U.S. Embassy involvement in the affair . JJ NNS RB VBP NNP NNP NN IN DT NN . The attorney for one suspect told reporters a U.S. naval attache has been mentioned as a possible link between the Venezuelan officers and United States . DT NN IN CD NN VBD NNS DT NNP JJ NN VBZ VBN VBN IN DT JJ NN IN DT JJ NNS CC NNP NNPS . U.S. officials say they have not been contacted by the Venezuelan government about the matter . NNP NNS VBP PRP VBP RB VBN VBN IN DT JJ NN IN DT NN . The U.S. ambassador in Caracas , William Brownfield , told local media that when the Venezuelan government presents the U.S. with notification , officials will respond . DT NNP NN IN NNP , NNP NNP , VBD JJ NNS WDT WRB DT JJ NN VBZ DT NNP IN NN , NNS MD VB . The central African nation of Chad has asked the African Union to condemn Sudan for its alleged support of Chadian rebels . DT JJ JJ NN IN NNP VBZ VBN DT NNP NNP TO VB NNP IN PRP$ JJ NN IN JJ NNS . Chad 's president , Idriss Deby , made the appeal Tuesday during a meeting with Nigerian President and AU chairman Olesgun Obasanjo at his residence outside Lagos . NNP POS NN , NNP NNP , VBD DT NN NNP IN DT NN IN JJ NNP CC NNP NN NNP NNP IN PRP$ NN IN NNP . Chad says Sudan harbors and supports the anti-Deby rebels who attacked the eastern Chadian town of Adre earlier this month . NNP VBZ NNP NNS CC VBZ DT JJ NNS WP VBD DT JJ JJ NN IN NNP RBR DT NN . Sudan has denied the accusations . NNP VBZ VBN DT NNS . Earlier , President Deby accused Sudan of planning another attack , saying the Sudanese military has deployed 50 armored vehicles to the town of Geneina near the Chad-Sudan border . RB , NNP NNP VBD NNP IN VBG DT NN , VBG DT JJ NN VBZ VBN CD JJ NNS TO DT NN IN NNP IN DT JJ NN . He said Sudan 's actions could destabilize other states in the region , including the Central African Republic . PRP VBD NNP POS NNS MD VB JJ NNS IN DT NN , VBG DT NNP NNP NNP . The African Union has sent delegations to both countries ' capitals in an effort to defuse the rising tensions . DT NNP NNP VBZ VBN NNS TO DT NNS POS NNS IN DT NN TO VB DT VBG NNS . Flash floods sweeping through parts of Kenya have killed at least 20 people and left thousands of others homeless . NNP NNS VBG IN NNS IN NNP VBP VBN IN JJS CD NNS CC VBD NNS IN NNS JJ . The floods are the result of torrential rains that have eased Kenya 's long drought but are making life miserable for people who live near rivers and in flood-prone areas . DT NNS VBP DT NN IN JJ NNS WDT VBP VBN NNP POS JJ NN CC VBP VBG NN JJ IN NNS WP VBP IN NNS CC IN JJ NNS . The Kenyan Red Cross says some 30,000 people are in need of relief aid after water washed away homes , killed livestock , and destroyed crops . DT JJ NNP NNP VBZ DT CD NNS VBP IN NN IN NN NN IN NN VBD RB NNS , VBD NN , CC VBD NNS . The hardest-hit areas appear to be in western Rift Valley province . DT JJ NNS VBP TO VB IN JJ NNP NNP NN . Kenyan newspapers report deaths and especially heavy flooding in the Turkana East area and in the southwestern villages of Rongai , Marigat , and Mogotio . JJ NNS VBP NNS CC RB JJ NN IN DT NNP NNP NN CC IN DT JJ NNS IN NNP , NNP , CC NNP . Relief agencies and Kenyan officials say the number of casualties may rise as the rains are expected to continue for days or weeks to come . NN NNS CC JJ NNS VBP DT NN IN NNS MD VB IN DT NNS VBP VBN TO VB IN NNS CC NNS TO VB . The leader of the Palestinian Islamist group Hamas is warning of a new uprising against Israel if an agreement for a Palestinian state is not reached in six months . DT NN IN DT JJ NNP NN NNP VBZ VBG IN DT JJ NN IN NNP IN DT NN IN DT JJ NN VBZ RB VBN IN CD NNS . In Egypt Saturday , Khaled Meshaal said Western nations should help negotiate a Palestinian state based on borders that existed before the 1967 Middle East War . IN NNP NNP , NNP NNP VBD JJ NNS MD VB VB DT JJ NN VBN IN NNS WDT VBD IN DT CD NNP NNP NNP . He said Palestinians and Arab states agree on the borders which would include the West Bank and Gaza Strip in a future Palestinian state . PRP VBD NNS CC JJ NNS VBP IN DT NNS WDT MD VB DT NNP NNP CC NNP NNP IN DT JJ JJ NN . Israel rejects the pre-war borders as the basis for a peace settlement . NNP VBZ DT JJ NNS IN DT NN IN DT NN NN . Meshaal has been meeting Egyptian officials in Cairo to discuss forming a Palestinian unity government . NNP VBZ VBN VBG JJ NNS IN NNP TO VB VBG DT JJ NN NN . They also are discussing negotiations for the release of an Israeli soldier kidnapped by Hamas militants . PRP RB VBP VBG NNS IN DT NN IN DT JJ NN VBN IN NNP NNS . Egyptian mediators are to fly to Israel for talks in the coming days . JJ NNS VBP TO VB TO NNP IN NNS IN DT JJ NNS . Israel 's Defense minister says Israeli troops will withdraw from Palestinian cities for 72 hours during January 's Palestinian presidential election . NNP POS NN NN VBZ JJ NNS MD VB IN JJ NNS IN CD NNS IN NNP POS JJ JJ NN . Defense Minister Shaul Mofaz says troops will be absent from cities in the Palestinian territories from the day before the vote through the day after to help ensure the election goes smoothly . NNP NNP NNP NNP VBZ NNS MD VB JJ IN NNS IN DT JJ NNS IN DT NN IN DT NN IN DT NN IN TO VB VB DT NN VBZ RB . Earlier , Israeli Prime Minister Ariel Sharon said any talks with Palestinian leaders depend on whether they can stop militant attacks such as the huge explosion in Gaza Sunday that killed five Israeli soldiers and wounded five others . RB , JJ NNP NNP NNP NNP VBD DT NNS IN JJ NNS VBP IN IN PRP MD VB JJ NNS JJ IN DT JJ NN IN NNP NNP WDT VBD CD JJ NNS CC VBD CD NNS . Mr. Sharon said Monday Israel wants to move toward peace , but sees no corresponding movement by the Palestinian side . NNP NNP VBD NNP NNP VBZ TO VB IN NN , CC VBZ DT JJ NN IN DT JJ NN . Two Palestinian militant groups , Hamas and the Fatah Hawks , have claimed responsibility for detonating more than a ton of explosives in a tunnel beneath an Israeli army post . CD JJ JJ NNS , NNP CC DT NNP NNP , VBP VBN NN IN VBG JJR IN DT NN IN NNS IN DT NN IN DT JJ NN NN . Bolivian President Carlos Mesa , who submitted his resignation Monday , has urged Congress to hold new elections as soon as possible to end weeks violent protests . JJ NNP NNP NNP , WP VBD PRP$ NN NNP , VBZ VBN NNP TO VB JJ NNS RB RB IN JJ TO VB NNS JJ NNS . Mr. Mesa 's late night televised address came after tens of thousands of peasants and miners marched in La Paz Tuesday , demanding nationalization of the country 's oil and gas industry . NNP NNP POS JJ NN VBN NN VBD IN NNS IN NNS IN NNS CC NNS VBD IN NNP NNP NNP , VBG NN IN DT NN POS NN CC NN NN . The president offered to resign late Monday in the wake of the growing unrest , saying he could no longer lead the poor Andean nation . DT NN VBD TO VB JJ NNP IN DT NN IN DT VBG NN , VBG PRP MD RB RB VB DT JJ JJ NN . Bolivia 's Congress is expected to consider his offer to resign this week . NNP POS NNP VBZ VBN TO VB PRP$ NN TO VB DT NN . His offer to step down earlier this year was rejected by lawmakers . PRP$ NN TO VB RB RBR DT NN VBD VBN IN NNS . Politicians , foreign troops and aid workers are all working in Sri Lanka 's tsunami ravaged areas to get the rebuilding effort into full swing . NNPS , JJ NNS CC NN NNS VBP DT VBG IN NNP NNP POS NN VBD NNS TO VB DT NN NN IN JJ NN . A few dozen of the roughly 600 U.S. military personnel in Sri Lanka , are here at a primary middle school outside Galle . DT JJ NN IN DT RB CD NNP JJ NNS IN NNP NNP , VBP RB IN DT JJ JJ NN IN NNP . They are using bulldozers , dump trucks and sometimes sledge hammers to demolish school buildings left structurally unsound by the tsunami . PRP VBP VBG NNS , NN NNS CC RB JJ NNS TO VB NN NNS VBD RB JJ IN DT NN . In other parts of the area , U.S. Navy Seabees ( engineers and construction workers ) are distributing fresh water to camps for people left homeless . IN JJ NNS IN DT NN , NNP NNP NNS LRB NNS CC NN NNS RRB VBP VBG JJ NN TO NNS IN NNS VBN NN . Politicians , including the prime minister and the former prime minister , are also doing the rounds on visits similar to campaign stops , suggesting the tsunami and its aftermath may be political fodder for some time to come . NNS , VBG DT JJ NN CC DT JJ JJ NN , VBP RB VBG DT NNS IN NNS JJ TO NN NNS , VBG DT NN CC PRP$ NN MD VB JJ NN IN DT NN TO VB . At least 13 people have been wounded by a powerful explosion near an Indian military camp in Srinagar , summer capital of Indian Kashmir . IN JJS CD NNS VBP VBN VBN IN DT JJ NN IN DT JJ JJ NN IN NNP , NN NN IN JJ NNP . Witnesses say at least five Indian soldiers were among the injured . NNS VBP IN JJS CD JJ NNS VBD IN DT NN . Police say the blast was caused by a car bomb . NNS VBP DT NN VBD VBN IN DT NN NN . It is unclear who carried out Tuesday 's attack . PRP VBZ JJ WP VBD RP NNP POS NN . Kashmir is divided between India and Pakistan , and rebel groups have been fighting for the region 's independence from India , or its merger with Pakistan , since 1989 . NNP VBZ VBN IN NNP CC NNP , CC NN NNS VBP VBN VBG IN DT NN POS NN IN NNP , CC PRP$ NN IN NNP , IN CD . The explosion came hours after top diplomats from India and Pakistan resumed peace talks in New Delhi . DT NN VBD NNS IN JJ NNS IN NNP CC NNP VBD NN NNS IN NNP NNP . Syria has dismissed as FALSE and ' completely political ' a United Nations report linking some of its top intelligence officials to the February assassination of former Lebanese Prime Minister Rafik Hariri . NNP VBZ VBN IN JJ CC `` RB JJ `` DT NNP NNP NN VBG DT IN PRP$ JJ NN NNS TO DT NNP NN IN JJ JJ NNP NNP NNP NNP . U.N. investigator Detlev Mehlis issued a 54-page report Thursday , saying the assassination was planned over many months . NNP NN NNP NNP VBD DT JJ NN NNP , VBG DT NN VBD VBN IN JJ NNS . It implicates , among others , Syria 's military intelligence chief Asef Shawkat , who is the brother-in-law of Syrian President Bashar al-Assad . PRP VBZ , IN NNS , NNP POS JJ NN NN NNP NNP , WP VBZ DT NN IN JJ NNP NNP NNP . In Beirut , anti-Syrian legislators hailed the findings and renewed their calls for Lebanese President Emile Lahoud - a close ally of Syria - to resign . IN NNP , JJ NNS VBD DT NNS CC VBN PRP$ NNS IN JJ NNP NNP NNP IN DT JJ NN IN NNP : TO VB . Mr. Mehlis ' report says President Lahoud received a telephone call from a suspect in Mr. Hariri 's assassination shortly before it occurred . NNP NNP POS NN VBZ NNP NNP VBD DT NN NN IN DT NN IN NNP NNP POS NN RB IN PRP VBD . The president 's office has denied the accusation and says he has no intention of stepping down . DT NN POS NN VBZ VBN DT NN CC VBZ PRP VBZ DT NN IN VBG RP . U.N. Secretary-General Kofi Annan has extended the investigation until December 15 . NNP NNP NNP NNP VBZ VBN DT NN IN NNP CD . Afghan soldiers stormed the Pul-i-Charki prison near Kabul Friday , ending a day-long crisis that began with an attempted escape . JJ NNS VBD DT NNP NN IN NNP NNP , VBG DT JJ NN WDT VBD IN DT JJ NN . At least four prisoners and four guards were killed , and several others wounded . IN JJS CD NNS CC CD NNS VBD VBN , CC JJ NNS VBD . The head of the prison said four inmates linked to the al-Qaida terrorist network , one Iraqi and three Pakistanis , overpowered and killed a prison guard and seized his weapon . DT NN IN DT NN VBD CD NNS VBN TO DT NNP JJ NN , CD JJ CC CD NNS , VBD CC VBD DT NN NN CC VBD PRP$ NN . They killed three other guards and , in the ensuing battle , two of the would-be escapees were killed . PRP VBD CD JJ NNS CC , IN DT VBG NN , CD IN DT JJ NNS VBD VBN . The other two were eventually overpowered and killed when army troops stormed the prison about nightfall Friday . DT JJ CD VBD RB VBN CC VBN WRB NN NNS VBD DT NN IN NN NNP . The prison holds common criminals as well as terror suspects and is separate from US-run facilities that hold captured Taliban and al-Qaida fighters . DT NN VBZ JJ NNS RB RB IN NN NNS CC VBZ JJ IN JJ NNS WDT VBP VBN NNP CC NNP NNS . Some 200 soldiers and civilians working for the military battled the thin Afghan mountain air , a bumpy track and the threat of attack to run five long laps around the airstrip at Firebase Ripley , a remote military camp in central Uruzgan province . DT CD NNS CC NNS VBG IN DT NN VBD DT JJ JJ NN NN , DT JJ NN CC DT NN IN NN TO VB CD JJ NNS IN DT NN IN NNP NNP , DT JJ JJ NN IN JJ NNP NN . In the end , First Lieutenant Mike Baskin beat the competition , running the course in three hours , 12 minutes and 15 seconds . IN DT NN , NNP NNP NNP NNP VBD DT NN , VBG DT NN IN CD NNS , CD NNS CC CD NNS . Bursting into tears at the finish line , the Army lieutenant said he thought only of his fallen comrades as he crossed the finish line . VBG IN NNS IN DT NN NN , DT NNP NN VBD PRP VBD RB IN PRP$ JJ NNS IN PRP VBD DT NN NN . Soldiers at the base are operating in one of Afghanistan 's most hostile areas . NNS IN DT NN VBP VBG IN CD IN NNP POS JJS JJ NNS . Their most recent casualties were suffered last month when two soldiers were killed by a bomb that ripped through a patrol . PRP$ RBS JJ NNS VBD VBN JJ NN WRB CD NNS VBD VBN IN DT NN WDT VBD IN DT NN . Tropical Storm Beta appears to have bypassed the Colombian island of San Andres , but forecasters say it could strengthen into a hurricane as it approaches the island of Providencia . JJ NN NN VBZ TO VB VBN DT JJ NN IN NNP NNP , CC NNS VBP PRP MD VB IN DT NN IN PRP VBZ DT NN IN NNP . The National Weather Service says a hurricane warning is in effect for the Colombian island of Providencia , off the coast of Nicaragua . DT NNP NNP NNP VBZ DT NN NN VBZ IN NN IN DT JJ NN IN NNP , IN DT NN IN NNP . Beta is currently some 80 kilometers northeast of San Andres , moving north at about seven kilometers per hour . NN VBZ RB DT CD NNS RB IN NNP NNP , VBG RB IN IN CD NNS IN NN . The storm is expected to turn northwest and strengthen , possibly to hurricane strength , during the next 24 hours . DT NN VBZ VBN TO VB JJ CC VB , RB TO NN NN , IN DT JJ CD NNS . Forecasters say the center of the storm could reach mainland Nicaragua by Sunday . NNS VBP DT NN IN DT NN MD VB JJ NNP IN NNP . Beta is expected to dump as much as 38 centimeters of rain across Honduras , Nicaragua , San Andres and Providencia . NN VBZ VBN TO VB RB JJ IN CD NNS IN NN IN NNP , NNP , NNP NNP CC NNP . A trial opened Thursday for at least 25 Shi'ite activists who are accused of plotting to overthrow the government . DT NN VBD NNP IN IN JJS CD NNP NNS WP VBP VBN IN VBG TO VB DT NN . The suspects face charges that include ' forming an illegal organization ' and ' resorting to terrorism . ' DT NNS VBP NNS WDT VBP `` VBG DT JJ NN `` CC `` VBG TO NN . `` They have pleaded not guilty to the charges and complained of alleged torture while in detention . PRP VBP VBN RB JJ TO DT NNS CC VBD IN JJ NN IN IN NN . Security was heightened in the courtroom . NNP VBD VBN IN DT NN . The trial could raise tensions between Bahrain 's Sunni-dominant government and members of its Shi'ite majority who have long complained about a lack of government representation . DT NN MD VB NNS IN NNP POS JJ NN CC NNS IN PRP$ NNP NN WP VBP RB VBN IN DT NN IN NN NN . The country 's main Shi'ite Muslim political bloc did make inroads in Saturday 's parliamentary elections , with all 18 of its candidates winning seats in the 40-member parliament . DT NN POS JJ NNP NNP JJ NN VBD VB NNS IN NNP POS JJ NNS , IN DT CD IN PRP$ NNS VBG NNS IN DT JJ NN . The wins reflect a one-seat gain for the al-Wefaq bloc , compared to results from the last poll in 2006 . DT NNS VBP DT JJ NN IN DT NNP NN , VBN TO NNS IN DT JJ NN IN CD . President Bush has repeated his call for Congress to make his tax cuts permanent , saying they have improved the economy . NNP NNP VBZ VBN PRP$ NN IN NNP TO VB PRP$ NN NNS JJ , VBG PRP VBP VBN DT NN . As many Americans prepare to file their annual tax payments before Monday 's deadline , President Bush said on U.S. radio Saturday that Americans will once again keep more of their earnings because of tax cuts passed in 2001 and 2003 . IN JJ NNS VBP TO VB PRP$ JJ NN NNS IN NNP POS NN , NNP NNP VBD IN NNP NN NNP IN NNS MD RB RB VB JJR IN PRP$ NNS IN IN NN NNS VBN IN CD CC CD . He said his tax relief program has helped create new jobs that have brought the unemployment rate down to 4.7 percent . PRP VBD PRP$ NN NN NN VBZ VBN VB JJ NNS WDT VBP VBN DT NN NN IN TO CD NN . Congress has been discussing whether to renew some of the tax cuts that are set to expire in the next few years . NNP VBZ VBN VBG IN TO VB DT IN DT NN NNS WDT VBP VBN TO VB IN DT JJ JJ NNS . Many Democrats argue that the tax cuts are irresponsible in light of the costs of the war in Iraq and other pressing issues . JJ NNPS VBP IN DT NN NNS VBP JJ IN NN IN DT NNS IN DT NN IN NNP CC JJ VBG NNS . Every year since 1995 , the United States Botanic Garden in Washington , DC , has partnered with the Smithsonian Institution to stage a massive floral exhibit of orchids . DT NN IN CD , DT NNP NNPS NNP NNP IN NNP , NNP , VBZ VBN IN DT NNP NNP TO VB DT JJ JJ NN IN NNS . VOA 's George Dwyer reports it offers visitors a colorful splash of floral brilliance as spring approached in the nation 's capital . NNP POS NNP NNP VBZ PRP VBZ NNS DT JJ NN IN JJ NN IN NN VBN IN DT NN POS NN . Jim Bertel narrates . NNP NNP VBZ . Police in Bangladesh say unidentified gunmen have killed a journalist working for an English-language daily . NNS IN NNP VBP JJ NNS VBP VBN DT NN VBG IN DT JJ NN . Police say the attack on Shahid Anwar , an assistant editor of the Daily Asian Express , occurred late Sunday in the capital , Dhaka . NNS VBP DT NN IN NNP NNP , DT JJ NN IN DT NNP NNP NNP , VBD JJ NNP IN DT NN , NNP . Police say personal rivalry might have been the motive behind his killing . NNS VBP JJ NN MD VB VBN DT NN IN PRP$ NN . Mr. Anwar is the second journalist killed in Bangladesh in recent weeks . NNP NNP VBZ DT JJ NN VBN IN NNP IN JJ NNS . Last month , an editor of the Daily Durjoy Bangla newspaper in the northern Bogra district was killed under similar circumstances . JJ NN , DT NN IN DT NNP NNP NNP NN IN DT JJ NNP NN VBD VBN IN JJ NNS . The international media watchdog , Reporters Without Borders , has ranked Bangladesh one of the most dangerous countries for journalists . DT JJ NNS NN , NNS IN NNS , VBZ VBN NNP CD IN DT RBS JJ NNS IN NNS . Thai authorities say suspected Muslim militants have carried out at least 40 bomb and arson attacks in Thailand 's Muslim-dominated southern provinces . JJ NNS VBP VBN NNP NNS VBP VBN RP IN JJS CD NN CC NN NNS IN NNP POS JJ JJ NNS . Police say at least two people were injured in the attacks , which took place late Tuesday in the provinces of Pattani , Yala and Narathiwat . NNS VBP IN JJS CD NNS VBD VBN IN DT NNS , WDT VBD NN RB NNP IN DT NNS IN NNP , NNP CC NNP . They say the most serious attack was a fire set at a rubber factory . PRP VBP DT RBS JJ NN VBD DT NN VBN IN DT NN NN . The French news agency quotes the region 's top military official as saying the situation is under control and that six suspects have been arrested . DT JJ NN NN VBZ DT NN POS JJ JJ NN IN VBG DT NN VBZ IN NN CC IN CD NNS VBP VBN VBN . More than 1,400 people have been killed during two years of unrest in Thailand 's Muslim-majority provinces . JJR IN CD NNS VBP VBN VBN IN CD NNS IN NN IN NNP POS JJ NNS . A Chinese demographer has said the imbalance between births of girls and boys may one day make it impossible for millions of Chinese men to find a spouse . DT JJ NN VBZ VBN DT NN IN NNS IN NNS CC NNS MD CD NN VB PRP JJ IN NNS IN JJ NNS TO VB DT NN . On Saturday , China 's official news agency quoted Professor Mu Guangzhong , of the Beijing University population research institute , as saying by the year 2020 , 25 million men will fail to have wives if the current gender imbalance continues . IN NNP , NNP POS JJ NN NN VBN NNP NNP NNP , IN DT NNP NNP NN NN NN , IN VBG IN DT NN CD , CD CD NNS MD VB TO VB NNS IN DT JJ NN NN VBZ . In China , official policy restricts couples in urban areas to one child , and families have shown a preference for sons . IN NNP , JJ NN VBZ NNS IN JJ NNS TO CD NN , CC NNS VBP VBN DT NN IN NNS . There are 119 boys born for every 100 Chinese girls . EX VBP CD NNS VBN IN DT CD JJ NNS . Chinese lawmakers decided in June not to outlaw the practice of performing abortions based on the gender of the fetus . JJ NNS VBD IN NNP RB TO VB DT NN IN VBG NNS VBN IN DT NN IN DT NN . But Xinhua says the new report is likely to prompt the government to take more forceful measures to reverse the male dominant population trend . CC NNP VBZ DT JJ NN VBZ JJ TO VB DT NN TO VB JJR JJ NNS TO VB DT JJ JJ NN NN . U.S. President Barack Obama is wishing Christians in the United States and around the world a happy Easter . NNP NNP NNP NNP VBZ VBG NNS IN DT NNP NNPS CC IN DT NN DT JJ NNP . In his weekly Saturday radio and Internet address , Mr. Obama also reached out to Jewish communities , whose celebration of Passover ends next week , and to people of other faiths as well as non-believers . IN PRP$ JJ NNP NN CC NN NN , NNP NNP RB VBD RP IN JJ NNS , WP$ NN IN NNP VBZ JJ NN , CC IN NNS IN JJ NNS RB RB IN NNS . Mr. Obama used his address to call attention to his administration 's top priorities - creating jobs , improving access to health care and improving education in the U.S. NNP NNP VBD PRP$ NN TO VB NN TO PRP$ NN POS JJ NNS IN VBG NNS , VBG NN TO NN NN CC VBG NN IN DT NNP He said he was heartened at statistics showing an increase in new jobs created lasted month . PRP VBD PRP VBD VBN IN NNS VBG DT NN IN JJ NNS VBN VBD NN . But his address mostly focused on a call for unity , saying different faith communities share the ' spirit of humanity . ' CC PRP$ NN RB VBD IN DT NN IN NN , VBG JJ NN NNS VBP DT `` NN IN NN . `` Within the next decade , some 77 million people in the United States will enter retirement age , and many of them are expected to offer their skills and experience to work as volunteers . IN DT JJ NN , DT CD CD NNS IN DT NNP NNPS MD VB NN NN , CC NN IN PRP VBP VBN TO VB PRP$ NNS CC NN TO VB IN NNS . Better health , longer life-spans and a desire to give something back to society are among the reasons motivating many to volunteer . NNP NN , RB NNS CC DT NN TO VB DT RB TO NN VBP IN DT NNS VBG JJ TO VB . Producer Zulima Palacio has this report narrated by Deborah Block on what is being called a ' new army of volunteers ' . NNP NNP NNP VBZ DT NN VBN IN NNP NNP IN WP VBZ VBG VBN DT `` JJ NN IN NNS `` . Vice President Dick Cheney 's chief of staff Lewis Libby is known to be a quiet but powerful force in the Bush administration . NNP NNP NNP NNP POS NN IN NN NNP NNP VBZ VBN TO VB DT JJ CC JJ NN IN DT NNP NN . The 55-year-old Mr. Libby helped build the case for the U.S. invasion of Iraq , arguing that Saddam Hussein 's regime had weapons of mass destruction . DT JJ NNP NNP VBD VB DT NN IN DT NNP NN IN NNP , VBG IN NNP NNP POS NN VBD NNS IN NN NN . No such weapons have been found . DT JJ NNS VBP VBN VBN . Mr. Libby shies away from media attention , but is described by colleagues as being closely involved in everything the vice president does . NNP NNP VBZ RB IN NNS NN , CC VBZ VBN IN NNS IN VBG RB VBN IN DT DT NN NN VBZ . Widely known by his nickname ' Scooter , ' Mr. Libby is also a lawyer and a writer , who earned praise for a 1996 mystery novel he wrote . RB VBN IN PRP$ NN `` NNP , `` NNP NNP VBZ RB DT NN CC DT NN , WP VBD NN IN DT CD NN NN PRP VBD . Iraq 's President Jalal Talabani says he is willing to hold talks with insurgents and members of the ousted government , but al-Qaida in Iraq rejected any possibility of dialogue . NNP POS NNP NNP NNP VBZ PRP VBZ JJ TO VB NNS IN NNS CC NNS IN DT JJ NN , CC NNP IN NNP VBD DT NN IN NN . Speaking at a reconciliation conference in Cairo , Mr. Talabani said he would meet with any Iraqi citizen , even those he called ' criminals . ' VBG IN DT NN NN IN NNP , NNP NNP VBD PRP MD VB IN DT JJ NN , RB DT PRP VBD `` NNS . `` He also called on insurgents to disarm and join the political process . PRP RB VBD IN NNS TO VB CC VB DT JJ NN . But al-Qaida in Iraq claimed in an Internet statement that it would continue launching attacks . CC NNP IN NNP VBD IN DT NNP NN IN PRP MD VB VBG NNS . In new violence Monday , at least four Iraqis were killed and 10 others wounded in a car bomb explosion in Kanan , a town north of Baghdad . IN JJ NN NNP , IN JJS CD NNS VBD VBN CC CD NNS VBN IN DT NN NN NN IN NNP , DT NN NN IN NNP . Police say the bomb was apparently aimed at a passing U.S. military convoy . NNS VBP DT NN VBD RB VBN IN DT VBG NNP JJ NN . Meanwhile , a White House spokesman Trent Duffy says it is ' highly unlikely ' Abu Musab al-Zarqawi was killed in a raid Saturday , as some reports have said . RB , DT NNP NNP NN NNP NNP VBZ PRP VBZ `` RB JJ `` NNP NNP NNP VBD VBN IN DT NN NNP , IN DT NNS VBP VBN . Witnesses say Israeli helicopters fired missiles into Gaza shortly after Palestinian militants killed five Israelis at a busy crossing between Israel and the Gaza Strip . NNS VBP JJ NNS VBD NNS IN NNP RB IN JJ NNS VBD CD NNS IN DT JJ VBG IN NNP CC DT NNP NNP . The witnesses say two Israeli missiles hit the Deir al Balah refugee camp . DT NNS VBP CD JJ NNS VBD DT NNP NNP NNP NN NN . They say the target was a building belonging to a charity linked to a militant group . PRP VBP DT NN VBD DT NN VBG TO DT NN VBN TO DT JJ NN . An hour earlier , Hamas , al-Aqsa Martyrs Brigades and the Popular Resistance Committee carried out the attack at the Karni crossing . DT NN RB , NNP , NNP NNP NNP CC DT NNP NNP NNP VBD IN DT NN IN DT NNP VBG . Three Palestinians were killed in the bomb attack . CD NNS VBD VBN IN DT NN NN . The upsurge in violence comes as newly-elected Palestinian President Mahmoud Abbas again called for attacks on Israelis to stop . DT NN IN NN VBZ IN JJ JJ NNP NNP NNP RB VBD IN NNS IN NNS TO VB . Israeli Prime Minister Ariel Sharon , who is expected to meet with Mr. Abbas within days , insists peace negotiations can not be revived unless Palestinians crack down on militants . JJ JJ NN NNP NNP , WP VBZ VBN TO VB IN NNP NNP IN NNS , VBZ NN NNS MD RB VB VBN IN NNS VBP RP IN NNS . All 20 people aboard a Sudanese military plane were killed when it crashed on landing in southern Sudan on Saturday . DT CD NNS IN DT JJ JJ NN VBD VBN WRB PRP VBD IN NN IN JJ NNP IN NNP . Officials with Sudan 's military say the plane blew a tire when it touched down , causing it to swerve off the runway and explode . NNS IN NNP POS JJ VBP DT NN VBD DT NN WRB PRP VBD RB , VBG PRP TO VB RP DT NN CC VB . The accident happened Saturday morning in the town of Aweil , 800 kilometers southwest of Khartoum . DT NN VBD NNP NN IN DT NN IN NNP , CD NNS JJS IN NNP . There were seven crew members and 13 passengers on the plane . EX VBD CD NN NNS CC CD NNS IN DT NN . Iraqi National Guard troops have raided a Sunni mosque in Baghdad . JJ NNP NNP NNS VBP VBN DT NNP NN IN NNP . Reports say about 200 national guardsmen stormed the al-Hanifa mosque Friday , following weekly prayers , throwing stun grenades and firing shots in the air . NNS VBP IN CD JJ NNS VBD DT JJ NN NNP , VBG JJ NNS , VBG NN NNS CC VBG NNS IN DT NN . Casualties were reported during the fighting inside the mosque . NNS VBD VBN IN DT NN IN DT NN . The purpose of the raid was not immediately clear , but worshippers say the Iraqi troops arrested the mosque 's imam . DT NN IN DT NN VBD RB RB JJ , CC NNS VBP DT JJ NNS VBN DT NN POS NN . Meanwhile , the top commander of U.S. Marines in Iraq says U.S. and Iraqi troops have ' broken the back ' of the insurgency there by taking control of Fallujah . RB , DT JJ NN IN NNP NNPS IN NNP VBZ NNP CC JJ NNS VBP `` VBN DT RB `` IN DT NN RB IN VBG NN IN NNP . Lieutenant General John Sattler said the 11-day operation has pushed the insurgents out of their safe haven and into less familiar areas . NNP NNP NNP NNP VBD DT JJ NN VBZ VBN DT NNS IN IN PRP$ JJ NN CC IN JJR JJ NNS . But he said Fallujah is not quite secure yet . CC PRP VBD NNP VBZ RB RB JJ RB . Iran has given reporters a rare glimpse into a key nuclear plant that the United States and Europe want permanently closed . NNP VBZ VBN NNS DT JJ NN IN DT JJ JJ NN IN DT NNP NNPS CC NNP VBP RB VBN . Some 50 reporters accompanied President Mohammad Khatami Wednesday , on a tour of the Natanz uranium enrichment facility south of Tehran . DT CD NNS VBD NNP NNP NNP NNP , IN DT NN IN DT NNP NN NN NN NN IN NNP . They were shown a vast , empty underground hall that Iranian officials said is designed to house thousands of enrichment centrifuges . PRP VBD VBN DT JJ , JJ JJ NN IN JJ NNS VBD VBZ VBN TO VB NNS IN NN NNS . Outside , dozens of anti-aircraft weapons guarded the facility . JJ , NNS IN JJ NNS VBD DT NN . Officials said all enrichment activities have been suspended at the site , which the International Atomic Energy Agency regularly monitors . NNS VBD DT NN NNS VBP VBN VBN IN DT NN , WDT DT NNP NNP NNP NNP RB VBZ . The tour was to continue later in the day at a uranium conversion plant near Isfahan . DT NN VBD TO VB RB IN DT NN IN DT NN NN NN IN NNP . The United States and Europe want Iran to permanently stop enriching uranium - which in certain forms can be used to fuel nuclear weapons . DT NNP NNPS CC NNP VBP NNP TO RB VB VBG NN : WDT IN JJ NNS MD VB VBN TO VB JJ NNS . But Iran says it is only pursuing the technology to produce electricity . CC NNP VBZ PRP VBZ RB VBG DT NN TO VB NN . Two Burmese ethnic rebel groups are supporting a call for the United Nations Security Council to take up an urgent initiative to bring political reforms to military-ruled Burma . CD JJ JJ NN NNS VBP VBG DT NN IN DT NNP NNP NNP NNP TO VB RP DT JJ NN TO VB JJ NNS TO JJ NNP . In separate press releases Sunday , the Karen National Union and the Shan Democratic Union backed a report by former Czech President Vaclav Havel and retired South African Archbishop Desmond Tutu calling for Security Council intervention . IN JJ NN NNS NNP , DT NNP NNP NNP CC DT NNP NNP NNP VBD DT NN IN JJ JJ NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBG IN NNP NNP NN . Mr. Havel and Archbishop Tutu issued a report Tuesday comparing the situation in Burma to those in seven other countries in which the Security Council had intervened . NNP NNP CC NNP NNP VBD DT NN NNP VBG DT NN IN NNP TO DT IN CD JJ NNS IN WDT DT NNP NNP VBD VBN . The 70-page report said conditions are far worse in Burma than they were in such countries as Sierra Leone , Afghanistan and Haiti before UN intervention . DT JJ NN VBD NNS VBP RB JJR IN NNP IN PRP VBD IN JJ NNS IN NNP NNP , NNP CC NNP IN NNP NN . U.S.-led coalition forces in Afghanistan say coalition aircraft bombed a Taleban stronghold in southern Kandahar province overnight , killing 80 suspected Taleban militants and 16 civilians . JJ NN NNS IN NNP VBP NN NN VBD DT NNP NN IN JJ NNP NN RB , VBG CD JJ NNP NNS CC CD NNS . Kandahar Governor Asadullah Khalid said Monday that besides the militants , 16 civilians were killed and at least another 15 were wounded . NNP NNP NNP NNP VBD NNP IN IN DT NNS , CD NNS VBD VBN CC IN JJS DT CD VBD VBN . The coalition says it is investigating the reports of civilian casualties . DT NN VBZ PRP VBZ VBG DT NNS IN JJ NNS . A coalition spokeswoman , Lieutenant Tamara Lawrence , said the village of Azizi in the Panjwayi district area is a known Taleban stronghold about 50 kilometers west of Kandahar 's provincial capital . DT NN NN , NNP NNP NNP , VBD DT NN IN NNP IN DT NNP NN NN VBZ DT VBN NNP NN IN CD NNS JJS IN NNP POS JJ NN . Meanwhile , Afghan police on Monday found the body of a missing former provincial governor . RB , JJ NNS IN NNP VBD DT NN IN DT VBG JJ JJ NN . Armed men snatched Paktika province 's former governor , Mohammad Ali Jalali , along with the former police chief of the same province on Sunday while they were attending a prayer service in neighboring Ghazni province . VBN NNS VBD NNP NN POS JJ NN , NNP NNP NNP , IN IN DT JJ NN NN IN DT JJ NN IN NNP IN PRP VBD VBG DT NN NN IN JJ NNP NN . The police chief was released unharmed . DT NN NN VBD VBN JJ . U.S. officials have asked the Palestinian leadership to require parliamentary candidates to renounce violence if they want to run in upcoming elections . NNP NNS VBP VBN DT JJ NN TO VB JJ NNS TO VB NN IN PRP VBP TO VB IN JJ NNS . The issue is expected to be discussed when President Bush meets Palestinian leader Mahmoud Abbas at the White House Thursday . DT NN VBZ VBN TO VB VBN WRB NNP NNP VBZ JJ NN NNP NNP IN DT NNP NNP NNP . U.S. and Palestinian officials say the Bush administration is concerned that Palestinian militant groups , who have a history of attacks on Israelis , will do well in the January vote . NNP CC JJ NNS VBP DT NNP NN VBZ JJ IN JJ JJ NNS , WP VBP DT NN IN NNS IN NNS , MD VB RB IN DT NNP NN . On Tuesday , White House spokesman Scott McClellan said there is more the Palestinian leadership can do to end violence and dismantle terrorist organizations . IN NNP , NNP NNP NN NNP NNP VBD EX VBZ JJR DT JJ NN MD VB TO VB NN CC VB JJ NNS . Israeli Prime Minister Ariel Sharon , whose government recently withdrew settlements from the Gaza Strip and parts of the West Bank , has said participation in the election by militant groups such as Hamas would be unacceptable . JJ NNP NNP NNP NNP , WP$ NN RB VBD NNS IN DT NNP NNP CC NNS IN DT NNP NNP , VBZ VBN NN IN DT NN IN JJ NNS JJ IN NNP MD VB JJ . Cambodian soldiers are heading to Sudan to support a United Nations landmine clearing operation . JJ NNS VBP VBG TO VB TO VB DT NNP NNP NN NN NN . About 109 soldiers are leaving the capital , Phnom Penh , Saturday for the northeast African nation , joining 26 other Cambodians already there . IN CD NNS VBP VBG DT NN , NNP NNP , NNP IN DT NN JJ NN , VBG CD JJ NNS RB RB . Prime Minister Hun Sen has hailed the mission as historic and a great honor . NNP NNP NNP NNP VBZ VBN DT NN IN JJ CC DT JJ NN . It is Cambodia 's first time taking part in a U.N. peacekeeping mission . PRP VBZ NNP POS JJ NN VBG NN IN DT NNP NN NN . The United Nations estimates up to 20,000 people are killed or maimed by landmines worldwide every year and that at least one-fifth of the victims are children . DT NNP NNPS VBZ RP TO CD NNS VBP VBN CC VBN IN NNS JJ DT NN CC IN IN JJS NN IN DT NNS VBP NNS . Nearly three decades of civil war , which ended in the 1990s , left Cambodia as one of the worst mine-affected countries . RB CD NNS IN JJ NN , WDT VBD IN DT NNS , VBD NNP IN CD IN DT JJS JJ NNS . Rival clans in southern Somalia have clashed in a fight for control over a trading town , and witnesses report dozens of deaths and injuries . JJ NNS IN JJ NNP VBP VBN IN DT NN IN NN IN DT NN NN , CC NNS VBP NNS IN NNS CC NNS . Residents say more than 20 people were killed and 30 injured in the battle that began late Friday night in a town identified by Reuters news agency as Ceel Waaq near the Kenyan border . NNS VBP JJR IN CD NNS VBD VBN CC CD NN IN DT NN WDT VBD RB NNP NN IN DT NN VBN IN NNP NN NN IN NNP NNP IN DT JJ NN . The town is described as a center of commercial activity . DT NN VBZ VBN IN DT NN IN JJ NN . Warlords have ruled Somalia since dictator Mohamed Siad Barre was ousted in 1991 . NNS VBP VBN NNP IN NN NNP NNP NNP VBD VBN IN CD . Israel 's government is urging Israelis visiting Egypt 's Sinai peninsula to leave immediately because of what it calls an imminent terrorist attack . NNP POS NN VBZ VBG NNS VBG NNP POS NNP NN TO VB RB IN IN WP PRP VBZ DT JJ JJ NN . Israel 's anti-terrorism office says it has ' concrete ' evidence of a plot to kidnap Israelis in the Sinai and smuggle them to the Gaza Strip . NNP POS JJ NN VBZ PRP VBZ `` JJ `` NN IN DT NN TO VB NNS IN DT NNP CC VB PRP TO DT NNP NNP . Israeli officials called on family members to contact Israelis vacationing on the peninsula and ask them to return to Israel right away . JJ NNS VBD IN NN NNS TO VB NNS VBG IN DT NN CC VB PRP TO VB TO NNP RB RB . Some 20,000 Israelis traveled to the Sinai during the recent Jewish Passover holiday , despite prior Israeli warnings of possible terrorist attacks there . DT CD NNS VBD TO DT NNP IN DT JJ JJ NN NN , IN JJ JJ NNS IN JJ JJ NNS RB . Many vacationers have since returned to Israel . JJ NNS VBP IN VBN TO NNP . The Sinai has been the scene of terrorist attacks on Israelis and Western tourists . DT NNP VBZ VBN DT NN IN JJ NNS IN NNS CC JJ NNS . In 2004 , suicide bombers attacked a Sinai hotel and several campsites popular with Israelis , killing 34 people and wounding more than 120 . IN CD , NN NNS VBD DT NNP NN CC JJ NNS JJ IN NNS , VBG CD NNS CC VBG JJR IN CD . Afghan officials say 10 Taliban militants have been arrested for an acid attack on schoolgirls and teachers in southern Afghanistan . JJ NNS VBP CD NNP NNS VBP VBN VBN IN DT NN NN IN NNS CC NNS IN JJ NNP . Officials say militants on motorbikes attacked the girls and teachers as they walked to school in the southern city of Kandahar earlier this month . NNS VBP NNS IN NNS VBD DT NNS CC NNS IN PRP VBD IN NN IN DT JJ NN IN NNP RBR DT NN . Several girls suffered facial burns and were hospitalized . JJ NNS VBD JJ NNS CC VBD VBN . A Taliban spokesman earlier denied responsibility for the attack . DT NNP NN RB VBD NN IN DT NN . Under Taliban rule , girls were banned from school and were only allowed to leave the house accompanied by a male relative . IN NNP NN , NNS VBD VBN IN NN CC VBD RB VBN TO VB DT NN VBN IN DT JJ NN . The Afghan government has accused Taliban militants of attacking dozens of schools and teachers . DT JJ NN VBZ VBN NNP NNS IN VBG NNS IN NNS CC NNS . Military officials in Pakistan say six soldiers and 40 militants were killed overnight in an attack on a paramilitary fort near the border with Afghanistan . JJ NNS IN NNP VBP CD NNS CC CD NNS VBD VBN RB IN DT NN IN DT JJ NN IN DT NN IN NNP . Pakistan 's military said most of the attackers came from the Afghan side of the border , and were joined by local Taliban fighters in the northwestern Mohmand tribal area , a center of Taliban and al-Qaida activity . NNP POS NN VBD JJS IN DT NNS VBD IN DT JJ NN IN DT NN , CC VBD VBN IN JJ NNP NNS IN DT JJ NNP NN NN , DT NN IN NNP CC NNP NN . Security officials say gun battles raged for several hours before the attackers fled . NN NNS VBP NN NNS VBD IN JJ NNS IN DT NNS VBD . Officials estimate that about 600 militants took part in the attack . NNS VBP IN IN CD NNS VBD NN IN DT NN . Pakistani authorities say seven soldiers were wounded in the clashes , and that the paramilitary Frontier Corps inflicted heavy casualties on the militants . JJ NNS VBP CD NNS VBD VBN IN DT NNS , CC IN DT JJ NNP NNP VBD JJ NNS IN DT NNS . Meanwhile , officials in South Waziristan say suspected militants abducted local government official Amir Latif today . RB , NNS IN NNP NNP VBP VBN NNS VBD JJ NN NN NNP NNP NN . Police say gunmen stopped the official 's convoy , bundled him in their vehicle and drove off . NNS VBP NNS VBD DT NN POS NN , VBD PRP IN PRP$ NN CC VBD RP . Pakistani President Pervez Musharraf and British Prime Minister Tony Blair are holding talks today expected to be dominated by the fight against terrorism , the Middle East , Afghanistan and Kashmir . JJ NNP NNP NNP CC JJ NNP NNP NNP NNP VBP VBG NNS NN VBN TO VB VBN IN DT NN IN NN , DT NNP NNP , NNP CC NNP . Before the London meeting , General Musharraf told the BBC that the global war on terrorism has made the world less safe and is not addressing the social grievances that help recruit terrorists . IN DT NNP NN , NNP NNP VBD DT NNP IN DT JJ NN IN NN VBZ VBN DT NN RBR JJ CC VBZ RB VBG DT JJ NNS WDT VBP VB NNS . In a separate interview , the Times of London quotes General Musharraf as saying he would welcome British involvement in negotiations with India over Kashmir . IN DT JJ NN , DT NNP IN NNP VBZ NNP NNP IN VBG PRP MD VB JJ NN IN NNS IN NNP IN NNP . Before going to London , the Pakistani leader met with President Bush to review the war on terror , the Israeli-Palestinian conflict and the hunt for Osama bin Laden . IN VBG TO NNP , DT JJ NN VBD IN NNP NNP TO VB DT NN IN NN , DT JJ NN CC DT NN IN NNP NNP NNP . A U.S.-based media advocacy group says it is concerned that constitutional reforms proposed by Venezuelan President Hugo Chavez could threaten press freedom in the country . DT JJ NNS NN NN VBZ PRP VBZ VBN IN JJ NNS VBN IN JJ NNP NNP NNP MD VB NN NN IN DT NN . The Miami-based Inter American Press Association voiced concerns Tuesday after meetings with media executives and union leaders in Caracas , Venezuela . DT JJ NNP NNP NNP NNP VBD NNS NNP IN NNS IN NNS NNS CC NN NNS IN NNP , NNP . The IAPA delegation says the proposed measures include detention without charges and controls on the news media if Mr. Chavez declares a state of emergency . DT NNP NN VBZ DT JJ NNS VBP NN IN NNS CC NNS IN DT NN NNS IN NNP NNP VBZ DT NN IN NN . Venezuelans will vote on the reforms in a referendum December 2 . NNS MD VB IN DT NNS IN DT NN NNP CD . The proposal also includes eliminating presidential term limits . DT NN RB VBZ VBG JJ NN NNS . The country 's opposition parties , human rights groups and the Roman Catholic Church have condemned Mr. Chavez 's proposals . DT NN POS NN NNS , JJ NNS NNS CC DT NNP NNP NNP VBP VBN NNP NNP POS NNS . Two powerful explosions have ripped apart a vehicle belonging to a prominent Venezuela prosecutor . CD JJ NNS VBP VBN RB DT NN VBG TO DT JJ NNP NN . Witnesses say the two blasts destroyed Deputy Attorney General Danilo Anderson 's truck as it drove through a neighborhood in western Caracas late Thursday . NNS VBP DT CD NNS VBD NNP NNP NNP NNP NNP POS NN IN PRP VBD IN DT NN IN JJ NNP JJ NNP . Venezuelan officials say investigators are trying to determine if the charred body found inside the vehicle is Mr. Anderson . JJ NNS VBP NNS VBP VBG TO VB IN DT JJ NN VBN IN DT NN VBZ NNP NNP . Mr. Anderson was preparing a case against nearly 400 people allegedly involved in the April 2002 rebellion that briefly ousted populist president Hugo Chavez . NNP NNP VBD VBG DT NN IN RB CD NNS RB VBN IN DT NNP CD NN IN RB VBD JJ NN NNP NNP . President Bush and other world leaders are welcoming the formation of an Iraqi government , months after the country 's parliamentary elections . NNP NNP CC JJ NN NNS VBP VBG DT NN IN DT JJ NN , NNS IN DT NN POS JJ NNS . Mr. Bush issued a statement Saturday saying Prime Minister Nouri al-Maliki 's government marks the end of Iraq 's difficult and inspiring democratic transitional process . NNP NNP VBD DT NN NNP VBG NNP NNP NNP NNP POS NN VBZ DT NN IN NNP POS JJ CC JJ JJ JJ NN . Mr. Bush added that the United States and freedom-loving nations will stand with Iraq as it takes its place among the world 's democracies . NNP NNP VBD IN DT NNP NNPS CC JJ NNS MD VB IN NNP IN PRP VBZ PRP$ NN IN DT NN POS NNS . British Prime Minister Tony Blair called the new government a huge step forward . NNP NNP NNP NNP NNP VBD DT JJ NN DT JJ NN RB . Italian officials also congratulated Iraq on its new government . JJ NNS RB VBD NNP IN PRP$ JJ NN . U.N. Secretary-General Kofi Annan praised Iraqis for their determination in forming a government despite violence across the country . NNP NNP NNP NNP VBD NNS IN PRP$ NN IN VBG DT NN IN NN IN DT NN . In a written statement , he voiced hope the government will quickly address crucial issues , including security , reconstruction and the respect of human rights . IN DT JJ NN , PRP VBD VB DT NN MD RB VB JJ NNS , VBG NN , NN CC DT NN IN JJ NNS . Italy has a diversified industrial economy , which is divided into a developed industrial north , dominated by private companies , and a less-developed , welfare-dependent , agricultural south , with high unemployment . NNP VBZ DT JJ JJ NN , WDT VBZ VBN IN DT JJ JJ NN , VBN IN JJ NNS , CC DT JJ , JJ , JJ NN , IN JJ NN . The Italian economy is driven in large part by the manufacture of high-quality consumer goods produced by small and medium-sized enterprises , many of them family owned . DT JJ NN VBZ VBN IN JJ NN IN DT NN IN JJ NN NNS VBN IN JJ CC JJ NNS , NN IN PRP NN VBN . Italy also has a sizable underground economy , which by some estimates accounts for as much as 15 % of GDP . NNP RB VBZ DT JJ JJ NN , WDT IN DT NNS VBZ IN RB JJ IN CD NN IN NN . These activities are most common within the agriculture , construction , and service sectors . DT NNS VBP RBS JJ IN DT NN , NN , CC NN NNS . Italy has moved slowly on implementing needed structural reforms , such as reducing graft , overhauling costly entitlement programs , and increasing employment opportunities for young workers , particularly women . NNP VBZ VBN RB IN VBG VBN JJ NNS , JJ IN VBG NN , VBG JJ NN NNS , CC VBG NN NNS IN JJ NNS , RB NNS . The international financial crisis worsened conditions in Italy 's labor market , with unemployment rising from 6.2 % in 2007 to 8.4 % in 2010 , but in the longer-term Italy 's low fertility rate and quota-driven immigration policies will increasingly strain its economy . DT JJ JJ NN VBD NNS IN NNP POS NN NN , IN NN VBG IN CD NN IN CD TO CD NN IN CD , CC IN DT JJ NNP POS JJ NN NN CC JJ NN NNS MD RB VB PRP$ NN . A rise in exports and investment driven by the global economic recovery nevertheless helped the economy grow by about 1 % in 2010 following a 5 % contraction in 2009 . DT NN IN NNS CC NN VBN IN DT JJ JJ NN RB VBD DT NN VB IN IN CD NN IN CD VBG DT CD NN NN IN CD . The Italian government has struggled to limit government spending , but Italy 's exceedingly high public debt remains above 115 % of GDP , and its fiscal deficit - just 1.5 % of GDP in 2007 - exceeded 5 % in 2009 and 4 % in 2010 , as the costs of servicing the country 's debt rose . DT JJ NN VBZ VBN TO VB NN NN , CC NNP POS RB JJ JJ NN VBZ IN CD NN IN NN , CC PRP$ JJ NN : RB CD NN IN NN IN CD : VBD CD NN IN CD CC CD NN IN CD , IN DT NNS IN VBG DT NN POS NN VBD . Settled as early as 1000 B.C. , Samoa was ' discovered ' by European explorers in the 18th century . VBN RB RB IN CD NNP , NNP VBD `` VBN `` IN JJ NNS IN DT JJ NN . International rivalries in the latter half of the 19th century were settled by an 1899 treaty in which Germany and the US divided the Samoan archipelago . NNP NNS IN DT JJ NN IN DT JJ NN VBD VBN IN DT CD NN IN WDT NNP CC DT NNP VBD DT NNP NN . The US formally occupied its portion - a smaller group of eastern islands with the excellent harbor of Pago Pago - the following year . DT NNP RB VBD PRP$ NN IN DT JJR NN IN JJ NNS IN DT JJ NN IN NNP NNP IN DT JJ NN . French Togoland became Togo in 1960 . JJ NNP VBD NNP IN CD . Gen. Gnassingbe EYADEMA , installed as military ruler in 1967 , ruled Togo with a heavy hand for almost four decades . NNP NNP NNP , VBN IN JJ NN IN CD , VBD NNP IN DT JJ NN IN RB CD NNS . Despite the facade of multiparty elections instituted in the early 1990s , the government was largely dominated by President EYADEMA , whose Rally of the Togolese People ( RPT ) party has maintained power almost continually since 1967 and maintains a majority of seats in today 's legislature . IN DT NN IN JJ NNS VBN IN DT JJ NNS , DT NN VBD RB VBN IN NNP NNP , WP$ NN IN DT NNP NNS LRB NNP RRB NN VBZ VBN NN RB RB IN CD CC VBZ DT NN IN NNS IN NN POS NN . Upon EYADEMA 's death in February 2005 , the military installed the president 's son , Faure GNASSINGBE , and then engineered his formal election two months later . IN NNP POS NN IN NNP CD , DT NN VBD DT NN POS NN , NNP NNP , CC RB VBN PRP$ JJ NN CD NNS RB . Democratic gains since then allowed Togo to hold its first relatively free and fair legislative elections in October 2007 . JJ NNS IN RB VBN NNP TO VB PRP$ JJ RB JJ CC JJ JJ NNS IN NNP CD . After years of political unrest and condemnation from international organizations for human rights abuses , Togo is finally being re-welcomed into the international community . IN NNS IN JJ NN CC NN IN JJ NNS IN JJ NNS NNS , NNP VBZ RB VBG VBN IN DT JJ NN . The Norwegian economy is a prosperous bastion of welfare capitalism , featuring a combination of free market activity and government intervention . DT JJ NN VBZ DT JJ NN IN NN NN , VBG DT NN IN JJ NN NN CC NN NN . The government controls key areas , such as the vital petroleum sector , through large-scale state-majority-owned enterprises . DT NN VBZ JJ NNS , JJ IN DT JJ NN NN , IN JJ JJ NNS . The country is richly endowed with natural resources - petroleum , hydropower , fish , forests , and minerals - and is highly dependent on the petroleum sector , which accounts for nearly half of exports and over 30 % of state revenue . DT NN VBZ RB VBN IN JJ NNS IN NN , NN , NN , NNS , CC NNS : CC VBZ RB JJ IN DT NN NN , WDT VBZ IN RB NN IN NNS CC IN CD NN IN NN NN . Norway is the world 's second-largest gas exporter ; its position as an oil exporter has slipped to ninth-largest as production has begun to decline . NNP VBZ DT NN POS JJ NN NN ; PRP$ NN IN DT NN NN VBZ VBN TO JJ IN NN VBZ VBN TO VB . Norway opted to stay out of the EU during a referendum in November 1994 ; nonetheless , as a member of the European Economic Area , it contributes sizably to the EU budget . NNP VBD TO VB IN IN DT NNP IN DT NN IN NNP CD ; RB , IN DT NN IN DT JJ NNP NNP , PRP VBZ RB TO DT NNP NN . In anticipation of eventual declines in oil and gas production , Norway saves state revenue from the petroleum sector in the world 's second largest sovereign wealth fund , valued at over $ 500 billion in 2010 . IN NN IN JJ NNS IN NN CC NN NN , NNP VBZ NN NN IN DT NN NN IN DT NN POS JJ JJS JJ NN NN , VBN IN IN $ CD CD IN CD . After solid GDP growth in 2004 - 7 , the economy slowed in 2008 , and contracted in 2009 , before returning to positive growth in 2010 . IN JJ NN NN IN CD : CD , DT NN VBD IN CD , CC VBD IN CD , IN VBG TO JJ NN IN CD . A lengthy struggle between France and Great Britain for the islands ended in 1814 , when they were ceded to the latter . DT JJ NN IN NNP CC NNP NNP IN DT NNS VBN IN CD , WRB PRP VBD VBN TO DT NN . Independence came in 1976 . NN VBD IN CD . Socialist rule was brought to a close with a new constitution and free elections in 1993 . JJ NN VBD VBN TO DT NN IN DT JJ NN CC JJ NNS IN CD . President France-Albert RENE , who had served since 1977 , was re-elected in 2001 , but stepped down in 2004 . NNP NNP NNP , WP VBD VBN IN CD , VBD VBN IN CD , CC VBD RP IN CD . Vice President James MICHEL took over the presidency and in July 2006 was elected to a new five-year term . NNP NNP NNP NNP VBD RP DT NN CC IN NNP CD VBD VBN TO DT JJ JJ NN . A MAN had two daughters , the one married to a gardener , and the other to a tile-maker . DT NN VBD CD NNS , DT CD VBN TO DT NN , CC DT JJ TO DT NN . After a time he went to the daughter who had married the gardener , and inquired how she was and how all things went with her . IN DT NN PRP VBD TO DT NN WP VBD VBN DT NN , CC VBD WRB PRP VBD CC WRB DT NNS VBD IN PRP . She said , ' All things are prospering with me , and I have only one wish , that there may be a heavy fall of rain , in order that the plants may be well watered . ' PRP VBD , `` DT NNS VBP VBG IN PRP , CC PRP VBP RB CD NN , IN EX MD VB DT JJ NN IN NN , IN NN IN DT NNS MD VB RB VBN . `` Not long after , he went to the daughter who had married the tilemaker , and likewise inquired of her how she fared ; she replied , ' I want for nothing , and have only one wish , that the dry weather may continue , and the sun shine hot and bright , so that the bricks might be dried . ' RB RB RB , PRP VBD TO DT NN WP VBD VBN DT NN , CC RB VBN IN PRP$ WRB PRP VBD ; PRP VBD , `` PRP VBP IN DT , CC VBP RB CD NN , IN DT JJ NN MD VB , CC DT NN NN JJ CC JJ , RB IN DT NNS MD VB VBN . `` He said to her , ' If your sister wishes for rain , and you for dry weather , with which of the two am I to join my wishes ? ' PRP VBD TO PRP , `` IN PRP$ NN VBZ IN NN , CC PRP IN JJ NN , IN WDT IN DT CD VBP PRP TO VB PRP$ NNS . `` A MAN to Whom Time Was Money , and who was bolting his breakfast in order to catch a train , had leaned his newspaper against the sugar-bowl and was reading as he ate . DT NN TO NNP NNP VBD NNP , CC WP VBD VBG PRP$ NN IN NN TO VB DT NN , VBD VBN PRP$ NN IN DT NN CC VBD VBG IN PRP VBD . In his haste and abstraction he stuck a pickle-fork into his right eye , and on removing the fork the eye came with it . IN PRP$ NN CC NN PRP VBD DT NN IN PRP$ JJ NN , CC IN VBG DT NN DT NN VBD IN PRP . In buying spectacles the needless outlay for the right lens soon reduced him to poverty , and the Man to Whom Time Was Money had to sustain life by fishing from the end of a wharf . IN VBG NNS DT JJ NN IN DT JJ NN RB VBD PRP TO NN , CC DT NN TO NNP NNP VBD NNP VBD TO VB NN IN NN IN DT NN IN DT NN . A noted biologist , who had been studying little green frogs in a swamp , was stumped . DT JJ NN , WP VBD VBN VBG JJ JJ NNS IN DT NN , VBD VBN . The frog population , despite efforts at predator control , was declining at an alarming rate . DT NN NN , IN NNS IN NN NN , VBD VBG IN DT JJ NN . A chemist at a nearby college came up with a solution : DT NN IN DT JJ NN VBD RP IN DT NN : The frogs , due to a chemical change in the swamp water , simply could n't stay coupled long enough to reproduce successfully . DT NNS , JJ TO DT NN NN IN DT NN NN , RB MD RB VB VBN RB RB TO VB RB . The chemist then brewed up a new adhesive to assist the frogs ' togetherness , which included one part sodium . DT NN RB VBD RP DT JJ NN TO VB DT NNS POS NN , WDT VBD CD NN NN . It seems the little green frogs needed some monosodium glue to mate . PRP VBZ DT JJ JJ NNS VBD DT NN NN TO VB . The Taliban has claimed responsibility for a roadside bombing in Afghanistan that killed the son of the new Dutch military commander . DT NNP VBZ VBN NN IN DT NN VBG IN NNP WDT VBD DT NN IN DT JJ JJ JJ NN . Lieutenant Dennis van Uhm was one of two soldiers killed in the attack Friday . NNP NNP NNP NNP VBD CD IN CD NNS VBN IN DT NN NNP . His father , General Peter van Uhm , took command of the Dutch military on Thursday . PRP$ NN , NNP NNP NNP NNP , VBD NN IN DT JJ NN IN NNP . The Associated Press quotes a Taliban spokesman as saying van Uhm was specifically targeted because he was a high-profile soldier . DT NNP NNP VBZ DT NNP NN IN VBG NNP NNP VBD RB VBN IN PRP VBD DT JJ NN . The Dutch government rejects the claim , saying there is no indication that van Uhm was personally targeted . DT JJ NN VBZ DT NN , VBG EX VBZ DT NN IN NNP NNP VBD RB VBN . The roadside bombing took place north of the Dutch military base in the southern province of Uruzgan . DT NN NN VBD NN NN IN DT JJ JJ NN IN DT JJ NN IN NNP . Also today , three Afghan civilians died in a roadside blast in Logar province , south of the capital , Kabul . RB NN , CD JJ NNS VBD IN DT NN NN IN NNP NN , NN IN DT NN , NNP . The U.S. ambassador to Iraq says the United States may cut funding for Iraq 's police because of their failure to punish those responsible for torture . DT NNP NN TO NNP VBZ DT NNP NNPS MD VB NN IN NNP POS NN IN IN PRP$ NN TO VB DT JJ IN NN . Zalmay Khalilzad said in an interview with The New York Times newspaper that U.S. officials are reviewing some programs because of a U.S. law that bans funding security forces that violate human rights . NNP NNP VBD IN DT NN IN DT NNP NNP NNP NN IN NNP NNS VBP VBG DT NNS IN IN DT NNP NN WDT VBZ NN NN NNS WDT VBP JJ NNS . But Khalilzad says he hopes Iraqi Interior Minister Jawad al-Bolani does punish those responsible to keep the funding . CC NNP VBZ PRP VBZ JJ NNP NNP NNP NNP VBZ VB DT JJ TO VB DT NN . Earlier this month , a special United Nations investigator said torture in Iraq may be worse now than it was when Saddam Hussein was in power . RBR DT NN , DT JJ NNP NNPS NN VBD NN IN NNP MD VB JJR RB IN PRP VBD WRB NNP NNP VBD IN NN . He called the situation out of hand and said he examined reports of torture at official Iraqi detention centers and by private militias . PRP VBD DT NN IN IN NN CC VBD PRP VBD NNS IN NN IN JJ JJ NN NNS CC IN JJ NNS . A poll taken by a major Japanese newspaper shows overwhelming support for a change in the law to allow a woman to succeed to the throne . DT NN VBN IN DT JJ JJ NN VBZ JJ NN IN DT NN IN DT NN TO VB DT NN TO VB TO DT NN . The Tokyo Shimbun said Sunday that 84 percent of its poll respondents approved of the idea that an empress could rule Japan . DT NNP NNP VBD NNP IN CD NN IN PRP$ NN NNS VBD IN DT NN IN DT NN MD VB NNP . It said only six percent of respondents said succession should be limited to males . PRP VBD RB CD NN IN NNS VBD NN MD VB VBN TO NNS . Under Japanese law , only males who have emperors on their father 's side can succeed to the throne . IN JJ NN , RB NNS WP VBP NNS IN PRP$ NN POS NN MD VB TO DT NN . The question of succession to the throne , now occupied by 71-year-old Emperor Akihito , is gaining urgency because no boys have been born into the Imperial household for 40 years . DT NN IN NN TO DT NN , RB VBN IN JJ NNP NNP , VBZ VBG NN IN DT NNS VBP VBN VBN IN DT JJ NN IN CD NNS . The French government has condemned remarks by a top Vatican official linking the pedophile scandal in the Catholic Church to homosexuality . DT JJ NN VBZ VBN NNS IN DT JJ NNP NN VBG DT JJ NN IN DT NNP NNP TO NN . French Foreign Ministry spokesman Bernard Valero Wednesday said the remarks linking the abuse to homosexuality was ' unacceptable . ' NNP NNP NNP NN NNP NNP NNP VBD DT NNS VBG DT NN TO NN VBD `` JJ . `` He said France is committed to the struggle against discrimination and prejudice linked to sexual orientation and gender identity . PRP VBD NNP VBZ VBN TO DT NN IN NN CC NN VBN TO JJ NN CC NN NN . Gay rights groups also condemned the remarks by Cardinal Tarcisio Bertone . NN NNS NNS RB VBD DT NNS IN NNP NNP NNP . The top aide to Pope Benedict sparked a furor Monday when he said that homosexuality and not the priestly vow of celibacy is the cause of widespread sex abuse of children by the Catholic clergy . DT JJ NN TO NNP NNP VBD DT NN NNP WRB PRP VBD IN NN CC RB DT JJ NN IN NN VBZ DT NN IN JJ NN NN IN NNS IN DT NNP NN . In statement Wednesday , Vatican spokesman Federico Lombardi said that Bertone did not refer to the society at large , but only to the data gathered by Vatican investigators . IN NN NNP , NNP NN NNP NNP VBD IN NNP VBD RB VB TO DT NN IN JJ , CC RB TO DT NNS VBN IN NNP NNS . Critics have accused Pope Benedict and other church leaders of protecting abusive priests and attempting to cover up the scandal . NNS VBP VBN NNP NNP CC JJ NN NNS IN VBG JJ NNS CC VBG TO VB RP DT NN . Officials in Ecuador say Venezuela is to help them build a $ 5 billion oil refinery that will become operational in 2012 . NNS IN NNP VBP NNP VBZ TO VB PRP VB DT $ CD CD NN NN WDT MD VB JJ IN CD . Oil Minister Galo Chiriboga said Thursday the refinery will initially process Ecuadorean crude , but when supplies are depleted , Venezuelan crude will be used . NNP NNP NNP NNP VBD NNP DT NN MD RB VB JJ NN , CC WRB NNS VBP VBN , JJ NN MD VB VBN . The facility will have the capacity to refine 3,00,000 barrels of oil daily . DT NN MD VB DT NN TO VB CD NNS IN NN NN . The minister says a logistics study for the project should be concluded by June and that it is a way of promoting Latin American investment in refineries . DT NN VBZ DT NNS NN IN DT NN MD VB VBN IN NNP CC IN PRP VBZ DT NN IN VBG JJ JJ NN IN NNS . Ecuador is capable of producing more than 5,00,000 barrels of crude oil a day , but has no refining facilities and must import gasoline . NNP VBZ JJ IN VBG JJR IN CD NNS IN JJ NN DT NN , CC VBZ DT NN NNS CC MD VB NN . Ecuador is the fifth largest oil producer in South America . NNP VBZ DT JJ JJS NN NN IN NNP NNP . The country rejoined the OPEC cartel last month after a 15-year break Venezuela is the only other Latin American country in OPEC . DT NN VBD DT NNP NN JJ NN IN DT JJ NN NNP VBZ DT JJ JJ JJ JJ NN IN NNP . Venezuelan President Hugo Chavez says his government will amend a controversial new intelligence law that human rights groups say could silence his critics . JJ NNP NNP NNP VBZ PRP$ NN MD VB DT JJ JJ NN NN IN JJ NNS NNS VBP MD VB PRP$ NNS . Mr. Chavez told supporters Saturday that his government will soon correct what he called ' mistakes ' in the law . NNP NNP VBD NNS NNP IN PRP$ NN MD RB VB WP PRP VBD `` NNS `` IN DT NN . The new law replaces Venezuela 's two main intelligence services with new agencies overseen by Mr. Chavez . DT JJ NN VBZ NNP POS CD JJ NN NNS IN JJ NNS VBN IN NNP NNP . It requires Venezuelans to act as informants to secret police and community monitoring groups loyal to the president . PRP VBZ NNS TO VB IN NNS TO JJ NN CC NN NN NNS JJ TO DT NN . Anyone who refuses to provide information faces two to six years in prison . DT WP VBZ TO VB NN VBZ CD CC CD NNS IN NN . Human rights advocates and legal scholars have condemned the measure , saying it will force people to report on their neighbors to avoid prison terms . JJ NNS NNS CC JJ NNS VBP VBN DT NN , VBG PRP MD VB NNS TO VB IN PRP$ NNS TO VB NN NNS . Mr. Chavez says the law is intended to protect national security and combat U.S. interference . NNP NNP VBZ DT NN VBZ VBN TO VB JJ NN CC NN NNP NN . U.S. experts say sediment left by receding floodwaters in New Orleans is contaminated and could pose health risks to returning residents . NNP NNS VBP NN VBN IN VBG NNS IN NNP NNP VBZ VBN CC MD VB NN NNS TO VBG NNS . The Environmental Protection Agency said Friday that recent test samples from storm debris and soil revealed high levels of bacteria and fuel oil . DT NNP NNP NNP VBD NNP IN JJ NN NNS IN NN NN CC NN VBD JJ NNS IN NNS CC NN NN . Officials warned people to avoid contact with the contaminated materials . NNS VBD NNS TO VB NN IN DT JJ NNS . U.S. experts had previously reported high levels of bacteria in the floodwaters of New Orleans . NNP NNS VBD RB VBN JJ NNS IN NNS IN DT NNS IN NNP NNP . As sediment dries , they plan to conduct air sampling and assess other exposure risks . IN NN NNS , PRP VBP TO VB NN NN CC VB JJ NN NNS . Oil spills have been reported in New Orleans and many parts of Louisiana 's southeastern coast . NNP NNS VBP VBN VBN IN NNP NNP CC JJ NNS IN NNP POS JJ NN . The U.S. Coast Guard has counted more than 40 spills from refineries , storage depots and other facilities . DT NNP NNP NNP VBZ VBN JJR IN CD NNS IN NNS , NN NNS CC JJ NNS . The spills range in size from several hundred liters to 15 million liters . DT NNS VBP IN NN IN JJ CD NNS TO CD CD NNS . At least six Iraqis have been killed in clashes in the cities of Samarra and Ramadi , as pre-election violence continues virtually unabated . IN JJS CD NNS VBP VBN VBN IN NNS IN DT NNS IN NNP CC NNP , IN JJ NN VBZ RB JJ . Hospital officials say clashes near a U.S. military base west of Baghdad in Ramadi Wednesday killed two people . NN NNS VBP NNS IN DT NNP JJ NN NN IN NNP IN NNP NNP VBD CD NNS . And Iraqi police say gunmen attacked a police station in Samarra , north of the capital , killing at least four people . CC JJ NNS VBP NNS VBD DT NN NN IN NNP , NN IN DT NN , VBG IN JJS CD NNS . Meanwhile , in neighboring Kuwait , U.S. Defense Secretary Donald Rumsfeld spoke to American troops at Camp Buehring preparing to go to Iraq . RB , IN VBG NNP , NNP NNP NNP NNP NNP VBD TO JJ NNS IN NNP NNP VBG TO VB TO NNP . Soldiers told Mr. Rumsfeld they are concerned about the lack of adequate armor on some vehicles and about their long deployments . NNS VBD NNP NNP PRP VBP VBN IN DT NN IN JJ NN IN DT NNS CC IN PRP$ JJ NNS . Mr. Rumsfeld said production of armored metal has been stepped up , but he said ' you go to war with the army you have . ' NNP NNP VBD NN IN JJ NN VBZ VBN VBN RB , CC PRP VBD `` PRP VBP TO NN IN DT NN PRP VBP . `` The number of American combat deaths in Iraq reached 1,000 on Tuesday DT NN IN JJ NN NNS IN NNP VBD CD IN NNP Indian police say they have arrested a top militant commander blamed for dozens of attacks and tourist killings in Indian Kashmir . JJ NNS VBP PRP VBP VBN DT JJ NN NN VBN IN NNS IN NNS CC NN NNS IN JJ NNP . Authorities said Saturday that Mudasir Gujri was arrested in Jammu - Kashmir , India 's only Muslim majority state . NNS VBD NNP IN NNP NNP VBD VBN IN NNP IN NNP , NNP POS JJ NN NN NN . State police chief Gopal Sharma told a news conference that Mudasir is believed to be the main planner of Lashkar-e-Toiba , a Pakistan-based Kashmiri militant group , and the mastermind behind at least 25 recent attacks . NNP NN NN NNP NNP VBD DT NN NN IN NNP VBZ VBN TO VB DT JJ NN IN NNP , DT JJ JJ JJ NN , CC DT NN IN IN JJS CD JJ NNS . The police chief called the arrest a great setback to the militants , but added that once one terror cell is defeated , ' another one comes up . ' DT NN NN VBD DT NN DT JJ NN TO DT NNS , CC VBD IN RB CD NN NN VBZ VBN , `` DT CD VBZ RP . `` Indian officials have said they suspect last week 's railway attacks in Mumbai that killed nearly 200 people were carried out by Lashkar-e-Toiba . JJ NNS VBP VBN PRP VBP JJ NN POS NN NNS IN NNP WDT VBD RB CD NNS VBD VBN RP IN NNP . The group , which is fighting Indian rule in Kashmir , has denied involvement . DT NN , WDT VBZ VBG JJ NN IN NNP , VBZ VBN NN . Burma 's military government has rejected a U.S. State Department report that slams Burma for restricting religious activities . NNP POS JJ NN VBZ VBN DT NNP NNP NNP NN IN VBZ NNP IN VBG JJ NNS . The annual report was issued earlier this month and lists countries , including Burma , Iran and China , as nations ' engaged in or tolerating particularly severe violations of religious freedom . ' DT JJ NN VBD VBN RBR DT NN CC NNS NNS , VBG NNP , NNP CC NNP , IN NNS `` VBN IN CC VBG RB JJ NNS IN JJ NN . `` Burma 's Foreign Ministry said Saturday that the allegations were politically motivated and unjustified . NNP POS NNP NNP VBD NNP IN DT NNS VBD RB JJ CC JJ . It said no serious problems exist among religious groups in Burma . PRP VBD DT JJ NNS VBP IN JJ NNS IN NNP . Burma is overwhelmingly Buddhist , with small minorities of Christians , Muslims , Hindus and animists . NNP VBZ RB JJ , IN JJ NNS IN NNPS , NNPS , NNP CC NNS . It has long been criticized by rights groups and countries , including the United States , for its human rights record . PRP VBZ RB VBN VBN IN NNS NNS CC NNS , VBG DT NNP NNPS , IN PRP$ JJ NNS NN . The State Department report is meant to help U.S. officials shape policy , conduct diplomacy and decide whether to help private groups promoting religious freedom in their countries . DT NNP NNP NN VBZ VBN TO VB NNP NNS VBP NN , NN NN CC VB IN TO VB JJ NNS VBG JJ NN IN PRP$ NNS . The U.S. nominee to head the World Bank has hailed what he calls a ' new generation ' of African leaders , and has promised to build stronger partnerships with African countries . DT NNP NN TO VB DT NNP NNP VBZ VBN WP PRP VBZ DT `` JJ NN `` IN JJ NNS , CC VBZ VBN TO VB JJR NNS IN JJ NNS . As he wrapped up a four-day tour of the continent in South Africa , Robert Zoellick said African leaders are taking responsibility for their countries in dealing with issues including energy , employment , investment and infrastructure . IN PRP VBD RP DT JJ NN IN DT NN IN NNP NNP , NNP NNP VBD JJ NNS VBP VBG NN IN PRP$ NNS IN VBG IN NNS VBG NN , NN , NN CC NN . Zoellick said if he is appointed president of the World Bank , he will focus on stronger partnerships with African countries to help with their individual strategies for development and growth . NNP VBD IN PRP VBZ VBN NN IN DT NNP NNP , PRP MD VB IN JJR NNS IN JJ NNS TO VB IN PRP$ JJ NNS IN NN CC NN . Zoellick met with African leaders in Ghana , Ethiopia and South Africa on this week 's tour . NNP VBD IN JJ NNS IN NNP , NNP CC NNP NNP IN DT NN POS NN . He is scheduled to visit Europe , Mexico and Brazil before returning to the United States . PRP VBZ VBN TO VB NNP , NNP CC NNP IN VBG TO DT NNP NNPS . Zoellick is expected to be confirmed as World Bank president next month . NNP VBZ VBN TO VB VBN IN NNP NNP NN JJ NN . Americans Andy Roddick and James Blake , along with Jarkko Nieminen of Finland have won warm-up events for the Australian Open - the first Grand Slam tennis event of the year . NNS NNP NNP CC NNP NNP , IN IN NNP NNP IN NNP VBP VBN JJ NNS IN DT JJ NNP IN DT JJ NNP NNP NN NN IN DT NN . Roddick beat German Tommy Haas in straight sets ( 06-Mar , 07-Jun ) Saturday at an exhibition tournament in Melbourne , which will host the Australian Open starting Monday . NNP VBD JJ NNP NNP IN JJ NNS LRB CD , CD RRB NNP IN DT NN NN IN NNP , WDT MD VB DT JJ NNP VBG NNP . Eighth seed Blake needed three sets to get by unseeded Russian Igor Andreev ( 06-Feb , 03-Jun , 07-Jun ) in the finals of the Sydney International tournament . JJ NN NNP VBD CD NNS TO VB IN JJ JJ NNP NNP LRB CD , CD , CD RRB IN DT NNS IN DT NNP NNP NNP . Seventh seed Nieminen broke a six-year title drought when he beat fifth seed Mario Ancic of Croatia in straight sets ( 06-Feb , 06-Feb ) at the Heineken Open in Auckland , New Zealand . JJ NN NNP VBD DT JJ NN NN WRB PRP VBD JJ NN NNP NNP IN NNP IN JJ NNS LRB CD , CD RRB IN DT NNP NNP IN NNP , NNP NNP . South Korean diplomats held face-to-face talks Friday with Taleban militants who have been holding 21 South Korean hostages for three weeks . JJ JJ NNS VBD JJ NNS NNP IN NNP NNS WP VBP VBN VBG CD JJ JJ NNS IN CD NNS . Taleban spokesman Yousef Ahmadi says two of its negotiators attended the talks in eastern Ghazni City . NNP NN NNP NNP VBZ CD IN PRP$ NNS VBD DT NNS IN JJ NNP NNP . Earlier , the Afghan government guaranteed safe passage for the Taleban representatives . RB , DT JJ NN VBD JJ NN IN DT NNP NNS . Negotiations had earlier been stalled over where to hold the meeting . NNS VBD RB VBN VBN IN WRB TO VB DT NN . The talks are seen as one of the last diplomatic efforts to secure the release of the hostages . DT NNS VBP VBN IN CD IN DT JJ JJ NNS TO VB DT NN IN DT NNS . A total of 23 South Koreans were abducted by Taleban militants on July 19 while traveling through Ghazni province . DT NN IN CD NNP NNS VBD VBN IN NNP NNS IN NNP CD IN VBG IN NNP NN . The kidnappers have already executed two male hostages . DT NNS VBP RB VBN CD JJ NNS . The captors have repeatedly threatened to kill more of the South Koreans unless the Afghan government and U.S. military release Taleban prisoners . DT NNS VBP RB VBN TO VB JJR IN DT NNP NNS IN DT JJ NN CC NNP NN VB NNP NNS . The Afghan government has refused their demands . DT JJ NN VBZ VBN PRP$ NNS . China 's state-run news agency says a coal mine accident in central Henan province has killed 13 miners and left 66 missing . NNP POS JJ NN NN VBZ DT NN NN NN IN JJ NNP NN VBZ VBN CD NNS CC VBD CD JJ . Xinhua , citing the state 's work safety agency , says Tuesday 's accident took place in Pingdingshan city . NNP , VBG DT NN POS NN NN NN , VBZ NNP POS NN VBD NN IN NNP NN . It gave no other information . PRP VBD DT JJ NN . Chinese coal mines are notoriously dangerous . JJ NN NNS VBP RB JJ . Accidents killed more than 3,000 people last year NNS VBD JJR IN CD NNS JJ NN The Afghan Defense Ministry says Afghan and U.S-led forces inflicted heavy casualties on insurgents in a battle Sunday in the eastern province of Nuristan . DT JJ NNP NNP VBZ JJ CC JJ NNS VBD JJ NNS IN NNS IN DT NN NNP IN DT JJ NN IN NNP . Neither Afghan nor U.S. military officials said how many insurgents were killed . DT JJ CC NNP JJ NNS VBD WRB JJ NNS VBD VBN . Afghan officials said one of their soldiers had been killed . JJ NNS VBD CD IN PRP$ NNS VBD VBN VBN . The military officials said there were no reports of civilian casualties . DT JJ NNS VBD EX VBD DT NNS IN JJ NNS . Nuristan officials dispute that , saying at least 20 civilians died in the attack and more were wounded . NNP NNS VBP IN , VBG IN JJS CD NNS VBD IN DT NN CC JJR VBD VBN . Defense Ministry officials say eight insurgents were captured , while Nuristan leaders say those detained were civilians . NNP NNP NNS VBP CD NNS VBD VBN , IN NNP NNS VBP DT VBN VBD NNS . The Afghan Defense Ministry is investigating the situation . DT JJ NNP NNP VBZ VBG DT NN . Afghan and U.S. forces undertook the operation to clear insurgents from the remote province near the Pakistani border . JJ CC NNP NNS VBP DT NN TO JJ NNS IN DT JJ NN IN DT JJ NN . Nuristan is a known stronghold of Taliban-led militants . NNP VBZ DT JJ NN IN JJ NNS . One Nuristan leader said the Taliban had been in the area , but left before the fighting started . CD NNP NN VBD DT NNP VBD VBN IN DT NN , CC VBD IN DT NN VBD . A published report in Britain says authorities believe they foiled a terrorist plot to carry out a nerve gas attack on parliament . DT VBN NN IN NNP VBZ NNS VBP PRP VBD DT JJ NN TO VB RP DT NN NN NN IN NN . The Sunday Times says an al-Qaida cell in Britain carried out extensive research last year and videotaped reconnaissance in preparation for an attack on parliament and London 's subway system . DT NNP NNP VBZ DT NNP NN IN NNP VBD RP JJ NN JJ NN CC VBD NN IN NN IN DT NN IN NN CC NNP POS NN NN . The newspaper says and internal police security document shows the alleged terrorist plot involved the use of deadly sarin gas and chemical ' dirty bombs . ' DT NN VBZ CC JJ NN NN NN VBZ DT JJ JJ NN VBD DT NN IN JJ NN NN CC NN `` NN NNS . `` British intelligence officials are reported to have used an al-Qaida informant to crack coded e-mail correspondence found in computers seized from terror suspects in Britain and Pakistan . JJ NN NNS VBP VBN TO VB VBN DT NNP NN TO VB VBN NN NN VBN IN NNS VBN IN NN NNS IN NNP CC NNP . The Sunday Times says deciphering the code also helped authorities uncover several terrorist plots . DT NNP NNP VBZ VBG DT NN RB VBD NNS VB JJ JJ NNS . Police have not commented on the newspaper report . NNS VBP RB VBN IN DT NN NN . Family , friends and residents of a small town in the U.S. state of Ohio are mourning the loss of 19 U.S. Marines - all from the same unit - killed this week in Iraq . NN , NNS CC NNS IN DT JJ NN IN DT NNP NN IN NNP VBP VBG DT NN IN CD NNP NNPS IN DT IN DT JJ NN IN VBN DT NN IN NNP . On Wednesday , 14 Marines from the 3rd Battalion , 25th Marines unit based in the Ohio town of Brook Park died when their vehicle hit a roadside bomb . IN NNP , CD NNS IN DT CD NN , JJ NNPS NN VBN IN DT NNP NN IN NNP NNP VBD WRB PRP$ NN VBD DT NN NN . Five more Marines from the same unit were killed in an ambush on Monday . CD JJR NNS IN DT JJ NN VBD VBN IN DT NN IN NNP . The deaths have rattled the residents of the small Cleveland suburb , which has just over 20,000 residents . DT NNS VBP VBN DT NNS IN DT JJ NNP NN , WDT VBZ RB IN CD NNS . Local media say almost everyone in the town knew one or more of the Marines killed in this week 's attacks . JJ NNS VBP RB DT IN DT NN VBD CD CC JJR IN DT NNPS VBD IN DT NN POS NNS . Relatives of the Marines killed have expressed both grief and anger , some calling for President Bush to withdraw the troops from Iraq , while others say the deaths only reaffirm their support for the war . NNS IN DT NNS VBN VBP VBN DT NN CC NN , DT NN IN NNP NNP TO VB DT NNS IN NNP , IN NNS VBP DT NNS RB VBP PRP$ NN IN DT NN . The U.S. space shuttle Endeavouris scheduled to return to Earth Friday , following a two-week mission to service the International Space Station . DT NNP NN NN NNP VBD TO VB TO NNP NNP , VBG DT JJ NN TO VB DT NNP NNP NNP . Endeavourundocked from the orbiting outpost Tuesday , beginning the long journey home that will end with a landing at the Kennedy Space Center in Florida . VBN IN DT VBG NN NNP , VBG DT JJ NN NN WDT MD VB IN DT NN IN DT NNP NNP NNP IN NNP . Endeavour 's mission at the space station included five spacewalks , during which shuttle astronauts installed an external platform on the station 's Japanese lab , known as Kibo , or ' hope . ' NNP POS NN IN DT NN NN VBD CD NNS , IN WDT NN NNS VBD DT JJ NN IN DT NN POS JJ NN , VBN IN NNP , CC `` NN . `` The platform will allow scientists to conduct experiments in the vacuum of space . DT NN MD VB NNS TO VB NNS IN DT NN IN NN . The crew also conducted maintenance work on the station . DT NN RB VBD NN NN IN DT NN . While the shuttle was docked at the station , the outpost 's population grew to 13 - the highest number in its history . IN DT NN VBD VBN IN DT NN , DT NN POS NN VBD TO CD IN DT JJS NN IN PRP$ NN . The shuttle will be bringing back Japanese astronaut Koichi Wakata , who has been on the space station since March . DT NN MD VB VBG RB JJ NN NNP NNP , WP VBZ VBN IN DT NN NN IN NNP . U.S. astronaut Timothy Kopra is taking his place . NNP NN NNP NNP VBZ VBG PRP$ NN . Afghan President Hamid Karzai led his country 's Independence Day celebrations Sunday with a call for young Afghans to educate themselves to preserve their freedom . JJ NNP NNP NNP VBD PRP$ NN POS NNP NNP NNS NNP IN DT NN IN JJ NNS TO VB PRP TO VB PRP$ NN . Mr. Karzai told thousands of people gathered at the Kabul sports stadium that Afghanistan was still threatened by enemies , referring to the Taleban-led insurgency . NNP NNP VBD NNS IN NNS VBN IN DT NNP NNS NN IN NNP VBD RB VBN IN NNS , VBG TO DT JJ NN . Meanwhile , Mullah Omar , the elusive Taleban leader in Afghanistan , issued a statement calling for people to join the insurgency to oust the U.S.-backed Karzai government . RB , NNP NNP , DT JJ NNP NN IN NNP , VBD DT NN VBG IN NNS TO VB DT NN TO VB DT JJ NNP NN . Afghanistan served as a buffer between the British and Russian empires until it won independence from British control on August 19th of 1919 . NNP VBD IN DT NN IN DT JJ CC JJ NNS IN PRP VBD NN IN JJ NN IN NNP JJ IN CD . Iranian President Mohammad Khatami has marked the 26th anniversary of the Islamic revolution with a stern warning that any invaders will face what he calls a ' burning hell . ' JJ NNP NNP NNP VBZ VBN DT JJ NN IN DT JJ NN IN DT JJ NN IN DT NNS MD VB WP PRP VBZ DT `` NN NN . `` Addressing tens of thousands of Iranians Thursday in central Tehran , Mr. Khatami said the Islamic republic does not seek ' war , violence or confrontation . ' VBG NNS IN NNS IN NNS NNP IN JJ NNP , NNP NNP VBD DT NNP NN VBZ RB VB `` NN , NN CC NN . `` Iran is facing mounting international pressure over its nuclear program , which the United States alleges is aimed at developing nuclear weapons . NNP VBZ VBG VBG JJ NN IN PRP$ JJ NN , WDT DT NNP NNPS VBZ VBZ VBN IN VBG JJ NNS . President Bush says he has not ruled out the use of military force , if negotiations fail to end the threat . NNP NNP VBZ PRP VBZ RB VBN IN DT NN IN JJ NN , IN NNS VBP TO VB DT NN . Today , for a second time in two days , Mr. Khatami dismissed Mr. Bush 's comments as part of a psychological war . NN , IN DT JJ NN IN CD NNS , NNP NNP VBD NNP NNP POS NNS IN NN IN DT JJ NN . Britain , France and Germany are engaged in ongoing talks with Iran aimed at persuading Tehran to end its nuclear enrichment program . NNP , NNP CC NNP VBP VBN IN JJ NNS IN NNP VBN IN VBG NNP TO VB PRP$ JJ NN NN . Negotiators in Geneva have reported little progress in the talks . NNS IN NNP VBP VBN JJ NN IN DT NNS . The center-left opposition bloc has won the lower house in Italy 's parliamentary elections by a razor-thin margin while the race for the Senate is still unclear . DT JJ NN NN VBZ VBN DT JJR NN IN NNP POS JJ NNS IN DT JJ NN IN DT NN IN DT NNP VBZ RB JJ . Official results give the opposition 49.8 percent of the vote while Prime Minister Silvio Berlusconi 's ruling conservative coalition wins 49.7 percent . JJ NNS VBP DT NN CD NN IN DT NN IN NNP NNP NNP NNP POS NN JJ NN VBZ CD NN . Under Italy 's new election laws , the opposition will automatically control 55 percent of the seats in the lower house . IN NNP POS JJ NN NNS , DT NN MD RB VB CD NN IN DT NNS IN DT JJR NN . Meanwhile , officials are giving the Berlusconi coalition a one-seat margin in the senate - 155 to 154 . RB , NNS VBP VBG DT NNP NN DT JJ NN IN DT NN IN CD TO CD . But six seats chosen by Italians voting abroad still to be counted . CC CD NNS VBN IN NNS VBG RB RB TO VB VBN . A coalition must control both the senate and the lower house in order to form a government . DT NN MD VB DT DT NN CC DT JJR NN IN NN TO VB DT NN . Prime Minister Berlusconi and Mr. Prodi have both called for new elections if neither side controls both houses . JJ NN NNP CC NNP NNP VBP DT VBN IN JJ NNS IN DT NN VBZ DT NNS . The election came after an angry campaign full of insults by both sides . DT NN VBD IN DT JJ NN JJ IN NNS IN DT NNS . The head of the World Health Organization ( WHO ) is assuring consumers there is no risk of catching bird flu from properly cooked food . DT NN IN DT NNP NNP NNP LRB WP RRB VBZ VBG NNS EX VBZ DT NN IN VBG NN NN IN RB VBN NN . Dr. Lee Jong-Wook said Monday that none of the 173 confirmed bird flu cases since 2003 came from eating well-cooked poultry or eggs . NNP NNP NNP VBD NNP IN NN IN DT CD VBD NN NN NNS IN CD VBD IN VBG JJ NN CC NNS . Dr. Lee says poultry products are an important source of protein and that thorough cooking kills the virus . NNP NNP VBZ NN NNS VBP DT JJ NN IN NN CC IN JJ NN VBZ DT NN . European poultry farmers have said they have lost millions of dollars from people giving up chickens because of bird flu fears . JJ NN NNS VBP VBN PRP VBP VBN NNS IN NNS IN NNS VBG RP NNS IN IN NN NN NNS . French officials say 20 countries have banned French poultry since bird flu was found on a commercial turkey farm last week . JJ NNS VBP CD NNS VBP VBN JJ NN IN NN NN VBD VBN IN DT JJ NN NN JJ NN . Meanwhile , the virus has spread to a third African country with Niger reporting the disease in domestic ducks . RB , DT NN VBZ VBN TO DT JJ JJ NN IN NNP VBG DT NN IN JJ NNS . Bird flu has also been found in Nigeria and Egypt . NN NN VBZ RB VBN VBN IN NNP CC NNP . In Europe , Bosnia has reported its first bird flu cases in swans . IN NNP , NNP VBZ VBN PRP$ JJ NN NN NNS IN NNS . The British pharmaceutical company GlaxoSmithKline says it could have a bird flu vaccine ready for mass production as early as next year . DT JJ JJ NN NNP VBZ PRP MD VB DT NN NN NN JJ IN NN NN RB RB IN JJ NN . In a statement issued Wednesday , the company reported a breakthrough in recent trials of the vaccine , which it says is effective against the deadly H5N1 strain . IN DT NN VBN NNP , DT NN VBD DT NN IN JJ NNS IN DT NN , WDT PRP VBZ VBZ JJ IN DT JJ NNP NN . GlaxoSmithKline said it could be ready to submit the vaccine to regulators by the end of this year . NNP VBD PRP MD VB JJ TO VB DT NN TO NNS IN DT NN IN DT NN . The company said the key to its vaccine is the low concentration of active ingredient . DT NN VBD DT NN TO PRP$ NN VBZ DT JJ NN IN JJ NN . This would allow the vaccine to be produced on a mass scale , allowing governments to stock up on the vaccine to be used in the event of a pandemic . DT MD VB DT NN TO VB VBN IN DT NN NN , VBG NNS TO VB RP IN DT NN TO VB VBN IN DT NN IN DT NN . Several other companies are working to develop bird flu vaccines . JJ JJ NNS VBP VBG TO VB NN NN NNS . In the latest bird flu outbreak , health officials in Thailand reported Wednesday that a teenage boy who died earlier this week was infected with the deadly H5N1 variety of the disease . IN DT JJS NN NN NN , NN NNS IN NNP VBD NNP IN DT JJ NN WP VBD RBR DT NN VBD VBN IN DT JJ NNP NN IN DT NN . Germany and the United States are two of the biggest gainers in this month 's world football rankings released by the International Football Federation ( FIFA ) on Wednesday . NNP CC DT NNP NNPS VBP CD IN DT JJS NNS IN DT NN POS NN NN NNS VBN IN DT NNP NNP NNP LRB NNP RRB IN NNP . After an impressive performace at the Confederations Cup , Germany moved up 10 spots to 11th place overall . IN DT JJ NN IN DT NNPS NNP , NNP VBD RP CD NNS TO JJ NN NN . The U.S. team moved up four spots to sixth in the world , its highest-ever ranking , thanks to the team 's success at the ongoing CONCACAF Gold Cup . DT NNP NN VBD RB CD NNS TO JJ IN DT NN , PRP$ JJ NN , NNS TO DT NN POS NN IN DT JJ NNP NNP NNP . Brazil remains atop the rankings followed by Argentina and the Netherlands , which each moved up one spot . NNP VBZ IN DT NNS VBN IN NNP CC DT NNP , WDT DT VBD RB CD NN . The Czech Republic fell two slots to fourth place , followed by Mexico , which rose one spot to fifth . DT JJ NNP VBD CD NNS TO JJ NN , VBN IN NNP , WDT VBD CD NN TO NN . The U.S. team is sixth , with France down two positions in seventh place . DT NNP NN VBZ JJ , IN NNP IN CD NNS IN JJ NN . England dropped one place to eighth , with Spain up one slot in ninth place and Portugal falling two spots to 10th place . NNP VBD CD NN TO NN , IN NNP IN CD NN IN JJ NN CC NNP VBG CD NNS TO JJ NN . Officials in Somalia 's capital say at least 10 people have been killed in fighting between government troops and police . NNS IN NNP POS NN VBP IN JJS CD NNS VBP VBN VBN IN VBG IN NN NNS CC NNS . The gunbattle broke out Saturday in the Hamarjajab district in the south of Mogadishu . DT NN VBD RP NNP IN DT NNP NN IN DT NN IN NNP . Local officials say the fighting was sparked by an argument between the police and soldiers . JJ NNS VBP DT NN VBD VBN IN DT NN IN DT NNS CC NNS . At least 10 civilians were wounded in the incident . IN JJS CD NNS VBD VBN IN DT NN . Most of those killed are said to be soldiers . JJS IN DT VBN VBP VBN TO VB NNS . Somalia has endured nearly 20 years of war and chaos since the fall of the last stable government in 1991 . NNP VBZ VBN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ NN IN CD . The country 's current government is fighting Islamist insurgent groups and controls only small sections of the capital , with the help of African Union peacekeepers . DT NN POS JJ NN VBZ VBG NNP JJ NNS CC NNS RB JJ NNS IN DT NN , IN DT NN IN NNP NNP NNS . The United Nations Security Council has expressed concern that the Central African Republic could be destabilized by continuing violence in Darfur , Sudan and escalating tensions between Sudan and Chad . DT NNP NNP NNP NNP VBZ VBN NN IN DT NNP NNP NNP MD VB VBN IN VBG NN IN NNP , NNP CC VBG NNS IN NNP CC NNP . The CAR shares its northern border with Sudan to the east and Chad to the west . DT NNP VBZ PRP$ JJ NN IN NNP TO DT NN CC NN TO DT NN . Its northern region has been beset by skirmishes between government forces and rebels . PRP$ JJ NN VBZ VBN VBN IN NNS IN NN NNS CC NNS . At least 33 people were killed in clashes among the groups in June . IN JJS CD NNS VBD VBN IN NNS IN DT NNS IN NNP . In a report issued last week , U.N. Secretary General Kofi Annan warned that the area could attract more armed groups , mercenaries and rebels trying to destabilize governments in the region . IN DT NN VBN JJ NN , NNP NNP NNP NNP NNP VBD IN DT NN MD VB JJR JJ NNS , NNS CC NNS VBG TO VB NNS IN DT NN . The U.N. report also said humanitarian conditions in the country are deteriorating while human rights violations are rising . DT NNP NN RB VBD JJ NNS IN DT NN VBP VBG IN JJ NNS NNS VBP VBG . Austria has assumed the presidency of the European Union for a six-month term . NNP VBZ VBN DT NN IN DT NNP NNP IN DT JJ NN . Britain , which had held the EU leadership since July , turned over the presidency to Austria and its Chancellor Wolfgang Schuessel Sunday . NNP , WDT VBD VBN DT NNP NN IN NNP , VBD RP DT NN TO NNP CC PRP$ NNP NNP NNP NNP . Britain led the European Union during difficult and prolonged negotiations on a new budget for the 25-member group , and also bridged deep divisions within the bloc to begin talks with Turkey on EU membership for the secular Muslim state . NNP VBD DT NNP NNP IN JJ CC JJ NNS IN DT JJ NN IN DT JJ NN , CC RB VBD JJ NNS IN DT NN TO VB NNS IN NNP IN NNP NN IN DT JJ NNP NN . During Austria 's leadership term , Chancellor Schuessel will try to revive efforts to reach agreement on a controversial European constitution . IN NNP POS NN NN , NNP NNP MD VB TO VB NNS TO VB NN IN DT JJ JJ NN . The project was all but abandoned since French and Dutch voters rejected the charter last year . DT NN VBD DT CC VBN IN JJ CC JJ NNS VBD DT NN JJ NN . Finland is next in line for the EU presidency after Austria 's term . NNP VBZ JJ IN NN IN DT NNP NN IN NNP POS NN . Oil prices hit a 17-month low Monday as investors worried that a global economic slowdown will cut demand for energy . NN NNS VBD DT JJ JJ NNP IN NNS VBD IN DT JJ JJ NN MD VB NN IN NN . At the close of trading , the price of a barrel of oil was down less than one dollar to hit $ 63.22 . IN DT NN IN NN , DT NN IN DT NN IN NN VBD RB JJR IN CD NN TO VB $ CD . Earlier , prices went as low as $ 61.3 . RB , NNS VBD RB JJ IN $ CD . Oil prices fell even though OPEC ( the Organization of Petroleum Exporting Countries ) members said Friday they would cut production by more than five percent ( 1.5 million barrels per day ) . NN NNS VBD RB IN NNP LRB DT NNP IN NNP NNP NNPS RRB NNS VBD NNP PRP MD VB NN IN JJR IN CD NN LRB CD CD NNS IN NN RRB . OPEC produces about two-fifths of the world 's oil . NNP VBZ IN NNS IN DT NN POS NN . Iran 's OPEC governor Mohammad Ali Khatibi says the cartel will consider further production cuts to help stabilize the oil market if demand does not pick up . NNP POS NNP NN NNP NNP NNP VBZ DT NN MD VB JJ NN NNS TO VB VB DT NN NN IN NN VBZ RB VB RP . Oil prices are down more than 50 percent since hitting a record high of more than $ 147 a barrel in July . NN NNS VBP RB JJR IN CD NN IN VBG DT NN NN IN JJR IN $ CD DT NN IN NNP . The U.S. State Department says it is concerned by the continued repression of academic freedom in Iran . DT NNP NNP NNP VBZ PRP VBZ VBN IN DT JJ NN IN JJ NN IN NNP . A U.S. spokesman says that in recent months , dozens of Iranian students have been detained , professors have been replaced , and freedom of expression has been severely curtailed on university campuses in Iran . DT NNP NN VBZ IN IN JJ NNS , NNS IN JJ NNS VBP VBN VBN , NNS VBP VBN VBN , CC NN IN NN VBZ VBN RB VBN IN NN NNS IN NNP . A statement released Friday says the families of the detained men and women have not been allowed to communicate with their loved ones . DT NN VBN NNP VBZ DT NNS IN DT JJ NNS CC NNS VBP RB VBN VBN TO VB IN PRP$ VBN NNS . It calls on the Iranian government to release the detainees and to guarantee fundamental freedoms for all citizens . PRP VBZ IN DT JJ NN TO VB DT NNS CC TO VB JJ NNS IN DT NNS . The State Department says the abuses have taken place since September , when Iranian President Mahmoud Ahmadinejad said in a speech in New York that universities should be places where the freedoms of expression and conscience flourish . DT NNP NNP VBZ DT NNS VBP VBN NN IN NNP , WRB JJ NNP NNP NNP VBD IN DT NN IN NNP NNP IN NNS MD VB NNS WRB DT NNS IN NN CC NN VBP . The U.S. Justice Department will seek to dismiss at least 180 cases brought by detainees held at the U.S. military 's detention center at Guantanamo Bay , Cuba . DT NNP NNP NNP MD VB TO VB IN JJS CD NNS VBN IN NNS VBN IN DT NNP NN POS NN NN IN NNP NNP , NNP . The prisoners ' lawsuits challenge the legality of their confinement at the prison . DT NNS POS NNS VBP DT NN IN PRP$ NN IN DT NN . Justice Department officials notified judges presiding over the cases at the U.S. District Court in Washington that official motions to dismiss the lawsuits will be filed . NNP NNP NNS VBD NNS VBG IN DT NNS IN DT NNP NNP NNP IN NNP IN JJ NNS TO VB DT NNS MD VB VBN . Legislation signed by President Bush last week curbs U.S. civilian courts ' abilities to hear detainees ' cases . NN VBN IN NNP NNP JJ NN VBZ NNP JJ NNS POS NNS TO VB NNS POS NNS . About 500 prisoners are held at Guantanamo , most of them captured in Afghanistan on suspicion of ties to the Taleban or al-Qaida . IN CD NNS VBP VBN IN NNP , JJS IN PRP VBD IN NNP IN NN IN NNS TO DT NNP CC NNP . Supporters of Pakistan 's main religion-based parties have marched in the capital , Islamabad , to protest a nationwide crackdown on suspected Islamic militants . NNS IN NNP POS JJ JJ NNS VBP VBN IN DT NN , NNP , TO VB DT JJ NN IN JJ JJ NNS . More than 1,000 demonstrators marched in Islamabad Friday chanting religious and anti-American slogans and demanding the release of those detained . JJR IN CD NNS VBD IN NNP NNP VBG JJ CC JJ NNS CC VBG DT NN IN DT VBN . Organizers say they object to raids on religious schools and mosques in a crackdown they say is an effort to appease the United States and the West . NNS VBP PRP VBP TO NNS IN JJ NNS CC NNS IN DT NN PRP VBP VBZ DT NN TO VB DT NNP NNPS CC DT NNP . More than 300 people have been detained so far across Pakistan since the July seventh London bombings carried out by British Muslims of Pakistani origin who had visited the country before the attacks . JJR IN CD NNS VBP VBN VBN RB RB IN NNP IN DT NNP JJ NNP NNS VBN RP IN JJ NNPS IN JJ NN WP VBD VBN DT NN IN DT NNS . In a nationwide address Thursday , Pakistani President Pervez Musharraf sought the support of Pakistanis in the fight against extremism and terrorism . IN DT JJ NN NNP , JJ NNP NNP NNP VBD DT NN IN NNS IN DT NN IN NN CC NN . Police in Israel have charged an Iranian-born Israeli with passing defense information to Iran . NNS IN NNP VBP VBN DT JJ NN IN VBG NN NN TO NNP . Media reports say the man is believed to have had contact with Iranian intelligence agents in Istanbul and given them the names of people serving in the Israeli security and intelligence services . NNS NNS VBP DT NN VBZ VBN TO VB VBN NN IN JJ NN NNS IN NNP CC VBN PRP DT NNS IN NNS VBG IN DT JJ NN CC NN NNS . Police officials say the suspect was arrested earlier this month and formally charged in Tel Aviv Sunday . NNS NNS VBP DT NN VBD VBN RBR DT NN CC RB VBN IN NNP NNP NNP . The suspect 's identity has not been released . DT NN POS NN VBZ RB VBN VBN . Japan says it will give Afghanistan $ 110 million in aid to help with border security , literacy and the plight of refugees in the war-torn country . NNP VBZ PRP MD VB NNP $ CD CD IN NN TO VB IN NN NN , NN CC DT NN IN NNS IN DT JJ NN . Japan announced its pledge Tuesday at the beginning of a two-day international conference in Tokyo on Afghan reconstruction aid . NNP VBD PRP$ NN NNP IN DT NN IN DT JJ JJ NN IN NNP IN JJ NN NN . Representatives from 24 countries and international organizations are attending the meeting , which will also focus on combating narcotics and improving security in Afghanistan . NNS IN CD NNS CC JJ NNS VBP VBG DT NN , WDT MD RB VB IN VBG NNS CC VBG NN IN NNP . Speaking Tuesday in Tokyo , Afghan Foreign Minister Rangeen Dadfar Spanta thanked the international community for its help and asked for its continued support . VBG NNP IN NNP , JJ NNP NNP NNP NNP NNP VBD DT JJ NN IN PRP$ NN CC VBD IN PRP$ JJ NN . Japan provides funds for Afghanistan 's rebuilding efforts . NNP VBZ NNS IN NNP POS NN NNS . Last month , Tokyo resumed a naval refueling mission in support of U.S.-led coalition efforts . JJ NN , NNP VBD DT JJ NN NN IN NN IN JJ NN NNS . Afghanistan 's foreign minister met with Japanese Prime Minister Yasuo Fukuda in Tokyo on Monday ahead of the two-day meeting . NNP POS JJ NN VBD IN JJ NNP NNP NNP NNP IN NNP IN NNP RB IN DT JJ NN . During that gathering , Mr. Fukuda said Japan would continue to support Afghanistan 's reconstruction and security . IN DT NN , NNP NNP VBD NNP MD VB TO VB NNP POS NN CC NN . China has reported another flock of bird flu-infected fowl - its ninth outbreak in a month . NNP VBZ VBN DT NN IN NN JJ NN IN PRP$ JJ NN IN DT NN . The latest outbreak killed poultry in Anhui province . DT JJS NN VBD NN IN NNP NN . The announcement came as World Health Organization experts are in China to investigate whether bird flu caused the death of a 12-year-old girl and sickened two other people in Hunan province . DT NN VBD IN NNP NNP NNP NNS VBP IN NNP TO VB IN NN NN VBD DT NN IN DT JJ NN CC VBD CD JJ NNS IN NNP NN . Vietnam also reported new outbreaks of avian flu among birds in four provinces today . NNP RB VBD JJ NNS IN JJ NN IN NNS IN CD NNS NN . The deadly H5N1 strain of the virus has been found in 10 of the country 's 64 provinces and has killed more than 40 people in Vietnam since 2002 . DT JJ NNP NN IN DT NN VBZ VBN VBN IN CD IN DT NN POS CD NNS CC VBZ VBN JJR IN CD NNS IN NNP IN CD . Taiwanese officials are on alert as agriculture officials reported finding a sample of the H7N3 strain of bird flu in droppings left by a migratory bird . JJ NNS VBP IN NN IN NN NNS VBD VBG DT NN IN DT NNP NN IN NN NN IN NNS VBN IN DT JJ NN . The H7 strains are also known to infect humans . DT NNP NNS VBP RB VBN TO VB NNS . U.S. Supreme Court Chief Justice William Rehnquist says he will continue to perform his duties on the nation 's highest court as long as his health permits . NNP NNP NNP NNP NNP NNP NNP VBZ PRP MD VB TO VB PRP$ NNS IN DT NN POS JJS NN RB RB IN PRP$ NN NNS . In a statement issued to the media Thursday , Chief Justice Rehnquist said he is not about to announce his retirement -- and that he wants to put to rest what he called ' speculation and unfounded rumors ' of his imminent retirement . IN DT NN VBN TO DT NNS NNP , NNP NNP NNP VBD PRP VBZ RB IN TO VB PRP$ NN : CC IN PRP VBZ TO VB TO VB WP PRP VBD `` NN CC JJ NNS `` IN PRP$ JJ NN . The chief justice released his statement hours after he was discharged from a hospital outside Washington . DT NN NN VBD PRP$ NN NNS IN PRP VBD VBN IN DT NN IN NNP . Mr. Rehnquist was admitted Tuesday for a fever . NNP NNP VBD VBN NNP IN DT NN . The 80-year-old chief justice has thyroid cancer , and his health has raised questions about how much longer he will be able to serve on the nine-member high court . DT JJ NN NN VBZ VBN NN , CC PRP$ NN VBZ VBN NNS IN WRB RB RBR PRP MD VB JJ TO VB IN DT JJ JJ NN . President Bush is currently considering choices to replace another judge on the court , retiring justice Sandra Day O'Connor . NNP NNP VBZ RB VBG NNS TO VB DT NN IN DT NN , VBG NN NNP NNP NNP . U.S. Secretary of Defense Donald Rumsfeld , who is in Guatemala , has announced Washington will release $ 3.2 million in military aid to the Central American country . NNP NNP IN NNP NNP NNP , WP VBZ IN NNP , VBZ VBN NNP MD VB $ CD CD IN JJ NN TO DT JJ JJ NN . Mr. Rumsfeld made the announcement following a meeting Thursday , with President Oscar Berger . NNP NNP VBD DT NN VBG DT NN NNP , IN NNP NNP NNP . The money is intended for various uses , including assisting in training and modernizing Guatemala 's armed forces . DT NN VBZ VBN IN JJ NNS , VBG VBG IN NN CC VBG NNP POS JJ NNS . Meanwhile , Venezuela 's vice president Jose Vicente Rangel has rebuffed comments made by Mr. Rumsfeld in Brazil Wednesday . RB , NNP POS NN NN NNP NNP NNP VBZ VBN NNS VBN IN NNP NNP IN NNP NNP . The secretary said that he does not understand why Venezuela needed to purchase 1,00,000 AK-47s . DT NN VBD IN PRP VBZ RB VB WRB NNP VBD TO VB CD NNS . Mr. Rumsfeld said they could pose a threat in the region . NNP NNP VBD PRP MD VB DT NN IN DT NN . The vice president says the U.S. defense secretary 's criticisms violate Venezuela 's sovereignty and are part of what he called a ' systematic ' U.S. campaign against President Hugo Chavez 's government . DT NN NN VBZ DT NNP NN NN POS NNS VBP NNP POS NN CC VBP NN IN WP PRP VBD DT `` JJ `` NNP NN IN NNP NNP NNP POS NN . An Army investigator is reported to have recommended seeking the death penalty against four U.S. soldiers accused of murdering Iraqis . DT NNP NN VBZ VBN TO VB VBN VBG DT NN NN IN CD NNP NNS VBN IN VBG NNS . The Associated Press says the recommendation by Colonel James Daniel will be forwarded to Army officials for a final decision . DT NNP NNP VBZ DT NN IN NNP NNP NNP MD VB VBN TO NNP NNS IN DT JJ NN . The news agency says it has obtained a report in which the Colonel concludes the slayings were premeditated and warranted the death penalty , based on evidence he heard at an August hearing . DT NN NN VBZ PRP VBZ VBN DT NN IN WDT DT NNP VBZ DT NNS VBD VBN CC VBN DT NN NN , VBN IN NN PRP VBD IN DT NNP NN . The four soldiers , part of the 101st Airborne division , are accused of killing three Iraqi men during a raid near Samarra on May 9 . DT CD NNS , NN IN DT CD NNP NN , VBP VBN IN VBG CD JJ NNS IN DT NN IN NNP IN NNP CD . The soldiers have denied any wrongdoing , and have said they were following orders to kill all military age Iraqis they encountered on their mission . DT NNS VBP VBN DT NN , CC VBP VBN PRP VBD VBG NNS TO VB DT JJ NN NNS PRP VBD IN PRP$ NN . Their commanding officer denied issuing such an order . PRP$ JJ NN VBD VBG JJ DT NN . U.S. Deputy Secretary of State John Negroponte met with Pakistan 's President Pervez Musharraf at the leader 's official residence in Islamabad Thursday . NNP NNP NNP IN NNP NNP NNP VBD IN NNP POS NNP NNP NNP IN DT NN POS JJ NN IN NNP NNP . Pakistan 's Foreign Ministry said the men discussed bilateral relations , counter-terrorism and regional issues . NNP POS NNP NNP VBD DT NNS VBD JJ NNS , NN CC JJ NNS . The ministry said General Musharraf told Negroponte that the U.S. , particularly the media , needed to better understand Pakistan 's anti-terrorism efforts . DT NN VBD NNP NNP VBD NNP IN DT NNP , RB DT NNS , VBN TO RB VB NNP POS JJ NNS . During this two-day trip to Pakistan , Negroponte has praised Mr. Musharraf 's government as a key ally in the fight against terrorism . IN DT JJ NN TO NNP , NNP VBZ VBN NNP NNP POS NN IN DT JJ NN IN DT NN IN NN . Also Thursday , the U.S. diplomat met with Prime Minister Shaukat Aziz . RB NNP , DT NNP NN VBD IN NNP NNP NNP NNP . Details of their talks are not yet available . NNS IN PRP$ NNS VBP RB RB JJ . Negroponte arrived in Pakistan on Wednesday . NNP VBD IN NNP IN NNP . He is the former director of national intelligence , the head of all U.S. intelligence agencies . PRP VBZ DT JJ NN IN JJ NN , DT NN IN DT NNP NN NNS . He also served as the U.S. ambassador to Iraq in 2004 and 2005 . PRP RB VBD IN DT NNP NN TO NNP IN CD CC CD . Three school children were among at least 13 people killed Wednesday in a series of attacks in the Iraqi capital . CD NN NNS VBD IN IN JJS CD NNS VBN NNP IN DT NN IN NNS IN DT JJ NN . Police say the children were headed to school when they were killed by a roadside bomb in central Baghdad . NNS VBP DT NNS VBD VBN IN NN WRB PRP VBD VBN IN DT NN NN IN JJ NNP . Shootings and three car bombs in Baghdad claimed 10 more lives , including those of six policemen . NNS CC CD NN NNS IN NNP VBD CD JJR NNS , VBG DT IN CD NNS . The U.S. military also announced that U.S. soldiers killed five suspected terrorists in incidents south of Baghdad this week . DT NNP NN RB VBD IN NNP NNS VBD CD JJ NNS IN NNS RB IN NNP DT NN . Meanwhile , the Pentagon has confirmed the authenticity of a set of photographs aired on Australian television of U.S. soldiers abusing prisoners at Iraq 's notorious Abu Ghraib prison . RB , DT NNP VBZ VBN DT NN IN DT NN IN NNS VBN IN JJ NN IN NNP NNS VBG NNS IN NNP POS JJ NNP NNP NN . Defense officials say the photos , which show graphic abuse , were among those investigated after the prison scandal two years ago . NN NNS VBP DT NNS , WDT VBP JJ NN , VBD IN DT VBN IN DT NN NN CD NNS RB . Those photos sparked widespread protests against U.S. presence in Iraq . DT NNS VBD JJ NNS IN NNP NN IN NNP . Iranian Foreign Minister Kamal Kharazi says India 's decision to go ahead with a pipeline project to bring Iranian gas to India via Pakistan will encourage regional peace and trade . JJ NNP NNP NNP NNP VBZ NNP POS NN TO VB RB IN DT NN NN TO VB JJ NN TO NNP IN NNP MD VB JJ NN CC NN . Mr. Kharazi is on a two-day visit to New Delhi and he made the remarks as he met Indian Foreign Minister Natwar Singh and was due to call on Prime Minister Manmohan Singh . NNP NNP VBZ IN DT JJ NN TO NNP NNP CC PRP VBD DT NNS IN PRP VBD JJ NNP NNP NNP NNP CC VBD JJ TO VB IN NNP NNP NNP NNP . He said India 's recent approval of the gas pipeline has created an encouraging atmosphere for pushing ahead this highly important project . PRP VBD NNP POS JJ NN IN DT NN NN VBZ VBN DT JJ NN IN VBG RB DT RB JJ NN . Negotiations on the more than 2,700 kilometer pipeline began in 1994 . NNS IN DT JJR IN CD NN NN VBD IN CD . But strained relations between India and Pakistan held up approval of the project . CC JJ NNS IN NNP CC NNP VBD RP NN IN DT NN . The talks gained momentum after India 's new Congress government came to power last May and pushed forward an ongoing peace process with Pakistan . DT NNS VBD NN IN NNP POS JJ NNP NN VBD TO NN JJ NNP CC VBD RB DT JJ NN NN IN NNP . Russia has handed Poland thousands of new documents on the investigation into the plane crash that killed Polish President Lech Kaczynski in April . NNP VBZ VBN NNP NNS IN JJ NNS IN DT NN IN DT NN NN WDT VBD JJ NNP NNP NNP IN NNP . Russian Deputy Prosecutor General Alexander Zvyagintsev says the documents include witness interviews , photographs and other data from the crash in western Russia . JJ NNP NNP NNP NNP NNP VBZ DT NNS VBP NN NNS , NNS CC JJ NNS IN DT NN IN JJ NNP . The documents were given Thursday to a Polish delegation led by chief military prosecutor Krzysztof Parulski . DT NNS VBD VBN NNP TO DT JJ NN VBN IN JJ JJ NN NNP NNP . Earlier this month , Polish Prime Minister Donald Tusk complained about what he called Russian delays in turning over the evidence , which is crucial to a parallel Polish probe . RBR DT NN , JJ NNP NNP NNP NNP VBD IN WP PRP VBD JJ NNS IN VBG RP DT NN , WDT VBZ JJ TO DT JJ JJ NN . The April 10 crash killed President Kaczynski , his wife and 94 others outside the Russian city of Smolensk . DT NNP CD NN VBD NNP NNP , PRP$ NN CC CD NNS IN DT JJ NN IN NNP . Officials say poor visibility was a major factor in the crash . NNS VBP JJ NN VBD DT JJ NN IN DT NN . But they are also seeking to learn whether President Kaczynski or others pressured the pilots to attempt a landing despite heavy fog . CC PRP VBP RB VBG TO VB IN NNP NNP CC NNS VBD DT NNS TO VB DT NN IN JJ NN . Robert Zoellick is welcomed by an African Union soldier as he arrives in Northern Darfur region 's administrative capital El Fasher U.S. Deputy Secretary of State Robert Zoellick has called on the Sudanese government to accept responsibility for disarming the Arab militias accused of subjecting civilians to rape and other violence . NNP NNP VBZ VBN IN DT NNP NNP NN IN PRP VBZ IN NNP NNP NN POS JJ NN NNP NNP NNP NNP NNP IN NNP NNP NNP VBZ VBN IN DT JJ NN TO VB NN IN VBG DT JJ NNS VBN IN VBG NNS TO NN CC JJ NN . Mr. Zoellick arrived in the war-torn Darfur region Friday to assess the security and humanitarian crisis that has left tens of thousands of people dead and has displaced more than two million others . NNP NNP VBD IN DT JJ NNP NN NNP TO VB DT NN CC JJ NN WDT VBZ VBN NNS IN NNS IN NNS JJ CC VBZ VBN JJR IN CD CD NNS . He is scheduled to meet with Sudanese officials later . PRP VBZ VBN TO VB IN JJ NNS RB . Earlier , the U.S. diplomat met the head of the African Union mission in Sudan Said Djinnit . RB , DT NNP NN VBD DT NN IN DT NNP NNP NN IN NNP NNP NNP . Both agreed that security remains unacceptably low and that an increase in the number of peacekeepers and an expansion of their presence is essential to restoring civility . DT VBD IN NN VBZ RB JJ CC IN DT NN IN DT NN IN NNS CC DT NN IN PRP$ NN VBZ JJ TO VBG NN . A mutilated Afghan woman , who appeared on a recent cover of Time magazine , has arrived in the United States where she will undergo reconstructive surgery . DT JJ JJ NN , WP VBD IN DT JJ NN IN NNP NN , VBZ VBN IN DT NNP NNPS WRB PRP MD VB JJ NN . The 18-year-old , named Aisha , will decide with doctors at the Grossman Burn Foundation in Los Angeles in the U.S. western state of California how to replace her nose , which was sliced off by her abusive husband . DT JJ , VBN NNP , MD VB IN NNS IN DT NNP NNP NNP IN NNP NNP IN DT NNP JJ NN IN NNP WRB TO VB PRP$ NN , WDT VBD VBN RP IN PRP$ JJ NN . Her ears were also hacked off . PRP$ NNS VBD RB VBN RP . Aisha , who has been identified only by her first name , says her nose was cut off as punishment by the Taliban for running away from her abusive husband and in-laws . NNP , WP VBZ VBN VBN RB IN PRP$ JJ NN , VBZ PRP$ NN VBD VBN RP IN NN IN DT NNP IN VBG RB IN PRP$ JJ NN CC NNS . Activists and human rights workers say they are glad Aisha is getting treatment , but note that thousands of other women continue to be victims of domestic violence in Afghanistan . NNS CC JJ NNS NNS VBP PRP VBP JJ NNP VBZ VBG NN , CC VBP IN NNS IN JJ NNS VBP TO VB NNS IN JJ NN IN NNP . U.N. official says Secretary-General Kofi Annan has written a letter to Iran 's new president , Mahmoud Ahmadinejad , demanding the release of a jailed dissident journalist . NNP NN VBZ NNP NNP NNP VBZ VBN DT NN TO NNP POS JJ NN , NNP NNP , VBG DT NN IN DT JJ JJ NN . The official , speaking on condition of anonymity because Iran had not yet received the letter , said Mr. Annan is seeking Akbar Ganji 's immediate release on humanitarian grounds . DT NN , VBG IN NN IN NN IN NNP VBD RB RB VBN DT NN , VBD NNP NNP VBZ VBG NNP NNP POS JJ NN IN JJ NNS . Mr. Ganji was jailed in 2001 , after writing news stories linking public officials to the murders of political dissidents . NNP NNP VBD VBN IN CD , IN VBG NN NNS VBG JJ NNS TO DT NNS IN JJ NNS . Two months ago , he began a hunger strike to protest his imprisonment . CD NNS RB , PRP VBD DT NN NN TO VB PRP$ NN . He remains in government custody at a Tehran hospital and is believed to be in critical condition . PRP VBZ IN NN NN IN DT NNP NN CC VBZ VBN TO VB IN JJ NN . Iranian officials say Mr. Ganji has ended the hunger strike . JJ NNS VBP NNP NNP VBZ VBN DT NN NN . But his wife told VOA she could not confirm the claim because she had been denied access to her husband . CC PRP$ NN VBD NNP PRP MD RB VB DT NN IN PRP VBD VBN VBN NN TO PRP$ NN . German Chancellor Gerhard Schroeder and his Christian Democratic Union challenger , Angela Merkel , are so close together in the latest pre-election polls that they have both vowed to break with tradition and campaign straight through the end of voting on Sunday evening . JJ NNP NNP NNP CC PRP$ NNP NNP NNP NN , NNP NNP , VBP RB JJ RB IN DT JJS NN NNS IN PRP VBP DT VBN TO VB IN NN CC NN RB IN DT NN IN VBG IN NNP NN . Two polls released on Friday indicate a conservative coalition led by Ms. Merkel has a slim majority over a center-left coalition led by Mr. Schroeder . CD NNS VBN IN NNP VBP DT JJ NN VBN IN NNP NNP VBZ DT JJ NN IN DT JJ NN VBN IN NNP NNP . However , 25 percent of those polled say they are still undecided , which makes the race too close to call . RB , CD NN IN DT VBN VBP PRP VBP RB JJ , WDT VBZ DT NN RB JJ TO VB . The conservatives started out the campaign with a large lead , one that has decreased as Mr. Schroeder 's attacks on Ms. Merkel 's economic plan have hit home . DT NNS VBD RP DT NN IN DT JJ NN , CD WDT VBZ VBN IN NNP NNP POS NNS IN NNP NNP POS JJ NN VBP VBN NN . Ms. Merkel has assailed the high unemployment rate in Germany under Mr. Schroeder 's leadership , while Mr. Schroeder says Ms. Merkel 's tax proposals will unravel the country 's social fabric . NNP NNP VBZ VBN DT JJ NN NN IN NNP IN NNP NNP POS NN , IN NNP NNP VBZ NNP NNP POS NN NNS MD VB DT NN POS JJ NN . The head of the Arab League has stressed the Arab world 's ties with Iraq 's Kurds during a visit to the country 's autonomous Kurdish region . DT NN IN DT NNP NNP VBZ VBN DT JJ NN POS NNS IN NNP POS NNS IN DT NN TO DT NN POS JJ JJ NN . Amr Moussa addressed the Kurdish parliament Sunday , telling lawmakers that Kurds are an important part of Iraq and the entire Middle East . NNP NNP VBD DT NNP NN NNP , VBG NNS WDT NNPS VBP DT JJ NN IN NNP CC DT JJ NNP NNP . Mr. Moussa is in Iraq for his first visit since the fall of Saddam Hussein in 2003 . NNP NNP VBZ IN NNP IN PRP$ JJ NN IN DT NN IN NNP NNP IN CD . He has proposed holding a conference to help reconcile Iraq 's Sunni Arab , Shi'ite and Kurdish communities . PRP VBZ VBN VBG DT NN TO VB VB NNP POS NNP NNP , NNP CC NNP NNS . Meanwhile , insurgents killed at least 11 people in attacks across Iraq Sunday . RB , NNS VBD IN JJS CD NNS IN NNS IN NNP NNP . In the deadliest attack , a roadside bomb killed a police officer and his four children in Tikrit . IN DT JJS NN , DT NN NN VBD DT NN NN CC PRP$ CD NNS IN NNP . And the U.S. military says soldiers killed two suspected members of al-Qaida in Iraq and detained 22 others during raids in Mosul and Ramadi . CC DT NNP NN VBZ NNS VBD CD JJ NNS IN NNP IN NNP CC VBD CD NNS IN NNS IN NNP CC NNP . Police in Australia say they have charged eight people with involvement in an illegal Asian World Cup betting ring . NNS IN NNP VBP PRP VBP VBN CD NNS IN NN IN DT JJ NNP NNP NNP VBG NN . New South Wales police said Wednesday they took six men from Hong Kong and two Malaysian women into custody after raiding a hotel in central Sydney . NNP NNP NNP NN VBD NNP PRP VBD CD NNS IN NNP NNP CC CD JJ NNS IN NN IN VBG DT NN IN JJ NNP . Officers from a special South East Asian Crime Squad seized computers , networking equipment , calculators , mobile phones , documents and cash . NNS IN DT JJ NNP NNP NNP NNP NNP VBD NNS , VBG NN , NNS , JJ NNS , NNS CC NN . In a statement , police say the eight were part of an Asian betting operation and that they flew into Australia three days ago . IN DT NN , NNS VBP DT CD VBD NN IN DT JJ VBG NN CC IN PRP VBD IN NNP CD NNS RB . They were charged with unlicensed bookmaking under Australia 's Unlawful Gaming Act and are due to appear in court on July 4 . PRP VBD VBN IN JJ NN IN NNP POS NNP NNP NNP CC VBP JJ TO VB IN NN IN NNP CD . The accused have been turned over to immigration department officials pending their court appearance . DT VBN VBP VBN VBN RP TO NN NN NNS VBG PRP$ NN NN . World oil prices hit a new record high Monday of nearly $ 64 a barrel . NNP NN NNS VBD DT JJ NN JJ NNP IN RB $ CD DT NN . The price of crude oil for future delivery was as high as $ 63.95 a barrel in New York trading . DT NN IN JJ NN IN JJ NN VBD RB JJ IN $ CD DT NN IN NNP NNP NN . Analysts say the rising prices reflect security concerns in the world 's largest oil producer , Saudi Arabia . NNS VBP DT VBG NNS VBP NN NNS IN DT NN POS JJS NN NN , NNP NNP . The United States has temporarily closed its embassy in the Saudi capital , along with some other diplomatic facilities in the country , after threats of terrorist attacks . DT NNP NNPS VBZ RB VBN PRP$ NN IN DT JJ NN , IN IN DT JJ JJ NNS IN DT NN , IN NNS IN JJ NNS . Australia and Britain also warned of possible attacks . NNP CC NNP RB VBD IN JJ NNS . Experts say oil prices also are being pushed upward by problems at refineries . NNS VBP NN NNS RB VBP VBG VBN RB IN NNS IN NNS . Crude oil prices are at least 40 percent higher today than they were one year ago . JJ NN NNS VBP IN JJS CD NN JJR NN IN PRP VBD CD NN RB . Thousands of Buddhist pilgrims gathered at a temple in southern Russia Tuesday to join prayers led by the Dalai Lama , who has been allowed in the country for the first time in more than 12 years . NNS IN NNP NNS VBD IN DT NN IN JJ NNP NNP TO VB NNS VBN IN DT NNP NNP , WP VBZ VBN VBN IN DT NN IN DT JJ NN IN JJR IN CD NNS . The Tibetan spiritual leader was visiting the Khurul Monastery during the second day of this three-day visit to Russia 's Buddhist region of Kalmykia . DT JJ JJ NN VBD VBG DT NNP NNP IN DT JJ NN IN DT JJ NN TO NNP POS NNP NN IN NNP . China has criticized Moscow 's decision to grant the Dalai Lama a visa , saying Beijing does not approve of any country allowing him to engage in what China calls separatist activities . NNP VBZ VBN NNP POS NN TO VB DT NNP NNP DT NN , VBG NNP VBZ RB VB IN DT NN VBG PRP TO VB IN WP NNP VBZ JJ NNS . Russian officials say they issued him a visa with the expectation he would not engage in any political activities . JJ NNS VBP PRP VBD PRP DT NN IN DT NN PRP MD RB VB IN DT JJ NNS . Moscow has rejected visa requests from the Dalai Lama at least three times in the past . NNP VBZ VBN NN NNS IN DT NNP NNP IN JJS CD NNS IN DT NN . The Ukrainian parliament has ousted the government of Prime Minister Yulia Tymoshenko in a no-confidence vote . DT JJ NN VBZ VBN DT NN IN NNP NNP NNP NNP IN DT JJ NN . A majority of 243 lawmakers in the 450-member chamber on Wednesday approved the no-confidence measure brought by the party of Regions led by newly-elected President Viktor Yanukovych . DT NN IN CD NNS IN DT JJ NN IN NNP VBD DT JJ NN VBN IN DT NN IN NNS VBN IN JJ NNP NNP NNP . Mr. Yanukovych defeated Ms. Tymoshenko in a presidential runoff election last month . NNP NNP VBD NNP NNP IN DT JJ NN NN JJ NN . Under Ukraine 's constitution , the Tymoshenko government is automatically required to resign , although it can stay on as a caretaker until a new government is appointed . IN NNP POS NN , DT NNP NN VBZ RB VBN TO VB , IN PRP MD VB IN IN DT NN IN DT JJ NN VBZ VBN . Ms. Tymoshenko earlier indicated she would resign immediately , if the no-confidence measure was approved . NNP NNP RB VBD PRP MD VB RB , IN DT JJ NN VBD VBN . A newly released poll shows Americans may be ready to change the political party in control of Congress . DT RB VBN NN VBZ NNS MD VB JJ TO VB DT JJ NN IN NN IN NNP . An Associated Press / Ipsos poll released Friday found that 49 percent of those surveyed would like to see opposition Democrats in control of Congress while 36 percent favored the ruling Republicans . DT NNP NNP CC NNP NN VBN NNP VBD IN CD NN IN DT VBN MD VB TO VB NN NNS IN NN IN NNP IN CD NN VBD DT NN NNS . Midterm elections will not be held until November . NN NNS MD RB VB VBN IN NNP . Inside the House of Representatives , a petition has begun circulating among Republicans calling for the election of new party leadership . IN DT NNP IN NNP , DT NN VBZ VBN VBG IN NNS VBG IN DT NN IN JJ NN NN . Former House Leader Tom Delay relinquished his leadership position in Congress when he was indicted on money-laundering charges but said he would reclaim the post when he clears himself of the charges . JJ NNP NNP NNP NNP VBD PRP$ NN NN IN NNP WRB PRP VBD VBN IN NN NNS CC VBD PRP MD VB DT NN WRB PRP VBZ PRP IN DT NNS . Republican house members say recent reports of Mr. Delay 's association with a disgraced lobbyist make his timely return to leadership unlikely . JJ NN NNS VBP JJ NNS IN NNP NNP POS NN IN DT JJ NN VB PRP$ JJ NN TO NN JJ . Spain has announced its Davis Cup tennis team that will host the United States in the final next month in Seville . NNP VBZ VBN PRP$ NNP NNP NN NN WDT MD VB DT NNP NNPS IN DT JJ JJ NN IN NNP . The team members are Juan Carlos Ferrero , Carlos Moya , Rafael Nadal and Tommy Robredo , the same players Spain used to beat the Netherlands in the quarterfinal and France in the semifinal . DT NN NNS VBP NNP NNP NNP , NNP NNP , NNP NNP CC NNP NNP , DT JJ NNS NNP VBD TO VB DT NNP IN DT JJ CC NNP IN DT NN . Moya is the highest ranked player on the team at number five . NNP VBZ DT JJS VBN NN IN DT NN IN NN CD . Robredo is next at 13th . NNP VBZ JJ IN NN . The United States announced its team for the final last month , and it will be headed by world number two Andy Roddick . DT NNP NNP VBD PRP$ NN IN DT JJ JJ NN , CC PRP MD VB VBN IN NN NN CD NNP NNP . The Davis Cup final is set for December 03-May . DT NNP NNP JJ VBZ VBN IN NNP CD . The United States has won the cup a record 31 times but this is the first final since 1997 for the Americans , who last took the title in 1995 . DT NNP NNP VBZ VBN DT NN DT NN CD NNS CC DT VBZ DT JJ JJ IN CD IN DT NNS , WP JJ VBD DT NN IN CD . Spain won the Davis Cup in 2000 . NNP VBD DT NNP NNP IN CD . The trial of scores of soldiers and a dozen civilians accused of plotting a series of coups in Mauritania resumed Tuesday , despite a boycott by defense lawyers protesting the arrest of a colleague . DT NN IN NNS IN NNS CC DT NN NNS VBN IN VBG DT NN IN NNS IN NNP VBD NNP , IN DT NN IN NN NNS VBG DT NN IN DT NN . The defense lawyers walked out on Monday after the judge jailed one of them for what he called a lack of discipline . DT NN NNS VBD RP IN NNP IN DT NN VBD CD IN PRP IN WP PRP VBD DT NN IN NN . A handful of suspects were questioned during Tuesday 's proceedings , but all refused to give any answers since their lawyers were absent . DT NN IN NNS VBD VBN IN NNP POS NNS , CC DT VBD TO VB DT NNS IN PRP$ NNS VBD JJ . Those on trial include two opposition leaders and former Mauritanian President Mohamed Khouna Ould Haidallah . DT IN NN VBP CD NN NNS CC JJ NNP NNP NNP NNP NNP NNP . They said they will plead innocent to the charges . PRP VBD PRP MD VB JJ TO DT NNS . There are a total of 181 suspects accused of taking part in successive coup plots against current President Maaouiya Ould Taya since last year . EX VBP DT NN IN CD NNS VBN IN VBG NN IN JJ NN NNS IN JJ NNP NNP NNP NNP IN JJ NN . The United States has launched an advertisement campaign on Pakistani television and radio offering multi-million dollar rewards for information leading to the arrest of Osama bin Laden and 13 other al-Qaida leaders . DT NNP NNPS VBZ VBN DT NN NN IN JJ NN CC NN NN JJ NN NNS IN NN VBG TO DT NN IN NNP NNP NNP CC CD JJ NNP NNS . The brief television commercial which shows pictures of Osama bin Laden and his deputy Ayman al-Zawahiri , offers a $ 25 million reward for each of them and a lesser amount for the others . DT JJ NN NN WDT VBZ NNS IN NNP NNP NNP CC PRP$ NN NNP NNP , VBZ DT $ CD CD NN IN DT IN PRP CC DT JJR NN IN DT NNS . The ad also promises resettlement and witness protection for informants and their families . DT NN RB VBZ NN CC NN NN IN NNS CC PRP$ NNS . A key ally in Washington 's war on terror , Pakistan has already captured about 500 al-Qaida suspects and handed them over to the United States . DT JJ NN IN NNP POS NN IN NN , NNP VBZ RB VBN IN CD NNP NNS CC VBN PRP RP TO DT NNP NNPS . U.S. officials believe bin Laden and other key militants have been hiding along the rugged border between Pakistan and Afghanistan . NNP NNS VBP NNP NNP CC JJ JJ NNS VBP VBN VBG IN DT JJ NN IN NNP CC NNP . U.S. and Russian officials have opened a customs control center in Moscow aimed at improving Russia 's ability to prevent illegal trafficking in nuclear-related materials . NNP CC JJ NNS VBP VBN DT NNS NN NN IN NNP VBN IN VBG NNP POS NN TO VB JJ NN IN JJ NNS . Before the center opened Thursday , customs offices along Russia 's expansive border regions communicated with their Moscow headquarters primarily by telephone . IN DT NN VBD NNP , NNS NNS IN NNP POS JJ NN NNS VBD IN PRP$ NNP NN RB IN NN . The new U.S.-funded center provides electronic data transfer between the outposts and Moscow . DT JJ JJ NN VBZ JJ NNS NN IN DT NNS CC NNP . Russian officials say the customs offices managed to block 200 attempts to take radioactive materials into or out of the country last year . JJ NNS VBP DT NNS NNS VBD TO VB CD NNS TO VB JJ NNS IN CC IN IN DT NN JJ NN . Since 1998 , the United States has spent millions of dollars to assist Russia in preventing trafficking in nuclear materials and equipment . IN CD , DT NNP NNPS VBZ VBN NNS IN NNS TO VB NNP IN VBG NN IN JJ NNS CC NN . Afghan military officials say a suspected bomb has exploded among fuel tankers outside the main base for the U.S.-led coalition force in southern Afghanistan . JJ JJ NNS VBP DT JJ NN VBZ VBN IN NN NNS IN DT JJ NN IN DT JJ NN NN IN JJ NNP . The officials say two fuel tankers exploded outside the base near Kandahar city early Friday , setting fire to eight others . DT NNS VBP CD NN NNS VBD IN DT NN IN NNP NN RB NNP , VBG NN TO CD NNS . It was not immediately clear if there were any casualties . PRP VBD RB RB JJ IN EX VBD DT NNS . The blast came amid a major surge in violence by Taleban-led rebels that has left more than 1,400 dead in the past six months and raised concern for Afghanistan 's fragile democracy . DT NN VBD IN DT JJ NN IN NN IN JJ NNS WDT VBZ VBN JJR IN CD NN IN DT JJ CD NNS CC VBD NN IN NNP POS JJ NN . Violence has risen sharply in and around Kandahar , a former Taleban stronghold , with four suicide bombings in recent weeks and five medical aid workers killed Wednesday as they were returning to the city after treating people at a nearby refugee camp . NN VBZ VBN RB IN CC IN NNP , DT JJ NNP NN , IN CD NN NNS IN JJ NNS CC CD JJ NN NNS VBD NNP IN PRP VBD VBG TO DT NN IN VBG NNS IN DT JJ NN NN . Russian environmental officials have detected an increase in the level of cancer-causing benzene in the Amur River , but they said it is not clear if it is from the November 13 Chinese chemical spill . JJ JJ NNS VBP VBN DT NN IN DT NN IN JJ NN IN DT NNP NNP , CC PRP VBD PRP VBZ RB JJ IN PRP VBZ IN DT NNP CD JJ NN NN . Officials in Russia 's far east said it could take several more days before the worst of the spill reaches Russian territory . NNS IN NNP POS JJ NN VBD PRP MD VB JJ JJR NNS IN DT JJS IN DT NN VBZ JJ NN . Also Wednesday , scientists with the non-profit World Wildlife Fund rejected claims that the toxic slick poses less of a threat as it becomes diluted . RB NNP , NNS IN DT JJ NNP NNP NNP VBD NNS IN DT JJ NN VBZ JJR IN DT NN IN PRP VBZ VBN . They said the full extent of the damage may not be understood until well after the spring thaw , when melting ice frees trapped chemicals . PRP VBD DT JJ NN IN DT NN MD RB VB VBN IN RB IN DT NN NN , WRB VBG NN VBZ JJ NNS . An explosion at a Chinese factory two weeks ago released some 100 tons of cancer-causing agents . DT NN IN DT JJ NN CD NNS RB VBD DT CD NNS IN JJ NNS . They are now flowing down China 's Songhua River towards Russia , forcing cities to shut down water systems over contamination fears . PRP VBP RB VBG RP NNP POS NNP NNP IN NNP , VBG NNS TO VB RP NN NNS IN NN NNS . Cuba and Brazil have remembered Palestinian leader Yasser Arafat with praise and have restated their support for his dream of a Palestinian state . NNP CC NNP VBP VBN JJ NN NNP NNP IN NN CC VBP VBN PRP$ NN IN PRP$ NN IN DT JJ NN . Cuban President Fidel Castro Thursday declared three days of official mourning for Mr. Arafat , saying the pain of the Palestinian leader 's loss was Cuba 's pain . JJ NNP NNP NNP NNP VBD CD NNS IN JJ NN IN NNP NNP , VBG DT NN IN DT JJ NN POS NN VBD NNP POS NN . In a commentary , Cuba 's Communist Party newspaper , Granma , called Mr. Arafat one of the ' firmest , most prestigious and tireless fighters for the Arab cause . ' IN DT NN , NNP POS NNP NNP NN , NNP , VBD NNP NNP CD IN DT `` JJS , RBS JJ CC JJ NNS IN DT JJ NN . `` It called his life a struggle for liberation , the defense of his people 's rights , and a sovereign and independent Palestine . PRP VBD PRP$ NN DT NN IN NN , DT NN IN PRP$ NNS POS NNS , CC DT NN CC JJ NN . In Brazil , President Luiz Inacio Lula da Silva called Mr. Arafat a historic leader and sent his condolences . IN NNP , NNP NNP NNP NNP NNP NNP VBD NNP NNP DT JJ NN CC VBD PRP$ NNS . He called for peace in the Middle East and a free and sovereign Palestinian state . PRP VBD IN NN IN DT NNP NNP CC DT JJ CC JJ JJ NN . Venezuela 's president is urging President Bush to use his second term in office to strengthen ties with Latin American nations . NNP POS NN VBZ VBG NNP NNP TO VB PRP$ JJ NN IN NN TO VB NNS IN JJ JJ NNS . President Hugo Chavez says he hopes President Bush 's foreign policy agenda will include efforts aimed at repairing strained relations with Venezuela . NNP NNP NNP VBZ PRP VBZ NNP NNP POS JJ NN NN MD VB NNS VBN IN VBG JJ NNS IN NNP . The statement comes as President Chavez arrived in Santo Domingo Saturday for a meeting with Dominican President Leonel Fernandez . DT NN VBZ IN NNP NNP VBD IN NNP NNP NNP IN DT NN IN JJ NNP NNP NNP . The relationship between Venezuela and the U.S. has been troubled since 2002 , when Washington endorsed a coup that briefly ousted President Chavez from office . DT NN IN NNP CC DT NNP VBZ VBN VBN IN CD , WRB NNP VBD DT NN WDT RB VBD NNP NNP IN NN . The Associated Press quotes the Dominican President as saying his country is willing to serve if it can be helpful in mediating a return to good relations between Venezuela and the U.S. DT NNP NNP VBZ DT JJ NNP IN VBG PRP$ NN VBZ JJ TO VB IN PRP MD VB JJ IN VBG DT NN TO JJ NNS IN NNP CC DT NNP Venezuela and Cuba have signed 16 new cooperation agreements , including accords on telecommunications , tourism and the economy . NNP CC NNP VBP VBN CD JJ NN NNS , VBG NNS IN NNS , NN CC DT NN . The agreements were signed in Caracas Wednesday by Venezuelan President Hugo Chavez and Cuban Vice President Carlos Lage . DT NNS VBD VBN IN NNP NNP IN JJ NNP NNP NNP CC JJ NNP NNP NNP NNP . During a news conference with Lage , Mr. Chavez said his ailing friend , Cuban leader Fidel Castro , is recovering following intestinal surgery last year and has been up and walking around . IN DT NN NN IN NNP , NNP NNP VBD PRP$ JJ NN , JJ NN NNP NNP , VBZ VBG VBG JJ NN JJ NN CC VBZ VBN RP CC VBG RB . The Venezuelan president showed a letter that Mr. Chavez said was signed by Mr. Castro . DT JJ NN VBD DT NN IN NNP NNP VBD VBD VBN IN NNP NNP . Last week , Mr. Chavez said Mr. Castro was in a battle for his life . JJ NN , NNP NNP VBD NNP NNP VBD IN DT NN IN PRP$ NN . The Cuban government treats Mr. Castro 's health as a state secret . DT JJ NN VBZ NNP NNP POS NN IN DT NN NN . Mr. Castro has not been seen in public since late July when he underwent surgery . NNP NNP VBZ RB VBN VBN IN JJ IN JJ NNP WRB PRP VBD NN . At the time , he temporarily handed power to his younger brother , Defense Minister Raul Castro . IN DT NN , PRP RB VBD NN TO PRP$ JJR NN , NNP NNP NNP NNP . Two senior U.S. envoys have delayed a trip to the Middle East this week after Israeli Prime Minster Ariel Sharon suffered a major stroke . CD JJ NNP NNS VBP VBN DT NN TO DT NNP NNP DT NN IN JJ NNP NNP NNP NNP VBD DT JJ NN . A State Department spokesman said the trip , set to begin Thursday , would be rescheduled . DT NNP NNP NN VBD DT NN , VBN TO VB NNP , MD VB VBN . The envoys were to meet with Israeli and Palestinian officials in an effort to prevent delays in Palestinian legislative elections set for January 25 . DT NNS VBD TO VB IN JJ CC JJ NNS IN DT NN TO VB NNS IN JJ JJ NNS VBN IN NNP CD . Palestinian leader Mahmoud Abbas has said he may postpone the vote if Israel makes good on a threat to block voting in East Jerusalem . JJ NN NNP NNP VBZ VBN PRP MD VB DT NN IN NNP VBZ JJ IN DT NN TO VB NN IN NNP NNP . Thursday , Mr. Abbas expressed concern for Mr. Sharon 's medical condition , but said it would not affect the election . NNP , NNP NNP VBD NN IN NNP NNP POS JJ NN , CC VBD PRP MD RB VB DT NN . In Jerusalem , Israel 's acting Prime Minister Ehud Olmert said the Israeli government is fully operational . IN NNP , NNP POS VBG NNP NNP NNP NNP VBD DT JJ NN VBZ RB JJ . Officials said Israeli elections set for March 28 will be held as scheduled . NNS VBD JJ NNS VBN IN NNP CD MD VB VBN IN VBN . Afghan officials say a roadside bomb killed six civilians and wounded nine others Sunday in southern Kandahar province . JJ NNS VBP DT NN NN VBD CD NNS CC VBD CD NNS NNP IN JJ NNP NN . There has been no claim of responsibility for the bombing . EX VBZ VBN DT NN IN NN IN DT NN . Roadside bombs are a favorite weapon of Taliban insurgents in their campaign against foreign forces and the Afghan government , but civilians often fall prey to the explosions . NNP NNS VBP DT JJ NN IN NNP NNS IN PRP$ NN IN JJ NNS CC DT JJ NN , CC NNS RB VBP NN TO DT NNS . U.S. and NATO commanders have warned of an increase in violence as international and Afghan forces work to clear the south of Taliban insurgents . NNP CC NNP NNS VBP VBN IN DT NN IN NN IN JJ CC JJ NNS VBP TO VB DT NN IN NNP NNS . In other developments Sunday , the Dutch are scheduled to withdraw the last of their 1,600-member force from Afghanistan . IN JJ NNS NNP , DT NNS VBP VBN TO VB DT NN IN PRP$ JJ NN IN NNP . And in the Afghan capital , Kabul , hundreds of demonstrators protested the killing of 52 civilians in a NATO rocket strike . CC IN DT JJ NN , NNP , NNS IN NNS VBD DT NN IN CD NNS IN DT NNP NN NN . NATO disputes the report of civilian deaths in the Helmand province attack . NNP VBZ DT NN IN JJ NNS IN DT NNP NN NN . Vice President Dick Cheney says the Bush administration will continue ' full speed ahead ' with its Iraq war policy , no matter which party takes control of U.S. Congress in Tuesday 's elections . NNP NNP NNP NNP VBZ DT NNP NN MD VB `` JJ NN RB `` IN PRP$ NNP NN NN , DT NN WDT NN VBZ NN IN NNP NNP IN NNP POS NNS . In a television interview to be aired Sunday , Cheney acknowledges the conflict is not popular with the American public , but says the administration is doing what it thinks is right . IN DT NN NN TO VB VBN NNP , NNP VBZ DT NN VBZ RB JJ IN DT JJ NN , CC VBZ DT NN VBZ VBG WP PRP VBZ VBZ RB . Recent polls suggest the opposition Democratic Party is poised to take control of the House of Representatives , and possibly the Senate . JJ NNS VBP DT NN NNP NNP VBZ VBN TO VB NN IN DT NNP IN NNPS , CC RB DT NNP . The vice president repeated the administration 's assertion that Democrats do not have a concrete plan on Iraq . DT NN NN VBD DT NN POS NN IN NNPS VBP RB VB DT JJ NN IN NNP . He also says the opposition will not extend the tax cuts President Bush successfully pushed through Congress in 2001 . PRP RB VBZ DT NN MD RB VB DT NN NNS NNP NNP RB VBD IN NNP IN CD . Police in Istanbul have arrested 63 people taking part in a demonstration ahead of International Women 's Day . NNS IN NNP VBP VBN CD NNS VBG NN IN DT NN RB IN NNP NNP POS NN . A crowd of 150 people had gathered in front of the mayor 's office in an early observance of the March 8 celebration . DT NN IN CD NNS VBD VBN IN NN IN DT NN POS NN IN DT JJ NN IN DT NNP CD NN . Police ordered them to disperse , saying their rally was illegal . NNS VBD PRP TO VB , VBG PRP$ NN VBD JJ . The protesters refused , and continued to chant slogans . DT NNS VBD , CC VBD TO VB NNS . Television footage showed police using pepper spray and truncheons to break up the demonstration . NNP NN VBD NNS VBG NN NN CC NNS TO VB RP DT NN . Many in the crowd dispersed , fleeing into side streets . NN IN DT NN VBD , VBG IN NN NNS . Authorities say demonstrators broke the windows of a police vehicle in the process . NNS VBP NNS VBD DT NNS IN DT NN NN IN DT NN . Police also broke up a second demonstration of about 250 people in the Beyazit district . NNS RB VBD RP DT JJ NN IN IN CD NNS IN DT NNP NN . There were no reports of arrest . EX VBD DT NNS IN NN . Egyptian President Hosni Mubarak held separate talks in Cairo Sunday with Israeli and Palestinian leaders , as well as the US Middle East peace envoy . JJ NNP NNP NNP VBD JJ NNS IN NNP NNP IN JJ CC JJ NNS , RB RB IN DT NNP NNP NNP NN NN . Sunday 's meetings focused on ways to encourage the two sides to return to direct negotiations . NNP POS NNS VBD IN NNS TO VB DT CD NNS TO VB TO JJ NNS . The Associated Press quotes Egyptian Foreign Minister Ahmed Aboul Gheit as saying the basis to move from indirect to direct talks is still ' lacking . ' DT NNP NNP VBZ JJ NNP NNP NNP NNP NNP IN VBG DT NN TO VB IN JJ TO JJ NNS VBZ RB `` VBG . `` Palestinian President Mahmoud Abbas has said he wo n't negotiate directly with Israel until there is progress on issues including borders , security and Israeli settlement construction . JJ NNP NNP NNP VBZ VBN PRP MD RB VB RB IN NNP IN EX VBZ NN IN NNS VBG NNS , NN CC JJ NN NN . Israeli Prime Minister Benjamin Netanyahu says he wants to move to direct talks . JJ NNP NNP NNP NNP VBZ PRP VBZ TO VB TO JJ NNS . US envoy George Mitchell has been in the region for indirect talks with both Mr. Netanyahu and Mr. Abbas . NNP NN NNP NNP VBZ VBN IN DT NN IN JJ NNS IN DT NNP NNP CC NNP NNP . The head of China 's environmental protection agency has resigned following a chemical spill that polluted a major river and forced the shutdown of water supplies in parts of the country 's northeast . DT NN IN NNP POS JJ NN NN VBZ VBN VBG DT NN NN WDT VBD DT JJ NN CC VBD DT NN IN NN NNS IN NNS IN DT NN POS NN . The official Xinhua news agency reported the resignation Friday , but did not provide details . DT JJ NNP NN NN VBD DT NN NNP , CC VBD RB VB NNS . Meanwhile , China 's foreign ministry says it is sending Russia 150 tons of activated charcoal to help filter pollution from the toxic chemical slick moving along the Amur river toward the Russian city of Khabarovsk . RB , NNP POS JJ NN VBZ PRP VBZ VBG NNP CD NNS IN VBN NN TO VB VB NN IN DT JJ NN NN VBG IN DT NNP NN IN DT JJ NN IN NNP . Earlier this week , Russian environmental officials reported higher levels of benzene in the river , but said it is not clear if the toxic chemical is from the massive spill in China two weeks ago . RBR DT NN , JJ JJ NNS VBD JJR NNS IN NN IN DT NN , CC VBD PRP VBZ RB JJ IN DT JJ NN VBZ IN DT JJ NN IN NNP CD NNS RB . A November 13 explosion at a factory dumped 100 tons of poisonous chemicals into China 's Songhua river . DT NNP CD NN IN DT NN VBD CD NNS IN JJ NNS IN NNP POS NNP NN . The environmental group Worldwide Fund for Nature is warning that illegal fishing is driving the bluefin tuna in the Mediterranean and East Atlantic to extinction . DT JJ NN NNP NNP IN NNP VBZ VBG IN JJ NN VBZ VBG DT NN NN IN DT NNP CC NNP NNP TO VB . The WWF says in a new report that annual fishing quotas for the bluefin are exceeded by more than 40 percent . DT NNP VBZ IN DT JJ NN IN JJ NN NNS IN DT NN VBP VBN IN JJR IN CD NN . It calls the European Union , Libyan , and Turkish fishing fleets the biggest offenders . PRP VBZ DT NNP NNP , JJ , CC JJ NN VBZ DT JJS NNS . The report says some unreported bluefin catches are quickly processed at sea before being shipped to Japan , where the fish is one of the most popular portions of sushi dinners . DT NN VBZ DT JJ NN NNS VBP RB VBN IN NN IN VBG VBN TO NNP , WRB DT NN VBZ CD IN DT RBS JJ NNS IN NN NNS . The WWF is urging European officials to call for an immediate halt to Atlantic bluefin fishing to give the species time to recover . DT NNP VBZ VBG JJ NNS TO VB IN DT JJ NN TO NNP JJ NN TO VB DT NNS NN TO VB . It says it will call for a consumer boycott in the United States and Japan if no action is taken . PRP VBZ PRP MD VB IN DT NN NN IN DT NNP NNPS CC NNP IN DT NN VBZ VBN . Palestinian medical officials say an Israeli airstrike has killed two Palestinian militants in the northern Gaza Strip . JJ JJ NNS VBP DT JJ NN VBZ VBN CD JJ NNS IN DT JJ NNP NNP . The Israeli military has confirmed the attack , saying its helicopter targeted two men who were firing rockets across the border into Israeli territory . DT JJ NN VBZ VBN DT NN , VBG PRP$ NN VBD CD NNS WP VBD VBG NNS IN DT NN IN JJ NN . The Islamic Jihad militant group claimed responsibility . DT NNP NNP JJ NN VBD NN . The airstrike was launched after rockets fired from northern Gaza exploded in the Israeli town of Sderot . DT NN VBD VBN IN NNS VBD IN JJ NNP VBD IN DT JJ NN IN NNP . One Israeli was wounded . CD NN VBD VBN . Earlier Sunday , Israeli soldiers shot and killed two Hamas gunmen in northern Gaza . RBR NNP , JJ NNS VBD CC VBD CD NNP NNS IN JJ NNP . The Israeli army confirmed that its troops shot two Palestinians who approached the border fence . DT JJ NN VBD IN PRP$ NNS VBD CD NNS WP VBD DT NN NN . Israeli troops often shoot at Palestinians who approach the fence in an effort to prevent infiltrations by militants . JJ NNS RB VBP IN NNS WP VBP DT NN IN DT NN TO VB NNS IN NNS . Israel also conducts raids into Gaza to stop militants from launching rockets into Israel . NNP RB VBZ NNS IN NNP TO VB NNS IN VBG NNS IN NNP . Afghan and NATO forces have killed 20 Taleban militants during fighting in southern Afghanistan . JJ CC NNP NNS VBP VBN CD NNP NNS IN VBG IN JJ NNP . A local police chief says the clash occurred late Wednesday in the Shah Wali Kot district of Kandahar province . DT JJ NN NN VBZ DT NN VBD JJ NNP IN DT NNP NNP NNP NN IN NNP NN . The police chief says three of the 20 Taleban fighters ' bodies were found . DT NN NN VBZ CD IN DT CD NNP NNS POS NNS VBD VBN . Authorities say there were no injuries among Afghan or NATO forces . NNS VBP EX VBD DT NNS IN JJ CC NNP NNS . Militant attacks have soared in recent months in Afghanistan . JJ NNS VBP VBN IN JJ NNS IN NNP . More than 3,000 people have been killed this year as Afghan , NATO and U.S. forces battle Taleban fighters . JJR IN CD NNS VBP VBN VBN DT NN IN JJ , NNP CC NNP NNS VBP NNP NNS . President Bush has called on the U.S. Congress to pass a defense spending bill before it goes on recess next month . NNP NNP VBZ VBN IN DT NNP NNP TO VB DT NN NN NN IN PRP VBZ IN NN JJ NN . Mr. Bush made the comment Thursday at the annual meeting of the American Legislative Exchange Council ( ALEC ) . NNP NNP VBD DT NN NNP IN DT JJ NN IN DT NNP NNP NNP NNP LRB NNP RRB . The organization is made up of state lawmakers who draft ' model legislation . ' DT NN VBZ VBN IN IN NN NNS WP VB `` NN NN . `` During his speech , the president said Congress has been ' dragging its feet ' in getting 12 spending bills to him , including the defense bill . IN PRP$ NN , DT NN VBD NNP VBZ VBN `` VBG PRP$ NNS `` IN VBG CD NN NNS TO PRP , VBG DT NN NN . On the economy , Mr. Bush stressed the need to keep taxes low , which he said has yielded a strong economy . IN DT NN , NNP NNP VBD DT NN TO VB NNS JJ , WDT PRP VBD VBZ VBN DT JJ NN . On education , the president said Congress needs to reauthorize his ' No Child Left Behind ' legislation in order to close what he called an ' achievement gap ' in America . IN NN , DT NN VBD NNP VBZ TO VB PRP$ `` DT NN VBD IN `` NN IN NN TO VB WP PRP VBD DT `` NN NN `` IN NNP . Mr. Bush concluded his speech by speaking of securing the United States from terrorists . NNP NNP VBD PRP$ NN IN NN IN VBG DT NNP NNPS IN NNS . A U.S.-based rights group says Chinese authorities arrested two elderly Roman Catholic priests in the days before the death of Pope John Paul . DT JJ NNS NN VBZ JJ NNS VBN CD JJ NNP NNP VBZ IN DT NNS IN DT NN IN NNP NNP NNP . The Cardinal Kung Foundation , which supports the underground Catholic Church in China , said in a press release Sunday that authorities detained Bishop Yao Liang last Thursday . DT NNP NNP NNP , WDT VBZ DT JJ NNP NNP IN NNP , VBD IN DT NN NN NNP IN NNS VBD NNP NNP NNP JJ NNP . The foundation said that before his arrest , Bishop Yao , who is in his eighties , had been under mounting pressure from authorities to sever ties with the pope and join China 's official Catholic Church . DT NN VBD IN IN PRP$ NN , NNP NNP , WP VBZ IN PRP$ NNS , VBD VBN IN VBG NN IN NNS TO VB NNS IN DT NN CC VB NNP POS JJ NNP NNP . The statement said that on Friday , Father Wang Jinling , also in his eighties , was arrested too . DT NN VBD IN IN NNP , NNP NNP NNP , RB IN PRP$ NNS , VBD VBN RB . The foundation said it does not know why he was detained or where he is being kept . DT NN VBD PRP VBZ RB VB WRB PRP VBD VBN CC WRB PRP VBZ VBG VBN . Officials in Afghanistan say the commander of a pro-government militia force has been killed by a roadside bomb in an attack blamed on Taleban insurgents . NNS IN NNP VBP DT NN IN DT JJ NN NN VBZ VBN VBN IN DT NN NN IN DT NN VBN IN NNP NNS . Officials say the commander was killed Friday , when his car was hit by the blast in southern Helmand province . NNS VBP DT NN VBD VBN NNP , WRB PRP$ NN VBD VBN IN DT NN IN JJ NNP NN . Reuters news agency identifies the victim as Shadi Khan -- the former chief of Deshu district police . NNP NN NN VBZ DT NN IN NNP NNP IN DT JJ NN IN NNP NN NN . Hours earlier , a government official was killed in an ambush in neighboring Zabul province . NNS RB , DT NN NN VBD VBN IN DT NN IN JJ NNP NN . Violence has spiraled in recent weeks after a winter lull in fighting , with repeated attacks on Afghan security forces and U.S.-led coalition troops . NN VBZ VBN IN JJ NNS IN DT NN NN IN NN , IN JJ NNS IN JJ NN NNS CC JJ NN NNS . Taleban fighters have been waging an insurgency since U.S.-led forces ousted the hard-line Afghan government in the aftermath of the September 11 , 2001 attacks on the United States . NNP NNS VBP VBN VBG DT NN IN JJ NNS VBD DT JJ JJ NN IN DT NN IN DT NNP CD , CD NNS IN DT NNP NNPS . Kosovo 's delegation for possible talks on the future of the United Nations-run province has met for the first time and stressed it would seek independence for the largely ethnic-Albanian region . NNP POS NN IN JJ NNS IN DT NN IN DT NNP NNP NN VBZ VBN IN DT JJ NN CC VBD PRP MD VB NN IN DT RB JJ NN . After the meeting , Kosovo President Ibrahim Rugova said seeking unification of Kosovo with Albania would create more problems . IN DT NN , NNP NNP NNP NNP VBD VBG NN IN NNP IN NNP MD VB JJR NNS . He says an independent Kosovo is the best solution for the Balkans . PRP VBZ DT JJ NNP VBZ DT JJS NN IN DT NNPS . U.N. Secretary-General Kofi Annan Wednesday said he will soon decide whether to start the Kosovo talks . NNP NNP NNP NNP NNP VBD PRP MD RB VB IN TO VB DT NNP NNS . Kosovo is officially part of Serbia , and authorities in Belgrade oppose any change in that status . NNP VBZ RB NN IN NNP , CC NNS IN NNP VBP DT NN IN DT NN . Meanwhile , the International Committee of the Red Cross says Kosovo and Serbian authorities have identified the remains of 200 more people unaccounted for since the conflict of the late 1990s and returned them to their families in the past few months . RB , DT NNP NNP IN DT NNP NNP VBZ NNP CC JJ NNS VBP VBN DT NNS IN CD JJR NNS JJ IN IN DT NN IN DT JJ NNS CC VBD PRP TO PRP$ NNS IN DT JJ JJ NNS . But it says there is no word on the fate of additional 2,500 . CC PRP VBZ EX VBZ DT NN IN DT NN IN JJ CD . A man described as an Israeli army deserter shot and killed four people near a northern Israeli-Arab town , but was then killed by a huge mob of angry townspeople . DT NN VBN IN DT JJ NN NN VBD CC VBD CD NNS IN DT JJ NNP NN , CC VBD RB VBN IN DT JJ NN IN JJ NN . Israeli media quote witnesses as saying the mob killing came shortly after the Israeli opened fire aboard a bus Thursday afternoon near the Israeli-Arab town of Shfaram . JJ NNS VBP NNS IN VBG DT NN NN VBD RB IN DT NNS VBD NN IN DT NN NNP NN IN DT JJ NN IN NNP . Witnesses say two girls and the bus driver were among the dead . NNS VBP CD NNS CC DT NN NN VBD IN DT NN . At least 12 others were wounded before locals stormed the bus and killed the gunman . IN JJS CD NNS VBD VBN IN NNS VBD DT NN CC VBD DT NN . He was identified as a religious deserter from the army who refused to take part in the upcoming Israeli pullout of the Gaza Strip . PRP VBD VBN IN DT JJ NN IN DT NN WP VBD TO VB NN IN DT JJ JJ NN IN DT NNP NNP . Israeli news reports say the shooter was a member of the outlawed extremist Kach party . JJ NN NNS VBP DT NN VBD DT NN IN DT JJ NN NNP NN . Spanish police have arrested four Moroccans suspected of having direct links to last year 's Madrid commuter train bombings that killed 191 people . JJ NNS VBP VBN CD NNS VBN IN VBG JJ NNS TO JJ NN POS NNP NN NN NNS WDT VBD CD NNS . An Interior Ministry statement says police detained the four Tuesday in a Madrid suburb . DT NNP NNP NN VBZ NNS VBD DT CD NNP IN DT NNP NN . It says the four , all members of the same family , are believed to have ties to Morocco 's Islamic Combat Group , an al-Qaida-linked movement blamed for bombing attacks in November 2003 , in Casablanca , Morocco , that killed 45 people . PRP VBZ DT CD , DT NNS IN DT JJ NN , VBP VBN TO VB NNS TO NNP POS NNP NNP NNP , DT JJ NN VBN IN VBG NNS IN NNP CD , IN NNP , NNP , WDT VBD CD NNS . Police also say they issued an international arrest warrant for another Moroccan , Youssef Belhadj , who currently lives in Belgium . NNS RB VBP PRP VBD DT JJ NN NN IN DT NN , NNP NNP , WP RB VBZ IN NNP . Spanish authorities say they believe the suspect appeared on a videotape claiming that al-Qaida had carried out the attacks on four Madrid commuter trains , which also wounded about 1,900 people . JJ NNS VBP PRP VBP DT NN VBD IN DT NN VBG IN NNP VBD VBN IN DT NNS IN CD NNP NN NNS , WDT RB VBD IN CD NNS . Russia 's embattled oil giant Yukos says a Moscow court has frozen the company 's stake in the Sibneft oil firm . NNP POS JJ NN NN NNP VBZ DT NNP NN VBZ VBN DT NN POS NN IN DT NNP NN NN . The business daily Vedomosti says the action could pave the way for the 34.5 percent stake to be seized if authorities prove it was acquired with illegal funds . DT NN RB NNP VBZ DT NN MD VB DT NN IN DT CD NN NN TO VB VBN IN NNS VBP PRP VBD VBN IN JJ NNS . Yukos was to merge with Sibneft , but that deal was called off following the arrest last year of then-Yukos chief Mikhail Khodorkovsky . NNP VBD TO VB IN NNP , CC DT NN VBD VBN RP VBG DT NN JJ NN IN JJ NN NNP NNP . Mr. Khodorkovsky has remained in prison and is currently on trial for tax evasion and fraud . NNP NNP VBZ VBN IN NN CC VBZ RB IN NN IN NN NN CC NN . Meanwhile , Yukos is struggling to pay billions of dollars in back taxes . RB , NNP VBZ VBG TO VB NNS IN NNS IN JJ NNS . Critics say the extensive probe is politically motivated because Mr. Khodorkovsky was a supporter of the political opposition . NNS VBP DT JJ NN VBZ RB JJ IN NNP NNP VBD DT NN IN DT JJ NN . The Kremlin insists the actions are part of a crackdown on corruption . DT NNP VBZ DT NNS VBP NN IN DT NN IN NN . Several civilians - including children - have died in separate violent incidents in Afghanistan . JJ NNS : VBG NNS : VBP VBN IN JJ JJ NNS IN NNP . In southern Helmand province , a suicide bomber Friday detonated explosives near a military compound in Sangin town , killing two children . IN JJ NNP NN , DT NN NN NNP VBD NNS IN DT JJ NN IN NNP NN , VBG CD NNS . Also Friday , the U.S. military said that several other civilians were killed during a battle between Taleban insurgents and Afghan troops backed by U.S.-led coalition forces in the southeast . RB NNP , DT NNP NN VBD IN JJ JJ NNS VBD VBN IN DT NN IN NNP NNS CC JJ NNS VBN IN JJ NN NNS IN DT NN . The joint force came under attack during a raid on compounds suspected of housing militants in Paktika province . DT JJ NN VBD IN NN IN DT NN IN NNS VBN IN NN NNS IN NNP NN . The U.S. military says that several Taleban fighters also died . DT NNP NN VBZ IN JJ NNP NNS RB VBD . Afghan leaders have repeatedly called on the nearly 50,000 foreign troops in Afghanistan to avoid causing civilian deaths . JJ NNS VBP RB VBN IN DT RB CD JJ NNS IN NNP TO VB VBG JJ NNS . The U.S.-led coalition and NATO-led forces have blamed the Taleban for launching attacks from within civilian compounds and from populated areas . DT JJ NN CC JJ NNS VBP VBN DT NNP IN VBG NNS IN IN JJ NNS CC IN JJ NNS . Afghanistan is going through its worst period of violence since a U.S.-led invasion in 2001 ousted the Taleban government . NNP VBZ VBG IN PRP$ JJS NN IN NN IN DT JJ NN IN CD VBD DT NNP NN . Chad 's government is extending emergency measures by six months in an effort to quell ethnic conflicts in the country 's east . NNP POS NN VBZ VBG NN NNS IN CD NNS IN DT NN TO VB JJ NNS IN DT NN POS NN . Prime Minister Pascal Yoadimnadji told lawmakers that more time is needed to restore peace and reconciliation . NNP NNP NNP NNP VBD NNS IN JJR NN VBZ VBN TO VB NN CC NN . He also accused the government in neighboring Sudan of fueling the conflict . PRP RB VBD DT NN IN VBG NNP IN VBG DT NN . Sudan denies the claim . NNP VBZ DT NN . Chad first declared a state of emergency last week , because of fighting between ethnic Arab and ethnic African communities . NNP RB VBD DT NN IN NN JJ NN , IN IN VBG IN JJ JJ CC JJ JJ NNS . Officials say 400 people have died in recent attacks , and thousands of others have fled their homes . NNS VBP CD NNS VBP VBN IN JJ NNS , CC NNS IN NNS VBP VBN PRP$ NNS . United Nations officials say Chadian villagers described being attacked by Arab nomads from Chad and western Sudan . NNP NNP NNS VBP JJ NNS VBD VBG VBN IN JJ NNS IN NNP CC JJ NNP . U.N. officials and aid workers say they fear the conflict in Sudan 's Darfur region between rebels and pro-government forces is spreading to Chad . NNP NNS CC NN NNS VBP PRP VBP DT NN IN NNP POS NNP NN IN NNS CC JJ NNS VBZ VBG TO NNP . An Iraqi member of al-Qaida has confessed to killing a Jordanian taxi driver and kidnapping two employees of Morocco 's embassy in Baghdad . DT JJ NN IN NNP VBZ VBN TO VBG DT JJ NN NN CC VBG CD NNS IN NNP POS NN IN NNP . The confession of Ziyad Khalaf Karbouli was broadcast Tuesday on Jordanian state TV . DT NN IN NNP NNP NNP VBD VBN NNP IN JJ NN NN . Jordanian TV says Karbouli worked as a customs agent on the Iraqi side of the border with Jordan . JJ NNP VBZ NNP VBD IN DT NNS NN IN DT JJ NN IN DT NN IN NNP . In his confession , Karbouli described how he shot the Jordanian driver Khaled Desouki twice in the head . IN PRP$ NN , NNP VBD WRB PRP VBD DT JJ NN NNP NNP RB IN DT NN . Karbouli says he kidnapped the two Moroccans last October as they returned to Iraq after visiting Amman . NNP VBZ PRP VBD DT CD NNS JJ NNP IN PRP VBD TO NNP IN VBG NNP . Jordanian TV credited the country 's intelligence service and its special forces with the capture without releasing details . JJ NN VBD DT NN POS NN NN CC PRP$ JJ NNS IN DT NN IN VBG NNS . It is unclear whether the kidnapped Moroccans are still alive . PRP VBZ JJ IN DT VBN NNS VBP RB JJ . Zimbabwe 's state-run Herald newspaper says authorities have temporarily closed a school where at least 53 students were sexually abused . NNP POS JJ NNP NN VBZ NNS VBP RB VBN DT NN WRB IN JJS CD NNS VBD RB VBN . The Herald reports that five suspects , including a teacher and a caretaker , carried out the abuse at the school in the southeastern town of Macheke . DT NNP VBZ IN CD NNS , VBG DT NN CC DT NN , VBD IN DT NN IN DT NN IN DT JJ NN IN NNP . The paper says 16 girls were repeatedly abused by one person and infected with sexually transmitted diseases . DT NN VBZ CD NNS VBD RB VBN IN CD NN CC VBN IN RB JJ NNS . The Herald quotes Zimbabwean Education Minister Aeneas Chigwedere as saying the school closed a week early and all staff were transferred immediately . DT NNP VBZ JJ NNP NNP NNP NNP IN VBG DT NN VBD DT NN RB CC DT NN VBD VBN RB . It says the school will re-open on September 1 under a new administration . PRP VBZ DT NN MD VB IN NNP CD IN DT JJ NN . Hospital officials in Israel say the condition of comatose former Prime Minister Ariel Sharon has deteriorated further . NN NNS IN NNP VBP DT NN IN JJ JJ NNP NNP NNP NNP VBZ VBN RB . A statement issued Monday from the Tel Aviv hospital where Mr. Sharon is being treated says the former prime minister has a new chest infection and his urine output has decreased significantly . DT NN VBN NNP IN DT NNP NNP NN WRB NNP NNP VBZ VBG VBN VBZ DT JJ JJ NN VBZ DT JJ NN NN CC PRP$ NN NN VBZ VBN RB . The 78-year-old Mr. Sharon has been unconscious since early January when he suffered a massive stroke . DT JJ NNP NNP VBZ VBN JJ IN JJ NNP WRB PRP VBD DT JJ NN . Pakistan says it will consider extraditing Taleban spokesman Abdul Latif Hakimi to Afghanistan if the Afghan government makes a formal request . NNP VBZ PRP MD VB VBG NNP NN NNP NNP NNP TO NNP IN DT JJ NN VBZ DT JJ NN . Pakistani officials say Mr. Hakimi was detained with five other suspected Taleban members in a raid this week on a house on the outskirts of Quetta , capital of Pakistan 's Baluchistan province bordering Afghanistan . JJ NNS VBP NNP NNP VBD VBN IN CD JJ JJ NNP NNS IN DT NN DT NN IN DT NN IN DT NNS IN NNP , NN IN NNP POS NNP NN VBG NNP . Afghan President Hamid Karzai told France 's LCI television Wednesday his country would seek the extradition of Mr. Hakimi , saying he is responsible for many atrocities in Afghanistan . JJ NNP NNP NNP VBD NNP POS NNP NN NNP PRP$ NN MD VB DT NN IN NNP NNP , VBG PRP VBZ JJ IN JJ NNS IN NNP . A Pakistani foreign ministry spokeswoman said the ministry has seen the reports , but has not formally received a request from Afghanistan for the extradition of Mr. Hakimi . DT JJ JJ NN NN VBD DT NN VBZ VBN DT NNS , CC VBZ RB RB VBD DT NN IN NNP IN DT NN IN NNP NNP . Pakistani intelligence officials say they have been questioning Mr. Hakimi about his links with senior Taleban leaders , the organization and structure of the Taleban , and to determine how he was operating in Pakistan . JJ NN NNS VBP PRP VBP VBN VBG NNP NNP IN PRP$ NNS IN JJ NNP NNS , DT NN CC NN IN DT NNP , CC TO VB WRB PRP VBD VBG IN NNP . Iraqi political leaders are continuing efforts to win support from Sunni Arabs for a new constitution , before Saturday 's national referendum on the draft . JJ JJ NNS VBP VBG NNS TO VB NN IN NNP NNS IN DT JJ NN , IN NNP POS JJ NN IN DT NN . Iraq 's majority Shi'ites and Kurds support the draft , but minority Sunni Arabs oppose it , fearing that they will be sidelined under the proposed federal system . NNP POS NN NNS CC NNS VBP DT NN , CC NN NNP NNS VBP PRP , VBG IN PRP MD VB VBN IN DT VBN JJ NN . In another development , Iraq 's anti-corruption commission says arrest warrants have been issued for some two dozen officials from the previous interim government of Prime Minister Iyad Allawi . IN DT NN , NNP POS JJ NN VBZ NN NNS VBP VBN VBN IN DT CD NN NNS IN DT JJ JJ NN IN NNP NNP NNP NNP . The commission says the former senior officials , including former defense minister Hazem al-Shaalan , are suspected of embezzling more than $ 1 billion from military procurement funds . DT NN VBZ DT JJ JJ NNS , VBG JJ NN NN NNP NNP , VBP VBN IN VBG JJR IN $ CD CD IN JJ NN NNS . Many of the accused are said to have left Iraq since the Allawi cabinet was replaced by an elected transitional government in April . NN IN DT VBN VBP VBN TO VB VBN NNP IN DT NNP NN VBD VBN IN DT VBN JJ NN IN NNP . The European Commission says it will initiate legal action against France over that country 's failure to comply with European legal rulings in six cases dealing with environmental protection . DT JJ NNP VBZ PRP MD VB JJ NN IN NNP IN DT NN POS NN TO VB IN JJ JJ NNS IN CD NNS VBG IN JJ NN . The Commission , the EU 's policy initiating body , says France has failed to react to several court rulings by the European Court of Justice since 2001 . DT NNP , DT NNP POS NN NN NN , VBZ NNP VBZ VBN TO VB TO JJ NN NNS IN DT NNP NNP IN NNP IN CD . The cases relate to the protection of water , species and habitats , as well as waste treatment . DT NNS VBP TO DT NN IN NN , NNS CC NNS , RB RB IN NN NN . The Commission says that under the rulings , France must adjust its national environmental laws to bring them in line with EU regulations . DT NNP VBZ IN IN DT NNS , NNP MD VB PRP$ JJ JJ NNS TO VB PRP IN NN IN NNP NNS . Otherwise , it says , France could incur fines . RB , PRP VBZ , NNP MD VB NNS . The Associated Press quotes French officials as saying their government has made it a priority since 2002 to catch up on its delays in enforcing EU directives . DT NNP NNP VBZ JJ NNS IN VBG PRP$ NN VBZ VBN PRP DT NN IN CD TO VB RP IN PRP$ NNS IN VBG NNP NNS . Business jumped 16 percent in the first half of the year for Dubai World 's global port operations . NN VBD CD NN IN DT JJ NN IN DT NN IN NNP NNP POS JJ NN NNS . The firm is the fourth-largest of its kind in the world and saw gains at ports it operates in Asia , Australia , and parts of Europe . DT NN VBZ DT NN IN PRP$ NN IN DT NN CC VBD NNS IN NNS PRP VBZ IN NNP , NNP , CC NNS IN NNP . The company handled the equivalent of 23.7 million standard containers between January and June . DT NN VBD DT NN IN CD CD JJ NNS IN NNP CC NNP . That is a significant gain from the same period a year ago when it moved a bit more than 20 million containers . DT VBZ DT JJ NN IN DT JJ NN DT NN RB WRB PRP VBD DT RB JJR IN CD CD NNS . The company welcomes the growth , which comes after a steep decline in global trade during the economic crisis . DT NN VBZ DT NN , WDT VBZ IN DT JJ NN IN JJ NN IN DT JJ NN . But managers say it is unclear if the growth will continue for the rest of the year . CC NNS VBP PRP VBZ JJ IN DT NN MD VB IN DT NN IN DT NN . Come one , Come all to the Inaugural Jameson Grill VBN CD , VBN DT TO DT NNP NNP NNP The only fund raising event in the world where you can bring your entire family , other employees , or maybe even your neighbors . DT JJ NN VBG NN IN DT NN WRB PRP MD VB PRP$ JJ NN , JJ NNS , CC RB RB PRP$ NNS . Saturday , September 20 , 1997 , from 2.00 p.m. until 7.00 p.m. , marks a special day , as Jameson Camp will hold its first ever Jameson Grill . NNP , NNP CD , CD , IN NN NN IN NN NN , VBZ DT JJ NN , IN NNP NNP MD VB PRP$ JJ RB NNP NNP . A fund raiser dedicated to you and your family having fun ! ! DT NN NN VBN TO PRP CC PRP$ NN VBG NN . . For this event , when you purchase a corporate picnic table , you will be able to bring 16 people . IN DT NN , WRB PRP VBP DT JJ NN NN , PRP MD VB JJ TO VB CD NNS . ( and if you need room for a couple of more , we can swing that too ! ) LRB CC IN PRP VBP NN IN DT NN IN JJR , PRP MD VB IN RB . RRB The Grill will feature enough activities that you and your kids will have a tough time deciding what to do . DT NNP MD VB JJ NNS IN PRP CC PRP$ NNS MD VB DT JJ NN VBG WP TO VB . From basketball , kickball , volleyball , archery , crafts , an egg toss , and even a walk through our creek , you will have plenty to do to get you good and hungry . IN NN , NN , NN , NN , NNS , DT NN NN , CC RB DT NN IN PRP$ NN , PRP MD VB NN TO VB TO VB PRP JJ CC JJ . Hungry , you bet ! We 'll prepare a hog roast and hot dogs for the kids , with all the fixings . NNP , PRP VBD . PRP MD VB DT NN NN CC JJ NNS IN DT NNS , IN PDT DT NNS . In addition , we will have soft drinks and a raffle , so that you can walk home with a great prize ! IN NN , PRP MD VB JJ NNS CC DT NN , IN IN PRP MD VB NN IN DT JJ NN . The Jameson Grill has been designed to be nothing but fun for you , your family , employees , and maybe even your neighbors . DT NNP NNP VBZ VBN VBN TO VB NN CC NN IN PRP , PRP$ NN , NNS , CC RB RB PRP$ NNS . Join in this wonderful event and help Jameson Camp continue to provide the year-round support that gives kids a chance to create dreams . NNP IN DT JJ NN CC VB NNP NNP VBP TO VB DT JJ NN WDT VBZ NNS DT NN TO VB NNS . Simply fill out the enclosed card , and we will see you at the Grill ! RB VB RP DT VBN NN , CC PRP MD VB PRP IN DT NNP . One of our volunteers will be contacting you soon . CD IN PRP$ NNS MD VB VBG PRP RB . Questions ? NNS . Call Pat Bray at 241-2661 or e-mail , jcfundrzr@aol.com VB NNP NNP IN CD CC VB , NNP Multiple waves of colonizers , each speaking a distinct language , migrated to the New Hebrides in the millennia preceding European exploration in the 18th century . JJ NNS IN NNS , DT VBG DT JJ NN , VBN TO DT NNP NNP IN DT NN VBG JJ NN IN DT JJ NN . This settlement pattern accounts for the complex linguistic diversity found on the archipelago to this day . DT NN NN NNS IN DT JJ JJ NN VBD IN DT NN TO DT NN . The British and French , who settled the New Hebrides in the 19th century , agreed in 1906 to an Anglo-French Condominium , which administered the islands until independence in 1980 , when the new name of Vanuatu was adopted . DT NNS CC NNS , WP VBD DT NNP NNP IN DT JJ NN , VBD IN CD TO DT JJ NN , WDT VBD DT NNS IN NN IN CD , WRB DT JJ NN IN NNP VBD VBN . Founded in 963 , Luxembourg became a grand duchy in 1815 and an independent state under the Netherlands . VBN IN CD , NNP VBD DT JJ NN IN CD CC DT JJ NN IN DT NNP . It lost more than half of its territory to Belgium in 1839 but gained a larger measure of autonomy . PRP VBD JJR IN NN IN PRP$ NN TO NNP IN CD CC VBD DT JJR NN IN NN . Full independence was attained in 1867 . NNP NN VBD VBN IN CD . Overrun by Germany in both world wars , it ended its neutrality in 1948 when it entered into the Benelux Customs Union and when it joined NATO the following year . NNP IN NNP IN DT NN NNS , PRP VBD PRP$ NN IN CD WRB PRP VBD IN DT NNP NNP NNP CC WRB PRP VBD NNP DT JJ NN . In 1957 , Luxembourg became one of the six founding countries of the European Economic Community ( later the European Union ) , and in 1999 it joined the euro currency area . IN CD , NNP VBD CD IN DT CD JJ NNS IN DT JJ NNP NNP LRB RB DT NNP NNP RRB , CC IN CD PRP VBD DT JJ NN NN . Russia conquered the territory of present-day Uzbekistan in the late 19th century . NNP VBD DT NN IN JJ NNP IN DT JJ JJ NN . Stiff resistance to the Red Army after the Bolshevik Revolution was eventually suppressed and a socialist republic established in 1924 . NNP NN TO DT NNP NNP IN DT NNP NNP VBD RB VBN CC DT JJ NN VBN IN CD . During the Soviet era , intensive production of ' white gold ' ( cotton ) and grain led to overuse of agrochemicals and the depletion of water supplies , which have left the land poisoned and the Aral Sea and certain rivers half dry . IN DT JJ NN , JJ NN IN `` JJ NN `` LRB NN RRB CC NN VBD TO NN IN NNS CC DT NN IN NN NNS , WDT VBP VBN DT NN VBN CC DT NNP NNP CC JJ NNS DT JJ . Independent since 1991 , the country seeks to gradually lessen its dependence on agriculture while developing its mineral and petroleum reserves . NNP IN CD , DT NN VBZ TO RB VB PRP$ NN IN NN IN VBG PRP$ NN CC NN NNS . Current concerns include terrorism by Islamic militants , economic stagnation , and the curtailment of human rights and democratization . JJ NNS VBP NN IN NNP NNS , JJ NN , CC DT NN IN JJ NNS CC NN . The Philippine Islands became a Spanish colony during the 16th century ; they were ceded to the US in 1898 following the Spanish-American War . DT JJ NNP VBD DT JJ NN IN DT JJ NN ; PRP VBD VBN TO DT NNP IN CD VBG DT JJ NNP . In 1935 the Philippines became a self-governing commonwealth . IN CD DT NNPS VBD DT JJ NN . Manuel QUEZON was elected president and was tasked with preparing the country for independence after a 10-year transition . NNP NNP VBD VBN NN CC VBD VBN IN VBG DT NN IN NN IN DT JJ NN . In 1942 the islands fell under Japanese occupation during World War II , and US forces and Filipinos fought together during 1944 - 45 to regain control . IN CD DT NNS VBD IN JJ NN IN NNP NNP NNP , CC NNP NNS CC NNS VBD RB IN CD : CD TO VB NN . On 4 July 1946 the Republic of the Philippines attained its independence . IN CD NNP CD DT NNP IN DT NNP VBD PRP$ NN . A 20-year rule by Ferdinand MARCOS ended in 1986 , when a ' people power ' movement in Manila ( ' EDSA 1 ' ) forced him into exile and installed Corazon AQUINO as president . DT JJ NN IN NNP NNP VBD IN CD , WRB DT `` NNS NN `` NN IN NNP LRB `` NNP CD `` RRB VBD PRP IN NN CC VBN NNP NNP IN NN . Her presidency was hampered by several coup attempts that prevented a return to full political stability and economic development . PRP$ NN VBD VBN IN JJ NN NNS WDT VBD DT NN TO JJ JJ NN CC JJ NN . Fidel RAMOS was elected president in 1992 . NNP NNP VBD VBN NN IN CD . His administration was marked by increased stability and by progress on economic reforms . PRP$ NN VBD VBN IN JJ NN CC IN NN IN JJ NNS . In 1992 , the US closed its last military bases on the islands . IN CD , DT NNP VBD PRP$ JJ JJ NNS IN DT NNS . Joseph ESTRADA was elected president in 1998 . NNP NNP VBD VBN NN IN CD . He was succeeded by his vice-president , Gloria MACAPAGAL-ARROYO , in January 2001 after ESTRADA 's stormy impeachment trial on corruption charges broke down and another ' people power ' movement ( ' EDSA 2 ' ) demanded his resignation . PRP VBD VBN IN PRP$ NN , NNP NNP , IN NNP CD IN NNP POS JJ NN NN IN NN NNS VBD RB CC DT `` NNS NN `` NN LRB `` NNP CD `` RRB VBD PRP$ NN . MACAPAGAL-ARROYO was elected to a six-year term as president in May 2004 . NNP VBD VBN TO DT JJ NN IN NN IN NNP CD . Her presidency was marred by several corruption allegations but the Philippine economy was one of the few to avoid contraction following the 2008 global financial crisis , expanding each year of her administration . PRP$ NN VBD VBN IN JJ NN NNS CC DT JJ NN VBD CD IN DT JJ TO VB NN VBG DT CD JJ JJ NN , VBG DT NN IN PRP$ NN . Benigno AQUINO III was elected to a six-year term as president in May 2010 . NNP NNP NNP VBD VBN TO DT JJ NN IN NN IN NNP CD . The Philippine Government faces threats from several groups on the US Government 's Foreign Terrorist Organization list . DT JJ NN VBZ NNS IN JJ NNS IN DT NNP NNP POS NNP NNP NNP NN . Manila has waged a decades-long struggle against ethnic Moro insurgencies in the southern Philippines , which has led to a peace accord with the Moro National Liberation Front and on-again / off-again peace talks with the Moro Islamic Liberation Front . NNP VBZ VBN DT JJ NN IN JJ NNP NNS IN DT JJ NNP , WDT VBZ VBN TO DT NN NN IN DT NNP NNP NNP NNP CC JJ NN JJ NN NNS IN DT NNP NNP NNP NNP . The decades-long Maoist-inspired New People 's Army insurgency also operates through much of the country . DT JJ JJ NNP NNP POS NNP NN RB VBZ IN NN IN DT NN . TWO GAME COCKS were fiercely fighting for the mastery of the farmyard . CD NN NNS VBD RB VBG IN DT NN IN DT NN . One at last put the other to flight . CD IN JJ NN DT JJ TO NN . The vanquished Cock skulked away and hid himself in a quiet corner , while the conqueror , flying up to a high wall , flapped his wings and crowed exultingly with all his might . DT JJ NN VBD RB CC VBD PRP IN DT JJ NN , IN DT NN , VBG RP TO DT JJ NN , VBD PRP$ NNS CC VBD RB IN DT PRP$ NN . An Eagle sailing through the air pounced upon him and carried him off in his talons . DT NNP NN IN DT NN VBD IN PRP CC VBD PRP RP IN PRP$ NNS . The vanquished Cock immediately came out of his corner , and ruled henceforth with undisputed mastery . DT JJ NN RB VBD IN IN PRP$ NN , CC VBD NN IN JJ NN . Pride goes before destruction . NN VBZ IN NN . The Minnesota Fish and Game Comission wanted to develop a fish that would offer more for their sportsmen so they crossed a Coho with a Walleye and called it a Kowal . DT NNP NNP CC NNP NNP VBD TO VB DT NN WDT MD VB JJR IN PRP$ NNS IN PRP VBD DT NN IN DT NNP CC VBD PRP DT NNP . It grew to a nice size and reproduced well but it would n't bite . PRP VBD TO DT JJ NN CC VBD RB CC PRP MD RB VB . They crossed the Kowal with a Muskie and called it a Kowalski but they were so stupid they had to teach them how to swim . PRP VBD DT NNP IN DT NN CC VBD PRP DT NNP CC PRP VBD RB JJ PRP VBD TO VB PRP WRB TO VB . If you owe the bank $ 100 , that 's your problem . IN PRP VBP DT NN $ CD , DT VBZ PRP$ NN . If you owe the bank $ 100 million , that 's the bank 's problem . IN PRP VBP DT NN $ CD CD , WDT VBZ DT NN POS NN . India says it would like the dispute over Iran 's nuclear program to be resolved through negotiations at the International Atomic Energy Agency , not the United Nations Security Council . NNP VBZ PRP MD VB DT NN IN NNP POS JJ NN TO VB VBN IN NNS IN DT NNP NNP NNP NNP , RB DT NNP NNP NNP NNP . Prime Minister Manmohan Singh told reporters in New Delhi Wednesday that the matter should be resolved through diplomacy and dialogue . NNP NNP NNP NNP VBD NNS IN NNP NNP NNP IN DT NN MD VB VBN IN NN CC NN . The five permanent members of the Security Council have agreed to bring Iran before the powerful body . DT CD JJ NNS IN DT NNP NNP VBP VBN TO VB NNP IN DT JJ NN . But some other key nations have indicated they want to avoid going to the Council . CC DT JJ JJ NNS VBP VBN PRP VBP TO VB VBG TO DT NNP . Mr. Singh declined to specify India 's stand on a possible Security Council referral . NNP NNP VBD TO VB NNP POS NN IN DT JJ NNP NNP NN . He said he will review the issue in the ' national interest . ' PRP VBD PRP MD VB DT NN IN DT `` JJ NN . `` In September , New Delhi voted with the United States on an earlier IAEA resolution that could have led to Iran 's referral to the Council . IN NNP , NNP NNP VBD IN DT NNP NNPS IN DT JJR NNP NN WDT MD VB VBN TO NNP POS NN TO DT NNP . But the Indian government was severely criticized for that by its left-wing political allies at home . CC DT JJ NN VBD RB VBN IN DT IN PRP$ JJ JJ NNS IN NN . The presidents of South Africa and Nigeria have arrived in Ivory Coast in another effort to resolve a standoff over the selection of a new prime minister . DT NNS IN NNP NNP CC NNP VBP VBN IN NNP NNP IN DT NN TO VB DT NN IN DT NN IN DT JJ JJ NN . Thabo Mbeki and Olusegun Obasanjo plan to hold talks with President Laurent Gbagbo , opposition leaders and rebels who control the northern half of Ivory Coast . NNP NNP CC NNP NNP NN TO VB NNS IN NNP NNP NNP , NN NNS CC NNS WP VBP DT JJ NN IN NNP NNP . The parties have been unable to agree on a new prime minister who would run a caretaker government until elections scheduled for October 2006 . DT NNS VBP VBN JJ TO VB IN DT JJ JJ NN WP MD VB DT NN NN IN NNS VBN IN NNP CD . Mr. Gbagbo canceled elections scheduled for October of this year and vowed to remain in office another 12 months , sparking anger among rebels and opposition leaders . NNP NNP VBD NNS VBN IN NNP IN DT NN CC VBD TO VB IN NN DT CD NNS , VBG NN IN NNS CC NN NNS . The Nigerian and South African leaders traveled Sunday from Mali , where they attended the France-Africa summit . DT JJ CC JJ JJ NNS VBD NNP IN NNP , WRB PRP VBD DT NNP NN . The president of Niger , Mamadou Tandja , is scheduled to join them for the talks in Abidjan . DT NN IN NNP , NNP NNP , VBZ VBN TO VB PRP IN DT NNS IN NNP . U.S. Senator Al Franken says Laotian officials restricted his access to 4,500 Hmong refugees who were forcibly repatriated from Thailand last year . NNP NNP NNP NNP VBZ JJ NNS VBN PRP$ NN TO CD NNP NNS WP VBD RB VBN IN NNP JJ NN . The lawmaker traveled to Laos on Tuesday to observe the living conditions of the refugees . DT NN VBD TO NNP IN NNP TO VB DT NN NNS IN DT NNS . He says he spoke with a group of 150 Hmong at village being built for them by the government , and took an aerial tour by helicopter . PRP VBZ PRP VBD IN DT NN IN CD NN IN NN VBG VBN IN PRP IN DT NN , CC VBD DT JJ NN IN NN . Franken told reporters after his visit that he was ' unhappy ' with the amount of access he was granted . NNP VBD NNS IN PRP$ NN IN PRP VBD `` JJ `` IN DT NN IN NN PRP VBD VBN . He says he was accompanied by a high-ranking military official throughout his visit . PRP VBZ PRP VBD VBN IN DT JJ JJ NN IN PRP$ NN . The Democratic senator represents Minnesota , which has one of the largest Hmong expatriate communities in the United States . DT JJ NN VBZ NNP , WDT VBZ CD IN DT JJS JJ JJ NNS IN DT NNP NNPS . The senator traveled to Laos as part of a three-member delegation traveling to Vietnam this week , including Tom Harkin of Iowa and independent Bernie Sanders of Vermont . DT NN VBD TO NNP IN NN IN DT JJ NN VBG TO NNP DT NN , VBG NNP NNP IN NNP CC JJ NNP NNP IN NNP . A legal group representing a detainee who committed suicide at Guantanamo Naval Base earlier this month is expressing concern that the Bush administration may intentionally dispose of evidence related to the case . DT JJ NN VBG DT NN WP VBD NN IN NNP NNP NNP RBR DT NN VBZ VBG NN IN DT NNP NN MD RB VB IN NN VBN TO DT NN . The New York-based Center for Constitutional Rights this week sought court protection of evidence related to the death of its client , Ali Abdullah Ahmed al-Salami . DT NNP JJ NNP IN NNP NNP DT NN VBD NN NN IN NN VBN TO DT NN IN PRP$ NN , NNP NNP NNP NNP . It said the Bush administration has failed to provide a death certificate or autopsy report since three Guantanamo inmates were found dead in their cells June 10 . PRP VBD DT NNP NN VBZ VBN TO VB DT NN NN CC NN NN IN CD NNP NNS VBD VBN JJ IN PRP$ NNS NNP CD . The motion also asks for an independent investigation into the suicides . DT NN RB VBZ IN DT JJ NN IN DT NNS . Pentagon spokesman Bryan Whitman told VOA that preservation of evidence is standard military practice and , in his words , ' a vital part ' of such an investigation . NNP NN NNP NNP VBD NNP IN NN IN NN VBZ JJ JJ NN CC , IN PRP$ NNS , `` DT JJ NN `` IN JJ DT NN . But he said such evidence is not likely to be made public before the inquiry is complete . CC PRP VBD JJ NN VBZ RB JJ TO VB VBN JJ IN DT NN VBZ JJ . Philippine Senator Benigno Aquino III has been formally declared the winner of the country 's presidential election . JJ NNP NNP NNP NNP VBZ VBN RB VBD DT NN IN DT NN POS JJ NN . A joint session of the upper and lower chambers of Congress formally proclaimed Mr. Aquino the Philippine 's 15th president Wednesday . DT JJ NN IN DT JJ CC JJR NNS IN NNP RB VBD NNP NNP DT JJ POS JJ NN NNP . The president-elect won the May 10 automated elections in a landslide , garnering more than 15 million votes , while his closest challenger , ex-President Joseph Estrada , got only 9.4 million votes . DT JJ VBD DT NNP CD JJ NNS IN DT NN , VBG JJR IN CD CD NNS , IN PRP$ JJS NN , NNP NNP NNP , VBD RB CD CD NNS . Mr. Aquino will take office on June 30 , succeeding President Gloria Arroyo , whose nine-year tenure has been marred by allegations of corruption and election fraud . NNP NNP MD VB NN IN NNP CD , VBG NNP NNP NNP , WP$ JJ NN VBZ VBN VBN IN NNS IN NN CC NN NN . He campaigned on a platform of eliminating corruption and poverty . PRP VBD IN DT NN IN VBG NN CC NN . Mr. Aquino is the son of the late President Corazon Aquino and Senator Benigno Aquino , Jr. , who was assassinated in 1983 at the Manila airport after returning from exile in the United States to challenge the dictatorship of Ferdinand Marcos . NNP NNP VBZ DT NN IN DT JJ NNP NNP NNP CC NNP NNP NNP , NNP , WP VBD VBN IN CD IN DT NNP NN IN VBG IN NN IN DT NNP NNPS TO VB DT NN IN NNP NNP . Business owners in parts of the devastated city of New Orleans are being allowed back into the area to start clean-up and begin readying for re-opening . NN NNS IN NNS IN DT JJ NN IN NNP NNP VBP VBG VBN RB IN DT NN TO VB NN CC VB VBG IN NN . New Orleans Mayor Ray Nagin has called on business owners to return to the French Quarter and some other parts of the city -- but other officials are warning there may be limited or no electricity or clean running water . NNP NNP NNP NNP NNP VBZ VBN IN NN NNS TO VB TO DT JJ NN CC DT JJ NNS IN DT NN : CC JJ NNS VBP VBG EX MD VB VBN CC DT NN CC JJ VBG NN . Some residents will also be allowed to return to their homes Monday . DT NNS MD RB VB VBN TO VB TO PRP$ NNS NNP . Less than half of New Orleans remains flooded , but dangers from downed power lines , natural gas leaks , toxic debris and other hazards remain . RBR IN DT IN NNP NNP VBZ VBN , CC NNS IN JJ NN NNS , JJ NN NNS , JJ NN CC JJ NNS VBP . Hurricane Katrina ravaged the U.S. Gulf Coast on August 29 . NN NNP VBD DT NNP NNP NNP IN NNP CD . The death toll in five states is now more than 800 . DT NN NN IN CD NNS VBZ RB JJR IN CD . President Bush is calling on U.S. lawmakers to pass legislation that will limit jury awards in medical malpractice lawsuits . NNP NNP VBZ VBG IN NNP NNS TO VB NN WDT MD VB NN NNS IN JJ NN NNS . During a speech in Illinois Wednesday , Mr. Bush promoted legislation that would limit damages awarded for pain and suffering to $ 2,50,000 . IN DT NN IN NNP NNP , NNP NNP VBD NN WDT MD VB NNS VBN IN NN CC NN TO $ CD . The president says the bill is necessary to put a stop to lawsuits he calls ' frivolous . ' DT NN VBZ DT NN VBZ JJ TO VB DT NN TO NNS PRP VBZ `` JJ . `` The president says excessive jury awards from malpractice lawsuits are forcing doctors out of medicine , because they can not afford the rising costs of malpractice insurance premiums . DT NN VBZ JJ NN NNS IN NN NNS VBP VBG NNS IN IN NN , IN PRP MD RB VB DT VBG NNS IN NN NN NNS . But critics say Mr. Bush 's bill favors big insurance companies and drug makers , and does nothing about the rising costs of prescription drugs and insurance premiums . CC NNS VBP NNP NNP POS NN VBZ JJ NN NNS CC NN NNS , CC VBZ DT IN DT VBG NNS IN NN NNS CC NN NNS . Mr. Bush made the issue one of the central themes during his re-election campaign . NNP NNP VBD DT NN CD IN DT JJ NNS IN PRP$ NN NN . Authorities in Indian Kashmir say monsoon rains have caused a house to collapse south of Srinagar , killing six members of a family . NNS IN JJ NNP VBP NN NNS VBP VBN DT NN TO VB NN IN NNP , VBG CD NNS IN DT NN . One person was rescued from the debris . CD NN VBD VBN IN DT NN . Local officials say heavy rains also forced authorities to close the Himalayan region 's main highways , leaving thousands of motorists stranded . JJ NNS VBP JJ NNS RB VBD NNS TO VB DT NNP NN POS JJ NNS , VBG NNS IN NNS VBN . Military units are on standby for flood relief operations . JJ NNS VBP IN NN IN NN NN NNS . Monsoon rains sweep through South Asia every year from June to September , killing hundreds of people . NN VBZ NN IN NNP NNP DT NN IN NNP TO NNP , VBG NNS IN NNS . They bring misery to millions of people , but are also crucial for the farm-dependent economies . PRP VBP NN TO NNS IN NNS , CC VBP RB JJ IN DT JJ NNS . Iraqi police say a suicide attack in the northern city of Baiji has killed at least seven people and wounded at least 13 . JJ NNS VBP DT NN NN IN DT JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD . Police say the bomber rammed a vehicle into a police building in a residential area Saturday . NNS VBP DT NN VBD DT NN IN DT NN NN IN DT JJ NN NNP . Baiji , about 250 kilometers north of Baghdad , has the country 's largest oil refinery and is a key export point for crude oil . NNP , IN CD NNS RB IN NNP , VBZ DT NN POS JJS NN NN CC VBZ DT JJ NN NN IN JJ NN . Also , a possible rocket or bomb attack has killed a local leader of the movement of radical Shi'ite cleric Moqtada al-Sadr . RB , DT JJ NN CC NN NN VBZ VBN DT JJ NN IN DT NN IN JJ NNP NN NNP NNP . Iraqi authorities say Uday Hamid and his wife and two children were killed in an explosion at their home south of Baghdad , in Numaniya . JJ NNS VBP NNP NNP CC PRP$ NN CC CD NNS VBD VBN IN DT NN IN PRP$ NN NN IN NNP , IN NNP . In other news , the U.S. military says coalition forces killed 12 terrorists and detained 13 suspects in operations today targeting al-Qaida in Iraq networks in central and northern Iraq . IN JJ NN , DT NNP NN VBZ NN NNS VBN CD NNS CC VBN CD NNS IN NNS NN VBG NNP IN NNP NNS IN JJ CC JJ NNP . Every year , millions of tourists visit Washington 's National Mall . DT NN , NNS IN NNS VBP NNP POS NNP NNP . Many come to participate in events that take place in the U.S. capital . JJ VBN TO VB IN NNS WDT VBP NN IN DT NNP NN . But the Mall , the 4 kilometer-long green space stretching from the Lincoln Memorial to the domed Capitol Building , is in trouble . CC DT NNP , DT CD JJ JJ NN VBG IN DT NNP NNP TO DT JJ NNP NNP , VBZ IN NN . Producer Zulima Palacio has the story , narrated by Jim Bertel , about the Mall 's decay and the urgent need for repair . NNP NNP NNP VBZ DT NN , VBN IN NNP NNP , IN DT NNP POS NN CC DT JJ NN IN NN . India 's economy is growing at an unprecedented rate , prompting far-reaching changes that are rapidly transforming the country . NNP POS NN VBZ VBG IN DT JJ NN , VBG JJ NNS WDT VBP RB VBG DT NN . Among the most visible signs of the new India is a housing boom that targets the country 's growing middle class . IN DT RBS JJ NNS IN DT JJ NNP VBZ DT NN NN WDT VBZ DT NN POS VBG JJ NN . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Egyptian security officials say the number of people killed by a rockslide in Cairo earlier this month is at least 95 , as the search continues for more bodies in the rubble . JJ NN NNS VBP DT NN IN NNS VBN IN DT NN IN NNP RBR DT NN VBZ IN JJS CD , IN DT NN VBZ IN JJR NNS IN DT NN . The previous death toll was at least 80 , after giant rocks fell from the cliff above the impoverished Manshiyet Nasr neighborhood September sixth . DT JJ NN NN VBD IN JJS CD , IN JJ NNS VBD IN DT NN IN DT JJ NNP NNP NN NNP NN . Angry residents have clashed with rescue workers over what they consider an inadequate response to the disaster . NNP NNS VBP VBN IN NN NNS IN WP PRP VBP DT JJ NN TO DT NN . Rescuers have had to work mostly by hand to remove debris because streets in the neighborhood are too narrow for large machinery . NNS VBP VBN TO VB RB IN NN TO VB NN IN NNS IN DT NN VBP RB JJ IN JJ NN . Officials say rockslides are frequent in the area . NNS VBP NNS VBP JJ IN DT NN . Families living there have appealed to authorities for safer housing . NNS VBG EX VBP VBN TO NNS IN JJR NN . The U.S. military says American and Iraqi forces have killed nine insurgents , including five suspected Syrians , in a village northwest of Baghdad . DT NNP NN VBZ NNP CC JJ NNS VBP VBN CD NNS , VBG CD JJ NNS , IN DT NN NN IN NNP . U.S. military officials say the insurgents had fired rocket-propelled grenades and small arms at a U.S. and Iraqi patrol in Cykla . NNP JJ NNS VBP DT NNS VBD VBN JJ NNS CC JJ NNS IN DT NNP CC JJ NN IN NNP . The officials did not say when the clash occurred . DT NNS VBD RB VB WRB DT NN VBD . Washington and the Iraqi government say many insurgents in Iraq come from neighboring Arab countries . NNP CC DT JJ NN VBP JJ NNS IN NNP VBP IN JJ JJ NNS . On Thursday , insurgents killed seven people , including six Iraqi soldiers , in coordinated attacks in and around the capital . IN NNP , NNS VBD CD NNS , VBG CD JJ NNS , IN JJ NNS IN CC IN DT NN . The attacks came a day after Abu Musab al-Zarqawi 's terrorist group ( al-Qaida in Iraq ) claimed to have murdered two kidnapped Algerian diplomats . DT NNS VBD DT NN IN NNP NNP NNP POS JJ NN LRB NNP IN NNP RRB VBD TO VB VBN CD VBN JJ NNS . U.S. and Afghan forces report killing eight insurgents during fighting in southeastern Afghanistan and say they thwarted an attempted suicide bombing at a U.S. base . NNP CC JJ NNS VBP VBG CD NNS IN VBG IN JJ NNP CC VBP PRP VBD DT JJ NN VBG IN DT NNP NN . Authorities in Zabul province say coalition forces raided a Taleban hideout Saturday , sparking a gunbattle during which eight militants were killed and three captured . NNS IN NNP NN VBP NN NNS VBD DT NNP NN NNP , VBG DT NN IN WDT CD NNS VBD VBN CC CD VBN . In Khost province Saturday , coalition forces detained a man outside a U.S. base after a grenade he was carrying failed to detonate . IN NNP NN NNP , NN NNS VBD DT NN IN DT NNP NN IN DT NN PRP VBD VBG VBD TO VB . A military statement says the assailant had several explosives hidden on his body when he approached Camp Salerno . DT JJ NN VBZ DT NN VBD JJ NNS VBN IN PRP$ NN WRB PRP VBD NNP NNP . In central Uruzgan province Saturday , Afghan and U.S. troops killed one insurgent and captured six others . IN JJ NNP NN NNP , JJ CC NNP NNS VBD CD NN CC VBD CD NNS . The Taleban has stepped up attacks ahead of parliamentary elections next month . DT NNP VBZ VBN RP NNS RB IN JJ NNS IN NN . Croatian General Ante Gotovina pleaded not guilty Tuesday to four new charges of war crimes and crimes against humanity linked to the murders of Croatian Serbs in 1995 . JJ NNP NNP NNP VBD RB JJ NNP TO CD JJ NNS IN NN NNS CC NNS IN NN VBN TO DT NNS IN JJ NNS IN CD . Prosecutors at the Yugoslav war crimes tribunal in the Hague have charged Gotovina and two other Croatian officers , Ivan Cermak and Mladen Markac , with the crimes . NNS IN DT JJ NN NNS JJ IN DT NNP VBP VBN NNP CC CD JJ JJ NNS , NNP NNP CC NNP NNP , IN DT NNS . Gotovina was arrested a year ago on Spain 's Canary Islands and remains in custody . NNP VBD VBN DT NN RB IN NNP POS NNP NNP CC VBZ IN NN . He had pleaded not guilty to earlier charges . PRP VBD VBN RB JJ TO JJR NNS . Cermak and Markac have been released to await their trial . NNP CC NNP VBP VBN VBN TO VB PRP$ NN . They appeared at Tuesday 's hearing via a video link , and also pleaded not guilty to new charges . PRP VBD IN NNP POS NN IN DT NN NN , CC RB VBD RB JJ TO JJ NNS . The Hague war crimes tribunal indicted General Gotovina in 2001 for his role in the deaths of civilians during a 1995 offensive through a Serb-held area of the country . DT NNP NN NNS JJ VBD NNP NNP IN CD IN PRP$ NN IN DT NNS IN NNS IN DT CD NN IN DT JJ NN IN DT NN . U.S. Secretary of State Hillary Clinton has told a forum of Arab leaders in Qatar to enact economic and political reforms or face increased unrest and extremism . NNP NNP IN NNP NNP NNP VBZ VBN DT NN IN JJ NNS IN NNP TO VB JJ CC JJ NNS CC NN VBN NN CC NN . Clinton spoke Thursday in the capital , Doha , as she wrapped up a four-nation tour of the Persian Gulf . NNP VBD NNP IN DT NN , NNP , IN PRP VBD RP DT JJ NN IN DT NNP NNP . The top U.S. diplomat said if leaders do not offer young people ' meaningful ways to contribute , ' then others are ready to fill the void . DT JJ NNP NN VBD IN NNS VBP RB VB JJ NNS `` JJ NNS TO VB , `` RB NNS VBP JJ TO VB DT NN . Clinton said extremists and terrorist groups ' who would prey on desperation and poverty ' are already appealing for influence . NNP VBD NNS CC JJ NNS `` WP MD VB IN NN CC NN `` VBP RB VBG IN NN . She also called for an end to corruption and for increased economic opportunities for women and minorities . PRP RB VBD IN DT NN TO NN CC IN VBN JJ NNS IN NNS CC NNS . Clinton said the ' new and dynamic Middle East ' needs a firmer foundation in order to grow . NNP VBD DT `` JJ CC JJ NNP NNP `` VBZ DT JJR NN IN NN TO VB . Her tour also included stops in Oman , Yemen and the United Arab Emirates . PRP$ NN RB VBD NNS IN NNP , NNP CC DT NNP NNP NNPS . Fifty-one people are believed to have killed in a fiery bus crash in China 's mountainous southwest . CD NNS VBP VBN TO VB VBN IN DT JJ NN NN IN NNP POS JJ NN . China 's official Xinhua news agency reported the bus left the road and plunged 100 meters into a valley in Sichuan province . NNP POS JJ NNP NN NN VBD DT NN VBD DT NN CC VBD CD NNS IN DT NN IN NNP NN . Witnesses say they heard an explosion and saw black smoke rising from the crash site . NNS VBP PRP VBD DT NN CC VBD JJ NN VBG IN DT NN NN . Xinhua says Sichuan 's provincial governor , Jiang Jufeng , was on his way to supervise rescue and recovery efforts . NNP VBZ NNP POS JJ NN , NNP NNP , VBD IN PRP$ NN TO VB NN CC NN NNS . There are no reports of any survivors . EX VBP DT NNS IN DT NNS . The bus was on its way from Sichuan to Ningbo , a coastal city south of Shanghai in eastern Zhejiang province China 's roads are among the most dangerous in the world with accidents often caused by reckless driving , poor road conditions and overloaded vehicles . DT NN VBD IN PRP$ NN IN NNP TO NNP , DT JJ NN NN IN NNP IN JJ NNP NN NNP POS NNS VBP IN DT RBS JJ IN DT NN IN NNS RB VBN IN JJ NN , JJ NN NNS CC JJ NNS . Germany 's defense ministry says it is investigating photos published by a popular newspaper that appear to show German troops in Afghanistan posing with a skull . NNP POS NN NN VBZ PRP VBZ VBG NNS VBN IN DT JJ NN WDT VBP TO VB JJ NNS IN NNP VBG IN DT NN . The daily Bildnewspaper says the pictures were taken near Afghanistan 's capital , Kabul , in 2003 . DT JJ NNP VBZ DT NNS VBD VBN IN NNP POS NN , NNP , IN CD . The paper says it does not know where the soldiers obtained the skull or how old it was . DT NN VBZ PRP VBZ RB VB WRB DT NNS VBD DT NN CC WRB JJ PRP VBD . German Defense Minister Josef Jung called the pictures disgusting and incomprehensible . JJ NNP NNP NNP NNP VBD DT NNS VBG CC JJ . He said such behavior by German soldiers will not be tolerated . PRP VBD JJ NN IN JJ NNS MD RB VB VBN . Germany has about 2,800 troops in Afghanistan as part of the NATO peacekeeping mission . NNP VBZ IN CD NNS IN NNP IN NN IN DT NNP NN NN . Germany 's parliament voted last month to extend their deployment for another year . NNP POS NN VBD JJ NN TO VB PRP$ NN IN DT NN . The photos show the soldiers holding the skull up and fastening it to a vehicle like a hood ornament . DT NNS VBP DT NNS VBG DT NN RB CC VBG PRP TO DT NN IN DT NN NN . Another soldier is shown exposing himself next to the skull . DT NN VBZ VBN VBG PRP JJ TO DT NN . The newspaper did not say how it obtained the photos . DT NN VBD RB VB WRB PRP VBD DT NNS . The head of the U.S. central bank says banks must be smarter about the ways they pay their executives , and government must find better ways to cope with the failure of large financial firms . DT NN IN DT NNP JJ NN VBZ NNS MD VB RBR IN DT NNS PRP VBP PRP$ NNS , CC NN MD VB JJR NNS TO VB IN DT NN IN JJ JJ NNS . Federal Reserve Chairman Ben Bernanke spoke Friday to a group of community bankers in Phoenix in the western U.S. state of Arizona . NNP NNP NNP NNP NNP VBD NNP TO DT NN IN NN NNS IN NNP IN DT JJ NNP NN IN NNP . He said ' poorly designed ' compensation policies can create the wrong incentives and jeopardize the bank 's health . PRP VBD `` RB VBN `` NN NNS MD VB DT JJ NNS CC VB DT NN POS NN . Bernanke urged bankers to find ways to align executive pay with the long-term interests of the bank . NNP VBD NNS TO VB NNS TO VB JJ NN IN DT JJ NNS IN DT NN . Bernanke spoke after $ 165 million in bonus payments to executives of the troubled AIG insurance company - which has been propped up with billions of dollars in taxpayers ' money - caused a huge political upheaval . NNP VBD IN $ CD CD IN NN NNS TO NNS IN DT JJ NNP NN NN : WDT VBZ VBN VBN RP IN NNS IN NNS IN NNS POS NN : VBD DT JJ JJ NN . He also said the government must find a safer way to shut down large financial firms outside the banking sector without disrupting the entire financial system . PRP RB VBD DT NN MD VB DT JJR NN TO VB RP JJ JJ NNS IN DT NN NN IN VBG DT JJ JJ NN . The United Nations mission in Liberia says it will respond strongly after threatening text messages were sent to the chief of the electoral commission . DT NNP NNP NN IN NNP VBZ PRP MD VB RB IN VBG NN NNS VBD VBN TO DT NN IN DT JJ NN . National Elections Commission head Frances Johnson-Morris has told news organizations she laughed when she received two recent messages sent to her mobile phone . NNP NNPS NNP NN NNP NNP VBZ VBN NN NNS PRP VBD WRB PRP VBD CD JJ NNS VBN TO PRP$ JJ NN . But the U.N. mission in Liberia says it is taking the threats seriously , describing them as a serious impediment to the consolidation of peace and stability in Liberia . CC DT NNP NN IN NNP VBZ PRP VBZ VBG DT NNS RB , VBG PRP IN DT JJ NN TO DT NN IN NN CC NN IN NNP . The United Nations also says it will respond ' robustly ' to any threats of violence against individuals involved in the election process . DT NNP NNP RB VBZ PRP MD VB `` RB `` TO DT NNS IN NN IN NNS VBN IN DT NN NN . Liberians have been widely praised for holding peaceful and transparent elections on October 11 , the nation 's first post-war poll . NNS VBP VBN RB VBN IN VBG JJ CC JJ NNS IN NNP CD , DT NN POS JJ JJ NN . A presidential run-off vote is expected in November between the two top vote-getters , former football ( soccer ) star George Weah and former cabinet minister and World Bank economist Ellen Johnson-Sirleaf . DT JJ NN NN VBZ VBN IN NNP IN DT CD JJ NNS , JJ NN LRB NN RRB NN NNP NNP CC JJ NN NN CC NNP NNP NN NNP NNP . Pakistani officials say a U.S. missile strike has killed at least 10 militants in a tribal region of northwest Pakistan . JJ NNS VBP DT NNP NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN IN JJ NNP . Officials say a drone attack Tuesday destroyed a militant compound in the Datta Khel region of North Waziristan . NNS VBP DT NN NN NNP VBD DT JJ NN IN DT NNP NNP NN IN NNP NNP . The United States has regularly launched attacks by the unmanned planes on the district , which is a stronghold of al-Qaida and the Taliban . DT NNP NNP VBZ RB VBN NNS IN DT JJ NNS IN DT NN , WDT VBZ DT NN IN NNP CC DT NNP . Meanwhile , Pakistani police say an anti-Taliban militia in Kurram , another tribal region along the Afghan border , killed 10 Taliban fighters Tuesday . RB , JJ NNS VBP DT JJ NN IN NNP , DT JJ NN IN DT JJ NN , VBD CD NNP NNS NNP . The militia attacked the Taliban fighters after they attempted to kidnap one of its members . DT NN VBD DT NNP NNS IN PRP VBD TO VB CD IN PRP$ NNS . Last week , Pakistani intelligence officials said two suspected U.S. drone strikes killed at least 12 people in the North Waziristan village of Mizarkhel . JJ NN , JJ NN NNS VBD CD JJ NNP NN NNS VBD IN JJS CD NNS IN DT NNP NNP NN IN NNP . Such attacks have killed senior members of al-Qaida and the Taliban , but have sparked criticism from Pakistan 's government . JJ NNS VBP VBN JJ NNS IN NNP CC DT NNP , CC VBP VBN NN IN NNP POS NN . United Airlines , the second largest carrier in the United States , is cutting additional jobs , grounding airplanes that use the most fuel , and slashing domestic flights to offset record fuel prices . NNP NNPS , DT JJ JJS NN IN DT NNP NNPS , VBZ VBG JJ NNS , VBG NNS WDT VBP DT JJS NN , CC VBG JJ NNS TO VB NN NN NNS . United Airlines announced Wednesday it will cut an extra 900 to 1,100 jobs by the end of the year . NNP NNP VBD NNP PRP MD VB DT JJ CD TO CD NNS IN DT NN IN DT NN . The layoffs are in addition to 500 job cuts the carrier announced previously . DT NNS VBP IN NN TO CD NN NNS DT NN VBD RB . United is also grounding 100 of its least fuel-efficient aircraft , 94 Boeing 737s and six 747 airplanes . NNP VBZ RB VBG CD IN PRP$ JJS JJ NN , CD NNP NNS CC CD CD NNS . The carrier will also slash domestic flights 17 percent by the end of the year . DT NN MD RB VB JJ NNS CD NN IN DT NN IN DT NN . Last month , American Airlines , the largest carrier in the United States , announced similar measures to offset the high cost of fuel . JJ NN , NNP NNPS , DT JJS NN IN DT NNP NNPS , VBD JJ NNS TO VB DT JJ NN IN NN . American Airlines said it would cut an undetermined number of jobs and slash domestic flights by up to 12 percent . NNP NNPS VBD PRP MD VB DT JJ NN IN NNS CC VB JJ NNS IN RB TO CD NN . A British security firm says four of its employees have been killed and 15 others wounded in an attack in Baghdad 's heavily fortified ' Green Zone , ' which houses the Iraqi government and the U.S.-led coalition . DT JJ NN NN VBZ CD IN PRP$ NNS VBP VBN VBN CC CD NNS VBN IN DT NN IN NNP POS RB VBN `` NNP NNP , `` WDT VBZ DT JJ NN CC DT JJ NN . A spokesman for the ' Global Risk Strategies ' firm declined to say Friday what kind of attack occurred , but said the incident took place on Thursday . DT NN IN DT `` JJ NN NNS `` NN VBD TO VB NNP WP NN IN NN VBD , CC VBD DT NN VBD NN IN NNP . The development came as Iraqi authorities said an Iraqi policeman was killed and three others wounded when insurgents attacked a police station late Thursday in Rashad , southwest of the northern city of Kirkuk . DT NN VBD IN JJ NNS VBD DT JJ NN VBD VBN CC CD NNS VBD WRB NNS VBD DT NN NN JJ NNP IN NNP , NN IN DT JJ NN IN NNP . Also Friday , the U.S. military said Marines have cleared more than half the houses of weapons in the restive city of Fallujah , after mounting an offensive to crush the city 's rebels . RB NNP , DT NNP NN VBD NNS VBP VBN JJR IN PDT DT NNS IN NNS IN DT JJ NN IN NNP , IN VBG DT NN TO VB DT NN POS NNS . On Thursday , a large cache of weapons and an apparent chemical weapons laboratory was discovered in Fallujah . IN NNP , DT JJ NN IN NNS CC DT JJ NN NNS NN VBD VBN IN NNP . Pakistan 's finance chief says the International Monetary Fund has agreed to provide a $ 7.6 billion loan to help the country stabilize its economy . NNP POS NN NN VBZ DT NNP NNP NNP VBZ VBN TO VB DT $ CD CD NN TO VB DT NN VB PRP$ NN . Top economic advisor Shaukat Tareen says the loan will prevent Pakistan from defaulting on its foreign debt . JJ JJ NN NNP NNP VBZ DT NN MD VB NNP IN VBG IN PRP$ JJ NN . Tareen told reporters in Karachi Saturday that Pakistan will formally apply for the loan next week , but that the IMF has agreed to the deal . NNP VBD NNS IN NNP NNP IN NNP MD RB VB IN DT NN JJ NN , CC IN DT NNP VBZ VBN TO DT NN . Tareen says Pakistan expects its first IMF loan disbursements this year . NNP VBZ NNP VBZ PRP$ JJ NNP NN NNS DT NN . Pope John Paul II will miss the re-enactment of the crucifixion of Jesus Christ , the first time he has not physically attended the ceremony in his 26-year pontificate . NN NNP NNP NNP MD VB DT NN IN DT NN IN NNP NNP , DT JJ NN PRP VBZ RB RB VBD DT NN IN PRP$ JJ NN . Vatican officials say the 84-year-old pontiff may participate in the Way of the Cross procession at the Colosseum through a video link depending on his health . NNP NNS VBP DT JJ NN MD VB IN DT NN IN DT NNP NN IN DT NN IN DT NN NN VBG IN PRP$ NN . The pope was hospitalized twice within the past month and had a tube inserted in his throat to relieve breathing difficulties . DT NN VBD VBN RB IN DT JJ NN CC VBD DT NN VBN IN PRP$ NN TO VB NN NNS . He has delegated other Church officials to preside over ceremonies leading up to Easter , including Friday 's Good Friday events . PRP VBZ VBN JJ NN NNS TO VB IN NNS VBG RP TO NNP , VBG NNP POS JJ NNP NNS . Vatican officials say they expect the pope to deliver his Urbi et Orbi blessing on Easter Sunday , when Christians celebrate the resurrection of Jesus Christ . NNP NNS VBP PRP VBP DT NN TO VB PRP$ NNP NNP NNP NN IN NNP NNP , WRB NNS VBP DT NN IN NNP NNP . A South African court says two farm workers accused of killing a white supremacist leader will remain in custody until at least next month . DT JJ JJ NN VBZ CD NN NNS VBN IN VBG DT JJ NN NN MD VB IN NN IN IN JJS JJ NN . Court officials said Wednesday that a bail hearing for suspect Chris Mahlangu has been postponed until May 10 at the request of the man 's lawyer . NNP NNS VBD NNP IN DT NN NN IN JJ NNP NNP VBZ VBN VBN IN NNP CD IN DT NN IN DT NN POS NN . Meanwhile , the French News Agency says the lawyer for an unidentified 15-year-old suspect has withdrawn a bail application . RB , DT NNP NNP NNP VBZ DT NN IN DT JJ JJ NN VBZ VBN DT NN NN . Authorities have charged the two workers , both of them black , with murdering Afrikaner Resistance Movement founder Eugene Terre'Blanche . NNS VBP VBN DT CD NNS , DT IN PRP JJ , IN VBG JJ NN NN NN NNP NNP . Terre'Blanche was found bludgeoned to death on his farm west of Johannesburg earlier this month . NNP VBD VBN JJ TO NN IN PRP$ NN NN IN NNP RBR DT NN . Police say the killing may have stemmed from a pay dispute . NNS VBP DT NN MD VB VBN IN DT NN NN . The incident has heightened racial tensions in South Africa . DT NN VBZ VBN JJ NNS IN NNP NNP . President Jacob Zuma has appealed for calm . NNP NNP NNP VBZ VBN IN NN . A suicide bomb attack on a convoy of Canadian troops in southern Afghanistan has killed three civilians , including a Canadian official . DT NN NN NN IN DT NN IN JJ NNS IN JJ NNP VBZ VBN CD NNS , VBG DT JJ NN . Hospital sources in Kandahar city say another 12 people , including three Canadian soldiers , were wounded in Sunday 's blast . NN NNS IN NNP NN VBP DT CD NNS , VBG CD JJ NNS , VBD VBN IN NNP POS NN . Witnesses say the bomber slammed his explosive-laden vehicle into the convoy . NNS VBP DT NN VBD PRP$ JJ NN IN DT NN . Canadian Prime Minister Paul Martin confirmed the Canadian casualties during an election campaign appearance in Quebec . JJ NNP NNP NNP NNP VBD DT JJ NNS IN DT NN NN NN IN NNP . He offered condolences to the victim 's family , and described Canada 's presence in Afghanistan as essential to establishing peace and security there . PRP VBD NNS TO DT NN POS NN , CC VBD NNP POS NN IN NNP IN JJ TO VBG NN CC NN RB . A purported spokesman for the Taleban claimed responsibility for the attack . DT JJ NN IN DT NNP VBD NN IN DT NN . The Taleban has also claimed responsibility for Saturday 's killing in Kandahar of a former Taleban intelligence chief who renounced the group after it was ousted from power by U.S.-led forces in 2001 . DT NNP VBZ RB VBN NN IN NNP POS NN IN NNP IN DT JJ NNP NN NN WP VBD DT NN IN PRP VBD VBN IN NN IN JJ NNS IN CD . Pakistani Foreign Minister Khursheed Kasuri says Islamabad is willing to seal its border with Afghanistan by building a fence to stop militants from infiltrating into Afghan territory . JJ NNP NNP NNP NNP VBZ NNP VBZ JJ TO VB PRP$ NN IN NNP IN VBG DT NN TO VB NNS IN VBG IN JJ NN . Kasuri made the remark during Sunday talks with his Dutch counterpart , Bernard Bot , who suggested sealing the border during his visit in the Afghan capital , Kabul , a day earlier . NNP VBD DT NN IN NNP NNS IN PRP$ JJ NN , NNP NNP , WP VBD VBG DT NN IN PRP$ NN IN DT JJ NN , NNP , DT NN RBR . He also said that the fenced border should be jointly monitored by both Pakistani and Afghan security forces . PRP RB VBD IN DT JJ NN MD VB RB VBN IN DT JJ CC JJ NN NNS . A Foreign Ministry statement says Bot welcomed Pakistan 's readiness to seal the Afghan-Pakistani border and told Kasuri he would discuss this with other NATO partners . DT NNP NNP NN VBZ NNP VBD NNP POS NN TO VB DT JJ NN CC VBD NNP PRP MD VB DT IN JJ NNP NNS . Afghan officials say Taleban leaders frequently find shelter in Pakistan . JJ NNS VBP NNP NNS RB VBP NN IN NNP . Islamabad denies those accusations , saying it has deployed 80,000 troops in the rugged border region to hunt down Taleban and al-Qaida fugitives . NNP VBZ DT NNS , VBG PRP VBZ VBN CD NNS IN DT JJ NN NN TO VB RP NNP CC NNP NNS . Afghan President Hamid Karzai is calling for presidential elections to be held four months earlier than an election date set by the country 's Independent Election Commission . JJ NNP NNP NNP VBZ VBG IN JJ NNS TO VB VBN CD NNS JJR IN DT NN NN VBN IN DT NN POS NNP NNP NNP . President Karzai issued a decree Saturday noting the constitution requires the vote to be held 30 to 60 days before his five-year term expires on May 21 . NNP NNP VBD DT NN NNP VBG DT NN VBZ DT NN TO VB VBN CD CC CD NNS IN PRP$ JJ NN VBZ IN NNP CD . The Independent Election Commission announced last month that it rescheduled the election for August 20 to give incoming U.S. forces time to stabilize the country . DT NNP NNP NNP VBD JJ NN IN PRP VBD DT NN IN NNP CD TO VB JJ NNP NNS NN TO VB DT NN . The commission also said it needed time to work out logistical issues and wanted to avoid holding the vote during Afghanistan 's harsh winter weather . DT NN RB VBD PRP VBD NN TO VB RP JJ NNS CC VBD TO VB VBG DT NN IN NNP POS JJ NN NN . Opposition leaders have insisted that President Karzai step down when his term expires in May and install a caretaker government . NN NNS VBP VBN IN NNP NNP VB RB WRB PRP$ NN VBZ IN NNP CC VB DT NN NN . U.S. support for the embattled president came into question after the Obama administration openly accused Mr. Karzai of failing to crack down on government corruption . NNP NN IN DT JJ NN VBD IN NN IN DT NNP NN RB VBD NNP NNP IN VBG TO VB RP IN NN NN . The Zambian government says President Levy Mwanawasa has suffered a stroke . DT JJ NN VBZ NNP NNP NNP VBZ VBN DT NN . The president was hospitalized Sunday in the Egyptian resort of Sharm El Sheikh , where he was preparing to attend Monday 's summit of African Union leaders . DT NN VBD VBN NNP IN DT JJ NN IN NNP NNP NNP , WRB PRP VBD VBG TO VB NNP POS NN IN NNP NNP NNS . Zambian Vice President Rupiah Banda says in a statement Monday that Mr. Mwanawasa is being attended to by doctors and his condition is stable . JJ JJ NNP NNP NNP VBZ IN DT NN NNP IN NNP NNP VBZ VBG VBN TO IN NNS CC PRP$ NN VBZ JJ . The Zambian president fell ill on Sunday after attending an AU committee meeting on United Nations reform . DT JJ NN VBD RB IN NNP IN VBG DT NNP NN NN IN NNP NNP NN . An initial statement from Zambia 's foreign minister had described his ailment as a consequence of high blood pressure . DT JJ NN IN NNP POS JJ NN VBD VBN PRP$ NN IN DT NN IN JJ NN NN . The AU summit has so far focused largely on the political crisis in Zimbabwe . DT NNP NN VBZ RB RB VBN RB IN DT JJ NN IN NNP . Mr. Mwanawasa is known as a critic of Zimbabwean President Robert Mugabe , but has said he will not comment on the current situation before AU leaders discuss the matter . NNP NNP VBZ VBN IN DT NN IN JJ NNP NNP NNP , CC VBZ VBN PRP MD RB VB IN DT JJ NN IN NNP NNS VB DT NN . Brazil has agreed not to break a pharmaceutical patent on a crucial AIDS drug after a U.S. drug manufacturer agreed to significantly reduce the price of the drug . NNP VBZ VBN RB TO VB DT JJ NN IN DT JJ NNP NN IN DT NNP NN NN VBD TO RB VB DT NN IN DT NN . The agreements were announced late Friday after 10 days of talks between Brazil 's government and Abbott Laboratories . DT NNS VBD VBN JJ NNP IN CD NNS IN NNS IN NNP POS NN CC NNP NNP . The drug manufacturer will cut prices , saving Brazil 's Ministry of Health over $ 259 million over the next six years . DT NN NN MD VB NNS , VBG NNP POS NNP IN NNP IN $ CD CD IN DT JJ CD NNS . Abbott also agreed to a technology transfer allowing Brazil 's state-run pharmaceutical labs to begin producing the drug Kaletra in 2009 . NNP RB VBD TO DT NN NN VBG NNP POS JJ JJ NNS TO VB VBG DT NN NNP IN CD . Brazil had accused the U.S. drug maker with exorbitant pricing , and said the government planned to locally produce a cheaper generic copy of the patented drug . NNP VBD VBN DT NNP NN NN IN JJ NN , CC VBD DT NN VBD TO RB VB DT JJR JJ NN IN DT VBN NN . Abbott denied the overpricing charges , and said Brazil 's plans were illegal . NNP VBD DT NN NNS , CC VBD NNP POS NNS VBD JJ . Celebrations of the New Year 2005 were muted around the world as people remembered the tens of thousands of people killed or still suffering as a result of the Indian Ocean tsunami disaster . NNS IN DT NNP NNP CD VBD VBN IN DT NN IN NNS VBD DT NNS IN NNS IN NNS VBN CC RB VBG IN DT NN IN DT NNP NNP NN NN . Thailand and Turkey canceled traditional fireworks displays and parties . NNP CC NNP VBD JJ NNS NNS CC NNS . Malaysians and Indonesians took part in prayer services . NNPS CC NNS VBD NN IN NN NNS . Most New Year 's Eve celebration 's that were held included a moment of silence for the victims as well as fund raising efforts for disaster relief . JJS NNP NNP POS NNP NN POS WDT VBD VBN VBD DT NN IN NN IN DT NNS RB RB IN NN VBG NNS IN NN NN . Some reports also suggest as many as 10,000 visitors from outside Asia are still missing in the disaster zone . DT NNS RB VBP RB JJ IN CD NNS IN JJ NNP VBP RB VBG IN DT NN NN . Many Europeans were on Christmas holiday vacations at south Asian beach resorts and nearly 3,600 Swedes , 1,000 Germans and 700 Italians are still missing . JJ NNS VBD IN NNP NN NNS IN JJ JJ NN NNS CC RB CD NNS , CD NNS CC CD NNS VBP RB VBG . U.S. officials believe about 3,000 Americans were in south Asia but it is not clear how many of them were in dangerous areas . NNP NNS VBP IN CD NNS VBD IN JJ NNP CC PRP VBZ RB JJ WRB JJ IN PRP VBD IN JJ NNS . U.S. Marines fighting in Fallujah say they have found the mutilated body of what appears to be a Caucasian woman . NNP NNPS VBG IN NNP VBP PRP VBP VBN DT JJ NN IN WP VBZ TO VB DT JJ NN . A Marine patrol found the unidentified body in a street of the violence-torn Iraqi city . DT NN NN VBD DT JJ NN IN DT NN IN DT JJ JJ NN . Two Western women who also have Iraqi citizenship are known to have been kidnapped in Iraq . CD JJ NNS WP RB VBP JJ NN VBP VBN TO VB VBN VBN IN NNP . Both have been missing since separate abductions last month . DT VBP VBN VBG IN JJ NNS JJ NN . They are British aid worker Margaret Hassan and Teresa Borcz , a native of Poland . PRP VBP JJ NN NN NNP NNP CC NNP NNP , DT NN IN NNP . A spokesman for the African Union says all 38 peacekeepers who were kidnapped in Sudan 's troubled Darfur region have been released . DT NN IN DT NNP NNP VBZ DT CD NNS WP VBD VBN IN NNP POS JJ NNP NN VBP VBN VBN . The spokesman said the hostages were released on Monday following a shootout between rival groups . DT NN VBD DT NNS VBD VBN IN NNP VBG DT NN IN JJ NNS . The peacekeepers were abducted Sunday in the town of Tine near Sudan 's border with Chad . DT NNS VBD VBN NNP IN DT NN IN NNP IN NNP POS NN IN NNP . A dissident faction of Darfur 's rebel Justice and Equality Movement has been blamed for the kidnappings . DT JJ NN IN NNP POS NN NN CC NN NN VBZ VBN VBN IN DT NNS . The kidnappings took place a day after two AU peacekeepers and two civilian contractors were killed in an ambush blamed on the main Darfur rebel group , the Sudan Liberation Army . DT NNS VBD NN DT NN IN CD NNP NNS CC CD JJ NNS VBD VBN IN DT JJ VBN IN DT JJ NNP NN NN , DT NNP NNP NNP . United Nations Secretary General Kofi Annan says attacks by rebels groups and criminal activity in Darfur have created a very dangerous situation for humanitarian workers . NNP NNP NNP NNP NNP NNP VBZ NNS IN NNS NNS CC JJ NN IN NNP VBP VBN DT RB JJ NN IN JJ NNS . He warned the government and rebels continued violence will impede humanitarian aid . PRP VBD DT NN CC NNS VBD NN MD VB JJ NN . President Bush is to host Palestinian leader Mahmoud Abbas October 20 at the White House . NNP NNP VBZ TO VB JJ NN NNP NNP NNP CD IN DT NNP NNP . White House spokesman Scott McClellan said in a statement Friday that Mr. Bush looks forward to discussing Palestinian efforts to improve governance , revive the economy , institute security reform , and fight terror . NNP NNP NN NNP NNP VBD IN DT NN NNP IN NNP NNP VBZ RB TO VBG JJ NNS TO VB NN , VB DT NN , VB NN NN , CC VB NN . Mr. McClellan said the leaders will discuss a wide range of other bilateral and regional issues . NNP NNP VBD DT NNS MD VB DT JJ NN IN JJ JJ CC JJ NNS . The United States is making public and diplomatic appeals to Israel and the Palestinians to end the violence that has sent regional tensions soaring only weeks after Israel 's Gaza withdrawal . DT NNP NNPS VBZ VBG JJ CC JJ NNS TO NNP CC DT NNS TO VB DT NN WDT VBZ VBN JJ NNS VBG RB NNS IN NNP POS NNP NN . The Indian cricket board has delayed the departure of its team for a test and limited-over series in Bangladesh , after a little-known militant group threatened to kill the Indian players . DT JJ NN NN VBZ VBN DT NN IN PRP$ NN IN DT NN CC NN NN IN NNP , IN DT JJ JJ NN VBD TO VB DT JJ NNS . In a letter mailed Thursday , a group calling itself Harkat-Ul-Zihad threatened to kill the Indians to avenge the deaths of Muslims killed during communal riots in the Indian state of Gujarat in 2002 . IN DT NN VBN NNP , DT NN VBG PRP JJ VBN TO VB DT NNS TO VB DT NNS IN NNPS VBN IN JJ NNS IN DT JJ NN IN NN IN CD . Indian cricket board president Ranbir Singh Mahendra said Sunday that the team , which had been scheduled to leave Tuesday , would not leave before Wednesday after receiving an advisory from the government . JJ NNP NN NN NNP NNP NNP VBD NNP IN DT NN , WDT VBD VBN VBN TO VB NNP , MD RB VB IN NNP IN VBG DT NN IN DT NN . He said the government is taking the threat seriously and the tour 's fate will be decided by the security delegation , which arrives in Dhaka on Monday . PRP VBD DT NN VBZ VBG DT NN RB CC DT NN POS NN MD VB VBN IN DT NN NN , WDT VBZ IN NNP IN NNP . The Indian cricketers had been slated to depart from the eastern city of Calcutta for Bangladesh on Tuesday to play two tests and three one-dayers . DT JJ NNS VBD VBN VBN TO VB IN DT JJ NN IN NNP IN NNP IN NNP TO VB CD NNS CC CD NNS . Ukrainian opposition leader Yulia Tymoshenko says she believes Viktor Yushchenko will nominate her as prime minister . JJ NN NN NNP NNP VBZ PRP VBZ NNP NNP MD VB PRP IN JJ NN . Ms. Tymoshenko , a top ally of the president-elect , said in Kiev Saturday that a written agreement with Mr. Yushchenko last year promised her the post . NNP NNP , DT JJ NN IN DT NN , VBD IN NNP NNP IN DT JJ NN IN NNP NNP JJ NN VBD PRP$ DT NN . She was a central figure in last year 's massive protests in Kiev against a flawed November presidential run-off vote . PRP VBD DT JJ NN IN JJ NN POS JJ NNS IN NNP IN DT JJ NNP JJ NN NN . Election officials had declared then-Prime Minister Viktor Yanukovych the winner of that balloting , but the Supreme Court threw out the results because of fraud and it ordered a December re-run . NNP NNS VBD VBN JJ NNP NNP NNP DT NN IN DT NN , CC DT NNP NNP VBD RP DT NNS IN IN NN CC PRP VBD DT NNP NN . Several other people have been named as possible candidates for prime minister , including parliamentarian Petro Poroshenko . JJ JJ NNS VBP VBN VBN IN JJ NNS IN JJ NN , VBG JJ NNP NNP . Ukraine 's Supreme Court begins hearings Monday on an election challenge by Mr. Yanukovych , who is alleging fraud in the December 26 re-run vote . NNP POS NNP NNP VBZ NNS NNP IN DT NN NN IN NNP NNP , WP VBZ VBG NN IN DT NNP CD JJ NN . In U.S. politics , there are mounting calls for Senator Hillary Clinton to end her campaign for the Democratic Party 's presidential nomination . IN NNP NNS , EX VBP VBG NNS IN NNP NNP NNP TO VB PRP$ NN IN DT NNP NNP POS JJ NN . Mathematically , observers say Clinton can not catch up with rival Senator Barack Obama in pledged delegates . RB , NNS VBP NNP MD RB VB RP IN JJ NNP NNP NNP IN VBN NNS . And prominent Democratic Party officials fear that an acrimonious fight between Clinton and Obama could lead to depressed turnout among Democratic voters in the general election . CC JJ JJ NN NNS VBP IN DT JJ NN IN NNP CC NNP MD VB TO JJ NN IN JJ NNS IN DT JJ NN . But Clinton finds a strong defense from women 's rights activists who do not want her to quit the race . CC NNP VBZ DT JJ NN IN NNS POS NNS NNS WP VBP RB VB PRP TO VB DT NN . VOA 's Leta Hong Fincher has more . NNP POS NNP NNP NNP VBZ RBR . Witnesses say gunmen have opened fire on the motorcade of Palestinian Prime Minister Ismail Haniyeh . NNS VBP NNS VBP VBN NN IN DT NN IN JJ NNP NNP NNP NNP . Palestinian officials say Mr. Haniyeh was not hurt in the attack Friday in Gaza . JJ NNS VBP NNP NNP VBD RB VBN IN DT NN NNP IN NNP . The incident comes amid a power struggle between the ruling group Hamas of Prime Minister Haniyeh and the more moderate Fatah party of Palestinian President Mahmoud Abbas . DT NN VBZ IN DT NN NN IN DT NN NN NNP IN NNP NNP NNP CC DT JJR JJ NNP NN IN JJ NNP NNP NNP . The Associated Press reported that disgruntled relatives of a Fatah activist killed in recent fighting with Hamas were responsible for the attack . DT NNP NNP VBD IN JJ NNS IN DT NNP NN VBN IN JJ NN IN NNP VBD JJ IN DT NN . The leader of Cyprus ' Orthodox Church has warned clerics critical of an upcoming visit by Pope Benedict that they must show the pontiff respect . DT NN IN NNP POS NNP NNP VBZ VBN NNS JJ IN DT JJ NN IN NNP NNP IN PRP MD VB DT NN NN . Archbishop Chrysostomos said Tuesday that freedom of expression is allowed in the Orthodox Church , but that clerics must not offend a guest like the Pope . NNP NNP VBD NNP IN NN IN NN VBZ VBN IN DT NNP NNP , CC IN NNS MD RB VB DT NN IN DT NNP . Pope Benedict XVI is scheduled to visit Cyprus in early June at the invitation of Cypriot President Dimitris Christofias . NNP NNP NNP VBZ VBN TO VB NNP IN JJ NNP IN DT NN IN JJ NNP NNP NNP . Several clerics have threatened to boycott the Pope 's visit . JJ NNS VBP VBN TO VB DT NNP POS NN . One bishop told a Cypriot newspaper that the pope is a heretic and that it would be better if he did not visit . CD NN VBD DT JJ NN IN DT NN VBZ DT JJ CC IN PRP MD VB JJR IN PRP VBD RB VB . Most Greek Cypriots are followers of the Greek Orthodox Church , which split with the Roman Catholic Church in the 11th century , but the island has a small Catholic community . JJS JJ NNS VBP NNS IN DT JJ NNP NNP , WDT VBD IN DT NNP NNP NNP IN DT JJ NN , CC DT NN VBZ DT JJ JJ NN . India 's government plans to spend nearly $ 13 million to create a special force to protect the endangered tiger population . NNP POS NN VBZ TO VB RB $ CD CD TO VB DT JJ NN TO VB DT JJ NN NN . Finance Minister P. Chidambaram announced to parliament Friday that the money will be used to raise , arm and deploy a special tiger protection force . NNP NNP NNP NNP VBD TO NN NNP IN DT NN MD VB VBN TO VB , NN CC VB DT JJ NN NN NN . A recent survey found India 's tiger population has declined to just over 1,400 from 3,600 in 2002 . DT JJ NN VBD NNP POS NN NN VBZ VBN TO RB IN CD IN CD IN CD . Chidambaram said the number should ring an alarm bell and that the tiger is under grave threat . NNP VBD DT NN MD VB DT NN NN CC IN DT NN VBZ IN JJ NN . India 's government last month pledged to spend $ 150 million to create new tiger reserves and shift villages and tribal communities out of tiger habitats . NNP POS NN JJ NN VBD TO VB $ CD CD TO VB JJ NN NNS CC NN NNS CC JJ NNS IN IN NN NNS . Officials have also opened a national wildlife crime bureau to counter the poaching of tigers and other endangered animals . NNS VBP RB VBN DT JJ NN NN NN TO VB DT NN IN NNS CC JJ JJ NNS . Tiger hunting is illegal worldwide . NNP NN VBZ JJ NN . Poachers often sell tiger skins and other body parts to China for use in traditional medicine . NNS RB VBP NN NNS CC JJ NN NNS TO NNP IN NN IN JJ NN . Leaders of rival Palestinian factions Fatah and Hamas have opened talks in Saudi Arabia in efforts to end a deadly power struggle and form a unity government . NNS IN JJ JJ NNS NNP CC NNP VBP VBN NNS IN NNP NNP IN NNS TO VB DT JJ NN NN CC NN DT NN NN . Palestinian President Mahmoud Abbas of Fatah , Hamas ' exiled political chief Khaled Mashaal and Palestinian Prime Minister Ismail Haniyeh are meeting in the Muslim holy city of Mecca . JJ NNP NNP NNP IN NNP , NNP POS JJ JJ NN NNP NNP CC JJ NNP NNP NNP NNP VBP VBG IN DT NNP JJ NN IN NNP . Tuesday , the rival Palestinian leaders met separately with Saudi Arabia 's King Abdullah . NNP , DT JJ JJ NNS VBD RB IN NNP NNP POS NNP NNP . The Saudi monarch says he hopes the Palestinians will reach an agreement to ' stop the bloodshed . ' DT NNP NN VBZ PRP VBZ DT NNS MD VB DT NN TO `` VB DT NN . `` Fighting between Hamas and Fatah erupted in December . VBG IN NNP CC NNP VBD IN NNP . More than 90 Palestinians have been killed in street battles since then . JJR IN CD NNS VBP VBN VBN IN NN NNS IN RB . Fatah and Hamas have been locked in a power struggle since parliamentary elections in the West Bank and Gaza Strip brought Hamas to power last year . NNP CC NNP VBP VBN VBN IN DT NN NN IN JJ NNS IN DT NNP NNP CC NNP NNP VBD NNP TO NN JJ NN . Venezuelan President Hugo Chavez has rejected charges he made anti-Semitic remarks last month . JJ NNP NNP NNP VBZ VBN NNS PRP VBD JJ NNS JJ NN . Speaking to the Venezuelan parliament Friday , President Chavez said a call for an apology by the U.S.-based Simon Wiesenthal Center is part of what he called an ' imperialist campaign . ' VBG TO DT JJ NN NNP , NNP NNP VBD DT NN IN DT NN IN DT JJ NNP NNP NNP VBZ NN IN WP PRP VBD DT `` NN NN . `` The Wiesenthal Center had asked Mr. Chavez to apologize for comments he made in a Christmas Eve speech regarding , ' descendants of those who crucified Christ ' and those who ' took the world 's riches for themselves . ' DT NNP NNP VBD VBN NNP NNP TO VB IN NNS PRP VBD IN DT NNP NNP NN VBG , `` NNS IN DT WP VBD NNP `` CC DT WP `` VBD DT NN POS NNS IN PRP . `` A group of Venezuelan Jewish leaders on Friday defended the president and criticized the Wiesenthal Center for speaking out without consulting the Venezuelan Jewish community . DT NN IN JJ JJ NNS IN NNP VBD DT NN CC VBD DT NNP NNP IN VBG RP IN VBG DT JJ JJ NN . The group says Mr. Chavez did not specifically target Jews in his speech . DT NN VBZ NNP NNP VBD RB RB VB NNS IN PRP$ NN . The group also said the world 's Jews must learn to work together . DT NN RB VBD DT NN POS NNPS MD VB TO VB RB . Syria 's ruling Baath party has endorsed political and security reforms that include relaxing the country 's long-standing state of emergency laws . NNP POS NN NNP NN VBZ VBN JJ CC NN NNS WDT VBP VBG DT NN POS JJ NN IN NN NNS . Other recommendations include allowing greater media freedoms , more political parties and provisions for addressing grievances of the country 's Kurdish community , which has long complained of discrimination . JJ NNS VBP VBG JJR NNS NNS , RBR JJ NNS CC NNS IN VBG NNS IN DT NN POS JJ NN , WDT VBZ RB VBN IN NN . The party recommendations were broadcast Thursday on Syrian state news media . DT NN NNS VBD VBN NNP IN JJ NN NN NNS . They are expected to be voted on by the full party congress later today , but are still a long way from being implemented by parliament . PRP VBP VBN TO VB VBN IN IN DT JJ NN NN RB NN , CC VBP RB DT JJ NN IN VBG VBN IN NN . Analysts say it could take more than a year for the recommendations to take effect , and that they could be changed before then . NNS VBP PRP MD VB JJR IN DT NN IN DT NNS TO VB NN , CC IN PRP MD VB VBN IN RB . The Baath Party has held power since 1963 , and comes under frequent criticism for alleged human rights violations and repressive emergency laws . DT NNP NNP VBZ VBN NN IN CD , CC VBZ IN JJ NN IN VBN JJ NNS NNS CC JJ NN NNS . China 's official news agency says 96 miners are missing following an explosion at a coal mine in the country 's northern province of Hebei . NNP POS JJ NN NN VBZ CD NNS VBP VBG VBG DT NN IN DT NN NN IN DT NN POS JJ NN IN NNP . In the country 's latest mine accident , Xinhua said some 123 people were underground when the blast occurred , but 27 later escaped . IN DT NN POS JJS NN NN , NNP VBD DT CD NNS VBD RB WRB DT NN VBD , CC CD RB VBD . Overall , at least 171 people have died in Chinese mine accidents in the last two weeks . RB , IN JJS CD NNS VBP VBN IN JJ NN NNS IN DT JJ CD NNS . At a coal mine in Henan province , officials said divers would search flooded mine shafts for 42 workers missing since Friday when a nearby river overflowed . IN DT NN NN IN NNP NN , NNS VBD NNS MD VB VBN NN NNS IN CD NNS VBG IN NNP WRB DT JJ NN VBN . Attempts to pump water out of the mine have been unsuccessful . NNS TO VB NN IN IN DT NN VBP VBN JJ . China 's mines are the deadliest in the world , with thousands of miners killed each year . NNP POS NNS VBP DT JJS IN DT NN , IN NNS IN NNS VBN DT NN . The recent series of deadly accidents . DT JJ NN IN JJ NNS . Colombian security forces say they are investigating an alleged attempt to kill President Alvaro Uribe after an explosion in a building close to an airport , shortly before the president 's arrival there . JJ NN NNS VBP PRP VBP VBG DT JJ NN TO VB NNP NNP NNP IN DT NN IN DT NN NN TO DT NN , RB IN DT NN POS NN RB . Officials say the blast occurred Thursday in the city Neiva about 230 kilometers south of Bogota . NNS VBP DT NN VBD NNP IN DT NN NNP IN CD NNS RB IN NNP . They found what appeared to be a homemade rocket and two grenades . PRP VBD WP VBD TO VB DT JJ NN CC CD NNS . The officials believe the devices exploded prematurely and suspect the rebel Revolutionary Armed Forces of Colombia , FARC , may be behind the alleged plot . DT NNS VBP DT NNS VBD RB CC VB DT NN JJ JJ NNS IN NNP , NNP , MD VB IN DT JJ NN . President Uribe later arrived safely at the airport . NNP NNP RB VBD RB IN DT NN . With the support of the United States , Mr. Uribe is waging a campaign against armed insurgents in Colombia . IN DT NN IN DT NNP NNPS , NNP NNP VBZ VBG DT NN IN JJ NNS IN NNP . A Kenyan minister personally intervened to help police rescue five singers who say they were being held against their will in a Nairobi nightclub . DT JJ NN RB VBD TO VB NNS VB CD NNS WP VBP PRP VBD VBG VBN IN PRP$ NN IN DT NNP NN . Kenyan police say Immigration Minister Jebii Kilimo received a text message about the women on her mobile phone , and alerted police , who raided the nightclub late Tuesday and rescued the singers . JJ NNS VBP NNP NNP NNP NNP VBD DT NN NN IN DT NNS IN PRP$ JJ NN , CC VBD NNS , WP VBD DT NN JJ NNP CC VBD DT NNS . The five Indian women claimed their travel documents had been confiscated when they arrived in Kenya . DT CD JJ NNS VBD PRP$ NN NNS VBD VBN VBN WRB PRP VBD IN NNP . They say they were forced to sing in the club , and were locked up during the day . PRP VBP PRP VBD VBN TO VB IN DT NN , CC VBD VBN RP IN DT NN . Authorities say Ms. Kilimo took the women to an unknown destination for safe custody . NNS VBP NNP NNP VBD DT NNS TO DT JJ NN IN JJ NN . Kenyan police are investigating the incident . JJ NNS VBP VBG DT NN . Pope Benedict XVI has extended greetings to Orthodox Christians as they celebrate Christmas Eve on the Julian calendar . NNP NNP NNP VBZ VBN NNS TO NNP NNPS IN PRP VBP NNP NNP IN DT NNP NN . The pontiff made his comment Friday to thousands of pilgrims gathered in Saint Peter 's Square as Roman Catholics celebrated the feast of the Epiphany saying the light of Christianity continues to spread . DT NN VBD PRP$ NN NNP TO NNS IN NNS VBN IN NNP NNP POS NNP IN NNP NNPS VBD DT NN IN DT NNP VBG DT NN IN NNP VBZ TO VB . In Moscow , the head of the Russian Orthodox Church , Patriarch Alexy , urged believers to mark Christmas with good deeds . IN NNP , DT NN IN DT JJ NNP NNP , NNP NNP , VBD NNS TO VB NNP IN JJ NNS . Russia 's Itar-Tass news agency says he urged the faithful to pool their efforts to allow the joy of Christmas to enter every home . NNP POS NNP NN NN VBZ PRP VBD DT NN TO VB PRP$ NNS TO VB DT NN IN NNP TO VB DT NN . Russia 's Orthodox Church did not accept the ' new ' calendar introduced by Pope Gregory XII in 1582 , and celebrates Christmas about two weeks later than most Christians . NNP POS NNP NNP VBD RB VB DT `` JJ `` NN VBN IN NNP NNP NNP IN CD , CC VBZ NNP IN CD NNS RB IN JJS NNS . Russian President Vladimir Putin attended a Christmas Eve service at a cathedral in the Siberian city of Yakutsk . JJ NNP NNP NNP VBD DT NNP NNP NN IN DT NN IN DT JJ NN IN NNP . The head of Cuba 's parliament is offering to support Iran in its fight to develop nuclear energy within Iranian borders . DT NN IN NNP POS NN VBZ VBG TO VB NNP IN PRP$ NN TO VB JJ NN IN JJ NNS . Speaker of parliament Ricardo Alarcon voiced solidarity Thursday in a meeting with the visiting speaker of Iran 's parliament , Gholam Ali Haddad Adel . NNP IN NN NNP NNP VBD NN NNP IN DT NN IN DT VBG NN IN NNP POS NN , NNP NNP NNP NNP . Iran resumed enrichment of uranium for nuclear fuel earlier this week , despite international pressure against the move . NNP VBD NN IN NN IN JJ NN RBR DT NN , IN JJ NN IN DT NN . Haddad Adel is on a two-day visit to Cuba after spending Wednesday in Venezuela , where he thanked the government for its support on nuclear issues . NNP NNP VBZ IN DT JJ NN TO NNP IN VBG NNP IN NNP , WRB PRP VBD DT NN IN PRP$ NN IN JJ NNS . Before leaving Cuba , he is expected to meet with Cuban Foreign Minister Felipe Perez Roque and Vice President Carlos Lage . IN VBG NNP , PRP VBZ VBN TO VB IN JJ NNP NNP NNP NNP NNP CC NNP NNP NNP NNP . Venezuela and Cuba have both opposed a move by the U.N. nuclear agency to report Iran as noncompliant with atomic energy regulations . NNP CC NNP VBP DT VBN DT NN IN DT NNP JJ NN TO VB NNP IN JJ IN JJ NN NNS . China 's minister for Taiwan affairs arrives in Washington Tuesday for talks with U.S. officials . NNP POS NN IN NNP NNS VBZ IN NNP NNP IN NNS IN NNP NNS . A U.S. State Department spokesman says Chen Yunlin will meet with Deputy Secretary of State Richard Armitage and other officials for talks on a variety of issues between China and Taiwan , including China 's proposed anti-secessionist law . DT NNP NNP NNP NN VBZ NNP NNP MD VB IN NNP NNP IN NNP NNP NNP CC JJ NNS IN NNS IN DT NN IN NNS IN NNP CC NNP , VBG NNP POS VBN JJ NN . China says the sole purpose of the legislation , to be considered by the country 's parliament in March , is to contain Taiwan 's separatist forces and promote peace and stability in the region . NNP VBZ DT JJ NN IN DT NN , TO VB VBN IN DT NN POS NN IN NNP , VBZ TO VB NNP POS JJ NNS CC VB NN CC NN IN DT NN . Taiwan says the measure is aimed at suppressing the island . NNP VBZ DT NN VBZ VBN IN VBG DT NN . China considers Taiwan part of its territory and has threatened to take the island by force if it makes moves toward independence . NNP VBZ NNP NN IN PRP$ NN CC VBZ VBN TO VB DT NN IN NN IN PRP VBZ NNS IN NN . Russian news reports say a court ruled Monday that Mikhail Khodorkovsky and his business partner are guilty of embezzling property . JJ NN NNS VBP DT NN VBD NNP IN NNP NNP CC PRP$ NN NN VBP JJ IN VBG NN . The verdict means the two have been found guilty of stealing oil from Khodorkovsky 's now-defunct company Yukos . DT NN VBZ DT CD VBP VBN VBN JJ IN VBG NN IN NNP POS JJ NN NNP . The judge has yet to announce a sentence . DT NN VBZ RB TO VB DT NN . Former chief executive of Yukos , Khodorkovsky - once Russia 's richest man - and his partner , Platon Lebedev , are accused of embezzling 350 million tons of oil and laundering about $ 25 billion in proceeds . JJ JJ NN IN NNP , NNP : RB NNP POS JJS NN : CC PRP$ NN , NNP NNP , VBP VBN IN VBG CD CD NNS IN NN CC NN IN $ CD CD IN NNS . Both defendants deny the charges , saying they were framed for opposing Kremlin policies . DT NNS VBP DT NNS , VBG PRP VBD VBN IN VBG NNP NNS . Khodorkovsky is currently nearing the end of an 8-year sentence for fraud and tax evasion . NNP VBZ RB VBG DT NN IN DT JJ NN IN NN CC NN NN . The widow of Wall Street Journal reporter Daniel Pearl has sued al-Qaida , other radical groups and one of Pakistan 's largest banks , blaming them for the torture and murder of her husband . DT NN IN NNP NNP NNP NN NNP NNP VBZ VBN NNP , JJ JJ NNS CC CD IN NNP POS JJS NNS , VBG PRP IN DT NN CC NN IN PRP$ NN . In her lawsuit , Mariane Pearl alleges Habib Bank Limited knowingly provided financial services to charities linked to extremist groups . IN PRP$ NN , NNP NNP VBZ NNP NNP NNP RB VBD JJ NNS TO NNS VBN TO VB NNS . It says with the bank 's backing , terrorists kidnapped , tortured and beheaded Daniel Pearl and broadcast the images . PRP VBZ IN DT NN POS NN , NNS VBD , VBD CC VBD NNP NNP CC VBD DT NNS . The suit seeks an unspecified amount of money . DT NN VBZ DT JJ NN IN NN . Daniel Pearl was the South Asia bureau chief of the Journal when he was kidnapped in the Pakistani city of Karachi in January 2002 while seeking an interview with suspected Islamist militants . NNP NNP VBD DT NNP NNP NN NN IN DT NNP WRB PRP VBD VBN IN DT JJ NN IN NNP IN NNP CD IN VBG DT NN IN JJ NNP NNS . A videotape of Pearl 's killing was sent to the U.S. embassy in Karachi . DT NN IN NNP POS NN VBD VBN TO DT NNP NN IN NNP . British-born militant Omar Sheikh and three other men have been convicted of his murder . JJ JJ NNP NNP CC CD JJ NNS VBP VBN VBN IN PRP$ NN . The Palestinian parliament has approved the government proposed by Hamas , clearing the way for the Islamic militant group to take office . DT JJ NN VBZ VBN DT NN VBN IN NNP , VBG DT NN IN DT NNP JJ NN TO VB NN . Lawmakers voted on the Cabinet Tuesday , one day after Prime Minister-designate Ismail Haniyeh presented his government . NNS VBD IN DT NNP NNP , CD NN IN NNP NNP NNP NNP VBD PRP$ NN . The approval was expected because Hamas holds a majority in the parliament . DT NN VBD VBN IN NNP VBZ DT NN IN DT NN . On Monday , Mr. Haniyeh called on the Quartet of mediators - the United States , the European Union , Russia and the United Nations - to help reach peace in the Middle East . IN NNP , NNP NNP VBD IN DT NN IN NNS IN DT NNP NNPS , DT NNP NNP , NNP CC DT NNP NNPS : TO VB VB NN IN DT NNP NNP . But he added his militant group will not disarm or recognize Israel . CC PRP VBD PRP$ JJ NN MD RB VB CC VB NNP . U.S. State Department spokesman Sean McCormack says Hamas must take those steps before it can take part in talks . NNP NNP NNP NN NNP NNP VBZ NNP MD VB DT NNS IN PRP MD VB NN IN NNS . The U.S. Senate Thursday confirmed General David Petraeus as the country 's top military commander in the Middle East . DT NNP NNP NNP VBD NNP NNP NNP IN DT NN POS JJ JJ NN IN DT NNP NNP . Lawmakers voted 95 - 2 to make General Petraeus the new leader of the U.S. Central Command , which oversees American forces in the Middle East , East Africa and Central Asia . NNS VBD CD : CD TO VB NNP NNP DT JJ NN IN DT NNP NNP NNP , WDT VBZ JJ NNS IN DT NNP NNP , NNP NNP CC NNP NNP . The Senate is expected to approve the nomination of Lt. General Raymond Odierno to replace Petraeus as the top U.S. commander in Iraq . DT NNP VBZ VBN TO VB DT NN IN NNP NNP NNP NNP TO VB NNP IN DT JJ NNP NN IN NNP . General Petraeus helped quell growing disapproval of the war in Iraq by providing Congress with progress reports and warning that the sudden withdrawal of U.S. troops could plunge Iraq into chaos and reverse progress that had been made . NNP NNP VBD VB VBG NN IN DT NN IN NNP IN VBG NNP IN NN NNS CC NN IN DT JJ NN IN NNP NNS MD VB NNP IN NN CC NN NN WDT VBD VBN VBN . During his confirmation hearings in May , General Petraeus said he expected to recommend further troop withdrawals before leaving his post in September . IN PRP$ NN NNS IN NNP , NNP NNP VBD PRP VBD TO VB JJ NN NNS IN VBG PRP$ NN IN NNP . The recommendation would follow a 45-day assessment period over coming months . DT NN MD VB DT JJ NN NN IN VBG NNS . The prime ministers of Ireland and Britain have presented Catholic leaders meeting in Dublin and Protestant leaders in London a blueprint aimed at breaking the deadlock on Northern Ireland power-sharing . DT JJ NNS IN NNP CC NNP VBP VBN JJ NNS NN IN NNP CC JJ NNS IN NNP DT NN VBN IN VBG DT NN IN NNP NNP NN . The plan offered Wednesday by British Prime Minister Tony Blair and Irish Prime Minister Bertie Ahern includes a commitment by the Irish Republican Army to permit Catholic and Protestant clerics to witness the organization 's disarmament . DT NN VBN NNP IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP VBZ DT NN IN DT JJ NNP NNP TO VB NNP CC NNP NNS TO NN DT NN POS NN . The IRA proposal falls short of the detailed arms inventory sought by hard-line Protestants but opposed by the Catholic Sinn Fein party . DT NNP NN VBZ JJ IN DT JJ NNS NN VBN IN JJ NNPS CC VBN IN DT NNP NNP NNP NN . The two prime ministers have given the Northern Ireland adversaries one week to respond in a first step toward a return to the power-sharing arrangement created under the 1998 Good Friday peace accord . DT CD JJ NNS VBP VBN DT NNP NNP VBZ CD NN TO VB IN DT JJ NN IN DT NN TO DT JJ NN VBN IN DT CD JJ NNP NN NN . That agreement was abandoned two years ago after Protestant lawmakers accused their Sinn Fein counterparts of spying . DT NN VBD VBN CD NNS RB IN JJ NNS VBD PRP$ NNP NNP NNS IN VBG . British prime minister says it wants other allies - not including the United States - to send another 5,000 troops as well . JJ JJ NN VBZ PRP VBZ JJ NNS IN RB VBG DT NNP NNPS : TO VB DT CD NNS RB RB . The White House says President Bush will return to the stricken Gulf Coast Sunday - this time for an overnight visit in Louisiana . DT NNP NNP VBZ NNP NNP MD VB TO DT JJ NNP NNP NNP IN DT NN IN DT JJ NN IN NNP . Mr. Bush has received increasing criticism for the government response to the national disaster wrought by Hurricane Katrina . NNP NNP VBZ VBN VBG NN IN DT NN NN TO DT JJ NN VBN IN NNP NNP . White House spokesman Scott McClellan said Friday the president is still looking at ideas for a federal ' czar ' to coordinate relief efforts . NNP NNP NN NNP NNP VBD NNP DT NN VBZ RB VBG IN NNS IN DT JJ `` NN `` TO VB NN NNS . Mr. Bush thanked 100 countries around the world for their offers of assistance and support , singling out Afghanistan and Sri Lanka . NNP NNP VBD CD NNS IN DT NN IN PRP$ NNS IN NN CC NN , VBG RP NNP CC NNP NNP . In New Orleans , authorities are stepping up pressure on residents who have refused to leave the devastated city to get out now . IN NNP NNP , NNS VBP VBG RP NN IN NNS WP VBP VBN TO VB DT JJ NN TO VB RP RB . Thousands of police and National Guard troops are going from house to house , trying to make everyone leave and marking homes where they find bodies . NNS IN NN CC NNP NNP NNS VBP VBG IN NN TO NN , VBG TO VB DT NN CC VBG NNS WRB PRP VBP NNS . An estimate 5,000 to 10,000 residents remain in New Orleans , despite contaminated floodwaters and several raging fires . DT NN CD TO CD NNS VBP IN NNP NNP , IN VBN NNS CC JJ VBG NNS . A United Nations spokesman has condemned the use of violence in the run-up to the Democratic Republic of Congo 's elections . DT NNP NNP NN VBZ VBN DT NN IN NN IN DT NN TO DT JJ NNP IN NNP POS NNS . Spokesman Jean-Tobie Okala in Kinshasa says at least four people died Monday , including one National Army soldier , when heavily armed gunmen opened fire on a political rally in Congo 's North Kivu province . NNP NNP NNP IN NNP VBZ IN JJS CD NNS VBD NNP , VBG CD NNP NNP NN , WRB RB JJ NNS VBD NN IN DT JJ NN IN NNP POS NNP NNP NN . At least six people were seriously injured in the attack . IN JJS CD NNS VBD RB VBN IN DT NN . The identity of the gunmen is unknown . DT NN IN DT NNS VBZ JJ . Speaking to VOA , Okala said the U.N. condemns the use of violence to , ' push people around ahead of the election . ' VBG TO NNP , NNP VBD DT NNP VBZ DT NN IN NN TO , `` VBP NNS IN RB IN DT NN . `` Many opposition groups have accused the government of incumbent president Joseph Kabila of trying to gain an unfair advantage in the July 30 polls . JJ NN NNS VBP VBN DT NN IN JJ NN NNP NNP IN VBG TO VB DT JJ NN IN DT NNP CD NNS . Some international election monitors warn the government is threatening the fairness of the electoral process through unjustified arrests and intimidation . DT JJ NN NNS VBP DT NN VBZ VBG DT NN IN DT JJ NN IN JJ NNS CC NN . U.S. military officials have announced they are delaying the trial of an Australian man accused of fighting for Afghanistan 's ousted Taleban regime . NNP JJ NNS VBP VBN PRP VBP VBG DT NN IN DT JJ NN VBN IN VBG IN NNP POS JJ NNP NN . The presiding officer , Colonel Peter Brownback , granted the delay Wednesday to allow for what he called a full and fair trial of Australian David Hicks . DT VBG NN , NNP NNP NNP , VBD DT NN NNP TO VB IN WP PRP VBD DT JJ CC JJ NN IN JJ NNP NNP . Mr. Hicks has been detained at Guantanamo Bay since he was captured in late 2001 . NNP NNP VBZ VBN VBN IN NNP NNP IN PRP VBD VBN IN JJ CD . Officials said the trial has been moved to March 15 from its originally scheduled date of January 10 . NNS VBD DT NN VBZ VBN VBN TO NNP CD IN PRP$ RB VBN NN IN NNP CD . David Hicks was among the first of the detainees at Guantanamo to be arraigned before a military tribunal . NNP NNP VBD IN DT NN IN DT NNS IN NNP TO VB VBN IN DT JJ NN . He has pleaded not guilty to charges of aiding the enemy , conspiracy to commit war crimes and attempted murder while fighting alongside the Taleban . PRP VBZ VBN RB JJ TO NNS IN VBG DT NN , NN TO VB NN NNS CC JJ NN IN VBG IN DT NNP . Mr. Hicks ' father , Terry , welcomed the delay , saying the defense needs more time to plan its case . NNP NNP POS NN , NNP , VBD DT NN , VBG DT NN VBZ JJR NN TO VB PRP$ NN . Major oil companies have been reporting sharp increases in profits this week , sparking calls from some U.S. politicians for an investigation , a possible tax hike on profits , and new refinery construction to ease supply problems that boosted energy prices to record levels . JJ NN NNS VBP VBN VBG JJ NNS IN NNS DT NN , VBG NNS IN DT NNP NNS IN DT NN , DT JJ NN NN IN NNS , CC JJ NN NN TO VB NN NNS WDT VBD NN NNS TO NN NNS . The latest third quarter profit report came from Chevron on Friday , showing a $ 3.6 billion net income , and a 12-percent hike in profit . DT JJS JJ NN NN NN VBD IN NNP IN NNP , VBG DT $ CD CD JJ NN , CC DT JJ NN IN NN . Earlier , oil giant ExxonMobil showed a 75 percent profit hike and a nearly $ 10 billion net . RB , NN NN NNP VBD DT CD NN NN NN CC DT RB $ CD CD NN . U.S. Senate Majority Leader Bill Frist , a Republican , has asked colleagues to question top oil company executives at congressional hearings . NNP NNP NNP NNP NNP NNP , DT NNP , VBZ VBN NNS TO VB JJ NN NN NNS IN JJ NNS . Democratic Senator Hillary Clinton criticized Republicans for opposing a plan to help the poor pay heating bills , and urged oil companies to invest in new energy technologies . JJ NNP NNP NNP VBD NNS IN VBG DT NN TO VB DT JJ VB NN NNS , CC VBD NN NNS TO VB IN JJ NN NNS . Ecuador 's president , Rafael Correa , is set to travel to Saudi Arabia this week for the upcoming OPEC summit , 15 years after the country left the international oil cartel . NNP POS NN , NNP NNP , VBZ VBN TO VB TO NNP NNP DT NN IN DT JJ NNP NN , CD NNS IN DT NN VBD DT JJ NN NN . OPEC countries ' heads of states will meet in the Saudi capital , Riyadh , on Saturday November 17 for the two-day summit . NNP NNS POS NNS IN NNS MD VB IN DT JJ NN , NNP , IN NNP NNP CD IN DT JJ NN . Ecuador left OPEC in 1992 , but officials announced last month the country would officially rejoin the cartel at its next summit . NNP VBD NNP IN CD , CC NNS VBD JJ NN DT NN MD RB VB DT NN IN PRP$ JJ NN . Ecuador produces more than 5,00,000 barrels of crude oil a day , making it the fifth largest producer in South America . NNP VBZ JJR IN CD NNS IN JJ NN DT NN , VBG PRP DT JJ JJS NN IN NNP NNP . Venezuela is the only other Latin American country in OPEC . NNP VBZ DT JJ JJ JJ JJ NN IN NNP . A Russian rights group says at least 2.5 million children in Russia are homeless . DT JJ NNS NN VBZ IN JJS CD CD NNS IN NNP VBP JJ . The chairman of the group - known as ' The Children are Russia 's Future ' told reporters Wednesday over 30,000 children and teenagers go missing every year in Russia . DT NN IN DT NN : VBN IN `` DT NNS VBP NNP POS NN `` VBD NNS NNP IN CD NNS CC NNS VBP VBG DT NN IN NNP . He also said over the past five years Russian authorities have uncovered 190 networks trafficking children . PRP RB VBD IN DT JJ CD NNS JJ NNS VBP VBN CD NNS VBG NNS . Saturday , March 8th is International Women 's Day , a day to celebrate the economic , political and social achievements of women . NNP , NNP CD VBZ NNP NNP POS NNP , DT NN TO VB DT JJ , JJ CC JJ NNS IN NNS . One woman who has been an inspiration for women in Afghanistan is Massouda Jalal , who ran for the nation 's highest office in its first presidential election in October 2004 . CD NN WP VBZ VBN DT NN IN NNS IN NNP VBZ NNP NNP , WP VBD IN DT NN POS JJS NN IN PRP$ JJ JJ NN IN NNP CD . Although Jalal attracted enthusiastic and widespread support , Afghanistan 's current President Hamid Karzai ultimately defeated her . IN NNP VBD JJ CC JJ NN , NNP POS JJ NNP NNP NNP RB VBD PRP . Now a new documentary film called ' Frontrunner ' is re-examining Massouda Jalal 's presidential run . RB DT JJ NN NN VBD `` NNP `` VBZ JJ NNP NNP POS JJ NN . As VOA 's George Dwyer reports the film is offering viewers some important insights , about personal courage and political transformation . IN NNP POS NNP NNP VBZ DT NN VBZ VBG NNS DT JJ NNS , IN JJ NN CC JJ NN . Jim Bertel narrates . NNP NNP VBZ . The new head of the U.S. Central Intelligence Agency has told employees to expect more changes in the agency 's organization and personnel . DT JJ NN IN DT NNP NNP NNP NNP VBZ VBN NNS TO VB JJR NNS IN DT NN POS NN CC NNS . CIA Director Porter Goss sent out an e-mail message Monday , a few hours after two top CIA officials resigned . NNP NNP NNP NNP VBD RP DT JJ NN NNP , DT JJ NNS IN CD JJ NNP NNS VBD . The officials , Deputy Director for Operations Stephen Kappes and his deputy Michael Sulik , had reportedly clashed with aides that Mr. Goss brought with him from Congress , where he chaired the House of Representatives Intelligence Committee . DT NNS , NNP NNP IN NNP NNP NNP CC PRP$ NN NNP NNP , VBD RB VBN IN NNS IN NNP NNP VBD IN PRP IN NNP , WRB PRP VBD DT NNP IN NNP NNP NNP . Two other top CIA officials announced their resignations last week . CD JJ JJ NNP NNS VBD PRP$ NNS JJ NN . In his e-mail , Mr. Goss appeared to rebut charges from Democrats that he has a partisan agenda favoring President Bush . IN PRP$ NN , NNP NNP VBD TO VB NNS IN NNS IN PRP VBZ DT JJ NN VBG NNP NNP . He told employees to ' let the facts alone speak to the policymakers . ' PRP VBD NNS TO `` VB DT NNS RB VBP TO DT NNS . `` The president named Mr. Goss to head the CIA in August , in part to reform the agency many have criticized as ill equipped to fight the war on terror . DT NN VBD NNP NNP TO VB DT NNP IN NNP , IN NN TO VB DT NN NN VBP VBN IN RB VBN TO VB DT NN IN NN . In National Football League action Monday night , Denver 's Mike Anderson scored on a 44-yard touchdown run and Rod Smith reached a career milestone as the host Broncos rolled over the Kansas City Chiefs 30-Oct . IN NNP NNP NNP NN NNP NN , NNP POS NNP NNP VBD IN DT JJ NN NN CC NNP NNP VBD DT NN NN IN DT NN NNP VBD IN DT NNP NNP NNPS CD . Smith , who caught a touchdown , finished with seven catches for 80 yards , putting him over 10,000 receiving yards for his career . NNP , WP VBD DT NN , VBD IN CD NNS IN CD NNS , VBG PRP IN CD VBG NNS IN PRP$ NN . He is the 24th player in league history to reach the mark and first undrafted player to do so . PRP VBZ DT JJ NN IN NN NN TO VB DT NN CC JJ JJ NN TO VB RB . Denver quarterback Jake Plummer also scored on a one-yard touchdown run and kicker Jason Elam kicked three field goals . NNP NN NNP NNP RB VBD IN DT JJ NN NN CC NN NNP NNP VBD CD NN NNS . Kansas City 's lone touchdown came with two minutes to go , a pass from quarterback Trent Green to receiver Samie Parker . NNP NNP POS JJ NN VBD IN CD NNS TO VB , DT NN IN NN NNP NNP TO NN NNP NNP . It was Green 's first touchdown pass of the season . PRP VBD NNP POS JJ JJ NN IN DT NN . Israel 's top general has announced the military will investigate allegations that Israeli soldiers abused and photographed the bodies of Palestinian suicide bombers and those killed during Israeli military operations . NNP POS JJ NN VBZ VBN DT NN MD VB NNS IN JJ NNS VBD CC VBD DT NNS IN JJ NN NNS CC DT VBN IN JJ JJ NNS . Lieutenant General Moshe Yaalon made the announcement Friday , responding to abuse charges in Israel 's largest selling newspaper , Yediot Aharonot . NNP NNP NNP NNP VBD DT NN NNP , VBG TO VB NNS IN NNP POS JJS NN NN , NNP NNP . General Yaalon condemned the alleged abuses and said maintaining the army 's ethical strength is as important as sustaining its military power . NNP NNP VBD DT JJ NNS CC VBD VBG DT NN POS JJ NN VBZ RB JJ IN VBG PRP$ JJ NN . The newspaper 's report included soldiers ' accounts of several incidents , including one in which troops put a cigarette in the mouth of a dead suicide bomber and then posed for photographs with the corpse . DT NN POS NN VBD NNS POS NNS IN JJ NNS , VBG CD IN WDT NNS VBD DT NN IN DT NN IN DT JJ NN NN CC RB VBD IN NNS IN DT NN . Another incident details the shooting death of an apparently unarmed Palestinian man , whose remains were then strapped to the hood of a jeep and driven back to base . DT NN NNS DT NN NN IN DT RB JJ JJ NN , WP$ NNS VBD RB VBN TO DT NN IN DT NN CC VBN RB TO NN . North Korea released a South Korean fishing boat and its seven-man crew Tuesday , after asking South Korea for a shipment of rice , cement and heavy equipment to help it recover from recent flooding . NNP NNP VBD DT JJ JJ NN NN CC PRP$ JJ NN NNP , IN VBG NNP NNP IN DT NN IN NN , NN CC JJ NN TO VB PRP VB IN JJ NN . Pyongyang announced on Monday that it would free the squid-fishing boat and its crew of four South Koreans and three Chinese seized a month ago for alleged illegal fishing . NNP VBD IN NNP IN PRP MD VB DT JJ NN CC PRP$ NN IN CD NNP NNS CC CD NNS VBD DT NN RB IN JJ JJ NN . North Korea called the release a ' humanitarian ' gesture . NNP NNP VBD DT NN DT `` JJ `` NN . South Korean media said Tuesday that freeing the ship and its crew was a step toward receiving food aid . JJ JJ NNS VBD NNP IN VBG DT NN CC PRP$ NN VBD DT NN IN VBG NN NN . The North 's aid request came after Seoul offered last week to provide $ 8.5 million in emergency aid , including food , relief materials and first aid kits . DT NNP POS NN NN VBD IN NNP VBD JJ NN TO VB $ CD CD IN NN NN , VBG NN , NN NNS CC JJ NN NNS . That offer did not include rice or construction equipment and supplies . DT NN VBD RB VB NN CC NN NN CC NNS . The Unification Ministry said Tuesday that the South Korean government is reviewing the request . DT NNP NNP VBD NNP IN DT JJ JJ NN VBZ VBG DT NN . The so-called ' peace bridge ' linking Indian and Pakistani portions of Kashmir has been reopened after parts badly damaged in last month 's earthquake were repaired . DT JJ `` NN NN `` VBG JJ CC JJ NNS IN NNP VBZ VBN VBN IN NNS RB VBN IN JJ NN POS NN VBD VBN . An Indian army spokesman says the reopening has enabled faster delivery of relief supplies to villages on the Pakistani side that were flattened by the earthquake . DT JJ NN NN VBZ DT NN VBZ VBN JJR NN IN NN NNS TO NNS IN DT JJ NN WDT VBD VBN IN DT NN . He said the final stretch of the road -- between the town of Uri in India and the Kaman Post crossing point on the military Line of Control -- was cleared Thursday . PRP VBD DT JJ NN IN DT NN : IN DT NN IN NNP IN NNP CC DT NNP NNP VBG NN IN DT JJ NN IN NNP : VBD VBN NNP . Last month , India and Pakistan decided to open five check points along the de~facto border , including at Kaman Post , to hasten relief efforts for quake victims . JJ NN , NNP CC NNP VBD TO VB CD NN NNS IN DT JJ NN , VBG IN NNP NNP , TO VB NN NNS IN NN NNS . As part of an ongoing peace process between the two arch-rivals , the highway was re-opened six months ago after nearly 60 years to relaunch a bus service connecting the two Kashmiri capitals , Srinagar and Muzaffarabad . IN NN IN DT JJ NN NN IN DT CD NNS , DT NN VBD JJ CD NNS RB IN RB CD NNS TO VB DT NN NN VBG DT CD JJ NNS , NNP CC NNP . Iranian President Mahmoud Ahmadinejad has called for expansion of ties between his country and Iraq following a meeting with Iraqi Prime Minister Nouri al-Maliki . JJ NNP NNP NNP VBZ VBN IN NN IN NNS IN PRP$ NN CC NNP VBG DT NN IN JJ NNP NNP NNP NNP . Iran 's state news agency ( IRNA ) reports that President Ahmadinejad said stronger relations between the two nations will help Iraq 's development and stability . NNP POS NN NN NN LRB NNP RRB VBZ IN NNP NNP VBD JJR NNS IN DT CD NNS MD VB NNP POS NN CC NN . The two leaders met late Sunday as part of Mr. Maliki 's state visit to Iran , his third since he became prime minister . DT CD NNS VBD RB NNP IN NN IN NNP NNP POS NN NN TO NNP , PRP$ JJ IN PRP VBD JJ NN . President Ahmadinejad made a landmark visit to Iraq in March . NNP NNP VBD DT JJ NN TO NNP IN NNP . Earlier today , the Iraqi prime minister met with Iranian Foreign Minister Manouchehr Mottaki and he assured Tehran that a proposed U.S.-Iraq security agreement will not harm Iran . RBR NN , DT JJ JJ NN VBD IN JJ NNP NNP NNP NNP CC PRP VBD NNP IN DT VBN JJ NN NN MD RB VB NNP . The comment comes as U.S. and Iraqi officials discuss a security deal that would allow American forces to remain in Iraq beyond December 31st , when their U.N. mandate expires . DT NN VBZ IN NNP CC JJ NNS VB DT NN NN WDT MD VB JJ NNS TO VB IN NNP IN NNP CD , WRB PRP$ NNP NN VBZ . Iran opposes such an agreement . NNP VBZ JJ DT NN . The sister of a Buddhist monk imprisoned by Burma 's military rulers for pro-democracy activities says her brother is on a hunger strike . DT NN IN DT NNP NN VBN IN NNP POS JJ NNS IN JJ NNS VBZ PRP$ NN VBZ IN DT NN NN . Khin Thu Htay tells VOA Burmese service that monk Ashin Gambira began the hunger strike 10 days ago after prison authorities blocked him from seeing her and other family members . NNP NNP NNP VBZ NNP JJ NN WDT VBD NNP NNP VBD DT NN NN CD NNS RB IN NN NNS VBD PRP IN VBG PRP$ CC JJ NN NNS . She says the family tried to visit him at a prison in the central region of Mandalay . PRP VBZ DT NN VBD TO VB PRP IN DT NN IN DT JJ NN IN NNP . The sister says Burmese authorities told her that several days later , Gambira was transferred to another prison Hkamti in a remote part of the northwestern Sagaing region . DT NN VBZ JJ NNS VBD PRP IN JJ NNS RB , NNP VBD VBN TO DT NN NNP IN DT JJ NN IN DT JJ NN NN . Courts in military-run Burma sentenced the monk last year to 68 years in prison for leading pro-democracy protests in 2007 . NNS IN JJ NNP VBD DT NN JJ NN TO CD NNS IN NN IN VBG JJ NNS IN CD . Burmese citizens began weeks of mass protests against the military in June 2007 before authorities crushed the demonstrations . JJ NNS VBD NNS IN JJ NNS IN DT JJ IN NNP CD IN NNS VBN DT NNS . The United Nations says at least 31 people were killed and thousands more were detained in the crackdown . DT NNP NNP VBZ IN JJS CD NNS VBD VBN CC NNS JJR VBD VBN IN DT NN . The leader of Venezuela 's ruling party is claiming victory in Sunday 's parliamentary elections . DT NN IN NNP POS NN NN VBZ VBG NN IN NNP POS JJ NNS . Willian Lara says President Hugo Chavez 's Fifth Republic Movement won 114 seats in the 167-seat National Assembly . NNP NNP VBZ NNP NNP NNP POS NNP NNP NNP VBD CD NNS IN DT JJ NNP NNP . Mr. Lara also says the rest of the Assembly 's contested seats will go to parties supportive of Mr. Chavez . NNP NNP RB VBZ DT NN IN DT NNP POS VBN NNS MD VB TO NNS JJ IN NNP NNP . Official results have yet to be announced . JJ NNS VBP RB TO VB VBN . Venezuela 's election chief estimates voter turnout at just 25 percent . NNP POS NN NN VBZ NN NN IN RB CD NN . Most opposition parties boycotted the election , accusing electoral officials of manipulating electronic voting machines and favoring the president . JJS NN NNS VBD DT NN , VBG JJ NNS IN VBG JJ NN NNS CC VBG DT NN . Mr. Chavez is accusing the United States of orchestrating the boycott . NNP NNP VBZ VBG DT NNP NNPS IN VBG DT NN . Washington denies the charges . NNP VBZ DT NNS . Meanwhile , officials say an explosion that damaged an oil pipeline in western Venezuelan state of Zulia late Saturday was an attempt to disrupt the elections . RB , NNS VBP DT NN WDT VBD DT NN NN IN JJ JJ NN IN NNP JJ NNP VBD DT NN TO VB DT NNS . Pakistani President Pervez Musharraf has canceled a scheduled trip to China for the opening of the Olympic games . JJ NNP NNP NNP VBZ VBN DT JJ NN TO NNP IN DT NN IN DT NNP NNS . Pakistan 's Foreign Ministry spokesman Mohammad Sadiq confirmed the cancellation Wednesday , but did not give an explanation . NNP POS NNP NNP NN NNP NNP VBD DT NN NNP , CC VBD RB VB DT NN . President Musharraf had planned to attend the opening ceremony in Beijing and meet with Chinese leaders . NNP NNP VBD VBN TO VB DT NN NN IN NNP CC VB IN JJ NNS . The change in plans comes as leaders of Pakistan 's ruling coalition met to discuss a number of issues , including the possible impeachment of Mr. Musharraf . DT NN IN NNS VBZ IN NNS IN NNP POS NN NN VBD TO VB DT NN IN NNS , VBG DT JJ NN IN NNP NNP . Pakistani People 's Party leader Asif Ali Zardari and former Prime Minister Nawaz Sharif spoke Tuesday , and also discussed restoring the country 's judiciary . JJ NNP POS NNP NN NNP NNP NNP CC JJ NNP NNP NNP NNP VBD NNP , CC RB VBD VBG DT NN POS NN . They are scheduled to meet again today . PRP VBP VBN TO VB RB NN . Mr. Musharraf declared a state of emergency last November and purged the Supreme Court , in order to halt any legal challenges to his presidency . NNP NNP VBD DT NN IN NN JJ NNP CC VBD DT NNP NNP , IN NN TO VB DT JJ NNS TO PRP$ NN . Nepal 's government says it has detained 43 people , top political leaders and other activists , for their ' own personal safety ' as well as to maintain law and order . NNP POS NN VBZ PRP VBZ VBN CD NNS , JJ JJ NNS CC JJ NNS , IN PRP$ `` JJ JJ NN `` RB RB IN TO VB NN CC NN . A Home Ministry statement Wednesday says 25 of the detainees are being held in government centers and the rest , under house arrest . DT NNP NNP NN NNP VBZ CD IN DT NNS VBP VBG VBN IN NN NNS CC DT NN , IN NN NN . Tuesday , nine United Nations human rights investigators called on Nepal 's King Gyanendra to restore democracy in the country . NNP , CD NNP NNPS JJ NNS NNS VBN IN NNP POS NNP NNP TO VB NN IN DT NN . The King dissolved the constitutional government , seized power , and declared a nationwide state of emergency on February first . DT NNP VBD DT JJ NN , VBD NN , CC VBD DT JJ NN IN NN IN NNP RB . The monarch and his hand-picked government curtailed most civil rights , including criticism of security forces , and banned protest rallies . DT NN CC PRP$ JJ NN VBD RBS JJ NNS , VBG NN IN NN NNS , CC VBD NN NNS . Nepal 's human rights groups say they plan to defy the ban by holding a protest demonstration on Thursday . NNP POS JJ NNS NNS VBP PRP VBP TO VB DT NN IN VBG DT NN NN IN NNP . A Jordanian military court has sentenced to jail 10 Islamic militants for plotting attacks on U.S. forces in Jordan and Iraq . DT JJ JJ NN VBZ VBN TO NN CD NNP NNS IN VBG NNS IN NNP NNS IN NNP CC NNP . The court handed out prison terms of two to five years . DT NN VBD RP NN NNS IN CD CC CD NNS . At least one of those found guilty has been linked to al-Qaida in Iraq leader Abu Musab al-Zarqawi . IN JJS CD IN DT VBN NN VBZ VBN VBN TO NNP IN NNP NN NNP NNP NNP . Ten other suspects , including a Syrian national , were found not-guilty . CD JJ NNS , IN DT JJ NN , VBD VBN JJ . The 17 were rounded up in 2005 . DT CD VBD VBN RP IN CD . They faced several charges , including plotting to attack U.S. troops who were training Iraqi forces in Jordan at the time . PRP VBD JJ NNS , VBG VBG TO VB NNP NNS WP VBD VBG JJ NNS IN NNP IN DT NN . They were also accused of plotting activity to undermine Jordan 's relations with another country . PRP VBD RB VBN IN VBG NN TO VB NNP POS NNS IN DT NN . Up to 140 people are feared dead in the Democratic Republic of Congo , after a crowded river boat overturned . IN TO CD NNS VBP VBN JJ IN DT JJ NNP IN NNP , IN DT JJ NN NN VBD . Officials said Thursday that the accident occurred on the Congo River in the western province of Bandundu . NNS VBD NNP IN DT NN VBD IN DT NNP NNP IN DT JJ NN IN NNP . Information Minister Lambert Mende said at least 80 people are confirmed dead , while local officials put the death toll higher . NNP NNP NNP NNP VBD IN JJS CD NNS VBP VBN JJ , IN JJ NNS VBD DT NN NN JJR . About 200 people were believed to be on the boat , which was also carrying merchandise from Bandundu to the capital , Kinshasa . RB CD NNS VBD VBN TO VB IN DT NN , WDT VBD RB VBG NN IN NNP TO DT NN , NNP . Officials say the boat was overloaded and unable to navigate through rough waters . NNS VBP DT NN VBD VBN CC JJ TO VB IN JJ NNS . Mende said rescuers are looking for more survivors . NNP VBD NNS VBP VBG IN JJR NNS . Fatal boat accidents are common in the DRC , where a lack of paved roads and the high cost of air travel forces many people to travel by boat , even if they do not know how to swim . JJ NN NNS VBP JJ IN DT NNP , WRB DT NN IN JJ NNS CC DT JJ NN IN NN NN NNS JJ NNS TO VB IN NN , RB IN PRP VBP RB VB WRB TO VB . The river vessels are often overcrowded and poorly maintained . DT NN NNS VBP RB JJ CC RB VBN . A slimy Justin Timberlake emerged victorious at the 20th annual Nickelodeon Kids ' Choice Awards . DT JJ NNP NNP VBD JJ IN DT JJ JJ NNP NNP POS NNP NNPS . Making good on his promise to make this year 's edition the messiest ever , the singer - who also hosted the show - was both dispenser and recipient of the signature green goo . VBG JJ IN PRP$ NN TO VB DT NN POS NN DT JJS RB , DT NN : WP RB VBD DT NN : VBD DT NN CC NN IN DT NN JJ NN . He took honors for Best Male Singer . PRP VBD NNS IN NNP NNP NNP . Other winners included Adam Sandler as favorite male movie star ; Dakota Fanning as favorite female movie star , and Ben Stiller , who took the evening 's top honor , the Wannabe Award . JJ NNS VBD NNP NNP IN JJ NN NN NN ; NNP NNP IN JJ JJ NN NN , CC NNP NNP , WP VBD DT NN POS JJ NN , DT NNP NNP . It signifies the celebrity the youthful voters most want to emulate . PRP VBZ DT NN DT JJ NNS RBS VBP TO VB . Nickelodeon says the lighthearted Kids ' Choice Awards last year received 25 million online votes . NNP VBZ DT JJ NNS POS NN NNS JJ NN VBD CD CD JJ NNS . The only African-American member of the United States Senate has begun a two-week tour of Africa . DT JJ JJ NN IN DT NNP NNPS NNP VBZ VBN DT JJ NN IN NNP . On Sunday , Senator Barack Obama visited the South African island where Nelson Mandela was imprisioned during his long fight against apartheid . IN NNP , NNP NNP NNP VBD DT JJ JJ NN WRB NNP NNP VBD VBN IN PRP$ JJ NN IN NN . Obama said the visit to Robben Island made him realize that everyday worries in the U.S. are ' fairly trivial ' compared to the struggle Mandela and other inmates went through . NNP VBD DT NN TO NNP NNP VBD PRP VB IN JJ NNS IN DT NNP VBP `` RB JJ `` VBN TO DT NN NNP CC JJ NNS VBD IN . Monday , Obama met with another anti-apartheid hero , South African archbishop Desmond Tutu , in Cape Town . NNP , NNP VBD IN DT JJ NN , NNP NNP NN NNP NNP , IN NNP NNP . Obama is due to visit his father 's home country of Kenya as well as Congo and Chad during the trip . NNP VBZ JJ TO VB PRP$ NN POS NN NN IN NNP RB RB IN NNP CC NNP IN DT NN . He told reporters today that he will probably get an HIV test while in Kenya , in order to promote AIDS-prevention awareness . PRP VBD NNS NN IN PRP MD RB VB DT NNP NN IN IN NNP , IN NN TO VB JJ NN . Obama was elected to the U.S. Senate in November 2004 , representing the U.S. state of Illinois . NNP VBD VBN TO DT NNP NNP IN NNP CD , VBG DT NNP NN IN NNP . U.S. Energy Secretary Samuel Bodman says the United States will offer incentives to spur companies to construct six nuclear power plants . NNP NNP NNP NNP NNP VBZ DT NNP NNPS MD VB NNS TO VB NNS TO VB CD JJ NN NNS . Bodman Friday announced a plan that will provide risk insurance coverage against bureaucratic and legal issues that make construction of the plants more expensive . NNP NNP VBD DT NN WDT MD VB NN NN NN IN JJ CC JJ NNS WDT VBP NN IN DT NNS RBR JJ . The plan would provide up to $ 500 million in coverage for the first two plants built , and up to $ 250 million more for the next four plants . DT NN MD VB RP TO $ CD CD IN NN IN DT JJ CD NNS VBN , CC RB TO $ CD CD JJR IN DT JJ CD NNS . The United States has 103 nuclear power plants in 31 states . DT NNP NNPS VBZ CD JJ NN NNS IN CD NNS . But a new plant has not been built since 1973 , and a partial meltdown at Pennsylvania 's Three Mile Island plant in 1979 ended plans to construct new ones . CC DT JJ NN VBZ RB VBN VBN IN CD , CC DT JJ NN IN NNP POS CD NNP NNP NN IN CD VBD NNS TO VB JJ NNS . Australian Prime Minister John Howard is brushing off criticism over a deal his government has reached with China that opens the door to a potential free trade agreement between the two nations . JJ NNP NNP NNP NNP VBZ VBG RP NN IN DT NN PRP$ NN VBZ VBN IN NNP WDT VBZ DT NN TO DT JJ JJ NN NN IN DT CD NNS . Canberra granted Beijing market economy status on Monday as part of the agreement to begin free trade talks . NNP VBD NNP NN NN NN IN NNP IN NN IN DT NN TO VB JJ NN NNS . But a spokesman for Australia 's opposition Labor Party says Mr. Howard gave away Australia 's strongest bargaining chip in the talks . CC DT NN IN NNP POS NN NNP NNP VBZ NNP NNP VBD RP NNP POS JJS NN NN IN DT NNS . Mr. Howard says the Labor Party is simply complaining because it has no ideas of its own to promote . NNP NNP VBZ DT NNP NNP VBZ RB VBG IN PRP VBZ DT NNS IN PRP$ JJ TO VB . The prime minister says a new deal will not be reached until sometime next year , adding that there was goodwill on both sides , but ' not that good . ' DT JJ NN VBZ DT JJ NN MD RB VB VBN IN RB JJ NN , VBG IN EX VBD NN IN DT NNS , CC `` RB IN JJ . `` Hurricane Paula has strengthened as it threatens the Gulf Coast of Mexico and parts of Central America , forcing officials to call for the evacuation of many coastal areas . NNP NNP VBZ VBN IN PRP VBZ DT NNP NNP IN NNP CC NNS IN NNP NNP , VBG NNS TO VB IN DT NN IN JJ JJ NNS . At last report ( 1745 UTC ) , forecasters at the U.S. National Hurricane Center said Paula 's maximum sustained winds had increased from 120 kilometers to 160 kilometers an hour . IN JJ NN LRB CD NNP RRB , NNS IN DT NNP NNP NNP NNP VBD NNP POS NN VBD NNS VBD VBN IN CD NNS TO CD NNS DT NN . Further strengthening is expected . JJ NN VBZ VBN . The storm is about 220 kilometers southeast of the Mexican resort island of Cozumel , where hurricane warnings are in effect . DT NN VBZ IN CD NNS NN IN DT JJ NN NN IN NNP , WRB NN NNS VBP IN NN . It is expected to approach the east coast of the Yucatan Peninsula late Tuesday and Wednesday . PRP VBZ VBN TO VB DT JJ NN IN DT NNP NNP JJ NNP CC NNP . Hurricane Paula could dump eight to 15 centimeters of rain over western and central Cuba , the Yucatan Peninsula and northern Belize , with some isolated areas receiving more than 25 centimeters . NNP NNP MD VB CD TO CD NNS IN NN IN JJ CC JJ NNP , DT NNP NNP CC JJ NNP , IN DT JJ NNS VBG JJR IN CD NNS . Forecasters say the heavy rains could trigger flash flooding and mudslides in the region , especially in mountainous parts of Nicaragua and Honduras . NNS VBP DT JJ NNS MD VB NN NN CC NNS IN DT NN , RB IN JJ NNS IN NNP CC NNP . China has raised its estimate for economic growth in 2005 to 9.8 percent . NNP VBZ VBN PRP$ NN IN JJ NN IN CD TO CD NN . That is an increase of 0.4 percent from the government 's previous figure . DT VBZ DT NN IN CD NN IN DT NN POS JJ NN . The new number was released Sunday by Ou Xinqian , vice minister of China 's National Development and Reform Commission . DT JJ NN VBD VBN NNP IN NNP NNP , NN NN IN NNP POS NNP NNP CC NNP NNP . The official Xinhua News Agency says the Commission adjusted its growth estimate because recent data shows China 's economy in 2004 was much bigger than previously thought . DT JJ NNP NNP NNP VBZ DT NNP VBD PRP$ NN NN IN JJ NNS VBZ NNP POS NN IN CD VBD RB JJR IN RB VBN . Last month , the government raised its national output figure for 2004 by 16.8 percent over the original estimate . JJ NN , DT NN VBD PRP$ JJ NN NN IN CD IN CD NN IN DT JJ NN . Officials said service industries accounted for most of the revision . NNS VBD NN NNS VBD IN JJS IN DT NN . The new growth estimate from Mr. Ou is the latest in a series of economic data released by Chinese officials . DT JJ NN NN IN NNP NNP VBZ DT JJS IN DT NN IN JJ NNS VBN IN JJ NNS . China 's National Bureau of Statistics is expected to announce the final figures for 2005 in the coming weeks . NNP POS NNP NNP IN NNPS VBZ VBN TO VB DT JJ NNS IN CD IN DT JJ NNS . Pakistani authorities say they have arrested at least 27 suspected Taleban insurgents after a raid on a private hospital in southwestern Baluchistan province . JJ NNS VBP PRP VBP VBN IN JJS CD JJ NNP NNS IN DT NN IN DT JJ NN IN JJ NNP NN . Local officials say initial investigation showed that the militants were brought from neighboring Afghanistan to the hospital in the provincial capital , Quetta . JJ NNS VBP JJ NN VBD IN DT NNS VBD VBN IN VBG NNP TO DT NN IN DT JJ NN , NNP . They say several Taleban were being treated for wounds sustained in fighting in southern Afghanistan . PRP VBP JJ NNP VBD VBG VBN IN NNS VBN IN VBG IN JJ NNP . Last month , authorities in the restive Pakistani province arrested more than 200 Afghan nationals suspected of having links with Taleban militants . JJ NN , NNS IN DT JJ JJ NN VBN RBR IN CD JJ NNS VBN IN VBG NNS IN NNP NNS . Among those caught was a former commander of Taleban forces in southern Afghanistan . IN DT VBN VBD DT JJ NN IN NNP NNS IN JJ NNP . The raids follow months of pressure from the Afghan government , the U.S.-led coalition and NATO forces in neighboring Afghanistan , who want Islamabad to act more forcefully against the Taleban remnants hiding in Pakistan . DT NNS VBP NNS IN NN IN DT JJ NN , DT JJ NN CC NNP NNS IN VBG NNP , WP VBP NNP TO VB JJR RB IN DT NNP NNS VBG IN NNP . Iran says it will sign a deal next week with Russia under which Moscow will provide fuel to Iran 's Bushehr nuclear power plant . NNP VBZ PRP MD VB DT NN JJ NN IN NNP IN WDT NNP MD VB NN TO NNP POS NNP JJ NN NN . Iranian state television quotes a deputy head of Iran 's Atomic Energy Organization , Asadollah Sabouri , as saying a pact , which obligates Tehran to return spent nuclear fuel to Russia , will be signed February 26 . JJ NN NN VBZ DT NN NN IN NNP POS NNP NNP NNP , NNP NNP , IN VBG DT NN , WDT VBZ NNP TO VB VBN JJ NN TO NNP , MD VB VBN NNP CD . Under the deal , Mr. Sabouri says Russia will provide the Bushehr plant with nuclear fuel for the next 10 years . IN DT NN , NNP NNP VBZ NNP MD VB DT NN NN IN JJ NN IN DT JJ CD NNS . Moscow and Tehran have been locked in negotiations over the final disposition of spent fuel . NNP CC NNP VBP VBN VBN IN NNS IN DT JJ NN IN JJ NN . Russia had refused further assistance in developing the Bushehr plant until Tehran agreed to return the spent fuel , which can be used in the development of nuclear weapons . NNP VBD VBN JJ NN IN VBG DT NNP NN IN NNP VBD TO VB DT JJ NN , WDT MD VB VBN IN DT NN IN JJ NNS . The United States says it suspects Iran is trying to develop such weaponry , despite Tehran 's assertions its nuclear intentions are peaceful . DT NNP NNPS VBZ PRP VBZ NNP VBZ VBG TO VB JJ NN , IN NNP POS NNS PRP$ JJ NNS VBP JJ . A Chilean appeals court has ruled former dictator Augusto Pinochet can not avoid prosecution for alleged human rights violations on health grounds . DT JJ NNS NN VBZ VBN JJ NN NNP NNP MD RB VB NN IN VBN JJ NNS NNS IN NN NNS . In a unanimous ruling , the judges concluded that recent medical exams do not disqualify Pinochet , who is 90 years old , from standing trial . IN DT JJ NN , DT NNS VBD IN JJ JJ NNS VBP RB VB NNP , WP VBZ CD NNS JJ , IN VBG NN . The ruling clears the way for Pinochet to be brought to trial in connection with the murder of leftwing dissidents during his 17-year military rule from 1973 to 1990 . DT NN VBZ DT NN IN NNP TO VB VBN TO NN IN NN IN DT NN IN NN NNS IN PRP$ JJ JJ NN IN CD TO CD . The specific case relates to a campaign , known as ' Operation Colombo , ' in which 119 dissidents disappeared in 1975 and were believed killed . DT JJ NN VBZ TO DT NN , VBN IN `` NNP NNP , `` IN WDT CD NNS VBN IN CD CC VBD VBN VBN . It is one of several human rights cases brought against the retired general . PRP VBZ CD IN JJ JJ NNS NNS VBN IN DT JJ NN . He and members of his family also have been charged with tax evasion and fraud stemming from his years in power . PRP CC NNS IN PRP$ NN RB VBP VBN VBN IN NN NN CC NN VBG IN PRP$ NNS IN NN . Conservative Muslim candidates have swept elections in Saudi Arabia 's first nationwide municipal vote , giving rise to complaints that they had an unfair advantage because of religious endorsements . JJ NNP NNS VBP VBN NNS IN NNP NNP POS JJ JJ JJ NN , VBG NN TO NNS IN PRP VBD DT JJ NN IN IN JJ NNS . Thursday 's voting in the western part of the kingdom completed the three-phase vote , which began in February . NNP POS NN IN DT JJ NN IN DT NN VBD DT JJ NN , WDT VBD IN NNP . Western region winners were announced Saturday . JJ NN NNS VBD VBN NNP . In the holy city of Medina , as well as in the ultra-conservative town of Buraydah , cleric-supported candidates swept the vote . IN DT JJ NN IN NNP , RB RB IN IN DT JJ NN IN NNP , JJ NNS VBD DT NN . In Jeddah , long considered one of the country 's most liberal cities , voters also chose conservatives . IN NNP , RB VBN CD IN DT NN POS RBS JJ NNS , NNS RB VBD NNS . Saudi men over age 21 voted for half the members of the kingdom 's municipal councils . JJ NNS IN NN CD VBD IN PDT DT NNS IN DT NN POS JJ NNS . The government will appoint the remaining half . DT NN MD VB DT VBG NN . India 's Tata Motors has begun removing equipment from its ' cheapest car ' factory in eastern India , after no resolution in a land dispute . NNP POS NNP NNP VBZ VBN VBG NN IN PRP$ `` JJS NN `` NN IN JJ NNP , IN DT NN IN DT NN NN . A Tata spokesman would not comment Wednesday , but there are reports that the equipment is being moved from the Singur plant in West Bengal state to Tata 's existing facility in the northern state of Uttarakhand . DT NNP NN MD RB VB NNP , CC EX VBP NNS IN DT NN VBZ VBG VBN IN DT NNP NN IN NNP NNP NN TO NNP POS VBG NN IN DT JJ NN IN NNP . The Tata plant was set to manufacture what is being called the world 's cheapest car - the ' Nano . ' DT NNP NN VBD VBN TO VB WP VBZ VBG VBN DT NN POS JJS NN IN DT `` NNP . `` Work has been shut down for several weeks after deadly protests by the West Bengal 's opposition party , which says that local villagers were unfairly compensated for their land , that was used to build the factory . NN VBZ VBN VBN RP IN JJ NNS IN JJ NNS IN DT NNP NNP POS NN NN , WDT VBZ IN JJ NNS VBD RB VBN IN PRP$ NN , WDT VBD VBN TO VB DT NN . Efforts to resolve the standoff have failed , with protesters recently rejecting a government offer to return 30 hectares of land . NNS TO VB DT NN VBP VBN , IN NNS RB VBG DT NN NN TO VB CD NNS IN NN . Tata officials have said they are considering moving the plant out of West Bengal . NNP NNS VBP VBN PRP VBP VBG VBG DT NN IN IN NNP NNP . Zimbabwe has condemned opposition activists for stamping protest messages on the country 's bank notes . NNP VBZ VBN NN NNS IN VBG NN NNS IN DT NN POS NN NNS . Deputy Finance Minister David Chapfika warned Wednesday the government would punish those behind the vandalism . NNP NNP NNP NNP NNP VBD NNP DT NN MD VB DT IN DT NN . No group has claimed responsibility for printing the words ' enough ' and ' get up , stand up ' on some bank notes found in circulation in Zimbabwe . DT NN VBZ VBN NN IN VBG DT NNS `` RB `` CC `` VB RP , VB RP `` IN DT NN NNS VBN IN NN IN NNP . Last year , officials blamed an underground rights group known as ' Enough ' ( Zvakwana ) for a similar campaign in which messages were printed on condom packages . JJ NN , NNS VBD DT JJ NNS NN VBN IN `` NNP `` LRB NNP RRB IN DT JJ NN IN WDT NNS VBD VBN IN NN NNS . Opposition groups say the government of President Robert Mugabe has launched a new crackdown ahead of key parliamentary elections due later this year . NN NNS VBP DT NN IN NNP NNP NNP VBZ VBN DT JJ NN RB IN JJ JJ NNS JJ RB DT NN . Tuvalu consists of a densely populated , scattered group of nine coral atolls with poor soil . NNP VBZ IN DT RB JJ , JJ NN IN CD JJ NNS IN JJ NN . The country has no known mineral resources and few exports and is almost entirely dependent upon imported food and fuel . DT NN VBZ DT VBN NN NNS CC JJ NNS CC VBZ RB RB JJ IN VBN NN CC NN . Subsistence farming and fishing are the primary economic activities . NN NN CC NN VBP DT JJ JJ NNS . Fewer than 1,000 tourists , on average , visit Tuvalu annually . JJR IN CD NNS , IN NN , NN NNP RB . Job opportunities are scarce and public sector workers make up most of those employed . NNP NNS VBP JJ CC JJ NN NNS VBP RP JJS IN DT VBN . About 15 % of the adult male population work as seamen on merchant ships abroad , and remittances are a vital source of income contributing around $ 2 million in 2007 . RB CD NN IN DT NN JJ NN NN IN NNS IN NN NNS RB , CC NNS VBP DT JJ NN IN NN VBG IN $ CD CD IN CD . Substantial income is received annually from the Tuvalu Trust Fund ( TTF ) an international trust fund established in 1987 by Australia , NZ , and the UK and supported also by Japan and South Korea . JJ NN VBZ VBN RB IN DT NNP NNP NNP LRB NNP RRB DT JJ NN NN VBN IN CD IN NNP , NNP , CC DT NNP CC VBN RB IN NNP CC NNP NNP . Thanks to wise investments and conservative withdrawals , this fund grew from an initial $ 17 million to an estimated value of $ 77 million in 2006 . NNS TO VB NNS CC JJ NNS , DT NN VBD IN DT JJ $ CD CD TO DT JJ NN IN $ CD CD IN CD . The TTF contributed nearly $ 9 million towards the government budget in 2006 and is an important cushion for meeting shortfalls in the government 's budget . DT NNP VBD RB $ CD CD IN DT NN NN IN CD CC VBZ DT JJ NN IN NN NNS IN DT NN POS NN . The US Government is also a major revenue source for Tuvalu because of payments from a 1988 treaty on fisheries . DT NNP NN VBZ RB DT JJ NN NN IN NNP IN IN NNS IN DT CD NN IN NNS . In an effort to ensure financial stability and sustainability , the government is pursuing public sector reforms , including privatization of some government functions and personnel cuts . IN DT NN TO VB JJ NN CC NN , DT NN VBZ VBG JJ NN NNS , VBG NN IN DT NN NNS CC NNS NNS . Tuvalu also derives royalties from the lease of its ' .tv ' Internet domain name with revenue of more than $ 2 million in 2006 . NNP RB VBZ NNS IN DT NN IN PRP$ `` NN `` NNP NN NN IN NN IN JJR IN $ CD CD IN CD . A minor source of government revenue comes from the sale of stamps and coins . DT JJ NN IN NN NN VBZ IN DT NN IN NNS CC NNS . With merchandise exports only a fraction of merchandise imports , continued reliance must be placed on fishing and telecommunications license fees , remittances from overseas workers , official transfers , and income from overseas investments . IN NN NNS RB DT NN IN NN NNS , JJ NN MD VB VBN IN NN CC NNS NN NNS , NNS IN JJ NNS , JJ NNS , CC NN IN JJ NNS . Growing income disparities and the vulnerability of the country to climatic change are among leading concerns for the nation . VBG NN NNS CC DT NN IN DT NN TO JJ NN VBP IN VBG NNS IN DT NN . Niue 's remoteness , as well as cultural and linguistic differences between its Polynesian inhabitants and those of the rest of the Cook Islands , have caused it to be separately administered . NNP POS NN , RB RB IN JJ CC JJ NNS IN PRP$ JJ NNS CC DT IN DT NN IN DT NNP NNP , VBP VBN PRP TO VB RB VBN . The population of the island continues to drop ( from a peak of 5,200 in 1966 to an estimated 1,311 in 2011 ) with substantial emigration to New Zealand 2,400 km to the southwest . DT NN IN DT NN VBZ TO VB LRB IN DT NN IN CD IN CD TO DT VBN CD IN CD RRB IN JJ NN TO NNP NNP CD NN TO DT NN . Anguilla has few natural resources , and the economy depends heavily on luxury tourism , offshore banking , lobster fishing , and remittances from emigrants . NNP VBZ JJ JJ NNS , CC DT NN VBZ RB IN NN NN , JJ NN , NN NN , CC NNS IN NNS . Increased activity in the tourism industry has spurred the growth of the construction sector contributing to economic growth . JJ NN IN DT NN NN VBZ VBN DT NN IN DT NN NN VBG TO JJ NN . Anguillan officials have put substantial effort into developing the offshore financial sector , which is small but growing . NNP NNS VBP VBN JJ NN IN VBG DT JJ JJ NN , WDT VBZ JJ CC VBG . In the medium term , prospects for the economy will depend largely on the tourism sector and , therefore , on revived income growth in the industrialized nations as well as on favorable weather conditions . IN DT JJ NN , NNS IN DT NN MD VB RB IN DT NN NN CC , RB , IN VBN NN NN IN DT JJ NNS RB RB IN IN JJ NN NNS . A former British colony , Cyprus became independent in 1960 following years of resistance to British rule . DT JJ JJ NN , NNP VBD JJ IN CD VBG NNS IN NN TO JJ NN . Tensions between the Greek Cypriot majority and Turkish Cypriot minority came to a head in December 1963 , when violence broke out in the capital of Nicosia . NNS IN DT JJ JJ NN CC JJ JJ NN VBD TO DT NN IN NNP CD , WRB NN VBD RP IN DT NN IN NNP . Despite the deployment of UN peacekeepers in 1964 , sporadic intercommunal violence continued forcing most Turkish Cypriots into enclaves throughout the island . IN DT NN IN NNP NNS IN CD , JJ JJ NN VBD VBG RBS JJ NNS IN NNS IN DT NN . In 1974 , a Greek Government-sponsored attempt to seize control of Cyprus was met by military intervention from Turkey , which soon controlled more than a third of the island . IN CD , DT JJ JJ NN TO VB NN IN NNP VBD VBN IN JJ NN IN NNP , WDT RB VBD JJR IN DT NN IN DT NN . In 1983 , the Turkish Cypriot-occupied area declared itself the ' Turkish Republic of Northern Cyprus ' ( ' TRNC ' ) , but it is recognized only by Turkey . IN CD , DT JJ JJ NN VBD PRP DT `` NNP NNP IN NNP NNP `` LRB `` NNP `` RRB , CC PRP VBZ VBN RB IN NNP . The election of a new Cypriot president in 2008 served as the impetus for the UN to encourage both the Greek Cypriot and Turkish Cypriot communities to reopen unification negotiations . DT NN IN DT JJ JJ NN IN CD VBD IN DT NN IN DT NNP TO VB DT DT JJ JJ CC JJ JJ NNS TO VB NN NNS . In September 2008 , the leaders of the two communities began negotiations under UN auspices aimed at reuniting the divided island ; the talks remain ongoing . IN NNP CD , DT NNS IN DT CD NNS VBD NNS IN NNP NNS VBN IN VBG DT VBN NN ; DT NNS VBP JJ . The entire island entered the EU on 1 May 2004 , although the EU acquis - the body of common rights and obligations - applies only to the areas under the internationally recognized government , and is suspended in the areas administered by Turkish Cypriots . DT JJ NN VBD DT NNP IN CD NNP CD , IN DT NNP VBZ IN DT NN IN JJ NNS CC NNS : VBZ RB TO DT NNS IN DT RB VBN NN , CC VBZ VBN IN DT NNS VBN IN JJ NNS . However , individual Turkish Cypriots able to document their eligibility for Republic of Cyprus citizenship legally enjoy the same rights accorded to other citizens of European Union states . RB , JJ JJ NNS JJ TO VB PRP$ NN IN NNP IN NNP NN RB VBP DT JJ NNS VBN TO JJ NNS IN NNP NNP NNS . Once the center of power for the large Austro-Hungarian Empire , Austria was reduced to a small republic after its defeat in World War I . RB DT NN IN NN IN DT JJ JJ NN , NNP VBD VBN TO DT JJ NN IN PRP$ NN IN NNP NNP NNP . Following annexation by Nazi Germany in 1938 and subsequent occupation by the victorious Allies in 1945 , Austria 's status remained unclear for a decade . VBG NN IN NNP NNP IN CD CC JJ NN IN DT JJ NNS IN CD , NNP POS NN VBD JJ IN DT NN . A State Treaty signed in 1955 ended the occupation , recognized Austria 's independence , and forbade unification with Germany . DT NNP NNP VBD IN CD VBD DT NN , VBD NNP POS NN , CC VBD NN IN NNP . A constitutional law that same year declared the country 's ' perpetual neutrality ' as a condition for Soviet military withdrawal . DT JJ NN IN JJ NN VBD DT NN POS `` JJ NN `` IN DT NN IN JJ JJ NN . The Soviet Union 's collapse in 1991 and Austria 's entry into the European Union in 1995 have altered the meaning of this neutrality . DT NNP NNP POS NN IN CD CC NNP POS NN IN DT NNP NNP IN CD VBP VBN DT NN IN DT NN . A prosperous , democratic country , Austria entered the EU Economic and Monetary Union in 1999 . DT JJ , JJ NN , NNP VBD DT NNP NNP CC NNP NNP IN CD . A FISHERMAN skilled in music took his flute and his nets to the seashore . DT NN VBD IN NN VBD PRP$ NN CC PRP$ NNS TO DT NN . Standing on a projecting rock , he played several tunes in the hope that the fish , attracted by his melody , would of their own accord dance into his net , which he had placed below . VBG IN DT VBG NN , PRP VBD JJ NNS IN DT NN IN DT NN , VBN IN PRP$ NN , MD IN PRP$ JJ NN VB IN PRP$ NN , WDT PRP VBD VBN IN . At last , having long waited in vain , he laid aside his flute , and casting his net into the sea , made an excellent haul of fish . IN JJ , VBG RB VBN IN NN , PRP VBD RB PRP$ NN , CC VBG PRP$ NN IN DT NN , VBD DT JJ NN IN NN . When he saw them leaping about in the net upon the rock he said : ' O you most perverse creatures , when I piped you would not dance , but now that I have ceased you do so merrily . ' WRB PRP VBD PRP VBG RB IN DT NN IN DT NN PRP VBD : `` NNP PRP RBS JJ NNS , WRB PRP VBD PRP MD RB VB , CC RB IN PRP VBP VBN PRP VBP RB RB . `` A PIGEON , oppressed by excessive thirst , saw a goblet of water painted on a signboard . DT NN , VBN IN JJ NN , VBD DT NN IN NN VBN IN DT NN . Not supposing it to be only a picture , she flew towards it with a loud whir and unwittingly dashed against the signboard , jarring herself terribly . RB VBG PRP TO VB RB DT NN , PRP VBD IN PRP IN DT JJ NN CC RB VBN IN DT NN , VBG PRP RB . Having broken her wings by the blow , she fell to the ground , and was caught by one of the bystanders . VBG VBN PRP$ NNS IN DT NN , PRP VBD TO DT NN , CC VBD VBN IN CD IN DT NNS . Zeal should not outrun discretion . NN MD RB VB NN . A LION who had caught a Mouse was about to kill him , when the Mouse said : DT NN WP VBD VBN DT NN VBD IN TO VB PRP , WRB DT NN VBD : ' If you will spare my life , I will do as much for you some day . ' `` IN PRP MD VB PRP$ NN , PRP MD VB RB RB IN PRP DT NN . `` The Lion , good-naturedly let him go . DT NNP , RB VB PRP VB . It happened shortly afterwards that the Lion was caught by some hunters and bound with cords . PRP VBD RB RB IN DT NNP VBD VBN IN DT NNS CC VBN IN NNS . The Mouse , passing that way , and seeing that his benefactor was helpless , gnawed off his tail . DT NN , VBG DT NN , CC VBG IN PRP$ NN VBD JJ , VBD RP PRP$ NN . 12-year-old Jeff Maier reached out and caught a fly ball at the Yankees-Orioles game , causing Baltimore to lose the first game of the playoffs . JJ NNP NNP VBD RP CC VBD DT NN NN IN DT NNP NN , VBG NNP TO VB DT JJ NN IN DT NNS . This means that Maier has already caught more fly balls than the entire Mets outfield ... DT VBZ IN NNP VBZ RB VBN JJR NN NNS IN DT JJ NNPS NN : Christmas was over . NNP VBD IN . Santa and his reindeer finally had a chance to rest . NNP CC PRP$ NN RB VBD DT NN TO VB . And they deserved it . CC PRP VBD PRP . They had done a good job . PRP VBD VBN DT JJ NN . Rudolph had a chance to do something he had wanted to do for a long time . NNP VBD DT NN TO VB DT PRP VBD VBN TO VB IN DT JJ NN . He made an appointment with a plastic surgeon because he was so sensitive about his looks . PRP VBD DT NN IN DT NN NN IN PRP VBD RB JJ IN PRP$ NNS . However it was n't his glowing proboscis that he wanted changed . RB PRP VBD RB PRP$ VBG NNS IN PRP VBD VBN . He was proud of his nose and the help he had given Santa because of it . PRP VBD JJ IN PRP$ NN CC DT NN PRP VBD VBN NNP IN IN PRP . No , he was sensitive about his long ears which were much more prominent than the ears of the average reindeer , or bear for that matter . DT , PRP VBD JJ IN PRP$ JJ NNS WDT VBD RB RBR JJ IN DT NNS IN DT JJ NN , CC NN IN DT NN . So one week after Christmas , he let the good doctor do the pinna reconstructive surgery procedure , and since that time , January 1st has been celebrated as ... New Ears Day . RB CD NN IN NNP , PRP VBD DT JJ NN VBP DT NN JJ NN NN , CC IN DT NN , NNP CD VBZ VBN VBN IN : NNP NNP NNP . The U.S. military says three American soldiers have been killed in a roadside bomb blast in northern Iraq . DT NNP NN VBZ CD JJ NNS VBP VBN VBN IN DT NN NN NN IN JJ NNP . The military says one soldier was also wounded in the explosion that hit their combat patrol in the town of Balad , north of Baghdad , late Wednesday . DT JJ VBZ CD NN VBD RB VBN IN DT NN WDT VBD PRP$ NN NN IN DT NN IN NNP , NN IN NNP , JJ NNP . In another development , Arab League Secretary-General Amr Moussa flew to Baghdad Thursday , - on his first visit to Iraq since the 2003 U.S. - led invasion . IN DT NN , NNP NNP NNP NNP NNP VBD TO NNP NNP , IN IN PRP$ JJ NN TO NNP IN DT CD NNP : VBD NN . Mr. Moussa is to hold talks with senior Iraqi leaders and also meet the country 's most influential Shi'ite cleric , Grand Ayatollah Ali al-Sistani . NNP NNP VBZ TO VB NNS IN JJ JJ NNS CC RB VB DT NN POS RBS JJ NNP NN , NNP NNP NNP NNP . The 34-member Arab League has been criticized for not strongly condemning the insurgency in Iraq and also for not taking a more active role in supporting the post-Saddam Iraqi government . DT JJ NNP NNP VBZ VBN VBN IN RB RB VBG DT NN IN NNP CC RB IN RB VBG DT RBR JJ NN IN VBG DT JJ JJ NN . Pakistani police say multiple gas cylinder explosions tore through a building in the city of Lahore , killing at least 24 people and injuring many more . JJ NNS VBP JJ NN NN NNS VBD IN DT NN IN DT NN IN NNP , VBG IN JJS CD NNS CC VBG JJ JJR . Witnesses say there were about 40 residents in the collapsed building , and that most were asleep when the blasts occurred Tuesday morning . NNS VBP EX VBD IN CD NNS IN DT JJ NN , CC IN JJS VBD JJ WRB DT NNS VBD NNP NN . Officials say rescue workers were searching for people who were believed trapped in the rubble of the multi-story structure . NNS VBP NN NNS VBD VBG IN NNS WP VBD VBN VBN IN DT NN IN DT JJ NN . Police say the building had a gas cylinder storage area and an ice cream factory on the ground floor . NNS VBP DT NN VBD DT NN NN NN NN CC DT NN NN NN IN DT NN NN . Several near-by buildings and a number of cars were also damaged . JJ JJ NNS CC DT NN IN NNS VBD RB VBN . The city of Washington is widely known for a keen appreciation of the social arts : DT NN IN NNP VBZ RB VBN IN DT JJ NN IN DT JJ NNS : Politics , for example or the fine art of diplomacy . NNS , IN NN CC DT JJ NN IN NN . But an important development in the history of the visual arts had its origins here as well . CC DT JJ NN IN DT NN IN DT JJ NNS VBD PRP$ NNS RB RB RB . It is called the ' Color Field ' movement , and it is the subject of a major new exhibition now underway in the nation 's capital . PRP VBZ VBN DT `` NNP NNP `` NN , CC PRP VBZ DT NN IN DT JJ JJ NN RB VBZ IN DT NN POS NN . As VOA 's George Dwyer reports , the passing of years appears to have cast this colorful school of painting in a whole new light . IN NNP POS NNP NNP VBZ , DT NN IN NNS VBZ TO VB VBN DT JJ NN IN NN IN DT JJ JJ NN . The host Italian Olympic team has suffered a blow just days before the start of the Turin Games , with the loss of two ski jumpers . DT NN JJ NNP NN VBZ VBN DT NN RB NNS IN DT NN IN DT NNP NNPS , IN DT NN IN CD JJ NNS . Marco Beltrame and Stefano Chiapolino were seriously injured Tuesday during pre-Olympic training at Predazzo . NNP NNP CC NNP NNP VBD RB VBN NNP IN JJ NN IN NNP . The 19-year-old Beltrame was admitted to a local hospital , in Belluno where he had his spleen removed . DT JJ NNP VBD VBN TO DT JJ NN , IN NNP WRB PRP VBD PRP$ NN VBD . Chiapolino was treated at another hospital , in Cavalese . NNP VBD VBN IN DT NN , IN NNP . The 20-year-old Olympic teammate had several small fractures to his face and a slight concussion . DT JJ NNP NN VBD JJ JJ NNS TO PRP$ NN CC DT JJ NN . With the loss of two of its five ski jumpers , the Italian Olympic team will not be able to field a four-person squad in the team event on February 20 . IN DT NN IN CD IN PRP$ CD NN NNS , DT JJ NNP NN MD RB VB JJ TO VB DT JJ NN IN DT NN NN IN NNP CD . Opening ceremonies for the Games are Friday . VBG NNS IN DT NNPS VBP NNP . The Olympics run through February 26 . DT NNS VBP IN NNP CD . Pakistani officials say heavy rains led to the deaths of 228 people in the southern city of Karachi on Saturday . JJ NNS VBP JJ NNS VBD TO DT NNS IN CD NNS IN DT JJ NN IN NNP IN NNP . Officials had earlier said 43 people were killed in the storm , however , the number increased when the bodies of 185 more victims were identified Sunday . NNS VBD JJR VBD CD NNS VBD VBN IN DT NN , RB , DT NN VBN WRB DT NNS IN CD JJR NNS VBD VBN NNP . Many people were killed when the roofs and walls of their homes collapsed . JJ NNS VBD VBN WRB DT NNS CC NNS IN PRP$ NNS VBD . Others were killed or injured by power lines downed in the storm . NNS VBD VBN CC VBN IN NN NNS VBD IN DT NN . Weather forecasters expect the heavy rains to continue through Monday . NNP NNS VBP DT JJ NNS TO VB IN NNP . Former U.N. Secretary-General Kofi Annan has recommended the United Nations extend its mission in Haiti through February 2008 . JJ NNP NNP NNP NNP VBZ VBN DT NNP NNP VB PRP$ NN IN NNP IN NNP CD . In a report issued Tuesday , Mr. Annan said the primary responsibility for socio-economic development and building security is with Haiti 's leadership and people . IN DT NN VBN NNP , NNP NNP VBD DT JJ NN IN JJ NN CC NN NN VBZ IN NNP POS NN CC NNS . But he said international help remains essential . CC PRP VBD JJ NN VBZ JJ . Meanwhile , the Haitian-born spokeswoman for new U.N. Secretary-General Ban Ki-Moon tells the Associated Press she hopes to use her office to publicize human rights abuses around the world , but especially in her home country . RB , DT JJ NN IN JJ NNP NNP NNP NNP VBZ DT NNP NNP PRP VBZ TO VB PRP$ NN TO VB JJ NNS NNS IN DT NN , CC RB IN PRP$ NN NN . Former broadcast journalist Michele Montas and her husband , Jean Dominique , were persecuted in Haiti for reports critical of the government . JJ NN NN NNP NNP CC PRP$ NN , NNP NNP , VBD VBN IN NNP IN NNS JJ IN DT NN . Dominique was assassinated in 2000 . NNP VBD VBN IN CD . Montas survived two attempts on her life before going into exile . NNP VBD CD NNS IN PRP$ NN IN VBG IN NN . She told the Associated Press she remains mindful of her Haitian identity and hopes to return to her homeland someday . PRP VBD DT NNP NNP PRP VBZ JJ IN PRP$ JJ NN CC VBZ TO VB TO PRP$ NN RB . But she said that is not possible now . CC PRP VBD DT VBZ RB JJ RB . South Africa 's main labor federation has again criticized Zimbabwe 's government for organizing elections it says will not be free and fair . NNP NNP POS JJ NN NN VBZ RB VBN NNP POS NN IN VBG NNS PRP VBZ MD RB VB JJ CC JJ . The Congress of South African Trade Unions , COSATU , says it will hold a series of protests ahead of the March 31 poll , aimed to draw attention to alleged problems . DT NNP IN NNP NNP NNP NNP , NNP , VBZ PRP MD VB DT NN IN NNS RB IN DT NNP CD NN , VBN TO VB NN TO JJ NNS . The group 's general secretary , Zwelinzima Vavi , says the result of the parliamentary vote is already decided , because President Robert Mugabe has skewed conditions in favor of his party . DT NN POS JJ NN , NNP NNP , VBZ DT NN IN DT JJ NN VBZ RB VBN , IN NNP NNP NNP VBZ VBN NNS IN NN IN PRP$ NN . South African officials have warned they will not tolerate illegal protests by the union group . JJ JJ NNS VBP VBN PRP MD RB VB JJ NNS IN DT NN NN . Labor officials say they are currently seeking permits for marches and a planned blockade of traffic along the border with Zimbabwe . NN NNS VBP PRP VBP RB VBG NNS IN NNS CC DT JJ NN IN NN IN DT NN IN NNP . Earlier this year , Zimbabwe officials refused entry to a COSATU delegation planning to study voting conditions in the country . RBR DT NN , NNP NNS VBD NN TO DT NNP NN NN TO VB NN NNS IN DT NN . Pakistan 's election commission has announced the final list of three candidates for the upcoming presidential election . NNP POS NN NN VBZ VBN DT JJ NN IN CD NNS IN DT JJ JJ NN . The commission said Saturday regional and national lawmakers will be able to choose from Pakistan Peoples Party co-chairman Asif Ali Zardari , retired judge Said-uz Zaman Siddiqui and Mushahid Hussain Sayed . DT NN VBD NNP JJ CC JJ NNS MD VB JJ TO VB IN NNP NNP NNP NN NNP NNP NNP , JJ NN NNP NNP NNP CC NNP NNP NNP . Siddiqui is aligned with the Pakistan Muslim League-N party of former Prime Minister Nawaz Sharif , while Sayed represents the party of former President Pervez Musharraf . NNP VBZ VBN IN DT NNP NNP NNP NN IN JJ NNP NNP NNP NNP , IN NNP VBZ DT NN IN JJ NNP NNP NNP . Mr. Musharraf resigned last week following a series of carefully orchestrated no-confidence votes in parliament . NNP NNP VBD JJ NN VBG DT NN IN RB VBN JJ NNS IN NN . He lost public support after he declared a state of emergency and fired several judges who planned to rule on the legitimacy of his presidency . PRP VBD JJ NN IN PRP VBD DT NN IN NN CC VBD JJ NNS WP VBD TO VB IN DT NN IN PRP$ NN . The election is set for September 6 . DT NN VBZ VBN IN NNP CD . Russian bombers left Venezuela , one week after arriving in the South American country to conduct military exercises . JJ NNS VBD NNP , CD NN IN VBG IN DT JJ JJ NN TO VB JJ NNS . The Russian news agency Itar-Tass reports that the two strategic bombers took off from Caracas in the early morning hours Thursday . DT JJ NN NN JJ NNS IN DT CD JJ NNS VBD RP IN NNP IN DT JJ NN NNS NNP . While in the region , the bombers conducted air patrol flights over neutral waters in the Caribbean . IN IN DT NN , DT NNS VBN NN NN NNS IN JJ NNS IN DT NNP . Itar-Tass says the bombers will patrol neutral waters in the Atlantic and North Arctic Oceans before returning to Russia on Friday . NNP VBZ DT NNS MD VB JJ NNS IN DT NNP CC NNP NNP NNPS IN VBG TO NNP IN NNP . The Tu-160 bombers arrived in Venezuela September 10 , days after Russia announced it would send a naval squadron and anti-submarine aircraft to Venezuela for possible joint military exercises in November . DT JJ NNS VBD IN NNP NNP CD , NNS IN NNP VBD PRP MD VB DT JJ NN CC JJ NN TO NNP IN JJ JJ JJ NNS IN NNP . Russia 's military exercises later this year would be its first major maneuvers in the Western Hemisphere since the Cold War . NNP POS JJ NNS RBR DT NN MD VB PRP$ JJ JJ NNS IN DT NNP NNP IN DT NNP NNP . A car bomb attack south of the Iraqi capital has killed at least 10 people , while the death toll from a series of coordinated blasts Thursday north of Baghdad has risen to nearly 100 . DT NN NN NN NN IN DT JJ NN VBZ VBN IN JJS CD NNS , IN DT NN NN IN DT NN IN VBN NNS NNP NN IN NNP VBZ VBN TO RB CD . In Friday 's attack , police say a bomb blast tore through a crowded market in the mainly Shi'ite city of Hillah . IN NNP POS NN , NNS VBP DT NN NN VBD IN DT JJ NN IN DT RB JJ NN IN NNP . More than 40 other people were injured in the explosion . JJR IN CD JJ NNS VBD VBN IN DT NN . Meanwhile , hospital officials said the death toll from three nearly simultaneous car bomb attacks Thursday in the northern city of Balad had risen to 99 . RB , NN NNS VBD DT NN NN IN CD RB JJ NN NN NNS NNP IN DT JJ NN IN NNP VBD VBN TO CD . Al-Qaida in Iraq claimed responsibility for that attack in an unverifiable Internet statement . NNP IN NNP VBD NN IN DT NN IN DT JJ NN NN . The group , which is led by Abu Musab al-Zarqawi , has declared war on the country 's majority Shi'ites , ahead of the October 15 constitutional referendum . DT NN , WDT VBZ VBN IN NNP NNP NNP , VBZ VBN NN IN DT NN POS NN NNS , RB IN DT NNP CD JJ NN . American gymnast Shawn Johnson is expected to be one of the brightest stars at the Beijing Olympic Games later this year . JJ NN NNP NNP VBZ VBN TO VB CD IN DT JJS NNS IN DT NNP NNP NNPS RBR DT NN . For her coaches , a trip to the summer games would be a homecoming . IN PRP$ NNS , DT NN TO DT NN NNS MD VB DT NN . Elaine Lu and producer Liu Enming have more on the aspiring Olympian 's path to the Beijing games . NNP NNP CC NN NNP NNP VBP RBR IN DT VBG NNP POS NN TO DT NNP NNS . The U.S. economy grew a bit faster than first estimated in the first three months of this year , but still expanded at a slow pace . DT NNP NN VBD DT NN RBR IN JJ VBN IN DT JJ CD NNS IN DT NN , CC RB VBN IN DT JJ NN . Thursday 's report from the Commerce Department puts the first quarter 's economic growth at nine-tenths of one percent . NNP POS NN IN DT NNP NNP VBZ DT JJ NN POS JJ NN IN NNS IN CD NN . That is three-tenths of a percent better than economists first thought , and a bit better than the growth rate for the last quarter of 2007 . DT VBZ JJ IN DT NN JJR IN NNS RB VBD , CC DT NN JJR IN DT NN NN IN DT JJ NN IN CD . The world 's largest economy has been hurt by sagging housing market , tight credit , and soaring energy costs . DT NN POS JJS NN VBZ VBN VBN IN VBG NN NN , JJ NN , CC VBG NN NNS . A separate government report from the Labor Department said the number of Americans signing up for unemployment assistance rose slightly last week - by 4,000 , to a total of 3,72,000 . DT JJ NN NN IN DT NNP NNP VBD DT NN IN NNS VBG RP IN NN NN VBD RB JJ NN IN IN CD , TO DT NN IN CD . Bolivia 's President Evo Morales has announced that his government will take over the operations of the Chaco oil company , as part of efforts to nationalize the country 's resources . NNP POS NNP NNP NNP VBZ VBN IN PRP$ NN MD VB RP DT NNS IN DT NNP NN NN , IN NN IN NNS TO VB DT NN POS NNS . Mr. Morales Friday visited Chaco , in which the British company BP is a majority stakeholder . NNP NNP NNP VBD NNP , IN WDT DT JJ NN NNP VBZ DT NN NN . He presented the nationalization move as a gain for the Bolivian people , saying ' little by little we are taking back our companies . ' PRP VBD DT NN NN IN DT NN IN DT JJ NNS , VBG `` RB IN RB PRP VBP VBG RP PRP$ NNS . `` The left-leaning president won election on a platform of economic reform , pledging to share the country 's energy wealth among the impoverished indigenous majority . DT JJ NN VBD NN IN DT NN IN JJ NN , VBG TO VB DT NN POS NN NN IN DT JJ JJ NN . He has already nationalized several key energy companies . PRP VBZ RB VBN JJ JJ NN NNS . Today 's take-over of Chaco comes just days before Bolivians vote on a new constitution backed by Mr. Morales . NN POS NN IN NNP VBZ RB NNS IN NNS VBP IN DT JJ NN VBN IN NNP NNP . A Mexican police commander has been shot to death outside his home in the northern border city of Nuevo Laredo . DT JJ NN NN VBZ VBN VBN TO NN IN PRP$ NN IN DT JJ NN NN IN NNP NNP . Authorities say Enrique Cardenas was killed Thursday as he left home to take his young daughter to school . NNS VBP NNP NNP VBD VBN NNP IN PRP VBD NN TO VB PRP$ JJ NN TO NN . They say the killing took place one day after another local police commander was ambushed and wounded by assailants who opened fire from a moving car . PRP VBP DT NN VBD NN CD NN IN DT JJ NN NN VBD VBN CC VBN IN NNS WP VBD NN IN DT VBG NN . Officials say at least five other police officers have been killed in Nuevo Laredo since the beginning of the year in a wave of violence attributed to drug traffickers battling for territory . NNS VBP IN JJS CD JJ NNS NNS VBP VBN VBN IN NNP NNP IN DT NN IN DT NN IN DT NN IN NN VBN TO NN NNS VBG IN NN . Earlier this year , the U.S. State Department issued travel alerts on Nuevo Laredo , prompting an angry response from the Mexican government . RBR DT NN , DT NNP NNP NNP VBD NN NNS IN NNP NNP , VBG DT JJ NN IN DT JJ NN . South Korea 's foreign minister says he is willing to travel to Pyongyang if it will help bring North Korea back to international nuclear disarmament talks . NNP NNP POS JJ NN VBZ PRP VBZ JJ TO VB TO NNP IN PRP MD VB VB NNP NNP RB TO JJ JJ NN NNS . Ban Ki-moon did not say if North Korea had extended an invitation . NNP NNP VBD RB VB IN NNP NNP VBD VBN DT NN . But he said he is willing to make the trip if his efforts will help . CC PRP VBD PRP VBZ JJ TO VB DT NN IN PRP$ NNS MD VB . Six country talks on North Korea 's nuclear program have been stalled since last November . CD NN NNS IN NNP NNP POS JJ NN VBP VBN VBN IN JJ NNP . The United States , China , Russia , Japan and South Korea were trying to convince North Korea to abandon its nuclear program entirely . DT NNP NNPS , NNP , NNP , NNP CC NNP NNP VBD VBG TO VB NNP NNP TO VB PRP$ JJ NN RB . Work toward resuming negotiations intensified last month when North Korea test-fired several missiles . NN IN VBG NNS VBN JJ NN WRB NNP NNP VBD JJ NNS . The head of the U.S. Central Bank says home prices could fall as the nation 's booming housing market inevitably slows down . DT NN IN DT NNP NNP NNP VBZ NN NNS MD VB IN DT NN POS JJ NN NN RB VBZ RP . Federal Reserve Chairman Alan Greenspan made the comment Saturday during concluding remarks at an economic summit in the western state of Wyoming . NNP NNP NNP NNP NNP VBD DT NN NNP IN VBG NNS IN DT JJ NN IN DT JJ NN IN NNP . He said that as the housing boom simmers down , home price increases will slow and that prices could even decrease . PRP VBD IN IN DT NN NN NNS RB , NN NN NNS MD VB CC IN NNS MD RB VB . One day earlier , Mr. Greenspan warned Americans not to assume that recent soaring home prices will continue forever . CD NN RB , NNP NNP VBD NNS RB TO VB IN JJ VBG NN NNS MD VB RB . He said increased buying power fueled by higher home prices could disappear if investors become cautious . PRP VBD VBN VBG NN VBN IN JJR NN NNS MD VB IN NNS VBP JJ . Large numbers of U.S. homeowners have taken out loans against the increased value of their homes to pay for renovations and other purchases , fueling much of the recent growth in the economy . JJ NNS IN NNP NNS VBP VBN RP NNS IN DT VBN NN IN PRP$ NNS TO VB IN NNS CC JJ NNS , VBG NN IN DT JJ NN IN DT NN . Afghan authorities say seven Taleban prisoners have escaped from Afghanistan 's main prison and 10 guards are being investigated for helping them break free or for negligence . JJ NNS VBP CD NNP NNS VBP VBN IN NNP POS JJ NN CC CD NNS VBP VBG VBN IN VBG PRP VB JJ CC IN NN . The director of Afghanistan 's prisons said Tuesday , the men broke out of Policharki Prison on the outskirts of the capital , Kabul , on Sunday . DT NN IN NNP POS NNS VBD NNP , DT NNS VBD IN IN NNP NNP IN DT NNS IN DT NN , NNP , IN NNP . He declined to identify the escaped prisoners , citing security reasons , but said security forces were searching for them . PRP VBD TO VB DT VBN NNS , VBG NN NNS , CC VBD NN NNS VBD VBG IN PRP . Pakistani officials say suspected U.S. drone-fired missiles have struck a vehicle and a religious school building in an al-Qaida and Taliban stronghold , killing at least ten militants , including two foreigners . JJ NNS VBP JJ NNP JJ NNS VBP VBN DT NN CC DT JJ NN NN IN DT NNP CC NNP NN , VBG IN JJS JJ NNS , VBG CD NNS . The officials say the missiles hit in the Khaisor area of North Waziristan region , near the border with Afghanistan . DT NNS VBP DT NNS VBN IN DT NNP NN IN NNP NNP NN , IN DT NN IN NNP . The victims have not yet been identified . DT NNS VBP RB RB VBN VBN . This is the latest of more than 40 suspected U.S. missile strikes on militant targets in northwest Pakistan over the past year . DT VBZ DT JJS IN JJR IN CD JJ NNP NN NNS IN JJ NNS IN JJ NNP IN DT JJ NN . Last week , a suspected U.S. drone ( unmanned ) aircraft fired a missile at a compound in South Waziristan , also near the Afghan border , killing at least 8 . JJ NN , DT JJ NNP NN LRB JJ RRB NN VBD DT NN IN DT NN IN NNP NNP , RB IN DT JJ NN , VBG IN JJS CD . The United States rarely discusses the strikes , which Pakistan has criticized as counterproductive and a violation of its sovereignty . DT NNP NNPS RB VBZ DT NNS , WDT NNP VBZ VBN IN JJ CC DT NN IN PRP$ NN . These latest missiles hit as Pakistani security forces battle extremist militants elsewhere in northwestern Pakistan , around the Swat valley . DT JJS NNS VBD IN JJ NN NNS VBP NN NNS RB IN JJ NNP , IN DT NNP NN . The head of South Africa 's football association has announced that the shoes used by the national team 's Siphiwe Tshabalala to score the first goal of the 2010 World Cup will become a ' historic monument . ' DT NN IN NNP NNP POS NN NN VBZ VBN IN DT NNS VBN IN DT JJ NN POS NNP NNP TO VB DT JJ NN IN DT CD NNP NNP MD VB DT `` JJ NN . `` SAFA chief executive Leslie Sedibe told a parliamentary committee Tuesday that the shoes will be displayed at SAFA headquarters in Johannesburg . NNP NN NN NNP NNP VBD DT JJ NN NNP IN DT NNS MD VB VBN IN NNP NN IN NNP . In a memorable start to World Cup , Tshabalala gave South Africa a 1-0 lead over Mexico in the opening match at Soccer City in Johannesburg . IN DT JJ NN TO NNP NNP , NNP VBD NNP NNP DT JJ NN IN NNP IN DT NN NN IN NNP NNP IN NNP . The match ended in a 01-Jan draw . DT NN VBD IN DT JJ NN . Sedibe says Siphiwe Tshabalala knows those shoes do not belong to him ' because of the historic symbolism they represent . ' NNP VBZ NNP NNP VBZ DT NNS VBP RB VB TO PRP `` IN IN DT JJ NN PRP VBP . `` He added that the shoes represent hope and what South Africa can deliver on a world stage . PRP VBD IN DT NNS VBP NN CC WP NNP NNP MD VB IN DT NN NN . Taiwan 's president is calling for one million of his fellow citizens to take to the streets to protest China 's new anti-secession law . NNP POS NN VBZ VBG IN CD CD IN PRP$ JJ NNS TO VB TO DT NNS TO VB NNP POS JJ JJ NN . Chen Shui-bian 's criticism came Wednesday in his first public comments since China 's parliament approved a bill authorizing military force if Taipei formally declares its independence . NNP NNP POS NN VBD NNP IN PRP$ JJ JJ NNS IN NNP POS NN VBD DT NN VBG JJ NN IN NNP RB VBZ PRP$ NN . He says the law will only heighten tensions across the Taiwan Strait , and that only peaceful dialogue will resolve the situation . PRP VBZ DT NN MD RB VB NNS IN DT NNP NNP , CC IN RB JJ NN MD VB DT NN . Mr. Chen says the mass protest planned for March 26 will show the world that only Taiwan can decide its future . NNP NNP VBZ DT NN NN VBN IN NNP CD MD VB DT NN IN RB NNP MD VB PRP$ NN . The president is also calling on the European Union to reconsider its plan to lift its 15-year-old arms embargo against Beijing . DT NN VBZ RB VBG IN DT NNP NNP TO VB PRP$ NN TO VB PRP$ JJ NNS NN IN NNP . U.S. President Barack Obama has extended sanctions on Burma 's military government for another year . NNP NNP NNP NNP VBZ VBN NNS IN NNP POS JJ NN IN DT NN . Mr. Obama informed Congress of the decision Friday , saying Burma is ' engaging in large-scale repression of the democratic opposition . ' NNP NNP VBD NNP IN DT NN NNP , VBG NNP VBZ `` VBG IN JJ NN IN DT JJ NN . `` He added that Burma 's actions and policies are hostile to U.S. interests , and they pose a continuing threat to U.S. national security and foreign policy . PRP VBD IN NNP POS NNS CC NNS VBP JJ TO NNP NNS , CC PRP VBP DT VBG NN TO NNP JJ NN CC JJ NN . The existing sanctions on Burma must be renewed annually . DT VBG NNS IN NNP MD VB VBN RB . They were set to expire next week . PRP VBD VBN TO VB JJ NN . The curator of the Beijing Palace Museum arrived in Taiwan Sunday to arrange a local exhibition of Chinese relics . DT NN IN DT NNP NNP NNP VBD IN NNP NNP TO VB DT JJ NN IN JJ NNS . The four-day visit by Zheng Xinmiao follows an unprecedented visit to Beijing last month by the director of Taipei 's National Palace Museum . DT JJ NN IN NNP NNP VBZ DT JJ NN TO NNP JJ NN IN DT NN IN NNP POS NNP NNP NNP . Beijing has agreed to send 29 Qing Dynasty ( 1644 - 1911 ) relics to Taiwan for a joint exhibition in October . NNP VBZ VBN TO VB CD NNP NNP LRB CD : CD RRB VBZ TO NNP IN DT JJ NN IN NNP . The bulk of artifacts in Taipei 's main museum were taken from the Forbidden City by the Nationalists as they fled the Chinese mainland at the end of the civil war in 1949 . DT NN IN NNS IN NNP POS JJ NN VBD VBN IN DT NNP NNP IN DT NNS IN PRP VBD DT JJ NN IN DT NN IN DT JJ NN IN CD . The Taiwan museum holds around 6,50,000 items spanning 7,000 years of Chinese history . DT NNP NN VBZ IN CD NNS VBG CD NNS IN JJ NN . Britain 's Court of Appeal has rejected the British government 's attempt to stop an Australian terror suspect from seeking British citizenship . NNP POS NNP IN NNP VBZ VBN DT JJ NN POS NN TO VB DT JJ NN NN IN VBG JJ NN . The suspect , David Hicks , is being held at the U.S. detention facility at Guantanamo Bay , Cuba . DT NN , NNP NNP , VBZ VBG VBN IN DT NNP NN NN IN NNP NNP , NNP . Hicks ' mother was born in Britain and he has sought British citizenship hoping London would secure his release from Guantanamo , as it did for several British nationals held there . NNP POS NN VBD VBN IN NNP CC PRP VBZ VBN JJ NN VBG NNP MD VB PRP$ NN IN NNP , IN PRP VBD IN JJ JJ NNS VBN RB . Hicks , a convert to Islam , was captured by U.S. forces in Afghanistan in 2001 and accused of being an al Qaeda fighter . NNP , DT NN IN NNP , VBD VBN IN NNP NNS IN NNP IN CD CC VBN IN VBG DT NNP NNP NN . The British government had refused his citizenship bid because of his alleged involvement with terrorism . DT JJ NN VBD VBN PRP$ NN NN IN IN PRP$ JJ NN IN NN . Britain 's High Court rejected that position in December , and the Court of Appeals upheld the decision Wednesday . NNP POS NNP NNP VBD DT NN IN NNP , CC DT NNP IN NNP VBD DT NN NNP . Israeli police say Prime Minister Ehud Olmert 's personal secretary has been placed under house arrest for 10 days as part of a corruption probe - the latest political scandal to rock the Jewish state . JJ NNS VBP NNP NNP NNP NNP POS JJ NN VBZ VBN VBN IN NN NN IN CD NNS IN NN IN DT NN NN IN DT JJS JJ NN TO VB DT JJ NN . A spokesman says Shula Zaken was among more than 15 people questioned Tuesday in an investigation into government officials accepting or giving bribes in return for tax breaks . DT NN VBZ NNP NNP VBD IN JJR IN CD NNS VBN NNP IN DT NN IN NN NNS VBG CC VBG NNS IN NN IN NN NNS . Tax officials were among those questioned . NN NNS VBD IN DT VBN . Reports say Mr. Olmert has not been targeted in the probe . NNS VBP NNP NNP VBZ RB VBN VBN IN DT NN . The Israeli prime minister has been the subject of several previous corruption investigations but has not been charged . DT JJ JJ NN VBZ VBN DT NN IN JJ JJ NN NNS CC VBZ RB VBN VBN . President Bush will meet with British Prime Minister Tony Blair next Friday in Washington for talks on the Middle East crisis . NNP NNP MD VB IN JJ NNP NNP NNP NNP JJ NNP IN NNP IN NNS IN DT NNP NNP NN . The White House says the two leaders will discuss efforts to secure ' a lasting peace ' in the region . DT NNP NNP VBZ DT CD NNS MD VB NNS TO VB `` DT JJ NN `` IN DT NN . They will also talk about the situation in Iraq and Afghanistan , as well as efforts to stop the violence in Sudan 's Darfur region . PRP MD RB VB IN DT NN IN NNP CC NNP , RB RB IN NNS TO VB DT NN IN NNP POS NNP NN . Also on the agenda will be Iran 's nuclear ambitions and ways to stop Tehran from getting the technology to build nuclear weapons . RB IN DT NN MD VB NNP POS JJ NNS CC NNS TO VB NNP IN VBG DT NN TO VB JJ NNS . The two men will also discuss ways to promote free and fair trade . DT CD NNS MD RB VB NNS TO VB JJ CC JJ NN . The White House announcement of the visit Friday , noted that the United States ' has no closer ally and partner than the United Kingdom . ' DT NNP NNP NN IN DT NN NNP , VBD IN DT NNP NNPS `` VBZ DT JJR NN CC NN IN DT NNP NNP . `` Mr. Blair 's support for Mr. Bush 's policies , especially on Iraq , have prompted a backlash from critics in Britain . NNP NNP POS NN IN NNP NNP POS NNS , RB IN NNP , VBP VBN DT NN IN NNS IN NNP . An Israeli human rights group says Israeli authorities have allowed Jewish settlers to seize more than 400 hectares of land from Palestinian farmers by extending security barriers . DT JJ JJ NNS NN VBZ JJ NNS VBP VBN JJ NNS TO VB JJR IN CD NNS IN NN IN JJ NNS IN VBG NN NNS . The Rights group , B'Tselem issued a report Thursday saying settlers , with government backing , installed security fences around 12 West Bank settlements , cutting off access to private land owned by Palestinians . DT NNP NN , NNP VBD DT NN NNP VBG NNS , IN NN NN , JJ NN NNS IN CD NNP NNP NNS , VBG RP NN TO JJ NN VBN IN NNS . Israeli officials say the security zones are meant to protect Israelis from attacks . JJ NNS VBP DT NN NNS VBP VBN TO VB NNS IN NNS . The report notes that settlers have also used violence and systematic harassment to force Palestinian farmers from the land . DT NN VBZ IN NNS VBP RB VBN NN CC JJ NN TO VB JJ NNS IN DT NN . In a separate development in Gaza , Israeli military officials say two bombs exploded today near an Israeli army vehicle on patrol near the border barrier . IN DT JJ NN IN NNP , JJ JJ NNS VBP CD NNS VBD NN IN DT JJ NN NN IN NN IN DT NN NN . Nobody was injured in the blasts . DT VBD VBN IN DT NNS . British Foreign Secretary Jack Straw has condemned the Uzbek government 's crackdown on protesters in the city of Andijon . JJ NNP NNP NNP NNP VBZ VBN DT JJ NN POS NN IN NNS IN DT NN IN NNP . Speaking Sunday on the BBC , Mr. Straw said there had been a clear abuse of human rights , and urged Uzbek officials to allow foreign observers and international aid groups such as the Red Cross to survey the situation . VBG NNP IN DT NNP , NNP NNP VBD EX VBD VBN DT JJ NN IN JJ NNS , CC VBD JJ NNS TO VB JJ NNS CC JJ NN NNS JJ IN DT NNP NNP TO VB DT NN . The Associated Press says that an Uzbek foreign ministry statement called Mr. Straw 's comments ill-informed . DT NNP NNP VBZ IN DT JJ JJ NN NN VBD NNP NNP POS NNS JJ . Meanwhile , Russian Foreign Minister Sergei Lavrov blamed regional extremists , including Afghanistan 's Taleban , for the violence . RB , JJ NNP NNP NNP NNP VBD JJ NNS , VBG NNP POS NNP , IN DT NN . But the New York-based Human Rights Watch organization argues that the Uzbek government can not use the war on terror to justify shooting demonstrators protesting poverty and repression . CC DT NNP JJ NNP NNP NNP NN VBZ IN DT JJ NN MD RB VB DT NN IN NN TO VB NN NNS VBG NN CC NN . U.N. Secretary-General Kofi Annan says the world may soon face what he calls a ' cascade ' of countries acquiring nuclear weapons . NNP NNP NNP NNP VBZ DT NN MD RB VB WP PRP VBZ DT `` NN `` IN NNS VBG JJ NNS . Mr. Annan says relying on the Nuclear Non-Proliferation Treaty is not enough and proposes new , joint action , including tougher inspection rules . NNP NNP VBZ VBG IN DT NNP NNP NNP VBZ RB RB CC VBZ JJ , JJ NN , VBG JJR NN NNS . His comments at a security conference in Germany Sunday come as concerns grow over North Korea and Iran 's nuclear programs . PRP$ NNS IN DT NN NN IN NNP NNP VBD IN NNS VBP IN NNP NNP CC NNP POS JJ NNS . German Foreign Minister Joschka Fischer struck a tougher tone on Iran , telling the conference Tehran could be referred to the U.N. Security Council if it resumes nuclear enrichment activities . JJ NNP NNP NNP NNP VBD DT JJR NN IN NNP , VBG DT NN NN MD VB VBN TO DT NNP NNP NNP IN PRP VBZ JJ NN NNS . Germany , France and Britain have been leading diplomatic efforts to persuade Iran to not develop nuclear weapons , which Tehran says it is not trying to do . NNP , NNP CC NNP VBP VBN VBG JJ NNS TO VB NNP TO RB VB JJ NNS , WDT NNP VBZ PRP VBZ RB VBG TO VB . The United States has called for a tougher line with the country DT NNP NNP VBZ VBN IN DT JJR NN IN DT NN China is offering Taiwan a series of trade concessions in an effort to boost public sentiment on the island in favor of reunification with the mainland . NNP VBZ VBG NNP DT NN IN NN NNS IN DT NN TO VB JJ NN IN DT NN IN NN IN NN IN DT NN . The concessions , announced Saturday , will add four types of Taiwan-grown fruit to a list of 18 varieties that can enter China . DT NNS , VBN NNP , MD VB CD NNS IN JJ NN TO DT NN IN CD NNS WDT MD VB NNP . They will also offer a tax-free import status to 11 kinds of vegetables and some Taiwan aquatic products . PRP MD RB VB DT JJ NN NN TO CD NNS IN NNS CC DT NNP JJ NNS . The director of China 's Taiwan Affairs Office made the announcement in Beijing at the end of a government forum on cross-straits business . DT NN IN NNP POS NNP NNP NNP VBD DT NN IN NNP IN DT NN IN DT NN NN IN NNS NN . The former chairman of Taiwan 's opposition party joined the forum , but representatives of Taiwan President Chen Shui-bian were absent . DT JJ NN IN NNP POS NN NN VBD DT NN , CC NNS IN NNP NNP NNP NNP VBD JJ . Taipei and Beijing split amid civil war in 1949 . NNP CC NNP VBD IN JJ NN IN CD . China considers the island part of its territory and says it must accept reunification . NNP VBZ DT NN NN IN PRP$ NN CC VBZ PRP MD VB NN . Iraqi police say a suicide truck bomber has killed at least 15 people and wounded more than 20 at a police station in northern Iraq . JJ NNS VBP DT NN NN NN VBZ VBN IN JJS CD NNS CC VBD JJR IN CD IN DT NN NN IN JJ NNP . Police say the attack took place Sunday in the mainly Sunni town of Adwar , 20 kilometers south of Tikrit . NNS VBP DT NN VBD NN NNP IN DT RB JJ NN IN NNP , CD NNS RB IN NNP . They say the bomber rammed a truck loaded with hay through the gate of a police station and triggered the blast outside the building . PRP VBP DT NN VBD DT NN VBN IN NN IN DT NN IN DT NN NN CC VBD DT NN IN DT NN . The explosion severely damaged the building , killing and wounding policemen , prisoners and civilians . DT NN RB VBD DT NN , VBG CC VBG NNS , NNS CC NNS . Officials say the death toll could rise as emergency workers search through the rubble . NNS VBP DT NN NN MD VB IN NN NNS NN IN DT NN . Elsewhere , police say gunmen killed eight border guard recruits today as they were riding a minibus near the town of Rabiyaa in northwestern Iraq , near the Syrian frontier . RB , NNS VBP NNS VBD CD NN NN VBZ NN IN PRP VBD VBG DT NN IN DT NN IN NNP IN JJ NNP , IN DT JJ NN . In another development , the U.S. military says an American soldier was killed today in a gun battle with insurgents in Diyala province , northeast of Baghdad . IN DT NN , DT NNP NN VBZ DT JJ NN VBD VBN NN IN DT NN NN IN NNS IN NNP NN , NN IN NNP . Israeli forces have carried out air strikes on a vehicle and buildings linked to the Palestinian militant group , the al-Aqsa Martyrs Brigades . JJ NNS VBP VBN RP NN NNS IN DT NN CC NNS VBN TO DT JJ JJ NN , DT NNP NNP NNP . Three Palestinian men were killed in a Gaza City attack while Israeli aircraft and artillery also targeted areas near the northern Gaza town of Beit Hanoun . CD JJ NNS VBD VBN IN DT NNP NNP NN IN JJ NN CC NN RB VBD NNS IN DT JJ NNP NN IN NNP NNP . Israel launched the strikes Sunday after Palestinians fired rockets from Gaza into southern Israel on Friday . NNP VBD DT NNS NNP IN NNS VBD NNS IN NNP IN JJ NNP IN NNP . Elsewhere , Israeli police say a knife-wielding Palestinian man killed a woman and wounded five other passengers on a bus near Tel Aviv . RB , JJ NNS VBP DT JJ JJ NN VBD DT NN CC VBD CD JJ NNS IN DT NN IN NNP NNP . Authorities say the man entered Israel from the West Bank . NNS VBP DT NN VBD NNP IN DT NNP NNP . Tensions between Israel and the Palestinians have risen in recent days after Israel killed a top commander of the Islamic Jihad militant group . NNS IN NNP CC DT NNS VBP VBN IN JJ NNS IN NNP VBD DT JJ NN IN DT NNP NNP JJ NN . Pakistani security forces have detained at least 25 suspected Islamic militants in a series of raids linked to the July 7 London suicide bombings . JJ NN NNS VBP VBN IN JJS CD JJ JJ NNS IN DT NN IN NNS VBN TO DT NNP CD NNP NN NNS . Officials in Punjab province say members of outlawed Islamist groups were among the people detained overnight in the cities of Dera Ghazi Khan , Multan , Faisalabad and Khushab . NNS IN NNP NN VBP NNS IN JJ NN NNS VBD IN DT NNS VBN RB IN DT NNS IN NNP NNP NNP , NNP , NNP CC NNP . They say the suspects are being questioned for possible links with three of the four London bombers - British-born Muslims of Pakistani origin who had visited Pakistan in the past year . PRP VBP DT NNS VBP VBG VBN IN JJ NNS IN CD IN DT CD NNP NNS IN JJ NNS IN JJ NN WP VBD VBN NNP IN DT JJ NN . On Monday , Pakistani immigration officials released photographs of the three - IN NNP , JJ NN NNS VBD NNS IN DT CD : Mohammad Sidique Khan , Shehzad Tanweer and Hasib Hussain - taken upon their arrival in Karachi . NNP NNP NNP , NNP NNP CC NNP NNP : VBN IN PRP$ NN IN NNP . There was no official confirmation of reports that at least one of the bombers visited Islamic religious schools during the visits . EX VBD DT JJ NN IN NNS IN IN JJS CD IN DT NNS VBD JJ JJ NNS IN DT NNS . Clashes between Maoist militants and government forces in western Nepal have killed at least 24 people , as a rebel-blockade shut down major highways in the capital city . NNS IN NNP NNS CC NN NNS IN JJ NNP VBP VBN IN JJS CD NNS , IN DT NN VBD RP JJ NNS IN DT NN NN . Army officials say rebels attacked patrols in a remote area in far-western Nepal . NNP NNS VBP NNS VBD NNS IN DT JJ NN IN JJ NNP . Officials said at least 22 guerrillas and two soldiers were killed in the fighting . NNS VBD IN JJS CD NNS CC CD NNS VBD VBN IN DT NN . In the capital Kathmandu , Maoist rebels Thursday blocked major roads in and out of the city to protest alleged abuses by security forces . IN DT NN NNP , NNP NNS NNP VBD JJ NNS IN CC IN IN DT NN TO VB JJ NNS IN NN NNS . The rebels are demanding information about their missing activists who , they say , disappeared while in custody . DT NNS VBP VBG NN IN PRP$ JJ NNS WP , PRP VBP , VBD IN IN NN . A similar rebel road-block in Kathmandu for a week in August led to a shortage of essential supplies in the city . DT JJ NN NN IN NNP IN DT NN IN NNP VBD TO DT NN IN JJ NNS IN DT NN . Maoists rebels have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state . NNS NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN . Lebanese authorities say four people are dead after an apparent assassination attempt against a top Lebanese police official near the southern city of Sidon . JJ NNS VBP CD NNS VBP JJ IN DT JJ NN NN IN DT JJ JJ NN NN IN DT JJ NN IN NNP . Officials say Colonel Samir Shehade was wounded , but in stable condition after a bomb exploded near his car Tuesday . NNS VBP NNP NNP NNP VBD VBN , CC IN JJ NN IN DT NN VBD IN PRP$ NN NNP . The blast killed four of his aides and bodyguards , and wounded four others . DT NN VBD CD IN PRP$ NNS CC NNS , CC VBD CD NNS . There was no immediate word on a possible motive for the attack against Shehade , a senior officer in Lebanon 's internal security force . EX VBD DT JJ NN IN DT JJ NN IN DT NN IN NNP , DT JJ NN IN NNP POS JJ NN NN . He was involved in the investigation of last year 's killing of former Prime Minister Rafik Hariri . PRP VBD VBN IN DT NN IN JJ NN POS NN IN JJ NNP NNP NNP NNP . Many in Lebanon blame Syria for the Hariri murder , which the United Nations also is investigating separately . JJ IN NNP VBP NNP IN DT NNP NN , WDT DT NNP NNP RB VBZ VBG RB . Syria denies any involvement . NNP VBZ DT NN . President Bush 's pick for secretary of the Department of Homeland Security says the White House was extremely supportive of his decision to withdraw from consideration for the post . NNP NNP POS NN IN NN IN DT NNP IN NNP NNP VBZ DT NNP NNP VBD RB JJ IN PRP$ NN TO VB IN NN IN DT NN . Bernard Kerik made the comment to reporters outside his home in New Jersey Saturday . NNP NNP VBD DT NN TO NNS IN PRP$ NN IN NNP NNP NNP . He said he informed the White House Friday of the decision to withdraw after uncovering tax and immigration problems related to a woman who was his family 's housekeeper and nanny . PRP VBD PRP VBD DT NNP NNP NNP IN DT NN TO VB IN VBG NN CC NN NNS VBN TO DT NN WP VBD PRP$ NN POS NN CC NN . President Bush nominated Mr. Kerik last week to succeed Tom Ridge . NNP NNP VBD NNP NNP JJ NN TO VB NNP NNP . Some analysts said he lacked the skills necessary to lead the 180,000-employee agency . DT NNS VBD PRP VBD DT NNS JJ TO VB DT JJ NN . They also questioned his links to the Taser International stun gun company that earned him millions of dollars through stock options . PRP RB VBD PRP$ NNS TO DT NNP NNP NN NN NN WDT VBD PRP NNS IN NNS IN NN NNS . Mr. Kerik once served as New York City police commissioner under New York Mayor Rudolph Giuliani . NNP NNP RB VBD IN NNP NNP NNP NN NN IN NNP NNP NNP NNP NNP . The former mayor today described Mr. Kerik as a highly qualified candidate who made a mistake . DT JJ NN NN VBD NNP NNP IN DT RB JJ NN WP VBD DT NN . A security official in Pakistan says a suspected U.S. drone fired missiles at a building used by Taliban militants in Pakistan 's Kurram tribal region , near the Afghan border . DT NN NN IN NNP VBZ DT JJ NNP NN VBD NNS IN DT NN VBN IN NNP NNS IN NNP POS NNP NN NN , IN DT JJ NN . Witnesses say at least 12 people were killed in the missile attack . NNS VBP IN JJS CD NNS VBD VBN IN DT NN NN . The security official did not immediately confirm the witnesses ' claims . DT NN NN VBD RB RB VB DT NNS POS NNS . If verified , this would be the first suspected drone attack in Kurram . IN VBN , DT MD VB DT JJ JJ NN NN IN NNP . The strike comes just days after the new U.S. envoy to the region , Richard Holbrooke , visited Pakistan to talk to senior officials about security in the border region . DT NN VBZ RB NNS IN DT JJ NNP NN TO DT NN , NNP NNP , VBD NNP TO VB TO JJ NNS IN NN IN DT NN NN . There have been more than 30 similar missile strikes on Pakistani territory since the middle of last year , despite the public objections of the Pakistani government . EX VBP VBN JJR IN CD JJ NN NNS IN JJ NN IN DT NN IN JJ NN , IN DT JJ NNS IN DT JJ NN . The strikes have generally targeted al-Qaida and Taliban militants . DT NNS VBP RB VBN NNP CC NNP NNS . Iran has officially confirmed it has detained an Iranian American in Tehran a week after the United States demanded his release and the release of three other Iranian-Americans . NNP VBZ RB VBN PRP VBZ VBN DT JJ NN IN NNP DT NN IN DT NNP NNPS VBD PRP$ NN CC DT NN IN CD JJ NNS . A foreign ministry spokesman confirmed the detainment of Ali Shakeri , a peace activist from California Sunday . DT JJ NN NN VBD DT NN IN NNP NNP , DT NN NN IN NNP NNP . Iranian officials previously accused three of the dual nationals of endangering national security , but no information has been given about Shakeri . JJ NNS RB VBD CD IN DT JJ NNS IN VBG JJ NN , CC DT NN VBZ VBN VBN IN NNP . President Bush has called for the detainees to be freed ' immediately and unconditionally . ' NNP NNP VBZ VBN IN DT NNS TO VB VBN `` RB CC RB . `` He said the four pose no threat to Iran . PRP VBD DT CD VBP DT NN TO NNP . He noted they were in Iran either to visit family or conduct humanitarian work . PRP VBD PRP VBD IN NNP CC TO VB NN CC NN JJ NN . The Democratic Republic of Congo has transferred a militia leader to the International Criminal Court in the Hague to face war crimes charges . DT JJ NNP IN NNP VBZ VBN DT NN NN TO DT NNP NNP NNP IN DT NNP TO VB NN NNS NNS . The head of the Union of Congolese Patriots , Thomas Lubanga , was being flown from the capital Kinshasa to the court 's headquarters Friday . DT NN IN DT NNP IN JJ NNPS , NNP NNP , VBD VBG VBN IN DT NN NN TO DT NN POS NN NNP . The court issued an arrest warrant for Lubanga last month , but it was not made public until Friday . DT NN VBD DT NN NN IN NNP JJ NN , CC PRP VBD RB VBN JJ IN NNP . The court says there are reasons to believe Lubanga enlisted children under the age of 15 to participate in fighting . DT NN VBZ EX VBP NNS TO VB NNP JJ NNS IN DT NN IN CD TO VB IN NN . The rebel leader is to become the first person processed by the court . DT JJ NN VBZ TO VB DT JJ NN VBN IN DT NN . Lubanga has been detained in Kinshasa since his arrest in March 2005 . NNP VBZ VBN VBN IN NNP IN PRP$ NN IN NNP CD . His group , dominated by ethnic Hema rebels , is accused of committing widespread human rights violations in Congo 's northeastern Ituri district . PRP$ NN , VBN IN JJ NNP NNS , VBZ VBN IN VBG JJ JJ NNS NNS IN NNP POS JJ NNP NN . Congo 's five-year civil war ended in 2003 . NNP POS JJ JJ NN VBN IN CD . The new chief of the United Nations commission investigating the assassination of former Lebanese Prime Minister Rafik Hariri has arrived in Beirut . DT JJ NN IN DT NNP NNPS NN VBG DT NN IN JJ JJ NNP NNP NNP NNP VBZ VBN IN NNP . Belgian prosecutor Serge Brammertz says he is acutely aware of the expectations of victims ' families of the February attack and he will do his utmost to meet those expectations . JJ NN NNP NNP VBZ PRP VBZ RB JJ IN DT NNS IN NNS POS NNS IN DT NNP NN CC PRP MD VB PRP$ NN TO VB DT NNS . Brammertz replaces German prosecutor Detlev Mehlis , who stepped down last month . NNP VBZ JJ NN NNP NNP , WP VBD RB JJ NN . The U.N. investigation has already implicated several top Syrian officials in the killing of Mr. Hariri and at least 20 others in a massive bomb attack . DT NNP NN VBZ RB VBN JJ JJ JJ NNS IN DT NN IN NNP NNP CC IN JJS CD NNS IN DT JJ NN NN . In October , the U.N. Security Council passed a resolution demanding Syria 's full cooperation with the probe . IN NNP , DT NNP NNP NNP VBD DT NN VBG NNP POS JJ NN IN DT NN . But Syria 's president , Bashar al-Assad , has already rejected the commission 's request to interview him . CC NNP POS NN , NNP NNP , VBZ RB VBN DT NN POS NN TO VB PRP . Damascus has denied it played any role in the assassination . NNP VBZ VBN PRP VBD DT NN IN DT NN . Police in Iran have warned that they will confront any opposition protests on the anniversary of the country 's disputed June presidential election . NNS IN NNP VBP VBN IN PRP MD VB DT NN NNS IN DT NN IN DT NN POS JJ NNP JJ NN . Iran 's ILNA news agency quoted Tehran police chief General Hossein Sajedinia as saying that police will confront any illegal gathering . NNP POS NNP NN NN VBN NNP NN NN NNP NNP NNP IN VBG IN NNS MD VB DT JJ NN . Opposition leaders Mir Hossein Mousavi and Mehdi Karoubi have called on supporters to take part in peaceful protests to mark the June 12 election , which returned President Mahmoud Ahmadinejad to power . NN NNS NNP NNP NNP CC NNP NNP VBP VBN IN NNS TO VB NN IN JJ NNS TO VB DT NNP CD NN , WDT VBD NNP NNP NNP TO NN . Iran 's opposition accuses Mr. Ahmadinejad of rigging the election , adding that Mr. Mousavi was the rightful winner . NNP POS NN VBZ NNP NNP IN VBG DT NN , VBG IN NNP NNP VBD DT JJ NN . Thousands of people were arrested in the post-election protests that left several demonstrators dead . NNS IN NNS VBD VBN IN DT JJ NNS WDT VBD JJ NNS JJ . More than 80 people were sentenced to prison terms of up to 15 years in connection with the demonstrations . JJR IN CD NNS VBD VBN TO NN NNS IN IN TO CD NNS IN NN IN DT NNS . Several other activists face death sentences . JJ JJ NNS VBP NN NNS . Lebanese officials say Syria 's military and intelligence withdrawal from Lebanon will be complete ahead of schedule , within the next two days . JJ NNS VBP NNP POS JJ CC NN NN IN NNP MD VB JJ RB IN NN , IN DT JJ CD NNS . There were conflicting reports of the exact timing . EX VBD VBG NNS IN DT JJ NN . A Lebanese military official said Saturday the pullout would be complete by Sunday , while a security official said it would be in the next 48 hours . DT JJ JJ NN VBD NNP DT NN MD VB JJ IN NNP , IN DT NN NN VBD PRP MD VB IN DT JJ CD NNS . Last week , Syria said the last of its 14,000 troops would be out of Lebanon by Tuesday . JJ NN , NNP VBD DT NN IN PRP$ CD NNS MD VB IN IN NNP IN NNP . Saturday , a large number of Syrian troops left positions in Lebanon 's eastern Bekaa Valley . NNP , DT JJ NN IN JJ NNS VBD NNS IN NNP POS JJ NNP NNP . As Syria prepares to end its 29-year presence in Lebanon , thousands of Maronite Christians marched in the mountains north of Beirut calling for the release of imprisoned anti-Syrian warlord Samir Geagea . IN NNP VBZ TO VB PRP$ JJ NN IN NNP , NNS IN NNP NNPS VBD IN DT NNS NN IN NNP VBG IN DT NN IN JJ JJ NN NNP NNP . Jailed in 1994 , Geagea is serving multiple life sentences for crimes committed during Lebanon 's civil war . VBN IN CD , NNP VBZ VBG JJ NN NNS IN NNS VBN IN NNP POS JJ NN . British airport authorities say service should be back to normal Friday after strict new security measures caused a week of serious flight delays and cancellations . JJ NN NNS VBP NN MD VB RB TO JJ NNP IN JJ JJ NN NNS VBD DT NN IN JJ NN NNS CC NNS . Officials banned nearly all liquids and many carry-on items after police last week broke up an alleged plot to blow up passenger planes with liquid explosives . NNS VBD RB DT NNS CC JJ JJ NNS IN NNS JJ NN VBD RP DT JJ NN TO VB RP NN NNS IN JJ NNS . British Airways canceled just 19 flights from London 's Heathrow Airport Thursday . NNP NNPS VBD RB CD NNS IN NNP POS NNP NNP NNP . Heathrow is also scrambling to return thousands of pieces of luggage left behind by frustrated passengers . NNP VBZ RB VBG TO VB NNS IN NNS IN NN VBN IN IN JJ NNS . Meanwhile , British and U.S. news reports say police investigating the alleged plot have found a suitcase filled with bomb-making components in the woods northwest of London . RB , NNP CC NNP NN NNS VBP NNS VBG DT JJ NN VBP VBN DT NN VBN IN JJ NNS IN DT NNS NN IN NNP . One of the suspects lives in the area . CD IN DT NNS VBZ IN DT NN . Twenty-three people , most of them British citizens of Pakistani descent , are in police custody in London . CD NNS , JJS IN PRP JJ NNS IN JJ NN , VBP IN NN NN IN NNP . Seven other suspects are jailed in Pakistan . CD JJ NNS VBP VBN IN NNP . The Venezuelan Supreme Court had ruled in favor of a lower court petition seeking extradition from the United States of a Cuban militant wanted in connection with the 1976 bombing of a Cuban Jet liner that killed 73 people . DT JJ NNP NNP VBD VBN IN NN IN DT JJR NN NN VBG NN IN DT NNP NNPS IN DT JJ NN VBN IN NN IN DT CD NN IN DT JJ NNP NN WDT VBD CD NNS . A statement from the Supreme Court Tuesday said Luis Posada Carriles should be tried in Venezuela . DT NN IN DT NNP NNP NNP VBD NNP NNP NNP MD VB VBN IN NNP . Mr. Posada escaped from a Venezuelan prison before he could be tried in 1985 over the bombing . NNP NNP VBD IN DT JJ NN IN PRP MD VB VBN IN CD IN DT NN . He was later jailed in Panama where he was accused in a plot to kill Cuban President Fidel Castro . PRP VBD RB VBN IN NNP WRB PRP VBD VBN IN DT NN TO VB JJ NNP NNP NNP . He was pardoned last year on that charge . PRP VBD VBN JJ NN IN DT NN . Mr. Posada applied for asylum in the United States last month . NNP NNP VBD IN NN IN DT NNP NNPS JJ NN . New opinion polls indicate Israeli Prime Minister Ariel Sharon 's new party will win a large number of seats in March 's parliamentary elections . JJ NN NNS VBP JJ NNP NNP NNP NNP POS JJ NN MD VB DT JJ NN IN NNS IN NNP POS JJ NNS . The polls were published Friday in the Ma'ariv and Yedioth Ahronoth newspapers . DT NNS VBD VBN NNP IN DT NNP CC NNP NNP NNS . They say the new party would win at least 33 seats in the 120-member parliament . PRP VBP DT JJ NN MD VB IN JJS CD NNS IN DT JJ NN . The polls gave the Labor party at least 26 seats and Mr. Sharon 's former party , Likud , just 13 . DT NNS VBD DT NN NN IN JJS CD NNS CC NNP NNP POS JJ NN , NNP , RB CD . Mr. Sharon quit Likud - the party he co-founded in 1973 - because he said the party was no longer able to lead Israel to its national goals . NNP NNP VBD NNP IN DT NN PRP VBD IN CD : IN PRP VBD DT NN VBD RB RB JJ TO VB NNP TO PRP$ JJ NNS . Egyptian President Hosni Mubarak has chaired his first Cabinet meeting since undergoing gallbladder surgery last month in Germany . JJ NNP NNP NNP VBZ VBN PRP$ JJ NNP NN IN VBG NN NN JJ NN IN NNP . Mr. Mubarak met with Egyptian Prime Minister Ahmed Nazif and several other government ministers Thursday in the Red Sea resort of Sharm el-Sheikh . NNP NNP VBD IN JJ NNP NNP NNP NNP CC JJ JJ NN NNS NNP IN DT NNP NNP NN IN NNP NNP . Mr. Mubarak temporarily handed over power to Prime Minister Nazif before undergoing surgery in Heidelberg , Germany on March 6 . NNP NNP RB VBD IN NN TO NNP NNP NNP IN VBG NN IN NNP , NNP IN NNP CD . Doctors removed his gallbladder and a growth in his small intestine . NNS VBD PRP$ NN CC DT NN IN PRP$ JJ NN . The 81-year-old president 's absence from public functions had set off new speculation about his frail health . DT JJ NN POS NN IN JJ NNS VBD VBN RP JJ NN IN PRP$ JJ NN . Mr. Mubarak has ruled Egypt for nearly 30 years . NNP NNP VBZ VBN NNP IN RB CD NNS . His ruling party is expected to dominate in parliamentary elections later this year and Mr. Mubarak is expected to run for president again next year . PRP$ NN NN VBZ VBN TO VB IN JJ NNS RBR DT NN CC NNP NNP VBZ VBN TO VB IN NN RB JJ NN . Many political experts also believe President Mubarak is grooming his son , Gamal , to take over . JJ JJ NNS RB VBP NNP NNP VBZ VBG PRP$ NN , NNP , TO VB RP . Iraqi police say a suicide bomber drove a truck into a checkpoint Monday in a town north of Baghdad , killing at least nine people . JJ NNS VBP DT NN NN VBD DT NN IN DT NN NNP IN DT NN NN IN NNP , VBG IN JJS CD NNS . Police say the victims were members of a neighborhood patrol ( known as Awakening Councils , ) set up to oppose al-Qaida militants . NNS VBP DT NNS VBD NNS IN DT NN NN LRB VBN IN VBG NNS , RRB VBD RP TO VB NNP NNS . Two other people were reported missing and believed to be dead . CD JJ NNS VBD VBN VBG CC VBN TO VB JJ . The attack comes just days after the release of a new Internet message purportedly by al-Qaida leader Osama bin Laden . DT NN VBZ RB NNS IN DT NN IN DT JJ NNP NN RB IN NNP NN NNP NNP NNP . He warned Iraqis not to take up arms against his movement or to support the unity government . PRP VBD NNS RB TO VB RP NNS IN PRP$ NN CC TO VB DT NN NN . In a separate incident today , authorities said at least two Iraqi soldiers were killed and two others wounded when a roadside bomb struck their patrol near the Iranian border in Diyala province . IN DT JJ NN NN , NNS VBD IN JJS CD JJ NNS VBD VBN CC CD NNS VBD WRB DT NN NN VBD PRP$ NN IN DT JJ NN IN NNP NN . Several U.S. lawmakers have expressed concern about the possible nomination of Air Force General Michael Hayden to become the next director of the Central Intelligence Agency . JJ NNP NNS VBP VBN NN IN DT JJ NN IN NNP NNP NNP NNP NNP TO VB DT JJ NN IN DT NNP NNP NNP . Senior Bush administration officials have said General Hayden may be named to replace Porter Goss , who announced his resignation on Friday . NNP NNP NN NNS VBP VBN NNP NNP MD VB VBN TO VB NNP NNP , WP VBD PRP$ NN IN NNP . But Republican Congressman Pete Hoekstra said a military official should not be in charge of the CIA because it is a civilian agency . CC NNP NNP NNP NNP VBD DT JJ NN MD RB VB IN NN IN DT NNP IN PRP VBZ DT JJ NN . He told Fox News Sunday that the appointment of General Hayden could raise tensions between the CIA and defense officials . PRP VBD NNP NNP NNP IN DT NN IN NNP NNP MD VB NNS IN DT NNP CC NN NNS . Senators Diane Feinstein , a Democrat , and Saxby Chambliss , a Republican , also expressed concern over placing a military official in charge of the CIA . NNP NNP NNP , DT NNP , CC NNP NNP , DT NNP , RB VBD NN IN VBG DT JJ NN IN NN IN DT NNP . But Republican Senator John McCain told CBS television that he hopes that , if nominated , General Hayden would be confirmed quickly in congressional hearings . CC NNP NNP NNP NNP VBD NNP NN IN PRP VBZ IN , IN VBN , NNP NNP MD VB VBN RB IN JJ NNS . Afghan authorities say at least two Taleban insurgents have been killed and six others captured , while two Afghan soldiers and a civilian were wounded in separate incidents . JJ NNS VBP IN JJS CD NNP NNS VBP VBN VBN CC CD NNS VBD , IN CD JJ NNS CC DT JJ VBD VBN IN JJ NNS . Local officials say the militants were killed overnight in southern Helmand province after Taleban forces attacked a police post there . JJ NNS VBP DT NNS VBD VBN JJ IN JJ NNP NN IN NNP NNS VBD DT NN NN RB . No police casualties were reported . DT NN NNS VBD VBN . In another incident late Monday , in southeastern Paktika province , security forces arrested six insurgents following a brief exchange of fire . IN DT NN RB NNP , IN JJ NNP NN , NN NNS VBN CD NNS VBG DT JJ NN IN NN . A spokesman for the provincial governor said a mid-level Taleban commander , Mullah Akhtar Mohammad , is among the arrested . DT NN IN DT JJ NN VBD DT JJ NNP NN , NNP NNP NNP , VBZ IN DT VBN . And , in eastern Khost province , at least two Afghan soldiers and a civilian were wounded when an army vehicle was struck by a roadside bomb . CC , IN JJ NNP NN , IN JJS CD JJ NNS CC DT JJ VBD VBN WRB DT NN NN VBD VBN IN DT NN NN . Afghanistan 's southern regions have seen some of the worst fighting in recent months since the Taleban regime was ousted from power in 2001 . NNP POS JJ NNS VBP VBN DT IN DT JJS NN IN JJ NNS IN DT NNP NN VBD VBN IN NN IN CD . In Moscow , the lower house of Parliament has approved President Vladimir Putin 's controversial plan to end popular elections for Russia 's regional governors , and allow the Kremlin to appoint them instead . IN NNP , DT JJR NN IN NNP VBZ VBN NNP NNP NNP POS JJ NN TO VB JJ NNS IN NNP POS JJ NNS , CC VB DT NNP TO VB PRP RB . Mr. Putin says such changes are necessary to block terrorists from trying to influence Russia 's local elections , but critics across the political spectrum say his plan is undemocratic . NNP NNP VBZ JJ NNS VBP JJ TO VB NNS IN VBG TO VB NNP POS JJ NNS , CC NNS IN DT JJ NN VBP PRP$ NN VBZ JJ . The bill won final approval in the State Duma by a wide margin Friday . DT NN VBD JJ NN IN DT NN NNP IN DT JJ NN NNP . It is expected to pass easily in the upper house . PRP VBZ VBN TO VB RB IN DT JJ NN . The central government proposes that the Kremlin should select gubernatorial candidates , whose appointment would have to be confirmed by regional lawmakers . DT JJ NN VBZ IN DT NNP MD VB JJ NNS , WP$ NN MD VB TO VB VBN IN JJ NNS . If a provincial parliament rejects a governor chosen by Moscow , Mr. Putin could either dissolve the local body or over-rule its veto by appointing an acting governor . IN DT JJ NN VBZ DT NN VBN IN NNP , NNP NNP MD RB VB DT JJ NN CC JJ PRP$ NN IN VBG DT JJ NN . A British court has set a September trial date for five men accused of planning to detonate bombs on London 's transport system . DT JJ NN VBZ VBN DT NNP NN NN IN CD NNS VBN IN VBG TO VB NNS IN NNP POS NN NN . The defendants appeared before London 's Old Bailey court Thursday via videolink from a high-security prison . DT NNS VBD IN NNP POS NNP NNP NN NNP IN NN IN DT JJ NN . No one was hurt in the July 21 attacks when four of the men , ranging in ages from 23 to 27 , tried to detonate bombs at three subway stations and a bus on July 21 . DT NN VBD VBN IN DT NNP CD NNS WRB CD IN DT NNS , VBG IN NNS IN CD TO CD , VBD TO VB NNS IN CD NN NNS CC DT NN IN NNP CD . A fifth man was arrested after explosives were discovered in his backpack in London . DT JJ NN VBD VBN IN NNS VBD VBN IN PRP$ NN IN NNP . The charges against the men include attempted murder , possession of explosives and conspiracy to murder . DT NNS IN DT NNS VBP JJ NN , NN IN NNS CC NN TO NN . The bomb attempts came two weeks after suicide bombers killed 52 people in the London subway system and a bus . DT NN NNS VBD CD NNS IN NN NNS VBD CD NNS IN DT NNP NN NN CC DT NN . Two U.S. lawmakers have formed a caucus to help mobilize support for Tibet 's exiled spiritual leader , the Dalai Lama , and to bring attention to China 's rule over the Tibetan people . CD NNP NNS VBP VBN DT NN TO VB VB NN IN NNP POS JJ JJ NN , DT NNP NNP , CC TO VB NN TO NNP POS NN IN DT JJ NNS . Republican Congressman Dana Rohrabacher of California and Democrat Neil Abercrombie of Hawaii plan to co-chair the caucus . NNP NNP NNP NNP IN NNP CC NNP NNP NNP IN NNP NN TO VB DT NN . In a statement Tuesday , Rohrabacher said he and Abercrombie urge other members of Congress to join the caucus to uphold the rights of Tibet 's people and give a voice to those silenced by China 's government . IN DT NN NNP , NNP VBD PRP CC NNP VBP JJ NNS IN NNP TO VB DT NN TO VB DT NNS IN NNP POS NNS CC VB DT NN TO DT VBN IN NNP POS NN . Rohrabacher also said the U.S. can not hide behind the spirit of the Olympics this August in Beijing as an excuse to ignore what the congressman called China 's ' horrifying ' human rights record . NNP RB VBD DT NNP MD RB VB IN DT NN IN DT NNPS DT NNP IN NNP IN DT NN TO VB WP DT NN VBD NNP POS `` VBG `` JJ NNS NN . China has controlled Tibet since 1951 and accuses the Dalai Lama of seeking independence for the region . NNP VBZ VBN NNP IN CD CC VBZ DT NNP NNP IN VBG NN IN DT NN . The spiritual leader insists he only wants autonomy for Tibetans under Chinese sovereignty . DT JJ NN VBZ PRP RB VBZ NN IN NNS IN JJ NN . Hurricane Katrina has battered southern Florida with high winds and heavy rain , leaving at least three people dead before moving out over the Gulf of Mexico . NNP NNP VBZ VBN JJ NNP IN JJ NNS CC JJ NN , VBG IN JJ CD NNS JJ IN VBG RP IN DT NNP IN NNP . The 11th named storm of this year 's Atlantic hurricane season came ashore Thursday between Hallandale Beach and North Miami Beach , packing 130 kilometer-per-hour winds . DT JJ VBN NN IN DT NN POS NNP NN NN VBD RB NNP IN NNP NNP CC NNP NNP NNP , VBG CD JJ NNS . It knocked down trees , flooded streets and left more than one million people without power . PRP VBD RP NNS , VBN NNS CC VBD JJR IN CD CD NNS IN NN . The U.S. National Weather Service says Katrina temporarily lost some strength early Friday , but regained hurricane status as it moved over the Gulf of Mexico . DT NNP NNP NNP NNP VBZ NNP RB VBD DT NN JJ NNP , CC VBD NN NN IN PRP VBD IN DT NNP IN NNP . Forecasters anticipate the storm will turn north in the Gulf as it strengthens and could strike Florida 's panhandle in the coming days . NNS VBP DT NN MD VB RB IN DT NNP IN PRP VBZ CC MD VB NNP POS NN IN DT JJ NNS . The Goldman Environmental Prize is awarded to environmental activists around the world annually for what the Goldman foundation calls ' environmental grass roots heroism . ' DT NNP NNP NNP VBZ VBN TO JJ NNS IN DT NN RB IN WP DT NNP NN VBZ `` JJ NN NNS NN . `` The prize carries with it $ 1,50,000 and has been called the nobel prize for the environment . DT NN VBZ IN PRP $ CD CC VBZ VBN VBN DT NN NN IN DT NN . This year 's winner from Europe is Belgium 's Ignace Schops . DT NN POS NN IN NNP VBZ NNP POS NNP NNP . VOA'S Paul Sisco has his story and the story of the national park he helped establish . NNP NNP NNP VBZ PRP$ NN CC DT NN IN DT JJ NN PRP VBD VB . Bosnia 's Foreign Minister Mladen Ivanic has resigned two days after the United States and the top International mediator in Bosnia-Herzegovina imposed new sanctions against the country 's Serb Republic . NNP POS NNP NNP NNP NNP VBZ VBN CD NNS IN DT NNP NNPS CC DT JJ NNP NN IN NNP VBD JJ NNS IN DT NN POS JJ NNP . Mr. Ivanic is chairman of the Serb Party of Democratic Progress , one of two Bosnian Serb political movements , whose leaders have been barred from entering the United States for undermining Balkan peace efforts . NNP NNP VBZ NN IN DT JJ NNP IN JJ NNP , CD IN CD JJ JJ JJ NNS , WP$ NNS VBP VBN VBN IN VBG DT NNP NNPS IN VBG JJ NN NNS . The other is the Serb Democratic Party , founded by indicted war crimes suspect Radovan Karadzic . DT NN VBZ DT JJ NNP NNP , VBN IN VBN NN NNS VBP NNP NNP . As the United States announced the measures , International mediator Paddy Ashdown fired six top Bosnian Serb police officers and three other government officials for failing to arrest war crimes suspects . IN DT NNP NNPS VBD DT NNS , JJ NN NNP NNP VBD CD JJ JJ JJ NN NNS CC CD JJ NN NNS IN VBG TO VB NN NNS NNS . Mr. Ashdown acted under wide powers the international community granted him to insure compliance with the 1995 Dayton Peace accord that halted the Balkan conflict . NNP NNP VBD IN JJ NNS DT JJ NN VBD PRP TO VB NN IN DT CD NNP NNP NN WDT VBD DT JJ NN . Bosnian Serb Prime Minister Dragan Mikerevic resigned Friday to protest the dismissals . JJ JJ NNP NNP NNP NNP VBD NNP TO VB DT NNS . Negotiators in Beijing will resume work Sunday on forging an agreement to end the North Korean nuclear crisis . NNS IN NNP MD VB NN NNP IN VBG DT NN TO VB DT JJ JJ JJ NN . China presented a draft statement Saturday , and U.S. envoy Christopher Hill said the draft represents a good basis for the negotiations . NNP VBD DT NN NN NNP , CC NNP NN NNP NNP VBD DT NN VBZ DT JJ NN IN DT NNS . Mr. Hill said he expects the Sunday session to be devoted to building a final text . NNP NNP VBD PRP VBZ DT NNP NN TO VB VBN TO VBG DT JJ NN . Negotiators from both Koreas , China , Russia , Japan and the United States are involved in the talks . NNS IN DT NNP , NNP , NNP , NNP CC DT NNP NNPS VBP VBN IN DT NNS . Mr. Hill said there is a consensus on making the Korean peninsula nuclear-free , but he added that obstacles remain . NNP NNP VBD EX VBZ DT NN IN VBG DT JJ NN JJ , CC PRP VBD IN NNS VBP . Diplomats have said Pyongyang is sticking to its demand that it receive aid and security guarantees before dismantling its nuclear programs , while Washington wants to see the programs scrapped first . NNS VBP VBN NNP VBZ VBG TO PRP$ NN IN PRP VBP NN CC NN NNS IN VBG PRP$ JJ NNS , IN NNP VBZ TO VB DT NNS VBD RB . The United States has urged Haiti to speed up planning for its elections , now scheduled for mid-December . DT NNP NNPS VBZ VBN NNP TO VB RP NN IN PRP$ NNS , RB VBN IN NN . In New York Tuesday , U.S. Undersecretary of State Nicholas Burns said Washington expects Port-au-Prince to work with greater speed and efficiency in organizing the elections . IN NNP NNP NNP , NNP NNP IN NNP NNP NNP VBD NNP VBZ NN TO VB IN JJR NN CC NN IN VBG DT NNS . The balloting for president and 129 parliamentary seats was first slated for October , then postponed until November . DT NN IN NN CC CD JJ NNS VBD RB VBN IN NNP , RB VBD IN NNP . Haiti 's interim prime minister , Gerard Latortue , told U.N. officials Tuesday the elections will now be held between December 11 and 18 . NNP POS JJ JJ NN , NNP NNP , VBD NNP NNS NNP DT NNS MD RB VB VBN IN NNP CD CC CD . Meanwhile , the U.N. Security Council urged Haitian authorities to work with the U.N. Stabilization Mission to develop an electoral plan . RB , DT NNP NNP NNP VBD JJ NNS TO VB IN DT NNP NNP NNP TO VB DT JJ NN . It said national reconciliation and political dialogue should be promoted as a means to ensure long-term stability and good governance . PRP VBD JJ NN CC JJ NN MD VB VBN IN DT NN TO VB JJ NN CC JJ NN . The elections will be the first since former President Jean-Bertrand Aristide fled the country in February 2004 . DT NNS MD VB DT JJ IN JJ NNP NNP NNP VBD DT NN IN NNP CD . Israel says residents of a small Jewish settlement in the Gaza Strip have agreed to relocate to Israel , rather than resist the planned removal of all settlers from the occupied territory next year . NNP VBZ NNS IN DT JJ JJ NN IN DT NNP NNP VBP VBN TO VB TO NNP , RB IN VB DT JJ NN IN DT NNS IN DT JJ NN JJ NN . The official in charge of the Israeli government plan to evacuate all 8,000 Gaza settlers next year says 25 families in the Pe'at Sadeh settlement will voluntarily move together to southern Israel in March . DT NN IN NN IN DT JJ NN NN TO VB DT CD NNP NNS JJ NN VBZ CD NNS IN DT NNP NNP NN MD RB VB RB TO JJ NNP IN NNP . The settlement would be the first to be dismantled under Prime Minister Ariel Sharon 's evacuation plan , which has drawn calls for resistance from the top settler council . DT NN MD VB DT JJ TO VB VBN IN NNP NNP NNP NNP POS NN NN , WDT VBZ VBN NNS IN NN IN DT JJ NN NN . The Sharon government has offered cash incentives for Gaza settlers willing to leave before the withdrawal , which is scheduled to begin in about eight months . DT NNP NN VBZ VBN NN NNS IN NNP NNS JJ TO VB IN DT NN , WDT VBZ VBN TO VB IN IN CD NNS . Tibetans living in India are preparing to demonstrate in New Delhi during the four-day official visit by Chinese President Hu Jintao that begins Monday . NNS VBG IN NNP VBP VBG TO VB IN NNP NNP IN DT JJ JJ NN IN JJ NNP NNP NNP WDT VBZ NNP . Members of the Tibet Youth Congress said they want to highlight Tibet 's issues during the visit . NNS IN DT NNP NNP NNP VBD PRP VBP TO VB NNP POS NNS IN DT NN . Tibetan organizations and Tibet support groups said that , in addition to the planned protests in New Delhi , they also plan demonstrations in other parts of the country . JJ NNS CC NNP NN NNS VBD IN , IN NN TO DT JJ NNS IN NNP NNP , PRP RB VBP NNS IN JJ NNS IN DT NN . Indian authorities have reportedly asked Tibetans to leave the city center and told students to stay inside their dormitories during Mr. Hu 's visit . JJ NNS VBP RB VBN NNS TO VB DT NN NN CC VBD NNS TO VB IN PRP$ NNS IN NNP NNP POS NN . They said they will take appropriate action against those who disobey the order . PRP VBD PRP MD VB JJ NN IN DT WP VBP DT NN . In the northern Indian town of Dharamsala , Tibet 's parliament-in-exile called on the Chinese leader to meet with Tibet 's exiled spiritual leader , the Dalai Lama , to discuss the future of Tibet . IN DT JJ JJ NN IN NNP , NNP POS JJ VBN IN DT JJ NN TO VB IN NNP POS JJ JJ NN , DT NNP NNP , TO VB DT NN IN NNP . A U.S. newspaper says HIV / AIDS among infants in the United States may be nearly eliminated by next year . DT NNP NN VBZ NNP NNP NNP IN NNS IN DT NNP NNPS MD VB RB VBN IN JJ NN . The New York Times reports Sunday that the number of infants born in the United States with AIDS or HIV , the virus that causes AIDS , has dropped to about 200 a year , from nearly 2,000 in 1990 . DT NNP NNP NNP VBZ NNP IN DT NN IN NNS VBN IN DT NNP NNPS IN NNP CC NNP , DT NN WDT VBZ NNP , VBZ VBN TO RB CD DT NN , IN RB CD IN CD . It said in New York City alone , the figure has dropped from 321 in 1990 to just five in 2003 because of success in fighting mother-to-child transmission . PRP VBD IN NNP NNP NNP RB , DT NN VBZ VBN IN CD IN CD TO RB CD IN CD IN IN NN IN VBG NN NN . The paper said that was achieved through use of better drugs , public education and testing , and cooperation at federal and local levels . DT NN VBD DT VBD VBN IN NN IN JJR NNS , JJ NN CC NN , CC NN IN JJ CC JJ NNS . But the report warned that much of the rest of the world continues to be ravaged by AIDS , including more than two million people in sub-Saharan Africa last year . CC DT NN VBD IN NN IN DT NN IN DT NN VBZ TO VB VBN IN NNP , VBG JJR IN CD CD NNS IN JJ NNP JJ NN . France 's foreign minister says European states could impose unilateral sanctions on Iran if the United Nations fails to pass its own sanctions . NNP POS JJ NN VBZ JJ NNS MD VB JJ NNS IN NNP IN DT NNP NNPS VBZ TO VB PRP$ JJ NNS . Bernard Kouchner told reporters in Finland Sunday that efforts should first be devoted to passing a resolution in the U.N. Security Council . NNP NNP VBD NNS IN NNP NNP IN NNS MD RB VB VBN TO VBG DT NN IN DT NNP NNP NNP . But he said if that does not happen , France may propose sanctions on Iran 's banks and insurance companies , and on travel permits for specific people . CC PRP VBD IN DT VBZ RB VB , NNP MD VB NNS IN NNP POS NNS CC NN NNS , CC IN NN NNS IN JJ NNS . Kouchner spoke to reporters outside a meeting of European Union foreign ministers in northern Finland . NNP VBD TO NNS IN DT NN IN NNP NNP JJ NNS IN JJ NNP . On Saturday , his Finnish counterpart , Alexander Stubb , said there was enough agreement within the EU to impose unilateral sanctions on Iran . IN NNP , PRP$ JJ NN , NNP NNP , VBD EX VBD JJ NN IN DT NNP TO VB JJ NNS IN NNP . Western members of the U.N. Security Council support a fourth round of sanctions against Iran , but veto-wielding China is urging more diplomacy . JJ NNS IN DT NNP NNP NNP NN DT JJ NN IN NNS IN NNP , CC JJ NNP VBZ VBG RBR NN . Western nations accuse Iran of seeking a nuclear weapon . JJ NNS VBP NNP IN VBG DT JJ NN . Tehran says it is working on nuclear energy projects . NNP VBZ PRP VBZ VBG IN JJ NN NNS . Palestinian President Mahmoud Abbas says talks between his Fatah party and the ruling militant group Hamas on forming a coalition government have broken down . JJ NNP NNP NNP VBZ NNS IN PRP$ NNP NN CC DT NN JJ NN NNP IN VBG DT NN NN VBP VBN RP . Mr. Abbas made the comment Wednesday in Ramallah before a meeting with U.S. Secretary of State Condoleezza Rice . NNP NNP VBD DT NN NNP IN NNP IN DT NN IN NNP NNP IN NNP NNP NNP . Mr. Abbas ' Fatah faction has been locked in a power struggle with Hamas - even as the two sides tried to form a unity government . NNP NNP POS NNP NN VBZ VBN VBN IN DT NN NN IN NNP : RB IN DT CD NNS VBD TO VB DT NN NN . Fighting between the sides has claimed 12 lives since Sunday . VBG IN DT NNS VBZ VBN CD NNS IN NNP . In other news , Palestinian officials say unidentified gunmen killed a local Hamas leader , Mohammed Odde , as he left a mosque in a West Bank village . IN JJ NN , JJ NNS VBP JJ NNS VBD DT JJ NNP NN , NNP NNP , IN PRP VBD DT NN IN DT NNP NNP NN . On Tuesday , a militant faction linked to Fatah threatened to kill several Hamas leaders as part of the escalating power struggle . IN NNP , DT JJ NN VBN TO NNP VBD TO VB JJ NNP NNS IN NN IN DT VBG NN NN . The Al-Aqsa Martyrs Brigades warned in a leaflet that it will target exiled Hamas political leader Khaled Mashaal and two senior officials in the Palestinian interior ministry . DT NNP NNP NNP VBD IN DT NN IN PRP MD VB VBN NNP JJ NN NNP NNP CC CD JJ NNS IN DT JJ JJ NN . It 's Christmas Eve in the Holy Land and festivities have already begun in the little town of Bethlehem . PRP VBZ NNP NNP IN DT NNP NNP CC NNS VBP RB VBN IN DT JJ NN IN NNP . Palestinian boy and girl scouts are marching through Manger Square here in Bethlehem , kicking off Christmas Eve celebrations . JJ NN CC NN NNS VBP VBG IN NNP NNP RB IN NNP , VBG RP NNP NNP NNS . They are passing the ancient Church of the Nativity , the site where tradition says Jesus was born . PRP VBP VBG DT JJ NN IN DT NNP , DT NN WRB NN VBZ NNP VBD VBN . Religion is mixing with nationalism here : decorations include Christmas trees and lights and Palestinian flags . NNP VBZ VBG IN NN RB IN NNS VBP NNP NNS CC NNS CC JJ NNS . Although Palestinians complain about Israel 's separation wall at the entrance to Bethlehem , the mood is upbeat this Christmas . IN NNS VBP IN NNP POS NN NN IN DT NN TO NNP , DT NN VBZ JJ DT NNP . Bethlehem is enjoying a boom in tourism thanks to a lull in violence . NNP VBZ VBG DT NN IN NN NNS TO DT NN IN NN . About 50,000 visitors are expected for Christmas , giving a boost to the Palestinian economy . IN CD NNS VBP VBN IN NNP , VBG DT NN TO DT JJ NN . The South Korean leg of the Olympic Torch relay is under way in the capital of Seoul under heavy security . DT JJ JJ NN IN DT NNP NNP NN VBZ IN NN IN DT NN IN NNP IN JJ NN . Authorities say more than 8,000 riot police have been deployed to provide security for the relay . NNS VBP JJR IN CD NN NNS VBP VBN VBN TO VB NN IN DT NN . At least two human rights groups have promised to try to disrupt the relay . IN JJS CD JJ NNS NNS VBP VBN TO VB TO VB DT NN . They want China to stop deporting North Korean refugees , who face stiff punishment or execution for fleeing the north . PRP VBP NNP TO VB VBG JJ JJ NNS , WP VBP JJ NN CC NN IN VBG DT NN . The Japanese leg of the relay took place Saturday , with a few demonstrators throwing objects into the torch 's path and scuffles between protesters and police . DT JJ NN IN DT NN VBD NN NNP , IN DT JJ NNS VBG NNS IN DT NN POS NN CC VBZ IN NNS CC NNS . At least one person was detained as the torch made its way through the streets of the northern city of Nagano . IN JJS CD NN VBD VBN IN DT NN VBD PRP$ NN IN DT NNS IN DT JJ NN IN NNP . The torch run has been disrupted in other major cities in recent weeks by protesters condemning Chinese human rights practices , especially its forceful suppression of demonstrations in Tibet . DT NN NN VBZ VBN VBN IN JJ JJ NNS IN JJ NNS IN NNS VBG JJ JJ NNS NNS , RB PRP$ JJ NN IN NNS IN NNP . An audio recording purported to be of the leader of al-Qaida in Iraq has been posted on the Internet , four days after reports he had been killed in a clash among members of his insurgent group . DT NN NN VBN TO VB IN DT NN IN NNP IN NNP VBZ VBN VBN IN DT NNP , CD NNS IN NNS PRP VBD VBN VBN IN DT NN IN NNS IN PRP$ JJ NN . The voice said to be that of Abu Ayyub al-Masri denied reported internal fighting among Sunni Arab militants . DT NN VBD TO VB IN IN NNP NNP NNP VBD VBN JJ NN IN NNP NNP NNS . In the statement , posted on a militant Web site , Masri criticized the Iraqi Islamic Party headed by Vice President Tareq al-Hashimi for working with the government of Prime Minister Nouri al-Maliki . IN DT NN , VBN IN DT JJ NN NN , NNP VBD DT JJ NNP NNP VBN IN NNP NNP NNP NNP IN VBG IN DT NN IN NNP NNP NNP NNP . Iraq 's Interior Ministry said Tuesday intelligence reports indicated Masri had been killed in fighting north of Baghdad . NNP POS NNP NNP VBD NNP NN NNS VBD NNP VBD VBN VBN IN VBG NN IN NNP . The U.S. military has not confirmed the report . DT NNP NN VBZ RB VBN DT NN . Masri , an Egyptian , assumed leadership of al-Qaida in Iraq from Abu Musab al-Zarqawi after the Jordanian militant was killed in a U.S. airstrike last June . NNP , DT NN , VBD NN IN NNP IN NNP IN NNP NNP NNP IN DT JJ NN VBD VBN IN DT NNP NN JJ NNP . Iraqi officials say at least three people were killed Thursday in a series of bomb attacks apparently targeting police and government officials . JJ NNS VBP IN JJS CD NNS VBD VBN NNP IN DT NN IN NN NNS RB VBG NNS CC NN NNS . Investigators say a suicide bombing outside of the federal police headquarters in the city of Mosul killed two police officers and left at least eight people wounded . NNS VBP DT NN VBG IN IN DT JJ NN NN IN DT NN IN NNP VBD CD NNS NNS CC VBD IN JJS CD NNS VBN . In Baghdad , a high-ranking security official died after a bomb attached to his car exploded . IN NNP , DT JJ NN NN VBD IN DT NN VBN TO PRP$ NN VBD . A second official was wounded in the blast . DT JJ NN VBD VBN IN DT NN . A separate car explosion in Baghdad injured a ministry official . DT JJ NN NN IN NNP VBD DT NN NN . Zimbabwe 's state-run newspaper reports police have arrested nearly 15,000 people in a new crackdown on illegal vendors . NNP POS JJ NN NNS NNS VBP VBN RB CD NNS IN DT JJ NN IN JJ NNS . The Herald reports that over the last two weeks , police have rounded up 14,706 individuals whom the paper described as street people , touts and illegal currency and fuel dealers . DT NNP VBZ IN IN DT JJ CD NNS , NNS VBP VBN RP CD NNS WP DT NN VBD IN NN NNS , NNS CC JJ NN CC NN NNS . The report says the operation was designed as a follow-up to ' Restore Order , ' when Zimbabwe 's government destroyed unauthorized dwellings and market stalls in what it said was a bid to end urban crime . DT NN VBZ DT NN VBD VBN IN DT NN TO `` NNP NNP , `` WRB NNP POS NN VBD JJ NNS CC NN NNS IN WP PRP VBD VBD DT NN TO VB JJ NN . The newspaper says criminals were returning to the same neighborhoods . DT NN VBZ NNS VBD VBG TO DT JJ NNS . A United Nations fact-finding mission called the policy disastrous and inhumane . DT NNP NNPS JJ NN VBD DT NN JJ CC JJ . It estimated some 7,00,000 people lost their homes and businesses . PRP VBD DT CD NNS VBD PRP$ NNS CC NNS . Zimbabwe has promised to build new housing for those it displaced . NNP VBZ VBN TO VB JJ NN IN DT PRP VBD . Pakistani officials say missiles fired from a U.S. drone aircraft have killed at least five suspected militants in the northwest tribal region near the Afghan border . JJ NNS VBP NNS VBN IN DT NNP NN NN VBP VBN IN JJS CD JJ NNS IN DT JJS JJ NN IN DT JJ NN . Authorities say three missiles struck a compound Monday about 25 kilometers east of Miranshah , the main town in North Waziristan , a known insurgent stronghold . NNS VBP CD NNS VBD DT NN NNP IN CD NNS RB IN NNP , DT JJ NN IN NNP NNP , DT VBN JJ NN . In recent months , the United States has increased missile attacks by pilot-less drones against suspected al-Qaida and Taliban hide-outs in Pakistan 's northwest . IN JJ NNS , DT NNP NNPS VBZ VBN NN NNS IN JJ NNS IN JJ NNP CC NNP NNS IN NNP POS NN . Elsewhere in the tribal region , officials said Monday that Taliban militants kidnapped and killed a pro-government tribal elder , Maulana Abdul Haleem , and dumped his body in Bajaur . RB IN DT JJ NN , NNS VBD NNP IN NNP NNS VBD CC VBD DT JJ NN NN , NNP NNP NNP , CC VBD PRP$ NN IN NNP . Here are the prices of some key commodities traded in New York on Tuesday : RB VBP DT NNS IN DT JJ NNS VBN IN NNP NNP IN NNP : The price of crude oil rose nearly $ 2 to settle at $ 121.79 a barrel . DT NN IN JJ NN VBD RB $ CD TO VB IN $ CD DT NN . Earlier , oil prices went as high at $ 122.73 a barrel , a record high . RB , NN NNS VBD RB JJ IN $ CD DT NN , DT NN NN . Coffee prices rose more than one cent to finish the day at $ 1.329 a pound . NNP NNS VBD RBR IN CD NN TO VB DT NN IN $ CD DT NN . Copper prices fell more than $ 0.65 to close at $ 3.913 a pound . NN NNS VBD RBR IN $ CD TO VB IN $ CD DT NN . And cocoa futures soared $ 91 to end at $ 2,781 a ton . CC NN NNS VBD $ CD TO VB IN $ CD DT NN . Japan 's foreign minister has warned North Korea that time is running out to stop its nuclear weapons program before Tokyo and its allies impose economic sanctions . NNP POS JJ NN VBZ VBN NNP NNP IN NN VBZ VBG RP TO VB PRP$ JJ NNS NN IN NNP CC PRP$ NNS VB JJ NNS . In an interview on Japan 's NHK television Sunday , Nobutaka Machimura said that if the situation continues for a year or two , the issue will have to be sent to the UN Security Council . IN DT NN IN NNP POS NNP NN NNP , NNP NNP VBD IN IN DT NN VBZ IN DT NN CC CD , DT NN MD VB TO VB VBN TO DT NNP NNP NNP . Mr. Machimura said Tokyo could also start economic sanctions if Pyongyang does not tell the truth about eight of 13 Japanese citizens who were abducted to train spies during the Cold War . NNP NNP VBD NNP MD RB VB JJ NNS IN NNP VBZ RB VB DT NN IN CD IN CD JJ NNS WP VBD VBN TO VB NNS IN DT NNP NNP . North Korea says the eight are dead , but Japan suspects they could still be alive . NNP NNP VBZ DT CD VBP JJ , CC NNP VBZ PRP MD RB VB JJ . Two sets of remains turned over last month proved not to be those of two abductees . CD NNS IN NNS VBD RP JJ NN VBD RB TO VB DT IN CD NNS . A British court has sentenced a Saudi prince to at least 20 years in prison for beating and strangling his aide in a London hotel . DT JJ NN VBZ VBN DT JJ NN TO IN JJS CD NNS IN NN IN NN CC VBG PRP$ NN IN DT NNP NN . A judge on Wednesday told Prince Saud Abdulaziz bin Nasser al Saud that no one is above the law . DT NN IN NNP VBD NNP NNP NNP NNP NNP NNP NN IN DT NN VBZ IN DT NN . Bandar Abdulaziz was found dead in a hotel room in February . NNP NNP VBD VBN JJ IN DT NN NN IN NNP . The prince had admitted to manslaughter , but denied intending to kill the man . DT NN VBD VBN TO VB , CC VBD VBG TO VB DT NN . Prosecutors said the victim had been badly beaten and that his injuries showed there was a ' sexual element ' to the attack . NNS VBD DT NN VBD VBN RB JJ CC IN PRP$ NNS VBD EX VBD DT `` JJ NN `` TO DT NN . Indianapolis Colts quarterback Peyton Manning has found another place in the National Football League record book while leading his team to a 41-9 victory in Detroit over the Lions . NNP NNP NN NNP NNP VBZ VBN DT NN IN DT NNP NNP NNP NN NN IN VBG PRP$ NN TO DT JJ NN IN NNP IN DT NNS . Manning threw six touchdowns Thursday and raised his season total to 41 scoring passes . NNP VBD CD NNS NNP CC VBD PRP$ NN NN TO CD VBG NNS . Manning set an NFL record with at least four touchdown passes in a fifth straight game . NNP VBD DT NNP NN IN IN JJS CD JJ NNS IN DT JJ JJ NN . The retired Dan Marino had a four-game streak with at least four touchdowns in 1984 , when he also set a record 48 scoring passes in a single season . DT JJ NNP NNP VBD DT JJ NN IN IN JJS CD NNS IN CD , WRB PRP RB VBD DT NN CD VBG NNS IN DT JJ NN . Two struggling teams played in Dallas , where a late scoring burst gave the host Cowboys a 21-Jul win over the Chicago Bears . CD VBG NNS VBN IN NNP , WRB DT JJ NN NN VBD DT NN NNS DT JJ NN IN DT NNP NNPS . Julius Jones had two touchdowns for Dallas , including his first career NFL score . NNP NNP VBD CD NNS IN NNP , VBG PRP$ JJ NN NNP NN . Kidnappers in Haiti have released an American missionary , one day after seizing him at gunpoint outside the capital , Port-au-Prince . NNS IN NNP VBP VBN DT JJ NN , CD NN IN VBG PRP IN NN IN DT NN , NNP . Haitian police officials say Phillip Snyder was freed Friday after kidnappers received a ransom payment . JJ NN NNS VBP NNP NNP VBD VBN NNP IN NNS VBD DT NN NN . Mr. Snyder 's condition , as well as the amount of his ransom payment , are unclear . NNP NNP POS NN , RB RB IN DT NN IN PRP$ NN NN , VBP JJ . In a separate incident , kidnappers released a group of children Thursday , after abducting them from a school bus hours earlier . IN DT JJ NN , NNS VBD DT NN IN NNS NNP , IN VBG PRP IN DT NN NN NNS RB . Police said the children were unharmed . NNS VBD DT NNS VBD JJ . Some media report the abductors were paid an unspecified ransom . DT NNS VBP DT NNS VBD VBN DT JJ NN . But the Associated Press quotes a police commissioner as denying any ransom was paid . CC DT NNP NNP VBZ DT NN NN IN VBG DT NN VBD VBN . Neither case was considered to be politically motivated . DT NN VBD VBN TO VB RB JJ . India has reported new cases of bird flu in nearly 200 villages in the western state of Maharashtra , the site of two earlier outbreaks this year . NNP VBZ VBN JJ NNS IN NN NN IN RB CD NNS IN DT JJ NN IN NNP , DT NN IN CD JJR NNS DT NN . Officials say they suspect the virus could be the deadly H5N1 strain and tests are underway on samples from the birds . NNS VBP PRP VBP DT NN MD VB DT JJ NNP NN CC NNS VBP JJ IN NNS IN DT NNS . No cases were reported in humans . DT NNS VBD VBN IN NNS . Officials say some 2,50,000 birds would have to be culled . NNS VBP DT CD NNS MD VB TO VB VBN . Reports from the region say the affected villages are in the neighboring states of Maharashtra and Madhya Pradesh . NNS IN DT NN VBP DT JJ NNS VBP IN DT JJ NNS IN NNP CC NNP NNP . The affected region includes Maharashtra 's Jalgaon district , which also reported India 's second set of infections of H5N1 earlier this month . DT JJ NN VBZ NNP POS NNP NN , WDT RB VBD NNP POS JJ NN IN NNS IN NNP RBR DT NN . Meanwhile , a European laboratory has confirmed that a buzzard found dead in Denmark two weeks ago was infected with the deadly strain of bird flu . RB , DT JJ NN VBZ VBN IN DT NN VBN JJ IN NNP CD NNS RB VBD VBN IN DT JJ NN IN NN NN . President Bush and Bolivian President Evo Morales have agreed on the need for constructive relations and dialogue between their nations . NNP NNP CC JJ NNP NNP NNP VBP VBN IN DT NN IN JJ NNS CC NN IN PRP$ NNS . White House spokesman Scott McClellan says Mr. Bush telephoned Mr. Morales to congratulate him on his election and inauguration and that Mr. Bush commended the Andean nation 's strong commitment to democracy . NNP NNP NN NNP NNP VBZ NNP NNP VBD NNP NNP TO VB PRP IN PRP$ NN CC NN CC IN NNP NNP VBD DT NNP NN POS JJ NN TO NN . The spokesman also says Mr. Morales outlined his agenda for social and economic change in Bolivia . DT NN RB VBZ NNP NNP VBD PRP$ NN IN JJ CC JJ NN IN NNP . The United States has adopted a ' wait-and-see ' approach towards Mr. Morales , who has been a vocal opponent of U.S. drug and trade policies . DT NNP NNPS VBZ VBN DT `` JJ `` NN IN NNP NNP , WP VBZ VBN DT JJ NN IN NNP NN CC NN NNS . The call comes as Mr. Morales faces the first crisis of his presidency . DT NN VBZ IN NNP NNP VBZ DT JJ NN IN PRP$ NN . Heavy rains have caused floods that have killed at least 13 people , leaving tens of thousands homeless . JJ NNS VBP VBN NNS WDT VBP VBN IN JJS CD NNS , VBG NNS IN NNS JJ . The full U.S. Senate has begun its debate on President Bush 's nominee to the Supreme Court , Samuel Alito . DT JJ NNP NNP VBZ VBN PRP$ NN IN NNP NNP POS NN TO DT NNP NNP , NNP NNP . The Senate Judiciary Committee Tuesday confirmed Alito on a party-line vote . DT NNP NNP NNP NNP VBD NNP IN DT JJ NN . The committee 's 10 Republicans approved the nomination , while the eight Democrats on the panel rejected the conservative federal judge . DT NN POS CD NNS VBD DT NN , IN DT CD NNS IN DT NN VBD DT JJ JJ NN . Democratic Senate Leader Harry Reid said he plans to oppose the nomination , saying he believes Alito would not be an independent check on the executive branch at a time when the president is abusing power . JJ NNP NNP NNP NNP VBD PRP VBZ TO VB DT NN , VBG PRP VBZ NNP MD RB VB DT JJ NN IN DT NN NN IN DT NN WRB DT NN VBZ VBG NN . But South Carolina Republican Lindsay Graham dismissed Democratic party opposition , saying they are merely playing politics with the nomination . CC NNP NNP NNP NNP NNP VBD JJ NN NN , VBG PRP VBP RB VBG NNS IN DT NN . The Republican-controlled Senate is expected to confirm Alito , perhaps by the end of this week . DT JJ NNP VBZ VBN TO VB NNP , RB IN DT NN IN DT NN . He would replace retiring Justice Sandra Day O'Connor , a moderate who has been an important swing vote in many cases . PRP MD VB VBG NNP NNP NNP NNP , DT JJ WP VBZ VBN DT JJ NN NN IN JJ NNS . World oil prices soared to all-time highs Thursday in New York and London , as investors bet that rising demand for oil will outstrip supply . NNP NN NNS VBD TO JJ NNS NNP IN NNP NNP CC NNP , IN NNS VBD IN VBG NN IN NN MD VB NN . The New York price of oil for future delivery went as high as 57 dollars and 50 cents a barrel in early trading Thursday . DT NNP NNP NN IN NN IN JJ NN VBD RB JJ IN CD NNS CC CD NNS DT NN IN JJ NN NNP . In London , Brent crude rose to 56 dollars and 15 cents a barrel . IN NNP , NNP NN VBD TO CD NNS CC CD NNS DT NN . The surging oil price came even though the Organization of Petroleum Exporting Countries raised its official production quotas at a meeting in Iran on Wednesday . DT JJ NN NN VBD RB IN DT NNP IN NNP NNP NNPS VBD PRP$ JJ NN NNS IN DT NN IN NNP IN NNP . Analysts say China , India , the United States , and other nations are all seeking additional oil to power their expanding economies , but OPEC has little unused capacity to supply additional crude oil . NNS VBP NNP , NNP , DT NNP NNPS , CC JJ NNS VBP DT VBG JJ NN TO NN PRP$ VBG NNS , CC NNP VBZ JJ JJ NN TO VB JJ NN NN . OPEC supplies about 40 percent of the world 's oil . NNP NNS IN CD NN IN DT NN POS NN . Talks have begun in Vienna between Iranian negotiators and the United Nations nuclear watchdog agency . NNS VBP VBN IN NNP IN JJ NNS CC DT NNP NNP JJ NN NN . Iran 's delegation to Tuesday 's meeting on Tehran 's controversial nuclear program is headed by the country 's deputy national security chief , Javad Vaeidi , and Ali Asghar Soltanieh , Iran 's ambassador to the International Atomic Energy Commission . NNP POS NN TO NNP POS NN IN NNP POS JJ JJ NN VBZ VBN IN DT NN POS JJ JJ NN NN , NNP NNP , CC NNP NNP NNP , NNP POS NN TO DT NNP NNP NNP NNP . The IAEA delegation is led by senior inspector Olli Heinonen . DT NNP NN VBZ VBN IN JJ NN NNP NNP . Neither side made any comment as the talks began . DT NN VBD DT NN IN DT NNS VBD . The U.N. Security Council has imposed two sets of sanctions on Iran because of its refusal to suspend uranium enrichment . DT NNP NNP NNP VBZ VBN CD NNS IN NNS IN NNP IN IN PRP$ NN TO VB NN NN . Enriched uranium and plutonium can be used to build nuclear weapons , but Iran says its nuclear program is for peaceful purposes . VBN NN CC NN MD VB VBN TO VB JJ NNS , CC NNP VBZ PRP$ JJ NN VBZ IN JJ NNS . The United States and its Western allies accuse Iran of trying to develop nuclear weapons . DT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS . Yemeni officials say at least three people have been killed in attacks on security and intelligence buildings in the country 's southern Abyan province . JJ NNS VBP IN JJS CD NNS VBP VBN VBN IN NNS IN NN CC NN NNS IN DT NN POS JJ NNP NN . Local authorities said Wednesday gunmen on motorcycles using mortars and rocket-propelled grenades opened fire on people inside the two buildings in the provincal capital , Zinjibar . JJ NNS VBD NNP NNS IN NNS VBG NNS CC JJ NNS VBD NN IN NNS IN DT CD NNS IN DT JJ NN , NNP . After the assault and subsequent clashes with police and guards , the attackers fled . IN DT NN CC JJ NNS IN NNS CC NNS , DT NNS VBD . Officials said al-Qaida is believed to be responsible for the attacks , and security had arrested seven suspected insurgents . NNS VBD NNP VBZ VBN TO VB JJ IN DT NNS , CC NN VBD VBN CD JJ NNS . The militant group was blamed for an attack last month on security headquarters in southern Yemen that left 11 people dead . DT JJ NN VBD VBN IN DT NN JJ NN IN NN NNS IN JJ NNP WDT VBD CD NNS JJ . In southeast Texas , colonies made up of billions of so-called ' crazy ants ' are making life difficult for homeowners and others . IN NN NNP , NNS VBN IN IN NNS IN JJ `` JJ NNS `` VBP VBG NN JJ IN NNS CC NNS . Researchers at Texas A & M University are working with environmental officials and pest control experts to find ways to top the spread of the invasive species . NNS IN NNP NNP CC NNP NNP VBP VBG IN JJ NNS CC NN NN NNS TO VB NNS TO VB DT NN IN DT JJ NNS . It has been fouling electrical devices , overwhelming other insect species , and raising concerns over the health of the Texas ecosystem . PRP VBZ VBN VBG JJ NNS , JJ JJ JJ NNS , CC VBG NNS IN DT NN IN DT NNP NN . VOA 's Paul Sisco reports . NNP POS NNP NNP VBZ . Japan has asked China to stop drilling for gas in a disputed area along the two countries ' sea border in the East China Sea . NNP VBZ VBN NNP TO VB NN IN NN IN DT JJ NN IN DT CD NNS POS NN NN IN DT NNP NNP NNP . A Japanese foreign ministry official said Wednesday , that his country deeply regrets China 's one-sided decision to start extracting natural gas from the region . DT JJ JJ NN NN VBD NNP , IN PRP$ NN RB VBZ NNP POS JJ NN TO VB VBG JJ NN IN DT NN . Beijing does not recognize Tokyo 's territorial claims in the area west of Japan 's southernmost islands . NNP VBZ RB VB NNP POS JJ NNS IN DT NN NN IN NNP POS JJ NNS . However , it is not clear if the drilling is within what Japan considers its exclusive economic zone . RB , PRP VBZ RB JJ IN DT NN VBZ IN WP NNP VBZ PRP$ JJ JJ NN . On Tuesday , China said it was within its rights to continue drilling in the area , but was willing to negotiate with Japan over the territorial waters . IN NNP , NNP VBD PRP VBD IN PRP$ NNS TO VB NN IN DT NN , CC VBD JJ TO VB IN NNP IN DT JJ NNS . Police in Spain 's North African enclave of Ceuta have arrested at least 11 suspected Islamic militants . NNS IN NNP POS JJ JJ NN IN NNP VBP VBN IN JJS CD JJ JJ NNS . Police sources say forces sent by boat from the Spanish mainland carried out the sweep in pre-dawn raids early Tuesday across the tiny enclave on Morocco 's northwestern coast . NN NNS VBP NNS VBN IN NN IN DT JJ NN VBD IN DT NN IN JJ NNS RB NNP IN DT JJ NN IN NNP POS JJ NN . Authorities identified two of the detainees as brothers of Hamed Abderrahaman Ahmed , a Spaniard who spent two years in detention at the U.S. naval base in Guantanamo Bay , Cuba , after his 2001 capture near the Afghan-Pakistani border . NNS VBD CD IN DT NNS IN NNS IN NNP NNP NNP , DT NN WP VBD CD NNS IN NN IN DT NNP JJ NN IN NNP NNP , NNP , IN PRP$ CD NN IN DT JJ NN . Authorities say Ahmed , who was released earlier this year by a Spanish court , was not among those arrested today . NNS VBP NNP , WP VBD VBN RBR DT NN IN DT JJ NN , VBD RB IN DT VBN NN . The French news agency , AFP , quotes Spanish anti-terror services as saying authorities were alerted when a group linked to al-Qaida posted a document on the Internet calling for ' a war against the infidel Spanish state . ' DT JJ NN NN , NNP , VBZ JJ NN NNS IN VBG NNS VBD VBN WRB DT NN VBN TO NNP VBD DT NN IN DT NN VBG IN `` DT NN IN DT NN JJ NN . `` Malawi 's high court has ordered Vice President Cassim Chilumpha reinstated to his office , and his salary and benefits restored in full . NNP POS JJ NN VBZ VBN NNP NNP NNP NNP VBD TO PRP$ NN , CC PRP$ NN CC NNS VBN IN JJ . President Bingu wa Mutharika fired Chilumpha last month in a letter , citing his poor attendance at cabinet meetings and his unwillingness to move to Lilongwe , the capital of the southern African country . NNP NNP NNP NNP VBD NNP JJ NN IN DT NN , VBG PRP$ JJ NN IN NN NNS CC PRP$ NN TO VB TO NNP , DT NN IN DT JJ JJ NN . Chilumpha protested the letter , saying that only Parliament has the power to dismiss him . NNP VBD DT NN , VBG IN RB NNP VBZ DT NN TO VB PRP . In its ruling , the high court said the firing was suspended pending judicial review , which will be scheduled later . IN PRP$ NN , DT JJ NN VBD DT NN VBD VBN VBG JJ NN , WDT MD VB VBN RB . President Mutharika and Chilumpha were running mates in the 2004 elections , but have been feuding publicly since the president quit the United Democratic Party to set up his own political party . NNP NNP CC NNP VBD VBG NNS IN DT CD NNS , CC VBP VBN VBG RB IN DT NN VBD DT NNP NNP NNP TO VB RP PRP$ JJ JJ NN . Egypt 's political opposition is challenging President Hosni Mubarak 's election victory , saying the official vote count was fraudulent . NNP POS JJ NN VBZ VBG NNP NNP NNP POS NN NN , VBG DT JJ NN NN VBD JJ . Challengers Ayman Nour , who came a very distant second to Mr. Mubarak , and Noaman Gomaa who finished third , continued to protest the results Saturday accusing the ruling National Democratic Party of tampering with the vote . NNP NNP NNP , WP VBD DT RB JJ NN TO NNP NNP , CC NNP NNP WP VBD JJ , VBD TO VB DT NNS NNP VBG DT NN NNP NNP NNP IN VBG IN DT NN . In central Cairo , opposition demonstrations were also planned . IN JJ NNP , NN NNS VBD RB VBN . But it appears Mr. Mubarak 's victory is final . CC PRP VBZ NNP NNP POS NN VBZ JJ . State-run television reported Saturday that parliament will hold an emergency session Wednesday to swear-in Mr. Mubarak for a fifth term that will end in 2011 . JJ NN VBD NNP IN NN MD VB DT NN NN NNP TO VB NNP NNP IN DT JJ NN WDT MD VB IN CD . Mr. Mubarak won Wednesday 's election with 88 percent of the vote . NNP NNP VBD NNP POS NN IN CD NN IN DT NN . But his victory was marred by reports of voting irregularities and low turnout - less than a quarter of the country 's 32 million registered voters cast ballots . CC PRP$ NN VBD VBN IN NNS IN NN NNS CC JJ NN IN JJR IN DT NN IN DT NN POS CD CD JJ NNS VBD NNS . Lebanon 's prime minister , Fuad Siniora , says military forces are working to enforce the government 's authority in southern Lebanon . NNP POS JJ NN , NNP NNP , VBZ JJ NNS VBP VBG TO VB DT NN POS NN IN JJ NNP . Mr. Siniora warned Thursday that troops will confiscate weapons they find in the area , which is home to Hezbollah militant bases . NNP NNP VBD NNP IN NNS MD VB NNS PRP VBP IN DT NN , WDT VBZ NN IN NNP JJ NNS . Thousands of Lebanese troops have deployed in southern parts of the country , after the end of fighting last month between Hezbollah and Israel . NNS IN JJ NNS VBP VBN IN JJ NNS IN DT NN , IN DT NN IN VBG JJ NN IN NNP CC NNP . Hezbollah leaders say fighters continue to operate along the border with Israel , to defend what they call land belonging to the group . NNP NNS VBP NNS VBP TO VB IN DT NN IN NNP , TO VB WP PRP VBP NN VBG TO DT NN . A United Nations resolution to end the fighting has called for Hezbollah fighters in Lebanon to be disarmed . DT NNP NNPS NN TO VB DT NN VBZ VBN IN NNP NNS IN NNP TO VB VBN . Syria and Iran are believed to be key suppliers of weapons and money to Hezbollah . NNP CC NNP VBP VBN TO VB JJ NNS IN NNS CC NN TO NNP . The White House has strongly condemned Friday 's rocket attack at the Jordanian Red Sea port of Aqaba where two American naval ships were docked . DT NNP NNP VBZ RB VBN NNP POS NN NN IN DT JJ NNP NNP NN IN NNP WRB CD JJ JJ NNS VBD VBN . A statement says the United States condemns all such attacks , and that U.S. officials are investigating in cooperation with Jordan . DT NN VBZ DT NNP NNPS VBP DT JJ NNS , CC IN NNP NNS VBP VBG IN NN IN NNP . U.S. military officials say it is safe to conclude that the two warships , the USS Ashland and the USS were the main target . NNP JJ NNS VBP PRP VBZ JJ TO VB IN DT CD NNS , DT NNP NNP CC DT NNS VBD DT JJ NN . One of the rockets hit a military warehouse , killing a Jordanian soldier . CD IN DT NNS VBD DT JJ NN , VBG DT JJ NN . Another exploded near a military hospital . DT VBD IN DT JJ NN . The third rocket landed about 15 kilometers away , on the Israeli side of the border near the town of Eilat . DT JJ NN VBD IN CD NNS RB , IN DT JJ NN IN DT NN IN DT NN IN NNP . It did not explode . PRP VBD RB VB . Jordanian security forces have launched a massive hunt for four individuals suspected of firing the Katyusha rockets . JJ NN NNS VBP VBN DT JJ NN IN CD NNS VBN IN VBG DT NNP NNS . A group linked to al-Qaida has claimed responsibility in an unverifiable Internet statement . DT NN VBN TO NNP VBZ VBN NN IN DT JJ NN NN . South Korean President Roh Moo-hyun has instructed prosecutors to consider reopening a probe into a financial scam allegedly involving the front-running presidential candidate . JJ JJ NNP NNP NNP VBZ VBN NNS TO VB VBG DT NN IN DT JJ NN RB VBG DT JJ JJ NN . In a statement released Sunday , Mr. Roh said a videotape had surfaced in which frontrunner Lee Myung-bak admitted having founded the company at the center of the 2001 scandal . IN DT NN VBN NNP , NNP NNP VBD DT NN VBD VBN IN WDT NN NNP NNP VBD VBG VBN DT NN IN DT NN IN DT CD NN . Lee , a former Hyundai executive and Seoul mayor running as the Grand National Party 's candidate , has been heavily favored to win Wednesday 's election . NNP , DT JJ NNP NN CC NNP NN VBG IN DT NNP NNP NNP POS NN , VBZ VBN RB VBN TO VB NNP POS NN . Lee was suspected of involvement in a scam in which his ex-partner , Kim Gyeong-jun , allegedly manipulated the price of stocks in a company he owned . NNP VBD VBN IN NN IN DT NN IN WDT PRP$ NN , NNP NNP , RB VBD DT NN IN NNS IN DT NN PRP VBD . South Korean prosecutors announced earlier this month that they had found no evidence that the conservative politician was involved in stock market manipulation . JJ JJ NNS VBD RBR DT NN IN PRP VBD VBN DT NN IN DT JJ NN VBD VBN IN NN NN NN . The president of the Democratic Republic of Congo , Joseph Kabila , has married his longtime girlfriend in the country 's capital , Kinshasa . DT NN IN DT JJ NNP IN NNP , NNP NNP , VBZ VBN PRP$ JJ NN IN DT NN POS NN , NNP . The nuptials come just weeks before Congo 's first free national elections in four decades . DT NNS VBP RB NNS IN NNP POS JJ JJ JJ NNS IN CD NNS . Mr. Kabila presides over an interim government in the chaotic central African country . NNP NNP VBZ IN DT JJ NN IN DT JJ JJ JJ NN . He is one of 33 candidates for president in the elections , scheduled for July 30 . PRP VBZ CD IN CD NNS IN NN IN DT NNS , VBN IN NNP CD . Mr. Kabila assumed the presidency of Congo in 2001 following the assassination of his father , former rebel and President Laurent Kabila . NNP NNP VBD DT NN IN NNP IN CD VBG DT NN IN PRP$ NN , JJ NN CC NNP NNP NNP . The 34-year-old Joseph Kabila married Olive Sita di Lembe on Saturday in a religious ceremony presided by Catholic and Protestant clergy . DT JJ NNP NNP VBD NNP NNP NNP NNP IN NNP IN DT JJ NN VBN IN NNP CC NNP NN . They held a civil ceremony on Friday . PRP VBD DT JJ NN IN NNP . The two have been dating for six years . DT CD VBP VBN VBG IN CD NNS . They have a five-year-old daughter . PRP VBP DT JJ NN . Saudi Arabia 's ambassador to the United States , Prince Turki al-Faisal , has resigned from his post and has left Washington . NNP NNP POS NN TO DT NNP NNPS , NNP NNP NNP , VBZ VBN IN PRP$ NN CC VBZ VBN NNP . Prince Turki reportedly made the announcement to his staff in Washington on Monday , citing personal reasons . NNP NNP RB VBD DT NN TO PRP$ NN IN NNP IN NNP , VBG JJ NNS . The prince held the post for a year-and-a-half , succeeding Prince Bandar bin Sultan , who left for personal reasons after 22 years on the job . DT NN VBD DT NN IN DT JJ , VBG NNP NNP NNP NNP , WP VBD IN JJ NNS IN CD NNS IN DT NN . The Washington Post newspaper says colleagues of Prince Turki said they were shocked at Monday 's announcement . DT NNP NNP NN VBZ NNS IN NNP NNP VBD PRP VBD VBN IN NNP POS NN . The newspaper also says the departure comes as his brother , Saudi Foreign Minister Prince Saud al-Faisal , is in ill health , noting rumors that Prince Turki could be a possible replacement for Prince Saud . DT NN RB VBZ DT NN VBZ IN PRP$ NN , NNP NNP NNP NNP NNP NNP , VBZ IN JJ NN , VBG NNS IN NNP NNP MD VB DT JJ NN IN NNP NNP . Israel is now allowing Israelis and tourists to bring the iPad , Apple 's new tablet computer , into the country , instead of having them confiscated by customs agents . NNP VBZ RB VBG NNS CC NNS TO VB DT NN , NNP POS JJ NN NN , IN DT NN , RB IN VBG PRP VBN IN NNS NNS . Israel 's Ministry of Communications says that after a technical review with the U.S. computer maker , officials are now allowing the latest gadget into the country . NNP POS NNP IN NNP VBZ IN IN DT JJ NN IN DT NNP NN NN , NNS VBP RB VBG DT JJS NN IN DT NN . The devices confiscated during the past two weeks will be returned to their owners . DT NNS VBN IN DT JJ CD NNS MD VB VBN TO PRP$ NNS . Israel initially banned the iPad because it feared the computers wireless signal had the potential to disrupt other devices , and was more powerful that European standards allowed . NNP RB VBD DT NN IN PRP VBD DT NNS JJ NN VBD DT JJ TO VB JJ NNS , CC VBD JJR JJ IN JJ NNS VBN . Apple said it sold some 5,00,000 units of the iPad computer in the week after its U.S. debut on April 3 . NNP VBD PRP VBD DT CD NNS IN DT NNP NN IN DT NN IN PRP$ NNP NN IN NNP CD . The company says it expects demand for the device to exceed supply in the coming weeks . DT NN VBZ PRP VBZ NN IN DT NN TO VB NN IN DT JJ NNS . The computer maker said it will announce international pricing and begin taking online orders on May 10 . DT NN NN VBD PRP MD VB JJ NN CC VB VBG JJ NNS IN NNP CD . German Chancellor Gerhard Schroeder says China has expressed support for his country 's candidacy for a permanent seat on the United Nations Security Council . JJ NNP NNP NNP VBZ NNP VBZ VBN NN IN PRP$ NN POS NN IN DT JJ NN IN DT NNP NNP NNP NNP . Mr. Schroeder spoke with reporters Tuesday in Beijing after talks with Chinese President Hu Jintao . NNP NNP VBD IN NNS NNP IN NNP IN NNS IN JJ NNP NNP NNP . Germany is one of several countries , including India , Brazil and Japan that are seeking a permanent seat on the Security Council . NNP VBZ CD IN JJ NNS , VBG NNP , NNP CC NNP WDT VBP VBG DT JJ NN IN DT NNP NNP . Monday , Mr. Schroeder met with Chinese Prime Minister Wen Jiabao . NNP , NNP NNP VBD IN JJ NNP NNP NNP NNP . Chinese officials signed an agreement to buy European-built Airbus jetliners and German-made goods , including locomotives . JJ NNS VBD DT NN TO VB NNP NNP NNS CC JJ NNS , VBG NNS . The German chancellor opposes the European Union 's ban on weapons sales to China , imposed after the bloody 1989 crackdown on pro-democracy demonstrators in Beijing . DT JJ NN VBZ DT NNP NNP POS NN IN NNS NNS TO NNP , VBN IN DT JJ CD NN IN JJ NNS IN NNP . His stand has been criticized by opponents in Germany , and the European Parliament renewed the sanctions last month . PRP$ NN VBZ VBN VBN IN NNS IN NNP , CC DT NNP NNP VBD DT NNS JJ NN . Mr. Schroeder travels to Tokyo Wednesday for talks with Japanese officials . NNP NNP VBZ TO NNP NNP IN NNS IN JJ NNS . A survey of U.S. households indicates that Americans are confident in the future of their economy , while a separate survey shows the rate of existing home sales in the U.S. continues to slip . DT NN IN NNP NNS VBZ IN NNS VBP JJ IN DT NN IN PRP$ NN , IN DT JJ NN VBZ DT NN IN VBG NN NNS IN DT NNP VBZ TO VB . The rate of U.S. consumer confidence rose slightly in July in a monthly survey of American households . DT NN IN NNP NN NN VBD RB IN NNP IN DT JJ NN IN JJ NNS . The index rose more than a point to 106.5 . DT NN VBD JJR IN DT NN TO CD . Analysts had expected the index to fall slightly to 104 . NNS VBD VBN DT NN TO VB RB TO CD . Experts say strong job prospects drove the increase , despite record high fuel prices . NNS VBP JJ NN NNS VBD DT NN , IN JJ JJ NN NNS . In another survey , sales of previously owned homes fell more than a percent in June to 6.6 million , continuing an almost year-long slide . IN DT NN , NNS IN RB VBN NNS VBD JJR IN DT NN IN NNP TO CD CD , VBG DT RB JJ NN . Both surveys were released Tuesday . DT NNS VBD VBN NNP . Consumer confidence is widely seen as a gauge of spending and measures how consumers feel about the future of the economy . NN NN VBZ RB VBN IN DT NN IN NN CC NNS WRB NNS VBP IN DT NN IN DT NN . The measure of home sales is seen as a barometer of activity in the housing sector . DT NN IN NN NNS VBZ VBN IN DT NN IN NN IN DT NN NN . A U.S. military court in Afghanistan has sentenced an American soldier to six months confinement and a reduction in rank after finding him guilty of mistreating Afghan detainees . DT NNP JJ NN IN NNP VBZ VBN DT JJ NN TO CD NNS NN CC DT NN IN NN IN VBG PRP JJ IN VBG JJ NNS . Military officials say Sergeant Kevin Myricks was accused of punching detainees at a base in southern Uruzgan province . JJ NNS VBP NNP NNP NNP VBD VBN IN VBG NNS IN DT NN IN JJ NNP NN . He was convicted during a court martial Monday at Bagram air base near Kabul . PRP VBD VBN IN DT NN NN NNP IN NNP NN NN IN NNP . Another U.S. soldier accused in the same incident was sentenced on Friday to four months detention without pay and demotion . DT NNP NN VBN IN DT JJ NN VBD VBN IN NNP TO CD NNS NN IN NN CC NN . U.S. military personnel have been accused in other instances of Afghan prisoner abuse . NNP JJ NNS VBP VBN VBN IN JJ NNS IN JJ NN NN . But U.S. officials deny widespread mistreatment of those held in military custody . CC NNP NNS VBP JJ NN IN DT VBN IN JJ NN . Tens of thousands of Turks protested Sunday against the country 's Islamist-rooted government . NNS IN NNS IN NNS VBD NNP IN DT NN POS JJ NN . The demonstrators chanted ' Turkey is secular and will remain secular ' as they gathered in Samsun . DT NNS VBD `` NNP VBZ JJ CC MD VB JJ `` IN PRP VBD IN NNP . The Black Sea port is where modern Turkey 's secular founder , Mustafa Kemal Ataturk , launched the country 's war of independence . DT NNP NNP NN VBZ WRB JJ NNP POS JJ NN , NNP NNP NNP , VBD DT NN POS NN IN NN . Pro-secular demonstrations have also been held in Ankara , Istanbul and Izmir , where more than one million people protested against Prime Minister Recep Tayyip Erdogan 's government last week . JJ NNS VBP RB VBN VBN IN NNP , NNP CC NNP , WRB JJR IN CD CD NNS VBD IN NNP NNP NNP NNP NNP POS NN JJ NN . Mr. Erdogan has expressed support for the country 's secular laws . NNP NNP VBZ VBN NN IN DT NN POS JJ NNS . But his opponents accuse him of having a secret Islamist agenda . CC PRP$ NNS VBP PRP IN VBG DT JJ NN NN . Turkey 's main opposition party , the pro-secular Republican People 's Party and the left-wing Democratic Left Party formed an alliance last week to contest July parliamentary elections . NNP POS JJ NN NN , DT JJ NNP NNP POS NNP CC DT JJ JJ NNP NNP VBD DT NN JJ NN TO NN NNP JJ NNS . Israeli military police have arrested a defense force officer who allegedly stole computers from the Gaza-bound aid flotilla intercepted by Israeli commandos in May . JJ JJ NNS VBP VBN DT NN NN NN WP RB VBP NNS IN DT JJ NN NN VBN IN JJ NNS IN NNP . Officials say the officer is suspected of stealing as many as six laptop computers , some of which were sold to other soldiers . NNS VBP DT NN VBZ VBN IN VBG RB JJ IN CD NN NNS , DT IN WDT VBD VBN TO JJ NNS . News reports say some of the soldiers who allegedly purchased the computers are also under investigation . NNP NNS VBP DT IN DT NNS WP RB VBD DT NNS VBP RB IN NN . In May , nine pro-Palestinian activists on a Turkish ship were killed after Israeli commandos boarded vessels attempting to deliver aid directly to Gaza , in violation of an Israeli blockade . IN NNP , CD JJ NNS IN DT JJ NN VBD VBN IN JJ NNS VBD NNS VBG TO VB NN RB TO NNP , IN NN IN DT JJ NN . The incident increased tensions between Israel and Turkey . DT NN VBD NNS IN NNP CC NNP . Israel had commandeered several Turkish ships that were part of the flotilla . NNP VBD VBN JJ JJ NNS WDT VBD NN IN DT NN . However , earlier this month it allowed the ships ' operators to sail the vessels back to Turkey . RB , RBR DT NN PRP VBD DT NNS POS NNS TO VB DT NNS RB TO NNP . Irish quartet U2 rocked the French seaside resort of Cannes early on May 20 , prior to the premiere of its three-dimensional concert film . JJ NN NNP VBD DT JJ NN NN IN NNP RB IN NNP CD , RB TO DT NN IN PRP$ JJ NN NN . Titled U2 3D , the full-length movie was shot in South America during the band 's 2006 ' Vertigo ' tour . VBN NNP NNP , DT JJ NN VBD VBN IN NNP NNP IN DT NN POS CD `` NNP `` NN . Producer John Modell said the digital production heralds a new wave of three-dimensional filmmaking . NNP NNP NNP VBD DT JJ NN VBZ DT JJ NN IN JJ NN . ' We are replicating the physiology of sight , ' Modell said . `` PRP VBP VBG DT NN IN NN , `` NNP VBD . ' If you get it off by just a hair it creates actual physical problems - eye strain , nausea . `` IN PRP VBP PRP RP IN RB DT NN PRP VBZ JJ JJ NNS IN NN NN , NN . We do n't have that at all . ' PRP VBP RB VB DT IN DT . `` The production will only be shown in 3D . DT NN MD RB VB VBN IN CD . At present , about 700 screens are equipped with the Real D 3D system on which the film will initially show . IN JJ , IN CD NNS VBP VBN IN DT NNP NNP NNP NN IN WDT DT NN MD RB VB . Most are in the United States . JJS VBP IN DT NNP NNPS . Real D chairman Michael Lewis predicted the number will soon rise to 1,000 worldwide . NNP NNP NN NNP NNP VBD DT NN MD RB VB TO CD NN . For 715 years , from 1278 to 1993 , Andorrans lived under a unique co-principality , ruled by French and Spanish leaders ( from 1607 onward , the French chief of state and the Spanish bishop of Seu d'Urgell ) . IN CD NNS , IN CD TO CD , NNS VBD IN DT JJ NN , VBN IN JJ CC JJ NNS LRB IN CD RB , DT JJ NN IN NN CC DT JJ NN IN NNP NNP RRB . In 1993 , this feudal system was modified with the titular heads of state retained , but the government transformed into a parliamentary democracy . IN CD , DT JJ NN VBD VBN IN DT JJ NNS IN NN VBD , CC DT NN VBD IN DT JJ NN . For decades Andorra enjoyed its status as a small refuge of fiscal and banking freedom and benefitted from Spanish and French tourists attracted to the country 's duty-free shopping . IN NNS NNP VBD PRP$ NN IN DT JJ NN IN JJ CC NN NN CC VBN IN JJ CC JJ NNS VBN TO DT NN POS JJ NN . The situation has changed in recent years as Andorra started to tax foreign investment and other sectors . DT NN VBZ VBN IN JJ NNS IN NNP VBD TO VB JJ NN CC JJ NNS . Tourism accounts for over 80 % of Andorra 's gross domestic product . NN NNS IN IN CD NN IN NNP POS JJ JJ NN . Macedonia gained its independence peacefully from Yugoslavia in 1991 . NNP VBD PRP$ NN RB IN NNP IN CD . Greece 's objection to the new state 's use of what it considered a Hellenic name and symbols delayed international recognition , which occurred under the provisional designation of ' the Former Yugoslav Republic of Macedonia . ' NNP POS NN TO DT JJ NN POS NN IN WP PRP VBD DT NNP NN CC NNS VBD JJ NN , WDT VBD IN DT JJ NN IN `` DT NNP JJ NNP IN NNP . `` In 1995 , Greece lifted a 20-month trade embargo and the two countries agreed to normalize relations . IN CD , NNP VBD DT JJ NN NN CC DT CD NNS VBD TO VB NNS . The United States began referring to Macedonia by its constitutional name , Republic of Macedonia , in 2004 and negotiations continue between Greece and Macedonia to resolve the name issue . DT NNP NNPS VBD VBG TO NNP IN PRP$ JJ NN , NNP IN NNP , IN CD CC NNS VBP IN NNP CC NNP TO VB DT NN NN . Some ethnic Albanians , angered by perceived political and economic inequities , launched an insurgency in 2001 that eventually won the support of the majority of Macedonia 's Albanian population and led to the internationally-brokered Ohrid Framework Agreement , which ended the fighting by establishing a set of new laws enhancing the rights of minorities . DT JJ NNS , VBN IN VBN JJ CC JJ NNS , VBD DT NN IN CD WDT RB VBD DT NN IN DT NN IN NNP POS JJ NN CC VBD TO DT JJ NNP NNP NNP , WDT VBD DT NN IN VBG DT NN IN JJ NNS VBG DT NNS IN NNS . Fully implementing the Framework Agreement and stimulating economic growth and development continue to be challenges for Macedonia , although progress has been made on both fronts over the past several years . RB VBG DT NNP NNP CC VBG JJ NN CC NN VBP TO VB NNS IN NNP , IN NN VBZ VBN VBN IN DT NNS IN DT JJ JJ NNS . Coconuts , grown throughout the islands , are the sole cash crop . NNS , VBN IN DT NNS , VBP DT JJ NN NN . Small local gardens and fishing contribute to the food supply , but additional food and most other necessities must be imported from Australia . JJ JJ NNS CC NN VBP TO DT NN NN , CC JJ NN CC RBS JJ NNS MD VB VBN IN NNP . There is a small tourist industry . EX VBZ DT JJ NN NN . There are 27 coral islands in the group . EX VBP CD JJ NNS IN DT NN . Captain William KEELING discovered the islands in 1609 , but they remained uninhabited until the 19th century . NNP NNP NNP VBD DT NNS IN CD , CC PRP VBD JJ IN DT JJ NN . From the 1820s to 1978 , members of the CLUNIE-ROSS family controlled the islands and the copra produced from local coconuts . IN DT NNS TO CD , NNS IN DT NNP NN VBD DT NNS CC DT NN VBN IN JJ NNS . Annexed by the UK in 1857 , the Cocos Islands were transferred to the Australian Government in 1955 . VBN IN DT NNP IN CD , DT NNP NNP VBD VBN TO DT JJ NN IN CD . The population on the two inhabited islands generally is split between the ethnic Europeans on West Island and the ethnic Malays on Home Island . DT NN IN DT CD JJ NNS RB VBZ VBN IN DT JJ NNS IN NNP NNP CC DT JJ NNS IN NNP NNP . Occupied by the UK in 1841 , Hong Kong was formally ceded by China the following year ; various adjacent lands were added later in the 19th century . VBN IN DT NNP IN CD , NNP NNP VBD RB VBN IN NNP DT JJ NN ; JJ JJ NNS VBD VBN RB IN DT JJ NN . Pursuant to an agreement signed by China and the UK on 19 December 1984 , Hong Kong became the Hong Kong Special Administrative Region ( SAR ) of the People 's Republic of China on 1 July 1997 . JJ TO DT NN VBN IN NNP CC DT NNP IN CD NNP CD , NNP NNP VBD DT NNP NNP NNP NNP NNP LRB NNP RRB IN DT NNP POS NNP IN NNP IN CD NNP CD . In this agreement , China promised that , under its ' one country , two systems ' formula , China 's socialist economic system would not be imposed on Hong Kong and that Hong Kong would enjoy a high degree of autonomy in all matters except foreign and defense affairs for the next 50 years . IN DT NN , NNP VBD IN , IN PRP$ `` CD NN , CD NNS `` NN , NNP POS JJ JJ NN MD RB VB VBN IN NNP NNP CC IN NNP NNP MD VB DT JJ NN IN NN IN DT NNS IN JJ CC NN NNS IN DT JJ CD NNS . A FISHERMAN , engaged in his calling , made a very successful cast and captured a great haul of fish . DT NN , VBN IN PRP$ NN , VBD DT RB JJ NN CC VBD DT JJ NN IN NN . He managed by a skillful handling of his net to retain all the large fish and to draw them to the shore ; but he could not prevent the smaller fish from falling back through the meshes of the net into the sea . PRP VBD IN DT JJ NN IN PRP$ NN TO VB PDT DT JJ NN CC TO VB PRP TO DT NN ; CC PRP MD RB VB DT JJR NN IN VBG RB IN DT NNS IN DT NN IN DT NN . THE People being dissatisfied with a Democratic Legislature , which stole no more than they had , elected a Republican one , which not only stole all they had but exacted a promissory note for the balance due , secured by a mortgage upon their hope of death . DT NNS VBG VBN IN DT JJ NN , WDT VBD DT JJR IN PRP VBD , VBD DT JJ NN , WDT RB RB VBD DT PRP VBD CC VBD DT JJ NN IN DT NN JJ , VBN IN DT NN IN PRP$ NN IN NN . A medical student was working in the toxicology department at the poison control center . DT JJ NN VBD VBG IN DT NN NN IN DT NN NN NN . A woman called in very upset because she caught her little daughter eating ants . DT NN VBN IN RB JJ IN PRP VBD PRP$ JJ NN VBG NNS . The medical student quickly reassured her that the ants are not harmful and there would be no need to bring her daughter into the hospital . DT JJ NN RB VBD PRP IN DT NNS VBP RB JJ CC EX MD VB DT NN TO VB PRP$ NN IN DT NN . She calmed down , and at the end of the conversation happened to mention that she gave her daughter some ant poison to eat in order to kill the ants . PRP VBD RB , CC IN DT NN IN DT NN VBD TO VB IN PRP VBD PRP$ NN DT JJ NN TO VB IN NN TO VB DT NNS . The student told the mother that she better bring her daughter in to the emergency room right away . DT NN VBD DT NN IN PRP RB VB PRP$ NN IN TO DT NN NN RB RB . Seems that a year ago , some Boeing employees on the work field decided to steal a life raft from one of the 747s . NNS IN DT NN RB , DT NNP NNS IN DT NN NN VBD TO VB DT NN NN IN CD IN DT NNS . They were successful in getting it out of the plane and home . PRP VBD JJ IN VBG PRP IN IN DT NN CC NN . When they took it for a float on the river , they were quite surprised by a Coast Guard helicopter coming towards them . WRB PRP VBD PRP IN DT NN IN DT NN , PRP VBD RB VBN IN DT NNP NNP NN VBG IN PRP . It turned out that the chopper was homing in on the emergency locator that is automatically activated when the raft is inflated . PRP VBD RP IN DT NN VBD VBG IN IN DT NN NN WDT VBZ RB VBN WRB DT NN VBZ VBN . They are no longer employed there . PRP VBP RB RB VBN RB . A motorist was unknowingly caught in an automated speed trap that measured his speed using radar and photographed his car . DT NN VBD RB VBN IN DT JJ NN NN WDT VBD PRP$ NN VBG NN CC VBD PRP$ NN . He later received in the mail a ticket for $ 40 and a photo of his car . PRP RB VBD IN DT NN DT NN IN $ CD CC DT NN IN PRP$ NN . Instead of payment , he sent the police department a photograph of $ 40 . IN IN NN , PRP VBD DT NN NN DT NN IN $ CD . Several days later , he received a letter from the police that contained another picture of handcuffs . JJ NNS RB , PRP VBD DT NN IN DT NN WDT VBD DT NN IN NNS . A woman was reporting her car as stolen , and mentioned that there was a car phone in it . DT NN VBD VBG PRP$ NN IN VBN , CC VBD IN EX VBD DT NN NN IN PRP . The policeman taking the report called the phone and told the guy that answered that he had read the ad in the newspaper and wanted to buy the car . DT NN VBG DT NN VBD DT NN CC VBD DT NN WDT VBD IN PRP VBD VBN DT NN IN DT NN CC VBD TO VB DT NN . They arranged to meet , and the thief was arrested . PRP VBD TO VB , CC DT NN VBD VBN . A lawyer charged a man $ 1,000 for legal services . DT NN VBD DT NN $ CD IN JJ NNS . The man paid him in cash with crisp new $ 100 bills . DT NN VBD PRP IN NN IN JJ JJ $ CD NNS . After the client left , the lawyer discovered that two bills had stuck together -- he 'd been overpaid by $ 100 . IN DT NN VBD , DT NN VBD IN CD NNS VBD VBN RB : PRP VBD VBN VBN IN $ CD . The ethical dilemma for the lawyer : Should he tell his partner ? DT JJ NN IN DT NN : MD PRP VB PRP$ NN . Egypt 's top prosecutor has charged opposition leader Ayman Nour with forgery , in a case that has sparked high-level criticism in the United States and Europe . NNP POS JJ NN VBZ VBN NN NN NNP NNP IN NN , IN DT NN WDT VBZ VBN JJ NN IN DT NNP NNPS CC NNP . The indictments were announced Tuesday in Cairo . DT NNS VBD VBN NNP IN NNP . No trial date has been set . DT NN NN VBZ VBN VBN . Mr. Nour , who says he will seek the Egyptian presidency in upcoming elections , is set to stand trial along with six defendants from his al-Ghad party . NNP NNP , WP VBZ PRP MD VB DT JJ NN IN JJ NNS , VBZ VBN TO VB NN IN IN CD NNS IN PRP$ JJ NN . Prosecutors allege Mr. Nour used documents with forged signatures last year when registering the party with the Cairo government . NNS VBP NNP NNP VBD NNS IN VBN NNS JJ NN WRB VBG DT NN IN DT NNP NN . Mr. Nour was arrested in January and spent six weeks in a Cairo jail , before his release on bond last week . NNP NNP VBD VBN IN NNP CC VBD CD NNS IN DT NNP NN , IN PRP$ NN IN NN JJ NN . In a letter to Egyptian President Hosni Mubarak , the New York-based Human Rights Watch said it was dismayed by what it called Cairo 's ' radical intolerance ' toward political dissent . IN DT NN TO JJ NNP NNP NNP , DT NNP JJ NNP NNP NNP VBD PRP VBD VBN IN WP PRP VBD NNP POS `` JJ NN `` IN JJ NN . The U.S. State Department and the European parliament also voiced concern . DT NNP NNP NNP CC DT JJ NN RB VBD NN . Pakistani military officials say 14 of about 40 Pakistani soldiers who went missing following an attack on a security checkpoint have been found in neighboring Afghanistan . JJ JJ NNS VBP CD IN IN CD JJ NNS WP VBD VBG VBG DT NN IN DT NN NN VBP VBN VBN IN JJ NNP . Officials say the Frontier Corps paramilitary troops disappeared from the Mohmand tribal region after a Taliban insurgent attack along the Afghan border earlier this week . NNS VBP DT NNP NNP JJ NNS VBD IN DT NNP JJ NN IN DT NNP JJ NN IN DT JJ NN RBR DT NN . Military spokesman Major General Athar Abbas told reporters Thursday that Afghan authorities handed over the troops to the Pakistani consulate in Jalalabad and the soldiers were being flown back to Pakistan . NNP NN NNP NNP NNP NNP VBD NNS NNP IN JJ NNS VBD IN DT NNS TO DT JJ NN IN NNP CC DT NNS VBD VBG VBN RB TO NNP . Taliban militants said they captured 10 soldiers during the attack on the paramilitary post , but officials could not verify the claim . NNP NNS VBD PRP VBD CD NNS IN DT NN IN DT JJ NN , CC NNS MD RB VB DT NN . On Wednesday , Pakistani officials said 10 paramilitary soldiers and at least 36 militants were killed in fighting in the country 's Bajaur tribal region . IN NNP , JJ NNS VBD CD JJ NNS CC IN JJS CD NNS VBD VBN IN VBG IN DT NN POS NNP JJ NN . The Pakistani military has twice declared victory there following offensives aimed at clearing the area of insurgents linked to the Taliban and al-Qaida . DT JJ NN VBZ RB VBN NN RB VBG NNS VBN IN VBG DT NN IN NNS VBN TO DT NNP CC NNP . Thailand 's military has named a committee to begin the process of writing a new constitution , following a military coup last month . NNP POS NN VBZ VBN DT NN TO VB DT NN IN VBG DT JJ NN , VBG DT JJ NN JJ NN . Officials said Thursday the 17-member panel will be led by Air Force Chief Chalit Phukphasuk . NNS VBD NNP DT JJ NN MD VB VBN IN NNP NNP NNP NNP NNP . The committee is to select 2,000 people for a National Assembly , from which 100 people will be selected to draft the new charter . DT NN VBZ TO VB CD NNS IN DT NNP NNP , IN WDT CD NNS MD VB VBN TO VB DT JJ NN . Leaders of the military coup have pledged to return the country to civilian rule in one year and hold new elections in October of next year . NNS IN DT JJ NN VBP VBN TO VB DT NN TO JJ NN IN CD NN CC VB JJ NNS IN NNP IN JJ NN . Interim Prime Minister Surayud Chulanont Thursday reaffirmed plans for the army-led government to finish its work in one year . NNP NNP NNP NNP NNP NNP VBD NNS IN DT JJ NN TO VB PRP$ NN IN CD NN . He said he does not want to ' bear the burden ' assigned by military leaders longer than necessary . PRP VBD PRP VBZ RB VB TO `` VB DT NN `` VBN IN JJ NNS RBR IN JJ . Earlier , a member of the interim cabinet , Thirapat Serirangsan , said the transition process may take as many as 17 months . RB , DT NN IN DT JJ NN , NNP NNP , VBD DT NN NN MD VB RB JJ IN CD NNS . Government officials in Sudan 's semi-autonomous south say Saturday fighting within the army has killed at least 13 people , including civilians and soldiers . NN NNS IN NNP POS JJ NN VBP NNP NN IN DT NN VBZ VBN IN JJS CD NNS , VBG NNS CC NNS . Authorities say the violence erupted in the oil-rich Unity State Friday between bodyguards of the state 's governor and troops loyal to army General Paulino Matip . NNS VBP DT NN VBD IN DT JJ NN NN NNP IN NNS IN DT NN POS NN CC NNS JJ TO NN NNP NNP NNP . Government officials say the clashes stem from an argument that escalated into violence . NN NNS VBP DT NNS VBP IN DT NN WDT VBD IN NN . The infighting comes as southern Sudan 's ruling party ( Sudan Peoples ' Liberation Movement , SPLM ) seeks to reclaim a major oil field in Unity State . DT NN VBZ IN JJ NNP POS NN NN LRB NNP NNPS POS NN NN , NNP RRB VBZ TO VB DT JJ NN NN IN NNP NNP . An arbitration court granted the land where the oil field is located to the northern-based national government in a July ruling . DT NN NN VBD DT NN WRB DT NN NN VBZ VBN TO DT JJ JJ NN IN DT NNP NN . Southern Sudan is also scheduled to vote on independence from the North in a 2011 referendum . NNP NNP VBZ RB VBN TO VB IN NN IN DT NNP IN DT CD NN . The independence vote is part of a 2005 peace deal between the north and the south that ended 21 years of civil war . DT NN NN VBZ NN IN DT CD NN NN IN DT NN CC DT NN WDT VBD CD NNS IN JJ NN . Israel has stepped up security around Jerusalem 's holiest site to prevent clashes between Muslim worshippers and Jewish extremists opposed to Israel 's impending withdrawal from the Gaza Strip . NNP VBZ VBN RP NN IN NNP POS JJS NN TO VB NNS IN NNP NNS CC JJ NNS VBN TO NNP POS JJ NN IN DT NNP NNP . Hundreds of police have been mobilized around what Jews call the Temple Mount , and Muslims know as the Noble Sanctuary . NNS IN NNS VBP VBN VBN IN WP VBZ VB DT NNP NNP , CC NNPS VBP IN DT NNP NNP . Thousands of Jews are expected to attend prayer services at the compound through Sunday to commemorate the destruction of the biblical Jewish temples 2000 years ago . NNS IN NNPS VBP VBN TO VB NN NNS IN DT NN IN NNP TO VB DT NN IN DT JJ JJ NNS CD NNS RB . Muslim clerics have urged their followers to protect mosques on the holy site . NNP NNS VBP VBN PRP$ NNS TO VB NNS IN DT JJ NN . Meanwhile , Hamas leaders in Gaza held a rare news conference Saturday , vowing to continue their struggle against Israel . RB , NNP NNS IN NNP VBD DT JJ NN NN NNP , VBG TO VB PRP$ NN IN NNP . The Palestinian Authority says security forces are fully prepared ahead of their deployment today to prevent any attempts by militants to disrupt Israel 's withdrawal from Gaza beginning this week . DT JJ NNP VBZ NN NNS VBP RB VBN RB IN PRP$ NN NN TO VB DT NNS IN NNS TO VB NNP POS NN IN NNP VBG DT NN . Venezuela 's president has called on the international community to do everything possible to avoid a military conflict with Iran because of its nuclear program . NNP POS NN VBZ VBN IN DT JJ NN TO VB DT JJ TO VB DT JJ NN IN NNP IN IN PRP$ JJ NN . Speaking on a trip to London Monday , Hugo Chavez said that Europe has a very important role to play in the dispute with Iran , which is accused of seeking atomic weapons . VBG IN DT NN TO NNP NNP , NNP NNP VBD IN NNP VBZ DT RB JJ NN TO VB IN DT NN IN NNP , WDT VBZ VBN IN VBG JJ NNS . Earlier , Mr. Chavez warned that the price of oil would soar if the United States took military action against Iran . RB , NNP NNP VBD IN DT NN IN NN MD VB IN DT NNP NNPS VBD JJ NN IN NNP . The Venezuelan leader was set to conclude a two-day trip to London , which did not include a meeting with British Prime Minister Tony Blair . DT JJ NN VBD VBN TO VB DT JJ NN TO NNP , WDT VBD RB VB DT NN IN JJ NNP NNP NNP NNP . Later Monday , Mr. Chavez was to travel to Algeria for talks with President Abdelaziz Bouteflika . RB NNP , NNP NNP VBD TO VB TO NNP IN NNS IN NNP NNP NNP . Tuesday , he is to meet Libyan leader Moammar Gadhafi in Tripoli . NNP , PRP VBZ TO VB JJ NN NNP NNP IN NNP . French singer Henri Salvador , who performed with Django Reinhardt and is credited with inspiring the bossa nova , died in Paris Wednesday , at the age of 90 . JJ NN NNP NNP , WP VBD IN NNP NNP CC VBZ VBN IN VBG DT NN NN , VBD IN NNP NNP , IN DT NN IN CD . Officials of his recording company say Salvador died in his home of an aneurysm . NNS IN PRP$ NN NN VBP NNP VBD IN PRP$ NN IN DT NN . Salvador was born in French Guiana and moved to Paris , where he began playing the guitar . NNP VBD VBN IN JJ NNP CC VBD TO NNP , WRB PRP VBD VBG DT NN . Renowned guitarist Django Reinhardt discovered him in the 1930s . JJ NN NNP NNP VBD PRP IN DT NNS . He later played with band leader Ray Ventura before going on to a solo career . PRP RB VBD IN NN NN NNP NNP IN VBG IN TO DT NN NN . Salvador 's song ' Dans mon Isle ' inspired the Brazilian musician Antonio Carlos Jobim , who borrowed the song 's innovative sense of timing and used it to create the bossa nova style . NNP POS NN `` NNP NNP NNP `` VBD DT JJ NN NNP NNP NNP , WP VBD DT NN POS JJ NN IN NN CC VBD PRP TO VB DT NN NN NN . A leading human rights group says Afghanistan 's human rights situation demands continuing monitoring by the United Nations . DT VBG JJ NNS NN VBZ NNP POS JJ NNS NN NNS VBG NN IN DT NNP NNPS . Human Rights Watch issued a statement late Tuesday , urging the U.N. Human Rights Commission to keep Afghanistan on its agenda and to increase the number of monitors in the country . NNP NNP NNP VBD DT NN JJ NNP , VBG DT NNP NNP NNP NNP TO VB NNP IN PRP$ NN CC TO VB DT NN IN NNS IN DT NN . The U.N. commission is holding its annual meeting in Geneva this week . DT NNP NN VBZ VBG PRP$ JJ NN IN NNP DT NN . The U.S.-based group says there is still a human rights crisis in Afghanistan , where warlords and armed factions continue to dominate many regions and routinely abuse human rights , especially the rights of women and girls . DT JJ NN VBZ EX VBZ RB DT JJ NNS NN IN NNP , WRB NNS CC JJ NNS VBP TO VB JJ NNS CC RB VB JJ NNS , RB DT NNS IN NNS CC NNS . It also urged the United States to help increase human rights monitoring in Afghanistan , saying it is particularly important ahead of the country 's parliamentary election , which is expected in September . PRP RB VBD DT NNP NNPS TO VB VB JJ NNS NN IN NNP , VBG PRP VBZ RB JJ RB IN DT NN POS JJ NN , WDT VBZ VBN IN NNP . Iranian President Mohammad Khatami has issued a new warning that Tehran will respond to any hostile military action from the United States , but he says he does not believe U.S. forces will attack his country . JJ NNP NNP NNP VBZ VBN DT JJ NN IN NNP MD VB TO DT JJ JJ NN IN DT NNP NNPS , CC PRP VBZ PRP VBZ RB VB NNP NNS MD VB PRP$ NN . Speaking in Uganda Thursday , Mr. Khatami said Tehran does not welcome tensions with Washington , and said he believes the possibility of a U.S. attack is ' very low . ' VBG IN NNP NNP , NNP NNP VBD NNP VBZ RB VB NNS IN NNP , CC VBD PRP VBZ DT NN IN DT NNP NN VBZ `` RB JJ . `` The two governments have been locked in a three-year stand-off over U.S. allegations that Iran is seeking to develop nuclear weapons . DT CD NNS VBP VBN VBN IN DT JJ NN IN NNP NNS IN NNP VBZ VBG TO VB JJ NNS . Tehran flatly denies the charges . NNP RB VBZ DT NNS . Mr. Khatami 's remarks follow a published report Sunday that said the United States is carrying out secret reconnaissance missions in Iran to identify targets for possible military strikes . NNP NNP POS NNS VBP DT VBN NN NNP WDT VBD DT NNP NNPS VBZ VBG RP JJ NN NNS IN NNP TO VB NNS IN JJ JJ NNS . The White House rejected the New Yorker magazine report , saying it was riddled with inaccuracies and conclusions not based on fact . DT NNP NNP VBD DT NNP NNP NN NN , VBG PRP VBD VBN IN NNS CC NNS RB VBN IN NN . Ukrainian President Viktor Yushchenko is hosting a two-day meeting of officials from three other former Soviet republics aimed at building democracy in the region . JJ NNP NNP NNP VBZ VBG DT JJ NN IN NNS IN CD JJ JJ JJ NNS VBN IN VBG NN IN DT NN . Representatives of Azerbaijan , Georgia and Moldova join their Ukrainian colleagues in Kiev Monday ahead of a meeting of the four countries ' presidents on Tuesday . NNS IN NNP , NNP CC NNP VBP PRP$ JJ NNS IN NNP NNP RB IN DT NN IN DT CD NNS POS NNS IN NNP . Talks are expected to focus on energy issues as well as cooperation by the four nations , known under the acronym GUAM , in international organizations . NNS VBP VBN TO VB IN NN NNS RB RB IN NN IN DT CD NNS , VBN IN DT NN NNP , IN JJ NNS . Ukrainian officials say the meeting will consider expanding the activities of the group and changing its name to the Organization for Democracy and Development . JJ NNS VBP DT NN MD VB VBG DT NNS IN DT NN CC VBG PRP$ NN TO DT NNP IN NNP CC NNP . The group was founded in 1997 with the aim of expending cooperation of the four members of the Commonwealth of Independent States . DT NN VBD VBN IN CD IN DT NN IN VBG NN IN DT CD NNS IN DT NN IN NNP NNPS . Uzbekistan joined in 1999 , but announced its withdrawal three years later , complaining that the group had deviated from its goal of economic cooperation to a focus on political issues . NNP VBD IN CD , CC VBD PRP$ NN CD NNS RB , VBG IN DT NN VBD VBN IN PRP$ NN IN JJ NN TO DT NN IN JJ NNS . A stampede at a religious gathering in southern Pakistan has killed at least 29 women and children . DT NN IN DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NNS CC NNS . More than 70 people were injured in the stampede , which occurred Sunday after a Sunni Muslim ceremony in Karachi celebrating the birth of the Prophet Muhammad . JJR IN CD NNS VBD VBN IN DT NN , WDT VBD NNP IN DT NNP NNP NN IN NNP VBG DT NN IN DT NNP NNP . At least 20,000 women and their children attended the ceremony . IN JJS CD NNS CC PRP$ NNS VBD DT NN . Local officials and witnesses said the stampede began after a girl fell down in the middle of a crowd leaving a mosque . JJ NNS CC NNS VBD DT NN VBD IN DT NN VBD RP IN DT NN IN DT NN VBG DT NN . They said a woman bent down to pick up the girl , causing others behind to trip over her . PRP VBD DT NN NN IN TO VB RP DT NN , VBG NNS IN TO NN IN PRP . Dozens of unconscious women and children were sent to nearby hospitals . NNS IN JJ NNS CC NNS VBD VBN TO JJ NNS . More bleak news for the U.S. economy Friday : the Labor Department reported the nation lost more than a half million jobs in November , the most in about three decades . RBR JJ NN IN DT NNP NN NNP IN DT NNP NNP VBD DT NN VBD JJR IN DT NN CD NNS IN NNP , DT RBS IN IN CD NNS . And the number of homeowners struggling to make their mortgage payments is rising . CC DT NN IN NNS VBG TO VB PRP$ NN NNS VBZ VBG . President Bush expressed concern about the deteriorating U.S. economy and used the word ' recession ' for the first time . NNP NNP VBD NN IN DT VBG NNP NN CC VBD DT NN `` NN `` IN DT JJ NN . Members of the U.N. Security Council have arrived in Rwanda at the start of a tour of nations affected by a decade of ethnic strife in Africa 's Great Lakes region . NNS IN DT NNP NNP NNP VBP VBN IN NNP IN DT NN IN DT NN IN NNS VBN IN DT NN IN JJ NN IN NNP POS NNP NNP NN . Delegates are also scheduled to visit the Democratic Republic of Congo , Burundi and Uganda to study ways of encouraging rebuilding and an end to violence . NNS VBP RB VBN TO VB DT JJ NNP IN NNP , NNP CC NNP TO VB NNS IN JJ NN CC DT NN TO NN . The tour comes one day after a Great Lakes summit in Tanzania , where 15 African leaders signed a pledge to disarm fighters , stop the flow of weapons and improve security . DT NN VBZ CD NN IN DT JJ NNP NN IN NNP , WRB CD JJ NNS VBD DT NN TO VB NNS , VB DT NN IN NNS CC VB NN . Speaking at the summit , U.N. Secretary General Kofi Annan promised to back peacekeeping operations and humanitarian aid in the region . VBG IN DT NN , NNP NNP NNP NNP NNP VBD TO VB VBG NNS CC JJ NN IN DT NN . In 1994 , the genocide in Rwanda sparked a series of ethnic conflicts and cross-border wars , killing and displacing millions of people , mostly civilians . IN CD , DT NN IN NNP VBD DT NN IN JJ NNS CC JJ NNS , VBG CC VBG NNS IN NNS , RB NNS . The United States is the only wealthy , industrialized nation that does not provide universal health care for its citizens . DT NNP NNPS VBZ DT JJ JJ , JJ NN WDT VBZ RB VB JJ NN NN IN PRP$ NNS . And now , rising costs for both health care and for insurance premiums put health care out of reach for many Americans . CC RB , VBG NNS IN DT NN NN CC IN NN NNS VBP NN NN IN IN NN IN JJ NNS . Forty-seven million do not have health insurance . CD CD VBP RB VB NN NN . VOA 's Carol Pearson has more . NNP POS NNP NNP VBZ RBR . President Bush says the United States needs to increase its oil refining capacity after two Gulf of Mexico hurricanes tightened gasoline supplies . NNP NNP VBZ DT NNP NNPS VBZ TO VB PRP$ NN NN NN IN CD NNP IN NNP NNS VBD NN NNS . Following a briefing by the Energy Department , the president said Hurricanes Rita and Katrina exposed the fragility of the balance between oil supply and demand in the nation . VBG DT NN IN DT NNP NNP , DT NN VBD NNPS NNP CC NNP VBD DT NN IN DT NN IN NN NN CC NN IN DT NN . The president said he was willing to use the national Strategic Petroleum Reserve to meet immediate fuel needs and he urged citizens to conserve fuel by curtailing nonessential trips and conserving electricity during peak hours . DT NN VBD PRP VBD JJ TO VB DT JJ NNP NNP NNP TO VB JJ NN NNS CC PRP VBD NNS TO VB NN IN VBG JJ NNS CC VBG NN IN JJ NNS . The president said many pipelines and refineries should be back to full capacity by next week , but officials are still assessing the damage at several key sites . DT NN VBD JJ NNS CC NNS MD VB RB TO JJ NN IN JJ NN , CC NNS VBP RB VBG DT NN IN JJ JJ NNS . Oil prices fell today to about $ 64 a barrel on reports of limited hurricane damage to industry facilities . NN NNS VBD NN TO RB $ CD DT NN IN NNS IN JJ NN NN TO NN NNS . The Paris Club of international creditors has agreed to cancel 80 percent of the debt Iraq owes member countries . DT NNP NNP IN JJ NNS VBZ VBN TO VB CD NN IN DT NN NNP VBZ NN NNS . Officials say the deal , brokered in Berlin , is worth about $ 33 billion . NNS VBP DT NN , VBN IN NNP , VBZ JJ IN $ CD CD . Club officials were set to make a formal announcement in Paris later Sunday . NNP NNS VBD VBN TO VB DT JJ NN IN NNP RB NNP . The United States had sought as much as a 95 percent debt reduction as part of a strategy aimed at increasing the chances of survival for the post-war Iraqi government . DT NNP NNPS VBD VBN RB RB IN DT CD NN NN NN IN NN IN DT NN VBN IN VBG DT NNS IN NN IN DT JJ JJ NN . For its part , France had sought to have member countries initially waive 50 percent of the debt and then review the matter in three years . IN PRP$ NN , NNP VBD VBN TO VB NN NNS RB VB CD NN IN DT NN CC RB VB DT NN IN CD NNS . Paris had argued that slashing the debt by more than 50 percent was unfair to other poor , debt-ridden nations that lack the potential oil revenues of Iraq . NNP VBD VBN IN VBG DT NN IN JJR IN CD NN VBD JJ TO JJ JJ , JJ NNS WDT VBP DT JJ NN NNS IN NNP . President Bush is urging senior citizens to enroll in the new Medicare prescription drug plan by its May 15 deadline . NNP NNP VBZ VBG JJ NNS TO VB IN DT JJ NNP NN NN NN IN PRP$ NNP CD NN . Mr. Bush issued the call Tuesday as he visited seniors in the Midwestern U.S. states of Missouri and Iowa to discuss the program . NNP NNP VBD DT NN NNP IN PRP VBD NNS IN DT JJ NNP NNS IN NNP CC NNP TO VB DT NN . The president told his audiences that 29 million Americans are already participating in the program intended to give them choices and save them money . DT NN VBD PRP$ NNS IN CD CD NNS VBP RB VBG IN DT NN VBN TO VB PRP NNS CC VB PRP NN . The president 's chief Medicare official , Mark McClellan , said more than 1,000 enrollment seminars are planned around the country this week to raise awareness about the program . DT NN POS NN NNP NN , NNP NNP , VBD RBR IN CD NN NNS VBP VBN IN DT NN DT NN TO VB NN IN DT NN . Democrats have said the numerous options in the plan confuse senior citizens and will cost them more money . NNPS VBP VBN DT JJ NNS IN DT NN NN JJ NNS CC MD VB PRP JJR NN . Mr. Bush has acknowledged problems with the plan since its January debut , but says his administration has straightened them out . NNP NNP VBZ VBN NNS IN DT NN IN PRP$ NNP NN , CC VBZ PRP$ NN VBZ VBN PRP RP . Top Republican lawmakers in the House of Representatives say they are planning legislation that would block a Dubai company from taking over operations of several U.S. ports , setting up a showdown with the White House . JJ JJ NNS IN DT NNP IN NNPS VBP PRP VBP VBG NN WDT MD VB DT NNP NN IN VBG RP NNS IN JJ NNP NNS , VBG RP DT NN IN DT NNP NNP . The chairman of a key House committee says he will attach a provision blocking the proposed deal to an emergency spending measure for the war in Iraq and for Hurricane Katrina recovery efforts . DT NN IN DT JJ NNP NN VBZ PRP MD VB DT NN VBG DT VBN NN TO DT NN NN NN IN DT NN IN NNP CC IN NNP NNP NN NNS . The proposal marks a significant break between the White House and Republican lawmakers who have supported President Bush 's legislative agenda in recent years . DT NN VBZ DT JJ NN IN DT NNP NNP CC NNP NNS WP VBP VBN NNP NNP POS JJ NN IN JJ NNS . The White House has vowed to veto any legislation overturning the deal with Dubai-owned DP World , and on Tuesday a spokesman said the administration would continue to work with Congress on the matter . DT NNP NNP VBZ VBN TO VB DT NN VBG DT NN IN JJ NNP NNP , CC IN NNP DT NN VBD DT NN MD VB TO VB IN NNP IN DT NN . But House members say the issue is a ' very big ' political problem for lawmakers and they expect to hold talks with the Senate on ways to block the takeover . CC NNP NNS VBP DT NN VBZ DT `` RB JJ `` JJ NN IN NNS CC PRP VBP TO VB NNS IN DT NNP IN NNS TO VB DT NN . A spokesman for U.S. President Barack Obama says a decision on how many additional troops will be sent to Afghanistan will be made shortly . DT NN IN NNP NNP NNP NNP VBZ DT NN IN WRB JJ JJ NNS MD VB VBN TO NNP MD VB VBN RB . White House Press Secretary Robert Gibbs told reporters Monday aboard Air Force One that the decision will be made within days and not weeks . NNP NNP NNP NNP NNP NNP VBD NNS NNP IN NNP NNP CD IN DT NN MD VB VBN IN NNS CC RB NNS . Defense Secretary Robert Gates told reporters last week that the president will have several options before him . NNP NNP NNP NNP VBD NNS JJ NN IN DT NN MD VB JJ NNS IN PRP . The U.S. commander in Afghanistan , General David McKiernan , has requested up to 30,000 additional troops , including combat and aviation brigades , to join U.S. military units already in the country . DT NNP NN IN NNP , NNP NNP NNP , VBZ VBN RP TO CD JJ NNS , VBG NN CC NN NNS , TO VB NNP JJ NNS RB IN DT NN . There are currently about 60,000 foreign soldiers in Afghanistan , most of them part of the International Security Assistance Force . EX VBP RB IN CD JJ NNS IN NNP , JJS IN PRP NN IN DT NNP NNP NNP NNP . The Obama administration has ordered a review of U.S. policy in Afghanistan and neighboring Pakistan , to consider new ways to root out terrorist havens and how to battle insurgents more effectively . DT NNP NN VBZ VBN DT NN IN NNP NN IN NNP CC JJ NNP , TO VB JJ NNS TO VB RP JJ NNS CC WRB TO VB NNS RBR RB . Pyongyang is demanding Seoul pay at least $ 1 billion in compensation for allegedly torturing North Korean spies and prisoners of war formerly held in South Korea . NNP VBZ VBG NNP VB IN JJS $ CD CD IN NN IN RB VBG JJ JJ NNS CC NNS IN NN RB VBN IN NNP NNP . North Korea 's official KCNA news agency says the government submitted its claim for damages to South Korea 's Human Rights Commission Friday . NNP NNP POS JJ NNP NN NN VBZ DT NN VBD PRP$ NN IN NNS TO NNP NNP POS NNP NNPS NNP NNP . Pyongyang 's complaint involves 63 North Koreans freed by South Korea in 2000 , and sent back to the North after decades of detention . NNP POS NN VBZ CD NNP NNS VBN IN NNP NNP IN CD , CC VBN RB TO DT NNP IN NNS IN NN . Seoul agreed to release them after a reconciliation summit between the two Koreas . NNP VBD TO VB PRP IN DT NN NN IN DT CD NNS . North Korea says the prisoners were subjected to physical and mental torture , and held in solitary confinement for refusing to renounce their ideology . NNP NNP VBZ DT NNS VBD VBN TO JJ CC JJ NN , CC VBN IN JJ NN IN VBG TO VB PRP$ NN . Pyongyang has also faced international criticism for allegedly torturing prisoners . NNP VBZ RB VBN JJ NN IN RB VBG NNS . Seoul says hundreds of South Korean prisoners are still being held by the North . NNP VBZ NNS IN JJ JJ NNS VBP RB VBG VBN IN DT NNP . New violence has killed at least 11 people in Iraq , casting a shadow over celebrations to mark the end of the Muslim holy month of Ramadan . JJ NN VBZ VBN IN JJS CD NNS IN NNP , VBG DT NN IN NNS TO VB DT NN IN DT NNP JJ NN IN NNP . North of Baghdad , near Baquba , gunmen attacked a police checkpoint in the town of Buhriz , killing six officers and wounding at least 10 others . NNP IN NNP , IN NNP , NNS VBD DT NN NN IN DT NN IN NNP , VBG CD NNS CC VBG IN JJS CD NNS . In the town of Taza , near Kirkuk , a roadside bomb exploded , hitting a convoy of Iraqi soldiers . IN DT NN IN NNP , IN NNP , DT NN NN VBD , VBG DT NN IN JJ NNS . Five were killed and four were wounded . CD VBD VBN CC CD VBD VBN . And the U.S. military said a roadside bomb blast in east Baghdad killed an American soldier . CC DT NNP NN VBD DT NN NN NN IN JJ NNP VBD DT JJ NN . Meanwhile , a senior British general , Major General James Dutton , told reporters that sophisticated technology and explosives for making bombs are entering Iraq from neighboring Iran . RB , DT JJ JJ NN , NNP NNP NNP NNP , VBD NNS IN JJ NN CC NNS IN VBG NNS VBP VBG NNP IN VBG NNP . The general said it is still not clear whether Iran 's government , its intelligence service , or other unspecified groups are involved . DT NN VBD PRP VBZ RB RB JJ IN NNP POS NN , PRP$ NN NN , CC JJ JJ NNS VBP VBN . President Bush was in the middle of a minor confrontation involving his Secret Service agents and Chilean security forces at the APEC summit in Santiago , Chile Saturday night . NNP NNP VBD IN DT NN IN DT JJ NN VBG PRP$ NNP NNP NNS CC JJ NN NNS IN DT NNP NN IN NNP , NNP NNP NN . A shoving match between the Chilean and U.S. agents occurred Saturday when the Chileans tried to stop the Secret Service bodyguards from accompanying the president to a dinner with world leaders . DT VBG NN IN DT JJ CC NNP NNS VBD NNP WRB DT NNS VBD TO VB DT NNP NNP NNS IN VBG DT NN TO DT NN IN NN NNS . When the president noticed the confrontation , he stepped away from First Lady Laura Bush , Chilean President Ricardo Lagos and his wife , and pulled the U.S. agent from Chilean security . WRB DT NN VBD DT NN , PRP VBD RB IN NNP NNP NNP NNP , JJ NNP NNP NNP CC PRP$ NN , CC VBD DT NNP NN IN JJ NN . The incident was shown on APEC 's summit television . DT NN VBD VBN IN NNP POS NN NN . White House spokeswoman Claire Buchan said Chilean security tried to stop the president 's Secret Service from accompanying him . NNP NNP NN NNP NNP VBD JJ NN VBD TO VB DT NN POS NNP NNP IN VBG PRP . She also said the issue was resolved when the president told the Chileans the Secret Service agents were with him . PRP RB VBD DT NN VBD VBN WRB DT NN VBD DT NNS DT NNP NNP NNS VBD IN PRP . Veterinary experts meeting in Paris say all countries regardless of their economic problems must fight bird flu . JJ NNS VBG IN NNP VBP DT NNS RB IN PRP$ JJ NNS MD VB NN NN . The World Organization for Animal Health said Tuesday just one country failing to control bird flu can endanger the whole planet . DT NNP NNP IN NNP NNP VBD NNP RB CD NN VBG TO VB NN NN MD VB DT JJ NN . The experts warned that the deadly H5N1 virus is highly likely to infect domestic poultry in Europe as migrating wild birds return from Africa and the Mideast . DT NNS VBD IN DT JJ NNP NN VBZ RB JJ TO VB JJ NN IN NNP IN VBG JJ NNS NN IN NNP CC DT NN . Bird flu has already struck a turkey farm in France . NN NN VBZ RB VBN DT NN NN IN NNP . France says 43 countries have either banned or curbed exports of French poultry . NNP VBZ CD NNS VBP DT VBN CC VBN NNS IN JJ NN . Meanwhile , Sweden reported its first bird flu case in wild ducks Tuesday . RB , NNP VBD PRP$ JJ NN NN NN IN JJ NNS NNP . And bird flu was found in a cat on the German Baltic Sea island of Ruegen , where bird flu killed a number of wild birds . CC NN NN VBD VBN IN DT NN IN DT JJ NNP NNP NN IN NNP , WRB NN NN VBD DT NN IN JJ NNS . Experts say there is no evidence cats can spread the disease to humans . NNS VBP EX VBZ DT NN NNS MD VB DT NN TO NNS . U.S. Federal Reserve Chairman Alan Greenspan says the United States has weathered two years of sharp rises in fuel and natural gas prices reasonably well , thanks to what he calls ' market flexibility . ' NNP NNP NNP NNP NNP NNP VBZ DT NNP NNPS VBZ VBN CD NNS IN JJ NNS IN NN CC JJ NN NNS RB RB , NNS TO WP PRP VBZ `` NN NN . `` In a speech Wednesday in Washington , Mr. Greenspan also praised market flexibility for what he termed ' the impressive performance ' of the U.S. economy over the past 20 years . IN DT NN NNP IN NNP , NNP NNP RB VBD NN NN IN WP PRP VBD `` DT JJ NN `` IN DT NNP NN IN DT JJ CD NNS . Analysts have often praised Mr. Greenspan , who has been in office since 1987 , for fostering economic stability with his interest rate and monetary policy . NNS VBP RB VBN NNP NNP , WP VBZ VBN IN NN IN CD , IN VBG JJ NN IN PRP$ NN NN CC JJ NN . On Wednesday , he made no mention of interest rates , which the Federal Reserve has raised several times in recent months . IN NNP , PRP VBD DT NN IN NN NNS , WDT DT NNP NNP VBZ VBN JJ NNS IN JJ NNS . Mr. Greenspan 's term on the Federal Reserve 's Board of Governors is scheduled to end on January 31 . NNP NNP POS NN IN DT NNP NNP POS NNP IN NNP VBZ VBN TO VB IN NNP CD . Kosovo President Ibrahim Rugova has nominated Bajram Kosumi as prime minister of the Serbian province . NNP NNP NNP NNP VBZ VBN NNP NNP IN JJ NN IN DT JJ NN . Mr. Kosumi is a close associate of former Prime Minister Ramush Haradinaj , who resigned last week and surrendered to the United Nations tribunal in The Hague after it indicted him for war crimes . NNP NNP VBZ DT JJ NN IN JJ NNP NNP NNP NNP , WP VBD JJ NN CC VBD TO DT NNP NNPS NN IN DT NNP IN PRP VBD PRP IN NN NNS . Kosovo lawmakers are expected to consider the nomination next week . NNP NNS VBP VBN TO VB DT NN JJ NN . The appointment comes just months before Kosovo 's ethnic Albanian-led government and Serbian leaders are due to open talks on the future of the province . DT NN VBZ RB NNS IN NNP POS JJ JJ NN CC JJ NNS VBP JJ TO JJ NNS IN DT NN IN DT NN . Kosovo 's ethnic Albanian majority wants independence , while its Serb minority wants the province to remain part of Serbia . NNP POS JJ JJ NN VBZ NN , IN PRP$ JJ NN VBZ DT NN TO VB NN IN NNP . The United Nations has been administering the area since 1999 , when NATO air strikes against Yugoslavia forced Serbian and Yugoslav security forces to withdraw from the area . DT NNP NNP VBZ VBN VBG DT NN IN CD , WRB NNP NN NNS IN NNP VBD JJ CC JJ NN NNS TO VB IN DT NN . Gunmen in Iraq have attacked a bus carrying Shi'ite Muslim pilgrims to shrines south of Baghdad , killing three and wounding several others . NNS IN NNP VBP VBN DT NN VBG NNP NNP VBZ TO NNS RB IN NNP , VBG CD CC VBG JJ NNS . Britain 's Foreign Office says it is investigating reports that at least two British citizens are among the dead from Monday 's shooting . NNP POS NNP NNP VBZ PRP VBZ VBG NNS IN IN JJS CD JJ NNS VBP IN DT JJ IN NNP POS NN . Meanwhile , there is no word on the fate of four Western humanitarian workers who disappeared in Iraq on Saturday . RB , EX VBZ DT NN IN DT NN IN CD JJ JJ NNS WP VBD IN NNP IN NNP . A Canadian official disclosed the kidnappings of a Briton , two Canadians and an American on Sunday , but did not reveal details . DT JJ NN VBD DT NNS IN DT NN , CD NNS CC DT NN IN NNP , CC VBD RB VB NNS . Since then , U.S. and British officials have confirmed the abductions . IN RB , NNP CC JJ NNS VBP VBN DT NNS . There has been no public claim of responsibility . EX VBZ VBN DT JJ NN IN NN . Meanwhile , the U.S. military says 20 suspected insurgents have been captured south of Baghdad in Babil province . RB , DT NNP NN VBZ CD JJ NNS VBP VBN VBN RB IN NNP IN NNP NN . Separately , authorities say U.S. troops have unearthed more than 2,700 mortar rounds at an abandoned Iraqi army base near Kirkuk . RB , NNS VBP NNP NNS VBP VBN JJR IN CD NN NNS IN DT JJ JJ NN NN IN NNP . Pope Benedict XVI says he does not feel well enough to take many foreign trips , but said he he hopes to travel to what he calls a peaceful Holy Land . NNP NNP NNP VBZ PRP VBZ RB VB RB JJ TO VB JJ JJ NNS , CC VBD PRP PRP VBZ TO VB TO WP PRP VBZ DT JJ NNP NNP . In an interview with German television broadcast Sunday , Pope Benedict said the Vatican wants to mobilize all forces who he says recognize that war is the worst solution for all sides , even for those he calls the apparent victors . IN DT NN IN JJ NN NN NNP , NNP NNP VBD DT NNP VBZ TO VB DT NNS WP PRP VBZ VB DT NN VBZ DT JJS NN IN DT NNS , RB IN DT PRP VBZ DT JJ NNS . Earlier Sunday , the pope voiced hope for the ceasefire in Lebanon and is urging the quick delivery of humanitarian aid once the truce takes hold . RBR NNP , DT NN VBD NN IN DT NN IN NNP CC VBZ VBG DT JJ NN IN JJ NN IN DT NN VBZ NN . An anti-American protest turned violent Wednesday , as police and protesters clashed in the Afghan capital , Kabul . DT JJ NN VBD JJ NNP , IN NN CC NNS VBN IN DT JJ NN , NNP . Hundreds of demonstrators chanted ' Death to America , ' burned tires and blocked a main highway , as part of a protest against the previously canceled plans of a small U.S. church to burn hundreds of Qurans . NNS IN NNS VBN `` NN TO NNP , `` VBN NNS CC VBD DT JJ NN , IN NN IN DT NN IN DT RB VBN NNS IN DT JJ NNP NN TO VB NNS IN NNS . At least 35 police officers and 10 demonstrators were injured after police moved in to disperse stone-throwing crowds . IN JJS CD NN NNS CC CD NNS VBD VBN IN NNS VBD IN TO VB JJ NNS . Afghan officials say police opened fire after being shot at by protesters . JJ NNS VBP NNS VBD NN IN VBG VBN IN IN NNS . Some of the demonstrators waved Taliban flags and police say some members of the militant group had infiltrated the crowd . DT IN DT NNS VBD NNP NNS CC NNS VBP DT NNS IN DT JJ NN VBD VBN DT NN . The American church 's plans to burn Qurans to mark the ninth anniversary of the September 11 attacks was called off last week amid international outrage . DT JJ NN POS NNS TO VB NNS TO VB DT JJ NN IN DT NNP CD NNS VBD VBN RP JJ NN IN JJ NN . Separately , two protesters were killed Sunday when police opened fire on a similar demonstration in eastern Logar province . RB , CD NNS VBD VBN NNP WRB NNS VBD NN IN DT JJ NN IN JJ NNP NN . United Nations officials in the Democratic Republic of Congo have paid tribute to Bangladeshi peacekeepers killed in an ambush Friday . NNP NNP NNS IN DT JJ NNP IN NNP VBP VBN NN TO JJ NNS VBN IN DT JJ NNP . Dominique McAdams , head of the U.N. bureau in Congo 's eastern Ituri province spoke to international soldiers Saturday at Bunia airport , where the bodies of the nine peacekeeers were to be loaded on a plane to Bangladesh . NNP NNP , NN IN DT NNP NN IN NNP POS JJ NNP NN VBD TO JJ NNS NNP IN NNP NN , WRB DT NNS IN DT CD NNS VBD TO VB VBN IN DT NN TO NNP . She said the Bangladeshi peacekeepers wanted to improve the lives of ordinary Congolese and to help free them from the grip of what she called ' demented ' armed elements . PRP VBD DT JJ NNS VBD TO VB DT NNS IN JJ NNS CC TO VB VB PRP IN DT NN IN WP PRP VBD `` VBN `` JJ NNS . Ms. McAdams said the U.N. mission must do its utmost to ensure that the Bangladeshis ' sacrifice will not be in vain . NNP NNP VBD DT NNP NN MD VB PRP$ NN TO VB IN DT NNS POS NN MD RB VB IN NN . The United Nations accused local armed groups , which it did not name , of being behind what it said were premeditated killings . DT NNP NNPS VBD JJ JJ NNS , WDT PRP VBD RB VB , IN VBG IN WP PRP VBD VBD VBN NNS . Police officials in Spain say Spanish and Moroccan security forces have thwarted another attempt by African migrants to illegally cross over from Morocco to Spain 's North African enclave of Melilla . NN NNS IN NNP VBP JJ CC JJ NN NNS VBP VBN DT NN IN JJ NNS TO RB VB RP IN NNP TO NNP POS JJ JJ NN IN NNP . Police say at least 1,000 migrants tried to scale razor wire fences early Thursday but failed to get through . NNS VBP IN JJS CD NNS VBD TO VB NN NN NNS RB NNP CC VBD TO VB IN . The attempt came just hours after Spain announced measures to deter migrants , mostly from west Africa , from storming Melilla and its sister enclave , Ceuta . DT NN VBD RB NNS IN NNP VBD NNS TO VB NNS , RB IN JJ NNP , IN VBG NNP CC PRP$ NN NN , NNP . Spain said it would invoke for the first time a 1992 agreement with Morocco allowing it to send back to Morocco any Africans who had succeeded in getting into Ceuta or Melilla . NNP VBD PRP MD VB IN DT JJ NN DT CD NN IN NNP VBG PRP TO VB RB TO NNP DT NNS WP VBD VBN IN VBG IN NNP CC NNP . Earlier Wednesday , about 500 migrants in Morocco tried storming a fence surrounding Melilla . RBR NNP , IN CD NNS IN NNP VBD VBG DT NN VBG NNP . About 65 people successfully climbed over the fence while dozens of others suffered serious cuts from razor wire . IN CD NNS RB VBD IN DT NN IN NNS IN NNS VBD JJ NNS IN NN NN . Iraqi authorities say a female suicide bomber has blown herself up near a government compound north of Baghdad , killing at least 15 people and wounding 40 others . JJ NNS VBP DT JJ NN NN VBZ VBN PRP RP IN DT NN NN NN IN NNP , VBG IN JJS CD NNS CC VBG CD NNS . The woman detonated her explosives vest in the Diyala province capital of Baquba Sunday , near a heavily guarded area that includes government offices and a courthouse . DT NN VBD PRP$ NNS NN IN DT NNP NN NN IN NNP NNP , IN DT RB VBN NN WDT VBZ NN NNS CC DT NN . Authorities say at least seven policemen were killed in the attack . NNS VBP IN JJS CD NNS VBD VBN IN DT NN . An increasing number of women have been carrying out suicide attacks in Iraq in recent months . DT VBG NN IN NNS VBP VBN VBG RP NN NNS IN NNP IN JJ NNS . The U.S. military says al-Qaida in Iraq has been recruiting women because it is easier for them to avoid security searches . DT NNP NN VBZ NNP IN NNP VBZ VBN VBG NNS IN PRP VBZ JJR IN PRP TO VB NN NNS . Authorities in Saudi Arabia have identified three of the militants killed in Monday 's terrorist attack on the U.S. Consulate in Jeddah . NNS IN NNP NNP VBP VBN CD IN DT NNS VBN IN NNP POS JJ NN IN DT NNP NNP IN NNP . The Saudi Interior Ministry says the three were not on a most wanted list of suspected al-Qaida sympathizers issued by Saudi authorities last year . DT NNP NNP NNP VBZ DT CD VBD RB IN DT RBS JJ NN IN JJ NNP NNS VBN IN JJ NNS JJ NN . Authorities are still trying to identify a fourth dead militant , while the name of a fifth militant taken into custody was not released . NNS VBP RB VBG TO VB DT JJ JJ NN , IN DT NN IN DT JJ NN VBN IN NN VBD RB VBN . The militants stormed the consulate with grenades , triggering a gunbattle with Saudi security forces . DT NNS VBD DT NN IN NNS , VBG DT NN IN JJ NN NNS . Five non-American staff members died in the attack . CD JJ NN NNS VBD IN DT NN . The United States says it is boosting security at its diplomatic missions in Saudi Arabia due to Monday 's attack . DT NNP NNPS VBZ PRP VBZ VBG NN IN PRP$ JJ NNS IN NNP NNP JJ TO NNP POS NN . The Jeddah consulate remains closed Tuesday . DT NNP NN VBZ JJ NNP . Russia says it thinks the top threats to its future security will come from NATO expansion and rivalry over energy resources . NNP VBZ PRP VBZ DT JJ NNS TO PRP$ JJ NN MD VB IN NNP NN CC NN IN NN NNS . The Kremlin on Wednesday unveiled its new National Security Strategy , outlining its priorities through the year 2020 . DT NNP IN NNP VBD PRP$ JJ NNP NNP NNP , VBG PRP$ NNS IN DT NN CD . The policy paper was signed by Russian President Dmitry Medvedev . DT NN NN VBD VBN IN JJ NNP NNP NNP . It says Russia can not rule out the use of military force to ' solve emerging problems ' around the competition for energy sources . PRP VBZ NNP MD RB VB IN DT NN IN JJ NN TO `` VB VBG NNS `` IN DT NN IN NN NNS . The document says Moscow hopes to build ' an equal and full-fledged strategic partnership with the United States , ' but criticized U.S. plans for a missile defense shield in Europe . DT NN VBZ NNP VBZ TO VB `` DT JJ CC JJ JJ NN IN DT NNP NNPS , `` CC VBD NNP NNS IN DT NN NN NN IN NNP . The new security strategy says Russia views any expansion of NATO to its neighboring countries to be ' unacceptable . ' DT JJ NN NN VBZ NNP VBZ DT NN IN NNP TO PRP$ JJ NNS TO VB `` JJ . `` That remark is likely aimed at Georgia and Ukraine , which have sought to join the alliance over Moscow 's objections . DT NN VBZ JJ VBN IN NNP CC NNP , WDT VBP VBN TO VB DT NN IN NNP POS NNS . Osama bin Laden 's deputy has appeared in a new videotape threatening Britain with more terror attacks and warning the United States it could face thousands of military casualties in Iraq if it does not withdraw its troops . NNP NNP NNP POS NN VBZ VBN IN DT JJ NN VBG NNP IN JJR NN NNS CC VBG DT NNP NNPS PRP MD VB NNS IN JJ NNS IN NNP IN PRP VBZ RB VB PRP$ NNS . Al-Qaida deputy Ayman al-Zawahiri did not directly claim al-Qaida carried out the July 7 London attacks in the video aired Thursday on the Arab satellite channel al-Jazeera . NNP NN NNP NNP VBD RB RB VB NNP VBD RP DT NNP CD NNP NNS IN DT NN VBN NNP IN DT JJ NN NN NNP . But he said further attacks would be the fault of British Prime Minister Tony Blair 's policies . CC PRP VBD JJ NNS MD VB DT NN IN NNP NNP NNP NNP NNP POS NNS . Of the United States , he said losses in the September 11 , 2001 attacks , and in Iraq and Afghanistan , would only be the beginning until ' you withdraw from our land , stop stealing our oil and resources , and end support for corrupt rulers . ' IN DT NNP NNPS , PRP VBD NNS IN DT NNP CD , CD NNS , CC IN NNP CC NNP , MD RB VB DT NN IN `` PRP VB IN PRP$ NN , VB VBG PRP$ NN CC NNS , CC NN NN IN JJ NNS . `` Ayman al-Zawahiri last appeared in a videotape on June 17 , in which he said peaceful change was not possible . NNP NNP JJ VBD IN DT NN IN NNP CD , IN WDT PRP VBD JJ NN VBD RB JJ . The New York Times says the CIA has sent more than 100 suspected terrorists to other countries for interrogation under a secret program authorized by the Bush administration . DT NNP NNP NNP VBZ DT NNP VBZ VBN JJR IN CD JJ NNS TO JJ NNS IN NN IN DT JJ NN VBN IN DT NNP NN . Sunday 's edition of the newspaper quotes former and current government officials as saying the CIA has acted under a still-classified directive that President Bush signed within days of the September 11 , 2001 , terrorist attacks . NNP POS NN IN DT NN VBZ JJ CC JJ NN NNS IN VBG DT NNP VBZ VBN IN DT JJ NN IN NNP NNP VBD IN NNS IN DT NNP CD , CD , JJ NNS . The officials said the process , known as rendition , has been central in U.S. efforts to disrupt terrorism . DT NNS VBD DT NN , VBN IN NN , VBZ VBN JJ IN NNP NNS TO VB NN . Suspects have been sent to countries including Egypt , Syria , Jordan , Saudi Arabia and Pakistan . NNS VBP VBN VBN TO NNS VBG NNP , NNP , NNP , NNP NNP CC NNP . The transfers have been criticized because some former prisoners alleged they were mistreated . DT NNS VBP VBN VBN IN DT JJ NNS VBD PRP VBD VBN . An administration official told the paper the CIA takes care to ensure the prisoners are detained under humane conditions and not tortured . DT NN NN VBD DT NN DT NNP VBZ NN TO VB DT NNS VBP VBN IN NN NNS CC RB VBN . Venezuela 's president says his government may give its U.S.-made fighter jets to Cuba and China , after accusing the United States of breaking an agreement to provide jet parts . NNP POS NN VBZ PRP$ NN MD VB PRP$ JJ NN NNS TO NNP CC NNP , IN VBG DT NNP NNPS IN VBG DT NN TO VB NN NNS . President Hugo Chavez Tuesday said the United States is refusing to sell parts to Caracas to maintain its fleet of U.S.-made F-16 fighters . NNP NNP NNP NNP VBD DT NNP NNPS VBZ VBG TO VB NNS TO NNP TO VB PRP$ NN IN JJ NN NNS . Mr. Chavez said his nation can do whatever it wants with the jets - even give them to Cuba and China . NNP NNP VBD PRP$ NN MD VB WDT PRP VBZ IN DT NNS IN RB VB PRP TO NNP CC NNP . The comments were made at a ceremony announcing Venezuela 's plans to launch a telecommunications satellite with China 's help . DT NNS VBD VBN IN DT NN VBG NNP POS NNS TO VB DT NN NN IN NNP POS NN . A Defense Department official speaking on condition of anonymity says there has been no communication with Caracas about giving away the jets . DT NNP NNP JJ NN IN NN IN NN VBZ EX VBZ VBN DT NN IN NNP IN VBG RP DT NNS . The official also said U.S. laws strictly govern third party transfers . DT NN RB VBD NNP NNS RB VBP JJ NN NNS . Venezuela bought two-dozen F-16 jets from the United States in the 1980s . NNP VBD JJ NN NNS IN DT NNP NNPS IN DT NNS . Iran 's foreign minister says Tehran will restart its uranium enrichment program if Friday 's talks with European nations fail . NNP POS JJ NN VBZ NNP MD VB PRP$ NN NN NN IN NNP POS NNS IN JJ NNS VBP . Kamal Kharrazi spoke to reporters at The Hague , saying if the two sides fail to resolve the impasse Friday , then Tehran ' will have no choice ' but to restart its enrichment program . NNP NNP VBD TO NNS IN DT NNP , VBG IN DT CD NNS VBP TO VB DT NN NNP , RB NNP `` MD VB DT NN `` CC TO VB PRP$ NN NN . Britain , France and Germany , backed by the United States , want Iran to permanently give up uranium enrichment , which can be used to fuel nuclear weapons . NNP , NNP CC NNP , VBN IN DT NNP NNPS , VBP NNP TO RB VB RP NN NN , WDT MD VB VBN TO VB JJ NNS . European officials have offered economic incentives in exchange for abandoning enrichment , but Tehran has resisted , saying its enrichment activities are for peaceful purposes . JJ NNS VBP VBN JJ NNS IN NN IN VBG NN , CC NNP VBZ VBN , VBG PRP$ NN NNS VBP IN JJ NNS . Iran agreed in November to stop enriching uranium , but has insisted the move is temporary . NNP VBD IN NNP TO VB VBG NN , CC VBZ VBN DT NN VBZ JJ . Kuwait has found the deadly H5N1 variety of avian flu in one of two infected birds culled by authorities . NNP VBZ VBN DT JJ NNP NN IN JJ NN IN CD IN CD JJ NNS VBN IN NNS . The strain was found in a migrating flamingo , while a second , imported bird had the milder H5N2 variant . DT NN VBD VBN IN DT NN NN , IN DT NN , VBN NN VBD DT JJR NNP NN . Meanwhile , Vietnam said Friday , it will set up a medical facility for Cambodian bird flu patients near the border between the two countries in an effort to contain the spread of the virus . RB , NNP VBD NNP , PRP MD VB RP DT JJ NN IN JJ NN NN NNS IN DT NN IN DT CD NNS IN DT NN TO VB DT NN IN DT NN . Health officials said the small ward will be built at a hospital in Kien Luong district , 30 kilometers from the border , so Cambodian patients do not have to travel more deeply into Vietnam for treatment . NNP NNS VBD DT JJ NN MD VB VBN IN DT NN IN NNP NNP NN , CD NNS IN DT NN , RB JJ NNS VBP RB VB TO VB RBR RB IN NNP IN NN . And on Thursday , China reported another outbreak of bird flu in a flock of chickens in northeastern Liaoning province - the country 's seventh outbreak in a month . CC IN NNP , NNP VBD DT NN IN NN NN IN DT NN IN NNS IN JJ VBG NN IN DT NN POS JJ NN IN DT NN . A new film premiering this week in South Korea dramatizes the suffering faced by tens of thousands of North Koreans who flee their country 's poverty and repression . DT JJ NN VBG DT NN IN NNP NNP VBZ DT NN VBN IN NNS IN NNS IN NNP NNS WP VBP PRP$ NN POS NN CC NN . North Korean rights activists say the film 's emotional power may draw global attention to the issue . JJ JJ NNS NNS VBP DT NN POS JJ NN MD VB JJ NN TO DT NN . VOA 's Kurt Achin has a preview . NNP POS NNP NNP VBZ DT NN . Iran 's influential former president , Akbar Hashemi Rafsanjani , has praised the late Pope John Paul II as a man of peace and offered his condolences to the world 's Christians on the loss of the Roman Catholic leader . NNP POS JJ JJ NN , NNP NNP NNP , VBZ VBN DT JJ NNP NNP NNP NNP IN DT NN IN NN CC VBD PRP$ NNS TO DT NN POS NNS IN DT NN IN DT NNP NNP NN . Speaking to Muslims at Friday prayers in Tehran , Mr. Rafsanjani praised the pope for opposing the U.S.-led invasion of Iraq and his condemnation of the abuse of prisoners at Abu Ghraib jail by some U.S. soldiers . VBG TO NNS IN NNP NNS IN NNP , NNP NNP VBD DT NN IN VBG DT JJ NN IN NNP CC PRP$ NN IN DT NN IN NNS IN NNP NNP NN IN DT NNP NNS . Mr. Rafsanjani , who has hinted at a comeback in June 's presidential election , asked how the Vatican could be indifferent to U.S. policies , which he said dishonor Jesus Christ . NNP NNP , WP VBZ VBN IN DT NN IN NNP POS JJ NN , VBD WRB DT NNP MD VB JJ TO NNP NNS , WDT PRP VBD NN NNP NNP . Iran 's president , Mohammad Khatami , represented the Islamic Republic at the pontiff 's funeral Friday in Rome . NNP POS NN , NNP NNP , VBD DT NNP NNP IN DT NN POS JJ NNP IN NNP . Sri Lankan officials say at least four people have been killed in clashes since unidentified gunmen killed a Tamil legislator Sunday . NNP NNP NNS VBP IN JJS CD NNS VBP VBN VBN IN NNS IN JJ NNS VBD DT NNP NN NNP . Officials say soldiers shot and killed two suspected Tamil Tiger rebels during a search operation in the city of Batticaloa early Monday . NNS VBP NNS VBN CC VBN CD JJ NNP NNP NNS IN DT NN NN IN DT NN IN NNP JJ NNP . And two civilians were killed overnight in the neighboring Trincomalee district . CC CD NNS VBD VBN RB IN DT JJ NNP NN . Meanwhile , preparations are underway for the funeral of Tamil legislator Joseph Pararajasingham , a key figure in the Tamil National Alliance party . RB , NNS VBP JJ IN DT NN IN NNP NN NNP NNP , DT JJ NN IN DT NNP NNP NNP NN . He was shot dead while attending Christmas Mass in Batticaloa . PRP VBD VBN JJ IN VBG NNP NNP IN NNP . The violence is the latest in a series of deadly attacks since rebel leader Velupillai Prabhakaran threatened to resume his struggle for an independent Tamil homeland if the government fails to reach a peace settlement within the next year . DT NN VBZ DT JJS IN DT NN IN JJ NNS IN JJ NN NNP NNP VBD TO VB PRP$ NN IN DT JJ NN NN IN DT NN VBZ TO VB DT NN NN IN DT JJ NN . Iranian opposition leader Mir Hossein Mousavi has accused Iran 's government of persecuting opponents in the name of Islam . JJ NN NN NNP NNP NNP VBZ VBN NNP POS NN IN VBG NNS IN DT NN IN NNP . In comments published on his website late Sunday , Mousavi said Islam does not beat anyone , arrest people or keep them in prison . IN NNS VBN IN PRP$ NN JJ NNP , NNP VBD NNP VBZ RB VB DT , NN NNS CC VB PRP IN NN . He also rejected accusations by Iranian conservatives that the opposition is linked to external forces , saying such allegations do not benefit the country . PRP RB VBD NNS IN JJ NNS IN DT NN VBZ VBN TO JJ NNS , VBG JJ NNS VBP RB VB DT NN . Iran 's opposition accuses conservative President Mahmoud Ahmadinejad of rigging a presidential election last June to give himself a second term . NNP POS NN VBZ JJ NNP NNP NNP IN VBG DT JJ NN JJ NNP TO VB PRP DT JJ NN . The opposition claims Mousavi was the rightful winner . DT NN VBZ NNP VBD DT JJ NN . Mousavi 's website also quotes him as criticizing the government 's post-election crackdown on independent media . NNP POS NN RB VBZ PRP IN VBG DT NN POS JJ NN IN JJ NNS . He urged supporters of his Green Movement to keep raising awareness about their campaign for basic rights through social networking tools on the Internet . PRP VBD NNS IN PRP$ NN NN TO VB VBG NN IN PRP$ NN IN JJ NNS IN JJ NN NNS IN DT NN . Sudan 's government and southern rebels have signed a peace deal formally ending Africa 's longest-running war . NNP POS NN CC JJ NNS VBP VBN DT NN NN RB VBG NNP POS JJ NN . Sudanese Vice President Al Osman Mohammad Taha and rebel leader John Garang pledged to end more than 21 years of fighting during a ceremony Sunday in Nairobi , Kenya . JJ NNP NNP NNP NNP NNP NNP CC JJ NN NNP NNP VBD TO VB JJR IN CD NNS IN VBG IN DT NN NNP IN NNP , NNP . The ceremony included U.S. Secretary of State Colin Powell who urged Sudan 's government to advance peace in a separate conflict in the western Darfur region . DT NN VBD NNP NNP IN NNP NNP NNP WP VBD NNP POS NN TO VB NN IN DT JJ NN IN DT JJ NNP NN . Mr. Powell said Sudan 's future and its relationship with the United States rely on achieving peace throughout the entire nation . NNP NNP VBD NNP POS NN CC PRP$ NN IN DT NNP NNPS VBP IN VBG NN IN DT JJ NN . Today 's peace deal includes terms for sharing power and oil resources , and calls on rebels and ruling party officials to form an interim coalition government , followed in six years by a southern vote on independence . NN POS NN NN VBZ NNS IN NN NN CC NN NNS , CC VBZ IN NNS CC VBG NN NNS TO VB DT JJ NN NN , VBD IN CD NNS IN DT JJ NN IN NN . An estimated two million people have died during the war between the Arab-controlled government and mostly black southern rebels , mainly of famine and disease . DT VBN CD CD NNS VBP VBN IN DT NN IN DT JJ NN CC RB JJ JJ NNS , RB IN NN CC NN . Iraqi officials say President Jalal Talabani is to travel to Tehran Monday to meet with Iranian President Mahmoud Ahmadinejad . JJ NNS VBP NNP NNP NNP VBZ TO VB TO NNP NNP TO VB IN JJ NNP NNP NNP . The talks are expected to focus on the deteriorating security situation in Iraq and how Iran can help stem sectarian violence . DT NNS VBP VBN TO VB IN DT JJ NN NN IN NNP CC WRB NNP MD VB VB JJ NN . Iran is said to have influence with Shi'ite factions and militias in Iraq . NNP VBZ VBN TO VB NN IN NNP NNS CC NNS IN NNP . The New York Times newspaper says a bi-partisan panel studying U.S. strategic options in Iraq is expected to urge the Bush administration to undertake aggressive regional diplomacy , including direct talks with Iran and Syria . DT NNP NNP NNP NN VBZ DT JJ NN VBG NNP JJ NNS IN NNP VBZ VBN TO VB DT NNP NN TO VB JJ JJ NN , VBG JJ NNS IN NNP CC NNP . The Times quoted officials familiar with the plan as saying the panel will not recommend a specific timetable for a military withdrawal . DT NNP VBD NNS JJ IN DT NN IN VBG DT NN MD RB VB DT JJ NN IN DT JJ NN . Iraq 's Prime Minister Nouri al-Maliki urged rival factions of his government to unite to prevent more sectarian violence , which killed a number of Iraqi across the country Sunday . NNP POS NNP NNP NNP NNP VBD JJ NNS IN PRP$ NN TO VB TO VB RBR JJ NN , WDT VBD DT NN IN NNS IN DT NN NNP . Mr. Maliki said public disputes among Iraq 's politicians are fueling the bloodshed . NNP NNP VBD JJ NNS IN NNP POS NNS VBP VBG DT NN . Israeli Education Minister Yuli Tamir has ordered that new textbooks no longer show the occupied West Bank as part of Israel . JJ NNP NNP NNP NNP VBZ VBN IN JJ NNS RB RB VB DT JJ NNP NNP IN NN IN NNP . Tamir , a member of the Peace Now group that opposes West Bank settlement , said Tuesday the textbooks must show the Green Line that divides Israel from the West Bank . NNP , DT NN IN DT NNP NNP NN WDT VBZ NNP NNP NN , VBD NNP DT NNS MD VB DT NNP NNP IN VBZ NNP IN DT NNP NNP . Israel seized the territory in the 1967 Six-Day War . NNP VBD DT NN IN DT CD NNP NNP . About 2,00,000 Jews live in West Bank settlements , among more than two million Palestinians . IN CD NNPS VBP IN NNP NNP NNS , IN JJR IN CD CD NNS . Israel occupies the area but has not annexed it . NNP VBZ DT NN CC VBZ RB VBN PRP . Many settlers want the enclaves to be incorporated into the Jewish state . JJ NNS VBP DT NNS TO VB VBN IN DT JJ NN . The Palestinians hope to establish an independent state in the West Bank and Gaza Strip . DT NNS VBP TO VB DT JJ NN IN DT NNP NNP CC NNP NNP . Pro-settlement Jewish activists are criticizing the education minister . NNP NNP NNS VBP VBG DT NN NN . A member of parliament from Prime Minister Ehud Olmert 's Kadima party , Ronit Tirosh , said the minister has no right to make the decision . DT NN IN NN IN NNP NNP NNP NNP POS NNP NN , NNP NNP , VBD DT NN VBZ DT NN TO VB DT NN . Colombia has signed a free trade agreement with the four countries that make up the European Free Trade Association , EFTA . NNP VBZ VBN DT JJ NN NN IN DT CD NNS WDT VBP RP DT JJ NNP NNP NNP , NNP . A statement from the association says the Colombian trade minister , Luis Guillermo Plata , and his partners from Switzerland , Liechtenstein , Iceland and Norway signed the agreement Tuesday in Geneva . DT NN IN DT NN VBZ DT JJ NN NN , NNP NNP NNP , CC PRP$ NNS IN NNP , NNP , NNP CC NNP VBD DT NN NNP IN NNP . Officials say the agreement covers Colombia 's industrial and agricultural exports . NNS VBP DT NN VBZ NNP POS JJ CC JJ NNS . EFTA ministers said they are confident the new trade opportunities with Colombia will contribute to economic growth and development among the participating countries . NNP NNS VBD PRP VBP JJ DT JJ NN NNS IN NNP MD VB TO JJ NN CC NN IN DT VBG NNS . EFTA was founded in 1960 and has 17 ongoing free trade treaties with countries ranging from Canada to Egypt . NNP VBD VBN IN CD CC VBZ CD JJ JJ NN NNS IN NNS VBG IN NNP TO NNP . A Vatican spokesman says Pope John Paul II tried to express his thanks when he was told about the crowd of thousands of young people gathered in St. Peter 's Square offering their prayers and support for him . DT NNP NN VBZ NNP NNP NNP NNP VBD TO VB PRP$ NNS WRB PRP VBD VBN IN DT NN IN NNS IN JJ NNS VBN IN NNP NNP POS NNP VBG PRP$ NNS CC NN IN PRP . The spokesman says the pope apparently was thinking of the countless young Catholics he met during his many trips abroad - to 129 countries and foreign territories - when he tried to speak to the priests attending him late Friday . DT NN VBZ DT NN RB VBD VBG IN DT JJ JJ NNPS PRP VBD IN PRP$ JJ NNS RB : TO CD NNS CC JJ NNS : WRB PRP VBD TO VB TO DT NNS VBG PRP JJ NNP . The pope 's spokesman , Joaquin Navarro-Valls , told reporters that John Paul II ' seemed to have said the following sentence : ' I have looked for you . DT NN POS NN , NNP NNP , VBD NNS IN NNP NNP NNP `` VBD TO VB VBN DT JJ NN IN `` PRP VBP VBN IN PRP . Now you have come to me . RB PRP VBP VBN TO PRP . And I thank you . ' CC PRP VBP PRP . `` Asked for further details , Mr. Navarro-Valls said those words were ' reconstructed ' or pieced together from several attempts the pope made to speak late Friday . VBN IN JJ NNS , NNP NNP VBD DT NNS VBD `` VBN `` CC VBN RB IN JJ NNS DT NN VBD TO VB JJ NNP . Leaders from Africa and Germany are meeting in Berlin for a conference aimed at promoting sustainable development and economic growth in Africa . NNS IN NNP CC NNP VBP VBG IN NNP IN DT NN VBN IN VBG JJ NN CC JJ NN IN NNP . Liberian President Ellen Johnson Sirleaf and Danish Prime Minister Anders Fogh Rasmussen are joining German Chancellor Angela Merkel in opening the conference . JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBP VBG JJ NNP NNP NNP IN VBG DT NN . The German government says the two-day meeting of the African Partnership Forum will serve to prepare recommendations for summits of the Group of Eight and the African Union . DT JJ NN VBZ DT JJ NN IN DT NNP NNP NNP MD VB TO VB NNS IN NNS IN DT NNP IN CD CC DT NNP NNP . G8 leaders are scheduled to meet in northern Germany on June 6 . NNP NNS VBP VBN TO VB IN JJ NNP IN NNP CD . The Africa Partnership Initiative was established by the G8 in 2003 as a way to encourage dialogue between African nations and the world 's wealthiest countries . DT NNP NNP NNP VBD VBN IN DT NNP IN CD IN DT NN TO VB NN IN JJ NNS CC DT NN POS JJS NNS . Germany currently holds the rotating European Union and G8 presidencies . NNP RB VBZ DT VBG NNP NNP CC NNP NNS . The Swedish government continues to face criticism for a slow response to Asia 's tsunami disaster . DT JJ NN VBZ TO VB NN IN DT JJ NN TO NNP POS NN NN . Local media have been very critical of the government of Prime Minister Goran Persson , noting that his Foreign Minister Laila Freivalds did not go to her office for more than a day after the tsunami was first reported . JJ NNS VBP VBN RB JJ IN DT NN IN NNP NNP NNP NNP , VBG IN PRP$ NNP NNP NNP NNP VBD RB VB TO PRP$ NN IN JJR IN DT NN IN DT NN VBD RB VBN . Newspapers say hundreds of angry citizens have written letters and e-mails condemning the government 's response to the tragedy . NNS VBP NNS IN JJ NNS VBP VBN NNS CC NNS VBG DT NN POS NN TO DT NN . Sweden has been the hardest-hit Western nation , with more than 3,500 of its citizens unaccounted for and at least 59 known dead . NNP VBZ VBN DT JJ JJ NN , IN JJR IN CD IN PRP$ NNS JJ IN CC IN JJS CD VBN NN . The prime minister has ordered an investigation , but has said that Ms. Freivalds is safe in her job . DT JJ NN VBZ VBN DT NN , CC VBZ VBN IN NNP NNP VBZ JJ IN PRP$ NN . Mr. Persson does not face re-election until September 2006 . NNP NNP VBZ RB VB NN IN NNP CD . Meanwhile , flags flew at half-staff Sunday as Sweden , Finland and Norway marked an official day of mourning . RB , NNS VBD IN NN NNP IN NNP , NNP CC NNP VBD DT JJ NN IN NN . A flurry of new reports give a mixed assessment of the US economy Thursday . DT NN IN JJ NNS VBP DT JJ NN IN DT NNP NN NNP . The job market looks better , with the Labor Department reporting the biggest drop since 2001 in requests for first-time unemployment compensation . DT NN NN VBZ RBR , IN DT NNP NNP VBG DT JJS NN IN CD IN NNS IN JJ NN NN . Its report shows the number of such initial claims falling 43,000 to 3,17,000 last week . PRP$ NN VBZ DT NN IN JJ JJ NNS VBG CD TO CD JJ NN . But that news was tempered by other reports . CC DT NN VBD VBN IN JJ NNS . The Commerce Department says the deficit in U.S. foreign trade and investment , called the current account , hit a record $ 165 billion between July and September . DT NNP NNP VBZ DT NN IN NNP JJ NN CC NN , VBD DT JJ NN , VBD DT NN $ CD CD IN NNP CC NNP . Many economists had predicted the gap between what Americans buy abroad and what they sell would be even worse . JJ NNS VBD VBN DT NN IN WP NNS VBP RB CC WP PRP VBP MD VB RB JJR . Commerce also reported the number of new houses started in November dropped 13 percent , the sharpest decline in almost 11 years . NNP RB VBD DT NN IN JJ NNS VBD IN NNP VBD CD NN , DT JJS NN IN RB CD NNS . Indonesian health officials say local tests have confirmed a man has tested positive for the H5N1 strain of bird flu virus . JJ NN NNS VBP JJ NNS VBP VBN DT NN VBZ VBN JJ IN DT NNP NN IN NN NN NN . Authorities say the man , in his 20s , is in stable condition at a hospital in West Sumatra province . NNS VBP DT NN , IN PRP$ NNS , VBZ IN JJ NN IN DT NN IN NNP NNP NN . Friday , the World Health Organization confirmed that a one-year-old girl had become the 23rd person in Indonesia to die of the H5N1 strain of bird flu . NNP , DT NNP NNP NNP VBD IN DT JJ NN VBD VBN DT JJ NN IN NNP TO VB IN DT NNP NN IN NN NN . Also Friday , representatives from the Pan American Health Organization , the Inter-American Institute for Cooperation in Agriculture and the Organization of American States met in Washington to discuss ways to head off a possible bird flu epidemic . RB NNP , NNS IN DT NNP NNP NNP NNP , DT NNP NNP IN NNP IN NNP CC DT NNP IN NNP NNPS VBD IN NNP TO VB NNS TO VB RP DT JJ NN NN NN . About 25 centers throughout the region already monitor outbreaks of influenza . IN CD NNS IN DT NN RB VB NNS IN NN . With the world sending much of its financial and technical aid to other geographic areas , the officials say it is important for the region to pool its resources . IN DT NN VBG NN IN PRP$ JJ CC JJ NN TO JJ JJ NNS , DT NNS VBP PRP VBZ JJ IN DT NN TO NN PRP$ NNS . The United States has reopened its embassy in the Saudi capital , Riyadh , but its consulate in Jeddah remains closed , two days after it was stormed by militants linked to al-Qaida . DT NNP NNPS VBZ VBN PRP$ NN IN DT JJ NN , NNP , CC PRP$ NN IN NNP VBZ JJ , CD NNS IN PRP VBD VBN IN NNS VBN TO NNP . An embassy spokeswoman says U.S. officials Wednesday ended the emergency closure of the embassy as well as a consular office in the eastern port of Dhahran . DT JJ NN VBZ NNP NNS NNP VBD DT NN NN IN DT NN RB RB IN DT JJ NN IN DT JJ NN IN NNP . The missions were closed after Monday 's attack that killed five non-American staff and four of the five gunmen . DT NNS VBD VBN IN NNP POS NN WDT VBD CD JJ NN CC CD IN DT CD NNS . U.S. officials say they are bolstering security at all U.S. missions in Saudi Arabia in the wake of the attack . NNP NNS VBP PRP VBP VBG NN IN DT NNP NNS IN NNP NNP IN DT NN IN DT NN . Tuesday , the U.S. State Department re-issued a travel warning for Saudi Arabia , saying private American citizens should leave the country or cancel plans to travel there . NNP , DT NNP NNP NNP VBD DT NN NN IN NNP NNP , VBG JJ JJ NNS MD VB DT NN CC VB NNS TO VB RB . The U.S. Marine Corps has ordered two Marines not to speak to the media about their accusations of prisoner abuse at the Guantanamo Bay detention center . DT NNP NNP NNP VBZ VBN CD NNS RB TO VB TO DT NNS IN PRP$ NNS IN NN NN IN DT NNP NNP NN NN . Both Marines are part of a military legal team defending a detainee at Guantanamo Bay . DT NNS VBP NN IN DT JJ JJ NN VBG DT NN IN NNP NNP . Marine officials say the gag order was issued to ensure the legal team 's actions conform to professional standards . NN NNS VBP DT NN NN VBD VBN TO VB DT JJ NN POS NNS VBP TO JJ NNS . Last week Lieutenant Colonel Colby Vokey and Sergeant Heather Cerveny released a report which included a sworn statement from Cerveny alleging she heard guards describing the physical and mental abuse of prisoners . JJ NN NNP NNP NNP NNP CC NNP NNP NNP VBD DT NN WDT VBD DT JJ NN IN NNP VBG PRP VBD NNS VBG DT JJ CC JJ NN IN NNS . The Defense Department is investigating the accusations . DT NNP NNP VBZ VBG DT NNS . The United States has been widely criticized for creating and maintaining the Guantanamo Bay prison , where suspects from the wars in Afghanistan and Iraq are held for questioning . DT NNP NNPS VBZ VBN RB VBN IN VBG CC VBG DT NNP NNP NN , WRB NNS IN DT NNS IN NNP CC NNP VBP VBN IN VBG . The McDonald 's Corporation will have to answer a lawsuit filed by four New York teenagers who allege the company hid the health risks of hamburgers and Chicken McNuggets . DT NN POS NN MD VB TO VB DT NN VBN IN CD NNP NNP NNS WP VBP DT NN VBD DT NN NNS IN NNS CC NNP NNPS . The suit blames McDonald 's for the teenagers ' obesity and health problems , and it asks billions of dollars in damages . DT NN VBZ NNP POS IN DT NNS POS NN CC NN NNS , CC PRP VBZ NNS IN NNS IN NNS . McDonald 's is the world 's largest fast-food chain , and company officials have called the lawsuit ' frivolous . ' NNP POS VBZ DT NN POS JJS NN NN , CC NN NNS VBP VBN DT NN `` JJ . `` A district judge originally dismissed the suit , but an appeals court late Tuesday allowed the case to move forward and cleared the way for the teens to demand that McDonald 's turn over documents . DT NN NN RB VBD DT NN , CC DT NNS NN RB NNP VBD DT NN TO VB RB CC VBD DT NN IN DT NNS TO VB DT NN POS NN IN NNS . The case was originally filed in 2002 , and is the first obesity-related lawsuit against a food company to reach a judge . DT NN VBD RB VBN IN CD , CC VBZ DT JJ JJ NN IN DT NN NN TO VB DT NN . Japanese Foreign Minister Taro Aso says Tokyo is planning to host a meeting with Israeli , Palestinian and Jordanian officials next month to help peace efforts in the Middle East . JJ NNP NNP NNP NNP VBZ NNP VBZ VBG TO VB DT NN IN JJ , JJ CC JJ NNS JJ NN TO VB NN NNS IN DT NNP NNP . Speaking Tuesday in Tokyo , Aso said plans have not been finalized , but Japan hopes the meeting will happen in mid-March . VBG NNP IN NNP , NNP VBD NNS VBP RB VBN VBN , CC NNP VBZ DT NN MD VB IN NN . He said the meeting would be a follow-up to a proposal by former Prime Minister Junichiro Koizumi during a visit to the Middle East last July . PRP VBD DT NN MD VB DT NN TO DT NN IN JJ NNP NNP NNP NNP IN DT NN TO DT NNP NNP JJ NNP . The proposal included Japanese economic assistance for development projects on the West Bank . DT NN VBD JJ JJ NN IN NN NNS IN DT NNP NNP . Mr. Koizumi 's trip to the Middle East was the first by a Japanese leader in a decade . NNP NNP POS NN TO DT NNP NNP VBD DT JJ IN DT JJ NN IN DT NN . Japan 's current leader , Prime Minister Shinzo Abe , has not announced any official plans to visit the region . NNP POS JJ NN , NNP NNP NNP NNP , VBZ RB VBN DT JJ NNS TO VB DT NN . The U.S. Food And Drug Administration ( FDA ) is searching for the cause of a salmonella outbreak that it has traced to raw tomatoes . DT NNP NNP CC NNP NNP LRB NNP RRB VBZ VBG IN DT NN IN DT NN NN IN PRP VBZ VBN TO JJ NNS . More than 165 people across the U.S. have become ill with salmonella poisoning since April . JJR IN CD NNS IN DT NNP VBP VBN JJ IN NN NN IN NNP . On June 7 , the FDA issued an advisory , warning consumers not to eat several common types of tomatoes . IN NNP CD , DT NNP VBD DT NN , VBG NNS RB TO VB JJ JJ NNS IN NNS . VOA Producer Barry Unger has more in a report voiced by Tony Budny . NNP NNP NNP NNP VBZ RBR IN DT NN VBN IN NNP NNP . More than 2,500 Sri Lankan Marxists have marched in Colombo to press the government to cancel planned peace talks with Tamil rebels and to punish them instead for a rash of killings blamed on the rebels . JJR IN CD NNP NNP NNPS VBP VBN IN NNP TO VB DT NN TO VB JJ NN NNS IN NNP NNS CC TO VB PRP RB IN DT NN IN NNS VBN IN DT NNS . The People 's Liberation Front , which left the coalition government over plans to share tsunami aid with the rebels , said it is time to get tough with the Tigers . DT NNS POS NNP NNP , WDT VBD DT NN NN IN NNS TO VB NN NN IN DT NNS , VBD PRP VBZ NN TO VB JJ IN DT NNP . The protesters carried a picture of slain Foreign Minister Lakshman Kadirgamar , an ethnic Tamil who helped outlaw the Tamil Tigers in the United States and Britain . DT NNS VBD DT NN IN NN NNP NNP NNP NNP , DT JJ NN WP VBD VB DT NNP NNPS IN DT NNP NNPS CC NNP . The Sri Lankan government has blamed the group for his assassination , a charge denied by the Tamil Tigers . DT NNP NNP NN VBZ VBN DT NN IN PRP$ NN , DT NN VBN IN DT NNP NNP . Norwegian mediators are arranging emergency talks between the government and the rebels to find ways to save a more than three-year-old cease-fire . JJ NNS VBP VBG NN NNS IN DT NN CC DT NNS TO VB NNS TO VB DT JJR IN JJ NN . British Foreign Secretary David Miliband is in Pakistan for talks with government leaders . JJ NNP NNP NNP NNP VBZ IN NNP IN NNS IN NN NNS . Officials say Miliband traveled Sunday to the northwestern city of Peshawar , capital of the volatile North West Frontier Province . NNS VBP NNP VBD NNP IN DT JJ NN IN NNP , NN IN DT JJ NNP NNP NNP NNP . The British official is expected to meet with the provincial governor and other local officials to discuss security issues and ongoing cooperation . DT JJ NN VBZ VBN TO VB IN DT JJ NN CC JJ JJ NNS TO VB NN NNS CC JJ NN . Earlier this month , British Interior Minister Jacqui Smith said Britain is ready to increase its assistance to Pakistan to combat militancy . RBR DT NN , JJ NNP NNP NNP NNP VBD NNP VBZ JJ TO VB PRP$ NN TO NNP TO VB NN . Pakistan is a key Western ally and has helped the United States and Britain thwart terrorist attacks . NNP VBZ DT JJ JJ NN CC VBZ VBN DT NNP NNPS CC NNP VB JJ NNS . Pakistani officials say pro-Taleban militants have beheaded a taxi driver in a northwestern tribal region after accusing him of being a U.S. informant . JJ NNS VBP JJ NNS VBP VBN DT NN NN IN DT JJ JJ NN IN VBG PRP IN VBG DT NNP NN . The officials say the taxi driver 's headless body was found Tuesday in South Waziristan . DT NNS VBP DT NN NN POS JJ NN VBD VBN NNP IN NNP NNP . He had been missing since last week . PRP VBD VBN VBG IN JJ NN . Militants accused the man of working with U.S. forces across the border in Afghanistan . NNS VBD DT NN IN VBG IN NNP NNS IN DT NN IN NNP . He was the second taxi driver to be killed in the Pakistani tribal region this month in similar circumstances . PRP VBD DT JJ NN NN TO VB VBN IN DT JJ JJ NN DT NN IN JJ NNS . Pro-Taleban militants have been blamed for killing scores of local tribesmen accused of helping Pakistani or U.S. forces . JJ NNS VBP VBN VBN IN VBG NNS IN JJ NNS VBN IN VBG JJ CC NNP NNS . Pakistan has deployed 80,000 troops along its border with Afghanistan to root out foreign militants and their local allies . NNP VBZ VBN CD NNS IN PRP$ NN IN NNP TO VB RP JJ NNS CC PRP$ JJ NNS . Red Cross officials in Pakistan say a helicopter with a crew of seven returning home to Turkmenistan after assisting with earthquake relief is missing . NNP NNP NNS IN NNP VBP DT NN IN DT NN IN CD VBG NN TO NNP IN VBG IN NN NN VBZ VBG . A relief agency official said Sunday the air control tower lost contact with the aircraft Friday as it crossed into Afghan airspace not long after taking off from Peshawar , Pakistan . DT NN NN NN VBD NNP DT NN NN NN VBD NN IN DT NN NNP IN PRP VBD IN JJ NN RB RB IN VBG RP IN NNP , NNP . The Soviet-era Mi-8 helicopter from Turkmenistan had been chartered by the Red Cross for the earthquake relief effort in Pakistan for the past three months and was returning home after completing its mission . DT NNP NNP NN IN NNP VBD VBN VBN IN DT NNP NNP IN DT NN NN NN IN NNP IN DT JJ CD NNS CC VBD VBG NN IN VBG PRP$ NN . The official says a search operation is under way to locate the helicopter and crew . DT NN VBZ DT NN NN VBZ IN NN TO VB DT NN CC NN . Dozens of angry Muslims in Pakistan 's southern city of Karachi protested Friday against the release of an anti-Islamic film by a Dutch lawmaker . NNS IN JJ NNS IN NNP POS JJ NN IN NNP VBD NNP IN DT NN IN DT JJ NN IN DT JJ NN . Members of the hard-line Islamist party Jamaat-i-Islami organized the protest , chanting ' Death to the filmmaker ' and demanding that Pakistan 's government sever diplomatic ties with The Netherlands . NNS IN DT JJ NNP NN NNP VBD DT NN , VBG `` NN TO DT NN `` CC VBG IN NNP POS NN VB JJ NNS IN DT NNP . The film , called Fitna , was made by Dutch lawmaker Geert Wilders and contains images of terrorist attacks and quotations from the Koran . DT NN , VBD NNP , VBD VBN IN JJ NN NNP NNP CC VBZ NNS IN JJ NNS CC NNS IN DT NNP . The Pakistani government Friday lodged a strong protest with the Netherlands , summoning the Dutch ambassador to Pakistan to condemn what it called the ' defamatory ' film . DT JJ NN NNP VBD DT JJ NN IN DT NNP , VBG DT JJ NN TO NNP TO VB WP PRP VBD DT `` JJ `` NN . Protests have erupted in Pakistan and Afghanistan in recent weeks in anticipation of the film 's release and after the reprinting of cartoons of the Prophet Muhammad in Danish newspapers . NNS VBP VBN IN NNP CC NNP IN JJ NNS IN NN IN DT NN POS NN CC IN DT NN IN NNS IN DT NNP NNP IN JJ NNS . NATO peacekeepers in Afghanistan say three Italian troops have been slightly wounded in a suicide car-bombing attack in the western city of Herat . NNP NNS IN NNP VBP CD JJ NNS VBP VBN RB VBN IN DT NN JJ NN IN DT JJ NN IN NNP . A spokesman for the NATO-led International Security Assistance Force told reporters in Kabul that the attacker was killed in the blast , which occurred Tuesday on the road from Herat airport to the city . DT NN IN DT JJ NNP NNP NNP NNP VBD NNS IN NNP IN DT NN VBD VBN IN DT NN , WDT VBD NNP IN DT NN IN NNP NN TO DT NN . The spokesman says the Italians were wounded by flying glass from their vehicle , which was damaged by the explosion . DT NN VBZ DT NNS VBD VBN IN VBG NN IN PRP$ NN , WDT VBD VBN IN DT NN . A purported Taleban spokesman , Qari Mohammed Yousuf , says his group carried out the attack - the latest in a spate of suicide bombings and other attacks in Afghanistan claimed by the Taleban . DT JJ NNP NN , NNP NNP NNP , VBZ PRP$ NN VBD IN DT NN IN DT JJS IN DT NN IN NN NNS CC JJ NNS IN NNP VBN IN DT NNP . A former U.S. contractor in Iraq has pleaded guilty to bribery , conspiracy and money laundering involving millions of dollars meant for reconstruction . DT JJ NNP NN IN NNP VBZ VBN JJ TO NN , NN CC NN NN VBG NNS IN NNS VBN IN NN . Robert Stein entered his plea in U.S. District Court in Washington Thursday . NNP NNP VBD PRP$ NN IN NNP NNP NNP IN NNP NNP . Stein worked for the Coalition Provision Authority in Iraq , the temporary U.S.-led government , handing out millions of dollars intended to rebuild the city of Hilla , south of Baghdad . NNP VBD IN DT NNP NNP NNP IN NNP , DT JJ JJ NN , VBG RP NNS IN NNS VBN TO VB DT NN IN NNP , NN IN NNP . Stein admitted he formed a ring of co-conspirators who diverted reconstruction money to such personal use as luxury cars , jewelry and U.S. real estate . NNP VBD PRP VBD DT NN IN NNS WP VBN NN NN TO JJ JJ NN IN NN NNS , NN CC NNP JJ NN . Stein has a prior fraud conviction and it was not immediately clear why he was allowed to control tens of millions of dollars , much of it in cash . NNP VBZ DT JJ NN NN CC PRP VBD RB RB JJ WRB PRP VBD VBN TO VB NNS IN NNS IN NNS , NN IN PRP IN NN . U.S. businessman Philip Bloom and five U.S. servicemen have also been implicated in the scheme . NNP NN NNP NNP CC CD NNP NNS VBP RB VBN VBN IN DT NN . Thai police say a bomb blast in southern Narthiwat province has injured at least 15 people . JJ NNS VBP DT NN NN IN JJ NNP NN VBZ VBN IN JJS CD NNS . The police say they do not yet know whether anyone was killed in the explosion , which occurred Thursday in the town of Sungai Kolok . DT NNS VBP PRP VBP RB RB VB IN DT VBD VBN IN DT NN , WDT VBD NNP IN DT NN IN NNP NNP . It was not immediately clear who was responsible . PRP VBD RB RB JJ WP VBD JJ . But a Muslim separatist group called the Pattani United Liberation Organization had warned of a violent backlash over the deaths of some 84 people during protests Monday in southern Thailand . CC DT NNP NN NN VBD DT NNP NNP NNP NNP VBD VBN IN DT JJ NN IN DT NNS IN DT CD NNS IN NNS NNP IN JJ NNP . Thai Prime Minister Thaksin Shinawatra has promised an investigation into the incident that brought widespread international outrage , particularly in majority Muslim countries Most of the deaths were attributed to suffocation after police packed detained protesters in a truck for transport to a detention center . JJ NN NN NNP NNP VBZ VBN DT NN IN DT NN WDT VBD JJ JJ NN , RB IN NN NN NNS JJS IN DT NNS VBD VBN TO NN IN NNS VBD VBN NNS IN DT NN IN NN TO DT NN NN . Pro-government lawmakers in Venezuela have appointed 17 new judges to the Supreme Court , strengthening the administration of President Hugo Chavez . JJ NNS IN NNP VBP VBN CD JJ NNS TO DT NNP NNP , VBG DT NN IN NNP NNP NNP . In Caracas Monday , legislators from the ruling party pushed the appointments through the 165-seat Congress . IN NNP NNP , NNS IN DT VBG NN VBD DT NNS IN DT JJ NNP . Opposition leaders condemned the appointments as unconstitutional , and then walked out of the session . NN NNS VBD DT NNS IN JJ , CC RB VBD IN IN DT NN . Earlier this year , lawmakers approved measures that expanded the number of Supreme Court justices from 20 to 32 . RBR DT NN , NNS VBD NNS WDT VBD DT NN IN NNP NNP NNS IN CD TO CD . They also changed the rules to allow Congress to appoint judges with a simple majority , and to fire sitting justices . PRP RB VBD DT NNS TO VB NNP TO VB NNS IN DT JJ NN , CC TO VB VBG NNS . Human rights groups have condemned the measures , saying they are a threat to democracy . JJ NNS NNS VBP VBN DT NNS , VBG PRP VBP DT NN TO NN . Among the new justices is Francisco Carrasquero , head of the nation 's electoral council . IN DT JJ NNS VBZ NNP NNP , NN IN DT NN POS JJ NN . Critics accuse him of helping Mr. Chavez defeat a recall in August . NNS VBP PRP IN VBG NNP NNP VB DT NN IN NNP . North and South Korean officials have apparently made little progress toward reaching an agreement on the plight of South Korean prisoners of war and missing civilians South Korean officials believe are alive in the north . NNP CC NNP JJ NNS VBP RB VBN JJ NN IN VBG DT NN IN DT NN IN JJ JJ NNS IN NN CC VBG NNS JJ JJ NNS VBP VBP JJ IN DT NN . Talks hosted by the Red Cross began Tuesday at the Mount Kumgang resort in North Korea . NNS VBN IN DT NNP NNP VBD NNP IN DT NNP NNP NN IN NNP NNP . The Yonhap news agency says that South Korean officials pushed for at least eight annual reunions for family members separated by the Korean War . DT NNP NN NN VBZ IN JJ JJ NNS VBD IN IN JJS CD JJ NNS IN NN NNS VBN IN DT JJ NNP . The report said North Korea instead suggested holding one reunion each June . DT NN VBD NNP NNP RB VBD VBG CD NN DT NNP . Seoul says more than 500 prisoners and hundreds of kidnapped civilians are still alive in the North . NNP VBZ JJR IN CD NNS CC NNS IN VBN NNS VBP RB JJ IN DT NNP . Pyongyang denies holding any war prisoners and says any South Korean citizens in its country defected voluntarily . NNP VBZ VBG DT NN NNS CC VBZ DT JJ JJ NNS IN PRP$ NN VBD RB . On a separate issue , South Korea agreed to donate 1,50,000 tons of fertilizer to the impoverished North . IN DT JJ NN , NNP NNP VBD TO VB CD NNS IN NN TO DT JJ NNP . Two senior officials at the U.S. Central Intelligence Agency have turned in their resignations amid mounting turmoil since the recent appointment of a new director . CD JJ NNS IN DT NNP NNP NNP NNP VBP VBN RP PRP$ NNS IN VBG NN IN DT JJ NN IN DT JJ NN . Deputy Director John McLaughlin announced his retirement from the spy agency Friday after 32 years of service . NNP NNP NNP NNP VBD PRP$ NN IN DT NN NN NNP IN CD NNS IN NN . The Washington Post newspaper quotes unidentified officials as saying he resigned after warning recently-appointed director Porter Goss that one of his top aides , chief of staff Patrick Murray , was ' treating senior officials disrespectfully and risked widespread resignations . ' DT NNP NNP NN VBZ JJ NNS IN VBG PRP VBD IN VBG JJ NN NNP NNP IN CD IN PRP$ JJ NNS , NN IN NN NNP NNP , VBD `` VBG JJ NNS RB CC VBD JJ NNS . `` Deputy Director of Operations Stephen Kappes also tendered his resignation Friday , reportedly after a confrontation with the same aide . NNP NNP IN NNP NNP NNP RB VBD PRP$ NN NNP , RB IN DT NN IN DT JJ NN . The article says after offering his resignation , Mr. Kappes agreed to delay his decision until Monday . DT NN VBZ IN VBG PRP$ NN , NNP NNP VBD TO VB PRP$ NN IN NNP . It also says several other senior CIA officers have threatened to quit . PRP RB VBZ JJ JJ JJ NNP NNS VBP VBN TO VB . The CIA has been sharply criticized for intelligence failures leading up to the 2001 September 11 terrorist attacks and the Iraq war . DT NNP VBZ VBN RB VBN IN NN NNS VBG RP TO DT CD NNP CD JJ NNS CC DT NNP NN . Japanese Prime Minister Junichiro Koizumi has met with Peruvian President Alejandro Toledo on the sidelines of the Asia-Pacific Economic Cooperation summit in Busan , South Korea . JJ NNP NNP NNP NNP VBZ VBN IN JJ NNP NNP NNP IN DT NNS IN DT NNP NNP NNP NN IN NNP , NNP NNP . Japanese officials say Mr. Toledo told the Japanese leader that former Peruvian President Alberto Fujimori 's recent return to South America should not affect the two nations ' relationship . JJ NNS VBP NNP NNP VBD DT JJ NN IN JJ JJ NNP NNP NNP POS JJ NN TO NNP NNP MD RB VB DT CD NNS POS NN . Mr. Fujimori , a Japanese citizen , fled to Japan five years ago in the midst of a corruption scandal . NNP NNP , DT JJ NN , VBD TO NNP CD NNS RB IN DT NN IN DT NN NN . He was arrested last week in Chile . PRP VBD VBN JJ NN IN NNP . If returned to Peru , he faces charges of corruption and of authorizing death squads . IN VBN TO NNP , PRP VBZ NNS IN NN CC IN VBG NN NNS . Last week , Peru recalled its ambassador to Japan after a Japanese consular official visited Mr. Fujimori in jail . JJ NN , NNP VBD PRP$ NN TO NNP IN DT JJ JJ NN VBD NNP NNP IN NN . Lima says Tokyo is interfering in his extradition process , but Tokyo insists it is treating him like any other Japanese citizen . NNP VBZ NNP VBZ VBG IN PRP$ NN NN , CC NNP VBZ PRP VBZ VBG PRP IN DT JJ JJ NN . U.S. presidential candidates Hillary Clinton and John McCain have received endorsements by a newspaper in Iowa , where the first step in the election process takes place next month . NNP JJ NNS NNP NNP CC NNP NNP VBP VBN NNS IN DT NN IN NNP , WRB DT JJ NN IN DT NN NN VBZ NN JJ NN . The Des Moines Register endorsed Senator Clinton for the Democratic Party nomination and Senator McCain for the Republican Party , saying they are the most competent and ready to lead of the 2008 presidential hopefuls . DT NNP NNP NNP VBD NNP NNP IN DT JJ NNP NN CC NNP NNP IN DT NNP NNP , VBG PRP VBP DT RBS JJ CC JJ TO VB IN DT CD JJ NNS . Meanwhile , the Boston Globe newspaper endorsed Democratic Senator Barack Obama , saying he fulfills America 's need for a president with an intuitive sense of the wider world . RB , DT NNP NNP NN VBD JJ NNP NNP NNP , VBG PRP VBZ NNP POS NN IN DT NN IN DT JJ NN IN DT JJR NN . The newspaper also endorsed Senator McCain , calling him a straight talker who could help a polarized nation . DT NN RB VBD NNP NNP , VBG PRP DT JJ NN WP MD VB DT JJ NN . Iowa holds presidential caucuses on January 3 in which state voters from each party choose their preferred candidates for the November election . NNP VBZ JJ NNS IN NNP CD IN WDT NN NNS IN DT NN VB PRP$ JJ NNS IN DT NNP NN . The European Union has welcomed Sunday 's publication of Iraq 's draft constitution . DT NNP NNP VBZ VBN NNP POS NN IN NNP POS NN NN . The EU presidency , held currently by British Prime Minister Tony Blair , issued a statement calling the document an ' important milestone ' in Iraq 's political process . DT NNP NN , VBN RB IN JJ NNP NNP NNP NNP , VBD DT NN VBG DT NN DT `` JJ NN `` IN NNP POS JJ NN . The EU statement urged all Iraqis to participate in the ratification vote scheduled for October . DT NNP NN VBD DT NNS TO VB IN DT NN NN VBN IN NNP . It also offered EU help in preparing for that vote and for national elections scheduled for December . PRP RB VBD NNP NN IN VBG IN DT NN CC IN JJ NNS VBN IN NNP . The biggest U.S. bank , Citigroup , lost $ 5.1 billion in the first three months of this year after making bad investments in securities backed by home loans . DT JJS NNP NN , NNP , VBD $ CD CD IN DT JJ CD NNS IN DT NN IN VBG JJ NNS IN NNS VBN IN NN NNS . The losses reported Friday grew as more and more consumers also fell behind on car and credit-card loans . DT NNS VBD NNP VBD IN JJR CC JJR NNS RB VBD RB IN NN CC NN NNS . Citigroup 's managers say they will cut costs sharply , focus on the most fundamental parts of their business , and fire another 9,000 of their 3,70,000 workers . NNP POS NNS VBP PRP MD VB NNS RB , VB IN DT RBS JJ NNS IN PRP$ NN , CC VB DT CD IN PRP$ CD NNS . It is the second major quarterly loss for Citigroup , and it is the latest in a wave of dismal bank earning reports over the past week . PRP VBZ DT JJ JJ JJ NN IN NNP , CC PRP VBZ DT JJS IN DT NN IN JJ NN NN NNS IN DT JJ NN . Merrill Lynch revealed a $ 2 billion loss and 3,000 job cuts on Thursday . NNP NNP VBD DT $ CD CD NN CC CD NN NNS IN NNP . Witnesses and aid groups in Sudan say at least 40 people have been killed in tribal clashes in Darfur . NNS CC NN NNS IN NNP VBP IN JJS CD NNS VBP VBN VBN IN JJ NNS IN NNP . The witnesses said Sunday at least 21 people were wounded in the violence Saturday . DT NNS VBD NNP IN JJS CD NNS VBD VBN IN DT NN NNP . Tribal conflicts are becoming an increasing concern in Darfur , where people are already struggling with fighting between rebels and government forces along with militias backed by Khartoum . NNP NNS VBP VBG DT VBG NN IN NNP , WRB NNS VBP RB VBG IN VBG IN NNS CC NN NNS IN IN NNS VBN IN NNP . The United States has called the fighting genocide against the people of Darfur . DT NNP NNP VBZ VBN DT NN NN IN DT NNS IN NNP . More than 2,00,000 people have been killed in Darfur since 2003 . JJR IN CD NNS VBP VBN VBN IN NNP IN CD . That was when a conflict over land and water resources turned violent after non-Arab rebels accused the Arab-dominated government of neglect . DT VBD WRB DT NN IN NN CC NN NNS VBD JJ IN JJ NNS VBD DT JJ NN IN NN . The government has been accused of arming militias , called Janjaweed , to crush the rebels in a brutal campaign of rape and murder . DT NN VBZ VBN VBN IN VBG NNS , VBD NNP , TO VB DT NNS IN DT JJ NN IN NN CC NN . Some reports say tribal members blamed Saturday 's attack on the Janjaweed . DT NNS VBP NN NNS VBD NNP POS NN IN DT NNP . Hundreds of Saudi riot police have launched a crackdown on would-be protesters in the cities of Riyadh and Jeddah , in a show of force triggered by an exiled dissident 's call for anti-government demonstrations . NNS IN JJ NN NNS VBP VBN DT NN IN JJ NNS IN DT NNS IN NNP CC NNP , IN DT NN IN NN VBN IN DT VBN NN POS NN IN JJ NNS . There are reports of arrests in both cities , but authorities have not yet commented . EX VBP NNS IN NNS IN DT NNS , CC NNS VBP RB RB VBN . Public protests are banned in the kingdom . JJ NNS VBP VBN IN DT NN . About an hour after the protests were set to begin Thursday , Western news reports say the demonstrations failed to materialize in either city . IN DT NN IN DT NNS VBD VBN TO VB NNP , JJ NN NNS VBP DT NNS VBD TO VB IN DT NN . Earlier this week , London-based dissident Saad al-Fagih , who heads the Movement for Islamic Reform , called for tens of thousands of Saudis to protest after noon prayers Thursday against the Saudi monarchy . RBR DT NN , JJ NN NNP NNP , WP VBZ DT NN IN NNP NNP , VBD IN NNS IN NNS IN NNS TO VB IN NN NNS NNP IN DT JJ NN . Last year , he accused Saudi agents of attempting to kill him in a stabbing incident at his London home . JJ NN , PRP VBD JJ NNS IN VBG TO VB PRP IN DT VBG NN IN PRP$ NNP NN . The Saudi government denied any involvement . DT JJ NN VBD DT NN . Pakistan has again expressed support for the European Union 's efforts for a negotiated settlement to Tehran 's dispute with Washington over Iran 's nuclear program . NNP VBZ RB VBN NN IN DT NNP NNP POS NNS IN DT JJ NN TO NNP POS NN IN NNP IN NNP POS JJ NN . Foreign Minister Khursheed Kasuri told a news conference Pakistan would like to support the European approach because the Islamic world can not afford another conflict after U.S.-led wars in Afghanistan and Iraq . NNP NNP NNP NNP VBD DT NN NN NNP MD VB TO VB DT JJ NN IN DT JJ NN MD RB VB DT NN IN JJ NNS IN NNP CC NNP . He says Pakistan has been talking to the United States , the European Union and Iran to defuse tensions . PRP VBZ NNP VBZ VBN VBG TO DT NNP NNPS , DT NNP NNP CC NNP TO VB NNS . Last month , President Bush said the United States could not rule out using force if Iran fails to rein in its nuclear plans . JJ NN , NNP NNP VBD DT NNP NNPS MD RB VB RP VBG NN IN NNP VBZ TO VB IN PRP$ JJ NNS . Iran denies U.S charges that it is seeking to develop nuclear weapons . NNP VBZ NNP NNS IN PRP VBZ VBG TO VB JJ NNS . Last year , the father of Pakistan 's nuclear bomb , Abdul Qadeer Khan , admitted selling nuclear secrets to Iran . JJ NN , DT NN IN NNP POS JJ NN , NNP NNP NNP , VBD VBG JJ NNS TO NNP . Bombs targeting Iraqi troops in Baghdad and police in the north of the country have killed at least 10 people . NNS VBG JJ NNS IN NNP CC NN IN DT NN IN DT NN VBP VBN IN JJS CD NNS . Police say a truck bomb attack on a police station in the northern city of Mosul killed four people and wounded more than 30 others Tuesday . NNS VBP DT NN NN NN IN DT NN NN IN DT JJ NN IN NNP VBD CD NNS CC VBD JJR IN CD NNS NNP . In Baghdad , a car bomb blast near an Iraqi army checkpoint killed three soldiers and three civilians , and wounded 25 other people . IN NNP , DT NN NN NN IN DT JJ NN NN VBD CD NNS CC CD NNS , CC VBD CD JJ NNS . In other violence , three Iraqi policemen were shot to death by gunmen at a checkpoint in eastern Baghdad . IN JJ NN , CD JJ NNS VBD VBN TO NN IN NNS IN DT NN IN JJ NNP . Separately , the U.S military in Iraq says it captured four wanted men and detained six suspected terrorists during operations to disrupt al-Qaida networks in central Iraq . RB , DT NNP NN IN NNP VBZ PRP VBD CD JJ NNS CC VBN CD JJ NNS IN NNS TO VB NNP NNS IN JJ NNP . Iran has rejected the possibility of suspending its uranium enrichment program , after world powers agreed to discuss sanctions against Tehran . NNP VBZ VBN DT NN IN VBG PRP$ NN NN NN , IN NN NNS VBD TO VB NNS IN NNP . Foreign Ministry spokesman Mohammad Ali Hosseini said Sunday that suspending Iran 's enrichment program is , in his words , completely unacceptable . NNP NNP NN NNP NNP NNP VBD NNP IN VBG NNP POS NN NN VBZ , IN PRP$ NNS , RB JJ . He also said Tehran wants to solve the issue through talks , not sanctions . PRP RB VBD NNP VBZ TO VB DT NN IN NNS , RB NNS . On Friday , the five permanent members of the U.N. Security Council and Germany agreed to discuss possible non-military sanctions against Iran for its failure to meet an August 31 U.N. deadline to stop enriching uranium . IN NNP , DT CD JJ NNS IN DT NNP NNP NNP CC NNP VBD TO VB JJ JJ NNS IN NNP IN PRP$ NN TO VB DT NNP CD NNP NN TO VB VBG NN . The United States and Britain have lobbied for sanctions , while Russia and China have said the standoff should be resolved through negotiations . DT NNP NNPS CC NNP VBP VBN IN NNS , IN NNP CC NNP VBP VBN DT NN MD VB VBN IN NNS . Western nations believe Iran wants to make nuclear weapons . JJ NNS VBP NNP VBZ TO VB JJ NNS . Iran says its nuclear program is only for peaceful purposes . NNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS . The European Union 's top official for Bulgaria says reopening two shuttered Bulgarian nuclear reactors is ' out of the question . ' DT NNP NNP POS JJ NN IN NNP VBZ VBG CD JJ JJ JJ NNS VBZ `` IN IN DT NN . `` Michael Humphreys said at a Balkans energy conference in Sofia Monday that closing the reactors is part of Bulgaria 's membership agreement with the EU . NNP NNP VBD IN DT NNP NN NN IN NNP NNP IN VBG DT NNS VBZ NN IN NNP POS NN NN IN DT NNP . He said all 26 other EU members would have to agree to change Bulgaria 's membership deal . PRP VBD DT CD JJ NNP NNS MD VB TO VB TO VB NNP POS NN NN . He calls that impossible . PRP VBZ IN JJ . Bulgaria was forced to close reactors three and four of the Kozloduy nuclear power plant because of safety concerns . NNP VBD VBN TO VB NNS CD CC CD IN DT NNP JJ NN NN IN IN NN NNS . Energy ministers and other top officials from five Balkan nations - Albania , Bulgaria , Croatia , Macedonia , and Serbia - urged the EU in a statement to allow the reactors to temporarily reopen until other electricity sources can be found . NN NNS CC JJ JJ NNS IN CD NNP NNS IN NNP , NNP , NNP , NNP , CC NNP : VBD DT NNP IN DT NN TO VB DT NNS TO RB VB IN JJ NN NNS MD VB VBN . The officials say they fear closing the reactors will create a regional energy shortage . DT NNS VBP PRP VBP VBG DT NNS MD VB DT JJ NN NN . Swiss Reinsurance Company , the world 's second-biggest reinsurer , says the global insurance industry could face some $ 20 billion in claims from Hurricanes Rita and Wilma . JJ NN NN , DT NN POS JJ NN , VBZ DT JJ NN NN MD VB DT $ CD CD IN NNS IN NNP NNP CC NNP . The Zurich-based company estimates the cost from Rita will be around $ 10 billion , while damage claims from Wilma could range from $ 6 billion to $ 12 billion . DT JJ NN VBZ DT NN IN NNP MD VB IN $ CD CD , IN NN NNS IN NNP MD VB IN $ CD CD TO $ CD CD . Insurance companies were already reeling from Hurricane Katrina , which analysts say will cost the industry at least $ 40 billion . NN NNS VBD RB VBG IN NNP NNP , WDT NNS VBP MD VB DT NN IN JJS $ CD CD . Swiss Reinsurance announced Wednesday that its own earnings will be hurt by the recent string of storms to hit the U.S. Gulf coast . NNP NNP VBD NNP IN PRP$ JJ NNS MD VB VBN IN DT JJ NN IN NNS TO VB DT NNP NNP NN . The company says it expects claims of $ 750 million from Rita and Wilma , on top of an estimated $ 1.3 billion in claims from Katrina . DT NN VBZ PRP VBZ NNS IN $ CD CD IN NNP CC NNP , IN NN IN DT VBN $ CD CD IN NNS IN NNP . Reinsurers sell back-up insurance to other insurance companies , spreading risk so losses from major natural disasters can be covered . NNS VBP JJ NN TO JJ NN NNS , VBG NN IN NNS IN JJ JJ NNS MD VB VBN . U.S. aircraft maker Boeing has received $ 5 billion worth of orders for its new and upgraded version of its 747 jetliner . NNP NN NN NNP VBZ VBN $ CD CD NN IN NNS IN PRP$ JJ CC VBN NN IN PRP$ CD NN . Boeing says that Cargolux Airlines of Luxembourg has ordered 10 of its new 747-8 aircraft , with purchase rights for an additional 10 jets . NNP VBZ IN NNP NNPS IN NNP VBZ VBN CD IN PRP$ JJ JJ NN , IN NN NNS IN DT JJ CD NNS . Japan-based Nippon Cargo has ordered eight of the new jets , with options for 10 more . JJ NNP NNP VBZ VBN CD IN DT JJ NNS , IN NNS IN CD JJR . The airlines will begin receiving the new jets in 2009 . DT NNS MD VB VBG DT JJ NNS IN CD . The head of Boeing 's commercial airplanes division says the new 747 will utilize engines designed for its new 787 Dreamliner passenger jet to make it quieter and more efficient . DT NN IN NNP POS JJ NNS NN VBZ DT JJ CD MD VB NNS VBN IN PRP$ JJ CD NNP NN NN TO VB PRP JJR CC RBR JJ . Boeing is competing against Europe 's Airbus consortium for dominance of the international aviation market . NNP VBZ VBG IN NNP POS NNP NN IN NN IN DT JJ NN NN . Airbus is preparing its new A-380 superjumbo jet for service beginning next year . NNP VBZ VBG PRP$ JJ NN NN NN IN NN VBG JJ NN . Authorities in Ethiopia say several people were injured Tuesday from two explosions in the capital , Addis Ababa . NNS IN NNP VBP JJ NNS VBD VBN NNP IN CD NNS IN DT NN , NNP NNP . Officials say the first blast occurred at a hotel , injuring four people and damaging the building . NNS VBP DT JJ NN VBD IN DT NN , VBG CD NNS CC VBG DT NN . They say the second explosion happened in a market in Addis Ababa , but no injuries were reported there . PRP VBP DT JJ NN VBD IN DT NN IN NNP NNP , CC DT NNS VBD VBN RB . There was no immediate indication of what caused the explosions . EX VBD DT JJ NN IN WP VBD DT NNS . Chechnya 's Kremlin-backed government has dismissed a purported separatist statement pledging to observe a ceasefire throughout this month . NNP POS JJ NN VBZ VBN DT JJ JJ NN VBG TO VB DT NN IN DT NN . Russian media quote Chechen President Alu Alkhanov as describing the declaration as a ' trick ' and an attempt by the separatists to gain attention . JJ NNS VBZ JJ NNP NNP NNP IN VBG DT NN IN DT `` NN `` CC DT NN IN DT NNS TO VB NN . A web site linked to Chechen separatists posted the ceasefire offer Wednesday said to be from their top leaders Aslan Maskhadov and Shamil Basayev . DT NN NN VBN TO JJ NNS VBD DT NN NN NNP VBD TO VB IN PRP$ JJ NNS JJ NNP CC NNP NNP . Meanwhile , an independent British television station has announced plans to broadcast an interview with Mr. Basayev in which he is said to warn of more terrorist attacks in Russia . RB , DT JJ JJ NN NN VBZ VBN NNS TO VB DT NN IN NNP NNP IN WDT PRP VBZ VBN TO VB IN JJR JJ NNS IN NNP . Russian officials have demanded that the station not air the segment , calling it irresponsible to spread the views of a wanted terrorist . JJ NNS VBP VBN IN DT NN RB VB DT NN , VBG PRP JJ TO VB DT NNS IN DT JJ JJ . Mr. Basayev has taken responsibility for a number of bloody attacks , including the siege of a school last year that led to the deaths of more than 330 people . NNP NNP VBZ VBN NN IN DT NN IN JJ NNS , VBG DT NN IN DT NN JJ NN WDT VBD TO DT NNS IN JJR IN CD NNS . President Bush has vowed to increase the number of needy countries the United States aids through the Millennium Challenge Corporation , which rewards nations making democratic and free-market reforms . NNP NNP VBZ VBN TO VB DT NN IN JJ NNS DT NNP NNPS VBZ IN DT NNP NNP NNP , WDT VBZ NNS VBG JJ CC JJ NNS . Mr. Bush said Tuesday that nearly two dozen new countries have been selected as eligible for aid . NNP NNP VBD NNP IN RB CD NN JJ NNS VBP VBN VBN IN NN IN NN . He spoke during the swearing-in ceremony of John Danilovich , the corporation 's new chief executive officer . PRP VBD IN DT JJ NN IN NNP NNP , DT NN POS JJ JJ NN NN . President Bush said he has asked Mr. Danilovich to implement several new agreements with developing countries in upcoming months . NNP NNP VBD PRP VBZ VBN NNP NNP TO VB JJ JJ NNS IN VBG NNS IN VBG NNS . The corporation currently has agreements with Armenia , Benin , Cape Verde , Georgia , Honduras , Madagascar , and Nicaragua . DT NN RB VBZ NNS IN NNP , NNP , NNP NNP , NNP , NNP , NNP , CC NNP . The corporation gives development aid to needy countries that are judged to govern justly and encourage economic freedom . DT NN VBZ NN NN TO JJ NNS WDT VBP VBN TO VB RB CC VB JJ NN . The aid goes toward projects in agriculture , education , and private sector development . DT NN VBZ IN NNS IN NN , NN , CC JJ NN NN . The British military says one of its soldiers has died fighting insurgents in Afghanistan . DT JJ NN VBZ CD IN PRP$ NNS VBZ VBN VBG NNS IN NNP . The military says the British Royal Marine was killed Wednesday in the Nad-e-Ali district near Lashkar Gah , the capital of Helmand province . DT JJ VBZ DT NNP NNP NNP VBD VBN NNP IN DT NNP NN IN NNP NNP , DT NN IN NNP NN . About 70,000 international forces are in Afghanistan fighting a Taliban insurgency that has raged since the United States pushed the group from power in 2001 . IN CD JJ NNS VBP IN NNP VBG DT NNP NN WDT VBZ VBN IN DT NNP NNPS VBD DT NN IN NN IN CD . On Wednesday , Afghan and international troops said they had captured a senior insurgent commander in a raid on a suspected insurgent cell in Baghlan province . IN NNP , JJ CC JJ NNS VBD PRP VBD VBN DT JJ JJ NN IN DT NN IN DT JJ JJ NN IN NNP NN . A joint statement from the Afghan and U.S. militaries said insurgent Mullah Dahoud is suspected of involvement in a deadly October attack in Baghlan and the 2007 bombing of a sugar factory , which killed more than 50 people . DT JJ NN IN DT JJ CC NNP NNS VBD JJ NNP NNP VBZ VBN IN NN IN DT JJ NNP NN IN NNP CC DT CD NN IN DT NN NN , WDT VBD JJR IN CD NNS . The U.S. Secretary of Energy says it may take about six months to restore Iraq 's oil output to pre-war levels of 2.5 million barrels a day . DT NNP NNP IN NNP VBZ PRP MD VB RB CD NNS TO VB NNP POS NN NN TO JJ NNS IN CD CD NNS DT NN . Samuel Bodman made the comments in Baghdad Tuesday , where he called Iraqi estimates that they could boost production to three million barrels a day ' optimistic . ' NNP NNP VBD DT NNS IN NNP NNP , WRB PRP VBD JJ NNS IN PRP MD VB NN TO CD CD NNS DT NN `` JJ . `` Bodman also said Iraq is working on a new ' hydrocarbons law ' intended to set a legal framework to attract and regulate badly needed investment by foreign oil companies . NNP RB VBD NNP VBZ VBG IN DT JJ `` NNS NN `` VBN TO VB DT JJ NN TO VB CC VB RB VBN NN IN JJ NN NNS . He said Iraqi officials hope to finish the law by the end of this year . PRP VBD JJ NNS VBP TO VB DT NN IN DT NN IN DT NN . Iraq has the second largest oil reserves in the Middle East , but oil production suffers from years of sanctions , war , and insurgent attacks on key infrastructure . NNP VBZ DT JJ JJS NN NNS IN DT NNP NNP , CC NN NN NNS IN NNS IN NNS , NN , CC JJ NNS IN JJ NN . China says its exports rose 21 percent in January from the same period a year ago , a further sign that its economy has withstood the global recession . NNP VBZ PRP$ NNS VBD CD NN IN NNP IN DT JJ NN DT NN RB , DT JJ NN IN PRP$ NN VBZ VBN DT JJ NN . The figures released by the General Administration of Customs Wednesday show exports totaled over $ 109 billion . DT NNS VBN IN DT NNP NNP IN NNP NNP NN NNS VBD IN $ CD CD . January 's increase follows on the heels of a 17.7 percent increase in December . NNP POS NN VBZ IN DT NNS IN DT CD NN NN IN NNP . Officials says last month 's export increase was partly due to the comparison with a period of low activity last year , when companies were idled for the Lunar New Year . NNP VBZ JJ NN POS NN NN VBD RB JJ TO DT NN IN DT NN IN JJ NN JJ NN , WRB NNS VBD VBN IN DT NNP NNP NNP . The customs office also says imports soared 85.5 percent in January . DT NNS NN RB VBZ NNS VBD CD NN IN NNP . The import and export figures taken together made a $ 14.2 billion trade surplus for the month . DT NN CC NN NNS VBN RB VBD DT $ CD CD NN NN IN DT NN . But in a month-on-month basis , exports dropped 16.3 percent in January from December , and imports fell 15.1 percent . CC IN DT JJ NN , NNS VBD CD NN IN NNP IN NNP , CC NNS VBD CD NN . Angola is rebuilding its country after the end of a 27-year civil war in 2002 . NNP VBZ VBG PRP$ NN IN DT NN IN DT JJ JJ NN IN CD . Fighting between the Popular Movement for the Liberation of Angola ( MPLA ) , led by Jose Eduardo DOS SANTOS , and the National Union for the Total Independence of Angola ( UNITA ) , led by Jonas SAVIMBI , followed independence from Portugal in 1975 . VBG IN DT NNP NN IN DT NN IN NNP LRB NNP RRB , VBN IN NNP NNP NNP NNP , CC DT NNP NNP IN DT JJ NN IN NNP LRB NNP RRB , VBN IN NNP NNP , VBD NN IN NNP IN CD . Peace seemed imminent in 1992 when Angola held national elections , but fighting picked up again by 1996 . NN VBD JJ IN CD WRB NNP VBD JJ NNS , CC VBG VBN RP RB IN CD . Up to 1.5 million lives may have been lost - and 4 million people displaced - in the quarter century of fighting . IN TO CD CD NNS MD VB VBN VBN : CC CD CD NNS VBD : IN DT NN NN IN NN . SAVIMBI 's death in 2002 ended UNITA 's insurgency and strengthened the MPLA 's hold on power . NNP POS NN IN CD VBD NNP POS NN CC VBD DT NNP POS NN IN NN . President DOS SANTOS held legislative elections in September 2008 and , despite promising to hold presidential elections in 2009 , has since pushed through a new constitution that calls for elections in 2012 . NNP NNP NNP VBD JJ NNS IN NNP CD CC , IN VBG TO VB JJ NNS IN CD , VBZ IN VBN IN DT JJ NN WDT VBZ IN NNS IN CD . Saint Helena is a British Overseas Territory consisting of Saint Helena and Ascension Islands , and the island group of Tristan da Cunha . NNP NNP VBZ DT JJ JJ NN VBG IN NNP NNP CC NNP NNP , CC DT NN NN IN NNP NNP NNP . Since independence in 1968 , Mauritius has developed from a low-income , agriculturally based economy to a middle-income diversified economy with growing industrial , financial , and tourist sectors . IN NN IN CD , NNP VBZ VBN IN DT NN , RB VBN NN TO DT JJ JJ NN IN VBG JJ , JJ , CC NN NNS . For most of the period , annual growth has been in the order of 5 % to 6 % . IN JJS IN DT NN , JJ NN VBZ VBN IN DT NN IN CD NN CC CD NN . This remarkable achievement has been reflected in more equitable income distribution , increased life expectancy , lowered infant mortality , and a much-improved infrastructure . DT JJ NN VBZ VBN VBN IN JJR JJ NN NN , JJ NN NN , JJ NN NN , CC DT JJ NN . The economy rests on sugar , tourism , textiles and apparel , and financial services , and is expanding into fish processing , information and communications technology , and hospitality and property development . DT NN VBZ IN NN , NN , NNS CC NN , CC JJ NNS , CC VBZ VBG IN NN NN , NN CC NNS NN , CC NN CC NN NN . Sugarcane is grown on about 90 % of the cultivated land area and accounts for 15 % of export earnings . NN VBZ VBN IN IN CD NN IN DT VBN NN NN CC NNS IN CD NN IN NN NNS . The government 's development strategy centers on creating vertical and horizontal clusters of development in these sectors . DT NN POS NN NN NNS IN VBG JJ CC JJ NNS IN NN IN DT NNS . Mauritius has attracted more than 32,000 offshore entities , many aimed at commerce in India , South Africa , and China . NNP VBZ VBN JJR IN CD JJ NNS , JJ VBN IN NN IN NNP , NNP NNP , CC NNP . Investment in the banking sector alone has reached over $ 1 billion . NN IN DT NN NN RB VBZ VBN IN $ CD CD . Mauritius , with its strong textile sector , has been well poised to take advantage of the Africa Growth and Opportunity Act ( AGOA ) . NNP , IN PRP$ JJ NN NN , VBZ VBN RB VBN TO VB NN IN DT NNP NNP CC NNP NNP LRB NNP RRB . Mauritius ' sound economic policies and prudent banking practices helped to mitigate negative effects from the global financial crisis in 2008 - 9 . NNP POS JJ JJ NNS CC JJ NN NNS VBD TO VB JJ NNS IN DT JJ JJ NN IN CD : CD . GDP grew 3.6 % in 2010 and the country continues to expand its trade and investment outreach around the globe . NN VBD CD NN IN CD CC DT NN VBZ TO VB PRP$ NN CC NN NN IN DT NN . First explored by the Spaniards in the 16th century and then settled by the English in the mid-17th century , Suriname became a Dutch colony in 1667 . RB VBN IN DT NNS IN DT JJ NN CC RB VBN IN DT NNS IN DT JJ NN , NNP VBD DT JJ NN IN CD . With the abolition of slavery in 1863 , workers were brought in from India and Java . IN DT NN IN NN IN CD , NNS VBD VBN IN IN NNP CC NNP . Independence from the Netherlands was granted in 1975 . NN IN DT NNP VBD VBN IN CD . Five years later the civilian government was replaced by a military regime that soon declared a socialist republic . CD NNS RB DT JJ NN VBD VBN IN DT JJ NN WDT RB VBD DT JJ NN . It continued to exert control through a succession of nominally civilian administrations until 1987 , when international pressure finally forced a democratic election . PRP VBD TO VB NN IN DT NN IN RB JJ NNS IN CD , WRB JJ NN RB VBD DT JJ NN . In 1990 , the military overthrew the civilian leadership , but a democratically elected government - a four-party coalition - returned to power in 1991 . IN CD , DT JJ VBD DT JJ NN , CC DT RB VBN NN IN DT JJ NN : VBD TO NN IN CD . The coalition expanded to eight parties in 2005 and ruled until August 2010 , when voters returned former military leader Desire BOUTERSE and his opposition coalition to power . DT NN VBD TO CD NNS IN CD CC VBD IN NNP CD , WRB NNS VBD JJ JJ NN NNP NNP CC PRP$ NN NN TO NN . Colonized by English settlers from Saint Kitts in 1650 , Anguilla was administered by Great Britain until the early 19th century , when the island - against the wishes of the inhabitants - was incorporated into a single British dependency along with Saint Kitts and Nevis . VBN IN JJ NNS IN NNP NNPS IN CD , NNP VBD VBN IN NNP NNP IN DT JJ JJ NN , WRB DT NN : IN DT NNS IN DT NNS : VBD VBN IN DT JJ JJ NN IN IN NNP NNP CC NNP . Several attempts at separation failed . JJ NNS IN NN VBD . In 1971 , two years after a revolt , Anguilla was finally allowed to secede ; this arrangement was formally recognized in 1980 with Anguilla becoming a separate British dependency . IN CD , CD NNS IN DT NN , NNP VBD RB VBN TO VB ; DT NN VBD RB VBN IN CD IN NNP VBG DT JJ JJ NN . AN ASS , being driven along a high road , suddenly started off and bolted to the brink of a deep precipice . DT NN , VBG VBN IN DT JJ NN , RB VBD RB CC VBD TO DT NN IN DT JJ NN . While he was in the act of throwing himself over , his owner seized him by the tail , endeavoring to pull him back . IN PRP VBD IN DT NN IN VBG PRP RP , PRP$ NN VBD PRP IN DT NN , VBG TO VB PRP RB . When the Ass persisted in his effort , the man let him go and said , ' Conquer , but conquer to your cost . ' WRB DT NN VBD IN PRP$ NN , DT NN VB PRP VB CC VBD , `` VB , CC VB IN PRP$ NN . `` A willful beast must go his own way DT JJ NN MD VB PRP$ JJ NN A funny old lion , who had the misfortune to lose his mane , was wearing a wig as he was taking a stroll on a very windy day . DT JJ JJ NN , WP VBD DT NN TO VB PRP$ NN , VBD VBG DT NN IN PRP VBD VBG DT NN IN DT RB JJ NN . Looking up , he spied one of the charming Tiger sisters across the street , and , wishing to make an impression , smiled blandly and made a beautiful low bow . VBG RP , PRP VBD CD IN DT JJ NNP NNS IN DT NN , CC , VBG TO VB DT NN , VBD RB CC VBD DT JJ JJ NN . At that moment a very smart gust of wind came up , and the consequence was that his wig flew off and left him there , feeling foolish and looking worse , with his bald head glistening like a billiard ball . IN DT NN DT RB JJ NN IN NN VBD RB , CC DT NN VBD IN PRP$ NN VBD RB CC VBD PRP RB , NN NN CC VBG JJR , IN PRP$ JJ NN VBG IN DT NN NN . Though somewhat embarrassed at first , he smiled at the Lady and said : ' Is it a wonder that another fellow 's hair should n't keep on my head , when my own would n't stay there ? ' IN RB JJ IN RB , PRP VBD IN DT NNP CC VBD : `` VBZ PRP DT NN IN DT NN POS NN MD RB VB IN PRP$ NN , WRB PRP$ NN MD RB VB RB . `` ' Wit always has an answer ready . ' `` NNP RB VBZ DT NN JJ . `` A WOODCHOPPER , who had dropped his axe into a deep pool , besought Mercury to recover it for him . DT NN , WP VBD VBN PRP$ NN IN DT JJ NN , JJ NNP TO VB PRP IN PRP . That thoughtless deity immediately plunged into the pool , which became so salivated that the trees about its margin all came loose and dropped out . DT JJ NN RB VBD IN DT NN , WDT VBD RB JJ IN DT NNS IN PRP$ NN DT VBD JJ CC VBD RP . A LION roaming through the forest , got a thorn in his foot , and , meeting a Shepherd , asked him to remove it . DT NN VBG IN DT NN , VBD DT NN IN PRP$ NN , CC , VBG DT NN , VBD PRP TO VB PRP . The Shepherd did so , and the Lion , having just surfeited himself on another shepherd , went away without harming him . DT NN VBD RB , CC DT NN , VBG RB VBN PRP IN DT NN , VBD RB IN VBG PRP . Some time afterward the Shepherd was condemned on a FALSE accusation to be cast to the lions in the amphitheatre . DT NN RB DT NN VBD VBN IN DT JJ NN TO VB VBN TO DT NNS IN DT NN . When they were about to devour him , one of them said : WRB PRP VBD IN TO VB PRP , CD IN PRP VBD : ' This is the man who removed the thorn from my foot . ' `` DT VBZ DT NN WP VBD DT NN IN PRP$ NN . `` Hearing this , the others honourably abstained , and the claimant ate the Shepherd all himself . VBG DT , DT NNS RB VBD , CC DT JJ NN DT NN DT PRP . A couple of Yogi Berra 's teammates on the Yankees ball club swear that one night the stocky catcher was horrified to see a baby toppling off the roof of a cottage across the way from him . DT NN IN NNP NNP POS NNS IN DT NNP NN NN NN IN CD NN DT JJ NN VBD VBN TO VB DT NN VBG RP DT NN IN DT NN IN DT NN IN PRP . Yogi dashed over and made a miraculous catch - but then force of habit proved too much for him . NNP VBD IN CC VBD DT JJ NN : CC RB NN IN NN VBD RB JJ IN PRP . He straightened up and threw the baby to second base . PRP VBD RP CC VBD DT NN TO JJ NN . The bathtub was invented in 1850 . DT NN VBD VBN IN CD . The telephone was invented in 1875 . DT NN VBD VBN IN CD . This might not seem like much but , if you had lived back then , you could have sat in the bathtub for 25 years without being bothered by the phone DT MD RB VB IN NN CC , IN PRP VBD VBN RB RB , PRP MD VB VBN IN DT NN IN CD NNS IN VBG VBN IN DT NN This particular Wizard worked in a modern factory . DT JJ NNP VBD IN DT JJ NN . Everything was satisfactory except that certain miscreants took advantage of his good nature , and would steal his parking spot . DT VBD JJ IN DT JJ NNS VBD NN IN PRP$ JJ NN , CC MD VB PRP$ NN NN . This continued until he put up the following effective sign : DT VBD IN PRP VBD RP DT VBG JJ NN : This parking space belongs to the Wizard . DT NN NN VBZ TO DT NNP . ... : Violators will be toad . NNS MD VB VBN . Israel 's interim prime minister , Ehud Olmert , says he hopes to resume peace talks after both the Israeli and the Palestinian parliamentary elections . NNP POS JJ JJ NN , NNP NNP , VBZ PRP VBZ TO VB NN NNS IN DT DT JJ CC DT JJ JJ NNS . Palestinians are to hold their legislative vote on January 25 , and Israeli elections are set for March 28 . NNS VBP TO VB PRP$ JJ NN IN NNP CD , CC JJ NNS VBP VBN IN NNP CD . Mr. Olmert said resuming peace talks will depend on Israel 's long-standing demand that Palestinian President Mahmoud Abbas disarm militant groups . NNP NNP VBD VBG NN NNS MD VB IN NNP POS JJ NN IN JJ NNP NNP NNP NN JJ NNS . He said the basis for the talks would be the U.S.-backed ' road map ' peace plan , which calls for the establishment of a Palestinian state . PRP VBD DT NN IN DT NNS MD VB DT JJ `` NN NN `` NN NN , WDT VBZ IN DT NN IN DT JJ NN . Also Tuesday , Israeli police began forcibly removing right-wing settlers from the West Bank city of Hebron . RB NNP , JJ NN VBD RB VBG JJ NNS IN DT NNP NNP NN IN NNP . The settlers have been protesting a court order evicting Jewish squatters from an abandoned Palestinian market in the city . DT NNS VBP VBN VBG DT NN NN VBG JJ NNS IN DT JJ JJ NN IN DT NN . Elsewhere in the West Bank , Israeli troops shot and killed a wanted Palestinian militant in Tulkarem . RB IN DT NNP NNP , JJ NNS VBD CC VBD DT JJ NN NN IN NNP . The United States says it will respond to European concerns about reports of secret prisons in Europe and transport flights for terror suspects . DT NNP NNPS VBZ PRP MD VB TO JJ NNS IN NNS IN JJ NNS IN NNP CC NN NNS IN NN NNS . A State Department spokesman , Sean McCormack , said Tuesday that Secretary of State Condoleezza Rice assured visiting German Foreign Minister Frank-Walter Steinmeier that Washington will reply to an expected query from the European Union . DT NNP NNP NN , NNP NNP , VBD NNP IN NNP IN NNP NNP NNP VBD VBG JJ NNP NNP NNP NNP IN NNP MD VB TO DT VBN NN IN DT NNP NNP . Mr. Steinmeier said U.S. officials also have agreed to respond to European questions on the matter . NNP NNP VBD NNP NNS RB VBP VBN TO VB TO JJ NNS IN DT NN . The State Department spokesman said Secretary Rice told Mr. Steinmeier that all U.S. activities comply with American laws and the constitution . DT NNP NNP NN VBD NNP NNP VBD NNP NNP IN DT NNP NNS VB IN JJ NNS CC DT NN . Recent media reports say the U.S. Central Intelligence Agency allegedly runs secret prisons in eastern Europe for terrorist suspects . JJ NNS NNS VBP DT NNP NNP NNP NNP RB VBZ JJ NNS IN JJ NNP IN JJ NNS . There also have been reports of flights transporting CIA prisoners through EU airspace . EX RB VBP VBN NNS IN NNS VBG NNP NNS IN NNP NN . U.S. authorities have refused to confirm or deny the reports . NNP NNS VBP VBN TO VB CC VB DT NNS . Opinion polls in Israel indicate support for Prime Minister Ariel Sharon 's new centrist Kadima party is still strong ahead of the March 28 election despite the massive stroke that has incapacitated the Israeli leader . NN NNS IN NNP VBP NN IN NNP NNP NNP NNP POS JJ NN NNP NN VBZ RB JJ RB IN DT NNP CD NN IN DT JJ NN WDT VBZ VBN DT JJ NN . A poll published Friday in the Yediot Ahronot daily newspaper found that the Kadima party under acting Prime Minister Ehud Olmert would win 39 of 120 parliament seats , well ahead of the right-wing Likud party and moderate Labor party . DT NN VBN NNP IN DT NNP NNP JJ NN VBD IN DT NNP NN IN VBG NNP NNP NNP NNP MD VB CD IN CD NN NNS , RB RB IN DT JJ NNP NN CC JJ NN NN . A poll published by the Ha'aretz daily newspaper had similar results . DT NN VBN IN DT NNP JJ NN VBD JJ NNS . The opinion polls are the first to test the future for Mr. Sharon 's new party since the prime minister suffered a massive stroke on Wednesday and was said by doctors to be unlikely to return to his post . DT NN NNS VBP DT JJ TO VB DT NN IN NNP NNP POS JJ NN IN DT JJ NN VBD DT JJ NN IN NNP CC VBD VBN IN NNS TO VB JJ TO VB TO PRP$ NN . U.S. Secretary of State Condoleezza Rice says some of Russia 's efforts at democratic reform are ' going in the wrong direction . ' NNP NNP IN NNP NNP NNP VBZ DT IN NNP POS NNS IN JJ NN VBP `` VBG IN DT JJ NN . `` Rice told CBS television Sunday that the way Russia used energy against Ukraine and a new law regulating non-governmental organizations are problems . NNP VBD NNP NN NNP IN DT NN NNP VBD NN IN NNP CC DT JJ NN VBG JJ NNS VBP NNS . Russia cut off natural gas supplies to Ukraine during a price dispute last month , causing gas shortages in Europe . NNP VBD RP JJ NN NNS TO NNP IN DT NN NN JJ NN , VBG NN NNS IN NNP . Ukraine called it a political move . NNP VBD PRP DT JJ NN . Rice said despite Washington 's concerns , the situation in Russia is better than it was in the former Soviet Union and that U.S.-Russian relations are the best they have been for quite some time . NNP VBD IN NNP POS NNS , DT NN IN NNP VBZ JJR IN PRP VBD IN DT JJ NNP NNP CC IN JJ NNS VBP DT JJS PRP VBP VBN IN RB DT NN . French Prime Minister Francois Fillon said in China Tuesday that any misunderstandings between Paris and Beijing are a thing of the past . JJ NNP NNP NNP NNP VBD IN NNP NNP IN DT NNS IN NNP CC NNP VBP DT NN IN DT NN . Mr. Fillon told Chinese university students in Beijing the countries now want to build a relationship based on ' mutual respect . ' NNP NNP VBD JJ NN NNS IN NNP DT NNS RB VBP TO VB DT NN VBN IN `` JJ NN . `` Tensions between Paris and Beijing grew last year when French President Nicolas Sarkozy met the Dalai Lama . NNS IN NNP CC NNP VBD JJ NN WRB JJ NNP NNP NNP VBD DT NNP NNP . China accuses the exiled Tibetan spiritual leader of seeking independence for the Himalayan region , which the Buddhist leader denies . NNP VBZ DT JJ JJ JJ NN IN VBG NN IN DT JJ NN , WDT DT NNP NN VBZ . Fillon traveled to Beijing to smooth both diplomatic and economic relations . NNP VBD TO NNP TO VB DT JJ CC JJ NNS . He oversaw the signing of 12 deals involving aviation , energy , culture and water resource utilization . PRP VBD DT NN IN CD NNS VBG NN , NN , NN CC NN NN NN . Fillon held talks with Chinese President Hu Jintao and parliamentary speaker Wu Bangguo , a day after meeting Premier Wen Jiabao . NNP VBD NNS IN JJ NNP NNP NNP CC JJ NN NNP NNP , DT NN IN VBG NNP NNP NNP . British authorities have charged a third man in connection with last month 's failed car bombings in London and Glasgow , Scotland . JJ NNS VBP VBN DT JJ NN IN NN IN JJ NN POS JJ NN NNS IN NNP CC NNP , NNP . Police said Saturday they charged an Indian-born doctor , Sabeel Ahmed , 26 , with having information that could prevent an act of terrorism . NNS VBD NNP PRP VBD DT JJ NN , NNP NNP , CD , IN VBG NN WDT MD VB DT NN IN NN . Ahmed 's brother , Kafeel , remains hospitalized with severe burns suffered when he and another man allegedly rammed a vehicle packed with gasoline and gas canisters into Glasgow airport 's main entrance . NNP POS NN , NNP , VBZ VBN IN JJ NNS VBD WRB PRP CC DT NN RB VBD DT NN VBN IN NN CC NN NNS IN NNP NN POS JJ NN . Earlier today , Australian police charged Indian-born doctor Mohammed Haneef , 27 , with providing ' reckless ' support to a terrorist organization allegedly behind the three failed bombings on June 29 and 30 . RBR NN , JJ NN VBD JJ NN NNP NNP , CD , IN VBG `` JJ `` NN TO DT JJ NN RB IN DT CD VBN NNS IN NNP CD CC CD . Haneef was the second person charged in connection with the failed attacks in London and Glasgow . NNP VBD DT JJ NN VBN IN NN IN DT JJ NNS IN NNP CC NNP . He is reported to be a cousin of Kafeel and Sabeel Ahmed . PRP VBZ VBN TO VB DT NN IN NNP CC NNP NNP . Authorities say he shared a house in Liverpool with them for about two years . NNS VBP PRP VBD DT NN IN NNP IN PRP IN IN CD NNS . The head of the U.S. central bank says a variety of factors , from a weaker dollar to tougher budget discipline in Congress , may help restrain the rapid growth in the nation 's trade deficit . DT NN IN DT NNP JJ NN VBZ DT NN IN NNS , IN DT JJR NN TO JJR NN NN IN NNP , MD VB VB DT JJ NN IN DT NN POS NN NN . In remarks prepared for a speech in London , Federal Reserve Chairman Alan Greenspan cautioned that the unprecedented level of economic interaction between countries makes it difficult to predict what will happen to the U.S. trade deficit . IN NNS VBN IN DT NN IN NNP , NNP NNP NNP NNP NNP VBD IN DT JJ NN IN JJ NN IN NNS VBZ PRP JJ TO VB WP MD VB TO DT NNP NN NN . Economists say that to finance the trade gap , the United States depends on the willingness of foreigners to lend money to the country through investments like stocks and bonds . NNS VBP IN TO VB DT NN NN , DT NNP NNPS VBZ IN DT NN IN NNS TO VB NN TO DT NN IN NNS IN NNS CC NNS . Analysts worry that the declining dollar might prompt investors to abruptly sell their stocks , which could push the dollar down further and force interest rates up . NNS VBP IN DT VBG NN MD VB NNS TO RB VB PRP$ NNS , WDT MD VB DT NN RB RB CC VB NN NNS RB . That could slow the U.S. economy and hurt nations that export to the huge U.S. market . DT MD VB DT NNP NN CC VBN NNS WDT VBP TO DT JJ NNP NN . A federal judge in the U.S. state of Iowa has awarded a small Internet service provider more than one billion dollars in a lawsuit aimed against unsolicited commercial e-mails , known as spam . DT JJ NN IN DT NNP NN IN NNP VBZ VBN DT JJ NN NN NN JJR IN CD CD NNS IN DT NN VBN IN JJ JJ NNS , VBN IN NN . The ruling Friday is believed to be the largest judgment ever against people or companies who send spam . DT NN NNP VBZ VBN TO VB DT JJS NN RB IN NNS CC NNS WP VBP NN . Robert Kramer , whose company provides e-mail service for about 5,000 users in Iowa , had filed a lawsuit against some 300 spammers in 2003 . NNP NNP , WP$ NN VBZ JJ NN IN RB CD NNS IN NNP , VBD VBN DT NN IN DT CD NNS IN CD . Mr. Kramer 's lawyer says the entire judgment will probably never be collected , but he hopes to recover costs caused by the spammers . NNP NNP POS NN VBZ DT JJ NN MD RB RB VB VBN , CC PRP VBZ TO VB NNS VBN IN DT NNS . Mr. Kramer said spam clogged his server system , frequently disabling it . NNP NNP VBD NN VBD PRP$ NN NN , RB VBG PRP . He said he spent thousands of dollars upgrading his servers to handle the heavy flow of spam . PRP VBD PRP VBD NNS IN NNS VBG PRP$ NNS TO VB DT JJ NN IN NN . NATO officials say they plan to use smaller bombs in Afghanistan to limit the rise in civilian casualties . NNP NNS VBP PRP VBP TO VB JJR NNS IN NNP TO VB DT NN IN JJ NNS . NATO Secretary-General Jaap de Hoop Scheffer said the number of civilians killed during fighting between NATO with the Taleban has damaged the reputation of the alliance . NNP NNP NNP IN NNP NNP VBD DT NN IN NNS VBN IN VBG IN NNP IN DT NNP VBZ VBN DT NN IN DT NN . He added that NATO commanders recently instructed troops to hold off attacking rebels in situations where civilians would be at risk . PRP VBD IN NNP NNS RB VBD NNS TO VB RP VBG NNS IN NNS WRB NNS MD VB IN NN . The NATO chief spoke in an interview published Monday by the Financial Times . DT NNP NN VBD IN DT NN VBN NNP IN DT NNP NNP . In the past , Scheffer has blamed Taleban militants for using Afghan civilians as human shields . IN DT NN , NNP VBZ VBN NNP NNS IN VBG JJ NNS IN JJ NNS . The coalition in Afghanistan has been criticized for the number of civilian casualties resulting from combat operations against the Taleban and other militants . DT NN IN NNP VBZ VBN VBN IN DT NN IN JJ NNS VBG IN NN NNS IN DT NNP CC JJ NNS . Last month , Afghan President Hamid Karzai accused NATO and U.S.-led forces of killing 90 civilians in air strikes and artillery fire against the Taleban . JJ NN , JJ NNP NNP NNP VBD NNP CC JJ NNS IN VBG CD NNS IN NN NNS CC NN NN IN DT NNP . Palestinian medical officials say Israeli troops have killed three Palestinian militants in the West Bank . JJ JJ NNS VBP JJ NNS VBP VBN CD JJ NNS IN DT NNP NNP . Hospital officials say two of the men were shot dead Friday , near the al-Faraa refugee camp , in the northern West Bank . NN NNS VBP CD IN DT NNS VBD VBN JJ NNP , IN DT JJ NN NN , IN DT JJ NNP NNP . The third was killed in the village of al-Yamoun . DT NN VBD VBN IN DT NN IN NN . The Israeli army says its troops opened fire on the men during operations against militants in the areas . DT JJ NN VBZ PRP$ NNS VBD NN IN DT NNS IN NNS IN NNS IN DT NNS . European Union foreign policy chief Javier Solana Thursday called on Israelis and Palestinians to show more flexibility in helping to restart the Middle East peace process . NNP NNP JJ NN NN NNP NNP NNP VBD IN NNS CC NNS TO VB JJR NN IN VBG TO VB DT NNP NNP NN NN . Solana made his plea after meeting with Israel 's Foreign Minister Tzipi Livni in Tel Aviv . NNP VBD PRP$ NN IN VBG IN NNP POS NNP NNP NNP NNP IN NNP NNP . He urged Israel to reopen a border crossing between the Gaza Strip and Egypt , which Israel closed for security reasons . PRP VBD NNP TO VB DT NN VBG IN DT NNP NNP CC NNP , WDT NNP VBD IN NN NNS . Pakistani police say the country 's former President Pervez Musharraf faces arrest if he returns to Pakistan . JJ NNS VBP DT NN POS JJ NNP NNP NNP VBZ NN IN PRP VBZ TO NNP . Police registered a case Tuesday against Mr. Musharraf over his detention of judges during a political crisis in 2007 . NNP VBD DT NN NNP IN NNP NNP IN PRP$ NN IN NNS IN DT JJ NN IN CD . He could serve three years in jail if convicted . PRP MD VB CD NNS IN NN IN VBN . Last month , the Supreme Court ruled that Mr. Musharraf violated the constitution when he imposed emergency rule and dismissed top judges in an effort to hold onto the presidency . JJ NN , DT NNP NNP VBD IN NNP NNP VBD DT NN WRB PRP VBD NN NN CC VBD JJ NNS IN DT NN TO VB IN DT NN . The former military chief resigned as president last year to avoid impeachment . DT JJ JJ NN VBD IN NN JJ NN TO VB NN . He has been living in London the past two months . PRP VBZ VBN VBG IN NNP DT JJ CD NNS . Mr. Musharraf was replaced by Asif Ali Zardari , the widower of slain former Prime Minister Benazir Bhutto , whose Pakistan People 's Party had won parliamentary elections . NNP NNP VBD VBN IN NNP NNP NNP , DT NN IN NN JJ NNP NNP NNP NNP , WP$ NNP NNP POS NNP VBD VBN JJ NNS . France has unveiled plans to improve education and tackle job discrimination , as part of new measures to expand opportunities following three weeks of riots in largely ethnic North African-inhabited areas . NNP VBZ VBN NNS TO VB NN CC VB NN NN , IN NN IN JJ NNS TO VB NNS VBG CD NNS IN NNS IN RB JJ NNP JJ NNS . Prime Minister Dominique de Villepin told his monthly news conference Thursday the country must strive to make equality of opportunity a reality for everyone - with the focus on jobs and education . NNP NNP NNP NNP NNP VBD PRP$ JJ NN NN NNP DT NN MD VB TO VB NN IN NN DT NN IN DT : IN DT NN IN NNS CC NN . He pledged to direct more aid to education districts with mainly low-income populations , and he outlined plans for a contract of parental responsibility to ensure that parents are involved in their children 's education . PRP VBD TO VB JJR NN TO NN NNS IN RB JJ NNS , CC PRP VBD NNS IN DT NN IN JJ NN TO VB IN NNS VBP VBN IN PRP$ NNS POS NN . Mr. de Villepin also said acts of discrimination will be punishable by fines of up to $ 30,000 . NNP NNP NNP RB VBD NNS IN NN MD VB JJ IN NNS IN RB TO $ CD . The new measures follow the country 's worst civil unrest in almost 40 years . DT JJ NNS VBP DT NN POS JJS JJ NN IN RB CD NNS . The deaths in late October of two teenagers hiding from police near Paris set off the rioting . DT NNS IN JJ NNP IN CD NNS VBG IN NN IN NNP VBD RP DT NN . Top Iraqi officials greeted the new U.S. Ambassador to Iraq James Jeffery at a ceremony in Baghdad Wednesday . JJ JJ NNS VBD DT JJ NNP NN TO NNP NNP NNP IN DT NN IN NNP NNP . The ambassador presented his diplomatic credentials to Iraqi President Jalal Talabani and Foreign Minister Hoshyar Zebari . DT NN VBD PRP$ JJ NNS TO JJ NNP NNP NNP CC NNP NNP NNP NNP . Jeffery is a career diplomat who has served as the former ambassador to Turkey . NNP VBZ DT NN NN WP VBZ VBN IN DT JJ NN TO NNP . He previously served as special state department advisor for Iraq and as the deputy chief of mission in Baghdad . PRP RB VBD IN JJ NN NN NN IN NNP CC IN DT NN NN IN NN IN NNP . Jeffrey was appointed to the Iraqi post by the U.S. Senate earlier this month . NNP VBD VBN TO DT JJ NN IN DT NNP NNP RBR DT NN . His arrival comes two weeks before the U.S. is scheduled to end its combat mission in Iraq and with the Iraqi political process hamstrung over the formation of a ruling government coalition . PRP$ NN VBZ CD NNS IN DT NNP VBZ VBN TO VB PRP$ NN NN IN NNP CC IN DT JJ JJ NN NN IN DT NN IN DT NN NN NN . Jeffrey succeeds Christopher Hill who has retired from the U.S. foreign service . NNP VBZ NNP NNP WP VBZ VBN IN DT NNP JJ NN . A U.S. Navy plane was destroyed Tuesday when it overshot the runway at Bagram Air Base in Afghanistan . DT NNP NNP NN VBD VBN NNP WRB PRP VBD DT NN IN NNP NNP NNP IN NNP . U.S. military authorities say one crew member was slightly injured when the Navy P-3 Orion overshot the runway while landing at the base - the largest U.S. military facility in Afghanistan . NNP JJ NNS VBP CD NN NN VBD RB VBN WRB DT NNP NNP NNP VBD DT NN IN NN IN DT NN IN DT JJS NNP JJ NN IN NNP . Authorities at the base say the plane sustained serious structural and fire damage as a result of the crash . NNS IN DT NN VBP DT NN VBD JJ JJ CC NN NN IN DT NN IN DT NN . They say an investigation has begun into what caused the incident . PRP VBP DT NN VBZ VBN IN WP VBD DT NN . The P-3 Orion is a workhorse of the Naval aviation fleet and is used as a reconnaissance aircraft and for maritime and anti-submarine patrol activities . DT JJ NNP VBZ DT NN IN DT NNP NN NN CC VBZ VBN IN DT NN NN CC IN NN CC JJ NN NNS . India 's defense ministry says it has successfully tested a nuclear-capable ballistic missile from a ship near the east coast . NNP POS NN NN VBZ PRP VBZ RB VBN DT JJ JJ NN IN DT NN IN DT JJ NN . The Dhanush missile , developed by India , was fired Friday from a ship , the Subhadra , in the Bay of Bengal off the coast of Orissa . DT NNP NN , VBN IN NNP , VBD VBN NNP IN DT NN , DT NNP , IN DT NNP IN NNP IN DT NN IN NNP . It has a striking range of at least 250 kilometers . PRP VBZ DT JJ NN IN IN JJS CD NNS . The missile , which can carry both nuclear and conventional weapons , is a naval version of India 's surface-to-surface Prithvi . DT NN , WDT MD VB DT JJ CC JJ NNS , VBZ DT JJ NN IN NNP POS JJ NNP . Earlier this month , India 's nuclear rival , neighboring Pakistan , said it successfully test-fired a nuclear-capable cruise missile . RBR DT NN , NNP POS JJ NN , VBG NNP , VBD PRP RB VBD DT JJ NN NN . Pakistan and India often conduct such tests to demonstrate their defensive readiness . NNP CC NNP RB VBP JJ NNS TO VB PRP$ JJ NN . The two rivals normally give each other notice for long-range missile launches . DT CD NNS RB VBP DT JJ NN IN JJ NN NNS . World-renowned Russian choreographer Igor Moiseyev has died at the age of 101 . JJ JJ NN NNP NNP VBZ VBN IN DT NN IN CD . Russian news media reports say Moiseyev died Friday of heart failure in Moscow . JJ NN NNS NNS VBP NNP VBD NNP IN NN NN IN NNP . President Vladimir Putin expressed his condolences to relatives and colleagues . NNP NNP NNP VBD PRP$ NNS TO NNS CC NNS . Moiseyev established his professional folk dance group , the Moiseyev Dance Company , in 1937 and remained at its helm for six decades . NNP VBD PRP$ JJ NN NN NN , DT NNP NNP NNP , IN CD CC VBD IN PRP$ NN IN CD NNS . Soviet leaders favored the choreographer , although he was not a member of the Communist Party . JJ NNS VBD DT NN , IN PRP VBD RB DT NN IN DT NNP NNP . His dance group was one of the first permitted to travel abroad . PRP$ NN NN VBD CD IN DT JJ VBN TO VB RB . Moiseyev 's innovative choreography combined balletic movement with traditional folk steps . NNP POS JJ NN VBN JJ NN IN JJ NN NNS . His performances included acrobatic Caucasus mountain dances as well as American rock-and-roll . PRP$ NNS VBD JJ NNP NN NNS RB RB IN JJ NN . Audiences hailed them as promoting tolerance and appreciation for diverse cultures . NNS VBD PRP IN VBG NN CC NN IN JJ NNS . Iraqi police say a bomb exploded in a crowded animal market in central Baghdad Friday , killing at least 13 people . JJ NNS VBP DT NN VBD IN DT JJ NN NN IN JJ NNP NNP , VBG IN JJS CD NNS . Authorities say nearly 60 others were wounded in the blast , including several police officers . NNS VBP RB CD NNS VBD VBN IN DT NN , VBG JJ NNS NNS . The Souq al-Ghazl market in Baghdad also was bombed earlier this year . DT NNP JJ NN IN NNP RB VBD VBN RBR DT NN . In the northern city of Mosul , police say a suicide car bombing targeting a police patrol killed at least nine people , including at least three policemen . IN DT JJ NN IN NNP , NNS VBP DT NN NN VBG VBG DT NN NN VBD IN JJS CD NNS , VBG IN JJS CD NNS . Today 's explosions came amid a decrease in violence across the nation . NN POS NNS VBD IN DT NN IN NN IN DT NN . In separate news today , Polish Prime Minister Donald Tusk said his government will withdraw all of its troops from Iraq in 2008 . IN JJ NN NN , JJ NNP NNP NNP NNP VBD PRP$ NN MD VB DT IN PRP$ NNS IN NNP IN CD . Poland has about 900 soldiers in southern Iraq . NNP VBZ IN CD NNS IN JJ NNP . A Hungarian government spokesman says the deadly strain of bird flu virus has been found in the southern part of Hungary . DT JJ NN NN VBZ DT JJ NN IN NN NN NN VBZ VBN VBN IN DT JJ NN IN NNP . The spokesman , Andras Batiz , said Tuesday three wild swans found last week have tested positive for the H5N1 virus . DT NN , NNP NNP , VBD NNP CD JJ NNS VBN JJ NN VBP VBN JJ IN DT NNP NN . German veterinary officials Tuesday confirmed 22 new cases of flu in birds on the island of Ruegen bringing the total in the country to 103 . JJ JJ NNS NNP VBD CD JJ NNS IN NN IN NNS IN DT NN IN NNP VBG DT NN IN DT NN TO CD . The German government announced Monday the virus had spread to the mainland . DT JJ NN VBD NNP DT NN VBD VBN TO DT NN . One hundred three cases have now been found in wild birds in Germany . CD CD CD NNS VBP RB VBN VBN IN JJ NNS IN NNP . Croatia has confirmed the H5N1 virus in a wild swan found dead last week . NNP VBZ VBN DT NNP NN IN DT JJ NN VBN JJ JJ NN . France and the Netherlands are petitioning EU animal health experts so they can vaccinate their poultry . NNP CC DT NNP VBP VBG NNP NN NN NNS IN PRP MD VB PRP$ NN . Some EU countries are skeptical if such inoculations can ward off the deadly virus . DT NNP NNS VBP JJ IN JJ NNS MD VB RP DT JJ NN . Bird flu has killed more than 90 people since 2003 in Asia . NN NN VBZ VBN JJR IN CD NNS IN CD IN NNP . The stage is set for football 's World Cup in Germany , after the organizing committee approved the newly laid playing field at the stadium in Hanover . DT NN VBZ VBN IN NN POS NNP NNP IN NNP , IN DT NN NN VBD DT RB VBN NN NN IN DT NN IN NNP . With the approval of the Hanover field Wednesday , all 12 stadiums now have playing surfaces that fit the requirements of 25 percent rye grass and 75 percent Kentucky bluegrass . IN DT NN IN DT NNP NN NNP , DT CD NNS RB VBP NN NNS WDT VBP DT NNS IN CD NN NN NN CC CD NN NNP NN . Field preparations at the stadiums included more than 96,000 square meters of new turf . NN NNS IN DT NNS VBD JJR IN CD JJ NNS IN JJ NN . Organizers say the fields now will be mown , fertilized and watered in a what is billed as a ' carefully orchestrated program to bring the surfaces into perfect condition ' and to the approved height of 2.8 centimeters . NNS VBP DT NNS RB MD VB VBN , VBN CC VBN IN DT WP VBZ VBN IN DT `` RB VBN NN TO VB DT NNS IN JJ NN `` CC TO DT VBN NN IN CD NNS . Moroccan authorities say six African migrants were killed as hundreds of people tried to illegally enter a Spanish enclave in North Africa . JJ NNS VBP CD JJ NNS VBD VBN IN NNS IN NNS VBD TO RB VB DT JJ NN IN NNP NNP . They described the migrants as extraordinarily violent in their Thursday attempt to scale the razor-wire fence surrounding Melilla . PRP VBD DT NNS IN RB JJ IN PRP$ NNP NN TO VB DT JJ NN VBG NNP . Moroccan police arrested 290 people during the incident - the latest of almost daily attempts to enter Melilla or Ceuta , the other Spanish enclave bordering Morocco , in hope of making it to the European Union . JJ NN VBN CD NNS IN DT NN IN DT JJS IN RB JJ NNS TO VB NNP CC NNP , DT JJ JJ NN VBG NNP , IN NN IN VBG PRP TO DT NNP NNP . Five immigrants died last week trying to enter Ceuta . CD NNS VBD JJ NN VBG TO VB NNP . But Spanish officials say their troops were not responsible because they did not use live ammunition . CC JJ NNS VBP PRP$ NNS VBD RB JJ IN PRP VBD RB VB JJ NN . Spanish Prime Minister Jose Luis Rodriguez Zapatero has called on the European Union to boost economic cooperation with Africa to help stem the flow of economic immigrants from the continent . JJ NNP NNP NNP NNP NNP NNP VBZ VBN IN DT NNP NNP TO VB JJ NN IN NNP TO VB VB DT NN IN JJ NNS IN DT NN . Spain is also starting to return to Morocco any Africans who make it into the enclave . NNP VBZ RB VBG TO VB TO NNP DT NNS WP VBP PRP IN DT NN . Iraq 's female politicians plan to push for more positions in Prime Minister Nouri al-Maliki 's new Cabinet , which includes only one woman . NNP POS JJ NNS VBP TO VB IN JJR NNS IN NNP NNP NNP NNP POS JJ NNP , WDT VBZ RB CD NN . Female lawmakers say they will petition Iraq 's top leaders and international organizations for more Cabinet posts . NNP NNS VBP PRP MD VB NNP POS JJ NNS CC JJ NNS IN JJR NNP NNS . The Cabinet Maliki unveiled Tuesday allocated two posts for women . DT NNP NNP VBD NNP VBD CD NNS IN NNS . One woman leads a ministry with no job description , no office and no budget . CD NN VBZ DT NN IN DT NN NN , DT NN CC DT NN . The other , a Kurdish lawmaker , was offered the women 's affairs post but turned it down . DT JJ , DT NNP NN , VBD VBN DT NNS POS NNS NN CC VBD PRP RP . In approving the new government Tuesday , Iraq 's parliament filled 29 of the 42 Cabinet positions . IN VBG DT JJ NN NNP , NNP POS NN VBD CD IN DT CD NNP NNS . ' Acting ministers ' comprise the 13 remaining posts until permanent successors are accepted by parliament . `` VBG NNS `` VBP DT CD VBG NNS IN JJ NNS VBP VBN IN NN . Approval of the new Cabinet potentially ends a nine-month political stalemate following inconclusive elections in March . NNP IN DT JJ NNP RB VBZ DT JJ JJ NN VBG JJ NNS IN NNP . The Cabinet held its first meeting on Wednesday . DT NNP VBD PRP$ JJ NN IN NNP . Published reports say four Turkish soldiers have been killed in fighting with Kurdish rebels in southeastern Turkey . JJ NNS VBP CD JJ NNS VBP VBN VBN IN VBG IN JJ NNS IN JJ NNP . The reports say the soldiers were killed Tuesday in the southeastern province of Sirnak , near the Iraqi border . DT NNS VBP DT NNS VBD VBN NNP IN DT JJ NN IN NNP , IN DT JJ NN . Kurdistan Workers ' Party rebels have carried out a series of deadly attacks on Turkish troops in southeastern Turkey in recent weeks . NNP NNP POS NNP NNS VBP VBN RP DT NN IN JJ NNS IN JJ NNS IN JJ NNP IN JJ NNS . Turkey has threatened to launch a military operation in northern Iraq to attack PKK rebels who take refuge there . NNP VBZ VBN TO VB DT JJ NN IN JJ NNP TO VB NNP NNS WP VBP NN RB . Meanwhile , there are conflicting reports about a Turkish aerial incursion into northern Iraq today . RB , EX VBP VBG NNS IN DT JJ JJ NN IN JJ NNP NN . Some reports quote Iraqi Kurdish officials and witnesses as saying Turkish aircraft bombed abandoned villages near the Turkish border , without causing casualties . DT NNS VBP JJ NNP NNS CC NNS IN VBG JJ NN VBD VBN NNS IN DT JJ NN , IN VBG NNS . Another report quotes an Iraqi Kurdish official as saying Turkish aircraft only dropped flares in the area . DT NN VBZ DT JJ NNP NN IN VBG JJ NN RB VBD NNS IN DT NN . Turkish Prime Minister Recep Tayyip Erdogan said today that he is not aware of any Turkish air strikes in northern Iraq . JJ NNP NNP NNP NNP NNP VBD NN IN PRP VBZ RB JJ IN DT JJ NN NNS IN JJ NNP . Two leading U.S. senators say the plan to raise U.S. troop strength in Iraq ahead of elections there falls short of what is needed . CD VBG NNP NNS VBP DT NN TO VB NNP NN NN IN NNP RB IN NNS EX VBZ NN IN WP VBZ VBN . In interviews Sunday , Senators John McCain of Arizona and Joe Biden of Delaware both expressed doubt that an additional 12,000 troops would be enough . IN NNS NNP , NNP NNP NNP IN NNP CC NNP NNP IN NNP DT VBD NN IN DT JJ CD NNS MD VB RB . The military 's plan , announced Wednesday , is aimed at improving security in time for Iraq 's January 30th elections . DT NN POS NN , VBN NNP , VBZ VBN IN VBG NN IN NN IN NNP POS NNP JJ NNS . On ABC television 's This Week program , Senator Biden said he is concerned that ' civil chaos ' could derail the elections in Sunni Muslim areas . IN NNP NN POS DT NN NN , NNP NNP VBD PRP VBZ VBN IN `` JJ NN `` MD VB DT NNS IN NNP NNP NNS . And on the television program FOX News Sunday , Mr. McCain accused the military of letting insurgents in Iraq take the initiative . CC IN DT NN NN NNP NNP NNP , NNP NNP VBD DT NN IN VBG NNS IN NNP VBP DT NN . The plan will take U.S. troops strength in Iraq up to 1,50,000 . DT NN MD VB NNP NNS NN IN NNP IN TO CD . Saturday , U.S. General John Abizaid said the increase was necessary because Iraqi security forces need more training . NNP , NNP NNP NNP NNP VBD DT NN VBD JJ IN JJ NN NNS VBP JJR NN . United States national team captain Claudio Reyna has retired from international soccer , one day after his team was eliminated from the World Cup in Germany . NNP NNPS JJ NN NN NNP NNP VBZ VBN IN JJ NN , CD NN IN PRP$ NN VBD VBN IN DT NNP NNP IN NNP . Reyna , who has been the U.S. captain for almost eight years , made the announcement Friday . NNP , WP VBZ VBN DT NNP NN IN RB CD NNS , VBD DT NN NNP . On Thursday , his final World Cup game ended with a disappointing loss and injury . IN NNP , PRP$ JJ NNP NNP NN VBD IN DT JJ NN CC NN . The United States finished last in Group-E with one point after losing 02-Jan to Ghana on Thursday . DT NNP NNPS VBD JJ IN NNP IN CD NN IN VBG CD TO NNP IN NNP . Reyna sprained a ligament in his left knee in the first half , losing the ball in a challenge that led to Ghana 's first goal . NNP VBD DT NN IN PRP$ NN NN IN DT JJ NN , VBG DT NN IN DT NN WDT VBD TO NNP POS JJ NN . The U.S. captain played a key role in the team 's run to the quarterfinals at the 2002 World Cup in South Korea and Japan . DT NNP NN VBD DT JJ NN IN DT NN POS NN TO DT NNS IN DT CD NNP NNP IN NNP NNP CC NNP . Reyna scored eight goals in 112 appearances with the U.S. team . NNP VBD CD NNS IN CD NNS IN DT NNP NN . He plans to continue to play club football with Manchester City in England . PRP VBZ TO VB TO VB NN NN IN NNP NNP IN NNP . Some 100 people have been killed in and around Baghdad in one of the bloodiest days in Iraq in weeks . DT CD NNS VBP VBN VBN IN CC IN NNP IN CD IN DT JJS NNS IN NNP IN NNS . In the deadliest attack Tuesday , a double bombing near a university killed at least 65 people and wounded more than 100 others . IN DT JJS NN NNP , DT JJ NN IN DT NN VBN IN JJS CD NNS CC VBD JJR IN CD NNS . Iraqi Prime Minister Nouri al-Maliki blamed the attack on what he called ' terrorists and Saddamists . ' JJ NNP NNP NNP NNP VBD DT NN IN WP PRP VBD `` NNS CC NNS . `` He linked the bombings to the executions on Monday of two former officials from Saddam Hussein 's ousted government . PRP VBD DT NNS TO DT NNS IN NNP IN CD JJ NNS IN NNP NNP POS JJ NN . Meanwhile , the U.S. military said a roadside bombing killed four American soldiers Monday in northern Iraq . RB , DT NNP NN VBD DT NN VBG VBN CD JJ NNS NNP IN JJ NNP . And a top U.N. official in Baghdad , Gianni Magazzeni , announced that more than 34,000 Iraqi civilians were killed and more than 36,000 wounded in violence last year . CC DT JJ NNP NN IN NNP , NNP NNP , VBD IN JJR IN CD JJ NNS VBD VBN CC JJR IN CD VBN IN NN JJ NN . The figures are much higher than Iraqi government estimates . DT NNS VBP RB JJR IN JJ NN NNS . Magazzeni said the situation is particularly grave in Baghdad , where most casualties and unidentified bodies are recorded daily . NNP VBD DT NN VBZ RB JJ IN NNP , WRB RBS NNS CC JJ NNS VBP VBN RB . Hopes are fading that rescuers will find more survivors in the rubble of a five-story building that collapsed in Nairobi , Kenya on Monday . NNS VBP VBG IN NNS MD VB JJR NNS IN DT NN IN DT JJ NN WDT VBD IN NNP , NNP IN NNP . Rescue teams continue to cut through piles of concrete and metal , but they have not pulled out any more survivors after saving at least three on Tuesday . NN NNS VBP TO VB IN NNS IN NN CC NN , CC PRP VBP RB VBN RP DT JJR NNS IN VBG IN JJS CD IN NNP . Kenyan government spokesman Alfred Mutua says rescuers are no longer hearing any signs of life from under the wreckage . JJ NN NN NNP NNP VBZ NNS VBP RB RB VBG DT NNS IN NN IN IN DT NN . Officials say 13 people are confirmed to have died in the collapse , but they predict the death toll will rise . NNS VBP CD NNS VBP VBN TO VB VBN IN DT NN , CC PRP VBP DT NN NN MD VB . An unknown number of laborers were inside the building , which was still under construction when it suddenly collapsed Monday afternoon . DT JJ NN IN NNS VBD IN DT NN , WDT VBD RB IN NN WRB PRP RB VBD NNP NN . More than 100 people were injured in the collapse , which officials have blamed on poor construction and government negligence . JJR IN CD NNS VBD VBN IN DT NN , WDT NNS VBP VBN IN JJ NN CC NN NN . An Indian company , eChoupal , has been selected to receive this year 's Development Gateway Award for its use of technology to make agricultural information available to farmers in rural India . DT JJ NN , NNP , VBZ VBN VBN TO VB DT NN POS NNP NNP NNP IN PRP$ NN IN NN TO VB JJ NN JJ TO NNS IN JJ NNP . eChoupal received the $ 1,00,000 award Friday at a forum in Beijing co-hosted by the Chinese government and the World Bank . NNP VBD DT $ CD NN NNP IN DT NN IN NNP VBN IN DT JJ NN CC DT NNP NNP . eChoupal installed more than 5,000 computer kiosks in villages around India where farmers could use them to learn management techniques , order fertilizer less expensively , and monitor market prices . NNP VBD JJR IN CD NN NNS IN NNS IN NNP WRB NNS MD VB PRP TO VB NN NNS , NN NN RBR RB , CC NN NN NNS . The Development Gateway Award recognizes efforts to use information technology to enhance the quality of life in communities around the world . DT NNP NNP NNP VBZ NNS TO VB NN NN TO VB DT NN IN NN IN NNS IN DT NN . eChoupal was selected from among 135 nominees for the award . NNP VBD VBN IN IN CD NNS IN DT NN . Iraqi police have arrested at least two suspects Thursday and recovered millions of dollars from a bank robbery that left eight guards dead . JJ NNS VBP VBN IN JJS CD NNS NNP CC VBD NNS IN NNS IN DT NN NN WDT VBD CD NNS JJ . Officials in Baghdad say police raided the home of an Iraqi soldier where they found the stolen money . NNS IN NNP VBP NNS VBD DT NN IN DT JJ NN WRB PRP VBD DT JJ NN . Reports vary as to the total amount stolen and whether all or only part was recovered . NNS VBP IN TO DT JJ NN VBN CC IN DT CC RB NN VBD VBN . But officials say at least several million dollars have been returned to the bank . CC NNS VBP IN JJS JJ CD NNS VBP VBN VBN TO DT NN . The money was stolen from the Rafidain bank in Baghdad 's Karrada district on Tuesday . DT NN VBD VBN IN DT NNP NN IN NNP POS NNP NN IN NNP . Eight security guards were shot and killed during the robbery . CD NN NNS VBD VBN CC VBN IN DT NN . The heist came only two days after gunmen opened fire at a money exchange office in the same area , killing at least three people . DT NN VBD RB CD NNS IN NNS VBD NN IN DT NN NN NN IN DT JJ NN , VBG IN JJS CD NNS . A radical Muslim cleric on trial in London on charges of advocating murder of non-Muslims has denied inciting any killings . DT JJ NN NN IN NN IN NNP IN NNS IN VBG NN IN NNP VBZ VBN VBG DT NNS . Abu Hamza al-Masri took the stand stressing opposition to racism . NNP NNP NNP VBD DT NN VBG NN TO NN . When his lawyers asked if he had advocated killings he replied he did not advocate murder but supported what he termed combat . WRB PRP$ NNS VBD IN PRP VBD VBN NNS PRP VBD PRP VBD RB VB NN CC VBD WP PRP VBD NN . The attorney then mentioned Afghanistan . DT NN RB VBD NNP . The defendant is the former chief preacher at Finsbury Park mosque in north London . DT NN VBZ DT JJ NN NN IN NNP NNP NN IN JJ NNP . He faces at least 15 charges that include stirring racial hatred , as well as possession of threatening recordings and a terrorist document . PRP VBZ IN JJS CD NNS WDT VBP VBG JJ NN , RB RB IN NN IN JJ NNS CC DT JJ NN . The Egyptian-born cleric , who gained international notoriety for his fiery sermons , has denied any role in terrorism . DT JJ NN , WP VBD JJ NN IN PRP$ NN NNS , VBZ VBN DT NN IN NN . The United States has sought to extradite him on terrorism charges . DT NNP NNP VBZ VBN TO VB PRP IN NN NNS . Abu Hamza al-Masri says he lost both hands and an eye fighting Soviet forces in Afghanistan in the 1980s . NNP NNP NNP VBZ PRP VBD DT NNS CC DT NN VBG JJ NNS IN NNP IN DT NNS . The U.S. military in Iraq says at least six Iraqi policemen were killed in a car bomb explosion in the northern town of Tikrit Tuesday . DT NNP NN IN NNP VBZ IN JJS CD JJ NNS VBD VBN IN DT NN NN NN IN DT JJ NN IN NNP NNP . Officials say several policemen were also wounded in the attack believed to have been carried out by a suicide bomber . NNS VBP JJ NNS VBD RB VBN IN DT NN VBN TO VB VBN VBN RP IN DT NN NN . Separately , at least seven people were killed in a small town south of Baghdad . RB , IN JJS CD NNS VBD VBN IN DT JJ NN NN IN NNP . The victims were passengers of a minibus passing through an area known as the ' triangle of death . ' DT NNS VBD NNS IN DT NN VBG IN DT NN VBN IN DT `` NN IN NN . `` The killings were the latest in a wave of attacks across Iraq , as insurgents pressed on with their campaign of violence ahead of the country 's January 30 election . DT NNS VBD DT JJS IN DT NN IN NNS IN NNP , IN NNS VBN IN IN PRP$ NN IN NN RB IN DT NN POS NNP CD NN . Hurricane Danielle is picking up strength over the Atlantic Ocean , and weather forecasters say it could soon become a major storm . NNP NNP VBZ VBG RP NN IN DT NNP NNP , CC NN NNS VBP PRP MD RB VB DT JJ NN . The U.S. National Hurricane Center in Miami says Danielle is now a Category Two hurricane on the five-point scale of hurricane strength , with sustained winds of nearly 165 kilometers per hour . DT NNP NNP NNP NNP IN NNP VBZ NNP VBZ RB DT NNP CD NN IN DT JJ NN IN NN NN , IN JJ NNS IN RB CD NNS IN NN . At last report , Danielle was about 1,000 kilometers northeast of the Northern Leeward Islands and moving toward Bermuda . IN JJ NN , NNP VBD IN CD NNS NN IN DT NNP NNP NNP CC VBG IN NNP . Farther east over the Atlantic , the winds of Tropical Storm Earl are at nearly 75 kilometers per hour . NNP RB IN DT NNP , DT NNS IN NNP NNP NNP VBP IN RB CD NNS IN NN . The National Hurricane Center says the storm is expected to get stronger and could become a hurricane by Saturday . DT NNP NNP NNP VBZ DT NN VBZ VBN TO VB JJR CC MD VB DT NN IN NNP . Meanwhile , in the Pacific , Hurricane Frank is expected to start weakening Friday . RB , IN DT NNP , NNP NNP VBZ VBN TO VB VBG NNP . Frank earlier soaked Mexico 's southern coast , where heavy rains killed four people . NNP RB VBD NNP POS JJ NN , WRB JJ NNS VBD CD NNS . The U.S. space agency NASA is marking Saturday 's 20th anniversary of the Challenger space shuttle tragedy , which took the lives of seven astronauts . DT NNP NN NN NNP VBZ VBG NNP POS JJ NN IN DT NNP NN NN NN , WDT VBD DT NNS IN CD NNS . Families of the astronauts will take part in a ceremony at the Kennedy Space Center in Cape Canaveral , Florida , where Challenger was launched . NNS IN DT NNS MD VB NN IN DT NN IN DT NNP NNP NNP IN NNP NNP , NNP , WRB NNP VBD VBN . Among those on board was high school teacher Christa McAuliffe . IN DT IN NN VBD JJ NN NN NNP NNP . After a successful liftoff in near freezing temperatures and clear , blue skies , Challenger exploded into a huge fireball 73 seconds into flight as people across the world watched on television . IN DT JJ NN IN JJ JJ NNS CC JJ , JJ NNS , NNP VBD IN DT JJ NN CD NNS IN NN IN NNS IN DT NN VBD IN NN . The cause of the explosion was a poorly designed seal in the shuttle 's solid rocket booster . DT NN IN DT NN VBD DT RB VBN NN IN DT NN POS JJ NN NN . Three years ago , the space shuttle Columbiadisintegred while re-entering earth 's atmosphere , killing another seven astronauts and causing the temporary grounding of the shuttle fleet . CD NNS RB , DT NN NN VBN IN VBG NN POS NN , VBG DT CD NNS CC VBG DT JJ NN IN DT NN NN . Australia says it will end its military 's humanitarian mission in Indonesia 's tsunami-ravaged Aceh province on Friday . NNP VBZ PRP MD VB PRP$ NN POS JJ NN IN NNP POS JJ NNP NN IN NNP . In a statement released Thursday , Australian Defense Minister Robert Hill said the military 's primary mission to restore hospital services , water and other infrastructure has been achieved . IN DT NN VBN NNP , NNP NNP NNP NNP NNP VBD DT NN POS JJ NN TO VB NN NNS , NN CC JJ NN VBZ VBN VBN . He said the last navy vessel will leave Indonesian waters Friday . PRP VBD DT JJ NN NN MD VB JJ NNS NNP . Meanwhile , the United Nations Refugee Agency says it will also cease operations in Aceh by Friday . RB , DT NNP NNP NNP NNP VBZ PRP MD RB VB NNS IN NNP IN NNP . The U.N. High Commissioner for Refugees said Thursday it had hoped to complete a $ 60 million relief plan for the province , but that the Indonesian government said its help was no longer needed . DT NNP NNP NNP IN NNP VBD NNP PRP VBD VBN TO VB DT $ CD CD NN NN IN DT NN , CC IN DT JJ NN VBD PRP$ NN VBD RB RB VBN . Both groups were part of the huge international effort that followed the December 26 undersea earthquake and tsunami that killed over 2,30,000 people around the Indian Ocean . DT NNS VBD NN IN DT JJ JJ NN WDT VBD DT NNP CD NN NN CC NN WDT VBD IN CD NNS IN DT NNP NNP . British sports officials have projected that the country 's athletes in Beijing will bring home the most medals at an Olympics since 1920 . JJ NNS NNS VBP VBN IN DT NN POS NNS IN NNP MD VB NN DT RBS NNS IN DT NNP IN CD . UK Sport said Wednesday they believe British athletes should win around 35 medals , including 10-Dec gold . NNP NNP VBD NNP PRP VBP JJ NNS MD VB IN CD NNS , VBG JJ NN . That would work out to eighth place in the medals standings , two spots higher than their 10th place finish at the Athens Games in 2004 . DT MD VB RP TO JJ NN IN DT NNS NNS , CD NNS JJR IN PRP$ JJ NN NN IN DT NNP NNPS IN CD . The country 's strongest showings are expected in cycling , athletics , sailing and rowing , with 19 medals from those four disciplines . DT NN POS JJS NNS VBP VBN IN NN , NNS , NN CC NN , IN CD NNS IN DT CD NNS . UK Sport chief executive John Steele says the targets are ' ambitious . ' NNP NNP NN NN NNP NNP VBZ DT NNS VBP `` JJ . `` He believes the way Britain performs against the 2008 targets will demonstrate how close it is to reaching the long-term goal of fourth place at the 2012 London Games . PRP VBZ DT NN NNP VBZ IN DT CD NNS MD VB WRB JJ PRP VBZ TO VBG DT JJ NN IN JJ NN IN DT CD NNP NNPS . A former Argentine military officer has gone on trial in Madrid , Spain , accused of committing human rights abuses during his country 's so called ' dirty war ' more than two decades ago . DT JJ JJ NN NN VBZ VBN IN NN IN NNP , NNP , VBN IN VBG JJ NNS NNS IN PRP$ NN POS RB VBN `` JJ NN `` JJR IN CD NNS RB . Adolfo Scilingo is alleged to have dumped drugged dissidents from military helicopters into the ocean . NNP NNP VBZ VBN TO VB VBN JJ NNS IN JJ NNS IN DT NN . Mr. Scilingo , who went to Spain in 1997 , had earlier confessed , becoming one of the first officers to openly admit such atrocities occurred during Argentina 's brutal 1976 - 1983 crackdown on leftists . NNP NNP , WP VBD TO NNP IN CD , VBD RBR VBN , VBG CD IN DT JJ NNS TO RB VB JJ NNS VBD IN NNP POS JJ CD : CD NN IN NNS . But he later recanted and recently went on a hunger strike to protest his imprisonment and trial . CC PRP RB VBD CC RB VBD IN DT NN NN TO VB PRP$ NN CC NN . Spanish prosecutors are trying the case under a law that allows Spain 's courts to act against suspected human rights violators , even if the alleged crimes were committed in other countries . JJ NNS VBP VBG DT NN IN DT NN WDT VBZ NNP POS NNS TO VB IN VBN JJ NNS NNS , RB IN DT JJ NNS VBD VBN IN JJ NNS . The office of the Israeli prime minister says a visit to Israel by the foreign ministers of Egypt and Jordan will take place July 25 , not this week as previously planned . DT NN IN DT JJ JJ NN VBZ DT NN TO NNP IN DT JJ NNS IN NNP CC NNP MD VB NN NNP CD , RB DT NN IN RB VBN . Ehud Olmert 's office gave no reason for the postponement . NNP NNP POS NN VBD DT NN IN DT NN . The Egyptian and Jordanian ministers are making the trip on behalf of the 22-nation Arab League to discuss reviving an Arab peace initiative with Mr. Olmert . DT JJ CC JJ NNS VBP VBG DT NN IN NN IN DT JJ NNP NNP TO VB VBG DT JJ NN NN IN NNP NNP . The initiative includes offering Israel normal relations with all Arab countries in exchange for an Israeli withdrawal from all lands captured during the 1967 war . DT NN VBZ VBG NNP JJ NNS IN DT JJ NNS IN NN IN DT JJ NN IN DT NNS VBN IN DT CD NN . A U.S. aid organization says one of its American workers in Iraq and three other people were killed in an ambush Wednesday in Baghdad . DT NNP NN NN VBZ CD IN PRP$ JJ NNS IN NNP CC CD JJ NNS VBD VBN IN DT JJ NNP IN NNP . An official in Washington with the National Democratic Institute , Leslie Campbell , says the American and three security personnel , including an Iraqi , a Croatian and a Hungarian , were killed in the attack . DT NN IN NNP IN DT NNP NNP NNP , NNP NNP , VBZ DT NNP CC CD NN NNS , VBG DT NN , DT NN CC DT NN , VBD VBN IN DT NN . He said it is not clear who carried out the attack . PRP VBD PRP VBZ RB JJ WP VBD RP DT NN . The National Democratic Institute is a non-profit organization that is providing training and advice to Iraqi political parties , civil groups and parliamentarians . DT NNP NNP NNP VBZ DT JJ NN WDT VBZ VBG NN CC NN IN JJ JJ NNS , JJ NNS CC NNS . Campbell says the group has no immediate plans to end its mission in Iraq , but he says the situation will be re-assessed in light of the attack . NNP VBZ DT NN VBZ DT JJ NNS TO VB PRP$ NN IN NNP , CC PRP VBZ DT NN MD VB VBN IN NN IN DT NN . Iraqi officials say a roadside bomb blast in Baghdad has killed at least two security officers . JJ NNS VBP DT NN NN NN IN NNP VBZ VBN IN JJS CD NN NNS . Authorities say at least two others were wounded in the explosion early Saturday in the eastern section of the capital . NNS VBP IN JJS CD NNS VBD VBN IN DT NN JJ NNP IN DT JJ NN IN DT NN . Also in Baghdad , police say a top police officer was unharmed when a roadside bomb exploded near his vehicle , but at least one person was killed and another was wounded . RB IN NNP , NNS VBP DT JJ NN NN VBD VBN WRB DT NN NN VBD IN PRP$ NN , CC IN JJS CD NN VBD VBN CC DT VBD VBN . The U.S. military says a roadside bomb in the city today killed a U.S. soldier . DT NNP NN VBZ DT NN NN IN DT NN NN VBD DT NNP NN . Police report they found the bound and blindfolded bodies of two unidentified men in Baghdad who had been shot . NNS VBP PRP VBD DT VBN CC VBN NNS IN CD JJ NNS IN NNP WP VBD VBN VBN . In another development , British military officials in southern Iraq said today two Macedonian contract workers were kidnapped Thursday near Basra . IN DT NN , JJ JJ NNS IN JJ NNP VBD NN CD JJ NN NNS VBD VBN NNP IN NNP . In place of the cult of personality that the Communist Party built around Chairman Mao , the Chinese are embracing a new cult : celebrity . IN NN IN DT NN IN NN IN DT NNP NNP VBD IN NNP NNP , DT NNS VBP VBG DT JJ NN IN NN . No Chinese person is more famous now than basketball player and NBA All-Star , Yao Ming , who is headlining China 's Olympic basketball team . DT JJ NN VBZ RBR JJ RB IN NN NN CC NNP NNP , NNP NNP , WP VBZ VBG NNP POS NNP NN NN . Mandy Clark reports from Beijing . NNP NNP VBZ IN NNP . Egyptian citizens in a number of provinces are voting Sunday in the second round of parliamentary elections . JJ NNS IN DT NN IN NNS VBP VBG NNP IN DT JJ NN IN JJ NNS . More than 1,700 candidates are competing in 72 constituencies in the nine second- round provinces . JJR IN CD NNS VBP VBG IN CD NNS IN DT CD JJ NN NNS . The first round of voting , centered on Cairo , ended Wednesday amid accusations from monitoring organizations and opposition parties of widespread irregularities . DT JJ NN IN NN , VBD IN NNP , VBD NNP IN NNS IN NN NNS CC NN NNS IN JJ NNS . Officials say the ruling National Democratic Party won 112 of the 454 parliament seats in the first round . NNS VBP DT NN NNP NNP NNP VBD CD IN DT CD NN NNS IN DT JJ NN . Candidates associated with the banned Muslim Brotherhood won 34 seats , more than doubling its presence . NNS VBN IN DT VBN NNP NNP VBD CD NNS , JJR IN VBG PRP$ NN . Meanwhile , leaders of the banned group say police arrested about 200 of its members before polling began today . RB , NNS IN DT VBN NN VBP NNS VBN IN CD IN PRP$ NNS IN VBG VBD NN . Brotherhood Essam el-Erian says the arrests indicate ruling party interference in the election . NNP NNP NNP VBZ DT NNS VBP VBG NN NN IN DT NN . The third and final stage of voting is set for December 1 . DT JJ CC JJ NN IN NN VBZ VBN IN NNP CD . Serbia has submitted to the U.N. General Assembly a draft resolution that seeks new dialogue on Kosovo , but does not call for the reopening of status talks on its former province . NNP VBZ VBN TO DT NNP NNP NNP DT NN NN WDT VBZ JJ NN IN NNP , CC VBZ RB VB IN DT NN IN NN NNS IN PRP$ JJ NN . Instead , the Serbian Foreign Ministry said Wednesday on its Web site that Belgrade wants the General Assembly to call on both sides to find ' mutually acceptable solutions for all outstanding issues through peaceful dialogue . ' RB , DT JJ NNP NNP VBD NNP IN PRP$ NNP NN IN NNP VBZ DT NNP NNP TO VB IN DT NNS TO VB `` RB JJ NNS IN DT JJ NNS IN JJ NN . `` The resolution comes less than a week after the world body 's International Court of Justice ruled that Kosovo 's unilateral 2008 declaration of independence was legal under international law . DT NN VBZ JJR IN DT NN IN DT NN NN POS NNP NNP IN NNP VBD IN NNP POS JJ CD NN IN NN VBD JJ IN JJ NN . Immediately after last Thursday 's ruling , Serbian President Boris Tadic said Serbia would keep trying to get Kosovo back using all peaceful and legal means . RB IN JJ NNP POS NN , JJ NNP NNP NNP VBD NNP MD VB VBG TO VB NNP RB VBG DT JJ CC JJ NNS . The Belgrade government said Monday it expects 55 more countries to join the 69 that have already recognized Kosovo 's independence . DT NNP NN VBD NNP PRP VBZ CD JJR NNS TO VB DT CD WDT VBP RB VBN NNP POS NN . U.S.-led coalition forces clashed Sunday with Taleban militants in the country 's southern Helmand province . JJ NN NNS VBN NNP IN NNP NNS IN DT NN POS JJ NNP NN . Military officials say at least 10 insurgents were killed when coalition air strikes hit militant positions during an early morning operation in the Garmser district . JJ NNS VBP IN JJS CD NNS VBD VBN WRB NN NN NNS VBD JJ NNS IN DT JJ NN NN IN DT NNP NN . Coalition and Afghan forces have been fighting Taleban insurgents since 2001 , when a U.S.-led invasion drove the Islamic group from power . NN CC JJ NNS VBP VBN VBG NNP NNS IN CD , WRB DT JJ NN VBD DT JJ NN IN NN . Militant attacks in southern and eastern Afghanistan have escalated over the past 19 months , marking the bloodiest period since the beginning of the war . JJ NNS IN JJ CC JJ NNP VBP VBN IN DT JJ CD NNS , VBG DT JJS NN IN DT NN IN DT NN . Saddam Hussein 's former deputy prime minister says that U.S. interrogators have questioned him about whether French President Jacques Chirac or other leaders benefited from the former United Nations oil-for-food program in Iraq . NNP NNP POS JJ JJ JJ NN VBZ IN NNP NNS VBP VBN PRP IN IN JJ NNP NNP NNP CC JJ NNS VBD IN DT JJ NNP NNPS NN NN IN NNP . The British Observer newspaper published the letters Sunday in which it says Tariq Aziz also complains of his treatment in U.S. custody . DT JJ NNP NN VBD DT NNS NNP IN WDT PRP VBZ NNP NNP RB VBZ IN PRP$ NN IN NNP NN . Mr. Aziz wrote that when he was asked if he had recommended giving ' kickbacks ' to Mr. Chirac or other international leaders , he said ' my answer is no . ' NNP NNP VBD IN WRB PRP VBD VBN IN PRP VBD VBN VBG `` NNS `` TO NNP NNP CC JJ JJ NNS , PRP VBD `` PRP$ NN VBZ DT . `` Mr. Aziz also complained that he was being held unjustly - claiming that ' we have no meetings or telephone contacts with our families . ' NNP NNP RB VBD IN PRP VBD VBG VBN RB : VBG IN `` PRP VBP DT NNS CC NN NNS IN PRP$ NNS . `` He faces charges that include crimes against Iraq 's Kurdish and Shi'ite communities . PRP VBZ NNS WDT VBP NNS IN NNP POS NNP CC NNP NNS . The Observer says the letters in English and Arabic were written on pages from the diary of his lawyer , who was with him while he was being questioned . DT NNP VBZ DT NNS IN NNP CC NNP VBD VBN IN NNS IN DT NN IN PRP$ NN , WP VBD IN PRP IN PRP VBD VBG VBN . U.S. President George Bush Tuesday signed a bill that allows Nelson Mandela to enter the United States without special clearance . NNP NNP NNP NNP NNP VBD DT NN WDT VBZ NNP NNP TO VB DT NNP NNPS IN JJ NN . The measure officially removes Mr. Mandela and his African National Congress from a U.S. terror watch list . DT NN RB VBZ NNP NNP CC PRP$ NNP NNP NNP IN DT NNP NN NN NN . The former South African president may now visit the United States without the U.S. secretary of state having to certify that he is not a terrorist . DT JJ NNP NNP NN MD RB VB DT NNP NNPS IN DT NNP NN IN NN VBG TO VB IN PRP VBZ RB DT JJ . Mr. Mandela was placed on the list because of his work with the African National Congress ( ANC ) , which fought to end white minority rule in South Africa . NNP NNP VBD VBN IN DT NN IN IN PRP$ NN IN DT NNP NNP NNP LRB NNP RRB , WDT VBD TO VB JJ NN NN IN NNP NNP . Mr. Mandela spent 27 years in prison for his work with the ANC to fight apartheid rule in South Africa . NNP NNP VBD CD NNS IN NN IN PRP$ NN IN DT NNP TO VB NN NN IN NNP NNP . The Nobel Peace Prize winner turns 90 on July 18 . DT NNP NNP NNP NN VBZ CD IN NNP CD . An Israeli aircraft has fired a missile at a target in the Gaza Strip . DT JJ NN VBZ VBN DT NN IN DT NN IN DT NNP NNP . Witnesses say an Israeli helicopter gunship fired the missile at a building housing the offices of an Islamic charity . NNS VBP DT JJ NN NN VBD DT NN IN DT NN NN DT NNS IN DT JJ NN . The Israeli military says the attack targeted an office of a militant group in Gaza city . DT JJ NN VBZ DT NN VBD DT NN IN DT JJ NN IN NNP NN . There were no reports of casualties . EX VBD DT NNS IN NNS . The attack was the latest in a series of Israeli strikes that began Saturday after Palestinian militants in Gaza fired three rockets into southern Israel . DT NN VBD DT JJS IN DT NN IN JJ NNS WDT VBD NNP IN JJ NNS IN NNP VBD CD NNS IN JJ NNP . Earlier , Israel accused the Palestinian Authority of allowing wanted terrorists to cross into Gaza from Egypt in violation of the security agreement brokered by the United States last month . RB , NNP VBD DT JJ NNP IN VBG JJ NNS TO VB IN NNP IN NNP IN NN IN DT NN NN VBN IN DT NNP NNPS JJ NN . Palestinian security officials admit some militants have crossed the border , but say Israel 's demand that they be kept out is not part of the agreement . JJ NN NNS VBP DT NNS VBP VBN DT NN , CC VBP NNP POS NN IN PRP VB VBN RP VBZ RB NN IN DT NN . Egyptians walk by a giant poster of President Hosni Mubarak that says : ' We support you , we pledge our allegiance to you ' Egyptian police have arrested 25 more members of the outlawed Muslim Brotherhood , including one of the opposition group 's top leaders . NNS VBN IN DT JJ NN IN NNP NNP NNP IN VBZ : `` PRP VBP PRP , PRP NN PRP$ NN TO PRP `` JJ NNS VBP VBN CD JJR NNS IN DT JJ NNP NNP , VBG CD IN DT NN NN POS JJ NNS . The Brotherhood 's secretary-general , Mahmoud Ezzat , was among those arrested in pre-dawn sweeps Sunday ahead of Wednesday 's national referendum on presidential election rules . DT NNP POS JJ , NNP NNP , VBD IN DT VBN IN JJ NNS NNP RB IN NNP POS JJ NN IN JJ NN NNS . The Muslim Brotherhood and other groups have urged a boycott of the vote . DT NNP NNP CC JJ NNS VBP VBN DT NN IN DT NN . If approved , the referendum will amend the constitution so Egypt can hold its first multi-candidate presidential election in September . IN VBN , DT NN MD VB DT NN IN NNP MD VB PRP$ JJ JJ JJ NN IN NNP . The Brotherhood opposes the amendment because it sets tough conditions for independent candidates , effectively excluding anyone not endorsed by the ruling party . DT NNP VBZ DT NN IN PRP VBZ JJ NNS IN JJ NNS , RB VBG DT RB VBN IN DT VBG NN . Egypt has arrested more than 700 members of the Brotherhood in recent weeks . NNP VBZ VBN JJR IN CD NNS IN DT NNP IN JJ NNS . The group says today 's arrests are an attempt to silence influential opposition voices . DT NN VBZ NN POS NNS VBP DT NN TO VB JJ NN NNS . Former U.S. Secretary of State Colin Powell says he advised President Bush to send more troops into Iraq before the U.S.-led invasion was launched . JJ NNP NNP IN NNP NNP NNP VBZ PRP VBD NNP NNP TO VB JJR NNS IN NNP IN DT JJ NN VBD VBN . Powell , in an interview with Britain 's ITV1 , says he gave the advice to now-retired General Tommy Franks , who planned the Iraq invasion , Defense Secretary Donald Rumsfeld and Mr. Bush . NNP , IN DT NN IN NNP POS NNP , VBZ PRP VBD DT NN TO JJ NNP NNP NNP , WP VBD DT NNP NN , NNP NNP NNP NNP CC NNP NNP . Powell says Mr. Bush 's military advisors believed the troop level was adequate . NNP VBZ NNP NNP POS JJ NNS VBD DT NN NN VBD JJ . Powell says he still disagrees with this and would have preferred to initially send more troops . NNP VBZ PRP RB VBZ IN DT CC MD VB VBN TO RB VB JJR NNS . Rumsfeld has been under mounting criticism over the war in Iraq . NNP VBZ VBN IN VBG NN IN DT NN IN NNP . Six retired U.S. generals recently called for Rumsfeld 's resignation , faulting his leadership and accusing him of making a series of major errors in the Iraq war . CD JJ NNP NNS RB VBD IN NNP POS NN , VBG PRP$ NN CC VBG PRP IN VBG DT NN IN JJ NNS IN DT NNP NN . Workers in Kurdish northern Iraq digging the foundation for a new hospital have discovered a mass grave that a regional official says may contain scores of bodies . NNS IN NNP JJ NNP VBG DT NN IN DT JJ NN VBP VBN DT NN NN IN DT JJ NN VBZ MD VB NNS IN NNS . Speaking Wednesday in the town of Suleimaniyah , regional human rights minister Salah Rashid said the bodies are likely those of Kurds killed by Saddam Hussein 's army following the end of the 1991 Gulf War . VBG NNP IN DT NN IN NNP , JJ JJ NNS NN NNP NNP VBD DT NNS VBP JJ DT IN NNS VBN IN NNP NNP POS NN VBG DT NN IN DT CD NNP NNP . The Associated Press quotes a 60-year-old local man as saying hundreds of Kurds are buried at the site , including his brother . DT NNP NNP VBZ DT JJ JJ NN IN VBG NNS IN NNS VBP VBN IN DT NN , VBG PRP$ NN . U.S. and Iraqi officials say more than 250 mass graves have been unearthed across Iraq since Saddam 's ouster in 2003 . NNP CC JJ NNS VBP JJR IN CD NN NNS VBP VBN JJ IN NNP IN NNP POS NN IN CD . The former dictator remains in U.S. custody , and is expected to go on trial next year on charges of genocide and crimes against humanity . DT JJ NN VBZ IN NNP NN , CC VBZ VBN TO VB IN NN JJ NN IN NNS IN NN CC NNS IN NN . American troops and warplanes repelled an insurgent attack Wednesday in the northern Iraqi city of Mosul , killing at least 25 attackers . JJ NNS CC NNS VBD DT JJ NN NNP IN DT JJ JJ NN IN NNP , VBG IN JJS CD NNS . The U.S. military said 15 of its troops were injured and one died in fighting after rebels detonated a car bomb outside a U.S. outpost and opened fire on arriving soldiers . DT NNP NN VBD CD IN PRP$ NNS VBD VBN CC CD VBD IN VBG IN NNS VBD DT NN NN IN DT NNP NN CC VBD NN IN VBG NNS . Violence in Mosul has intensified following a November offensive against insurgents in Fallujah , as some militants fled to the northern city . NN IN NNP VBZ VBN VBG DT NNP NN IN NNS IN NNP , IN DT NNS VBD TO DT JJ NN . Thursday , the interim government announced the arrest of a Kurdish man accused of facilitating communications between al-Qaida and Abu Musab al-Zarqawi 's terrorist network . NNP , DT JJ NN VBD DT NN IN DT JJ NN VBN IN VBG NNS IN NNP CC NNP NNP NNP POS JJ NN . A similar arrest was announced Wednesday . DT JJ NN VBD VBN NNP . And the insurgent group that claimed responsibility for last week 's attack on a U.S. base in Mosul that killed 22 people has renewed its threat to kill anyone who takes part in next month 's election . CC DT JJ NN WDT VBD NN IN JJ NN POS NN IN DT NNP NN IN NNP WDT VBD CD NNS VBZ VBN PRP$ NN TO VB DT WP VBZ NN IN JJ NN POS NN . A U.S. soldier at the center of the Abu Ghraib prison abuse scandal in Iraq is to plead guilty Monday to reduced charges . DT NNP NN IN DT NN IN DT NNP NNP NN NN NN IN NNP VBZ TO VB JJ NNP TO JJ NNS . Her attorney says Army Reservist Lynndie England will plead guilty to conspiracy , maltreating prisoners and dereliction of duty . PRP$ NN VBZ NN NN NNP NNP MD VB JJ TO NN , VBG NNS CC NN IN NN . Two charges are to be dropped . CD NNS VBP TO VB VBN . England was seen in widely publicized photographs holding a leash attached to a naked detainee at Abu Ghraib and , in another photo , smiling and pointing at a prisoner 's genitals . NNP VBD VBN IN RB JJ NNS VBG DT NN VBN TO DT JJ NN IN NNP NNP CC , IN DT NN , VBG CC VBG IN DT NN POS NNS . The judge must still accept the plea agreement that could bring a maximum prison term of 11 years , instead of 16 . DT NN MD RB VB DT NN NN WDT MD VB DT NN NN NN IN CD NNS , IN IN CD . The New York Times , citing prosecution sources , says England is expected to receive a term of 30 months . DT NNP NNP NNP , VBG NN NNS , VBZ NNP VBZ VBN TO VB DT NN IN CD NNS . England 's ex-boyfriend , described as the ringleader of the abuse , has already been sentenced to 10 years in prison . NNP POS NN , VBN IN DT NN IN DT NN , VBZ RB VBN VBN TO CD NNS IN NN . Japan 's Nissan Motor Company and France 's Renault say they are willing to begin talks with General Motors on a possible alliance with the American company . NNP POS NNP NNP NNP CC NNP POS NNP VBP PRP VBP JJ TO VB NNS IN NNP NNPS IN DT JJ NN IN DT JJ NN . The boards of directors of Nissan and Renault approved the talks on Monday . DT NNS IN NNS IN NNP CC NNP VBD DT NNS IN NNP . Last week , GM 's most high-profile investor , billionaire Kirk Kerkorian , urged the company to consider joining forces with Nissan and Renault . JJ NN , NNP POS JJS JJ NN , NN NNP NNP , VBD DT NN TO VB VBG NNS IN NNP CC NNP . News reports say Nissan and Renault may each acquire 10 percent of GM 's stock . NN NNS VBP NNP CC NNP MD DT VB CD NN IN NNP POS NN . General Motors is the world 's largest automobile manufacturer , but it is plagued with declining sales , high manufacturing costs , and steep losses . NNP NNPS VBZ DT NN POS JJS NN NN , CC PRP VBZ VBN IN VBG NNS , JJ NN NNS , CC JJ NNS . GM is shedding factories and workers in an effort to restore profitability . NNP VBZ VBG NNS CC NNS IN DT NN TO VB NN . Nissan overcame serious problems and became profitable again under the leadership of Carlos Ghosn . NNP VBD JJ NNS CC VBD JJ RB IN DT NN IN NNP NNP . Some analysts say he could speed GM toward efficiency and profit . DT NNS VBP PRP MD VB NNP IN NN CC NN . Pakistani police in southwestern Baluchistan province have arrested at least 11 people in connection with a deadly bomb blast on a passenger bus late Sunday . JJ NN IN JJ NNP NN VBP VBN IN JJS CD NNS IN NN IN DT JJ NN NN IN DT NN NN JJ NNP . The provincial police chief , Chaudhry Mohammed Yaqoob , says the suspects are all ethnic Baluch tribesmen and were arrested overnight in a series of raids in Quetta , the capital of Baluchistan province . DT JJ NN NN , NNP NNP NNP , VBZ DT NNS VBP DT JJ NNP NNS CC VBD VBN RB IN DT NN IN NNS IN NNP , DT NN IN NNP NN . Local authorities say they have also taken the driver of the bus into custody for questioning . JJ NNS VBP PRP VBP RB VBN DT NN IN DT NN IN NN IN VBG . Thirteen people were killed and 20 wounded when the bomb ripped through the bus carrying about 50 people from Quetta to the eastern city of Lahore . CD NNS VBD VBN CC CD VBN WRB DT NN VBD IN DT NN VBG IN CD NNS IN NNP TO DT JJ NN IN NNP . No one claimed responsibility for the bomb . DT NN VBD NN IN DT NN . But the police chief blamed Baluch tribal militants who have stepped up their insurgency seeking greater autonomy and more compensation for the region 's gas and other natural resources . CC DT NN NN VBD NNP JJ NNS WP VBP VBN RP PRP$ NN VBG JJR NN CC JJR NN IN DT NN POS NN CC JJ JJ NNS . Bolivia 's education minister Felix Patzi is calling on the contry 's school teachers to end their nationwide strike and return to work . NNP POS NN NN NNP NNP VBZ VBG IN DT NN POS NN NNS TO VB PRP$ JJ NN CC VB IN NN . The teachers began their two-day strike on Tuesday , along with Bolivia 's transporation workers . DT NNS VBD PRP$ JJ NN IN NNP , IN IN NNP POS NN NNS . Patzi is the reason for the teachers ' work stoppage . NNP VBZ DT NN IN DT NNS POS NN NN . They oppose his plan to revise the nation 's school curriculum , and they are calling for his resignation . PRP VBP PRP$ NN TO VB DT NN POS NN NN , CC PRP VBP VBG IN PRP$ NN . Bolivian drivers walked off their jobs over fines for traffic violations and the high price of diesel fuel . JJ NNS VBD RP PRP$ NNS IN NNS IN NN NNS CC DT JJ NN IN NN NN . Reports say confrontations between striking and working drivers got violent in some places , with activists stopping cars and damaging them . NNS VBP NNS IN JJ CC VBG NNS VBD JJ IN DT NNS , IN NNS VBG NNS CC VBG PRP . Ethiopia 's prime minister and opposition leaders have met to discuss for the first time together disputed parliamentary elections in May . NNP POS JJ NN CC NN NNS VBP VBN TO VB IN DT JJ NN RB VBD JJ NNS IN NNP . Friday 's talks between Prime Minister Meles Zenawi and the two main opposition groups were set up to ease tensions sparked by the elections . NNP POS NNS IN NNP NNP NNP NNP CC DT CD JJ NN NNS VBD VBN RP TO VB NNS VBN IN DT NNS . Shortly after the vote , security forces opened fire on anti-government protesters , killing at least 36 people . RB IN DT NN , NN NNS VBD NN IN JJ NNS , VBG IN JJS CD NNS . A top official in one opposition party says the talks included the possibility of establishing a coalition government and opposition access to state-run media . DT JJ NN IN CD NN NN VBZ DT NNS VBD DT NN IN VBG DT NN NN CC NN NN TO JJ NNS . The discussions are expected to continue . DT NNS VBP VBN TO VB . The latest election results show Mr. Zenawi 's ruling party and its allies have won 263 seats , 11 short of the majority needed to form a new government . DT JJS NN NNS VBP NNP NNP POS VBG NN CC PRP$ NNS VBP VBN CD NNS , CD NN IN DT NN VBN TO VB DT JJ NN . Opposition groups have won 170 seats . NN NNS VBP VBN CD NNS . Opposition leaders have rejected the results and called for new elections in 299 constituencies . NN NNS VBP VBN DT NNS CC VBN IN JJ NNS IN CD NNS . Indonesia sent a dozen bird flu samples to a World Health Organization laboratory this week , the first time it has done so it more than a year . NNP VBD DT NN NN NN NNS TO DT NNP NNP NNP NN DT NN , DT JJ NN PRP VBZ VBN RB PRP JJR IN DT NN . Health Ministry officials say they shipped the samples to the U.S. Centers for Disease Control and Prevention in the southeastern U.S. city of Atlanta , Georgia . NNP NNP NNS VBP PRP VBD DT NNS TO DT NNP NNPS IN NNP NNP CC NNP IN DT JJ NNP NN IN NNP , NNP . Indonesia stopped sending its virus samples to WHO because it wanted assurances that poor and developing nations would be allowed access to affordable vaccines developed from their samples . NNP VBD VBG PRP$ NN NNS IN NNP IN PRP VBD NNS IN JJ CC JJ NNS MD VB VBN NN TO JJ NNS VBD IN PRP$ NNS . The government has been in talks with WHO to create a new virus-sharing system . DT NN VBZ VBN IN NNS IN NNP TO VB DT JJ JJ NN . Health Ministry officials say the samples sent to the CDC laboratory are for diagnostic purposes only . NNP NNP NNS VBP DT NNS VBN TO DT NNP NN VBP IN JJ NNS RB . Indonesia is the most affected nation from the outbreak of the lethal H5N1 form of bird flu with 105 deaths . NNP VBZ DT RBS JJ NN IN DT NN IN DT JJ NNP NN IN NN NN IN CD NNS . Eritrea has rejected a suggestion that fresh talks be held to resolve its border dispute with Ethiopia . NNP VBZ VBN DT NN IN JJ NNS VB VBN TO VB PRP$ NN NN IN NNP . In a statement issued late Monday , the Eritrean Foreign Ministry said the dispute was legally concluded when an independent commission issued a ruling on the border in 2002 . IN DT NN VBN JJ NNP , DT JJ NNP NNP VBD DT NN VBD RB VBN WRB DT JJ NN VBD DT NN IN DT NN IN CD . It said any new talks or initiatives on the subject would be ' utterly irrelevant . ' PRP VBD DT JJ NNS CC NNS IN DT NN MD VB `` RB JJ . `` Last week , parties that witnessed the peace agreement Eritrea and Ethiopia signed in 2000 said the border commission should hold a meeting with the two countries and work out technical details on marking the border . JJ NN , NNS WDT VBD DT NN NN NNP CC NNP VBD IN CD VBD DT NN NN MD VB DT NN IN DT CD NNS CC VB RP JJ NNS IN VBG DT NN . The physical demarcation has been delayed because of Ethiopia 's refusal to accept the commission 's ruling . DT JJ NN VBZ VBN VBN IN IN NNP POS NN TO VB DT NN POS NN . A frustrated Eritrea imposed travel restrictions on U.N. peacekeepers watching the border last year , and expelled Western members of the U.N. staff . DT JJ NN VBD NN NNS IN NNP NNS VBG DT NN JJ NN , CC VBD JJ NNS IN DT NNP NN . The U.N. mission says the military situation along the border remains tense . DT NNP NN VBZ DT JJ NN IN DT NN VBZ JJ . Turkish health officials say three more people have tested positive for the deadly H5N1 strain of bird flu . JJ NN NNS VBP CD JJR NNS VBP VBN JJ IN DT JJ NNP NN IN NN NN . Officials said Sunday the three cases were discovered in the capital of Ankara . NNS VBD NNP DT CD NNS VBD VBN IN DT NN IN NNP . They are the first human cases outside the far eastern Van province , where the disease killed a teenage brother and sister last week . PRP VBP DT JJ JJ NNS IN DT RB JJ NNP NN , WRB DT NN VBD DT NN NN CC NN JJ NN . A World Health Organization team is in Turkey to assess the government 's response to the disease . DT NNP NNP NNP NN VBZ IN NNP TO VB DT NN POS NN TO DT NN . The WHO says all evidence so far shows the virus has come from sick birds and not through human contact . DT NNP VBZ DT NN RB RB VBZ DT NN VBZ VBN IN JJ NNS CC RB IN JJ NN . The H5N1 virus has killed more than 70 people in Southeast Asia and China since 2003 . DT NNP NN VBZ VBN JJR IN CD NNS IN NNP NNP CC NNP IN CD . The WHO is assuring people they can not catch bird flu from eating properly cooked poultry and eggs . DT NNP VBZ VBG NNS PRP MD RB VB NN NN IN VBG RB VBN NN CC NNS . WHO spokesman Ian Simpson tells VOA that thorough cooking will kill the virus . NNP NN NNP NNP VBZ NNP IN JJ NN MD VB DT NN . He also advises people to carefully clean food preparation areas . PRP RB VBZ NNS TO RB VB NN NN NNS . A two-day meeting of the African Union in Addis Ababa is focusing on how to disarm Rwandan rebels in the eastern part of the Democratic Republic of Congo . DT JJ NN IN DT NNP NNP IN NNP NNP VBZ VBG IN WRB TO VB JJ NNS IN DT JJ NN IN DT JJ NNP IN NNP . There are up to 14 thousand ethnically Hutu rebels in the region , who stage attacks against Rwanda 's government and destabilize local communities in the DRC . EX VBP RB TO CD CD RB NNP NNS IN DT NN , WP VBP NNS IN NNP NNS NN CC VBP JJ NNS IN DT NNP . The rebels , called Interahamwe , are blamed for the 1994 genocide in Rwanda against minority Tutsi and moderate Hutu . DT NNS , VBD NNP , VBP VBN IN DT CD NN IN NNP IN NN NNP CC JJ NNP . The presidents of the DRC and Rwanda have agreed to allow the African Union to coordinate a solution using AU troops . DT NNS IN DT NNP CC NNP VBP VBN TO VB DT NNP NNP TO VB DT NN VBG NNP NNS . Desmond Orjiako is the spokesman for the Africa Union in Addis . NNP NNP VBZ DT NN IN DT NNP NNP IN NNP . He told English to Africa reporter William Eagle that the AU is considering a number of possibilities - including sending in troops to work alongside UN peacekeepers or the Congolese military , or going in alone PRP VBD NNP TO NNP NN NNP NNP IN DT NNP VBZ VBG DT NN IN NNS ; VBG VBG IN NNS TO VB IN NNP NNS CC DT JJ NN , CC VBG IN RB Iranian President Mahmoud Ahmadinejad said Iran will not hold any further talks with world powers on its controversial nuclear program . JJ NNP NNP NNP VBD NNP MD RB VB DT JJ NNS IN NN NNS IN PRP$ JJ JJ NN . Mr. Ahmadinejad told a news conference in Tehran Monday Iran will only agree to discussions with major powers about cooperating in managing global problems . NNP NNP VBD DT NN NN IN NNP NNP NNP MD RB VB TO NNS IN JJ NNS IN VBG IN VBG JJ NNS . He said Iran will not participate in talks about nuclear issues outside the framework of the U.N. nuclear agency . PRP VBD NNP MD RB VB IN NNS IN JJ NNS IN DT NN IN DT NNP JJ NN . Six world powers have offered Iran a package of incentives to suspend uranium enrichment . CD NN NNS VBP VBN NNP DT NN IN NNS TO VB NN NN . Western nations fear Iran will use the enrichment process to develop nuclear weapons . JJ NNS VBP NNP MD VB DT NN NN TO VB JJ NNS . Tehran says its nuclear program is peaceful . NNP VBZ PRP$ JJ NN VBZ JJ . President Ahmadinejad said that if he is re-elected next month , he is ready to debate U.S. President Barack Obama at the United Nations in New York . NNP NNP VBD IN IN PRP VBZ VBN JJ NN , PRP VBZ JJ TO VB NNP NNP NNP NNP IN DT NNP NNPS IN NNP NNP . Mr. Obama has said he wants a dialogue with Iran to persuade it that developing nuclear weapons is not in the Iranian interest . NNP NNP VBZ VBN PRP VBZ DT NN IN NNP TO VB PRP IN VBG JJ NNS VBZ RB IN DT JJ NN . An international press freedom group has asked U.N. Secretary-General Ban Ki-moon to pressure Iran into halting the executions of two Iranian journalists . DT JJ NN NN NN VBZ VBN NNP NNP NNP NNP TO VB NNP IN VBG DT NNS IN CD JJ NNS . Reporters Without Borders said in a news release Tuesday that it wrote to Mr. Ban urging him to try and help the Kurdish journalists , Adnan Hassanpour and Abdolvahed ' Hiva ' Botimar , who both wrote for the magazine Asou before it was banned in 2005 . NNPS NNP NNPS VBD IN DT NN NN NNP IN PRP VBD TO NNP NNP VBG PRP TO VB CC VB DT JJ NNS , NNP NNP CC NNP `` NNP `` NNP , WP DT VBD IN DT NN NNP IN PRP VBD VBN IN CD . The two were sentenced to death in July on charges of being ' enemies of God . ' DT CD VBD VBN TO NN IN NNP IN NNS IN VBG `` NNS IN NNP . `` The European Union , which opposes the death penalty in all cases , has called on Iran not to carry out the death sentences . DT NNP NNP , WDT VBZ DT NN NN IN DT NNS , VBZ VBN IN NNP RB TO VB RP DT NN NNS . The EU said it is particularly troubled by the repression of Iranians who try to freely express opinions , especially those in minority Arab and Kurd regions . DT NNP VBD PRP VBZ RB VBN IN DT NN IN NNS WP VBP TO RB VB NNS , RB DT IN NN JJ CC JJ NNS . Chinese activists say the government has paid compensation to the mother of a 15-year-old boy who died in police custody days after the 1989 Tiananmen Square protests . JJ NNS VBP DT NN VBZ VBN NN TO DT NN IN DT JJ NN WP VBD IN NN NN NNS IN DT CD NNP NNP NNS . They say the Chinese government paid the mother of Zhou Guocong more than $ 8,700 ( 70,000 yuan ) in so-called hardship assistance . PRP VBP DT JJ NN VBD DT NN IN NNP NNP JJR IN $ CD LRB CD NN RRB IN JJ NN NN . Activists say the payment is the first known time China has paid compensation to a relative of someone killed during the crackdown on the democracy movement . NNS VBP DT NN VBZ DT JJ VBN NN NNP VBZ VBN NN TO DT NN IN DT VBN IN DT NN IN DT NN NN . Activists say Zhou was detained by police in the southern city of Chengdu as part of a nationwide crackdown on democracy protests . NNS VBP NNP VBD VBN IN NNS IN DT JJ NN IN NNP IN NN IN DT JJ NN IN NN NNS . The 1989 student-led pro-democracy demonstrations in Tiananmen Square were crushed by the Chinese military . DT CD JJ JJ NNS IN NNP NNP VBD VBN IN DT JJ NN . Other protests were held across China . JJ NNS VBD VBN IN NNP . A rocket was fired on the Afghan capital of Kabul Saturday as more than 600 delegates from Pakistan and Afghanistan held a third day of talks aimed at improving security and strengthening bilateral relations . DT NN VBD VBN IN DT JJ NN IN NNP NNP IN JJR IN CD NNS IN NNP CC NNP VBD DT JJ NN IN NNS VBN IN VBG NN CC VBG JJ NNS . Interior Ministry officials say the rocket landed in an open area , several kilometers from a high security zone where the meeting was being held . NNP NNP NNS VBP DT NN VBD IN DT JJ NN , JJ NNS IN DT JJ NN NN WRB DT NN VBD VBG VBN . No damage or casualties have been reported . DT NN CC NNS VBP VBN VBN . The four-day peace conference , or grand jirga , focuses on specific issues dividing the two countries . DT JJ NN NN , CC JJ NN , VBZ IN JJ NNS VBG DT CD NNS . Many Afghans expressed hope that the conference will help reduce violence in both countries . JJ NNS VBD NN IN DT NN MD VB VB NN IN DT NNS . Pakistani President Pervez Musharraf is expected to attend the closing session on Sunday . JJ NNP NNP NNP VBZ VBN TO VB DT NN NN IN NNP . A second conference is planned for Pakistan at a later date . DT JJ NN VBZ VBN IN NNP IN DT JJ NN . The international organization Doctors Without Borders is reporting that more than 900 people have died from cholera in Angola in just 10 weeks . DT JJ NN NNP NNP NNPS VBZ VBG IN JJR IN CD NNS VBP VBN IN NN IN NNP IN RB CD NNS . The Angola country director for the group , Richard Veerman , said the outbreak is one of the worst ever in the southern African country , and has not yet reached its peak . DT NNP NN NN IN DT NN , NNP NNP , VBD DT NN VBZ CD IN DT JJS RB IN DT JJ JJ NN , CC VBZ RB RB VBN PRP$ NN . In a statement released Thursday , the group said measures to halt the outbreak are grossly inefficient , and called on the Angolan government and international relief organizations to step up their efforts to halt the epidemic . IN DT NN VBN NNP , DT NN VBD NNS TO VB DT NN VBP RB JJ , CC VBD IN DT JJ NN CC JJ NN NNS TO VB RP PRP$ NNS TO VB DT NN . Doctors Without Borders says that on some days this week its doctors have seen almost 1,000 cases of cholera , and more than 30 deaths . NNS IN NNP VBZ IN IN DT NNS DT NN PRP$ NNS VBP VBN RB CD NNS IN NN , CC JJR IN CD NNS . The organization has 10 treatment centers in Angola , and reports seeing 11,700 cases of the disease since February . DT NN VBZ CD NN NNS IN NNP , CC VBZ VBG CD NNS IN DT NN IN NNP . Six countries along the Mekong river have agreed to a three-year plan to fight human trafficking . CD NNS IN DT NNP NN VBP VBN TO DT JJ NN TO VB JJ NN . Authorities from Cambodia , China , Laos , Burma , Thailand and Vietnam made the pledge Thursday at the conclusion of a three-day conference in Hanoi . NNS IN NNP , NNP , NNP , NNP , NNP CC NNP VBD DT NN NNP IN DT NN IN DT JJ NN IN NNP . In a statement , the officials said they will work across borders to detect trafficking rings , recover victims and return them home , and prosecute offenders . IN DT NN , DT NNS VBD PRP MD VB IN NNS TO VB NN NNS , VB NNS CC VB PRP NN , CC VB NNS . No estimates exist on how many people are trafficked each year in the Mekong region , but the United Nations Children 's Fund believes some 2,00,000 people have been trafficked across the entire Asia-Pacific region . DT NNS VBP IN WRB JJ NNS VBP VBN DT NN IN DT NNP NN , CC DT NNP NNP NNP POS NNP VBZ DT CD NNS VBP VBN VBN IN DT JJ JJ NN . Most victims are children and women . JJS NNS VBP NNS CC NNS . Iraqi police say gunmen have attacked a convoy belonging to Iraqi President Jalal Talabani , killing at least six of his bodyguards and wounding as many as 15 others . JJ NNS VBP NNS VBP VBN DT NN VBG TO JJ NNP NNP NNP , VBG IN JJ CD IN PRP$ NNS CC VBG IN JJ IN CD NNS . Early reports say the president was not in the convoy when the attack occurred about 90 kilometers south of Kirkuk . RB NNS VBP DT NN VBD RB IN DT NN WRB DT NN VBD IN CD NNS RB IN NNP . The Associated Press quotes police as saying the security detail was returning cars from Iraq 's Kurdish north to Baghdad when gunmen opened fire . DT NNP NNP VBZ NN IN VBG DT NN NN VBD VBG NNS IN NNP POS JJ NN TO NNP WRB NNS VBD NN . In other developments , Iraqi police say they have found the bodies of 36 men dumped in a river southeast of Baghdad . IN JJ NNS , JJ NNS VBP PRP VBP VBN DT NNS IN CD NNS VBN IN DT NN NN IN NNP . Details are sketchy , but initial reports say the men were found in their underwear , each with a single bullet wound to the head . NNS VBP JJ , CC JJ NNS VBP DT NNS VBD VBN IN PRP$ NN , DT IN DT JJ NN NN TO DT NN . The identities of the men and the motive behind the killings remain unclear . DT NNS IN DT NNS CC DT NN IN DT NNS VBP JJ . A crowd in Bangladesh has beaten eight pirates to death after they boarded a river boat and tried to rob passengers . DT NN IN NNP VBZ VBN CD NNS TO NN IN PRP VBD DT NN NN CC VBD TO VB NNS . Authorities say at least a dozen pirates boarded the ferry on the Jamuna river , northwest of the capital , Dhaka . NNS VBP IN JJS DT NN NNS VBD DT NN IN DT NNP NN , NN IN DT NN , NNP . But police on the ferry challenged the bandits , and passengers chased them when they jumped overboard to flee . CC NNS IN DT NN VBD DT NNS , CC NNS VBD PRP WRB PRP VBD NN TO VB . Several pirates escaped , but the others were caught and beaten . JJ NNS VBD , CC DT NNS VBD VBN CC VBN . Eight died from their injuries . CD VBD IN PRP$ NNS . American speedskater Chris Witty has dropped out of the women 's 1,500-meter race to end her Olympic career after two disappointing performances at the Turin Winter Olympics . JJ NN NNP NNP VBZ VBN IN IN DT NNS POS JJ NN TO VB PRP$ JJ NN IN CD JJ NNS IN DT NNP NNP NNPS . Witty was a three-time medalist competing in her fourth Winter Games . NNP VBD DT JJ NN VBG IN PRP$ JJ NNP NNPS . But she placed last of the 28 skaters who finished the 500-meter event . CC PRP VBD JJ IN DT CD NNS WP VBD DT JJ NN . Witty was 27th in Sunday 's 1,000-meter race . NNP VBD JJ IN NNP POS JJ NN . Witty 's training was hampered by a groin injury she sustained in December at a World Cup meet in Turin . NNP POS NN VBD VBN IN DT NN NN PRP VBD IN NNP IN DT NNP NNP VB IN NNP . She also was having problems with her hip . PRP RB VBD VBG NNS IN PRP$ NN . The 30-year-old Witty carried the American flag at the Turin opening ceremonies . DT JJ NNP VBD DT JJ NN IN DT NNP NN NNS . Her 1,000-meter world record ( 0.051655093 ) set while winning gold in the 1,000-meter race at the 2002 Salt Lake City Games still stands . PRP$ JJ NN NN LRB CD RRB VBN IN VBG NN IN DT JJ NN IN DT CD NNP NNP NNP NNPS RB VBZ . She also won silver and bronze medals at the 1998 Nagano Games . PRP RB VBD NN CC NN NNS IN DT CD NNP NNPS . Rights groups have criticized Egypt for allegedly continuing to detain up to 2,400 people in the investigation into last October 's Taba Hilton hotel bombing . NNS NNS VBP VBN NNP IN RB VBG TO VB RP TO CD NNS IN DT NN IN JJ NNP POS NNP NNP NN NN . U.S.-based Human Right Watch says that some of the detainees have been tortured and all have been held some 16 weeks without communication with lawyers or their families . JJ NNP NNP NNP VBZ IN DT IN DT NNS VBP VBN VBN CC DT VBP VBN VBN DT CD NNS IN NN IN NNS CC PRP$ NNS . During a news conference with local rights groups in Cairo Tuesday , Human Rights Watch said Egyptian officials have not confirmed the mass detentions in northern Sinai , but they have defended such tactics by citing methods used against terrorism suspects by the United States and Israel . IN DT NN NN IN JJ NNS NNS IN NNP NNP , NNP NNP NNP VBD JJ NNS VBP RB VBN DT NN NNS IN JJ NNP , CC PRP VBP VBN JJ NNS IN VBG NNS VBN IN NN NNS IN DT NNP NNPS CC NNP . The attacks last October on the Taba Hilton and two other resorts in the Sinai killed 35 people and wounded more than 100 , mostly Egyptian and Israeli tourists . DT NNS JJ NNP IN DT NNP NNP CC CD JJ NNS IN DT NNP VBD CD NNS CC VBD JJR IN CD , RB JJ CC JJ NNS . The top U.N. envoy to Sudan , Jan Pronk , says he is horrified by ongoing violence in Darfur and called on the government to stop the killing . DT JJ NNP NN TO NNP , NNP NNP , VBZ PRP VBZ VBN IN JJ NN IN NNP CC VBN IN DT NN TO VB DT NN . In Khartoum Wednesday , Mr. Pronk said he saw evidence of widespread atrocities during his tour of Darfur last week . IN NNP NNP , NNP NNP VBD PRP VBD NN IN JJ NNS IN PRP$ NN IN NNP JJ NN . He specifically mentioned Labado , a village in South Darfur , the scene of recent fighting between rebels and government forces . PRP RB VBD NNP , DT NN IN NNP NNP , DT NN IN JJ NN IN NNS CC NN NNS . Mr. Pronk said he was ' horrified ' by what he had seen there - burned villages and destroyed water wells - and described a pattern of attacks on civilians by unidentified militias . NNP NNP VBD PRP VBD `` VBN `` IN WP PRP VBD VBN EX : VBN NNS CC VBD NN NNS : CC VBD DT NN IN NNS IN NNS IN JJ NNS . Mr. Pronk 's comments came two days after a a special U.N. report concluded that while no genocide had taken place in Darfur , Sudanese government forces and allied Arab militias had committed widespread killings , rapes , and other atrocities that warranted prosecution by the International Criminal Court . NNP NNP POS NNS VBD CD NNS IN DT DT JJ NNP NN VBD IN IN DT NN VBD VBN NN IN NNP , JJ NN NNS CC JJ JJ NNS VBD VBN JJ NNS , NNS , CC JJ NNS WDT VBD NN IN DT NNP NNP NNP . U.S. and Iraqi forces Monday battled insurgents for a third day near the Syrian border , in a push U.S. commanders say is aimed at cutting off the flow of weapons and fighters into Iraq 's population centers . NNP CC JJ NNS NNP VBD NNS IN DT JJ NN IN DT JJ NN , IN DT NN NNP NNS VBP VBZ VBN IN VBG RP DT NN IN NNS CC NNS IN NNP POS NN NNS . U.S. authorities say one Marine has been killed in the fighting at Husaybah . NNP NNS VBP CD NN VBZ VBN VBN IN DT NN IN NNP . A CNN reporter with the coalition force quotes a Marine commander as saying between 60 and 80 insurgents have been killed . DT NNP NN IN DT NN NN VBZ DT NN NN IN VBG IN CD CC CD NNS VBP VBN VBN . Another Marine told the network about 180 military-age males have been detained for questioning . DT NN VBD DT NN IN CD JJ NNS VBP VBN VBN IN VBG . A U.S. statement says the coalition force is clearing the town of 30,000 people house-by-house , and says insurgents have planted homemade bombs throughout the area . DT NNP NN VBZ DT NN NN VBZ VBG DT NN IN CD NNS NN , CC VBZ NNS VBP VBN JJ NNS IN DT NN . Elsewhere , at least nine people , including six Iraqi police officers , have been killed in a suicide bombing in south Baghdad . RB , IN JJS CD NNS , VBG CD JJ NNS NNS , VBP VBN VBN IN DT NN VBG IN JJ NNP . Separately , at least four people were killed and six others wounded when a mortar shell exploded in east Baghdad . RB , IN JJS CD NNS VBD VBN CC CD NNS VBD WRB DT NN NN VBD IN JJ NNP . International donors have pledged an additional $ 580 million in assistance for earthquake relief efforts in Pakistan . JJ NNS VBP VBN DT JJ $ CD CD IN NN IN NN NN NNS IN NNP . Top United Nations relief official Jan Egeland said the pledges came at a donor meeting in Geneva . JJ NNP NNPS NN NN NNP NNP VBD DT NNS VBD IN DT NN NN IN NNP . But officials said it was not clear how much money was intended for emergency relief aid , and how much was for long-term reconstruction efforts . CC NNS VBD PRP VBD RB JJ WRB JJ NN VBD VBN IN NN NN NN , CC WRB RB VBD IN JJ NN NNS . Earlier , U.N. Secretary-General Kofi Annan appealed for help to prevent a second wave of deaths . RB , NNP NNP NNP NNP VBD IN NN TO VB DT JJ NN IN NNS . Officials have warned that thousands of people may die if they do not receive aid before key supply routes are blocked by winter snow and freezing temperatures . NNS VBP VBN IN NNS IN NNS MD VB IN PRP VBP RB VB NN IN JJ NN NNS VBP VBN IN NN NN CC VBG NNS . The United States has pledged $ 156 million for humanitarian aid , reconstruction and relief operations by American military personnel . DT NNP NNP VBZ VBN $ CD CD IN JJ NN , NN CC NN NNS IN JJ JJ NNS . The death toll in Pakistan now stands at more than 54,000 people , and officials say rebuilding damaged areas will cost $ 5 billion . DT NN NN IN NNP RB VBZ IN JJR IN CD NNS , CC NNS VBP VBG VBN NNS MD VB $ CD CD . Officials in Georgia 's breakaway republic of Abkhazia have delayed announcing the results from Sunday 's presidential election . NNS IN NNP POS JJ NN IN NNP VBP VBN VBG DT NNS IN NNP POS JJ NN . Central Election Commission chief Sergei Smyr said Monday that a slowdown in the delivery of ballots from some districts would hold up a scheduled announcement of the official results . NNP NNP NNP NN NNP NNP VBD NNP IN DT NN IN DT NN IN NNS IN DT NNS MD VB RP DT VBN NN IN DT JJ NNS . Mr. Smyr said results posted Sunday on a web site that purported to be the commission 's official site were fraudulent . NNP NNP VBD NNS VBD NNP IN DT NN NN WDT VBD TO VB DT NN POS JJ NN VBD JJ . Before the vote , Prime Minister Raul Khadjimba was considered the leading contender among five candidates . IN DT NN , NNP NNP NNP NNP VBD VBN DT VBG NN IN CD NNS . Abkhaz power company chief Sergei Bagapsh was thought to be his most serious opponent . NNP NN NN JJ NNP NNP VBD VBN TO VB PRP$ RBS JJ NN . Mr. Smyr said Mr. Bagapsh and another candidate have alleged voting irregularities that may have to be investigated . NNP NNP VBD NNP NNP CC DT NN VBP VBN NN NNS WDT MD VB TO VB VBN . Abkhazia declared itself independent of Georgia in 1993 and has since been led by President Vladislav Ardzinba . NNP VBD PRP JJ IN NNP IN CD CC VBZ IN VBN VBN IN NNP NNP NNP . Authorities in Tbilisi say the election lacks legitimacy . NNS IN NNP VBP DT NN VBZ NN . Dozens of armed militants briefly took control of Palestinian government buildings in the Gaza Strip Saturday to demand jobs . NNS IN JJ NNS RB VBD NN IN JJ NN NNS IN DT NNP NNP NNP TO VB NNS . Witnesses and security sources say members of the Al-Aqsa Martyrs Brigade , an armed wing of the Fatah movement , occupied several offices in central Gaza . NNS CC NN NNS VBP NNS IN DT NNP NNP NNP , DT JJ NN IN DT NNP NN , VBD JJ NNS IN JJ NNP . Separately , gunmen protesting the death of a police officer set up a roadblock at Gaza 's border crossing with Egypt , threatening to prevent officials from passing . RB , NNS VBG DT NN IN DT NN NN VBD RP DT NN IN NNP POS NN VBG IN NNP , VBG TO VB NNS IN VBG . The police officer had been recently killed in a family feud . DT NN NN VBD VBN RB VBN IN DT NN NN . Late Friday , gunmen in Gaza released three British hostages who had been seized earlier in the week in Rafah . RB NNP , NNS IN NNP VBD CD JJ NNS WP VBD VBN VBN RBR IN DT NN IN NNP . A previously unknown group , Mujahadeen Brigades Jerusalem Branch , claimed responsibility for the kidnapping . DT RB JJ NN , NNP NNP NNP NNP , VBD NN IN DT NN . Also Friday , Palestinian police briefly occupied the Gaza-Egypt border crossing at Rafah to protest the killing of the officer , forcing the crossing to temporarily close . RB NNP , JJ NN RB VBD DT JJ NN VBG IN NNP TO VB DT NN IN DT NN , VBG DT VBG TO RB VB . Authorities in the northwestern Indian state of Rajasthan say at least 86 people were killed late Friday when a truck packed with pilgrims veered off a mountainous road and plunged into a gorge . NNS IN DT JJ JJ NN IN NNP VBP IN JJS CD NNS VBD VBN JJ NNP WRB DT NN VBN IN NNS VBD RP DT JJ NN CC VBD IN DT NN . The authorities say at least 60 others were injured when the driver lost control of the vehicle on a curve in a remote part of the rural state . DT NNS VBP IN JJS CD NNS VBD VBN WRB DT NN VBD NN IN DT NN IN DT NN IN DT JJ NN IN DT JJ NN . Officials say the truck , usually used for hauling large containers , was carrying more than 149 pilgrims to a temple fair at the time of the crash . NNS VBP DT NN , RB VBN IN VBG JJ NNS , VBD VBG JJR IN CD NNS TO DT NN NN IN DT NN IN DT NN . Local police are investigating the incident . JJ NNS VBP VBG DT NN . The state government says it will pay the families of the dead about $ 1,200 each in compensation . DT NN NN VBZ PRP MD VB DT NNS IN DT JJ IN $ CD DT IN NN . Fatal road accidents are common in India , due mainly to poorly maintained roads and vehicles , and disregard for traffic rules . JJ NN NNS VBP JJ IN NNP , JJ RB TO RB VBN NNS CC NNS , CC NN IN NN NNS . President Bush has stepped up pressure on members of his own party in Congress to pass an intelligence reform bill before it adjourns for the year . NNP NNP VBZ VBN RP NN IN NNS IN PRP$ JJ NN IN NNP TO VB DT NN NN NN IN PRP VBZ IN DT NN . In his weekly radio address Saturday , Mr. Bush called on lawmakers to create a national intelligence director with full budget authority over the nation 's intelligence agencies . IN PRP$ JJ NN NN NNP , NNP NNP VBD IN NNS TO VB DT JJ NN NN IN JJ NN NN IN DT NN POS NN NNS . The opposition has come from key leaders within the president 's own Republican party , who object to portions of the bill that would overhaul 15 spy agencies . DT NN VBZ VBN IN JJ NNS IN DT NN POS JJ JJ NN , WP VBP TO NNS IN DT NN WDT MD VB CD NN NNS . Those objections focus on preserving the military chain of command and the flow of intelligence to troops in the field . DT NNS VBP IN VBG DT JJ NN IN NN CC DT NN IN NN TO NNS IN DT NN . Analysts say the bill would likely pass in its current form with support from Democrats if a vote were held . NNS VBP DT NN MD RB VB IN PRP$ JJ NN IN NN IN NNPS IN DT NN VBD VBN . Embracing many of the recommendations from the independent commission investigating the September 11 attacks , the president said the legislation presents a clear and sensible path towards needed intelligence reforms . VBG NN IN DT NNS IN DT JJ NN VBG DT NNP CD NNS , DT NN VBD DT NN VBZ DT JJ CC JJ NN IN VBN NN NNS . Al-Qaida has claimed responsibility for attacks earlier this month on security and intelligence buildings in Yemen 's south that left at least three people dead . NNP VBZ VBN NN IN NNS RBR DT NN IN NN CC NN NNS IN NNP POS NN WDT VBD IN JJS CD NNS JJ . The militant group 's regional wing , known as Al Qaida in the Arabian Peninsula , said in an Internet statement Friday the attacks were in retaliation for the killing of at least one militant fighter in Yemen 's southern Abyan province . DT JJ NN POS JJ NN , VBN IN NNP NNP IN DT NNP NNP , VBD IN DT NNP NN NNP DT NNS VBD IN NN IN DT NN IN IN JJS CD JJ NN IN NNP POS JJ NNP NN . On July 14 , gunmen on motorcycles using mortars and rocket-propelled grenades opened fire on people inside the two buildings in the provincial capital , Zinjibar . IN NNP CD , NNS IN NNS VBG NNS CC JJ NNS VBD NN IN NNS IN DT CD NNS IN DT JJ NN , NNP . After the assault and subsequent clashes with police and guards , the attackers fled . IN DT NN CC JJ NNS IN NNS CC NNS , DT NNS VBD . Al-Qaida was also blamed for an attack last month on security headquarters in southern Yemen that left 11 people dead . NNP VBD RB VBN IN DT NN JJ NN IN NN NNS IN JJ NNP WDT VBD CD NNS JJ . Democratic Republic of Congo troops who are apparently upset over a pay dispute fired on a United Nations base in the country 's eastern region . NNP NNP IN NNP NNS WP VBP RB VBN IN DT NN NN VBN IN DT NNP NNP NN IN DT NN POS JJ NN . U.N. officials say 27 soldiers have been arrested for allegedly firing on a U.N. peacekeepers ' base in North Kivu province . NNP NNS VBP CD NNS VBP VBN VBN IN RB VBG IN DT NNP NNS POS NN IN NNP NNP NN . No casualties were reported . DT NNS VBD VBN . United Nations officials say the Congolese troops are upset because they have not been paid for several months . NNP NNP NNS VBP DT JJ NNS VBP VBN IN PRP VBP RB VBN VBN IN JJ NNS . A top Syrian official says Israel is responsible for a car bomb blast in Damascus Monday that wounded three people . DT JJ JJ NN VBZ NNP VBZ JJ IN DT NN NN NN IN NNP NNP IN VBD CD NNS . Interior Minister Ghazi Kanaan said Israeli intelligence or a group affiliated with it had targeted the vehicle of a Palestinian member of the radical group Hamas . NNP NNP NNP NNP VBD JJ NN CC DT NN VBN IN PRP VBD VBN DT NN IN DT JJ NN IN DT JJ NN NNP . The minister said the man and a family member were unharmed because they got out of the vehicle just before the blast . DT NN VBD DT NN CC DT NN NN VBD JJ IN PRP VBD IN IN DT NN RB IN DT NN . Syrian officials called the attack Monday afternoon an ' act of sabotage . ' JJ NNS VBD DT NN NNP NN DT `` NN IN NN . `` Police quickly removed the damaged vehicle from the scene In September , a senior Hamas member was killed in when a bomb blew up his car , also in Damascus . NNS RB VBD DT JJ NN IN DT NN IN NNP , DT JJ NNP NN VBD VBN IN WRB DT NN VBD RP PRP$ NN , RB IN NNP . Syria blamed Israel for that attack . NNP VBD NNP IN DT NN . Pakistan 's main government coalition partner says it will split from the country 's ruling party alliance and join the opposition . NNP POS JJ NN NN NN VBZ PRP MD VB IN DT NN POS VBG NN NN CC VB DT NN . A spokesman for the Muttahida Qaumi Movement , or MQM , announced Sunday that it would sit with the opposition in both the National Assembly and the Senate . DT NN IN DT NNP NNP NNP , CC NNP , VBD NNP IN PRP MD VB IN DT NN IN DT DT NNP NNP CC DT NNP . The move follows last week 's resignation by two of the party 's federal cabinet ministers . DT NN VBZ JJ NN POS NN IN CD IN DT NN POS JJ NN NNS . The MQM previously has been at odds with the government over tax reforms , increased fuel prices and efforts to improve security . DT NNP RB VBZ VBN IN NNS IN DT NN IN NN NNS , JJ NN NNS CC NNS TO VB NN . It is not clear if the move will collapse the U.S.-allied government , which previously held a small majority in parliament . PRP VBZ RB JJ IN DT NN MD VB DT JJ NN , WDT RB VBD DT JJ NN IN NN . Pakistan 's Prime Minister Yusuf Raza Gilani says his government will not fall , despite the planned MQM move . NNP POS NNP NNP NNP NNP NNP VBZ PRP$ NN MD RB VB , IN DT JJ NNP NN . Saudi Arabia says it will send a delegation to Iraq next week to look into reopening its embassy , more than four years after the U.S.-led invasion of Iraq . NNP NNP VBZ PRP MD VB DT NN TO NNP JJ NN TO VB IN VBG PRP$ NN , JJR IN CD NNS IN DT JJ NN IN NNP . Saudi Foreign Minister Prince Saud al-Faisal said Tuesday the delegation will explore security concerns related to opening the diplomatic post . NNP NNP NNP NNP NNP NNP VBD NNP DT NN MD VB NN NNS VBN TO VBG DT JJ NN . He first announced the plan last week during a visit by U.S. Secretary of State Condoleezza Rice . PRP RB VBD DT NN JJ NN IN DT NN IN NNP NNP IN NNP NNP NNP . Rice welcomed the move as an important step . NNP VBD DT NN IN DT JJ NN . Iraq re-opened its embassy in Saudi Arabia last February . NNP VBD PRP$ NN IN NNP NNP JJ NNP . Saudi Arabia is a Sunni Muslim country and Iraq has a Shi'ite majority population and a Shi'ite prime minister . NNP NNP VBZ DT NNP NNP NN CC NNP VBZ DT NNP NN NN CC DT JJ JJ NN . A pro-reformist Web site says Iran has barred former President Mohammad Khatami from leaving the country . DT JJ NNP NN VBZ NNP VBZ VBN JJ NNP NNP NNP IN VBG DT NN . The Web site Parlemannews says Mr. Khatami was scheduled to depart Thursday night to attend a nuclear disarmament conference in Japan . DT NNP NN NNP VBZ NNP NNP VBD VBN TO VB NNP NN TO VB DT JJ NN NN IN NNP . There was no immediate reaction from the Iranian government . EX VBD DT JJ NN IN DT JJ NN . Mr. Khatami was a key supporter of defeated presidential candidate Mir Hossein Mousavi in June elections . NNP NNP VBD DT JJ NN IN VBN JJ NN NNP NNP NNP IN NNP NNS . Opposition leaders claim that President Mahmoud Ahmadinejad stole the vote . NN NNS VBP IN NNP NNP NNP VBD DT NN . The Iranian government has carried out violent crackdowns on anti-government protests staged since the presidential election . DT JJ NN VBZ VBN RP JJ NNS IN JJ NNS VBN IN DT JJ NN . U.S. Secretary of State Hillary Clinton says the Obama administration has decided to engage directly with Burma 's military government , in an effort to push its military leaders toward democratic reform . NNP NNP IN NNP NNP NNP VBZ DT NNP NN VBZ VBN TO VB RB IN NNP POS JJ NN , IN DT NN TO VB PRP$ JJ NNS IN JJ NN . Clinton told reporters at the United Nations Wednesday that the U.S. government still will use sanctions against Burma to try to influence its government . NNP VBD NNS IN DT NNP NNPS NNP IN DT NNP NN RB MD VB NNS IN NNP TO VB TO VB PRP$ NN . However , she said sanctions by themselves have not produced the results the United States has wanted . RB , PRP VBD NNS IN PRP VBP RB VBN DT NNS DT NNP NNPS VBZ VBN . She said engagement versus sanctions is a FALSE choice , and that the Obama administration has decided to use both methods . PRP VBD NN IN NNS VBZ DT JJ NN , CC IN DT NNP NN VBZ VBN TO VB DT NNS . Burma has been under military rule since 1962 . NNP VBZ VBN IN JJ NN IN CD . The opposition National League for Democracy won the last elections in 1990 , but the military government refused to acknowledge the results . DT NN NNP NNP IN NNP VBD DT JJ NNS IN CD , CC DT JJ NN VBD TO VB DT NNS . Burma 's opposition leader Aung San Suu Kyi has been in some form of detention for 14 of the past 20 years . NNP POS NN NN NNP NNP NNP NNP VBZ VBN IN DT NN IN NN IN CD IN DT JJ CD NNS . The Summer Olympic Games could prove the winning ticket for foreign brands seeking access to China 's lucrative consumer market . DT NNP NNP NNPS MD VB DT NN NN IN JJ NNS VBG NN TO NNP POS JJ NN NN . Corporate sponsorship of the Beijing Games is booming , as companies seek visibility before 1.3 billion Chinese and the world at large . JJ NN IN DT NNP NNPS VBZ JJ , IN NNS VBP NN IN CD CD NNS CC DT NN IN JJ . Sam Beattie reports for VOA . NNP NNP VBZ IN NNP . Authorities in Azerbaijan have inaugurated a NATO-funded project for reprocessing surplus rocket fuel dating back to Soviet times . NNS IN NNP VBP VBN DT JJ NN IN VBG NN NN NN VBG RB TO JJ NNS . The project is being launched in Alyaty . DT NN VBZ VBG VBN IN NNP . It involves the conversion of about 1,500 metric tons of fuel known as melange into fertilizer . PRP VBZ DT NN IN IN CD JJ NNS IN NN VBN IN NN IN NN . Warsaw Pact forces formerly used the fuel . NNP NNP NNS RB VBD DT NN . It is considered hazardous to the environment . PRP VBZ VBN JJ TO DT NN . The $ 2-million program will deal with fuel stored at two locations in Azerbaijan DT $ JJ NN MD VB IN NN VBN IN CD NNS IN NNP U.S. Republicans and Democrats in 16 states have picked the economy as the most important issue facing the country . NNP NNPS CC NNPS IN CD NNS VBP VBN DT NN IN DT RBS JJ NN VBG DT NN . A survey of ' Super Tuesday ' voters conducted by Edison Media Research and Mitofsky International for the Associated Press and television networks shows Democrats ranked the war in Iraq second on their list of issues of concern , with health care third . DT NN IN `` NNP NNP `` NNS VBN IN NNP NNP NNP CC NNP NNP IN DT NNP NNP CC NN NNS VBZ NNPS VBD DT NN IN NNP NN IN PRP$ NN IN NNS IN NN , IN NN NN NN . The survey shows Republican voters ranked immigration as the second-most important issue after the economy , followed by the war in Iraq . DT NN VBZ JJ NNS VBD NN IN DT JJ JJ NN IN DT NN , VBN IN DT NN IN NNP . In southern U.S. states in particular , issues such as the war in Iraq , taxes and religion were expected to weigh heavily with voters Tuesday . IN JJ NNP NNS IN JJ , NNS JJ IN DT NN IN NNP , NNS CC NN VBD VBN TO VB RB IN NNS NNP . Voters in western states were expected to focus on national issues such as the economy , as well as specific issues , such as the environment and energy . NNS IN JJ NNS VBD VBN TO VB IN JJ NNS JJ IN DT NN , RB RB IN JJ NNS , JJ IN DT NN CC NN . A fifth Venezuelan opposition party has pulled out of Sunday 's congressional elections , saying it is concerned the balloting will not be fair . DT JJ JJ NN NN VBZ VBN IN IN NNP POS JJ NNS , VBG PRP VBZ VBN DT NN MD RB VB JJ . The New Era party has joined the opposition boycott , just days after the Democratic Action , Project Venezuela , Copei , and Justice First parties announced their withdrawal . DT NNP NNP NN VBZ VBN DT NN NN , RB NNS IN DT JJ NNP , NNP NNP , NNP , CC NNP NNP NNS VBD PRP$ NN . Opposition parties say they are boycotting the vote because the electoral council is biased . NN NNS VBP PRP VBP VBG DT NN IN DT JJ NN VBZ VBN . They also say the electronic voting machines do not guarantee confidentiality . PRP RB VBP DT JJ NN NNS VBP RB VB NN . The government said Friday the vote will go forward on Sunday as planned with the Organization of American States and the European Union observing the electoral process . DT NN VBD NNP DT NN MD VB RB IN NNP IN VBN IN DT NNP IN NNP NNPS CC DT NNP NNP VBG DT JJ NN . The government statement also said the National Electoral Council has agreed to a set of 11 changes in response to opposition concerns . DT NN NN RB VBD DT NNP NNP NNP VBZ VBN TO DT NN IN CD NNS IN NN TO NN NNS . Meanwhile , U.S. State Department spokesman Sean McCormack has again denied any U.S. involvement in the withdrawals . RB , NNP NNP NNP NN NNP NNP VBZ RB VBN DT NNP NN IN DT NNS . Backers of a controversial referendum in Kazakhstan to extend President Nursultan Nazarbayev 's rule until the year 2020 say a majority of voters support the idea . NNS IN DT JJ NN IN NNP TO VB NNP NNP NNP POS NN IN DT NN CD VBP DT NN IN NNS VBP DT NN . If the proposal is approved in a referendum , next year 's planned presidential election will not take place . IN DT NN VBZ VBN IN DT NN , JJ NN POS JJ JJ NN MD RB VB NN . Supporters of the proposal say they collected more than five million signatures from Kazakh voters who say they want Mr. Nazarbayev to extend his rule into third decade . NNS IN DT NN VBP PRP VBD JJR IN CD CD NNS IN JJ NNS WP VBP PRP VBP NNP NNP TO VB PRP$ NN IN JJ NN . There are about nine million registered voters in Kazakhstan . EX VBP RB CD CD VBN NNS IN NNP . Mr. Nazarbayev , who has been the country 's leader since 1989 , rejected the referendum plan earlier this month , saying he planned to contest the 2012 election . NNP NNP , WP VBZ VBN DT NN POS NN IN CD , VBD DT NN NN RBR DT NN , VBG PRP VBD TO NN DT CD NN . He is not expected to face any serious challengers . PRP VBZ RB VBN TO VB DT JJ NNS . The U.S. Embassy in Astana issued a statement welcoming the president 's decision to reject the referendum and urged others to avoid steps that would violate Kazakhstan 's constitution . DT NNP NNP IN NNP VBD DT NN VBG DT NN POS NN TO VB DT NN CC VBD NNS TO VB NNS WDT MD VB NNP POS NN . A Chinese Health Ministry official has warned that tens of millions of people could be infected with H1N1 influenza in China in the coming months , and that fatalities would be ' unavoidable ' . DT JJ NNP NNP NN VBZ VBN IN NNS IN NNS IN NNS MD VB VBN IN NNP NN IN NNP IN DT JJ NNS , CC IN NNS MD VB `` JJ `` . The deputy director of the ministry 's health emergency office , Liang Wannian , made the comments to reporters Friday . DT NN NN IN DT NN POS NN NN NN , NNP NNP , VBD DT NNS TO NNS NNP . So far , the world 's most populous nation has reported nearly 7,000 cases of the disease and no deaths . RB RB , DT NN POS RBS JJ NN VBZ VBN RB CD NNS IN DT NN CC DT NNS . More than half of China 's reported cases have been detected since late last month . JJR IN NN IN NNP POS JJ NNS VBP VBN VBN IN RB JJ NN . Of those cases , nearly 95 percent originated in China , whereas the vast majority of cases reported from June to August originated overseas . IN DT NNS , RB CD NN VBN IN NNP , IN DT JJ NN IN NNS VBN IN NNP TO NNP VBD RB . China says it will soon launch a nationwide vaccination program to prevent mass outbreaks of the virus . NNP VBZ PRP MD RB VB DT JJ NN NN TO VB JJ NNS IN DT NN . China has suspended a dam project in the southwestern province of Sichuan and fired a local Communist Party official after large-scale demonstrations . NNP VBZ VBN DT NN NN IN DT JJ NN IN NNP CC VBD DT JJ NNP NNP NN IN JJ NNS . At least one person was killed last month when tens of thousands of farmers in Hanyuan county protested construction of a hydroelectric dam that will flood 1,00,000 people out of their homes . IN JJS CD NN VBD VBN JJ NN WRB NNS IN NNS IN NNS IN NNP NN VBD NN IN DT JJ NN WDT MD VB CD NNS IN IN PRP$ NNS . The protesters were dissatisfied with the compensation offered for residents ' relocation . DT NNS VBD VBN IN DT NN VBN IN NNS POS NN . The local Communist Party said today that county party secretary Tan Zhengyu had been removed from his post earlier this month and replaced by a former deputy . DT JJ NNP NNP VBD NN IN NN NN NN NNP NNP VBD VBN VBN IN PRP$ NN RBR DT NN CC VBN IN DT JJ NN . The central government also has sent a team to deal with the concerns of local residents . DT JJ NN RB VBZ VBN DT NN TO VB IN DT NNS IN JJ NNS . However , scores of riot police remain in the region . RB , NNS IN NN NNS VBP IN DT NN . A U.S. military officer has been charged with stealing nearly $ 7,00,000 of funds intended for humanitarian relief in Iraq and Afghanistan . DT NNP JJ NN VBZ VBN VBN IN VBG RB $ CD IN NNS VBN IN JJ NN IN NNP CC NNP . Captain Michael Dung Nguyen is accused of stealing the money while on duty in Iraq , from April 2007 until last month . NNP NNP NNP NNP VBZ VBN IN VBG DT NN IN IN NN IN NNP , IN NNP CD IN JJ NN . Nguyen was arrested after the U.S. Internal Revenue Service tracked large deposits made by Nguyen in U.S. banks . NNP VBD VBN IN DT NNP NNP NNP NNP VBD JJ NNS VBN IN NNP IN NNP NNS . The army captain is charged with theft of government property , money laundering and illegally structuring financial transactions . DT NN NN VBZ VBN IN NN IN NN NN , NN NN CC RB VBG JJ NNS . A British-based mine clearing agency says two of its Afghan employees have been killed and six others wounded when a remote-controlled bomb tore through their vehicle in southern Afghanistan . DT JJ NN NN NN VBZ CD IN PRP$ JJ NNS VBP VBN VBN CC CD NNS VBD WRB DT JJ NN VBD IN PRP$ NN IN JJ NNP . Halo Trust regional director , Mohammad Ashraf , said Sunday 's blast occurred in the volatile southern Kandahar province , and that the wounded were rushed to nearby hospitals . NNP NNP JJ NN , NNP NNP , VBD NNP POS NN VBD IN DT JJ JJ NNP NN , CC IN DT VBN VBD VBN TO JJ NNS . Also Sunday , in the same province , three Afghan soldiers were wounded in a similar roadside attack . RB NNP , IN DT JJ NN , CD JJ NNS VBD VBN IN DT JJ NN NN . Witnesses say several civilians were also injured in the explosion . NNS VBP JJ NNS VBD RB VBN IN DT NN . No one has claimed responsibility for the blasts . DT NN VBZ VBN NN IN DT NNS . But similar acts have been blamed on Taleban insurgents who have carried out a series of suicide attacks and ambushes against U.S.-led coalition forces , Afghan troops and aid and government workers . CC JJ NNS VBP VBN VBN IN NNP NNS WP VBP VBN RP DT NN IN NN NNS CC NNS IN JJ NN NNS , JJ NNS CC NN CC NN NNS . As the price of gasoline continues to rise in the U.S. , more Americans are buying smaller , more fuel-efficient vehicles . IN DT NN IN NN VBZ TO VB IN DT NNP , RBR NNS VBP VBG JJR , RBR JJ NNS . Others are holding on to their big cars , in hopes that gas prices will eventually go down . NNS VBP VBG IN TO PRP$ JJ NNS , IN NNS IN NN NNS MD RB VB RB . VOA 's Deborah Block has a report . NNP POS NNP NNP VBZ DT NN . Human skulls and clothes found at a mass grave near Samawa Investigators have uncovered a mass grave in southern Iraq containing as many as 1,500 bodies . JJ NNS CC NNS VBN IN DT NN NN IN NNP NNS VBP VBN DT NN NN IN JJ NNP VBG RB JJ IN CD NNS . Forensic experts say most of those buried at the site near the town of Samawa , about 300 kilometers south of Baghdad , are believed to be Kurds . JJ NNS VBP JJS IN DT VBN IN DT NN IN DT NN IN NNP , IN CD NNS RB IN NNP , VBP VBN TO VB NNPS . They say the victims , many of them women and children , were apparently lined up in front of the 18 trenches and shot with AK-47 assault rifles . PRP VBP DT NNS , NN IN PRP NNS CC NNS , VBD RB VBN RP IN NN IN DT CD NNS CC VBN IN NN NN NNS . Officials say the victims were most likely killed during the Anfal campaign of the late 1980s - a drive by Saddam Hussein 's regime to exterminate the Kurdish community of southern Kurdistan . NNS VBP DT NNS VBD RBS JJ VBN IN DT JJ NN IN DT JJ NNS IN DT NN IN NNP NNP POS NN TO VB DT JJ NN IN JJ NNP . According to international human rights groups , as many as 1,82,000 Kurdish civilians disappeared during 1988 alone . VBG TO JJ JJ NNS NNS , RB JJ IN CD NNP NNS VBD IN CD RB . The housing crisis , the credit crunch and high gas prices may be hurting consumer confidence in the United States but the impact is not necessarily the same for everyone . DT NN NN , DT NN NN CC JJ NN NNS MD VB VBG NN NN IN DT NNP NNPS CC DT NN VBZ RB RB DT JJ IN DT . Some see a silver lining in a weak U.S. economy . DT VBP DT NN NN IN DT JJ NNP NN . During tough economic times , some businesses specialize in turning losses into profits . IN JJ JJ NNS , DT NNS VBP IN VBG NNS IN NNS . VOA 's Mil Arcega reports . NNP POS NNP NNP VBZ . Tension is high in Lebanon as government supporters plan a mass rally in Beirut Wednesday to mark the second anniversary of the assassination of former Prime Minister Rafik Hariri . NNP VBZ JJ IN NNP IN NN NNS VBP DT JJ NN IN NNP NNP TO VB DT JJ NN IN DT NN IN JJ NNP NNP NNP NNP . The rally is set to take place in central Beirut , near where anti-government protesters led by the Shi'ite militant group Hezbollah have been camped out since December . DT NN VBZ VBN TO VB NN IN JJ NNP , IN WRB JJ NNS VBN IN DT NNP JJ NN NNP VBP VBN VBN RP IN NNP . Hezbollah has been trying to bring down the pro-Western government of Prime Minister Fuad Siniora . NNP VBZ VBN VBG TO VB RP DT JJ NN IN NNP NNP NNP NNP . Tuesday , bomb blasts on two commuter buses northeast of Beirut killed three people and wounded 20 others . NNP , NN NNS IN CD NN NNS NN IN NNP VBD CD NNS CC VBD CD NNS . Anti-Syrian lawmakers in Lebanon 's parliament blamed the blasts on Syria and called for increased security along the Syrian border . JJ NNS IN NNP POS NN VBD DT NNS IN NNP CC VBN IN JJ NN IN DT JJ NN . Syria is also widely blamed for the February 14 , 2005 slaying of Rafik Hariri -- a charge Damascus denies . NNP VBZ RB RB VBN IN DT NNP CD , CD NN IN NNP NNP IN DT NN NNP VBZ . Pro-government parties want Syria to stay out of Lebanese affairs and support an international investigation into the Hariri assassination . JJ NNS VBP NNP TO VB IN IN JJ NNS CC VB DT JJ NN IN DT NNP NN . A world Buddhist summit of more than 1,000 monks from around the globe has ended in Burma . DT NN NN NN IN JJR IN CD NNS IN IN DT NN VBZ VBN IN NNP . The summit , which opened in the military-ruled southeast Asian nation on Thursday , attracted controversy because of the junta 's reported persecution of some monks and its detention of opposition leader Aung San Suu Kyi . DT NN , WDT VBD IN DT JJ JJ JJ NN IN NNP , VBD NN IN IN DT NN POS VBN NN IN DT NNS CC PRP$ NN IN NN NN NNP NNP NNP NNP . Burma alone sponsored the event after its main sponsor , Japan 's Nenbutsushu sect , boycotted the three-day meeting amid concerns over Burma 's human rights record . NNP RB VBD DT NN IN PRP$ JJ NN , NNP POS NNP NN , VBD DT JJ NN IN NNS IN NNP POS JJ NNS NN . However , the military government praised organizers of the conference and said it had contributed to world peace . RB , DT JJ NN VBD NNS IN DT NN CC VBD PRP VBD VBN TO NN NN . The meeting included appearances by the prime ministers of Thailand , Sri Lanka and Laos , as well as a rare appearance by the head of Burma 's government , General Than Shwe . DT NN VBD NNS IN DT JJ NNS IN NNP , NNP NNP CC NNP , RB RB IN DT JJ NN IN DT NN IN NNP POS NN , NNP NNP NNP . Crude oil prices rose to fresh record highs Friday as traders speculated that reduced output from Nigeria will hamper efforts to produce fuel for the peak summer driving months in the United States . JJ NN NNS VBD TO JJ NN NNS NNP IN NNS VBD IN JJ NN IN NNP MD VB NNS TO VB NN IN DT JJ NN VBG NNS IN DT NNP NNPS . The price of crude oil for future delivery was up more than two dollars , going as high as $ 126.2 a barrel . DT NN IN JJ NN IN JJ NN VBD RB JJR IN CD NNS , VBG RB JJ IN $ CD DT NN . The price of crude oil has doubled in the past year , and is up more than seven percent just this week . DT NN IN JJ NN VBZ VBN IN DT JJ NN , CC VBZ RB JJR IN CD NN RB DT NN . Members of the Organization of Petroleum Exporting Countries have said there is no need to increase oil output . NNS IN DT NNP IN NNP NNP NNPS VBP VBN EX VBZ DT NN TO VB NN NN . They say high oil prices are due to the U.S. dollar 's decline in value , compared to other currencies , and surging investments in commodities . PRP VBP JJ NN NNS VBP JJ TO DT NNP NN POS NN IN NN , VBN TO JJ NNS , CC VBG NNS IN NNS . Two more tropical depressions , one in the Atlantic Ocean and one in the Caribbean , have forecasters waiting to see if this year 's hurricane season will get its 18th named storm . CD JJR JJ NNS , CD IN DT NNP NNP CC CD IN DT NNP , VBP NNS VBG TO VB IN DT NN POS NN NN MD VB PRP$ JJ VBN NN . Early Saturday , a slow-moving depression was reported to be about 1,000 kilometers west-southwest of the Cape Verde Islands . RB NNP , DT JJ NN VBD VBN TO VB IN CD NNS NN IN DT NNP NNP NNP . Its top winds were near 55 kilometers per hour , with some higher gusts . PRP$ JJ NNS VBD IN CD NNS IN NN , IN DT JJR NNS . At the moment , forecasters do not expect it to pose a threat to land . IN DT NN , NNS VBP RB VB PRP TO VB DT NN TO NN . The other storm was reported 175 kilometers southeast of Cozumel , Mexico , moving toward the west-northwest . DT JJ NN VBD VBN CD NNS NN IN NNP , NNP , VBG IN DT NN . Mexico 's government has issued a tropical storm warning for the Yucatan Peninsula , with landfall expected by Sunday . NNP POS NN VBZ VBN DT JJ NN NN IN DT NNP NNP , IN NN VBN IN NNP . Already this is the fourth-busiest Atlantic hurricane season since forecasters began keeping records in 1851 . RB DT VBZ DT JJ NNP NN NN IN NNS VBD VBG NNS IN CD . Indonesian police say Islamic militants in the country are running short of funds and are selling pre-paid phone cards to raise cash for operations . JJ NNS VBP JJ NNS IN DT NN VBP VBG RB IN NNS CC VBP VBG JJ NN NNS TO VB NN IN NNS . National police chief General Sutanto says sources in Saudi Arabia had been getting money to the militants using a courier network , but that was broken up last year . JJ NN NN NNP NNP VBZ NNS IN NNP NNP VBD VBN VBG NN TO DT NNS VBG DT NN NN , CC DT VBD VBN RP JJ NN . With money running out , police say the militants are earning as much as $ 500 a day selling phone cards . IN NN VBG RP , NNS VBP DT NNS VBP VBG RB JJ IN $ CD DT NN VBG NN NNS . Police have said that the fact that the most recent terrorist attacks in Indonesia used small bombs carried in backpacks instead of larger car bombs was a sign the attackers were low on funds . NNS VBP VBN IN DT NN IN DT RBS JJ JJ NNS IN NNP VBD JJ NNS VBN IN NNS IN IN JJR NN NNS VBD DT NN DT NNS VBD JJ IN NNS . Tribal clashes in drought-stricken central Kenya have killed at least 30 people . JJ NNS IN JJ JJ NNP VBP VBN IN JJS CD NNS . Local authorities say cattle rustlers from the Pokot tribe attacked the Samburu tribe late Monday . JJ NNS VBP NNS NNS IN DT NNP NN VBD DT NNP NN JJ NNP . The attackers killed at least 21 Samburu and made off with hundreds of cows . DT NNS VBD IN JJS CD NNP CC VBD RP IN NNS IN NNS . A local member of parliament , Raphael Letimalo , said some of those killed were children . DT JJ NN IN NN , NNP NNP , VBD DT IN DT VBN VBD NNS . Police killed nine of the raiders in a shootout , and are combing the area for the other suspected raiders and the stolen livestock . NNS VBD CD IN DT NNS IN DT NN , CC VBP VBG DT NN IN DT JJ JJ NNS CC DT VBN NN . Much of Kenya is suffering from a severe drought that has hurt farm production , killed livestock and led to shortages of food and water . NN IN NNP VBZ VBG IN DT JJ NN WDT VBZ VBN NN NN , VBN NN CC VBD TO NNS IN NN CC NN . The U.N. World Food Program recently said that about 3.8 million Kenyans will not have enough food over the next months because of the drought . DT NNP NNP NNP NNP RB VBD IN IN CD CD NNS MD RB VB JJ NN IN DT JJ NNS IN IN DT NN . Kenya 's government blames the food crisis on four straight years of lower-than-normal rainfall . NNP POS NN VBZ DT NN NN IN CD JJ NNS IN JJ NN . Iran has rejected U.S. and European economic incentives offered in exchange for abandoning its nuclear enrichment activities , saying it will not bend to external pressure . NNP VBZ VBN NNP CC JJ JJ NNS VBN IN NN IN VBG PRP$ JJ NN NNS , VBG PRP MD RB VB TO JJ NN . The Iranian response comes a day after Washington said it would drop its objections to Iran 's application to the World Trade Organization , WTO , and to the licensing of spare parts for Iranian civilian aircraft . DT JJ NN VBZ DT NN IN NNP VBD PRP MD VB PRP$ NNS TO NNP POS NN TO DT NNP NNP NNP , NNP , CC TO DT NN IN JJ NNS IN JJ JJ NN . A foreign ministry spokesman dismissed the offer Saturday saying restrictions against Tehran 's right to buy spare parts and join the WTO should never have been imposed in the first place . DT JJ NN NN VBD DT NN NNP VBG NNS IN NNP POS NN TO VB JJ NNS CC VB DT NNP MD RB VB VBN VBN IN DT JJ NN . In a major policy shift , the Bush administration agreed to back European incentives , after Britain , France and Germany said they would support U.S. efforts to bring Iran before the U.N. Security Council if nuclear talks fail . IN DT JJ NN NN , DT NNP NN VBD TO VB JJ NNS , IN NNP , NNP CC NNP VBD PRP MD VB NNP NNS TO VB NNP IN DT NNP NNP NNP IN JJ NNS VBP . The tiny Pacific island nation of Kiribati has designated an oceanic wilderness as the world 's largest protected marine reserve . DT JJ NNP NN NN IN NNP VBZ VBN DT JJ NN IN DT NN POS JJS JJ NN NN . The Phoenix Islands Protected Area lies about halfway between Fiji and the U.S. island state of Hawaii , covering more than 4,10,000 square kilometers . DT NNP NNP NNP NNP VBZ IN NN IN NNP CC DT NNP NN NN IN NNP , VBG JJR IN CD JJ NNS . It is one of the Earth 's last intact coral archipelagoes , and boasts a vast biological diversity . PRP VBZ CD IN DT NNP POS JJ JJ JJ NNS , CC VBZ DT JJ JJ NN . Research conducted by Kiribati and the U.S.-based New England Aquarium has discovered more than 120 species of coral and 520 species of fish , some of them new to science . NN VBN IN NNP CC DT JJ NNP NNP NNP VBZ VBN JJR IN CD NNS IN JJ CC JJ NNS IN NN , DT IN PRP JJ TO NN . The area also supports a large population of birds and sea turtles and contains several undersea reefs . DT NN RB VBZ DT JJ NN IN NNS CC NN NNS CC VBZ JJ NN NNS . Kiribati established the reserve to protect it from overfishing . NNP VBD DT NN TO VB PRP IN VBG . Parts of the archipelago are already suffering from the effects of warming seas due to climate change . NNS IN DT NN VBP RB VBG IN DT NNS IN NN NNS JJ TO NN NN . Iraqi police say at least eight policemen were killed in separate insurgent attacks in Baghdad and the northern city of Kirkuk Tuesday . JJ NNS VBP IN JJS CD NNS VBD VBN IN JJ NN NNS IN NNP CC DT JJ NN IN NNP NNP . In Kirkuk , insurgents ambushed a police patrol , killing four officers . IN NNP , NNS VBN DT NN NN , VBG CD NNS . Hours afterwards , two more policemen died in a roadside bomb blast on the outskirts of the city . NNP RB , CD JJR NNS VBD IN DT NN NN NN IN DT NNS IN DT NN . In Baghdad , at least two policemen were killed and several people were wounded when a car bomb exploded outside a restaurant popular with police officers . IN NNP , IN JJS CD NNS VBD VBN CC JJ NNS VBD VBN WRB DT NN NN VBD IN DT NN JJ IN NN NNS . Meanwhile , U.S. and Iraqi forces are continuing an operation against insurgents in western Iraq , despite calls from the country 's Sunni Arab leaders to halt such operations . RB , NNP CC JJ NNS VBP VBG DT NN IN NNS IN JJ NNP , IN NNS IN DT NN POS NNP NNP NNS TO VB JJ NNS . Sunni leaders say halting such attacks in mostly Sunni areas will encourage Sunnis to participate in next month 's parliamentary elections . NNP NNS VBP VBG JJ NNS IN RB JJ NNS MD VB NNP TO VB IN JJ NN POS JJ NNS . Physically challenged Kenyans face serious discrimination in their professional and personal lives . RB VBN NNS VBP JJ NN IN PRP$ JJ CC JJ NNS . But some Kenyans with disabilities have risen above seemingly insurmountable odds to pursue their dreams . CC DT NNS IN NNS VBP VBN IN RB JJ NNS TO VB PRP$ NNS . VOA 's Cathy Majtenyi caught up with a member of Uwezo Mix Dance Theatre and a young man studying graphic art and she filed this report . NNP POS NNP NNP VBD RP IN DT NN IN NNP NNP NNP NNP CC DT JJ NN VBG JJ NN CC PRP VBD DT NN . The White House says North Korean officials have given no indication that Pyongyang is considering returning to the six-nation talks on halting its nuclear weapons program . DT NNP NNP VBZ JJ JJ NNS VBP VBN DT NN IN NNP VBZ VBG VBG TO DT JJ NNS IN VBG PRP$ JJ NNS NN . State Department officials met with North Korean diplomats in New York Monday . NNP NNP NNS VBD IN JJ JJ NNS IN NNP NNP NNP . A spokesman for President Bush said Tuesday that the diplomats said they were committed to the six-party talks , but gave no indication that Pyongyang is ready to return to the negotiations . DT NN IN NNP NNP VBD NNP IN DT NNS VBD PRP VBD VBN TO DT JJ NNS , CC VBD DT NN IN NNP VBZ JJ TO VB TO DT NNS . The spokesman , Scott McClellan , said the White House remains hopeful that North Korea will return to the talks soon , without preconditions . DT NN , NNP NNP , VBD DT NNP NNP VBZ JJ IN NNP NNP MD VB TO DT NNS RB , IN NNS . The New York meeting was the second such direct meeting between U.S. and North Korean officials in less than a month . DT NNP NNP NN VBD DT JJ JJ JJ NN IN NNP CC JJ JJ NNS IN JJR IN DT NN . Egypt attempted to colonize the region of southern Sudan by establishing the province of Equatoria in the 1870s . NNP VBD TO VB DT NN IN JJ NNP IN VBG DT NN IN NNP IN DT NNS . Islamic Mahdist revolutionaries overran the region in 1885 , but in 1898 a British force was able to overthrow the Mahdist regime . NNP NNP VBZ JJ DT NN IN CD , CC IN CD DT JJ NN VBD JJ TO VB DT NNP NN . An Anglo-Egyptian Sudan was established the following year with Equatoria being the southernmost of its eight provinces . DT JJ NN VBD VBN DT JJ NN IN NNP VBG DT NN IN PRP$ CD NNS . The isolated region was largely left to itself over the following decades , but Christian missionaries converted much of the population and facilitated the spread of English . DT JJ NN VBD RB VBN TO PRP IN DT VBG NNS , CC NNP NNS VBD NN IN DT NN CC VBD DT NN IN NNP . When Sudan gained its independence in 1956 , it was with the understanding that the southerners would be able to participate fully in the political system . WRB NNP VBD PRP$ NN IN CD , PRP VBD IN DT NN IN DT NNS MD VB JJ TO VB RB IN DT JJ NN . When the Arab Khartoum government reneged on its promises , a mutiny began that led to two prolonged periods of conflict ( 1955 - 1972 and 1983 - 2005 ) in which perhaps 2.5 million people died - mostly civilians - due to starvation and drought . WRB DT JJ NNP NN VBD IN PRP$ NNS , DT NN VBD DT VBD TO CD JJ NNS IN NN LRB CD IN CD CC CD IN CD RRB IN WDT RB CD CD NNS VBD : RB NNS IN JJ TO NN CC NN . Ongoing peace talks finally resulted in a Comprehensive Peace Agreement , signed in January 2005 . VBG NN NNS RB VBD IN DT NNP NNP NNP , VBN IN NNP CD . As part of this agreement the south was granted a six-year period of autonomy to be followed by a referendum on final status . IN NN IN DT NN DT NN VBD VBN DT JJ NN IN NN TO VB VBN IN DT NN IN JJ NN . The result of this referendum , held in January 2011 , was a vote of 98 % in favor of secession . DT NN IN DT NN , VBN IN NNP CD , VBD DT NN IN CD NN IN NN IN NN . Independence was attained on 9 July 2011 . NN VBD VBN IN CD NNP CD . Tourism is the primary economic activity , accounting for 80 % of GDP and employment . NNP VBZ DT JJ JJ NN , NN IN CD NN IN NN CC NN . The islands hosted 2.4 million visitors in 2008 . DT NNS VBD CD CD NNS IN CD . The manufacturing sector consists of petroleum refining , rum distilling , textiles , electronics , pharmaceuticals , and watch assembly . DT NN NN VBZ IN NN NN , NN NN , NNS , NNS , NNS , CC NN NN . One of the world 's largest petroleum refineries is at Saint Croix . CD IN DT NN POS JJS NN NNS VBZ IN NNP NNP . The agricultural sector is small , with most food being imported . DT JJ NN VBZ JJ , IN JJS NN VBG VBN . International business and financial services are small but growing components of the economy . NNP NN CC JJ NNS VBP JJ CC JJ NNS IN DT NN . The islands are vulnerable to substantial damage from storms . DT NNS VBP JJ TO JJ NN IN NNS . The government is working to improve fiscal discipline , to support construction projects in the private sector , to expand tourist facilities , to reduce crime , and to protect the environment . DT NN VBZ VBG TO VB JJ NN , TO VB NN NNS IN DT JJ NN , TO VB NN NNS , TO VB NN , CC TO VB DT NN . By terms of the 1960 Treaty of Establishment that created the independent Republic of Cyprus , the UK retained full sovereignty and jurisdiction over two areas of almost 254 square kilometers - Akrotiri and Dhekelia . IN NNS IN DT CD NNP IN NNP WDT VBD DT JJ NNP IN NNP , DT NNP VBD JJ NN CC NN IN CD NNS IN RB CD NN NNS , NNP CC NNP . The larger of these is the Dhekelia Sovereign Base Area , which is also referred to as the Eastern Sovereign Base Area . DT JJR IN DT VBZ DT NNP NNP NNP NNP , WP VBZ RB VBN TO IN DT NNP NNP NNP NNP . Lithuanian lands were united under MINDAUGAS in 1236 ; over the next century , through alliances and conquest , Lithuania extended its territory to include most of present-day Belarus and Ukraine . JJ NNS VBD VBN IN NNP IN CD ; IN DT JJ NN , IN NNS CC NN , NNP VBD PRP$ NN TO VB JJS IN JJ NNP CC NNP . By the end of the 14th century Lithuania was the largest state in Europe . IN DT NN IN DT JJ NN NNP VBD DT JJS NN IN NNP . An alliance with Poland in 1386 led the two countries into a union through the person of a common ruler . DT NN IN NNP IN CD VBD DT CD NNS IN DT NN IN DT NN IN DT JJ NN . In 1569 , Lithuania and Poland formally united into a single dual state , the Polish-Lithuanian Commonwealth . IN CD , NNP CC NNP RB VBD IN DT JJ JJ NN , DT JJ NN . This entity survived until 1795 when its remnants were partitioned by surrounding countries . DT NN VBD IN CD WRB PRP$ NNS VBD VBN IN VBG NNS . Lithuania regained its independence following World War I but was annexed by the USSR in 1940 - an action never recognized by the US and many other countries . NNP VBD PRP$ NN VBG NNP NNP NNP CC VBD VBN IN DT NNP IN CD IN DT NN RB VBN IN DT NNP CC JJ JJ NNS . On 11 March 1990 , Lithuania became the first of the Soviet republics to declare its independence , but Moscow did not recognize this proclamation until September of 1991 ( following the abortive coup in Moscow ) . IN CD NNP CD , NNP VBD DT NN IN DT JJ NNS TO VB PRP$ NN , CC NNP VBD RB VB DT NN IN NNP IN CD LRB VBG DT JJ NN IN NNP RRB . The last Russian troops withdrew in 1993 . DT JJ JJ NNS VBD IN CD . Lithuania subsequently restructured its economy for integration into Western European institutions ; it joined both NATO and the EU in the spring of 2004 . NNP RB VBD PRP$ NN IN NN IN JJ JJ NNS ; PRP VBD DT NNP CC DT NNP IN DT NN IN CD . Success of the economy hinges upon seasonal variations in agriculture , tourism , and construction activity as well as remittance inflows . NN IN DT NN VBZ IN JJ NNS IN NN , NN , CC NN NN RB RB IN NN NNS . Much of the workforce is employed in banana production and tourism , but persistent high unemployment has prompted many to leave the islands . NN IN DT NN VBZ VBN IN NN NN CC NN , CC JJ JJ NN VBZ VBN JJ TO VB DT NNS . This lower-middle-income country is vulnerable to natural disasters - tropical storms wiped out substantial portions of crops in 1994 , 1995 , and 2002 . DT JJ NN VBZ JJ TO JJ NNS IN JJ NNS VBD RP JJ NNS IN NNS IN CD , CD , CC CD . In 2008 , the islands had more than 2,00,000 tourist arrivals , mostly to the Grenadines , a drop of nearly 20 % from 2007 . IN CD , DT NNS VBD JJR IN CD NN NNS , RB TO DT NNP , DT NN IN RB CD NN IN CD . Saint Vincent is home to a small offshore banking sector and has moved to adopt international regulatory standards . NNP NNP VBZ NN TO DT JJ JJ NN NN CC VBZ VBN TO VB JJ JJ NNS . The government 's ability to invest in social programs and respond to external shocks is constrained by its high public debt burden , which was over 90 % of GDP at the end of 2010 . DT NN POS NN TO VB IN JJ NNS CC VB TO JJ NNS VBZ VBN IN PRP$ JJ JJ NN NN , WDT VBD IN CD NN IN NN IN DT NN IN CD . Following the global downturn , St. Vincent and the Grenadines saw an economic decline in 2009 , after slowing since 2006 , when GDP growth reached a 10-year high of nearly 7 % . VBG DT JJ NN , NNP NNP CC DT NNP VBD DT JJ NN IN CD , IN VBG IN CD , WRB NN NN VBD DT JJ NN IN RB CD NN . The GONSALVES administration is directing government resources to infrastructure projects , including a new international airport that is expected to be completed in 2011 . DT NNP NN VBZ VBG NN NNS TO NN NNS , VBG DT JJ JJ NN WDT VBZ VBN TO VB VBN IN CD . A MAN , very much annoyed with a Flea , caught him at last , and said , ' Who are you who dare to feed on my limbs , and to cost me so much trouble in catching you ? ' DT NN , RB JJ JJ IN DT NN , VBD PRP IN JJ , CC VBD , `` WP VBP PRP WP VBP TO VB IN PRP$ NNS , CC TO VB PRP RB RB NN IN VBG PRP . `` The Flea replied , ' O my dear sir , pray spare my life , and destroy me not , for I can not possibly do you much harm . ' DT NNP VBD , `` NNP PRP$ JJ NN , VB VB PRP$ NN , CC VB PRP RB , IN PRP MD RB RB VB PRP RB VB . `` The Man , laughing , replied , ' Now you shall certainly die by mine own hands , for no evil , whether it be small or large , ought to be tolerated . ' DT NN , VBG , VBD , `` RB PRP MD RB VB IN JJ JJ NNS , IN DT NN , IN PRP VB JJ CC JJ , MD TO VB VBN . `` A Tortoise desired to change its place of residence , so he asked an Eagle to carry him to his new home , promising her a rich reward for her trouble . DT NN VBD TO VB PRP$ NN IN NN , IN PRP VBD DT NN TO VB PRP TO PRP$ JJ NN , VBG PRP$ DT JJ NN IN PRP$ NN . The Eagle agreed and seizing the Tortoise by the shell with her talons soared aloft . DT NN VBD CC VBG DT NN IN DT NN IN PRP$ NNS VBD RB . On their way they met a Crow , who said to the Eagle : ' Tortoise is good eating . ' IN PRP$ NN PRP VBD DT NN , WP VBD TO DT NN : `` NN VBZ JJ NN . `` ' The shell is too hard , ' said the Eagle in reply . `` DT NN VBZ RB JJ , `` VBD DT NN IN RB . ' The rocks will soon crack the shell , ' was the Crow 's answer ; and the Eagle , taking the hint , let fall the Tortoise on a sharp rock , and the two birds made a hearty meal of the Tortoise . `` DT NNS MD RB VB DT NN , `` VBD DT NN POS NN ; CC DT NN , VBG DT NN , VB VB DT NN IN DT JJ NN , CC DT CD NNS VBD DT JJ NN IN DT NN . Never soar aloft on an enemy 's pinions . RB VB RB IN DT NN POS NNS . Two Thieves having stolen a Piano and being unable to divide it fairly without a remainder went to law about it and continued the contest as long as either one could steal a dollar to bribe the judge . CD NNS VBG VBN DT NN CC VBG JJ TO NN PRP RB IN DT NN VBD TO NN IN PRP CC VBD DT NN RB RB IN DT CD MD VB DT NN TO VB DT NN . When they could give no more an Honest Man came along and by a single small payment obtained a judgment and took the Piano home , where his daughter used it to develop her biceps muscles , becoming a famous pugiliste . WRB PRP MD VB DT JJR DT JJ NN VBD RB CC IN DT JJ JJ NN VBD DT NN CC VBD DT NNP NN , WRB PRP$ NN VBD PRP TO VB PRP$ NNS NNS , VBG DT JJ NN . The smoke detector industry is covering up research showing more people are injured every year falling from ladders and stepstools while trying to replace smoke detector batteries than are injured in house fires . DT NN NN NN VBZ VBG RP NN VBG JJR NNS VBP VBN DT NN VBG IN NNS CC NNS IN VBG TO VB NN NN NNS IN VBP VBN IN NN NNS . Turkish security officials say Kurdish rebels killed eight soldiers in an attack on an army outpost in eastern Turkey Monday . JJ NN NNS VBP NNP NNS VBD CD NNS IN DT NN IN DT NN NN IN JJ NNP NNP . They say several others were wounded when rebels rammed a vehicle into the post and threw a hand grenade in Tunceli province . PRP VBP JJ NNS VBD VBN WRB NNS VBD DT NN IN DT NN CC VBD DT NN NN IN NNP NN . One attacker was killed in a shootout following the blast . CD NN VBD VBN IN DT NN VBG DT NN . At least one other attacker escaped . IN JJS CD JJ NN VBD . On Sunday , the Turkish military shelled a Kurdish rebel stronghold in northern Iraq . IN NNP , DT JJ NN VBD DT JJ NN NN IN JJ NNP . But ground forces did not cross the border . CC NN NNS VBD RB VB DT NN . Turkey has been massing troops near the Iraqi border . NNP VBZ VBN VBG NNS IN DT JJ NN . But U.S. Defense Secretary Robert Gates has warned Turkey against sending troops into northern Iraq to hunt down Kurdish rebels accused of carrying out terrorist attacks in Turkey . CC NNP NNP NNP NNP NNP VBZ VBN NNP IN VBG NNS IN JJ NNP TO VB RB JJ NNS VBN IN VBG RP JJ NNS IN NNP . The Kurdistan Worker 's Party , or PKK , has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 . DT NNP NNP POS NNP , CC NNP , VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD . The United States , the European Union and Turkey classify the PKK as a terrorist group . DT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN . Turkey 's prime minister is appealing for national unity after unrest in Kurdish-majority areas of the country left at least 16 people dead in the past week . NNP POS JJ NN VBZ VBG IN JJ NN IN NN IN JJ NNS IN DT NN VBD IN JJS CD NNS JJ IN DT JJ NN . Speaking to members of his political party , Recep Tayyip Erdogan Tuesday vowed not to give in to violence and to expand democratic reforms . VBG TO NNS IN PRP$ JJ NN , NNP NNP NNP NNP VBD RB TO VB IN TO NN CC TO VB JJ NNS . He also rejected any dialogue with the main Kurdish political group , the Democratic Society Party , until it openly condemns the outlawed Kurdistan Workers Party , or PKK as a terrorist organization . PRP RB VBD DT NN IN DT JJ JJ JJ NN , DT NNP NNP NNP , IN PRP RB VBZ DT JJ NNP NNP NNP , CC NNP IN DT JJ NN . In the past week , hundreds of Kurds have clashed with Turkish security forces in the country 's southeast . IN DT JJ NN , NNS IN NNS VBP VBN IN JJ NN NNS IN DT NN POS NN . The unrest started last Tuesday in Diyarbakir after a funeral for 14 members of the PKK killed by the security forces . DT NN VBD JJ NNP IN NNP IN DT NN IN CD NNS IN DT NNP VBN IN DT NN NNS . The United States has condemned the violence and called on all parties to exercise restraint . DT NNP NNPS VBZ VBN DT NN CC VBN IN DT NNS TO VB NN . Thousands of demontrators have marched through the Nepalese capital , Kathmandu , to demand the restoration of democracy and the withdrawal of strict new media laws . NNS IN NNS VBP VBN IN DT JJ NN , NNP , TO VB DT NN IN NN CC DT NN IN JJ JJ NNS NNS . Human rights activists , journalists , lawyers , teachers and students chanted slogans protesting restrictions on the media that allow the royal government to shut down newspapers and radio stations . JJ NNS NNS , NNS , NNS , NNS CC NNS VBD NNS VBG NNS IN DT NNS WDT VBP DT JJ NN TO VB RP NNS CC NN NNS . The new laws also call for longer prison sentences for journalists convicted of defamation . DT JJ NNS RB VBP IN JJR NN NNS IN NNS VBN IN NN . Criticism of King Gyanendra and independent reporting on Nepal 's Maoist insurgency have been banned since the king seized absolute power on February 1 . NN IN NNP NNP CC JJ NN IN NNP POS NNP NN VBP VBN VBN IN DT NN VBD JJ NN IN NNP CD . The Maoists have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state . DT NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN . The king says his move was necessary to quell the insurgency , which has claimed more than 11,000 lives . DT NN VBZ PRP$ NN VBD JJ TO VB DT NN , WDT VBZ VBN JJR IN CD NNS . The White House says President George Bush will host a lunch next month with President-elect Barack Obama and all the living former American presidents . DT NNP NNP VBZ NNP NNP NNP MD VB DT NN JJ NN IN NNP NNP NNP CC PDT DT VBG JJ JJ NNS . The White House said Wednesday Mr. Bush has invited his father , George H.W . DT NNP NNP VBD NNP NNP NNP VBZ VBN PRP$ NN , NNP NNP . Bush , along with former Presidents Jimmy Carter and Bill Clinton , to the luncheon that is set for January 7 . NNP , IN IN JJ NNS NNP NNP CC NNP NNP , TO DT NN WDT VBZ VBN IN NNP CD . President Bush has made a smooth transition to the next administration a top priority as his presidency winds down . NNP NNP VBZ VBN DT JJ NN TO DT JJ NN DT JJ NN IN PRP$ NN VBZ RP . Last month , Mr. Bush and President-elect Obama held talks at the White House on major issues the incoming chief executive will face during his administration . JJ NN , NNP NNP CC NNP NNP VBD NNS IN DT NNP NNP IN JJ NNS DT JJ NN NN MD VB IN PRP$ NN . Mr. Obama will be sworn into office on January 20 . NNP NNP MD VB VBN IN NN IN NNP CD . Pakistan 's President Pervez Musharraf and visiting Japanese Prime Minister Junichiro Koizumi have met in Islamabad for talks on nuclear nonproliferation and economic issues . NNP POS NNP NNP NNP CC VBG JJ NNP NNP NNP NNP VBP VBN IN NNP IN NNS IN JJ NN CC JJ NNS . Japanese diplomats said Saturday the two leaders discussed Islamabad 's efforts to prevent leaks of Pakistani nuclear technology . JJ NNS VBD NNP DT CD NNS VBD NNP POS NNS TO VB NNS IN JJ JJ NN . International concerns over possible such transfers emerged after Pakistani nuclear scientist Abdul Qadeer Khan confessed last year to illegally selling nuclear technology to several countries , including Iran . JJ NNS IN JJ JJ NNS VBD IN JJ JJ NN NNP NNP NNP VBD JJ NN TO RB VBG JJ NN TO JJ NNS , VBG NNP . Mr. Khan is currently under Pakistani investigation , but few details have been made public . NNP NNP VBZ RB IN JJ NN , CC JJ NNS VBP VBN VBN JJ . The Associated Press quotes a Japanese official as saying Mr. Koizumi promised , as expected , a resumption of Japanese loans to Pakistan , ending a financial freeze imposed after Pakistan 's 1998 nuclear tests . DT NNP NNP VBZ DT JJ NN IN VBG NNP NNP VBD , IN VBN , DT NN IN JJ NNS TO NNP , VBG DT JJ NN VBN IN NNP POS CD JJ NNS . Mr. Koizumi 's one-day visit to Pakistan comes after his stop for talks Friday in India . NNP NNP POS JJ NN TO NNP VBZ IN PRP$ NN IN NNS NNP IN NNP . An official at Iran 's Interior Ministry says the estimated 1.5 million Afghan refugees illegally living in the country could face arrest and detention for up to five years . DT NN IN NNP POS NNP NNP VBZ DT JJ CD CD JJ NNS RB VBG IN DT NN MD VB NN CC NN IN RP TO CD NNS . He says Iranian officials now have legal authority to begin moving unregistered refugees into detention camps with prison-like conditions . PRP VBZ JJ NNS RB VBP JJ NN TO VB VBG JJ NNS IN NN NNS IN JJ NNS . Iran began expelling tens of thousands of Afghan immigrants last April by loading them on buses and dropping them off at the Iran-Afghanistan border . NNP VBD VBG NNS IN NNS IN JJ NNS JJ NNP IN VBG PRP IN NNS CC VBG PRP RP IN DT JJ NN . Several million Afghans fled to Iran after the Soviet invasion of Afghanistan almost 30 years ago and from subsequent fighting among Afghan factions . JJ CD NNS VBD TO NNP IN DT JJ NN IN NNP RB CD NNS RB CC IN JJ NN IN JJ NNS . Iranian officials say the immigrants are causing a strain on the economy . JJ NNS VBP DT NNS VBP VBG DT NN IN DT NN . Since 2002 , the United Nations Refugee Agency has helped 8,00,000 Afghans in Iran return home . IN CD , DT NNP NNP NNP NNP VBZ VBN CD NNS IN NNP NN NN . But in recent years the number of returnees has declined because of increasing violence in Afghanistan . CC IN JJ NNS DT NN IN NNS VBZ VBN IN IN VBG NN IN NNP . Some French lawmakers have boycotted a meeting with Libyan leader Moammar Gadhafi in protest against his country 's human rights record . DT JJ NNS VBP VBN DT NN IN JJ NN NNP NNP IN NN IN PRP$ NN POS JJ NNS NN . Members of the Socialist Party and some from the ruling Union for a Popular Movement refused to attend Tuesday 's event at the National Assembly . NNS IN DT NNP NNP CC DT IN DT NN NNP IN DT NNP NNP VBD TO VB NNP POS NN IN DT NNP NNP . Mr. Gadhafi began his visit to France on Monday and met with French President Nicholas Sarkozy . NNP NNP VBD PRP$ NN TO NNP IN NNP CC VBD IN JJ NNP NNP NNP . Mr. Sarkozy says he asked Mr. Gadhafi to make progress on human rights . NNP NNP VBZ PRP VBD NNP NNP TO VB NN IN JJ NNS . But the Libyan leader later denied that in an interview with French television . CC DT JJ NN RB VBD DT IN DT NN IN JJ NN . On Monday , the two countries signed business deals worth billions of dollars , including Libya 's purchase of a civilian nuclear reactor and 21 Airbus planes . IN NNP , DT CD NNS VBD NN NNS JJ NNS IN NNS , VBG NNP POS NN IN DT JJ JJ NN CC CD NNP NNS . It is Mr. Gadhafi 's first trip to France since 1973 . PRP VBZ NNP NNP POS JJ NN TO NNP IN CD . Libya was long-condemned for supporting terrorism , but its relations with the international community have improved since the country ended its nuclear weapons program in 2003 . NNP VBD JJ IN VBG NN , CC PRP$ NNS IN DT JJ NN VBP VBN IN DT NN VBD PRP$ JJ NNS NN IN CD . Pakistan and Jordan have called for a quick withdrawal of Israeli forces from Lebanon and the creation of a Palestinian state . NNP CC NNP VBP VBN IN DT JJ NN IN JJ NNS IN NNP CC DT NN IN DT JJ NN . Pakistan 's President Pervez Musharraf and Jordanian King Abdullah spoke to reporters after holding talks Tuesday in Islamabad . NNP POS NNP NNP NNP CC JJ NNP NNP VBD TO NNS IN VBG NNS NNP IN NNP . General Musharraf said it is crucial to restore Lebanon 's sovereignty so that the root cause of the Middle East problems can be addressed . NNP NNP VBD PRP VBZ JJ TO VB NNP POS NN RB IN DT NN NN IN DT NNP NNP NNS MD VB VBN . King Abdullah said a just and lasting peace in the Middle East can only be achieved by establishing an independent Palestinian state , living side-by-side with Israel . NNP NNP VBD DT RB CC JJ NN IN DT NNP NNP MD RB VB VBN IN VBG DT JJ JJ NN , VBG JJ IN NNP . He urged the two sides to resume peace negotiations . PRP VBD DT CD NNS TO VB NN NNS . Pakistan does not recognize Israel , and has condemned the Jewish state for attacking Lebanon after last month 's kidnapping of two Israeli soldiers by Hezbollah fighters . NNP VBZ RB VB NNP , CC VBZ VBN DT JJ NN IN VBG NNP IN JJ NN POS NN IN CD JJ NNS IN NNP NNS . Pope John Paul says he is praying for victims of the Asian earthquakes and tidal waves , and is calling on members of the international community to mobilize assistance for victims of the calamity . NNP NNP NNP VBZ PRP VBZ VBG IN NNS IN DT JJ NNS CC JJ NNS , CC VBZ VBG IN NNS IN DT JJ NN TO VB NN IN NNS IN DT NN . Speaking to Roman Catholic pilgrims in Vatican City , the pope said Sunday 's news from Southeast Asia has cast a pall of sadness over Christmas celebrations . VBG TO NNP NNP NNS IN NNP NNP , DT NN VBD NNP POS NN IN NNP NNP VBZ VBN DT NN IN NN IN NNP NNS . When treating people with Type Two Diabetes , doctors sometimes prescribe high doses of medications that lower blood sugar . WRB VBG NNS IN NNP NNP NNS , NNS RB VBP JJ NNS IN NNS IN VBP NN NN . The American Diabetes Association recommends good control of blood sugars in order to reduce the risk of heart attacks . DT NNP NNP NNP VBZ JJ NN IN NN NNS IN NN TO VB DT NN IN NN NNS . But recently part of a large clinical diabetes study was halted after researchers found an increased death rate among those taking higher doses of blood sugar lowering medication . CC RB NN IN DT JJ JJ NNS NN VBD VBN IN NNS VBD DT VBN NN NN IN DT VBG JJR NNS IN NN NN VBG NN . The ACCORD trial , as it is called , is funded by several U.S. government agencies and the finding surprised many doctors . DT NNP NN , IN PRP VBZ VBN , VBZ VBN IN JJ NNP NN NNS CC DT NN VBD JJ NNS . The surprise death rate has lead some U.S. physicians to push an uncommon diet as a way to lower blood sugar . DT NN NN NN VBZ JJ DT NNP NNS TO VB DT JJ NN IN DT NN TO JJR NN NN . VOA 's Shelley Schlender reports from Phoenix , Arizona . NNP POS NNP NNP VBZ IN NNP , NNP . There appears to be growing support for a suggestion that voting in Iraq 's election , now scheduled for January 30 , be spread over a two to three-week period . EX VBZ TO VB VBG NN IN DT NN IN NN IN NNP POS NN , RB VBN IN NNP CD , VB VBN IN DT CD CC JJ NN . In Baghdad Wednesday , the Interior Ministry said staggered voting would facilitate the work of international observers and guarantee the participation of all Iraqis . IN NNP NNP , DT NNP NNP VBD JJ NN MD VB DT NN IN JJ NNS CC VB DT NN IN DT NNS . Ministry officials also said it would allow for adequate security to be provided to voters and candidates . NN NNS RB VBD PRP MD VB IN JJ NN TO VB VBN TO NNS CC NNS . The final decision lies with the independent Electoral Commission , not the government . DT JJ NN VBZ IN DT JJ NNP NNP , RB DT NN . In Washington , the State Department said the details of the election are up to the Iraqis to decide , but the United States is currently operating under the assumption that elections will be held nationwide on January 30 . IN NNP , DT NNP NNP VBD DT NNS IN DT NN VBP RB TO DT NNS TO VB , CC DT NNP NNPS VBZ RB VBG IN DT NN IN NNS MD VB VBN JJ IN NNP CD . Insurgents in Iraq have carried out a series of attacks Tuesday north of Baghdad against the country 's security forces , killing at least 23 police and national guards . NNS IN NNP VBP VBN RP DT NN IN NNS NNP NN IN NNP IN DT NN POS NN NNS , VBG IN JJS CD NNS CC JJ NNS . Eighteen policemen were among the dead . CD NNS VBD IN DT NN . Authorities say a combination of gunmen and car bombs were responsible for the violence in and near the towns of Tikrit , Samarra , Balad and Baquba . NNS VBP DT NN IN NNS CC NN NNS VBD JJ IN DT NN IN CC IN DT NNS IN NNP , NNP , NNP CC NNP . In Baghdad , officials say a senior National Guard officer survived an apparent assassination attempt when a car bomb exploded near his home . IN NNP , NNS VBP DT JJ NNP NNP NN VBD DT JJ NN NN WRB DT NN NN VBD IN PRP$ NN . At least six guardsmen were wounded in the blast . IN JJS CD NNS VBD VBN IN DT NN . U.S. Brigadier General Jeffrey Hammond told reporters in Baghdad that the U.S. military in Iraq expects an escalation in attacks and assassination attempts ahead of the January 30 elections . NNP NNP NNP NNP NNP VBD NNS IN NNP IN DT NNP NN IN NNP VBZ DT NN IN NNS CC NN NNS RB IN DT NNP CD NNS . U.S. President Barack Obama and his wife , Michelle , spent a portion of the Christmas holidays visiting troops and their families at a Hawaii Marine base . NNP NNP NNP NNP CC PRP$ NN , NNP , VBD DT NN IN DT NNP NNS VBG NNS CC PRP$ NNS IN DT NNP NNP NN . The Obamas visited the same military base last year during their holiday vacation in the president 's home state . DT NNP VBD DT JJ JJ NN JJ NN IN PRP$ NN NN IN DT NN POS NN NN . Mr. Obama and the first lady are encouraging the public to support military communities , especially during the holidays when separation from family can be difficult . NNP NNP CC DT JJ NN VBP VBG DT NN TO VB JJ NNS , RB IN DT NNS WRB NN IN NN MD VB JJ . Mrs. Obama says a ' care package ' or a simple ' thank you ' is an important gift to members of the military . NNP NNP VBZ DT `` NN NN `` CC DT JJ `` VB PRP `` VBZ DT JJ NN TO NNS IN DT NN . Sudan 's army says it has killed at least 300 rebels in clashes this week , while losing more than 70 of its own troops . NNP POS NN VBZ PRP VBZ VBN IN JJS CD NNS IN NNS DT NN , IN VBG JJR IN CD IN PRP$ JJ NNS . Sudanese state media on Saturday quoted General Al-Tayeb al-Musbah Osman as describing the fighting with the Darfur region 's Justice and Equality Movement . JJ NN NNS IN NNP VBD NNP NNP NNP NNP IN VBG DT NN IN DT NNP NN POS NN CC NN NN . The Sudanese general said government forces destroyed rebels ' vehicles during the series of clashes . DT JJ NN VBD NN NNS VBD NNS POS NNS IN DT NN IN NNS . Violence in Darfur has increased since insurgent forces withdrew from peace talks in May . NN IN NNP VBZ VBN IN JJ NNS VBD IN NN NNS IN NNP . The region has experienced seven years of war and instability since rebels took up arms in 2003 , accusing the government of neglecting the western region . DT NN VBZ VBN CD NNS IN NN CC NN IN NNS VBD RP NNS IN CD , VBG DT NN IN VBG DT JJ NN . The United Nations says fighting and related violence have killed 3,00,000 people and displaced more than 2.7 million . DT NNP NNP VBZ NN CC JJ NN VBP VBN CD NNS CC VBD JJR IN CD CD . Sudan puts the death toll at 10,000 . NNP VBZ DT NN NN IN CD . Al-Qaida 's deputy leader , Ayman al-Zawahiri , is second after Osama bin Laden on the F.B.I 's list of most wanted terrorists . NNP POS NN NN , NNP NNP , VBZ JJ IN NNP NNP NNP IN DT NNP POS NN IN JJS JJ NNS . The Egyptian-born doctor has become the terrorist organization 's most senior spokesman - appearing in a series of video , audio and print messages over the past three months . DT JJ NN VBZ VBN DT JJ NN POS RBS JJ NN : VBG IN DT NN IN NN , NN CC NN NNS IN DT JJ CD NNS . In his most recent comment broadcast on videotape last week by Arabic broadcaster al-Jazeera , Zawahiri called on President Bush to confess that the United States has been defeated in Iraq and Afghanistan . IN PRP$ RBS JJ NN NN IN NN JJ NN IN JJ NN NNP , NNP VBD IN NNP NNP TO VB IN DT NNP NNPS VBZ VBN VBN IN NNP CC NNP . Ayman al-Zawahiri was indicted for his alleged involvement in the 1998 bombings of U.S. embassies in Dar es Salaam , Tanzania and Nairobi , Kenya . NNP NNP VBD VBN IN PRP$ JJ NN IN DT CD NNS IN NNP NNS IN NNP VBZ NNP , NNP CC NNP , NNP . He founded the Egyptian Islamic Jihad , a group that opposes the secular Egyptian government and seeks to overthrow it through violent means . PRP VBD DT JJ NNP NNP , DT NN WDT VBZ DT JJ JJ NN CC VBZ TO VB PRP IN JJ NNS . Zawahiri has been on the run since late 2001 after U.S.-led forces invaded Afghanistan . NNP VBZ VBN IN DT NN IN JJ CD IN JJ NNS VBD NNP . Thousands of Iranians have gathered in the southeastern city of Bam to mark Sunday 's one-year anniversary of the earthquake that claimed more than 31,000 lives and devastated the ancient city . NNS IN NNS VBP VBN IN DT JJ NN IN NNP TO VB NNP POS JJ NN IN DT NN WDT VBD JJR IN CD NNS CC VBD DT JJ NN . Relatives and friends of survivors have been making pilgrimages to Bam 's cemetery to remember the dead with prayers , flowers and candles . NNS CC NNS IN NNS VBP VBN VBG NNS TO NNP POS NN TO VB DT JJ IN NNS , NNS CC NNS . Despite President Mohammed Khatami 's pledge to rebuild , and help from the international community , much of Bam remains in ruins , and the slow pace of reconstruction has angered survivors . IN NNP NNP NNP POS NN TO VB , CC NN IN DT JJ NN , NN IN NNP VBZ IN NNS , CC DT JJ NN IN NN VBZ VBN NNS . The powerful quake shook the city before dawn on December 26 last year , killing thousands as they slept . DT JJ NN VBD DT NN IN NN IN NNP CD JJ NN , VBG NNS IN PRP VBD . Pakistan 's military says it has killed about 60 pro-Taliban militants in heavy fighting in the country 's northwest . NNP POS JJ VBZ PRP VBZ VBN IN CD JJ NNS IN JJ NN IN DT NN POS NN . A military spokesman says fighter jets attacked militant camps in the Swat Valley inflicting heavy casualties . DT JJ NN VBZ NN NNS VBD JJ NNS IN DT NNP NNP VBG JJ NNS . The attacks took place near Bajaur where there has been heavy fighting between the military and militants since August . DT NNS VBD NN IN NNP WRB EX VBZ VBN JJ NN IN DT NN CC NNS IN NNP . The main town in the area , Khar has been under a strict curfew for several days . DT JJ NN IN DT NN , NNP VBZ VBN IN DT JJ NN IN JJ NNS . According to the United Nations the fighting has displaced about 1,90,000 people . VBG TO DT NNP NNPS DT NN VBZ VBN IN CD NNS . The U.N. says many have fled into neighboring Afghanistan to escape the violence . DT NNP VBZ NN VBP VBN IN VBG NNP TO VB DT NN . Colombian officials say leftist rebels have attacked a military convoy in remote northeastern Colombia , killing six soldiers and 10 security officers . JJ NNS VBP JJ NNS VBP VBN DT JJ NN IN JJ JJ NNP , VBG CD NNS CC CD NN NNS . The attack Thursday took place near the town of Hacari in Norte de Santander province , which borders Venezuela . DT NN NNP VBD NN IN DT NN IN NNP IN NNP NNP NNP NN , WDT VBZ NNP . The Colombian military says it and the Department of Administrative Security ( DAS ) were carrying out operations against the country 's largest rebel group , the Revolutionary Armed Forces of Colombia ( FARC ) when explosives were detonated alongside their convoy . DT JJ NN VBZ PRP CC DT NNP IN NNP NNP LRB NNP RRB VBD VBG RP NNS IN DT NN POS JJS NN NN , DT NNP NNP NNS IN NNP LRB NNP RRB WRB NNS VBD VBN IN PRP$ NN . Violence has increased ahead of the May 28 election , in which anti-crime President Alvaro Uribe , is expected to win re-election . NN VBZ VBN RB IN DT NNP CD NN , IN WDT JJ NNP NNP NNP , VBZ VBN TO VB NN . Human Rights Watch has accused FARC of massacring dozens of civilians , including children in an effort to intimidate voters . NNP NNP NNP VBZ VBN NNP IN VBG NNS IN NNS , VBG NNS IN DT NN TO VB NNS . Dozens of commercial truck drivers honked their horns as they circled the U.S. Capitol Thursday to protest the rising cost of diesel fuel . NNS IN JJ NN NNS VBD PRP$ NNS IN PRP VBD DT NNP NNP NNP TO VB DT VBG NN IN NN NN . The drivers looped around the National Mall in Washington D.C. to draw attention to an issue they say is hurting their livelihood . DT NNS VBD IN DT NNP NNP IN NNP NNP TO VB NN TO DT NN PRP VBP VBZ VBG PRP$ NN . The average U.S. price of diesel fuel is $ 1.06 per liter . DT JJ NNP NN IN NN NN VBZ $ CD IN NN . That is up from 76 cents per liter a year ago . DT VBZ RB IN CD NNS IN NN DT NN RB . Meanwhile , the average price of unleaded gasoline in the United States is 88 cents per liter . RB , DT JJ NN IN JJ NN IN DT NNP NNPS VBZ CD NNS IN NN . That is up from 73 cents per liter this time last year . DT VBZ RB IN CD NNS IN NN DT NN JJ NN . The U.S. trade deficit hit the third-highest level on record in August , as the price of imported oil soared . DT NNP NN NN VBD DT JJS NN IN NN IN NNP , IN DT NN IN VBN NN VBD . Thursday 's report from the Commerce Department says the gap between what Americans buy and what they sell abroad was $ 59 billion . NNP POS NN IN DT NNP NNP VBZ DT NN IN WP NNS VBP CC WP PRP VBP RB VBD $ CD CD . The figures show little impact from Hurricane Katrina , which struck at the end of the month . DT NNS VBP JJ NN IN NNP NNP , WDT VBD IN DT NN IN DT NN . But a separate government report from the Labor Department shows storm damage prompted 75,000 more people to apply for unemployment compensation last week . CC DT JJ NN NN IN DT NNP NNP VBZ NN NN VBD CD JJR NNS TO VB IN NN NN JJ NN . That brings the total jobs lost to hurricanes to 4,38,000 . DT VBZ DT JJ NNS VBN TO NNS TO CD . Nationwide , the number of people asking for first time compensation declined slightly during the week . NNP , DT NN IN NNS VBG IN JJ NN NN VBD RB IN DT NN . Analysts say in spite of the hurricanes , the overall labor market is strong as companies expand labor forces to meet growing demand . NNS VBP IN NN IN DT NNS , DT JJ NN NN VBZ JJ IN NNS VBP NN NNS TO VB VBG NN . Iraq has halted crude oil exports to South Korea , in protest of an exploration deal between Korean firms and the Kurdish regional government . NNP VBZ VBN JJ NN NNS TO NNP NNP , IN NN IN DT NN NN IN JJ NNS CC DT JJ JJ NN . The annual contract between Iraq and South Korea 's top refiner , SK Energy , was due for renewal January 1 . DT JJ NN IN NNP CC NNP NNP POS JJ NN , NNP NNP , VBD JJ IN NN NNP CD . SK Energy says it has been told to back out of the Kurdistan deal if it wants exports to resume . NNP NNP VBZ PRP VBZ VBN VBN TO VB IN IN DT NNP NN IN PRP VBZ NNS TO VB . A consortium of South Korean firms led by the state-run Korea National Oil Corporation signed a deal with the Kurdish government to explore the Bazian oil field in the Dahuk region of northern Iraq . DT NN IN JJ JJ NNS VBN IN DT JJ NNP NNP NNP NNP VBD DT NN IN DT JJ NN TO VB DT JJ NN NN IN DT NNP NN IN JJ NNP . The corporation says it will not change its plans . DT NN VBZ PRP MD RB VB PRP$ NNS . South Korean energy officials say Iraqi crude accounts for less than four percent of total imports . JJ JJ NN NNS VBP JJ JJ NNS IN JJR IN CD NN IN JJ NNS . Officials say purchases will be made in the spot market to cover the shortage . NNS VBP NNS MD VB VBN IN DT NN NN TO VB DT NN . A roadside bomb blast near the motorcade of Iraq 's oil minister has killed at least two of his escorts and wounded two others . DT NN NN NN IN DT NN IN NNP POS NN NN VBZ VBN IN JJS CD IN PRP$ NNS CC VBN CD NNS . Iraqi officials say Ibrahim Bahr al-Uloum was not hurt in the bombing , which occurred in a north Baghdad district as he set out for the oil refining city of Beiji . JJ NNS VBP NNP NNP NNP VBD RB VBN IN DT NN , WDT VBD IN DT JJ NNP NN IN PRP VBD RP IN DT NN NN NN IN NNP . Meanwhile , U.S. military officials deny that al-Qaida in Iraq has abducted two Marines in western Iraq , where U.S. troops are in the third day of an offensive to drive out insurgents . RB , NNP JJ NNS VBP IN NNP IN NNP VBZ VBN CD NNS IN JJ NNP , WRB NNP NNS VBP IN DT JJ NN IN DT NN TO VB RP NNS . A website message from the purported kidnappers Sunday said the Marines would be killed unless all female Sunni Muslim prisoners in U.S. and Iraqi custody were freed within 24 hours . DT JJ NN IN DT JJ NNS NNP VBD DT NNPS MD VB VBN IN DT JJ NNP NNP NNS IN NNP CC JJ NN VBD VBN IN CD NNS . U.S. officials say at least 20 insurgents have been killed in the current operation . NNP NNS VBP IN JJS CD NNS VBP VBN VBN IN DT JJ NN . A report commissioned by the British government says the country 's foreign policy contributes to driving some members of its Muslim population toward extremism . DT NN VBN IN DT JJ NN VBZ DT NN POS JJ NN VBZ TO VBG DT NNS IN PRP$ NNP NN IN NN . The report says perceived injustices in Western foreign policy , especially in the Middle East , often trigger radical impulses in the Muslim community . DT NN VBZ VBN NNS IN JJ JJ NN , RB IN DT NNP NNP , RB VBZ JJ NNS IN DT NNP NN . The report adds that criticism of British foreign policy should not be seen as disloyalty . DT NN VBZ IN NN IN JJ JJ NN MD RB VB VBN IN NN . It says peaceful disagreement is a sign of a healthy democracy . PRP VBZ JJ NN VBZ DT NN IN DT JJ NN . The Home Office organized seven working groups to prepare the report on the root causes of the July 7 suicide attacks by British Muslims that killed 52 people in London . DT NNP NNP VBD CD VBG NNS TO VB DT NN IN DT NN NNS IN DT NNP CD NN NNS IN JJ NNPS WDT VBD CD NNS IN NNP . The groups made several recommendations , including creation of a British Islam website to counter extremist Islamic Internet sites . DT NNS VBD JJ NNS , VBG NN IN DT JJ NNP NN TO VB NN JJ NN NNS . Iraqi officials have increased security in the holy city of Karbala where tens of thousands of pilgrims are gathering for Ashura , one of the most important holy days for Shi'ites . JJ NNS VBP VBN NN IN DT JJ NN IN NNP WRB NNS IN NNS IN NNS VBP VBG IN NNP , CD IN DT RBS JJ JJ NNS IN NNS . Authorities have deployed at least 23,000 security force members around the city , located south of Baghdad . NNS VBP VBN IN JJS CD NN NN NNS IN DT NN , VBN NN IN NNP . Police say a roadside bomb targeting Shi'ite pilgrims exploded in Baghdad NNS VBP DT NN NN VBG NNP NNS VBD IN NNP Tuesday , killing at least 39 people . NNP , VBG IN JJS CD NNS . Iraqi officials say at least four Shi'ite pilgrims were killed in a suicide bombing near the capital , Monday . JJ NNS VBP IN JJS CD NNP NNS VBD VBN IN DT NN VBG IN DT NN , NNP . Ashura is celebrated by Shi'ite Muslims around the world . NNP VBZ VBN IN NNP NNPS IN DT NN . It commemorates the death of Imam Hussein more than 1,300 years ago . PRP VBZ DT NN IN NNP NNP JJR IN CD NNS RB . He was a grandson of the Prophet Mohammed . PRP VBD DT NN IN DT NNP NNP . Monday is a national holiday in Japan . NNP VBZ DT JJ NN IN NNP . It 's ' Coming of Age Day , ' a day of recognition for those who turn 20 years old this year . PRP VBZ `` VBG IN NNP NNP , `` DT NN IN NN IN DT WP VBP CD NNS JJ DT NN . Twenty is the age of adulthood in Japan , when a person is old enough to vote , drink or smoke . CD VBZ DT NN IN NN IN NNP , WRB DT NN VBZ JJ RB TO VB , VB CC VB . Financial markets and many offices are closed for the holiday . JJ NNS CC JJ NNS VBP VBN IN DT NN . Municipal governments host special coming of age ceremonies for the 20-year-olds in their juristictions . JJ NNS VBP JJ VBG IN NN NNS IN DT NNS IN PRP$ NNS . The ceremonies are held to encourage responsibility and self-reliance . DT NNS VBP VBN TO VB NN CC NN . Young men usually wear suits to the ceremony . JJ NNS RB VBP NNS TO DT NN . Young women usually wear special kimonos bought or rented for the event . JJ NNS RB VBP JJ NNS VBD CC VBD IN DT NN . Pakistan-based Islamic militants fighting Indian rule in Kashmir have announced what they are calling a ' new jihad ' or holy struggle to help victims of Saturday 's quake . JJ JJ NNS VBG JJ NN IN NNP VBP VBN WP PRP VBP VBG DT `` JJ NN `` CC JJ NN TO VB NNS IN NNP POS NN . The group was originally known as Lashkar-e-Toiba . DT NN VBD RB VBN IN NNP . But it changed its name to Jamaat-ud-Dawa after the United States blacklisted it as a terrorist organization . CC PRP VBD PRP$ NN TO NNP IN DT NNP NNPS VBD PRP IN DT JJ NN . It says its activists have launched a campaign throughout Pakistan to collect relief goods for quake victims in Pakistani Kashmir . PRP VBZ PRP$ NNS VBP VBN DT NN IN NNP TO VB NN NNS IN NN NNS IN JJ NNP . A spokesman for the group says all members of the group are busy in the new effort . DT NN IN DT NN VBZ DT NNS IN DT NN VBP JJ IN DT JJ NN . The charity has dispatched trucks carrying blankets , tents and food to quake-affected areas and it plans to send more . DT NN VBZ VBN NNS VBG NNS , NNS CC NN TO JJ NNS CC PRP VBZ TO VB RBR . The spokesman also was quoted as saying the group has set up three field hospitals in the worst hit Pakistani city of Muzaffarabad . DT NN RB VBD VBN IN VBG DT NN VBZ VBN RP CD NN NNS IN DT JJS NN JJ NN IN NNP . Officials in Djibouti say two of their soldiers were killed and at least 21 others wounded in a battle with Eritrean forces on their disputed border . NNS IN NNP VBP CD IN PRP$ NNS VBD VBN CC IN JJS CD NNS VBD IN DT NN IN JJ NNS IN PRP$ JJ NN . Djibouti military and diplomatic sources say the fighting began Tuesday in the northern Mount Gabla area . NNP JJ CC JJ NNS VBP DT NN VBD NNP IN DT JJ NNP NNP NN . Sporadic fighting was reported Wednesday . JJ NN VBD VBN NNP . Officials in Djibouti say the fighting began after several Eritrean soldiers deserted , crossing the border into Djibouti and drawing gunfire from the Eritrean troops . NNS IN NNP VBP DT NN VBD IN JJ JJ NNS VBD , VBG DT NN IN NNP CC VBG NN IN DT JJ NNS . The Eritrean government has not confirmed or denied the incident . DT JJ NN VBZ RB VBN CC VBN DT NN . It did issue a statement saying it was surprised by Djibouti 's recent anti-Eritrean campaigns and refused to be drawn into what it called Djibouti 's ' concocted animosity . ' PRP VBD VB DT NN VBG PRP VBD VBN IN NNP POS JJ JJ NNS CC VBD TO VB VBN IN WP PRP VBD NNP POS `` VBN NN . `` The two Horn of Africa nations have been locked in a standoff since mid-April , when Djibouti accused Eritrean troops of illegally crossing into its territory . DT CD NNP IN NNP NNS VBP VBN VBN IN DT NN IN NN , WRB NNP VBD JJ NNS IN RB VBG IN PRP$ NN . The countries clashed over their border in the 1990s . DT NNS VBD IN PRP$ NN IN DT NNS . Two U.S. lawmakers who blocked $ 100 million in U.S. aid to Lebanon 's military say they have lifted their hold on the funds after being assured the aid would not fall into the hands of Hezbollah militants threatening Israel . CD NNP NNS WP VBD $ CD CD IN NNP NN TO NNP POS JJ NN PRP VBP VBN PRP$ NN IN DT NNS IN VBG VBN DT NN MD RB VB IN DT NNS IN NNP NNS VBG NNP . Democratic Representative Howard Berman released a statement Friday saying he based his decision to release the funds on a U.S. review of the aid-to-Lebanon program and a series of classified briefings with Obama administration officials . NNP NNP NNP NNP VBD DT NN NNP VBG PRP VBD PRP$ NN TO VB DT NNS IN DT NNP NN IN DT JJ NN CC DT NN IN JJ NNS IN NNP NN NNS . Fellow Democratic Representative Nita Lowey confirmed through a spokesman that she has also lifted her hold on the funds . NNP NNP NNP NNP NNP VBD IN DT NN IN PRP VBZ RB VBN PRP$ NN IN DT NNS . The lawmakers withheld their support for the aid to the Lebanese Armed Forces in August after a border clash between Lebanese and Israeli soldiers that killed two Lebanese soldiers , a Lebanese journalist , and an Israeli officer . DT NNS VBD PRP$ NN IN DT NN TO DT JJ JJ NNS IN NNP IN DT NN NN IN JJ CC JJ NNS WDT VBD CD JJ NNS , DT JJ NN , CC DT JJ NN . Berman is chairman of the House Foreign Affairs committee . NNP VBZ NN IN DT NNP NNP NNPS NN . Lowey heads a foreign operations subcommittee on the House Appropriations committee . NNP VBZ DT JJ NNS NN IN DT NNP NNPS NN . Iranian authorities say a bomb exploded at a military parade in the northwest and has killed at least 12 people , wounding 70 others . JJ NNS VBP DT NN VBD IN DT JJ NN IN DT NN CC VBZ VBN IN JJS CD NNS , VBG CD NNS . Reports from Mahabad say most of the victims are women and children . NNS IN NNP VBP JJS IN DT NNS VBP NNS CC NNS . The wives of two military officers are said to be among those killed . DT NNS IN CD JJ NNS VBP VBN TO VB IN DT VBN . The bomb went off at a military parade in the northwestern town Wednesday morning . DT NN VBD RP IN DT JJ NN IN DT JJ NN NNP NN . Similar events are being held around the country as it marks the beginning of the Iran-Iraq war , 30 years ago . JJ NNS VBP VBG VBN IN DT NN IN PRP VBZ DT NN IN DT NNP NN , CD NNS RB . No one immediately claimed responsibility for the blast . DT NN RB VBD NN IN DT NN . But provincial Governor Vahid Jalalzadeh blamed what he called ' counter-revolutionary groups . ' CC JJ NNP NNP NNP VBD WP PRP VBD `` JJ NNS . `` The phrase is often used to refer to Kurdish militants in the region . DT NN VBZ RB VBN TO VB TO VB NNS IN DT NN . Mahabad lies close to the borders of Turkey and Iraq and is home to many ethnic Kurds and minority Sunni Muslims . NNP VBZ RB TO DT NNS IN NNP CC NNP CC VBZ NN TO JJ JJ NNS CC NN NNP NNPS . When fireworks light the sky at the Beijing Olympics opening ceremonies , Cai Guo-Quiang will be making art . WRB NNS VB DT NN IN DT NNP NNPS NN NNS , NNP NNP MD VB VBG NN . This Chinese born artist who now calls New York home creates artwork from fireworks and gunpowder . DT JJ VBN NN WP RB VBZ NNP NNP NN VBZ NN IN NNS CC NN . He is currently designing the computer-controlled firework spectacle that will mark the start of the Beijing games . PRP VBZ RB VBG DT JJ NN NN WDT MD VB DT NN IN DT NNP NNS . Recently , his work was on display at New York 's Guggenheim Museum in an exhibit called I Want to Believe . RB , PRP$ NN VBD IN NN IN NNP NNP POS NNP NNP IN DT NN VBD PRP VBP TO VB . For producer Wang Yiru , Elaine Lu has the story . IN NN NNP NNP , NNP NNP VBZ DT NN . U.S. Secretary of State Condoleezza Rice says the United Nations may need to take a greater role in peacekeeping efforts in Sudan 's war-weary Darfur region . NNP NNP IN NNP NNP NNP VBZ DT NNP NNPS MD VB TO VB DT JJR NN IN VBG NNS IN NNP POS JJ NNP NN . Ms. Rice says the 7000-member African Union peacekeeping force in Darfur is ' pretty close to the limits ' of its ability to contain violence , amid mounting tensions along the border between Sudan and Chad . NNP NNP VBZ DT JJ NNP NNP VBG NN IN NNP VBZ `` RB RB TO DT NNS `` IN PRP$ NN TO VB NN , IN VBG NNS IN DT NN IN NNP CC NNP . The Secretary of State says the Sudanese government should cooperate with the international community , instead of opposing proposals to increase the peacekeeping force in the country 's restive western region . DT NNP IN NNP VBZ DT JJ NN MD VB IN DT JJ NN , RB IN VBG NNS TO VB DT NN NN IN DT NN POS JJ JJ NN . Three years of war in Darfur between rebel groups and a pro-government Arab militia have displaced millions of people from their homes . CD NNS IN NN IN NNP IN JJ NNS CC DT JJ JJ NN VBP VBN NNS IN NNS IN PRP$ NNS . The conflict has killed tens of thousands of people . DT NN VBZ VBN NNS IN NNS IN NNS . The U.S. Peace Corps is evacuating 35 of its volunteers from western Kenya because of the violence that has rocked the country since the disputed December 27 presidential election . DT NNP NNP NNP VBZ VBG CD IN PRP$ NNS IN JJ NNP IN IN DT NN WDT VBZ VBN DT NN IN DT JJ NNP CD JJ NN . The relief agency says the volunteers are safe , and should arrive in the main Tanzanian city of Dar es Salaam Saturday . DT NN NN VBZ DT NNS VBP JJ , CC MD VB IN DT JJ JJ NN IN NNP NNP NNP NNP . The Peace Corps has 144 volunteers based in Kenya , although the organization says 22 of them are currently out of the country . DT NNP NNP VBZ CD NNS VBN IN NNP , IN DT NN VBZ CD IN PRP VBP RB IN IN DT NN . An agency statement says the remaining volunteers have been ' consolidated in a variety of locations . ' DT NN NN VBZ DT VBG NNS VBP VBN `` VBN IN DT NN IN NNS . `` The U.S. Embassy in Nairobi is asking U.S. citizens in Kenya to remain indoors while the fighting continues , and urges them to consider leaving for their own safety . DT NNP NNP IN NNP VBZ VBG NNP NNS IN NNP TO VB NNS IN DT NN VBZ , CC VBZ PRP TO VB VBG IN PRP$ JJ NN . More than 300 people have been killed in the post-election violence . JJR IN CD NNS VBP VBN VBN IN DT JJ NN . A doctor for the World Health Organization in Ivory Coast says 40 people have died from meningitis and more than 200 have been infected in rebel-held parts of the country . DT NN IN DT NNP NNP NNP IN NNP NNP VBZ CD NNS VBP VBN IN NNS CC JJR IN CD VBP VBN VBN IN JJ NNS IN DT NN . Spokesman Aka Bian Tanoh blamed the outbreak on the lack of vaccines and trained medical workers , who have fled violence in the area after a failed coup attempt sparked at civil war in 2002 . NNP NNP NNP NNP VBD DT NN IN DT NN IN NNS CC JJ JJ NNS , WP VBP VBN NN IN DT NN IN DT VBN NN NN VBD IN JJ NN IN CD . He says a vaccination campaign is urgently needed in the northeastern region of Bouna , noting that immunizations have dropped sharply since last year . PRP VBZ DT NN NN VBZ RB VBN IN DT JJ NN IN NNP , VBG IN NNS VBP VBN RB IN JJ NN . Ivory Coast has been divided between the rebel-held north and government-controlled south since the end of violence in 2003 . NNP NNP VBZ VBN VBN IN DT JJ NN CC JJ NN IN DT NN IN NN IN CD . Mauritania has asked for international aid to help thousands of homeless people after heavy rains caused mudslides in the eastern part of the country . NNP VBZ VBN IN JJ NN TO VB NNS IN JJ NNS IN JJ NNS VBD NNS IN DT JJ NN IN DT NN . The country 's finance minister , Abderahmane Ould Hamma Vezzaz , said Sunday about 10,000 people in and around the town of Tintane were left homeless after heavy rains that started last week . DT NN POS NN NN , NNP NNP NNP NNP , VBD NNP IN CD NNS IN CC IN DT NN IN NNP VBD VBN JJ IN JJ NNS WDT VBD JJ NN . Those rains caused mudslides that wiped out homes and businesses in much of the town in southeastern Mauritania , near the border with Mali . DT NNS VBD NNS WDT VBD RP NNS CC NNS IN NN IN DT NN IN JJ NNP , IN DT NN IN NNP . At least two people were reported killed in the mudslides and an unknown number of others are missing . IN JJS CD NNS VBD VBN VBN IN DT NNS CC DT JJ NN IN NNS VBP VBG . China 's health ministry has confirmed the country 's eighth human infection of bird flu . NNP POS NN NN VBZ VBN DT NN POS JJ JJ NN IN NN NN . The official Xinhua news agency reports officials said a six-year-old boy in central Hunan province first showed symptoms of the disease on December 24 and is now being treated for the deadly H5N1 strain of the virus . DT JJ NNP NN NN NNS NNS VBD DT JJ NN IN JJ NNP NN RB VBD NNS IN DT NN IN NNP CD CC VBZ RB VBG VBN IN DT JJ NNP NN IN DT NN . Also today , Indonesia 's Health Ministry says initial medical tests indicate a 39-year-old man died of suspected bird flu earlier this month . RB NN , NNP POS NNP NNP VBZ JJ JJ NNS VBP DT JJ NN VBD IN JJ NN NN RBR DT NN . A ministry official says the man had been in contact with sick poultry . DT NN NN VBZ DT NN VBD VBN IN NN IN JJ NN . If the World Health Organization laboratory confirms the man had the H5N1 strain of bird flu , it will raise Indonesia 's death toll from the virus to 12 . IN DT NNP NNP NNP NN VBZ DT NN VBD DT NNP NN IN NN NN , PRP MD VB NNP POS NN NN IN DT NN TO CD . Bird flu is known to have killed more than 70 people in Asia since 2003 . NNP NN VBZ VBN TO VB VBN JJR IN CD NNS IN NNP IN CD . Investigators in Mexico have recovered at least 18 bodies from a mass grave near the Pacific coast resort city of Acapulco . NNS IN NNP VBP VBN IN JJS CD NNS IN DT NN NN IN DT NNP NN NN NN IN NNP . Authorities do not yet know if the bodies found in the grave are those of the 20 men abducted last month while visiting Acapulco from neighboring Michoacan state . NNS VBP RB RB VB IN DT NNS VBN IN DT NN VBP DT IN DT CD NNS VBN JJ NN IN VBG NNP IN VBG NNP NN . Police began digging at the site after receiving an anonymous tip , which led them to discover two bodies nearby . NNS VBD VBG IN DT NN IN VBG DT JJ NN , WDT VBD PRP TO VB CD NNS RB . An eruption of suspected drug violence has left more than 28,000 people dead across Mexico since the government began cracking down on cartels in 2006 . DT NN IN JJ NN NN VBZ VBN JJR IN CD NNS JJ IN NNP IN DT NN VBD VBG RP IN NNS IN CD . Meanwhile , U.S. officials said they have discovered a tunnel used for drug smuggling across the California-Mexico border . RB , NNP NNS VBD PRP VBP VBN DT NN VBN IN NN NN IN DT NNP NN . Authorities said they seized 20 tons of marijuana at a site near the tunnel , which ran more than 500 meters underground from Mexico to Otay Mesa , California . NNS VBD PRP VBD CD NNS IN NN IN DT NN IN DT NN , WDT VBD JJR IN CD NNS RB IN NNP TO NNP NNP , NNP . Iran 's Intelligence Minister has accused the United States of spying on the country 's nuclear sites . NNP POS NNP NNP VBZ VBN DT NNP NNPS IN VBG IN DT NN POS JJ NNS . Iran 's state-run news agency ( IRNA ) quoted Ali Yunesi as saying the United States has been using satellites and other tools to spy on Iran for a long time . NNP POS JJ NN NN LRB NNP RRB VBN NNP NNP IN VBG DT NNP NNPS VBZ VBN VBG NNS CC JJ NNS TO VB IN NNP IN DT JJ NN . Earlier this week , the Washington Post reported that unmanned surveillance drones have been flying over Iran for almost a year to search for evidence of nuclear weapons programs and detect weaknesses in air defenses . RBR DT NN , DT NNP NNP VBD IN JJ NN NNS VBP VBN VBG IN NNP IN RB DT NN TO VB IN NN IN JJ NNS NNS CC VB NNS IN NN NNS . Meanwhile , the head of the U.N. nuclear agency says there has been no evidence so far to support U.S. suspicions that Tehran is developing nuclear weapons . RB , DT NN IN DT NNP JJ NN VBZ EX VBZ VBN DT NN RB RB TO VB NNP NNS IN NNP VBZ VBG JJ NNS . In an interview with four U.S. newspapers ( including the Post ) , Mohamed ElBaradei also called for greater U.S. participation in diplomatic efforts to engage Iran and North Korea in talks about their nuclear programs . IN DT NN IN CD NNP NNS LRB VBG DT NNP RRB , NNP NNP RB VBD IN JJR NNP NN IN JJ NNS TO VB NNP CC NNP NNP IN NNS IN PRP$ JJ NNS . A new opinion poll conducted in eight nations that are U.S. allies indicates a majority of people do not want the United States to secretly interrogate suspected terrorists in their country . DT JJ NN NN VBN IN CD NNS WDT VBP NNP NNS VBZ DT NN IN NNS VBP RB VB DT NNP NNPS TO RB VB JJ NNS IN PRP$ NN . The Associated Press-Ipsos poll last month asked people in Canada , Mexico , South Korea , France , Germany , Italy , Spain and Britain about their opinions on torturing and secretly interrogating terrorist suspects . DT NNP NNP NN JJ NN VBD NNS IN NNP , NNP , NNP NNP , NNP , NNP , NNP , NNP CC NNP IN PRP$ NNS IN NN CC RB VBG JJ NNS . The poll shows a clear majority of people in every nation would oppose secret American interrogations conducted in their country . DT NN VBZ DT JJ NN IN NNS IN DT NN MD VB JJ JJ NNS VBN IN PRP$ NN . However , people were more closely split over whether it is justified to torture suspected terrorists to obtain information about terrorist activities . RB , NNS VBD RBR RB VBN IN IN PRP VBZ JJ TO VB JJ NNS TO VB NN IN JJ NNS . A majority of respondents in Spain and Italy said such action would never be justified . DT NN IN NNS IN NNP CC NNP VBD JJ NN MD RB VB VBN . But about half of people in Canada , Mexico , France , Germany and Britain said torture could be justified on certain occasions . CC IN NN IN NNS IN NNP , NNP , NNP , NNP CC NNP VBD NN MD VB VBN IN JJ NNS . Monday marks the one year anniversary of the tsunami that devastated the Indian Ocean coastline from Malaysia to East Africa and memorials to the victims of that natural disaster have already begun . NNP VBZ DT CD NN NN IN DT NN WDT VBD DT NNP NNP NN IN NNP TO NNP NNP CC NNS TO DT NNS IN DT JJ NN VBP RB VBN . In Thailand Saturday , some mourners prayed , others observed a moment of silence while separately the country 's sea gypsy tribe , the Moken , banged drums , chanted and made offerings to the sea . IN NNP NNP , DT NNS VBN , NNS VBD DT NN IN NN IN RB DT NN POS NN NN NN , DT NNP , VBD NNS , VBD CC VBD NNS TO DT NN . The tsunami , triggered by a massive earthquake off Sumatra island , killed more than 2,00,000 people and left more than two million people homeless . DT NN , VBN IN DT JJ NN IN NNP NN , VBD RBR IN CD NNS CC VBD JJR IN CD CD NNS JJ . Many ceremonies are planned for Monday , when survivors , relatives of victims , government officials and others in the region and around the world mark the day that one of the worst natural disasters in recent history occurred . JJ NNS VBP VBN IN NNP , WRB NNS , NNS IN NNS , NN NNS CC NNS IN DT NN CC IN DT NN NN DT NN IN CD IN DT JJS JJ NNS IN JJ NN VBD . Poland and the United States have opened formal talks on a controversial U.S. plan to place part of a U.S. missile defense system on Polish soil . NNP CC DT NNP NNPS VBP VBN JJ NNS IN DT JJ NNP NN TO VB NN IN DT NNP NN NN NN IN JJ NN . A U.S. State Department senior advisor , Robert Loftis , met Monday in Warsaw with Polish defense officials . DT NNP NNP NNP JJ NN , NNP NNP , VBD NNP IN NNP IN JJ NN NNS . U.S. embassy spokesman Andrew Schilling characterized the meeting as a good beginning , with an exchange of ideas about how negotiations should move forward . NNP NN NN NNP NNP VBD DT NN IN DT JJ NN , IN DT NN IN NNS IN WRB NNS MD VB RB . Another round of higher level talks is set for next week involving senior U.S. envoy John Rood , the U.S. Assistant Secretary of State for International Security . DT NN IN JJR NN NNS VBZ VBN IN JJ NN VBG JJ NNP NN NNP NNP , DT NNP NNP NNP IN NNP IN NNP NNP . Polish Prime Minister Jaroslaw Kaczynski has voiced support for the deployment of 10 U.S. missile interceptors in Poland and guidance technology in the Czech Republic . JJ NNP NNP NNP NNP VBZ VBN NN IN DT NN IN CD NNP NN NNS IN NNP CC NN NN IN DT JJ NNP . Washington has repeatedly said the missile system is aimed at protecting the United States and its allies from missile attacks from Iran . NNP VBZ RB VBN DT NN NN VBZ VBN IN VBG DT NNP NNPS CC PRP$ NNS IN NN NNS IN NNP . Russia strongly opposes the plan , saying the missile shield would threaten Russian security . NNP RB VBZ DT NN , VBG DT NN NN MD VB JJ NN . Palestinian Prime Minister Ahmed Qureia has submitted his resignation to run for a seat in the Palestinian parliament in next month 's elections . JJ NNP NNP NNP NNP VBZ VBN PRP$ NN TO VB IN DT NN IN DT JJ NN IN JJ NN POS NNS . Mr. Qureia , a former Fatah party peace negotiator under the late Yasser Arafat , was required by law to leave office ahead of the January 25 polls . NNP NNP , DT JJ NNP NN NN NN IN DT JJ NNP NNP , VBD VBN IN NN TO VB NN RB IN DT NNP CD NNS . Palestinian Authority President Mahmoud Abbas did not immediately name a replacement . JJ NNP NNP NNP NNP VBD RB RB VB DT NN . Late Wednesday , the rival Hamas party registered a slate of candidates headed by senior leader Ismail Haniyah . RB NNP , DT JJ NNP NN VBD DT NN IN NNS VBN IN JJ NN NNP NNP . The slate also includes two widows of prominent militants killed by the Israeli military . DT NN RB VBZ CD NNS IN JJ NNS VBN IN DT JJ NN . Another candidate , Mariam Farhat , is the mother of three militant sons killed over the past three years by Israeli forces . DT NN , NNP NNP , VBZ DT NN IN CD JJ NNS VBN IN DT JJ CD NNS IN JJ NNS . Meanwhile , the fourth and final phase of local council elections was completed Thursday in parts of the West Bank and Gaza Strip . RB , DT JJ CC JJ NN IN JJ NN NNS VBD VBN NNP IN NNS IN DT NNP NNP CC NNP NNP . Airport officials from around the world are cautioning passengers to ' pack lightly ' and arrive early as delays continue following Thursday 's arrest in Britain of key figures in an alleged plot to blow up U.S.-bound airliners . NN NNS IN IN DT NN VBP VBG NNS TO `` VB RB `` CC VB RB IN NNS VBP VBG NNP POS NN IN NNP IN JJ NNS IN DT JJ NN TO VB RP JJ NNS . British officials are asking passengers Friday to arrive prepared for security checks . JJ NNS VBP VBG NNS NNP TO VB JJ IN NN NNS . Travelers should have no hand luggage and items like prescription medicine should be kept in clear plastic bags . NNS MD VB DT NN NN CC NNS IN NN NN MD VB VBN IN JJ NN NNS . Long lines are reported at Heathrow Airport , with many flights being canceled . JJ NNS VBP VBN IN NNP NNP , IN JJ NNS VBG VBN . Asian airports have introduced new security measures Friday as well , banning all liquids and gels from cabins . JJ NNS VBP VBN JJ NN NNS NNP IN RB , VBG DT NNS CC NNS IN NNS . New Zealand also banned the substances from flights to Britain and the United States . NNP NNP RB VBD DT NNS IN NNS TO NNP CC DT NNP NNPS . U.S. authorities have designated all U.S.-bound flights from Britain under a ' severe ' threat level , the highest level of alert . NNP NNS VBP VBN DT JJ NNS IN NNP IN DT `` JJ `` NN NN , DT JJS NN IN NN . All other international flights are operating under a ' high ' threat level . DT JJ JJ NNS VBP VBG IN DT `` JJ `` NN NN . Iran has expressed interest in continuing talks with the United States on Iraq , begun last month in Baghdad . NNP VBZ VBN NN IN VBG NNS IN DT NNP NNPS IN NNP , VBN JJ NN IN NNP . Iranian media quote Foreign Minister Manouchehr Mottaki as saying Tehran will view a continuation of the talks positively , if Iraqi Prime Minister Nouri al-Maliki and other Iraqi officials call for them to take place . JJ NNS VBP NNP NNP NNP NNP IN VBG NNP MD VB DT NN IN DT NNS RB , IN JJ NNP NNP NNP NNP CC JJ JJ NNS VBP IN PRP TO VB NN . Mottaki spoke after meeting Sunday in Tehran with Iraqi Deputy Prime Minister Barham Saleh . NNP VBD IN VBG NNP IN NNP IN JJ NNP NNP NNP NNP NNP . Late last month , the U.S. ambassador to Iraq , Ryan Crocker , held talks with his Iranian counterpart , Hassan Kazemi Qomi , on the security situation in Iraq . RB JJ NN , DT NNP NN TO NNP , NNP NNP , VBD NNS IN PRP$ JJ NN , NNP NNP NNP , IN DT NN NN IN NNP . During the talks , the U.S. urged Iran to stop supporting militias in Iraq . IN DT NNS , DT NNP VBD NNP TO VB VBG NNS IN NNP . Crocker said Tehran asserted that the coalition presence in Iraq was an occupation . NNP VBD NNP VBD IN DT NN NN IN NNP VBD DT NN . Tehran denies it is responsible for insurgent attacks in Iraq . NNP VBZ PRP VBZ JJ IN JJ NNS IN NNP . Last month 's meeting marked the highest-level talks between the U.S. and Iran in almost 30 years . JJ NN POS NN VBD DT JJ NNS IN DT NNP CC NNP IN RB CD NNS . Bermet Akayeva NNP NNP The daughter of ousted Kyrgyz President Askar Akayev has unexpectedly appeared in parliament to assume the seat she won in disputed elections earlier this year . DT NN IN JJ JJ NNP NNP NNP VBZ RB VBN IN NN TO VB DT NN PRP VBD IN JJ NNS RBR DT NN . Bermet Akayeva returned to Bishkek after weeks in self-imposed exile following a late March coup . NNP NNP VBD TO NNP IN NNS IN JJ NN VBG DT JJ NNP NN . She told journalists outside the parliament Thursday that she does not expect any problems from the Kyrgyz people , nor does she fear prosecution . PRP VBD NNS IN DT NN NNP IN PRP VBZ RB VB DT NNS IN DT JJ NNS , CC VBZ PRP VB NN . Ms. Akayeva predicted that her brother Aidar , who also won a parliamentary seat , will return to Kyrgyzstan soon . NNP NNP VBD IN PRP$ NN NNP , WP RB VBD DT JJ NN , MD VB TO NNP RB . Last week , parliament voted to strip the members of Mr. Akayev 's family of immunity from prosecution . JJ NN , NN VBD TO VB DT NNS IN NNP NNP POS NN IN NN IN NN . Her father , who resigned last week after nearly 15 years in power , fled Kyrgyzstan after protesters ransacked his offices in Bishkek and the opposition seized power March 24 . PRP$ NN , WP VBD JJ NN IN RB CD NNS IN NN , VBD NNP IN NNS VBD PRP$ NNS IN NNP CC DT NN VBD NN NNP CD . North Korea 's demand that it be given a light water reactor before dismantling its nuclear weapons program has sparked mixed reactions from the six nations attending the talks . NNP NNP POS NN IN PRP VB VBN DT JJ NN NN IN VBG PRP$ JJ NNS NN VBZ VBN JJ NNS IN DT CD NNS VBG DT NNS . The White House says the demand is the opposite of the sequence of events agreed to on Monday and suggested Pyongyang needs time to reflect on the deal . DT NNP NNP VBZ DT NN VBZ DT NN IN DT NN IN NNS VBD TO IN NNP CC VBD NNP VBZ NN TO VB IN DT NN . Japan called the demand ' unacceptable . ' NNP VBD DT NN `` JJ . `` China 's Foreign Ministry urged all sides to keep their commitments . NNP POS NNP NNP VBD DT NNS TO VB PRP$ NNS . North Korea had pledged to give up its nuclear weapons in return for energy aid and security assurances at talks in Beijing . NNP NNP VBD VBN TO VB RP PRP$ JJ NNS IN NN IN NN NN CC NN NNS IN NNS IN NNP . Parties agreed that supplying a light water reactor for civilian use would be discussed later . NNS VBD IN VBG DT JJ NN NN IN JJ NN MD VB VBN RB . But soon after signing the agreement , the North said Washington should not expect Pyongyang to dismantle its weapons before it received light water reactors . CC RB IN VBG DT NN , DT NNP VBD NNP MD RB VB NNP TO VB PRP$ NNS IN PRP VBD JJ NN NNS . At least four people , including a German peacekeeper , have been killed in two separate suicide attacks against the NATO-led International Security Assistance Force in the Afghan capital , Kabul . IN JJS CD NNS , VBG DT JJ NN , VBP VBN VBN IN CD JJ NN NNS IN DT JJ NNP NNP NNP NNP IN DT JJ NN , NNP . Local authorities say the two bombings Monday occurred within 90 minutes of each other on a 500-meter stretch of road near the offices of organizers of last September 's legislative elections . JJ NNS VBP DT CD NNS NNP VBD IN CD NNS IN DT NN IN DT JJ NN IN NN IN DT NNS IN NNS IN JJ NNP POS JJ NNS . They say the attackers rammed explosive-laden cars into vehicles belonging to the NATO-led peacekeepers , and that several people were wounded in the incidents . PRP VBP DT NNS VBD JJ NNS IN NNS VBG TO DT JJ NNS , CC IN JJ NNS VBD VBN IN DT NNS . Later in the day , NATO troops foiled what they believe was an attempted third attack by opening fire on a car racing toward the scene of the initial blasts . RB IN DT NN , NNP NNS VBD WP PRP VBP VBD DT JJ JJ NN IN VBG NN IN DT NN NN IN DT NN IN DT JJ NNS . Witnesses say at least two people in the car were killed . NNS VBP IN JJS CD NNS IN DT NN VBD VBN . A man identifying himself as a spokesman for the ousted Taleban said the group was responsible for the attacks and warned of more suicide bombings . DT NN VBG PRP IN DT NN IN DT JJ NNP VBD DT NN VBD JJ IN DT NNS CC VBD IN JJR NN NNS . Mexican President Vicente Fox has called on United States and Mexico to work together to control lawlessness along the border of the two countries . JJ NNP NNP NNP VBZ VBN IN NNP NNP CC NNP TO VB RB TO VB NN IN DT NN IN DT CD NNS . Speaking in the Mexican state of Sonora Tuesday , Mr. Fox said the crime along the border is the shared responsibility of both governments . VBG IN DT JJ NN IN NNP NNP , NNP NNP VBD DT NN IN DT NN VBZ DT JJ NN IN DT NNS . Mr. Fox issued his call after the governors of two U.S. states , Arizona and New Mexico , declared states of emergency along their border with Mexico . NNP NNP VBD PRP$ NN IN DT NNS IN CD NNP NNS , NNP CC NNP NNP , VBD NNS IN NN IN PRP$ NN IN NNP . Both Janet Napolitano of Arizona and Bill Richardson of New Mexico have accused the U.S. federal government of not doing enough to control drug traffickers , illegal immigrant smugglers , and criminal gangs . DT NNP NNP IN NNP CC NNP NNP IN NNP NNP VBP VBN DT NNP JJ NN IN RB VBG RB TO VB NN NNS , JJ NN NNS , CC JJ NNS . Asked about the governors ' actions , U.S. State Department spokesman Sean McCormack said Mexico has taken significant steps to address violence on the border . VBN IN DT NNS POS NNS , NNP NNP NNP NN NNP NNP VBD NNP VBZ VBN JJ NNS TO VB NN IN DT NN . He said the U.S. and Mexican governments are working together ' very closely ' to improve border security . PRP VBD DT NNP CC JJ NNS VBP VBG RB `` RB RB `` TO VB NN NN . U.S. Ambassador to Iraq Zalmay Khalilzad says Saddam Hussein 's conviction by an Iraqi court for crimes against humanity is an ' important milestone ' for the country . NNP NNP TO NNP NNP NNP VBZ NNP NNP POS NN IN DT JJ NN IN NNS IN NN VBZ DT `` JJ NN `` IN DT NN . Khalilzad says in a statement issued Sunday that ' closing the book ' on Saddam gives Iraq an opportunity to unite and build a better future . NNP VBZ IN DT NN VBN NNP IN `` VBG DT NN `` IN NNP VBZ NNP DT NN TO VB CC VB DT JJR NN . He acknowledged that Iraq may face difficult times in the coming weeks , in a reference to fears the verdict will spark a sectarian backlash . PRP VBD IN NNP MD VB JJ NNS IN DT JJ NNS , IN DT NN TO NNS DT NN MD VB DT JJ NN . The U.S. ambassador praised the Iraqi judges and attorneys who worked on the trial for showing courage in the face of intimidation . DT NNP NN VBD DT JJ NNS CC NNS WP VBD IN DT NN IN VBG NN IN DT NN IN NN . He says the trial demonstrates Iraq 's determination to hold Saddam and his co-defendants accountable for their crimes . PRP VBZ DT NN VBZ NNP POS NN TO VB NNP CC PRP$ NNS VBP IN PRP$ NNS . Three defense lawyers for Saddam were murdered during the trial , prompting the defense team to complain that Iraq 's government had not provided it with enough security . CD NN NNS IN NNP VBD VBN IN DT NN , VBG DT NN NN TO VB DT NNP POS NN VBD RB VBN PRP IN JJ NN . Sri Lanka 's national cricket team will have to wait until Friday to leave New Zealand , as players anxiously attempt to get home following this week 's devastating tsunami . NNP NNP POS JJ NN NN MD VB TO VB IN NNP TO VB NNP NNP , IN NNS RB VBP TO VB NN VBG DT NN POS JJ NN . No flights were available for the Sri Lanka team , which canceled its tour of New Zealand after this week 's disaster . DT NNS VBD JJ IN DT NNP NNP NN , WDT VBD PRP$ NN IN NNP NNP IN DT NN POS NN . No players lost close relatives in the tsunami disaster , though the mothers of two players were injured . DT NNS VBD JJ NNS IN DT NN NN , IN DT NNS IN CD NNS VBD VBN . New Zealand and Sri Lanka agreed to cancel the tour Wednesday so that players could return home . NNP NNP CC NNP NNP VBD TO VB DT NN NNP IN IN NNS MD VB NN . The International Cricket Council agreed to the move , and said its normal penalties would not be imposed in this case . DT NNP NNP NNP VBD TO DT NN , CC VBD PRP$ JJ NNS MD RB VB VBN IN DT NN . The death toll in Sri Lanka from Sunday 's tsunami is more than 22,000 people . DT NN NN IN NNP NNP IN NNP POS NN VBZ JJR IN CD NNS . New Zealand is hoping to reschedule the tour within the next two years . NNP NNP VBZ VBG TO VB DT NN IN DT JJ CD NNS . Thousands of students in several Egyptian cities have protested the Israeli army 's killing of three Egyptian policemen on the Gaza border . NNS IN NNS IN JJ JJ NNS VBP VBN DT JJ NN POS NN IN CD JJ NNS IN DT NNP NN . Students called on the government Sunday to reject Israel 's apology and allow Egyptians to wage holy war over the incident . NNS VBD IN DT NN NNP TO VB NNP POS NN CC VB NNS TO VB JJ NN IN DT NN . The Egyptian government has demanded a formal inquiry into the Thursday shootings , in which Israeli troops said they mistook the policemen for Palestinian insurgents . DT JJ NN VBZ VBN DT JJ NN IN DT NNP NNS , IN WDT JJ NNS VBD PRP VBD DT NNS IN JJ NNS . Egypt has also suspended a planned trip to Israel by its Foreign Minister after the killings . NNP VBZ RB VBN DT JJ NN TO NNP IN PRP$ NNP NNP IN DT NNS . Two separate attacks in the southern Iraqi city of Basra killed at least 14 people , including four American security guards , on Wednesday . CD JJ NNS IN DT JJ JJ NN IN NNP VBD IN JJS CD NNS , VBG CD JJ NN NNS , IN NNP . Iraqi police say a suicide bomber detonated his explosives filled car in front of a busy restaurant , killing 10 people and injuring 15 others . JJ NNS VBP DT NN NN VBD PRP$ NNS VBN NN IN NN IN DT JJ NN , VBG CD NNS CC VBG CD NNS . Hours earlier , the four private American guards were killed in a roadside bomb blast in the Shi'ite dominated city . NNS RB , DT CD JJ JJ NNS VBD VBN IN DT NN NN NN IN DT NNP VBD NN . In other developments , U.S. troops rescued American contractor Roy Hallums , who was kidnapped more than 10 months ago . IN JJ NNS , NNP NNS VBD JJ NN NNP NNP , WP VBD VBN RBR IN CD NNS RB . He is reported in good physical condition . PRP VBZ VBN IN JJ JJ NN . Separately , the U.S. military says Iraqi and American forces have carried out dozens of joint operations in Baghdad this week , detaining more than 50 suspected terrorists . RB , DT NNP NN VBZ JJ CC JJ NNS VBP VBN RP NNS IN JJ NNS IN NNP DT NN , VBG JJR IN CD JJ NNS . U.S. Secretary of State Condoleezza Rice says she thinks the insurgents in Iraq are ' losing steam ' ( energy ) as a political force . NNP NNP IN NNP NNP NNP VBZ PRP VBZ DT NNS IN NNP VBP `` VBG NN `` LRB NN RRB IN DT JJ NN . In an interview with Time magazine published Sunday , Ms. Rice said she believes the insurgents have become more and more isolated from Iraq 's people as the country 's political process moves forward . IN DT NN IN NNP NN VBN NNP , NNP NNP VBD PRP VBZ DT NNS VBP VBN RBR CC RBR JJ IN NNP POS NNS IN DT NN POS JJ NN VBZ RB . Ms. Rice also argued that the media focus too much on violence in Iraq and not enough on what she called Iraq 's ' rather quiet political progress . ' NNP NNP RB VBD IN DT NNS VBP RB RB IN NN IN NNP CC RB RB IN WP PRP VBD NNP POS `` RB JJ JJ NN . `` China 's parliament has passed legislation giving the country 's military a legal basis for attacking Taiwan if the island moves toward declaring independence . NNP POS NN VBZ VBN NN VBG DT NN POS JJ DT JJ NN IN VBG NNP IN DT NN VBZ IN VBG NN . The law was approved early Monday by the National People 's Congress - a largely rubber-stamp legislature that approves decisions made by the ruling Communist Party . DT NN VBD VBN RB NNP IN DT NNP NNP POS NNP IN DT RB JJ NN WDT VBZ NNS VBN IN DT NN NNP NNP . Beijing considers Taiwan a renegade province , and opposes any moves by the island to boost its international profile . NNP VBZ NNP DT NN NN , CC VBZ DT NNS IN DT NN TO VB PRP$ JJ NN . The new law says China will employ ' non-peaceful means ' to prevent Taiwanese independence if efforts at peaceful reunification fail . DT JJ NN VBZ NNP MD VB `` JJ NNS `` TO VB JJ NN IN NNS IN JJ NN VBP . Chinese President Hu Jintao Sunday urged the armed forces to step up preparations for possible military struggle . JJ NNP NNP NNP NNP VBD DT JJ NNS TO VB RP NNS IN JJ JJ NN . But , speaking after its passage , Chinese Premier Wen Jiabao said the new law is not a ' war bill . ' CC , NN IN PRP$ NN , JJ NNP NNP NNP VBD DT JJ NN VBZ RB DT `` NN NN . `` U.S. Secretary of State Condoleezza Rice , speaking on American television ( ABC ) , urged both China and Taiwan to avoid actions that could raise tensions . NNP NNP IN NNP NNP NNP , VBG IN JJ NN LRB NNP RRB , VBD DT NNP CC NNP TO VB NNS WDT MD VB NNS . Survivors of the devastating earthquake and tsunami that swept across Indonesia 's northern Aceh province marked the first year anniversary of the disaster - with prayers for the more than 1,69,000 people who perished in the disaster in Indonesia . NNS IN DT JJ NN CC NN WDT VBD IN NNP POS JJ NNP NN VBD DT JJ NN NN IN DT NN IN IN NNS IN DT JJR IN CD NNS WP VBD IN DT NN IN NNP . Indonesian President Susilo Bambang Yudhoyono led a group of a thousand tsunami survivors , dignitaries , and aid workers in prayer on the shoreline in Banda Aceh where the tsunami struck . JJ NNP NNP NNP NNP VBD DT NN IN DT CD NN NNS , NNS , CC NN NNS IN NN IN DT NN IN NNP NNP WRB DT NN VBD . ' We stand here together today in remembrance of that suffering paying respect , once again , to the good men and women and all the children lost to the sea , ' he said . `` PRP VBP RB RB NN IN NN IN DT NN VBG NN , RB RB , TO DT JJ NNS CC NNS CC PDT DT NNS VBD TO DT NN , `` PRP VBD . All across Aceh province , bells rang and people bowed their heads in prayer . DT IN NNP NN , VBZ NN CC NNS VBD PRP$ NNS IN NN . It was the worst hit region of the 12 Indian Ocean nations hit by the tsunami , which killed more than 2,30,000 people . PRP VBD DT JJS NN NN IN DT CD JJ NNP NNS VBN IN DT NN , WDT VBD JJR IN CD NNS . China says it will launch its second manned space mission in September , 2005 . NNP VBZ PRP MD VB PRP$ JJ JJ NN NN IN NNP , CD . Chinese state media says it will send two astronauts on the Shenzhou Six spacecraft for a five-day mission to circle the Earth . JJ NN NNS VBZ PRP MD VB CD NNS IN DT NNP CD NN IN DT JJ NN TO NN DT NN . Fourteen astronauts are currently training for the flight including Astronaut Yang Liwei , who became China 's first man in space when he flew aboard Shenzhou Five in October , 2003 . CD NNS VBP RB VBG IN DT NN VBG NN NNP NNP , WP VBD NNP POS JJ NN IN NN WRB PRP VBD IN NNP CD IN NNP , CD . China is only the third nation to launch a man into space , behind the United States and Russia . NNP VBZ RB DT JJ NN TO VB DT NN IN NN , IN DT NNP NNPS CC NNP . Palestinian authorities say raw sewage has swept through a Bedouin village in the northern Gaza Strip , killing at least four people . JJ NNS VBP JJ NN VBZ VBN IN DT NNP NN IN DT JJ NNP NNP , VBG IN JJS CD NNS . Officials say sewage and mud completely submerged at least 25 buildings in Umm Naser village , after the earthen wall of a sewage pool collapsed Tuesday . NNS VBP NN CC NN RB VBD IN JJS CD NNS IN NNP NNP NN , IN DT JJ NN IN DT NN NN VBD NNP . Hospital sources say at least 15 people were injured , and residents say scores of villagers are missing . NN NNS VBP IN JJS CD NNS VBD VBN , CC NNS VBP NNS IN NNS VBP VBG . In 2004 , the United Nations warned that the sewage facility was operating well beyond capacity , but local government lacked the financial resources to construct a new facility . IN CD , DT NNP NNPS VBD IN DT NN NN VBD VBG RB IN NN , CC JJ NN VBD DT JJ NNS TO VB DT JJ NN . Witnesses say angry villagers threw stones and opened fire on the convoy of Palestinian Interior Minister Hani al-Qawasmi , who went to inspect the damage . NNS VBP JJ NNS VBD NNS CC VBD NN IN DT NN IN JJ NNP NNP NNP NNP , WP VBD TO VB DT NN . Israeli troops have shot dead a Palestinian militant in the West Bank . JJ NNS VBP VBN RB DT JJ NN IN DT NNP NNP . Israeli army officials say soldiers killed Mahmoud Hammad , a member of the militant group Islamic Jihad , as he tried to escape from a house in the village of Raba , close to the West Bank town of Jenin . JJ NN NNS VBP NNS VBD NNP NNP , DT NN IN DT JJ NN NNP NNP , IN PRP VBD TO VB IN DT NN IN DT NN IN NNP , RB TO DT NNP NNP NN IN NNP . They say the militant was carrying a weapon when he was shot . PRP VBP DT NN VBD VBG DT NN WRB PRP VBD VBN . Israeli troops have carried out frequent raids in West Bank cities and towns targeting militants spearheading a four-year-old Palestinian uprising . JJ NNS VBP VBN RP JJ NNS IN NNP NNP NNS CC NNS VBG NNS VBG DT JJ JJ NN . The leader of Brazil 's ruling Workers Party has resigned amid a bribes-for-votes scandal in Congress . DT NN IN NNP POS NN NNP NNP VBZ VBN IN DT JJ NN IN NNP . Jose Genoino announced his resignation Saturday at a news conference in Sao Paulo . NNP NNP VBD PRP$ NN NNP IN DT NN NN IN NNP NNP . Later , the party elected Education Minister Tarso Genro as its new leader . RB , DT NN VBD NNP NNP NNP NNP IN PRP$ JJ NN . Mr. Genoino 's resignation comes amid allegations that the Workers Party paid $ 12,000 a month to several lawmakers to win their support on key votes . NNP NNP POS NN VBZ IN NNS IN DT NNP NNP VBD $ CD DT NN TO JJ NNS TO VB PRP$ NN IN JJ NNS . The party denies the accusations . DT NN VBZ DT NNS . Mr. Genoino is the latest senior official in President Luiz Inacio Lula da Silva 's government to leave his post . NNP NNP VBZ DT JJS JJ NN IN NNP NNP NNP NNP NNP NNP POS NN TO VB PRP$ NN . Both the party treasurer and secretary-general stepped down recently . DT DT NN NN CC NN VBD RB RB . The scandal also forced presidential chief of staff Jose Dirceu to resign last month . DT NN RB VBD JJ NN IN NN NNP NNP TO VB JJ NN . President da Silva has been reshuffling his Cabinet to boost support for his governing coalition . NNP NNP NNP VBZ VBN VBG PRP$ NN TO VB NN IN PRP$ NN NN . Swiss food giant Nestle has resumed operations in Zimbabwe , after resolving a dispute with the government . JJ NN NN NNP VBZ VBN NNS IN NNP , IN VBG DT NN IN DT NN . Nestle officials said Tuesday that government officials have assured the company they will not interfere with its business . NNP NNS VBD NNP IN NN NNS VBP VBN DT NN PRP MD RB VB IN PRP$ NN . Nestle shut down its factory in Harare last month , citing harassment by Zimbabwean authorities . NNP VBD RP PRP$ NN IN NNP JJ NN , VBG NN IN JJ NNS . It said officials had forced staff to accept milk from ' non-contracted suppliers ' and also questioned two managers . PRP VBD NNS VBD VBN NN TO VB NN IN `` JJ NNS `` CC RB VBD CD NNS . The company had said in October that it would not buy milk from a farm owned by the wife of President Robert Mugabe . DT NN VBD VBN IN NNP IN PRP MD RB VB NN IN DT NN VBN IN DT NN IN NNP NNP NNP . The farm had been seized from white farmers under Mr. Mugabe 's controversial land reform program . DT NN VBD VBN VBN IN JJ NNS IN NNP NNP POS JJ NN NN NN . Critics say the Mugabe government 's seizure of white-owned commercial farms has devastated Zimbabwe 's economy . NNS VBP DT NNP NN POS NN IN JJ JJ NNS VBZ VBN NNP POS NN . Mr. Mugabe was forced to accept a power-sharing agreement with the longtime opposition MDC party last year . NNP NNP VBD VBN TO VB DT JJ NN IN DT JJ NN NNP NN JJ NN . The trouble that began on Wall Street is beginning to trickle down to Main Street , as small businesses find credit tightening up . DT NN WDT VBD IN NNP NNP VBZ VBG TO VB RP TO NNP NNP , IN JJ NNS VBP NN VBG RP . Many banks are wary about lending until it 's clear who will take responsibility for the bad debt they are carrying . JJ NNS VBP JJ IN VBG IN PRP VBZ JJ WP MD VB NN IN DT JJ NN PRP VBP VBG . Many small business owners are finding it hard to borrow to finance their operations , and they worry about whether their customers will be able to buy their products . JJ JJ NN NNS VBP VBG PRP JJ TO VB TO VB PRP$ NNS , CC PRP VBP IN IN PRP$ NNS MD VB JJ TO VB PRP$ NNS . Leta Hong Fincher has more . NNP NNP NNP VBZ RBR . Pakistani police say a bomb has exploded outside a Shi'ite mosque in the country 's northwest , killing at least four people . JJ NNS VBP DT NN VBZ VBN IN DT NNP NN IN DT NN POS JJS , VBG IN JJS CD NNS . The bomb went off in the city of Dera Ismail Khan Monday as worshipers were leaving the mosque after evening prayers . DT NN VBD RB IN DT NN IN NNP NNP NNP NNP IN NNS VBD VBG DT NN IN NN NNS . The explosion destroyed parts of the mosque and wounded at least two people . DT NN VBD NNS IN DT NN CC VBD IN JJS CD NNS . Police say they suspect the bomb was on a timer . NNS VBP PRP VBP DT NN VBD IN DT NN . They do not know who planted the device . PRP VBP RB VB WP VBD DT NN . Dera Ismail Khan in North West Frontier Province has a history of sectarian violence . NNP NNP NNP IN NNP NNP NNP NNP VBZ DT NN IN JJ NN . Last month , gunmen killed at least six Shi'ite Muslims in two suspected sectarian attacks in Dera Ismail Khan . JJ NN , NNS VBD IN JJS CD NNP NNPS IN CD JJ JJ NNS IN NNP NNP NNP . Most Pakistanis are Sunni Muslims , but Shi'ites make up about 20 percent of the country 's 160 million people . JJS NNS VBP NNP NNPS , CC NNS VBP RP IN CD NN IN DT NN POS CD CD NNS . The communities generally coexist peacefully , but militants from both sides have attacked each other since the 1980s . DT NNS RB VBP RB , CC NNS IN DT NNS VBP VBN DT NN IN DT NNS . A strong earthquake has struck off the coast of Indonesia , but no tsunami alert was issued . DT JJ NN VBZ VBN RP DT NN IN NNP , CC DT NN NN VBD VBN . The U.S. Geological Survey reported a 6.1 magnitude earthquake south of the main island of Java on Monday . DT NNP NNP NNP VBD DT CD NN NN NN IN DT JJ NN IN NNP IN NNP . The quake struck about 15 kilometers under the sea . DT NN VBD IN CD NNS IN DT NN . There were no immediate reports of injuries or damage . EX VBD DT JJ NNS IN NNS CC NN . Another earthquake that struck off Java 's southern coast last week killed at least 64 people and damaged or destroyed more than 87,000 homes . DT NN WDT VBD RP NNP POS JJ NN JJ NN VBD IN JJS CD NNS CC VBN CC VBN JJR IN CD NNS . That magnitude-7.0 earthquake shook buildings and caused panic in the capital , Jakarta , about 200 kilometers away . DT JJ NN VBD NNS CC VBD NN IN DT NN , NNP , IN CD NNS RB . Indonesia 's 18,000 islands sit atop tectonic plates that frequently slam together to cause massive earthquakes . NNP POS CD NNS VBP IN JJ NNS WDT RB VBP RB TO VB JJ NNS . Iraqi officials say they have stepped up security measures ahead of the Asia Cup final match between Iraq and Saudi Arabia to be played in Jakarta Sunday . JJ NNS VBP PRP VBP VBN RP NN NNS RB IN DT NNP NNP JJ NN IN NNP CC NNP NNP TO VB VBN IN NNP NNP . After last week 's semi-final victory against South Korea , 50 people were killed and 130 others wounded by two car bombs , when thousands of Iraqis poured into the streets to celebrate . IN JJ NN POS JJ NN IN NNP NNP , CD NNS VBD VBN CC CD NNS VBN IN CD NN NNS , WRB NNS IN NNS VBD IN DT NNS TO VB . Authorities have announced a vehicle ban in parts of Iraq ahead of the game Outside the capital , U.S. military officials said coalition forces killed eight terrorists and detained 22 other suspects during operations Sunday targeting al-Qaida members across central Iraq . NNS VBP VBN DT NN NN IN NNS IN NNP RB IN DT NN IN DT NN , NNP JJ NNS VBD NN NNS VBD CD NNS CC VBD CD JJ NNS IN NNS NNP VBG NNP NNS IN JJ NNP . The military also says the troops killed seven terrorists and detained one person during an operation near Muqudadiyah Wednesday and Thursday . DT NN RB VBZ DT NNS VBD CD NNS CC VBD CD NN IN DT NN IN NNP NNP CC NNP . Earlier , U.S. military said coalition forces captured 16 suspected terrorists in raids Saturday targeting al-Qaida in Iraq . RB , NNP NN VBD NN NNS VBD CD JJ NNS IN NNS NNP VBG NNP IN NNP . Today , April 22 is Earth Day , a global event that began in 1970 and is credited by some with giving birth to the modern environmental movement . NN , NNP CD VBZ NNP NNP , DT JJ NN WDT VBD IN CD CC VBZ VBN IN DT IN VBG NN TO DT JJ JJ NN . Earth Day grew from an annual event in the United States to a global event in about 180 countries . NNP NNP VBD IN DT JJ NN IN DT NNP NNPS TO DT JJ NN IN IN CD NNS . It 's a day of celebration in some places , but has also turned into a day of action and reflection and conversation and sometimes protest about the situation with our environment , particularly climate change . PRP VBZ DT NN IN NN IN DT NNS , CC VBZ RB VBN IN DT NN IN NN CC NN CC NN CC RB VB IN DT NN IN PRP$ NN , RB NN NN . VOA 's Paul Sisco has more . NNP POS NNP NNP VBZ RBR . Six people are missing and at least 42 injured after an explosion ripped through a sugar refinery in the southeastern U.S. city of Savannah , in the state of Georgia . CD NNS VBP VBG CC IN JJS CD NN IN DT NN VBN IN DT NN NN IN DT JJ NNP NN IN NNP , IN DT NN IN NNP . The blast caused a massive fire that firefighters were still trying to bring under control more than 12 hours after the explosion . DT NN VBD DT JJ NN IN NNS VBD RB VBG TO VB IN NN RBR IN CD NNS IN DT NN . The refinery is owned by Imperial Sugar Company . DT NN VBZ VBN IN NNP NNP NN . A company spokesman says the blast tore through a silo where refined sugar is kept . DT NN NN VBZ DT NN VBD IN DT NN WRB JJ NN VBZ VBN . ================================================ FILE: P010Model/model_transformer.py ================================================ #!/usr/bin/env python # coding: utf-8 # In[1]: import copy import math import time import numpy as np import matplotlib.pyplot as plt import torch import torch.nn as nn import torch.nn.functional as F from torch.autograd import Variable # In[2]: class EncoderDecoder(nn.Module): """ 标准的Encoder-Decoder架构, 许多其他模型的以此为基础。 """ def __init__(self, encoder, decoder, src_embed, tgt_embed, generator): super(EncoderDecoder, self).__init__() self.encoder = encoder self.decoder = decoder self.src_embed = src_embed # ? self.tgt_embed = tgt_embed # ? self.generator = generator # ? def forward(self, src, tgt, src_mask, tgt_mask): """ Take in and process masked src and target sequences. 接收和处理masked后的原序列,以及目标序列。? """ return self.decode(self.encode(src, src_mask), src_mask, tgt, tgt_mask) def encode(self, src, src_mask): return self.encoder(self.src_embed(src), src_mask) def decode(self, memory, src_mask, tgt, tgt_mask): return self.decoder(self.tgt_embed(tgt), memory, src_mask, tgt_mask) class Generator(nn.Module): """ Define standard linear + softmax generation step. 定义标准的linear + softmax 生成步骤。 """ def __init__(self, d_model, vocab): super(Generator, self).__init__() self.proj = nn.Linear(d_model, vocab) def forward(self, x): return F.log_softmax(self.proj(x), dim=-1) # Encoder部分 def clones(module, N): """ Produce N identical layers. 产生N个相同的层。 """ return nn.ModuleList([copy.deepcopy(module) for _ in range(N)]) class Encoder(nn.Module): "Core encoder is a stack of N layers" def __init__(self, layer, N): super(Encoder, self).__init__() self.layers = clones(layer, N) self.norm = LayerNorm(layer.size) def forward(self, x, mask): "Pass the input (and mask) through each layer in turn." for layer in self.layers: x = layer(x, mask) return self.norm(x) class LayerNorm(nn.Module): "Construct a layernorm module (See citation for details)." def __init__(self, features, eps=1e-6): super(LayerNorm, self).__init__() self.a_2 = nn.Parameter(torch.ones(features)) self.b_2 = nn.Parameter(torch.zeros(features)) self.eps = eps def forward(self, x): mean = x.mean(-1, keepdim=True) std = x.std(-1, keepdim=True) return self.a_2 * (x - mean) / (std + self.eps) + self.b_2 class SublayerConnection(nn.Module): """ A residual connection followed by a layer norm. Note for code simplicity the norm is first as opposed to last. """ def __init__(self, size, dropout): super(SublayerConnection, self).__init__() self.norm = LayerNorm(size) self.dropout = nn.Dropout(dropout) def forward(self, x, sublayer): "Apply residual connection to any sublayer with the same size." return x + self.dropout(sublayer(self.norm(x))) class EncoderLayer(nn.Module): "Encoder is made up of self-attn and feed forward (defined below)" def __init__(self, size, self_attn, feed_forward, dropout): super(EncoderLayer, self).__init__() self.self_attn = self_attn self.feed_forward = feed_forward self.sublayer = clones(SublayerConnection(size, dropout), 2) self.size = size def forward(self, x, mask): "Follow Figure 1 (left) for connections." x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, mask)) return self.sublayer[1](x, self.feed_forward) # Decoder部分 class Decoder(nn.Module): "Generic N layer decoder with masking." def __init__(self, layer, N): super(Decoder, self).__init__() self.layers = clones(layer, N) self.norm = LayerNorm(layer.size) def forward(self, x, memory, src_mask, tgt_mask): for layer in self.layers: x = layer(x, memory, src_mask, tgt_mask) return self.norm(x) class DecoderLayer(nn.Module): "Decoder is made of self-attn, src-attn, and feed forward (defined below)" def __init__(self, size, self_attn, src_attn, feed_forward, dropout): super(DecoderLayer, self).__init__() self.size = size self.self_attn = self_attn self.src_attn = src_attn self.feed_forward = feed_forward self.sublayer = clones(SublayerConnection(size, dropout), 3) def forward(self, x, memory, src_mask, tgt_mask): "Follow Figure 1 (right) for connections." m = memory x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, tgt_mask)) x = self.sublayer[1](x, lambda x: self.src_attn(x, m, m, src_mask)) return self.sublayer[2](x, self.feed_forward) def subsequent_mask(size): "Mask out subsequent positions." attn_shape = (1, size, size) subsequent_mask = np.triu(np.ones(attn_shape), k=1).astype('uint8') return torch.from_numpy(subsequent_mask) == 0 # Attention def attention(query, key, value, mask=None, dropout=None): "Compute 'Scaled Dot Product Attention'" d_k = query.size(-1) # [B, h, L, L] scores = torch.matmul(query, key.transpose(-2, -1)) / math.sqrt(d_k) if mask is not None: scores = scores.masked_fill(mask == 0, -1e9) p_attn = F.softmax(scores, dim = -1) if dropout is not None: p_attn = dropout(p_attn) return torch.matmul(p_attn, value), p_attn class MultiHeadedAttention(nn.Module): def __init__(self, h, d_model, dropout=0.1): "Take in model size and number of heads." super(MultiHeadedAttention, self).__init__() assert d_model % h == 0 # We assume d_v always equals d_k self.d_k = d_model // h self.h = h self.linears = clones(nn.Linear(d_model, d_model), 4) self.attn = None self.dropout = nn.Dropout(p=dropout) def forward(self, query, key, value, mask=None): "Implements Figure 2" if mask is not None: # Same mask applied to all h heads. mask = mask.unsqueeze(1) nbatches = query.size(0) # 1) Do all the linear projections in batch from d_model => h x d_k query, key, value = [l(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2) for l, x in zip(self.linears, (query, key, value))] # 2) Apply attention on all the projected vectors in batch. x, self.attn = attention(query, key, value, mask=mask, dropout=self.dropout) # 3) "Concat" using a view and apply a final linear. x = x.transpose(1, 2).contiguous() .view(nbatches, -1, self.h * self.d_k) return self.linears[-1](x) # Position-wise Feed-Forward Networks class PositionwiseFeedForward(nn.Module): "Implements FFN equation." def __init__(self, d_model, d_ff, dropout=0.1): super(PositionwiseFeedForward, self).__init__() self.w_1 = nn.Linear(d_model, d_ff) self.w_2 = nn.Linear(d_ff, d_model) self.dropout = nn.Dropout(dropout) def forward(self, x): return self.w_2(self.dropout(F.relu(self.w_1(x)))) # Embeddings and Softmax class Embeddings(nn.Module): def __init__(self, d_model, vocab): super(Embeddings, self).__init__() self.lut = nn.Embedding(vocab, d_model) self.d_model = d_model def forward(self, x): return self.lut(x) * math.sqrt(self.d_model) # Positional Encoding class PositionalEncoding(nn.Module): "Implement the PE function." def __init__(self, d_model, dropout, max_len=5000): super(PositionalEncoding, self).__init__() self.dropout = nn.Dropout(p=dropout) # Compute the positional encodings once in log space. pe = torch.zeros(max_len, d_model) position = torch.arange(0, max_len, 1.0).unsqueeze(1) div_term = torch.exp(torch.arange(0, d_model, 2.0) * -(math.log(10000.0) / d_model)) pe[:, 0::2] = torch.sin(position * div_term) # 偶数列 pe[:, 1::2] = torch.cos(position * div_term) # 奇数列 pe = pe.unsqueeze(0) # [1, max_len, d_model] self.register_buffer('pe', pe) def forward(self, x): x = x + Variable(self.pe[:, :x.size(1)], requires_grad=False) return self.dropout(x) #==========# # 定义一个接受超参数并生成完整模型的函数。 def make_model(src_vocab, tgt_vocab, N=6, d_model=512, d_ff=2048, h=8, dropout=0.1): "Helper: Construct a model from hyperparameters." c = copy.deepcopy attn = MultiHeadedAttention(h, d_model) ff = PositionwiseFeedForward(d_model, d_ff, dropout) position = PositionalEncoding(d_model, dropout) model = EncoderDecoder( Encoder(EncoderLayer(d_model, c(attn), c(ff), dropout), N), Decoder(DecoderLayer(d_model, c(attn), c(attn), c(ff), dropout), N), nn.Sequential(Embeddings(d_model, src_vocab), c(position)), nn.Sequential(Embeddings(d_model, tgt_vocab), c(position)), Generator(d_model, tgt_vocab)) # This was important from their code. # Initialize parameters with Glorot / fan_avg. for p in model.parameters(): if p.dim() > 1: nn.init.xavier_uniform_(p) return model # In[3]: ## MultiHeadedAttention 测试 class MultiHeadedAttention(nn.Module): def __init__(self, h, d_model, dropout=0.1): "Take in model size and number of heads." super(MultiHeadedAttention, self).__init__() assert d_model % h == 0 # We assume d_v always equals d_k self.d_k = d_model // h self.h = h self.linears = clones(nn.Linear(d_model, d_model), 4) self.attn = None self.dropout = nn.Dropout(p=dropout) def forward(self, query, key, value, mask=None): """ 实现MultiHeadedAttention。 输入的q/k/v是形状 [batch, L, d_model]。 输出的x 的形状同上。 """ if mask is not None: # Same mask applied to all h heads. mask = mask.unsqueeze(1) nbatches = query.size(0) # 1) 这一步qkv变化:[batch, L, d_model] ->[batch, h, L, d_model/h] query, key, value = [l(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2) for l, x in zip(self.linears, (query, key, value))] # 2) 计算注意力attn 得到attn*v 与attn # qkv :[batch, h, L, d_model/h] -->x:[b, h, L, d_model/h], attn[b, h, L, L] x, self.attn = attention(query, key, value, mask=mask, dropout=self.dropout) # 3) 上一步的结果合并在一起还原成原始输入序列的形状 x = x.transpose(1, 2).contiguous() .view(nbatches, -1, self.h * self.d_k) # 最后再过一个线性层 return self.linears[-1](x) # In[4]: batch_size=16 L = 50 d_model = 512 h = 8 x = torch.randn(batch_size, L, d_model) x.size() # In[5]: obj = MultiHeadedAttention(8, 512) # In[6]: # obj.forward(x,x,x,mask=None) # X是一个序列,X的Embedding + posEmbedding 输入Encoder,这个输入我们称为 X_emb_pos # Encoder有6个子结构串行,第一个的输出结果,作为第二个的输入,以此类推得到最后一个子结构的输出。 # 第一个子结构接受输入X_emb_pos 后,按照维度平均拆分成8个,比如如果X_emb_pos的维度是512 ,拆分后的维度就是512/8=64维。 # 这8个tensor 分别做self-attention,这个部分是8个一起并行的 ,然后得到8个结果再合并在一起,进行Norm ,norm之后再输入FFN,之后再经过norm之后输入下一个子结构。 # In[7]: """ q = torch.randn(2,10, 512) # 序列输入x line_net = clones(nn.Linear(512, 512), 4) q, k, v = [l(x).view(2, -1, 8, 64).transpose(1,2) for l,x in zip(line_net, (q, q, q))] print(k.size(), k.transpose(-2, -1).size()) d_k = d_model//h print("d_k:", d_k) scores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k) print("soc:", scores.size()) attn = F.softmax(scores, dim = -1) print("attn size: ", attn.size()) r_x = torch.matmul(attn, v) print(r_x.size()) out = r_x.transpose(1, 2).contiguous().view(2, -1, 8 * 64) print(out.size()) # [2, 10, 512] # In[8]: # 在位置编码下方,将基于位置添加正弦波。对于每个维度,波的频率和偏移都不同。 plt.figure(figsize=(15, 5)) pe = PositionalEncoding(20, 0) y = pe.forward(Variable(torch.zeros(1, 100, 20))) plt.plot(np.arange(100), y[0, :, 4:8].data.numpy()) plt.legend(["dim %d"%p for p in [4,5,6,7]]) """ # ## posembbeding的理解 # - 同一维度(一个单词本来有多个维度,为了可视化,选取一个维度)对比不同位置的单词在同一维度是有相对关系的,符合某个正弦或者余弦波。 # - 一个序列各个单词的位置都具有相对性。 # ## Training 训练方案 # ---- # - 定义个一个Batch对象 # - # In[9]: class Batch(object): "定义一个训练时需要的批次数据对象,封装了用于训练的src和tgt句子,以及mask" def __init__(self, src, trg=None, pad=0): self.src = src self.src_mask = (src != pad).unsqueeze(-2) if trg is not None: self.trg = trg[:, :-1] self.trg_y = trg[:, 1:] self.trg_mask = self.make_std_mask(self.trg, pad) self.ntokens = (self.trg_y != pad).data.sum() @staticmethod def make_std_mask(tgt, pad): "Create a mask to hide padding and future words." tgt_mask = (tgt != pad).unsqueeze(-2) tgt_mask = tgt_mask & Variable( subsequent_mask(tgt.size(-1)).type_as(tgt_mask.data)) return tgt_mask # In[10]: # 定义一个训练函数用于训练和计算损失、更新梯度 # In[33]: def run_epoch(data_iter, model, loss_compute, device): """提供训练和日志功能""" start = time.time() total_tokens = 0 total_loss = 0 tokens = 0 for i, batch in enumerate(data_iter): src = batch.src.to(device) trg = batch.trg.to(device) src_mask = batch.src_mask.to(device) trg_mask = batch.trg_mask.to(device) trg_y = batch.trg_y.to(device) out = model.forward(src, trg, src_mask,trg_mask) loss = loss_compute(out, trg_y, batch.ntokens.to(device)) total_loss += loss.item() total_tokens += batch.ntokens tokens += batch.ntokens if i % 50 == 1: elapsed = time.time() - start print("Epoch Step: %d Loss: %f Tokens per Sec: %f" % (i, loss / batch.ntokens, tokens / elapsed)) start = time.time() tokens = 0 return total_loss / total_tokens # ## 训练数据与批次 # - 使用XX数据集 # - 使用torchtext来处理数据? # In[12]: global max_src_in_batch, max_tgt_in_batch def batch_size_fn(new, count, sofar): "Keep augmenting batch and calculate total number of tokens + padding." global max_src_in_batch, max_tgt_in_batch if count == 1: max_src_in_batch = 0 max_tgt_in_batch = 0 max_src_in_batch = max(max_src_in_batch, len(new.src)) max_tgt_in_batch = max(max_tgt_in_batch, len(new.trg) + 2) src_elements = count * max_src_in_batch tgt_elements = count * max_tgt_in_batch return max(src_elements, tgt_elements) # ## 硬件情况和时间表 # # - 我们在一台配备8个NVIDIA P100 GPU的计算机上训练了模型。 # - 对于使用本文所述的超参数的基本模型,每个训练步骤大约需要0.4秒。 # - 我们对基本模型进行了总共100_000步或12个小时的训练。 # - 对于我们的大型模型,步长为1.0秒。大型模型接受了300,000步(3.5天)的训练。 # # ## Optimizer # - 使用Adam优化器,其中β1= 0.9,β2= 0.98和ϵ = 10-9。 # - 根据以下公式在训练过程中改变学习率:$lrate =d_{model}^{-0.5} * min(step\_num^{-0.5}, step\_num * warmup\_steps ^{-1.5})$ # - 也就是训练步数在$warmup\_steps内,线性增加学习率;之后的训练,按步数的负1.5平方成比例地减小学习率。我们使用了$warmup\_steps= 4000$。 # In[13]: class NoamOpt(object): "Optim wrapper that implements rate." def __init__(self, model_size, factor, warmup, optimizer): self.optimizer = optimizer self._step = 0 self.warmup = warmup self.factor = factor self.model_size = model_size self._rate = 0 def step(self): "Update parameters and rate" self._step += 1 rate = self.rate() for p in self.optimizer.param_groups: p['lr'] = rate self._rate = rate self.optimizer.step() def rate(self, step = None): "Implement `lrate` above" if step is None: step = self._step return self.factor * (self.model_size ** (-0.5) * min(step ** (-0.5), step * self.warmup ** (-1.5))) def get_std_opt(model): return NoamOpt(model.src_embed[0].d_model, 2, 4000, torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9)) # In[14]: """ # 不同大小与不同超参模型的学习率曲线 opts = [NoamOpt(512, 1, 4000, None), NoamOpt(512, 1, 8000, None), NoamOpt(256, 1, 4000, None)] plt.plot(np.arange(1, 20000), [[opt.rate(i) for opt in opts] for i in range(1, 20000)]) plt.legend(["512:4000", "512:8000", "256:4000"]) # ## 正如我们所分析,先线性增加,然后再逐渐减小。 # --- # # ## 正则化 # ### 标签平滑 # - 在训练期间,我们采用ϵls = 0.1的标签平滑。随着模型训练变得更加不确定,这会增加困惑度perplexity,但会提高准确率(accuracy)和BLEU分数。 # - 使用KL div损失实现标签平滑,而不是使用one-hot目标分布,我们创建的分布具有对正确单词的置信度以及其余平滑质量分布在整个词汇表中的置信度。 """ # In[15]: class LabelSmoothing(nn.Module): "实现labelsmoothing." def __init__(self, size, padding_idx, smoothing=0.0): super(LabelSmoothing, self).__init__() self.criterion = nn.KLDivLoss(size_average=False) self.padding_idx = padding_idx self.confidence = 1.0 - smoothing self.smoothing = smoothing self.size = size self.true_dist = None def forward(self, x, target): assert x.size(1) == self.size true_dist = x.data.clone() true_dist.fill_(self.smoothing / (self.size - 2)) true_dist.scatter_(1, target.data.unsqueeze(1), self.confidence) true_dist[:, self.padding_idx] = 0 mask = torch.nonzero(target.data == self.padding_idx) if mask.dim() > 0: true_dist.index_fill_(0, mask.squeeze(), 0.0) self.true_dist = true_dist return self.criterion(x, Variable(true_dist, requires_grad=False)) # ## 例子 # - # In[16]: """ # Example of label smoothing. crit = LabelSmoothing(5, 0, 0.4) predict = torch.FloatTensor([[0, 0.2, 0.7, 0.1, 0], [0, 0.2, 0.7, 0.1, 0], [0, 0.2, 0.7, 0.1, 0]]) v = crit(Variable(predict.log()), Variable(torch.LongTensor([2, 1, 0]))) # Show the target distributions expected by the system. plt.imshow(crit.true_dist) # In[17]: crit = LabelSmoothing(5, 0, 0.1) def loss(x): d = x + 3 * 1 predict = torch.FloatTensor([[0, x / d, 1 / d, 1 / d, 1 / d], ]) #print(predict) return crit(Variable(predict.log()), Variable(torch.LongTensor([1]))).item() plt.plot(np.arange(1, 100), [loss(x) for x in range(1, 100)]) """ # ## 用一个小例子测试一下 # - 构造数据 # In[18]: ## 数据生成 def data_gen(V, batch, nbatches): "Generate random data for a src-tgt copy task." for i in range(nbatches): data = torch.from_numpy(np.random.randint(1, V, size=(batch, 10))) data[:, 0] = 1 src = Variable(data, requires_grad=False) tgt = Variable(data, requires_grad=False) yield Batch(src, tgt, 0) # In[30]: ## 计算损失 class SimpleLossCompute(object): "A simple loss compute and train function." def __init__(self, generator, criterion, opt=None): self.generator = generator self.criterion = criterion self.opt = opt def __call__(self, x, y, norm): print("norm:", norm) x = self.generator(x) print("x", type(x)) loss = self.criterion(x.contiguous().view(-1, x.size(-1)), y.contiguous().view(-1)) / norm loss.backward() if self.opt is not None: self.opt.step() self.opt.optimizer.zero_grad() # loss.data[0]*norm print("loss", loss, type(loss)) return loss * norm # In[31]: # 贪婪解码 # Train the simple copy task. V = 11 device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") criterion = LabelSmoothing(size=V, padding_idx=0, smoothing=0.0) model = make_model(V, V, N=2) model = model.to(device) model_opt = NoamOpt(model.src_embed[0].d_model, 1, 400, torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9)) # In[ ]: for epoch in range(10): model.train() print("Start train....") loss_func = SimpleLossCompute(model.generator, criterion, model_opt) print("lossfunc...........") run_epoch(data_gen(V, 30, 20), model, loss_func, device) # model.eval() # print(run_epoch(data_gen(V, 30, 5), model, SimpleLossCompute(model.generator, criterion, None), device)) break # In[1]: # get_ipython().system('nvidia-smi') # In[ ]: ================================================ FILE: P011WordSegmenting/chinese_word_segmenting.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import jieba" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 结巴分词的三种模式\n", "### 1 默认模式" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "s = \"小华毕业于中国科学院大学,后赴美深造。\"" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Building prefix dict from the default dictionary ...\n", "Loading model from cache /tmp/jieba.cache\n", "Loading model cost 1.037 seconds.\n", "Prefix dict has been built succesfully.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "['小华', '毕业', '于', '中国科学院', '大学', ',', '后', '赴美', '深造', '。']\n" ] } ], "source": [ "print(list(jieba.cut(s))) # 默认模式" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['小', '华', '毕业', '于', '中国科学院', '大学', ',', '后', '赴美', '深造', '。']\n" ] } ], "source": [ "print(list(jieba.cut(s, HMM=False))) # 默认模式关闭隐马尔科夫, 小华不能准确分出来" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 2 全模式" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "words = jieba.cut(s, cut_all=True) # 全模式" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['小', '华', '毕业', '于', '中国', '中国科学院', '科学', '科学院', '学院', '大学', '', '', '后', '赴美', '深造', '', '']\n" ] } ], "source": [ "print(list(words))" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['小', '华', '毕业', '于', '中国', '中国科学院', '科学', '科学院', '学院', '大学', '', '', '后', '赴美', '深造', '', '']\n" ] } ], "source": [ "print(list(jieba.cut(s, cut_all=True, HMM=False))) # 关闭HMM的全模式" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 3 搜索引擎模式" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['小华', '毕业', '于', '中国', '科学', '学院', '科学院', '中国科学院', '大学', ',', '后', '赴美', '深造', '。']\n" ] } ], "source": [ "seg_list = jieba.cut_for_search(s) # 搜索引擎模式\n", "print(list(seg_list))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P012translate/machine_translation.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 机器翻译\n", "- 编码器--解码器\n", "- 注意力机制\n", "- 主要步骤\n", " - 1 读取和预处理数据\n", " - 2 注意力机制的编码器解码器(模型)\n", " - 3 训练模型\n", " - 4 预测不定长序列\n", " - 5 评价翻译结果\n", " \n", "## 1 读取和预处理数据\n", "- 我们先定义一些特殊符号。其中$$(padding)符号用来添加在较短序列后,直到每个序列等长,而$$和$$符号分别表示序列的开始和结束。" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import collections\n", "import os\n", "import io\n", "import math\n", "import torch\n", "from torch import nn\n", "import torch.nn.functional as F\n", "import torchtext.vocab as Vocab\n", "import torch.utils.data as Data\n", "\n", "import sys\n", "sys.path.append(\"..\") \n", "# import d2lzh_pytorch as d2l\n", "\n", "PAD, BOS, EOS = '', '', ''\n", "os.environ[\"CUDA_VISIBLE_DEVICES\"] = \"0\"\n", "device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 辅助函数预处理数据" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# 将一个序列中所有的词记录在all_tokens中以便之后构造词典,然后在该序列后面添加PAD直到序列\n", "# 长度变为max_seq_len,然后将序列保存在all_seqs中\n", "def process_one_seq(seq_tokens, all_tokens, all_seqs, max_seq_len):\n", " all_tokens.extend(seq_tokens)\n", " seq_tokens += [EOS] + [PAD] * (max_seq_len - len(seq_tokens) - 1)\n", " all_seqs.append(seq_tokens)\n", "\n", "# 使用所有的词来构造词典。并将所有序列中的词变换为词索引后构造Tensor\n", "def build_data(all_tokens, all_seqs):\n", " vocab = Vocab.Vocab(collections.Counter(all_tokens),\n", " specials=[PAD, BOS, EOS])\n", " indices = [[vocab.stoi[w] for w in seq] for seq in all_seqs]\n", " return vocab, torch.tensor(indices)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 读取数据/构建词典\n", "- 为了演示方便,我们在这里使用一个很小的法语—英语数据集。在这个数据集里,每一行是一对法语句子和它对应的英语句子,中间使用'\\t'隔开。在读取数据时,我们在句末附上$$符号,并可能通过添加$$符号使每个序列的长度均为**max_seq_len**。我们为法语词和英语词分别创建词典。法语词的索引和英语词的索引相互独立。" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def read_data(max_seq_len):\n", " # in和out分别是input和output的缩写\n", " in_tokens, out_tokens, in_seqs, out_seqs = [], [], [], []\n", " with io.open('data/fr-en-small.txt') as f:\n", " lines = f.readlines()\n", " for line in lines:\n", " in_seq, out_seq = line.rstrip().split('\\t')\n", " in_seq_tokens, out_seq_tokens = in_seq.split(' '), out_seq.split(' ')\n", " if max(len(in_seq_tokens), len(out_seq_tokens)) > max_seq_len - 1:\n", " continue # 如果加上EOS后长于max_seq_len,则忽略掉此样本\n", " process_one_seq(in_seq_tokens, in_tokens, in_seqs, max_seq_len)\n", " process_one_seq(out_seq_tokens, out_tokens, out_seqs, max_seq_len)\n", " in_vocab, in_data = build_data(in_tokens, in_seqs)\n", " out_vocab, out_data = build_data(out_tokens, out_seqs)\n", " return in_vocab, out_vocab, Data.TensorDataset(in_data, out_data)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(tensor([ 5, 4, 45, 3, 2, 0, 0]), tensor([ 8, 4, 27, 3, 2, 0, 0]))" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 将序列的最大长度设成7,然后查看读取到的第一个样本。该样本分别包含法语词索引序列和英语词索引序列。\n", "max_seq_len = 7\n", "in_vocab, out_vocab, dataset = read_data(max_seq_len)\n", "dataset[0]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2 模型\n", "- 使用含注意力机制的编码器—解码器来将一段简短的法语翻译成英语。下面我们来介绍模型的实现。\n", "### 编码器\n", "- 在编码器中,我们将输入语言的词索引通过词嵌入层得到词的表征,然后输入到一个多层门控循环单元中。正如我们在6.5节(循环神经网络的简洁实现)中提到的,PyTorch的nn.GRU实例在前向计算后也会分别返回输出和最终时间步的多层隐藏状态。其中的输出指的是最后一层的隐藏层在各个时间步的隐藏状态,并不涉及输出层计算。注意力机制将这些输出作为键项和值项。" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "class Encoder(nn.Module):\n", " def __init__(self, vocab_size, embed_size, num_hiddens, num_layers,\n", " drop_prob=0, **kwargs):\n", " super(Encoder, self).__init__(**kwargs)\n", " self.embedding = nn.Embedding(vocab_size, embed_size)\n", " self.rnn = nn.GRU(embed_size, num_hiddens, num_layers, dropout=drop_prob)\n", "\n", " def forward(self, inputs, state):\n", " # 输入形状是(批量大小, 时间步数)。将输出互换样本维和时间步维\n", " embedding = self.embedding(inputs.long()).permute(1, 0, 2) # (seq_len, batch, input_size)\n", " return self.rnn(embedding, state)\n", "\n", " def begin_state(self):\n", " return None # 隐藏态初始化为None时PyTorch会自动初始化为0" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### \n", "---\n", "- 下面我们来创建一个批量大小为4、时间步数为7的小批量序列输入。设门控循环单元的隐藏层个数为2,隐藏单元个数为16。编码器对该输入执行前向计算后返回的输出形状为(时间步数, 批量大小, 隐藏单元个数)。门控循环单元在最终时间步的多层隐藏状态的形状为(隐藏层个数, 批量大小, 隐藏单元个数)。对于门控循环单元来说,state就是一个元素,即隐藏状态;如果使用长短期记忆,state是一个元组,包含两个元素即隐藏状态和记忆细胞。\n" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(torch.Size([7, 4, 16]), torch.Size([2, 4, 16]))" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "encoder = Encoder(vocab_size=10, embed_size=8, num_hiddens=16, num_layers=2)\n", "output, state = encoder(torch.zeros((4, 7)), encoder.begin_state())\n", "output.shape, state.shape # GRU的state是h, 而LSTM的是一个元组(h, c)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 注意力机制\n", "- 我们将实现注意力机制.定义的函数aa:将输入连结后通过含单隐藏层的多层感知机变换。其中隐藏层的输入是解码器的隐藏状态与编码器在所有时间步上隐藏状态的一一连结,且使用tanh函数作为激活函数。输出层的输出个数为1。两个Linear实例均不使用偏差。其中函数aa定义里向量vv的长度是一个超参数,即attention_size。" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "def attention_model(input_size, attention_size):\n", " model = nn.Sequential(nn.Linear(input_size, \n", " attention_size, bias=False),\n", " nn.Tanh(),\n", " nn.Linear(attention_size, 1, bias=False))\n", " return model" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- 注意力机制的输入包括查询项、键项和值项。设编码器和解码器的隐藏单元个数相同。这里的查询项为解码器在上一时间步的隐藏状态,形状为(批量大小, 隐藏单元个数);键项和值项均为编码器在所有时间步的隐藏状态,形状为(时间步数, 批量大小, 隐藏单元个数)。注意力机制返回当前时间步的背景变量,形状为(批量大小, 隐藏单元个数)。" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "def attention_forward(model, enc_states, dec_state):\n", " \"\"\"\n", " enc_states: (时间步数, 批量大小, 隐藏单元个数)\n", " dec_state: (批量大小, 隐藏单元个数)\n", " \"\"\"\n", " # 将解码器隐藏状态广播到和编码器隐藏状态形状相同后进行连结\n", " dec_states = dec_state.unsqueeze(dim=0).expand_as(enc_states)\n", " enc_and_dec_states = torch.cat((enc_states, dec_states), dim=2)\n", " e = model(enc_and_dec_states) # 形状为(时间步数, 批量大小, 1)\n", " alpha = F.softmax(e, dim=0) # 在时间步维度做softmax运算\n", " return (alpha * enc_states).sum(dim=0) # 返回背景变量" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- 在下面的例子中,编码器的时间步数为10,批量大小为4,编码器和解码器的隐藏单元个数均为8。注意力机制返回一个小批量的背景向量,每个背景向量的长度等于编码器的隐藏单元个数。因此输出的形状为(4, 8)。" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([4, 8])" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seq_len, batch_size, num_hiddens = 10, 4, 8\n", "model = attention_model(2*num_hiddens, 10) \n", "enc_states = torch.zeros((seq_len, batch_size, num_hiddens))\n", "dec_state = torch.zeros((batch_size, num_hiddens))\n", "attention_forward(model, enc_states, dec_state).shape # torch.Size([4, 8])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 含注意力机制的解码器\n", "- 我们直接将编码器在最终时间步的隐藏状态作为解码器的初始隐藏状态。这要求编码器和解码器的循环神经网络使用相同的隐藏层个数和隐藏单元个数。\n", "\n", "- 在解码器的前向计算中,我们先通过刚刚介绍的注意力机制计算得到当前时间步的背景向量。由于解码器的输入来自输出语言的词索引,我们将输入通过词嵌入层得到表征,然后和背景向量在特征维连结。我们将连结后的结果与上一时间步的隐藏状态通过门控循环单元计算出当前时间步的输出与隐藏状态。最后,我们将输出通过全连接层变换为有关各个输出词的预测,形状为(批量大小, 输出词典大小)。" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "class Decoder(nn.Module):\n", " def __init__(self, vocab_size, embed_size, num_hiddens, num_layers,\n", " attention_size, drop_prob=0):\n", " super(Decoder, self).__init__()\n", " self.embedding = nn.Embedding(vocab_size, embed_size)\n", " self.attention = attention_model(2*num_hiddens, attention_size)\n", " # GRU的输入包含attention输出的c和实际输入, 所以尺寸是 num_hiddens+embed_size\n", " self.rnn = nn.GRU(num_hiddens + embed_size, num_hiddens, \n", " num_layers, dropout=drop_prob)\n", " self.out = nn.Linear(num_hiddens, vocab_size)\n", "\n", " def forward(self, cur_input, state, enc_states):\n", " \"\"\"\n", " cur_input shape: (batch, )\n", " state shape: (num_layers, batch, num_hiddens)\n", " \"\"\"\n", " # 使用注意力机制计算背景向量\n", " c = attention_forward(self.attention, enc_states, state[-1])\n", " # 将嵌入后的输入和背景向量在特征维连结, (批量大小, num_hiddens+embed_size)\n", " input_and_c = torch.cat((self.embedding(cur_input), c), dim=1)\n", " # 为输入和背景向量的连结增加时间步维,时间步个数为1\n", " output, state = self.rnn(input_and_c.unsqueeze(0), state)\n", " # 移除时间步维,输出形状为(批量大小, 输出词典大小)\n", " output = self.out(output).squeeze(dim=0)\n", " return output, state\n", "\n", " def begin_state(self, enc_state):\n", " # 直接将编码器最终时间步的隐藏状态作为解码器的初始隐藏状态\n", " return enc_state" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3 训练模型\n", "- 我们先实现batch_loss函数计算一个小批量的损失。解码器在最初时间步的输入是特殊字符BOS。之后,解码器在某时间步的输入为样本输出序列在上一时间步的词,即强制教学。此外,同10.3节(word2vec的实现)中的实现一样,我们在这里也使用掩码变量避免填充项对损失函数计算的影响。\n", "```\n", "elle est vieille .\tshe is old .\n", "elle est tranquille .\tshe is quiet .\n", "elle a tort .\tshe is wrong .\n", "elle est canadienne .\tshe is canadian .\n", "elle est japonaise .\tshe is japanese .\n", "ils sont russes .\tthey are russian .\n", "ils se disputent .\tthey are arguing .\n", "ils regardent .\tthey are watching .\n", "ils sont acteurs .\tthey are actors .\n", "elles sont crevees .\tthey are exhausted .\n", "il est mon genre !\the is my type !\n", "il a des ennuis .\the is in trouble .\n", "c est mon frere .\the is my brother .\n", "c est mon oncle .\the is my uncle .\n", "il a environ mon age .\the is about my age .\n", "elles sont toutes deux bonnes .\tthey are both good .\n", "elle est bonne nageuse .\tshe is a good swimmer .\n", "c est une personne adorable .\the is a lovable person .\n", "il fait du velo .\the is riding a bicycle .\n", "ils sont de grands amis .\tthey are great friends .\n", "```" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "def batch_loss(encoder, decoder, X, Y, loss):\n", " batch_size = X.shape[0]\n", " enc_state = encoder.begin_state()\n", " enc_outputs, enc_state = encoder(X, enc_state)\n", " # 初始化解码器的隐藏状态\n", " dec_state = decoder.begin_state(enc_state)\n", " # 解码器在最初时间步的输入是BOS\n", " dec_input = torch.tensor([out_vocab.stoi[BOS]] * batch_size)\n", " # 我们将使用掩码变量mask来忽略掉标签为填充项PAD的损失\n", " mask, num_not_pad_tokens = torch.ones(batch_size,), 0\n", " l = torch.tensor([0.0])\n", " i = 0\n", " for y in Y.permute(1,0): # Y shape: (batch, seq_len)\n", " print(\"序列第 [{}]个单词\".format(i))\n", " print(\"解码器输入dec_input:\", dec_input, )\n", " dec_output, dec_state = decoder(dec_input, dec_state, enc_outputs)\n", " #print(\"dec_output:\", dec_output, dec_output.size())\n", " print(\"dec_state:\", dec_state, dec_state.size())\n", " print(\"enc_outputs:\", enc_outputs)\n", " #print(\"y\", y)\n", " #print(\"CrossEntropyLoss:\", loss(dec_output, y))\n", " print(\"mask\", mask)\n", " print(\"-\"*30)\n", " l = l + (mask * loss(dec_output, y)).sum()\n", " dec_input = y # 使用强制教学\n", " num_not_pad_tokens += mask.sum().item()\n", " # EOS后面全是PAD. 下面一行保证一旦遇到EOS接下来的循环中mask就一直是0\n", " mask = mask * (y != out_vocab.stoi[EOS]).float()\n", " i += 1\n", " return l / num_not_pad_tokens" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- 在训练函数中,我们需要同时迭代编码器和解码器的模型参数。" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "def train(encoder, decoder, dataset, lr, batch_size, num_epochs):\n", " enc_optimizer = torch.optim.Adam(encoder.parameters(), lr=lr)\n", " dec_optimizer = torch.optim.Adam(decoder.parameters(), lr=lr)\n", "\n", " loss = nn.CrossEntropyLoss(reduction='none')\n", " data_iter = Data.DataLoader(dataset, batch_size, shuffle=True)\n", " for epoch in range(num_epochs):\n", " l_sum = 0.0\n", " for X, Y in data_iter:\n", " print(X)\n", " print(Y)\n", " enc_optimizer.zero_grad()\n", " dec_optimizer.zero_grad()\n", " l = batch_loss(encoder, decoder, X, Y, loss)\n", " l.backward()\n", " enc_optimizer.step()\n", " dec_optimizer.step()\n", " l_sum += l.item()\n", " break\n", " if (epoch + 1) % 10 == 0:\n", " print(\"epoch %d, loss %.3f\" % (epoch + 1, l_sum / len(data_iter)))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- 创建模型实例并设置超参数。然后,我们就可以训练模型了。" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/nn/modules/rnn.py:54: UserWarning: dropout option adds dropout after all but last recurrent layer, so non-zero dropout expects num_layers greater than 1, but got dropout=0.5 and num_layers=1\n", " \"num_layers={}\".format(dropout, num_layers))\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "tensor([[ 6, 7, 38, 3, 2, 0, 0],\n", " [12, 7, 21, 3, 2, 0, 0]])\n", "tensor([[ 7, 5, 31, 3, 2, 0, 0],\n", " [ 7, 5, 21, 3, 2, 0, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-0.1393, 0.2936, -0.5886, -0.0687, 0.0963, -0.5384, -0.6605,\n", " 0.0597, -0.2344, -0.1347, 0.0796, 0.2670, 0.4116, 0.1627,\n", " 0.4085, 0.0704, -0.1313, 0.0013, 0.3381, -0.2618, 0.0287,\n", " 0.3162, 0.0669, -0.0386, 0.0549, 0.1877, -0.1045, -0.2432,\n", " -0.1555, -0.1253, -0.1819, -0.5526, 0.4872, 0.0308, 0.2886,\n", " -0.0971, 0.6693, -0.0417, 0.0676, 0.0169, 0.3350, -0.8023,\n", " -0.3994, -0.4915, 0.0326, -0.1598, 0.5736, -0.1902, -0.1287,\n", " -0.0258, -0.3902, 0.2112, 0.1344, 0.0132, -0.0401, 0.2563,\n", " -0.2707, 0.0953, -0.3079, 0.0300, -0.1933, 0.0521, -0.3383,\n", " -0.3936],\n", " [-0.0659, 0.3224, -0.5626, -0.0946, 0.1006, -0.5432, -0.6270,\n", " 0.0288, -0.1833, -0.1587, 0.0221, 0.3053, 0.3700, 0.2379,\n", " 0.3761, 0.0267, -0.1992, 0.0164, 0.3451, -0.1771, -0.0298,\n", " 0.3113, 0.0284, -0.0265, 0.1441, 0.1754, -0.0554, -0.2013,\n", " -0.2120, -0.0555, -0.1838, -0.5463, 0.4851, 0.0840, 0.1811,\n", " -0.0880, 0.6547, -0.0377, 0.0884, 0.0255, 0.3349, -0.8068,\n", " -0.4207, -0.4491, 0.0518, -0.0835, 0.4971, -0.1542, -0.0914,\n", " -0.0537, -0.3480, 0.2098, 0.1019, -0.0159, -0.1167, 0.2960,\n", " -0.2617, 0.1453, -0.3284, -0.0456, -0.1543, 0.0220, -0.4361,\n", " -0.3750]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01, 1.0857e-01, -1.9370e-01,\n", " 3.7774e-01, 2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\n", " 3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02, 4.3488e-01,\n", " -3.0141e-01, 3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\n", " -2.4359e-01, 4.2206e-02, 4.8470e-01, 6.3224e-02, -2.2614e-01,\n", " -3.1987e-01, -1.8798e-01, 3.6993e-01, -1.4684e-01, -2.3621e-01,\n", " 9.9864e-02, 3.6303e-01, -3.7656e-01, 2.8872e-01, 2.2332e-01,\n", " 2.0550e-01, 8.0081e-02, 4.3839e-01, -1.6392e-01, 4.0154e-01,\n", " -2.5501e-01, 3.4941e-01, -2.7039e-01, -3.2946e-01, 2.1274e-01,\n", " -2.3434e-01, -2.1966e-01, 9.3274e-02, -7.7401e-02, 2.1879e-01,\n", " 7.3506e-02, 2.4881e-01, -2.0310e-01, 2.3559e-01, -2.5062e-01,\n", " -2.0376e-01, -7.3991e-02, 2.4347e-01, -3.7692e-02, 2.6946e-01,\n", " -1.9928e-01, 4.4936e-01, 1.3003e-01, -2.6040e-01],\n", " [ 2.2726e-01, -1.8992e-02, 4.8106e-01, 4.0937e-02, -1.9359e-01,\n", " 4.0787e-01, -7.4492e-02, 2.5378e-01, -1.3509e-01, 1.1359e-01,\n", " -3.4980e-01, 1.5776e-01, 6.9378e-02, -1.1341e-01, 3.5061e-01,\n", " 4.8332e-01, -2.1102e-01, 9.0305e-02, -2.2642e-01, -2.2795e-01,\n", " -2.9546e-01, -3.0294e-01, 1.8674e-01, 6.4141e-02, -6.4675e-02,\n", " -1.5324e-01, -2.3329e-01, 3.4140e-01, -1.7343e-01, -2.0366e-01,\n", " 1.1172e-01, -1.4087e-01, 1.4044e-01, 2.0903e-01, -2.5586e-01,\n", " -1.2561e-01, -1.5254e-01, -8.0407e-02, 1.3476e-01, 1.0619e-01,\n", " 5.9930e-02, 3.1730e-01, 2.6906e-01, -3.8815e-01, -6.9665e-02,\n", " -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\n", " 2.2937e-01, -3.9784e-04, 2.2407e-01, -2.5350e-01, -3.3453e-01,\n", " -1.3767e-01, -1.7459e-01, 1.3520e-01, 2.4302e-01, 2.2246e-01,\n", " -4.8888e-01, -4.4384e-02, 1.1326e-01, -3.4151e-01]],\n", "\n", " [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\n", " 5.6420e-02, 3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\n", " -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01, 5.9376e-02,\n", " -1.0247e-01, 4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\n", " -2.3619e-01, 8.6265e-02, 4.6741e-01, 3.5501e-01, 1.7282e-01,\n", " -4.7347e-01, 1.4804e-01, 2.5100e-02, -1.2214e-01, -2.0864e-01,\n", " 2.3636e-01, 5.4465e-01, -1.1361e-01, 6.3898e-01, -8.9376e-02,\n", " 4.4687e-01, 1.6410e-01, 2.6329e-01, -2.0854e-01, 2.3961e-01,\n", " -1.0511e-01, 2.5216e-01, -5.3976e-01, -3.7185e-01, 2.4008e-01,\n", " -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01, 2.5457e-01,\n", " 1.2218e-02, 4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\n", " 7.5208e-02, 4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\n", " -4.9366e-01, 5.4208e-01, 1.5324e-01, 3.9655e-01],\n", " [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\n", " 1.3124e-01, 7.5505e-02, 3.4263e-03, -1.1334e-01, -3.4639e-01,\n", " -3.6638e-01, 4.9316e-02, -2.1105e-01, -2.2630e-01, 2.0947e-02,\n", " 3.3961e-01, 9.4981e-02, 1.3542e-01, -3.8337e-01, -2.0906e-01,\n", " -3.0973e-01, -1.5681e-01, 3.3510e-01, 2.7113e-01, 2.4488e-01,\n", " -3.3195e-01, 1.5274e-01, 1.5221e-01, -2.0584e-01, -2.2414e-01,\n", " 2.1737e-01, 1.8852e-01, 7.0223e-02, 5.6388e-01, -3.3851e-01,\n", " 2.6845e-01, 1.1714e-02, -1.4760e-01, 4.3259e-02, 1.0451e-01,\n", " 3.4776e-03, 3.1284e-01, -3.2982e-01, -3.1727e-01, 3.6460e-02,\n", " -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01, 5.9090e-03,\n", " 8.1017e-02, 2.7271e-01, 4.5712e-02, -2.8956e-01, -1.6350e-02,\n", " 2.0064e-02, 1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\n", " -6.5255e-01, 3.1658e-01, 1.4671e-01, 3.6424e-01]],\n", "\n", " [[-1.3597e-01, 1.9799e-01, 2.3560e-01, -1.9528e-01, -1.1069e-02,\n", " 1.1243e-01, 2.9132e-01, 4.1456e-01, -4.4696e-01, -4.3193e-01,\n", " 5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01, 1.1342e-01,\n", " 2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\n", " 2.0141e-02, 6.2393e-02, 2.0971e-02, 8.2769e-02, 4.6496e-01,\n", " -5.3510e-01, 9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\n", " 2.7095e-01, 9.9948e-02, -3.6222e-01, 2.0611e-01, 2.9721e-01,\n", " 7.5574e-02, -1.6472e-01, 3.0445e-01, -3.6575e-02, -2.3158e-01,\n", " 3.9358e-01, 1.9318e-01, -5.6557e-01, -2.6799e-01, 3.8988e-01,\n", " -1.6496e-01, -1.3708e-01, 4.8606e-02, 1.5874e-01, -8.5188e-02,\n", " -1.0096e-01, 4.2342e-01, -1.8810e-01, 1.2980e-01, -2.4798e-01,\n", " -3.8226e-01, 7.9836e-02, -3.9238e-01, -2.6510e-01, 8.0690e-02,\n", " -3.0937e-01, 5.9596e-01, 2.3998e-01, -7.1284e-02],\n", " [ 2.6165e-01, -1.4047e-01, 9.4698e-02, -2.6050e-01, -6.5844e-01,\n", " 6.9578e-02, 4.2476e-01, 3.4034e-01, 9.9292e-02, -7.7451e-02,\n", " -3.3465e-01, 2.1420e-01, -8.8270e-02, 1.8651e-01, 1.4740e-01,\n", " 5.7079e-01, 2.2680e-02, 2.0249e-01, -1.9472e-01, -2.2586e-01,\n", " -3.8880e-01, -2.1211e-01, 1.9659e-01, 2.1478e-01, -2.5531e-02,\n", " 7.8013e-02, 3.2416e-01, 4.8909e-01, 2.9591e-01, 2.0706e-01,\n", " 5.0405e-02, -3.9285e-02, 1.2387e-01, 1.4932e-01, -6.5346e-01,\n", " 1.9413e-02, -3.7684e-02, 9.7702e-02, 3.4156e-02, -2.0560e-01,\n", " 2.2834e-01, 4.8682e-01, -6.0703e-01, 7.5087e-02, 2.0022e-01,\n", " -3.6027e-03, 4.1835e-03, -3.9750e-01, 6.0365e-02, -5.0696e-02,\n", " -6.1541e-02, 5.2398e-01, 3.6723e-01, -3.4788e-01, -1.8475e-02,\n", " 9.8757e-02, -1.9024e-01, 3.2452e-02, 2.3710e-01, -1.6492e-01,\n", " -1.5253e-01, 3.6131e-01, -2.0650e-01, -4.8210e-01]],\n", "\n", " [[-9.5985e-02, 7.5312e-02, -1.6275e-02, -1.6717e-01, 1.3966e-01,\n", " 1.2510e-01, 1.7152e-01, 3.7018e-01, 1.7329e-01, -3.6036e-03,\n", " 1.0929e-01, -2.8514e-01, 1.1324e-01, -4.5108e-01, 2.3049e-01,\n", " 1.1407e-01, 5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\n", " 3.5342e-01, 1.2921e-01, -1.4113e-01, 8.1400e-02, 6.0903e-01,\n", " 1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\n", " 2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02, 3.7362e-01,\n", " 1.3951e-01, 2.5189e-01, 1.7649e-01, -3.2773e-01, -1.1435e-01,\n", " -1.6709e-01, 3.5067e-01, 9.1052e-02, -4.6298e-02, 3.1424e-01,\n", " 8.7142e-03, 1.8674e-01, 1.2893e-01, 2.1966e-01, 1.6659e-01,\n", " -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\n", " -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01, 4.7413e-01,\n", " -2.9576e-01, 2.2703e-01, -3.9934e-01, 1.7219e-01],\n", " [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\n", " 1.5163e-01, 1.7886e-01, 2.7458e-01, 3.3433e-01, 2.0521e-01,\n", " -1.4750e-01, -1.2898e-01, -3.0942e-02, 3.7652e-02, 1.3187e-01,\n", " 9.9556e-02, 1.6104e-01, -2.2675e-02, 4.0490e-02, -4.2415e-01,\n", " 4.9033e-02, -5.0992e-02, -1.2216e-02, 1.6971e-01, 3.7812e-01,\n", " 3.2139e-01, 1.6347e-01, 6.9504e-02, 1.0657e-01, -1.5354e-01,\n", " 1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\n", " 9.1052e-02, 2.3660e-01, 2.3901e-02, -2.6365e-01, -1.5990e-01,\n", " -2.8048e-01, 5.6058e-01, 3.8168e-02, 2.1925e-01, 3.2005e-01,\n", " 1.8152e-01, 2.5467e-01, -5.4982e-03, 1.7120e-01, 1.8606e-01,\n", " -1.4660e-01, -4.4520e-01, 1.6732e-01, -4.7045e-01, -7.7974e-02,\n", " -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01, 3.0227e-01,\n", " -2.2191e-01, 2.9605e-02, -6.3017e-01, -1.4525e-01]],\n", "\n", " [[-3.4904e-01, -6.8274e-02, 5.6533e-02, -2.4772e-02, 3.2061e-01,\n", " 2.1123e-01, 1.5713e-01, -1.7263e-01, 1.5009e-01, -4.3575e-03,\n", " -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01, 1.8752e-01,\n", " 2.7129e-01, 1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\n", " 2.2746e-01, 8.3794e-02, -1.3259e-01, -1.1347e-01, 6.5971e-01,\n", " -2.3801e-01, 3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\n", " 2.3377e-01, 3.3690e-02, 3.5666e-01, -2.5705e-01, 8.0429e-02,\n", " -1.0046e-01, -3.2683e-01, 1.7847e-01, 4.9813e-02, -2.7301e-02,\n", " -2.8488e-01, 1.3049e-01, -3.1199e-01, 2.1468e-01, 4.1697e-01,\n", " -9.0697e-03, 3.0670e-01, 3.1493e-02, 1.2018e-01, 3.3610e-01,\n", " 2.8280e-02, -7.6110e-02, 2.6174e-01, -3.1480e-01, 4.1252e-03,\n", " 1.0057e-01, 3.8000e-02, -2.0712e-01, 2.7292e-01, 5.9932e-01,\n", " 1.2308e-01, 4.6245e-01, 1.7830e-02, -3.6655e-01],\n", " [-1.6559e-01, -1.4964e-01, 1.6312e-02, -7.3873e-02, 2.1183e-01,\n", " 2.4620e-01, 1.3492e-01, -2.5850e-01, 2.4197e-01, 1.5375e-01,\n", " -1.7702e-01, -3.0812e-02, -2.3033e-01, 5.7193e-02, 8.9032e-02,\n", " 2.5915e-01, 1.7881e-01, 9.2474e-02, 6.9597e-02, -5.1476e-01,\n", " 1.3662e-02, 1.7113e-02, -6.8879e-02, -7.7871e-02, 5.7157e-01,\n", " -1.9469e-01, 4.2673e-01, 1.1721e-01, -5.7496e-01, -3.3230e-01,\n", " 1.5853e-01, 1.8137e-03, 3.5060e-01, -2.1769e-01, -1.9723e-01,\n", " -1.1998e-01, -3.5563e-01, 7.3324e-02, 6.4801e-02, -6.5640e-02,\n", " -3.7750e-01, 1.6369e-01, -3.3921e-01, 3.2287e-01, 4.4207e-01,\n", " 1.0073e-01, 3.4861e-01, 8.5830e-02, 1.3543e-01, 3.6765e-01,\n", " 2.3823e-02, -7.5720e-02, 3.2633e-01, -5.0892e-01, 4.9602e-02,\n", " 2.0053e-01, -9.2345e-03, -8.3791e-03, 3.5187e-01, 4.7023e-01,\n", " 1.4153e-01, 3.2948e-01, -3.3481e-02, -4.5740e-01]],\n", "\n", " [[-4.1226e-01, 2.4138e-01, -4.2202e-01, -1.7461e-01, 5.4534e-01,\n", " -4.2925e-01, -2.6951e-01, -2.0688e-01, 2.3745e-02, -1.1517e-01,\n", " -2.2702e-01, 8.5057e-02, 1.9687e-01, 1.8045e-01, 1.4299e-01,\n", " 1.3289e-01, 2.7649e-01, 3.7999e-01, 1.7433e-01, -5.2645e-01,\n", " 1.9178e-01, 8.7907e-02, -2.5690e-01, -2.0036e-01, 6.0692e-01,\n", " -1.0853e-01, 1.2578e-01, 8.5823e-02, -4.5513e-01, -6.2062e-01,\n", " 4.1656e-01, -8.5522e-02, 4.3798e-01, -3.9802e-01, 2.4185e-01,\n", " -1.5286e-01, 1.2474e-01, -4.1761e-02, 3.6593e-01, 3.9166e-01,\n", " -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01, 3.1793e-01,\n", " -4.1171e-01, 2.4068e-01, -1.5773e-01, 8.6016e-02, 1.3797e-01,\n", " -1.8716e-01, 6.9685e-02, 4.8977e-02, -3.2609e-01, -1.2320e-01,\n", " 2.7405e-01, -3.3264e-01, 9.2106e-02, -9.5439e-02, -1.2941e-01,\n", " -6.0168e-03, -1.0422e-01, 1.7811e-01, -2.6908e-01],\n", " [-2.8426e-01, 2.0979e-01, -4.4463e-01, -2.0507e-01, 4.8820e-01,\n", " -3.8590e-01, -2.7336e-01, -2.7192e-01, 5.9091e-02, -5.6585e-02,\n", " -2.9206e-01, 1.5256e-01, 1.0575e-01, 3.3100e-01, 6.6701e-02,\n", " 1.1139e-01, 2.9278e-01, 4.2220e-01, 2.2346e-01, -5.3398e-01,\n", " 6.1949e-02, 3.1205e-02, -2.1178e-01, -1.8280e-01, 5.6443e-01,\n", " -8.3626e-02, 1.7926e-01, 2.4563e-01, -3.9010e-01, -5.8782e-01,\n", " 3.6655e-01, -1.1015e-01, 4.1846e-01, -3.7551e-01, 5.5107e-02,\n", " -1.6866e-01, 5.1045e-02, -1.0331e-01, 3.6541e-01, 3.5180e-01,\n", " -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01, 3.5780e-01,\n", " -3.3289e-01, 2.8968e-01, -1.0464e-01, 1.1147e-01, 1.5557e-01,\n", " -1.9501e-01, 6.4053e-02, 4.8930e-02, -4.1890e-01, -1.0011e-01,\n", " 3.3335e-01, -3.6849e-01, 1.6564e-01, -8.3867e-02, -1.3537e-01,\n", " -1.7237e-02, -1.4193e-01, 1.7183e-01, -3.0383e-01]],\n", "\n", " [[-4.3374e-01, 4.0180e-01, -6.3305e-01, -3.0021e-01, 7.0703e-01,\n", " -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\n", " -2.8203e-01, 2.1185e-01, 3.0355e-01, 3.5339e-01, 1.3138e-01,\n", " -1.0663e-02, 3.2603e-01, 5.0363e-01, 2.9328e-01, -5.3031e-01,\n", " 9.6803e-02, 7.1699e-02, -3.4079e-01, -2.4798e-01, 5.0690e-01,\n", " -1.7497e-02, -1.8682e-02, 2.1297e-01, -3.2107e-01, -7.1430e-01,\n", " 5.1159e-01, -2.7057e-01, 4.7796e-01, -4.5132e-01, 3.6998e-01,\n", " -2.5730e-01, 3.9020e-01, -1.3587e-01, 5.3076e-01, 5.6810e-01,\n", " -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01, 2.9033e-01,\n", " -6.0690e-01, 1.4748e-01, -2.5577e-01, 4.8167e-02, -5.2315e-02,\n", " -3.3055e-01, 5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\n", " 3.5335e-01, -5.3203e-01, 3.0482e-01, -2.6943e-01, -2.4425e-01,\n", " -8.9498e-03, -2.3237e-01, 2.3527e-01, -2.3360e-01],\n", " [-3.4616e-01, 3.8957e-01, -6.4207e-01, -3.2078e-01, 6.7713e-01,\n", " -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\n", " -3.1221e-01, 2.4949e-01, 2.4872e-01, 4.2892e-01, 7.1725e-02,\n", " -3.2751e-02, 3.2776e-01, 5.2313e-01, 3.2315e-01, -5.3379e-01,\n", " 2.7926e-02, 2.5778e-02, -3.0887e-01, -2.3681e-01, 4.8511e-01,\n", " -1.2633e-03, 1.4333e-02, 3.0642e-01, -2.8257e-01, -7.0073e-01,\n", " 4.8024e-01, -2.8092e-01, 4.6049e-01, -4.3820e-01, 2.5091e-01,\n", " -2.6511e-01, 3.3634e-01, -1.7201e-01, 5.2863e-01, 5.4009e-01,\n", " -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01, 3.2482e-01,\n", " -5.5845e-01, 1.9502e-01, -2.1119e-01, 7.4632e-02, -4.8396e-02,\n", " -3.3858e-01, 5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\n", " 3.9274e-01, -5.5639e-01, 3.3230e-01, -2.6980e-01, -2.3812e-01,\n", " -2.7959e-02, -2.4953e-01, 2.3980e-01, -2.4494e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([7, 7])\n", "dec_state: tensor([[[-0.0047, -0.0548, -0.1628, 0.3243, 0.0669, 0.3298, -0.2109,\n", " 0.1938, -0.5070, -0.3582, 0.2628, -0.2222, 0.4755, 0.0878,\n", " -0.3810, 0.1851, 0.0778, -0.0039, 0.0260, -0.0963, 0.2187,\n", " -0.1856, -0.2736, 0.1515, -0.1300, -0.0072, 0.0977, -0.2819,\n", " -0.2625, -0.6864, -0.0273, -0.4722, 0.5508, -0.1247, -0.2038,\n", " 0.4291, -0.0973, -0.4255, 0.4465, 0.0047, 0.5269, -0.1303,\n", " -0.0153, 0.0748, 0.0415, -0.5193, 0.5431, -0.0795, 0.0754,\n", " 0.0150, -0.3283, 0.0332, 0.2943, -0.0910, -0.1878, -0.0570,\n", " -0.2849, 0.2539, 0.2561, -0.1437, -0.4567, 0.1442, -0.4540,\n", " 0.5123],\n", " [ 0.0283, 0.0047, -0.1254, 0.2868, 0.0827, 0.2917, -0.1569,\n", " 0.1670, -0.4442, -0.3985, 0.2001, -0.1848, 0.4337, 0.1485,\n", " -0.3671, 0.1315, -0.0871, 0.0177, 0.0351, 0.0194, 0.2007,\n", " -0.1986, -0.2983, 0.1784, -0.0187, -0.0278, 0.1302, -0.2468,\n", " -0.3661, -0.6581, -0.0316, -0.4600, 0.5616, -0.0818, -0.2749,\n", " 0.4230, -0.0691, -0.3862, 0.4919, 0.0984, 0.5332, -0.1659,\n", " -0.0160, 0.1324, 0.0196, -0.4971, 0.4453, -0.0421, 0.1062,\n", " -0.0670, -0.2509, 0.0177, 0.2614, -0.1554, -0.3322, -0.0313,\n", " -0.2582, 0.3030, 0.1612, -0.2565, -0.4052, 0.1038, -0.5556,\n", " 0.5468]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01, 1.0857e-01, -1.9370e-01,\n", " 3.7774e-01, 2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\n", " 3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02, 4.3488e-01,\n", " -3.0141e-01, 3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\n", " -2.4359e-01, 4.2206e-02, 4.8470e-01, 6.3224e-02, -2.2614e-01,\n", " -3.1987e-01, -1.8798e-01, 3.6993e-01, -1.4684e-01, -2.3621e-01,\n", " 9.9864e-02, 3.6303e-01, -3.7656e-01, 2.8872e-01, 2.2332e-01,\n", " 2.0550e-01, 8.0081e-02, 4.3839e-01, -1.6392e-01, 4.0154e-01,\n", " -2.5501e-01, 3.4941e-01, -2.7039e-01, -3.2946e-01, 2.1274e-01,\n", " -2.3434e-01, -2.1966e-01, 9.3274e-02, -7.7401e-02, 2.1879e-01,\n", " 7.3506e-02, 2.4881e-01, -2.0310e-01, 2.3559e-01, -2.5062e-01,\n", " -2.0376e-01, -7.3991e-02, 2.4347e-01, -3.7692e-02, 2.6946e-01,\n", " -1.9928e-01, 4.4936e-01, 1.3003e-01, -2.6040e-01],\n", " [ 2.2726e-01, -1.8992e-02, 4.8106e-01, 4.0937e-02, -1.9359e-01,\n", " 4.0787e-01, -7.4492e-02, 2.5378e-01, -1.3509e-01, 1.1359e-01,\n", " -3.4980e-01, 1.5776e-01, 6.9378e-02, -1.1341e-01, 3.5061e-01,\n", " 4.8332e-01, -2.1102e-01, 9.0305e-02, -2.2642e-01, -2.2795e-01,\n", " -2.9546e-01, -3.0294e-01, 1.8674e-01, 6.4141e-02, -6.4675e-02,\n", " -1.5324e-01, -2.3329e-01, 3.4140e-01, -1.7343e-01, -2.0366e-01,\n", " 1.1172e-01, -1.4087e-01, 1.4044e-01, 2.0903e-01, -2.5586e-01,\n", " -1.2561e-01, -1.5254e-01, -8.0407e-02, 1.3476e-01, 1.0619e-01,\n", " 5.9930e-02, 3.1730e-01, 2.6906e-01, -3.8815e-01, -6.9665e-02,\n", " -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\n", " 2.2937e-01, -3.9784e-04, 2.2407e-01, -2.5350e-01, -3.3453e-01,\n", " -1.3767e-01, -1.7459e-01, 1.3520e-01, 2.4302e-01, 2.2246e-01,\n", " -4.8888e-01, -4.4384e-02, 1.1326e-01, -3.4151e-01]],\n", "\n", " [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\n", " 5.6420e-02, 3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\n", " -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01, 5.9376e-02,\n", " -1.0247e-01, 4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\n", " -2.3619e-01, 8.6265e-02, 4.6741e-01, 3.5501e-01, 1.7282e-01,\n", " -4.7347e-01, 1.4804e-01, 2.5100e-02, -1.2214e-01, -2.0864e-01,\n", " 2.3636e-01, 5.4465e-01, -1.1361e-01, 6.3898e-01, -8.9376e-02,\n", " 4.4687e-01, 1.6410e-01, 2.6329e-01, -2.0854e-01, 2.3961e-01,\n", " -1.0511e-01, 2.5216e-01, -5.3976e-01, -3.7185e-01, 2.4008e-01,\n", " -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01, 2.5457e-01,\n", " 1.2218e-02, 4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\n", " 7.5208e-02, 4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\n", " -4.9366e-01, 5.4208e-01, 1.5324e-01, 3.9655e-01],\n", " [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\n", " 1.3124e-01, 7.5505e-02, 3.4263e-03, -1.1334e-01, -3.4639e-01,\n", " -3.6638e-01, 4.9316e-02, -2.1105e-01, -2.2630e-01, 2.0947e-02,\n", " 3.3961e-01, 9.4981e-02, 1.3542e-01, -3.8337e-01, -2.0906e-01,\n", " -3.0973e-01, -1.5681e-01, 3.3510e-01, 2.7113e-01, 2.4488e-01,\n", " -3.3195e-01, 1.5274e-01, 1.5221e-01, -2.0584e-01, -2.2414e-01,\n", " 2.1737e-01, 1.8852e-01, 7.0223e-02, 5.6388e-01, -3.3851e-01,\n", " 2.6845e-01, 1.1714e-02, -1.4760e-01, 4.3259e-02, 1.0451e-01,\n", " 3.4776e-03, 3.1284e-01, -3.2982e-01, -3.1727e-01, 3.6460e-02,\n", " -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01, 5.9090e-03,\n", " 8.1017e-02, 2.7271e-01, 4.5712e-02, -2.8956e-01, -1.6350e-02,\n", " 2.0064e-02, 1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\n", " -6.5255e-01, 3.1658e-01, 1.4671e-01, 3.6424e-01]],\n", "\n", " [[-1.3597e-01, 1.9799e-01, 2.3560e-01, -1.9528e-01, -1.1069e-02,\n", " 1.1243e-01, 2.9132e-01, 4.1456e-01, -4.4696e-01, -4.3193e-01,\n", " 5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01, 1.1342e-01,\n", " 2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\n", " 2.0141e-02, 6.2393e-02, 2.0971e-02, 8.2769e-02, 4.6496e-01,\n", " -5.3510e-01, 9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\n", " 2.7095e-01, 9.9948e-02, -3.6222e-01, 2.0611e-01, 2.9721e-01,\n", " 7.5574e-02, -1.6472e-01, 3.0445e-01, -3.6575e-02, -2.3158e-01,\n", " 3.9358e-01, 1.9318e-01, -5.6557e-01, -2.6799e-01, 3.8988e-01,\n", " -1.6496e-01, -1.3708e-01, 4.8606e-02, 1.5874e-01, -8.5188e-02,\n", " -1.0096e-01, 4.2342e-01, -1.8810e-01, 1.2980e-01, -2.4798e-01,\n", " -3.8226e-01, 7.9836e-02, -3.9238e-01, -2.6510e-01, 8.0690e-02,\n", " -3.0937e-01, 5.9596e-01, 2.3998e-01, -7.1284e-02],\n", " [ 2.6165e-01, -1.4047e-01, 9.4698e-02, -2.6050e-01, -6.5844e-01,\n", " 6.9578e-02, 4.2476e-01, 3.4034e-01, 9.9292e-02, -7.7451e-02,\n", " -3.3465e-01, 2.1420e-01, -8.8270e-02, 1.8651e-01, 1.4740e-01,\n", " 5.7079e-01, 2.2680e-02, 2.0249e-01, -1.9472e-01, -2.2586e-01,\n", " -3.8880e-01, -2.1211e-01, 1.9659e-01, 2.1478e-01, -2.5531e-02,\n", " 7.8013e-02, 3.2416e-01, 4.8909e-01, 2.9591e-01, 2.0706e-01,\n", " 5.0405e-02, -3.9285e-02, 1.2387e-01, 1.4932e-01, -6.5346e-01,\n", " 1.9413e-02, -3.7684e-02, 9.7702e-02, 3.4156e-02, -2.0560e-01,\n", " 2.2834e-01, 4.8682e-01, -6.0703e-01, 7.5087e-02, 2.0022e-01,\n", " -3.6027e-03, 4.1835e-03, -3.9750e-01, 6.0365e-02, -5.0696e-02,\n", " -6.1541e-02, 5.2398e-01, 3.6723e-01, -3.4788e-01, -1.8475e-02,\n", " 9.8757e-02, -1.9024e-01, 3.2452e-02, 2.3710e-01, -1.6492e-01,\n", " -1.5253e-01, 3.6131e-01, -2.0650e-01, -4.8210e-01]],\n", "\n", " [[-9.5985e-02, 7.5312e-02, -1.6275e-02, -1.6717e-01, 1.3966e-01,\n", " 1.2510e-01, 1.7152e-01, 3.7018e-01, 1.7329e-01, -3.6036e-03,\n", " 1.0929e-01, -2.8514e-01, 1.1324e-01, -4.5108e-01, 2.3049e-01,\n", " 1.1407e-01, 5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\n", " 3.5342e-01, 1.2921e-01, -1.4113e-01, 8.1400e-02, 6.0903e-01,\n", " 1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\n", " 2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02, 3.7362e-01,\n", " 1.3951e-01, 2.5189e-01, 1.7649e-01, -3.2773e-01, -1.1435e-01,\n", " -1.6709e-01, 3.5067e-01, 9.1052e-02, -4.6298e-02, 3.1424e-01,\n", " 8.7142e-03, 1.8674e-01, 1.2893e-01, 2.1966e-01, 1.6659e-01,\n", " -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\n", " -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01, 4.7413e-01,\n", " -2.9576e-01, 2.2703e-01, -3.9934e-01, 1.7219e-01],\n", " [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\n", " 1.5163e-01, 1.7886e-01, 2.7458e-01, 3.3433e-01, 2.0521e-01,\n", " -1.4750e-01, -1.2898e-01, -3.0942e-02, 3.7652e-02, 1.3187e-01,\n", " 9.9556e-02, 1.6104e-01, -2.2675e-02, 4.0490e-02, -4.2415e-01,\n", " 4.9033e-02, -5.0992e-02, -1.2216e-02, 1.6971e-01, 3.7812e-01,\n", " 3.2139e-01, 1.6347e-01, 6.9504e-02, 1.0657e-01, -1.5354e-01,\n", " 1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\n", " 9.1052e-02, 2.3660e-01, 2.3901e-02, -2.6365e-01, -1.5990e-01,\n", " -2.8048e-01, 5.6058e-01, 3.8168e-02, 2.1925e-01, 3.2005e-01,\n", " 1.8152e-01, 2.5467e-01, -5.4982e-03, 1.7120e-01, 1.8606e-01,\n", " -1.4660e-01, -4.4520e-01, 1.6732e-01, -4.7045e-01, -7.7974e-02,\n", " -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01, 3.0227e-01,\n", " -2.2191e-01, 2.9605e-02, -6.3017e-01, -1.4525e-01]],\n", "\n", " [[-3.4904e-01, -6.8274e-02, 5.6533e-02, -2.4772e-02, 3.2061e-01,\n", " 2.1123e-01, 1.5713e-01, -1.7263e-01, 1.5009e-01, -4.3575e-03,\n", " -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01, 1.8752e-01,\n", " 2.7129e-01, 1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\n", " 2.2746e-01, 8.3794e-02, -1.3259e-01, -1.1347e-01, 6.5971e-01,\n", " -2.3801e-01, 3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\n", " 2.3377e-01, 3.3690e-02, 3.5666e-01, -2.5705e-01, 8.0429e-02,\n", " -1.0046e-01, -3.2683e-01, 1.7847e-01, 4.9813e-02, -2.7301e-02,\n", " -2.8488e-01, 1.3049e-01, -3.1199e-01, 2.1468e-01, 4.1697e-01,\n", " -9.0697e-03, 3.0670e-01, 3.1493e-02, 1.2018e-01, 3.3610e-01,\n", " 2.8280e-02, -7.6110e-02, 2.6174e-01, -3.1480e-01, 4.1252e-03,\n", " 1.0057e-01, 3.8000e-02, -2.0712e-01, 2.7292e-01, 5.9932e-01,\n", " 1.2308e-01, 4.6245e-01, 1.7830e-02, -3.6655e-01],\n", " [-1.6559e-01, -1.4964e-01, 1.6312e-02, -7.3873e-02, 2.1183e-01,\n", " 2.4620e-01, 1.3492e-01, -2.5850e-01, 2.4197e-01, 1.5375e-01,\n", " -1.7702e-01, -3.0812e-02, -2.3033e-01, 5.7193e-02, 8.9032e-02,\n", " 2.5915e-01, 1.7881e-01, 9.2474e-02, 6.9597e-02, -5.1476e-01,\n", " 1.3662e-02, 1.7113e-02, -6.8879e-02, -7.7871e-02, 5.7157e-01,\n", " -1.9469e-01, 4.2673e-01, 1.1721e-01, -5.7496e-01, -3.3230e-01,\n", " 1.5853e-01, 1.8137e-03, 3.5060e-01, -2.1769e-01, -1.9723e-01,\n", " -1.1998e-01, -3.5563e-01, 7.3324e-02, 6.4801e-02, -6.5640e-02,\n", " -3.7750e-01, 1.6369e-01, -3.3921e-01, 3.2287e-01, 4.4207e-01,\n", " 1.0073e-01, 3.4861e-01, 8.5830e-02, 1.3543e-01, 3.6765e-01,\n", " 2.3823e-02, -7.5720e-02, 3.2633e-01, -5.0892e-01, 4.9602e-02,\n", " 2.0053e-01, -9.2345e-03, -8.3791e-03, 3.5187e-01, 4.7023e-01,\n", " 1.4153e-01, 3.2948e-01, -3.3481e-02, -4.5740e-01]],\n", "\n", " [[-4.1226e-01, 2.4138e-01, -4.2202e-01, -1.7461e-01, 5.4534e-01,\n", " -4.2925e-01, -2.6951e-01, -2.0688e-01, 2.3745e-02, -1.1517e-01,\n", " -2.2702e-01, 8.5057e-02, 1.9687e-01, 1.8045e-01, 1.4299e-01,\n", " 1.3289e-01, 2.7649e-01, 3.7999e-01, 1.7433e-01, -5.2645e-01,\n", " 1.9178e-01, 8.7907e-02, -2.5690e-01, -2.0036e-01, 6.0692e-01,\n", " -1.0853e-01, 1.2578e-01, 8.5823e-02, -4.5513e-01, -6.2062e-01,\n", " 4.1656e-01, -8.5522e-02, 4.3798e-01, -3.9802e-01, 2.4185e-01,\n", " -1.5286e-01, 1.2474e-01, -4.1761e-02, 3.6593e-01, 3.9166e-01,\n", " -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01, 3.1793e-01,\n", " -4.1171e-01, 2.4068e-01, -1.5773e-01, 8.6016e-02, 1.3797e-01,\n", " -1.8716e-01, 6.9685e-02, 4.8977e-02, -3.2609e-01, -1.2320e-01,\n", " 2.7405e-01, -3.3264e-01, 9.2106e-02, -9.5439e-02, -1.2941e-01,\n", " -6.0168e-03, -1.0422e-01, 1.7811e-01, -2.6908e-01],\n", " [-2.8426e-01, 2.0979e-01, -4.4463e-01, -2.0507e-01, 4.8820e-01,\n", " -3.8590e-01, -2.7336e-01, -2.7192e-01, 5.9091e-02, -5.6585e-02,\n", " -2.9206e-01, 1.5256e-01, 1.0575e-01, 3.3100e-01, 6.6701e-02,\n", " 1.1139e-01, 2.9278e-01, 4.2220e-01, 2.2346e-01, -5.3398e-01,\n", " 6.1949e-02, 3.1205e-02, -2.1178e-01, -1.8280e-01, 5.6443e-01,\n", " -8.3626e-02, 1.7926e-01, 2.4563e-01, -3.9010e-01, -5.8782e-01,\n", " 3.6655e-01, -1.1015e-01, 4.1846e-01, -3.7551e-01, 5.5107e-02,\n", " -1.6866e-01, 5.1045e-02, -1.0331e-01, 3.6541e-01, 3.5180e-01,\n", " -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01, 3.5780e-01,\n", " -3.3289e-01, 2.8968e-01, -1.0464e-01, 1.1147e-01, 1.5557e-01,\n", " -1.9501e-01, 6.4053e-02, 4.8930e-02, -4.1890e-01, -1.0011e-01,\n", " 3.3335e-01, -3.6849e-01, 1.6564e-01, -8.3867e-02, -1.3537e-01,\n", " -1.7237e-02, -1.4193e-01, 1.7183e-01, -3.0383e-01]],\n", "\n", " [[-4.3374e-01, 4.0180e-01, -6.3305e-01, -3.0021e-01, 7.0703e-01,\n", " -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\n", " -2.8203e-01, 2.1185e-01, 3.0355e-01, 3.5339e-01, 1.3138e-01,\n", " -1.0663e-02, 3.2603e-01, 5.0363e-01, 2.9328e-01, -5.3031e-01,\n", " 9.6803e-02, 7.1699e-02, -3.4079e-01, -2.4798e-01, 5.0690e-01,\n", " -1.7497e-02, -1.8682e-02, 2.1297e-01, -3.2107e-01, -7.1430e-01,\n", " 5.1159e-01, -2.7057e-01, 4.7796e-01, -4.5132e-01, 3.6998e-01,\n", " -2.5730e-01, 3.9020e-01, -1.3587e-01, 5.3076e-01, 5.6810e-01,\n", " -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01, 2.9033e-01,\n", " -6.0690e-01, 1.4748e-01, -2.5577e-01, 4.8167e-02, -5.2315e-02,\n", " -3.3055e-01, 5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\n", " 3.5335e-01, -5.3203e-01, 3.0482e-01, -2.6943e-01, -2.4425e-01,\n", " -8.9498e-03, -2.3237e-01, 2.3527e-01, -2.3360e-01],\n", " [-3.4616e-01, 3.8957e-01, -6.4207e-01, -3.2078e-01, 6.7713e-01,\n", " -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\n", " -3.1221e-01, 2.4949e-01, 2.4872e-01, 4.2892e-01, 7.1725e-02,\n", " -3.2751e-02, 3.2776e-01, 5.2313e-01, 3.2315e-01, -5.3379e-01,\n", " 2.7926e-02, 2.5778e-02, -3.0887e-01, -2.3681e-01, 4.8511e-01,\n", " -1.2633e-03, 1.4333e-02, 3.0642e-01, -2.8257e-01, -7.0073e-01,\n", " 4.8024e-01, -2.8092e-01, 4.6049e-01, -4.3820e-01, 2.5091e-01,\n", " -2.6511e-01, 3.3634e-01, -1.7201e-01, 5.2863e-01, 5.4009e-01,\n", " -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01, 3.2482e-01,\n", " -5.5845e-01, 1.9502e-01, -2.1119e-01, 7.4632e-02, -4.8396e-02,\n", " -3.3858e-01, 5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\n", " 3.9274e-01, -5.5639e-01, 3.3230e-01, -2.6980e-01, -2.3812e-01,\n", " -2.7959e-02, -2.4953e-01, 2.3980e-01, -2.4494e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([5, 5])\n", "dec_state: tensor([[[-0.0054, 0.1026, -0.0434, -0.0469, 0.1051, 0.1328, -0.4297,\n", " -0.0160, -0.7980, 0.2929, 0.2107, -0.0611, 0.3040, 0.2590,\n", " -0.3220, 0.2154, 0.3706, -0.1055, 0.2912, 0.2053, 0.4289,\n", " -0.1802, 0.0392, 0.2073, -0.3029, 0.3522, 0.1588, -0.2158,\n", " -0.1039, 0.2922, 0.2092, 0.1734, 0.4992, 0.3431, -0.3621,\n", " 0.1577, 0.6738, 0.1608, 0.3801, 0.2755, 0.1091, 0.2499,\n", " 0.5256, -0.1300, -0.0803, -0.1510, 0.4538, -0.2751, -0.0921,\n", " -0.1740, -0.3988, 0.0085, 0.5296, 0.0477, 0.1405, -0.1005,\n", " -0.5556, 0.4021, 0.4172, -0.3455, -0.1999, 0.0030, -0.7179,\n", " 0.6204],\n", " [ 0.0101, 0.1571, 0.0096, -0.0777, 0.1266, 0.0835, -0.3232,\n", " -0.0234, -0.7611, 0.2470, 0.1424, -0.0283, 0.2866, 0.3046,\n", " -0.2506, 0.1175, 0.2152, -0.0841, 0.2781, 0.3087, 0.4298,\n", " -0.1879, -0.1021, 0.2544, -0.1945, 0.3269, 0.1917, -0.1841,\n", " -0.3054, 0.3063, 0.2075, 0.1791, 0.5314, 0.3868, -0.4224,\n", " 0.2291, 0.7101, 0.1901, 0.4350, 0.3889, 0.1908, 0.2173,\n", " 0.5301, -0.0141, -0.1128, -0.1179, 0.3516, -0.2541, -0.0553,\n", " -0.2687, -0.3058, -0.0068, 0.5079, -0.0197, 0.0041, -0.0742,\n", " -0.5122, 0.4517, 0.3208, -0.4638, -0.1003, -0.0530, -0.7864,\n", " 0.6530]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01, 1.0857e-01, -1.9370e-01,\n", " 3.7774e-01, 2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\n", " 3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02, 4.3488e-01,\n", " -3.0141e-01, 3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\n", " -2.4359e-01, 4.2206e-02, 4.8470e-01, 6.3224e-02, -2.2614e-01,\n", " -3.1987e-01, -1.8798e-01, 3.6993e-01, -1.4684e-01, -2.3621e-01,\n", " 9.9864e-02, 3.6303e-01, -3.7656e-01, 2.8872e-01, 2.2332e-01,\n", " 2.0550e-01, 8.0081e-02, 4.3839e-01, -1.6392e-01, 4.0154e-01,\n", " -2.5501e-01, 3.4941e-01, -2.7039e-01, -3.2946e-01, 2.1274e-01,\n", " -2.3434e-01, -2.1966e-01, 9.3274e-02, -7.7401e-02, 2.1879e-01,\n", " 7.3506e-02, 2.4881e-01, -2.0310e-01, 2.3559e-01, -2.5062e-01,\n", " -2.0376e-01, -7.3991e-02, 2.4347e-01, -3.7692e-02, 2.6946e-01,\n", " -1.9928e-01, 4.4936e-01, 1.3003e-01, -2.6040e-01],\n", " [ 2.2726e-01, -1.8992e-02, 4.8106e-01, 4.0937e-02, -1.9359e-01,\n", " 4.0787e-01, -7.4492e-02, 2.5378e-01, -1.3509e-01, 1.1359e-01,\n", " -3.4980e-01, 1.5776e-01, 6.9378e-02, -1.1341e-01, 3.5061e-01,\n", " 4.8332e-01, -2.1102e-01, 9.0305e-02, -2.2642e-01, -2.2795e-01,\n", " -2.9546e-01, -3.0294e-01, 1.8674e-01, 6.4141e-02, -6.4675e-02,\n", " -1.5324e-01, -2.3329e-01, 3.4140e-01, -1.7343e-01, -2.0366e-01,\n", " 1.1172e-01, -1.4087e-01, 1.4044e-01, 2.0903e-01, -2.5586e-01,\n", " -1.2561e-01, -1.5254e-01, -8.0407e-02, 1.3476e-01, 1.0619e-01,\n", " 5.9930e-02, 3.1730e-01, 2.6906e-01, -3.8815e-01, -6.9665e-02,\n", " -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\n", " 2.2937e-01, -3.9784e-04, 2.2407e-01, -2.5350e-01, -3.3453e-01,\n", " -1.3767e-01, -1.7459e-01, 1.3520e-01, 2.4302e-01, 2.2246e-01,\n", " -4.8888e-01, -4.4384e-02, 1.1326e-01, -3.4151e-01]],\n", "\n", " [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\n", " 5.6420e-02, 3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\n", " -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01, 5.9376e-02,\n", " -1.0247e-01, 4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\n", " -2.3619e-01, 8.6265e-02, 4.6741e-01, 3.5501e-01, 1.7282e-01,\n", " -4.7347e-01, 1.4804e-01, 2.5100e-02, -1.2214e-01, -2.0864e-01,\n", " 2.3636e-01, 5.4465e-01, -1.1361e-01, 6.3898e-01, -8.9376e-02,\n", " 4.4687e-01, 1.6410e-01, 2.6329e-01, -2.0854e-01, 2.3961e-01,\n", " -1.0511e-01, 2.5216e-01, -5.3976e-01, -3.7185e-01, 2.4008e-01,\n", " -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01, 2.5457e-01,\n", " 1.2218e-02, 4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\n", " 7.5208e-02, 4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\n", " -4.9366e-01, 5.4208e-01, 1.5324e-01, 3.9655e-01],\n", " [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\n", " 1.3124e-01, 7.5505e-02, 3.4263e-03, -1.1334e-01, -3.4639e-01,\n", " -3.6638e-01, 4.9316e-02, -2.1105e-01, -2.2630e-01, 2.0947e-02,\n", " 3.3961e-01, 9.4981e-02, 1.3542e-01, -3.8337e-01, -2.0906e-01,\n", " -3.0973e-01, -1.5681e-01, 3.3510e-01, 2.7113e-01, 2.4488e-01,\n", " -3.3195e-01, 1.5274e-01, 1.5221e-01, -2.0584e-01, -2.2414e-01,\n", " 2.1737e-01, 1.8852e-01, 7.0223e-02, 5.6388e-01, -3.3851e-01,\n", " 2.6845e-01, 1.1714e-02, -1.4760e-01, 4.3259e-02, 1.0451e-01,\n", " 3.4776e-03, 3.1284e-01, -3.2982e-01, -3.1727e-01, 3.6460e-02,\n", " -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01, 5.9090e-03,\n", " 8.1017e-02, 2.7271e-01, 4.5712e-02, -2.8956e-01, -1.6350e-02,\n", " 2.0064e-02, 1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\n", " -6.5255e-01, 3.1658e-01, 1.4671e-01, 3.6424e-01]],\n", "\n", " [[-1.3597e-01, 1.9799e-01, 2.3560e-01, -1.9528e-01, -1.1069e-02,\n", " 1.1243e-01, 2.9132e-01, 4.1456e-01, -4.4696e-01, -4.3193e-01,\n", " 5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01, 1.1342e-01,\n", " 2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\n", " 2.0141e-02, 6.2393e-02, 2.0971e-02, 8.2769e-02, 4.6496e-01,\n", " -5.3510e-01, 9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\n", " 2.7095e-01, 9.9948e-02, -3.6222e-01, 2.0611e-01, 2.9721e-01,\n", " 7.5574e-02, -1.6472e-01, 3.0445e-01, -3.6575e-02, -2.3158e-01,\n", " 3.9358e-01, 1.9318e-01, -5.6557e-01, -2.6799e-01, 3.8988e-01,\n", " -1.6496e-01, -1.3708e-01, 4.8606e-02, 1.5874e-01, -8.5188e-02,\n", " -1.0096e-01, 4.2342e-01, -1.8810e-01, 1.2980e-01, -2.4798e-01,\n", " -3.8226e-01, 7.9836e-02, -3.9238e-01, -2.6510e-01, 8.0690e-02,\n", " -3.0937e-01, 5.9596e-01, 2.3998e-01, -7.1284e-02],\n", " [ 2.6165e-01, -1.4047e-01, 9.4698e-02, -2.6050e-01, -6.5844e-01,\n", " 6.9578e-02, 4.2476e-01, 3.4034e-01, 9.9292e-02, -7.7451e-02,\n", " -3.3465e-01, 2.1420e-01, -8.8270e-02, 1.8651e-01, 1.4740e-01,\n", " 5.7079e-01, 2.2680e-02, 2.0249e-01, -1.9472e-01, -2.2586e-01,\n", " -3.8880e-01, -2.1211e-01, 1.9659e-01, 2.1478e-01, -2.5531e-02,\n", " 7.8013e-02, 3.2416e-01, 4.8909e-01, 2.9591e-01, 2.0706e-01,\n", " 5.0405e-02, -3.9285e-02, 1.2387e-01, 1.4932e-01, -6.5346e-01,\n", " 1.9413e-02, -3.7684e-02, 9.7702e-02, 3.4156e-02, -2.0560e-01,\n", " 2.2834e-01, 4.8682e-01, -6.0703e-01, 7.5087e-02, 2.0022e-01,\n", " -3.6027e-03, 4.1835e-03, -3.9750e-01, 6.0365e-02, -5.0696e-02,\n", " -6.1541e-02, 5.2398e-01, 3.6723e-01, -3.4788e-01, -1.8475e-02,\n", " 9.8757e-02, -1.9024e-01, 3.2452e-02, 2.3710e-01, -1.6492e-01,\n", " -1.5253e-01, 3.6131e-01, -2.0650e-01, -4.8210e-01]],\n", "\n", " [[-9.5985e-02, 7.5312e-02, -1.6275e-02, -1.6717e-01, 1.3966e-01,\n", " 1.2510e-01, 1.7152e-01, 3.7018e-01, 1.7329e-01, -3.6036e-03,\n", " 1.0929e-01, -2.8514e-01, 1.1324e-01, -4.5108e-01, 2.3049e-01,\n", " 1.1407e-01, 5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\n", " 3.5342e-01, 1.2921e-01, -1.4113e-01, 8.1400e-02, 6.0903e-01,\n", " 1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\n", " 2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02, 3.7362e-01,\n", " 1.3951e-01, 2.5189e-01, 1.7649e-01, -3.2773e-01, -1.1435e-01,\n", " -1.6709e-01, 3.5067e-01, 9.1052e-02, -4.6298e-02, 3.1424e-01,\n", " 8.7142e-03, 1.8674e-01, 1.2893e-01, 2.1966e-01, 1.6659e-01,\n", " -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\n", " -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01, 4.7413e-01,\n", " -2.9576e-01, 2.2703e-01, -3.9934e-01, 1.7219e-01],\n", " [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\n", " 1.5163e-01, 1.7886e-01, 2.7458e-01, 3.3433e-01, 2.0521e-01,\n", " -1.4750e-01, -1.2898e-01, -3.0942e-02, 3.7652e-02, 1.3187e-01,\n", " 9.9556e-02, 1.6104e-01, -2.2675e-02, 4.0490e-02, -4.2415e-01,\n", " 4.9033e-02, -5.0992e-02, -1.2216e-02, 1.6971e-01, 3.7812e-01,\n", " 3.2139e-01, 1.6347e-01, 6.9504e-02, 1.0657e-01, -1.5354e-01,\n", " 1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\n", " 9.1052e-02, 2.3660e-01, 2.3901e-02, -2.6365e-01, -1.5990e-01,\n", " -2.8048e-01, 5.6058e-01, 3.8168e-02, 2.1925e-01, 3.2005e-01,\n", " 1.8152e-01, 2.5467e-01, -5.4982e-03, 1.7120e-01, 1.8606e-01,\n", " -1.4660e-01, -4.4520e-01, 1.6732e-01, -4.7045e-01, -7.7974e-02,\n", " -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01, 3.0227e-01,\n", " -2.2191e-01, 2.9605e-02, -6.3017e-01, -1.4525e-01]],\n", "\n", " [[-3.4904e-01, -6.8274e-02, 5.6533e-02, -2.4772e-02, 3.2061e-01,\n", " 2.1123e-01, 1.5713e-01, -1.7263e-01, 1.5009e-01, -4.3575e-03,\n", " -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01, 1.8752e-01,\n", " 2.7129e-01, 1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\n", " 2.2746e-01, 8.3794e-02, -1.3259e-01, -1.1347e-01, 6.5971e-01,\n", " -2.3801e-01, 3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\n", " 2.3377e-01, 3.3690e-02, 3.5666e-01, -2.5705e-01, 8.0429e-02,\n", " -1.0046e-01, -3.2683e-01, 1.7847e-01, 4.9813e-02, -2.7301e-02,\n", " -2.8488e-01, 1.3049e-01, -3.1199e-01, 2.1468e-01, 4.1697e-01,\n", " -9.0697e-03, 3.0670e-01, 3.1493e-02, 1.2018e-01, 3.3610e-01,\n", " 2.8280e-02, -7.6110e-02, 2.6174e-01, -3.1480e-01, 4.1252e-03,\n", " 1.0057e-01, 3.8000e-02, -2.0712e-01, 2.7292e-01, 5.9932e-01,\n", " 1.2308e-01, 4.6245e-01, 1.7830e-02, -3.6655e-01],\n", " [-1.6559e-01, -1.4964e-01, 1.6312e-02, -7.3873e-02, 2.1183e-01,\n", " 2.4620e-01, 1.3492e-01, -2.5850e-01, 2.4197e-01, 1.5375e-01,\n", " -1.7702e-01, -3.0812e-02, -2.3033e-01, 5.7193e-02, 8.9032e-02,\n", " 2.5915e-01, 1.7881e-01, 9.2474e-02, 6.9597e-02, -5.1476e-01,\n", " 1.3662e-02, 1.7113e-02, -6.8879e-02, -7.7871e-02, 5.7157e-01,\n", " -1.9469e-01, 4.2673e-01, 1.1721e-01, -5.7496e-01, -3.3230e-01,\n", " 1.5853e-01, 1.8137e-03, 3.5060e-01, -2.1769e-01, -1.9723e-01,\n", " -1.1998e-01, -3.5563e-01, 7.3324e-02, 6.4801e-02, -6.5640e-02,\n", " -3.7750e-01, 1.6369e-01, -3.3921e-01, 3.2287e-01, 4.4207e-01,\n", " 1.0073e-01, 3.4861e-01, 8.5830e-02, 1.3543e-01, 3.6765e-01,\n", " 2.3823e-02, -7.5720e-02, 3.2633e-01, -5.0892e-01, 4.9602e-02,\n", " 2.0053e-01, -9.2345e-03, -8.3791e-03, 3.5187e-01, 4.7023e-01,\n", " 1.4153e-01, 3.2948e-01, -3.3481e-02, -4.5740e-01]],\n", "\n", " [[-4.1226e-01, 2.4138e-01, -4.2202e-01, -1.7461e-01, 5.4534e-01,\n", " -4.2925e-01, -2.6951e-01, -2.0688e-01, 2.3745e-02, -1.1517e-01,\n", " -2.2702e-01, 8.5057e-02, 1.9687e-01, 1.8045e-01, 1.4299e-01,\n", " 1.3289e-01, 2.7649e-01, 3.7999e-01, 1.7433e-01, -5.2645e-01,\n", " 1.9178e-01, 8.7907e-02, -2.5690e-01, -2.0036e-01, 6.0692e-01,\n", " -1.0853e-01, 1.2578e-01, 8.5823e-02, -4.5513e-01, -6.2062e-01,\n", " 4.1656e-01, -8.5522e-02, 4.3798e-01, -3.9802e-01, 2.4185e-01,\n", " -1.5286e-01, 1.2474e-01, -4.1761e-02, 3.6593e-01, 3.9166e-01,\n", " -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01, 3.1793e-01,\n", " -4.1171e-01, 2.4068e-01, -1.5773e-01, 8.6016e-02, 1.3797e-01,\n", " -1.8716e-01, 6.9685e-02, 4.8977e-02, -3.2609e-01, -1.2320e-01,\n", " 2.7405e-01, -3.3264e-01, 9.2106e-02, -9.5439e-02, -1.2941e-01,\n", " -6.0168e-03, -1.0422e-01, 1.7811e-01, -2.6908e-01],\n", " [-2.8426e-01, 2.0979e-01, -4.4463e-01, -2.0507e-01, 4.8820e-01,\n", " -3.8590e-01, -2.7336e-01, -2.7192e-01, 5.9091e-02, -5.6585e-02,\n", " -2.9206e-01, 1.5256e-01, 1.0575e-01, 3.3100e-01, 6.6701e-02,\n", " 1.1139e-01, 2.9278e-01, 4.2220e-01, 2.2346e-01, -5.3398e-01,\n", " 6.1949e-02, 3.1205e-02, -2.1178e-01, -1.8280e-01, 5.6443e-01,\n", " -8.3626e-02, 1.7926e-01, 2.4563e-01, -3.9010e-01, -5.8782e-01,\n", " 3.6655e-01, -1.1015e-01, 4.1846e-01, -3.7551e-01, 5.5107e-02,\n", " -1.6866e-01, 5.1045e-02, -1.0331e-01, 3.6541e-01, 3.5180e-01,\n", " -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01, 3.5780e-01,\n", " -3.3289e-01, 2.8968e-01, -1.0464e-01, 1.1147e-01, 1.5557e-01,\n", " -1.9501e-01, 6.4053e-02, 4.8930e-02, -4.1890e-01, -1.0011e-01,\n", " 3.3335e-01, -3.6849e-01, 1.6564e-01, -8.3867e-02, -1.3537e-01,\n", " -1.7237e-02, -1.4193e-01, 1.7183e-01, -3.0383e-01]],\n", "\n", " [[-4.3374e-01, 4.0180e-01, -6.3305e-01, -3.0021e-01, 7.0703e-01,\n", " -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\n", " -2.8203e-01, 2.1185e-01, 3.0355e-01, 3.5339e-01, 1.3138e-01,\n", " -1.0663e-02, 3.2603e-01, 5.0363e-01, 2.9328e-01, -5.3031e-01,\n", " 9.6803e-02, 7.1699e-02, -3.4079e-01, -2.4798e-01, 5.0690e-01,\n", " -1.7497e-02, -1.8682e-02, 2.1297e-01, -3.2107e-01, -7.1430e-01,\n", " 5.1159e-01, -2.7057e-01, 4.7796e-01, -4.5132e-01, 3.6998e-01,\n", " -2.5730e-01, 3.9020e-01, -1.3587e-01, 5.3076e-01, 5.6810e-01,\n", " -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01, 2.9033e-01,\n", " -6.0690e-01, 1.4748e-01, -2.5577e-01, 4.8167e-02, -5.2315e-02,\n", " -3.3055e-01, 5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\n", " 3.5335e-01, -5.3203e-01, 3.0482e-01, -2.6943e-01, -2.4425e-01,\n", " -8.9498e-03, -2.3237e-01, 2.3527e-01, -2.3360e-01],\n", " [-3.4616e-01, 3.8957e-01, -6.4207e-01, -3.2078e-01, 6.7713e-01,\n", " -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\n", " -3.1221e-01, 2.4949e-01, 2.4872e-01, 4.2892e-01, 7.1725e-02,\n", " -3.2751e-02, 3.2776e-01, 5.2313e-01, 3.2315e-01, -5.3379e-01,\n", " 2.7926e-02, 2.5778e-02, -3.0887e-01, -2.3681e-01, 4.8511e-01,\n", " -1.2633e-03, 1.4333e-02, 3.0642e-01, -2.8257e-01, -7.0073e-01,\n", " 4.8024e-01, -2.8092e-01, 4.6049e-01, -4.3820e-01, 2.5091e-01,\n", " -2.6511e-01, 3.3634e-01, -1.7201e-01, 5.2863e-01, 5.4009e-01,\n", " -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01, 3.2482e-01,\n", " -5.5845e-01, 1.9502e-01, -2.1119e-01, 7.4632e-02, -4.8396e-02,\n", " -3.3858e-01, 5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\n", " 3.9274e-01, -5.5639e-01, 3.3230e-01, -2.6980e-01, -2.3812e-01,\n", " -2.7959e-02, -2.4953e-01, 2.3980e-01, -2.4494e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([31, 21])\n", "dec_state: tensor([[[ 0.1977, -0.3345, 0.0459, -0.3473, -0.0722, 0.0586, -0.3623,\n", " -0.2114, -0.5781, 0.4392, -0.2438, 0.2596, 0.1713, -0.1007,\n", " 0.0241, 0.2563, 0.1479, -0.1439, 0.5481, -0.1497, 0.0898,\n", " -0.1396, -0.2089, -0.0407, -0.1747, 0.0271, -0.0122, -0.3566,\n", " 0.2868, 0.0479, -0.4585, 0.1677, 0.4091, -0.1290, 0.2029,\n", " -0.0115, 0.3976, -0.0221, -0.0594, 0.3445, 0.0143, 0.2021,\n", " 0.0394, 0.0508, -0.3510, 0.4293, 0.2582, -0.2285, -0.2098,\n", " -0.4479, -0.1864, 0.2688, 0.4194, 0.2484, 0.0706, 0.0172,\n", " -0.0479, 0.0228, 0.6451, -0.4345, -0.3857, 0.0807, -0.6453,\n", " 0.7001],\n", " [ 0.2139, -0.0869, -0.0038, -0.1366, 0.0196, 0.1550, 0.0313,\n", " -0.0954, -0.6801, 0.1557, 0.2987, -0.6068, -0.1330, -0.3837,\n", " 0.4511, 0.3779, 0.0526, -0.1196, -0.0118, 0.1980, 0.5758,\n", " -0.1990, -0.5046, 0.1849, 0.0036, -0.0929, 0.1270, -0.2788,\n", " -0.3777, -0.3418, -0.4740, 0.1043, -0.0798, -0.2723, -0.1207,\n", " -0.3713, 0.5358, 0.2067, -0.0101, -0.0575, -0.0231, 0.1175,\n", " 0.6304, 0.1753, -0.1738, -0.2059, -0.3161, -0.1154, -0.2476,\n", " -0.1483, -0.0196, 0.1435, 0.2659, 0.3608, 0.2672, -0.3410,\n", " -0.5395, 0.1800, 0.5081, -0.4818, -0.2837, 0.0526, -0.2003,\n", " 0.3075]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01, 1.0857e-01, -1.9370e-01,\n", " 3.7774e-01, 2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\n", " 3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02, 4.3488e-01,\n", " -3.0141e-01, 3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\n", " -2.4359e-01, 4.2206e-02, 4.8470e-01, 6.3224e-02, -2.2614e-01,\n", " -3.1987e-01, -1.8798e-01, 3.6993e-01, -1.4684e-01, -2.3621e-01,\n", " 9.9864e-02, 3.6303e-01, -3.7656e-01, 2.8872e-01, 2.2332e-01,\n", " 2.0550e-01, 8.0081e-02, 4.3839e-01, -1.6392e-01, 4.0154e-01,\n", " -2.5501e-01, 3.4941e-01, -2.7039e-01, -3.2946e-01, 2.1274e-01,\n", " -2.3434e-01, -2.1966e-01, 9.3274e-02, -7.7401e-02, 2.1879e-01,\n", " 7.3506e-02, 2.4881e-01, -2.0310e-01, 2.3559e-01, -2.5062e-01,\n", " -2.0376e-01, -7.3991e-02, 2.4347e-01, -3.7692e-02, 2.6946e-01,\n", " -1.9928e-01, 4.4936e-01, 1.3003e-01, -2.6040e-01],\n", " [ 2.2726e-01, -1.8992e-02, 4.8106e-01, 4.0937e-02, -1.9359e-01,\n", " 4.0787e-01, -7.4492e-02, 2.5378e-01, -1.3509e-01, 1.1359e-01,\n", " -3.4980e-01, 1.5776e-01, 6.9378e-02, -1.1341e-01, 3.5061e-01,\n", " 4.8332e-01, -2.1102e-01, 9.0305e-02, -2.2642e-01, -2.2795e-01,\n", " -2.9546e-01, -3.0294e-01, 1.8674e-01, 6.4141e-02, -6.4675e-02,\n", " -1.5324e-01, -2.3329e-01, 3.4140e-01, -1.7343e-01, -2.0366e-01,\n", " 1.1172e-01, -1.4087e-01, 1.4044e-01, 2.0903e-01, -2.5586e-01,\n", " -1.2561e-01, -1.5254e-01, -8.0407e-02, 1.3476e-01, 1.0619e-01,\n", " 5.9930e-02, 3.1730e-01, 2.6906e-01, -3.8815e-01, -6.9665e-02,\n", " -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\n", " 2.2937e-01, -3.9784e-04, 2.2407e-01, -2.5350e-01, -3.3453e-01,\n", " -1.3767e-01, -1.7459e-01, 1.3520e-01, 2.4302e-01, 2.2246e-01,\n", " -4.8888e-01, -4.4384e-02, 1.1326e-01, -3.4151e-01]],\n", "\n", " [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\n", " 5.6420e-02, 3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\n", " -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01, 5.9376e-02,\n", " -1.0247e-01, 4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\n", " -2.3619e-01, 8.6265e-02, 4.6741e-01, 3.5501e-01, 1.7282e-01,\n", " -4.7347e-01, 1.4804e-01, 2.5100e-02, -1.2214e-01, -2.0864e-01,\n", " 2.3636e-01, 5.4465e-01, -1.1361e-01, 6.3898e-01, -8.9376e-02,\n", " 4.4687e-01, 1.6410e-01, 2.6329e-01, -2.0854e-01, 2.3961e-01,\n", " -1.0511e-01, 2.5216e-01, -5.3976e-01, -3.7185e-01, 2.4008e-01,\n", " -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01, 2.5457e-01,\n", " 1.2218e-02, 4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\n", " 7.5208e-02, 4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\n", " -4.9366e-01, 5.4208e-01, 1.5324e-01, 3.9655e-01],\n", " [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\n", " 1.3124e-01, 7.5505e-02, 3.4263e-03, -1.1334e-01, -3.4639e-01,\n", " -3.6638e-01, 4.9316e-02, -2.1105e-01, -2.2630e-01, 2.0947e-02,\n", " 3.3961e-01, 9.4981e-02, 1.3542e-01, -3.8337e-01, -2.0906e-01,\n", " -3.0973e-01, -1.5681e-01, 3.3510e-01, 2.7113e-01, 2.4488e-01,\n", " -3.3195e-01, 1.5274e-01, 1.5221e-01, -2.0584e-01, -2.2414e-01,\n", " 2.1737e-01, 1.8852e-01, 7.0223e-02, 5.6388e-01, -3.3851e-01,\n", " 2.6845e-01, 1.1714e-02, -1.4760e-01, 4.3259e-02, 1.0451e-01,\n", " 3.4776e-03, 3.1284e-01, -3.2982e-01, -3.1727e-01, 3.6460e-02,\n", " -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01, 5.9090e-03,\n", " 8.1017e-02, 2.7271e-01, 4.5712e-02, -2.8956e-01, -1.6350e-02,\n", " 2.0064e-02, 1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\n", " -6.5255e-01, 3.1658e-01, 1.4671e-01, 3.6424e-01]],\n", "\n", " [[-1.3597e-01, 1.9799e-01, 2.3560e-01, -1.9528e-01, -1.1069e-02,\n", " 1.1243e-01, 2.9132e-01, 4.1456e-01, -4.4696e-01, -4.3193e-01,\n", " 5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01, 1.1342e-01,\n", " 2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\n", " 2.0141e-02, 6.2393e-02, 2.0971e-02, 8.2769e-02, 4.6496e-01,\n", " -5.3510e-01, 9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\n", " 2.7095e-01, 9.9948e-02, -3.6222e-01, 2.0611e-01, 2.9721e-01,\n", " 7.5574e-02, -1.6472e-01, 3.0445e-01, -3.6575e-02, -2.3158e-01,\n", " 3.9358e-01, 1.9318e-01, -5.6557e-01, -2.6799e-01, 3.8988e-01,\n", " -1.6496e-01, -1.3708e-01, 4.8606e-02, 1.5874e-01, -8.5188e-02,\n", " -1.0096e-01, 4.2342e-01, -1.8810e-01, 1.2980e-01, -2.4798e-01,\n", " -3.8226e-01, 7.9836e-02, -3.9238e-01, -2.6510e-01, 8.0690e-02,\n", " -3.0937e-01, 5.9596e-01, 2.3998e-01, -7.1284e-02],\n", " [ 2.6165e-01, -1.4047e-01, 9.4698e-02, -2.6050e-01, -6.5844e-01,\n", " 6.9578e-02, 4.2476e-01, 3.4034e-01, 9.9292e-02, -7.7451e-02,\n", " -3.3465e-01, 2.1420e-01, -8.8270e-02, 1.8651e-01, 1.4740e-01,\n", " 5.7079e-01, 2.2680e-02, 2.0249e-01, -1.9472e-01, -2.2586e-01,\n", " -3.8880e-01, -2.1211e-01, 1.9659e-01, 2.1478e-01, -2.5531e-02,\n", " 7.8013e-02, 3.2416e-01, 4.8909e-01, 2.9591e-01, 2.0706e-01,\n", " 5.0405e-02, -3.9285e-02, 1.2387e-01, 1.4932e-01, -6.5346e-01,\n", " 1.9413e-02, -3.7684e-02, 9.7702e-02, 3.4156e-02, -2.0560e-01,\n", " 2.2834e-01, 4.8682e-01, -6.0703e-01, 7.5087e-02, 2.0022e-01,\n", " -3.6027e-03, 4.1835e-03, -3.9750e-01, 6.0365e-02, -5.0696e-02,\n", " -6.1541e-02, 5.2398e-01, 3.6723e-01, -3.4788e-01, -1.8475e-02,\n", " 9.8757e-02, -1.9024e-01, 3.2452e-02, 2.3710e-01, -1.6492e-01,\n", " -1.5253e-01, 3.6131e-01, -2.0650e-01, -4.8210e-01]],\n", "\n", " [[-9.5985e-02, 7.5312e-02, -1.6275e-02, -1.6717e-01, 1.3966e-01,\n", " 1.2510e-01, 1.7152e-01, 3.7018e-01, 1.7329e-01, -3.6036e-03,\n", " 1.0929e-01, -2.8514e-01, 1.1324e-01, -4.5108e-01, 2.3049e-01,\n", " 1.1407e-01, 5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\n", " 3.5342e-01, 1.2921e-01, -1.4113e-01, 8.1400e-02, 6.0903e-01,\n", " 1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\n", " 2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02, 3.7362e-01,\n", " 1.3951e-01, 2.5189e-01, 1.7649e-01, -3.2773e-01, -1.1435e-01,\n", " -1.6709e-01, 3.5067e-01, 9.1052e-02, -4.6298e-02, 3.1424e-01,\n", " 8.7142e-03, 1.8674e-01, 1.2893e-01, 2.1966e-01, 1.6659e-01,\n", " -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\n", " -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01, 4.7413e-01,\n", " -2.9576e-01, 2.2703e-01, -3.9934e-01, 1.7219e-01],\n", " [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\n", " 1.5163e-01, 1.7886e-01, 2.7458e-01, 3.3433e-01, 2.0521e-01,\n", " -1.4750e-01, -1.2898e-01, -3.0942e-02, 3.7652e-02, 1.3187e-01,\n", " 9.9556e-02, 1.6104e-01, -2.2675e-02, 4.0490e-02, -4.2415e-01,\n", " 4.9033e-02, -5.0992e-02, -1.2216e-02, 1.6971e-01, 3.7812e-01,\n", " 3.2139e-01, 1.6347e-01, 6.9504e-02, 1.0657e-01, -1.5354e-01,\n", " 1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\n", " 9.1052e-02, 2.3660e-01, 2.3901e-02, -2.6365e-01, -1.5990e-01,\n", " -2.8048e-01, 5.6058e-01, 3.8168e-02, 2.1925e-01, 3.2005e-01,\n", " 1.8152e-01, 2.5467e-01, -5.4982e-03, 1.7120e-01, 1.8606e-01,\n", " -1.4660e-01, -4.4520e-01, 1.6732e-01, -4.7045e-01, -7.7974e-02,\n", " -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01, 3.0227e-01,\n", " -2.2191e-01, 2.9605e-02, -6.3017e-01, -1.4525e-01]],\n", "\n", " [[-3.4904e-01, -6.8274e-02, 5.6533e-02, -2.4772e-02, 3.2061e-01,\n", " 2.1123e-01, 1.5713e-01, -1.7263e-01, 1.5009e-01, -4.3575e-03,\n", " -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01, 1.8752e-01,\n", " 2.7129e-01, 1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\n", " 2.2746e-01, 8.3794e-02, -1.3259e-01, -1.1347e-01, 6.5971e-01,\n", " -2.3801e-01, 3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\n", " 2.3377e-01, 3.3690e-02, 3.5666e-01, -2.5705e-01, 8.0429e-02,\n", " -1.0046e-01, -3.2683e-01, 1.7847e-01, 4.9813e-02, -2.7301e-02,\n", " -2.8488e-01, 1.3049e-01, -3.1199e-01, 2.1468e-01, 4.1697e-01,\n", " -9.0697e-03, 3.0670e-01, 3.1493e-02, 1.2018e-01, 3.3610e-01,\n", " 2.8280e-02, -7.6110e-02, 2.6174e-01, -3.1480e-01, 4.1252e-03,\n", " 1.0057e-01, 3.8000e-02, -2.0712e-01, 2.7292e-01, 5.9932e-01,\n", " 1.2308e-01, 4.6245e-01, 1.7830e-02, -3.6655e-01],\n", " [-1.6559e-01, -1.4964e-01, 1.6312e-02, -7.3873e-02, 2.1183e-01,\n", " 2.4620e-01, 1.3492e-01, -2.5850e-01, 2.4197e-01, 1.5375e-01,\n", " -1.7702e-01, -3.0812e-02, -2.3033e-01, 5.7193e-02, 8.9032e-02,\n", " 2.5915e-01, 1.7881e-01, 9.2474e-02, 6.9597e-02, -5.1476e-01,\n", " 1.3662e-02, 1.7113e-02, -6.8879e-02, -7.7871e-02, 5.7157e-01,\n", " -1.9469e-01, 4.2673e-01, 1.1721e-01, -5.7496e-01, -3.3230e-01,\n", " 1.5853e-01, 1.8137e-03, 3.5060e-01, -2.1769e-01, -1.9723e-01,\n", " -1.1998e-01, -3.5563e-01, 7.3324e-02, 6.4801e-02, -6.5640e-02,\n", " -3.7750e-01, 1.6369e-01, -3.3921e-01, 3.2287e-01, 4.4207e-01,\n", " 1.0073e-01, 3.4861e-01, 8.5830e-02, 1.3543e-01, 3.6765e-01,\n", " 2.3823e-02, -7.5720e-02, 3.2633e-01, -5.0892e-01, 4.9602e-02,\n", " 2.0053e-01, -9.2345e-03, -8.3791e-03, 3.5187e-01, 4.7023e-01,\n", " 1.4153e-01, 3.2948e-01, -3.3481e-02, -4.5740e-01]],\n", "\n", " [[-4.1226e-01, 2.4138e-01, -4.2202e-01, -1.7461e-01, 5.4534e-01,\n", " -4.2925e-01, -2.6951e-01, -2.0688e-01, 2.3745e-02, -1.1517e-01,\n", " -2.2702e-01, 8.5057e-02, 1.9687e-01, 1.8045e-01, 1.4299e-01,\n", " 1.3289e-01, 2.7649e-01, 3.7999e-01, 1.7433e-01, -5.2645e-01,\n", " 1.9178e-01, 8.7907e-02, -2.5690e-01, -2.0036e-01, 6.0692e-01,\n", " -1.0853e-01, 1.2578e-01, 8.5823e-02, -4.5513e-01, -6.2062e-01,\n", " 4.1656e-01, -8.5522e-02, 4.3798e-01, -3.9802e-01, 2.4185e-01,\n", " -1.5286e-01, 1.2474e-01, -4.1761e-02, 3.6593e-01, 3.9166e-01,\n", " -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01, 3.1793e-01,\n", " -4.1171e-01, 2.4068e-01, -1.5773e-01, 8.6016e-02, 1.3797e-01,\n", " -1.8716e-01, 6.9685e-02, 4.8977e-02, -3.2609e-01, -1.2320e-01,\n", " 2.7405e-01, -3.3264e-01, 9.2106e-02, -9.5439e-02, -1.2941e-01,\n", " -6.0168e-03, -1.0422e-01, 1.7811e-01, -2.6908e-01],\n", " [-2.8426e-01, 2.0979e-01, -4.4463e-01, -2.0507e-01, 4.8820e-01,\n", " -3.8590e-01, -2.7336e-01, -2.7192e-01, 5.9091e-02, -5.6585e-02,\n", " -2.9206e-01, 1.5256e-01, 1.0575e-01, 3.3100e-01, 6.6701e-02,\n", " 1.1139e-01, 2.9278e-01, 4.2220e-01, 2.2346e-01, -5.3398e-01,\n", " 6.1949e-02, 3.1205e-02, -2.1178e-01, -1.8280e-01, 5.6443e-01,\n", " -8.3626e-02, 1.7926e-01, 2.4563e-01, -3.9010e-01, -5.8782e-01,\n", " 3.6655e-01, -1.1015e-01, 4.1846e-01, -3.7551e-01, 5.5107e-02,\n", " -1.6866e-01, 5.1045e-02, -1.0331e-01, 3.6541e-01, 3.5180e-01,\n", " -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01, 3.5780e-01,\n", " -3.3289e-01, 2.8968e-01, -1.0464e-01, 1.1147e-01, 1.5557e-01,\n", " -1.9501e-01, 6.4053e-02, 4.8930e-02, -4.1890e-01, -1.0011e-01,\n", " 3.3335e-01, -3.6849e-01, 1.6564e-01, -8.3867e-02, -1.3537e-01,\n", " -1.7237e-02, -1.4193e-01, 1.7183e-01, -3.0383e-01]],\n", "\n", " [[-4.3374e-01, 4.0180e-01, -6.3305e-01, -3.0021e-01, 7.0703e-01,\n", " -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\n", " -2.8203e-01, 2.1185e-01, 3.0355e-01, 3.5339e-01, 1.3138e-01,\n", " -1.0663e-02, 3.2603e-01, 5.0363e-01, 2.9328e-01, -5.3031e-01,\n", " 9.6803e-02, 7.1699e-02, -3.4079e-01, -2.4798e-01, 5.0690e-01,\n", " -1.7497e-02, -1.8682e-02, 2.1297e-01, -3.2107e-01, -7.1430e-01,\n", " 5.1159e-01, -2.7057e-01, 4.7796e-01, -4.5132e-01, 3.6998e-01,\n", " -2.5730e-01, 3.9020e-01, -1.3587e-01, 5.3076e-01, 5.6810e-01,\n", " -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01, 2.9033e-01,\n", " -6.0690e-01, 1.4748e-01, -2.5577e-01, 4.8167e-02, -5.2315e-02,\n", " -3.3055e-01, 5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\n", " 3.5335e-01, -5.3203e-01, 3.0482e-01, -2.6943e-01, -2.4425e-01,\n", " -8.9498e-03, -2.3237e-01, 2.3527e-01, -2.3360e-01],\n", " [-3.4616e-01, 3.8957e-01, -6.4207e-01, -3.2078e-01, 6.7713e-01,\n", " -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\n", " -3.1221e-01, 2.4949e-01, 2.4872e-01, 4.2892e-01, 7.1725e-02,\n", " -3.2751e-02, 3.2776e-01, 5.2313e-01, 3.2315e-01, -5.3379e-01,\n", " 2.7926e-02, 2.5778e-02, -3.0887e-01, -2.3681e-01, 4.8511e-01,\n", " -1.2633e-03, 1.4333e-02, 3.0642e-01, -2.8257e-01, -7.0073e-01,\n", " 4.8024e-01, -2.8092e-01, 4.6049e-01, -4.3820e-01, 2.5091e-01,\n", " -2.6511e-01, 3.3634e-01, -1.7201e-01, 5.2863e-01, 5.4009e-01,\n", " -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01, 3.2482e-01,\n", " -5.5845e-01, 1.9502e-01, -2.1119e-01, 7.4632e-02, -4.8396e-02,\n", " -3.3858e-01, 5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\n", " 3.9274e-01, -5.5639e-01, 3.3230e-01, -2.6980e-01, -2.3812e-01,\n", " -2.7959e-02, -2.4953e-01, 2.3980e-01, -2.4494e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([3, 3])\n", "dec_state: tensor([[[ 6.6079e-01, -1.7261e-01, -1.8877e-01, -3.4449e-01, 1.6773e-01,\n", " 3.4798e-01, -3.0880e-01, -3.1017e-01, -6.2126e-01, 1.0526e-01,\n", " -4.8530e-02, 1.5068e-02, 3.2931e-01, 1.4701e-01, -3.3345e-01,\n", " 3.2637e-01, 4.4804e-01, -1.7937e-01, 1.8021e-01, 4.5965e-01,\n", " -5.4428e-02, -3.3898e-01, -3.0833e-02, -1.3361e-01, 1.9923e-01,\n", " 1.3078e-01, 2.8863e-01, -6.0957e-01, 2.3793e-01, -3.8904e-01,\n", " -5.3949e-01, -1.1579e-01, 4.3756e-02, -3.0934e-01, 5.3287e-01,\n", " -1.0642e-01, 5.6540e-01, 3.2564e-04, 1.5540e-01, 3.0736e-01,\n", " 2.4142e-02, 3.0227e-02, -3.1129e-01, 8.0395e-03, -6.0605e-01,\n", " 1.9338e-01, 5.4653e-01, 9.5703e-02, -6.2977e-01, -2.0631e-01,\n", " -3.3298e-01, 4.3262e-01, -2.8399e-01, 1.5005e-01, 2.8772e-01,\n", " 5.5689e-02, -2.3606e-01, -1.2487e-01, 3.3709e-01, -1.7572e-01,\n", " -5.2282e-01, -3.4881e-02, -7.2568e-01, 4.8172e-02],\n", " [ 6.6418e-01, 1.5532e-02, -1.7534e-01, -2.5712e-01, 2.5769e-01,\n", " 4.0462e-01, 4.0224e-02, -2.2657e-01, -6.9469e-01, 1.2138e-02,\n", " 3.5377e-02, -2.9765e-01, 1.2821e-01, 6.9529e-02, -9.1919e-03,\n", " 2.9896e-01, 4.0232e-01, -1.2781e-01, 4.3743e-03, 5.1587e-01,\n", " 2.7841e-01, -3.7483e-01, -3.7581e-01, 6.2050e-02, 3.3528e-01,\n", " -5.6043e-04, 3.9005e-01, -5.3306e-01, -2.1476e-01, -5.8883e-01,\n", " -5.6921e-01, -1.0593e-01, -2.1705e-02, -3.3054e-01, 3.7458e-01,\n", " -1.6155e-01, 6.6227e-01, 1.5426e-01, 2.1723e-01, 1.3707e-01,\n", " 8.2191e-02, 3.5002e-02, -1.2795e-01, 1.8722e-01, -4.8976e-01,\n", " -4.0462e-02, 2.1277e-01, 1.5929e-01, -5.9575e-01, -1.4006e-01,\n", " -1.8589e-01, 2.9119e-01, -2.9289e-01, 1.7901e-01, 1.7838e-01,\n", " -9.1743e-02, -4.2411e-01, -4.0878e-02, 1.9904e-01, -3.0361e-01,\n", " -4.3694e-01, -1.9599e-01, -4.5925e-01, -1.4229e-02]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01, 1.0857e-01, -1.9370e-01,\n", " 3.7774e-01, 2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\n", " 3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02, 4.3488e-01,\n", " -3.0141e-01, 3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\n", " -2.4359e-01, 4.2206e-02, 4.8470e-01, 6.3224e-02, -2.2614e-01,\n", " -3.1987e-01, -1.8798e-01, 3.6993e-01, -1.4684e-01, -2.3621e-01,\n", " 9.9864e-02, 3.6303e-01, -3.7656e-01, 2.8872e-01, 2.2332e-01,\n", " 2.0550e-01, 8.0081e-02, 4.3839e-01, -1.6392e-01, 4.0154e-01,\n", " -2.5501e-01, 3.4941e-01, -2.7039e-01, -3.2946e-01, 2.1274e-01,\n", " -2.3434e-01, -2.1966e-01, 9.3274e-02, -7.7401e-02, 2.1879e-01,\n", " 7.3506e-02, 2.4881e-01, -2.0310e-01, 2.3559e-01, -2.5062e-01,\n", " -2.0376e-01, -7.3991e-02, 2.4347e-01, -3.7692e-02, 2.6946e-01,\n", " -1.9928e-01, 4.4936e-01, 1.3003e-01, -2.6040e-01],\n", " [ 2.2726e-01, -1.8992e-02, 4.8106e-01, 4.0937e-02, -1.9359e-01,\n", " 4.0787e-01, -7.4492e-02, 2.5378e-01, -1.3509e-01, 1.1359e-01,\n", " -3.4980e-01, 1.5776e-01, 6.9378e-02, -1.1341e-01, 3.5061e-01,\n", " 4.8332e-01, -2.1102e-01, 9.0305e-02, -2.2642e-01, -2.2795e-01,\n", " -2.9546e-01, -3.0294e-01, 1.8674e-01, 6.4141e-02, -6.4675e-02,\n", " -1.5324e-01, -2.3329e-01, 3.4140e-01, -1.7343e-01, -2.0366e-01,\n", " 1.1172e-01, -1.4087e-01, 1.4044e-01, 2.0903e-01, -2.5586e-01,\n", " -1.2561e-01, -1.5254e-01, -8.0407e-02, 1.3476e-01, 1.0619e-01,\n", " 5.9930e-02, 3.1730e-01, 2.6906e-01, -3.8815e-01, -6.9665e-02,\n", " -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\n", " 2.2937e-01, -3.9784e-04, 2.2407e-01, -2.5350e-01, -3.3453e-01,\n", " -1.3767e-01, -1.7459e-01, 1.3520e-01, 2.4302e-01, 2.2246e-01,\n", " -4.8888e-01, -4.4384e-02, 1.1326e-01, -3.4151e-01]],\n", "\n", " [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\n", " 5.6420e-02, 3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\n", " -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01, 5.9376e-02,\n", " -1.0247e-01, 4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\n", " -2.3619e-01, 8.6265e-02, 4.6741e-01, 3.5501e-01, 1.7282e-01,\n", " -4.7347e-01, 1.4804e-01, 2.5100e-02, -1.2214e-01, -2.0864e-01,\n", " 2.3636e-01, 5.4465e-01, -1.1361e-01, 6.3898e-01, -8.9376e-02,\n", " 4.4687e-01, 1.6410e-01, 2.6329e-01, -2.0854e-01, 2.3961e-01,\n", " -1.0511e-01, 2.5216e-01, -5.3976e-01, -3.7185e-01, 2.4008e-01,\n", " -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01, 2.5457e-01,\n", " 1.2218e-02, 4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\n", " 7.5208e-02, 4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\n", " -4.9366e-01, 5.4208e-01, 1.5324e-01, 3.9655e-01],\n", " [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\n", " 1.3124e-01, 7.5505e-02, 3.4263e-03, -1.1334e-01, -3.4639e-01,\n", " -3.6638e-01, 4.9316e-02, -2.1105e-01, -2.2630e-01, 2.0947e-02,\n", " 3.3961e-01, 9.4981e-02, 1.3542e-01, -3.8337e-01, -2.0906e-01,\n", " -3.0973e-01, -1.5681e-01, 3.3510e-01, 2.7113e-01, 2.4488e-01,\n", " -3.3195e-01, 1.5274e-01, 1.5221e-01, -2.0584e-01, -2.2414e-01,\n", " 2.1737e-01, 1.8852e-01, 7.0223e-02, 5.6388e-01, -3.3851e-01,\n", " 2.6845e-01, 1.1714e-02, -1.4760e-01, 4.3259e-02, 1.0451e-01,\n", " 3.4776e-03, 3.1284e-01, -3.2982e-01, -3.1727e-01, 3.6460e-02,\n", " -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01, 5.9090e-03,\n", " 8.1017e-02, 2.7271e-01, 4.5712e-02, -2.8956e-01, -1.6350e-02,\n", " 2.0064e-02, 1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\n", " -6.5255e-01, 3.1658e-01, 1.4671e-01, 3.6424e-01]],\n", "\n", " [[-1.3597e-01, 1.9799e-01, 2.3560e-01, -1.9528e-01, -1.1069e-02,\n", " 1.1243e-01, 2.9132e-01, 4.1456e-01, -4.4696e-01, -4.3193e-01,\n", " 5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01, 1.1342e-01,\n", " 2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\n", " 2.0141e-02, 6.2393e-02, 2.0971e-02, 8.2769e-02, 4.6496e-01,\n", " -5.3510e-01, 9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\n", " 2.7095e-01, 9.9948e-02, -3.6222e-01, 2.0611e-01, 2.9721e-01,\n", " 7.5574e-02, -1.6472e-01, 3.0445e-01, -3.6575e-02, -2.3158e-01,\n", " 3.9358e-01, 1.9318e-01, -5.6557e-01, -2.6799e-01, 3.8988e-01,\n", " -1.6496e-01, -1.3708e-01, 4.8606e-02, 1.5874e-01, -8.5188e-02,\n", " -1.0096e-01, 4.2342e-01, -1.8810e-01, 1.2980e-01, -2.4798e-01,\n", " -3.8226e-01, 7.9836e-02, -3.9238e-01, -2.6510e-01, 8.0690e-02,\n", " -3.0937e-01, 5.9596e-01, 2.3998e-01, -7.1284e-02],\n", " [ 2.6165e-01, -1.4047e-01, 9.4698e-02, -2.6050e-01, -6.5844e-01,\n", " 6.9578e-02, 4.2476e-01, 3.4034e-01, 9.9292e-02, -7.7451e-02,\n", " -3.3465e-01, 2.1420e-01, -8.8270e-02, 1.8651e-01, 1.4740e-01,\n", " 5.7079e-01, 2.2680e-02, 2.0249e-01, -1.9472e-01, -2.2586e-01,\n", " -3.8880e-01, -2.1211e-01, 1.9659e-01, 2.1478e-01, -2.5531e-02,\n", " 7.8013e-02, 3.2416e-01, 4.8909e-01, 2.9591e-01, 2.0706e-01,\n", " 5.0405e-02, -3.9285e-02, 1.2387e-01, 1.4932e-01, -6.5346e-01,\n", " 1.9413e-02, -3.7684e-02, 9.7702e-02, 3.4156e-02, -2.0560e-01,\n", " 2.2834e-01, 4.8682e-01, -6.0703e-01, 7.5087e-02, 2.0022e-01,\n", " -3.6027e-03, 4.1835e-03, -3.9750e-01, 6.0365e-02, -5.0696e-02,\n", " -6.1541e-02, 5.2398e-01, 3.6723e-01, -3.4788e-01, -1.8475e-02,\n", " 9.8757e-02, -1.9024e-01, 3.2452e-02, 2.3710e-01, -1.6492e-01,\n", " -1.5253e-01, 3.6131e-01, -2.0650e-01, -4.8210e-01]],\n", "\n", " [[-9.5985e-02, 7.5312e-02, -1.6275e-02, -1.6717e-01, 1.3966e-01,\n", " 1.2510e-01, 1.7152e-01, 3.7018e-01, 1.7329e-01, -3.6036e-03,\n", " 1.0929e-01, -2.8514e-01, 1.1324e-01, -4.5108e-01, 2.3049e-01,\n", " 1.1407e-01, 5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\n", " 3.5342e-01, 1.2921e-01, -1.4113e-01, 8.1400e-02, 6.0903e-01,\n", " 1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\n", " 2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02, 3.7362e-01,\n", " 1.3951e-01, 2.5189e-01, 1.7649e-01, -3.2773e-01, -1.1435e-01,\n", " -1.6709e-01, 3.5067e-01, 9.1052e-02, -4.6298e-02, 3.1424e-01,\n", " 8.7142e-03, 1.8674e-01, 1.2893e-01, 2.1966e-01, 1.6659e-01,\n", " -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\n", " -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01, 4.7413e-01,\n", " -2.9576e-01, 2.2703e-01, -3.9934e-01, 1.7219e-01],\n", " [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\n", " 1.5163e-01, 1.7886e-01, 2.7458e-01, 3.3433e-01, 2.0521e-01,\n", " -1.4750e-01, -1.2898e-01, -3.0942e-02, 3.7652e-02, 1.3187e-01,\n", " 9.9556e-02, 1.6104e-01, -2.2675e-02, 4.0490e-02, -4.2415e-01,\n", " 4.9033e-02, -5.0992e-02, -1.2216e-02, 1.6971e-01, 3.7812e-01,\n", " 3.2139e-01, 1.6347e-01, 6.9504e-02, 1.0657e-01, -1.5354e-01,\n", " 1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\n", " 9.1052e-02, 2.3660e-01, 2.3901e-02, -2.6365e-01, -1.5990e-01,\n", " -2.8048e-01, 5.6058e-01, 3.8168e-02, 2.1925e-01, 3.2005e-01,\n", " 1.8152e-01, 2.5467e-01, -5.4982e-03, 1.7120e-01, 1.8606e-01,\n", " -1.4660e-01, -4.4520e-01, 1.6732e-01, -4.7045e-01, -7.7974e-02,\n", " -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01, 3.0227e-01,\n", " -2.2191e-01, 2.9605e-02, -6.3017e-01, -1.4525e-01]],\n", "\n", " [[-3.4904e-01, -6.8274e-02, 5.6533e-02, -2.4772e-02, 3.2061e-01,\n", " 2.1123e-01, 1.5713e-01, -1.7263e-01, 1.5009e-01, -4.3575e-03,\n", " -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01, 1.8752e-01,\n", " 2.7129e-01, 1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\n", " 2.2746e-01, 8.3794e-02, -1.3259e-01, -1.1347e-01, 6.5971e-01,\n", " -2.3801e-01, 3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\n", " 2.3377e-01, 3.3690e-02, 3.5666e-01, -2.5705e-01, 8.0429e-02,\n", " -1.0046e-01, -3.2683e-01, 1.7847e-01, 4.9813e-02, -2.7301e-02,\n", " -2.8488e-01, 1.3049e-01, -3.1199e-01, 2.1468e-01, 4.1697e-01,\n", " -9.0697e-03, 3.0670e-01, 3.1493e-02, 1.2018e-01, 3.3610e-01,\n", " 2.8280e-02, -7.6110e-02, 2.6174e-01, -3.1480e-01, 4.1252e-03,\n", " 1.0057e-01, 3.8000e-02, -2.0712e-01, 2.7292e-01, 5.9932e-01,\n", " 1.2308e-01, 4.6245e-01, 1.7830e-02, -3.6655e-01],\n", " [-1.6559e-01, -1.4964e-01, 1.6312e-02, -7.3873e-02, 2.1183e-01,\n", " 2.4620e-01, 1.3492e-01, -2.5850e-01, 2.4197e-01, 1.5375e-01,\n", " -1.7702e-01, -3.0812e-02, -2.3033e-01, 5.7193e-02, 8.9032e-02,\n", " 2.5915e-01, 1.7881e-01, 9.2474e-02, 6.9597e-02, -5.1476e-01,\n", " 1.3662e-02, 1.7113e-02, -6.8879e-02, -7.7871e-02, 5.7157e-01,\n", " -1.9469e-01, 4.2673e-01, 1.1721e-01, -5.7496e-01, -3.3230e-01,\n", " 1.5853e-01, 1.8137e-03, 3.5060e-01, -2.1769e-01, -1.9723e-01,\n", " -1.1998e-01, -3.5563e-01, 7.3324e-02, 6.4801e-02, -6.5640e-02,\n", " -3.7750e-01, 1.6369e-01, -3.3921e-01, 3.2287e-01, 4.4207e-01,\n", " 1.0073e-01, 3.4861e-01, 8.5830e-02, 1.3543e-01, 3.6765e-01,\n", " 2.3823e-02, -7.5720e-02, 3.2633e-01, -5.0892e-01, 4.9602e-02,\n", " 2.0053e-01, -9.2345e-03, -8.3791e-03, 3.5187e-01, 4.7023e-01,\n", " 1.4153e-01, 3.2948e-01, -3.3481e-02, -4.5740e-01]],\n", "\n", " [[-4.1226e-01, 2.4138e-01, -4.2202e-01, -1.7461e-01, 5.4534e-01,\n", " -4.2925e-01, -2.6951e-01, -2.0688e-01, 2.3745e-02, -1.1517e-01,\n", " -2.2702e-01, 8.5057e-02, 1.9687e-01, 1.8045e-01, 1.4299e-01,\n", " 1.3289e-01, 2.7649e-01, 3.7999e-01, 1.7433e-01, -5.2645e-01,\n", " 1.9178e-01, 8.7907e-02, -2.5690e-01, -2.0036e-01, 6.0692e-01,\n", " -1.0853e-01, 1.2578e-01, 8.5823e-02, -4.5513e-01, -6.2062e-01,\n", " 4.1656e-01, -8.5522e-02, 4.3798e-01, -3.9802e-01, 2.4185e-01,\n", " -1.5286e-01, 1.2474e-01, -4.1761e-02, 3.6593e-01, 3.9166e-01,\n", " -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01, 3.1793e-01,\n", " -4.1171e-01, 2.4068e-01, -1.5773e-01, 8.6016e-02, 1.3797e-01,\n", " -1.8716e-01, 6.9685e-02, 4.8977e-02, -3.2609e-01, -1.2320e-01,\n", " 2.7405e-01, -3.3264e-01, 9.2106e-02, -9.5439e-02, -1.2941e-01,\n", " -6.0168e-03, -1.0422e-01, 1.7811e-01, -2.6908e-01],\n", " [-2.8426e-01, 2.0979e-01, -4.4463e-01, -2.0507e-01, 4.8820e-01,\n", " -3.8590e-01, -2.7336e-01, -2.7192e-01, 5.9091e-02, -5.6585e-02,\n", " -2.9206e-01, 1.5256e-01, 1.0575e-01, 3.3100e-01, 6.6701e-02,\n", " 1.1139e-01, 2.9278e-01, 4.2220e-01, 2.2346e-01, -5.3398e-01,\n", " 6.1949e-02, 3.1205e-02, -2.1178e-01, -1.8280e-01, 5.6443e-01,\n", " -8.3626e-02, 1.7926e-01, 2.4563e-01, -3.9010e-01, -5.8782e-01,\n", " 3.6655e-01, -1.1015e-01, 4.1846e-01, -3.7551e-01, 5.5107e-02,\n", " -1.6866e-01, 5.1045e-02, -1.0331e-01, 3.6541e-01, 3.5180e-01,\n", " -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01, 3.5780e-01,\n", " -3.3289e-01, 2.8968e-01, -1.0464e-01, 1.1147e-01, 1.5557e-01,\n", " -1.9501e-01, 6.4053e-02, 4.8930e-02, -4.1890e-01, -1.0011e-01,\n", " 3.3335e-01, -3.6849e-01, 1.6564e-01, -8.3867e-02, -1.3537e-01,\n", " -1.7237e-02, -1.4193e-01, 1.7183e-01, -3.0383e-01]],\n", "\n", " [[-4.3374e-01, 4.0180e-01, -6.3305e-01, -3.0021e-01, 7.0703e-01,\n", " -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\n", " -2.8203e-01, 2.1185e-01, 3.0355e-01, 3.5339e-01, 1.3138e-01,\n", " -1.0663e-02, 3.2603e-01, 5.0363e-01, 2.9328e-01, -5.3031e-01,\n", " 9.6803e-02, 7.1699e-02, -3.4079e-01, -2.4798e-01, 5.0690e-01,\n", " -1.7497e-02, -1.8682e-02, 2.1297e-01, -3.2107e-01, -7.1430e-01,\n", " 5.1159e-01, -2.7057e-01, 4.7796e-01, -4.5132e-01, 3.6998e-01,\n", " -2.5730e-01, 3.9020e-01, -1.3587e-01, 5.3076e-01, 5.6810e-01,\n", " -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01, 2.9033e-01,\n", " -6.0690e-01, 1.4748e-01, -2.5577e-01, 4.8167e-02, -5.2315e-02,\n", " -3.3055e-01, 5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\n", " 3.5335e-01, -5.3203e-01, 3.0482e-01, -2.6943e-01, -2.4425e-01,\n", " -8.9498e-03, -2.3237e-01, 2.3527e-01, -2.3360e-01],\n", " [-3.4616e-01, 3.8957e-01, -6.4207e-01, -3.2078e-01, 6.7713e-01,\n", " -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\n", " -3.1221e-01, 2.4949e-01, 2.4872e-01, 4.2892e-01, 7.1725e-02,\n", " -3.2751e-02, 3.2776e-01, 5.2313e-01, 3.2315e-01, -5.3379e-01,\n", " 2.7926e-02, 2.5778e-02, -3.0887e-01, -2.3681e-01, 4.8511e-01,\n", " -1.2633e-03, 1.4333e-02, 3.0642e-01, -2.8257e-01, -7.0073e-01,\n", " 4.8024e-01, -2.8092e-01, 4.6049e-01, -4.3820e-01, 2.5091e-01,\n", " -2.6511e-01, 3.3634e-01, -1.7201e-01, 5.2863e-01, 5.4009e-01,\n", " -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01, 3.2482e-01,\n", " -5.5845e-01, 1.9502e-01, -2.1119e-01, 7.4632e-02, -4.8396e-02,\n", " -3.3858e-01, 5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\n", " 3.9274e-01, -5.5639e-01, 3.3230e-01, -2.6980e-01, -2.3812e-01,\n", " -2.7959e-02, -2.4953e-01, 2.3980e-01, -2.4494e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([2, 2])\n", "dec_state: tensor([[[ 6.3237e-01, -5.8449e-01, -5.1874e-01, -1.2235e-01, -8.6549e-02,\n", " 5.8549e-01, 3.7322e-01, -1.5584e-01, -7.0553e-01, 3.6192e-01,\n", " 1.8809e-01, -9.2770e-02, 4.9308e-01, -3.0477e-01, -6.3202e-01,\n", " 9.7891e-02, 2.5422e-01, 1.7547e-01, 5.8563e-02, 2.0584e-01,\n", " -1.3397e-01, -2.0274e-01, 8.0833e-02, -2.0620e-04, 1.6927e-01,\n", " -1.0937e-01, -9.9684e-02, -5.8475e-01, -7.4144e-02, -1.5458e-01,\n", " -5.0855e-01, -1.4230e-02, -4.3254e-01, 6.1707e-02, 2.5808e-01,\n", " -4.9338e-01, 7.4016e-02, 3.3392e-01, 2.5922e-01, -2.6734e-01,\n", " 1.3181e-01, 2.4563e-01, -1.6014e-01, 1.2034e-01, -1.4903e-01,\n", " -1.4827e-01, 3.2463e-01, 1.8501e-01, -5.1436e-01, -3.8583e-01,\n", " -5.4094e-01, 4.0586e-01, -3.9779e-01, 1.2673e-02, 3.1778e-01,\n", " -1.8659e-01, 1.4068e-01, 8.5969e-02, 7.1557e-01, 8.1374e-02,\n", " -3.7332e-01, -2.3454e-01, -4.9229e-01, -4.3991e-02],\n", " [ 6.3161e-01, -4.9527e-01, -4.6375e-01, -8.2101e-02, -2.2270e-03,\n", " 5.7291e-01, 5.5450e-01, -9.2062e-02, -7.2022e-01, 2.8585e-01,\n", " 2.1044e-01, -2.2061e-01, 3.6012e-01, -2.9892e-01, -4.6672e-01,\n", " -2.5933e-02, 1.1820e-01, 2.2197e-01, -7.1474e-02, 2.7967e-01,\n", " -3.5583e-02, -2.1988e-01, -2.2390e-01, 1.4827e-01, 3.1372e-01,\n", " -2.1024e-01, 1.2649e-02, -5.2580e-01, -4.1692e-01, -2.7036e-01,\n", " -5.5606e-01, -8.8826e-03, -4.3613e-01, 8.3420e-02, 1.4095e-01,\n", " -4.4199e-01, 1.5842e-01, 4.2836e-01, 3.4692e-01, -2.1361e-01,\n", " 1.7419e-01, 2.3557e-01, -3.6156e-02, 2.9173e-01, -1.9137e-01,\n", " -2.6682e-01, 1.3341e-01, 2.3962e-01, -5.0069e-01, -3.5603e-01,\n", " -4.3903e-01, 2.6737e-01, -3.9223e-01, -4.4159e-03, 1.4798e-01,\n", " -2.7135e-01, 6.9440e-02, 1.4866e-01, 6.5773e-01, -7.4198e-02,\n", " -2.5086e-01, -3.9668e-01, -3.8835e-01, 1.0002e-02]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01, 1.0857e-01, -1.9370e-01,\n", " 3.7774e-01, 2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\n", " 3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02, 4.3488e-01,\n", " -3.0141e-01, 3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\n", " -2.4359e-01, 4.2206e-02, 4.8470e-01, 6.3224e-02, -2.2614e-01,\n", " -3.1987e-01, -1.8798e-01, 3.6993e-01, -1.4684e-01, -2.3621e-01,\n", " 9.9864e-02, 3.6303e-01, -3.7656e-01, 2.8872e-01, 2.2332e-01,\n", " 2.0550e-01, 8.0081e-02, 4.3839e-01, -1.6392e-01, 4.0154e-01,\n", " -2.5501e-01, 3.4941e-01, -2.7039e-01, -3.2946e-01, 2.1274e-01,\n", " -2.3434e-01, -2.1966e-01, 9.3274e-02, -7.7401e-02, 2.1879e-01,\n", " 7.3506e-02, 2.4881e-01, -2.0310e-01, 2.3559e-01, -2.5062e-01,\n", " -2.0376e-01, -7.3991e-02, 2.4347e-01, -3.7692e-02, 2.6946e-01,\n", " -1.9928e-01, 4.4936e-01, 1.3003e-01, -2.6040e-01],\n", " [ 2.2726e-01, -1.8992e-02, 4.8106e-01, 4.0937e-02, -1.9359e-01,\n", " 4.0787e-01, -7.4492e-02, 2.5378e-01, -1.3509e-01, 1.1359e-01,\n", " -3.4980e-01, 1.5776e-01, 6.9378e-02, -1.1341e-01, 3.5061e-01,\n", " 4.8332e-01, -2.1102e-01, 9.0305e-02, -2.2642e-01, -2.2795e-01,\n", " -2.9546e-01, -3.0294e-01, 1.8674e-01, 6.4141e-02, -6.4675e-02,\n", " -1.5324e-01, -2.3329e-01, 3.4140e-01, -1.7343e-01, -2.0366e-01,\n", " 1.1172e-01, -1.4087e-01, 1.4044e-01, 2.0903e-01, -2.5586e-01,\n", " -1.2561e-01, -1.5254e-01, -8.0407e-02, 1.3476e-01, 1.0619e-01,\n", " 5.9930e-02, 3.1730e-01, 2.6906e-01, -3.8815e-01, -6.9665e-02,\n", " -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\n", " 2.2937e-01, -3.9784e-04, 2.2407e-01, -2.5350e-01, -3.3453e-01,\n", " -1.3767e-01, -1.7459e-01, 1.3520e-01, 2.4302e-01, 2.2246e-01,\n", " -4.8888e-01, -4.4384e-02, 1.1326e-01, -3.4151e-01]],\n", "\n", " [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\n", " 5.6420e-02, 3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\n", " -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01, 5.9376e-02,\n", " -1.0247e-01, 4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\n", " -2.3619e-01, 8.6265e-02, 4.6741e-01, 3.5501e-01, 1.7282e-01,\n", " -4.7347e-01, 1.4804e-01, 2.5100e-02, -1.2214e-01, -2.0864e-01,\n", " 2.3636e-01, 5.4465e-01, -1.1361e-01, 6.3898e-01, -8.9376e-02,\n", " 4.4687e-01, 1.6410e-01, 2.6329e-01, -2.0854e-01, 2.3961e-01,\n", " -1.0511e-01, 2.5216e-01, -5.3976e-01, -3.7185e-01, 2.4008e-01,\n", " -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01, 2.5457e-01,\n", " 1.2218e-02, 4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\n", " 7.5208e-02, 4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\n", " -4.9366e-01, 5.4208e-01, 1.5324e-01, 3.9655e-01],\n", " [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\n", " 1.3124e-01, 7.5505e-02, 3.4263e-03, -1.1334e-01, -3.4639e-01,\n", " -3.6638e-01, 4.9316e-02, -2.1105e-01, -2.2630e-01, 2.0947e-02,\n", " 3.3961e-01, 9.4981e-02, 1.3542e-01, -3.8337e-01, -2.0906e-01,\n", " -3.0973e-01, -1.5681e-01, 3.3510e-01, 2.7113e-01, 2.4488e-01,\n", " -3.3195e-01, 1.5274e-01, 1.5221e-01, -2.0584e-01, -2.2414e-01,\n", " 2.1737e-01, 1.8852e-01, 7.0223e-02, 5.6388e-01, -3.3851e-01,\n", " 2.6845e-01, 1.1714e-02, -1.4760e-01, 4.3259e-02, 1.0451e-01,\n", " 3.4776e-03, 3.1284e-01, -3.2982e-01, -3.1727e-01, 3.6460e-02,\n", " -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01, 5.9090e-03,\n", " 8.1017e-02, 2.7271e-01, 4.5712e-02, -2.8956e-01, -1.6350e-02,\n", " 2.0064e-02, 1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\n", " -6.5255e-01, 3.1658e-01, 1.4671e-01, 3.6424e-01]],\n", "\n", " [[-1.3597e-01, 1.9799e-01, 2.3560e-01, -1.9528e-01, -1.1069e-02,\n", " 1.1243e-01, 2.9132e-01, 4.1456e-01, -4.4696e-01, -4.3193e-01,\n", " 5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01, 1.1342e-01,\n", " 2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\n", " 2.0141e-02, 6.2393e-02, 2.0971e-02, 8.2769e-02, 4.6496e-01,\n", " -5.3510e-01, 9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\n", " 2.7095e-01, 9.9948e-02, -3.6222e-01, 2.0611e-01, 2.9721e-01,\n", " 7.5574e-02, -1.6472e-01, 3.0445e-01, -3.6575e-02, -2.3158e-01,\n", " 3.9358e-01, 1.9318e-01, -5.6557e-01, -2.6799e-01, 3.8988e-01,\n", " -1.6496e-01, -1.3708e-01, 4.8606e-02, 1.5874e-01, -8.5188e-02,\n", " -1.0096e-01, 4.2342e-01, -1.8810e-01, 1.2980e-01, -2.4798e-01,\n", " -3.8226e-01, 7.9836e-02, -3.9238e-01, -2.6510e-01, 8.0690e-02,\n", " -3.0937e-01, 5.9596e-01, 2.3998e-01, -7.1284e-02],\n", " [ 2.6165e-01, -1.4047e-01, 9.4698e-02, -2.6050e-01, -6.5844e-01,\n", " 6.9578e-02, 4.2476e-01, 3.4034e-01, 9.9292e-02, -7.7451e-02,\n", " -3.3465e-01, 2.1420e-01, -8.8270e-02, 1.8651e-01, 1.4740e-01,\n", " 5.7079e-01, 2.2680e-02, 2.0249e-01, -1.9472e-01, -2.2586e-01,\n", " -3.8880e-01, -2.1211e-01, 1.9659e-01, 2.1478e-01, -2.5531e-02,\n", " 7.8013e-02, 3.2416e-01, 4.8909e-01, 2.9591e-01, 2.0706e-01,\n", " 5.0405e-02, -3.9285e-02, 1.2387e-01, 1.4932e-01, -6.5346e-01,\n", " 1.9413e-02, -3.7684e-02, 9.7702e-02, 3.4156e-02, -2.0560e-01,\n", " 2.2834e-01, 4.8682e-01, -6.0703e-01, 7.5087e-02, 2.0022e-01,\n", " -3.6027e-03, 4.1835e-03, -3.9750e-01, 6.0365e-02, -5.0696e-02,\n", " -6.1541e-02, 5.2398e-01, 3.6723e-01, -3.4788e-01, -1.8475e-02,\n", " 9.8757e-02, -1.9024e-01, 3.2452e-02, 2.3710e-01, -1.6492e-01,\n", " -1.5253e-01, 3.6131e-01, -2.0650e-01, -4.8210e-01]],\n", "\n", " [[-9.5985e-02, 7.5312e-02, -1.6275e-02, -1.6717e-01, 1.3966e-01,\n", " 1.2510e-01, 1.7152e-01, 3.7018e-01, 1.7329e-01, -3.6036e-03,\n", " 1.0929e-01, -2.8514e-01, 1.1324e-01, -4.5108e-01, 2.3049e-01,\n", " 1.1407e-01, 5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\n", " 3.5342e-01, 1.2921e-01, -1.4113e-01, 8.1400e-02, 6.0903e-01,\n", " 1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\n", " 2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02, 3.7362e-01,\n", " 1.3951e-01, 2.5189e-01, 1.7649e-01, -3.2773e-01, -1.1435e-01,\n", " -1.6709e-01, 3.5067e-01, 9.1052e-02, -4.6298e-02, 3.1424e-01,\n", " 8.7142e-03, 1.8674e-01, 1.2893e-01, 2.1966e-01, 1.6659e-01,\n", " -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\n", " -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01, 4.7413e-01,\n", " -2.9576e-01, 2.2703e-01, -3.9934e-01, 1.7219e-01],\n", " [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\n", " 1.5163e-01, 1.7886e-01, 2.7458e-01, 3.3433e-01, 2.0521e-01,\n", " -1.4750e-01, -1.2898e-01, -3.0942e-02, 3.7652e-02, 1.3187e-01,\n", " 9.9556e-02, 1.6104e-01, -2.2675e-02, 4.0490e-02, -4.2415e-01,\n", " 4.9033e-02, -5.0992e-02, -1.2216e-02, 1.6971e-01, 3.7812e-01,\n", " 3.2139e-01, 1.6347e-01, 6.9504e-02, 1.0657e-01, -1.5354e-01,\n", " 1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\n", " 9.1052e-02, 2.3660e-01, 2.3901e-02, -2.6365e-01, -1.5990e-01,\n", " -2.8048e-01, 5.6058e-01, 3.8168e-02, 2.1925e-01, 3.2005e-01,\n", " 1.8152e-01, 2.5467e-01, -5.4982e-03, 1.7120e-01, 1.8606e-01,\n", " -1.4660e-01, -4.4520e-01, 1.6732e-01, -4.7045e-01, -7.7974e-02,\n", " -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01, 3.0227e-01,\n", " -2.2191e-01, 2.9605e-02, -6.3017e-01, -1.4525e-01]],\n", "\n", " [[-3.4904e-01, -6.8274e-02, 5.6533e-02, -2.4772e-02, 3.2061e-01,\n", " 2.1123e-01, 1.5713e-01, -1.7263e-01, 1.5009e-01, -4.3575e-03,\n", " -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01, 1.8752e-01,\n", " 2.7129e-01, 1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\n", " 2.2746e-01, 8.3794e-02, -1.3259e-01, -1.1347e-01, 6.5971e-01,\n", " -2.3801e-01, 3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\n", " 2.3377e-01, 3.3690e-02, 3.5666e-01, -2.5705e-01, 8.0429e-02,\n", " -1.0046e-01, -3.2683e-01, 1.7847e-01, 4.9813e-02, -2.7301e-02,\n", " -2.8488e-01, 1.3049e-01, -3.1199e-01, 2.1468e-01, 4.1697e-01,\n", " -9.0697e-03, 3.0670e-01, 3.1493e-02, 1.2018e-01, 3.3610e-01,\n", " 2.8280e-02, -7.6110e-02, 2.6174e-01, -3.1480e-01, 4.1252e-03,\n", " 1.0057e-01, 3.8000e-02, -2.0712e-01, 2.7292e-01, 5.9932e-01,\n", " 1.2308e-01, 4.6245e-01, 1.7830e-02, -3.6655e-01],\n", " [-1.6559e-01, -1.4964e-01, 1.6312e-02, -7.3873e-02, 2.1183e-01,\n", " 2.4620e-01, 1.3492e-01, -2.5850e-01, 2.4197e-01, 1.5375e-01,\n", " -1.7702e-01, -3.0812e-02, -2.3033e-01, 5.7193e-02, 8.9032e-02,\n", " 2.5915e-01, 1.7881e-01, 9.2474e-02, 6.9597e-02, -5.1476e-01,\n", " 1.3662e-02, 1.7113e-02, -6.8879e-02, -7.7871e-02, 5.7157e-01,\n", " -1.9469e-01, 4.2673e-01, 1.1721e-01, -5.7496e-01, -3.3230e-01,\n", " 1.5853e-01, 1.8137e-03, 3.5060e-01, -2.1769e-01, -1.9723e-01,\n", " -1.1998e-01, -3.5563e-01, 7.3324e-02, 6.4801e-02, -6.5640e-02,\n", " -3.7750e-01, 1.6369e-01, -3.3921e-01, 3.2287e-01, 4.4207e-01,\n", " 1.0073e-01, 3.4861e-01, 8.5830e-02, 1.3543e-01, 3.6765e-01,\n", " 2.3823e-02, -7.5720e-02, 3.2633e-01, -5.0892e-01, 4.9602e-02,\n", " 2.0053e-01, -9.2345e-03, -8.3791e-03, 3.5187e-01, 4.7023e-01,\n", " 1.4153e-01, 3.2948e-01, -3.3481e-02, -4.5740e-01]],\n", "\n", " [[-4.1226e-01, 2.4138e-01, -4.2202e-01, -1.7461e-01, 5.4534e-01,\n", " -4.2925e-01, -2.6951e-01, -2.0688e-01, 2.3745e-02, -1.1517e-01,\n", " -2.2702e-01, 8.5057e-02, 1.9687e-01, 1.8045e-01, 1.4299e-01,\n", " 1.3289e-01, 2.7649e-01, 3.7999e-01, 1.7433e-01, -5.2645e-01,\n", " 1.9178e-01, 8.7907e-02, -2.5690e-01, -2.0036e-01, 6.0692e-01,\n", " -1.0853e-01, 1.2578e-01, 8.5823e-02, -4.5513e-01, -6.2062e-01,\n", " 4.1656e-01, -8.5522e-02, 4.3798e-01, -3.9802e-01, 2.4185e-01,\n", " -1.5286e-01, 1.2474e-01, -4.1761e-02, 3.6593e-01, 3.9166e-01,\n", " -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01, 3.1793e-01,\n", " -4.1171e-01, 2.4068e-01, -1.5773e-01, 8.6016e-02, 1.3797e-01,\n", " -1.8716e-01, 6.9685e-02, 4.8977e-02, -3.2609e-01, -1.2320e-01,\n", " 2.7405e-01, -3.3264e-01, 9.2106e-02, -9.5439e-02, -1.2941e-01,\n", " -6.0168e-03, -1.0422e-01, 1.7811e-01, -2.6908e-01],\n", " [-2.8426e-01, 2.0979e-01, -4.4463e-01, -2.0507e-01, 4.8820e-01,\n", " -3.8590e-01, -2.7336e-01, -2.7192e-01, 5.9091e-02, -5.6585e-02,\n", " -2.9206e-01, 1.5256e-01, 1.0575e-01, 3.3100e-01, 6.6701e-02,\n", " 1.1139e-01, 2.9278e-01, 4.2220e-01, 2.2346e-01, -5.3398e-01,\n", " 6.1949e-02, 3.1205e-02, -2.1178e-01, -1.8280e-01, 5.6443e-01,\n", " -8.3626e-02, 1.7926e-01, 2.4563e-01, -3.9010e-01, -5.8782e-01,\n", " 3.6655e-01, -1.1015e-01, 4.1846e-01, -3.7551e-01, 5.5107e-02,\n", " -1.6866e-01, 5.1045e-02, -1.0331e-01, 3.6541e-01, 3.5180e-01,\n", " -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01, 3.5780e-01,\n", " -3.3289e-01, 2.8968e-01, -1.0464e-01, 1.1147e-01, 1.5557e-01,\n", " -1.9501e-01, 6.4053e-02, 4.8930e-02, -4.1890e-01, -1.0011e-01,\n", " 3.3335e-01, -3.6849e-01, 1.6564e-01, -8.3867e-02, -1.3537e-01,\n", " -1.7237e-02, -1.4193e-01, 1.7183e-01, -3.0383e-01]],\n", "\n", " [[-4.3374e-01, 4.0180e-01, -6.3305e-01, -3.0021e-01, 7.0703e-01,\n", " -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\n", " -2.8203e-01, 2.1185e-01, 3.0355e-01, 3.5339e-01, 1.3138e-01,\n", " -1.0663e-02, 3.2603e-01, 5.0363e-01, 2.9328e-01, -5.3031e-01,\n", " 9.6803e-02, 7.1699e-02, -3.4079e-01, -2.4798e-01, 5.0690e-01,\n", " -1.7497e-02, -1.8682e-02, 2.1297e-01, -3.2107e-01, -7.1430e-01,\n", " 5.1159e-01, -2.7057e-01, 4.7796e-01, -4.5132e-01, 3.6998e-01,\n", " -2.5730e-01, 3.9020e-01, -1.3587e-01, 5.3076e-01, 5.6810e-01,\n", " -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01, 2.9033e-01,\n", " -6.0690e-01, 1.4748e-01, -2.5577e-01, 4.8167e-02, -5.2315e-02,\n", " -3.3055e-01, 5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\n", " 3.5335e-01, -5.3203e-01, 3.0482e-01, -2.6943e-01, -2.4425e-01,\n", " -8.9498e-03, -2.3237e-01, 2.3527e-01, -2.3360e-01],\n", " [-3.4616e-01, 3.8957e-01, -6.4207e-01, -3.2078e-01, 6.7713e-01,\n", " -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\n", " -3.1221e-01, 2.4949e-01, 2.4872e-01, 4.2892e-01, 7.1725e-02,\n", " -3.2751e-02, 3.2776e-01, 5.2313e-01, 3.2315e-01, -5.3379e-01,\n", " 2.7926e-02, 2.5778e-02, -3.0887e-01, -2.3681e-01, 4.8511e-01,\n", " -1.2633e-03, 1.4333e-02, 3.0642e-01, -2.8257e-01, -7.0073e-01,\n", " 4.8024e-01, -2.8092e-01, 4.6049e-01, -4.3820e-01, 2.5091e-01,\n", " -2.6511e-01, 3.3634e-01, -1.7201e-01, 5.2863e-01, 5.4009e-01,\n", " -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01, 3.2482e-01,\n", " -5.5845e-01, 1.9502e-01, -2.1119e-01, 7.4632e-02, -4.8396e-02,\n", " -3.3858e-01, 5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\n", " 3.9274e-01, -5.5639e-01, 3.3230e-01, -2.6980e-01, -2.3812e-01,\n", " -2.7959e-02, -2.4953e-01, 2.3980e-01, -2.4494e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([0, 0])\n", "dec_state: tensor([[[ 3.3613e-01, -1.1581e-01, 2.2531e-02, -3.2029e-01, -3.4844e-01,\n", " 1.7300e-01, 5.4357e-01, -2.8234e-01, -5.1556e-01, 5.4329e-01,\n", " 4.8828e-01, 2.1129e-01, 4.9455e-02, -1.9472e-01, -4.1981e-01,\n", " 2.5406e-01, -1.0423e-01, -2.6475e-01, 1.8739e-01, 4.0620e-01,\n", " -1.0231e-01, -3.7705e-01, 2.3830e-01, 2.0685e-02, 2.7910e-01,\n", " 2.2410e-01, -3.2430e-01, -2.7136e-01, -1.2778e-02, -2.1327e-01,\n", " -8.0700e-02, -5.5479e-02, 1.4213e-01, -1.1707e-01, 2.2430e-01,\n", " -7.3242e-01, -9.8840e-02, -5.7070e-02, 2.5388e-01, 2.7555e-02,\n", " 3.1054e-01, 3.9803e-01, 2.9947e-01, -2.5798e-01, -4.7102e-01,\n", " 7.3441e-02, 3.1116e-01, 1.2036e-02, -1.2702e-01, 2.8246e-01,\n", " -2.4374e-01, 3.5081e-01, 8.1742e-02, 3.3872e-02, 5.4672e-01,\n", " 5.2705e-02, -8.1313e-02, 2.8746e-01, 4.2945e-01, 1.5243e-01,\n", " -3.6670e-01, -3.8023e-01, -3.4076e-01, -3.8322e-02],\n", " [ 3.3420e-01, -2.9291e-02, 2.9569e-02, -2.9860e-01, -2.7917e-01,\n", " 1.2516e-01, 6.7536e-01, -2.3794e-01, -5.0963e-01, 4.8014e-01,\n", " 4.5453e-01, 1.5694e-01, 2.0649e-03, -1.7461e-01, -2.7515e-01,\n", " 1.3528e-01, -2.2899e-01, -2.3273e-01, 9.6747e-02, 4.5235e-01,\n", " -6.0118e-02, -3.8949e-01, -2.5611e-02, 1.2869e-01, 4.0833e-01,\n", " 1.4967e-01, -2.3645e-01, -2.3432e-01, -2.8956e-01, -2.8381e-01,\n", " -1.3089e-01, -3.1831e-02, 1.8209e-01, -4.6718e-02, 1.6101e-01,\n", " -6.8348e-01, 2.6590e-04, 3.2996e-02, 3.5458e-01, 1.0081e-01,\n", " 3.3487e-01, 3.8526e-01, 3.6419e-01, -5.5700e-02, -4.8871e-01,\n", " 6.9818e-02, 1.3551e-01, 6.1167e-02, -1.5437e-01, 2.6536e-01,\n", " -1.5279e-01, 2.4500e-01, 7.5978e-02, -2.4663e-02, 4.1149e-01,\n", " 2.4817e-02, -5.6557e-02, 3.3233e-01, 3.1330e-01, -1.8653e-02,\n", " -2.3047e-01, -5.2035e-01, -3.5154e-01, 2.2388e-02]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01, 1.0857e-01, -1.9370e-01,\n", " 3.7774e-01, 2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\n", " 3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02, 4.3488e-01,\n", " -3.0141e-01, 3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\n", " -2.4359e-01, 4.2206e-02, 4.8470e-01, 6.3224e-02, -2.2614e-01,\n", " -3.1987e-01, -1.8798e-01, 3.6993e-01, -1.4684e-01, -2.3621e-01,\n", " 9.9864e-02, 3.6303e-01, -3.7656e-01, 2.8872e-01, 2.2332e-01,\n", " 2.0550e-01, 8.0081e-02, 4.3839e-01, -1.6392e-01, 4.0154e-01,\n", " -2.5501e-01, 3.4941e-01, -2.7039e-01, -3.2946e-01, 2.1274e-01,\n", " -2.3434e-01, -2.1966e-01, 9.3274e-02, -7.7401e-02, 2.1879e-01,\n", " 7.3506e-02, 2.4881e-01, -2.0310e-01, 2.3559e-01, -2.5062e-01,\n", " -2.0376e-01, -7.3991e-02, 2.4347e-01, -3.7692e-02, 2.6946e-01,\n", " -1.9928e-01, 4.4936e-01, 1.3003e-01, -2.6040e-01],\n", " [ 2.2726e-01, -1.8992e-02, 4.8106e-01, 4.0937e-02, -1.9359e-01,\n", " 4.0787e-01, -7.4492e-02, 2.5378e-01, -1.3509e-01, 1.1359e-01,\n", " -3.4980e-01, 1.5776e-01, 6.9378e-02, -1.1341e-01, 3.5061e-01,\n", " 4.8332e-01, -2.1102e-01, 9.0305e-02, -2.2642e-01, -2.2795e-01,\n", " -2.9546e-01, -3.0294e-01, 1.8674e-01, 6.4141e-02, -6.4675e-02,\n", " -1.5324e-01, -2.3329e-01, 3.4140e-01, -1.7343e-01, -2.0366e-01,\n", " 1.1172e-01, -1.4087e-01, 1.4044e-01, 2.0903e-01, -2.5586e-01,\n", " -1.2561e-01, -1.5254e-01, -8.0407e-02, 1.3476e-01, 1.0619e-01,\n", " 5.9930e-02, 3.1730e-01, 2.6906e-01, -3.8815e-01, -6.9665e-02,\n", " -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\n", " 2.2937e-01, -3.9784e-04, 2.2407e-01, -2.5350e-01, -3.3453e-01,\n", " -1.3767e-01, -1.7459e-01, 1.3520e-01, 2.4302e-01, 2.2246e-01,\n", " -4.8888e-01, -4.4384e-02, 1.1326e-01, -3.4151e-01]],\n", "\n", " [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\n", " 5.6420e-02, 3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\n", " -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01, 5.9376e-02,\n", " -1.0247e-01, 4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\n", " -2.3619e-01, 8.6265e-02, 4.6741e-01, 3.5501e-01, 1.7282e-01,\n", " -4.7347e-01, 1.4804e-01, 2.5100e-02, -1.2214e-01, -2.0864e-01,\n", " 2.3636e-01, 5.4465e-01, -1.1361e-01, 6.3898e-01, -8.9376e-02,\n", " 4.4687e-01, 1.6410e-01, 2.6329e-01, -2.0854e-01, 2.3961e-01,\n", " -1.0511e-01, 2.5216e-01, -5.3976e-01, -3.7185e-01, 2.4008e-01,\n", " -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01, 2.5457e-01,\n", " 1.2218e-02, 4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\n", " 7.5208e-02, 4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\n", " -4.9366e-01, 5.4208e-01, 1.5324e-01, 3.9655e-01],\n", " [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\n", " 1.3124e-01, 7.5505e-02, 3.4263e-03, -1.1334e-01, -3.4639e-01,\n", " -3.6638e-01, 4.9316e-02, -2.1105e-01, -2.2630e-01, 2.0947e-02,\n", " 3.3961e-01, 9.4981e-02, 1.3542e-01, -3.8337e-01, -2.0906e-01,\n", " -3.0973e-01, -1.5681e-01, 3.3510e-01, 2.7113e-01, 2.4488e-01,\n", " -3.3195e-01, 1.5274e-01, 1.5221e-01, -2.0584e-01, -2.2414e-01,\n", " 2.1737e-01, 1.8852e-01, 7.0223e-02, 5.6388e-01, -3.3851e-01,\n", " 2.6845e-01, 1.1714e-02, -1.4760e-01, 4.3259e-02, 1.0451e-01,\n", " 3.4776e-03, 3.1284e-01, -3.2982e-01, -3.1727e-01, 3.6460e-02,\n", " -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01, 5.9090e-03,\n", " 8.1017e-02, 2.7271e-01, 4.5712e-02, -2.8956e-01, -1.6350e-02,\n", " 2.0064e-02, 1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\n", " -6.5255e-01, 3.1658e-01, 1.4671e-01, 3.6424e-01]],\n", "\n", " [[-1.3597e-01, 1.9799e-01, 2.3560e-01, -1.9528e-01, -1.1069e-02,\n", " 1.1243e-01, 2.9132e-01, 4.1456e-01, -4.4696e-01, -4.3193e-01,\n", " 5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01, 1.1342e-01,\n", " 2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\n", " 2.0141e-02, 6.2393e-02, 2.0971e-02, 8.2769e-02, 4.6496e-01,\n", " -5.3510e-01, 9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\n", " 2.7095e-01, 9.9948e-02, -3.6222e-01, 2.0611e-01, 2.9721e-01,\n", " 7.5574e-02, -1.6472e-01, 3.0445e-01, -3.6575e-02, -2.3158e-01,\n", " 3.9358e-01, 1.9318e-01, -5.6557e-01, -2.6799e-01, 3.8988e-01,\n", " -1.6496e-01, -1.3708e-01, 4.8606e-02, 1.5874e-01, -8.5188e-02,\n", " -1.0096e-01, 4.2342e-01, -1.8810e-01, 1.2980e-01, -2.4798e-01,\n", " -3.8226e-01, 7.9836e-02, -3.9238e-01, -2.6510e-01, 8.0690e-02,\n", " -3.0937e-01, 5.9596e-01, 2.3998e-01, -7.1284e-02],\n", " [ 2.6165e-01, -1.4047e-01, 9.4698e-02, -2.6050e-01, -6.5844e-01,\n", " 6.9578e-02, 4.2476e-01, 3.4034e-01, 9.9292e-02, -7.7451e-02,\n", " -3.3465e-01, 2.1420e-01, -8.8270e-02, 1.8651e-01, 1.4740e-01,\n", " 5.7079e-01, 2.2680e-02, 2.0249e-01, -1.9472e-01, -2.2586e-01,\n", " -3.8880e-01, -2.1211e-01, 1.9659e-01, 2.1478e-01, -2.5531e-02,\n", " 7.8013e-02, 3.2416e-01, 4.8909e-01, 2.9591e-01, 2.0706e-01,\n", " 5.0405e-02, -3.9285e-02, 1.2387e-01, 1.4932e-01, -6.5346e-01,\n", " 1.9413e-02, -3.7684e-02, 9.7702e-02, 3.4156e-02, -2.0560e-01,\n", " 2.2834e-01, 4.8682e-01, -6.0703e-01, 7.5087e-02, 2.0022e-01,\n", " -3.6027e-03, 4.1835e-03, -3.9750e-01, 6.0365e-02, -5.0696e-02,\n", " -6.1541e-02, 5.2398e-01, 3.6723e-01, -3.4788e-01, -1.8475e-02,\n", " 9.8757e-02, -1.9024e-01, 3.2452e-02, 2.3710e-01, -1.6492e-01,\n", " -1.5253e-01, 3.6131e-01, -2.0650e-01, -4.8210e-01]],\n", "\n", " [[-9.5985e-02, 7.5312e-02, -1.6275e-02, -1.6717e-01, 1.3966e-01,\n", " 1.2510e-01, 1.7152e-01, 3.7018e-01, 1.7329e-01, -3.6036e-03,\n", " 1.0929e-01, -2.8514e-01, 1.1324e-01, -4.5108e-01, 2.3049e-01,\n", " 1.1407e-01, 5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\n", " 3.5342e-01, 1.2921e-01, -1.4113e-01, 8.1400e-02, 6.0903e-01,\n", " 1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\n", " 2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02, 3.7362e-01,\n", " 1.3951e-01, 2.5189e-01, 1.7649e-01, -3.2773e-01, -1.1435e-01,\n", " -1.6709e-01, 3.5067e-01, 9.1052e-02, -4.6298e-02, 3.1424e-01,\n", " 8.7142e-03, 1.8674e-01, 1.2893e-01, 2.1966e-01, 1.6659e-01,\n", " -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\n", " -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01, 4.7413e-01,\n", " -2.9576e-01, 2.2703e-01, -3.9934e-01, 1.7219e-01],\n", " [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\n", " 1.5163e-01, 1.7886e-01, 2.7458e-01, 3.3433e-01, 2.0521e-01,\n", " -1.4750e-01, -1.2898e-01, -3.0942e-02, 3.7652e-02, 1.3187e-01,\n", " 9.9556e-02, 1.6104e-01, -2.2675e-02, 4.0490e-02, -4.2415e-01,\n", " 4.9033e-02, -5.0992e-02, -1.2216e-02, 1.6971e-01, 3.7812e-01,\n", " 3.2139e-01, 1.6347e-01, 6.9504e-02, 1.0657e-01, -1.5354e-01,\n", " 1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\n", " 9.1052e-02, 2.3660e-01, 2.3901e-02, -2.6365e-01, -1.5990e-01,\n", " -2.8048e-01, 5.6058e-01, 3.8168e-02, 2.1925e-01, 3.2005e-01,\n", " 1.8152e-01, 2.5467e-01, -5.4982e-03, 1.7120e-01, 1.8606e-01,\n", " -1.4660e-01, -4.4520e-01, 1.6732e-01, -4.7045e-01, -7.7974e-02,\n", " -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01, 3.0227e-01,\n", " -2.2191e-01, 2.9605e-02, -6.3017e-01, -1.4525e-01]],\n", "\n", " [[-3.4904e-01, -6.8274e-02, 5.6533e-02, -2.4772e-02, 3.2061e-01,\n", " 2.1123e-01, 1.5713e-01, -1.7263e-01, 1.5009e-01, -4.3575e-03,\n", " -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01, 1.8752e-01,\n", " 2.7129e-01, 1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\n", " 2.2746e-01, 8.3794e-02, -1.3259e-01, -1.1347e-01, 6.5971e-01,\n", " -2.3801e-01, 3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\n", " 2.3377e-01, 3.3690e-02, 3.5666e-01, -2.5705e-01, 8.0429e-02,\n", " -1.0046e-01, -3.2683e-01, 1.7847e-01, 4.9813e-02, -2.7301e-02,\n", " -2.8488e-01, 1.3049e-01, -3.1199e-01, 2.1468e-01, 4.1697e-01,\n", " -9.0697e-03, 3.0670e-01, 3.1493e-02, 1.2018e-01, 3.3610e-01,\n", " 2.8280e-02, -7.6110e-02, 2.6174e-01, -3.1480e-01, 4.1252e-03,\n", " 1.0057e-01, 3.8000e-02, -2.0712e-01, 2.7292e-01, 5.9932e-01,\n", " 1.2308e-01, 4.6245e-01, 1.7830e-02, -3.6655e-01],\n", " [-1.6559e-01, -1.4964e-01, 1.6312e-02, -7.3873e-02, 2.1183e-01,\n", " 2.4620e-01, 1.3492e-01, -2.5850e-01, 2.4197e-01, 1.5375e-01,\n", " -1.7702e-01, -3.0812e-02, -2.3033e-01, 5.7193e-02, 8.9032e-02,\n", " 2.5915e-01, 1.7881e-01, 9.2474e-02, 6.9597e-02, -5.1476e-01,\n", " 1.3662e-02, 1.7113e-02, -6.8879e-02, -7.7871e-02, 5.7157e-01,\n", " -1.9469e-01, 4.2673e-01, 1.1721e-01, -5.7496e-01, -3.3230e-01,\n", " 1.5853e-01, 1.8137e-03, 3.5060e-01, -2.1769e-01, -1.9723e-01,\n", " -1.1998e-01, -3.5563e-01, 7.3324e-02, 6.4801e-02, -6.5640e-02,\n", " -3.7750e-01, 1.6369e-01, -3.3921e-01, 3.2287e-01, 4.4207e-01,\n", " 1.0073e-01, 3.4861e-01, 8.5830e-02, 1.3543e-01, 3.6765e-01,\n", " 2.3823e-02, -7.5720e-02, 3.2633e-01, -5.0892e-01, 4.9602e-02,\n", " 2.0053e-01, -9.2345e-03, -8.3791e-03, 3.5187e-01, 4.7023e-01,\n", " 1.4153e-01, 3.2948e-01, -3.3481e-02, -4.5740e-01]],\n", "\n", " [[-4.1226e-01, 2.4138e-01, -4.2202e-01, -1.7461e-01, 5.4534e-01,\n", " -4.2925e-01, -2.6951e-01, -2.0688e-01, 2.3745e-02, -1.1517e-01,\n", " -2.2702e-01, 8.5057e-02, 1.9687e-01, 1.8045e-01, 1.4299e-01,\n", " 1.3289e-01, 2.7649e-01, 3.7999e-01, 1.7433e-01, -5.2645e-01,\n", " 1.9178e-01, 8.7907e-02, -2.5690e-01, -2.0036e-01, 6.0692e-01,\n", " -1.0853e-01, 1.2578e-01, 8.5823e-02, -4.5513e-01, -6.2062e-01,\n", " 4.1656e-01, -8.5522e-02, 4.3798e-01, -3.9802e-01, 2.4185e-01,\n", " -1.5286e-01, 1.2474e-01, -4.1761e-02, 3.6593e-01, 3.9166e-01,\n", " -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01, 3.1793e-01,\n", " -4.1171e-01, 2.4068e-01, -1.5773e-01, 8.6016e-02, 1.3797e-01,\n", " -1.8716e-01, 6.9685e-02, 4.8977e-02, -3.2609e-01, -1.2320e-01,\n", " 2.7405e-01, -3.3264e-01, 9.2106e-02, -9.5439e-02, -1.2941e-01,\n", " -6.0168e-03, -1.0422e-01, 1.7811e-01, -2.6908e-01],\n", " [-2.8426e-01, 2.0979e-01, -4.4463e-01, -2.0507e-01, 4.8820e-01,\n", " -3.8590e-01, -2.7336e-01, -2.7192e-01, 5.9091e-02, -5.6585e-02,\n", " -2.9206e-01, 1.5256e-01, 1.0575e-01, 3.3100e-01, 6.6701e-02,\n", " 1.1139e-01, 2.9278e-01, 4.2220e-01, 2.2346e-01, -5.3398e-01,\n", " 6.1949e-02, 3.1205e-02, -2.1178e-01, -1.8280e-01, 5.6443e-01,\n", " -8.3626e-02, 1.7926e-01, 2.4563e-01, -3.9010e-01, -5.8782e-01,\n", " 3.6655e-01, -1.1015e-01, 4.1846e-01, -3.7551e-01, 5.5107e-02,\n", " -1.6866e-01, 5.1045e-02, -1.0331e-01, 3.6541e-01, 3.5180e-01,\n", " -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01, 3.5780e-01,\n", " -3.3289e-01, 2.8968e-01, -1.0464e-01, 1.1147e-01, 1.5557e-01,\n", " -1.9501e-01, 6.4053e-02, 4.8930e-02, -4.1890e-01, -1.0011e-01,\n", " 3.3335e-01, -3.6849e-01, 1.6564e-01, -8.3867e-02, -1.3537e-01,\n", " -1.7237e-02, -1.4193e-01, 1.7183e-01, -3.0383e-01]],\n", "\n", " [[-4.3374e-01, 4.0180e-01, -6.3305e-01, -3.0021e-01, 7.0703e-01,\n", " -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\n", " -2.8203e-01, 2.1185e-01, 3.0355e-01, 3.5339e-01, 1.3138e-01,\n", " -1.0663e-02, 3.2603e-01, 5.0363e-01, 2.9328e-01, -5.3031e-01,\n", " 9.6803e-02, 7.1699e-02, -3.4079e-01, -2.4798e-01, 5.0690e-01,\n", " -1.7497e-02, -1.8682e-02, 2.1297e-01, -3.2107e-01, -7.1430e-01,\n", " 5.1159e-01, -2.7057e-01, 4.7796e-01, -4.5132e-01, 3.6998e-01,\n", " -2.5730e-01, 3.9020e-01, -1.3587e-01, 5.3076e-01, 5.6810e-01,\n", " -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01, 2.9033e-01,\n", " -6.0690e-01, 1.4748e-01, -2.5577e-01, 4.8167e-02, -5.2315e-02,\n", " -3.3055e-01, 5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\n", " 3.5335e-01, -5.3203e-01, 3.0482e-01, -2.6943e-01, -2.4425e-01,\n", " -8.9498e-03, -2.3237e-01, 2.3527e-01, -2.3360e-01],\n", " [-3.4616e-01, 3.8957e-01, -6.4207e-01, -3.2078e-01, 6.7713e-01,\n", " -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\n", " -3.1221e-01, 2.4949e-01, 2.4872e-01, 4.2892e-01, 7.1725e-02,\n", " -3.2751e-02, 3.2776e-01, 5.2313e-01, 3.2315e-01, -5.3379e-01,\n", " 2.7926e-02, 2.5778e-02, -3.0887e-01, -2.3681e-01, 4.8511e-01,\n", " -1.2633e-03, 1.4333e-02, 3.0642e-01, -2.8257e-01, -7.0073e-01,\n", " 4.8024e-01, -2.8092e-01, 4.6049e-01, -4.3820e-01, 2.5091e-01,\n", " -2.6511e-01, 3.3634e-01, -1.7201e-01, 5.2863e-01, 5.4009e-01,\n", " -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01, 3.2482e-01,\n", " -5.5845e-01, 1.9502e-01, -2.1119e-01, 7.4632e-02, -4.8396e-02,\n", " -3.3858e-01, 5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\n", " 3.9274e-01, -5.5639e-01, 3.3230e-01, -2.6980e-01, -2.3812e-01,\n", " -2.7959e-02, -2.4953e-01, 2.3980e-01, -2.4494e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "tensor([[ 8, 4, 9, 31, 13, 2, 0],\n", " [12, 7, 41, 24, 19, 3, 2]])\n", "tensor([[ 6, 4, 9, 34, 12, 2, 0],\n", " [ 7, 5, 18, 11, 3, 2, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-0.2368, 0.4906, -0.1632, 0.1336, -0.5146, -0.6547, -0.7321,\n", " -0.4520, 0.4372, 0.0489, 0.0932, 0.0353, -0.1200, 0.5706,\n", " 0.0210, -0.0042, -0.3452, 0.4259, 0.5685, 0.2709, -0.2499,\n", " -0.1529, 0.4769, -0.0433, 0.3475, 0.0323, 0.1716, 0.2017,\n", " -0.1856, 0.0299, -0.0140, -0.5482, 0.6279, 0.3136, 0.1786,\n", " 0.1191, 0.3857, 0.1970, -0.0744, -0.3635, 0.2280, -0.8884,\n", " 0.0902, -0.1611, -0.4675, 0.3967, 0.0014, -0.1965, 0.5490,\n", " 0.3346, -0.3185, 0.6511, -0.0687, -0.0127, -0.0655, 0.1355,\n", " -0.3590, 0.5301, 0.1524, 0.5518, -0.5237, 0.2308, -0.3268,\n", " -0.5808],\n", " [ 0.0363, 0.2298, 0.0624, 0.4424, -0.5712, -0.1931, -0.5531,\n", " -0.4002, 0.4263, 0.2128, -0.0723, 0.0422, -0.1306, 0.0569,\n", " 0.1553, 0.2440, -0.2433, -0.0111, 0.4544, 0.0929, -0.1290,\n", " -0.0594, 0.4491, 0.1725, 0.5771, -0.0402, 0.1638, 0.0127,\n", " -0.3980, -0.1079, -0.1053, -0.4285, 0.5508, 0.3751, 0.0212,\n", " -0.0314, 0.2061, 0.1678, -0.2261, -0.5119, 0.2012, -0.6739,\n", " -0.0951, 0.2420, -0.2706, 0.5569, 0.2004, -0.0917, 0.3508,\n", " 0.3359, -0.2074, 0.5185, 0.1523, -0.2240, 0.0535, 0.0345,\n", " 0.0961, 0.0496, 0.1973, 0.6175, -0.1944, 0.0925, -0.1665,\n", " -0.4900]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.3727e-01, 7.2181e-02, -4.8407e-02, 3.9534e-01, 1.7992e-01,\n", " 1.4430e-01, 1.3021e-01, -5.1874e-01, 9.1039e-02, -1.9068e-01,\n", " 2.6788e-01, 2.2892e-02, -8.0218e-02, 2.0840e-01, 1.3134e-01,\n", " 2.3112e-01, 4.3599e-02, -2.9930e-01, 2.1027e-01, -3.4507e-02,\n", " -8.8752e-02, -1.4755e-01, 6.6381e-02, -3.3483e-01, -7.0215e-02,\n", " 4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\n", " 1.1633e-01, -2.9537e-01, 5.5430e-02, 5.4464e-02, -4.3290e-02,\n", " 7.1843e-02, -3.4024e-01, -3.7712e-02, 2.8614e-01, -6.0731e-02,\n", " -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\n", " 3.7795e-01, -1.3003e-01, 1.7851e-01, 2.4400e-01, -3.0191e-01,\n", " 4.8482e-01, 2.6197e-01, 2.3043e-01, -4.2391e-01, -8.0003e-02,\n", " 2.5831e-01, -3.1049e-01, 1.7894e-01, 2.2598e-01, 1.0081e-01,\n", " -2.7511e-01, 7.8730e-02, -2.0066e-01, -1.5597e-01],\n", " [ 2.5820e-01, 1.9188e-01, 4.7999e-01, 6.9774e-02, -2.0267e-01,\n", " 3.7522e-01, -8.6744e-02, 2.5228e-01, -1.2846e-01, 1.0590e-01,\n", " -2.7586e-01, 1.0311e-01, 1.1307e-01, -1.0545e-01, 2.9488e-01,\n", " 5.4775e-01, -1.6711e-01, 4.6806e-02, -2.4186e-01, -3.5100e-01,\n", " -2.9758e-01, -3.1168e-01, 1.9277e-01, 1.4047e-01, -7.5636e-02,\n", " -1.8808e-01, -2.0158e-01, 3.6178e-01, -9.5802e-02, -1.2708e-01,\n", " 1.0763e-01, -5.5428e-02, 1.1961e-01, 2.4258e-01, -2.8356e-01,\n", " -2.4466e-01, -1.7622e-01, -6.5579e-02, 1.2709e-01, 4.5320e-02,\n", " 9.7881e-02, 2.9991e-01, 2.2304e-01, -3.3725e-01, -7.2100e-02,\n", " -1.7546e-01, -2.9953e-01, 4.6157e-02, -1.5875e-01, -2.6537e-01,\n", " 3.2382e-01, 9.5382e-03, 2.2192e-01, -2.5515e-01, -4.1426e-01,\n", " -9.4852e-02, -4.9565e-02, 1.5019e-01, 2.4926e-01, 1.9148e-01,\n", " -5.3635e-01, -1.5326e-01, 1.6425e-01, -3.9051e-01]],\n", "\n", " [[ 3.0083e-01, -3.0158e-01, -2.8431e-02, 7.8782e-01, 2.3501e-02,\n", " 9.2542e-02, 3.9450e-01, -6.1034e-03, 2.4454e-01, -3.1812e-01,\n", " 2.2186e-01, 1.3691e-01, 2.2964e-01, -3.7366e-01, 4.4578e-01,\n", " 1.5186e-01, 2.7236e-02, 4.9386e-02, 2.2214e-01, -8.3106e-02,\n", " -2.9856e-01, -4.7007e-02, 2.0091e-01, -2.0271e-01, 2.0945e-01,\n", " -1.2809e-01, -3.7861e-01, -1.3235e-01, 3.6467e-02, -2.1870e-01,\n", " -1.0883e-01, -1.7587e-01, 4.0160e-01, 4.2037e-01, 4.8252e-02,\n", " 2.8059e-01, -4.1559e-01, 6.3770e-01, 3.2591e-01, 9.4536e-02,\n", " -2.2653e-02, -3.4345e-02, 1.8139e-01, -1.6369e-01, 4.0315e-02,\n", " 3.9302e-01, 2.5815e-01, -1.6280e-01, 3.2198e-01, 3.0073e-01,\n", " 1.7263e-02, -4.5440e-02, 2.6601e-01, -5.0357e-01, -4.8120e-02,\n", " -1.4780e-01, 2.7241e-02, -1.4115e-01, -8.8778e-03, 6.6657e-01,\n", " -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\n", " [ 6.7260e-02, 1.2996e-01, 1.1819e-01, -2.0483e-01, -5.4274e-01,\n", " -1.1038e-01, 2.4815e-02, 6.9911e-02, -1.4384e-01, -3.7275e-01,\n", " -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\n", " 5.1307e-01, 2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\n", " -3.0653e-01, -2.0400e-01, 3.5982e-01, 4.9754e-01, 1.0173e-01,\n", " -4.0342e-01, 4.9540e-01, 2.5269e-01, 7.8506e-02, -2.3170e-02,\n", " 1.8902e-01, 3.7163e-01, -1.1237e-01, 6.6350e-01, -5.1017e-01,\n", " 6.4472e-02, -5.7414e-02, -8.7294e-02, 2.0384e-02, -2.6563e-02,\n", " 1.7521e-01, 6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\n", " -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\n", " 3.3169e-01, 2.3594e-01, 3.5904e-02, -4.0302e-01, -3.1485e-01,\n", " 3.4287e-01, 1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\n", " -6.8716e-01, 5.1406e-02, 2.5545e-01, 2.5696e-01]],\n", "\n", " [[-2.0629e-01, -3.7659e-01, 4.5863e-02, 5.3217e-01, -1.2700e-01,\n", " -1.4886e-01, 1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\n", " 4.2041e-01, -1.8544e-01, 4.3391e-01, -6.7537e-02, 1.9093e-01,\n", " -5.8209e-01, -2.1247e-02, 2.4594e-01, 3.7686e-01, 3.0338e-02,\n", " -4.1501e-01, 1.7103e-01, 1.6851e-02, -1.5981e-01, 2.9293e-01,\n", " -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\n", " -1.8605e-01, 1.2303e-01, 6.8677e-01, 3.3999e-01, 2.9310e-01,\n", " 3.4023e-01, -1.6655e-01, 6.5662e-01, 4.0671e-01, -2.8659e-01,\n", " -4.9588e-01, 1.6012e-01, 2.7112e-01, 2.1752e-01, -3.7658e-01,\n", " 3.0657e-01, 1.9236e-01, -4.6345e-01, 1.7681e-01, 9.2185e-02,\n", " -1.5306e-01, -4.8642e-01, 5.8779e-01, -6.4074e-01, 2.2483e-01,\n", " -1.0579e-01, 4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\n", " -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\n", " [ 1.0529e-02, 3.5908e-01, 2.3312e-01, 1.9650e-01, -5.9675e-02,\n", " -1.5658e-01, 1.6122e-01, 1.8782e-01, -1.9782e-01, -2.5424e-01,\n", " -2.2587e-01, 1.1983e-01, 5.4116e-02, -4.3192e-01, -2.1338e-01,\n", " 5.8897e-01, 4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\n", " -5.1517e-01, -5.5736e-02, 1.4217e-01, 5.7948e-01, -1.6698e-01,\n", " -1.8354e-01, 2.5574e-01, 9.2582e-02, -1.5009e-01, -1.5141e-01,\n", " 6.2154e-02, 1.9030e-01, 5.2375e-02, 3.0264e-01, -4.0980e-01,\n", " 9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\n", " 1.7333e-01, 1.3659e-02, 4.6606e-02, -6.6266e-01, 2.8069e-01,\n", " 2.4609e-01, 5.7418e-02, 3.7632e-01, 2.5864e-01, 1.4679e-01,\n", " 4.4736e-01, 4.5973e-01, 8.1457e-02, -5.2304e-01, -4.5289e-01,\n", " 1.7003e-01, 2.5693e-01, -3.7473e-01, 1.5084e-01, 3.6457e-01,\n", " -4.0353e-02, -6.3108e-02, 9.9259e-02, 1.4259e-01]],\n", "\n", " [[ 9.5497e-02, -4.1627e-01, 2.8029e-02, 4.1203e-01, -6.8130e-03,\n", " -2.8840e-01, 3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\n", " 3.4702e-01, -3.8960e-02, 5.7625e-01, -1.9183e-01, 2.6033e-01,\n", " -4.3174e-01, 3.1093e-02, -1.8470e-01, 6.3293e-01, -5.6075e-02,\n", " -5.1161e-01, -9.4454e-02, 1.5921e-01, -1.8132e-01, -1.6253e-01,\n", " 1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\n", " -1.6154e-01, 2.0733e-01, 7.0576e-01, 1.3302e-01, -2.9825e-01,\n", " 2.0994e-01, -5.3865e-02, 3.8838e-01, 4.2451e-01, -5.2417e-01,\n", " -5.0814e-01, 2.6738e-01, 3.7351e-01, 5.8097e-01, -6.1178e-01,\n", " 2.2877e-01, 2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\n", " 1.4218e-01, -3.0955e-01, 4.6556e-01, -1.5831e-01, -2.1650e-01,\n", " 3.8367e-02, 4.2855e-01, 1.9128e-01, 3.8580e-01, 1.1959e-01,\n", " -2.9994e-01, -5.2117e-01, 2.1471e-01, -5.7907e-01],\n", " [-1.0411e-01, -5.0381e-02, 2.7471e-01, 4.8769e-01, 1.4239e-01,\n", " 2.6347e-01, 5.2876e-01, 1.4041e-01, -2.0420e-01, 2.7689e-01,\n", " -6.2801e-01, 5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\n", " 3.9456e-01, 2.7023e-01, -3.4516e-02, 7.8912e-02, -1.1492e-01,\n", " -2.2979e-01, -1.7854e-01, 4.5892e-01, 2.8441e-01, -1.0770e-01,\n", " 1.6266e-01, 1.1944e-01, 3.1096e-01, -3.3360e-01, -6.6498e-02,\n", " 1.4587e-01, 3.4419e-01, -5.3772e-04, 4.5331e-01, -5.1342e-01,\n", " 1.3568e-01, 9.8949e-02, -8.0940e-02, 3.8612e-01, -1.3356e-01,\n", " -1.0952e-01, 3.4308e-01, 1.8789e-01, 8.1325e-02, 9.0352e-02,\n", " 2.2188e-01, 1.5698e-01, -2.0673e-01, 6.6451e-02, -2.0891e-01,\n", " 1.9172e-01, 4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\n", " 2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01, 2.5902e-01,\n", " -6.0417e-03, -4.4415e-01, 3.1402e-01, 3.1877e-01]],\n", "\n", " [[-2.6335e-03, -2.3985e-01, -3.4736e-02, 8.8921e-02, -2.9755e-01,\n", " -1.8779e-01, 2.6080e-01, -4.0660e-01, 2.4273e-01, -2.0277e-01,\n", " -4.9214e-02, 9.4251e-02, -1.2161e-01, 1.5997e-01, 2.0561e-01,\n", " 1.5723e-01, -1.9595e-01, -4.2922e-01, 7.0747e-02, 1.4856e-01,\n", " -1.5354e-01, 9.6606e-02, 1.7886e-01, -3.8590e-01, -2.9419e-01,\n", " 2.1776e-01, 2.6294e-02, -4.5975e-02, 2.0144e-02, -3.3976e-01,\n", " -3.2033e-02, 1.9865e-01, 5.3036e-01, 1.5295e-01, -9.2089e-02,\n", " 4.3739e-01, 3.6364e-01, 3.4489e-01, 2.7756e-01, -2.2295e-01,\n", " -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\n", " 2.5772e-01, -1.0638e-01, -7.3814e-02, 4.7898e-01, -1.9344e-01,\n", " 4.6140e-02, 1.3491e-02, 2.5996e-01, 2.2740e-01, -3.2146e-01,\n", " -5.9065e-02, -4.3176e-01, 2.7157e-01, 3.1781e-01, 1.6585e-01,\n", " -3.8220e-01, -4.3346e-01, -5.1061e-01, 1.0843e-01],\n", " [ 9.6994e-02, -1.7331e-01, 2.1172e-01, 5.1296e-01, -2.1837e-01,\n", " -1.5871e-02, 4.7803e-01, 1.5512e-01, -4.9505e-01, 2.5299e-03,\n", " -6.7146e-01, 4.0029e-01, -6.4332e-02, 1.3088e-01, 3.7229e-02,\n", " 2.5459e-01, 7.3664e-01, -5.0367e-01, 1.3755e-01, -1.3922e-01,\n", " -2.4012e-01, 2.2718e-02, 3.1692e-01, -1.0521e-01, 3.7480e-01,\n", " -1.3657e-01, -2.5329e-01, 5.7562e-01, -5.2170e-02, -2.5802e-01,\n", " 2.7986e-01, 2.3848e-01, 1.4237e-01, 5.9374e-01, -3.3590e-01,\n", " 1.4647e-01, -6.6258e-02, 1.5446e-01, 3.4899e-01, 1.8101e-01,\n", " -3.1963e-01, 1.2350e-01, 3.3166e-01, -2.9319e-01, -3.6108e-01,\n", " 3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03, 1.3249e-02,\n", " -2.0109e-01, 1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\n", " 1.2868e-01, 3.8556e-01, -4.1688e-01, -3.0117e-02, 1.9605e-01,\n", " -4.5693e-01, -4.9675e-01, 2.4458e-01, 2.3623e-01]],\n", "\n", " [[-1.6365e-01, -2.7898e-01, 2.1363e-01, 2.3062e-01, -1.4550e-01,\n", " 1.6778e-02, 4.2505e-02, -4.5946e-01, 2.4220e-01, -1.9533e-01,\n", " -1.5048e-01, 6.5674e-02, -3.3663e-01, 1.4862e-01, -3.8167e-02,\n", " 3.1526e-01, -2.9041e-02, -6.7158e-02, 6.2756e-02, -1.9502e-01,\n", " -7.9184e-02, -1.7278e-01, 1.4336e-01, -3.5072e-01, 1.5444e-01,\n", " -4.2982e-01, 5.2977e-01, 7.5553e-02, -4.6632e-01, -3.8594e-01,\n", " 2.5318e-01, 2.7747e-01, 4.8115e-01, 7.4816e-03, -2.9260e-01,\n", " -2.1384e-02, -3.1256e-01, 2.7800e-01, 3.9665e-01, -1.6654e-01,\n", " -3.9723e-01, -4.7709e-01, -6.2903e-01, 2.2307e-01, 4.1874e-02,\n", " 2.0719e-01, 6.7764e-02, 3.2923e-01, 4.4065e-01, 1.6063e-01,\n", " 1.4556e-01, 2.5320e-01, 3.6555e-01, -1.1610e-01, -4.0548e-02,\n", " 2.6207e-01, -2.5660e-01, 2.5825e-01, 5.6414e-01, 4.1154e-01,\n", " -2.1353e-02, -6.4984e-02, 3.0729e-01, -3.8730e-01],\n", " [ 5.4114e-02, 1.2911e-01, 1.1079e-01, 2.1384e-01, -3.7324e-02,\n", " 2.1465e-04, 1.8886e-01, 2.1697e-01, 2.6679e-01, 3.3500e-01,\n", " -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02, 9.6619e-02,\n", " 1.5960e-01, 4.1786e-01, -4.3850e-01, 2.8198e-01, -4.6615e-01,\n", " 1.4454e-01, 6.5908e-02, 8.5281e-02, -4.2819e-02, 5.0067e-01,\n", " 1.7017e-01, -2.7224e-01, 2.5380e-01, 4.1439e-02, -3.5470e-01,\n", " 1.9666e-01, -1.9875e-01, -9.2995e-03, 3.5348e-01, 4.8985e-02,\n", " 1.6634e-01, 2.1250e-01, 1.6368e-01, -2.9762e-01, -1.7645e-01,\n", " -4.1179e-01, 3.5149e-01, 2.2540e-01, 2.3828e-02, -1.3123e-01,\n", " 2.8975e-01, 1.1899e-01, 1.6702e-01, 1.7360e-01, 1.4900e-01,\n", " -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\n", " -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01, 4.7001e-01,\n", " -4.0074e-01, -5.6701e-01, -3.2914e-01, 2.7732e-01]],\n", "\n", " [[-4.0713e-01, 4.5937e-01, -1.6181e-01, 4.3321e-02, 1.1174e-01,\n", " -6.1644e-01, -5.7113e-01, -5.0487e-01, 3.5190e-01, 4.1288e-02,\n", " -2.7544e-01, -4.4448e-02, -2.5642e-01, 6.6191e-01, -1.8626e-01,\n", " -5.6468e-02, -7.5144e-02, 6.2824e-01, 4.6276e-01, -3.3513e-01,\n", " -3.5146e-01, -1.9119e-01, 8.3969e-02, -2.7791e-01, 2.1230e-01,\n", " -3.5122e-01, 3.3878e-01, 4.5148e-01, -1.3567e-01, -3.3026e-01,\n", " 5.8611e-01, -3.8844e-01, 2.9644e-01, -1.6744e-01, 4.0907e-02,\n", " 7.5437e-03, -1.6675e-01, 2.5426e-01, 3.3875e-01, 7.0346e-02,\n", " 7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\n", " 5.3298e-02, -5.7836e-02, 3.7722e-02, 4.2650e-01, 3.8631e-01,\n", " -2.0902e-01, 4.5654e-01, -1.7730e-01, -4.1286e-01, 2.1224e-02,\n", " 2.3993e-01, -6.1541e-01, 5.8383e-01, 3.3904e-01, 2.5489e-01,\n", " -5.3822e-01, -5.1609e-03, 7.5159e-02, -5.2072e-01],\n", " [-1.6287e-01, -1.2638e-02, 2.4461e-01, 4.2238e-01, -7.5080e-02,\n", " 6.8997e-02, 5.9353e-02, -4.6653e-01, 2.5298e-01, 2.6466e-01,\n", " -2.6296e-01, -2.3991e-02, -3.3667e-01, 2.0203e-02, -1.0276e-01,\n", " 3.0682e-01, 3.8102e-01, -1.4313e-01, 2.6840e-01, -5.8352e-01,\n", " -1.3001e-02, -2.0605e-01, 1.3328e-01, -3.5768e-02, 5.0879e-01,\n", " -4.9018e-01, 3.4093e-01, 2.6714e-01, -4.5952e-01, -3.8416e-01,\n", " 3.6284e-01, 2.4918e-03, 2.9864e-01, 7.5558e-02, -2.7992e-01,\n", " -1.2603e-01, -4.7697e-01, 2.0969e-01, 4.8302e-02, -1.4302e-01,\n", " -4.7573e-01, -2.2340e-01, -3.0772e-01, 4.1387e-01, 1.2074e-01,\n", " 2.5394e-01, 1.6521e-01, 4.2968e-01, 3.1515e-01, 3.1856e-01,\n", " 2.1915e-02, -3.8564e-02, 6.7546e-02, -6.3149e-01, 4.9406e-02,\n", " 1.7295e-01, -1.1359e-01, -1.2223e-01, 4.0665e-01, 5.6251e-01,\n", " 9.3645e-04, -1.5734e-01, 3.2205e-01, -3.8656e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([6, 7])\n", "dec_state: tensor([[[-0.2606, 0.0464, 0.3562, -0.0849, 0.0625, -0.4843, -0.4120,\n", " -0.4082, 0.3085, 0.0470, 0.2194, -0.2052, 0.3182, 0.1767,\n", " -0.1194, -0.3420, -0.3663, 0.4664, 0.4547, 0.0669, -0.2906,\n", " 0.1184, 0.1475, -0.2458, 0.1952, 0.0510, 0.3705, 0.2574,\n", " -0.2187, -0.4377, 0.4639, -0.2281, 0.4792, 0.0243, 0.1534,\n", " 0.2938, 0.2513, -0.1384, -0.4162, 0.1054, -0.0919, -0.8086,\n", " -0.1805, -0.3550, -0.5276, 0.0119, -0.2133, -0.1668, 0.5406,\n", " 0.2409, -0.0066, 0.1420, 0.0930, -0.0078, -0.3657, 0.2010,\n", " -0.1447, 0.0157, 0.2927, -0.0389, 0.0453, 0.3613, -0.3915,\n", " -0.0681],\n", " [-0.1196, 0.2789, -0.0505, 0.5068, -0.2511, -0.0943, -0.1242,\n", " -0.2902, 0.0580, -0.0632, 0.0090, -0.5610, 0.1224, 0.2306,\n", " -0.3030, 0.2470, 0.0691, -0.0190, -0.2213, 0.2997, 0.2981,\n", " -0.5748, -0.1786, 0.5018, 0.1943, -0.0842, 0.2972, -0.3749,\n", " -0.5596, -0.7313, -0.3436, -0.2983, 0.5639, 0.2330, -0.3734,\n", " 0.5625, -0.5990, -0.4569, 0.6076, -0.0471, 0.4958, -0.3008,\n", " -0.0544, 0.6296, -0.2982, -0.3731, 0.2267, 0.0170, 0.4680,\n", " 0.4412, 0.1330, 0.4534, 0.4653, -0.4821, -0.5429, -0.2952,\n", " 0.0369, 0.3374, -0.0653, -0.1261, -0.2568, 0.2462, -0.5533,\n", " 0.5980]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.3727e-01, 7.2181e-02, -4.8407e-02, 3.9534e-01, 1.7992e-01,\n", " 1.4430e-01, 1.3021e-01, -5.1874e-01, 9.1039e-02, -1.9068e-01,\n", " 2.6788e-01, 2.2892e-02, -8.0218e-02, 2.0840e-01, 1.3134e-01,\n", " 2.3112e-01, 4.3599e-02, -2.9930e-01, 2.1027e-01, -3.4507e-02,\n", " -8.8752e-02, -1.4755e-01, 6.6381e-02, -3.3483e-01, -7.0215e-02,\n", " 4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\n", " 1.1633e-01, -2.9537e-01, 5.5430e-02, 5.4464e-02, -4.3290e-02,\n", " 7.1843e-02, -3.4024e-01, -3.7712e-02, 2.8614e-01, -6.0731e-02,\n", " -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\n", " 3.7795e-01, -1.3003e-01, 1.7851e-01, 2.4400e-01, -3.0191e-01,\n", " 4.8482e-01, 2.6197e-01, 2.3043e-01, -4.2391e-01, -8.0003e-02,\n", " 2.5831e-01, -3.1049e-01, 1.7894e-01, 2.2598e-01, 1.0081e-01,\n", " -2.7511e-01, 7.8730e-02, -2.0066e-01, -1.5597e-01],\n", " [ 2.5820e-01, 1.9188e-01, 4.7999e-01, 6.9774e-02, -2.0267e-01,\n", " 3.7522e-01, -8.6744e-02, 2.5228e-01, -1.2846e-01, 1.0590e-01,\n", " -2.7586e-01, 1.0311e-01, 1.1307e-01, -1.0545e-01, 2.9488e-01,\n", " 5.4775e-01, -1.6711e-01, 4.6806e-02, -2.4186e-01, -3.5100e-01,\n", " -2.9758e-01, -3.1168e-01, 1.9277e-01, 1.4047e-01, -7.5636e-02,\n", " -1.8808e-01, -2.0158e-01, 3.6178e-01, -9.5802e-02, -1.2708e-01,\n", " 1.0763e-01, -5.5428e-02, 1.1961e-01, 2.4258e-01, -2.8356e-01,\n", " -2.4466e-01, -1.7622e-01, -6.5579e-02, 1.2709e-01, 4.5320e-02,\n", " 9.7881e-02, 2.9991e-01, 2.2304e-01, -3.3725e-01, -7.2100e-02,\n", " -1.7546e-01, -2.9953e-01, 4.6157e-02, -1.5875e-01, -2.6537e-01,\n", " 3.2382e-01, 9.5382e-03, 2.2192e-01, -2.5515e-01, -4.1426e-01,\n", " -9.4852e-02, -4.9565e-02, 1.5019e-01, 2.4926e-01, 1.9148e-01,\n", " -5.3635e-01, -1.5326e-01, 1.6425e-01, -3.9051e-01]],\n", "\n", " [[ 3.0083e-01, -3.0158e-01, -2.8431e-02, 7.8782e-01, 2.3501e-02,\n", " 9.2542e-02, 3.9450e-01, -6.1034e-03, 2.4454e-01, -3.1812e-01,\n", " 2.2186e-01, 1.3691e-01, 2.2964e-01, -3.7366e-01, 4.4578e-01,\n", " 1.5186e-01, 2.7236e-02, 4.9386e-02, 2.2214e-01, -8.3106e-02,\n", " -2.9856e-01, -4.7007e-02, 2.0091e-01, -2.0271e-01, 2.0945e-01,\n", " -1.2809e-01, -3.7861e-01, -1.3235e-01, 3.6467e-02, -2.1870e-01,\n", " -1.0883e-01, -1.7587e-01, 4.0160e-01, 4.2037e-01, 4.8252e-02,\n", " 2.8059e-01, -4.1559e-01, 6.3770e-01, 3.2591e-01, 9.4536e-02,\n", " -2.2653e-02, -3.4345e-02, 1.8139e-01, -1.6369e-01, 4.0315e-02,\n", " 3.9302e-01, 2.5815e-01, -1.6280e-01, 3.2198e-01, 3.0073e-01,\n", " 1.7263e-02, -4.5440e-02, 2.6601e-01, -5.0357e-01, -4.8120e-02,\n", " -1.4780e-01, 2.7241e-02, -1.4115e-01, -8.8778e-03, 6.6657e-01,\n", " -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\n", " [ 6.7260e-02, 1.2996e-01, 1.1819e-01, -2.0483e-01, -5.4274e-01,\n", " -1.1038e-01, 2.4815e-02, 6.9911e-02, -1.4384e-01, -3.7275e-01,\n", " -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\n", " 5.1307e-01, 2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\n", " -3.0653e-01, -2.0400e-01, 3.5982e-01, 4.9754e-01, 1.0173e-01,\n", " -4.0342e-01, 4.9540e-01, 2.5269e-01, 7.8506e-02, -2.3170e-02,\n", " 1.8902e-01, 3.7163e-01, -1.1237e-01, 6.6350e-01, -5.1017e-01,\n", " 6.4472e-02, -5.7414e-02, -8.7294e-02, 2.0384e-02, -2.6563e-02,\n", " 1.7521e-01, 6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\n", " -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\n", " 3.3169e-01, 2.3594e-01, 3.5904e-02, -4.0302e-01, -3.1485e-01,\n", " 3.4287e-01, 1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\n", " -6.8716e-01, 5.1406e-02, 2.5545e-01, 2.5696e-01]],\n", "\n", " [[-2.0629e-01, -3.7659e-01, 4.5863e-02, 5.3217e-01, -1.2700e-01,\n", " -1.4886e-01, 1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\n", " 4.2041e-01, -1.8544e-01, 4.3391e-01, -6.7537e-02, 1.9093e-01,\n", " -5.8209e-01, -2.1247e-02, 2.4594e-01, 3.7686e-01, 3.0338e-02,\n", " -4.1501e-01, 1.7103e-01, 1.6851e-02, -1.5981e-01, 2.9293e-01,\n", " -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\n", " -1.8605e-01, 1.2303e-01, 6.8677e-01, 3.3999e-01, 2.9310e-01,\n", " 3.4023e-01, -1.6655e-01, 6.5662e-01, 4.0671e-01, -2.8659e-01,\n", " -4.9588e-01, 1.6012e-01, 2.7112e-01, 2.1752e-01, -3.7658e-01,\n", " 3.0657e-01, 1.9236e-01, -4.6345e-01, 1.7681e-01, 9.2185e-02,\n", " -1.5306e-01, -4.8642e-01, 5.8779e-01, -6.4074e-01, 2.2483e-01,\n", " -1.0579e-01, 4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\n", " -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\n", " [ 1.0529e-02, 3.5908e-01, 2.3312e-01, 1.9650e-01, -5.9675e-02,\n", " -1.5658e-01, 1.6122e-01, 1.8782e-01, -1.9782e-01, -2.5424e-01,\n", " -2.2587e-01, 1.1983e-01, 5.4116e-02, -4.3192e-01, -2.1338e-01,\n", " 5.8897e-01, 4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\n", " -5.1517e-01, -5.5736e-02, 1.4217e-01, 5.7948e-01, -1.6698e-01,\n", " -1.8354e-01, 2.5574e-01, 9.2582e-02, -1.5009e-01, -1.5141e-01,\n", " 6.2154e-02, 1.9030e-01, 5.2375e-02, 3.0264e-01, -4.0980e-01,\n", " 9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\n", " 1.7333e-01, 1.3659e-02, 4.6606e-02, -6.6266e-01, 2.8069e-01,\n", " 2.4609e-01, 5.7418e-02, 3.7632e-01, 2.5864e-01, 1.4679e-01,\n", " 4.4736e-01, 4.5973e-01, 8.1457e-02, -5.2304e-01, -4.5289e-01,\n", " 1.7003e-01, 2.5693e-01, -3.7473e-01, 1.5084e-01, 3.6457e-01,\n", " -4.0353e-02, -6.3108e-02, 9.9259e-02, 1.4259e-01]],\n", "\n", " [[ 9.5497e-02, -4.1627e-01, 2.8029e-02, 4.1203e-01, -6.8130e-03,\n", " -2.8840e-01, 3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\n", " 3.4702e-01, -3.8960e-02, 5.7625e-01, -1.9183e-01, 2.6033e-01,\n", " -4.3174e-01, 3.1093e-02, -1.8470e-01, 6.3293e-01, -5.6075e-02,\n", " -5.1161e-01, -9.4454e-02, 1.5921e-01, -1.8132e-01, -1.6253e-01,\n", " 1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\n", " -1.6154e-01, 2.0733e-01, 7.0576e-01, 1.3302e-01, -2.9825e-01,\n", " 2.0994e-01, -5.3865e-02, 3.8838e-01, 4.2451e-01, -5.2417e-01,\n", " -5.0814e-01, 2.6738e-01, 3.7351e-01, 5.8097e-01, -6.1178e-01,\n", " 2.2877e-01, 2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\n", " 1.4218e-01, -3.0955e-01, 4.6556e-01, -1.5831e-01, -2.1650e-01,\n", " 3.8367e-02, 4.2855e-01, 1.9128e-01, 3.8580e-01, 1.1959e-01,\n", " -2.9994e-01, -5.2117e-01, 2.1471e-01, -5.7907e-01],\n", " [-1.0411e-01, -5.0381e-02, 2.7471e-01, 4.8769e-01, 1.4239e-01,\n", " 2.6347e-01, 5.2876e-01, 1.4041e-01, -2.0420e-01, 2.7689e-01,\n", " -6.2801e-01, 5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\n", " 3.9456e-01, 2.7023e-01, -3.4516e-02, 7.8912e-02, -1.1492e-01,\n", " -2.2979e-01, -1.7854e-01, 4.5892e-01, 2.8441e-01, -1.0770e-01,\n", " 1.6266e-01, 1.1944e-01, 3.1096e-01, -3.3360e-01, -6.6498e-02,\n", " 1.4587e-01, 3.4419e-01, -5.3772e-04, 4.5331e-01, -5.1342e-01,\n", " 1.3568e-01, 9.8949e-02, -8.0940e-02, 3.8612e-01, -1.3356e-01,\n", " -1.0952e-01, 3.4308e-01, 1.8789e-01, 8.1325e-02, 9.0352e-02,\n", " 2.2188e-01, 1.5698e-01, -2.0673e-01, 6.6451e-02, -2.0891e-01,\n", " 1.9172e-01, 4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\n", " 2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01, 2.5902e-01,\n", " -6.0417e-03, -4.4415e-01, 3.1402e-01, 3.1877e-01]],\n", "\n", " [[-2.6335e-03, -2.3985e-01, -3.4736e-02, 8.8921e-02, -2.9755e-01,\n", " -1.8779e-01, 2.6080e-01, -4.0660e-01, 2.4273e-01, -2.0277e-01,\n", " -4.9214e-02, 9.4251e-02, -1.2161e-01, 1.5997e-01, 2.0561e-01,\n", " 1.5723e-01, -1.9595e-01, -4.2922e-01, 7.0747e-02, 1.4856e-01,\n", " -1.5354e-01, 9.6606e-02, 1.7886e-01, -3.8590e-01, -2.9419e-01,\n", " 2.1776e-01, 2.6294e-02, -4.5975e-02, 2.0144e-02, -3.3976e-01,\n", " -3.2033e-02, 1.9865e-01, 5.3036e-01, 1.5295e-01, -9.2089e-02,\n", " 4.3739e-01, 3.6364e-01, 3.4489e-01, 2.7756e-01, -2.2295e-01,\n", " -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\n", " 2.5772e-01, -1.0638e-01, -7.3814e-02, 4.7898e-01, -1.9344e-01,\n", " 4.6140e-02, 1.3491e-02, 2.5996e-01, 2.2740e-01, -3.2146e-01,\n", " -5.9065e-02, -4.3176e-01, 2.7157e-01, 3.1781e-01, 1.6585e-01,\n", " -3.8220e-01, -4.3346e-01, -5.1061e-01, 1.0843e-01],\n", " [ 9.6994e-02, -1.7331e-01, 2.1172e-01, 5.1296e-01, -2.1837e-01,\n", " -1.5871e-02, 4.7803e-01, 1.5512e-01, -4.9505e-01, 2.5299e-03,\n", " -6.7146e-01, 4.0029e-01, -6.4332e-02, 1.3088e-01, 3.7229e-02,\n", " 2.5459e-01, 7.3664e-01, -5.0367e-01, 1.3755e-01, -1.3922e-01,\n", " -2.4012e-01, 2.2718e-02, 3.1692e-01, -1.0521e-01, 3.7480e-01,\n", " -1.3657e-01, -2.5329e-01, 5.7562e-01, -5.2170e-02, -2.5802e-01,\n", " 2.7986e-01, 2.3848e-01, 1.4237e-01, 5.9374e-01, -3.3590e-01,\n", " 1.4647e-01, -6.6258e-02, 1.5446e-01, 3.4899e-01, 1.8101e-01,\n", " -3.1963e-01, 1.2350e-01, 3.3166e-01, -2.9319e-01, -3.6108e-01,\n", " 3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03, 1.3249e-02,\n", " -2.0109e-01, 1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\n", " 1.2868e-01, 3.8556e-01, -4.1688e-01, -3.0117e-02, 1.9605e-01,\n", " -4.5693e-01, -4.9675e-01, 2.4458e-01, 2.3623e-01]],\n", "\n", " [[-1.6365e-01, -2.7898e-01, 2.1363e-01, 2.3062e-01, -1.4550e-01,\n", " 1.6778e-02, 4.2505e-02, -4.5946e-01, 2.4220e-01, -1.9533e-01,\n", " -1.5048e-01, 6.5674e-02, -3.3663e-01, 1.4862e-01, -3.8167e-02,\n", " 3.1526e-01, -2.9041e-02, -6.7158e-02, 6.2756e-02, -1.9502e-01,\n", " -7.9184e-02, -1.7278e-01, 1.4336e-01, -3.5072e-01, 1.5444e-01,\n", " -4.2982e-01, 5.2977e-01, 7.5553e-02, -4.6632e-01, -3.8594e-01,\n", " 2.5318e-01, 2.7747e-01, 4.8115e-01, 7.4816e-03, -2.9260e-01,\n", " -2.1384e-02, -3.1256e-01, 2.7800e-01, 3.9665e-01, -1.6654e-01,\n", " -3.9723e-01, -4.7709e-01, -6.2903e-01, 2.2307e-01, 4.1874e-02,\n", " 2.0719e-01, 6.7764e-02, 3.2923e-01, 4.4065e-01, 1.6063e-01,\n", " 1.4556e-01, 2.5320e-01, 3.6555e-01, -1.1610e-01, -4.0548e-02,\n", " 2.6207e-01, -2.5660e-01, 2.5825e-01, 5.6414e-01, 4.1154e-01,\n", " -2.1353e-02, -6.4984e-02, 3.0729e-01, -3.8730e-01],\n", " [ 5.4114e-02, 1.2911e-01, 1.1079e-01, 2.1384e-01, -3.7324e-02,\n", " 2.1465e-04, 1.8886e-01, 2.1697e-01, 2.6679e-01, 3.3500e-01,\n", " -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02, 9.6619e-02,\n", " 1.5960e-01, 4.1786e-01, -4.3850e-01, 2.8198e-01, -4.6615e-01,\n", " 1.4454e-01, 6.5908e-02, 8.5281e-02, -4.2819e-02, 5.0067e-01,\n", " 1.7017e-01, -2.7224e-01, 2.5380e-01, 4.1439e-02, -3.5470e-01,\n", " 1.9666e-01, -1.9875e-01, -9.2995e-03, 3.5348e-01, 4.8985e-02,\n", " 1.6634e-01, 2.1250e-01, 1.6368e-01, -2.9762e-01, -1.7645e-01,\n", " -4.1179e-01, 3.5149e-01, 2.2540e-01, 2.3828e-02, -1.3123e-01,\n", " 2.8975e-01, 1.1899e-01, 1.6702e-01, 1.7360e-01, 1.4900e-01,\n", " -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\n", " -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01, 4.7001e-01,\n", " -4.0074e-01, -5.6701e-01, -3.2914e-01, 2.7732e-01]],\n", "\n", " [[-4.0713e-01, 4.5937e-01, -1.6181e-01, 4.3321e-02, 1.1174e-01,\n", " -6.1644e-01, -5.7113e-01, -5.0487e-01, 3.5190e-01, 4.1288e-02,\n", " -2.7544e-01, -4.4448e-02, -2.5642e-01, 6.6191e-01, -1.8626e-01,\n", " -5.6468e-02, -7.5144e-02, 6.2824e-01, 4.6276e-01, -3.3513e-01,\n", " -3.5146e-01, -1.9119e-01, 8.3969e-02, -2.7791e-01, 2.1230e-01,\n", " -3.5122e-01, 3.3878e-01, 4.5148e-01, -1.3567e-01, -3.3026e-01,\n", " 5.8611e-01, -3.8844e-01, 2.9644e-01, -1.6744e-01, 4.0907e-02,\n", " 7.5437e-03, -1.6675e-01, 2.5426e-01, 3.3875e-01, 7.0346e-02,\n", " 7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\n", " 5.3298e-02, -5.7836e-02, 3.7722e-02, 4.2650e-01, 3.8631e-01,\n", " -2.0902e-01, 4.5654e-01, -1.7730e-01, -4.1286e-01, 2.1224e-02,\n", " 2.3993e-01, -6.1541e-01, 5.8383e-01, 3.3904e-01, 2.5489e-01,\n", " -5.3822e-01, -5.1609e-03, 7.5159e-02, -5.2072e-01],\n", " [-1.6287e-01, -1.2638e-02, 2.4461e-01, 4.2238e-01, -7.5080e-02,\n", " 6.8997e-02, 5.9353e-02, -4.6653e-01, 2.5298e-01, 2.6466e-01,\n", " -2.6296e-01, -2.3991e-02, -3.3667e-01, 2.0203e-02, -1.0276e-01,\n", " 3.0682e-01, 3.8102e-01, -1.4313e-01, 2.6840e-01, -5.8352e-01,\n", " -1.3001e-02, -2.0605e-01, 1.3328e-01, -3.5768e-02, 5.0879e-01,\n", " -4.9018e-01, 3.4093e-01, 2.6714e-01, -4.5952e-01, -3.8416e-01,\n", " 3.6284e-01, 2.4918e-03, 2.9864e-01, 7.5558e-02, -2.7992e-01,\n", " -1.2603e-01, -4.7697e-01, 2.0969e-01, 4.8302e-02, -1.4302e-01,\n", " -4.7573e-01, -2.2340e-01, -3.0772e-01, 4.1387e-01, 1.2074e-01,\n", " 2.5394e-01, 1.6521e-01, 4.2968e-01, 3.1515e-01, 3.1856e-01,\n", " 2.1915e-02, -3.8564e-02, 6.7546e-02, -6.3149e-01, 4.9406e-02,\n", " 1.7295e-01, -1.1359e-01, -1.2223e-01, 4.0665e-01, 5.6251e-01,\n", " 9.3645e-04, -1.5734e-01, 3.2205e-01, -3.8656e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([4, 5])\n", "dec_state: tensor([[[-7.3122e-02, 2.1349e-01, -1.5687e-02, 1.6140e-01, -3.7981e-01,\n", " -7.3731e-02, -2.4507e-01, 3.5477e-02, -1.9791e-01, -1.9202e-01,\n", " 8.3416e-02, -3.0577e-01, 3.6331e-01, -1.1640e-01, -1.7947e-01,\n", " -7.7293e-02, -1.4959e-01, 2.4400e-01, 1.2366e-01, 3.5198e-01,\n", " -2.2277e-01, -5.4565e-04, 2.7144e-01, -3.0479e-02, 2.6800e-01,\n", " -2.7935e-01, 4.8100e-01, -4.5645e-02, -4.2913e-01, -4.8222e-01,\n", " -3.3775e-01, -3.4005e-01, 2.1245e-01, 1.1891e-01, 3.8994e-01,\n", " 2.2567e-01, -1.1565e-01, -4.2135e-01, -5.1044e-01, 1.8653e-02,\n", " -1.3487e-01, -4.5489e-01, -9.5991e-03, -1.8432e-02, -6.2420e-02,\n", " -2.3272e-01, 6.3573e-02, 7.6899e-03, 2.3821e-01, 1.9799e-01,\n", " -6.3772e-02, -1.0639e-01, -1.6796e-02, -3.1376e-01, -3.9289e-03,\n", " -5.2649e-02, -8.3494e-02, -2.8480e-01, -5.0034e-01, 7.1398e-02,\n", " -3.3916e-01, 2.7070e-01, -4.4325e-01, -2.9993e-01],\n", " [-1.0017e-01, 4.9433e-01, -5.4139e-02, 3.8975e-01, -2.0642e-02,\n", " -3.8350e-01, -1.0092e-01, -3.7136e-01, -5.2797e-01, 3.6868e-01,\n", " 5.3909e-02, -3.2129e-01, 9.3475e-02, 3.6481e-01, -5.1083e-01,\n", " -4.0660e-01, 5.4595e-02, -1.2102e-01, 1.0773e-01, 4.3649e-01,\n", " 6.7414e-01, -5.6128e-01, 2.1415e-01, 5.8190e-01, -1.2566e-02,\n", " 1.3335e-01, 2.1101e-01, -2.1385e-01, -4.5524e-01, 5.0130e-02,\n", " -1.5088e-01, 4.7055e-01, 5.4512e-01, 5.6524e-01, -4.7211e-01,\n", " -6.4643e-02, 5.2698e-01, -1.0566e-01, 5.3683e-01, 2.1506e-01,\n", " -1.0762e-01, 4.0079e-02, 3.8521e-01, 1.0413e-01, -1.7351e-01,\n", " -3.4578e-02, 1.7495e-01, -9.7819e-02, 8.5982e-02, 2.1220e-01,\n", " -1.1716e-02, 3.4625e-01, 5.4778e-01, -4.6835e-01, -2.8386e-01,\n", " -1.1218e-01, -2.3354e-01, 4.9260e-01, 8.3014e-02, -3.9623e-01,\n", " -1.0815e-01, 1.8017e-01, -7.7416e-01, 6.9482e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.3727e-01, 7.2181e-02, -4.8407e-02, 3.9534e-01, 1.7992e-01,\n", " 1.4430e-01, 1.3021e-01, -5.1874e-01, 9.1039e-02, -1.9068e-01,\n", " 2.6788e-01, 2.2892e-02, -8.0218e-02, 2.0840e-01, 1.3134e-01,\n", " 2.3112e-01, 4.3599e-02, -2.9930e-01, 2.1027e-01, -3.4507e-02,\n", " -8.8752e-02, -1.4755e-01, 6.6381e-02, -3.3483e-01, -7.0215e-02,\n", " 4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\n", " 1.1633e-01, -2.9537e-01, 5.5430e-02, 5.4464e-02, -4.3290e-02,\n", " 7.1843e-02, -3.4024e-01, -3.7712e-02, 2.8614e-01, -6.0731e-02,\n", " -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\n", " 3.7795e-01, -1.3003e-01, 1.7851e-01, 2.4400e-01, -3.0191e-01,\n", " 4.8482e-01, 2.6197e-01, 2.3043e-01, -4.2391e-01, -8.0003e-02,\n", " 2.5831e-01, -3.1049e-01, 1.7894e-01, 2.2598e-01, 1.0081e-01,\n", " -2.7511e-01, 7.8730e-02, -2.0066e-01, -1.5597e-01],\n", " [ 2.5820e-01, 1.9188e-01, 4.7999e-01, 6.9774e-02, -2.0267e-01,\n", " 3.7522e-01, -8.6744e-02, 2.5228e-01, -1.2846e-01, 1.0590e-01,\n", " -2.7586e-01, 1.0311e-01, 1.1307e-01, -1.0545e-01, 2.9488e-01,\n", " 5.4775e-01, -1.6711e-01, 4.6806e-02, -2.4186e-01, -3.5100e-01,\n", " -2.9758e-01, -3.1168e-01, 1.9277e-01, 1.4047e-01, -7.5636e-02,\n", " -1.8808e-01, -2.0158e-01, 3.6178e-01, -9.5802e-02, -1.2708e-01,\n", " 1.0763e-01, -5.5428e-02, 1.1961e-01, 2.4258e-01, -2.8356e-01,\n", " -2.4466e-01, -1.7622e-01, -6.5579e-02, 1.2709e-01, 4.5320e-02,\n", " 9.7881e-02, 2.9991e-01, 2.2304e-01, -3.3725e-01, -7.2100e-02,\n", " -1.7546e-01, -2.9953e-01, 4.6157e-02, -1.5875e-01, -2.6537e-01,\n", " 3.2382e-01, 9.5382e-03, 2.2192e-01, -2.5515e-01, -4.1426e-01,\n", " -9.4852e-02, -4.9565e-02, 1.5019e-01, 2.4926e-01, 1.9148e-01,\n", " -5.3635e-01, -1.5326e-01, 1.6425e-01, -3.9051e-01]],\n", "\n", " [[ 3.0083e-01, -3.0158e-01, -2.8431e-02, 7.8782e-01, 2.3501e-02,\n", " 9.2542e-02, 3.9450e-01, -6.1034e-03, 2.4454e-01, -3.1812e-01,\n", " 2.2186e-01, 1.3691e-01, 2.2964e-01, -3.7366e-01, 4.4578e-01,\n", " 1.5186e-01, 2.7236e-02, 4.9386e-02, 2.2214e-01, -8.3106e-02,\n", " -2.9856e-01, -4.7007e-02, 2.0091e-01, -2.0271e-01, 2.0945e-01,\n", " -1.2809e-01, -3.7861e-01, -1.3235e-01, 3.6467e-02, -2.1870e-01,\n", " -1.0883e-01, -1.7587e-01, 4.0160e-01, 4.2037e-01, 4.8252e-02,\n", " 2.8059e-01, -4.1559e-01, 6.3770e-01, 3.2591e-01, 9.4536e-02,\n", " -2.2653e-02, -3.4345e-02, 1.8139e-01, -1.6369e-01, 4.0315e-02,\n", " 3.9302e-01, 2.5815e-01, -1.6280e-01, 3.2198e-01, 3.0073e-01,\n", " 1.7263e-02, -4.5440e-02, 2.6601e-01, -5.0357e-01, -4.8120e-02,\n", " -1.4780e-01, 2.7241e-02, -1.4115e-01, -8.8778e-03, 6.6657e-01,\n", " -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\n", " [ 6.7260e-02, 1.2996e-01, 1.1819e-01, -2.0483e-01, -5.4274e-01,\n", " -1.1038e-01, 2.4815e-02, 6.9911e-02, -1.4384e-01, -3.7275e-01,\n", " -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\n", " 5.1307e-01, 2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\n", " -3.0653e-01, -2.0400e-01, 3.5982e-01, 4.9754e-01, 1.0173e-01,\n", " -4.0342e-01, 4.9540e-01, 2.5269e-01, 7.8506e-02, -2.3170e-02,\n", " 1.8902e-01, 3.7163e-01, -1.1237e-01, 6.6350e-01, -5.1017e-01,\n", " 6.4472e-02, -5.7414e-02, -8.7294e-02, 2.0384e-02, -2.6563e-02,\n", " 1.7521e-01, 6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\n", " -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\n", " 3.3169e-01, 2.3594e-01, 3.5904e-02, -4.0302e-01, -3.1485e-01,\n", " 3.4287e-01, 1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\n", " -6.8716e-01, 5.1406e-02, 2.5545e-01, 2.5696e-01]],\n", "\n", " [[-2.0629e-01, -3.7659e-01, 4.5863e-02, 5.3217e-01, -1.2700e-01,\n", " -1.4886e-01, 1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\n", " 4.2041e-01, -1.8544e-01, 4.3391e-01, -6.7537e-02, 1.9093e-01,\n", " -5.8209e-01, -2.1247e-02, 2.4594e-01, 3.7686e-01, 3.0338e-02,\n", " -4.1501e-01, 1.7103e-01, 1.6851e-02, -1.5981e-01, 2.9293e-01,\n", " -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\n", " -1.8605e-01, 1.2303e-01, 6.8677e-01, 3.3999e-01, 2.9310e-01,\n", " 3.4023e-01, -1.6655e-01, 6.5662e-01, 4.0671e-01, -2.8659e-01,\n", " -4.9588e-01, 1.6012e-01, 2.7112e-01, 2.1752e-01, -3.7658e-01,\n", " 3.0657e-01, 1.9236e-01, -4.6345e-01, 1.7681e-01, 9.2185e-02,\n", " -1.5306e-01, -4.8642e-01, 5.8779e-01, -6.4074e-01, 2.2483e-01,\n", " -1.0579e-01, 4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\n", " -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\n", " [ 1.0529e-02, 3.5908e-01, 2.3312e-01, 1.9650e-01, -5.9675e-02,\n", " -1.5658e-01, 1.6122e-01, 1.8782e-01, -1.9782e-01, -2.5424e-01,\n", " -2.2587e-01, 1.1983e-01, 5.4116e-02, -4.3192e-01, -2.1338e-01,\n", " 5.8897e-01, 4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\n", " -5.1517e-01, -5.5736e-02, 1.4217e-01, 5.7948e-01, -1.6698e-01,\n", " -1.8354e-01, 2.5574e-01, 9.2582e-02, -1.5009e-01, -1.5141e-01,\n", " 6.2154e-02, 1.9030e-01, 5.2375e-02, 3.0264e-01, -4.0980e-01,\n", " 9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\n", " 1.7333e-01, 1.3659e-02, 4.6606e-02, -6.6266e-01, 2.8069e-01,\n", " 2.4609e-01, 5.7418e-02, 3.7632e-01, 2.5864e-01, 1.4679e-01,\n", " 4.4736e-01, 4.5973e-01, 8.1457e-02, -5.2304e-01, -4.5289e-01,\n", " 1.7003e-01, 2.5693e-01, -3.7473e-01, 1.5084e-01, 3.6457e-01,\n", " -4.0353e-02, -6.3108e-02, 9.9259e-02, 1.4259e-01]],\n", "\n", " [[ 9.5497e-02, -4.1627e-01, 2.8029e-02, 4.1203e-01, -6.8130e-03,\n", " -2.8840e-01, 3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\n", " 3.4702e-01, -3.8960e-02, 5.7625e-01, -1.9183e-01, 2.6033e-01,\n", " -4.3174e-01, 3.1093e-02, -1.8470e-01, 6.3293e-01, -5.6075e-02,\n", " -5.1161e-01, -9.4454e-02, 1.5921e-01, -1.8132e-01, -1.6253e-01,\n", " 1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\n", " -1.6154e-01, 2.0733e-01, 7.0576e-01, 1.3302e-01, -2.9825e-01,\n", " 2.0994e-01, -5.3865e-02, 3.8838e-01, 4.2451e-01, -5.2417e-01,\n", " -5.0814e-01, 2.6738e-01, 3.7351e-01, 5.8097e-01, -6.1178e-01,\n", " 2.2877e-01, 2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\n", " 1.4218e-01, -3.0955e-01, 4.6556e-01, -1.5831e-01, -2.1650e-01,\n", " 3.8367e-02, 4.2855e-01, 1.9128e-01, 3.8580e-01, 1.1959e-01,\n", " -2.9994e-01, -5.2117e-01, 2.1471e-01, -5.7907e-01],\n", " [-1.0411e-01, -5.0381e-02, 2.7471e-01, 4.8769e-01, 1.4239e-01,\n", " 2.6347e-01, 5.2876e-01, 1.4041e-01, -2.0420e-01, 2.7689e-01,\n", " -6.2801e-01, 5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\n", " 3.9456e-01, 2.7023e-01, -3.4516e-02, 7.8912e-02, -1.1492e-01,\n", " -2.2979e-01, -1.7854e-01, 4.5892e-01, 2.8441e-01, -1.0770e-01,\n", " 1.6266e-01, 1.1944e-01, 3.1096e-01, -3.3360e-01, -6.6498e-02,\n", " 1.4587e-01, 3.4419e-01, -5.3772e-04, 4.5331e-01, -5.1342e-01,\n", " 1.3568e-01, 9.8949e-02, -8.0940e-02, 3.8612e-01, -1.3356e-01,\n", " -1.0952e-01, 3.4308e-01, 1.8789e-01, 8.1325e-02, 9.0352e-02,\n", " 2.2188e-01, 1.5698e-01, -2.0673e-01, 6.6451e-02, -2.0891e-01,\n", " 1.9172e-01, 4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\n", " 2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01, 2.5902e-01,\n", " -6.0417e-03, -4.4415e-01, 3.1402e-01, 3.1877e-01]],\n", "\n", " [[-2.6335e-03, -2.3985e-01, -3.4736e-02, 8.8921e-02, -2.9755e-01,\n", " -1.8779e-01, 2.6080e-01, -4.0660e-01, 2.4273e-01, -2.0277e-01,\n", " -4.9214e-02, 9.4251e-02, -1.2161e-01, 1.5997e-01, 2.0561e-01,\n", " 1.5723e-01, -1.9595e-01, -4.2922e-01, 7.0747e-02, 1.4856e-01,\n", " -1.5354e-01, 9.6606e-02, 1.7886e-01, -3.8590e-01, -2.9419e-01,\n", " 2.1776e-01, 2.6294e-02, -4.5975e-02, 2.0144e-02, -3.3976e-01,\n", " -3.2033e-02, 1.9865e-01, 5.3036e-01, 1.5295e-01, -9.2089e-02,\n", " 4.3739e-01, 3.6364e-01, 3.4489e-01, 2.7756e-01, -2.2295e-01,\n", " -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\n", " 2.5772e-01, -1.0638e-01, -7.3814e-02, 4.7898e-01, -1.9344e-01,\n", " 4.6140e-02, 1.3491e-02, 2.5996e-01, 2.2740e-01, -3.2146e-01,\n", " -5.9065e-02, -4.3176e-01, 2.7157e-01, 3.1781e-01, 1.6585e-01,\n", " -3.8220e-01, -4.3346e-01, -5.1061e-01, 1.0843e-01],\n", " [ 9.6994e-02, -1.7331e-01, 2.1172e-01, 5.1296e-01, -2.1837e-01,\n", " -1.5871e-02, 4.7803e-01, 1.5512e-01, -4.9505e-01, 2.5299e-03,\n", " -6.7146e-01, 4.0029e-01, -6.4332e-02, 1.3088e-01, 3.7229e-02,\n", " 2.5459e-01, 7.3664e-01, -5.0367e-01, 1.3755e-01, -1.3922e-01,\n", " -2.4012e-01, 2.2718e-02, 3.1692e-01, -1.0521e-01, 3.7480e-01,\n", " -1.3657e-01, -2.5329e-01, 5.7562e-01, -5.2170e-02, -2.5802e-01,\n", " 2.7986e-01, 2.3848e-01, 1.4237e-01, 5.9374e-01, -3.3590e-01,\n", " 1.4647e-01, -6.6258e-02, 1.5446e-01, 3.4899e-01, 1.8101e-01,\n", " -3.1963e-01, 1.2350e-01, 3.3166e-01, -2.9319e-01, -3.6108e-01,\n", " 3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03, 1.3249e-02,\n", " -2.0109e-01, 1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\n", " 1.2868e-01, 3.8556e-01, -4.1688e-01, -3.0117e-02, 1.9605e-01,\n", " -4.5693e-01, -4.9675e-01, 2.4458e-01, 2.3623e-01]],\n", "\n", " [[-1.6365e-01, -2.7898e-01, 2.1363e-01, 2.3062e-01, -1.4550e-01,\n", " 1.6778e-02, 4.2505e-02, -4.5946e-01, 2.4220e-01, -1.9533e-01,\n", " -1.5048e-01, 6.5674e-02, -3.3663e-01, 1.4862e-01, -3.8167e-02,\n", " 3.1526e-01, -2.9041e-02, -6.7158e-02, 6.2756e-02, -1.9502e-01,\n", " -7.9184e-02, -1.7278e-01, 1.4336e-01, -3.5072e-01, 1.5444e-01,\n", " -4.2982e-01, 5.2977e-01, 7.5553e-02, -4.6632e-01, -3.8594e-01,\n", " 2.5318e-01, 2.7747e-01, 4.8115e-01, 7.4816e-03, -2.9260e-01,\n", " -2.1384e-02, -3.1256e-01, 2.7800e-01, 3.9665e-01, -1.6654e-01,\n", " -3.9723e-01, -4.7709e-01, -6.2903e-01, 2.2307e-01, 4.1874e-02,\n", " 2.0719e-01, 6.7764e-02, 3.2923e-01, 4.4065e-01, 1.6063e-01,\n", " 1.4556e-01, 2.5320e-01, 3.6555e-01, -1.1610e-01, -4.0548e-02,\n", " 2.6207e-01, -2.5660e-01, 2.5825e-01, 5.6414e-01, 4.1154e-01,\n", " -2.1353e-02, -6.4984e-02, 3.0729e-01, -3.8730e-01],\n", " [ 5.4114e-02, 1.2911e-01, 1.1079e-01, 2.1384e-01, -3.7324e-02,\n", " 2.1465e-04, 1.8886e-01, 2.1697e-01, 2.6679e-01, 3.3500e-01,\n", " -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02, 9.6619e-02,\n", " 1.5960e-01, 4.1786e-01, -4.3850e-01, 2.8198e-01, -4.6615e-01,\n", " 1.4454e-01, 6.5908e-02, 8.5281e-02, -4.2819e-02, 5.0067e-01,\n", " 1.7017e-01, -2.7224e-01, 2.5380e-01, 4.1439e-02, -3.5470e-01,\n", " 1.9666e-01, -1.9875e-01, -9.2995e-03, 3.5348e-01, 4.8985e-02,\n", " 1.6634e-01, 2.1250e-01, 1.6368e-01, -2.9762e-01, -1.7645e-01,\n", " -4.1179e-01, 3.5149e-01, 2.2540e-01, 2.3828e-02, -1.3123e-01,\n", " 2.8975e-01, 1.1899e-01, 1.6702e-01, 1.7360e-01, 1.4900e-01,\n", " -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\n", " -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01, 4.7001e-01,\n", " -4.0074e-01, -5.6701e-01, -3.2914e-01, 2.7732e-01]],\n", "\n", " [[-4.0713e-01, 4.5937e-01, -1.6181e-01, 4.3321e-02, 1.1174e-01,\n", " -6.1644e-01, -5.7113e-01, -5.0487e-01, 3.5190e-01, 4.1288e-02,\n", " -2.7544e-01, -4.4448e-02, -2.5642e-01, 6.6191e-01, -1.8626e-01,\n", " -5.6468e-02, -7.5144e-02, 6.2824e-01, 4.6276e-01, -3.3513e-01,\n", " -3.5146e-01, -1.9119e-01, 8.3969e-02, -2.7791e-01, 2.1230e-01,\n", " -3.5122e-01, 3.3878e-01, 4.5148e-01, -1.3567e-01, -3.3026e-01,\n", " 5.8611e-01, -3.8844e-01, 2.9644e-01, -1.6744e-01, 4.0907e-02,\n", " 7.5437e-03, -1.6675e-01, 2.5426e-01, 3.3875e-01, 7.0346e-02,\n", " 7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\n", " 5.3298e-02, -5.7836e-02, 3.7722e-02, 4.2650e-01, 3.8631e-01,\n", " -2.0902e-01, 4.5654e-01, -1.7730e-01, -4.1286e-01, 2.1224e-02,\n", " 2.3993e-01, -6.1541e-01, 5.8383e-01, 3.3904e-01, 2.5489e-01,\n", " -5.3822e-01, -5.1609e-03, 7.5159e-02, -5.2072e-01],\n", " [-1.6287e-01, -1.2638e-02, 2.4461e-01, 4.2238e-01, -7.5080e-02,\n", " 6.8997e-02, 5.9353e-02, -4.6653e-01, 2.5298e-01, 2.6466e-01,\n", " -2.6296e-01, -2.3991e-02, -3.3667e-01, 2.0203e-02, -1.0276e-01,\n", " 3.0682e-01, 3.8102e-01, -1.4313e-01, 2.6840e-01, -5.8352e-01,\n", " -1.3001e-02, -2.0605e-01, 1.3328e-01, -3.5768e-02, 5.0879e-01,\n", " -4.9018e-01, 3.4093e-01, 2.6714e-01, -4.5952e-01, -3.8416e-01,\n", " 3.6284e-01, 2.4918e-03, 2.9864e-01, 7.5558e-02, -2.7992e-01,\n", " -1.2603e-01, -4.7697e-01, 2.0969e-01, 4.8302e-02, -1.4302e-01,\n", " -4.7573e-01, -2.2340e-01, -3.0772e-01, 4.1387e-01, 1.2074e-01,\n", " 2.5394e-01, 1.6521e-01, 4.2968e-01, 3.1515e-01, 3.1856e-01,\n", " 2.1915e-02, -3.8564e-02, 6.7546e-02, -6.3149e-01, 4.9406e-02,\n", " 1.7295e-01, -1.1359e-01, -1.2223e-01, 4.0665e-01, 5.6251e-01,\n", " 9.3645e-04, -1.5734e-01, 3.2205e-01, -3.8656e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([ 9, 18])\n", "dec_state: tensor([[[ 0.1312, 0.2199, -0.1079, 0.1915, -0.2882, 0.0796, -0.0381,\n", " -0.1057, 0.0345, -0.2794, -0.0668, -0.4605, 0.0250, 0.0404,\n", " -0.1447, 0.3463, -0.2613, 0.4400, 0.0897, 0.4623, 0.2601,\n", " -0.1862, -0.0714, 0.1239, 0.0244, -0.6100, 0.1389, -0.1574,\n", " -0.5189, -0.3963, -0.1429, 0.0046, 0.0434, 0.1436, 0.0437,\n", " -0.1945, -0.1928, -0.4084, 0.1381, -0.3463, -0.2496, -0.2392,\n", " 0.1529, -0.1133, -0.2934, -0.2704, 0.0998, -0.0443, 0.3013,\n", " 0.3107, 0.0997, 0.2023, 0.3628, -0.4408, 0.2011, -0.3563,\n", " 0.2598, 0.1250, 0.0912, 0.1958, -0.1896, -0.0402, -0.5160,\n", " 0.3243],\n", " [ 0.0162, 0.3872, 0.0380, 0.0430, 0.2101, -0.2167, 0.3026,\n", " 0.0349, -0.6140, -0.0730, 0.0313, 0.1197, 0.3107, 0.1035,\n", " -0.6728, -0.6535, -0.1229, 0.1552, 0.2670, -0.2543, 0.6386,\n", " -0.3040, 0.2910, 0.4612, 0.4112, 0.3495, 0.4374, 0.1514,\n", " -0.6118, 0.2823, -0.0894, 0.1289, 0.2288, 0.6796, -0.2460,\n", " -0.4125, 0.5883, 0.1527, 0.4994, 0.1062, -0.2304, 0.4231,\n", " -0.1714, -0.2072, -0.3266, -0.0014, 0.3834, 0.0447, -0.0599,\n", " 0.3182, -0.0123, -0.3049, 0.6859, -0.1505, -0.5003, -0.2354,\n", " -0.0882, 0.6615, 0.2589, -0.6186, 0.3649, 0.2258, -0.0884,\n", " 0.0568]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.3727e-01, 7.2181e-02, -4.8407e-02, 3.9534e-01, 1.7992e-01,\n", " 1.4430e-01, 1.3021e-01, -5.1874e-01, 9.1039e-02, -1.9068e-01,\n", " 2.6788e-01, 2.2892e-02, -8.0218e-02, 2.0840e-01, 1.3134e-01,\n", " 2.3112e-01, 4.3599e-02, -2.9930e-01, 2.1027e-01, -3.4507e-02,\n", " -8.8752e-02, -1.4755e-01, 6.6381e-02, -3.3483e-01, -7.0215e-02,\n", " 4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\n", " 1.1633e-01, -2.9537e-01, 5.5430e-02, 5.4464e-02, -4.3290e-02,\n", " 7.1843e-02, -3.4024e-01, -3.7712e-02, 2.8614e-01, -6.0731e-02,\n", " -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\n", " 3.7795e-01, -1.3003e-01, 1.7851e-01, 2.4400e-01, -3.0191e-01,\n", " 4.8482e-01, 2.6197e-01, 2.3043e-01, -4.2391e-01, -8.0003e-02,\n", " 2.5831e-01, -3.1049e-01, 1.7894e-01, 2.2598e-01, 1.0081e-01,\n", " -2.7511e-01, 7.8730e-02, -2.0066e-01, -1.5597e-01],\n", " [ 2.5820e-01, 1.9188e-01, 4.7999e-01, 6.9774e-02, -2.0267e-01,\n", " 3.7522e-01, -8.6744e-02, 2.5228e-01, -1.2846e-01, 1.0590e-01,\n", " -2.7586e-01, 1.0311e-01, 1.1307e-01, -1.0545e-01, 2.9488e-01,\n", " 5.4775e-01, -1.6711e-01, 4.6806e-02, -2.4186e-01, -3.5100e-01,\n", " -2.9758e-01, -3.1168e-01, 1.9277e-01, 1.4047e-01, -7.5636e-02,\n", " -1.8808e-01, -2.0158e-01, 3.6178e-01, -9.5802e-02, -1.2708e-01,\n", " 1.0763e-01, -5.5428e-02, 1.1961e-01, 2.4258e-01, -2.8356e-01,\n", " -2.4466e-01, -1.7622e-01, -6.5579e-02, 1.2709e-01, 4.5320e-02,\n", " 9.7881e-02, 2.9991e-01, 2.2304e-01, -3.3725e-01, -7.2100e-02,\n", " -1.7546e-01, -2.9953e-01, 4.6157e-02, -1.5875e-01, -2.6537e-01,\n", " 3.2382e-01, 9.5382e-03, 2.2192e-01, -2.5515e-01, -4.1426e-01,\n", " -9.4852e-02, -4.9565e-02, 1.5019e-01, 2.4926e-01, 1.9148e-01,\n", " -5.3635e-01, -1.5326e-01, 1.6425e-01, -3.9051e-01]],\n", "\n", " [[ 3.0083e-01, -3.0158e-01, -2.8431e-02, 7.8782e-01, 2.3501e-02,\n", " 9.2542e-02, 3.9450e-01, -6.1034e-03, 2.4454e-01, -3.1812e-01,\n", " 2.2186e-01, 1.3691e-01, 2.2964e-01, -3.7366e-01, 4.4578e-01,\n", " 1.5186e-01, 2.7236e-02, 4.9386e-02, 2.2214e-01, -8.3106e-02,\n", " -2.9856e-01, -4.7007e-02, 2.0091e-01, -2.0271e-01, 2.0945e-01,\n", " -1.2809e-01, -3.7861e-01, -1.3235e-01, 3.6467e-02, -2.1870e-01,\n", " -1.0883e-01, -1.7587e-01, 4.0160e-01, 4.2037e-01, 4.8252e-02,\n", " 2.8059e-01, -4.1559e-01, 6.3770e-01, 3.2591e-01, 9.4536e-02,\n", " -2.2653e-02, -3.4345e-02, 1.8139e-01, -1.6369e-01, 4.0315e-02,\n", " 3.9302e-01, 2.5815e-01, -1.6280e-01, 3.2198e-01, 3.0073e-01,\n", " 1.7263e-02, -4.5440e-02, 2.6601e-01, -5.0357e-01, -4.8120e-02,\n", " -1.4780e-01, 2.7241e-02, -1.4115e-01, -8.8778e-03, 6.6657e-01,\n", " -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\n", " [ 6.7260e-02, 1.2996e-01, 1.1819e-01, -2.0483e-01, -5.4274e-01,\n", " -1.1038e-01, 2.4815e-02, 6.9911e-02, -1.4384e-01, -3.7275e-01,\n", " -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\n", " 5.1307e-01, 2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\n", " -3.0653e-01, -2.0400e-01, 3.5982e-01, 4.9754e-01, 1.0173e-01,\n", " -4.0342e-01, 4.9540e-01, 2.5269e-01, 7.8506e-02, -2.3170e-02,\n", " 1.8902e-01, 3.7163e-01, -1.1237e-01, 6.6350e-01, -5.1017e-01,\n", " 6.4472e-02, -5.7414e-02, -8.7294e-02, 2.0384e-02, -2.6563e-02,\n", " 1.7521e-01, 6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\n", " -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\n", " 3.3169e-01, 2.3594e-01, 3.5904e-02, -4.0302e-01, -3.1485e-01,\n", " 3.4287e-01, 1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\n", " -6.8716e-01, 5.1406e-02, 2.5545e-01, 2.5696e-01]],\n", "\n", " [[-2.0629e-01, -3.7659e-01, 4.5863e-02, 5.3217e-01, -1.2700e-01,\n", " -1.4886e-01, 1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\n", " 4.2041e-01, -1.8544e-01, 4.3391e-01, -6.7537e-02, 1.9093e-01,\n", " -5.8209e-01, -2.1247e-02, 2.4594e-01, 3.7686e-01, 3.0338e-02,\n", " -4.1501e-01, 1.7103e-01, 1.6851e-02, -1.5981e-01, 2.9293e-01,\n", " -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\n", " -1.8605e-01, 1.2303e-01, 6.8677e-01, 3.3999e-01, 2.9310e-01,\n", " 3.4023e-01, -1.6655e-01, 6.5662e-01, 4.0671e-01, -2.8659e-01,\n", " -4.9588e-01, 1.6012e-01, 2.7112e-01, 2.1752e-01, -3.7658e-01,\n", " 3.0657e-01, 1.9236e-01, -4.6345e-01, 1.7681e-01, 9.2185e-02,\n", " -1.5306e-01, -4.8642e-01, 5.8779e-01, -6.4074e-01, 2.2483e-01,\n", " -1.0579e-01, 4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\n", " -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\n", " [ 1.0529e-02, 3.5908e-01, 2.3312e-01, 1.9650e-01, -5.9675e-02,\n", " -1.5658e-01, 1.6122e-01, 1.8782e-01, -1.9782e-01, -2.5424e-01,\n", " -2.2587e-01, 1.1983e-01, 5.4116e-02, -4.3192e-01, -2.1338e-01,\n", " 5.8897e-01, 4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\n", " -5.1517e-01, -5.5736e-02, 1.4217e-01, 5.7948e-01, -1.6698e-01,\n", " -1.8354e-01, 2.5574e-01, 9.2582e-02, -1.5009e-01, -1.5141e-01,\n", " 6.2154e-02, 1.9030e-01, 5.2375e-02, 3.0264e-01, -4.0980e-01,\n", " 9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\n", " 1.7333e-01, 1.3659e-02, 4.6606e-02, -6.6266e-01, 2.8069e-01,\n", " 2.4609e-01, 5.7418e-02, 3.7632e-01, 2.5864e-01, 1.4679e-01,\n", " 4.4736e-01, 4.5973e-01, 8.1457e-02, -5.2304e-01, -4.5289e-01,\n", " 1.7003e-01, 2.5693e-01, -3.7473e-01, 1.5084e-01, 3.6457e-01,\n", " -4.0353e-02, -6.3108e-02, 9.9259e-02, 1.4259e-01]],\n", "\n", " [[ 9.5497e-02, -4.1627e-01, 2.8029e-02, 4.1203e-01, -6.8130e-03,\n", " -2.8840e-01, 3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\n", " 3.4702e-01, -3.8960e-02, 5.7625e-01, -1.9183e-01, 2.6033e-01,\n", " -4.3174e-01, 3.1093e-02, -1.8470e-01, 6.3293e-01, -5.6075e-02,\n", " -5.1161e-01, -9.4454e-02, 1.5921e-01, -1.8132e-01, -1.6253e-01,\n", " 1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\n", " -1.6154e-01, 2.0733e-01, 7.0576e-01, 1.3302e-01, -2.9825e-01,\n", " 2.0994e-01, -5.3865e-02, 3.8838e-01, 4.2451e-01, -5.2417e-01,\n", " -5.0814e-01, 2.6738e-01, 3.7351e-01, 5.8097e-01, -6.1178e-01,\n", " 2.2877e-01, 2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\n", " 1.4218e-01, -3.0955e-01, 4.6556e-01, -1.5831e-01, -2.1650e-01,\n", " 3.8367e-02, 4.2855e-01, 1.9128e-01, 3.8580e-01, 1.1959e-01,\n", " -2.9994e-01, -5.2117e-01, 2.1471e-01, -5.7907e-01],\n", " [-1.0411e-01, -5.0381e-02, 2.7471e-01, 4.8769e-01, 1.4239e-01,\n", " 2.6347e-01, 5.2876e-01, 1.4041e-01, -2.0420e-01, 2.7689e-01,\n", " -6.2801e-01, 5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\n", " 3.9456e-01, 2.7023e-01, -3.4516e-02, 7.8912e-02, -1.1492e-01,\n", " -2.2979e-01, -1.7854e-01, 4.5892e-01, 2.8441e-01, -1.0770e-01,\n", " 1.6266e-01, 1.1944e-01, 3.1096e-01, -3.3360e-01, -6.6498e-02,\n", " 1.4587e-01, 3.4419e-01, -5.3772e-04, 4.5331e-01, -5.1342e-01,\n", " 1.3568e-01, 9.8949e-02, -8.0940e-02, 3.8612e-01, -1.3356e-01,\n", " -1.0952e-01, 3.4308e-01, 1.8789e-01, 8.1325e-02, 9.0352e-02,\n", " 2.2188e-01, 1.5698e-01, -2.0673e-01, 6.6451e-02, -2.0891e-01,\n", " 1.9172e-01, 4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\n", " 2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01, 2.5902e-01,\n", " -6.0417e-03, -4.4415e-01, 3.1402e-01, 3.1877e-01]],\n", "\n", " [[-2.6335e-03, -2.3985e-01, -3.4736e-02, 8.8921e-02, -2.9755e-01,\n", " -1.8779e-01, 2.6080e-01, -4.0660e-01, 2.4273e-01, -2.0277e-01,\n", " -4.9214e-02, 9.4251e-02, -1.2161e-01, 1.5997e-01, 2.0561e-01,\n", " 1.5723e-01, -1.9595e-01, -4.2922e-01, 7.0747e-02, 1.4856e-01,\n", " -1.5354e-01, 9.6606e-02, 1.7886e-01, -3.8590e-01, -2.9419e-01,\n", " 2.1776e-01, 2.6294e-02, -4.5975e-02, 2.0144e-02, -3.3976e-01,\n", " -3.2033e-02, 1.9865e-01, 5.3036e-01, 1.5295e-01, -9.2089e-02,\n", " 4.3739e-01, 3.6364e-01, 3.4489e-01, 2.7756e-01, -2.2295e-01,\n", " -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\n", " 2.5772e-01, -1.0638e-01, -7.3814e-02, 4.7898e-01, -1.9344e-01,\n", " 4.6140e-02, 1.3491e-02, 2.5996e-01, 2.2740e-01, -3.2146e-01,\n", " -5.9065e-02, -4.3176e-01, 2.7157e-01, 3.1781e-01, 1.6585e-01,\n", " -3.8220e-01, -4.3346e-01, -5.1061e-01, 1.0843e-01],\n", " [ 9.6994e-02, -1.7331e-01, 2.1172e-01, 5.1296e-01, -2.1837e-01,\n", " -1.5871e-02, 4.7803e-01, 1.5512e-01, -4.9505e-01, 2.5299e-03,\n", " -6.7146e-01, 4.0029e-01, -6.4332e-02, 1.3088e-01, 3.7229e-02,\n", " 2.5459e-01, 7.3664e-01, -5.0367e-01, 1.3755e-01, -1.3922e-01,\n", " -2.4012e-01, 2.2718e-02, 3.1692e-01, -1.0521e-01, 3.7480e-01,\n", " -1.3657e-01, -2.5329e-01, 5.7562e-01, -5.2170e-02, -2.5802e-01,\n", " 2.7986e-01, 2.3848e-01, 1.4237e-01, 5.9374e-01, -3.3590e-01,\n", " 1.4647e-01, -6.6258e-02, 1.5446e-01, 3.4899e-01, 1.8101e-01,\n", " -3.1963e-01, 1.2350e-01, 3.3166e-01, -2.9319e-01, -3.6108e-01,\n", " 3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03, 1.3249e-02,\n", " -2.0109e-01, 1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\n", " 1.2868e-01, 3.8556e-01, -4.1688e-01, -3.0117e-02, 1.9605e-01,\n", " -4.5693e-01, -4.9675e-01, 2.4458e-01, 2.3623e-01]],\n", "\n", " [[-1.6365e-01, -2.7898e-01, 2.1363e-01, 2.3062e-01, -1.4550e-01,\n", " 1.6778e-02, 4.2505e-02, -4.5946e-01, 2.4220e-01, -1.9533e-01,\n", " -1.5048e-01, 6.5674e-02, -3.3663e-01, 1.4862e-01, -3.8167e-02,\n", " 3.1526e-01, -2.9041e-02, -6.7158e-02, 6.2756e-02, -1.9502e-01,\n", " -7.9184e-02, -1.7278e-01, 1.4336e-01, -3.5072e-01, 1.5444e-01,\n", " -4.2982e-01, 5.2977e-01, 7.5553e-02, -4.6632e-01, -3.8594e-01,\n", " 2.5318e-01, 2.7747e-01, 4.8115e-01, 7.4816e-03, -2.9260e-01,\n", " -2.1384e-02, -3.1256e-01, 2.7800e-01, 3.9665e-01, -1.6654e-01,\n", " -3.9723e-01, -4.7709e-01, -6.2903e-01, 2.2307e-01, 4.1874e-02,\n", " 2.0719e-01, 6.7764e-02, 3.2923e-01, 4.4065e-01, 1.6063e-01,\n", " 1.4556e-01, 2.5320e-01, 3.6555e-01, -1.1610e-01, -4.0548e-02,\n", " 2.6207e-01, -2.5660e-01, 2.5825e-01, 5.6414e-01, 4.1154e-01,\n", " -2.1353e-02, -6.4984e-02, 3.0729e-01, -3.8730e-01],\n", " [ 5.4114e-02, 1.2911e-01, 1.1079e-01, 2.1384e-01, -3.7324e-02,\n", " 2.1465e-04, 1.8886e-01, 2.1697e-01, 2.6679e-01, 3.3500e-01,\n", " -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02, 9.6619e-02,\n", " 1.5960e-01, 4.1786e-01, -4.3850e-01, 2.8198e-01, -4.6615e-01,\n", " 1.4454e-01, 6.5908e-02, 8.5281e-02, -4.2819e-02, 5.0067e-01,\n", " 1.7017e-01, -2.7224e-01, 2.5380e-01, 4.1439e-02, -3.5470e-01,\n", " 1.9666e-01, -1.9875e-01, -9.2995e-03, 3.5348e-01, 4.8985e-02,\n", " 1.6634e-01, 2.1250e-01, 1.6368e-01, -2.9762e-01, -1.7645e-01,\n", " -4.1179e-01, 3.5149e-01, 2.2540e-01, 2.3828e-02, -1.3123e-01,\n", " 2.8975e-01, 1.1899e-01, 1.6702e-01, 1.7360e-01, 1.4900e-01,\n", " -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\n", " -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01, 4.7001e-01,\n", " -4.0074e-01, -5.6701e-01, -3.2914e-01, 2.7732e-01]],\n", "\n", " [[-4.0713e-01, 4.5937e-01, -1.6181e-01, 4.3321e-02, 1.1174e-01,\n", " -6.1644e-01, -5.7113e-01, -5.0487e-01, 3.5190e-01, 4.1288e-02,\n", " -2.7544e-01, -4.4448e-02, -2.5642e-01, 6.6191e-01, -1.8626e-01,\n", " -5.6468e-02, -7.5144e-02, 6.2824e-01, 4.6276e-01, -3.3513e-01,\n", " -3.5146e-01, -1.9119e-01, 8.3969e-02, -2.7791e-01, 2.1230e-01,\n", " -3.5122e-01, 3.3878e-01, 4.5148e-01, -1.3567e-01, -3.3026e-01,\n", " 5.8611e-01, -3.8844e-01, 2.9644e-01, -1.6744e-01, 4.0907e-02,\n", " 7.5437e-03, -1.6675e-01, 2.5426e-01, 3.3875e-01, 7.0346e-02,\n", " 7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\n", " 5.3298e-02, -5.7836e-02, 3.7722e-02, 4.2650e-01, 3.8631e-01,\n", " -2.0902e-01, 4.5654e-01, -1.7730e-01, -4.1286e-01, 2.1224e-02,\n", " 2.3993e-01, -6.1541e-01, 5.8383e-01, 3.3904e-01, 2.5489e-01,\n", " -5.3822e-01, -5.1609e-03, 7.5159e-02, -5.2072e-01],\n", " [-1.6287e-01, -1.2638e-02, 2.4461e-01, 4.2238e-01, -7.5080e-02,\n", " 6.8997e-02, 5.9353e-02, -4.6653e-01, 2.5298e-01, 2.6466e-01,\n", " -2.6296e-01, -2.3991e-02, -3.3667e-01, 2.0203e-02, -1.0276e-01,\n", " 3.0682e-01, 3.8102e-01, -1.4313e-01, 2.6840e-01, -5.8352e-01,\n", " -1.3001e-02, -2.0605e-01, 1.3328e-01, -3.5768e-02, 5.0879e-01,\n", " -4.9018e-01, 3.4093e-01, 2.6714e-01, -4.5952e-01, -3.8416e-01,\n", " 3.6284e-01, 2.4918e-03, 2.9864e-01, 7.5558e-02, -2.7992e-01,\n", " -1.2603e-01, -4.7697e-01, 2.0969e-01, 4.8302e-02, -1.4302e-01,\n", " -4.7573e-01, -2.2340e-01, -3.0772e-01, 4.1387e-01, 1.2074e-01,\n", " 2.5394e-01, 1.6521e-01, 4.2968e-01, 3.1515e-01, 3.1856e-01,\n", " 2.1915e-02, -3.8564e-02, 6.7546e-02, -6.3149e-01, 4.9406e-02,\n", " 1.7295e-01, -1.1359e-01, -1.2223e-01, 4.0665e-01, 5.6251e-01,\n", " 9.3645e-04, -1.5734e-01, 3.2205e-01, -3.8656e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([34, 11])\n", "dec_state: tensor([[[ 1.7589e-01, 2.4391e-01, 5.3143e-02, -1.7293e-01, -2.9055e-01,\n", " -3.4841e-01, -1.5347e-01, -4.0364e-01, -2.4531e-01, 1.1444e-01,\n", " 1.2992e-01, 1.3576e-01, -5.6660e-04, 2.9642e-01, -3.8533e-01,\n", " 4.6836e-01, -5.0639e-01, 2.7413e-01, -6.5189e-02, 3.9388e-01,\n", " 2.2414e-01, -1.7883e-01, -2.6278e-01, 3.0563e-01, 3.5925e-01,\n", " -6.0581e-01, -2.4866e-01, -4.6864e-01, -2.0547e-01, -4.3715e-01,\n", " 1.5993e-01, -5.2925e-02, 2.9531e-01, -5.3454e-02, 4.9664e-02,\n", " 8.4741e-02, 5.7760e-02, -4.5966e-01, 1.8791e-02, 4.7860e-01,\n", " 3.5167e-01, -1.4867e-02, 1.9799e-02, -5.7336e-01, 5.7002e-02,\n", " 2.1918e-01, -3.1099e-02, 5.9912e-01, 4.0055e-01, 5.0181e-02,\n", " -6.4062e-02, 2.4873e-01, 1.7468e-01, -5.4216e-01, -2.0010e-01,\n", " -3.2376e-01, 6.3976e-02, -2.0373e-01, -4.1056e-02, 2.4488e-02,\n", " -1.5838e-01, -1.1246e-01, -5.3824e-01, 5.1605e-01],\n", " [ 3.7598e-01, -1.0106e-01, -8.6892e-02, 3.8593e-01, 3.8202e-01,\n", " -2.2204e-01, 3.4336e-01, -3.2857e-02, -4.8803e-01, 1.9261e-01,\n", " -1.2260e-01, -3.5437e-01, -8.2302e-02, 1.8273e-01, -3.7630e-01,\n", " -7.1433e-01, -1.4909e-01, 1.5454e-01, 7.4649e-02, 1.0798e-01,\n", " 6.3725e-01, -4.1141e-01, -1.3654e-01, 1.5477e-02, 2.8965e-01,\n", " -3.5360e-01, 6.4699e-01, -5.7809e-01, -7.3216e-01, -1.6523e-01,\n", " -7.1941e-01, -2.3453e-01, -3.7225e-01, 7.4928e-01, -2.6023e-01,\n", " -6.5783e-01, 3.4881e-01, -3.5682e-01, -5.2175e-01, 9.0108e-02,\n", " -2.6713e-02, 5.8166e-01, 2.3491e-01, 2.4307e-01, 1.4522e-01,\n", " 3.5829e-01, -4.8887e-02, 2.3532e-01, 4.3856e-02, 3.6150e-01,\n", " -5.2905e-02, -3.4787e-01, 7.3304e-01, -4.7650e-01, -5.7155e-02,\n", " -4.2896e-01, -1.0243e-03, 4.7609e-01, 1.6585e-01, -6.0946e-01,\n", " -1.9369e-01, 2.4663e-03, -3.6624e-01, -2.0177e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.3727e-01, 7.2181e-02, -4.8407e-02, 3.9534e-01, 1.7992e-01,\n", " 1.4430e-01, 1.3021e-01, -5.1874e-01, 9.1039e-02, -1.9068e-01,\n", " 2.6788e-01, 2.2892e-02, -8.0218e-02, 2.0840e-01, 1.3134e-01,\n", " 2.3112e-01, 4.3599e-02, -2.9930e-01, 2.1027e-01, -3.4507e-02,\n", " -8.8752e-02, -1.4755e-01, 6.6381e-02, -3.3483e-01, -7.0215e-02,\n", " 4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\n", " 1.1633e-01, -2.9537e-01, 5.5430e-02, 5.4464e-02, -4.3290e-02,\n", " 7.1843e-02, -3.4024e-01, -3.7712e-02, 2.8614e-01, -6.0731e-02,\n", " -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\n", " 3.7795e-01, -1.3003e-01, 1.7851e-01, 2.4400e-01, -3.0191e-01,\n", " 4.8482e-01, 2.6197e-01, 2.3043e-01, -4.2391e-01, -8.0003e-02,\n", " 2.5831e-01, -3.1049e-01, 1.7894e-01, 2.2598e-01, 1.0081e-01,\n", " -2.7511e-01, 7.8730e-02, -2.0066e-01, -1.5597e-01],\n", " [ 2.5820e-01, 1.9188e-01, 4.7999e-01, 6.9774e-02, -2.0267e-01,\n", " 3.7522e-01, -8.6744e-02, 2.5228e-01, -1.2846e-01, 1.0590e-01,\n", " -2.7586e-01, 1.0311e-01, 1.1307e-01, -1.0545e-01, 2.9488e-01,\n", " 5.4775e-01, -1.6711e-01, 4.6806e-02, -2.4186e-01, -3.5100e-01,\n", " -2.9758e-01, -3.1168e-01, 1.9277e-01, 1.4047e-01, -7.5636e-02,\n", " -1.8808e-01, -2.0158e-01, 3.6178e-01, -9.5802e-02, -1.2708e-01,\n", " 1.0763e-01, -5.5428e-02, 1.1961e-01, 2.4258e-01, -2.8356e-01,\n", " -2.4466e-01, -1.7622e-01, -6.5579e-02, 1.2709e-01, 4.5320e-02,\n", " 9.7881e-02, 2.9991e-01, 2.2304e-01, -3.3725e-01, -7.2100e-02,\n", " -1.7546e-01, -2.9953e-01, 4.6157e-02, -1.5875e-01, -2.6537e-01,\n", " 3.2382e-01, 9.5382e-03, 2.2192e-01, -2.5515e-01, -4.1426e-01,\n", " -9.4852e-02, -4.9565e-02, 1.5019e-01, 2.4926e-01, 1.9148e-01,\n", " -5.3635e-01, -1.5326e-01, 1.6425e-01, -3.9051e-01]],\n", "\n", " [[ 3.0083e-01, -3.0158e-01, -2.8431e-02, 7.8782e-01, 2.3501e-02,\n", " 9.2542e-02, 3.9450e-01, -6.1034e-03, 2.4454e-01, -3.1812e-01,\n", " 2.2186e-01, 1.3691e-01, 2.2964e-01, -3.7366e-01, 4.4578e-01,\n", " 1.5186e-01, 2.7236e-02, 4.9386e-02, 2.2214e-01, -8.3106e-02,\n", " -2.9856e-01, -4.7007e-02, 2.0091e-01, -2.0271e-01, 2.0945e-01,\n", " -1.2809e-01, -3.7861e-01, -1.3235e-01, 3.6467e-02, -2.1870e-01,\n", " -1.0883e-01, -1.7587e-01, 4.0160e-01, 4.2037e-01, 4.8252e-02,\n", " 2.8059e-01, -4.1559e-01, 6.3770e-01, 3.2591e-01, 9.4536e-02,\n", " -2.2653e-02, -3.4345e-02, 1.8139e-01, -1.6369e-01, 4.0315e-02,\n", " 3.9302e-01, 2.5815e-01, -1.6280e-01, 3.2198e-01, 3.0073e-01,\n", " 1.7263e-02, -4.5440e-02, 2.6601e-01, -5.0357e-01, -4.8120e-02,\n", " -1.4780e-01, 2.7241e-02, -1.4115e-01, -8.8778e-03, 6.6657e-01,\n", " -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\n", " [ 6.7260e-02, 1.2996e-01, 1.1819e-01, -2.0483e-01, -5.4274e-01,\n", " -1.1038e-01, 2.4815e-02, 6.9911e-02, -1.4384e-01, -3.7275e-01,\n", " -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\n", " 5.1307e-01, 2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\n", " -3.0653e-01, -2.0400e-01, 3.5982e-01, 4.9754e-01, 1.0173e-01,\n", " -4.0342e-01, 4.9540e-01, 2.5269e-01, 7.8506e-02, -2.3170e-02,\n", " 1.8902e-01, 3.7163e-01, -1.1237e-01, 6.6350e-01, -5.1017e-01,\n", " 6.4472e-02, -5.7414e-02, -8.7294e-02, 2.0384e-02, -2.6563e-02,\n", " 1.7521e-01, 6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\n", " -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\n", " 3.3169e-01, 2.3594e-01, 3.5904e-02, -4.0302e-01, -3.1485e-01,\n", " 3.4287e-01, 1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\n", " -6.8716e-01, 5.1406e-02, 2.5545e-01, 2.5696e-01]],\n", "\n", " [[-2.0629e-01, -3.7659e-01, 4.5863e-02, 5.3217e-01, -1.2700e-01,\n", " -1.4886e-01, 1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\n", " 4.2041e-01, -1.8544e-01, 4.3391e-01, -6.7537e-02, 1.9093e-01,\n", " -5.8209e-01, -2.1247e-02, 2.4594e-01, 3.7686e-01, 3.0338e-02,\n", " -4.1501e-01, 1.7103e-01, 1.6851e-02, -1.5981e-01, 2.9293e-01,\n", " -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\n", " -1.8605e-01, 1.2303e-01, 6.8677e-01, 3.3999e-01, 2.9310e-01,\n", " 3.4023e-01, -1.6655e-01, 6.5662e-01, 4.0671e-01, -2.8659e-01,\n", " -4.9588e-01, 1.6012e-01, 2.7112e-01, 2.1752e-01, -3.7658e-01,\n", " 3.0657e-01, 1.9236e-01, -4.6345e-01, 1.7681e-01, 9.2185e-02,\n", " -1.5306e-01, -4.8642e-01, 5.8779e-01, -6.4074e-01, 2.2483e-01,\n", " -1.0579e-01, 4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\n", " -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\n", " [ 1.0529e-02, 3.5908e-01, 2.3312e-01, 1.9650e-01, -5.9675e-02,\n", " -1.5658e-01, 1.6122e-01, 1.8782e-01, -1.9782e-01, -2.5424e-01,\n", " -2.2587e-01, 1.1983e-01, 5.4116e-02, -4.3192e-01, -2.1338e-01,\n", " 5.8897e-01, 4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\n", " -5.1517e-01, -5.5736e-02, 1.4217e-01, 5.7948e-01, -1.6698e-01,\n", " -1.8354e-01, 2.5574e-01, 9.2582e-02, -1.5009e-01, -1.5141e-01,\n", " 6.2154e-02, 1.9030e-01, 5.2375e-02, 3.0264e-01, -4.0980e-01,\n", " 9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\n", " 1.7333e-01, 1.3659e-02, 4.6606e-02, -6.6266e-01, 2.8069e-01,\n", " 2.4609e-01, 5.7418e-02, 3.7632e-01, 2.5864e-01, 1.4679e-01,\n", " 4.4736e-01, 4.5973e-01, 8.1457e-02, -5.2304e-01, -4.5289e-01,\n", " 1.7003e-01, 2.5693e-01, -3.7473e-01, 1.5084e-01, 3.6457e-01,\n", " -4.0353e-02, -6.3108e-02, 9.9259e-02, 1.4259e-01]],\n", "\n", " [[ 9.5497e-02, -4.1627e-01, 2.8029e-02, 4.1203e-01, -6.8130e-03,\n", " -2.8840e-01, 3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\n", " 3.4702e-01, -3.8960e-02, 5.7625e-01, -1.9183e-01, 2.6033e-01,\n", " -4.3174e-01, 3.1093e-02, -1.8470e-01, 6.3293e-01, -5.6075e-02,\n", " -5.1161e-01, -9.4454e-02, 1.5921e-01, -1.8132e-01, -1.6253e-01,\n", " 1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\n", " -1.6154e-01, 2.0733e-01, 7.0576e-01, 1.3302e-01, -2.9825e-01,\n", " 2.0994e-01, -5.3865e-02, 3.8838e-01, 4.2451e-01, -5.2417e-01,\n", " -5.0814e-01, 2.6738e-01, 3.7351e-01, 5.8097e-01, -6.1178e-01,\n", " 2.2877e-01, 2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\n", " 1.4218e-01, -3.0955e-01, 4.6556e-01, -1.5831e-01, -2.1650e-01,\n", " 3.8367e-02, 4.2855e-01, 1.9128e-01, 3.8580e-01, 1.1959e-01,\n", " -2.9994e-01, -5.2117e-01, 2.1471e-01, -5.7907e-01],\n", " [-1.0411e-01, -5.0381e-02, 2.7471e-01, 4.8769e-01, 1.4239e-01,\n", " 2.6347e-01, 5.2876e-01, 1.4041e-01, -2.0420e-01, 2.7689e-01,\n", " -6.2801e-01, 5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\n", " 3.9456e-01, 2.7023e-01, -3.4516e-02, 7.8912e-02, -1.1492e-01,\n", " -2.2979e-01, -1.7854e-01, 4.5892e-01, 2.8441e-01, -1.0770e-01,\n", " 1.6266e-01, 1.1944e-01, 3.1096e-01, -3.3360e-01, -6.6498e-02,\n", " 1.4587e-01, 3.4419e-01, -5.3772e-04, 4.5331e-01, -5.1342e-01,\n", " 1.3568e-01, 9.8949e-02, -8.0940e-02, 3.8612e-01, -1.3356e-01,\n", " -1.0952e-01, 3.4308e-01, 1.8789e-01, 8.1325e-02, 9.0352e-02,\n", " 2.2188e-01, 1.5698e-01, -2.0673e-01, 6.6451e-02, -2.0891e-01,\n", " 1.9172e-01, 4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\n", " 2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01, 2.5902e-01,\n", " -6.0417e-03, -4.4415e-01, 3.1402e-01, 3.1877e-01]],\n", "\n", " [[-2.6335e-03, -2.3985e-01, -3.4736e-02, 8.8921e-02, -2.9755e-01,\n", " -1.8779e-01, 2.6080e-01, -4.0660e-01, 2.4273e-01, -2.0277e-01,\n", " -4.9214e-02, 9.4251e-02, -1.2161e-01, 1.5997e-01, 2.0561e-01,\n", " 1.5723e-01, -1.9595e-01, -4.2922e-01, 7.0747e-02, 1.4856e-01,\n", " -1.5354e-01, 9.6606e-02, 1.7886e-01, -3.8590e-01, -2.9419e-01,\n", " 2.1776e-01, 2.6294e-02, -4.5975e-02, 2.0144e-02, -3.3976e-01,\n", " -3.2033e-02, 1.9865e-01, 5.3036e-01, 1.5295e-01, -9.2089e-02,\n", " 4.3739e-01, 3.6364e-01, 3.4489e-01, 2.7756e-01, -2.2295e-01,\n", " -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\n", " 2.5772e-01, -1.0638e-01, -7.3814e-02, 4.7898e-01, -1.9344e-01,\n", " 4.6140e-02, 1.3491e-02, 2.5996e-01, 2.2740e-01, -3.2146e-01,\n", " -5.9065e-02, -4.3176e-01, 2.7157e-01, 3.1781e-01, 1.6585e-01,\n", " -3.8220e-01, -4.3346e-01, -5.1061e-01, 1.0843e-01],\n", " [ 9.6994e-02, -1.7331e-01, 2.1172e-01, 5.1296e-01, -2.1837e-01,\n", " -1.5871e-02, 4.7803e-01, 1.5512e-01, -4.9505e-01, 2.5299e-03,\n", " -6.7146e-01, 4.0029e-01, -6.4332e-02, 1.3088e-01, 3.7229e-02,\n", " 2.5459e-01, 7.3664e-01, -5.0367e-01, 1.3755e-01, -1.3922e-01,\n", " -2.4012e-01, 2.2718e-02, 3.1692e-01, -1.0521e-01, 3.7480e-01,\n", " -1.3657e-01, -2.5329e-01, 5.7562e-01, -5.2170e-02, -2.5802e-01,\n", " 2.7986e-01, 2.3848e-01, 1.4237e-01, 5.9374e-01, -3.3590e-01,\n", " 1.4647e-01, -6.6258e-02, 1.5446e-01, 3.4899e-01, 1.8101e-01,\n", " -3.1963e-01, 1.2350e-01, 3.3166e-01, -2.9319e-01, -3.6108e-01,\n", " 3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03, 1.3249e-02,\n", " -2.0109e-01, 1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\n", " 1.2868e-01, 3.8556e-01, -4.1688e-01, -3.0117e-02, 1.9605e-01,\n", " -4.5693e-01, -4.9675e-01, 2.4458e-01, 2.3623e-01]],\n", "\n", " [[-1.6365e-01, -2.7898e-01, 2.1363e-01, 2.3062e-01, -1.4550e-01,\n", " 1.6778e-02, 4.2505e-02, -4.5946e-01, 2.4220e-01, -1.9533e-01,\n", " -1.5048e-01, 6.5674e-02, -3.3663e-01, 1.4862e-01, -3.8167e-02,\n", " 3.1526e-01, -2.9041e-02, -6.7158e-02, 6.2756e-02, -1.9502e-01,\n", " -7.9184e-02, -1.7278e-01, 1.4336e-01, -3.5072e-01, 1.5444e-01,\n", " -4.2982e-01, 5.2977e-01, 7.5553e-02, -4.6632e-01, -3.8594e-01,\n", " 2.5318e-01, 2.7747e-01, 4.8115e-01, 7.4816e-03, -2.9260e-01,\n", " -2.1384e-02, -3.1256e-01, 2.7800e-01, 3.9665e-01, -1.6654e-01,\n", " -3.9723e-01, -4.7709e-01, -6.2903e-01, 2.2307e-01, 4.1874e-02,\n", " 2.0719e-01, 6.7764e-02, 3.2923e-01, 4.4065e-01, 1.6063e-01,\n", " 1.4556e-01, 2.5320e-01, 3.6555e-01, -1.1610e-01, -4.0548e-02,\n", " 2.6207e-01, -2.5660e-01, 2.5825e-01, 5.6414e-01, 4.1154e-01,\n", " -2.1353e-02, -6.4984e-02, 3.0729e-01, -3.8730e-01],\n", " [ 5.4114e-02, 1.2911e-01, 1.1079e-01, 2.1384e-01, -3.7324e-02,\n", " 2.1465e-04, 1.8886e-01, 2.1697e-01, 2.6679e-01, 3.3500e-01,\n", " -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02, 9.6619e-02,\n", " 1.5960e-01, 4.1786e-01, -4.3850e-01, 2.8198e-01, -4.6615e-01,\n", " 1.4454e-01, 6.5908e-02, 8.5281e-02, -4.2819e-02, 5.0067e-01,\n", " 1.7017e-01, -2.7224e-01, 2.5380e-01, 4.1439e-02, -3.5470e-01,\n", " 1.9666e-01, -1.9875e-01, -9.2995e-03, 3.5348e-01, 4.8985e-02,\n", " 1.6634e-01, 2.1250e-01, 1.6368e-01, -2.9762e-01, -1.7645e-01,\n", " -4.1179e-01, 3.5149e-01, 2.2540e-01, 2.3828e-02, -1.3123e-01,\n", " 2.8975e-01, 1.1899e-01, 1.6702e-01, 1.7360e-01, 1.4900e-01,\n", " -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\n", " -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01, 4.7001e-01,\n", " -4.0074e-01, -5.6701e-01, -3.2914e-01, 2.7732e-01]],\n", "\n", " [[-4.0713e-01, 4.5937e-01, -1.6181e-01, 4.3321e-02, 1.1174e-01,\n", " -6.1644e-01, -5.7113e-01, -5.0487e-01, 3.5190e-01, 4.1288e-02,\n", " -2.7544e-01, -4.4448e-02, -2.5642e-01, 6.6191e-01, -1.8626e-01,\n", " -5.6468e-02, -7.5144e-02, 6.2824e-01, 4.6276e-01, -3.3513e-01,\n", " -3.5146e-01, -1.9119e-01, 8.3969e-02, -2.7791e-01, 2.1230e-01,\n", " -3.5122e-01, 3.3878e-01, 4.5148e-01, -1.3567e-01, -3.3026e-01,\n", " 5.8611e-01, -3.8844e-01, 2.9644e-01, -1.6744e-01, 4.0907e-02,\n", " 7.5437e-03, -1.6675e-01, 2.5426e-01, 3.3875e-01, 7.0346e-02,\n", " 7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\n", " 5.3298e-02, -5.7836e-02, 3.7722e-02, 4.2650e-01, 3.8631e-01,\n", " -2.0902e-01, 4.5654e-01, -1.7730e-01, -4.1286e-01, 2.1224e-02,\n", " 2.3993e-01, -6.1541e-01, 5.8383e-01, 3.3904e-01, 2.5489e-01,\n", " -5.3822e-01, -5.1609e-03, 7.5159e-02, -5.2072e-01],\n", " [-1.6287e-01, -1.2638e-02, 2.4461e-01, 4.2238e-01, -7.5080e-02,\n", " 6.8997e-02, 5.9353e-02, -4.6653e-01, 2.5298e-01, 2.6466e-01,\n", " -2.6296e-01, -2.3991e-02, -3.3667e-01, 2.0203e-02, -1.0276e-01,\n", " 3.0682e-01, 3.8102e-01, -1.4313e-01, 2.6840e-01, -5.8352e-01,\n", " -1.3001e-02, -2.0605e-01, 1.3328e-01, -3.5768e-02, 5.0879e-01,\n", " -4.9018e-01, 3.4093e-01, 2.6714e-01, -4.5952e-01, -3.8416e-01,\n", " 3.6284e-01, 2.4918e-03, 2.9864e-01, 7.5558e-02, -2.7992e-01,\n", " -1.2603e-01, -4.7697e-01, 2.0969e-01, 4.8302e-02, -1.4302e-01,\n", " -4.7573e-01, -2.2340e-01, -3.0772e-01, 4.1387e-01, 1.2074e-01,\n", " 2.5394e-01, 1.6521e-01, 4.2968e-01, 3.1515e-01, 3.1856e-01,\n", " 2.1915e-02, -3.8564e-02, 6.7546e-02, -6.3149e-01, 4.9406e-02,\n", " 1.7295e-01, -1.1359e-01, -1.2223e-01, 4.0665e-01, 5.6251e-01,\n", " 9.3645e-04, -1.5734e-01, 3.2205e-01, -3.8656e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([12, 3])\n", "dec_state: tensor([[[-0.1012, -0.0762, -0.1476, 0.0793, -0.5507, -0.3517, 0.0855,\n", " 0.1092, -0.4347, -0.1715, -0.3756, -0.1330, -0.1930, -0.0793,\n", " 0.0766, 0.6006, -0.4178, -0.2625, -0.1204, 0.4916, 0.3598,\n", " -0.1558, -0.2658, 0.2857, 0.3404, -0.0340, -0.3063, -0.0686,\n", " 0.2955, -0.2708, 0.1850, 0.1453, 0.0573, -0.0978, 0.2190,\n", " 0.0472, -0.0070, -0.4712, 0.0308, 0.4580, 0.2355, 0.4664,\n", " -0.2036, -0.1419, 0.2422, 0.0041, -0.2065, 0.2519, 0.5854,\n", " 0.1112, 0.1149, 0.0664, -0.1631, -0.0092, -0.4894, 0.2247,\n", " -0.0016, -0.0468, -0.3131, -0.0257, 0.0967, 0.0717, -0.1940,\n", " 0.4291],\n", " [ 0.7914, 0.2248, -0.3662, 0.2102, 0.3070, 0.0956, 0.0920,\n", " -0.1820, -0.5064, -0.1938, -0.4492, -0.2407, 0.3199, 0.4416,\n", " -0.6199, -0.2810, 0.4202, 0.0537, -0.2216, 0.4739, 0.4737,\n", " -0.5346, -0.2203, -0.0552, 0.6273, -0.3668, 0.6017, -0.7320,\n", " -0.1341, -0.4821, -0.7457, -0.1939, -0.0062, 0.3788, 0.1583,\n", " -0.5359, 0.5317, -0.3957, -0.0312, 0.2623, -0.0663, 0.3599,\n", " 0.1110, 0.0418, -0.3274, 0.4923, 0.2166, 0.2875, -0.4395,\n", " 0.3079, -0.3243, 0.1656, 0.2572, -0.4453, 0.3038, -0.3038,\n", " 0.1681, 0.1785, -0.1105, -0.3535, -0.5527, 0.0108, -0.4540,\n", " -0.4937]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.3727e-01, 7.2181e-02, -4.8407e-02, 3.9534e-01, 1.7992e-01,\n", " 1.4430e-01, 1.3021e-01, -5.1874e-01, 9.1039e-02, -1.9068e-01,\n", " 2.6788e-01, 2.2892e-02, -8.0218e-02, 2.0840e-01, 1.3134e-01,\n", " 2.3112e-01, 4.3599e-02, -2.9930e-01, 2.1027e-01, -3.4507e-02,\n", " -8.8752e-02, -1.4755e-01, 6.6381e-02, -3.3483e-01, -7.0215e-02,\n", " 4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\n", " 1.1633e-01, -2.9537e-01, 5.5430e-02, 5.4464e-02, -4.3290e-02,\n", " 7.1843e-02, -3.4024e-01, -3.7712e-02, 2.8614e-01, -6.0731e-02,\n", " -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\n", " 3.7795e-01, -1.3003e-01, 1.7851e-01, 2.4400e-01, -3.0191e-01,\n", " 4.8482e-01, 2.6197e-01, 2.3043e-01, -4.2391e-01, -8.0003e-02,\n", " 2.5831e-01, -3.1049e-01, 1.7894e-01, 2.2598e-01, 1.0081e-01,\n", " -2.7511e-01, 7.8730e-02, -2.0066e-01, -1.5597e-01],\n", " [ 2.5820e-01, 1.9188e-01, 4.7999e-01, 6.9774e-02, -2.0267e-01,\n", " 3.7522e-01, -8.6744e-02, 2.5228e-01, -1.2846e-01, 1.0590e-01,\n", " -2.7586e-01, 1.0311e-01, 1.1307e-01, -1.0545e-01, 2.9488e-01,\n", " 5.4775e-01, -1.6711e-01, 4.6806e-02, -2.4186e-01, -3.5100e-01,\n", " -2.9758e-01, -3.1168e-01, 1.9277e-01, 1.4047e-01, -7.5636e-02,\n", " -1.8808e-01, -2.0158e-01, 3.6178e-01, -9.5802e-02, -1.2708e-01,\n", " 1.0763e-01, -5.5428e-02, 1.1961e-01, 2.4258e-01, -2.8356e-01,\n", " -2.4466e-01, -1.7622e-01, -6.5579e-02, 1.2709e-01, 4.5320e-02,\n", " 9.7881e-02, 2.9991e-01, 2.2304e-01, -3.3725e-01, -7.2100e-02,\n", " -1.7546e-01, -2.9953e-01, 4.6157e-02, -1.5875e-01, -2.6537e-01,\n", " 3.2382e-01, 9.5382e-03, 2.2192e-01, -2.5515e-01, -4.1426e-01,\n", " -9.4852e-02, -4.9565e-02, 1.5019e-01, 2.4926e-01, 1.9148e-01,\n", " -5.3635e-01, -1.5326e-01, 1.6425e-01, -3.9051e-01]],\n", "\n", " [[ 3.0083e-01, -3.0158e-01, -2.8431e-02, 7.8782e-01, 2.3501e-02,\n", " 9.2542e-02, 3.9450e-01, -6.1034e-03, 2.4454e-01, -3.1812e-01,\n", " 2.2186e-01, 1.3691e-01, 2.2964e-01, -3.7366e-01, 4.4578e-01,\n", " 1.5186e-01, 2.7236e-02, 4.9386e-02, 2.2214e-01, -8.3106e-02,\n", " -2.9856e-01, -4.7007e-02, 2.0091e-01, -2.0271e-01, 2.0945e-01,\n", " -1.2809e-01, -3.7861e-01, -1.3235e-01, 3.6467e-02, -2.1870e-01,\n", " -1.0883e-01, -1.7587e-01, 4.0160e-01, 4.2037e-01, 4.8252e-02,\n", " 2.8059e-01, -4.1559e-01, 6.3770e-01, 3.2591e-01, 9.4536e-02,\n", " -2.2653e-02, -3.4345e-02, 1.8139e-01, -1.6369e-01, 4.0315e-02,\n", " 3.9302e-01, 2.5815e-01, -1.6280e-01, 3.2198e-01, 3.0073e-01,\n", " 1.7263e-02, -4.5440e-02, 2.6601e-01, -5.0357e-01, -4.8120e-02,\n", " -1.4780e-01, 2.7241e-02, -1.4115e-01, -8.8778e-03, 6.6657e-01,\n", " -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\n", " [ 6.7260e-02, 1.2996e-01, 1.1819e-01, -2.0483e-01, -5.4274e-01,\n", " -1.1038e-01, 2.4815e-02, 6.9911e-02, -1.4384e-01, -3.7275e-01,\n", " -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\n", " 5.1307e-01, 2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\n", " -3.0653e-01, -2.0400e-01, 3.5982e-01, 4.9754e-01, 1.0173e-01,\n", " -4.0342e-01, 4.9540e-01, 2.5269e-01, 7.8506e-02, -2.3170e-02,\n", " 1.8902e-01, 3.7163e-01, -1.1237e-01, 6.6350e-01, -5.1017e-01,\n", " 6.4472e-02, -5.7414e-02, -8.7294e-02, 2.0384e-02, -2.6563e-02,\n", " 1.7521e-01, 6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\n", " -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\n", " 3.3169e-01, 2.3594e-01, 3.5904e-02, -4.0302e-01, -3.1485e-01,\n", " 3.4287e-01, 1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\n", " -6.8716e-01, 5.1406e-02, 2.5545e-01, 2.5696e-01]],\n", "\n", " [[-2.0629e-01, -3.7659e-01, 4.5863e-02, 5.3217e-01, -1.2700e-01,\n", " -1.4886e-01, 1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\n", " 4.2041e-01, -1.8544e-01, 4.3391e-01, -6.7537e-02, 1.9093e-01,\n", " -5.8209e-01, -2.1247e-02, 2.4594e-01, 3.7686e-01, 3.0338e-02,\n", " -4.1501e-01, 1.7103e-01, 1.6851e-02, -1.5981e-01, 2.9293e-01,\n", " -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\n", " -1.8605e-01, 1.2303e-01, 6.8677e-01, 3.3999e-01, 2.9310e-01,\n", " 3.4023e-01, -1.6655e-01, 6.5662e-01, 4.0671e-01, -2.8659e-01,\n", " -4.9588e-01, 1.6012e-01, 2.7112e-01, 2.1752e-01, -3.7658e-01,\n", " 3.0657e-01, 1.9236e-01, -4.6345e-01, 1.7681e-01, 9.2185e-02,\n", " -1.5306e-01, -4.8642e-01, 5.8779e-01, -6.4074e-01, 2.2483e-01,\n", " -1.0579e-01, 4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\n", " -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\n", " [ 1.0529e-02, 3.5908e-01, 2.3312e-01, 1.9650e-01, -5.9675e-02,\n", " -1.5658e-01, 1.6122e-01, 1.8782e-01, -1.9782e-01, -2.5424e-01,\n", " -2.2587e-01, 1.1983e-01, 5.4116e-02, -4.3192e-01, -2.1338e-01,\n", " 5.8897e-01, 4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\n", " -5.1517e-01, -5.5736e-02, 1.4217e-01, 5.7948e-01, -1.6698e-01,\n", " -1.8354e-01, 2.5574e-01, 9.2582e-02, -1.5009e-01, -1.5141e-01,\n", " 6.2154e-02, 1.9030e-01, 5.2375e-02, 3.0264e-01, -4.0980e-01,\n", " 9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\n", " 1.7333e-01, 1.3659e-02, 4.6606e-02, -6.6266e-01, 2.8069e-01,\n", " 2.4609e-01, 5.7418e-02, 3.7632e-01, 2.5864e-01, 1.4679e-01,\n", " 4.4736e-01, 4.5973e-01, 8.1457e-02, -5.2304e-01, -4.5289e-01,\n", " 1.7003e-01, 2.5693e-01, -3.7473e-01, 1.5084e-01, 3.6457e-01,\n", " -4.0353e-02, -6.3108e-02, 9.9259e-02, 1.4259e-01]],\n", "\n", " [[ 9.5497e-02, -4.1627e-01, 2.8029e-02, 4.1203e-01, -6.8130e-03,\n", " -2.8840e-01, 3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\n", " 3.4702e-01, -3.8960e-02, 5.7625e-01, -1.9183e-01, 2.6033e-01,\n", " -4.3174e-01, 3.1093e-02, -1.8470e-01, 6.3293e-01, -5.6075e-02,\n", " -5.1161e-01, -9.4454e-02, 1.5921e-01, -1.8132e-01, -1.6253e-01,\n", " 1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\n", " -1.6154e-01, 2.0733e-01, 7.0576e-01, 1.3302e-01, -2.9825e-01,\n", " 2.0994e-01, -5.3865e-02, 3.8838e-01, 4.2451e-01, -5.2417e-01,\n", " -5.0814e-01, 2.6738e-01, 3.7351e-01, 5.8097e-01, -6.1178e-01,\n", " 2.2877e-01, 2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\n", " 1.4218e-01, -3.0955e-01, 4.6556e-01, -1.5831e-01, -2.1650e-01,\n", " 3.8367e-02, 4.2855e-01, 1.9128e-01, 3.8580e-01, 1.1959e-01,\n", " -2.9994e-01, -5.2117e-01, 2.1471e-01, -5.7907e-01],\n", " [-1.0411e-01, -5.0381e-02, 2.7471e-01, 4.8769e-01, 1.4239e-01,\n", " 2.6347e-01, 5.2876e-01, 1.4041e-01, -2.0420e-01, 2.7689e-01,\n", " -6.2801e-01, 5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\n", " 3.9456e-01, 2.7023e-01, -3.4516e-02, 7.8912e-02, -1.1492e-01,\n", " -2.2979e-01, -1.7854e-01, 4.5892e-01, 2.8441e-01, -1.0770e-01,\n", " 1.6266e-01, 1.1944e-01, 3.1096e-01, -3.3360e-01, -6.6498e-02,\n", " 1.4587e-01, 3.4419e-01, -5.3772e-04, 4.5331e-01, -5.1342e-01,\n", " 1.3568e-01, 9.8949e-02, -8.0940e-02, 3.8612e-01, -1.3356e-01,\n", " -1.0952e-01, 3.4308e-01, 1.8789e-01, 8.1325e-02, 9.0352e-02,\n", " 2.2188e-01, 1.5698e-01, -2.0673e-01, 6.6451e-02, -2.0891e-01,\n", " 1.9172e-01, 4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\n", " 2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01, 2.5902e-01,\n", " -6.0417e-03, -4.4415e-01, 3.1402e-01, 3.1877e-01]],\n", "\n", " [[-2.6335e-03, -2.3985e-01, -3.4736e-02, 8.8921e-02, -2.9755e-01,\n", " -1.8779e-01, 2.6080e-01, -4.0660e-01, 2.4273e-01, -2.0277e-01,\n", " -4.9214e-02, 9.4251e-02, -1.2161e-01, 1.5997e-01, 2.0561e-01,\n", " 1.5723e-01, -1.9595e-01, -4.2922e-01, 7.0747e-02, 1.4856e-01,\n", " -1.5354e-01, 9.6606e-02, 1.7886e-01, -3.8590e-01, -2.9419e-01,\n", " 2.1776e-01, 2.6294e-02, -4.5975e-02, 2.0144e-02, -3.3976e-01,\n", " -3.2033e-02, 1.9865e-01, 5.3036e-01, 1.5295e-01, -9.2089e-02,\n", " 4.3739e-01, 3.6364e-01, 3.4489e-01, 2.7756e-01, -2.2295e-01,\n", " -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\n", " 2.5772e-01, -1.0638e-01, -7.3814e-02, 4.7898e-01, -1.9344e-01,\n", " 4.6140e-02, 1.3491e-02, 2.5996e-01, 2.2740e-01, -3.2146e-01,\n", " -5.9065e-02, -4.3176e-01, 2.7157e-01, 3.1781e-01, 1.6585e-01,\n", " -3.8220e-01, -4.3346e-01, -5.1061e-01, 1.0843e-01],\n", " [ 9.6994e-02, -1.7331e-01, 2.1172e-01, 5.1296e-01, -2.1837e-01,\n", " -1.5871e-02, 4.7803e-01, 1.5512e-01, -4.9505e-01, 2.5299e-03,\n", " -6.7146e-01, 4.0029e-01, -6.4332e-02, 1.3088e-01, 3.7229e-02,\n", " 2.5459e-01, 7.3664e-01, -5.0367e-01, 1.3755e-01, -1.3922e-01,\n", " -2.4012e-01, 2.2718e-02, 3.1692e-01, -1.0521e-01, 3.7480e-01,\n", " -1.3657e-01, -2.5329e-01, 5.7562e-01, -5.2170e-02, -2.5802e-01,\n", " 2.7986e-01, 2.3848e-01, 1.4237e-01, 5.9374e-01, -3.3590e-01,\n", " 1.4647e-01, -6.6258e-02, 1.5446e-01, 3.4899e-01, 1.8101e-01,\n", " -3.1963e-01, 1.2350e-01, 3.3166e-01, -2.9319e-01, -3.6108e-01,\n", " 3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03, 1.3249e-02,\n", " -2.0109e-01, 1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\n", " 1.2868e-01, 3.8556e-01, -4.1688e-01, -3.0117e-02, 1.9605e-01,\n", " -4.5693e-01, -4.9675e-01, 2.4458e-01, 2.3623e-01]],\n", "\n", " [[-1.6365e-01, -2.7898e-01, 2.1363e-01, 2.3062e-01, -1.4550e-01,\n", " 1.6778e-02, 4.2505e-02, -4.5946e-01, 2.4220e-01, -1.9533e-01,\n", " -1.5048e-01, 6.5674e-02, -3.3663e-01, 1.4862e-01, -3.8167e-02,\n", " 3.1526e-01, -2.9041e-02, -6.7158e-02, 6.2756e-02, -1.9502e-01,\n", " -7.9184e-02, -1.7278e-01, 1.4336e-01, -3.5072e-01, 1.5444e-01,\n", " -4.2982e-01, 5.2977e-01, 7.5553e-02, -4.6632e-01, -3.8594e-01,\n", " 2.5318e-01, 2.7747e-01, 4.8115e-01, 7.4816e-03, -2.9260e-01,\n", " -2.1384e-02, -3.1256e-01, 2.7800e-01, 3.9665e-01, -1.6654e-01,\n", " -3.9723e-01, -4.7709e-01, -6.2903e-01, 2.2307e-01, 4.1874e-02,\n", " 2.0719e-01, 6.7764e-02, 3.2923e-01, 4.4065e-01, 1.6063e-01,\n", " 1.4556e-01, 2.5320e-01, 3.6555e-01, -1.1610e-01, -4.0548e-02,\n", " 2.6207e-01, -2.5660e-01, 2.5825e-01, 5.6414e-01, 4.1154e-01,\n", " -2.1353e-02, -6.4984e-02, 3.0729e-01, -3.8730e-01],\n", " [ 5.4114e-02, 1.2911e-01, 1.1079e-01, 2.1384e-01, -3.7324e-02,\n", " 2.1465e-04, 1.8886e-01, 2.1697e-01, 2.6679e-01, 3.3500e-01,\n", " -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02, 9.6619e-02,\n", " 1.5960e-01, 4.1786e-01, -4.3850e-01, 2.8198e-01, -4.6615e-01,\n", " 1.4454e-01, 6.5908e-02, 8.5281e-02, -4.2819e-02, 5.0067e-01,\n", " 1.7017e-01, -2.7224e-01, 2.5380e-01, 4.1439e-02, -3.5470e-01,\n", " 1.9666e-01, -1.9875e-01, -9.2995e-03, 3.5348e-01, 4.8985e-02,\n", " 1.6634e-01, 2.1250e-01, 1.6368e-01, -2.9762e-01, -1.7645e-01,\n", " -4.1179e-01, 3.5149e-01, 2.2540e-01, 2.3828e-02, -1.3123e-01,\n", " 2.8975e-01, 1.1899e-01, 1.6702e-01, 1.7360e-01, 1.4900e-01,\n", " -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\n", " -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01, 4.7001e-01,\n", " -4.0074e-01, -5.6701e-01, -3.2914e-01, 2.7732e-01]],\n", "\n", " [[-4.0713e-01, 4.5937e-01, -1.6181e-01, 4.3321e-02, 1.1174e-01,\n", " -6.1644e-01, -5.7113e-01, -5.0487e-01, 3.5190e-01, 4.1288e-02,\n", " -2.7544e-01, -4.4448e-02, -2.5642e-01, 6.6191e-01, -1.8626e-01,\n", " -5.6468e-02, -7.5144e-02, 6.2824e-01, 4.6276e-01, -3.3513e-01,\n", " -3.5146e-01, -1.9119e-01, 8.3969e-02, -2.7791e-01, 2.1230e-01,\n", " -3.5122e-01, 3.3878e-01, 4.5148e-01, -1.3567e-01, -3.3026e-01,\n", " 5.8611e-01, -3.8844e-01, 2.9644e-01, -1.6744e-01, 4.0907e-02,\n", " 7.5437e-03, -1.6675e-01, 2.5426e-01, 3.3875e-01, 7.0346e-02,\n", " 7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\n", " 5.3298e-02, -5.7836e-02, 3.7722e-02, 4.2650e-01, 3.8631e-01,\n", " -2.0902e-01, 4.5654e-01, -1.7730e-01, -4.1286e-01, 2.1224e-02,\n", " 2.3993e-01, -6.1541e-01, 5.8383e-01, 3.3904e-01, 2.5489e-01,\n", " -5.3822e-01, -5.1609e-03, 7.5159e-02, -5.2072e-01],\n", " [-1.6287e-01, -1.2638e-02, 2.4461e-01, 4.2238e-01, -7.5080e-02,\n", " 6.8997e-02, 5.9353e-02, -4.6653e-01, 2.5298e-01, 2.6466e-01,\n", " -2.6296e-01, -2.3991e-02, -3.3667e-01, 2.0203e-02, -1.0276e-01,\n", " 3.0682e-01, 3.8102e-01, -1.4313e-01, 2.6840e-01, -5.8352e-01,\n", " -1.3001e-02, -2.0605e-01, 1.3328e-01, -3.5768e-02, 5.0879e-01,\n", " -4.9018e-01, 3.4093e-01, 2.6714e-01, -4.5952e-01, -3.8416e-01,\n", " 3.6284e-01, 2.4918e-03, 2.9864e-01, 7.5558e-02, -2.7992e-01,\n", " -1.2603e-01, -4.7697e-01, 2.0969e-01, 4.8302e-02, -1.4302e-01,\n", " -4.7573e-01, -2.2340e-01, -3.0772e-01, 4.1387e-01, 1.2074e-01,\n", " 2.5394e-01, 1.6521e-01, 4.2968e-01, 3.1515e-01, 3.1856e-01,\n", " 2.1915e-02, -3.8564e-02, 6.7546e-02, -6.3149e-01, 4.9406e-02,\n", " 1.7295e-01, -1.1359e-01, -1.2223e-01, 4.0665e-01, 5.6251e-01,\n", " 9.3645e-04, -1.5734e-01, 3.2205e-01, -3.8656e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([2, 2])\n", "dec_state: tensor([[[ 0.1598, -0.5192, -0.4544, 0.1326, -0.4550, 0.0950, 0.5252,\n", " 0.0941, -0.5941, 0.2322, 0.0419, -0.1279, 0.1441, -0.2758,\n", " -0.4945, 0.0032, -0.0663, 0.1325, -0.1111, 0.2664, 0.4270,\n", " -0.1420, -0.1837, 0.3318, 0.2055, -0.3246, -0.3387, -0.2512,\n", " -0.0645, -0.0972, -0.1308, 0.2196, -0.3165, 0.1861, -0.0413,\n", " -0.3873, -0.1388, 0.1504, 0.2079, 0.1463, 0.2082, 0.5620,\n", " -0.1028, -0.0043, 0.2547, -0.2518, -0.1784, 0.3456, 0.1439,\n", " -0.1320, -0.2583, 0.1184, -0.3070, -0.1830, -0.2651, -0.0822,\n", " 0.3493, 0.0058, 0.4257, 0.0453, 0.0591, -0.2668, -0.2254,\n", " 0.1250],\n", " [ 0.7017, -0.2832, -0.6340, 0.2570, -0.1849, 0.3413, 0.5379,\n", " -0.0836, -0.5861, 0.2372, -0.1283, -0.2033, 0.4924, -0.3006,\n", " -0.7412, -0.3611, 0.0551, 0.3086, -0.2630, 0.2548, 0.2453,\n", " -0.3922, -0.0362, 0.1369, 0.5229, -0.5280, 0.1842, -0.7001,\n", " -0.4127, -0.2317, -0.7313, 0.1241, -0.4042, 0.5148, 0.0511,\n", " -0.6836, 0.0130, 0.0684, 0.2320, -0.1575, 0.0111, 0.4927,\n", " 0.0787, 0.2176, -0.1059, 0.0876, 0.1273, 0.3489, -0.4420,\n", " 0.0491, -0.4722, 0.2911, 0.0516, -0.4715, 0.2203, -0.3771,\n", " 0.4890, 0.1657, 0.4695, -0.0928, -0.3612, -0.1525, -0.3337,\n", " -0.2069]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.3727e-01, 7.2181e-02, -4.8407e-02, 3.9534e-01, 1.7992e-01,\n", " 1.4430e-01, 1.3021e-01, -5.1874e-01, 9.1039e-02, -1.9068e-01,\n", " 2.6788e-01, 2.2892e-02, -8.0218e-02, 2.0840e-01, 1.3134e-01,\n", " 2.3112e-01, 4.3599e-02, -2.9930e-01, 2.1027e-01, -3.4507e-02,\n", " -8.8752e-02, -1.4755e-01, 6.6381e-02, -3.3483e-01, -7.0215e-02,\n", " 4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\n", " 1.1633e-01, -2.9537e-01, 5.5430e-02, 5.4464e-02, -4.3290e-02,\n", " 7.1843e-02, -3.4024e-01, -3.7712e-02, 2.8614e-01, -6.0731e-02,\n", " -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\n", " 3.7795e-01, -1.3003e-01, 1.7851e-01, 2.4400e-01, -3.0191e-01,\n", " 4.8482e-01, 2.6197e-01, 2.3043e-01, -4.2391e-01, -8.0003e-02,\n", " 2.5831e-01, -3.1049e-01, 1.7894e-01, 2.2598e-01, 1.0081e-01,\n", " -2.7511e-01, 7.8730e-02, -2.0066e-01, -1.5597e-01],\n", " [ 2.5820e-01, 1.9188e-01, 4.7999e-01, 6.9774e-02, -2.0267e-01,\n", " 3.7522e-01, -8.6744e-02, 2.5228e-01, -1.2846e-01, 1.0590e-01,\n", " -2.7586e-01, 1.0311e-01, 1.1307e-01, -1.0545e-01, 2.9488e-01,\n", " 5.4775e-01, -1.6711e-01, 4.6806e-02, -2.4186e-01, -3.5100e-01,\n", " -2.9758e-01, -3.1168e-01, 1.9277e-01, 1.4047e-01, -7.5636e-02,\n", " -1.8808e-01, -2.0158e-01, 3.6178e-01, -9.5802e-02, -1.2708e-01,\n", " 1.0763e-01, -5.5428e-02, 1.1961e-01, 2.4258e-01, -2.8356e-01,\n", " -2.4466e-01, -1.7622e-01, -6.5579e-02, 1.2709e-01, 4.5320e-02,\n", " 9.7881e-02, 2.9991e-01, 2.2304e-01, -3.3725e-01, -7.2100e-02,\n", " -1.7546e-01, -2.9953e-01, 4.6157e-02, -1.5875e-01, -2.6537e-01,\n", " 3.2382e-01, 9.5382e-03, 2.2192e-01, -2.5515e-01, -4.1426e-01,\n", " -9.4852e-02, -4.9565e-02, 1.5019e-01, 2.4926e-01, 1.9148e-01,\n", " -5.3635e-01, -1.5326e-01, 1.6425e-01, -3.9051e-01]],\n", "\n", " [[ 3.0083e-01, -3.0158e-01, -2.8431e-02, 7.8782e-01, 2.3501e-02,\n", " 9.2542e-02, 3.9450e-01, -6.1034e-03, 2.4454e-01, -3.1812e-01,\n", " 2.2186e-01, 1.3691e-01, 2.2964e-01, -3.7366e-01, 4.4578e-01,\n", " 1.5186e-01, 2.7236e-02, 4.9386e-02, 2.2214e-01, -8.3106e-02,\n", " -2.9856e-01, -4.7007e-02, 2.0091e-01, -2.0271e-01, 2.0945e-01,\n", " -1.2809e-01, -3.7861e-01, -1.3235e-01, 3.6467e-02, -2.1870e-01,\n", " -1.0883e-01, -1.7587e-01, 4.0160e-01, 4.2037e-01, 4.8252e-02,\n", " 2.8059e-01, -4.1559e-01, 6.3770e-01, 3.2591e-01, 9.4536e-02,\n", " -2.2653e-02, -3.4345e-02, 1.8139e-01, -1.6369e-01, 4.0315e-02,\n", " 3.9302e-01, 2.5815e-01, -1.6280e-01, 3.2198e-01, 3.0073e-01,\n", " 1.7263e-02, -4.5440e-02, 2.6601e-01, -5.0357e-01, -4.8120e-02,\n", " -1.4780e-01, 2.7241e-02, -1.4115e-01, -8.8778e-03, 6.6657e-01,\n", " -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\n", " [ 6.7260e-02, 1.2996e-01, 1.1819e-01, -2.0483e-01, -5.4274e-01,\n", " -1.1038e-01, 2.4815e-02, 6.9911e-02, -1.4384e-01, -3.7275e-01,\n", " -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\n", " 5.1307e-01, 2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\n", " -3.0653e-01, -2.0400e-01, 3.5982e-01, 4.9754e-01, 1.0173e-01,\n", " -4.0342e-01, 4.9540e-01, 2.5269e-01, 7.8506e-02, -2.3170e-02,\n", " 1.8902e-01, 3.7163e-01, -1.1237e-01, 6.6350e-01, -5.1017e-01,\n", " 6.4472e-02, -5.7414e-02, -8.7294e-02, 2.0384e-02, -2.6563e-02,\n", " 1.7521e-01, 6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\n", " -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\n", " 3.3169e-01, 2.3594e-01, 3.5904e-02, -4.0302e-01, -3.1485e-01,\n", " 3.4287e-01, 1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\n", " -6.8716e-01, 5.1406e-02, 2.5545e-01, 2.5696e-01]],\n", "\n", " [[-2.0629e-01, -3.7659e-01, 4.5863e-02, 5.3217e-01, -1.2700e-01,\n", " -1.4886e-01, 1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\n", " 4.2041e-01, -1.8544e-01, 4.3391e-01, -6.7537e-02, 1.9093e-01,\n", " -5.8209e-01, -2.1247e-02, 2.4594e-01, 3.7686e-01, 3.0338e-02,\n", " -4.1501e-01, 1.7103e-01, 1.6851e-02, -1.5981e-01, 2.9293e-01,\n", " -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\n", " -1.8605e-01, 1.2303e-01, 6.8677e-01, 3.3999e-01, 2.9310e-01,\n", " 3.4023e-01, -1.6655e-01, 6.5662e-01, 4.0671e-01, -2.8659e-01,\n", " -4.9588e-01, 1.6012e-01, 2.7112e-01, 2.1752e-01, -3.7658e-01,\n", " 3.0657e-01, 1.9236e-01, -4.6345e-01, 1.7681e-01, 9.2185e-02,\n", " -1.5306e-01, -4.8642e-01, 5.8779e-01, -6.4074e-01, 2.2483e-01,\n", " -1.0579e-01, 4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\n", " -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\n", " [ 1.0529e-02, 3.5908e-01, 2.3312e-01, 1.9650e-01, -5.9675e-02,\n", " -1.5658e-01, 1.6122e-01, 1.8782e-01, -1.9782e-01, -2.5424e-01,\n", " -2.2587e-01, 1.1983e-01, 5.4116e-02, -4.3192e-01, -2.1338e-01,\n", " 5.8897e-01, 4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\n", " -5.1517e-01, -5.5736e-02, 1.4217e-01, 5.7948e-01, -1.6698e-01,\n", " -1.8354e-01, 2.5574e-01, 9.2582e-02, -1.5009e-01, -1.5141e-01,\n", " 6.2154e-02, 1.9030e-01, 5.2375e-02, 3.0264e-01, -4.0980e-01,\n", " 9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\n", " 1.7333e-01, 1.3659e-02, 4.6606e-02, -6.6266e-01, 2.8069e-01,\n", " 2.4609e-01, 5.7418e-02, 3.7632e-01, 2.5864e-01, 1.4679e-01,\n", " 4.4736e-01, 4.5973e-01, 8.1457e-02, -5.2304e-01, -4.5289e-01,\n", " 1.7003e-01, 2.5693e-01, -3.7473e-01, 1.5084e-01, 3.6457e-01,\n", " -4.0353e-02, -6.3108e-02, 9.9259e-02, 1.4259e-01]],\n", "\n", " [[ 9.5497e-02, -4.1627e-01, 2.8029e-02, 4.1203e-01, -6.8130e-03,\n", " -2.8840e-01, 3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\n", " 3.4702e-01, -3.8960e-02, 5.7625e-01, -1.9183e-01, 2.6033e-01,\n", " -4.3174e-01, 3.1093e-02, -1.8470e-01, 6.3293e-01, -5.6075e-02,\n", " -5.1161e-01, -9.4454e-02, 1.5921e-01, -1.8132e-01, -1.6253e-01,\n", " 1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\n", " -1.6154e-01, 2.0733e-01, 7.0576e-01, 1.3302e-01, -2.9825e-01,\n", " 2.0994e-01, -5.3865e-02, 3.8838e-01, 4.2451e-01, -5.2417e-01,\n", " -5.0814e-01, 2.6738e-01, 3.7351e-01, 5.8097e-01, -6.1178e-01,\n", " 2.2877e-01, 2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\n", " 1.4218e-01, -3.0955e-01, 4.6556e-01, -1.5831e-01, -2.1650e-01,\n", " 3.8367e-02, 4.2855e-01, 1.9128e-01, 3.8580e-01, 1.1959e-01,\n", " -2.9994e-01, -5.2117e-01, 2.1471e-01, -5.7907e-01],\n", " [-1.0411e-01, -5.0381e-02, 2.7471e-01, 4.8769e-01, 1.4239e-01,\n", " 2.6347e-01, 5.2876e-01, 1.4041e-01, -2.0420e-01, 2.7689e-01,\n", " -6.2801e-01, 5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\n", " 3.9456e-01, 2.7023e-01, -3.4516e-02, 7.8912e-02, -1.1492e-01,\n", " -2.2979e-01, -1.7854e-01, 4.5892e-01, 2.8441e-01, -1.0770e-01,\n", " 1.6266e-01, 1.1944e-01, 3.1096e-01, -3.3360e-01, -6.6498e-02,\n", " 1.4587e-01, 3.4419e-01, -5.3772e-04, 4.5331e-01, -5.1342e-01,\n", " 1.3568e-01, 9.8949e-02, -8.0940e-02, 3.8612e-01, -1.3356e-01,\n", " -1.0952e-01, 3.4308e-01, 1.8789e-01, 8.1325e-02, 9.0352e-02,\n", " 2.2188e-01, 1.5698e-01, -2.0673e-01, 6.6451e-02, -2.0891e-01,\n", " 1.9172e-01, 4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\n", " 2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01, 2.5902e-01,\n", " -6.0417e-03, -4.4415e-01, 3.1402e-01, 3.1877e-01]],\n", "\n", " [[-2.6335e-03, -2.3985e-01, -3.4736e-02, 8.8921e-02, -2.9755e-01,\n", " -1.8779e-01, 2.6080e-01, -4.0660e-01, 2.4273e-01, -2.0277e-01,\n", " -4.9214e-02, 9.4251e-02, -1.2161e-01, 1.5997e-01, 2.0561e-01,\n", " 1.5723e-01, -1.9595e-01, -4.2922e-01, 7.0747e-02, 1.4856e-01,\n", " -1.5354e-01, 9.6606e-02, 1.7886e-01, -3.8590e-01, -2.9419e-01,\n", " 2.1776e-01, 2.6294e-02, -4.5975e-02, 2.0144e-02, -3.3976e-01,\n", " -3.2033e-02, 1.9865e-01, 5.3036e-01, 1.5295e-01, -9.2089e-02,\n", " 4.3739e-01, 3.6364e-01, 3.4489e-01, 2.7756e-01, -2.2295e-01,\n", " -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\n", " 2.5772e-01, -1.0638e-01, -7.3814e-02, 4.7898e-01, -1.9344e-01,\n", " 4.6140e-02, 1.3491e-02, 2.5996e-01, 2.2740e-01, -3.2146e-01,\n", " -5.9065e-02, -4.3176e-01, 2.7157e-01, 3.1781e-01, 1.6585e-01,\n", " -3.8220e-01, -4.3346e-01, -5.1061e-01, 1.0843e-01],\n", " [ 9.6994e-02, -1.7331e-01, 2.1172e-01, 5.1296e-01, -2.1837e-01,\n", " -1.5871e-02, 4.7803e-01, 1.5512e-01, -4.9505e-01, 2.5299e-03,\n", " -6.7146e-01, 4.0029e-01, -6.4332e-02, 1.3088e-01, 3.7229e-02,\n", " 2.5459e-01, 7.3664e-01, -5.0367e-01, 1.3755e-01, -1.3922e-01,\n", " -2.4012e-01, 2.2718e-02, 3.1692e-01, -1.0521e-01, 3.7480e-01,\n", " -1.3657e-01, -2.5329e-01, 5.7562e-01, -5.2170e-02, -2.5802e-01,\n", " 2.7986e-01, 2.3848e-01, 1.4237e-01, 5.9374e-01, -3.3590e-01,\n", " 1.4647e-01, -6.6258e-02, 1.5446e-01, 3.4899e-01, 1.8101e-01,\n", " -3.1963e-01, 1.2350e-01, 3.3166e-01, -2.9319e-01, -3.6108e-01,\n", " 3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03, 1.3249e-02,\n", " -2.0109e-01, 1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\n", " 1.2868e-01, 3.8556e-01, -4.1688e-01, -3.0117e-02, 1.9605e-01,\n", " -4.5693e-01, -4.9675e-01, 2.4458e-01, 2.3623e-01]],\n", "\n", " [[-1.6365e-01, -2.7898e-01, 2.1363e-01, 2.3062e-01, -1.4550e-01,\n", " 1.6778e-02, 4.2505e-02, -4.5946e-01, 2.4220e-01, -1.9533e-01,\n", " -1.5048e-01, 6.5674e-02, -3.3663e-01, 1.4862e-01, -3.8167e-02,\n", " 3.1526e-01, -2.9041e-02, -6.7158e-02, 6.2756e-02, -1.9502e-01,\n", " -7.9184e-02, -1.7278e-01, 1.4336e-01, -3.5072e-01, 1.5444e-01,\n", " -4.2982e-01, 5.2977e-01, 7.5553e-02, -4.6632e-01, -3.8594e-01,\n", " 2.5318e-01, 2.7747e-01, 4.8115e-01, 7.4816e-03, -2.9260e-01,\n", " -2.1384e-02, -3.1256e-01, 2.7800e-01, 3.9665e-01, -1.6654e-01,\n", " -3.9723e-01, -4.7709e-01, -6.2903e-01, 2.2307e-01, 4.1874e-02,\n", " 2.0719e-01, 6.7764e-02, 3.2923e-01, 4.4065e-01, 1.6063e-01,\n", " 1.4556e-01, 2.5320e-01, 3.6555e-01, -1.1610e-01, -4.0548e-02,\n", " 2.6207e-01, -2.5660e-01, 2.5825e-01, 5.6414e-01, 4.1154e-01,\n", " -2.1353e-02, -6.4984e-02, 3.0729e-01, -3.8730e-01],\n", " [ 5.4114e-02, 1.2911e-01, 1.1079e-01, 2.1384e-01, -3.7324e-02,\n", " 2.1465e-04, 1.8886e-01, 2.1697e-01, 2.6679e-01, 3.3500e-01,\n", " -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02, 9.6619e-02,\n", " 1.5960e-01, 4.1786e-01, -4.3850e-01, 2.8198e-01, -4.6615e-01,\n", " 1.4454e-01, 6.5908e-02, 8.5281e-02, -4.2819e-02, 5.0067e-01,\n", " 1.7017e-01, -2.7224e-01, 2.5380e-01, 4.1439e-02, -3.5470e-01,\n", " 1.9666e-01, -1.9875e-01, -9.2995e-03, 3.5348e-01, 4.8985e-02,\n", " 1.6634e-01, 2.1250e-01, 1.6368e-01, -2.9762e-01, -1.7645e-01,\n", " -4.1179e-01, 3.5149e-01, 2.2540e-01, 2.3828e-02, -1.3123e-01,\n", " 2.8975e-01, 1.1899e-01, 1.6702e-01, 1.7360e-01, 1.4900e-01,\n", " -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\n", " -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01, 4.7001e-01,\n", " -4.0074e-01, -5.6701e-01, -3.2914e-01, 2.7732e-01]],\n", "\n", " [[-4.0713e-01, 4.5937e-01, -1.6181e-01, 4.3321e-02, 1.1174e-01,\n", " -6.1644e-01, -5.7113e-01, -5.0487e-01, 3.5190e-01, 4.1288e-02,\n", " -2.7544e-01, -4.4448e-02, -2.5642e-01, 6.6191e-01, -1.8626e-01,\n", " -5.6468e-02, -7.5144e-02, 6.2824e-01, 4.6276e-01, -3.3513e-01,\n", " -3.5146e-01, -1.9119e-01, 8.3969e-02, -2.7791e-01, 2.1230e-01,\n", " -3.5122e-01, 3.3878e-01, 4.5148e-01, -1.3567e-01, -3.3026e-01,\n", " 5.8611e-01, -3.8844e-01, 2.9644e-01, -1.6744e-01, 4.0907e-02,\n", " 7.5437e-03, -1.6675e-01, 2.5426e-01, 3.3875e-01, 7.0346e-02,\n", " 7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\n", " 5.3298e-02, -5.7836e-02, 3.7722e-02, 4.2650e-01, 3.8631e-01,\n", " -2.0902e-01, 4.5654e-01, -1.7730e-01, -4.1286e-01, 2.1224e-02,\n", " 2.3993e-01, -6.1541e-01, 5.8383e-01, 3.3904e-01, 2.5489e-01,\n", " -5.3822e-01, -5.1609e-03, 7.5159e-02, -5.2072e-01],\n", " [-1.6287e-01, -1.2638e-02, 2.4461e-01, 4.2238e-01, -7.5080e-02,\n", " 6.8997e-02, 5.9353e-02, -4.6653e-01, 2.5298e-01, 2.6466e-01,\n", " -2.6296e-01, -2.3991e-02, -3.3667e-01, 2.0203e-02, -1.0276e-01,\n", " 3.0682e-01, 3.8102e-01, -1.4313e-01, 2.6840e-01, -5.8352e-01,\n", " -1.3001e-02, -2.0605e-01, 1.3328e-01, -3.5768e-02, 5.0879e-01,\n", " -4.9018e-01, 3.4093e-01, 2.6714e-01, -4.5952e-01, -3.8416e-01,\n", " 3.6284e-01, 2.4918e-03, 2.9864e-01, 7.5558e-02, -2.7992e-01,\n", " -1.2603e-01, -4.7697e-01, 2.0969e-01, 4.8302e-02, -1.4302e-01,\n", " -4.7573e-01, -2.2340e-01, -3.0772e-01, 4.1387e-01, 1.2074e-01,\n", " 2.5394e-01, 1.6521e-01, 4.2968e-01, 3.1515e-01, 3.1856e-01,\n", " 2.1915e-02, -3.8564e-02, 6.7546e-02, -6.3149e-01, 4.9406e-02,\n", " 1.7295e-01, -1.1359e-01, -1.2223e-01, 4.0665e-01, 5.6251e-01,\n", " 9.3645e-04, -1.5734e-01, 3.2205e-01, -3.8656e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "tensor([[ 5, 4, 18, 34, 3, 2, 0],\n", " [11, 4, 9, 30, 3, 2, 0]])\n", "tensor([[ 8, 4, 10, 11, 32, 3, 2],\n", " [ 6, 4, 9, 19, 3, 2, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-0.3390, 0.7313, -0.1140, 0.3616, -0.6071, -0.6479, -0.7968,\n", " -0.6883, 0.6935, 0.1689, 0.1176, -0.3013, -0.2897, 0.6811,\n", " -0.3148, 0.1621, -0.3967, 0.7452, 0.6786, 0.6220, -0.5628,\n", " -0.4006, 0.6172, 0.2906, 0.2938, -0.1687, -0.0540, 0.3280,\n", " -0.2107, 0.0992, 0.3226, -0.5874, 0.6948, 0.2786, 0.2436,\n", " 0.0821, 0.1711, 0.4419, -0.2745, -0.5018, 0.4494, -0.9272,\n", " 0.1226, 0.0702, -0.7144, 0.5768, -0.1645, -0.3152, 0.6749,\n", " 0.6731, -0.6666, 0.8180, -0.4030, -0.1996, -0.0228, 0.0205,\n", " -0.5821, 0.7078, 0.3460, 0.5973, -0.5928, 0.2317, -0.1003,\n", " -0.6965],\n", " [-0.3180, 0.7016, -0.0130, 0.3554, -0.6481, -0.6268, -0.7554,\n", " -0.6845, 0.6647, 0.2822, 0.0176, -0.3127, -0.2528, 0.6666,\n", " -0.2626, 0.1340, -0.4595, 0.7440, 0.6881, 0.6730, -0.6045,\n", " -0.3506, 0.5486, 0.2792, 0.3682, -0.0568, -0.0596, 0.3470,\n", " -0.1910, 0.2346, 0.2711, -0.5740, 0.7259, 0.4405, 0.1851,\n", " 0.0551, 0.2143, 0.3579, -0.1675, -0.5591, 0.4453, -0.9335,\n", " 0.0994, 0.1098, -0.6904, 0.6650, -0.1407, -0.2936, 0.6418,\n", " 0.6324, -0.6332, 0.7773, -0.2534, -0.1620, -0.0162, 0.0044,\n", " -0.6060, 0.6763, 0.3150, 0.5389, -0.6203, 0.1455, -0.0923,\n", " -0.6417]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\n", " 1.0795e-01, 1.1117e-01, 1.0526e-01, -1.9621e-01, -1.7305e-01,\n", " 5.2908e-02, -1.1708e-01, -3.1992e-01, 2.5680e-01, 1.3125e-01,\n", " -5.8317e-01, 2.9118e-01, 9.6432e-02, -1.2121e-01, -5.2562e-01,\n", " -4.9280e-01, 9.9200e-04, 1.0100e-01, -1.4418e-01, -9.7080e-04,\n", " 4.9621e-02, -7.5445e-02, 8.9830e-02, 8.4073e-02, -1.0900e-01,\n", " -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01, 6.5989e-02,\n", " -1.1115e-01, -1.8222e-01, 2.0451e-02, -9.9988e-02, -3.5648e-01,\n", " 1.4316e-01, 5.8419e-01, 5.7575e-02, 7.9051e-02, -4.5552e-01,\n", " -2.5276e-01, 3.1515e-01, -7.7021e-02, -2.6506e-02, 3.6586e-01,\n", " 7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\n", " -2.8730e-02, -3.3728e-01, 1.7582e-01, 2.9807e-02, -3.0381e-01,\n", " 3.6682e-01, 2.1646e-01, 2.1079e-01, -2.2197e-01],\n", " [-5.9364e-02, 4.9278e-01, 3.9939e-01, -6.4556e-01, -5.4136e-01,\n", " 5.7767e-01, -8.2846e-02, 3.4757e-01, -2.6940e-01, -1.3587e-01,\n", " 2.9661e-01, 1.9267e-01, 3.3508e-01, -2.3874e-01, 1.6769e-01,\n", " 8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\n", " -1.1036e-01, -2.3516e-01, -3.3576e-01, 6.6362e-02, -4.2507e-01,\n", " -1.2496e-01, 7.5707e-01, 3.2817e-01, 4.5369e-01, 3.1337e-01,\n", " -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\n", " 2.0347e-02, 1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\n", " 1.2553e-01, -2.9570e-01, 6.3393e-02, 4.9087e-01, 2.6956e-01,\n", " -9.9909e-02, 1.1632e-01, 3.3636e-02, -6.5299e-01, 3.1438e-03,\n", " 1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02, 8.3628e-02,\n", " 2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\n", " 4.2149e-01, 3.3780e-02, -6.2170e-02, -1.9143e-01]],\n", "\n", " [[ 3.2377e-01, -3.5410e-01, -2.7126e-01, 6.7114e-01, -1.3655e-01,\n", " 1.6070e-01, 3.2438e-01, 4.1661e-01, 1.9747e-01, -2.9179e-01,\n", " 9.6542e-02, -5.5992e-02, 1.0121e-01, -3.8642e-01, 4.1851e-01,\n", " -1.1139e-01, 2.4136e-01, 2.3179e-01, 5.1139e-02, -4.5248e-01,\n", " -5.3721e-01, 8.7373e-02, 2.3784e-01, 1.2280e-01, 2.1850e-01,\n", " -9.6268e-02, -1.6007e-01, -1.3404e-01, 1.6351e-01, -2.4172e-01,\n", " -2.5418e-01, -9.7521e-02, 2.4446e-01, 3.5432e-01, 9.5840e-02,\n", " 1.5298e-01, -4.6807e-01, 7.6614e-01, 1.1059e-01, 1.0575e-01,\n", " 1.7815e-01, 5.6318e-01, 1.7585e-01, -7.1355e-02, -2.4294e-01,\n", " 3.2790e-02, 2.7889e-01, -4.4913e-01, 7.0002e-02, 5.5741e-01,\n", " -1.6276e-01, -3.6297e-01, 2.0895e-01, -4.0116e-01, -2.2522e-01,\n", " -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01, 4.5957e-01,\n", " -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\n", " [ 4.5037e-01, -3.6208e-02, -8.8401e-02, 5.8330e-01, -3.7614e-01,\n", " 2.7170e-01, 2.5848e-01, 5.3754e-01, 8.3193e-02, -2.1463e-01,\n", " 2.4849e-01, 9.6076e-02, 4.8274e-01, -5.3474e-01, 4.4389e-01,\n", " 1.8048e-01, 8.1216e-02, 3.8565e-02, -2.1158e-01, -1.0749e-01,\n", " -2.6261e-01, -3.1016e-02, -7.9159e-02, 2.0517e-01, 4.4546e-02,\n", " -2.3875e-01, 3.8012e-01, -2.2126e-03, 3.3358e-01, 1.0724e-02,\n", " -2.5482e-01, -8.6964e-02, 1.7899e-01, 5.1795e-01, -9.8892e-02,\n", " 2.9072e-01, -3.6883e-01, 8.0775e-01, -2.5374e-01, 1.7086e-01,\n", " 1.3368e-01, -6.3352e-02, 1.7475e-01, 1.2112e-01, 3.0679e-01,\n", " 1.3249e-01, 2.5912e-01, -5.0618e-01, -3.6696e-01, 3.8838e-01,\n", " -1.7201e-01, -4.2089e-01, 1.8540e-01, -3.9560e-01, 9.7645e-02,\n", " -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01, 5.1789e-01,\n", " -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\n", "\n", " [[ 6.1572e-02, -7.8968e-02, -1.2629e-01, 4.9267e-01, -3.3531e-01,\n", " -4.6577e-01, 4.6988e-01, 4.1398e-01, 3.0156e-01, 1.1518e-01,\n", " 3.1389e-02, -4.6762e-01, 1.8188e-01, -6.1688e-01, -2.6343e-01,\n", " -3.1576e-01, 4.9902e-01, -2.4268e-01, 1.6815e-01, -1.9693e-01,\n", " -3.1019e-01, 1.7517e-01, 3.3324e-01, 9.6325e-02, 2.4211e-01,\n", " -1.1460e-01, -3.7784e-01, -3.6116e-01, 2.4703e-01, 1.2421e-01,\n", " 2.6336e-01, -1.3863e-01, 4.4239e-01, 6.6868e-01, 3.9022e-01,\n", " 1.6709e-01, -3.4177e-01, 7.9374e-01, -2.0875e-01, 1.7250e-01,\n", " 9.2274e-02, 7.5432e-02, 3.1252e-01, -4.9550e-02, 4.5907e-02,\n", " 1.2979e-01, 2.7269e-01, -5.3483e-01, -6.1280e-02, 3.7396e-01,\n", " -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\n", " 8.6522e-02, 1.7051e-01, -4.1334e-02, -3.5324e-01, 2.7226e-01,\n", " -5.8631e-01, -5.0842e-01, 3.2943e-02, 2.5173e-01],\n", " [-6.6955e-02, -1.8796e-01, -9.6617e-02, 4.2052e-01, -2.8605e-01,\n", " -5.0497e-02, 1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\n", " 4.6530e-01, -2.1460e-01, 5.9005e-01, -2.3882e-01, 2.3549e-01,\n", " -4.8996e-01, 9.8277e-02, 1.9883e-01, 7.5948e-02, -3.6621e-03,\n", " -3.5541e-01, 2.3025e-01, 3.2918e-02, 2.3964e-01, 2.0046e-01,\n", " -8.6032e-02, 3.1096e-01, 3.6305e-02, -1.8553e-01, -7.1272e-02,\n", " -2.6754e-01, 1.9024e-01, 5.9301e-01, 4.9991e-01, 1.0630e-01,\n", " 2.9337e-01, -2.2475e-01, 7.7874e-01, 3.2949e-01, -1.6518e-01,\n", " -4.7336e-01, 1.0853e-01, 2.3952e-01, 3.3526e-01, -1.5270e-01,\n", " 1.4827e-01, 1.1312e-01, -6.9810e-01, -3.8128e-01, 9.0495e-02,\n", " -2.6985e-01, -6.3003e-01, 5.8684e-01, -6.1706e-01, 3.1610e-01,\n", " -1.5197e-01, 3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\n", " -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\n", "\n", " [[-2.7015e-01, 5.8729e-01, 1.4587e-01, 4.3972e-01, -1.1587e-01,\n", " -6.3192e-01, 4.2250e-01, 2.0748e-01, 4.9845e-01, 3.0032e-02,\n", " 3.4143e-01, -1.4835e-01, 3.7302e-01, 6.5627e-02, -1.1746e-01,\n", " -3.5304e-01, -7.3488e-02, 1.5345e-01, 3.8006e-01, 6.6840e-02,\n", " -4.7847e-01, -4.6739e-02, 2.2526e-01, -1.0725e-03, 4.1146e-01,\n", " -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01, 1.2527e-01,\n", " 1.1725e-01, -3.7594e-01, 6.2424e-02, 4.3085e-01, 7.0839e-01,\n", " 5.0156e-01, -6.4564e-01, 8.0471e-01, -4.8353e-01, 2.8749e-01,\n", " 5.4820e-02, -4.9795e-01, 3.6530e-01, -1.1493e-01, -2.3898e-02,\n", " 3.6245e-02, 1.0556e-01, -1.0374e-01, -1.8034e-02, 6.6806e-01,\n", " -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01, 1.8598e-01,\n", " -6.6235e-02, -1.3134e-01, 5.2580e-01, -3.6212e-01, 2.3866e-01,\n", " -1.7990e-02, 8.0296e-02, -3.7835e-01, -2.9699e-01],\n", " [-2.9946e-01, 1.7333e-01, 5.8426e-01, 3.4180e-01, -3.0022e-01,\n", " 1.7389e-01, 4.9503e-01, -8.8328e-02, 1.4499e-01, -9.1872e-02,\n", " 2.5825e-01, -3.0323e-01, 2.7515e-01, 1.3643e-02, 1.8358e-01,\n", " -2.9342e-01, 1.2102e-01, -3.1372e-03, 4.2592e-01, -3.2323e-01,\n", " -1.9382e-01, 1.0034e-01, -2.4542e-01, 1.7491e-01, 2.8585e-01,\n", " 2.1878e-01, -2.8580e-01, 2.6377e-01, -5.8683e-02, -1.8648e-02,\n", " 1.5466e-01, 6.1528e-02, 6.1995e-01, 3.3441e-01, -1.5242e-01,\n", " -4.1493e-01, -2.2674e-01, 3.3035e-01, 4.1771e-01, -2.6339e-01,\n", " 1.6438e-02, 1.3321e-02, 3.6096e-01, 3.5693e-01, -2.7066e-01,\n", " 1.9357e-01, 3.4842e-01, -4.6198e-01, -2.5908e-01, 9.7302e-02,\n", " -5.1082e-01, -6.0207e-01, 5.3004e-01, -2.6133e-01, -1.3656e-01,\n", " 3.1702e-01, -1.9228e-01, 1.1084e-01, -1.2700e-01, 9.1848e-02,\n", " -1.2077e-01, -2.3991e-01, -2.2360e-01, 1.1209e-01]],\n", "\n", " [[ 1.3006e-03, 5.1264e-01, 1.4625e-01, 1.9990e-01, -9.8293e-04,\n", " -3.9322e-01, 1.0313e-02, 1.9901e-01, 5.2193e-01, 2.4577e-01,\n", " 3.6912e-01, -4.1717e-01, 1.6650e-01, -1.3958e-01, 5.7864e-02,\n", " 7.9536e-02, 1.9557e-01, -3.7678e-02, 5.0398e-01, -3.0349e-01,\n", " -2.0343e-02, 1.2007e-02, 3.0268e-02, 2.5128e-02, 4.6688e-01,\n", " 5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\n", " 2.3817e-01, -4.7999e-01, -1.1352e-01, 3.4405e-01, 4.7923e-01,\n", " 3.4116e-01, -1.3998e-01, 5.8126e-01, -5.3983e-01, 9.0539e-03,\n", " -2.8760e-01, 1.4470e-03, 4.1896e-01, 9.0540e-02, 8.4472e-02,\n", " 2.4745e-01, 2.4676e-01, 1.3342e-01, 2.1588e-01, 4.5192e-01,\n", " -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01, 1.4840e-01,\n", " -3.1757e-01, -2.9868e-01, 3.5217e-01, -4.8268e-01, 6.2362e-01,\n", " -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\n", " [-6.7714e-02, 4.2866e-01, 3.4476e-01, 1.5000e-01, -3.6190e-02,\n", " 8.3957e-02, 5.5312e-02, 3.0808e-02, 4.4187e-01, 3.5487e-01,\n", " 2.7749e-01, -5.4736e-01, 1.3060e-01, -1.2858e-01, 1.4391e-01,\n", " 2.2495e-02, 2.5716e-01, -1.1392e-01, 5.0622e-01, -5.3849e-01,\n", " 8.1028e-02, 1.1880e-01, -1.9030e-01, 1.6085e-01, 4.2327e-01,\n", " 3.3224e-01, -2.8663e-01, 1.5584e-01, 2.0010e-02, -1.3972e-01,\n", " 3.0517e-01, -3.2512e-01, 2.0605e-01, 3.9866e-01, 7.5201e-02,\n", " -1.4346e-01, 4.0802e-02, 2.5994e-01, -1.1602e-01, -3.1564e-01,\n", " -2.4646e-01, 2.8795e-01, 3.0432e-01, 3.9361e-01, -2.6748e-02,\n", " 3.1790e-01, 4.0642e-01, -3.9523e-02, 2.4936e-02, 2.3207e-01,\n", " -3.6772e-01, -7.2585e-01, 2.2393e-01, -4.9142e-01, 8.1099e-02,\n", " -2.7510e-01, -3.3252e-01, 2.6320e-04, -3.5465e-01, 5.0127e-01,\n", " -1.9976e-01, -4.5309e-01, -5.5326e-01, 1.9372e-01]],\n", "\n", " [[-1.7057e-01, 3.2322e-01, 2.4574e-01, 4.5261e-01, -2.0914e-01,\n", " -1.7835e-01, -1.3981e-01, -7.2055e-01, 4.6101e-01, 1.5611e-01,\n", " 1.9007e-01, -3.4269e-01, -1.1867e-01, 2.6001e-02, -2.9307e-01,\n", " 4.3272e-01, 2.6621e-01, 2.3335e-01, 5.2463e-01, -4.2147e-01,\n", " -2.7186e-01, -3.1412e-01, 2.4990e-01, 2.9644e-02, 3.8283e-01,\n", " -6.0349e-01, 4.2053e-01, 7.7588e-02, -5.3387e-01, -1.7636e-01,\n", " 5.6825e-01, -1.9517e-01, 2.9228e-01, 1.5452e-01, -1.3068e-01,\n", " -1.6854e-01, -6.7126e-01, 5.3163e-01, -1.5279e-01, -4.1532e-03,\n", " -4.1549e-01, -5.4631e-01, -2.0766e-01, 5.0530e-01, 2.4160e-01,\n", " 3.2883e-01, 6.5491e-02, 4.0148e-01, 3.9996e-01, 5.5935e-01,\n", " -2.0955e-01, 8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\n", " -2.2420e-02, -4.3686e-01, 3.6831e-01, 4.9070e-01, 6.7791e-01,\n", " 9.3536e-02, 9.6758e-02, 2.7063e-01, -5.9233e-01],\n", " [-2.1370e-01, 2.6253e-01, 3.7184e-01, 4.2944e-01, -2.2733e-01,\n", " 8.4641e-02, -1.1203e-01, -7.5004e-01, 4.0968e-01, 2.9284e-01,\n", " 1.0524e-01, -4.5711e-01, -1.3226e-01, 3.6899e-02, -2.9938e-01,\n", " 3.7876e-01, 3.0198e-01, 2.1248e-01, 5.0674e-01, -5.9870e-01,\n", " -2.2014e-01, -2.7972e-01, 1.8850e-01, 1.3672e-01, 3.6082e-01,\n", " -5.1068e-01, 3.8401e-01, 2.3140e-01, -4.6272e-01, -2.3285e-01,\n", " 5.9758e-01, -8.0234e-02, 4.1550e-01, 2.3767e-01, -3.2081e-01,\n", " -2.6955e-01, -6.4333e-01, 3.0121e-01, 1.8572e-01, -2.1806e-01,\n", " -3.6785e-01, -5.4011e-01, -3.0245e-01, 5.8575e-01, 1.6013e-01,\n", " 3.7621e-01, 1.5080e-01, 3.5251e-01, 2.9042e-01, 4.9547e-01,\n", " -2.0645e-01, 9.5648e-04, 3.2034e-01, -5.9634e-01, -4.1605e-02,\n", " 2.8428e-02, -4.5341e-01, 1.7124e-01, 4.6399e-01, 5.8401e-01,\n", " 1.8860e-03, -1.1181e-01, 3.3156e-01, -4.8292e-01]],\n", "\n", " [[-5.1405e-01, 7.2646e-01, 2.3313e-02, 2.9391e-01, -4.1278e-02,\n", " -6.8512e-01, -6.3971e-01, -7.3721e-01, 5.8138e-01, 2.3946e-01,\n", " -1.2826e-01, -4.2802e-01, -2.4249e-01, 6.9205e-01, -4.7766e-01,\n", " 1.3880e-01, -2.6832e-01, 8.0203e-01, 7.5108e-01, -3.1906e-01,\n", " -7.2209e-01, -3.2389e-01, 2.3982e-01, 4.4074e-02, 8.8281e-03,\n", " -5.3503e-01, 1.8058e-01, 5.3126e-01, -1.6590e-01, 4.4685e-02,\n", " 7.8644e-01, -5.1364e-01, 6.8338e-02, -6.5219e-02, 1.0594e-01,\n", " -4.3814e-02, -5.8792e-01, 5.3987e-01, -2.0544e-02, 3.5673e-02,\n", " 3.8325e-01, -8.9699e-01, -9.8914e-02, 2.7993e-01, -4.2853e-01,\n", " 2.6470e-01, -1.5111e-01, 1.2840e-01, 4.4130e-01, 7.0472e-01,\n", " -5.4222e-01, 6.3632e-01, -4.5410e-01, -7.3485e-01, 3.9335e-03,\n", " 2.1974e-02, -7.7820e-01, 7.1851e-01, 4.9839e-01, 4.5752e-01,\n", " -5.6736e-01, -1.1570e-01, 1.7741e-01, -6.8631e-01],\n", " [-5.2954e-01, 7.1507e-01, 1.1961e-01, 2.7049e-01, -4.1430e-02,\n", " -6.3285e-01, -6.2980e-01, -7.5369e-01, 5.6139e-01, 3.6687e-01,\n", " -1.8580e-01, -5.0004e-01, -2.4768e-01, 6.8709e-01, -4.7964e-01,\n", " 9.6180e-02, -2.4753e-01, 7.8835e-01, 7.4328e-01, -4.0307e-01,\n", " -7.0861e-01, -3.0193e-01, 1.9124e-01, 1.0709e-01, -1.1137e-02,\n", " -4.5462e-01, 1.6204e-01, 5.9233e-01, -1.0915e-01, 5.0066e-02,\n", " 7.9568e-01, -4.6623e-01, 1.3996e-01, 3.4372e-03, -3.3035e-02,\n", " -1.1971e-01, -5.7255e-01, 3.7681e-01, 1.9896e-01, -1.2122e-01,\n", " 3.8669e-01, -9.0198e-01, -1.6976e-01, 3.3988e-01, -4.4157e-01,\n", " 3.1625e-01, -1.0426e-01, 1.2102e-01, 3.5134e-01, 6.7499e-01,\n", " -5.4203e-01, 5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\n", " 5.9193e-02, -7.8978e-01, 6.7157e-01, 4.5797e-01, 4.0904e-01,\n", " -5.9217e-01, -1.8372e-01, 2.3222e-01, -6.0919e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([8, 6])\n", "dec_state: tensor([[[-0.3870, 0.0146, 0.2262, 0.3875, -0.1863, -0.5908, -0.7491,\n", " -0.6269, 0.2790, 0.0850, 0.0883, 0.3196, -0.1854, 0.6315,\n", " -0.1337, 0.0271, -0.1314, 0.1949, 0.3328, 0.5527, -0.2214,\n", " -0.2441, 0.4878, 0.0992, 0.2338, -0.4575, 0.2352, 0.5637,\n", " -0.2559, 0.4127, 0.2959, -0.6037, 0.6079, 0.3063, -0.1112,\n", " -0.0403, 0.2571, 0.4964, -0.3410, -0.1267, 0.0307, -0.7332,\n", " 0.0069, -0.1403, -0.5459, 0.5066, -0.0438, -0.5784, 0.5655,\n", " 0.5807, -0.4233, 0.7786, -0.6466, 0.4768, 0.0244, 0.0239,\n", " -0.4857, 0.3368, 0.1711, 0.2765, -0.3301, 0.1125, -0.1665,\n", " -0.2711],\n", " [-0.3240, 0.1824, 0.4186, 0.1187, 0.0474, -0.4022, -0.2703,\n", " -0.4224, 0.5533, 0.1276, -0.1419, -0.5163, 0.1098, 0.3714,\n", " -0.3420, -0.1969, -0.2866, 0.7322, 0.3184, 0.3839, -0.5632,\n", " 0.0961, 0.2589, -0.1661, 0.2507, -0.0378, 0.2592, 0.3025,\n", " -0.2708, -0.2858, 0.5161, -0.2001, 0.5533, 0.1468, 0.1514,\n", " 0.2717, 0.1727, 0.0795, -0.3983, 0.0196, 0.1431, -0.8477,\n", " -0.3032, -0.1926, -0.6660, 0.0109, -0.1844, -0.1248, 0.4916,\n", " 0.4975, -0.1204, 0.1012, -0.1936, 0.0269, -0.3707, 0.1165,\n", " -0.3884, -0.0772, 0.4265, -0.2031, -0.2211, 0.3295, -0.3133,\n", " -0.1344]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\n", " 1.0795e-01, 1.1117e-01, 1.0526e-01, -1.9621e-01, -1.7305e-01,\n", " 5.2908e-02, -1.1708e-01, -3.1992e-01, 2.5680e-01, 1.3125e-01,\n", " -5.8317e-01, 2.9118e-01, 9.6432e-02, -1.2121e-01, -5.2562e-01,\n", " -4.9280e-01, 9.9200e-04, 1.0100e-01, -1.4418e-01, -9.7080e-04,\n", " 4.9621e-02, -7.5445e-02, 8.9830e-02, 8.4073e-02, -1.0900e-01,\n", " -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01, 6.5989e-02,\n", " -1.1115e-01, -1.8222e-01, 2.0451e-02, -9.9988e-02, -3.5648e-01,\n", " 1.4316e-01, 5.8419e-01, 5.7575e-02, 7.9051e-02, -4.5552e-01,\n", " -2.5276e-01, 3.1515e-01, -7.7021e-02, -2.6506e-02, 3.6586e-01,\n", " 7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\n", " -2.8730e-02, -3.3728e-01, 1.7582e-01, 2.9807e-02, -3.0381e-01,\n", " 3.6682e-01, 2.1646e-01, 2.1079e-01, -2.2197e-01],\n", " [-5.9364e-02, 4.9278e-01, 3.9939e-01, -6.4556e-01, -5.4136e-01,\n", " 5.7767e-01, -8.2846e-02, 3.4757e-01, -2.6940e-01, -1.3587e-01,\n", " 2.9661e-01, 1.9267e-01, 3.3508e-01, -2.3874e-01, 1.6769e-01,\n", " 8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\n", " -1.1036e-01, -2.3516e-01, -3.3576e-01, 6.6362e-02, -4.2507e-01,\n", " -1.2496e-01, 7.5707e-01, 3.2817e-01, 4.5369e-01, 3.1337e-01,\n", " -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\n", " 2.0347e-02, 1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\n", " 1.2553e-01, -2.9570e-01, 6.3393e-02, 4.9087e-01, 2.6956e-01,\n", " -9.9909e-02, 1.1632e-01, 3.3636e-02, -6.5299e-01, 3.1438e-03,\n", " 1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02, 8.3628e-02,\n", " 2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\n", " 4.2149e-01, 3.3780e-02, -6.2170e-02, -1.9143e-01]],\n", "\n", " [[ 3.2377e-01, -3.5410e-01, -2.7126e-01, 6.7114e-01, -1.3655e-01,\n", " 1.6070e-01, 3.2438e-01, 4.1661e-01, 1.9747e-01, -2.9179e-01,\n", " 9.6542e-02, -5.5992e-02, 1.0121e-01, -3.8642e-01, 4.1851e-01,\n", " -1.1139e-01, 2.4136e-01, 2.3179e-01, 5.1139e-02, -4.5248e-01,\n", " -5.3721e-01, 8.7373e-02, 2.3784e-01, 1.2280e-01, 2.1850e-01,\n", " -9.6268e-02, -1.6007e-01, -1.3404e-01, 1.6351e-01, -2.4172e-01,\n", " -2.5418e-01, -9.7521e-02, 2.4446e-01, 3.5432e-01, 9.5840e-02,\n", " 1.5298e-01, -4.6807e-01, 7.6614e-01, 1.1059e-01, 1.0575e-01,\n", " 1.7815e-01, 5.6318e-01, 1.7585e-01, -7.1355e-02, -2.4294e-01,\n", " 3.2790e-02, 2.7889e-01, -4.4913e-01, 7.0002e-02, 5.5741e-01,\n", " -1.6276e-01, -3.6297e-01, 2.0895e-01, -4.0116e-01, -2.2522e-01,\n", " -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01, 4.5957e-01,\n", " -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\n", " [ 4.5037e-01, -3.6208e-02, -8.8401e-02, 5.8330e-01, -3.7614e-01,\n", " 2.7170e-01, 2.5848e-01, 5.3754e-01, 8.3193e-02, -2.1463e-01,\n", " 2.4849e-01, 9.6076e-02, 4.8274e-01, -5.3474e-01, 4.4389e-01,\n", " 1.8048e-01, 8.1216e-02, 3.8565e-02, -2.1158e-01, -1.0749e-01,\n", " -2.6261e-01, -3.1016e-02, -7.9159e-02, 2.0517e-01, 4.4546e-02,\n", " -2.3875e-01, 3.8012e-01, -2.2126e-03, 3.3358e-01, 1.0724e-02,\n", " -2.5482e-01, -8.6964e-02, 1.7899e-01, 5.1795e-01, -9.8892e-02,\n", " 2.9072e-01, -3.6883e-01, 8.0775e-01, -2.5374e-01, 1.7086e-01,\n", " 1.3368e-01, -6.3352e-02, 1.7475e-01, 1.2112e-01, 3.0679e-01,\n", " 1.3249e-01, 2.5912e-01, -5.0618e-01, -3.6696e-01, 3.8838e-01,\n", " -1.7201e-01, -4.2089e-01, 1.8540e-01, -3.9560e-01, 9.7645e-02,\n", " -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01, 5.1789e-01,\n", " -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\n", "\n", " [[ 6.1572e-02, -7.8968e-02, -1.2629e-01, 4.9267e-01, -3.3531e-01,\n", " -4.6577e-01, 4.6988e-01, 4.1398e-01, 3.0156e-01, 1.1518e-01,\n", " 3.1389e-02, -4.6762e-01, 1.8188e-01, -6.1688e-01, -2.6343e-01,\n", " -3.1576e-01, 4.9902e-01, -2.4268e-01, 1.6815e-01, -1.9693e-01,\n", " -3.1019e-01, 1.7517e-01, 3.3324e-01, 9.6325e-02, 2.4211e-01,\n", " -1.1460e-01, -3.7784e-01, -3.6116e-01, 2.4703e-01, 1.2421e-01,\n", " 2.6336e-01, -1.3863e-01, 4.4239e-01, 6.6868e-01, 3.9022e-01,\n", " 1.6709e-01, -3.4177e-01, 7.9374e-01, -2.0875e-01, 1.7250e-01,\n", " 9.2274e-02, 7.5432e-02, 3.1252e-01, -4.9550e-02, 4.5907e-02,\n", " 1.2979e-01, 2.7269e-01, -5.3483e-01, -6.1280e-02, 3.7396e-01,\n", " -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\n", " 8.6522e-02, 1.7051e-01, -4.1334e-02, -3.5324e-01, 2.7226e-01,\n", " -5.8631e-01, -5.0842e-01, 3.2943e-02, 2.5173e-01],\n", " [-6.6955e-02, -1.8796e-01, -9.6617e-02, 4.2052e-01, -2.8605e-01,\n", " -5.0497e-02, 1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\n", " 4.6530e-01, -2.1460e-01, 5.9005e-01, -2.3882e-01, 2.3549e-01,\n", " -4.8996e-01, 9.8277e-02, 1.9883e-01, 7.5948e-02, -3.6621e-03,\n", " -3.5541e-01, 2.3025e-01, 3.2918e-02, 2.3964e-01, 2.0046e-01,\n", " -8.6032e-02, 3.1096e-01, 3.6305e-02, -1.8553e-01, -7.1272e-02,\n", " -2.6754e-01, 1.9024e-01, 5.9301e-01, 4.9991e-01, 1.0630e-01,\n", " 2.9337e-01, -2.2475e-01, 7.7874e-01, 3.2949e-01, -1.6518e-01,\n", " -4.7336e-01, 1.0853e-01, 2.3952e-01, 3.3526e-01, -1.5270e-01,\n", " 1.4827e-01, 1.1312e-01, -6.9810e-01, -3.8128e-01, 9.0495e-02,\n", " -2.6985e-01, -6.3003e-01, 5.8684e-01, -6.1706e-01, 3.1610e-01,\n", " -1.5197e-01, 3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\n", " -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\n", "\n", " [[-2.7015e-01, 5.8729e-01, 1.4587e-01, 4.3972e-01, -1.1587e-01,\n", " -6.3192e-01, 4.2250e-01, 2.0748e-01, 4.9845e-01, 3.0032e-02,\n", " 3.4143e-01, -1.4835e-01, 3.7302e-01, 6.5627e-02, -1.1746e-01,\n", " -3.5304e-01, -7.3488e-02, 1.5345e-01, 3.8006e-01, 6.6840e-02,\n", " -4.7847e-01, -4.6739e-02, 2.2526e-01, -1.0725e-03, 4.1146e-01,\n", " -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01, 1.2527e-01,\n", " 1.1725e-01, -3.7594e-01, 6.2424e-02, 4.3085e-01, 7.0839e-01,\n", " 5.0156e-01, -6.4564e-01, 8.0471e-01, -4.8353e-01, 2.8749e-01,\n", " 5.4820e-02, -4.9795e-01, 3.6530e-01, -1.1493e-01, -2.3898e-02,\n", " 3.6245e-02, 1.0556e-01, -1.0374e-01, -1.8034e-02, 6.6806e-01,\n", " -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01, 1.8598e-01,\n", " -6.6235e-02, -1.3134e-01, 5.2580e-01, -3.6212e-01, 2.3866e-01,\n", " -1.7990e-02, 8.0296e-02, -3.7835e-01, -2.9699e-01],\n", " [-2.9946e-01, 1.7333e-01, 5.8426e-01, 3.4180e-01, -3.0022e-01,\n", " 1.7389e-01, 4.9503e-01, -8.8328e-02, 1.4499e-01, -9.1872e-02,\n", " 2.5825e-01, -3.0323e-01, 2.7515e-01, 1.3643e-02, 1.8358e-01,\n", " -2.9342e-01, 1.2102e-01, -3.1372e-03, 4.2592e-01, -3.2323e-01,\n", " -1.9382e-01, 1.0034e-01, -2.4542e-01, 1.7491e-01, 2.8585e-01,\n", " 2.1878e-01, -2.8580e-01, 2.6377e-01, -5.8683e-02, -1.8648e-02,\n", " 1.5466e-01, 6.1528e-02, 6.1995e-01, 3.3441e-01, -1.5242e-01,\n", " -4.1493e-01, -2.2674e-01, 3.3035e-01, 4.1771e-01, -2.6339e-01,\n", " 1.6438e-02, 1.3321e-02, 3.6096e-01, 3.5693e-01, -2.7066e-01,\n", " 1.9357e-01, 3.4842e-01, -4.6198e-01, -2.5908e-01, 9.7302e-02,\n", " -5.1082e-01, -6.0207e-01, 5.3004e-01, -2.6133e-01, -1.3656e-01,\n", " 3.1702e-01, -1.9228e-01, 1.1084e-01, -1.2700e-01, 9.1848e-02,\n", " -1.2077e-01, -2.3991e-01, -2.2360e-01, 1.1209e-01]],\n", "\n", " [[ 1.3006e-03, 5.1264e-01, 1.4625e-01, 1.9990e-01, -9.8293e-04,\n", " -3.9322e-01, 1.0313e-02, 1.9901e-01, 5.2193e-01, 2.4577e-01,\n", " 3.6912e-01, -4.1717e-01, 1.6650e-01, -1.3958e-01, 5.7864e-02,\n", " 7.9536e-02, 1.9557e-01, -3.7678e-02, 5.0398e-01, -3.0349e-01,\n", " -2.0343e-02, 1.2007e-02, 3.0268e-02, 2.5128e-02, 4.6688e-01,\n", " 5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\n", " 2.3817e-01, -4.7999e-01, -1.1352e-01, 3.4405e-01, 4.7923e-01,\n", " 3.4116e-01, -1.3998e-01, 5.8126e-01, -5.3983e-01, 9.0539e-03,\n", " -2.8760e-01, 1.4470e-03, 4.1896e-01, 9.0540e-02, 8.4472e-02,\n", " 2.4745e-01, 2.4676e-01, 1.3342e-01, 2.1588e-01, 4.5192e-01,\n", " -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01, 1.4840e-01,\n", " -3.1757e-01, -2.9868e-01, 3.5217e-01, -4.8268e-01, 6.2362e-01,\n", " -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\n", " [-6.7714e-02, 4.2866e-01, 3.4476e-01, 1.5000e-01, -3.6190e-02,\n", " 8.3957e-02, 5.5312e-02, 3.0808e-02, 4.4187e-01, 3.5487e-01,\n", " 2.7749e-01, -5.4736e-01, 1.3060e-01, -1.2858e-01, 1.4391e-01,\n", " 2.2495e-02, 2.5716e-01, -1.1392e-01, 5.0622e-01, -5.3849e-01,\n", " 8.1028e-02, 1.1880e-01, -1.9030e-01, 1.6085e-01, 4.2327e-01,\n", " 3.3224e-01, -2.8663e-01, 1.5584e-01, 2.0010e-02, -1.3972e-01,\n", " 3.0517e-01, -3.2512e-01, 2.0605e-01, 3.9866e-01, 7.5201e-02,\n", " -1.4346e-01, 4.0802e-02, 2.5994e-01, -1.1602e-01, -3.1564e-01,\n", " -2.4646e-01, 2.8795e-01, 3.0432e-01, 3.9361e-01, -2.6748e-02,\n", " 3.1790e-01, 4.0642e-01, -3.9523e-02, 2.4936e-02, 2.3207e-01,\n", " -3.6772e-01, -7.2585e-01, 2.2393e-01, -4.9142e-01, 8.1099e-02,\n", " -2.7510e-01, -3.3252e-01, 2.6320e-04, -3.5465e-01, 5.0127e-01,\n", " -1.9976e-01, -4.5309e-01, -5.5326e-01, 1.9372e-01]],\n", "\n", " [[-1.7057e-01, 3.2322e-01, 2.4574e-01, 4.5261e-01, -2.0914e-01,\n", " -1.7835e-01, -1.3981e-01, -7.2055e-01, 4.6101e-01, 1.5611e-01,\n", " 1.9007e-01, -3.4269e-01, -1.1867e-01, 2.6001e-02, -2.9307e-01,\n", " 4.3272e-01, 2.6621e-01, 2.3335e-01, 5.2463e-01, -4.2147e-01,\n", " -2.7186e-01, -3.1412e-01, 2.4990e-01, 2.9644e-02, 3.8283e-01,\n", " -6.0349e-01, 4.2053e-01, 7.7588e-02, -5.3387e-01, -1.7636e-01,\n", " 5.6825e-01, -1.9517e-01, 2.9228e-01, 1.5452e-01, -1.3068e-01,\n", " -1.6854e-01, -6.7126e-01, 5.3163e-01, -1.5279e-01, -4.1532e-03,\n", " -4.1549e-01, -5.4631e-01, -2.0766e-01, 5.0530e-01, 2.4160e-01,\n", " 3.2883e-01, 6.5491e-02, 4.0148e-01, 3.9996e-01, 5.5935e-01,\n", " -2.0955e-01, 8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\n", " -2.2420e-02, -4.3686e-01, 3.6831e-01, 4.9070e-01, 6.7791e-01,\n", " 9.3536e-02, 9.6758e-02, 2.7063e-01, -5.9233e-01],\n", " [-2.1370e-01, 2.6253e-01, 3.7184e-01, 4.2944e-01, -2.2733e-01,\n", " 8.4641e-02, -1.1203e-01, -7.5004e-01, 4.0968e-01, 2.9284e-01,\n", " 1.0524e-01, -4.5711e-01, -1.3226e-01, 3.6899e-02, -2.9938e-01,\n", " 3.7876e-01, 3.0198e-01, 2.1248e-01, 5.0674e-01, -5.9870e-01,\n", " -2.2014e-01, -2.7972e-01, 1.8850e-01, 1.3672e-01, 3.6082e-01,\n", " -5.1068e-01, 3.8401e-01, 2.3140e-01, -4.6272e-01, -2.3285e-01,\n", " 5.9758e-01, -8.0234e-02, 4.1550e-01, 2.3767e-01, -3.2081e-01,\n", " -2.6955e-01, -6.4333e-01, 3.0121e-01, 1.8572e-01, -2.1806e-01,\n", " -3.6785e-01, -5.4011e-01, -3.0245e-01, 5.8575e-01, 1.6013e-01,\n", " 3.7621e-01, 1.5080e-01, 3.5251e-01, 2.9042e-01, 4.9547e-01,\n", " -2.0645e-01, 9.5648e-04, 3.2034e-01, -5.9634e-01, -4.1605e-02,\n", " 2.8428e-02, -4.5341e-01, 1.7124e-01, 4.6399e-01, 5.8401e-01,\n", " 1.8860e-03, -1.1181e-01, 3.3156e-01, -4.8292e-01]],\n", "\n", " [[-5.1405e-01, 7.2646e-01, 2.3313e-02, 2.9391e-01, -4.1278e-02,\n", " -6.8512e-01, -6.3971e-01, -7.3721e-01, 5.8138e-01, 2.3946e-01,\n", " -1.2826e-01, -4.2802e-01, -2.4249e-01, 6.9205e-01, -4.7766e-01,\n", " 1.3880e-01, -2.6832e-01, 8.0203e-01, 7.5108e-01, -3.1906e-01,\n", " -7.2209e-01, -3.2389e-01, 2.3982e-01, 4.4074e-02, 8.8281e-03,\n", " -5.3503e-01, 1.8058e-01, 5.3126e-01, -1.6590e-01, 4.4685e-02,\n", " 7.8644e-01, -5.1364e-01, 6.8338e-02, -6.5219e-02, 1.0594e-01,\n", " -4.3814e-02, -5.8792e-01, 5.3987e-01, -2.0544e-02, 3.5673e-02,\n", " 3.8325e-01, -8.9699e-01, -9.8914e-02, 2.7993e-01, -4.2853e-01,\n", " 2.6470e-01, -1.5111e-01, 1.2840e-01, 4.4130e-01, 7.0472e-01,\n", " -5.4222e-01, 6.3632e-01, -4.5410e-01, -7.3485e-01, 3.9335e-03,\n", " 2.1974e-02, -7.7820e-01, 7.1851e-01, 4.9839e-01, 4.5752e-01,\n", " -5.6736e-01, -1.1570e-01, 1.7741e-01, -6.8631e-01],\n", " [-5.2954e-01, 7.1507e-01, 1.1961e-01, 2.7049e-01, -4.1430e-02,\n", " -6.3285e-01, -6.2980e-01, -7.5369e-01, 5.6139e-01, 3.6687e-01,\n", " -1.8580e-01, -5.0004e-01, -2.4768e-01, 6.8709e-01, -4.7964e-01,\n", " 9.6180e-02, -2.4753e-01, 7.8835e-01, 7.4328e-01, -4.0307e-01,\n", " -7.0861e-01, -3.0193e-01, 1.9124e-01, 1.0709e-01, -1.1137e-02,\n", " -4.5462e-01, 1.6204e-01, 5.9233e-01, -1.0915e-01, 5.0066e-02,\n", " 7.9568e-01, -4.6623e-01, 1.3996e-01, 3.4372e-03, -3.3035e-02,\n", " -1.1971e-01, -5.7255e-01, 3.7681e-01, 1.9896e-01, -1.2122e-01,\n", " 3.8669e-01, -9.0198e-01, -1.6976e-01, 3.3988e-01, -4.4157e-01,\n", " 3.1625e-01, -1.0426e-01, 1.2102e-01, 3.5134e-01, 6.7499e-01,\n", " -5.4203e-01, 5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\n", " 5.9193e-02, -7.8978e-01, 6.7157e-01, 4.5797e-01, 4.0904e-01,\n", " -5.9217e-01, -1.8372e-01, 2.3222e-01, -6.0919e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([4, 4])\n", "dec_state: tensor([[[-0.0868, 0.2188, -0.1826, 0.5603, -0.1596, -0.1662, -0.3613,\n", " 0.0304, -0.0323, -0.3273, -0.0967, -0.1743, -0.0240, 0.1761,\n", " -0.2658, 0.0848, 0.0347, 0.2976, -0.0364, 0.5802, -0.2290,\n", " -0.2141, 0.4353, 0.1843, 0.2786, -0.5640, 0.2980, 0.1451,\n", " -0.2970, 0.0357, -0.3452, -0.4721, 0.2027, 0.2155, 0.2494,\n", " 0.2512, -0.1623, -0.0113, -0.4027, -0.0194, 0.0194, -0.4186,\n", " 0.1546, 0.0242, -0.0225, -0.0274, 0.3602, 0.2945, 0.2618,\n", " 0.5189, -0.1896, 0.2425, -0.5667, 0.0585, 0.1053, -0.0271,\n", " -0.1372, -0.1315, -0.5570, 0.3052, -0.4495, 0.3297, -0.3905,\n", " -0.3017],\n", " [-0.0275, 0.2379, -0.0319, 0.4698, -0.1619, -0.0706, -0.0780,\n", " 0.1541, 0.0327, -0.2243, -0.3156, -0.4628, 0.1860, -0.0101,\n", " -0.4054, 0.0029, -0.0080, 0.5652, -0.1516, 0.5389, -0.5006,\n", " -0.0446, 0.2613, -0.0280, 0.3845, -0.3965, 0.3268, 0.0406,\n", " -0.3839, -0.3333, -0.2886, -0.2945, 0.2206, 0.2528, 0.3814,\n", " 0.3828, -0.1332, -0.2654, -0.4855, 0.0869, 0.1276, -0.5049,\n", " -0.0909, -0.0342, -0.0861, -0.2700, 0.3030, 0.2807, 0.2331,\n", " 0.4310, -0.1804, -0.1778, -0.2705, -0.2316, -0.1448, -0.0105,\n", " -0.0791, -0.3755, -0.4808, 0.0087, -0.4352, 0.3613, -0.4610,\n", " -0.2611]]], grad_fn=) torch.Size([1, 2, 64])\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\n", " 1.0795e-01, 1.1117e-01, 1.0526e-01, -1.9621e-01, -1.7305e-01,\n", " 5.2908e-02, -1.1708e-01, -3.1992e-01, 2.5680e-01, 1.3125e-01,\n", " -5.8317e-01, 2.9118e-01, 9.6432e-02, -1.2121e-01, -5.2562e-01,\n", " -4.9280e-01, 9.9200e-04, 1.0100e-01, -1.4418e-01, -9.7080e-04,\n", " 4.9621e-02, -7.5445e-02, 8.9830e-02, 8.4073e-02, -1.0900e-01,\n", " -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01, 6.5989e-02,\n", " -1.1115e-01, -1.8222e-01, 2.0451e-02, -9.9988e-02, -3.5648e-01,\n", " 1.4316e-01, 5.8419e-01, 5.7575e-02, 7.9051e-02, -4.5552e-01,\n", " -2.5276e-01, 3.1515e-01, -7.7021e-02, -2.6506e-02, 3.6586e-01,\n", " 7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\n", " -2.8730e-02, -3.3728e-01, 1.7582e-01, 2.9807e-02, -3.0381e-01,\n", " 3.6682e-01, 2.1646e-01, 2.1079e-01, -2.2197e-01],\n", " [-5.9364e-02, 4.9278e-01, 3.9939e-01, -6.4556e-01, -5.4136e-01,\n", " 5.7767e-01, -8.2846e-02, 3.4757e-01, -2.6940e-01, -1.3587e-01,\n", " 2.9661e-01, 1.9267e-01, 3.3508e-01, -2.3874e-01, 1.6769e-01,\n", " 8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\n", " -1.1036e-01, -2.3516e-01, -3.3576e-01, 6.6362e-02, -4.2507e-01,\n", " -1.2496e-01, 7.5707e-01, 3.2817e-01, 4.5369e-01, 3.1337e-01,\n", " -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\n", " 2.0347e-02, 1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\n", " 1.2553e-01, -2.9570e-01, 6.3393e-02, 4.9087e-01, 2.6956e-01,\n", " -9.9909e-02, 1.1632e-01, 3.3636e-02, -6.5299e-01, 3.1438e-03,\n", " 1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02, 8.3628e-02,\n", " 2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\n", " 4.2149e-01, 3.3780e-02, -6.2170e-02, -1.9143e-01]],\n", "\n", " [[ 3.2377e-01, -3.5410e-01, -2.7126e-01, 6.7114e-01, -1.3655e-01,\n", " 1.6070e-01, 3.2438e-01, 4.1661e-01, 1.9747e-01, -2.9179e-01,\n", " 9.6542e-02, -5.5992e-02, 1.0121e-01, -3.8642e-01, 4.1851e-01,\n", " -1.1139e-01, 2.4136e-01, 2.3179e-01, 5.1139e-02, -4.5248e-01,\n", " -5.3721e-01, 8.7373e-02, 2.3784e-01, 1.2280e-01, 2.1850e-01,\n", " -9.6268e-02, -1.6007e-01, -1.3404e-01, 1.6351e-01, -2.4172e-01,\n", " -2.5418e-01, -9.7521e-02, 2.4446e-01, 3.5432e-01, 9.5840e-02,\n", " 1.5298e-01, -4.6807e-01, 7.6614e-01, 1.1059e-01, 1.0575e-01,\n", " 1.7815e-01, 5.6318e-01, 1.7585e-01, -7.1355e-02, -2.4294e-01,\n", " 3.2790e-02, 2.7889e-01, -4.4913e-01, 7.0002e-02, 5.5741e-01,\n", " -1.6276e-01, -3.6297e-01, 2.0895e-01, -4.0116e-01, -2.2522e-01,\n", " -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01, 4.5957e-01,\n", " -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\n", " [ 4.5037e-01, -3.6208e-02, -8.8401e-02, 5.8330e-01, -3.7614e-01,\n", " 2.7170e-01, 2.5848e-01, 5.3754e-01, 8.3193e-02, -2.1463e-01,\n", " 2.4849e-01, 9.6076e-02, 4.8274e-01, -5.3474e-01, 4.4389e-01,\n", " 1.8048e-01, 8.1216e-02, 3.8565e-02, -2.1158e-01, -1.0749e-01,\n", " -2.6261e-01, -3.1016e-02, -7.9159e-02, 2.0517e-01, 4.4546e-02,\n", " -2.3875e-01, 3.8012e-01, -2.2126e-03, 3.3358e-01, 1.0724e-02,\n", " -2.5482e-01, -8.6964e-02, 1.7899e-01, 5.1795e-01, -9.8892e-02,\n", " 2.9072e-01, -3.6883e-01, 8.0775e-01, -2.5374e-01, 1.7086e-01,\n", " 1.3368e-01, -6.3352e-02, 1.7475e-01, 1.2112e-01, 3.0679e-01,\n", " 1.3249e-01, 2.5912e-01, -5.0618e-01, -3.6696e-01, 3.8838e-01,\n", " -1.7201e-01, -4.2089e-01, 1.8540e-01, -3.9560e-01, 9.7645e-02,\n", " -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01, 5.1789e-01,\n", " -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\n", "\n", " [[ 6.1572e-02, -7.8968e-02, -1.2629e-01, 4.9267e-01, -3.3531e-01,\n", " -4.6577e-01, 4.6988e-01, 4.1398e-01, 3.0156e-01, 1.1518e-01,\n", " 3.1389e-02, -4.6762e-01, 1.8188e-01, -6.1688e-01, -2.6343e-01,\n", " -3.1576e-01, 4.9902e-01, -2.4268e-01, 1.6815e-01, -1.9693e-01,\n", " -3.1019e-01, 1.7517e-01, 3.3324e-01, 9.6325e-02, 2.4211e-01,\n", " -1.1460e-01, -3.7784e-01, -3.6116e-01, 2.4703e-01, 1.2421e-01,\n", " 2.6336e-01, -1.3863e-01, 4.4239e-01, 6.6868e-01, 3.9022e-01,\n", " 1.6709e-01, -3.4177e-01, 7.9374e-01, -2.0875e-01, 1.7250e-01,\n", " 9.2274e-02, 7.5432e-02, 3.1252e-01, -4.9550e-02, 4.5907e-02,\n", " 1.2979e-01, 2.7269e-01, -5.3483e-01, -6.1280e-02, 3.7396e-01,\n", " -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\n", " 8.6522e-02, 1.7051e-01, -4.1334e-02, -3.5324e-01, 2.7226e-01,\n", " -5.8631e-01, -5.0842e-01, 3.2943e-02, 2.5173e-01],\n", " [-6.6955e-02, -1.8796e-01, -9.6617e-02, 4.2052e-01, -2.8605e-01,\n", " -5.0497e-02, 1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\n", " 4.6530e-01, -2.1460e-01, 5.9005e-01, -2.3882e-01, 2.3549e-01,\n", " -4.8996e-01, 9.8277e-02, 1.9883e-01, 7.5948e-02, -3.6621e-03,\n", " -3.5541e-01, 2.3025e-01, 3.2918e-02, 2.3964e-01, 2.0046e-01,\n", " -8.6032e-02, 3.1096e-01, 3.6305e-02, -1.8553e-01, -7.1272e-02,\n", " -2.6754e-01, 1.9024e-01, 5.9301e-01, 4.9991e-01, 1.0630e-01,\n", " 2.9337e-01, -2.2475e-01, 7.7874e-01, 3.2949e-01, -1.6518e-01,\n", " -4.7336e-01, 1.0853e-01, 2.3952e-01, 3.3526e-01, -1.5270e-01,\n", " 1.4827e-01, 1.1312e-01, -6.9810e-01, -3.8128e-01, 9.0495e-02,\n", " -2.6985e-01, -6.3003e-01, 5.8684e-01, -6.1706e-01, 3.1610e-01,\n", " -1.5197e-01, 3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\n", " -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\n", "\n", " [[-2.7015e-01, 5.8729e-01, 1.4587e-01, 4.3972e-01, -1.1587e-01,\n", " -6.3192e-01, 4.2250e-01, 2.0748e-01, 4.9845e-01, 3.0032e-02,\n", " 3.4143e-01, -1.4835e-01, 3.7302e-01, 6.5627e-02, -1.1746e-01,\n", " -3.5304e-01, -7.3488e-02, 1.5345e-01, 3.8006e-01, 6.6840e-02,\n", " -4.7847e-01, -4.6739e-02, 2.2526e-01, -1.0725e-03, 4.1146e-01,\n", " -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01, 1.2527e-01,\n", " 1.1725e-01, -3.7594e-01, 6.2424e-02, 4.3085e-01, 7.0839e-01,\n", " 5.0156e-01, -6.4564e-01, 8.0471e-01, -4.8353e-01, 2.8749e-01,\n", " 5.4820e-02, -4.9795e-01, 3.6530e-01, -1.1493e-01, -2.3898e-02,\n", " 3.6245e-02, 1.0556e-01, -1.0374e-01, -1.8034e-02, 6.6806e-01,\n", " -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01, 1.8598e-01,\n", " -6.6235e-02, -1.3134e-01, 5.2580e-01, -3.6212e-01, 2.3866e-01,\n", " -1.7990e-02, 8.0296e-02, -3.7835e-01, -2.9699e-01],\n", " [-2.9946e-01, 1.7333e-01, 5.8426e-01, 3.4180e-01, -3.0022e-01,\n", " 1.7389e-01, 4.9503e-01, -8.8328e-02, 1.4499e-01, -9.1872e-02,\n", " 2.5825e-01, -3.0323e-01, 2.7515e-01, 1.3643e-02, 1.8358e-01,\n", " -2.9342e-01, 1.2102e-01, -3.1372e-03, 4.2592e-01, -3.2323e-01,\n", " -1.9382e-01, 1.0034e-01, -2.4542e-01, 1.7491e-01, 2.8585e-01,\n", " 2.1878e-01, -2.8580e-01, 2.6377e-01, -5.8683e-02, -1.8648e-02,\n", " 1.5466e-01, 6.1528e-02, 6.1995e-01, 3.3441e-01, -1.5242e-01,\n", " -4.1493e-01, -2.2674e-01, 3.3035e-01, 4.1771e-01, -2.6339e-01,\n", " 1.6438e-02, 1.3321e-02, 3.6096e-01, 3.5693e-01, -2.7066e-01,\n", " 1.9357e-01, 3.4842e-01, -4.6198e-01, -2.5908e-01, 9.7302e-02,\n", " -5.1082e-01, -6.0207e-01, 5.3004e-01, -2.6133e-01, -1.3656e-01,\n", " 3.1702e-01, -1.9228e-01, 1.1084e-01, -1.2700e-01, 9.1848e-02,\n", " -1.2077e-01, -2.3991e-01, -2.2360e-01, 1.1209e-01]],\n", "\n", " [[ 1.3006e-03, 5.1264e-01, 1.4625e-01, 1.9990e-01, -9.8293e-04,\n", " -3.9322e-01, 1.0313e-02, 1.9901e-01, 5.2193e-01, 2.4577e-01,\n", " 3.6912e-01, -4.1717e-01, 1.6650e-01, -1.3958e-01, 5.7864e-02,\n", " 7.9536e-02, 1.9557e-01, -3.7678e-02, 5.0398e-01, -3.0349e-01,\n", " -2.0343e-02, 1.2007e-02, 3.0268e-02, 2.5128e-02, 4.6688e-01,\n", " 5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\n", " 2.3817e-01, -4.7999e-01, -1.1352e-01, 3.4405e-01, 4.7923e-01,\n", " 3.4116e-01, -1.3998e-01, 5.8126e-01, -5.3983e-01, 9.0539e-03,\n", " -2.8760e-01, 1.4470e-03, 4.1896e-01, 9.0540e-02, 8.4472e-02,\n", " 2.4745e-01, 2.4676e-01, 1.3342e-01, 2.1588e-01, 4.5192e-01,\n", " -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01, 1.4840e-01,\n", " -3.1757e-01, -2.9868e-01, 3.5217e-01, -4.8268e-01, 6.2362e-01,\n", " -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\n", " [-6.7714e-02, 4.2866e-01, 3.4476e-01, 1.5000e-01, -3.6190e-02,\n", " 8.3957e-02, 5.5312e-02, 3.0808e-02, 4.4187e-01, 3.5487e-01,\n", " 2.7749e-01, -5.4736e-01, 1.3060e-01, -1.2858e-01, 1.4391e-01,\n", " 2.2495e-02, 2.5716e-01, -1.1392e-01, 5.0622e-01, -5.3849e-01,\n", " 8.1028e-02, 1.1880e-01, -1.9030e-01, 1.6085e-01, 4.2327e-01,\n", " 3.3224e-01, -2.8663e-01, 1.5584e-01, 2.0010e-02, -1.3972e-01,\n", " 3.0517e-01, -3.2512e-01, 2.0605e-01, 3.9866e-01, 7.5201e-02,\n", " -1.4346e-01, 4.0802e-02, 2.5994e-01, -1.1602e-01, -3.1564e-01,\n", " -2.4646e-01, 2.8795e-01, 3.0432e-01, 3.9361e-01, -2.6748e-02,\n", " 3.1790e-01, 4.0642e-01, -3.9523e-02, 2.4936e-02, 2.3207e-01,\n", " -3.6772e-01, -7.2585e-01, 2.2393e-01, -4.9142e-01, 8.1099e-02,\n", " -2.7510e-01, -3.3252e-01, 2.6320e-04, -3.5465e-01, 5.0127e-01,\n", " -1.9976e-01, -4.5309e-01, -5.5326e-01, 1.9372e-01]],\n", "\n", " [[-1.7057e-01, 3.2322e-01, 2.4574e-01, 4.5261e-01, -2.0914e-01,\n", " -1.7835e-01, -1.3981e-01, -7.2055e-01, 4.6101e-01, 1.5611e-01,\n", " 1.9007e-01, -3.4269e-01, -1.1867e-01, 2.6001e-02, -2.9307e-01,\n", " 4.3272e-01, 2.6621e-01, 2.3335e-01, 5.2463e-01, -4.2147e-01,\n", " -2.7186e-01, -3.1412e-01, 2.4990e-01, 2.9644e-02, 3.8283e-01,\n", " -6.0349e-01, 4.2053e-01, 7.7588e-02, -5.3387e-01, -1.7636e-01,\n", " 5.6825e-01, -1.9517e-01, 2.9228e-01, 1.5452e-01, -1.3068e-01,\n", " -1.6854e-01, -6.7126e-01, 5.3163e-01, -1.5279e-01, -4.1532e-03,\n", " -4.1549e-01, -5.4631e-01, -2.0766e-01, 5.0530e-01, 2.4160e-01,\n", " 3.2883e-01, 6.5491e-02, 4.0148e-01, 3.9996e-01, 5.5935e-01,\n", " -2.0955e-01, 8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\n", " -2.2420e-02, -4.3686e-01, 3.6831e-01, 4.9070e-01, 6.7791e-01,\n", " 9.3536e-02, 9.6758e-02, 2.7063e-01, -5.9233e-01],\n", " [-2.1370e-01, 2.6253e-01, 3.7184e-01, 4.2944e-01, -2.2733e-01,\n", " 8.4641e-02, -1.1203e-01, -7.5004e-01, 4.0968e-01, 2.9284e-01,\n", " 1.0524e-01, -4.5711e-01, -1.3226e-01, 3.6899e-02, -2.9938e-01,\n", " 3.7876e-01, 3.0198e-01, 2.1248e-01, 5.0674e-01, -5.9870e-01,\n", " -2.2014e-01, -2.7972e-01, 1.8850e-01, 1.3672e-01, 3.6082e-01,\n", " -5.1068e-01, 3.8401e-01, 2.3140e-01, -4.6272e-01, -2.3285e-01,\n", " 5.9758e-01, -8.0234e-02, 4.1550e-01, 2.3767e-01, -3.2081e-01,\n", " -2.6955e-01, -6.4333e-01, 3.0121e-01, 1.8572e-01, -2.1806e-01,\n", " -3.6785e-01, -5.4011e-01, -3.0245e-01, 5.8575e-01, 1.6013e-01,\n", " 3.7621e-01, 1.5080e-01, 3.5251e-01, 2.9042e-01, 4.9547e-01,\n", " -2.0645e-01, 9.5648e-04, 3.2034e-01, -5.9634e-01, -4.1605e-02,\n", " 2.8428e-02, -4.5341e-01, 1.7124e-01, 4.6399e-01, 5.8401e-01,\n", " 1.8860e-03, -1.1181e-01, 3.3156e-01, -4.8292e-01]],\n", "\n", " [[-5.1405e-01, 7.2646e-01, 2.3313e-02, 2.9391e-01, -4.1278e-02,\n", " -6.8512e-01, -6.3971e-01, -7.3721e-01, 5.8138e-01, 2.3946e-01,\n", " -1.2826e-01, -4.2802e-01, -2.4249e-01, 6.9205e-01, -4.7766e-01,\n", " 1.3880e-01, -2.6832e-01, 8.0203e-01, 7.5108e-01, -3.1906e-01,\n", " -7.2209e-01, -3.2389e-01, 2.3982e-01, 4.4074e-02, 8.8281e-03,\n", " -5.3503e-01, 1.8058e-01, 5.3126e-01, -1.6590e-01, 4.4685e-02,\n", " 7.8644e-01, -5.1364e-01, 6.8338e-02, -6.5219e-02, 1.0594e-01,\n", " -4.3814e-02, -5.8792e-01, 5.3987e-01, -2.0544e-02, 3.5673e-02,\n", " 3.8325e-01, -8.9699e-01, -9.8914e-02, 2.7993e-01, -4.2853e-01,\n", " 2.6470e-01, -1.5111e-01, 1.2840e-01, 4.4130e-01, 7.0472e-01,\n", " -5.4222e-01, 6.3632e-01, -4.5410e-01, -7.3485e-01, 3.9335e-03,\n", " 2.1974e-02, -7.7820e-01, 7.1851e-01, 4.9839e-01, 4.5752e-01,\n", " -5.6736e-01, -1.1570e-01, 1.7741e-01, -6.8631e-01],\n", " [-5.2954e-01, 7.1507e-01, 1.1961e-01, 2.7049e-01, -4.1430e-02,\n", " -6.3285e-01, -6.2980e-01, -7.5369e-01, 5.6139e-01, 3.6687e-01,\n", " -1.8580e-01, -5.0004e-01, -2.4768e-01, 6.8709e-01, -4.7964e-01,\n", " 9.6180e-02, -2.4753e-01, 7.8835e-01, 7.4328e-01, -4.0307e-01,\n", " -7.0861e-01, -3.0193e-01, 1.9124e-01, 1.0709e-01, -1.1137e-02,\n", " -4.5462e-01, 1.6204e-01, 5.9233e-01, -1.0915e-01, 5.0066e-02,\n", " 7.9568e-01, -4.6623e-01, 1.3996e-01, 3.4372e-03, -3.3035e-02,\n", " -1.1971e-01, -5.7255e-01, 3.7681e-01, 1.9896e-01, -1.2122e-01,\n", " 3.8669e-01, -9.0198e-01, -1.6976e-01, 3.3988e-01, -4.4157e-01,\n", " 3.1625e-01, -1.0426e-01, 1.2102e-01, 3.5134e-01, 6.7499e-01,\n", " -5.4203e-01, 5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\n", " 5.9193e-02, -7.8978e-01, 6.7157e-01, 4.5797e-01, 4.0904e-01,\n", " -5.9217e-01, -1.8372e-01, 2.3222e-01, -6.0919e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([10, 9])\n", "dec_state: tensor([[[-0.0097, 0.4272, 0.2202, 0.6867, 0.0931, -0.0485, -0.4111,\n", " 0.0775, -0.4581, -0.3938, -0.5451, 0.0102, -0.2225, 0.1565,\n", " -0.2731, 0.1301, 0.4523, 0.0851, 0.3276, 0.3611, -0.1639,\n", " -0.5603, 0.1990, 0.3512, -0.0368, -0.3202, 0.5012, 0.0240,\n", " -0.2715, 0.1164, -0.5094, -0.1654, 0.0062, -0.1278, -0.6038,\n", " 0.5580, -0.2510, 0.0221, -0.4655, 0.0214, -0.1069, -0.0232,\n", " -0.0834, 0.4616, -0.1138, 0.0213, 0.3675, -0.1400, 0.3013,\n", " 0.2403, -0.0904, -0.1887, -0.5031, -0.2537, -0.3975, 0.1455,\n", " -0.1847, 0.5543, -0.6072, -0.2217, -0.6659, 0.5137, -0.1449,\n", " 0.3036],\n", " [ 0.2515, 0.2307, -0.1274, 0.5427, 0.1354, 0.1604, 0.0553,\n", " -0.0688, 0.2236, -0.2780, -0.4119, -0.5939, 0.0458, 0.0957,\n", " -0.2799, 0.3553, -0.1319, 0.6715, -0.1900, 0.6442, 0.0032,\n", " -0.2891, -0.0985, 0.0966, 0.0652, -0.6051, -0.0044, -0.0934,\n", " -0.5188, -0.2173, -0.1409, 0.0570, 0.0065, 0.2711, 0.0667,\n", " -0.1444, -0.0983, -0.2624, 0.2168, -0.2709, -0.0084, -0.3294,\n", " 0.0875, -0.1228, -0.3877, -0.2682, 0.3532, 0.2028, 0.2900,\n", " 0.5153, -0.0089, 0.1474, 0.2249, -0.3587, 0.0467, -0.3453,\n", " 0.3051, 0.1550, -0.0072, 0.1444, -0.2980, 0.0621, -0.5981,\n", " 0.2960]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\n", " 1.0795e-01, 1.1117e-01, 1.0526e-01, -1.9621e-01, -1.7305e-01,\n", " 5.2908e-02, -1.1708e-01, -3.1992e-01, 2.5680e-01, 1.3125e-01,\n", " -5.8317e-01, 2.9118e-01, 9.6432e-02, -1.2121e-01, -5.2562e-01,\n", " -4.9280e-01, 9.9200e-04, 1.0100e-01, -1.4418e-01, -9.7080e-04,\n", " 4.9621e-02, -7.5445e-02, 8.9830e-02, 8.4073e-02, -1.0900e-01,\n", " -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01, 6.5989e-02,\n", " -1.1115e-01, -1.8222e-01, 2.0451e-02, -9.9988e-02, -3.5648e-01,\n", " 1.4316e-01, 5.8419e-01, 5.7575e-02, 7.9051e-02, -4.5552e-01,\n", " -2.5276e-01, 3.1515e-01, -7.7021e-02, -2.6506e-02, 3.6586e-01,\n", " 7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\n", " -2.8730e-02, -3.3728e-01, 1.7582e-01, 2.9807e-02, -3.0381e-01,\n", " 3.6682e-01, 2.1646e-01, 2.1079e-01, -2.2197e-01],\n", " [-5.9364e-02, 4.9278e-01, 3.9939e-01, -6.4556e-01, -5.4136e-01,\n", " 5.7767e-01, -8.2846e-02, 3.4757e-01, -2.6940e-01, -1.3587e-01,\n", " 2.9661e-01, 1.9267e-01, 3.3508e-01, -2.3874e-01, 1.6769e-01,\n", " 8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\n", " -1.1036e-01, -2.3516e-01, -3.3576e-01, 6.6362e-02, -4.2507e-01,\n", " -1.2496e-01, 7.5707e-01, 3.2817e-01, 4.5369e-01, 3.1337e-01,\n", " -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\n", " 2.0347e-02, 1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\n", " 1.2553e-01, -2.9570e-01, 6.3393e-02, 4.9087e-01, 2.6956e-01,\n", " -9.9909e-02, 1.1632e-01, 3.3636e-02, -6.5299e-01, 3.1438e-03,\n", " 1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02, 8.3628e-02,\n", " 2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\n", " 4.2149e-01, 3.3780e-02, -6.2170e-02, -1.9143e-01]],\n", "\n", " [[ 3.2377e-01, -3.5410e-01, -2.7126e-01, 6.7114e-01, -1.3655e-01,\n", " 1.6070e-01, 3.2438e-01, 4.1661e-01, 1.9747e-01, -2.9179e-01,\n", " 9.6542e-02, -5.5992e-02, 1.0121e-01, -3.8642e-01, 4.1851e-01,\n", " -1.1139e-01, 2.4136e-01, 2.3179e-01, 5.1139e-02, -4.5248e-01,\n", " -5.3721e-01, 8.7373e-02, 2.3784e-01, 1.2280e-01, 2.1850e-01,\n", " -9.6268e-02, -1.6007e-01, -1.3404e-01, 1.6351e-01, -2.4172e-01,\n", " -2.5418e-01, -9.7521e-02, 2.4446e-01, 3.5432e-01, 9.5840e-02,\n", " 1.5298e-01, -4.6807e-01, 7.6614e-01, 1.1059e-01, 1.0575e-01,\n", " 1.7815e-01, 5.6318e-01, 1.7585e-01, -7.1355e-02, -2.4294e-01,\n", " 3.2790e-02, 2.7889e-01, -4.4913e-01, 7.0002e-02, 5.5741e-01,\n", " -1.6276e-01, -3.6297e-01, 2.0895e-01, -4.0116e-01, -2.2522e-01,\n", " -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01, 4.5957e-01,\n", " -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\n", " [ 4.5037e-01, -3.6208e-02, -8.8401e-02, 5.8330e-01, -3.7614e-01,\n", " 2.7170e-01, 2.5848e-01, 5.3754e-01, 8.3193e-02, -2.1463e-01,\n", " 2.4849e-01, 9.6076e-02, 4.8274e-01, -5.3474e-01, 4.4389e-01,\n", " 1.8048e-01, 8.1216e-02, 3.8565e-02, -2.1158e-01, -1.0749e-01,\n", " -2.6261e-01, -3.1016e-02, -7.9159e-02, 2.0517e-01, 4.4546e-02,\n", " -2.3875e-01, 3.8012e-01, -2.2126e-03, 3.3358e-01, 1.0724e-02,\n", " -2.5482e-01, -8.6964e-02, 1.7899e-01, 5.1795e-01, -9.8892e-02,\n", " 2.9072e-01, -3.6883e-01, 8.0775e-01, -2.5374e-01, 1.7086e-01,\n", " 1.3368e-01, -6.3352e-02, 1.7475e-01, 1.2112e-01, 3.0679e-01,\n", " 1.3249e-01, 2.5912e-01, -5.0618e-01, -3.6696e-01, 3.8838e-01,\n", " -1.7201e-01, -4.2089e-01, 1.8540e-01, -3.9560e-01, 9.7645e-02,\n", " -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01, 5.1789e-01,\n", " -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\n", "\n", " [[ 6.1572e-02, -7.8968e-02, -1.2629e-01, 4.9267e-01, -3.3531e-01,\n", " -4.6577e-01, 4.6988e-01, 4.1398e-01, 3.0156e-01, 1.1518e-01,\n", " 3.1389e-02, -4.6762e-01, 1.8188e-01, -6.1688e-01, -2.6343e-01,\n", " -3.1576e-01, 4.9902e-01, -2.4268e-01, 1.6815e-01, -1.9693e-01,\n", " -3.1019e-01, 1.7517e-01, 3.3324e-01, 9.6325e-02, 2.4211e-01,\n", " -1.1460e-01, -3.7784e-01, -3.6116e-01, 2.4703e-01, 1.2421e-01,\n", " 2.6336e-01, -1.3863e-01, 4.4239e-01, 6.6868e-01, 3.9022e-01,\n", " 1.6709e-01, -3.4177e-01, 7.9374e-01, -2.0875e-01, 1.7250e-01,\n", " 9.2274e-02, 7.5432e-02, 3.1252e-01, -4.9550e-02, 4.5907e-02,\n", " 1.2979e-01, 2.7269e-01, -5.3483e-01, -6.1280e-02, 3.7396e-01,\n", " -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\n", " 8.6522e-02, 1.7051e-01, -4.1334e-02, -3.5324e-01, 2.7226e-01,\n", " -5.8631e-01, -5.0842e-01, 3.2943e-02, 2.5173e-01],\n", " [-6.6955e-02, -1.8796e-01, -9.6617e-02, 4.2052e-01, -2.8605e-01,\n", " -5.0497e-02, 1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\n", " 4.6530e-01, -2.1460e-01, 5.9005e-01, -2.3882e-01, 2.3549e-01,\n", " -4.8996e-01, 9.8277e-02, 1.9883e-01, 7.5948e-02, -3.6621e-03,\n", " -3.5541e-01, 2.3025e-01, 3.2918e-02, 2.3964e-01, 2.0046e-01,\n", " -8.6032e-02, 3.1096e-01, 3.6305e-02, -1.8553e-01, -7.1272e-02,\n", " -2.6754e-01, 1.9024e-01, 5.9301e-01, 4.9991e-01, 1.0630e-01,\n", " 2.9337e-01, -2.2475e-01, 7.7874e-01, 3.2949e-01, -1.6518e-01,\n", " -4.7336e-01, 1.0853e-01, 2.3952e-01, 3.3526e-01, -1.5270e-01,\n", " 1.4827e-01, 1.1312e-01, -6.9810e-01, -3.8128e-01, 9.0495e-02,\n", " -2.6985e-01, -6.3003e-01, 5.8684e-01, -6.1706e-01, 3.1610e-01,\n", " -1.5197e-01, 3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\n", " -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\n", "\n", " [[-2.7015e-01, 5.8729e-01, 1.4587e-01, 4.3972e-01, -1.1587e-01,\n", " -6.3192e-01, 4.2250e-01, 2.0748e-01, 4.9845e-01, 3.0032e-02,\n", " 3.4143e-01, -1.4835e-01, 3.7302e-01, 6.5627e-02, -1.1746e-01,\n", " -3.5304e-01, -7.3488e-02, 1.5345e-01, 3.8006e-01, 6.6840e-02,\n", " -4.7847e-01, -4.6739e-02, 2.2526e-01, -1.0725e-03, 4.1146e-01,\n", " -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01, 1.2527e-01,\n", " 1.1725e-01, -3.7594e-01, 6.2424e-02, 4.3085e-01, 7.0839e-01,\n", " 5.0156e-01, -6.4564e-01, 8.0471e-01, -4.8353e-01, 2.8749e-01,\n", " 5.4820e-02, -4.9795e-01, 3.6530e-01, -1.1493e-01, -2.3898e-02,\n", " 3.6245e-02, 1.0556e-01, -1.0374e-01, -1.8034e-02, 6.6806e-01,\n", " -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01, 1.8598e-01,\n", " -6.6235e-02, -1.3134e-01, 5.2580e-01, -3.6212e-01, 2.3866e-01,\n", " -1.7990e-02, 8.0296e-02, -3.7835e-01, -2.9699e-01],\n", " [-2.9946e-01, 1.7333e-01, 5.8426e-01, 3.4180e-01, -3.0022e-01,\n", " 1.7389e-01, 4.9503e-01, -8.8328e-02, 1.4499e-01, -9.1872e-02,\n", " 2.5825e-01, -3.0323e-01, 2.7515e-01, 1.3643e-02, 1.8358e-01,\n", " -2.9342e-01, 1.2102e-01, -3.1372e-03, 4.2592e-01, -3.2323e-01,\n", " -1.9382e-01, 1.0034e-01, -2.4542e-01, 1.7491e-01, 2.8585e-01,\n", " 2.1878e-01, -2.8580e-01, 2.6377e-01, -5.8683e-02, -1.8648e-02,\n", " 1.5466e-01, 6.1528e-02, 6.1995e-01, 3.3441e-01, -1.5242e-01,\n", " -4.1493e-01, -2.2674e-01, 3.3035e-01, 4.1771e-01, -2.6339e-01,\n", " 1.6438e-02, 1.3321e-02, 3.6096e-01, 3.5693e-01, -2.7066e-01,\n", " 1.9357e-01, 3.4842e-01, -4.6198e-01, -2.5908e-01, 9.7302e-02,\n", " -5.1082e-01, -6.0207e-01, 5.3004e-01, -2.6133e-01, -1.3656e-01,\n", " 3.1702e-01, -1.9228e-01, 1.1084e-01, -1.2700e-01, 9.1848e-02,\n", " -1.2077e-01, -2.3991e-01, -2.2360e-01, 1.1209e-01]],\n", "\n", " [[ 1.3006e-03, 5.1264e-01, 1.4625e-01, 1.9990e-01, -9.8293e-04,\n", " -3.9322e-01, 1.0313e-02, 1.9901e-01, 5.2193e-01, 2.4577e-01,\n", " 3.6912e-01, -4.1717e-01, 1.6650e-01, -1.3958e-01, 5.7864e-02,\n", " 7.9536e-02, 1.9557e-01, -3.7678e-02, 5.0398e-01, -3.0349e-01,\n", " -2.0343e-02, 1.2007e-02, 3.0268e-02, 2.5128e-02, 4.6688e-01,\n", " 5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\n", " 2.3817e-01, -4.7999e-01, -1.1352e-01, 3.4405e-01, 4.7923e-01,\n", " 3.4116e-01, -1.3998e-01, 5.8126e-01, -5.3983e-01, 9.0539e-03,\n", " -2.8760e-01, 1.4470e-03, 4.1896e-01, 9.0540e-02, 8.4472e-02,\n", " 2.4745e-01, 2.4676e-01, 1.3342e-01, 2.1588e-01, 4.5192e-01,\n", " -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01, 1.4840e-01,\n", " -3.1757e-01, -2.9868e-01, 3.5217e-01, -4.8268e-01, 6.2362e-01,\n", " -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\n", " [-6.7714e-02, 4.2866e-01, 3.4476e-01, 1.5000e-01, -3.6190e-02,\n", " 8.3957e-02, 5.5312e-02, 3.0808e-02, 4.4187e-01, 3.5487e-01,\n", " 2.7749e-01, -5.4736e-01, 1.3060e-01, -1.2858e-01, 1.4391e-01,\n", " 2.2495e-02, 2.5716e-01, -1.1392e-01, 5.0622e-01, -5.3849e-01,\n", " 8.1028e-02, 1.1880e-01, -1.9030e-01, 1.6085e-01, 4.2327e-01,\n", " 3.3224e-01, -2.8663e-01, 1.5584e-01, 2.0010e-02, -1.3972e-01,\n", " 3.0517e-01, -3.2512e-01, 2.0605e-01, 3.9866e-01, 7.5201e-02,\n", " -1.4346e-01, 4.0802e-02, 2.5994e-01, -1.1602e-01, -3.1564e-01,\n", " -2.4646e-01, 2.8795e-01, 3.0432e-01, 3.9361e-01, -2.6748e-02,\n", " 3.1790e-01, 4.0642e-01, -3.9523e-02, 2.4936e-02, 2.3207e-01,\n", " -3.6772e-01, -7.2585e-01, 2.2393e-01, -4.9142e-01, 8.1099e-02,\n", " -2.7510e-01, -3.3252e-01, 2.6320e-04, -3.5465e-01, 5.0127e-01,\n", " -1.9976e-01, -4.5309e-01, -5.5326e-01, 1.9372e-01]],\n", "\n", " [[-1.7057e-01, 3.2322e-01, 2.4574e-01, 4.5261e-01, -2.0914e-01,\n", " -1.7835e-01, -1.3981e-01, -7.2055e-01, 4.6101e-01, 1.5611e-01,\n", " 1.9007e-01, -3.4269e-01, -1.1867e-01, 2.6001e-02, -2.9307e-01,\n", " 4.3272e-01, 2.6621e-01, 2.3335e-01, 5.2463e-01, -4.2147e-01,\n", " -2.7186e-01, -3.1412e-01, 2.4990e-01, 2.9644e-02, 3.8283e-01,\n", " -6.0349e-01, 4.2053e-01, 7.7588e-02, -5.3387e-01, -1.7636e-01,\n", " 5.6825e-01, -1.9517e-01, 2.9228e-01, 1.5452e-01, -1.3068e-01,\n", " -1.6854e-01, -6.7126e-01, 5.3163e-01, -1.5279e-01, -4.1532e-03,\n", " -4.1549e-01, -5.4631e-01, -2.0766e-01, 5.0530e-01, 2.4160e-01,\n", " 3.2883e-01, 6.5491e-02, 4.0148e-01, 3.9996e-01, 5.5935e-01,\n", " -2.0955e-01, 8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\n", " -2.2420e-02, -4.3686e-01, 3.6831e-01, 4.9070e-01, 6.7791e-01,\n", " 9.3536e-02, 9.6758e-02, 2.7063e-01, -5.9233e-01],\n", " [-2.1370e-01, 2.6253e-01, 3.7184e-01, 4.2944e-01, -2.2733e-01,\n", " 8.4641e-02, -1.1203e-01, -7.5004e-01, 4.0968e-01, 2.9284e-01,\n", " 1.0524e-01, -4.5711e-01, -1.3226e-01, 3.6899e-02, -2.9938e-01,\n", " 3.7876e-01, 3.0198e-01, 2.1248e-01, 5.0674e-01, -5.9870e-01,\n", " -2.2014e-01, -2.7972e-01, 1.8850e-01, 1.3672e-01, 3.6082e-01,\n", " -5.1068e-01, 3.8401e-01, 2.3140e-01, -4.6272e-01, -2.3285e-01,\n", " 5.9758e-01, -8.0234e-02, 4.1550e-01, 2.3767e-01, -3.2081e-01,\n", " -2.6955e-01, -6.4333e-01, 3.0121e-01, 1.8572e-01, -2.1806e-01,\n", " -3.6785e-01, -5.4011e-01, -3.0245e-01, 5.8575e-01, 1.6013e-01,\n", " 3.7621e-01, 1.5080e-01, 3.5251e-01, 2.9042e-01, 4.9547e-01,\n", " -2.0645e-01, 9.5648e-04, 3.2034e-01, -5.9634e-01, -4.1605e-02,\n", " 2.8428e-02, -4.5341e-01, 1.7124e-01, 4.6399e-01, 5.8401e-01,\n", " 1.8860e-03, -1.1181e-01, 3.3156e-01, -4.8292e-01]],\n", "\n", " [[-5.1405e-01, 7.2646e-01, 2.3313e-02, 2.9391e-01, -4.1278e-02,\n", " -6.8512e-01, -6.3971e-01, -7.3721e-01, 5.8138e-01, 2.3946e-01,\n", " -1.2826e-01, -4.2802e-01, -2.4249e-01, 6.9205e-01, -4.7766e-01,\n", " 1.3880e-01, -2.6832e-01, 8.0203e-01, 7.5108e-01, -3.1906e-01,\n", " -7.2209e-01, -3.2389e-01, 2.3982e-01, 4.4074e-02, 8.8281e-03,\n", " -5.3503e-01, 1.8058e-01, 5.3126e-01, -1.6590e-01, 4.4685e-02,\n", " 7.8644e-01, -5.1364e-01, 6.8338e-02, -6.5219e-02, 1.0594e-01,\n", " -4.3814e-02, -5.8792e-01, 5.3987e-01, -2.0544e-02, 3.5673e-02,\n", " 3.8325e-01, -8.9699e-01, -9.8914e-02, 2.7993e-01, -4.2853e-01,\n", " 2.6470e-01, -1.5111e-01, 1.2840e-01, 4.4130e-01, 7.0472e-01,\n", " -5.4222e-01, 6.3632e-01, -4.5410e-01, -7.3485e-01, 3.9335e-03,\n", " 2.1974e-02, -7.7820e-01, 7.1851e-01, 4.9839e-01, 4.5752e-01,\n", " -5.6736e-01, -1.1570e-01, 1.7741e-01, -6.8631e-01],\n", " [-5.2954e-01, 7.1507e-01, 1.1961e-01, 2.7049e-01, -4.1430e-02,\n", " -6.3285e-01, -6.2980e-01, -7.5369e-01, 5.6139e-01, 3.6687e-01,\n", " -1.8580e-01, -5.0004e-01, -2.4768e-01, 6.8709e-01, -4.7964e-01,\n", " 9.6180e-02, -2.4753e-01, 7.8835e-01, 7.4328e-01, -4.0307e-01,\n", " -7.0861e-01, -3.0193e-01, 1.9124e-01, 1.0709e-01, -1.1137e-02,\n", " -4.5462e-01, 1.6204e-01, 5.9233e-01, -1.0915e-01, 5.0066e-02,\n", " 7.9568e-01, -4.6623e-01, 1.3996e-01, 3.4372e-03, -3.3035e-02,\n", " -1.1971e-01, -5.7255e-01, 3.7681e-01, 1.9896e-01, -1.2122e-01,\n", " 3.8669e-01, -9.0198e-01, -1.6976e-01, 3.3988e-01, -4.4157e-01,\n", " 3.1625e-01, -1.0426e-01, 1.2102e-01, 3.5134e-01, 6.7499e-01,\n", " -5.4203e-01, 5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\n", " 5.9193e-02, -7.8978e-01, 6.7157e-01, 4.5797e-01, 4.0904e-01,\n", " -5.9217e-01, -1.8372e-01, 2.3222e-01, -6.0919e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([11, 19])\n", "dec_state: tensor([[[ 0.4297, 0.1001, -0.0154, 0.7597, 0.4330, -0.2184, -0.2589,\n", " -0.0719, -0.2975, 0.0644, -0.5679, -0.4756, -0.4147, 0.3214,\n", " -0.2717, -0.2063, 0.4460, 0.0449, -0.1379, 0.4182, 0.1114,\n", " -0.6634, -0.2660, -0.0345, -0.1869, -0.6228, 0.6105, -0.7084,\n", " -0.5293, -0.3111, -0.8343, -0.3294, -0.5332, 0.2321, -0.6207,\n", " -0.2366, -0.0415, -0.4704, -0.7593, 0.1051, 0.0549, 0.2908,\n", " 0.5107, 0.4837, 0.0820, 0.3747, -0.1182, 0.1738, 0.3425,\n", " 0.3758, -0.1644, -0.2597, 0.1060, -0.6594, -0.1430, -0.1560,\n", " -0.0498, 0.5603, -0.1930, -0.4515, -0.7810, 0.3696, -0.5414,\n", " -0.0550],\n", " [ 0.4064, 0.0652, 0.2551, 0.5384, 0.1970, -0.2805, 0.2651,\n", " -0.1640, -0.4307, 0.0361, -0.3297, -0.4227, -0.3527, 0.0775,\n", " -0.2936, -0.0034, -0.0736, 0.4469, 0.0608, 0.5598, 0.5397,\n", " -0.4964, -0.1654, -0.0756, 0.4864, -0.4202, 0.0102, -0.2432,\n", " -0.1435, 0.0487, 0.1464, 0.1079, 0.1803, -0.1313, -0.1571,\n", " -0.1500, -0.2284, -0.1051, -0.2413, -0.1930, 0.0884, -0.0215,\n", " 0.1797, -0.1860, 0.0140, 0.1189, 0.2082, -0.0081, 0.4380,\n", " 0.3996, -0.0829, 0.3444, 0.3796, -0.5855, -0.2027, 0.0866,\n", " 0.1340, 0.3613, 0.1134, -0.4265, -0.2056, 0.2601, -0.7792,\n", " 0.5309]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\n", " 1.0795e-01, 1.1117e-01, 1.0526e-01, -1.9621e-01, -1.7305e-01,\n", " 5.2908e-02, -1.1708e-01, -3.1992e-01, 2.5680e-01, 1.3125e-01,\n", " -5.8317e-01, 2.9118e-01, 9.6432e-02, -1.2121e-01, -5.2562e-01,\n", " -4.9280e-01, 9.9200e-04, 1.0100e-01, -1.4418e-01, -9.7080e-04,\n", " 4.9621e-02, -7.5445e-02, 8.9830e-02, 8.4073e-02, -1.0900e-01,\n", " -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01, 6.5989e-02,\n", " -1.1115e-01, -1.8222e-01, 2.0451e-02, -9.9988e-02, -3.5648e-01,\n", " 1.4316e-01, 5.8419e-01, 5.7575e-02, 7.9051e-02, -4.5552e-01,\n", " -2.5276e-01, 3.1515e-01, -7.7021e-02, -2.6506e-02, 3.6586e-01,\n", " 7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\n", " -2.8730e-02, -3.3728e-01, 1.7582e-01, 2.9807e-02, -3.0381e-01,\n", " 3.6682e-01, 2.1646e-01, 2.1079e-01, -2.2197e-01],\n", " [-5.9364e-02, 4.9278e-01, 3.9939e-01, -6.4556e-01, -5.4136e-01,\n", " 5.7767e-01, -8.2846e-02, 3.4757e-01, -2.6940e-01, -1.3587e-01,\n", " 2.9661e-01, 1.9267e-01, 3.3508e-01, -2.3874e-01, 1.6769e-01,\n", " 8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\n", " -1.1036e-01, -2.3516e-01, -3.3576e-01, 6.6362e-02, -4.2507e-01,\n", " -1.2496e-01, 7.5707e-01, 3.2817e-01, 4.5369e-01, 3.1337e-01,\n", " -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\n", " 2.0347e-02, 1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\n", " 1.2553e-01, -2.9570e-01, 6.3393e-02, 4.9087e-01, 2.6956e-01,\n", " -9.9909e-02, 1.1632e-01, 3.3636e-02, -6.5299e-01, 3.1438e-03,\n", " 1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02, 8.3628e-02,\n", " 2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\n", " 4.2149e-01, 3.3780e-02, -6.2170e-02, -1.9143e-01]],\n", "\n", " [[ 3.2377e-01, -3.5410e-01, -2.7126e-01, 6.7114e-01, -1.3655e-01,\n", " 1.6070e-01, 3.2438e-01, 4.1661e-01, 1.9747e-01, -2.9179e-01,\n", " 9.6542e-02, -5.5992e-02, 1.0121e-01, -3.8642e-01, 4.1851e-01,\n", " -1.1139e-01, 2.4136e-01, 2.3179e-01, 5.1139e-02, -4.5248e-01,\n", " -5.3721e-01, 8.7373e-02, 2.3784e-01, 1.2280e-01, 2.1850e-01,\n", " -9.6268e-02, -1.6007e-01, -1.3404e-01, 1.6351e-01, -2.4172e-01,\n", " -2.5418e-01, -9.7521e-02, 2.4446e-01, 3.5432e-01, 9.5840e-02,\n", " 1.5298e-01, -4.6807e-01, 7.6614e-01, 1.1059e-01, 1.0575e-01,\n", " 1.7815e-01, 5.6318e-01, 1.7585e-01, -7.1355e-02, -2.4294e-01,\n", " 3.2790e-02, 2.7889e-01, -4.4913e-01, 7.0002e-02, 5.5741e-01,\n", " -1.6276e-01, -3.6297e-01, 2.0895e-01, -4.0116e-01, -2.2522e-01,\n", " -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01, 4.5957e-01,\n", " -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\n", " [ 4.5037e-01, -3.6208e-02, -8.8401e-02, 5.8330e-01, -3.7614e-01,\n", " 2.7170e-01, 2.5848e-01, 5.3754e-01, 8.3193e-02, -2.1463e-01,\n", " 2.4849e-01, 9.6076e-02, 4.8274e-01, -5.3474e-01, 4.4389e-01,\n", " 1.8048e-01, 8.1216e-02, 3.8565e-02, -2.1158e-01, -1.0749e-01,\n", " -2.6261e-01, -3.1016e-02, -7.9159e-02, 2.0517e-01, 4.4546e-02,\n", " -2.3875e-01, 3.8012e-01, -2.2126e-03, 3.3358e-01, 1.0724e-02,\n", " -2.5482e-01, -8.6964e-02, 1.7899e-01, 5.1795e-01, -9.8892e-02,\n", " 2.9072e-01, -3.6883e-01, 8.0775e-01, -2.5374e-01, 1.7086e-01,\n", " 1.3368e-01, -6.3352e-02, 1.7475e-01, 1.2112e-01, 3.0679e-01,\n", " 1.3249e-01, 2.5912e-01, -5.0618e-01, -3.6696e-01, 3.8838e-01,\n", " -1.7201e-01, -4.2089e-01, 1.8540e-01, -3.9560e-01, 9.7645e-02,\n", " -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01, 5.1789e-01,\n", " -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\n", "\n", " [[ 6.1572e-02, -7.8968e-02, -1.2629e-01, 4.9267e-01, -3.3531e-01,\n", " -4.6577e-01, 4.6988e-01, 4.1398e-01, 3.0156e-01, 1.1518e-01,\n", " 3.1389e-02, -4.6762e-01, 1.8188e-01, -6.1688e-01, -2.6343e-01,\n", " -3.1576e-01, 4.9902e-01, -2.4268e-01, 1.6815e-01, -1.9693e-01,\n", " -3.1019e-01, 1.7517e-01, 3.3324e-01, 9.6325e-02, 2.4211e-01,\n", " -1.1460e-01, -3.7784e-01, -3.6116e-01, 2.4703e-01, 1.2421e-01,\n", " 2.6336e-01, -1.3863e-01, 4.4239e-01, 6.6868e-01, 3.9022e-01,\n", " 1.6709e-01, -3.4177e-01, 7.9374e-01, -2.0875e-01, 1.7250e-01,\n", " 9.2274e-02, 7.5432e-02, 3.1252e-01, -4.9550e-02, 4.5907e-02,\n", " 1.2979e-01, 2.7269e-01, -5.3483e-01, -6.1280e-02, 3.7396e-01,\n", " -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\n", " 8.6522e-02, 1.7051e-01, -4.1334e-02, -3.5324e-01, 2.7226e-01,\n", " -5.8631e-01, -5.0842e-01, 3.2943e-02, 2.5173e-01],\n", " [-6.6955e-02, -1.8796e-01, -9.6617e-02, 4.2052e-01, -2.8605e-01,\n", " -5.0497e-02, 1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\n", " 4.6530e-01, -2.1460e-01, 5.9005e-01, -2.3882e-01, 2.3549e-01,\n", " -4.8996e-01, 9.8277e-02, 1.9883e-01, 7.5948e-02, -3.6621e-03,\n", " -3.5541e-01, 2.3025e-01, 3.2918e-02, 2.3964e-01, 2.0046e-01,\n", " -8.6032e-02, 3.1096e-01, 3.6305e-02, -1.8553e-01, -7.1272e-02,\n", " -2.6754e-01, 1.9024e-01, 5.9301e-01, 4.9991e-01, 1.0630e-01,\n", " 2.9337e-01, -2.2475e-01, 7.7874e-01, 3.2949e-01, -1.6518e-01,\n", " -4.7336e-01, 1.0853e-01, 2.3952e-01, 3.3526e-01, -1.5270e-01,\n", " 1.4827e-01, 1.1312e-01, -6.9810e-01, -3.8128e-01, 9.0495e-02,\n", " -2.6985e-01, -6.3003e-01, 5.8684e-01, -6.1706e-01, 3.1610e-01,\n", " -1.5197e-01, 3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\n", " -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\n", "\n", " [[-2.7015e-01, 5.8729e-01, 1.4587e-01, 4.3972e-01, -1.1587e-01,\n", " -6.3192e-01, 4.2250e-01, 2.0748e-01, 4.9845e-01, 3.0032e-02,\n", " 3.4143e-01, -1.4835e-01, 3.7302e-01, 6.5627e-02, -1.1746e-01,\n", " -3.5304e-01, -7.3488e-02, 1.5345e-01, 3.8006e-01, 6.6840e-02,\n", " -4.7847e-01, -4.6739e-02, 2.2526e-01, -1.0725e-03, 4.1146e-01,\n", " -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01, 1.2527e-01,\n", " 1.1725e-01, -3.7594e-01, 6.2424e-02, 4.3085e-01, 7.0839e-01,\n", " 5.0156e-01, -6.4564e-01, 8.0471e-01, -4.8353e-01, 2.8749e-01,\n", " 5.4820e-02, -4.9795e-01, 3.6530e-01, -1.1493e-01, -2.3898e-02,\n", " 3.6245e-02, 1.0556e-01, -1.0374e-01, -1.8034e-02, 6.6806e-01,\n", " -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01, 1.8598e-01,\n", " -6.6235e-02, -1.3134e-01, 5.2580e-01, -3.6212e-01, 2.3866e-01,\n", " -1.7990e-02, 8.0296e-02, -3.7835e-01, -2.9699e-01],\n", " [-2.9946e-01, 1.7333e-01, 5.8426e-01, 3.4180e-01, -3.0022e-01,\n", " 1.7389e-01, 4.9503e-01, -8.8328e-02, 1.4499e-01, -9.1872e-02,\n", " 2.5825e-01, -3.0323e-01, 2.7515e-01, 1.3643e-02, 1.8358e-01,\n", " -2.9342e-01, 1.2102e-01, -3.1372e-03, 4.2592e-01, -3.2323e-01,\n", " -1.9382e-01, 1.0034e-01, -2.4542e-01, 1.7491e-01, 2.8585e-01,\n", " 2.1878e-01, -2.8580e-01, 2.6377e-01, -5.8683e-02, -1.8648e-02,\n", " 1.5466e-01, 6.1528e-02, 6.1995e-01, 3.3441e-01, -1.5242e-01,\n", " -4.1493e-01, -2.2674e-01, 3.3035e-01, 4.1771e-01, -2.6339e-01,\n", " 1.6438e-02, 1.3321e-02, 3.6096e-01, 3.5693e-01, -2.7066e-01,\n", " 1.9357e-01, 3.4842e-01, -4.6198e-01, -2.5908e-01, 9.7302e-02,\n", " -5.1082e-01, -6.0207e-01, 5.3004e-01, -2.6133e-01, -1.3656e-01,\n", " 3.1702e-01, -1.9228e-01, 1.1084e-01, -1.2700e-01, 9.1848e-02,\n", " -1.2077e-01, -2.3991e-01, -2.2360e-01, 1.1209e-01]],\n", "\n", " [[ 1.3006e-03, 5.1264e-01, 1.4625e-01, 1.9990e-01, -9.8293e-04,\n", " -3.9322e-01, 1.0313e-02, 1.9901e-01, 5.2193e-01, 2.4577e-01,\n", " 3.6912e-01, -4.1717e-01, 1.6650e-01, -1.3958e-01, 5.7864e-02,\n", " 7.9536e-02, 1.9557e-01, -3.7678e-02, 5.0398e-01, -3.0349e-01,\n", " -2.0343e-02, 1.2007e-02, 3.0268e-02, 2.5128e-02, 4.6688e-01,\n", " 5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\n", " 2.3817e-01, -4.7999e-01, -1.1352e-01, 3.4405e-01, 4.7923e-01,\n", " 3.4116e-01, -1.3998e-01, 5.8126e-01, -5.3983e-01, 9.0539e-03,\n", " -2.8760e-01, 1.4470e-03, 4.1896e-01, 9.0540e-02, 8.4472e-02,\n", " 2.4745e-01, 2.4676e-01, 1.3342e-01, 2.1588e-01, 4.5192e-01,\n", " -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01, 1.4840e-01,\n", " -3.1757e-01, -2.9868e-01, 3.5217e-01, -4.8268e-01, 6.2362e-01,\n", " -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\n", " [-6.7714e-02, 4.2866e-01, 3.4476e-01, 1.5000e-01, -3.6190e-02,\n", " 8.3957e-02, 5.5312e-02, 3.0808e-02, 4.4187e-01, 3.5487e-01,\n", " 2.7749e-01, -5.4736e-01, 1.3060e-01, -1.2858e-01, 1.4391e-01,\n", " 2.2495e-02, 2.5716e-01, -1.1392e-01, 5.0622e-01, -5.3849e-01,\n", " 8.1028e-02, 1.1880e-01, -1.9030e-01, 1.6085e-01, 4.2327e-01,\n", " 3.3224e-01, -2.8663e-01, 1.5584e-01, 2.0010e-02, -1.3972e-01,\n", " 3.0517e-01, -3.2512e-01, 2.0605e-01, 3.9866e-01, 7.5201e-02,\n", " -1.4346e-01, 4.0802e-02, 2.5994e-01, -1.1602e-01, -3.1564e-01,\n", " -2.4646e-01, 2.8795e-01, 3.0432e-01, 3.9361e-01, -2.6748e-02,\n", " 3.1790e-01, 4.0642e-01, -3.9523e-02, 2.4936e-02, 2.3207e-01,\n", " -3.6772e-01, -7.2585e-01, 2.2393e-01, -4.9142e-01, 8.1099e-02,\n", " -2.7510e-01, -3.3252e-01, 2.6320e-04, -3.5465e-01, 5.0127e-01,\n", " -1.9976e-01, -4.5309e-01, -5.5326e-01, 1.9372e-01]],\n", "\n", " [[-1.7057e-01, 3.2322e-01, 2.4574e-01, 4.5261e-01, -2.0914e-01,\n", " -1.7835e-01, -1.3981e-01, -7.2055e-01, 4.6101e-01, 1.5611e-01,\n", " 1.9007e-01, -3.4269e-01, -1.1867e-01, 2.6001e-02, -2.9307e-01,\n", " 4.3272e-01, 2.6621e-01, 2.3335e-01, 5.2463e-01, -4.2147e-01,\n", " -2.7186e-01, -3.1412e-01, 2.4990e-01, 2.9644e-02, 3.8283e-01,\n", " -6.0349e-01, 4.2053e-01, 7.7588e-02, -5.3387e-01, -1.7636e-01,\n", " 5.6825e-01, -1.9517e-01, 2.9228e-01, 1.5452e-01, -1.3068e-01,\n", " -1.6854e-01, -6.7126e-01, 5.3163e-01, -1.5279e-01, -4.1532e-03,\n", " -4.1549e-01, -5.4631e-01, -2.0766e-01, 5.0530e-01, 2.4160e-01,\n", " 3.2883e-01, 6.5491e-02, 4.0148e-01, 3.9996e-01, 5.5935e-01,\n", " -2.0955e-01, 8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\n", " -2.2420e-02, -4.3686e-01, 3.6831e-01, 4.9070e-01, 6.7791e-01,\n", " 9.3536e-02, 9.6758e-02, 2.7063e-01, -5.9233e-01],\n", " [-2.1370e-01, 2.6253e-01, 3.7184e-01, 4.2944e-01, -2.2733e-01,\n", " 8.4641e-02, -1.1203e-01, -7.5004e-01, 4.0968e-01, 2.9284e-01,\n", " 1.0524e-01, -4.5711e-01, -1.3226e-01, 3.6899e-02, -2.9938e-01,\n", " 3.7876e-01, 3.0198e-01, 2.1248e-01, 5.0674e-01, -5.9870e-01,\n", " -2.2014e-01, -2.7972e-01, 1.8850e-01, 1.3672e-01, 3.6082e-01,\n", " -5.1068e-01, 3.8401e-01, 2.3140e-01, -4.6272e-01, -2.3285e-01,\n", " 5.9758e-01, -8.0234e-02, 4.1550e-01, 2.3767e-01, -3.2081e-01,\n", " -2.6955e-01, -6.4333e-01, 3.0121e-01, 1.8572e-01, -2.1806e-01,\n", " -3.6785e-01, -5.4011e-01, -3.0245e-01, 5.8575e-01, 1.6013e-01,\n", " 3.7621e-01, 1.5080e-01, 3.5251e-01, 2.9042e-01, 4.9547e-01,\n", " -2.0645e-01, 9.5648e-04, 3.2034e-01, -5.9634e-01, -4.1605e-02,\n", " 2.8428e-02, -4.5341e-01, 1.7124e-01, 4.6399e-01, 5.8401e-01,\n", " 1.8860e-03, -1.1181e-01, 3.3156e-01, -4.8292e-01]],\n", "\n", " [[-5.1405e-01, 7.2646e-01, 2.3313e-02, 2.9391e-01, -4.1278e-02,\n", " -6.8512e-01, -6.3971e-01, -7.3721e-01, 5.8138e-01, 2.3946e-01,\n", " -1.2826e-01, -4.2802e-01, -2.4249e-01, 6.9205e-01, -4.7766e-01,\n", " 1.3880e-01, -2.6832e-01, 8.0203e-01, 7.5108e-01, -3.1906e-01,\n", " -7.2209e-01, -3.2389e-01, 2.3982e-01, 4.4074e-02, 8.8281e-03,\n", " -5.3503e-01, 1.8058e-01, 5.3126e-01, -1.6590e-01, 4.4685e-02,\n", " 7.8644e-01, -5.1364e-01, 6.8338e-02, -6.5219e-02, 1.0594e-01,\n", " -4.3814e-02, -5.8792e-01, 5.3987e-01, -2.0544e-02, 3.5673e-02,\n", " 3.8325e-01, -8.9699e-01, -9.8914e-02, 2.7993e-01, -4.2853e-01,\n", " 2.6470e-01, -1.5111e-01, 1.2840e-01, 4.4130e-01, 7.0472e-01,\n", " -5.4222e-01, 6.3632e-01, -4.5410e-01, -7.3485e-01, 3.9335e-03,\n", " 2.1974e-02, -7.7820e-01, 7.1851e-01, 4.9839e-01, 4.5752e-01,\n", " -5.6736e-01, -1.1570e-01, 1.7741e-01, -6.8631e-01],\n", " [-5.2954e-01, 7.1507e-01, 1.1961e-01, 2.7049e-01, -4.1430e-02,\n", " -6.3285e-01, -6.2980e-01, -7.5369e-01, 5.6139e-01, 3.6687e-01,\n", " -1.8580e-01, -5.0004e-01, -2.4768e-01, 6.8709e-01, -4.7964e-01,\n", " 9.6180e-02, -2.4753e-01, 7.8835e-01, 7.4328e-01, -4.0307e-01,\n", " -7.0861e-01, -3.0193e-01, 1.9124e-01, 1.0709e-01, -1.1137e-02,\n", " -4.5462e-01, 1.6204e-01, 5.9233e-01, -1.0915e-01, 5.0066e-02,\n", " 7.9568e-01, -4.6623e-01, 1.3996e-01, 3.4372e-03, -3.3035e-02,\n", " -1.1971e-01, -5.7255e-01, 3.7681e-01, 1.9896e-01, -1.2122e-01,\n", " 3.8669e-01, -9.0198e-01, -1.6976e-01, 3.3988e-01, -4.4157e-01,\n", " 3.1625e-01, -1.0426e-01, 1.2102e-01, 3.5134e-01, 6.7499e-01,\n", " -5.4203e-01, 5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\n", " 5.9193e-02, -7.8978e-01, 6.7157e-01, 4.5797e-01, 4.0904e-01,\n", " -5.9217e-01, -1.8372e-01, 2.3222e-01, -6.0919e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([32, 3])\n", "dec_state: tensor([[[ 0.3883, 0.1638, -0.0061, 0.4029, -0.2220, 0.0700, -0.3988,\n", " 0.2255, -0.1208, -0.1317, -0.6918, -0.6874, -0.4156, -0.4411,\n", " 0.1322, -0.2364, 0.2355, -0.1264, -0.2326, 0.4155, 0.2667,\n", " -0.6102, -0.3427, -0.0549, -0.2238, -0.3774, 0.2490, -0.6678,\n", " -0.6849, 0.0265, -0.6866, -0.1361, -0.5776, -0.3081, -0.1779,\n", " -0.2705, 0.1634, -0.5341, -0.6840, -0.0970, 0.0706, 0.1680,\n", " 0.6566, -0.0024, 0.1957, 0.2654, 0.0173, -0.0829, 0.3614,\n", " 0.2494, -0.0511, -0.0429, 0.4192, -0.7280, -0.0419, -0.2850,\n", " -0.3033, 0.2350, -0.2822, -0.1057, -0.6686, -0.1277, -0.5874,\n", " -0.1913],\n", " [ 0.8328, 0.3856, -0.2559, 0.4384, 0.2451, 0.0511, -0.0338,\n", " -0.3066, -0.4808, -0.5736, -0.6501, -0.3417, 0.1492, 0.4391,\n", " -0.7266, 0.0470, 0.5308, 0.3645, -0.4251, 0.7540, 0.4565,\n", " -0.5981, -0.3122, -0.1348, 0.7729, -0.5404, 0.2069, -0.7500,\n", " 0.1947, -0.2948, -0.2585, 0.0733, 0.4511, 0.3189, 0.0788,\n", " -0.2883, 0.2654, -0.4561, 0.2647, 0.3649, -0.1079, 0.1416,\n", " 0.2191, -0.3625, -0.4247, 0.4959, 0.3210, 0.3701, -0.0993,\n", " 0.3508, -0.4660, 0.6128, 0.0951, -0.5408, 0.3252, 0.0429,\n", " 0.3279, 0.2015, -0.2449, -0.3183, -0.5226, 0.2963, -0.7731,\n", " -0.4768]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\n", " 1.0795e-01, 1.1117e-01, 1.0526e-01, -1.9621e-01, -1.7305e-01,\n", " 5.2908e-02, -1.1708e-01, -3.1992e-01, 2.5680e-01, 1.3125e-01,\n", " -5.8317e-01, 2.9118e-01, 9.6432e-02, -1.2121e-01, -5.2562e-01,\n", " -4.9280e-01, 9.9200e-04, 1.0100e-01, -1.4418e-01, -9.7080e-04,\n", " 4.9621e-02, -7.5445e-02, 8.9830e-02, 8.4073e-02, -1.0900e-01,\n", " -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01, 6.5989e-02,\n", " -1.1115e-01, -1.8222e-01, 2.0451e-02, -9.9988e-02, -3.5648e-01,\n", " 1.4316e-01, 5.8419e-01, 5.7575e-02, 7.9051e-02, -4.5552e-01,\n", " -2.5276e-01, 3.1515e-01, -7.7021e-02, -2.6506e-02, 3.6586e-01,\n", " 7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\n", " -2.8730e-02, -3.3728e-01, 1.7582e-01, 2.9807e-02, -3.0381e-01,\n", " 3.6682e-01, 2.1646e-01, 2.1079e-01, -2.2197e-01],\n", " [-5.9364e-02, 4.9278e-01, 3.9939e-01, -6.4556e-01, -5.4136e-01,\n", " 5.7767e-01, -8.2846e-02, 3.4757e-01, -2.6940e-01, -1.3587e-01,\n", " 2.9661e-01, 1.9267e-01, 3.3508e-01, -2.3874e-01, 1.6769e-01,\n", " 8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\n", " -1.1036e-01, -2.3516e-01, -3.3576e-01, 6.6362e-02, -4.2507e-01,\n", " -1.2496e-01, 7.5707e-01, 3.2817e-01, 4.5369e-01, 3.1337e-01,\n", " -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\n", " 2.0347e-02, 1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\n", " 1.2553e-01, -2.9570e-01, 6.3393e-02, 4.9087e-01, 2.6956e-01,\n", " -9.9909e-02, 1.1632e-01, 3.3636e-02, -6.5299e-01, 3.1438e-03,\n", " 1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02, 8.3628e-02,\n", " 2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\n", " 4.2149e-01, 3.3780e-02, -6.2170e-02, -1.9143e-01]],\n", "\n", " [[ 3.2377e-01, -3.5410e-01, -2.7126e-01, 6.7114e-01, -1.3655e-01,\n", " 1.6070e-01, 3.2438e-01, 4.1661e-01, 1.9747e-01, -2.9179e-01,\n", " 9.6542e-02, -5.5992e-02, 1.0121e-01, -3.8642e-01, 4.1851e-01,\n", " -1.1139e-01, 2.4136e-01, 2.3179e-01, 5.1139e-02, -4.5248e-01,\n", " -5.3721e-01, 8.7373e-02, 2.3784e-01, 1.2280e-01, 2.1850e-01,\n", " -9.6268e-02, -1.6007e-01, -1.3404e-01, 1.6351e-01, -2.4172e-01,\n", " -2.5418e-01, -9.7521e-02, 2.4446e-01, 3.5432e-01, 9.5840e-02,\n", " 1.5298e-01, -4.6807e-01, 7.6614e-01, 1.1059e-01, 1.0575e-01,\n", " 1.7815e-01, 5.6318e-01, 1.7585e-01, -7.1355e-02, -2.4294e-01,\n", " 3.2790e-02, 2.7889e-01, -4.4913e-01, 7.0002e-02, 5.5741e-01,\n", " -1.6276e-01, -3.6297e-01, 2.0895e-01, -4.0116e-01, -2.2522e-01,\n", " -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01, 4.5957e-01,\n", " -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\n", " [ 4.5037e-01, -3.6208e-02, -8.8401e-02, 5.8330e-01, -3.7614e-01,\n", " 2.7170e-01, 2.5848e-01, 5.3754e-01, 8.3193e-02, -2.1463e-01,\n", " 2.4849e-01, 9.6076e-02, 4.8274e-01, -5.3474e-01, 4.4389e-01,\n", " 1.8048e-01, 8.1216e-02, 3.8565e-02, -2.1158e-01, -1.0749e-01,\n", " -2.6261e-01, -3.1016e-02, -7.9159e-02, 2.0517e-01, 4.4546e-02,\n", " -2.3875e-01, 3.8012e-01, -2.2126e-03, 3.3358e-01, 1.0724e-02,\n", " -2.5482e-01, -8.6964e-02, 1.7899e-01, 5.1795e-01, -9.8892e-02,\n", " 2.9072e-01, -3.6883e-01, 8.0775e-01, -2.5374e-01, 1.7086e-01,\n", " 1.3368e-01, -6.3352e-02, 1.7475e-01, 1.2112e-01, 3.0679e-01,\n", " 1.3249e-01, 2.5912e-01, -5.0618e-01, -3.6696e-01, 3.8838e-01,\n", " -1.7201e-01, -4.2089e-01, 1.8540e-01, -3.9560e-01, 9.7645e-02,\n", " -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01, 5.1789e-01,\n", " -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\n", "\n", " [[ 6.1572e-02, -7.8968e-02, -1.2629e-01, 4.9267e-01, -3.3531e-01,\n", " -4.6577e-01, 4.6988e-01, 4.1398e-01, 3.0156e-01, 1.1518e-01,\n", " 3.1389e-02, -4.6762e-01, 1.8188e-01, -6.1688e-01, -2.6343e-01,\n", " -3.1576e-01, 4.9902e-01, -2.4268e-01, 1.6815e-01, -1.9693e-01,\n", " -3.1019e-01, 1.7517e-01, 3.3324e-01, 9.6325e-02, 2.4211e-01,\n", " -1.1460e-01, -3.7784e-01, -3.6116e-01, 2.4703e-01, 1.2421e-01,\n", " 2.6336e-01, -1.3863e-01, 4.4239e-01, 6.6868e-01, 3.9022e-01,\n", " 1.6709e-01, -3.4177e-01, 7.9374e-01, -2.0875e-01, 1.7250e-01,\n", " 9.2274e-02, 7.5432e-02, 3.1252e-01, -4.9550e-02, 4.5907e-02,\n", " 1.2979e-01, 2.7269e-01, -5.3483e-01, -6.1280e-02, 3.7396e-01,\n", " -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\n", " 8.6522e-02, 1.7051e-01, -4.1334e-02, -3.5324e-01, 2.7226e-01,\n", " -5.8631e-01, -5.0842e-01, 3.2943e-02, 2.5173e-01],\n", " [-6.6955e-02, -1.8796e-01, -9.6617e-02, 4.2052e-01, -2.8605e-01,\n", " -5.0497e-02, 1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\n", " 4.6530e-01, -2.1460e-01, 5.9005e-01, -2.3882e-01, 2.3549e-01,\n", " -4.8996e-01, 9.8277e-02, 1.9883e-01, 7.5948e-02, -3.6621e-03,\n", " -3.5541e-01, 2.3025e-01, 3.2918e-02, 2.3964e-01, 2.0046e-01,\n", " -8.6032e-02, 3.1096e-01, 3.6305e-02, -1.8553e-01, -7.1272e-02,\n", " -2.6754e-01, 1.9024e-01, 5.9301e-01, 4.9991e-01, 1.0630e-01,\n", " 2.9337e-01, -2.2475e-01, 7.7874e-01, 3.2949e-01, -1.6518e-01,\n", " -4.7336e-01, 1.0853e-01, 2.3952e-01, 3.3526e-01, -1.5270e-01,\n", " 1.4827e-01, 1.1312e-01, -6.9810e-01, -3.8128e-01, 9.0495e-02,\n", " -2.6985e-01, -6.3003e-01, 5.8684e-01, -6.1706e-01, 3.1610e-01,\n", " -1.5197e-01, 3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\n", " -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\n", "\n", " [[-2.7015e-01, 5.8729e-01, 1.4587e-01, 4.3972e-01, -1.1587e-01,\n", " -6.3192e-01, 4.2250e-01, 2.0748e-01, 4.9845e-01, 3.0032e-02,\n", " 3.4143e-01, -1.4835e-01, 3.7302e-01, 6.5627e-02, -1.1746e-01,\n", " -3.5304e-01, -7.3488e-02, 1.5345e-01, 3.8006e-01, 6.6840e-02,\n", " -4.7847e-01, -4.6739e-02, 2.2526e-01, -1.0725e-03, 4.1146e-01,\n", " -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01, 1.2527e-01,\n", " 1.1725e-01, -3.7594e-01, 6.2424e-02, 4.3085e-01, 7.0839e-01,\n", " 5.0156e-01, -6.4564e-01, 8.0471e-01, -4.8353e-01, 2.8749e-01,\n", " 5.4820e-02, -4.9795e-01, 3.6530e-01, -1.1493e-01, -2.3898e-02,\n", " 3.6245e-02, 1.0556e-01, -1.0374e-01, -1.8034e-02, 6.6806e-01,\n", " -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01, 1.8598e-01,\n", " -6.6235e-02, -1.3134e-01, 5.2580e-01, -3.6212e-01, 2.3866e-01,\n", " -1.7990e-02, 8.0296e-02, -3.7835e-01, -2.9699e-01],\n", " [-2.9946e-01, 1.7333e-01, 5.8426e-01, 3.4180e-01, -3.0022e-01,\n", " 1.7389e-01, 4.9503e-01, -8.8328e-02, 1.4499e-01, -9.1872e-02,\n", " 2.5825e-01, -3.0323e-01, 2.7515e-01, 1.3643e-02, 1.8358e-01,\n", " -2.9342e-01, 1.2102e-01, -3.1372e-03, 4.2592e-01, -3.2323e-01,\n", " -1.9382e-01, 1.0034e-01, -2.4542e-01, 1.7491e-01, 2.8585e-01,\n", " 2.1878e-01, -2.8580e-01, 2.6377e-01, -5.8683e-02, -1.8648e-02,\n", " 1.5466e-01, 6.1528e-02, 6.1995e-01, 3.3441e-01, -1.5242e-01,\n", " -4.1493e-01, -2.2674e-01, 3.3035e-01, 4.1771e-01, -2.6339e-01,\n", " 1.6438e-02, 1.3321e-02, 3.6096e-01, 3.5693e-01, -2.7066e-01,\n", " 1.9357e-01, 3.4842e-01, -4.6198e-01, -2.5908e-01, 9.7302e-02,\n", " -5.1082e-01, -6.0207e-01, 5.3004e-01, -2.6133e-01, -1.3656e-01,\n", " 3.1702e-01, -1.9228e-01, 1.1084e-01, -1.2700e-01, 9.1848e-02,\n", " -1.2077e-01, -2.3991e-01, -2.2360e-01, 1.1209e-01]],\n", "\n", " [[ 1.3006e-03, 5.1264e-01, 1.4625e-01, 1.9990e-01, -9.8293e-04,\n", " -3.9322e-01, 1.0313e-02, 1.9901e-01, 5.2193e-01, 2.4577e-01,\n", " 3.6912e-01, -4.1717e-01, 1.6650e-01, -1.3958e-01, 5.7864e-02,\n", " 7.9536e-02, 1.9557e-01, -3.7678e-02, 5.0398e-01, -3.0349e-01,\n", " -2.0343e-02, 1.2007e-02, 3.0268e-02, 2.5128e-02, 4.6688e-01,\n", " 5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\n", " 2.3817e-01, -4.7999e-01, -1.1352e-01, 3.4405e-01, 4.7923e-01,\n", " 3.4116e-01, -1.3998e-01, 5.8126e-01, -5.3983e-01, 9.0539e-03,\n", " -2.8760e-01, 1.4470e-03, 4.1896e-01, 9.0540e-02, 8.4472e-02,\n", " 2.4745e-01, 2.4676e-01, 1.3342e-01, 2.1588e-01, 4.5192e-01,\n", " -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01, 1.4840e-01,\n", " -3.1757e-01, -2.9868e-01, 3.5217e-01, -4.8268e-01, 6.2362e-01,\n", " -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\n", " [-6.7714e-02, 4.2866e-01, 3.4476e-01, 1.5000e-01, -3.6190e-02,\n", " 8.3957e-02, 5.5312e-02, 3.0808e-02, 4.4187e-01, 3.5487e-01,\n", " 2.7749e-01, -5.4736e-01, 1.3060e-01, -1.2858e-01, 1.4391e-01,\n", " 2.2495e-02, 2.5716e-01, -1.1392e-01, 5.0622e-01, -5.3849e-01,\n", " 8.1028e-02, 1.1880e-01, -1.9030e-01, 1.6085e-01, 4.2327e-01,\n", " 3.3224e-01, -2.8663e-01, 1.5584e-01, 2.0010e-02, -1.3972e-01,\n", " 3.0517e-01, -3.2512e-01, 2.0605e-01, 3.9866e-01, 7.5201e-02,\n", " -1.4346e-01, 4.0802e-02, 2.5994e-01, -1.1602e-01, -3.1564e-01,\n", " -2.4646e-01, 2.8795e-01, 3.0432e-01, 3.9361e-01, -2.6748e-02,\n", " 3.1790e-01, 4.0642e-01, -3.9523e-02, 2.4936e-02, 2.3207e-01,\n", " -3.6772e-01, -7.2585e-01, 2.2393e-01, -4.9142e-01, 8.1099e-02,\n", " -2.7510e-01, -3.3252e-01, 2.6320e-04, -3.5465e-01, 5.0127e-01,\n", " -1.9976e-01, -4.5309e-01, -5.5326e-01, 1.9372e-01]],\n", "\n", " [[-1.7057e-01, 3.2322e-01, 2.4574e-01, 4.5261e-01, -2.0914e-01,\n", " -1.7835e-01, -1.3981e-01, -7.2055e-01, 4.6101e-01, 1.5611e-01,\n", " 1.9007e-01, -3.4269e-01, -1.1867e-01, 2.6001e-02, -2.9307e-01,\n", " 4.3272e-01, 2.6621e-01, 2.3335e-01, 5.2463e-01, -4.2147e-01,\n", " -2.7186e-01, -3.1412e-01, 2.4990e-01, 2.9644e-02, 3.8283e-01,\n", " -6.0349e-01, 4.2053e-01, 7.7588e-02, -5.3387e-01, -1.7636e-01,\n", " 5.6825e-01, -1.9517e-01, 2.9228e-01, 1.5452e-01, -1.3068e-01,\n", " -1.6854e-01, -6.7126e-01, 5.3163e-01, -1.5279e-01, -4.1532e-03,\n", " -4.1549e-01, -5.4631e-01, -2.0766e-01, 5.0530e-01, 2.4160e-01,\n", " 3.2883e-01, 6.5491e-02, 4.0148e-01, 3.9996e-01, 5.5935e-01,\n", " -2.0955e-01, 8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\n", " -2.2420e-02, -4.3686e-01, 3.6831e-01, 4.9070e-01, 6.7791e-01,\n", " 9.3536e-02, 9.6758e-02, 2.7063e-01, -5.9233e-01],\n", " [-2.1370e-01, 2.6253e-01, 3.7184e-01, 4.2944e-01, -2.2733e-01,\n", " 8.4641e-02, -1.1203e-01, -7.5004e-01, 4.0968e-01, 2.9284e-01,\n", " 1.0524e-01, -4.5711e-01, -1.3226e-01, 3.6899e-02, -2.9938e-01,\n", " 3.7876e-01, 3.0198e-01, 2.1248e-01, 5.0674e-01, -5.9870e-01,\n", " -2.2014e-01, -2.7972e-01, 1.8850e-01, 1.3672e-01, 3.6082e-01,\n", " -5.1068e-01, 3.8401e-01, 2.3140e-01, -4.6272e-01, -2.3285e-01,\n", " 5.9758e-01, -8.0234e-02, 4.1550e-01, 2.3767e-01, -3.2081e-01,\n", " -2.6955e-01, -6.4333e-01, 3.0121e-01, 1.8572e-01, -2.1806e-01,\n", " -3.6785e-01, -5.4011e-01, -3.0245e-01, 5.8575e-01, 1.6013e-01,\n", " 3.7621e-01, 1.5080e-01, 3.5251e-01, 2.9042e-01, 4.9547e-01,\n", " -2.0645e-01, 9.5648e-04, 3.2034e-01, -5.9634e-01, -4.1605e-02,\n", " 2.8428e-02, -4.5341e-01, 1.7124e-01, 4.6399e-01, 5.8401e-01,\n", " 1.8860e-03, -1.1181e-01, 3.3156e-01, -4.8292e-01]],\n", "\n", " [[-5.1405e-01, 7.2646e-01, 2.3313e-02, 2.9391e-01, -4.1278e-02,\n", " -6.8512e-01, -6.3971e-01, -7.3721e-01, 5.8138e-01, 2.3946e-01,\n", " -1.2826e-01, -4.2802e-01, -2.4249e-01, 6.9205e-01, -4.7766e-01,\n", " 1.3880e-01, -2.6832e-01, 8.0203e-01, 7.5108e-01, -3.1906e-01,\n", " -7.2209e-01, -3.2389e-01, 2.3982e-01, 4.4074e-02, 8.8281e-03,\n", " -5.3503e-01, 1.8058e-01, 5.3126e-01, -1.6590e-01, 4.4685e-02,\n", " 7.8644e-01, -5.1364e-01, 6.8338e-02, -6.5219e-02, 1.0594e-01,\n", " -4.3814e-02, -5.8792e-01, 5.3987e-01, -2.0544e-02, 3.5673e-02,\n", " 3.8325e-01, -8.9699e-01, -9.8914e-02, 2.7993e-01, -4.2853e-01,\n", " 2.6470e-01, -1.5111e-01, 1.2840e-01, 4.4130e-01, 7.0472e-01,\n", " -5.4222e-01, 6.3632e-01, -4.5410e-01, -7.3485e-01, 3.9335e-03,\n", " 2.1974e-02, -7.7820e-01, 7.1851e-01, 4.9839e-01, 4.5752e-01,\n", " -5.6736e-01, -1.1570e-01, 1.7741e-01, -6.8631e-01],\n", " [-5.2954e-01, 7.1507e-01, 1.1961e-01, 2.7049e-01, -4.1430e-02,\n", " -6.3285e-01, -6.2980e-01, -7.5369e-01, 5.6139e-01, 3.6687e-01,\n", " -1.8580e-01, -5.0004e-01, -2.4768e-01, 6.8709e-01, -4.7964e-01,\n", " 9.6180e-02, -2.4753e-01, 7.8835e-01, 7.4328e-01, -4.0307e-01,\n", " -7.0861e-01, -3.0193e-01, 1.9124e-01, 1.0709e-01, -1.1137e-02,\n", " -4.5462e-01, 1.6204e-01, 5.9233e-01, -1.0915e-01, 5.0066e-02,\n", " 7.9568e-01, -4.6623e-01, 1.3996e-01, 3.4372e-03, -3.3035e-02,\n", " -1.1971e-01, -5.7255e-01, 3.7681e-01, 1.9896e-01, -1.2122e-01,\n", " 3.8669e-01, -9.0198e-01, -1.6976e-01, 3.3988e-01, -4.4157e-01,\n", " 3.1625e-01, -1.0426e-01, 1.2102e-01, 3.5134e-01, 6.7499e-01,\n", " -5.4203e-01, 5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\n", " 5.9193e-02, -7.8978e-01, 6.7157e-01, 4.5797e-01, 4.0904e-01,\n", " -5.9217e-01, -1.8372e-01, 2.3222e-01, -6.0919e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([3, 2])\n", "dec_state: tensor([[[ 0.8555, 0.4208, -0.3740, 0.3239, 0.0901, 0.2460, -0.5120,\n", " -0.0692, -0.2222, -0.6369, -0.6939, -0.4502, 0.2507, 0.2511,\n", " -0.5117, 0.1329, 0.7821, -0.0894, -0.5382, 0.6298, 0.2702,\n", " -0.6984, -0.3408, -0.1242, 0.5527, -0.5662, 0.2723, -0.8365,\n", " 0.0885, -0.4040, -0.7018, -0.1239, 0.0519, 0.0396, 0.0815,\n", " -0.2215, 0.4345, -0.6531, -0.0450, 0.2877, -0.1391, 0.2715,\n", " 0.6106, -0.2803, -0.3426, 0.5223, 0.1874, 0.2774, -0.1887,\n", " 0.2847, -0.5420, 0.4056, 0.0796, -0.6485, 0.3558, -0.2136,\n", " 0.0952, 0.1317, -0.3910, -0.0800, -0.7804, 0.0502, -0.6276,\n", " -0.6284],\n", " [ 0.7832, -0.3402, -0.5854, 0.4956, 0.0369, 0.3087, 0.4414,\n", " -0.1486, -0.6391, 0.0851, -0.2355, -0.2542, 0.3088, -0.2354,\n", " -0.8309, -0.3616, 0.2748, 0.4967, -0.4535, 0.4512, 0.4338,\n", " -0.4745, -0.1164, 0.0510, 0.5169, -0.6418, -0.1613, -0.6778,\n", " -0.2253, 0.0449, -0.3989, 0.3154, -0.2950, 0.4590, -0.1039,\n", " -0.6105, 0.0818, 0.0390, 0.3706, 0.1087, -0.0489, 0.3268,\n", " 0.2186, -0.1775, -0.0587, 0.1037, 0.1924, 0.4687, -0.2062,\n", " 0.0893, -0.4827, 0.4338, -0.1103, -0.5443, 0.1373, -0.1333,\n", " 0.5723, 0.2384, 0.3548, -0.0685, -0.4913, 0.0619, -0.6375,\n", " -0.2257]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\n", " 1.0795e-01, 1.1117e-01, 1.0526e-01, -1.9621e-01, -1.7305e-01,\n", " 5.2908e-02, -1.1708e-01, -3.1992e-01, 2.5680e-01, 1.3125e-01,\n", " -5.8317e-01, 2.9118e-01, 9.6432e-02, -1.2121e-01, -5.2562e-01,\n", " -4.9280e-01, 9.9200e-04, 1.0100e-01, -1.4418e-01, -9.7080e-04,\n", " 4.9621e-02, -7.5445e-02, 8.9830e-02, 8.4073e-02, -1.0900e-01,\n", " -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01, 6.5989e-02,\n", " -1.1115e-01, -1.8222e-01, 2.0451e-02, -9.9988e-02, -3.5648e-01,\n", " 1.4316e-01, 5.8419e-01, 5.7575e-02, 7.9051e-02, -4.5552e-01,\n", " -2.5276e-01, 3.1515e-01, -7.7021e-02, -2.6506e-02, 3.6586e-01,\n", " 7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\n", " -2.8730e-02, -3.3728e-01, 1.7582e-01, 2.9807e-02, -3.0381e-01,\n", " 3.6682e-01, 2.1646e-01, 2.1079e-01, -2.2197e-01],\n", " [-5.9364e-02, 4.9278e-01, 3.9939e-01, -6.4556e-01, -5.4136e-01,\n", " 5.7767e-01, -8.2846e-02, 3.4757e-01, -2.6940e-01, -1.3587e-01,\n", " 2.9661e-01, 1.9267e-01, 3.3508e-01, -2.3874e-01, 1.6769e-01,\n", " 8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\n", " -1.1036e-01, -2.3516e-01, -3.3576e-01, 6.6362e-02, -4.2507e-01,\n", " -1.2496e-01, 7.5707e-01, 3.2817e-01, 4.5369e-01, 3.1337e-01,\n", " -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\n", " 2.0347e-02, 1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\n", " 1.2553e-01, -2.9570e-01, 6.3393e-02, 4.9087e-01, 2.6956e-01,\n", " -9.9909e-02, 1.1632e-01, 3.3636e-02, -6.5299e-01, 3.1438e-03,\n", " 1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02, 8.3628e-02,\n", " 2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\n", " 4.2149e-01, 3.3780e-02, -6.2170e-02, -1.9143e-01]],\n", "\n", " [[ 3.2377e-01, -3.5410e-01, -2.7126e-01, 6.7114e-01, -1.3655e-01,\n", " 1.6070e-01, 3.2438e-01, 4.1661e-01, 1.9747e-01, -2.9179e-01,\n", " 9.6542e-02, -5.5992e-02, 1.0121e-01, -3.8642e-01, 4.1851e-01,\n", " -1.1139e-01, 2.4136e-01, 2.3179e-01, 5.1139e-02, -4.5248e-01,\n", " -5.3721e-01, 8.7373e-02, 2.3784e-01, 1.2280e-01, 2.1850e-01,\n", " -9.6268e-02, -1.6007e-01, -1.3404e-01, 1.6351e-01, -2.4172e-01,\n", " -2.5418e-01, -9.7521e-02, 2.4446e-01, 3.5432e-01, 9.5840e-02,\n", " 1.5298e-01, -4.6807e-01, 7.6614e-01, 1.1059e-01, 1.0575e-01,\n", " 1.7815e-01, 5.6318e-01, 1.7585e-01, -7.1355e-02, -2.4294e-01,\n", " 3.2790e-02, 2.7889e-01, -4.4913e-01, 7.0002e-02, 5.5741e-01,\n", " -1.6276e-01, -3.6297e-01, 2.0895e-01, -4.0116e-01, -2.2522e-01,\n", " -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01, 4.5957e-01,\n", " -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\n", " [ 4.5037e-01, -3.6208e-02, -8.8401e-02, 5.8330e-01, -3.7614e-01,\n", " 2.7170e-01, 2.5848e-01, 5.3754e-01, 8.3193e-02, -2.1463e-01,\n", " 2.4849e-01, 9.6076e-02, 4.8274e-01, -5.3474e-01, 4.4389e-01,\n", " 1.8048e-01, 8.1216e-02, 3.8565e-02, -2.1158e-01, -1.0749e-01,\n", " -2.6261e-01, -3.1016e-02, -7.9159e-02, 2.0517e-01, 4.4546e-02,\n", " -2.3875e-01, 3.8012e-01, -2.2126e-03, 3.3358e-01, 1.0724e-02,\n", " -2.5482e-01, -8.6964e-02, 1.7899e-01, 5.1795e-01, -9.8892e-02,\n", " 2.9072e-01, -3.6883e-01, 8.0775e-01, -2.5374e-01, 1.7086e-01,\n", " 1.3368e-01, -6.3352e-02, 1.7475e-01, 1.2112e-01, 3.0679e-01,\n", " 1.3249e-01, 2.5912e-01, -5.0618e-01, -3.6696e-01, 3.8838e-01,\n", " -1.7201e-01, -4.2089e-01, 1.8540e-01, -3.9560e-01, 9.7645e-02,\n", " -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01, 5.1789e-01,\n", " -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\n", "\n", " [[ 6.1572e-02, -7.8968e-02, -1.2629e-01, 4.9267e-01, -3.3531e-01,\n", " -4.6577e-01, 4.6988e-01, 4.1398e-01, 3.0156e-01, 1.1518e-01,\n", " 3.1389e-02, -4.6762e-01, 1.8188e-01, -6.1688e-01, -2.6343e-01,\n", " -3.1576e-01, 4.9902e-01, -2.4268e-01, 1.6815e-01, -1.9693e-01,\n", " -3.1019e-01, 1.7517e-01, 3.3324e-01, 9.6325e-02, 2.4211e-01,\n", " -1.1460e-01, -3.7784e-01, -3.6116e-01, 2.4703e-01, 1.2421e-01,\n", " 2.6336e-01, -1.3863e-01, 4.4239e-01, 6.6868e-01, 3.9022e-01,\n", " 1.6709e-01, -3.4177e-01, 7.9374e-01, -2.0875e-01, 1.7250e-01,\n", " 9.2274e-02, 7.5432e-02, 3.1252e-01, -4.9550e-02, 4.5907e-02,\n", " 1.2979e-01, 2.7269e-01, -5.3483e-01, -6.1280e-02, 3.7396e-01,\n", " -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\n", " 8.6522e-02, 1.7051e-01, -4.1334e-02, -3.5324e-01, 2.7226e-01,\n", " -5.8631e-01, -5.0842e-01, 3.2943e-02, 2.5173e-01],\n", " [-6.6955e-02, -1.8796e-01, -9.6617e-02, 4.2052e-01, -2.8605e-01,\n", " -5.0497e-02, 1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\n", " 4.6530e-01, -2.1460e-01, 5.9005e-01, -2.3882e-01, 2.3549e-01,\n", " -4.8996e-01, 9.8277e-02, 1.9883e-01, 7.5948e-02, -3.6621e-03,\n", " -3.5541e-01, 2.3025e-01, 3.2918e-02, 2.3964e-01, 2.0046e-01,\n", " -8.6032e-02, 3.1096e-01, 3.6305e-02, -1.8553e-01, -7.1272e-02,\n", " -2.6754e-01, 1.9024e-01, 5.9301e-01, 4.9991e-01, 1.0630e-01,\n", " 2.9337e-01, -2.2475e-01, 7.7874e-01, 3.2949e-01, -1.6518e-01,\n", " -4.7336e-01, 1.0853e-01, 2.3952e-01, 3.3526e-01, -1.5270e-01,\n", " 1.4827e-01, 1.1312e-01, -6.9810e-01, -3.8128e-01, 9.0495e-02,\n", " -2.6985e-01, -6.3003e-01, 5.8684e-01, -6.1706e-01, 3.1610e-01,\n", " -1.5197e-01, 3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\n", " -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\n", "\n", " [[-2.7015e-01, 5.8729e-01, 1.4587e-01, 4.3972e-01, -1.1587e-01,\n", " -6.3192e-01, 4.2250e-01, 2.0748e-01, 4.9845e-01, 3.0032e-02,\n", " 3.4143e-01, -1.4835e-01, 3.7302e-01, 6.5627e-02, -1.1746e-01,\n", " -3.5304e-01, -7.3488e-02, 1.5345e-01, 3.8006e-01, 6.6840e-02,\n", " -4.7847e-01, -4.6739e-02, 2.2526e-01, -1.0725e-03, 4.1146e-01,\n", " -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01, 1.2527e-01,\n", " 1.1725e-01, -3.7594e-01, 6.2424e-02, 4.3085e-01, 7.0839e-01,\n", " 5.0156e-01, -6.4564e-01, 8.0471e-01, -4.8353e-01, 2.8749e-01,\n", " 5.4820e-02, -4.9795e-01, 3.6530e-01, -1.1493e-01, -2.3898e-02,\n", " 3.6245e-02, 1.0556e-01, -1.0374e-01, -1.8034e-02, 6.6806e-01,\n", " -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01, 1.8598e-01,\n", " -6.6235e-02, -1.3134e-01, 5.2580e-01, -3.6212e-01, 2.3866e-01,\n", " -1.7990e-02, 8.0296e-02, -3.7835e-01, -2.9699e-01],\n", " [-2.9946e-01, 1.7333e-01, 5.8426e-01, 3.4180e-01, -3.0022e-01,\n", " 1.7389e-01, 4.9503e-01, -8.8328e-02, 1.4499e-01, -9.1872e-02,\n", " 2.5825e-01, -3.0323e-01, 2.7515e-01, 1.3643e-02, 1.8358e-01,\n", " -2.9342e-01, 1.2102e-01, -3.1372e-03, 4.2592e-01, -3.2323e-01,\n", " -1.9382e-01, 1.0034e-01, -2.4542e-01, 1.7491e-01, 2.8585e-01,\n", " 2.1878e-01, -2.8580e-01, 2.6377e-01, -5.8683e-02, -1.8648e-02,\n", " 1.5466e-01, 6.1528e-02, 6.1995e-01, 3.3441e-01, -1.5242e-01,\n", " -4.1493e-01, -2.2674e-01, 3.3035e-01, 4.1771e-01, -2.6339e-01,\n", " 1.6438e-02, 1.3321e-02, 3.6096e-01, 3.5693e-01, -2.7066e-01,\n", " 1.9357e-01, 3.4842e-01, -4.6198e-01, -2.5908e-01, 9.7302e-02,\n", " -5.1082e-01, -6.0207e-01, 5.3004e-01, -2.6133e-01, -1.3656e-01,\n", " 3.1702e-01, -1.9228e-01, 1.1084e-01, -1.2700e-01, 9.1848e-02,\n", " -1.2077e-01, -2.3991e-01, -2.2360e-01, 1.1209e-01]],\n", "\n", " [[ 1.3006e-03, 5.1264e-01, 1.4625e-01, 1.9990e-01, -9.8293e-04,\n", " -3.9322e-01, 1.0313e-02, 1.9901e-01, 5.2193e-01, 2.4577e-01,\n", " 3.6912e-01, -4.1717e-01, 1.6650e-01, -1.3958e-01, 5.7864e-02,\n", " 7.9536e-02, 1.9557e-01, -3.7678e-02, 5.0398e-01, -3.0349e-01,\n", " -2.0343e-02, 1.2007e-02, 3.0268e-02, 2.5128e-02, 4.6688e-01,\n", " 5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\n", " 2.3817e-01, -4.7999e-01, -1.1352e-01, 3.4405e-01, 4.7923e-01,\n", " 3.4116e-01, -1.3998e-01, 5.8126e-01, -5.3983e-01, 9.0539e-03,\n", " -2.8760e-01, 1.4470e-03, 4.1896e-01, 9.0540e-02, 8.4472e-02,\n", " 2.4745e-01, 2.4676e-01, 1.3342e-01, 2.1588e-01, 4.5192e-01,\n", " -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01, 1.4840e-01,\n", " -3.1757e-01, -2.9868e-01, 3.5217e-01, -4.8268e-01, 6.2362e-01,\n", " -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\n", " [-6.7714e-02, 4.2866e-01, 3.4476e-01, 1.5000e-01, -3.6190e-02,\n", " 8.3957e-02, 5.5312e-02, 3.0808e-02, 4.4187e-01, 3.5487e-01,\n", " 2.7749e-01, -5.4736e-01, 1.3060e-01, -1.2858e-01, 1.4391e-01,\n", " 2.2495e-02, 2.5716e-01, -1.1392e-01, 5.0622e-01, -5.3849e-01,\n", " 8.1028e-02, 1.1880e-01, -1.9030e-01, 1.6085e-01, 4.2327e-01,\n", " 3.3224e-01, -2.8663e-01, 1.5584e-01, 2.0010e-02, -1.3972e-01,\n", " 3.0517e-01, -3.2512e-01, 2.0605e-01, 3.9866e-01, 7.5201e-02,\n", " -1.4346e-01, 4.0802e-02, 2.5994e-01, -1.1602e-01, -3.1564e-01,\n", " -2.4646e-01, 2.8795e-01, 3.0432e-01, 3.9361e-01, -2.6748e-02,\n", " 3.1790e-01, 4.0642e-01, -3.9523e-02, 2.4936e-02, 2.3207e-01,\n", " -3.6772e-01, -7.2585e-01, 2.2393e-01, -4.9142e-01, 8.1099e-02,\n", " -2.7510e-01, -3.3252e-01, 2.6320e-04, -3.5465e-01, 5.0127e-01,\n", " -1.9976e-01, -4.5309e-01, -5.5326e-01, 1.9372e-01]],\n", "\n", " [[-1.7057e-01, 3.2322e-01, 2.4574e-01, 4.5261e-01, -2.0914e-01,\n", " -1.7835e-01, -1.3981e-01, -7.2055e-01, 4.6101e-01, 1.5611e-01,\n", " 1.9007e-01, -3.4269e-01, -1.1867e-01, 2.6001e-02, -2.9307e-01,\n", " 4.3272e-01, 2.6621e-01, 2.3335e-01, 5.2463e-01, -4.2147e-01,\n", " -2.7186e-01, -3.1412e-01, 2.4990e-01, 2.9644e-02, 3.8283e-01,\n", " -6.0349e-01, 4.2053e-01, 7.7588e-02, -5.3387e-01, -1.7636e-01,\n", " 5.6825e-01, -1.9517e-01, 2.9228e-01, 1.5452e-01, -1.3068e-01,\n", " -1.6854e-01, -6.7126e-01, 5.3163e-01, -1.5279e-01, -4.1532e-03,\n", " -4.1549e-01, -5.4631e-01, -2.0766e-01, 5.0530e-01, 2.4160e-01,\n", " 3.2883e-01, 6.5491e-02, 4.0148e-01, 3.9996e-01, 5.5935e-01,\n", " -2.0955e-01, 8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\n", " -2.2420e-02, -4.3686e-01, 3.6831e-01, 4.9070e-01, 6.7791e-01,\n", " 9.3536e-02, 9.6758e-02, 2.7063e-01, -5.9233e-01],\n", " [-2.1370e-01, 2.6253e-01, 3.7184e-01, 4.2944e-01, -2.2733e-01,\n", " 8.4641e-02, -1.1203e-01, -7.5004e-01, 4.0968e-01, 2.9284e-01,\n", " 1.0524e-01, -4.5711e-01, -1.3226e-01, 3.6899e-02, -2.9938e-01,\n", " 3.7876e-01, 3.0198e-01, 2.1248e-01, 5.0674e-01, -5.9870e-01,\n", " -2.2014e-01, -2.7972e-01, 1.8850e-01, 1.3672e-01, 3.6082e-01,\n", " -5.1068e-01, 3.8401e-01, 2.3140e-01, -4.6272e-01, -2.3285e-01,\n", " 5.9758e-01, -8.0234e-02, 4.1550e-01, 2.3767e-01, -3.2081e-01,\n", " -2.6955e-01, -6.4333e-01, 3.0121e-01, 1.8572e-01, -2.1806e-01,\n", " -3.6785e-01, -5.4011e-01, -3.0245e-01, 5.8575e-01, 1.6013e-01,\n", " 3.7621e-01, 1.5080e-01, 3.5251e-01, 2.9042e-01, 4.9547e-01,\n", " -2.0645e-01, 9.5648e-04, 3.2034e-01, -5.9634e-01, -4.1605e-02,\n", " 2.8428e-02, -4.5341e-01, 1.7124e-01, 4.6399e-01, 5.8401e-01,\n", " 1.8860e-03, -1.1181e-01, 3.3156e-01, -4.8292e-01]],\n", "\n", " [[-5.1405e-01, 7.2646e-01, 2.3313e-02, 2.9391e-01, -4.1278e-02,\n", " -6.8512e-01, -6.3971e-01, -7.3721e-01, 5.8138e-01, 2.3946e-01,\n", " -1.2826e-01, -4.2802e-01, -2.4249e-01, 6.9205e-01, -4.7766e-01,\n", " 1.3880e-01, -2.6832e-01, 8.0203e-01, 7.5108e-01, -3.1906e-01,\n", " -7.2209e-01, -3.2389e-01, 2.3982e-01, 4.4074e-02, 8.8281e-03,\n", " -5.3503e-01, 1.8058e-01, 5.3126e-01, -1.6590e-01, 4.4685e-02,\n", " 7.8644e-01, -5.1364e-01, 6.8338e-02, -6.5219e-02, 1.0594e-01,\n", " -4.3814e-02, -5.8792e-01, 5.3987e-01, -2.0544e-02, 3.5673e-02,\n", " 3.8325e-01, -8.9699e-01, -9.8914e-02, 2.7993e-01, -4.2853e-01,\n", " 2.6470e-01, -1.5111e-01, 1.2840e-01, 4.4130e-01, 7.0472e-01,\n", " -5.4222e-01, 6.3632e-01, -4.5410e-01, -7.3485e-01, 3.9335e-03,\n", " 2.1974e-02, -7.7820e-01, 7.1851e-01, 4.9839e-01, 4.5752e-01,\n", " -5.6736e-01, -1.1570e-01, 1.7741e-01, -6.8631e-01],\n", " [-5.2954e-01, 7.1507e-01, 1.1961e-01, 2.7049e-01, -4.1430e-02,\n", " -6.3285e-01, -6.2980e-01, -7.5369e-01, 5.6139e-01, 3.6687e-01,\n", " -1.8580e-01, -5.0004e-01, -2.4768e-01, 6.8709e-01, -4.7964e-01,\n", " 9.6180e-02, -2.4753e-01, 7.8835e-01, 7.4328e-01, -4.0307e-01,\n", " -7.0861e-01, -3.0193e-01, 1.9124e-01, 1.0709e-01, -1.1137e-02,\n", " -4.5462e-01, 1.6204e-01, 5.9233e-01, -1.0915e-01, 5.0066e-02,\n", " 7.9568e-01, -4.6623e-01, 1.3996e-01, 3.4372e-03, -3.3035e-02,\n", " -1.1971e-01, -5.7255e-01, 3.7681e-01, 1.9896e-01, -1.2122e-01,\n", " 3.8669e-01, -9.0198e-01, -1.6976e-01, 3.3988e-01, -4.4157e-01,\n", " 3.1625e-01, -1.0426e-01, 1.2102e-01, 3.5134e-01, 6.7499e-01,\n", " -5.4203e-01, 5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\n", " 5.9193e-02, -7.8978e-01, 6.7157e-01, 4.5797e-01, 4.0904e-01,\n", " -5.9217e-01, -1.8372e-01, 2.3222e-01, -6.0919e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 0.])\n", "------------------------------\n", "tensor([[ 6, 37, 3, 2, 0, 0, 0],\n", " [ 5, 4, 45, 3, 2, 0, 0]])\n", "tensor([[ 7, 5, 36, 3, 2, 0, 0],\n", " [ 8, 4, 27, 3, 2, 0, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-0.6259, 0.9038, -0.0637, 0.3588, -0.6392, -0.6342, -0.8772,\n", " -0.7924, 0.8551, -0.0995, 0.0404, -0.6707, -0.2762, 0.9423,\n", " -0.6151, 0.1840, -0.3667, 0.9349, 0.7517, 0.8250, -0.7078,\n", " -0.4140, 0.5651, 0.5699, -0.0231, -0.3714, -0.3216, 0.4785,\n", " -0.2017, 0.3203, 0.2604, -0.1770, 0.7900, 0.3640, 0.1645,\n", " 0.3354, 0.2490, 0.5020, -0.0277, -0.5768, 0.5399, -0.9545,\n", " -0.1607, -0.0372, -0.8542, 0.6075, -0.5180, -0.5131, 0.7556,\n", " 0.8640, -0.7883, 0.9384, -0.8025, -0.3808, -0.2378, 0.2016,\n", " -0.8277, 0.8520, 0.5395, 0.5721, -0.7908, 0.5575, 0.1903,\n", " -0.8359],\n", " [-0.4696, 0.8815, -0.0788, 0.4271, -0.6788, -0.6417, -0.8661,\n", " -0.7732, 0.8236, -0.0336, -0.0099, -0.6462, -0.3681, 0.9179,\n", " -0.5502, 0.2671, -0.3668, 0.9270, 0.7971, 0.8322, -0.6464,\n", " -0.4424, 0.5267, 0.5599, 0.0464, -0.4014, -0.2171, 0.3789,\n", " -0.2194, 0.2423, 0.3270, -0.2496, 0.8120, 0.3705, 0.0194,\n", " 0.2590, 0.2933, 0.5301, -0.0086, -0.5517, 0.5475, -0.9429,\n", " -0.1131, 0.0914, -0.8502, 0.6178, -0.4533, -0.5064, 0.7394,\n", " 0.8655, -0.7196, 0.9200, -0.6963, -0.3074, -0.2532, 0.2499,\n", " -0.8346, 0.8091, 0.5435, 0.4152, -0.7906, 0.5049, 0.2605,\n", " -0.7976]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.1876e-02, 2.0449e-01, 1.2946e-01, 3.8957e-01, -2.8742e-01,\n", " 1.7324e-01, 4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\n", " 3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02, 3.8296e-01,\n", " -2.4677e-01, 5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\n", " -3.5863e-01, -7.6301e-02, 5.3976e-01, 1.8053e-01, -4.6039e-01,\n", " -4.0647e-01, -9.8147e-02, 5.4672e-01, -8.9772e-02, 4.0746e-02,\n", " 1.1188e-01, 4.1362e-01, -5.6949e-01, 5.2939e-01, 1.5917e-01,\n", " 9.9399e-02, -3.4445e-01, 6.2491e-01, -4.4808e-01, 2.7106e-01,\n", " -1.6560e-01, 2.6980e-01, -4.7111e-01, 7.4357e-03, 1.1016e-01,\n", " -2.3606e-01, -3.4845e-01, 1.5072e-01, -3.7065e-02, 3.1512e-01,\n", " 2.5581e-01, 3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\n", " -1.6842e-01, 2.2732e-02, 3.7792e-01, -1.1966e-01, 9.9072e-02,\n", " -3.9988e-01, 3.5676e-01, 4.3146e-01, -3.5387e-01],\n", " [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\n", " 7.9412e-02, 1.8133e-02, 1.2927e-01, -1.6136e-01, -1.5331e-01,\n", " -8.0777e-02, -1.3801e-01, -4.0392e-01, 3.0119e-01, 1.1731e-01,\n", " -5.5234e-01, 2.8495e-01, 1.8620e-01, -7.8735e-02, -5.5452e-01,\n", " -5.3230e-01, -4.6117e-02, 1.0367e-01, -1.2489e-01, -4.1837e-02,\n", " 3.4538e-02, -2.5756e-02, 1.7873e-01, 1.5026e-02, -1.0708e-01,\n", " -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\n", " -1.0795e-01, -1.9033e-01, 6.2986e-02, -8.8741e-02, -3.5847e-01,\n", " 1.6159e-01, 6.1150e-01, -3.3382e-02, 9.0885e-02, -5.4511e-01,\n", " -2.8689e-01, 3.4493e-01, -7.5644e-02, -6.3455e-03, 3.7202e-01,\n", " 1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\n", " 2.6133e-02, -3.4519e-01, 1.9728e-01, 5.4546e-02, -3.1128e-01,\n", " 3.1239e-01, 2.0924e-01, 2.3193e-01, -2.8919e-01]],\n", "\n", " [[-3.2365e-01, 1.3569e-01, 2.7882e-01, 5.3593e-01, -2.3814e-03,\n", " -4.0386e-02, -4.1100e-01, 3.4883e-02, -1.3455e-01, -3.0311e-01,\n", " 4.1851e-01, 1.5324e-01, -3.9539e-01, 3.2939e-01, 2.9012e-01,\n", " -2.2305e-01, 2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\n", " -5.6430e-01, 1.4938e-01, 5.3304e-01, 3.3561e-01, -5.6758e-01,\n", " -3.1424e-01, -7.4645e-02, 1.6243e-01, 1.7337e-01, -4.2843e-02,\n", " 1.9555e-01, -7.0186e-02, 4.5234e-02, -2.6768e-02, 6.7001e-02,\n", " 1.4401e-01, -5.8669e-01, 6.6726e-01, -9.7634e-02, -4.4069e-01,\n", " 1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01, 8.5537e-02,\n", " -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01, 3.5808e-01,\n", " 2.4732e-01, 3.4604e-01, 1.8691e-01, -5.2340e-01, -7.8705e-02,\n", " -3.5208e-01, -3.3275e-01, 3.2585e-01, -2.7377e-01, 4.6864e-01,\n", " -4.8893e-01, 4.7856e-02, 4.0918e-01, -3.2458e-01],\n", " [ 2.9272e-01, -2.2613e-01, -3.9943e-01, 7.3033e-01, -1.5350e-01,\n", " 6.4352e-02, 2.0583e-01, 4.9423e-01, 2.8296e-01, -3.0972e-01,\n", " -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01, 4.3754e-01,\n", " 1.9655e-02, 3.1482e-01, 3.4366e-01, 1.3772e-01, -4.9082e-01,\n", " -5.8955e-01, 5.5178e-02, 2.8124e-01, 2.5237e-01, 2.1010e-01,\n", " -1.4519e-01, -3.1231e-02, -4.5927e-02, 8.4576e-02, -2.2813e-01,\n", " -1.0999e-01, -4.7251e-02, 3.7033e-01, 3.2943e-01, -1.4418e-03,\n", " 9.7710e-02, -5.1259e-01, 8.1932e-01, 1.9363e-01, 2.2118e-01,\n", " 1.5377e-01, 5.8502e-01, 2.8674e-02, -1.4168e-01, -3.3884e-01,\n", " -1.3351e-01, 2.3175e-01, -5.4281e-01, 1.1601e-01, 6.1183e-01,\n", " -4.5140e-02, -2.5237e-01, 2.3752e-01, -5.1164e-01, -3.1370e-01,\n", " -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01, 4.5315e-01,\n", " -3.8700e-01, -3.3658e-01, 2.4828e-03, -1.1722e-01]],\n", "\n", " [[ 1.4517e-02, 5.1353e-01, 2.7537e-01, 3.2463e-01, -6.7576e-02,\n", " -2.0490e-01, -4.6915e-01, 1.5765e-01, 4.4066e-01, 2.8679e-01,\n", " 4.1518e-01, -4.7293e-01, -3.3223e-01, 9.0766e-02, 2.6712e-01,\n", " 1.4399e-01, 4.4340e-01, -4.1589e-01, 6.3286e-02, -6.5724e-01,\n", " -9.8731e-02, 1.4927e-01, 2.3330e-01, 3.4253e-01, -8.3711e-02,\n", " -4.2961e-02, -6.9909e-02, 9.9444e-02, 1.9790e-01, -1.3862e-01,\n", " 3.4126e-01, -4.7026e-01, -1.3669e-03, 3.1917e-01, 8.7192e-02,\n", " 1.7769e-01, -2.6164e-01, 5.8675e-01, -3.7114e-01, -4.1631e-01,\n", " -9.7841e-02, 2.1348e-01, -7.5500e-03, -1.8236e-02, 1.9261e-03,\n", " 1.4379e-01, -6.9110e-02, 9.1750e-02, 1.8012e-01, 3.5871e-01,\n", " 1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\n", " -3.6182e-01, -3.7487e-01, 2.4039e-01, -4.6122e-01, 6.9476e-01,\n", " -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\n", " [ 5.1123e-01, -4.0266e-01, -2.9377e-01, 4.1843e-01, -2.3979e-01,\n", " 2.6047e-02, 2.0101e-01, -1.8941e-01, 1.0405e-02, -1.2233e-01,\n", " 7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01, 3.8687e-01,\n", " -7.9252e-04, -9.5511e-02, 2.9611e-01, 1.8304e-01, -6.1154e-01,\n", " -6.3995e-01, -6.1087e-02, 2.2301e-01, 2.3835e-01, -9.4064e-03,\n", " -3.1463e-02, 5.0872e-01, 5.2994e-02, 1.4707e-01, -1.3801e-01,\n", " 1.6804e-01, 2.6023e-01, -1.6039e-03, 3.9684e-01, -8.6695e-02,\n", " -1.2471e-01, -6.2766e-01, 5.4049e-01, -8.3060e-02, -9.4193e-02,\n", " 2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\n", " 1.0937e-01, 2.8545e-01, -5.2316e-01, -1.7083e-01, 5.1631e-01,\n", " -2.0713e-01, 1.1943e-02, 1.9117e-01, -9.0481e-02, -1.7545e-01,\n", " 1.4447e-01, -6.1310e-01, 2.4947e-01, -3.2512e-01, -1.1674e-01,\n", " -1.5464e-01, 8.5949e-02, 1.9173e-01, -1.8634e-01]],\n", "\n", " [[-1.4599e-01, 3.4493e-01, 3.5540e-01, 5.9247e-01, -4.1207e-01,\n", " -1.6579e-01, -4.8020e-01, -7.3714e-01, 4.8738e-01, 2.0807e-01,\n", " 3.0116e-01, -4.4130e-01, -4.2788e-01, 2.6977e-01, -2.3329e-01,\n", " 5.3776e-01, 4.9697e-01, 2.9906e-01, 2.7902e-01, -6.9022e-01,\n", " -4.0519e-01, -1.4059e-01, 4.0009e-01, 3.3875e-01, 3.8020e-02,\n", " -6.8647e-01, 5.3905e-01, 1.5797e-01, -3.5341e-01, -2.1889e-01,\n", " 6.5958e-01, -1.9601e-01, 5.0115e-01, 2.6124e-01, -3.4608e-01,\n", " -8.9277e-02, -7.4167e-01, 6.1062e-01, 1.4346e-01, -2.8655e-01,\n", " -2.5671e-01, -5.9121e-01, -5.0235e-01, 4.6546e-01, 1.5253e-01,\n", " 3.3492e-01, -1.8718e-01, 3.2432e-01, 4.7797e-01, 6.2427e-01,\n", " 1.1437e-02, 3.0348e-01, 1.3757e-01, -7.2873e-01, -2.9603e-01,\n", " 1.8765e-02, -5.9862e-01, 3.6728e-01, 5.7481e-01, 7.0923e-01,\n", " -2.4748e-01, -9.4674e-02, 5.3589e-01, -6.6785e-01],\n", " [ 3.1676e-01, 2.6778e-01, 6.5309e-02, 2.8887e-01, -1.7269e-01,\n", " -4.3300e-02, -1.5170e-01, 4.5494e-03, 4.3829e-01, 3.1757e-01,\n", " 1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01, 2.1333e-01,\n", " 2.4054e-01, 2.3956e-01, -2.2792e-02, 4.7846e-01, -6.9334e-01,\n", " -2.4033e-01, -3.7174e-02, 2.3895e-02, 2.7962e-01, 2.3990e-01,\n", " 1.0133e-01, 3.8711e-01, 8.3111e-03, 1.7434e-01, -1.9475e-01,\n", " 3.4768e-01, -2.9952e-01, -8.9722e-02, 4.9720e-01, 6.0897e-02,\n", " 4.2339e-02, -2.8452e-01, 5.0351e-01, -3.4962e-01, -2.3853e-01,\n", " -8.4488e-02, 7.0700e-02, -1.5170e-01, 1.3667e-01, -4.8259e-02,\n", " 2.4410e-01, 3.2302e-01, -4.5496e-02, 2.0975e-01, 5.4169e-01,\n", " -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\n", " -2.2768e-01, -5.6263e-01, 1.5331e-01, -4.4642e-01, 5.5733e-01,\n", " -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\n", "\n", " [[-5.3190e-01, 8.1577e-01, 2.3800e-01, 4.8075e-01, -2.7762e-01,\n", " -7.0727e-01, -8.0229e-01, -7.6923e-01, 6.7816e-01, 2.7397e-01,\n", " -1.8307e-02, -6.1159e-01, -5.0091e-01, 8.3182e-01, -4.9736e-01,\n", " 3.3217e-01, -2.1184e-01, 8.8089e-01, 7.3042e-01, -3.0091e-01,\n", " -8.4643e-01, -1.7723e-01, 3.9327e-01, 3.5607e-01, -3.6149e-01,\n", " -6.4001e-01, 2.5142e-01, 4.7756e-01, -1.8219e-01, 1.9411e-01,\n", " 8.4554e-01, -4.0670e-01, 2.2843e-01, -2.8213e-02, -1.6706e-01,\n", " 8.4338e-02, -6.9243e-01, 6.5162e-01, 2.2620e-01, -2.4377e-01,\n", " 6.3091e-01, -9.2143e-01, -5.2339e-01, 3.0346e-01, -6.8120e-01,\n", " 3.0847e-01, -3.0962e-01, 8.6166e-02, 5.2663e-01, 7.8582e-01,\n", " -4.4179e-01, 7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\n", " 5.9648e-02, -8.9259e-01, 7.4582e-01, 6.0832e-01, 4.5425e-01,\n", " -7.7402e-01, 7.1262e-03, 5.1430e-01, -7.4709e-01],\n", " [ 1.0309e-01, 1.4890e-01, 2.3418e-01, 5.6161e-01, -4.5344e-01,\n", " -3.7399e-02, -2.9632e-01, -7.8586e-01, 4.6773e-01, 2.3163e-01,\n", " 1.4635e-01, -6.1039e-01, -4.2175e-01, 2.9848e-02, -2.7098e-01,\n", " 5.8869e-01, 3.3047e-01, 3.8213e-01, 5.6308e-01, -7.1158e-01,\n", " -4.7782e-01, -2.6972e-01, 3.1826e-01, 3.0689e-01, 2.0002e-01,\n", " -6.3196e-01, 6.7574e-01, 1.0718e-01, -3.5589e-01, -2.2234e-01,\n", " 6.5694e-01, -4.6705e-02, 4.4457e-01, 3.8695e-01, -4.0593e-01,\n", " -1.4013e-01, -7.6718e-01, 5.5516e-01, 1.2624e-01, -1.6417e-01,\n", " -2.5965e-01, -6.6241e-01, -5.8782e-01, 5.3524e-01, 1.1498e-01,\n", " 3.5718e-01, 2.6810e-02, 3.1688e-01, 5.0246e-01, 7.2960e-01,\n", " -1.6614e-01, 2.5272e-01, 1.4311e-01, -5.7957e-01, -2.1543e-01,\n", " 1.1138e-01, -6.8110e-01, 3.2205e-01, 5.9080e-01, 6.2253e-01,\n", " -1.1579e-01, -5.8518e-02, 5.1007e-01, -6.3510e-01]],\n", "\n", " [[-7.3295e-01, 8.9806e-01, 1.3076e-01, 3.5989e-01, -1.5338e-01,\n", " -7.3023e-01, -8.8205e-01, -7.8767e-01, 7.6649e-01, 2.6182e-01,\n", " -7.9418e-02, -7.0422e-01, -5.5216e-01, 9.3353e-01, -6.1393e-01,\n", " 1.6090e-01, -4.1725e-01, 9.4148e-01, 8.8216e-01, -1.2415e-01,\n", " -9.2694e-01, -2.1225e-01, 3.8735e-01, 3.5587e-01, -5.2650e-01,\n", " -5.9547e-01, 3.4167e-03, 6.6310e-01, -1.2849e-01, 2.4384e-01,\n", " 8.9664e-01, -5.5139e-01, 3.2991e-02, -1.9388e-01, -2.2145e-03,\n", " 1.8390e-01, -6.3102e-01, 6.6637e-01, 2.8547e-01, -2.0640e-01,\n", " 7.5508e-01, -9.5772e-01, -4.9472e-01, 1.9963e-01, -8.3145e-01,\n", " 2.6752e-01, -3.2867e-01, -8.0532e-02, 5.5949e-01, 8.5466e-01,\n", " -6.6808e-01, 7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\n", " 9.2077e-02, -9.4609e-01, 8.4297e-01, 6.4095e-01, 4.2260e-01,\n", " -8.5386e-01, 1.3420e-01, 4.6493e-01, -7.8761e-01],\n", " [-4.0157e-01, 7.7822e-01, 1.5185e-01, 4.5991e-01, -2.9712e-01,\n", " -6.5423e-01, -7.5150e-01, -8.0209e-01, 6.6695e-01, 2.9053e-01,\n", " -6.2758e-02, -7.0725e-01, -4.9634e-01, 7.8107e-01, -5.0621e-01,\n", " 3.7759e-01, -2.7325e-01, 8.8842e-01, 8.2682e-01, -3.1178e-01,\n", " -8.5566e-01, -2.9528e-01, 3.2213e-01, 3.4162e-01, -3.0355e-01,\n", " -5.9389e-01, 3.5483e-01, 4.5676e-01, -1.7409e-01, 2.1121e-01,\n", " 8.4332e-01, -3.1843e-01, 1.7427e-01, 3.4608e-02, -1.8790e-01,\n", " 5.4708e-02, -7.1884e-01, 6.1022e-01, 2.1457e-01, -1.4149e-01,\n", " 6.2510e-01, -9.3106e-01, -5.6068e-01, 3.8099e-01, -6.8192e-01,\n", " 3.3177e-01, -1.8218e-01, 6.8974e-02, 5.4749e-01, 8.4259e-01,\n", " -5.1681e-01, 7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\n", " 1.3590e-01, -9.1580e-01, 7.2868e-01, 6.2468e-01, 3.9947e-01,\n", " -7.5519e-01, 1.6911e-02, 4.8992e-01, -7.2295e-01]],\n", "\n", " [[-8.2138e-01, 9.1111e-01, 4.6997e-02, 2.4762e-01, -3.9914e-02,\n", " -7.1967e-01, -9.0576e-01, -7.9947e-01, 8.0798e-01, 2.3534e-01,\n", " -6.0936e-02, -7.4290e-01, -5.8363e-01, 9.5139e-01, -6.7749e-01,\n", " 2.1059e-02, -4.9246e-01, 9.4772e-01, 9.3094e-01, -3.5459e-02,\n", " -9.4027e-01, -2.4467e-01, 3.8255e-01, 3.4837e-01, -5.9900e-01,\n", " -5.5247e-01, -1.7942e-01, 7.5872e-01, -9.8738e-02, 2.1996e-01,\n", " 9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01, 1.3646e-01,\n", " 2.4945e-01, -5.7759e-01, 6.7082e-01, 3.2138e-01, -1.7692e-01,\n", " 7.5860e-01, -9.6094e-01, -4.4573e-01, 1.0738e-01, -8.5018e-01,\n", " 2.2871e-01, -3.3403e-01, -2.0607e-01, 5.8237e-01, 8.7589e-01,\n", " -7.6794e-01, 8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\n", " 1.1904e-01, -9.5598e-01, 8.7078e-01, 6.6721e-01, 4.1586e-01,\n", " -8.7196e-01, 1.8279e-01, 4.1627e-01, -8.1426e-01],\n", " [-6.7484e-01, 8.9251e-01, 7.1709e-02, 3.4437e-01, -1.6517e-01,\n", " -7.1140e-01, -8.6538e-01, -8.0934e-01, 7.5987e-01, 2.7822e-01,\n", " -8.6837e-02, -7.4919e-01, -5.5023e-01, 9.2409e-01, -6.1562e-01,\n", " 1.9981e-01, -4.5086e-01, 9.4142e-01, 9.1322e-01, -1.2868e-01,\n", " -9.2935e-01, -3.2165e-01, 3.2718e-01, 3.4869e-01, -5.0915e-01,\n", " -5.5380e-01, 7.4805e-02, 6.5267e-01, -1.2531e-01, 2.6391e-01,\n", " 8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\n", " 1.6423e-01, -6.5370e-01, 6.3765e-01, 2.7780e-01, -1.1735e-01,\n", " 7.5169e-01, -9.5978e-01, -5.0727e-01, 2.6838e-01, -8.2897e-01,\n", " 2.8772e-01, -2.4363e-01, -9.4374e-02, 5.7713e-01, 8.8612e-01,\n", " -6.9917e-01, 7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\n", " 1.5778e-01, -9.5314e-01, 8.3813e-01, 6.5658e-01, 4.0131e-01,\n", " -8.4993e-01, 1.4095e-01, 4.5086e-01, -7.6913e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([7, 8])\n", "dec_state: tensor([[[-0.6088, 0.8966, -0.3065, 0.7645, -0.2120, -0.5961, -0.7106,\n", " -0.6883, 0.2411, -0.3085, 0.0403, -0.9391, 0.0134, 0.9359,\n", " -0.7091, 0.2223, 0.6128, 0.6388, -0.6831, 0.7555, 0.2900,\n", " -0.8395, -0.4271, 0.8032, -0.3970, -0.2301, -0.0010, -0.3356,\n", " -0.5217, -0.7552, -0.3263, 0.2805, 0.7617, 0.3394, -0.5514,\n", " 0.8154, -0.7602, -0.4501, 0.8503, 0.2331, 0.6352, -0.6340,\n", " -0.1466, 0.5280, -0.6987, -0.5882, -0.3728, -0.3424, 0.7761,\n", " 0.8829, 0.0782, 0.9111, 0.0023, -0.6859, -0.8333, -0.2541,\n", " -0.7372, 0.8714, -0.0295, -0.7080, -0.6695, 0.7646, -0.4460,\n", " 0.6746],\n", " [-0.4304, 0.2344, 0.1403, 0.4570, -0.3502, -0.5268, -0.7541,\n", " -0.6177, 0.4515, -0.3861, -0.2800, 0.0324, -0.1772, 0.8642,\n", " -0.4960, 0.1027, -0.0616, 0.5767, 0.4312, 0.7030, 0.0254,\n", " -0.3713, 0.2536, 0.5114, 0.0992, -0.5877, 0.4117, 0.5679,\n", " -0.4712, 0.5374, 0.2580, -0.3141, 0.8000, 0.4867, -0.4193,\n", " -0.0587, 0.4361, 0.5530, -0.0569, -0.0696, 0.0450, -0.6308,\n", " -0.1116, -0.0331, -0.5124, 0.4732, -0.3884, -0.5433, 0.4897,\n", " 0.7573, -0.2135, 0.8784, -0.7951, 0.4100, -0.2023, 0.2851,\n", " -0.6821, 0.3037, 0.3883, -0.1664, -0.5209, 0.3831, 0.1278,\n", " -0.5452]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.1876e-02, 2.0449e-01, 1.2946e-01, 3.8957e-01, -2.8742e-01,\n", " 1.7324e-01, 4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\n", " 3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02, 3.8296e-01,\n", " -2.4677e-01, 5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\n", " -3.5863e-01, -7.6301e-02, 5.3976e-01, 1.8053e-01, -4.6039e-01,\n", " -4.0647e-01, -9.8147e-02, 5.4672e-01, -8.9772e-02, 4.0746e-02,\n", " 1.1188e-01, 4.1362e-01, -5.6949e-01, 5.2939e-01, 1.5917e-01,\n", " 9.9399e-02, -3.4445e-01, 6.2491e-01, -4.4808e-01, 2.7106e-01,\n", " -1.6560e-01, 2.6980e-01, -4.7111e-01, 7.4357e-03, 1.1016e-01,\n", " -2.3606e-01, -3.4845e-01, 1.5072e-01, -3.7065e-02, 3.1512e-01,\n", " 2.5581e-01, 3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\n", " -1.6842e-01, 2.2732e-02, 3.7792e-01, -1.1966e-01, 9.9072e-02,\n", " -3.9988e-01, 3.5676e-01, 4.3146e-01, -3.5387e-01],\n", " [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\n", " 7.9412e-02, 1.8133e-02, 1.2927e-01, -1.6136e-01, -1.5331e-01,\n", " -8.0777e-02, -1.3801e-01, -4.0392e-01, 3.0119e-01, 1.1731e-01,\n", " -5.5234e-01, 2.8495e-01, 1.8620e-01, -7.8735e-02, -5.5452e-01,\n", " -5.3230e-01, -4.6117e-02, 1.0367e-01, -1.2489e-01, -4.1837e-02,\n", " 3.4538e-02, -2.5756e-02, 1.7873e-01, 1.5026e-02, -1.0708e-01,\n", " -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\n", " -1.0795e-01, -1.9033e-01, 6.2986e-02, -8.8741e-02, -3.5847e-01,\n", " 1.6159e-01, 6.1150e-01, -3.3382e-02, 9.0885e-02, -5.4511e-01,\n", " -2.8689e-01, 3.4493e-01, -7.5644e-02, -6.3455e-03, 3.7202e-01,\n", " 1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\n", " 2.6133e-02, -3.4519e-01, 1.9728e-01, 5.4546e-02, -3.1128e-01,\n", " 3.1239e-01, 2.0924e-01, 2.3193e-01, -2.8919e-01]],\n", "\n", " [[-3.2365e-01, 1.3569e-01, 2.7882e-01, 5.3593e-01, -2.3814e-03,\n", " -4.0386e-02, -4.1100e-01, 3.4883e-02, -1.3455e-01, -3.0311e-01,\n", " 4.1851e-01, 1.5324e-01, -3.9539e-01, 3.2939e-01, 2.9012e-01,\n", " -2.2305e-01, 2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\n", " -5.6430e-01, 1.4938e-01, 5.3304e-01, 3.3561e-01, -5.6758e-01,\n", " -3.1424e-01, -7.4645e-02, 1.6243e-01, 1.7337e-01, -4.2843e-02,\n", " 1.9555e-01, -7.0186e-02, 4.5234e-02, -2.6768e-02, 6.7001e-02,\n", " 1.4401e-01, -5.8669e-01, 6.6726e-01, -9.7634e-02, -4.4069e-01,\n", " 1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01, 8.5537e-02,\n", " -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01, 3.5808e-01,\n", " 2.4732e-01, 3.4604e-01, 1.8691e-01, -5.2340e-01, -7.8705e-02,\n", " -3.5208e-01, -3.3275e-01, 3.2585e-01, -2.7377e-01, 4.6864e-01,\n", " -4.8893e-01, 4.7856e-02, 4.0918e-01, -3.2458e-01],\n", " [ 2.9272e-01, -2.2613e-01, -3.9943e-01, 7.3033e-01, -1.5350e-01,\n", " 6.4352e-02, 2.0583e-01, 4.9423e-01, 2.8296e-01, -3.0972e-01,\n", " -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01, 4.3754e-01,\n", " 1.9655e-02, 3.1482e-01, 3.4366e-01, 1.3772e-01, -4.9082e-01,\n", " -5.8955e-01, 5.5178e-02, 2.8124e-01, 2.5237e-01, 2.1010e-01,\n", " -1.4519e-01, -3.1231e-02, -4.5927e-02, 8.4576e-02, -2.2813e-01,\n", " -1.0999e-01, -4.7251e-02, 3.7033e-01, 3.2943e-01, -1.4418e-03,\n", " 9.7710e-02, -5.1259e-01, 8.1932e-01, 1.9363e-01, 2.2118e-01,\n", " 1.5377e-01, 5.8502e-01, 2.8674e-02, -1.4168e-01, -3.3884e-01,\n", " -1.3351e-01, 2.3175e-01, -5.4281e-01, 1.1601e-01, 6.1183e-01,\n", " -4.5140e-02, -2.5237e-01, 2.3752e-01, -5.1164e-01, -3.1370e-01,\n", " -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01, 4.5315e-01,\n", " -3.8700e-01, -3.3658e-01, 2.4828e-03, -1.1722e-01]],\n", "\n", " [[ 1.4517e-02, 5.1353e-01, 2.7537e-01, 3.2463e-01, -6.7576e-02,\n", " -2.0490e-01, -4.6915e-01, 1.5765e-01, 4.4066e-01, 2.8679e-01,\n", " 4.1518e-01, -4.7293e-01, -3.3223e-01, 9.0766e-02, 2.6712e-01,\n", " 1.4399e-01, 4.4340e-01, -4.1589e-01, 6.3286e-02, -6.5724e-01,\n", " -9.8731e-02, 1.4927e-01, 2.3330e-01, 3.4253e-01, -8.3711e-02,\n", " -4.2961e-02, -6.9909e-02, 9.9444e-02, 1.9790e-01, -1.3862e-01,\n", " 3.4126e-01, -4.7026e-01, -1.3669e-03, 3.1917e-01, 8.7192e-02,\n", " 1.7769e-01, -2.6164e-01, 5.8675e-01, -3.7114e-01, -4.1631e-01,\n", " -9.7841e-02, 2.1348e-01, -7.5500e-03, -1.8236e-02, 1.9261e-03,\n", " 1.4379e-01, -6.9110e-02, 9.1750e-02, 1.8012e-01, 3.5871e-01,\n", " 1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\n", " -3.6182e-01, -3.7487e-01, 2.4039e-01, -4.6122e-01, 6.9476e-01,\n", " -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\n", " [ 5.1123e-01, -4.0266e-01, -2.9377e-01, 4.1843e-01, -2.3979e-01,\n", " 2.6047e-02, 2.0101e-01, -1.8941e-01, 1.0405e-02, -1.2233e-01,\n", " 7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01, 3.8687e-01,\n", " -7.9252e-04, -9.5511e-02, 2.9611e-01, 1.8304e-01, -6.1154e-01,\n", " -6.3995e-01, -6.1087e-02, 2.2301e-01, 2.3835e-01, -9.4064e-03,\n", " -3.1463e-02, 5.0872e-01, 5.2994e-02, 1.4707e-01, -1.3801e-01,\n", " 1.6804e-01, 2.6023e-01, -1.6039e-03, 3.9684e-01, -8.6695e-02,\n", " -1.2471e-01, -6.2766e-01, 5.4049e-01, -8.3060e-02, -9.4193e-02,\n", " 2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\n", " 1.0937e-01, 2.8545e-01, -5.2316e-01, -1.7083e-01, 5.1631e-01,\n", " -2.0713e-01, 1.1943e-02, 1.9117e-01, -9.0481e-02, -1.7545e-01,\n", " 1.4447e-01, -6.1310e-01, 2.4947e-01, -3.2512e-01, -1.1674e-01,\n", " -1.5464e-01, 8.5949e-02, 1.9173e-01, -1.8634e-01]],\n", "\n", " [[-1.4599e-01, 3.4493e-01, 3.5540e-01, 5.9247e-01, -4.1207e-01,\n", " -1.6579e-01, -4.8020e-01, -7.3714e-01, 4.8738e-01, 2.0807e-01,\n", " 3.0116e-01, -4.4130e-01, -4.2788e-01, 2.6977e-01, -2.3329e-01,\n", " 5.3776e-01, 4.9697e-01, 2.9906e-01, 2.7902e-01, -6.9022e-01,\n", " -4.0519e-01, -1.4059e-01, 4.0009e-01, 3.3875e-01, 3.8020e-02,\n", " -6.8647e-01, 5.3905e-01, 1.5797e-01, -3.5341e-01, -2.1889e-01,\n", " 6.5958e-01, -1.9601e-01, 5.0115e-01, 2.6124e-01, -3.4608e-01,\n", " -8.9277e-02, -7.4167e-01, 6.1062e-01, 1.4346e-01, -2.8655e-01,\n", " -2.5671e-01, -5.9121e-01, -5.0235e-01, 4.6546e-01, 1.5253e-01,\n", " 3.3492e-01, -1.8718e-01, 3.2432e-01, 4.7797e-01, 6.2427e-01,\n", " 1.1437e-02, 3.0348e-01, 1.3757e-01, -7.2873e-01, -2.9603e-01,\n", " 1.8765e-02, -5.9862e-01, 3.6728e-01, 5.7481e-01, 7.0923e-01,\n", " -2.4748e-01, -9.4674e-02, 5.3589e-01, -6.6785e-01],\n", " [ 3.1676e-01, 2.6778e-01, 6.5309e-02, 2.8887e-01, -1.7269e-01,\n", " -4.3300e-02, -1.5170e-01, 4.5494e-03, 4.3829e-01, 3.1757e-01,\n", " 1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01, 2.1333e-01,\n", " 2.4054e-01, 2.3956e-01, -2.2792e-02, 4.7846e-01, -6.9334e-01,\n", " -2.4033e-01, -3.7174e-02, 2.3895e-02, 2.7962e-01, 2.3990e-01,\n", " 1.0133e-01, 3.8711e-01, 8.3111e-03, 1.7434e-01, -1.9475e-01,\n", " 3.4768e-01, -2.9952e-01, -8.9722e-02, 4.9720e-01, 6.0897e-02,\n", " 4.2339e-02, -2.8452e-01, 5.0351e-01, -3.4962e-01, -2.3853e-01,\n", " -8.4488e-02, 7.0700e-02, -1.5170e-01, 1.3667e-01, -4.8259e-02,\n", " 2.4410e-01, 3.2302e-01, -4.5496e-02, 2.0975e-01, 5.4169e-01,\n", " -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\n", " -2.2768e-01, -5.6263e-01, 1.5331e-01, -4.4642e-01, 5.5733e-01,\n", " -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\n", "\n", " [[-5.3190e-01, 8.1577e-01, 2.3800e-01, 4.8075e-01, -2.7762e-01,\n", " -7.0727e-01, -8.0229e-01, -7.6923e-01, 6.7816e-01, 2.7397e-01,\n", " -1.8307e-02, -6.1159e-01, -5.0091e-01, 8.3182e-01, -4.9736e-01,\n", " 3.3217e-01, -2.1184e-01, 8.8089e-01, 7.3042e-01, -3.0091e-01,\n", " -8.4643e-01, -1.7723e-01, 3.9327e-01, 3.5607e-01, -3.6149e-01,\n", " -6.4001e-01, 2.5142e-01, 4.7756e-01, -1.8219e-01, 1.9411e-01,\n", " 8.4554e-01, -4.0670e-01, 2.2843e-01, -2.8213e-02, -1.6706e-01,\n", " 8.4338e-02, -6.9243e-01, 6.5162e-01, 2.2620e-01, -2.4377e-01,\n", " 6.3091e-01, -9.2143e-01, -5.2339e-01, 3.0346e-01, -6.8120e-01,\n", " 3.0847e-01, -3.0962e-01, 8.6166e-02, 5.2663e-01, 7.8582e-01,\n", " -4.4179e-01, 7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\n", " 5.9648e-02, -8.9259e-01, 7.4582e-01, 6.0832e-01, 4.5425e-01,\n", " -7.7402e-01, 7.1262e-03, 5.1430e-01, -7.4709e-01],\n", " [ 1.0309e-01, 1.4890e-01, 2.3418e-01, 5.6161e-01, -4.5344e-01,\n", " -3.7399e-02, -2.9632e-01, -7.8586e-01, 4.6773e-01, 2.3163e-01,\n", " 1.4635e-01, -6.1039e-01, -4.2175e-01, 2.9848e-02, -2.7098e-01,\n", " 5.8869e-01, 3.3047e-01, 3.8213e-01, 5.6308e-01, -7.1158e-01,\n", " -4.7782e-01, -2.6972e-01, 3.1826e-01, 3.0689e-01, 2.0002e-01,\n", " -6.3196e-01, 6.7574e-01, 1.0718e-01, -3.5589e-01, -2.2234e-01,\n", " 6.5694e-01, -4.6705e-02, 4.4457e-01, 3.8695e-01, -4.0593e-01,\n", " -1.4013e-01, -7.6718e-01, 5.5516e-01, 1.2624e-01, -1.6417e-01,\n", " -2.5965e-01, -6.6241e-01, -5.8782e-01, 5.3524e-01, 1.1498e-01,\n", " 3.5718e-01, 2.6810e-02, 3.1688e-01, 5.0246e-01, 7.2960e-01,\n", " -1.6614e-01, 2.5272e-01, 1.4311e-01, -5.7957e-01, -2.1543e-01,\n", " 1.1138e-01, -6.8110e-01, 3.2205e-01, 5.9080e-01, 6.2253e-01,\n", " -1.1579e-01, -5.8518e-02, 5.1007e-01, -6.3510e-01]],\n", "\n", " [[-7.3295e-01, 8.9806e-01, 1.3076e-01, 3.5989e-01, -1.5338e-01,\n", " -7.3023e-01, -8.8205e-01, -7.8767e-01, 7.6649e-01, 2.6182e-01,\n", " -7.9418e-02, -7.0422e-01, -5.5216e-01, 9.3353e-01, -6.1393e-01,\n", " 1.6090e-01, -4.1725e-01, 9.4148e-01, 8.8216e-01, -1.2415e-01,\n", " -9.2694e-01, -2.1225e-01, 3.8735e-01, 3.5587e-01, -5.2650e-01,\n", " -5.9547e-01, 3.4167e-03, 6.6310e-01, -1.2849e-01, 2.4384e-01,\n", " 8.9664e-01, -5.5139e-01, 3.2991e-02, -1.9388e-01, -2.2145e-03,\n", " 1.8390e-01, -6.3102e-01, 6.6637e-01, 2.8547e-01, -2.0640e-01,\n", " 7.5508e-01, -9.5772e-01, -4.9472e-01, 1.9963e-01, -8.3145e-01,\n", " 2.6752e-01, -3.2867e-01, -8.0532e-02, 5.5949e-01, 8.5466e-01,\n", " -6.6808e-01, 7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\n", " 9.2077e-02, -9.4609e-01, 8.4297e-01, 6.4095e-01, 4.2260e-01,\n", " -8.5386e-01, 1.3420e-01, 4.6493e-01, -7.8761e-01],\n", " [-4.0157e-01, 7.7822e-01, 1.5185e-01, 4.5991e-01, -2.9712e-01,\n", " -6.5423e-01, -7.5150e-01, -8.0209e-01, 6.6695e-01, 2.9053e-01,\n", " -6.2758e-02, -7.0725e-01, -4.9634e-01, 7.8107e-01, -5.0621e-01,\n", " 3.7759e-01, -2.7325e-01, 8.8842e-01, 8.2682e-01, -3.1178e-01,\n", " -8.5566e-01, -2.9528e-01, 3.2213e-01, 3.4162e-01, -3.0355e-01,\n", " -5.9389e-01, 3.5483e-01, 4.5676e-01, -1.7409e-01, 2.1121e-01,\n", " 8.4332e-01, -3.1843e-01, 1.7427e-01, 3.4608e-02, -1.8790e-01,\n", " 5.4708e-02, -7.1884e-01, 6.1022e-01, 2.1457e-01, -1.4149e-01,\n", " 6.2510e-01, -9.3106e-01, -5.6068e-01, 3.8099e-01, -6.8192e-01,\n", " 3.3177e-01, -1.8218e-01, 6.8974e-02, 5.4749e-01, 8.4259e-01,\n", " -5.1681e-01, 7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\n", " 1.3590e-01, -9.1580e-01, 7.2868e-01, 6.2468e-01, 3.9947e-01,\n", " -7.5519e-01, 1.6911e-02, 4.8992e-01, -7.2295e-01]],\n", "\n", " [[-8.2138e-01, 9.1111e-01, 4.6997e-02, 2.4762e-01, -3.9914e-02,\n", " -7.1967e-01, -9.0576e-01, -7.9947e-01, 8.0798e-01, 2.3534e-01,\n", " -6.0936e-02, -7.4290e-01, -5.8363e-01, 9.5139e-01, -6.7749e-01,\n", " 2.1059e-02, -4.9246e-01, 9.4772e-01, 9.3094e-01, -3.5459e-02,\n", " -9.4027e-01, -2.4467e-01, 3.8255e-01, 3.4837e-01, -5.9900e-01,\n", " -5.5247e-01, -1.7942e-01, 7.5872e-01, -9.8738e-02, 2.1996e-01,\n", " 9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01, 1.3646e-01,\n", " 2.4945e-01, -5.7759e-01, 6.7082e-01, 3.2138e-01, -1.7692e-01,\n", " 7.5860e-01, -9.6094e-01, -4.4573e-01, 1.0738e-01, -8.5018e-01,\n", " 2.2871e-01, -3.3403e-01, -2.0607e-01, 5.8237e-01, 8.7589e-01,\n", " -7.6794e-01, 8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\n", " 1.1904e-01, -9.5598e-01, 8.7078e-01, 6.6721e-01, 4.1586e-01,\n", " -8.7196e-01, 1.8279e-01, 4.1627e-01, -8.1426e-01],\n", " [-6.7484e-01, 8.9251e-01, 7.1709e-02, 3.4437e-01, -1.6517e-01,\n", " -7.1140e-01, -8.6538e-01, -8.0934e-01, 7.5987e-01, 2.7822e-01,\n", " -8.6837e-02, -7.4919e-01, -5.5023e-01, 9.2409e-01, -6.1562e-01,\n", " 1.9981e-01, -4.5086e-01, 9.4142e-01, 9.1322e-01, -1.2868e-01,\n", " -9.2935e-01, -3.2165e-01, 3.2718e-01, 3.4869e-01, -5.0915e-01,\n", " -5.5380e-01, 7.4805e-02, 6.5267e-01, -1.2531e-01, 2.6391e-01,\n", " 8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\n", " 1.6423e-01, -6.5370e-01, 6.3765e-01, 2.7780e-01, -1.1735e-01,\n", " 7.5169e-01, -9.5978e-01, -5.0727e-01, 2.6838e-01, -8.2897e-01,\n", " 2.8772e-01, -2.4363e-01, -9.4374e-02, 5.7713e-01, 8.8612e-01,\n", " -6.9917e-01, 7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\n", " 1.5778e-01, -9.5314e-01, 8.3813e-01, 6.5658e-01, 4.0131e-01,\n", " -8.4993e-01, 1.4095e-01, 4.5086e-01, -7.6913e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([5, 4])\n", "dec_state: tensor([[[-3.2126e-01, 9.0479e-01, -3.2907e-01, 8.4283e-01, -2.1811e-02,\n", " -6.7541e-01, -6.6420e-01, -6.8999e-01, -5.9730e-01, -1.7057e-02,\n", " 2.1580e-01, -6.4880e-01, 1.0315e-01, 9.0245e-01, -8.2843e-01,\n", " -7.6314e-01, 4.4724e-01, 3.3793e-01, -6.7157e-04, 7.0093e-01,\n", " 8.1839e-01, -8.4953e-01, 4.5235e-01, 8.1908e-01, -1.3366e-01,\n", " -1.2156e-01, 5.1589e-02, 7.4547e-03, -6.6910e-01, 4.0933e-01,\n", " -2.0464e-01, 8.3119e-01, 7.6107e-01, 6.3430e-01, -6.6145e-01,\n", " -5.9826e-01, 5.2997e-01, -4.0791e-01, 7.0485e-01, 5.0010e-01,\n", " -7.3085e-01, -2.1353e-02, 3.6654e-01, 8.8989e-02, -2.4388e-01,\n", " -8.1770e-02, -4.0816e-01, -1.6085e-01, 2.3457e-01, 6.4654e-01,\n", " -3.1494e-01, 7.2087e-01, 3.4973e-02, -6.9297e-01, -6.8777e-01,\n", " -3.1657e-02, -3.2231e-01, 8.6502e-01, 1.0194e-01, -7.7332e-01,\n", " -6.8654e-01, 7.4251e-01, -6.9232e-01, 5.5781e-01],\n", " [-2.9801e-02, 4.1288e-01, -2.8246e-01, 7.0448e-01, -1.7863e-01,\n", " -2.7976e-01, -4.2516e-01, 3.0378e-01, 1.1669e-01, -7.2774e-01,\n", " -4.7068e-01, -3.4221e-01, -4.1732e-02, 4.7584e-01, -5.9931e-01,\n", " 9.5673e-02, 3.0538e-01, 5.8225e-01, -1.4045e-01, 6.2028e-01,\n", " 1.1573e-01, -4.1269e-01, 1.0898e-01, 5.5439e-01, 3.2796e-01,\n", " -7.4124e-01, 3.7080e-01, 2.1203e-01, -5.5728e-01, 3.0933e-02,\n", " -5.0408e-01, 1.0070e-02, 3.4085e-01, 5.0769e-01, -6.1572e-02,\n", " 1.9763e-01, 5.8852e-02, 1.9028e-02, -1.2573e-01, 3.0112e-01,\n", " 6.5239e-02, -2.7908e-01, 1.4922e-01, 1.0424e-01, 1.2584e-01,\n", " -1.1709e-01, 1.4603e-01, 4.9829e-01, 2.8787e-01, 6.9469e-01,\n", " 9.8223e-02, 4.5809e-01, -7.0812e-01, 9.8694e-02, -2.0518e-01,\n", " 3.1097e-01, -1.0797e-01, -2.7622e-01, -5.2323e-01, 1.6423e-01,\n", " -5.4509e-01, 5.6389e-01, -2.4477e-01, -5.4765e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.1876e-02, 2.0449e-01, 1.2946e-01, 3.8957e-01, -2.8742e-01,\n", " 1.7324e-01, 4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\n", " 3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02, 3.8296e-01,\n", " -2.4677e-01, 5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\n", " -3.5863e-01, -7.6301e-02, 5.3976e-01, 1.8053e-01, -4.6039e-01,\n", " -4.0647e-01, -9.8147e-02, 5.4672e-01, -8.9772e-02, 4.0746e-02,\n", " 1.1188e-01, 4.1362e-01, -5.6949e-01, 5.2939e-01, 1.5917e-01,\n", " 9.9399e-02, -3.4445e-01, 6.2491e-01, -4.4808e-01, 2.7106e-01,\n", " -1.6560e-01, 2.6980e-01, -4.7111e-01, 7.4357e-03, 1.1016e-01,\n", " -2.3606e-01, -3.4845e-01, 1.5072e-01, -3.7065e-02, 3.1512e-01,\n", " 2.5581e-01, 3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\n", " -1.6842e-01, 2.2732e-02, 3.7792e-01, -1.1966e-01, 9.9072e-02,\n", " -3.9988e-01, 3.5676e-01, 4.3146e-01, -3.5387e-01],\n", " [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\n", " 7.9412e-02, 1.8133e-02, 1.2927e-01, -1.6136e-01, -1.5331e-01,\n", " -8.0777e-02, -1.3801e-01, -4.0392e-01, 3.0119e-01, 1.1731e-01,\n", " -5.5234e-01, 2.8495e-01, 1.8620e-01, -7.8735e-02, -5.5452e-01,\n", " -5.3230e-01, -4.6117e-02, 1.0367e-01, -1.2489e-01, -4.1837e-02,\n", " 3.4538e-02, -2.5756e-02, 1.7873e-01, 1.5026e-02, -1.0708e-01,\n", " -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\n", " -1.0795e-01, -1.9033e-01, 6.2986e-02, -8.8741e-02, -3.5847e-01,\n", " 1.6159e-01, 6.1150e-01, -3.3382e-02, 9.0885e-02, -5.4511e-01,\n", " -2.8689e-01, 3.4493e-01, -7.5644e-02, -6.3455e-03, 3.7202e-01,\n", " 1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\n", " 2.6133e-02, -3.4519e-01, 1.9728e-01, 5.4546e-02, -3.1128e-01,\n", " 3.1239e-01, 2.0924e-01, 2.3193e-01, -2.8919e-01]],\n", "\n", " [[-3.2365e-01, 1.3569e-01, 2.7882e-01, 5.3593e-01, -2.3814e-03,\n", " -4.0386e-02, -4.1100e-01, 3.4883e-02, -1.3455e-01, -3.0311e-01,\n", " 4.1851e-01, 1.5324e-01, -3.9539e-01, 3.2939e-01, 2.9012e-01,\n", " -2.2305e-01, 2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\n", " -5.6430e-01, 1.4938e-01, 5.3304e-01, 3.3561e-01, -5.6758e-01,\n", " -3.1424e-01, -7.4645e-02, 1.6243e-01, 1.7337e-01, -4.2843e-02,\n", " 1.9555e-01, -7.0186e-02, 4.5234e-02, -2.6768e-02, 6.7001e-02,\n", " 1.4401e-01, -5.8669e-01, 6.6726e-01, -9.7634e-02, -4.4069e-01,\n", " 1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01, 8.5537e-02,\n", " -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01, 3.5808e-01,\n", " 2.4732e-01, 3.4604e-01, 1.8691e-01, -5.2340e-01, -7.8705e-02,\n", " -3.5208e-01, -3.3275e-01, 3.2585e-01, -2.7377e-01, 4.6864e-01,\n", " -4.8893e-01, 4.7856e-02, 4.0918e-01, -3.2458e-01],\n", " [ 2.9272e-01, -2.2613e-01, -3.9943e-01, 7.3033e-01, -1.5350e-01,\n", " 6.4352e-02, 2.0583e-01, 4.9423e-01, 2.8296e-01, -3.0972e-01,\n", " -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01, 4.3754e-01,\n", " 1.9655e-02, 3.1482e-01, 3.4366e-01, 1.3772e-01, -4.9082e-01,\n", " -5.8955e-01, 5.5178e-02, 2.8124e-01, 2.5237e-01, 2.1010e-01,\n", " -1.4519e-01, -3.1231e-02, -4.5927e-02, 8.4576e-02, -2.2813e-01,\n", " -1.0999e-01, -4.7251e-02, 3.7033e-01, 3.2943e-01, -1.4418e-03,\n", " 9.7710e-02, -5.1259e-01, 8.1932e-01, 1.9363e-01, 2.2118e-01,\n", " 1.5377e-01, 5.8502e-01, 2.8674e-02, -1.4168e-01, -3.3884e-01,\n", " -1.3351e-01, 2.3175e-01, -5.4281e-01, 1.1601e-01, 6.1183e-01,\n", " -4.5140e-02, -2.5237e-01, 2.3752e-01, -5.1164e-01, -3.1370e-01,\n", " -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01, 4.5315e-01,\n", " -3.8700e-01, -3.3658e-01, 2.4828e-03, -1.1722e-01]],\n", "\n", " [[ 1.4517e-02, 5.1353e-01, 2.7537e-01, 3.2463e-01, -6.7576e-02,\n", " -2.0490e-01, -4.6915e-01, 1.5765e-01, 4.4066e-01, 2.8679e-01,\n", " 4.1518e-01, -4.7293e-01, -3.3223e-01, 9.0766e-02, 2.6712e-01,\n", " 1.4399e-01, 4.4340e-01, -4.1589e-01, 6.3286e-02, -6.5724e-01,\n", " -9.8731e-02, 1.4927e-01, 2.3330e-01, 3.4253e-01, -8.3711e-02,\n", " -4.2961e-02, -6.9909e-02, 9.9444e-02, 1.9790e-01, -1.3862e-01,\n", " 3.4126e-01, -4.7026e-01, -1.3669e-03, 3.1917e-01, 8.7192e-02,\n", " 1.7769e-01, -2.6164e-01, 5.8675e-01, -3.7114e-01, -4.1631e-01,\n", " -9.7841e-02, 2.1348e-01, -7.5500e-03, -1.8236e-02, 1.9261e-03,\n", " 1.4379e-01, -6.9110e-02, 9.1750e-02, 1.8012e-01, 3.5871e-01,\n", " 1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\n", " -3.6182e-01, -3.7487e-01, 2.4039e-01, -4.6122e-01, 6.9476e-01,\n", " -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\n", " [ 5.1123e-01, -4.0266e-01, -2.9377e-01, 4.1843e-01, -2.3979e-01,\n", " 2.6047e-02, 2.0101e-01, -1.8941e-01, 1.0405e-02, -1.2233e-01,\n", " 7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01, 3.8687e-01,\n", " -7.9252e-04, -9.5511e-02, 2.9611e-01, 1.8304e-01, -6.1154e-01,\n", " -6.3995e-01, -6.1087e-02, 2.2301e-01, 2.3835e-01, -9.4064e-03,\n", " -3.1463e-02, 5.0872e-01, 5.2994e-02, 1.4707e-01, -1.3801e-01,\n", " 1.6804e-01, 2.6023e-01, -1.6039e-03, 3.9684e-01, -8.6695e-02,\n", " -1.2471e-01, -6.2766e-01, 5.4049e-01, -8.3060e-02, -9.4193e-02,\n", " 2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\n", " 1.0937e-01, 2.8545e-01, -5.2316e-01, -1.7083e-01, 5.1631e-01,\n", " -2.0713e-01, 1.1943e-02, 1.9117e-01, -9.0481e-02, -1.7545e-01,\n", " 1.4447e-01, -6.1310e-01, 2.4947e-01, -3.2512e-01, -1.1674e-01,\n", " -1.5464e-01, 8.5949e-02, 1.9173e-01, -1.8634e-01]],\n", "\n", " [[-1.4599e-01, 3.4493e-01, 3.5540e-01, 5.9247e-01, -4.1207e-01,\n", " -1.6579e-01, -4.8020e-01, -7.3714e-01, 4.8738e-01, 2.0807e-01,\n", " 3.0116e-01, -4.4130e-01, -4.2788e-01, 2.6977e-01, -2.3329e-01,\n", " 5.3776e-01, 4.9697e-01, 2.9906e-01, 2.7902e-01, -6.9022e-01,\n", " -4.0519e-01, -1.4059e-01, 4.0009e-01, 3.3875e-01, 3.8020e-02,\n", " -6.8647e-01, 5.3905e-01, 1.5797e-01, -3.5341e-01, -2.1889e-01,\n", " 6.5958e-01, -1.9601e-01, 5.0115e-01, 2.6124e-01, -3.4608e-01,\n", " -8.9277e-02, -7.4167e-01, 6.1062e-01, 1.4346e-01, -2.8655e-01,\n", " -2.5671e-01, -5.9121e-01, -5.0235e-01, 4.6546e-01, 1.5253e-01,\n", " 3.3492e-01, -1.8718e-01, 3.2432e-01, 4.7797e-01, 6.2427e-01,\n", " 1.1437e-02, 3.0348e-01, 1.3757e-01, -7.2873e-01, -2.9603e-01,\n", " 1.8765e-02, -5.9862e-01, 3.6728e-01, 5.7481e-01, 7.0923e-01,\n", " -2.4748e-01, -9.4674e-02, 5.3589e-01, -6.6785e-01],\n", " [ 3.1676e-01, 2.6778e-01, 6.5309e-02, 2.8887e-01, -1.7269e-01,\n", " -4.3300e-02, -1.5170e-01, 4.5494e-03, 4.3829e-01, 3.1757e-01,\n", " 1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01, 2.1333e-01,\n", " 2.4054e-01, 2.3956e-01, -2.2792e-02, 4.7846e-01, -6.9334e-01,\n", " -2.4033e-01, -3.7174e-02, 2.3895e-02, 2.7962e-01, 2.3990e-01,\n", " 1.0133e-01, 3.8711e-01, 8.3111e-03, 1.7434e-01, -1.9475e-01,\n", " 3.4768e-01, -2.9952e-01, -8.9722e-02, 4.9720e-01, 6.0897e-02,\n", " 4.2339e-02, -2.8452e-01, 5.0351e-01, -3.4962e-01, -2.3853e-01,\n", " -8.4488e-02, 7.0700e-02, -1.5170e-01, 1.3667e-01, -4.8259e-02,\n", " 2.4410e-01, 3.2302e-01, -4.5496e-02, 2.0975e-01, 5.4169e-01,\n", " -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\n", " -2.2768e-01, -5.6263e-01, 1.5331e-01, -4.4642e-01, 5.5733e-01,\n", " -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\n", "\n", " [[-5.3190e-01, 8.1577e-01, 2.3800e-01, 4.8075e-01, -2.7762e-01,\n", " -7.0727e-01, -8.0229e-01, -7.6923e-01, 6.7816e-01, 2.7397e-01,\n", " -1.8307e-02, -6.1159e-01, -5.0091e-01, 8.3182e-01, -4.9736e-01,\n", " 3.3217e-01, -2.1184e-01, 8.8089e-01, 7.3042e-01, -3.0091e-01,\n", " -8.4643e-01, -1.7723e-01, 3.9327e-01, 3.5607e-01, -3.6149e-01,\n", " -6.4001e-01, 2.5142e-01, 4.7756e-01, -1.8219e-01, 1.9411e-01,\n", " 8.4554e-01, -4.0670e-01, 2.2843e-01, -2.8213e-02, -1.6706e-01,\n", " 8.4338e-02, -6.9243e-01, 6.5162e-01, 2.2620e-01, -2.4377e-01,\n", " 6.3091e-01, -9.2143e-01, -5.2339e-01, 3.0346e-01, -6.8120e-01,\n", " 3.0847e-01, -3.0962e-01, 8.6166e-02, 5.2663e-01, 7.8582e-01,\n", " -4.4179e-01, 7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\n", " 5.9648e-02, -8.9259e-01, 7.4582e-01, 6.0832e-01, 4.5425e-01,\n", " -7.7402e-01, 7.1262e-03, 5.1430e-01, -7.4709e-01],\n", " [ 1.0309e-01, 1.4890e-01, 2.3418e-01, 5.6161e-01, -4.5344e-01,\n", " -3.7399e-02, -2.9632e-01, -7.8586e-01, 4.6773e-01, 2.3163e-01,\n", " 1.4635e-01, -6.1039e-01, -4.2175e-01, 2.9848e-02, -2.7098e-01,\n", " 5.8869e-01, 3.3047e-01, 3.8213e-01, 5.6308e-01, -7.1158e-01,\n", " -4.7782e-01, -2.6972e-01, 3.1826e-01, 3.0689e-01, 2.0002e-01,\n", " -6.3196e-01, 6.7574e-01, 1.0718e-01, -3.5589e-01, -2.2234e-01,\n", " 6.5694e-01, -4.6705e-02, 4.4457e-01, 3.8695e-01, -4.0593e-01,\n", " -1.4013e-01, -7.6718e-01, 5.5516e-01, 1.2624e-01, -1.6417e-01,\n", " -2.5965e-01, -6.6241e-01, -5.8782e-01, 5.3524e-01, 1.1498e-01,\n", " 3.5718e-01, 2.6810e-02, 3.1688e-01, 5.0246e-01, 7.2960e-01,\n", " -1.6614e-01, 2.5272e-01, 1.4311e-01, -5.7957e-01, -2.1543e-01,\n", " 1.1138e-01, -6.8110e-01, 3.2205e-01, 5.9080e-01, 6.2253e-01,\n", " -1.1579e-01, -5.8518e-02, 5.1007e-01, -6.3510e-01]],\n", "\n", " [[-7.3295e-01, 8.9806e-01, 1.3076e-01, 3.5989e-01, -1.5338e-01,\n", " -7.3023e-01, -8.8205e-01, -7.8767e-01, 7.6649e-01, 2.6182e-01,\n", " -7.9418e-02, -7.0422e-01, -5.5216e-01, 9.3353e-01, -6.1393e-01,\n", " 1.6090e-01, -4.1725e-01, 9.4148e-01, 8.8216e-01, -1.2415e-01,\n", " -9.2694e-01, -2.1225e-01, 3.8735e-01, 3.5587e-01, -5.2650e-01,\n", " -5.9547e-01, 3.4167e-03, 6.6310e-01, -1.2849e-01, 2.4384e-01,\n", " 8.9664e-01, -5.5139e-01, 3.2991e-02, -1.9388e-01, -2.2145e-03,\n", " 1.8390e-01, -6.3102e-01, 6.6637e-01, 2.8547e-01, -2.0640e-01,\n", " 7.5508e-01, -9.5772e-01, -4.9472e-01, 1.9963e-01, -8.3145e-01,\n", " 2.6752e-01, -3.2867e-01, -8.0532e-02, 5.5949e-01, 8.5466e-01,\n", " -6.6808e-01, 7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\n", " 9.2077e-02, -9.4609e-01, 8.4297e-01, 6.4095e-01, 4.2260e-01,\n", " -8.5386e-01, 1.3420e-01, 4.6493e-01, -7.8761e-01],\n", " [-4.0157e-01, 7.7822e-01, 1.5185e-01, 4.5991e-01, -2.9712e-01,\n", " -6.5423e-01, -7.5150e-01, -8.0209e-01, 6.6695e-01, 2.9053e-01,\n", " -6.2758e-02, -7.0725e-01, -4.9634e-01, 7.8107e-01, -5.0621e-01,\n", " 3.7759e-01, -2.7325e-01, 8.8842e-01, 8.2682e-01, -3.1178e-01,\n", " -8.5566e-01, -2.9528e-01, 3.2213e-01, 3.4162e-01, -3.0355e-01,\n", " -5.9389e-01, 3.5483e-01, 4.5676e-01, -1.7409e-01, 2.1121e-01,\n", " 8.4332e-01, -3.1843e-01, 1.7427e-01, 3.4608e-02, -1.8790e-01,\n", " 5.4708e-02, -7.1884e-01, 6.1022e-01, 2.1457e-01, -1.4149e-01,\n", " 6.2510e-01, -9.3106e-01, -5.6068e-01, 3.8099e-01, -6.8192e-01,\n", " 3.3177e-01, -1.8218e-01, 6.8974e-02, 5.4749e-01, 8.4259e-01,\n", " -5.1681e-01, 7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\n", " 1.3590e-01, -9.1580e-01, 7.2868e-01, 6.2468e-01, 3.9947e-01,\n", " -7.5519e-01, 1.6911e-02, 4.8992e-01, -7.2295e-01]],\n", "\n", " [[-8.2138e-01, 9.1111e-01, 4.6997e-02, 2.4762e-01, -3.9914e-02,\n", " -7.1967e-01, -9.0576e-01, -7.9947e-01, 8.0798e-01, 2.3534e-01,\n", " -6.0936e-02, -7.4290e-01, -5.8363e-01, 9.5139e-01, -6.7749e-01,\n", " 2.1059e-02, -4.9246e-01, 9.4772e-01, 9.3094e-01, -3.5459e-02,\n", " -9.4027e-01, -2.4467e-01, 3.8255e-01, 3.4837e-01, -5.9900e-01,\n", " -5.5247e-01, -1.7942e-01, 7.5872e-01, -9.8738e-02, 2.1996e-01,\n", " 9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01, 1.3646e-01,\n", " 2.4945e-01, -5.7759e-01, 6.7082e-01, 3.2138e-01, -1.7692e-01,\n", " 7.5860e-01, -9.6094e-01, -4.4573e-01, 1.0738e-01, -8.5018e-01,\n", " 2.2871e-01, -3.3403e-01, -2.0607e-01, 5.8237e-01, 8.7589e-01,\n", " -7.6794e-01, 8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\n", " 1.1904e-01, -9.5598e-01, 8.7078e-01, 6.6721e-01, 4.1586e-01,\n", " -8.7196e-01, 1.8279e-01, 4.1627e-01, -8.1426e-01],\n", " [-6.7484e-01, 8.9251e-01, 7.1709e-02, 3.4437e-01, -1.6517e-01,\n", " -7.1140e-01, -8.6538e-01, -8.0934e-01, 7.5987e-01, 2.7822e-01,\n", " -8.6837e-02, -7.4919e-01, -5.5023e-01, 9.2409e-01, -6.1562e-01,\n", " 1.9981e-01, -4.5086e-01, 9.4142e-01, 9.1322e-01, -1.2868e-01,\n", " -9.2935e-01, -3.2165e-01, 3.2718e-01, 3.4869e-01, -5.0915e-01,\n", " -5.5380e-01, 7.4805e-02, 6.5267e-01, -1.2531e-01, 2.6391e-01,\n", " 8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\n", " 1.6423e-01, -6.5370e-01, 6.3765e-01, 2.7780e-01, -1.1735e-01,\n", " 7.5169e-01, -9.5978e-01, -5.0727e-01, 2.6838e-01, -8.2897e-01,\n", " 2.8772e-01, -2.4363e-01, -9.4374e-02, 5.7713e-01, 8.8612e-01,\n", " -6.9917e-01, 7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\n", " 1.5778e-01, -9.5314e-01, 8.3813e-01, 6.5658e-01, 4.0131e-01,\n", " -8.4993e-01, 1.4095e-01, 4.5086e-01, -7.6913e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([36, 27])\n", "dec_state: tensor([[[-0.3143, 0.8710, -0.5114, 0.9222, -0.0524, -0.5398, -0.4574,\n", " 0.0474, -0.7467, -0.3280, 0.1456, -0.4378, -0.3190, 0.6854,\n", " -0.5919, -0.8004, 0.6810, 0.3592, -0.5673, 0.6039, 0.8170,\n", " -0.7995, 0.1823, 0.8992, 0.3915, -0.2826, -0.1850, -0.3850,\n", " -0.6336, -0.0401, -0.2507, 0.8559, 0.4929, 0.6458, -0.5816,\n", " -0.8461, 0.6243, 0.1166, 0.2525, 0.3932, -0.6374, -0.2549,\n", " 0.1473, -0.1512, -0.3229, 0.0083, -0.3127, 0.3191, -0.0170,\n", " 0.6581, -0.2627, 0.5080, -0.0885, -0.2842, -0.5739, 0.0306,\n", " -0.0275, 0.9056, -0.0064, 0.0730, -0.5402, 0.7215, -0.4586,\n", " -0.0296],\n", " [ 0.0795, 0.0262, -0.4945, 0.3522, -0.0880, -0.3765, -0.6832,\n", " -0.0057, 0.3327, -0.4342, -0.8054, 0.1542, 0.1170, 0.5856,\n", " -0.5941, -0.0746, 0.4327, 0.5505, 0.0323, 0.6277, 0.3384,\n", " -0.2261, -0.2264, 0.6434, 0.0124, -0.6247, -0.0106, -0.1251,\n", " -0.2800, -0.3021, -0.6639, -0.2086, 0.4391, 0.1723, 0.2482,\n", " 0.0640, 0.3318, -0.2893, 0.0413, 0.5932, 0.1892, 0.3261,\n", " 0.5104, 0.1047, 0.3009, 0.3429, -0.1249, 0.2680, 0.2987,\n", " 0.7436, 0.6435, -0.1224, -0.7309, 0.1020, -0.4057, 0.0686,\n", " -0.0212, -0.0928, 0.0642, 0.2390, -0.4360, 0.3025, -0.3644,\n", " -0.1321]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.1876e-02, 2.0449e-01, 1.2946e-01, 3.8957e-01, -2.8742e-01,\n", " 1.7324e-01, 4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\n", " 3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02, 3.8296e-01,\n", " -2.4677e-01, 5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\n", " -3.5863e-01, -7.6301e-02, 5.3976e-01, 1.8053e-01, -4.6039e-01,\n", " -4.0647e-01, -9.8147e-02, 5.4672e-01, -8.9772e-02, 4.0746e-02,\n", " 1.1188e-01, 4.1362e-01, -5.6949e-01, 5.2939e-01, 1.5917e-01,\n", " 9.9399e-02, -3.4445e-01, 6.2491e-01, -4.4808e-01, 2.7106e-01,\n", " -1.6560e-01, 2.6980e-01, -4.7111e-01, 7.4357e-03, 1.1016e-01,\n", " -2.3606e-01, -3.4845e-01, 1.5072e-01, -3.7065e-02, 3.1512e-01,\n", " 2.5581e-01, 3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\n", " -1.6842e-01, 2.2732e-02, 3.7792e-01, -1.1966e-01, 9.9072e-02,\n", " -3.9988e-01, 3.5676e-01, 4.3146e-01, -3.5387e-01],\n", " [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\n", " 7.9412e-02, 1.8133e-02, 1.2927e-01, -1.6136e-01, -1.5331e-01,\n", " -8.0777e-02, -1.3801e-01, -4.0392e-01, 3.0119e-01, 1.1731e-01,\n", " -5.5234e-01, 2.8495e-01, 1.8620e-01, -7.8735e-02, -5.5452e-01,\n", " -5.3230e-01, -4.6117e-02, 1.0367e-01, -1.2489e-01, -4.1837e-02,\n", " 3.4538e-02, -2.5756e-02, 1.7873e-01, 1.5026e-02, -1.0708e-01,\n", " -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\n", " -1.0795e-01, -1.9033e-01, 6.2986e-02, -8.8741e-02, -3.5847e-01,\n", " 1.6159e-01, 6.1150e-01, -3.3382e-02, 9.0885e-02, -5.4511e-01,\n", " -2.8689e-01, 3.4493e-01, -7.5644e-02, -6.3455e-03, 3.7202e-01,\n", " 1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\n", " 2.6133e-02, -3.4519e-01, 1.9728e-01, 5.4546e-02, -3.1128e-01,\n", " 3.1239e-01, 2.0924e-01, 2.3193e-01, -2.8919e-01]],\n", "\n", " [[-3.2365e-01, 1.3569e-01, 2.7882e-01, 5.3593e-01, -2.3814e-03,\n", " -4.0386e-02, -4.1100e-01, 3.4883e-02, -1.3455e-01, -3.0311e-01,\n", " 4.1851e-01, 1.5324e-01, -3.9539e-01, 3.2939e-01, 2.9012e-01,\n", " -2.2305e-01, 2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\n", " -5.6430e-01, 1.4938e-01, 5.3304e-01, 3.3561e-01, -5.6758e-01,\n", " -3.1424e-01, -7.4645e-02, 1.6243e-01, 1.7337e-01, -4.2843e-02,\n", " 1.9555e-01, -7.0186e-02, 4.5234e-02, -2.6768e-02, 6.7001e-02,\n", " 1.4401e-01, -5.8669e-01, 6.6726e-01, -9.7634e-02, -4.4069e-01,\n", " 1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01, 8.5537e-02,\n", " -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01, 3.5808e-01,\n", " 2.4732e-01, 3.4604e-01, 1.8691e-01, -5.2340e-01, -7.8705e-02,\n", " -3.5208e-01, -3.3275e-01, 3.2585e-01, -2.7377e-01, 4.6864e-01,\n", " -4.8893e-01, 4.7856e-02, 4.0918e-01, -3.2458e-01],\n", " [ 2.9272e-01, -2.2613e-01, -3.9943e-01, 7.3033e-01, -1.5350e-01,\n", " 6.4352e-02, 2.0583e-01, 4.9423e-01, 2.8296e-01, -3.0972e-01,\n", " -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01, 4.3754e-01,\n", " 1.9655e-02, 3.1482e-01, 3.4366e-01, 1.3772e-01, -4.9082e-01,\n", " -5.8955e-01, 5.5178e-02, 2.8124e-01, 2.5237e-01, 2.1010e-01,\n", " -1.4519e-01, -3.1231e-02, -4.5927e-02, 8.4576e-02, -2.2813e-01,\n", " -1.0999e-01, -4.7251e-02, 3.7033e-01, 3.2943e-01, -1.4418e-03,\n", " 9.7710e-02, -5.1259e-01, 8.1932e-01, 1.9363e-01, 2.2118e-01,\n", " 1.5377e-01, 5.8502e-01, 2.8674e-02, -1.4168e-01, -3.3884e-01,\n", " -1.3351e-01, 2.3175e-01, -5.4281e-01, 1.1601e-01, 6.1183e-01,\n", " -4.5140e-02, -2.5237e-01, 2.3752e-01, -5.1164e-01, -3.1370e-01,\n", " -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01, 4.5315e-01,\n", " -3.8700e-01, -3.3658e-01, 2.4828e-03, -1.1722e-01]],\n", "\n", " [[ 1.4517e-02, 5.1353e-01, 2.7537e-01, 3.2463e-01, -6.7576e-02,\n", " -2.0490e-01, -4.6915e-01, 1.5765e-01, 4.4066e-01, 2.8679e-01,\n", " 4.1518e-01, -4.7293e-01, -3.3223e-01, 9.0766e-02, 2.6712e-01,\n", " 1.4399e-01, 4.4340e-01, -4.1589e-01, 6.3286e-02, -6.5724e-01,\n", " -9.8731e-02, 1.4927e-01, 2.3330e-01, 3.4253e-01, -8.3711e-02,\n", " -4.2961e-02, -6.9909e-02, 9.9444e-02, 1.9790e-01, -1.3862e-01,\n", " 3.4126e-01, -4.7026e-01, -1.3669e-03, 3.1917e-01, 8.7192e-02,\n", " 1.7769e-01, -2.6164e-01, 5.8675e-01, -3.7114e-01, -4.1631e-01,\n", " -9.7841e-02, 2.1348e-01, -7.5500e-03, -1.8236e-02, 1.9261e-03,\n", " 1.4379e-01, -6.9110e-02, 9.1750e-02, 1.8012e-01, 3.5871e-01,\n", " 1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\n", " -3.6182e-01, -3.7487e-01, 2.4039e-01, -4.6122e-01, 6.9476e-01,\n", " -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\n", " [ 5.1123e-01, -4.0266e-01, -2.9377e-01, 4.1843e-01, -2.3979e-01,\n", " 2.6047e-02, 2.0101e-01, -1.8941e-01, 1.0405e-02, -1.2233e-01,\n", " 7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01, 3.8687e-01,\n", " -7.9252e-04, -9.5511e-02, 2.9611e-01, 1.8304e-01, -6.1154e-01,\n", " -6.3995e-01, -6.1087e-02, 2.2301e-01, 2.3835e-01, -9.4064e-03,\n", " -3.1463e-02, 5.0872e-01, 5.2994e-02, 1.4707e-01, -1.3801e-01,\n", " 1.6804e-01, 2.6023e-01, -1.6039e-03, 3.9684e-01, -8.6695e-02,\n", " -1.2471e-01, -6.2766e-01, 5.4049e-01, -8.3060e-02, -9.4193e-02,\n", " 2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\n", " 1.0937e-01, 2.8545e-01, -5.2316e-01, -1.7083e-01, 5.1631e-01,\n", " -2.0713e-01, 1.1943e-02, 1.9117e-01, -9.0481e-02, -1.7545e-01,\n", " 1.4447e-01, -6.1310e-01, 2.4947e-01, -3.2512e-01, -1.1674e-01,\n", " -1.5464e-01, 8.5949e-02, 1.9173e-01, -1.8634e-01]],\n", "\n", " [[-1.4599e-01, 3.4493e-01, 3.5540e-01, 5.9247e-01, -4.1207e-01,\n", " -1.6579e-01, -4.8020e-01, -7.3714e-01, 4.8738e-01, 2.0807e-01,\n", " 3.0116e-01, -4.4130e-01, -4.2788e-01, 2.6977e-01, -2.3329e-01,\n", " 5.3776e-01, 4.9697e-01, 2.9906e-01, 2.7902e-01, -6.9022e-01,\n", " -4.0519e-01, -1.4059e-01, 4.0009e-01, 3.3875e-01, 3.8020e-02,\n", " -6.8647e-01, 5.3905e-01, 1.5797e-01, -3.5341e-01, -2.1889e-01,\n", " 6.5958e-01, -1.9601e-01, 5.0115e-01, 2.6124e-01, -3.4608e-01,\n", " -8.9277e-02, -7.4167e-01, 6.1062e-01, 1.4346e-01, -2.8655e-01,\n", " -2.5671e-01, -5.9121e-01, -5.0235e-01, 4.6546e-01, 1.5253e-01,\n", " 3.3492e-01, -1.8718e-01, 3.2432e-01, 4.7797e-01, 6.2427e-01,\n", " 1.1437e-02, 3.0348e-01, 1.3757e-01, -7.2873e-01, -2.9603e-01,\n", " 1.8765e-02, -5.9862e-01, 3.6728e-01, 5.7481e-01, 7.0923e-01,\n", " -2.4748e-01, -9.4674e-02, 5.3589e-01, -6.6785e-01],\n", " [ 3.1676e-01, 2.6778e-01, 6.5309e-02, 2.8887e-01, -1.7269e-01,\n", " -4.3300e-02, -1.5170e-01, 4.5494e-03, 4.3829e-01, 3.1757e-01,\n", " 1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01, 2.1333e-01,\n", " 2.4054e-01, 2.3956e-01, -2.2792e-02, 4.7846e-01, -6.9334e-01,\n", " -2.4033e-01, -3.7174e-02, 2.3895e-02, 2.7962e-01, 2.3990e-01,\n", " 1.0133e-01, 3.8711e-01, 8.3111e-03, 1.7434e-01, -1.9475e-01,\n", " 3.4768e-01, -2.9952e-01, -8.9722e-02, 4.9720e-01, 6.0897e-02,\n", " 4.2339e-02, -2.8452e-01, 5.0351e-01, -3.4962e-01, -2.3853e-01,\n", " -8.4488e-02, 7.0700e-02, -1.5170e-01, 1.3667e-01, -4.8259e-02,\n", " 2.4410e-01, 3.2302e-01, -4.5496e-02, 2.0975e-01, 5.4169e-01,\n", " -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\n", " -2.2768e-01, -5.6263e-01, 1.5331e-01, -4.4642e-01, 5.5733e-01,\n", " -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\n", "\n", " [[-5.3190e-01, 8.1577e-01, 2.3800e-01, 4.8075e-01, -2.7762e-01,\n", " -7.0727e-01, -8.0229e-01, -7.6923e-01, 6.7816e-01, 2.7397e-01,\n", " -1.8307e-02, -6.1159e-01, -5.0091e-01, 8.3182e-01, -4.9736e-01,\n", " 3.3217e-01, -2.1184e-01, 8.8089e-01, 7.3042e-01, -3.0091e-01,\n", " -8.4643e-01, -1.7723e-01, 3.9327e-01, 3.5607e-01, -3.6149e-01,\n", " -6.4001e-01, 2.5142e-01, 4.7756e-01, -1.8219e-01, 1.9411e-01,\n", " 8.4554e-01, -4.0670e-01, 2.2843e-01, -2.8213e-02, -1.6706e-01,\n", " 8.4338e-02, -6.9243e-01, 6.5162e-01, 2.2620e-01, -2.4377e-01,\n", " 6.3091e-01, -9.2143e-01, -5.2339e-01, 3.0346e-01, -6.8120e-01,\n", " 3.0847e-01, -3.0962e-01, 8.6166e-02, 5.2663e-01, 7.8582e-01,\n", " -4.4179e-01, 7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\n", " 5.9648e-02, -8.9259e-01, 7.4582e-01, 6.0832e-01, 4.5425e-01,\n", " -7.7402e-01, 7.1262e-03, 5.1430e-01, -7.4709e-01],\n", " [ 1.0309e-01, 1.4890e-01, 2.3418e-01, 5.6161e-01, -4.5344e-01,\n", " -3.7399e-02, -2.9632e-01, -7.8586e-01, 4.6773e-01, 2.3163e-01,\n", " 1.4635e-01, -6.1039e-01, -4.2175e-01, 2.9848e-02, -2.7098e-01,\n", " 5.8869e-01, 3.3047e-01, 3.8213e-01, 5.6308e-01, -7.1158e-01,\n", " -4.7782e-01, -2.6972e-01, 3.1826e-01, 3.0689e-01, 2.0002e-01,\n", " -6.3196e-01, 6.7574e-01, 1.0718e-01, -3.5589e-01, -2.2234e-01,\n", " 6.5694e-01, -4.6705e-02, 4.4457e-01, 3.8695e-01, -4.0593e-01,\n", " -1.4013e-01, -7.6718e-01, 5.5516e-01, 1.2624e-01, -1.6417e-01,\n", " -2.5965e-01, -6.6241e-01, -5.8782e-01, 5.3524e-01, 1.1498e-01,\n", " 3.5718e-01, 2.6810e-02, 3.1688e-01, 5.0246e-01, 7.2960e-01,\n", " -1.6614e-01, 2.5272e-01, 1.4311e-01, -5.7957e-01, -2.1543e-01,\n", " 1.1138e-01, -6.8110e-01, 3.2205e-01, 5.9080e-01, 6.2253e-01,\n", " -1.1579e-01, -5.8518e-02, 5.1007e-01, -6.3510e-01]],\n", "\n", " [[-7.3295e-01, 8.9806e-01, 1.3076e-01, 3.5989e-01, -1.5338e-01,\n", " -7.3023e-01, -8.8205e-01, -7.8767e-01, 7.6649e-01, 2.6182e-01,\n", " -7.9418e-02, -7.0422e-01, -5.5216e-01, 9.3353e-01, -6.1393e-01,\n", " 1.6090e-01, -4.1725e-01, 9.4148e-01, 8.8216e-01, -1.2415e-01,\n", " -9.2694e-01, -2.1225e-01, 3.8735e-01, 3.5587e-01, -5.2650e-01,\n", " -5.9547e-01, 3.4167e-03, 6.6310e-01, -1.2849e-01, 2.4384e-01,\n", " 8.9664e-01, -5.5139e-01, 3.2991e-02, -1.9388e-01, -2.2145e-03,\n", " 1.8390e-01, -6.3102e-01, 6.6637e-01, 2.8547e-01, -2.0640e-01,\n", " 7.5508e-01, -9.5772e-01, -4.9472e-01, 1.9963e-01, -8.3145e-01,\n", " 2.6752e-01, -3.2867e-01, -8.0532e-02, 5.5949e-01, 8.5466e-01,\n", " -6.6808e-01, 7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\n", " 9.2077e-02, -9.4609e-01, 8.4297e-01, 6.4095e-01, 4.2260e-01,\n", " -8.5386e-01, 1.3420e-01, 4.6493e-01, -7.8761e-01],\n", " [-4.0157e-01, 7.7822e-01, 1.5185e-01, 4.5991e-01, -2.9712e-01,\n", " -6.5423e-01, -7.5150e-01, -8.0209e-01, 6.6695e-01, 2.9053e-01,\n", " -6.2758e-02, -7.0725e-01, -4.9634e-01, 7.8107e-01, -5.0621e-01,\n", " 3.7759e-01, -2.7325e-01, 8.8842e-01, 8.2682e-01, -3.1178e-01,\n", " -8.5566e-01, -2.9528e-01, 3.2213e-01, 3.4162e-01, -3.0355e-01,\n", " -5.9389e-01, 3.5483e-01, 4.5676e-01, -1.7409e-01, 2.1121e-01,\n", " 8.4332e-01, -3.1843e-01, 1.7427e-01, 3.4608e-02, -1.8790e-01,\n", " 5.4708e-02, -7.1884e-01, 6.1022e-01, 2.1457e-01, -1.4149e-01,\n", " 6.2510e-01, -9.3106e-01, -5.6068e-01, 3.8099e-01, -6.8192e-01,\n", " 3.3177e-01, -1.8218e-01, 6.8974e-02, 5.4749e-01, 8.4259e-01,\n", " -5.1681e-01, 7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\n", " 1.3590e-01, -9.1580e-01, 7.2868e-01, 6.2468e-01, 3.9947e-01,\n", " -7.5519e-01, 1.6911e-02, 4.8992e-01, -7.2295e-01]],\n", "\n", " [[-8.2138e-01, 9.1111e-01, 4.6997e-02, 2.4762e-01, -3.9914e-02,\n", " -7.1967e-01, -9.0576e-01, -7.9947e-01, 8.0798e-01, 2.3534e-01,\n", " -6.0936e-02, -7.4290e-01, -5.8363e-01, 9.5139e-01, -6.7749e-01,\n", " 2.1059e-02, -4.9246e-01, 9.4772e-01, 9.3094e-01, -3.5459e-02,\n", " -9.4027e-01, -2.4467e-01, 3.8255e-01, 3.4837e-01, -5.9900e-01,\n", " -5.5247e-01, -1.7942e-01, 7.5872e-01, -9.8738e-02, 2.1996e-01,\n", " 9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01, 1.3646e-01,\n", " 2.4945e-01, -5.7759e-01, 6.7082e-01, 3.2138e-01, -1.7692e-01,\n", " 7.5860e-01, -9.6094e-01, -4.4573e-01, 1.0738e-01, -8.5018e-01,\n", " 2.2871e-01, -3.3403e-01, -2.0607e-01, 5.8237e-01, 8.7589e-01,\n", " -7.6794e-01, 8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\n", " 1.1904e-01, -9.5598e-01, 8.7078e-01, 6.6721e-01, 4.1586e-01,\n", " -8.7196e-01, 1.8279e-01, 4.1627e-01, -8.1426e-01],\n", " [-6.7484e-01, 8.9251e-01, 7.1709e-02, 3.4437e-01, -1.6517e-01,\n", " -7.1140e-01, -8.6538e-01, -8.0934e-01, 7.5987e-01, 2.7822e-01,\n", " -8.6837e-02, -7.4919e-01, -5.5023e-01, 9.2409e-01, -6.1562e-01,\n", " 1.9981e-01, -4.5086e-01, 9.4142e-01, 9.1322e-01, -1.2868e-01,\n", " -9.2935e-01, -3.2165e-01, 3.2718e-01, 3.4869e-01, -5.0915e-01,\n", " -5.5380e-01, 7.4805e-02, 6.5267e-01, -1.2531e-01, 2.6391e-01,\n", " 8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\n", " 1.6423e-01, -6.5370e-01, 6.3765e-01, 2.7780e-01, -1.1735e-01,\n", " 7.5169e-01, -9.5978e-01, -5.0727e-01, 2.6838e-01, -8.2897e-01,\n", " 2.8772e-01, -2.4363e-01, -9.4374e-02, 5.7713e-01, 8.8612e-01,\n", " -6.9917e-01, 7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\n", " 1.5778e-01, -9.5314e-01, 8.3813e-01, 6.5658e-01, 4.0131e-01,\n", " -8.4993e-01, 1.4095e-01, 4.5086e-01, -7.6913e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([3, 3])\n", "dec_state: tensor([[[ 0.6687, 0.9203, -0.7646, 0.7632, 0.1101, -0.1989, -0.5587,\n", " -0.2503, -0.6517, -0.8665, -0.5722, -0.5666, 0.5456, 0.8175,\n", " -0.8757, -0.3300, 0.7637, 0.1723, -0.7469, 0.7212, 0.7864,\n", " -0.8185, -0.2320, 0.7544, 0.7799, -0.5862, 0.0822, -0.7955,\n", " 0.0430, -0.4943, -0.6038, 0.8119, 0.7657, 0.7116, -0.3648,\n", " -0.6876, 0.7293, -0.5445, 0.6874, 0.6842, -0.7249, 0.0625,\n", " 0.3571, -0.4527, -0.6794, 0.5604, -0.1622, 0.5990, -0.1978,\n", " 0.6404, -0.7082, 0.7913, -0.0724, -0.4190, 0.3894, 0.0331,\n", " 0.3827, 0.6560, -0.3759, 0.0218, -0.7606, 0.7750, -0.4868,\n", " -0.8303],\n", " [ 0.7853, 0.5307, -0.6785, 0.4080, 0.1004, -0.1049, -0.7184,\n", " -0.2529, 0.1562, -0.8635, -0.8820, -0.2500, 0.4938, 0.7656,\n", " -0.8623, 0.1309, 0.7997, 0.3942, -0.5866, 0.7746, 0.4193,\n", " -0.4139, -0.3976, 0.5160, 0.7046, -0.7296, 0.1491, -0.7618,\n", " 0.1596, -0.5170, -0.7418, -0.0086, 0.6479, 0.6756, 0.3398,\n", " -0.2299, 0.5073, -0.6629, 0.6010, 0.7857, -0.1484, 0.4565,\n", " 0.5620, -0.3122, -0.4368, 0.6640, -0.0494, 0.5833, -0.0127,\n", " 0.6208, -0.4683, 0.4819, -0.4754, -0.1504, 0.3566, 0.0713,\n", " 0.3698, 0.1180, -0.3753, 0.0562, -0.7093, 0.4912, -0.4410,\n", " -0.8070]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.1876e-02, 2.0449e-01, 1.2946e-01, 3.8957e-01, -2.8742e-01,\n", " 1.7324e-01, 4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\n", " 3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02, 3.8296e-01,\n", " -2.4677e-01, 5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\n", " -3.5863e-01, -7.6301e-02, 5.3976e-01, 1.8053e-01, -4.6039e-01,\n", " -4.0647e-01, -9.8147e-02, 5.4672e-01, -8.9772e-02, 4.0746e-02,\n", " 1.1188e-01, 4.1362e-01, -5.6949e-01, 5.2939e-01, 1.5917e-01,\n", " 9.9399e-02, -3.4445e-01, 6.2491e-01, -4.4808e-01, 2.7106e-01,\n", " -1.6560e-01, 2.6980e-01, -4.7111e-01, 7.4357e-03, 1.1016e-01,\n", " -2.3606e-01, -3.4845e-01, 1.5072e-01, -3.7065e-02, 3.1512e-01,\n", " 2.5581e-01, 3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\n", " -1.6842e-01, 2.2732e-02, 3.7792e-01, -1.1966e-01, 9.9072e-02,\n", " -3.9988e-01, 3.5676e-01, 4.3146e-01, -3.5387e-01],\n", " [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\n", " 7.9412e-02, 1.8133e-02, 1.2927e-01, -1.6136e-01, -1.5331e-01,\n", " -8.0777e-02, -1.3801e-01, -4.0392e-01, 3.0119e-01, 1.1731e-01,\n", " -5.5234e-01, 2.8495e-01, 1.8620e-01, -7.8735e-02, -5.5452e-01,\n", " -5.3230e-01, -4.6117e-02, 1.0367e-01, -1.2489e-01, -4.1837e-02,\n", " 3.4538e-02, -2.5756e-02, 1.7873e-01, 1.5026e-02, -1.0708e-01,\n", " -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\n", " -1.0795e-01, -1.9033e-01, 6.2986e-02, -8.8741e-02, -3.5847e-01,\n", " 1.6159e-01, 6.1150e-01, -3.3382e-02, 9.0885e-02, -5.4511e-01,\n", " -2.8689e-01, 3.4493e-01, -7.5644e-02, -6.3455e-03, 3.7202e-01,\n", " 1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\n", " 2.6133e-02, -3.4519e-01, 1.9728e-01, 5.4546e-02, -3.1128e-01,\n", " 3.1239e-01, 2.0924e-01, 2.3193e-01, -2.8919e-01]],\n", "\n", " [[-3.2365e-01, 1.3569e-01, 2.7882e-01, 5.3593e-01, -2.3814e-03,\n", " -4.0386e-02, -4.1100e-01, 3.4883e-02, -1.3455e-01, -3.0311e-01,\n", " 4.1851e-01, 1.5324e-01, -3.9539e-01, 3.2939e-01, 2.9012e-01,\n", " -2.2305e-01, 2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\n", " -5.6430e-01, 1.4938e-01, 5.3304e-01, 3.3561e-01, -5.6758e-01,\n", " -3.1424e-01, -7.4645e-02, 1.6243e-01, 1.7337e-01, -4.2843e-02,\n", " 1.9555e-01, -7.0186e-02, 4.5234e-02, -2.6768e-02, 6.7001e-02,\n", " 1.4401e-01, -5.8669e-01, 6.6726e-01, -9.7634e-02, -4.4069e-01,\n", " 1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01, 8.5537e-02,\n", " -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01, 3.5808e-01,\n", " 2.4732e-01, 3.4604e-01, 1.8691e-01, -5.2340e-01, -7.8705e-02,\n", " -3.5208e-01, -3.3275e-01, 3.2585e-01, -2.7377e-01, 4.6864e-01,\n", " -4.8893e-01, 4.7856e-02, 4.0918e-01, -3.2458e-01],\n", " [ 2.9272e-01, -2.2613e-01, -3.9943e-01, 7.3033e-01, -1.5350e-01,\n", " 6.4352e-02, 2.0583e-01, 4.9423e-01, 2.8296e-01, -3.0972e-01,\n", " -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01, 4.3754e-01,\n", " 1.9655e-02, 3.1482e-01, 3.4366e-01, 1.3772e-01, -4.9082e-01,\n", " -5.8955e-01, 5.5178e-02, 2.8124e-01, 2.5237e-01, 2.1010e-01,\n", " -1.4519e-01, -3.1231e-02, -4.5927e-02, 8.4576e-02, -2.2813e-01,\n", " -1.0999e-01, -4.7251e-02, 3.7033e-01, 3.2943e-01, -1.4418e-03,\n", " 9.7710e-02, -5.1259e-01, 8.1932e-01, 1.9363e-01, 2.2118e-01,\n", " 1.5377e-01, 5.8502e-01, 2.8674e-02, -1.4168e-01, -3.3884e-01,\n", " -1.3351e-01, 2.3175e-01, -5.4281e-01, 1.1601e-01, 6.1183e-01,\n", " -4.5140e-02, -2.5237e-01, 2.3752e-01, -5.1164e-01, -3.1370e-01,\n", " -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01, 4.5315e-01,\n", " -3.8700e-01, -3.3658e-01, 2.4828e-03, -1.1722e-01]],\n", "\n", " [[ 1.4517e-02, 5.1353e-01, 2.7537e-01, 3.2463e-01, -6.7576e-02,\n", " -2.0490e-01, -4.6915e-01, 1.5765e-01, 4.4066e-01, 2.8679e-01,\n", " 4.1518e-01, -4.7293e-01, -3.3223e-01, 9.0766e-02, 2.6712e-01,\n", " 1.4399e-01, 4.4340e-01, -4.1589e-01, 6.3286e-02, -6.5724e-01,\n", " -9.8731e-02, 1.4927e-01, 2.3330e-01, 3.4253e-01, -8.3711e-02,\n", " -4.2961e-02, -6.9909e-02, 9.9444e-02, 1.9790e-01, -1.3862e-01,\n", " 3.4126e-01, -4.7026e-01, -1.3669e-03, 3.1917e-01, 8.7192e-02,\n", " 1.7769e-01, -2.6164e-01, 5.8675e-01, -3.7114e-01, -4.1631e-01,\n", " -9.7841e-02, 2.1348e-01, -7.5500e-03, -1.8236e-02, 1.9261e-03,\n", " 1.4379e-01, -6.9110e-02, 9.1750e-02, 1.8012e-01, 3.5871e-01,\n", " 1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\n", " -3.6182e-01, -3.7487e-01, 2.4039e-01, -4.6122e-01, 6.9476e-01,\n", " -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\n", " [ 5.1123e-01, -4.0266e-01, -2.9377e-01, 4.1843e-01, -2.3979e-01,\n", " 2.6047e-02, 2.0101e-01, -1.8941e-01, 1.0405e-02, -1.2233e-01,\n", " 7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01, 3.8687e-01,\n", " -7.9252e-04, -9.5511e-02, 2.9611e-01, 1.8304e-01, -6.1154e-01,\n", " -6.3995e-01, -6.1087e-02, 2.2301e-01, 2.3835e-01, -9.4064e-03,\n", " -3.1463e-02, 5.0872e-01, 5.2994e-02, 1.4707e-01, -1.3801e-01,\n", " 1.6804e-01, 2.6023e-01, -1.6039e-03, 3.9684e-01, -8.6695e-02,\n", " -1.2471e-01, -6.2766e-01, 5.4049e-01, -8.3060e-02, -9.4193e-02,\n", " 2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\n", " 1.0937e-01, 2.8545e-01, -5.2316e-01, -1.7083e-01, 5.1631e-01,\n", " -2.0713e-01, 1.1943e-02, 1.9117e-01, -9.0481e-02, -1.7545e-01,\n", " 1.4447e-01, -6.1310e-01, 2.4947e-01, -3.2512e-01, -1.1674e-01,\n", " -1.5464e-01, 8.5949e-02, 1.9173e-01, -1.8634e-01]],\n", "\n", " [[-1.4599e-01, 3.4493e-01, 3.5540e-01, 5.9247e-01, -4.1207e-01,\n", " -1.6579e-01, -4.8020e-01, -7.3714e-01, 4.8738e-01, 2.0807e-01,\n", " 3.0116e-01, -4.4130e-01, -4.2788e-01, 2.6977e-01, -2.3329e-01,\n", " 5.3776e-01, 4.9697e-01, 2.9906e-01, 2.7902e-01, -6.9022e-01,\n", " -4.0519e-01, -1.4059e-01, 4.0009e-01, 3.3875e-01, 3.8020e-02,\n", " -6.8647e-01, 5.3905e-01, 1.5797e-01, -3.5341e-01, -2.1889e-01,\n", " 6.5958e-01, -1.9601e-01, 5.0115e-01, 2.6124e-01, -3.4608e-01,\n", " -8.9277e-02, -7.4167e-01, 6.1062e-01, 1.4346e-01, -2.8655e-01,\n", " -2.5671e-01, -5.9121e-01, -5.0235e-01, 4.6546e-01, 1.5253e-01,\n", " 3.3492e-01, -1.8718e-01, 3.2432e-01, 4.7797e-01, 6.2427e-01,\n", " 1.1437e-02, 3.0348e-01, 1.3757e-01, -7.2873e-01, -2.9603e-01,\n", " 1.8765e-02, -5.9862e-01, 3.6728e-01, 5.7481e-01, 7.0923e-01,\n", " -2.4748e-01, -9.4674e-02, 5.3589e-01, -6.6785e-01],\n", " [ 3.1676e-01, 2.6778e-01, 6.5309e-02, 2.8887e-01, -1.7269e-01,\n", " -4.3300e-02, -1.5170e-01, 4.5494e-03, 4.3829e-01, 3.1757e-01,\n", " 1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01, 2.1333e-01,\n", " 2.4054e-01, 2.3956e-01, -2.2792e-02, 4.7846e-01, -6.9334e-01,\n", " -2.4033e-01, -3.7174e-02, 2.3895e-02, 2.7962e-01, 2.3990e-01,\n", " 1.0133e-01, 3.8711e-01, 8.3111e-03, 1.7434e-01, -1.9475e-01,\n", " 3.4768e-01, -2.9952e-01, -8.9722e-02, 4.9720e-01, 6.0897e-02,\n", " 4.2339e-02, -2.8452e-01, 5.0351e-01, -3.4962e-01, -2.3853e-01,\n", " -8.4488e-02, 7.0700e-02, -1.5170e-01, 1.3667e-01, -4.8259e-02,\n", " 2.4410e-01, 3.2302e-01, -4.5496e-02, 2.0975e-01, 5.4169e-01,\n", " -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\n", " -2.2768e-01, -5.6263e-01, 1.5331e-01, -4.4642e-01, 5.5733e-01,\n", " -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\n", "\n", " [[-5.3190e-01, 8.1577e-01, 2.3800e-01, 4.8075e-01, -2.7762e-01,\n", " -7.0727e-01, -8.0229e-01, -7.6923e-01, 6.7816e-01, 2.7397e-01,\n", " -1.8307e-02, -6.1159e-01, -5.0091e-01, 8.3182e-01, -4.9736e-01,\n", " 3.3217e-01, -2.1184e-01, 8.8089e-01, 7.3042e-01, -3.0091e-01,\n", " -8.4643e-01, -1.7723e-01, 3.9327e-01, 3.5607e-01, -3.6149e-01,\n", " -6.4001e-01, 2.5142e-01, 4.7756e-01, -1.8219e-01, 1.9411e-01,\n", " 8.4554e-01, -4.0670e-01, 2.2843e-01, -2.8213e-02, -1.6706e-01,\n", " 8.4338e-02, -6.9243e-01, 6.5162e-01, 2.2620e-01, -2.4377e-01,\n", " 6.3091e-01, -9.2143e-01, -5.2339e-01, 3.0346e-01, -6.8120e-01,\n", " 3.0847e-01, -3.0962e-01, 8.6166e-02, 5.2663e-01, 7.8582e-01,\n", " -4.4179e-01, 7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\n", " 5.9648e-02, -8.9259e-01, 7.4582e-01, 6.0832e-01, 4.5425e-01,\n", " -7.7402e-01, 7.1262e-03, 5.1430e-01, -7.4709e-01],\n", " [ 1.0309e-01, 1.4890e-01, 2.3418e-01, 5.6161e-01, -4.5344e-01,\n", " -3.7399e-02, -2.9632e-01, -7.8586e-01, 4.6773e-01, 2.3163e-01,\n", " 1.4635e-01, -6.1039e-01, -4.2175e-01, 2.9848e-02, -2.7098e-01,\n", " 5.8869e-01, 3.3047e-01, 3.8213e-01, 5.6308e-01, -7.1158e-01,\n", " -4.7782e-01, -2.6972e-01, 3.1826e-01, 3.0689e-01, 2.0002e-01,\n", " -6.3196e-01, 6.7574e-01, 1.0718e-01, -3.5589e-01, -2.2234e-01,\n", " 6.5694e-01, -4.6705e-02, 4.4457e-01, 3.8695e-01, -4.0593e-01,\n", " -1.4013e-01, -7.6718e-01, 5.5516e-01, 1.2624e-01, -1.6417e-01,\n", " -2.5965e-01, -6.6241e-01, -5.8782e-01, 5.3524e-01, 1.1498e-01,\n", " 3.5718e-01, 2.6810e-02, 3.1688e-01, 5.0246e-01, 7.2960e-01,\n", " -1.6614e-01, 2.5272e-01, 1.4311e-01, -5.7957e-01, -2.1543e-01,\n", " 1.1138e-01, -6.8110e-01, 3.2205e-01, 5.9080e-01, 6.2253e-01,\n", " -1.1579e-01, -5.8518e-02, 5.1007e-01, -6.3510e-01]],\n", "\n", " [[-7.3295e-01, 8.9806e-01, 1.3076e-01, 3.5989e-01, -1.5338e-01,\n", " -7.3023e-01, -8.8205e-01, -7.8767e-01, 7.6649e-01, 2.6182e-01,\n", " -7.9418e-02, -7.0422e-01, -5.5216e-01, 9.3353e-01, -6.1393e-01,\n", " 1.6090e-01, -4.1725e-01, 9.4148e-01, 8.8216e-01, -1.2415e-01,\n", " -9.2694e-01, -2.1225e-01, 3.8735e-01, 3.5587e-01, -5.2650e-01,\n", " -5.9547e-01, 3.4167e-03, 6.6310e-01, -1.2849e-01, 2.4384e-01,\n", " 8.9664e-01, -5.5139e-01, 3.2991e-02, -1.9388e-01, -2.2145e-03,\n", " 1.8390e-01, -6.3102e-01, 6.6637e-01, 2.8547e-01, -2.0640e-01,\n", " 7.5508e-01, -9.5772e-01, -4.9472e-01, 1.9963e-01, -8.3145e-01,\n", " 2.6752e-01, -3.2867e-01, -8.0532e-02, 5.5949e-01, 8.5466e-01,\n", " -6.6808e-01, 7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\n", " 9.2077e-02, -9.4609e-01, 8.4297e-01, 6.4095e-01, 4.2260e-01,\n", " -8.5386e-01, 1.3420e-01, 4.6493e-01, -7.8761e-01],\n", " [-4.0157e-01, 7.7822e-01, 1.5185e-01, 4.5991e-01, -2.9712e-01,\n", " -6.5423e-01, -7.5150e-01, -8.0209e-01, 6.6695e-01, 2.9053e-01,\n", " -6.2758e-02, -7.0725e-01, -4.9634e-01, 7.8107e-01, -5.0621e-01,\n", " 3.7759e-01, -2.7325e-01, 8.8842e-01, 8.2682e-01, -3.1178e-01,\n", " -8.5566e-01, -2.9528e-01, 3.2213e-01, 3.4162e-01, -3.0355e-01,\n", " -5.9389e-01, 3.5483e-01, 4.5676e-01, -1.7409e-01, 2.1121e-01,\n", " 8.4332e-01, -3.1843e-01, 1.7427e-01, 3.4608e-02, -1.8790e-01,\n", " 5.4708e-02, -7.1884e-01, 6.1022e-01, 2.1457e-01, -1.4149e-01,\n", " 6.2510e-01, -9.3106e-01, -5.6068e-01, 3.8099e-01, -6.8192e-01,\n", " 3.3177e-01, -1.8218e-01, 6.8974e-02, 5.4749e-01, 8.4259e-01,\n", " -5.1681e-01, 7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\n", " 1.3590e-01, -9.1580e-01, 7.2868e-01, 6.2468e-01, 3.9947e-01,\n", " -7.5519e-01, 1.6911e-02, 4.8992e-01, -7.2295e-01]],\n", "\n", " [[-8.2138e-01, 9.1111e-01, 4.6997e-02, 2.4762e-01, -3.9914e-02,\n", " -7.1967e-01, -9.0576e-01, -7.9947e-01, 8.0798e-01, 2.3534e-01,\n", " -6.0936e-02, -7.4290e-01, -5.8363e-01, 9.5139e-01, -6.7749e-01,\n", " 2.1059e-02, -4.9246e-01, 9.4772e-01, 9.3094e-01, -3.5459e-02,\n", " -9.4027e-01, -2.4467e-01, 3.8255e-01, 3.4837e-01, -5.9900e-01,\n", " -5.5247e-01, -1.7942e-01, 7.5872e-01, -9.8738e-02, 2.1996e-01,\n", " 9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01, 1.3646e-01,\n", " 2.4945e-01, -5.7759e-01, 6.7082e-01, 3.2138e-01, -1.7692e-01,\n", " 7.5860e-01, -9.6094e-01, -4.4573e-01, 1.0738e-01, -8.5018e-01,\n", " 2.2871e-01, -3.3403e-01, -2.0607e-01, 5.8237e-01, 8.7589e-01,\n", " -7.6794e-01, 8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\n", " 1.1904e-01, -9.5598e-01, 8.7078e-01, 6.6721e-01, 4.1586e-01,\n", " -8.7196e-01, 1.8279e-01, 4.1627e-01, -8.1426e-01],\n", " [-6.7484e-01, 8.9251e-01, 7.1709e-02, 3.4437e-01, -1.6517e-01,\n", " -7.1140e-01, -8.6538e-01, -8.0934e-01, 7.5987e-01, 2.7822e-01,\n", " -8.6837e-02, -7.4919e-01, -5.5023e-01, 9.2409e-01, -6.1562e-01,\n", " 1.9981e-01, -4.5086e-01, 9.4142e-01, 9.1322e-01, -1.2868e-01,\n", " -9.2935e-01, -3.2165e-01, 3.2718e-01, 3.4869e-01, -5.0915e-01,\n", " -5.5380e-01, 7.4805e-02, 6.5267e-01, -1.2531e-01, 2.6391e-01,\n", " 8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\n", " 1.6423e-01, -6.5370e-01, 6.3765e-01, 2.7780e-01, -1.1735e-01,\n", " 7.5169e-01, -9.5978e-01, -5.0727e-01, 2.6838e-01, -8.2897e-01,\n", " 2.8772e-01, -2.4363e-01, -9.4374e-02, 5.7713e-01, 8.8612e-01,\n", " -6.9917e-01, 7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\n", " 1.5778e-01, -9.5314e-01, 8.3813e-01, 6.5658e-01, 4.0131e-01,\n", " -8.4993e-01, 1.4095e-01, 4.5086e-01, -7.6913e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([2, 2])\n", "dec_state: tensor([[[ 0.7305, 0.1765, -0.8690, 0.7700, 0.1795, 0.2444, 0.0397,\n", " -0.1598, -0.6506, -0.3576, -0.1410, -0.4863, 0.6637, 0.0213,\n", " -0.9238, -0.5097, 0.3969, 0.4407, -0.7275, 0.3024, 0.8105,\n", " -0.7462, -0.0953, 0.6928, 0.5223, -0.7127, -0.3046, -0.6809,\n", " -0.4154, -0.0267, -0.6831, 0.8408, -0.2786, 0.7211, -0.4596,\n", " -0.8411, 0.3416, -0.2901, 0.6556, 0.3592, -0.5158, 0.2672,\n", " 0.3867, -0.2363, -0.0113, 0.2001, -0.2655, 0.6751, -0.2600,\n", " 0.4378, -0.5019, 0.7265, -0.1737, -0.5082, 0.0348, -0.0163,\n", " 0.6712, 0.6123, 0.2717, 0.2270, -0.6987, 0.6071, -0.4897,\n", " -0.5075],\n", " [ 0.7946, -0.0830, -0.7912, 0.5376, 0.1329, 0.2198, 0.0797,\n", " -0.0667, -0.3490, -0.0817, -0.2726, -0.2533, 0.5671, 0.1040,\n", " -0.9262, -0.3087, 0.4562, 0.5709, -0.6050, 0.4559, 0.7243,\n", " -0.4190, -0.1422, 0.5758, 0.4150, -0.7974, -0.2648, -0.6885,\n", " -0.2895, -0.1510, -0.7473, 0.4071, -0.3340, 0.7021, -0.0398,\n", " -0.6497, 0.2781, -0.2721, 0.6324, 0.4615, -0.1022, 0.5581,\n", " 0.5048, -0.1350, 0.0913, 0.1335, -0.1770, 0.6571, -0.1887,\n", " 0.3187, -0.5232, 0.5346, -0.4838, -0.3089, 0.0187, 0.0253,\n", " 0.6358, 0.3519, 0.2764, 0.1436, -0.6045, 0.3655, -0.4246,\n", " -0.4193]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.1876e-02, 2.0449e-01, 1.2946e-01, 3.8957e-01, -2.8742e-01,\n", " 1.7324e-01, 4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\n", " 3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02, 3.8296e-01,\n", " -2.4677e-01, 5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\n", " -3.5863e-01, -7.6301e-02, 5.3976e-01, 1.8053e-01, -4.6039e-01,\n", " -4.0647e-01, -9.8147e-02, 5.4672e-01, -8.9772e-02, 4.0746e-02,\n", " 1.1188e-01, 4.1362e-01, -5.6949e-01, 5.2939e-01, 1.5917e-01,\n", " 9.9399e-02, -3.4445e-01, 6.2491e-01, -4.4808e-01, 2.7106e-01,\n", " -1.6560e-01, 2.6980e-01, -4.7111e-01, 7.4357e-03, 1.1016e-01,\n", " -2.3606e-01, -3.4845e-01, 1.5072e-01, -3.7065e-02, 3.1512e-01,\n", " 2.5581e-01, 3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\n", " -1.6842e-01, 2.2732e-02, 3.7792e-01, -1.1966e-01, 9.9072e-02,\n", " -3.9988e-01, 3.5676e-01, 4.3146e-01, -3.5387e-01],\n", " [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\n", " 7.9412e-02, 1.8133e-02, 1.2927e-01, -1.6136e-01, -1.5331e-01,\n", " -8.0777e-02, -1.3801e-01, -4.0392e-01, 3.0119e-01, 1.1731e-01,\n", " -5.5234e-01, 2.8495e-01, 1.8620e-01, -7.8735e-02, -5.5452e-01,\n", " -5.3230e-01, -4.6117e-02, 1.0367e-01, -1.2489e-01, -4.1837e-02,\n", " 3.4538e-02, -2.5756e-02, 1.7873e-01, 1.5026e-02, -1.0708e-01,\n", " -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\n", " -1.0795e-01, -1.9033e-01, 6.2986e-02, -8.8741e-02, -3.5847e-01,\n", " 1.6159e-01, 6.1150e-01, -3.3382e-02, 9.0885e-02, -5.4511e-01,\n", " -2.8689e-01, 3.4493e-01, -7.5644e-02, -6.3455e-03, 3.7202e-01,\n", " 1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\n", " 2.6133e-02, -3.4519e-01, 1.9728e-01, 5.4546e-02, -3.1128e-01,\n", " 3.1239e-01, 2.0924e-01, 2.3193e-01, -2.8919e-01]],\n", "\n", " [[-3.2365e-01, 1.3569e-01, 2.7882e-01, 5.3593e-01, -2.3814e-03,\n", " -4.0386e-02, -4.1100e-01, 3.4883e-02, -1.3455e-01, -3.0311e-01,\n", " 4.1851e-01, 1.5324e-01, -3.9539e-01, 3.2939e-01, 2.9012e-01,\n", " -2.2305e-01, 2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\n", " -5.6430e-01, 1.4938e-01, 5.3304e-01, 3.3561e-01, -5.6758e-01,\n", " -3.1424e-01, -7.4645e-02, 1.6243e-01, 1.7337e-01, -4.2843e-02,\n", " 1.9555e-01, -7.0186e-02, 4.5234e-02, -2.6768e-02, 6.7001e-02,\n", " 1.4401e-01, -5.8669e-01, 6.6726e-01, -9.7634e-02, -4.4069e-01,\n", " 1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01, 8.5537e-02,\n", " -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01, 3.5808e-01,\n", " 2.4732e-01, 3.4604e-01, 1.8691e-01, -5.2340e-01, -7.8705e-02,\n", " -3.5208e-01, -3.3275e-01, 3.2585e-01, -2.7377e-01, 4.6864e-01,\n", " -4.8893e-01, 4.7856e-02, 4.0918e-01, -3.2458e-01],\n", " [ 2.9272e-01, -2.2613e-01, -3.9943e-01, 7.3033e-01, -1.5350e-01,\n", " 6.4352e-02, 2.0583e-01, 4.9423e-01, 2.8296e-01, -3.0972e-01,\n", " -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01, 4.3754e-01,\n", " 1.9655e-02, 3.1482e-01, 3.4366e-01, 1.3772e-01, -4.9082e-01,\n", " -5.8955e-01, 5.5178e-02, 2.8124e-01, 2.5237e-01, 2.1010e-01,\n", " -1.4519e-01, -3.1231e-02, -4.5927e-02, 8.4576e-02, -2.2813e-01,\n", " -1.0999e-01, -4.7251e-02, 3.7033e-01, 3.2943e-01, -1.4418e-03,\n", " 9.7710e-02, -5.1259e-01, 8.1932e-01, 1.9363e-01, 2.2118e-01,\n", " 1.5377e-01, 5.8502e-01, 2.8674e-02, -1.4168e-01, -3.3884e-01,\n", " -1.3351e-01, 2.3175e-01, -5.4281e-01, 1.1601e-01, 6.1183e-01,\n", " -4.5140e-02, -2.5237e-01, 2.3752e-01, -5.1164e-01, -3.1370e-01,\n", " -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01, 4.5315e-01,\n", " -3.8700e-01, -3.3658e-01, 2.4828e-03, -1.1722e-01]],\n", "\n", " [[ 1.4517e-02, 5.1353e-01, 2.7537e-01, 3.2463e-01, -6.7576e-02,\n", " -2.0490e-01, -4.6915e-01, 1.5765e-01, 4.4066e-01, 2.8679e-01,\n", " 4.1518e-01, -4.7293e-01, -3.3223e-01, 9.0766e-02, 2.6712e-01,\n", " 1.4399e-01, 4.4340e-01, -4.1589e-01, 6.3286e-02, -6.5724e-01,\n", " -9.8731e-02, 1.4927e-01, 2.3330e-01, 3.4253e-01, -8.3711e-02,\n", " -4.2961e-02, -6.9909e-02, 9.9444e-02, 1.9790e-01, -1.3862e-01,\n", " 3.4126e-01, -4.7026e-01, -1.3669e-03, 3.1917e-01, 8.7192e-02,\n", " 1.7769e-01, -2.6164e-01, 5.8675e-01, -3.7114e-01, -4.1631e-01,\n", " -9.7841e-02, 2.1348e-01, -7.5500e-03, -1.8236e-02, 1.9261e-03,\n", " 1.4379e-01, -6.9110e-02, 9.1750e-02, 1.8012e-01, 3.5871e-01,\n", " 1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\n", " -3.6182e-01, -3.7487e-01, 2.4039e-01, -4.6122e-01, 6.9476e-01,\n", " -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\n", " [ 5.1123e-01, -4.0266e-01, -2.9377e-01, 4.1843e-01, -2.3979e-01,\n", " 2.6047e-02, 2.0101e-01, -1.8941e-01, 1.0405e-02, -1.2233e-01,\n", " 7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01, 3.8687e-01,\n", " -7.9252e-04, -9.5511e-02, 2.9611e-01, 1.8304e-01, -6.1154e-01,\n", " -6.3995e-01, -6.1087e-02, 2.2301e-01, 2.3835e-01, -9.4064e-03,\n", " -3.1463e-02, 5.0872e-01, 5.2994e-02, 1.4707e-01, -1.3801e-01,\n", " 1.6804e-01, 2.6023e-01, -1.6039e-03, 3.9684e-01, -8.6695e-02,\n", " -1.2471e-01, -6.2766e-01, 5.4049e-01, -8.3060e-02, -9.4193e-02,\n", " 2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\n", " 1.0937e-01, 2.8545e-01, -5.2316e-01, -1.7083e-01, 5.1631e-01,\n", " -2.0713e-01, 1.1943e-02, 1.9117e-01, -9.0481e-02, -1.7545e-01,\n", " 1.4447e-01, -6.1310e-01, 2.4947e-01, -3.2512e-01, -1.1674e-01,\n", " -1.5464e-01, 8.5949e-02, 1.9173e-01, -1.8634e-01]],\n", "\n", " [[-1.4599e-01, 3.4493e-01, 3.5540e-01, 5.9247e-01, -4.1207e-01,\n", " -1.6579e-01, -4.8020e-01, -7.3714e-01, 4.8738e-01, 2.0807e-01,\n", " 3.0116e-01, -4.4130e-01, -4.2788e-01, 2.6977e-01, -2.3329e-01,\n", " 5.3776e-01, 4.9697e-01, 2.9906e-01, 2.7902e-01, -6.9022e-01,\n", " -4.0519e-01, -1.4059e-01, 4.0009e-01, 3.3875e-01, 3.8020e-02,\n", " -6.8647e-01, 5.3905e-01, 1.5797e-01, -3.5341e-01, -2.1889e-01,\n", " 6.5958e-01, -1.9601e-01, 5.0115e-01, 2.6124e-01, -3.4608e-01,\n", " -8.9277e-02, -7.4167e-01, 6.1062e-01, 1.4346e-01, -2.8655e-01,\n", " -2.5671e-01, -5.9121e-01, -5.0235e-01, 4.6546e-01, 1.5253e-01,\n", " 3.3492e-01, -1.8718e-01, 3.2432e-01, 4.7797e-01, 6.2427e-01,\n", " 1.1437e-02, 3.0348e-01, 1.3757e-01, -7.2873e-01, -2.9603e-01,\n", " 1.8765e-02, -5.9862e-01, 3.6728e-01, 5.7481e-01, 7.0923e-01,\n", " -2.4748e-01, -9.4674e-02, 5.3589e-01, -6.6785e-01],\n", " [ 3.1676e-01, 2.6778e-01, 6.5309e-02, 2.8887e-01, -1.7269e-01,\n", " -4.3300e-02, -1.5170e-01, 4.5494e-03, 4.3829e-01, 3.1757e-01,\n", " 1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01, 2.1333e-01,\n", " 2.4054e-01, 2.3956e-01, -2.2792e-02, 4.7846e-01, -6.9334e-01,\n", " -2.4033e-01, -3.7174e-02, 2.3895e-02, 2.7962e-01, 2.3990e-01,\n", " 1.0133e-01, 3.8711e-01, 8.3111e-03, 1.7434e-01, -1.9475e-01,\n", " 3.4768e-01, -2.9952e-01, -8.9722e-02, 4.9720e-01, 6.0897e-02,\n", " 4.2339e-02, -2.8452e-01, 5.0351e-01, -3.4962e-01, -2.3853e-01,\n", " -8.4488e-02, 7.0700e-02, -1.5170e-01, 1.3667e-01, -4.8259e-02,\n", " 2.4410e-01, 3.2302e-01, -4.5496e-02, 2.0975e-01, 5.4169e-01,\n", " -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\n", " -2.2768e-01, -5.6263e-01, 1.5331e-01, -4.4642e-01, 5.5733e-01,\n", " -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\n", "\n", " [[-5.3190e-01, 8.1577e-01, 2.3800e-01, 4.8075e-01, -2.7762e-01,\n", " -7.0727e-01, -8.0229e-01, -7.6923e-01, 6.7816e-01, 2.7397e-01,\n", " -1.8307e-02, -6.1159e-01, -5.0091e-01, 8.3182e-01, -4.9736e-01,\n", " 3.3217e-01, -2.1184e-01, 8.8089e-01, 7.3042e-01, -3.0091e-01,\n", " -8.4643e-01, -1.7723e-01, 3.9327e-01, 3.5607e-01, -3.6149e-01,\n", " -6.4001e-01, 2.5142e-01, 4.7756e-01, -1.8219e-01, 1.9411e-01,\n", " 8.4554e-01, -4.0670e-01, 2.2843e-01, -2.8213e-02, -1.6706e-01,\n", " 8.4338e-02, -6.9243e-01, 6.5162e-01, 2.2620e-01, -2.4377e-01,\n", " 6.3091e-01, -9.2143e-01, -5.2339e-01, 3.0346e-01, -6.8120e-01,\n", " 3.0847e-01, -3.0962e-01, 8.6166e-02, 5.2663e-01, 7.8582e-01,\n", " -4.4179e-01, 7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\n", " 5.9648e-02, -8.9259e-01, 7.4582e-01, 6.0832e-01, 4.5425e-01,\n", " -7.7402e-01, 7.1262e-03, 5.1430e-01, -7.4709e-01],\n", " [ 1.0309e-01, 1.4890e-01, 2.3418e-01, 5.6161e-01, -4.5344e-01,\n", " -3.7399e-02, -2.9632e-01, -7.8586e-01, 4.6773e-01, 2.3163e-01,\n", " 1.4635e-01, -6.1039e-01, -4.2175e-01, 2.9848e-02, -2.7098e-01,\n", " 5.8869e-01, 3.3047e-01, 3.8213e-01, 5.6308e-01, -7.1158e-01,\n", " -4.7782e-01, -2.6972e-01, 3.1826e-01, 3.0689e-01, 2.0002e-01,\n", " -6.3196e-01, 6.7574e-01, 1.0718e-01, -3.5589e-01, -2.2234e-01,\n", " 6.5694e-01, -4.6705e-02, 4.4457e-01, 3.8695e-01, -4.0593e-01,\n", " -1.4013e-01, -7.6718e-01, 5.5516e-01, 1.2624e-01, -1.6417e-01,\n", " -2.5965e-01, -6.6241e-01, -5.8782e-01, 5.3524e-01, 1.1498e-01,\n", " 3.5718e-01, 2.6810e-02, 3.1688e-01, 5.0246e-01, 7.2960e-01,\n", " -1.6614e-01, 2.5272e-01, 1.4311e-01, -5.7957e-01, -2.1543e-01,\n", " 1.1138e-01, -6.8110e-01, 3.2205e-01, 5.9080e-01, 6.2253e-01,\n", " -1.1579e-01, -5.8518e-02, 5.1007e-01, -6.3510e-01]],\n", "\n", " [[-7.3295e-01, 8.9806e-01, 1.3076e-01, 3.5989e-01, -1.5338e-01,\n", " -7.3023e-01, -8.8205e-01, -7.8767e-01, 7.6649e-01, 2.6182e-01,\n", " -7.9418e-02, -7.0422e-01, -5.5216e-01, 9.3353e-01, -6.1393e-01,\n", " 1.6090e-01, -4.1725e-01, 9.4148e-01, 8.8216e-01, -1.2415e-01,\n", " -9.2694e-01, -2.1225e-01, 3.8735e-01, 3.5587e-01, -5.2650e-01,\n", " -5.9547e-01, 3.4167e-03, 6.6310e-01, -1.2849e-01, 2.4384e-01,\n", " 8.9664e-01, -5.5139e-01, 3.2991e-02, -1.9388e-01, -2.2145e-03,\n", " 1.8390e-01, -6.3102e-01, 6.6637e-01, 2.8547e-01, -2.0640e-01,\n", " 7.5508e-01, -9.5772e-01, -4.9472e-01, 1.9963e-01, -8.3145e-01,\n", " 2.6752e-01, -3.2867e-01, -8.0532e-02, 5.5949e-01, 8.5466e-01,\n", " -6.6808e-01, 7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\n", " 9.2077e-02, -9.4609e-01, 8.4297e-01, 6.4095e-01, 4.2260e-01,\n", " -8.5386e-01, 1.3420e-01, 4.6493e-01, -7.8761e-01],\n", " [-4.0157e-01, 7.7822e-01, 1.5185e-01, 4.5991e-01, -2.9712e-01,\n", " -6.5423e-01, -7.5150e-01, -8.0209e-01, 6.6695e-01, 2.9053e-01,\n", " -6.2758e-02, -7.0725e-01, -4.9634e-01, 7.8107e-01, -5.0621e-01,\n", " 3.7759e-01, -2.7325e-01, 8.8842e-01, 8.2682e-01, -3.1178e-01,\n", " -8.5566e-01, -2.9528e-01, 3.2213e-01, 3.4162e-01, -3.0355e-01,\n", " -5.9389e-01, 3.5483e-01, 4.5676e-01, -1.7409e-01, 2.1121e-01,\n", " 8.4332e-01, -3.1843e-01, 1.7427e-01, 3.4608e-02, -1.8790e-01,\n", " 5.4708e-02, -7.1884e-01, 6.1022e-01, 2.1457e-01, -1.4149e-01,\n", " 6.2510e-01, -9.3106e-01, -5.6068e-01, 3.8099e-01, -6.8192e-01,\n", " 3.3177e-01, -1.8218e-01, 6.8974e-02, 5.4749e-01, 8.4259e-01,\n", " -5.1681e-01, 7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\n", " 1.3590e-01, -9.1580e-01, 7.2868e-01, 6.2468e-01, 3.9947e-01,\n", " -7.5519e-01, 1.6911e-02, 4.8992e-01, -7.2295e-01]],\n", "\n", " [[-8.2138e-01, 9.1111e-01, 4.6997e-02, 2.4762e-01, -3.9914e-02,\n", " -7.1967e-01, -9.0576e-01, -7.9947e-01, 8.0798e-01, 2.3534e-01,\n", " -6.0936e-02, -7.4290e-01, -5.8363e-01, 9.5139e-01, -6.7749e-01,\n", " 2.1059e-02, -4.9246e-01, 9.4772e-01, 9.3094e-01, -3.5459e-02,\n", " -9.4027e-01, -2.4467e-01, 3.8255e-01, 3.4837e-01, -5.9900e-01,\n", " -5.5247e-01, -1.7942e-01, 7.5872e-01, -9.8738e-02, 2.1996e-01,\n", " 9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01, 1.3646e-01,\n", " 2.4945e-01, -5.7759e-01, 6.7082e-01, 3.2138e-01, -1.7692e-01,\n", " 7.5860e-01, -9.6094e-01, -4.4573e-01, 1.0738e-01, -8.5018e-01,\n", " 2.2871e-01, -3.3403e-01, -2.0607e-01, 5.8237e-01, 8.7589e-01,\n", " -7.6794e-01, 8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\n", " 1.1904e-01, -9.5598e-01, 8.7078e-01, 6.6721e-01, 4.1586e-01,\n", " -8.7196e-01, 1.8279e-01, 4.1627e-01, -8.1426e-01],\n", " [-6.7484e-01, 8.9251e-01, 7.1709e-02, 3.4437e-01, -1.6517e-01,\n", " -7.1140e-01, -8.6538e-01, -8.0934e-01, 7.5987e-01, 2.7822e-01,\n", " -8.6837e-02, -7.4919e-01, -5.5023e-01, 9.2409e-01, -6.1562e-01,\n", " 1.9981e-01, -4.5086e-01, 9.4142e-01, 9.1322e-01, -1.2868e-01,\n", " -9.2935e-01, -3.2165e-01, 3.2718e-01, 3.4869e-01, -5.0915e-01,\n", " -5.5380e-01, 7.4805e-02, 6.5267e-01, -1.2531e-01, 2.6391e-01,\n", " 8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\n", " 1.6423e-01, -6.5370e-01, 6.3765e-01, 2.7780e-01, -1.1735e-01,\n", " 7.5169e-01, -9.5978e-01, -5.0727e-01, 2.6838e-01, -8.2897e-01,\n", " 2.8772e-01, -2.4363e-01, -9.4374e-02, 5.7713e-01, 8.8612e-01,\n", " -6.9917e-01, 7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\n", " 1.5778e-01, -9.5314e-01, 8.3813e-01, 6.5658e-01, 4.0131e-01,\n", " -8.4993e-01, 1.4095e-01, 4.5086e-01, -7.6913e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([0, 0])\n", "dec_state: tensor([[[ 0.5478, 0.6270, -0.0932, 0.4703, 0.0328, -0.1668, 0.2340,\n", " -0.3174, -0.4669, -0.2234, 0.2033, 0.0077, 0.2677, 0.1675,\n", " -0.7389, -0.2441, -0.1039, -0.3020, -0.3949, 0.4979, 0.8299,\n", " -0.7973, -0.1002, 0.5007, 0.6212, -0.4585, -0.4878, -0.3107,\n", " -0.4607, -0.2419, -0.1300, 0.7893, 0.5032, 0.4747, -0.3833,\n", " -0.9098, -0.0015, -0.5015, 0.5474, 0.5057, -0.2355, 0.4147,\n", " 0.6655, -0.4008, -0.3051, 0.5390, -0.3308, 0.4527, -0.0093,\n", " 0.6430, 0.1048, 0.7166, 0.0091, -0.4479, 0.2652, 0.1014,\n", " 0.6158, 0.6818, 0.0787, 0.2217, -0.7580, 0.3303, -0.4461,\n", " -0.4775],\n", " [ 0.5641, 0.4468, -0.2217, 0.2935, -0.0475, -0.2278, 0.2848,\n", " -0.2083, -0.3541, 0.0114, 0.0918, 0.1467, 0.1959, 0.2161,\n", " -0.7512, -0.1897, -0.0375, -0.2088, -0.3218, 0.6184, 0.7965,\n", " -0.6085, -0.1108, 0.4626, 0.5579, -0.5350, -0.5031, -0.3744,\n", " -0.3694, -0.3259, -0.2194, 0.4649, 0.4536, 0.4685, -0.2880,\n", " -0.8278, 0.0381, -0.4658, 0.5720, 0.5992, 0.0186, 0.6226,\n", " 0.6956, -0.3731, -0.2936, 0.4435, -0.2504, 0.4154, -0.0456,\n", " 0.5983, 0.0992, 0.5799, -0.1942, -0.2805, 0.2118, 0.1730,\n", " 0.5788, 0.5082, 0.0737, 0.1005, -0.6963, 0.1312, -0.3543,\n", " -0.3981]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.1876e-02, 2.0449e-01, 1.2946e-01, 3.8957e-01, -2.8742e-01,\n", " 1.7324e-01, 4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\n", " 3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02, 3.8296e-01,\n", " -2.4677e-01, 5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\n", " -3.5863e-01, -7.6301e-02, 5.3976e-01, 1.8053e-01, -4.6039e-01,\n", " -4.0647e-01, -9.8147e-02, 5.4672e-01, -8.9772e-02, 4.0746e-02,\n", " 1.1188e-01, 4.1362e-01, -5.6949e-01, 5.2939e-01, 1.5917e-01,\n", " 9.9399e-02, -3.4445e-01, 6.2491e-01, -4.4808e-01, 2.7106e-01,\n", " -1.6560e-01, 2.6980e-01, -4.7111e-01, 7.4357e-03, 1.1016e-01,\n", " -2.3606e-01, -3.4845e-01, 1.5072e-01, -3.7065e-02, 3.1512e-01,\n", " 2.5581e-01, 3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\n", " -1.6842e-01, 2.2732e-02, 3.7792e-01, -1.1966e-01, 9.9072e-02,\n", " -3.9988e-01, 3.5676e-01, 4.3146e-01, -3.5387e-01],\n", " [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\n", " 7.9412e-02, 1.8133e-02, 1.2927e-01, -1.6136e-01, -1.5331e-01,\n", " -8.0777e-02, -1.3801e-01, -4.0392e-01, 3.0119e-01, 1.1731e-01,\n", " -5.5234e-01, 2.8495e-01, 1.8620e-01, -7.8735e-02, -5.5452e-01,\n", " -5.3230e-01, -4.6117e-02, 1.0367e-01, -1.2489e-01, -4.1837e-02,\n", " 3.4538e-02, -2.5756e-02, 1.7873e-01, 1.5026e-02, -1.0708e-01,\n", " -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\n", " -1.0795e-01, -1.9033e-01, 6.2986e-02, -8.8741e-02, -3.5847e-01,\n", " 1.6159e-01, 6.1150e-01, -3.3382e-02, 9.0885e-02, -5.4511e-01,\n", " -2.8689e-01, 3.4493e-01, -7.5644e-02, -6.3455e-03, 3.7202e-01,\n", " 1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\n", " 2.6133e-02, -3.4519e-01, 1.9728e-01, 5.4546e-02, -3.1128e-01,\n", " 3.1239e-01, 2.0924e-01, 2.3193e-01, -2.8919e-01]],\n", "\n", " [[-3.2365e-01, 1.3569e-01, 2.7882e-01, 5.3593e-01, -2.3814e-03,\n", " -4.0386e-02, -4.1100e-01, 3.4883e-02, -1.3455e-01, -3.0311e-01,\n", " 4.1851e-01, 1.5324e-01, -3.9539e-01, 3.2939e-01, 2.9012e-01,\n", " -2.2305e-01, 2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\n", " -5.6430e-01, 1.4938e-01, 5.3304e-01, 3.3561e-01, -5.6758e-01,\n", " -3.1424e-01, -7.4645e-02, 1.6243e-01, 1.7337e-01, -4.2843e-02,\n", " 1.9555e-01, -7.0186e-02, 4.5234e-02, -2.6768e-02, 6.7001e-02,\n", " 1.4401e-01, -5.8669e-01, 6.6726e-01, -9.7634e-02, -4.4069e-01,\n", " 1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01, 8.5537e-02,\n", " -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01, 3.5808e-01,\n", " 2.4732e-01, 3.4604e-01, 1.8691e-01, -5.2340e-01, -7.8705e-02,\n", " -3.5208e-01, -3.3275e-01, 3.2585e-01, -2.7377e-01, 4.6864e-01,\n", " -4.8893e-01, 4.7856e-02, 4.0918e-01, -3.2458e-01],\n", " [ 2.9272e-01, -2.2613e-01, -3.9943e-01, 7.3033e-01, -1.5350e-01,\n", " 6.4352e-02, 2.0583e-01, 4.9423e-01, 2.8296e-01, -3.0972e-01,\n", " -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01, 4.3754e-01,\n", " 1.9655e-02, 3.1482e-01, 3.4366e-01, 1.3772e-01, -4.9082e-01,\n", " -5.8955e-01, 5.5178e-02, 2.8124e-01, 2.5237e-01, 2.1010e-01,\n", " -1.4519e-01, -3.1231e-02, -4.5927e-02, 8.4576e-02, -2.2813e-01,\n", " -1.0999e-01, -4.7251e-02, 3.7033e-01, 3.2943e-01, -1.4418e-03,\n", " 9.7710e-02, -5.1259e-01, 8.1932e-01, 1.9363e-01, 2.2118e-01,\n", " 1.5377e-01, 5.8502e-01, 2.8674e-02, -1.4168e-01, -3.3884e-01,\n", " -1.3351e-01, 2.3175e-01, -5.4281e-01, 1.1601e-01, 6.1183e-01,\n", " -4.5140e-02, -2.5237e-01, 2.3752e-01, -5.1164e-01, -3.1370e-01,\n", " -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01, 4.5315e-01,\n", " -3.8700e-01, -3.3658e-01, 2.4828e-03, -1.1722e-01]],\n", "\n", " [[ 1.4517e-02, 5.1353e-01, 2.7537e-01, 3.2463e-01, -6.7576e-02,\n", " -2.0490e-01, -4.6915e-01, 1.5765e-01, 4.4066e-01, 2.8679e-01,\n", " 4.1518e-01, -4.7293e-01, -3.3223e-01, 9.0766e-02, 2.6712e-01,\n", " 1.4399e-01, 4.4340e-01, -4.1589e-01, 6.3286e-02, -6.5724e-01,\n", " -9.8731e-02, 1.4927e-01, 2.3330e-01, 3.4253e-01, -8.3711e-02,\n", " -4.2961e-02, -6.9909e-02, 9.9444e-02, 1.9790e-01, -1.3862e-01,\n", " 3.4126e-01, -4.7026e-01, -1.3669e-03, 3.1917e-01, 8.7192e-02,\n", " 1.7769e-01, -2.6164e-01, 5.8675e-01, -3.7114e-01, -4.1631e-01,\n", " -9.7841e-02, 2.1348e-01, -7.5500e-03, -1.8236e-02, 1.9261e-03,\n", " 1.4379e-01, -6.9110e-02, 9.1750e-02, 1.8012e-01, 3.5871e-01,\n", " 1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\n", " -3.6182e-01, -3.7487e-01, 2.4039e-01, -4.6122e-01, 6.9476e-01,\n", " -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\n", " [ 5.1123e-01, -4.0266e-01, -2.9377e-01, 4.1843e-01, -2.3979e-01,\n", " 2.6047e-02, 2.0101e-01, -1.8941e-01, 1.0405e-02, -1.2233e-01,\n", " 7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01, 3.8687e-01,\n", " -7.9252e-04, -9.5511e-02, 2.9611e-01, 1.8304e-01, -6.1154e-01,\n", " -6.3995e-01, -6.1087e-02, 2.2301e-01, 2.3835e-01, -9.4064e-03,\n", " -3.1463e-02, 5.0872e-01, 5.2994e-02, 1.4707e-01, -1.3801e-01,\n", " 1.6804e-01, 2.6023e-01, -1.6039e-03, 3.9684e-01, -8.6695e-02,\n", " -1.2471e-01, -6.2766e-01, 5.4049e-01, -8.3060e-02, -9.4193e-02,\n", " 2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\n", " 1.0937e-01, 2.8545e-01, -5.2316e-01, -1.7083e-01, 5.1631e-01,\n", " -2.0713e-01, 1.1943e-02, 1.9117e-01, -9.0481e-02, -1.7545e-01,\n", " 1.4447e-01, -6.1310e-01, 2.4947e-01, -3.2512e-01, -1.1674e-01,\n", " -1.5464e-01, 8.5949e-02, 1.9173e-01, -1.8634e-01]],\n", "\n", " [[-1.4599e-01, 3.4493e-01, 3.5540e-01, 5.9247e-01, -4.1207e-01,\n", " -1.6579e-01, -4.8020e-01, -7.3714e-01, 4.8738e-01, 2.0807e-01,\n", " 3.0116e-01, -4.4130e-01, -4.2788e-01, 2.6977e-01, -2.3329e-01,\n", " 5.3776e-01, 4.9697e-01, 2.9906e-01, 2.7902e-01, -6.9022e-01,\n", " -4.0519e-01, -1.4059e-01, 4.0009e-01, 3.3875e-01, 3.8020e-02,\n", " -6.8647e-01, 5.3905e-01, 1.5797e-01, -3.5341e-01, -2.1889e-01,\n", " 6.5958e-01, -1.9601e-01, 5.0115e-01, 2.6124e-01, -3.4608e-01,\n", " -8.9277e-02, -7.4167e-01, 6.1062e-01, 1.4346e-01, -2.8655e-01,\n", " -2.5671e-01, -5.9121e-01, -5.0235e-01, 4.6546e-01, 1.5253e-01,\n", " 3.3492e-01, -1.8718e-01, 3.2432e-01, 4.7797e-01, 6.2427e-01,\n", " 1.1437e-02, 3.0348e-01, 1.3757e-01, -7.2873e-01, -2.9603e-01,\n", " 1.8765e-02, -5.9862e-01, 3.6728e-01, 5.7481e-01, 7.0923e-01,\n", " -2.4748e-01, -9.4674e-02, 5.3589e-01, -6.6785e-01],\n", " [ 3.1676e-01, 2.6778e-01, 6.5309e-02, 2.8887e-01, -1.7269e-01,\n", " -4.3300e-02, -1.5170e-01, 4.5494e-03, 4.3829e-01, 3.1757e-01,\n", " 1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01, 2.1333e-01,\n", " 2.4054e-01, 2.3956e-01, -2.2792e-02, 4.7846e-01, -6.9334e-01,\n", " -2.4033e-01, -3.7174e-02, 2.3895e-02, 2.7962e-01, 2.3990e-01,\n", " 1.0133e-01, 3.8711e-01, 8.3111e-03, 1.7434e-01, -1.9475e-01,\n", " 3.4768e-01, -2.9952e-01, -8.9722e-02, 4.9720e-01, 6.0897e-02,\n", " 4.2339e-02, -2.8452e-01, 5.0351e-01, -3.4962e-01, -2.3853e-01,\n", " -8.4488e-02, 7.0700e-02, -1.5170e-01, 1.3667e-01, -4.8259e-02,\n", " 2.4410e-01, 3.2302e-01, -4.5496e-02, 2.0975e-01, 5.4169e-01,\n", " -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\n", " -2.2768e-01, -5.6263e-01, 1.5331e-01, -4.4642e-01, 5.5733e-01,\n", " -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\n", "\n", " [[-5.3190e-01, 8.1577e-01, 2.3800e-01, 4.8075e-01, -2.7762e-01,\n", " -7.0727e-01, -8.0229e-01, -7.6923e-01, 6.7816e-01, 2.7397e-01,\n", " -1.8307e-02, -6.1159e-01, -5.0091e-01, 8.3182e-01, -4.9736e-01,\n", " 3.3217e-01, -2.1184e-01, 8.8089e-01, 7.3042e-01, -3.0091e-01,\n", " -8.4643e-01, -1.7723e-01, 3.9327e-01, 3.5607e-01, -3.6149e-01,\n", " -6.4001e-01, 2.5142e-01, 4.7756e-01, -1.8219e-01, 1.9411e-01,\n", " 8.4554e-01, -4.0670e-01, 2.2843e-01, -2.8213e-02, -1.6706e-01,\n", " 8.4338e-02, -6.9243e-01, 6.5162e-01, 2.2620e-01, -2.4377e-01,\n", " 6.3091e-01, -9.2143e-01, -5.2339e-01, 3.0346e-01, -6.8120e-01,\n", " 3.0847e-01, -3.0962e-01, 8.6166e-02, 5.2663e-01, 7.8582e-01,\n", " -4.4179e-01, 7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\n", " 5.9648e-02, -8.9259e-01, 7.4582e-01, 6.0832e-01, 4.5425e-01,\n", " -7.7402e-01, 7.1262e-03, 5.1430e-01, -7.4709e-01],\n", " [ 1.0309e-01, 1.4890e-01, 2.3418e-01, 5.6161e-01, -4.5344e-01,\n", " -3.7399e-02, -2.9632e-01, -7.8586e-01, 4.6773e-01, 2.3163e-01,\n", " 1.4635e-01, -6.1039e-01, -4.2175e-01, 2.9848e-02, -2.7098e-01,\n", " 5.8869e-01, 3.3047e-01, 3.8213e-01, 5.6308e-01, -7.1158e-01,\n", " -4.7782e-01, -2.6972e-01, 3.1826e-01, 3.0689e-01, 2.0002e-01,\n", " -6.3196e-01, 6.7574e-01, 1.0718e-01, -3.5589e-01, -2.2234e-01,\n", " 6.5694e-01, -4.6705e-02, 4.4457e-01, 3.8695e-01, -4.0593e-01,\n", " -1.4013e-01, -7.6718e-01, 5.5516e-01, 1.2624e-01, -1.6417e-01,\n", " -2.5965e-01, -6.6241e-01, -5.8782e-01, 5.3524e-01, 1.1498e-01,\n", " 3.5718e-01, 2.6810e-02, 3.1688e-01, 5.0246e-01, 7.2960e-01,\n", " -1.6614e-01, 2.5272e-01, 1.4311e-01, -5.7957e-01, -2.1543e-01,\n", " 1.1138e-01, -6.8110e-01, 3.2205e-01, 5.9080e-01, 6.2253e-01,\n", " -1.1579e-01, -5.8518e-02, 5.1007e-01, -6.3510e-01]],\n", "\n", " [[-7.3295e-01, 8.9806e-01, 1.3076e-01, 3.5989e-01, -1.5338e-01,\n", " -7.3023e-01, -8.8205e-01, -7.8767e-01, 7.6649e-01, 2.6182e-01,\n", " -7.9418e-02, -7.0422e-01, -5.5216e-01, 9.3353e-01, -6.1393e-01,\n", " 1.6090e-01, -4.1725e-01, 9.4148e-01, 8.8216e-01, -1.2415e-01,\n", " -9.2694e-01, -2.1225e-01, 3.8735e-01, 3.5587e-01, -5.2650e-01,\n", " -5.9547e-01, 3.4167e-03, 6.6310e-01, -1.2849e-01, 2.4384e-01,\n", " 8.9664e-01, -5.5139e-01, 3.2991e-02, -1.9388e-01, -2.2145e-03,\n", " 1.8390e-01, -6.3102e-01, 6.6637e-01, 2.8547e-01, -2.0640e-01,\n", " 7.5508e-01, -9.5772e-01, -4.9472e-01, 1.9963e-01, -8.3145e-01,\n", " 2.6752e-01, -3.2867e-01, -8.0532e-02, 5.5949e-01, 8.5466e-01,\n", " -6.6808e-01, 7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\n", " 9.2077e-02, -9.4609e-01, 8.4297e-01, 6.4095e-01, 4.2260e-01,\n", " -8.5386e-01, 1.3420e-01, 4.6493e-01, -7.8761e-01],\n", " [-4.0157e-01, 7.7822e-01, 1.5185e-01, 4.5991e-01, -2.9712e-01,\n", " -6.5423e-01, -7.5150e-01, -8.0209e-01, 6.6695e-01, 2.9053e-01,\n", " -6.2758e-02, -7.0725e-01, -4.9634e-01, 7.8107e-01, -5.0621e-01,\n", " 3.7759e-01, -2.7325e-01, 8.8842e-01, 8.2682e-01, -3.1178e-01,\n", " -8.5566e-01, -2.9528e-01, 3.2213e-01, 3.4162e-01, -3.0355e-01,\n", " -5.9389e-01, 3.5483e-01, 4.5676e-01, -1.7409e-01, 2.1121e-01,\n", " 8.4332e-01, -3.1843e-01, 1.7427e-01, 3.4608e-02, -1.8790e-01,\n", " 5.4708e-02, -7.1884e-01, 6.1022e-01, 2.1457e-01, -1.4149e-01,\n", " 6.2510e-01, -9.3106e-01, -5.6068e-01, 3.8099e-01, -6.8192e-01,\n", " 3.3177e-01, -1.8218e-01, 6.8974e-02, 5.4749e-01, 8.4259e-01,\n", " -5.1681e-01, 7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\n", " 1.3590e-01, -9.1580e-01, 7.2868e-01, 6.2468e-01, 3.9947e-01,\n", " -7.5519e-01, 1.6911e-02, 4.8992e-01, -7.2295e-01]],\n", "\n", " [[-8.2138e-01, 9.1111e-01, 4.6997e-02, 2.4762e-01, -3.9914e-02,\n", " -7.1967e-01, -9.0576e-01, -7.9947e-01, 8.0798e-01, 2.3534e-01,\n", " -6.0936e-02, -7.4290e-01, -5.8363e-01, 9.5139e-01, -6.7749e-01,\n", " 2.1059e-02, -4.9246e-01, 9.4772e-01, 9.3094e-01, -3.5459e-02,\n", " -9.4027e-01, -2.4467e-01, 3.8255e-01, 3.4837e-01, -5.9900e-01,\n", " -5.5247e-01, -1.7942e-01, 7.5872e-01, -9.8738e-02, 2.1996e-01,\n", " 9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01, 1.3646e-01,\n", " 2.4945e-01, -5.7759e-01, 6.7082e-01, 3.2138e-01, -1.7692e-01,\n", " 7.5860e-01, -9.6094e-01, -4.4573e-01, 1.0738e-01, -8.5018e-01,\n", " 2.2871e-01, -3.3403e-01, -2.0607e-01, 5.8237e-01, 8.7589e-01,\n", " -7.6794e-01, 8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\n", " 1.1904e-01, -9.5598e-01, 8.7078e-01, 6.6721e-01, 4.1586e-01,\n", " -8.7196e-01, 1.8279e-01, 4.1627e-01, -8.1426e-01],\n", " [-6.7484e-01, 8.9251e-01, 7.1709e-02, 3.4437e-01, -1.6517e-01,\n", " -7.1140e-01, -8.6538e-01, -8.0934e-01, 7.5987e-01, 2.7822e-01,\n", " -8.6837e-02, -7.4919e-01, -5.5023e-01, 9.2409e-01, -6.1562e-01,\n", " 1.9981e-01, -4.5086e-01, 9.4142e-01, 9.1322e-01, -1.2868e-01,\n", " -9.2935e-01, -3.2165e-01, 3.2718e-01, 3.4869e-01, -5.0915e-01,\n", " -5.5380e-01, 7.4805e-02, 6.5267e-01, -1.2531e-01, 2.6391e-01,\n", " 8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\n", " 1.6423e-01, -6.5370e-01, 6.3765e-01, 2.7780e-01, -1.1735e-01,\n", " 7.5169e-01, -9.5978e-01, -5.0727e-01, 2.6838e-01, -8.2897e-01,\n", " 2.8772e-01, -2.4363e-01, -9.4374e-02, 5.7713e-01, 8.8612e-01,\n", " -6.9917e-01, 7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\n", " 1.5778e-01, -9.5314e-01, 8.3813e-01, 6.5658e-01, 4.0131e-01,\n", " -8.4993e-01, 1.4095e-01, 4.5086e-01, -7.6913e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "tensor([[ 5, 4, 33, 3, 2, 0, 0],\n", " [ 6, 7, 14, 3, 2, 0, 0]])\n", "tensor([[ 8, 4, 25, 3, 2, 0, 0],\n", " [ 7, 5, 14, 3, 2, 0, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-4.3670e-01, 9.4777e-01, -1.7385e-01, 4.9579e-01, -6.9504e-01,\n", " -5.9010e-01, -9.2350e-01, -8.6755e-01, 8.9859e-01, -1.8200e-01,\n", " 3.3999e-02, -8.5976e-01, -3.9412e-01, 9.6261e-01, -3.7107e-01,\n", " 5.0054e-01, 6.1789e-02, 9.6358e-01, 8.6419e-01, 9.0620e-01,\n", " -5.8370e-01, -5.3013e-01, 3.7285e-01, 7.0841e-01, 3.8898e-01,\n", " -6.7260e-01, -1.5048e-01, 1.6080e-01, -5.2752e-01, -2.0620e-02,\n", " 1.9427e-01, -1.2924e-02, 9.0134e-01, 3.3173e-01, -4.3776e-02,\n", " 3.6167e-01, 5.4622e-01, 5.8385e-01, 4.2448e-02, -5.1339e-01,\n", " 3.5934e-01, -9.5561e-01, 8.9173e-02, 2.7137e-02, -9.2118e-01,\n", " 6.1585e-01, -5.3514e-01, -6.8271e-01, 7.9391e-01, 9.3076e-01,\n", " -6.0840e-01, 9.6516e-01, -9.0046e-01, -3.4634e-01, -4.8159e-01,\n", " 2.1147e-01, -8.6776e-01, 8.8884e-01, 7.4880e-01, 3.0338e-02,\n", " -9.3489e-01, 7.8679e-01, 5.7054e-01, -8.7889e-01],\n", " [-4.4147e-01, 9.5890e-01, -1.5506e-01, 4.3114e-01, -7.2710e-01,\n", " -5.4329e-01, -9.1955e-01, -8.3869e-01, 9.0667e-01, -2.3850e-01,\n", " 1.0897e-03, -8.6243e-01, -3.2419e-01, 9.6832e-01, -3.7585e-01,\n", " 5.0837e-01, -4.8584e-02, 9.6061e-01, 8.2564e-01, 9.1615e-01,\n", " -6.6934e-01, -6.0196e-01, 4.3660e-01, 7.3187e-01, 3.2358e-01,\n", " -7.2452e-01, -4.9672e-02, 2.3647e-01, -5.0548e-01, 1.0444e-01,\n", " 8.8377e-02, 5.1788e-02, 8.8942e-01, 3.7130e-01, 6.9498e-04,\n", " 3.4704e-01, 5.2117e-01, 5.2036e-01, 4.2114e-02, -5.6441e-01,\n", " 4.6022e-01, -9.6157e-01, 4.5270e-02, 7.5107e-02, -9.3466e-01,\n", " 7.0916e-01, -5.9698e-01, -6.2150e-01, 8.7624e-01, 9.4506e-01,\n", " -6.6110e-01, 9.7474e-01, -8.9976e-01, -4.1362e-01, -4.6884e-01,\n", " 3.5543e-01, -8.6955e-01, 9.0149e-01, 7.2950e-01, 3.7875e-01,\n", " -9.2645e-01, 7.9640e-01, 5.8495e-01, -9.1000e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2890, 0.1556, -0.2685, 0.0012, -0.0716, 0.0172, -0.1474,\n", " 0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724, 0.3325,\n", " 0.1116, -0.5082, 0.3477, 0.2603, 0.0068, -0.6025, -0.5775,\n", " -0.0787, 0.1094, -0.0924, 0.0407, 0.0145, 0.0717, 0.2579,\n", " -0.0661, -0.1149, 0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\n", " -0.1044, -0.1947, 0.1145, -0.0769, -0.3539, 0.1510, 0.6411,\n", " -0.0553, 0.0845, -0.6039, -0.3417, 0.3798, -0.1020, 0.0173,\n", " 0.3886, 0.1477, -0.3305, -0.2986, -0.4481, -0.4462, 0.1228,\n", " -0.3850, 0.1912, 0.0674, -0.2659, 0.2090, 0.1939, 0.2671,\n", " -0.3651],\n", " [-0.0710, 0.3148, 0.1467, 0.3958, -0.3162, 0.1582, 0.0101,\n", " -0.0057, -0.0248, -0.2350, 0.3197, -0.1170, -0.5608, -0.0145,\n", " 0.3787, -0.2327, 0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\n", " -0.2015, 0.5406, 0.2518, -0.4450, -0.4262, -0.0457, 0.5708,\n", " -0.1106, 0.0239, 0.1353, 0.4127, -0.5620, 0.5556, 0.1576,\n", " 0.0743, -0.3683, 0.6607, -0.4821, 0.2784, -0.1441, 0.2792,\n", " -0.5013, -0.0068, 0.0980, -0.2505, -0.3301, 0.1433, -0.0295,\n", " 0.3410, 0.2697, 0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\n", " 0.0209, 0.3723, -0.1770, 0.1575, -0.4842, 0.3186, 0.4981,\n", " -0.3869]],\n", "\n", " [[ 0.2805, -0.0565, -0.5347, 0.7814, -0.1960, -0.1144, 0.0224,\n", " 0.5690, 0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\n", " 0.4451, 0.1339, 0.4140, 0.4275, 0.2901, -0.5719, -0.6537,\n", " 0.0535, 0.3236, 0.4697, 0.2989, -0.2088, 0.1031, 0.0537,\n", " -0.0234, -0.2308, 0.0661, -0.0290, 0.5174, 0.2255, -0.0898,\n", " 0.0559, -0.5531, 0.8694, 0.2726, 0.3303, 0.0954, 0.6133,\n", " -0.0627, -0.2125, -0.4030, -0.3193, 0.2573, -0.6037, 0.1702,\n", " 0.6712, 0.0243, -0.0894, 0.1717, -0.6346, -0.4322, -0.1709,\n", " -0.2448, -0.0380, -0.2380, 0.5061, -0.5416, -0.4742, 0.0817,\n", " -0.2495],\n", " [-0.2146, 0.3102, 0.3063, 0.3200, -0.6042, -0.6355, 0.0326,\n", " 0.1614, -0.1538, -0.6354, 0.2530, -0.2854, -0.6507, -0.2132,\n", " 0.0245, 0.0711, 0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\n", " -0.2030, 0.5062, 0.7766, -0.2168, -0.6735, 0.7655, 0.4879,\n", " 0.4480, 0.3375, 0.1140, 0.6309, -0.3277, 0.8274, -0.4674,\n", " 0.1451, -0.2880, 0.6146, -0.5080, -0.0806, 0.4445, -0.4506,\n", " -0.7093, 0.2397, 0.1345, -0.2954, -0.3532, 0.0559, 0.0268,\n", " 0.1805, 0.3976, 0.5215, -0.2548, -0.6891, -0.3597, 0.7438,\n", " 0.2640, -0.0562, -0.6029, -0.1483, -0.6813, 0.0196, 0.5351,\n", " -0.0903]],\n", "\n", " [[-0.2415, 0.7097, 0.0926, 0.6104, -0.2053, 0.0463, -0.2585,\n", " 0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\n", " 0.4182, -0.0776, 0.0449, 0.0138, 0.1784, -0.5369, 0.0192,\n", " -0.2766, -0.2416, 0.3454, 0.4599, 0.2200, -0.0211, 0.2726,\n", " -0.1927, 0.0486, 0.1538, -0.1676, 0.2175, -0.2153, 0.1954,\n", " -0.5780, -0.2447, 0.5633, 0.2046, 0.0098, 0.1590, 0.6091,\n", " 0.2573, -0.0760, 0.0456, -0.0988, 0.1492, -0.1859, -0.0842,\n", " 0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\n", " 0.3826, 0.0546, -0.1723, 0.4627, -0.1276, -0.2957, -0.1364,\n", " -0.5385],\n", " [-0.2605, 0.3742, 0.3780, 0.3882, -0.4157, -0.1474, -0.3459,\n", " -0.1452, 0.2388, -0.1367, -0.2496, -0.0807, -0.5850, 0.3555,\n", " 0.1489, 0.2841, 0.3549, -0.0793, 0.2325, -0.4568, -0.4790,\n", " -0.4872, 0.6107, 0.4140, -0.2444, -0.6675, 0.2835, 0.7947,\n", " 0.1005, 0.4331, 0.2850, 0.3347, -0.2289, 0.5438, -0.5147,\n", " -0.3536, -0.2994, 0.5414, 0.2631, -0.1074, 0.5495, -0.6653,\n", " -0.5549, 0.1603, 0.0260, -0.1220, -0.3569, 0.2244, 0.4713,\n", " 0.0967, -0.2427, 0.5279, -0.4483, -0.8291, -0.1444, 0.7616,\n", " -0.1760, 0.5977, -0.0726, -0.2546, -0.8026, -0.1861, 0.8048,\n", " -0.8177]],\n", "\n", " [[ 0.0101, 0.7368, 0.1353, 0.3623, -0.1673, -0.1695, -0.4292,\n", " 0.3395, 0.4179, 0.2769, 0.0541, -0.6404, -0.2328, -0.2319,\n", " 0.3876, 0.3352, 0.4574, -0.0993, 0.5880, -0.7071, 0.2521,\n", " -0.2288, -0.1628, 0.3605, 0.6020, 0.2196, -0.0099, 0.2126,\n", " -0.1068, -0.0631, 0.4057, -0.4593, 0.0754, 0.1717, 0.1265,\n", " -0.2682, -0.0946, 0.5886, -0.2587, -0.1557, -0.1058, 0.6473,\n", " 0.2292, 0.1324, -0.1269, 0.0728, 0.2484, -0.0247, 0.2468,\n", " 0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\n", " -0.2293, 0.0728, -0.3530, 0.7944, -0.2957, -0.5119, -0.4419,\n", " -0.3717],\n", " [ 0.0113, 0.7009, 0.3669, 0.2339, -0.2667, -0.1856, -0.5395,\n", " 0.1107, 0.5073, 0.2647, -0.0704, -0.6602, -0.5361, 0.2408,\n", " 0.2817, 0.3950, 0.5680, -0.2055, 0.5550, -0.6901, -0.1959,\n", " -0.4332, 0.2280, 0.4189, 0.2258, -0.4593, 0.2202, 0.5288,\n", " 0.0738, 0.2705, 0.4425, -0.4310, -0.2240, 0.4527, -0.2092,\n", " -0.0978, -0.1509, 0.5826, -0.2875, -0.2302, 0.1348, -0.2252,\n", " -0.3774, 0.2723, -0.1784, 0.1374, -0.2052, 0.2458, 0.6483,\n", " 0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659, 0.2802,\n", " -0.4677, 0.4884, -0.2397, 0.6836, -0.7437, -0.4434, 0.2398,\n", " -0.6909]],\n", "\n", " [[-0.1499, 0.5642, 0.2436, 0.6794, -0.5401, -0.1918, -0.4804,\n", " -0.7993, 0.5079, 0.1944, 0.1235, -0.6337, -0.3838, 0.1651,\n", " -0.0226, 0.7056, 0.5073, 0.4846, 0.7075, -0.7249, -0.5029,\n", " -0.3810, 0.2479, 0.3878, 0.3729, -0.7414, 0.6079, 0.2253,\n", " -0.5409, -0.1647, 0.7346, -0.2070, 0.5766, 0.1296, -0.4318,\n", " -0.1783, -0.7637, 0.6630, 0.2749, -0.0853, -0.2496, -0.5892,\n", " -0.4976, 0.5714, 0.0305, 0.2431, -0.0632, 0.2296, 0.5531,\n", " 0.7012, -0.2193, 0.3598, -0.0862, -0.7312, -0.3638, 0.1418,\n", " -0.6391, 0.3536, 0.7525, 0.7845, -0.1925, -0.2130, 0.6129,\n", " -0.8210],\n", " [-0.1430, 0.4985, 0.4111, 0.5815, -0.5709, -0.1385, -0.5552,\n", " -0.6759, 0.5509, 0.1574, 0.0644, -0.6438, -0.5627, 0.4289,\n", " -0.0483, 0.6774, 0.5765, 0.4106, 0.6559, -0.7302, -0.6284,\n", " -0.4817, 0.4068, 0.4327, 0.1650, -0.8455, 0.6862, 0.4201,\n", " -0.4453, 0.0642, 0.7283, -0.1803, 0.4315, 0.2034, -0.5437,\n", " -0.1295, -0.7425, 0.6695, 0.2883, -0.1398, -0.0725, -0.7465,\n", " -0.7075, 0.5969, 0.0220, 0.3139, -0.2831, 0.3638, 0.7920,\n", " 0.7428, -0.2189, 0.4677, -0.2263, -0.8023, -0.3903, 0.4736,\n", " -0.7263, 0.5289, 0.7474, 0.7225, -0.5192, -0.0853, 0.7310,\n", " -0.8602]],\n", "\n", " [[-0.4815, 0.9126, 0.1738, 0.5568, -0.4262, -0.7068, -0.8695,\n", " -0.8301, 0.7604, 0.2362, -0.1668, -0.7793, -0.5133, 0.8693,\n", " -0.2823, 0.5911, -0.0471, 0.9338, 0.9188, -0.4554, -0.9207,\n", " -0.4080, 0.2725, 0.4755, -0.1294, -0.7142, 0.3658, 0.4429,\n", " -0.4493, 0.1301, 0.8900, -0.3870, 0.3769, -0.2069, -0.1930,\n", " 0.1234, -0.7184, 0.7192, 0.3644, -0.1044, 0.7195, -0.9342,\n", " -0.5897, 0.3508, -0.8337, 0.2371, -0.2133, -0.1291, 0.6067,\n", " 0.8579, -0.5941, 0.7763, -0.7359, -0.8590, -0.3807, 0.1878,\n", " -0.9442, 0.7712, 0.7813, 0.6701, -0.8621, 0.3011, 0.6963,\n", " -0.8734],\n", " [-0.4735, 0.9112, 0.3157, 0.4688, -0.4490, -0.6760, -0.8831,\n", " -0.7476, 0.7855, 0.2046, -0.1825, -0.7881, -0.6302, 0.9075,\n", " -0.2902, 0.5753, 0.0178, 0.9260, 0.9011, -0.4670, -0.9303,\n", " -0.4978, 0.4121, 0.5032, -0.2101, -0.8159, 0.4151, 0.5686,\n", " -0.3979, 0.2328, 0.8864, -0.3879, 0.2711, -0.1999, -0.2824,\n", " 0.1645, -0.7031, 0.7292, 0.3743, -0.1499, 0.7552, -0.9468,\n", " -0.7001, 0.3675, -0.8345, 0.2998, -0.3379, -0.0426, 0.8084,\n", " 0.8870, -0.5983, 0.7973, -0.7773, -0.8863, -0.4013, 0.4691,\n", " -0.9512, 0.8066, 0.7752, 0.6545, -0.9121, 0.3427, 0.7675,\n", " -0.8953]],\n", "\n", " [[-0.6765, 0.9525, 0.1030, 0.4227, -0.3215, -0.7217, -0.9419,\n", " -0.8446, 0.8546, 0.2388, -0.2342, -0.8509, -0.6089, 0.9639,\n", " -0.4239, 0.4967, -0.2184, 0.9636, 0.9689, -0.3183, -0.9730,\n", " -0.4344, 0.2963, 0.5202, -0.3317, -0.6881, 0.1724, 0.5905,\n", " -0.4398, 0.1902, 0.9251, -0.5308, 0.2235, -0.3505, 0.0103,\n", " 0.2907, -0.6651, 0.7546, 0.4169, -0.1121, 0.8568, -0.9631,\n", " -0.5948, 0.1809, -0.9420, 0.2237, -0.2563, -0.3533, 0.6473,\n", " 0.9275, -0.7550, 0.8779, -0.9219, -0.8924, -0.3938, 0.2219,\n", " -0.9732, 0.8776, 0.8041, 0.6842, -0.9517, 0.4709, 0.7102,\n", " -0.9001],\n", " [-0.6757, 0.9530, 0.2174, 0.3443, -0.3374, -0.7043, -0.9467,\n", " -0.7903, 0.8670, 0.2115, -0.2482, -0.8579, -0.6793, 0.9696,\n", " -0.4243, 0.4866, -0.1757, 0.9624, 0.9640, -0.3296, -0.9740,\n", " -0.5149, 0.4178, 0.5340, -0.3605, -0.7855, 0.2042, 0.6710,\n", " -0.4170, 0.2421, 0.9241, -0.5300, 0.1449, -0.3548, -0.0612,\n", " 0.3213, -0.6540, 0.7647, 0.4227, -0.1528, 0.8663, -0.9637,\n", " -0.6518, 0.1862, -0.9404, 0.2761, -0.3477, -0.3001, 0.8170,\n", " 0.9398, -0.7614, 0.8840, -0.9329, -0.9017, -0.4097, 0.4649,\n", " -0.9736, 0.8814, 0.7989, 0.6698, -0.9634, 0.4825, 0.7578,\n", " -0.9150]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([8, 7])\n", "dec_state: tensor([[[-0.3375, 0.5665, -0.1433, 0.5329, -0.4554, -0.2751, -0.8289,\n", " -0.7521, 0.6565, -0.6075, -0.4157, -0.4379, -0.2471, 0.9372,\n", " -0.2907, 0.1801, 0.3554, 0.7907, 0.5051, 0.8094, 0.3714,\n", " -0.4722, 0.0097, 0.7927, 0.4571, -0.7646, 0.6370, 0.3720,\n", " -0.7770, 0.4116, 0.1079, 0.0643, 0.8859, 0.5114, -0.5547,\n", " -0.2622, 0.6345, 0.5843, -0.0082, 0.1076, -0.3089, -0.4516,\n", " 0.0729, -0.0102, -0.6752, 0.4295, -0.5219, -0.4375, 0.5231,\n", " 0.8968, 0.2725, 0.9456, -0.9242, 0.3015, -0.4931, 0.1808,\n", " -0.6580, 0.4520, 0.6472, -0.7273, -0.8115, 0.6945, 0.3942,\n", " -0.4917],\n", " [-0.4663, 0.9622, -0.4438, 0.8144, -0.2453, -0.5469, -0.8319,\n", " -0.7853, 0.2960, -0.4449, -0.0732, -0.9767, 0.0172, 0.9705,\n", " -0.5082, 0.3742, 0.8233, 0.5850, -0.7617, 0.8914, 0.4490,\n", " -0.8944, -0.6429, 0.9095, -0.1752, -0.6350, 0.1890, -0.6082,\n", " -0.7683, -0.8908, -0.5094, 0.4696, 0.7839, 0.3915, -0.6233,\n", " 0.7855, -0.8309, -0.6009, 0.8978, 0.4729, 0.6577, -0.6154,\n", " 0.1481, 0.6972, -0.8542, -0.6398, -0.4737, -0.3118, 0.8691,\n", " 0.9563, 0.4222, 0.9727, 0.0492, -0.7655, -0.9177, -0.4357,\n", " -0.7375, 0.9412, 0.0720, -0.8721, -0.8480, 0.9158, -0.2819,\n", " 0.7720]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2890, 0.1556, -0.2685, 0.0012, -0.0716, 0.0172, -0.1474,\n", " 0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724, 0.3325,\n", " 0.1116, -0.5082, 0.3477, 0.2603, 0.0068, -0.6025, -0.5775,\n", " -0.0787, 0.1094, -0.0924, 0.0407, 0.0145, 0.0717, 0.2579,\n", " -0.0661, -0.1149, 0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\n", " -0.1044, -0.1947, 0.1145, -0.0769, -0.3539, 0.1510, 0.6411,\n", " -0.0553, 0.0845, -0.6039, -0.3417, 0.3798, -0.1020, 0.0173,\n", " 0.3886, 0.1477, -0.3305, -0.2986, -0.4481, -0.4462, 0.1228,\n", " -0.3850, 0.1912, 0.0674, -0.2659, 0.2090, 0.1939, 0.2671,\n", " -0.3651],\n", " [-0.0710, 0.3148, 0.1467, 0.3958, -0.3162, 0.1582, 0.0101,\n", " -0.0057, -0.0248, -0.2350, 0.3197, -0.1170, -0.5608, -0.0145,\n", " 0.3787, -0.2327, 0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\n", " -0.2015, 0.5406, 0.2518, -0.4450, -0.4262, -0.0457, 0.5708,\n", " -0.1106, 0.0239, 0.1353, 0.4127, -0.5620, 0.5556, 0.1576,\n", " 0.0743, -0.3683, 0.6607, -0.4821, 0.2784, -0.1441, 0.2792,\n", " -0.5013, -0.0068, 0.0980, -0.2505, -0.3301, 0.1433, -0.0295,\n", " 0.3410, 0.2697, 0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\n", " 0.0209, 0.3723, -0.1770, 0.1575, -0.4842, 0.3186, 0.4981,\n", " -0.3869]],\n", "\n", " [[ 0.2805, -0.0565, -0.5347, 0.7814, -0.1960, -0.1144, 0.0224,\n", " 0.5690, 0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\n", " 0.4451, 0.1339, 0.4140, 0.4275, 0.2901, -0.5719, -0.6537,\n", " 0.0535, 0.3236, 0.4697, 0.2989, -0.2088, 0.1031, 0.0537,\n", " -0.0234, -0.2308, 0.0661, -0.0290, 0.5174, 0.2255, -0.0898,\n", " 0.0559, -0.5531, 0.8694, 0.2726, 0.3303, 0.0954, 0.6133,\n", " -0.0627, -0.2125, -0.4030, -0.3193, 0.2573, -0.6037, 0.1702,\n", " 0.6712, 0.0243, -0.0894, 0.1717, -0.6346, -0.4322, -0.1709,\n", " -0.2448, -0.0380, -0.2380, 0.5061, -0.5416, -0.4742, 0.0817,\n", " -0.2495],\n", " [-0.2146, 0.3102, 0.3063, 0.3200, -0.6042, -0.6355, 0.0326,\n", " 0.1614, -0.1538, -0.6354, 0.2530, -0.2854, -0.6507, -0.2132,\n", " 0.0245, 0.0711, 0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\n", " -0.2030, 0.5062, 0.7766, -0.2168, -0.6735, 0.7655, 0.4879,\n", " 0.4480, 0.3375, 0.1140, 0.6309, -0.3277, 0.8274, -0.4674,\n", " 0.1451, -0.2880, 0.6146, -0.5080, -0.0806, 0.4445, -0.4506,\n", " -0.7093, 0.2397, 0.1345, -0.2954, -0.3532, 0.0559, 0.0268,\n", " 0.1805, 0.3976, 0.5215, -0.2548, -0.6891, -0.3597, 0.7438,\n", " 0.2640, -0.0562, -0.6029, -0.1483, -0.6813, 0.0196, 0.5351,\n", " -0.0903]],\n", "\n", " [[-0.2415, 0.7097, 0.0926, 0.6104, -0.2053, 0.0463, -0.2585,\n", " 0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\n", " 0.4182, -0.0776, 0.0449, 0.0138, 0.1784, -0.5369, 0.0192,\n", " -0.2766, -0.2416, 0.3454, 0.4599, 0.2200, -0.0211, 0.2726,\n", " -0.1927, 0.0486, 0.1538, -0.1676, 0.2175, -0.2153, 0.1954,\n", " -0.5780, -0.2447, 0.5633, 0.2046, 0.0098, 0.1590, 0.6091,\n", " 0.2573, -0.0760, 0.0456, -0.0988, 0.1492, -0.1859, -0.0842,\n", " 0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\n", " 0.3826, 0.0546, -0.1723, 0.4627, -0.1276, -0.2957, -0.1364,\n", " -0.5385],\n", " [-0.2605, 0.3742, 0.3780, 0.3882, -0.4157, -0.1474, -0.3459,\n", " -0.1452, 0.2388, -0.1367, -0.2496, -0.0807, -0.5850, 0.3555,\n", " 0.1489, 0.2841, 0.3549, -0.0793, 0.2325, -0.4568, -0.4790,\n", " -0.4872, 0.6107, 0.4140, -0.2444, -0.6675, 0.2835, 0.7947,\n", " 0.1005, 0.4331, 0.2850, 0.3347, -0.2289, 0.5438, -0.5147,\n", " -0.3536, -0.2994, 0.5414, 0.2631, -0.1074, 0.5495, -0.6653,\n", " -0.5549, 0.1603, 0.0260, -0.1220, -0.3569, 0.2244, 0.4713,\n", " 0.0967, -0.2427, 0.5279, -0.4483, -0.8291, -0.1444, 0.7616,\n", " -0.1760, 0.5977, -0.0726, -0.2546, -0.8026, -0.1861, 0.8048,\n", " -0.8177]],\n", "\n", " [[ 0.0101, 0.7368, 0.1353, 0.3623, -0.1673, -0.1695, -0.4292,\n", " 0.3395, 0.4179, 0.2769, 0.0541, -0.6404, -0.2328, -0.2319,\n", " 0.3876, 0.3352, 0.4574, -0.0993, 0.5880, -0.7071, 0.2521,\n", " -0.2288, -0.1628, 0.3605, 0.6020, 0.2196, -0.0099, 0.2126,\n", " -0.1068, -0.0631, 0.4057, -0.4593, 0.0754, 0.1717, 0.1265,\n", " -0.2682, -0.0946, 0.5886, -0.2587, -0.1557, -0.1058, 0.6473,\n", " 0.2292, 0.1324, -0.1269, 0.0728, 0.2484, -0.0247, 0.2468,\n", " 0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\n", " -0.2293, 0.0728, -0.3530, 0.7944, -0.2957, -0.5119, -0.4419,\n", " -0.3717],\n", " [ 0.0113, 0.7009, 0.3669, 0.2339, -0.2667, -0.1856, -0.5395,\n", " 0.1107, 0.5073, 0.2647, -0.0704, -0.6602, -0.5361, 0.2408,\n", " 0.2817, 0.3950, 0.5680, -0.2055, 0.5550, -0.6901, -0.1959,\n", " -0.4332, 0.2280, 0.4189, 0.2258, -0.4593, 0.2202, 0.5288,\n", " 0.0738, 0.2705, 0.4425, -0.4310, -0.2240, 0.4527, -0.2092,\n", " -0.0978, -0.1509, 0.5826, -0.2875, -0.2302, 0.1348, -0.2252,\n", " -0.3774, 0.2723, -0.1784, 0.1374, -0.2052, 0.2458, 0.6483,\n", " 0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659, 0.2802,\n", " -0.4677, 0.4884, -0.2397, 0.6836, -0.7437, -0.4434, 0.2398,\n", " -0.6909]],\n", "\n", " [[-0.1499, 0.5642, 0.2436, 0.6794, -0.5401, -0.1918, -0.4804,\n", " -0.7993, 0.5079, 0.1944, 0.1235, -0.6337, -0.3838, 0.1651,\n", " -0.0226, 0.7056, 0.5073, 0.4846, 0.7075, -0.7249, -0.5029,\n", " -0.3810, 0.2479, 0.3878, 0.3729, -0.7414, 0.6079, 0.2253,\n", " -0.5409, -0.1647, 0.7346, -0.2070, 0.5766, 0.1296, -0.4318,\n", " -0.1783, -0.7637, 0.6630, 0.2749, -0.0853, -0.2496, -0.5892,\n", " -0.4976, 0.5714, 0.0305, 0.2431, -0.0632, 0.2296, 0.5531,\n", " 0.7012, -0.2193, 0.3598, -0.0862, -0.7312, -0.3638, 0.1418,\n", " -0.6391, 0.3536, 0.7525, 0.7845, -0.1925, -0.2130, 0.6129,\n", " -0.8210],\n", " [-0.1430, 0.4985, 0.4111, 0.5815, -0.5709, -0.1385, -0.5552,\n", " -0.6759, 0.5509, 0.1574, 0.0644, -0.6438, -0.5627, 0.4289,\n", " -0.0483, 0.6774, 0.5765, 0.4106, 0.6559, -0.7302, -0.6284,\n", " -0.4817, 0.4068, 0.4327, 0.1650, -0.8455, 0.6862, 0.4201,\n", " -0.4453, 0.0642, 0.7283, -0.1803, 0.4315, 0.2034, -0.5437,\n", " -0.1295, -0.7425, 0.6695, 0.2883, -0.1398, -0.0725, -0.7465,\n", " -0.7075, 0.5969, 0.0220, 0.3139, -0.2831, 0.3638, 0.7920,\n", " 0.7428, -0.2189, 0.4677, -0.2263, -0.8023, -0.3903, 0.4736,\n", " -0.7263, 0.5289, 0.7474, 0.7225, -0.5192, -0.0853, 0.7310,\n", " -0.8602]],\n", "\n", " [[-0.4815, 0.9126, 0.1738, 0.5568, -0.4262, -0.7068, -0.8695,\n", " -0.8301, 0.7604, 0.2362, -0.1668, -0.7793, -0.5133, 0.8693,\n", " -0.2823, 0.5911, -0.0471, 0.9338, 0.9188, -0.4554, -0.9207,\n", " -0.4080, 0.2725, 0.4755, -0.1294, -0.7142, 0.3658, 0.4429,\n", " -0.4493, 0.1301, 0.8900, -0.3870, 0.3769, -0.2069, -0.1930,\n", " 0.1234, -0.7184, 0.7192, 0.3644, -0.1044, 0.7195, -0.9342,\n", " -0.5897, 0.3508, -0.8337, 0.2371, -0.2133, -0.1291, 0.6067,\n", " 0.8579, -0.5941, 0.7763, -0.7359, -0.8590, -0.3807, 0.1878,\n", " -0.9442, 0.7712, 0.7813, 0.6701, -0.8621, 0.3011, 0.6963,\n", " -0.8734],\n", " [-0.4735, 0.9112, 0.3157, 0.4688, -0.4490, -0.6760, -0.8831,\n", " -0.7476, 0.7855, 0.2046, -0.1825, -0.7881, -0.6302, 0.9075,\n", " -0.2902, 0.5753, 0.0178, 0.9260, 0.9011, -0.4670, -0.9303,\n", " -0.4978, 0.4121, 0.5032, -0.2101, -0.8159, 0.4151, 0.5686,\n", " -0.3979, 0.2328, 0.8864, -0.3879, 0.2711, -0.1999, -0.2824,\n", " 0.1645, -0.7031, 0.7292, 0.3743, -0.1499, 0.7552, -0.9468,\n", " -0.7001, 0.3675, -0.8345, 0.2998, -0.3379, -0.0426, 0.8084,\n", " 0.8870, -0.5983, 0.7973, -0.7773, -0.8863, -0.4013, 0.4691,\n", " -0.9512, 0.8066, 0.7752, 0.6545, -0.9121, 0.3427, 0.7675,\n", " -0.8953]],\n", "\n", " [[-0.6765, 0.9525, 0.1030, 0.4227, -0.3215, -0.7217, -0.9419,\n", " -0.8446, 0.8546, 0.2388, -0.2342, -0.8509, -0.6089, 0.9639,\n", " -0.4239, 0.4967, -0.2184, 0.9636, 0.9689, -0.3183, -0.9730,\n", " -0.4344, 0.2963, 0.5202, -0.3317, -0.6881, 0.1724, 0.5905,\n", " -0.4398, 0.1902, 0.9251, -0.5308, 0.2235, -0.3505, 0.0103,\n", " 0.2907, -0.6651, 0.7546, 0.4169, -0.1121, 0.8568, -0.9631,\n", " -0.5948, 0.1809, -0.9420, 0.2237, -0.2563, -0.3533, 0.6473,\n", " 0.9275, -0.7550, 0.8779, -0.9219, -0.8924, -0.3938, 0.2219,\n", " -0.9732, 0.8776, 0.8041, 0.6842, -0.9517, 0.4709, 0.7102,\n", " -0.9001],\n", " [-0.6757, 0.9530, 0.2174, 0.3443, -0.3374, -0.7043, -0.9467,\n", " -0.7903, 0.8670, 0.2115, -0.2482, -0.8579, -0.6793, 0.9696,\n", " -0.4243, 0.4866, -0.1757, 0.9624, 0.9640, -0.3296, -0.9740,\n", " -0.5149, 0.4178, 0.5340, -0.3605, -0.7855, 0.2042, 0.6710,\n", " -0.4170, 0.2421, 0.9241, -0.5300, 0.1449, -0.3548, -0.0612,\n", " 0.3213, -0.6540, 0.7647, 0.4227, -0.1528, 0.8663, -0.9637,\n", " -0.6518, 0.1862, -0.9404, 0.2761, -0.3477, -0.3001, 0.8170,\n", " 0.9398, -0.7614, 0.8840, -0.9329, -0.9017, -0.4097, 0.4649,\n", " -0.9736, 0.8814, 0.7989, 0.6698, -0.9634, 0.4825, 0.7578,\n", " -0.9150]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([4, 5])\n", "dec_state: tensor([[[ 0.1516, 0.6855, -0.5428, 0.7889, -0.1189, -0.1052, -0.6462,\n", " 0.3409, 0.1948, -0.8624, -0.5786, -0.6640, -0.0866, 0.6784,\n", " -0.4637, -0.0084, 0.6512, 0.7260, -0.3498, 0.6401, 0.5319,\n", " -0.5489, -0.2100, 0.8201, 0.7188, -0.8771, 0.5216, 0.0163,\n", " -0.8341, -0.2778, -0.6940, 0.4632, 0.2154, 0.5742, -0.3565,\n", " -0.0429, 0.2332, -0.0363, -0.1439, 0.6411, -0.2337, 0.0047,\n", " 0.3709, 0.1526, -0.1735, -0.1681, 0.1299, 0.7200, 0.4245,\n", " 0.8623, 0.4595, 0.7175, -0.8558, 0.0076, -0.5866, 0.2176,\n", " 0.1097, -0.1838, -0.4119, -0.1784, -0.8477, 0.8204, -0.1276,\n", " -0.4376],\n", " [-0.0658, 0.9748, -0.5769, 0.8673, -0.0602, -0.5950, -0.8200,\n", " -0.8208, -0.6082, 0.1077, 0.1922, -0.7446, 0.0970, 0.9569,\n", " -0.7658, -0.8043, 0.5412, 0.1997, -0.1679, 0.8415, 0.9058,\n", " -0.9063, 0.5147, 0.9190, 0.4669, -0.5805, 0.1650, -0.1969,\n", " -0.8384, 0.4500, -0.4407, 0.8871, 0.7072, 0.6933, -0.7082,\n", " -0.7921, 0.5268, -0.6137, 0.6975, 0.6981, -0.8581, 0.3354,\n", " 0.5848, 0.3619, -0.4141, 0.0527, -0.5226, 0.0446, 0.4591,\n", " 0.8339, -0.1873, 0.8927, 0.0560, -0.7861, -0.8164, -0.1213,\n", " 0.0490, 0.9516, 0.1827, -0.8977, -0.8676, 0.9065, -0.5621,\n", " 0.5651]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2890, 0.1556, -0.2685, 0.0012, -0.0716, 0.0172, -0.1474,\n", " 0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724, 0.3325,\n", " 0.1116, -0.5082, 0.3477, 0.2603, 0.0068, -0.6025, -0.5775,\n", " -0.0787, 0.1094, -0.0924, 0.0407, 0.0145, 0.0717, 0.2579,\n", " -0.0661, -0.1149, 0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\n", " -0.1044, -0.1947, 0.1145, -0.0769, -0.3539, 0.1510, 0.6411,\n", " -0.0553, 0.0845, -0.6039, -0.3417, 0.3798, -0.1020, 0.0173,\n", " 0.3886, 0.1477, -0.3305, -0.2986, -0.4481, -0.4462, 0.1228,\n", " -0.3850, 0.1912, 0.0674, -0.2659, 0.2090, 0.1939, 0.2671,\n", " -0.3651],\n", " [-0.0710, 0.3148, 0.1467, 0.3958, -0.3162, 0.1582, 0.0101,\n", " -0.0057, -0.0248, -0.2350, 0.3197, -0.1170, -0.5608, -0.0145,\n", " 0.3787, -0.2327, 0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\n", " -0.2015, 0.5406, 0.2518, -0.4450, -0.4262, -0.0457, 0.5708,\n", " -0.1106, 0.0239, 0.1353, 0.4127, -0.5620, 0.5556, 0.1576,\n", " 0.0743, -0.3683, 0.6607, -0.4821, 0.2784, -0.1441, 0.2792,\n", " -0.5013, -0.0068, 0.0980, -0.2505, -0.3301, 0.1433, -0.0295,\n", " 0.3410, 0.2697, 0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\n", " 0.0209, 0.3723, -0.1770, 0.1575, -0.4842, 0.3186, 0.4981,\n", " -0.3869]],\n", "\n", " [[ 0.2805, -0.0565, -0.5347, 0.7814, -0.1960, -0.1144, 0.0224,\n", " 0.5690, 0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\n", " 0.4451, 0.1339, 0.4140, 0.4275, 0.2901, -0.5719, -0.6537,\n", " 0.0535, 0.3236, 0.4697, 0.2989, -0.2088, 0.1031, 0.0537,\n", " -0.0234, -0.2308, 0.0661, -0.0290, 0.5174, 0.2255, -0.0898,\n", " 0.0559, -0.5531, 0.8694, 0.2726, 0.3303, 0.0954, 0.6133,\n", " -0.0627, -0.2125, -0.4030, -0.3193, 0.2573, -0.6037, 0.1702,\n", " 0.6712, 0.0243, -0.0894, 0.1717, -0.6346, -0.4322, -0.1709,\n", " -0.2448, -0.0380, -0.2380, 0.5061, -0.5416, -0.4742, 0.0817,\n", " -0.2495],\n", " [-0.2146, 0.3102, 0.3063, 0.3200, -0.6042, -0.6355, 0.0326,\n", " 0.1614, -0.1538, -0.6354, 0.2530, -0.2854, -0.6507, -0.2132,\n", " 0.0245, 0.0711, 0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\n", " -0.2030, 0.5062, 0.7766, -0.2168, -0.6735, 0.7655, 0.4879,\n", " 0.4480, 0.3375, 0.1140, 0.6309, -0.3277, 0.8274, -0.4674,\n", " 0.1451, -0.2880, 0.6146, -0.5080, -0.0806, 0.4445, -0.4506,\n", " -0.7093, 0.2397, 0.1345, -0.2954, -0.3532, 0.0559, 0.0268,\n", " 0.1805, 0.3976, 0.5215, -0.2548, -0.6891, -0.3597, 0.7438,\n", " 0.2640, -0.0562, -0.6029, -0.1483, -0.6813, 0.0196, 0.5351,\n", " -0.0903]],\n", "\n", " [[-0.2415, 0.7097, 0.0926, 0.6104, -0.2053, 0.0463, -0.2585,\n", " 0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\n", " 0.4182, -0.0776, 0.0449, 0.0138, 0.1784, -0.5369, 0.0192,\n", " -0.2766, -0.2416, 0.3454, 0.4599, 0.2200, -0.0211, 0.2726,\n", " -0.1927, 0.0486, 0.1538, -0.1676, 0.2175, -0.2153, 0.1954,\n", " -0.5780, -0.2447, 0.5633, 0.2046, 0.0098, 0.1590, 0.6091,\n", " 0.2573, -0.0760, 0.0456, -0.0988, 0.1492, -0.1859, -0.0842,\n", " 0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\n", " 0.3826, 0.0546, -0.1723, 0.4627, -0.1276, -0.2957, -0.1364,\n", " -0.5385],\n", " [-0.2605, 0.3742, 0.3780, 0.3882, -0.4157, -0.1474, -0.3459,\n", " -0.1452, 0.2388, -0.1367, -0.2496, -0.0807, -0.5850, 0.3555,\n", " 0.1489, 0.2841, 0.3549, -0.0793, 0.2325, -0.4568, -0.4790,\n", " -0.4872, 0.6107, 0.4140, -0.2444, -0.6675, 0.2835, 0.7947,\n", " 0.1005, 0.4331, 0.2850, 0.3347, -0.2289, 0.5438, -0.5147,\n", " -0.3536, -0.2994, 0.5414, 0.2631, -0.1074, 0.5495, -0.6653,\n", " -0.5549, 0.1603, 0.0260, -0.1220, -0.3569, 0.2244, 0.4713,\n", " 0.0967, -0.2427, 0.5279, -0.4483, -0.8291, -0.1444, 0.7616,\n", " -0.1760, 0.5977, -0.0726, -0.2546, -0.8026, -0.1861, 0.8048,\n", " -0.8177]],\n", "\n", " [[ 0.0101, 0.7368, 0.1353, 0.3623, -0.1673, -0.1695, -0.4292,\n", " 0.3395, 0.4179, 0.2769, 0.0541, -0.6404, -0.2328, -0.2319,\n", " 0.3876, 0.3352, 0.4574, -0.0993, 0.5880, -0.7071, 0.2521,\n", " -0.2288, -0.1628, 0.3605, 0.6020, 0.2196, -0.0099, 0.2126,\n", " -0.1068, -0.0631, 0.4057, -0.4593, 0.0754, 0.1717, 0.1265,\n", " -0.2682, -0.0946, 0.5886, -0.2587, -0.1557, -0.1058, 0.6473,\n", " 0.2292, 0.1324, -0.1269, 0.0728, 0.2484, -0.0247, 0.2468,\n", " 0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\n", " -0.2293, 0.0728, -0.3530, 0.7944, -0.2957, -0.5119, -0.4419,\n", " -0.3717],\n", " [ 0.0113, 0.7009, 0.3669, 0.2339, -0.2667, -0.1856, -0.5395,\n", " 0.1107, 0.5073, 0.2647, -0.0704, -0.6602, -0.5361, 0.2408,\n", " 0.2817, 0.3950, 0.5680, -0.2055, 0.5550, -0.6901, -0.1959,\n", " -0.4332, 0.2280, 0.4189, 0.2258, -0.4593, 0.2202, 0.5288,\n", " 0.0738, 0.2705, 0.4425, -0.4310, -0.2240, 0.4527, -0.2092,\n", " -0.0978, -0.1509, 0.5826, -0.2875, -0.2302, 0.1348, -0.2252,\n", " -0.3774, 0.2723, -0.1784, 0.1374, -0.2052, 0.2458, 0.6483,\n", " 0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659, 0.2802,\n", " -0.4677, 0.4884, -0.2397, 0.6836, -0.7437, -0.4434, 0.2398,\n", " -0.6909]],\n", "\n", " [[-0.1499, 0.5642, 0.2436, 0.6794, -0.5401, -0.1918, -0.4804,\n", " -0.7993, 0.5079, 0.1944, 0.1235, -0.6337, -0.3838, 0.1651,\n", " -0.0226, 0.7056, 0.5073, 0.4846, 0.7075, -0.7249, -0.5029,\n", " -0.3810, 0.2479, 0.3878, 0.3729, -0.7414, 0.6079, 0.2253,\n", " -0.5409, -0.1647, 0.7346, -0.2070, 0.5766, 0.1296, -0.4318,\n", " -0.1783, -0.7637, 0.6630, 0.2749, -0.0853, -0.2496, -0.5892,\n", " -0.4976, 0.5714, 0.0305, 0.2431, -0.0632, 0.2296, 0.5531,\n", " 0.7012, -0.2193, 0.3598, -0.0862, -0.7312, -0.3638, 0.1418,\n", " -0.6391, 0.3536, 0.7525, 0.7845, -0.1925, -0.2130, 0.6129,\n", " -0.8210],\n", " [-0.1430, 0.4985, 0.4111, 0.5815, -0.5709, -0.1385, -0.5552,\n", " -0.6759, 0.5509, 0.1574, 0.0644, -0.6438, -0.5627, 0.4289,\n", " -0.0483, 0.6774, 0.5765, 0.4106, 0.6559, -0.7302, -0.6284,\n", " -0.4817, 0.4068, 0.4327, 0.1650, -0.8455, 0.6862, 0.4201,\n", " -0.4453, 0.0642, 0.7283, -0.1803, 0.4315, 0.2034, -0.5437,\n", " -0.1295, -0.7425, 0.6695, 0.2883, -0.1398, -0.0725, -0.7465,\n", " -0.7075, 0.5969, 0.0220, 0.3139, -0.2831, 0.3638, 0.7920,\n", " 0.7428, -0.2189, 0.4677, -0.2263, -0.8023, -0.3903, 0.4736,\n", " -0.7263, 0.5289, 0.7474, 0.7225, -0.5192, -0.0853, 0.7310,\n", " -0.8602]],\n", "\n", " [[-0.4815, 0.9126, 0.1738, 0.5568, -0.4262, -0.7068, -0.8695,\n", " -0.8301, 0.7604, 0.2362, -0.1668, -0.7793, -0.5133, 0.8693,\n", " -0.2823, 0.5911, -0.0471, 0.9338, 0.9188, -0.4554, -0.9207,\n", " -0.4080, 0.2725, 0.4755, -0.1294, -0.7142, 0.3658, 0.4429,\n", " -0.4493, 0.1301, 0.8900, -0.3870, 0.3769, -0.2069, -0.1930,\n", " 0.1234, -0.7184, 0.7192, 0.3644, -0.1044, 0.7195, -0.9342,\n", " -0.5897, 0.3508, -0.8337, 0.2371, -0.2133, -0.1291, 0.6067,\n", " 0.8579, -0.5941, 0.7763, -0.7359, -0.8590, -0.3807, 0.1878,\n", " -0.9442, 0.7712, 0.7813, 0.6701, -0.8621, 0.3011, 0.6963,\n", " -0.8734],\n", " [-0.4735, 0.9112, 0.3157, 0.4688, -0.4490, -0.6760, -0.8831,\n", " -0.7476, 0.7855, 0.2046, -0.1825, -0.7881, -0.6302, 0.9075,\n", " -0.2902, 0.5753, 0.0178, 0.9260, 0.9011, -0.4670, -0.9303,\n", " -0.4978, 0.4121, 0.5032, -0.2101, -0.8159, 0.4151, 0.5686,\n", " -0.3979, 0.2328, 0.8864, -0.3879, 0.2711, -0.1999, -0.2824,\n", " 0.1645, -0.7031, 0.7292, 0.3743, -0.1499, 0.7552, -0.9468,\n", " -0.7001, 0.3675, -0.8345, 0.2998, -0.3379, -0.0426, 0.8084,\n", " 0.8870, -0.5983, 0.7973, -0.7773, -0.8863, -0.4013, 0.4691,\n", " -0.9512, 0.8066, 0.7752, 0.6545, -0.9121, 0.3427, 0.7675,\n", " -0.8953]],\n", "\n", " [[-0.6765, 0.9525, 0.1030, 0.4227, -0.3215, -0.7217, -0.9419,\n", " -0.8446, 0.8546, 0.2388, -0.2342, -0.8509, -0.6089, 0.9639,\n", " -0.4239, 0.4967, -0.2184, 0.9636, 0.9689, -0.3183, -0.9730,\n", " -0.4344, 0.2963, 0.5202, -0.3317, -0.6881, 0.1724, 0.5905,\n", " -0.4398, 0.1902, 0.9251, -0.5308, 0.2235, -0.3505, 0.0103,\n", " 0.2907, -0.6651, 0.7546, 0.4169, -0.1121, 0.8568, -0.9631,\n", " -0.5948, 0.1809, -0.9420, 0.2237, -0.2563, -0.3533, 0.6473,\n", " 0.9275, -0.7550, 0.8779, -0.9219, -0.8924, -0.3938, 0.2219,\n", " -0.9732, 0.8776, 0.8041, 0.6842, -0.9517, 0.4709, 0.7102,\n", " -0.9001],\n", " [-0.6757, 0.9530, 0.2174, 0.3443, -0.3374, -0.7043, -0.9467,\n", " -0.7903, 0.8670, 0.2115, -0.2482, -0.8579, -0.6793, 0.9696,\n", " -0.4243, 0.4866, -0.1757, 0.9624, 0.9640, -0.3296, -0.9740,\n", " -0.5149, 0.4178, 0.5340, -0.3605, -0.7855, 0.2042, 0.6710,\n", " -0.4170, 0.2421, 0.9241, -0.5300, 0.1449, -0.3548, -0.0612,\n", " 0.3213, -0.6540, 0.7647, 0.4227, -0.1528, 0.8663, -0.9637,\n", " -0.6518, 0.1862, -0.9404, 0.2761, -0.3477, -0.3001, 0.8170,\n", " 0.9398, -0.7614, 0.8840, -0.9329, -0.9017, -0.4097, 0.4649,\n", " -0.9736, 0.8814, 0.7989, 0.6698, -0.9634, 0.4825, 0.7578,\n", " -0.9150]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([25, 14])\n", "dec_state: tensor([[[-0.2230, 0.8044, -0.2281, 0.5656, 0.2685, -0.0697, -0.2737,\n", " 0.3938, -0.2452, -0.2973, -0.7422, -0.3978, 0.1094, 0.2401,\n", " -0.6661, -0.4448, 0.5665, 0.1657, -0.4754, 0.5654, 0.7391,\n", " -0.6415, -0.3738, 0.8769, -0.3916, -0.6936, 0.2050, 0.1224,\n", " -0.9252, -0.2186, -0.6851, 0.8296, 0.5926, 0.2779, -0.2268,\n", " -0.6139, 0.4380, -0.1079, 0.2633, 0.6675, -0.3886, 0.3206,\n", " 0.4285, -0.0341, -0.1135, -0.5944, -0.0113, 0.5907, -0.0216,\n", " 0.7136, 0.1097, 0.6913, -0.8351, 0.0489, -0.7000, 0.2243,\n", " 0.2583, 0.3165, -0.3670, -0.6081, -0.7631, 0.2230, -0.7661,\n", " -0.2716],\n", " [ 0.2762, 0.9809, 0.0560, 0.8423, -0.1605, -0.5210, -0.8213,\n", " -0.6437, -0.3015, -0.2981, -0.0517, -0.7277, -0.2456, 0.4444,\n", " -0.5445, -0.7323, 0.3051, -0.1013, -0.2842, 0.6154, 0.7968,\n", " -0.9410, -0.1630, 0.9508, 0.5477, -0.6607, -0.3488, -0.6078,\n", " -0.7493, -0.7611, -0.6751, 0.9211, 0.7540, 0.4700, -0.6965,\n", " -0.6813, -0.0544, -0.5092, 0.6198, 0.2275, -0.2206, -0.1805,\n", " 0.4600, 0.4376, -0.2174, 0.6236, -0.7953, -0.3368, 0.5151,\n", " 0.7954, 0.1045, 0.9663, 0.0675, -0.7997, -0.7938, -0.1853,\n", " 0.1697, 0.9676, 0.1555, -0.3342, -0.9188, 0.9383, -0.5828,\n", " 0.4698]]], grad_fn=) torch.Size([1, 2, 64])\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "enc_outputs: tensor([[[-0.2890, 0.1556, -0.2685, 0.0012, -0.0716, 0.0172, -0.1474,\n", " 0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724, 0.3325,\n", " 0.1116, -0.5082, 0.3477, 0.2603, 0.0068, -0.6025, -0.5775,\n", " -0.0787, 0.1094, -0.0924, 0.0407, 0.0145, 0.0717, 0.2579,\n", " -0.0661, -0.1149, 0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\n", " -0.1044, -0.1947, 0.1145, -0.0769, -0.3539, 0.1510, 0.6411,\n", " -0.0553, 0.0845, -0.6039, -0.3417, 0.3798, -0.1020, 0.0173,\n", " 0.3886, 0.1477, -0.3305, -0.2986, -0.4481, -0.4462, 0.1228,\n", " -0.3850, 0.1912, 0.0674, -0.2659, 0.2090, 0.1939, 0.2671,\n", " -0.3651],\n", " [-0.0710, 0.3148, 0.1467, 0.3958, -0.3162, 0.1582, 0.0101,\n", " -0.0057, -0.0248, -0.2350, 0.3197, -0.1170, -0.5608, -0.0145,\n", " 0.3787, -0.2327, 0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\n", " -0.2015, 0.5406, 0.2518, -0.4450, -0.4262, -0.0457, 0.5708,\n", " -0.1106, 0.0239, 0.1353, 0.4127, -0.5620, 0.5556, 0.1576,\n", " 0.0743, -0.3683, 0.6607, -0.4821, 0.2784, -0.1441, 0.2792,\n", " -0.5013, -0.0068, 0.0980, -0.2505, -0.3301, 0.1433, -0.0295,\n", " 0.3410, 0.2697, 0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\n", " 0.0209, 0.3723, -0.1770, 0.1575, -0.4842, 0.3186, 0.4981,\n", " -0.3869]],\n", "\n", " [[ 0.2805, -0.0565, -0.5347, 0.7814, -0.1960, -0.1144, 0.0224,\n", " 0.5690, 0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\n", " 0.4451, 0.1339, 0.4140, 0.4275, 0.2901, -0.5719, -0.6537,\n", " 0.0535, 0.3236, 0.4697, 0.2989, -0.2088, 0.1031, 0.0537,\n", " -0.0234, -0.2308, 0.0661, -0.0290, 0.5174, 0.2255, -0.0898,\n", " 0.0559, -0.5531, 0.8694, 0.2726, 0.3303, 0.0954, 0.6133,\n", " -0.0627, -0.2125, -0.4030, -0.3193, 0.2573, -0.6037, 0.1702,\n", " 0.6712, 0.0243, -0.0894, 0.1717, -0.6346, -0.4322, -0.1709,\n", " -0.2448, -0.0380, -0.2380, 0.5061, -0.5416, -0.4742, 0.0817,\n", " -0.2495],\n", " [-0.2146, 0.3102, 0.3063, 0.3200, -0.6042, -0.6355, 0.0326,\n", " 0.1614, -0.1538, -0.6354, 0.2530, -0.2854, -0.6507, -0.2132,\n", " 0.0245, 0.0711, 0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\n", " -0.2030, 0.5062, 0.7766, -0.2168, -0.6735, 0.7655, 0.4879,\n", " 0.4480, 0.3375, 0.1140, 0.6309, -0.3277, 0.8274, -0.4674,\n", " 0.1451, -0.2880, 0.6146, -0.5080, -0.0806, 0.4445, -0.4506,\n", " -0.7093, 0.2397, 0.1345, -0.2954, -0.3532, 0.0559, 0.0268,\n", " 0.1805, 0.3976, 0.5215, -0.2548, -0.6891, -0.3597, 0.7438,\n", " 0.2640, -0.0562, -0.6029, -0.1483, -0.6813, 0.0196, 0.5351,\n", " -0.0903]],\n", "\n", " [[-0.2415, 0.7097, 0.0926, 0.6104, -0.2053, 0.0463, -0.2585,\n", " 0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\n", " 0.4182, -0.0776, 0.0449, 0.0138, 0.1784, -0.5369, 0.0192,\n", " -0.2766, -0.2416, 0.3454, 0.4599, 0.2200, -0.0211, 0.2726,\n", " -0.1927, 0.0486, 0.1538, -0.1676, 0.2175, -0.2153, 0.1954,\n", " -0.5780, -0.2447, 0.5633, 0.2046, 0.0098, 0.1590, 0.6091,\n", " 0.2573, -0.0760, 0.0456, -0.0988, 0.1492, -0.1859, -0.0842,\n", " 0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\n", " 0.3826, 0.0546, -0.1723, 0.4627, -0.1276, -0.2957, -0.1364,\n", " -0.5385],\n", " [-0.2605, 0.3742, 0.3780, 0.3882, -0.4157, -0.1474, -0.3459,\n", " -0.1452, 0.2388, -0.1367, -0.2496, -0.0807, -0.5850, 0.3555,\n", " 0.1489, 0.2841, 0.3549, -0.0793, 0.2325, -0.4568, -0.4790,\n", " -0.4872, 0.6107, 0.4140, -0.2444, -0.6675, 0.2835, 0.7947,\n", " 0.1005, 0.4331, 0.2850, 0.3347, -0.2289, 0.5438, -0.5147,\n", " -0.3536, -0.2994, 0.5414, 0.2631, -0.1074, 0.5495, -0.6653,\n", " -0.5549, 0.1603, 0.0260, -0.1220, -0.3569, 0.2244, 0.4713,\n", " 0.0967, -0.2427, 0.5279, -0.4483, -0.8291, -0.1444, 0.7616,\n", " -0.1760, 0.5977, -0.0726, -0.2546, -0.8026, -0.1861, 0.8048,\n", " -0.8177]],\n", "\n", " [[ 0.0101, 0.7368, 0.1353, 0.3623, -0.1673, -0.1695, -0.4292,\n", " 0.3395, 0.4179, 0.2769, 0.0541, -0.6404, -0.2328, -0.2319,\n", " 0.3876, 0.3352, 0.4574, -0.0993, 0.5880, -0.7071, 0.2521,\n", " -0.2288, -0.1628, 0.3605, 0.6020, 0.2196, -0.0099, 0.2126,\n", " -0.1068, -0.0631, 0.4057, -0.4593, 0.0754, 0.1717, 0.1265,\n", " -0.2682, -0.0946, 0.5886, -0.2587, -0.1557, -0.1058, 0.6473,\n", " 0.2292, 0.1324, -0.1269, 0.0728, 0.2484, -0.0247, 0.2468,\n", " 0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\n", " -0.2293, 0.0728, -0.3530, 0.7944, -0.2957, -0.5119, -0.4419,\n", " -0.3717],\n", " [ 0.0113, 0.7009, 0.3669, 0.2339, -0.2667, -0.1856, -0.5395,\n", " 0.1107, 0.5073, 0.2647, -0.0704, -0.6602, -0.5361, 0.2408,\n", " 0.2817, 0.3950, 0.5680, -0.2055, 0.5550, -0.6901, -0.1959,\n", " -0.4332, 0.2280, 0.4189, 0.2258, -0.4593, 0.2202, 0.5288,\n", " 0.0738, 0.2705, 0.4425, -0.4310, -0.2240, 0.4527, -0.2092,\n", " -0.0978, -0.1509, 0.5826, -0.2875, -0.2302, 0.1348, -0.2252,\n", " -0.3774, 0.2723, -0.1784, 0.1374, -0.2052, 0.2458, 0.6483,\n", " 0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659, 0.2802,\n", " -0.4677, 0.4884, -0.2397, 0.6836, -0.7437, -0.4434, 0.2398,\n", " -0.6909]],\n", "\n", " [[-0.1499, 0.5642, 0.2436, 0.6794, -0.5401, -0.1918, -0.4804,\n", " -0.7993, 0.5079, 0.1944, 0.1235, -0.6337, -0.3838, 0.1651,\n", " -0.0226, 0.7056, 0.5073, 0.4846, 0.7075, -0.7249, -0.5029,\n", " -0.3810, 0.2479, 0.3878, 0.3729, -0.7414, 0.6079, 0.2253,\n", " -0.5409, -0.1647, 0.7346, -0.2070, 0.5766, 0.1296, -0.4318,\n", " -0.1783, -0.7637, 0.6630, 0.2749, -0.0853, -0.2496, -0.5892,\n", " -0.4976, 0.5714, 0.0305, 0.2431, -0.0632, 0.2296, 0.5531,\n", " 0.7012, -0.2193, 0.3598, -0.0862, -0.7312, -0.3638, 0.1418,\n", " -0.6391, 0.3536, 0.7525, 0.7845, -0.1925, -0.2130, 0.6129,\n", " -0.8210],\n", " [-0.1430, 0.4985, 0.4111, 0.5815, -0.5709, -0.1385, -0.5552,\n", " -0.6759, 0.5509, 0.1574, 0.0644, -0.6438, -0.5627, 0.4289,\n", " -0.0483, 0.6774, 0.5765, 0.4106, 0.6559, -0.7302, -0.6284,\n", " -0.4817, 0.4068, 0.4327, 0.1650, -0.8455, 0.6862, 0.4201,\n", " -0.4453, 0.0642, 0.7283, -0.1803, 0.4315, 0.2034, -0.5437,\n", " -0.1295, -0.7425, 0.6695, 0.2883, -0.1398, -0.0725, -0.7465,\n", " -0.7075, 0.5969, 0.0220, 0.3139, -0.2831, 0.3638, 0.7920,\n", " 0.7428, -0.2189, 0.4677, -0.2263, -0.8023, -0.3903, 0.4736,\n", " -0.7263, 0.5289, 0.7474, 0.7225, -0.5192, -0.0853, 0.7310,\n", " -0.8602]],\n", "\n", " [[-0.4815, 0.9126, 0.1738, 0.5568, -0.4262, -0.7068, -0.8695,\n", " -0.8301, 0.7604, 0.2362, -0.1668, -0.7793, -0.5133, 0.8693,\n", " -0.2823, 0.5911, -0.0471, 0.9338, 0.9188, -0.4554, -0.9207,\n", " -0.4080, 0.2725, 0.4755, -0.1294, -0.7142, 0.3658, 0.4429,\n", " -0.4493, 0.1301, 0.8900, -0.3870, 0.3769, -0.2069, -0.1930,\n", " 0.1234, -0.7184, 0.7192, 0.3644, -0.1044, 0.7195, -0.9342,\n", " -0.5897, 0.3508, -0.8337, 0.2371, -0.2133, -0.1291, 0.6067,\n", " 0.8579, -0.5941, 0.7763, -0.7359, -0.8590, -0.3807, 0.1878,\n", " -0.9442, 0.7712, 0.7813, 0.6701, -0.8621, 0.3011, 0.6963,\n", " -0.8734],\n", " [-0.4735, 0.9112, 0.3157, 0.4688, -0.4490, -0.6760, -0.8831,\n", " -0.7476, 0.7855, 0.2046, -0.1825, -0.7881, -0.6302, 0.9075,\n", " -0.2902, 0.5753, 0.0178, 0.9260, 0.9011, -0.4670, -0.9303,\n", " -0.4978, 0.4121, 0.5032, -0.2101, -0.8159, 0.4151, 0.5686,\n", " -0.3979, 0.2328, 0.8864, -0.3879, 0.2711, -0.1999, -0.2824,\n", " 0.1645, -0.7031, 0.7292, 0.3743, -0.1499, 0.7552, -0.9468,\n", " -0.7001, 0.3675, -0.8345, 0.2998, -0.3379, -0.0426, 0.8084,\n", " 0.8870, -0.5983, 0.7973, -0.7773, -0.8863, -0.4013, 0.4691,\n", " -0.9512, 0.8066, 0.7752, 0.6545, -0.9121, 0.3427, 0.7675,\n", " -0.8953]],\n", "\n", " [[-0.6765, 0.9525, 0.1030, 0.4227, -0.3215, -0.7217, -0.9419,\n", " -0.8446, 0.8546, 0.2388, -0.2342, -0.8509, -0.6089, 0.9639,\n", " -0.4239, 0.4967, -0.2184, 0.9636, 0.9689, -0.3183, -0.9730,\n", " -0.4344, 0.2963, 0.5202, -0.3317, -0.6881, 0.1724, 0.5905,\n", " -0.4398, 0.1902, 0.9251, -0.5308, 0.2235, -0.3505, 0.0103,\n", " 0.2907, -0.6651, 0.7546, 0.4169, -0.1121, 0.8568, -0.9631,\n", " -0.5948, 0.1809, -0.9420, 0.2237, -0.2563, -0.3533, 0.6473,\n", " 0.9275, -0.7550, 0.8779, -0.9219, -0.8924, -0.3938, 0.2219,\n", " -0.9732, 0.8776, 0.8041, 0.6842, -0.9517, 0.4709, 0.7102,\n", " -0.9001],\n", " [-0.6757, 0.9530, 0.2174, 0.3443, -0.3374, -0.7043, -0.9467,\n", " -0.7903, 0.8670, 0.2115, -0.2482, -0.8579, -0.6793, 0.9696,\n", " -0.4243, 0.4866, -0.1757, 0.9624, 0.9640, -0.3296, -0.9740,\n", " -0.5149, 0.4178, 0.5340, -0.3605, -0.7855, 0.2042, 0.6710,\n", " -0.4170, 0.2421, 0.9241, -0.5300, 0.1449, -0.3548, -0.0612,\n", " 0.3213, -0.6540, 0.7647, 0.4227, -0.1528, 0.8663, -0.9637,\n", " -0.6518, 0.1862, -0.9404, 0.2761, -0.3477, -0.3001, 0.8170,\n", " 0.9398, -0.7614, 0.8840, -0.9329, -0.9017, -0.4097, 0.4649,\n", " -0.9736, 0.8814, 0.7989, 0.6698, -0.9634, 0.4825, 0.7578,\n", " -0.9150]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([3, 3])\n", "dec_state: tensor([[[ 0.8505, 0.9089, -0.6730, 0.6163, 0.2814, 0.0763, -0.4625,\n", " -0.1917, -0.3058, -0.9284, -0.8566, -0.6571, 0.7263, 0.6950,\n", " -0.9266, -0.1139, 0.8800, 0.0400, -0.8129, 0.7686, 0.7583,\n", " -0.6926, -0.5053, 0.7981, 0.8234, -0.8314, 0.1123, -0.8275,\n", " 0.0346, -0.6508, -0.7948, 0.8187, 0.8385, 0.6857, -0.1373,\n", " -0.7337, 0.6400, -0.7467, 0.7792, 0.9075, -0.6600, 0.4827,\n", " 0.5591, -0.4799, -0.6166, 0.5739, -0.1328, 0.7219, -0.1026,\n", " 0.6668, -0.7492, 0.8918, -0.4799, -0.2638, 0.4481, 0.0668,\n", " 0.6346, 0.5244, -0.5863, -0.5861, -0.8973, 0.5596, -0.7549,\n", " -0.8987],\n", " [ 0.8619, 0.9870, -0.6495, 0.8314, -0.0249, -0.2358, -0.8443,\n", " -0.7277, -0.3218, -0.9384, -0.7715, -0.7908, 0.6517, 0.7737,\n", " -0.9167, -0.4083, 0.8639, -0.1515, -0.8665, 0.8200, 0.8061,\n", " -0.9422, -0.5393, 0.8747, 0.9185, -0.8075, -0.0357, -0.9223,\n", " 0.1446, -0.7969, -0.8172, 0.9095, 0.8944, 0.7632, -0.5759,\n", " -0.8748, 0.4663, -0.7997, 0.8716, 0.7574, -0.6152, 0.4111,\n", " 0.5997, -0.2924, -0.5905, 0.8687, -0.5815, 0.7330, 0.3730,\n", " 0.7982, -0.7559, 0.9823, 0.1169, -0.8266, 0.4500, -0.1826,\n", " 0.6443, 0.8065, -0.4415, -0.4183, -0.9538, 0.9538, -0.5976,\n", " -0.8467]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2890, 0.1556, -0.2685, 0.0012, -0.0716, 0.0172, -0.1474,\n", " 0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724, 0.3325,\n", " 0.1116, -0.5082, 0.3477, 0.2603, 0.0068, -0.6025, -0.5775,\n", " -0.0787, 0.1094, -0.0924, 0.0407, 0.0145, 0.0717, 0.2579,\n", " -0.0661, -0.1149, 0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\n", " -0.1044, -0.1947, 0.1145, -0.0769, -0.3539, 0.1510, 0.6411,\n", " -0.0553, 0.0845, -0.6039, -0.3417, 0.3798, -0.1020, 0.0173,\n", " 0.3886, 0.1477, -0.3305, -0.2986, -0.4481, -0.4462, 0.1228,\n", " -0.3850, 0.1912, 0.0674, -0.2659, 0.2090, 0.1939, 0.2671,\n", " -0.3651],\n", " [-0.0710, 0.3148, 0.1467, 0.3958, -0.3162, 0.1582, 0.0101,\n", " -0.0057, -0.0248, -0.2350, 0.3197, -0.1170, -0.5608, -0.0145,\n", " 0.3787, -0.2327, 0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\n", " -0.2015, 0.5406, 0.2518, -0.4450, -0.4262, -0.0457, 0.5708,\n", " -0.1106, 0.0239, 0.1353, 0.4127, -0.5620, 0.5556, 0.1576,\n", " 0.0743, -0.3683, 0.6607, -0.4821, 0.2784, -0.1441, 0.2792,\n", " -0.5013, -0.0068, 0.0980, -0.2505, -0.3301, 0.1433, -0.0295,\n", " 0.3410, 0.2697, 0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\n", " 0.0209, 0.3723, -0.1770, 0.1575, -0.4842, 0.3186, 0.4981,\n", " -0.3869]],\n", "\n", " [[ 0.2805, -0.0565, -0.5347, 0.7814, -0.1960, -0.1144, 0.0224,\n", " 0.5690, 0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\n", " 0.4451, 0.1339, 0.4140, 0.4275, 0.2901, -0.5719, -0.6537,\n", " 0.0535, 0.3236, 0.4697, 0.2989, -0.2088, 0.1031, 0.0537,\n", " -0.0234, -0.2308, 0.0661, -0.0290, 0.5174, 0.2255, -0.0898,\n", " 0.0559, -0.5531, 0.8694, 0.2726, 0.3303, 0.0954, 0.6133,\n", " -0.0627, -0.2125, -0.4030, -0.3193, 0.2573, -0.6037, 0.1702,\n", " 0.6712, 0.0243, -0.0894, 0.1717, -0.6346, -0.4322, -0.1709,\n", " -0.2448, -0.0380, -0.2380, 0.5061, -0.5416, -0.4742, 0.0817,\n", " -0.2495],\n", " [-0.2146, 0.3102, 0.3063, 0.3200, -0.6042, -0.6355, 0.0326,\n", " 0.1614, -0.1538, -0.6354, 0.2530, -0.2854, -0.6507, -0.2132,\n", " 0.0245, 0.0711, 0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\n", " -0.2030, 0.5062, 0.7766, -0.2168, -0.6735, 0.7655, 0.4879,\n", " 0.4480, 0.3375, 0.1140, 0.6309, -0.3277, 0.8274, -0.4674,\n", " 0.1451, -0.2880, 0.6146, -0.5080, -0.0806, 0.4445, -0.4506,\n", " -0.7093, 0.2397, 0.1345, -0.2954, -0.3532, 0.0559, 0.0268,\n", " 0.1805, 0.3976, 0.5215, -0.2548, -0.6891, -0.3597, 0.7438,\n", " 0.2640, -0.0562, -0.6029, -0.1483, -0.6813, 0.0196, 0.5351,\n", " -0.0903]],\n", "\n", " [[-0.2415, 0.7097, 0.0926, 0.6104, -0.2053, 0.0463, -0.2585,\n", " 0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\n", " 0.4182, -0.0776, 0.0449, 0.0138, 0.1784, -0.5369, 0.0192,\n", " -0.2766, -0.2416, 0.3454, 0.4599, 0.2200, -0.0211, 0.2726,\n", " -0.1927, 0.0486, 0.1538, -0.1676, 0.2175, -0.2153, 0.1954,\n", " -0.5780, -0.2447, 0.5633, 0.2046, 0.0098, 0.1590, 0.6091,\n", " 0.2573, -0.0760, 0.0456, -0.0988, 0.1492, -0.1859, -0.0842,\n", " 0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\n", " 0.3826, 0.0546, -0.1723, 0.4627, -0.1276, -0.2957, -0.1364,\n", " -0.5385],\n", " [-0.2605, 0.3742, 0.3780, 0.3882, -0.4157, -0.1474, -0.3459,\n", " -0.1452, 0.2388, -0.1367, -0.2496, -0.0807, -0.5850, 0.3555,\n", " 0.1489, 0.2841, 0.3549, -0.0793, 0.2325, -0.4568, -0.4790,\n", " -0.4872, 0.6107, 0.4140, -0.2444, -0.6675, 0.2835, 0.7947,\n", " 0.1005, 0.4331, 0.2850, 0.3347, -0.2289, 0.5438, -0.5147,\n", " -0.3536, -0.2994, 0.5414, 0.2631, -0.1074, 0.5495, -0.6653,\n", " -0.5549, 0.1603, 0.0260, -0.1220, -0.3569, 0.2244, 0.4713,\n", " 0.0967, -0.2427, 0.5279, -0.4483, -0.8291, -0.1444, 0.7616,\n", " -0.1760, 0.5977, -0.0726, -0.2546, -0.8026, -0.1861, 0.8048,\n", " -0.8177]],\n", "\n", " [[ 0.0101, 0.7368, 0.1353, 0.3623, -0.1673, -0.1695, -0.4292,\n", " 0.3395, 0.4179, 0.2769, 0.0541, -0.6404, -0.2328, -0.2319,\n", " 0.3876, 0.3352, 0.4574, -0.0993, 0.5880, -0.7071, 0.2521,\n", " -0.2288, -0.1628, 0.3605, 0.6020, 0.2196, -0.0099, 0.2126,\n", " -0.1068, -0.0631, 0.4057, -0.4593, 0.0754, 0.1717, 0.1265,\n", " -0.2682, -0.0946, 0.5886, -0.2587, -0.1557, -0.1058, 0.6473,\n", " 0.2292, 0.1324, -0.1269, 0.0728, 0.2484, -0.0247, 0.2468,\n", " 0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\n", " -0.2293, 0.0728, -0.3530, 0.7944, -0.2957, -0.5119, -0.4419,\n", " -0.3717],\n", " [ 0.0113, 0.7009, 0.3669, 0.2339, -0.2667, -0.1856, -0.5395,\n", " 0.1107, 0.5073, 0.2647, -0.0704, -0.6602, -0.5361, 0.2408,\n", " 0.2817, 0.3950, 0.5680, -0.2055, 0.5550, -0.6901, -0.1959,\n", " -0.4332, 0.2280, 0.4189, 0.2258, -0.4593, 0.2202, 0.5288,\n", " 0.0738, 0.2705, 0.4425, -0.4310, -0.2240, 0.4527, -0.2092,\n", " -0.0978, -0.1509, 0.5826, -0.2875, -0.2302, 0.1348, -0.2252,\n", " -0.3774, 0.2723, -0.1784, 0.1374, -0.2052, 0.2458, 0.6483,\n", " 0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659, 0.2802,\n", " -0.4677, 0.4884, -0.2397, 0.6836, -0.7437, -0.4434, 0.2398,\n", " -0.6909]],\n", "\n", " [[-0.1499, 0.5642, 0.2436, 0.6794, -0.5401, -0.1918, -0.4804,\n", " -0.7993, 0.5079, 0.1944, 0.1235, -0.6337, -0.3838, 0.1651,\n", " -0.0226, 0.7056, 0.5073, 0.4846, 0.7075, -0.7249, -0.5029,\n", " -0.3810, 0.2479, 0.3878, 0.3729, -0.7414, 0.6079, 0.2253,\n", " -0.5409, -0.1647, 0.7346, -0.2070, 0.5766, 0.1296, -0.4318,\n", " -0.1783, -0.7637, 0.6630, 0.2749, -0.0853, -0.2496, -0.5892,\n", " -0.4976, 0.5714, 0.0305, 0.2431, -0.0632, 0.2296, 0.5531,\n", " 0.7012, -0.2193, 0.3598, -0.0862, -0.7312, -0.3638, 0.1418,\n", " -0.6391, 0.3536, 0.7525, 0.7845, -0.1925, -0.2130, 0.6129,\n", " -0.8210],\n", " [-0.1430, 0.4985, 0.4111, 0.5815, -0.5709, -0.1385, -0.5552,\n", " -0.6759, 0.5509, 0.1574, 0.0644, -0.6438, -0.5627, 0.4289,\n", " -0.0483, 0.6774, 0.5765, 0.4106, 0.6559, -0.7302, -0.6284,\n", " -0.4817, 0.4068, 0.4327, 0.1650, -0.8455, 0.6862, 0.4201,\n", " -0.4453, 0.0642, 0.7283, -0.1803, 0.4315, 0.2034, -0.5437,\n", " -0.1295, -0.7425, 0.6695, 0.2883, -0.1398, -0.0725, -0.7465,\n", " -0.7075, 0.5969, 0.0220, 0.3139, -0.2831, 0.3638, 0.7920,\n", " 0.7428, -0.2189, 0.4677, -0.2263, -0.8023, -0.3903, 0.4736,\n", " -0.7263, 0.5289, 0.7474, 0.7225, -0.5192, -0.0853, 0.7310,\n", " -0.8602]],\n", "\n", " [[-0.4815, 0.9126, 0.1738, 0.5568, -0.4262, -0.7068, -0.8695,\n", " -0.8301, 0.7604, 0.2362, -0.1668, -0.7793, -0.5133, 0.8693,\n", " -0.2823, 0.5911, -0.0471, 0.9338, 0.9188, -0.4554, -0.9207,\n", " -0.4080, 0.2725, 0.4755, -0.1294, -0.7142, 0.3658, 0.4429,\n", " -0.4493, 0.1301, 0.8900, -0.3870, 0.3769, -0.2069, -0.1930,\n", " 0.1234, -0.7184, 0.7192, 0.3644, -0.1044, 0.7195, -0.9342,\n", " -0.5897, 0.3508, -0.8337, 0.2371, -0.2133, -0.1291, 0.6067,\n", " 0.8579, -0.5941, 0.7763, -0.7359, -0.8590, -0.3807, 0.1878,\n", " -0.9442, 0.7712, 0.7813, 0.6701, -0.8621, 0.3011, 0.6963,\n", " -0.8734],\n", " [-0.4735, 0.9112, 0.3157, 0.4688, -0.4490, -0.6760, -0.8831,\n", " -0.7476, 0.7855, 0.2046, -0.1825, -0.7881, -0.6302, 0.9075,\n", " -0.2902, 0.5753, 0.0178, 0.9260, 0.9011, -0.4670, -0.9303,\n", " -0.4978, 0.4121, 0.5032, -0.2101, -0.8159, 0.4151, 0.5686,\n", " -0.3979, 0.2328, 0.8864, -0.3879, 0.2711, -0.1999, -0.2824,\n", " 0.1645, -0.7031, 0.7292, 0.3743, -0.1499, 0.7552, -0.9468,\n", " -0.7001, 0.3675, -0.8345, 0.2998, -0.3379, -0.0426, 0.8084,\n", " 0.8870, -0.5983, 0.7973, -0.7773, -0.8863, -0.4013, 0.4691,\n", " -0.9512, 0.8066, 0.7752, 0.6545, -0.9121, 0.3427, 0.7675,\n", " -0.8953]],\n", "\n", " [[-0.6765, 0.9525, 0.1030, 0.4227, -0.3215, -0.7217, -0.9419,\n", " -0.8446, 0.8546, 0.2388, -0.2342, -0.8509, -0.6089, 0.9639,\n", " -0.4239, 0.4967, -0.2184, 0.9636, 0.9689, -0.3183, -0.9730,\n", " -0.4344, 0.2963, 0.5202, -0.3317, -0.6881, 0.1724, 0.5905,\n", " -0.4398, 0.1902, 0.9251, -0.5308, 0.2235, -0.3505, 0.0103,\n", " 0.2907, -0.6651, 0.7546, 0.4169, -0.1121, 0.8568, -0.9631,\n", " -0.5948, 0.1809, -0.9420, 0.2237, -0.2563, -0.3533, 0.6473,\n", " 0.9275, -0.7550, 0.8779, -0.9219, -0.8924, -0.3938, 0.2219,\n", " -0.9732, 0.8776, 0.8041, 0.6842, -0.9517, 0.4709, 0.7102,\n", " -0.9001],\n", " [-0.6757, 0.9530, 0.2174, 0.3443, -0.3374, -0.7043, -0.9467,\n", " -0.7903, 0.8670, 0.2115, -0.2482, -0.8579, -0.6793, 0.9696,\n", " -0.4243, 0.4866, -0.1757, 0.9624, 0.9640, -0.3296, -0.9740,\n", " -0.5149, 0.4178, 0.5340, -0.3605, -0.7855, 0.2042, 0.6710,\n", " -0.4170, 0.2421, 0.9241, -0.5300, 0.1449, -0.3548, -0.0612,\n", " 0.3213, -0.6540, 0.7647, 0.4227, -0.1528, 0.8663, -0.9637,\n", " -0.6518, 0.1862, -0.9404, 0.2761, -0.3477, -0.3001, 0.8170,\n", " 0.9398, -0.7614, 0.8840, -0.9329, -0.9017, -0.4097, 0.4649,\n", " -0.9736, 0.8814, 0.7989, 0.6698, -0.9634, 0.4825, 0.7578,\n", " -0.9150]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([2, 2])\n", "dec_state: tensor([[[ 0.8849, 0.2836, -0.8234, 0.6779, 0.3004, 0.3352, -0.1356,\n", " -0.3319, -0.5613, -0.1489, -0.1844, -0.5994, 0.7358, 0.2737,\n", " -0.9406, -0.5427, 0.5354, 0.3354, -0.7963, 0.4866, 0.8927,\n", " -0.6686, -0.2126, 0.8022, 0.7702, -0.8874, -0.3884, -0.7850,\n", " -0.5349, -0.3571, -0.7991, 0.8674, -0.4470, 0.7153, -0.3306,\n", " -0.9095, 0.4458, -0.4413, 0.6870, 0.7346, -0.5003, 0.6056,\n", " 0.5892, -0.2412, -0.1297, 0.2386, -0.2971, 0.7759, -0.1845,\n", " 0.4623, -0.3288, 0.8464, -0.4684, -0.4382, -0.1130, -0.0402,\n", " 0.8277, 0.6788, 0.1914, -0.2805, -0.8894, 0.6132, -0.6770,\n", " -0.3643],\n", " [ 0.8890, 0.5920, -0.8401, 0.8488, 0.1269, 0.2323, -0.3219,\n", " -0.5087, -0.5149, -0.3121, -0.1943, -0.6919, 0.7227, 0.3792,\n", " -0.9444, -0.6711, 0.4093, 0.2762, -0.8557, 0.4478, 0.9048,\n", " -0.9032, -0.2361, 0.8552, 0.8124, -0.8698, -0.3768, -0.8290,\n", " -0.5367, -0.2701, -0.8345, 0.9251, -0.4555, 0.7897, -0.6187,\n", " -0.9585, 0.2867, -0.5720, 0.7234, 0.6823, -0.4890, 0.6080,\n", " 0.6212, -0.0733, -0.1379, 0.5472, -0.5162, 0.8276, 0.2076,\n", " 0.6824, -0.3189, 0.9272, 0.0139, -0.8377, -0.0353, -0.1917,\n", " 0.8454, 0.7753, 0.2464, -0.1500, -0.9101, 0.9012, -0.5975,\n", " -0.5094]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2890, 0.1556, -0.2685, 0.0012, -0.0716, 0.0172, -0.1474,\n", " 0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724, 0.3325,\n", " 0.1116, -0.5082, 0.3477, 0.2603, 0.0068, -0.6025, -0.5775,\n", " -0.0787, 0.1094, -0.0924, 0.0407, 0.0145, 0.0717, 0.2579,\n", " -0.0661, -0.1149, 0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\n", " -0.1044, -0.1947, 0.1145, -0.0769, -0.3539, 0.1510, 0.6411,\n", " -0.0553, 0.0845, -0.6039, -0.3417, 0.3798, -0.1020, 0.0173,\n", " 0.3886, 0.1477, -0.3305, -0.2986, -0.4481, -0.4462, 0.1228,\n", " -0.3850, 0.1912, 0.0674, -0.2659, 0.2090, 0.1939, 0.2671,\n", " -0.3651],\n", " [-0.0710, 0.3148, 0.1467, 0.3958, -0.3162, 0.1582, 0.0101,\n", " -0.0057, -0.0248, -0.2350, 0.3197, -0.1170, -0.5608, -0.0145,\n", " 0.3787, -0.2327, 0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\n", " -0.2015, 0.5406, 0.2518, -0.4450, -0.4262, -0.0457, 0.5708,\n", " -0.1106, 0.0239, 0.1353, 0.4127, -0.5620, 0.5556, 0.1576,\n", " 0.0743, -0.3683, 0.6607, -0.4821, 0.2784, -0.1441, 0.2792,\n", " -0.5013, -0.0068, 0.0980, -0.2505, -0.3301, 0.1433, -0.0295,\n", " 0.3410, 0.2697, 0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\n", " 0.0209, 0.3723, -0.1770, 0.1575, -0.4842, 0.3186, 0.4981,\n", " -0.3869]],\n", "\n", " [[ 0.2805, -0.0565, -0.5347, 0.7814, -0.1960, -0.1144, 0.0224,\n", " 0.5690, 0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\n", " 0.4451, 0.1339, 0.4140, 0.4275, 0.2901, -0.5719, -0.6537,\n", " 0.0535, 0.3236, 0.4697, 0.2989, -0.2088, 0.1031, 0.0537,\n", " -0.0234, -0.2308, 0.0661, -0.0290, 0.5174, 0.2255, -0.0898,\n", " 0.0559, -0.5531, 0.8694, 0.2726, 0.3303, 0.0954, 0.6133,\n", " -0.0627, -0.2125, -0.4030, -0.3193, 0.2573, -0.6037, 0.1702,\n", " 0.6712, 0.0243, -0.0894, 0.1717, -0.6346, -0.4322, -0.1709,\n", " -0.2448, -0.0380, -0.2380, 0.5061, -0.5416, -0.4742, 0.0817,\n", " -0.2495],\n", " [-0.2146, 0.3102, 0.3063, 0.3200, -0.6042, -0.6355, 0.0326,\n", " 0.1614, -0.1538, -0.6354, 0.2530, -0.2854, -0.6507, -0.2132,\n", " 0.0245, 0.0711, 0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\n", " -0.2030, 0.5062, 0.7766, -0.2168, -0.6735, 0.7655, 0.4879,\n", " 0.4480, 0.3375, 0.1140, 0.6309, -0.3277, 0.8274, -0.4674,\n", " 0.1451, -0.2880, 0.6146, -0.5080, -0.0806, 0.4445, -0.4506,\n", " -0.7093, 0.2397, 0.1345, -0.2954, -0.3532, 0.0559, 0.0268,\n", " 0.1805, 0.3976, 0.5215, -0.2548, -0.6891, -0.3597, 0.7438,\n", " 0.2640, -0.0562, -0.6029, -0.1483, -0.6813, 0.0196, 0.5351,\n", " -0.0903]],\n", "\n", " [[-0.2415, 0.7097, 0.0926, 0.6104, -0.2053, 0.0463, -0.2585,\n", " 0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\n", " 0.4182, -0.0776, 0.0449, 0.0138, 0.1784, -0.5369, 0.0192,\n", " -0.2766, -0.2416, 0.3454, 0.4599, 0.2200, -0.0211, 0.2726,\n", " -0.1927, 0.0486, 0.1538, -0.1676, 0.2175, -0.2153, 0.1954,\n", " -0.5780, -0.2447, 0.5633, 0.2046, 0.0098, 0.1590, 0.6091,\n", " 0.2573, -0.0760, 0.0456, -0.0988, 0.1492, -0.1859, -0.0842,\n", " 0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\n", " 0.3826, 0.0546, -0.1723, 0.4627, -0.1276, -0.2957, -0.1364,\n", " -0.5385],\n", " [-0.2605, 0.3742, 0.3780, 0.3882, -0.4157, -0.1474, -0.3459,\n", " -0.1452, 0.2388, -0.1367, -0.2496, -0.0807, -0.5850, 0.3555,\n", " 0.1489, 0.2841, 0.3549, -0.0793, 0.2325, -0.4568, -0.4790,\n", " -0.4872, 0.6107, 0.4140, -0.2444, -0.6675, 0.2835, 0.7947,\n", " 0.1005, 0.4331, 0.2850, 0.3347, -0.2289, 0.5438, -0.5147,\n", " -0.3536, -0.2994, 0.5414, 0.2631, -0.1074, 0.5495, -0.6653,\n", " -0.5549, 0.1603, 0.0260, -0.1220, -0.3569, 0.2244, 0.4713,\n", " 0.0967, -0.2427, 0.5279, -0.4483, -0.8291, -0.1444, 0.7616,\n", " -0.1760, 0.5977, -0.0726, -0.2546, -0.8026, -0.1861, 0.8048,\n", " -0.8177]],\n", "\n", " [[ 0.0101, 0.7368, 0.1353, 0.3623, -0.1673, -0.1695, -0.4292,\n", " 0.3395, 0.4179, 0.2769, 0.0541, -0.6404, -0.2328, -0.2319,\n", " 0.3876, 0.3352, 0.4574, -0.0993, 0.5880, -0.7071, 0.2521,\n", " -0.2288, -0.1628, 0.3605, 0.6020, 0.2196, -0.0099, 0.2126,\n", " -0.1068, -0.0631, 0.4057, -0.4593, 0.0754, 0.1717, 0.1265,\n", " -0.2682, -0.0946, 0.5886, -0.2587, -0.1557, -0.1058, 0.6473,\n", " 0.2292, 0.1324, -0.1269, 0.0728, 0.2484, -0.0247, 0.2468,\n", " 0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\n", " -0.2293, 0.0728, -0.3530, 0.7944, -0.2957, -0.5119, -0.4419,\n", " -0.3717],\n", " [ 0.0113, 0.7009, 0.3669, 0.2339, -0.2667, -0.1856, -0.5395,\n", " 0.1107, 0.5073, 0.2647, -0.0704, -0.6602, -0.5361, 0.2408,\n", " 0.2817, 0.3950, 0.5680, -0.2055, 0.5550, -0.6901, -0.1959,\n", " -0.4332, 0.2280, 0.4189, 0.2258, -0.4593, 0.2202, 0.5288,\n", " 0.0738, 0.2705, 0.4425, -0.4310, -0.2240, 0.4527, -0.2092,\n", " -0.0978, -0.1509, 0.5826, -0.2875, -0.2302, 0.1348, -0.2252,\n", " -0.3774, 0.2723, -0.1784, 0.1374, -0.2052, 0.2458, 0.6483,\n", " 0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659, 0.2802,\n", " -0.4677, 0.4884, -0.2397, 0.6836, -0.7437, -0.4434, 0.2398,\n", " -0.6909]],\n", "\n", " [[-0.1499, 0.5642, 0.2436, 0.6794, -0.5401, -0.1918, -0.4804,\n", " -0.7993, 0.5079, 0.1944, 0.1235, -0.6337, -0.3838, 0.1651,\n", " -0.0226, 0.7056, 0.5073, 0.4846, 0.7075, -0.7249, -0.5029,\n", " -0.3810, 0.2479, 0.3878, 0.3729, -0.7414, 0.6079, 0.2253,\n", " -0.5409, -0.1647, 0.7346, -0.2070, 0.5766, 0.1296, -0.4318,\n", " -0.1783, -0.7637, 0.6630, 0.2749, -0.0853, -0.2496, -0.5892,\n", " -0.4976, 0.5714, 0.0305, 0.2431, -0.0632, 0.2296, 0.5531,\n", " 0.7012, -0.2193, 0.3598, -0.0862, -0.7312, -0.3638, 0.1418,\n", " -0.6391, 0.3536, 0.7525, 0.7845, -0.1925, -0.2130, 0.6129,\n", " -0.8210],\n", " [-0.1430, 0.4985, 0.4111, 0.5815, -0.5709, -0.1385, -0.5552,\n", " -0.6759, 0.5509, 0.1574, 0.0644, -0.6438, -0.5627, 0.4289,\n", " -0.0483, 0.6774, 0.5765, 0.4106, 0.6559, -0.7302, -0.6284,\n", " -0.4817, 0.4068, 0.4327, 0.1650, -0.8455, 0.6862, 0.4201,\n", " -0.4453, 0.0642, 0.7283, -0.1803, 0.4315, 0.2034, -0.5437,\n", " -0.1295, -0.7425, 0.6695, 0.2883, -0.1398, -0.0725, -0.7465,\n", " -0.7075, 0.5969, 0.0220, 0.3139, -0.2831, 0.3638, 0.7920,\n", " 0.7428, -0.2189, 0.4677, -0.2263, -0.8023, -0.3903, 0.4736,\n", " -0.7263, 0.5289, 0.7474, 0.7225, -0.5192, -0.0853, 0.7310,\n", " -0.8602]],\n", "\n", " [[-0.4815, 0.9126, 0.1738, 0.5568, -0.4262, -0.7068, -0.8695,\n", " -0.8301, 0.7604, 0.2362, -0.1668, -0.7793, -0.5133, 0.8693,\n", " -0.2823, 0.5911, -0.0471, 0.9338, 0.9188, -0.4554, -0.9207,\n", " -0.4080, 0.2725, 0.4755, -0.1294, -0.7142, 0.3658, 0.4429,\n", " -0.4493, 0.1301, 0.8900, -0.3870, 0.3769, -0.2069, -0.1930,\n", " 0.1234, -0.7184, 0.7192, 0.3644, -0.1044, 0.7195, -0.9342,\n", " -0.5897, 0.3508, -0.8337, 0.2371, -0.2133, -0.1291, 0.6067,\n", " 0.8579, -0.5941, 0.7763, -0.7359, -0.8590, -0.3807, 0.1878,\n", " -0.9442, 0.7712, 0.7813, 0.6701, -0.8621, 0.3011, 0.6963,\n", " -0.8734],\n", " [-0.4735, 0.9112, 0.3157, 0.4688, -0.4490, -0.6760, -0.8831,\n", " -0.7476, 0.7855, 0.2046, -0.1825, -0.7881, -0.6302, 0.9075,\n", " -0.2902, 0.5753, 0.0178, 0.9260, 0.9011, -0.4670, -0.9303,\n", " -0.4978, 0.4121, 0.5032, -0.2101, -0.8159, 0.4151, 0.5686,\n", " -0.3979, 0.2328, 0.8864, -0.3879, 0.2711, -0.1999, -0.2824,\n", " 0.1645, -0.7031, 0.7292, 0.3743, -0.1499, 0.7552, -0.9468,\n", " -0.7001, 0.3675, -0.8345, 0.2998, -0.3379, -0.0426, 0.8084,\n", " 0.8870, -0.5983, 0.7973, -0.7773, -0.8863, -0.4013, 0.4691,\n", " -0.9512, 0.8066, 0.7752, 0.6545, -0.9121, 0.3427, 0.7675,\n", " -0.8953]],\n", "\n", " [[-0.6765, 0.9525, 0.1030, 0.4227, -0.3215, -0.7217, -0.9419,\n", " -0.8446, 0.8546, 0.2388, -0.2342, -0.8509, -0.6089, 0.9639,\n", " -0.4239, 0.4967, -0.2184, 0.9636, 0.9689, -0.3183, -0.9730,\n", " -0.4344, 0.2963, 0.5202, -0.3317, -0.6881, 0.1724, 0.5905,\n", " -0.4398, 0.1902, 0.9251, -0.5308, 0.2235, -0.3505, 0.0103,\n", " 0.2907, -0.6651, 0.7546, 0.4169, -0.1121, 0.8568, -0.9631,\n", " -0.5948, 0.1809, -0.9420, 0.2237, -0.2563, -0.3533, 0.6473,\n", " 0.9275, -0.7550, 0.8779, -0.9219, -0.8924, -0.3938, 0.2219,\n", " -0.9732, 0.8776, 0.8041, 0.6842, -0.9517, 0.4709, 0.7102,\n", " -0.9001],\n", " [-0.6757, 0.9530, 0.2174, 0.3443, -0.3374, -0.7043, -0.9467,\n", " -0.7903, 0.8670, 0.2115, -0.2482, -0.8579, -0.6793, 0.9696,\n", " -0.4243, 0.4866, -0.1757, 0.9624, 0.9640, -0.3296, -0.9740,\n", " -0.5149, 0.4178, 0.5340, -0.3605, -0.7855, 0.2042, 0.6710,\n", " -0.4170, 0.2421, 0.9241, -0.5300, 0.1449, -0.3548, -0.0612,\n", " 0.3213, -0.6540, 0.7647, 0.4227, -0.1528, 0.8663, -0.9637,\n", " -0.6518, 0.1862, -0.9404, 0.2761, -0.3477, -0.3001, 0.8170,\n", " 0.9398, -0.7614, 0.8840, -0.9329, -0.9017, -0.4097, 0.4649,\n", " -0.9736, 0.8814, 0.7989, 0.6698, -0.9634, 0.4825, 0.7578,\n", " -0.9150]]], grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([0, 0])\n", "dec_state: tensor([[[ 0.7206, 0.7217, -0.3281, 0.5202, 0.1064, -0.0930, -0.0052,\n", " -0.5294, -0.4578, -0.1536, 0.1659, -0.1806, 0.2039, 0.4205,\n", " -0.7213, -0.4749, 0.0229, -0.3143, -0.5038, 0.6731, 0.9268,\n", " -0.7578, -0.2162, 0.7157, 0.8430, -0.7457, -0.5937, -0.5931,\n", " -0.6644, -0.5764, -0.2851, 0.8400, 0.5630, 0.5846, -0.4902,\n", " -0.9598, 0.1132, -0.6057, 0.5636, 0.8117, -0.3320, 0.7005,\n", " 0.7850, -0.4096, -0.4255, 0.6619, -0.3877, 0.5099, -0.0622,\n", " 0.6422, 0.3801, 0.8518, -0.2343, -0.4903, 0.1009, 0.0581,\n", " 0.8097, 0.7621, 0.0341, -0.2831, -0.9247, 0.4542, -0.5336,\n", " -0.3749],\n", " [ 0.7630, 0.8500, -0.2590, 0.7070, -0.0394, -0.0799, -0.1031,\n", " -0.5878, -0.3718, -0.2694, 0.1243, -0.2498, 0.2616, 0.5061,\n", " -0.7315, -0.5329, -0.1570, -0.4657, -0.5801, 0.6683, 0.9306,\n", " -0.9180, -0.2548, 0.7504, 0.8630, -0.7250, -0.5068, -0.6007,\n", " -0.6481, -0.5178, -0.3468, 0.9069, 0.5599, 0.6885, -0.5429,\n", " -0.9792, -0.0550, -0.6936, 0.5973, 0.7663, -0.2912, 0.7111,\n", " 0.7899, -0.2427, -0.4031, 0.7910, -0.5594, 0.5412, 0.2572,\n", " 0.7828, 0.3476, 0.9183, 0.1526, -0.7453, 0.1504, -0.0506,\n", " 0.8164, 0.8141, 0.0510, -0.1495, -0.9310, 0.7290, -0.5469,\n", " -0.5112]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2890, 0.1556, -0.2685, 0.0012, -0.0716, 0.0172, -0.1474,\n", " 0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724, 0.3325,\n", " 0.1116, -0.5082, 0.3477, 0.2603, 0.0068, -0.6025, -0.5775,\n", " -0.0787, 0.1094, -0.0924, 0.0407, 0.0145, 0.0717, 0.2579,\n", " -0.0661, -0.1149, 0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\n", " -0.1044, -0.1947, 0.1145, -0.0769, -0.3539, 0.1510, 0.6411,\n", " -0.0553, 0.0845, -0.6039, -0.3417, 0.3798, -0.1020, 0.0173,\n", " 0.3886, 0.1477, -0.3305, -0.2986, -0.4481, -0.4462, 0.1228,\n", " -0.3850, 0.1912, 0.0674, -0.2659, 0.2090, 0.1939, 0.2671,\n", " -0.3651],\n", " [-0.0710, 0.3148, 0.1467, 0.3958, -0.3162, 0.1582, 0.0101,\n", " -0.0057, -0.0248, -0.2350, 0.3197, -0.1170, -0.5608, -0.0145,\n", " 0.3787, -0.2327, 0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\n", " -0.2015, 0.5406, 0.2518, -0.4450, -0.4262, -0.0457, 0.5708,\n", " -0.1106, 0.0239, 0.1353, 0.4127, -0.5620, 0.5556, 0.1576,\n", " 0.0743, -0.3683, 0.6607, -0.4821, 0.2784, -0.1441, 0.2792,\n", " -0.5013, -0.0068, 0.0980, -0.2505, -0.3301, 0.1433, -0.0295,\n", " 0.3410, 0.2697, 0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\n", " 0.0209, 0.3723, -0.1770, 0.1575, -0.4842, 0.3186, 0.4981,\n", " -0.3869]],\n", "\n", " [[ 0.2805, -0.0565, -0.5347, 0.7814, -0.1960, -0.1144, 0.0224,\n", " 0.5690, 0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\n", " 0.4451, 0.1339, 0.4140, 0.4275, 0.2901, -0.5719, -0.6537,\n", " 0.0535, 0.3236, 0.4697, 0.2989, -0.2088, 0.1031, 0.0537,\n", " -0.0234, -0.2308, 0.0661, -0.0290, 0.5174, 0.2255, -0.0898,\n", " 0.0559, -0.5531, 0.8694, 0.2726, 0.3303, 0.0954, 0.6133,\n", " -0.0627, -0.2125, -0.4030, -0.3193, 0.2573, -0.6037, 0.1702,\n", " 0.6712, 0.0243, -0.0894, 0.1717, -0.6346, -0.4322, -0.1709,\n", " -0.2448, -0.0380, -0.2380, 0.5061, -0.5416, -0.4742, 0.0817,\n", " -0.2495],\n", " [-0.2146, 0.3102, 0.3063, 0.3200, -0.6042, -0.6355, 0.0326,\n", " 0.1614, -0.1538, -0.6354, 0.2530, -0.2854, -0.6507, -0.2132,\n", " 0.0245, 0.0711, 0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\n", " -0.2030, 0.5062, 0.7766, -0.2168, -0.6735, 0.7655, 0.4879,\n", " 0.4480, 0.3375, 0.1140, 0.6309, -0.3277, 0.8274, -0.4674,\n", " 0.1451, -0.2880, 0.6146, -0.5080, -0.0806, 0.4445, -0.4506,\n", " -0.7093, 0.2397, 0.1345, -0.2954, -0.3532, 0.0559, 0.0268,\n", " 0.1805, 0.3976, 0.5215, -0.2548, -0.6891, -0.3597, 0.7438,\n", " 0.2640, -0.0562, -0.6029, -0.1483, -0.6813, 0.0196, 0.5351,\n", " -0.0903]],\n", "\n", " [[-0.2415, 0.7097, 0.0926, 0.6104, -0.2053, 0.0463, -0.2585,\n", " 0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\n", " 0.4182, -0.0776, 0.0449, 0.0138, 0.1784, -0.5369, 0.0192,\n", " -0.2766, -0.2416, 0.3454, 0.4599, 0.2200, -0.0211, 0.2726,\n", " -0.1927, 0.0486, 0.1538, -0.1676, 0.2175, -0.2153, 0.1954,\n", " -0.5780, -0.2447, 0.5633, 0.2046, 0.0098, 0.1590, 0.6091,\n", " 0.2573, -0.0760, 0.0456, -0.0988, 0.1492, -0.1859, -0.0842,\n", " 0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\n", " 0.3826, 0.0546, -0.1723, 0.4627, -0.1276, -0.2957, -0.1364,\n", " -0.5385],\n", " [-0.2605, 0.3742, 0.3780, 0.3882, -0.4157, -0.1474, -0.3459,\n", " -0.1452, 0.2388, -0.1367, -0.2496, -0.0807, -0.5850, 0.3555,\n", " 0.1489, 0.2841, 0.3549, -0.0793, 0.2325, -0.4568, -0.4790,\n", " -0.4872, 0.6107, 0.4140, -0.2444, -0.6675, 0.2835, 0.7947,\n", " 0.1005, 0.4331, 0.2850, 0.3347, -0.2289, 0.5438, -0.5147,\n", " -0.3536, -0.2994, 0.5414, 0.2631, -0.1074, 0.5495, -0.6653,\n", " -0.5549, 0.1603, 0.0260, -0.1220, -0.3569, 0.2244, 0.4713,\n", " 0.0967, -0.2427, 0.5279, -0.4483, -0.8291, -0.1444, 0.7616,\n", " -0.1760, 0.5977, -0.0726, -0.2546, -0.8026, -0.1861, 0.8048,\n", " -0.8177]],\n", "\n", " [[ 0.0101, 0.7368, 0.1353, 0.3623, -0.1673, -0.1695, -0.4292,\n", " 0.3395, 0.4179, 0.2769, 0.0541, -0.6404, -0.2328, -0.2319,\n", " 0.3876, 0.3352, 0.4574, -0.0993, 0.5880, -0.7071, 0.2521,\n", " -0.2288, -0.1628, 0.3605, 0.6020, 0.2196, -0.0099, 0.2126,\n", " -0.1068, -0.0631, 0.4057, -0.4593, 0.0754, 0.1717, 0.1265,\n", " -0.2682, -0.0946, 0.5886, -0.2587, -0.1557, -0.1058, 0.6473,\n", " 0.2292, 0.1324, -0.1269, 0.0728, 0.2484, -0.0247, 0.2468,\n", " 0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\n", " -0.2293, 0.0728, -0.3530, 0.7944, -0.2957, -0.5119, -0.4419,\n", " -0.3717],\n", " [ 0.0113, 0.7009, 0.3669, 0.2339, -0.2667, -0.1856, -0.5395,\n", " 0.1107, 0.5073, 0.2647, -0.0704, -0.6602, -0.5361, 0.2408,\n", " 0.2817, 0.3950, 0.5680, -0.2055, 0.5550, -0.6901, -0.1959,\n", " -0.4332, 0.2280, 0.4189, 0.2258, -0.4593, 0.2202, 0.5288,\n", " 0.0738, 0.2705, 0.4425, -0.4310, -0.2240, 0.4527, -0.2092,\n", " -0.0978, -0.1509, 0.5826, -0.2875, -0.2302, 0.1348, -0.2252,\n", " -0.3774, 0.2723, -0.1784, 0.1374, -0.2052, 0.2458, 0.6483,\n", " 0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659, 0.2802,\n", " -0.4677, 0.4884, -0.2397, 0.6836, -0.7437, -0.4434, 0.2398,\n", " -0.6909]],\n", "\n", " [[-0.1499, 0.5642, 0.2436, 0.6794, -0.5401, -0.1918, -0.4804,\n", " -0.7993, 0.5079, 0.1944, 0.1235, -0.6337, -0.3838, 0.1651,\n", " -0.0226, 0.7056, 0.5073, 0.4846, 0.7075, -0.7249, -0.5029,\n", " -0.3810, 0.2479, 0.3878, 0.3729, -0.7414, 0.6079, 0.2253,\n", " -0.5409, -0.1647, 0.7346, -0.2070, 0.5766, 0.1296, -0.4318,\n", " -0.1783, -0.7637, 0.6630, 0.2749, -0.0853, -0.2496, -0.5892,\n", " -0.4976, 0.5714, 0.0305, 0.2431, -0.0632, 0.2296, 0.5531,\n", " 0.7012, -0.2193, 0.3598, -0.0862, -0.7312, -0.3638, 0.1418,\n", " -0.6391, 0.3536, 0.7525, 0.7845, -0.1925, -0.2130, 0.6129,\n", " -0.8210],\n", " [-0.1430, 0.4985, 0.4111, 0.5815, -0.5709, -0.1385, -0.5552,\n", " -0.6759, 0.5509, 0.1574, 0.0644, -0.6438, -0.5627, 0.4289,\n", " -0.0483, 0.6774, 0.5765, 0.4106, 0.6559, -0.7302, -0.6284,\n", " -0.4817, 0.4068, 0.4327, 0.1650, -0.8455, 0.6862, 0.4201,\n", " -0.4453, 0.0642, 0.7283, -0.1803, 0.4315, 0.2034, -0.5437,\n", " -0.1295, -0.7425, 0.6695, 0.2883, -0.1398, -0.0725, -0.7465,\n", " -0.7075, 0.5969, 0.0220, 0.3139, -0.2831, 0.3638, 0.7920,\n", " 0.7428, -0.2189, 0.4677, -0.2263, -0.8023, -0.3903, 0.4736,\n", " -0.7263, 0.5289, 0.7474, 0.7225, -0.5192, -0.0853, 0.7310,\n", " -0.8602]],\n", "\n", " [[-0.4815, 0.9126, 0.1738, 0.5568, -0.4262, -0.7068, -0.8695,\n", " -0.8301, 0.7604, 0.2362, -0.1668, -0.7793, -0.5133, 0.8693,\n", " -0.2823, 0.5911, -0.0471, 0.9338, 0.9188, -0.4554, -0.9207,\n", " -0.4080, 0.2725, 0.4755, -0.1294, -0.7142, 0.3658, 0.4429,\n", " -0.4493, 0.1301, 0.8900, -0.3870, 0.3769, -0.2069, -0.1930,\n", " 0.1234, -0.7184, 0.7192, 0.3644, -0.1044, 0.7195, -0.9342,\n", " -0.5897, 0.3508, -0.8337, 0.2371, -0.2133, -0.1291, 0.6067,\n", " 0.8579, -0.5941, 0.7763, -0.7359, -0.8590, -0.3807, 0.1878,\n", " -0.9442, 0.7712, 0.7813, 0.6701, -0.8621, 0.3011, 0.6963,\n", " -0.8734],\n", " [-0.4735, 0.9112, 0.3157, 0.4688, -0.4490, -0.6760, -0.8831,\n", " -0.7476, 0.7855, 0.2046, -0.1825, -0.7881, -0.6302, 0.9075,\n", " -0.2902, 0.5753, 0.0178, 0.9260, 0.9011, -0.4670, -0.9303,\n", " -0.4978, 0.4121, 0.5032, -0.2101, -0.8159, 0.4151, 0.5686,\n", " -0.3979, 0.2328, 0.8864, -0.3879, 0.2711, -0.1999, -0.2824,\n", " 0.1645, -0.7031, 0.7292, 0.3743, -0.1499, 0.7552, -0.9468,\n", " -0.7001, 0.3675, -0.8345, 0.2998, -0.3379, -0.0426, 0.8084,\n", " 0.8870, -0.5983, 0.7973, -0.7773, -0.8863, -0.4013, 0.4691,\n", " -0.9512, 0.8066, 0.7752, 0.6545, -0.9121, 0.3427, 0.7675,\n", " -0.8953]],\n", "\n", " [[-0.6765, 0.9525, 0.1030, 0.4227, -0.3215, -0.7217, -0.9419,\n", " -0.8446, 0.8546, 0.2388, -0.2342, -0.8509, -0.6089, 0.9639,\n", " -0.4239, 0.4967, -0.2184, 0.9636, 0.9689, -0.3183, -0.9730,\n", " -0.4344, 0.2963, 0.5202, -0.3317, -0.6881, 0.1724, 0.5905,\n", " -0.4398, 0.1902, 0.9251, -0.5308, 0.2235, -0.3505, 0.0103,\n", " 0.2907, -0.6651, 0.7546, 0.4169, -0.1121, 0.8568, -0.9631,\n", " -0.5948, 0.1809, -0.9420, 0.2237, -0.2563, -0.3533, 0.6473,\n", " 0.9275, -0.7550, 0.8779, -0.9219, -0.8924, -0.3938, 0.2219,\n", " -0.9732, 0.8776, 0.8041, 0.6842, -0.9517, 0.4709, 0.7102,\n", " -0.9001],\n", " [-0.6757, 0.9530, 0.2174, 0.3443, -0.3374, -0.7043, -0.9467,\n", " -0.7903, 0.8670, 0.2115, -0.2482, -0.8579, -0.6793, 0.9696,\n", " -0.4243, 0.4866, -0.1757, 0.9624, 0.9640, -0.3296, -0.9740,\n", " -0.5149, 0.4178, 0.5340, -0.3605, -0.7855, 0.2042, 0.6710,\n", " -0.4170, 0.2421, 0.9241, -0.5300, 0.1449, -0.3548, -0.0612,\n", " 0.3213, -0.6540, 0.7647, 0.4227, -0.1528, 0.8663, -0.9637,\n", " -0.6518, 0.1862, -0.9404, 0.2761, -0.3477, -0.3001, 0.8170,\n", " 0.9398, -0.7614, 0.8840, -0.9329, -0.9017, -0.4097, 0.4649,\n", " -0.9736, 0.8814, 0.7989, 0.6698, -0.9634, 0.4825, 0.7578,\n", " -0.9150]]], grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "tensor([[ 8, 10, 23, 27, 3, 2, 0],\n", " [ 5, 4, 42, 3, 2, 0, 0]])\n", "tensor([[ 6, 4, 24, 33, 3, 2, 0],\n", " [ 8, 4, 29, 3, 2, 0, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-1.9370e-02, 9.4435e-01, -1.4626e-01, 5.7626e-01, -7.8327e-01,\n", " -5.8816e-01, -9.3752e-01, -8.7685e-01, 8.9270e-01, -1.8368e-01,\n", " 1.7108e-01, -8.4123e-01, -4.6682e-01, 9.2723e-01, -1.0656e-01,\n", " 7.1731e-01, 1.5608e-01, 9.5950e-01, 9.3215e-01, 9.4179e-01,\n", " -7.1560e-01, -3.6579e-01, 5.0570e-01, 6.5778e-01, 5.7784e-01,\n", " -7.8652e-01, -2.5455e-02, -1.3982e-01, -4.5903e-01, -1.0105e-01,\n", " -5.7052e-02, -1.3978e-01, 9.4126e-01, 5.3936e-01, -4.6243e-02,\n", " 5.1475e-01, 6.8898e-01, 5.0055e-01, 1.0343e-01, -7.1219e-01,\n", " 7.3519e-02, -9.6643e-01, 2.4688e-01, 4.2217e-02, -9.4337e-01,\n", " 5.9022e-01, -5.8385e-01, -7.6515e-01, 8.6100e-01, 9.2425e-01,\n", " -7.0375e-01, 9.5339e-01, -8.3630e-01, -1.5542e-01, -6.2936e-01,\n", " 1.8626e-01, -8.8788e-01, 8.4653e-01, 8.1216e-01, 4.5412e-01,\n", " -9.3041e-01, 8.0564e-01, 7.7082e-01, -8.7421e-01],\n", " [-3.3193e-01, 9.8078e-01, -2.3659e-01, 4.7303e-01, -6.4527e-01,\n", " -5.3057e-01, -9.6771e-01, -9.0554e-01, 9.4604e-01, -2.9873e-01,\n", " 9.4434e-02, -9.3510e-01, -5.5483e-01, 9.8375e-01, -2.1864e-01,\n", " 6.9026e-01, 2.4480e-01, 9.7695e-01, 9.4018e-01, 9.4791e-01,\n", " -5.5266e-01, -5.6941e-01, 4.9791e-01, 7.4033e-01, 6.6584e-01,\n", " -7.9681e-01, -1.4152e-01, -1.3080e-01, -5.4054e-01, -4.0669e-01,\n", " -3.1218e-02, 7.0408e-04, 9.4749e-01, 4.2400e-01, 4.4675e-03,\n", " 5.4005e-01, 7.6490e-01, 6.8828e-01, 1.1556e-01, -5.5039e-01,\n", " -1.8149e-01, -9.6165e-01, 4.6269e-01, -1.3727e-01, -9.6499e-01,\n", " 5.6910e-01, -6.0132e-01, -8.4214e-01, 8.5596e-01, 9.8562e-01,\n", " -3.5161e-01, 9.8248e-01, -9.4662e-01, -1.7085e-01, -7.0614e-01,\n", " 2.0749e-01, -9.1938e-01, 9.3703e-01, 8.4729e-01, 1.8676e-01,\n", " -9.8153e-01, 8.9692e-01, 8.1144e-01, -9.0612e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.7979e-01, 9.4467e-02, -1.0363e-01, 4.6698e-01, 2.1990e-01,\n", " 1.0968e-01, 6.3953e-02, -6.2686e-01, 3.3735e-01, -1.5381e-01,\n", " 4.4057e-01, -1.3544e-01, 3.1925e-02, 2.8315e-01, 1.3914e-01,\n", " 4.8791e-01, 2.2082e-01, 6.2355e-03, 2.7165e-01, 1.7884e-01,\n", " -5.0191e-01, -1.1003e-01, 2.6037e-01, -1.4109e-01, -4.9608e-01,\n", " 1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\n", " 1.6098e-01, -1.8203e-01, 8.5968e-02, 1.6584e-01, -1.8070e-01,\n", " -1.0343e-02, -5.9731e-01, 2.7544e-01, 5.4321e-01, 1.2392e-01,\n", " -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\n", " 3.5685e-01, -2.1323e-01, -1.0543e-01, 2.0594e-01, -2.2193e-02,\n", " 2.7921e-01, 4.1012e-01, 2.2706e-01, -5.1412e-01, -3.2686e-01,\n", " 1.8903e-01, -5.3830e-01, 2.9266e-01, 1.3446e-01, 1.6127e-01,\n", " -4.3490e-01, 1.0959e-01, -3.0305e-02, -3.5573e-01],\n", " [-2.6735e-01, 3.3112e-01, -2.7546e-01, 3.3183e-02, -8.5314e-02,\n", " -4.6477e-02, -2.8822e-01, 1.6451e-01, -7.2843e-02, -1.5546e-01,\n", " -2.3366e-01, -1.8629e-01, -5.3722e-01, 3.5115e-01, 1.0961e-01,\n", " -4.6762e-01, 4.1160e-01, 2.9585e-01, 9.0005e-02, -6.4770e-01,\n", " -6.2316e-01, -1.1505e-01, 1.1418e-01, -7.1088e-02, 1.3812e-01,\n", " -7.0793e-03, 1.7934e-01, 3.0685e-01, -1.1399e-01, -1.2434e-01,\n", " 1.6922e-01, -1.0212e-01, 4.3567e-02, -3.6941e-01, -1.6724e-01,\n", " -9.6767e-02, -2.0039e-01, 1.6684e-01, -6.7633e-02, -3.5034e-01,\n", " 1.3738e-01, 6.7207e-01, -8.7835e-02, 7.1087e-02, -6.5737e-01,\n", " -4.0125e-01, 4.1675e-01, -1.4082e-01, 3.5492e-02, 4.1041e-01,\n", " 1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\n", " 1.9867e-01, -4.3455e-01, 1.8238e-01, 7.0308e-02, -2.2539e-01,\n", " 8.4201e-02, 1.7078e-01, 3.0062e-01, -4.3804e-01]],\n", "\n", " [[-4.8065e-01, 2.6210e-01, -4.0260e-01, 5.8659e-01, 8.2546e-02,\n", " 3.4530e-02, 1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\n", " 1.0646e-01, 4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\n", " -1.5987e-02, -2.1735e-01, -2.0578e-01, 1.5982e-01, 5.9540e-02,\n", " -6.4146e-02, -6.8747e-02, 8.1613e-02, -2.4492e-01, -1.3727e-01,\n", " 2.8170e-02, 2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\n", " 3.1014e-01, -2.1871e-01, 2.2693e-01, 9.0831e-02, -1.9375e-01,\n", " -7.3290e-02, -4.6222e-01, -2.5226e-01, 2.8962e-01, 1.9681e-01,\n", " -5.0930e-01, 2.7643e-01, -7.9155e-02, -4.1990e-02, 2.0346e-01,\n", " 2.3497e-01, -2.8674e-01, -2.4855e-01, 1.9804e-01, 3.0052e-01,\n", " -6.0785e-02, 3.1826e-01, 1.9004e-01, -5.7711e-01, -4.9490e-01,\n", " -8.7735e-02, -1.7347e-03, 2.3653e-01, 2.0227e-02, -1.3482e-01,\n", " 1.6056e-01, 3.6861e-01, -9.3747e-02, -5.8709e-01],\n", " [ 2.8863e-01, 1.2149e-01, -6.2922e-01, 8.2764e-01, -2.3366e-01,\n", " -2.9659e-01, -1.3204e-01, 6.2296e-01, 4.1152e-01, -3.6350e-01,\n", " -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01, 4.4920e-01,\n", " 2.2330e-01, 5.0395e-01, 4.6923e-01, 4.3649e-01, -6.4579e-01,\n", " -7.1763e-01, 8.1157e-03, 3.5871e-01, 6.4578e-01, 3.9625e-01,\n", " -2.8031e-01, 2.3281e-01, 1.3482e-01, -1.3590e-01, -2.4081e-01,\n", " 2.4641e-01, -3.3319e-02, 6.3331e-01, 1.2224e-01, -1.5938e-01,\n", " 3.8584e-02, -5.9274e-01, 9.0730e-01, 3.3856e-01, 4.1958e-01,\n", " 3.3964e-02, 6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\n", " -4.5367e-01, 3.1252e-01, -6.7000e-01, 2.1814e-01, 7.2959e-01,\n", " -3.7967e-02, 3.6063e-02, 4.0004e-02, -7.2575e-01, -5.1842e-01,\n", " -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01, 5.4467e-01,\n", " -6.7269e-01, -5.9413e-01, 1.6626e-01, -3.8840e-01]],\n", "\n", " [[-2.7220e-01, -2.4531e-02, -1.6230e-01, 3.7354e-01, 2.7549e-01,\n", " 1.5702e-01, 4.3217e-01, -3.1798e-02, -2.4066e-02, 1.7492e-01,\n", " 3.4950e-01, 6.5571e-01, 3.6861e-02, -5.1874e-01, -2.7192e-01,\n", " 1.2709e-01, 2.2026e-02, -2.0383e-01, 1.1850e-01, 1.7263e-01,\n", " -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\n", " 5.0656e-01, -4.9259e-02, -1.8042e-01, 2.2685e-02, -1.6907e-02,\n", " 4.9316e-01, -4.0781e-01, 5.2768e-01, 1.4780e-01, -3.1708e-01,\n", " -5.8049e-02, -4.2868e-01, 1.5513e-01, 4.0871e-01, 6.9345e-02,\n", " -2.5745e-01, 2.2631e-01, -3.6025e-02, -1.1274e-01, 2.8092e-01,\n", " 2.8765e-01, -1.5027e-01, -4.8283e-01, 1.6113e-01, -1.1905e-01,\n", " 2.6178e-01, 4.1344e-01, 1.8685e-01, -1.6060e-01, -5.5496e-01,\n", " -2.1107e-02, -1.0227e-01, 3.2287e-01, 9.7470e-02, 2.6766e-01,\n", " 1.8691e-01, 8.5429e-02, 5.3812e-02, -4.7839e-02],\n", " [ 3.5464e-03, 2.9370e-01, -5.7085e-01, 3.3890e-01, -1.7416e-01,\n", " -1.8559e-01, -3.1623e-01, -4.1640e-01, 3.5136e-01, 1.9977e-01,\n", " -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01, 1.6816e-02,\n", " 1.6564e-01, 3.3103e-01, 5.8284e-01, 6.0926e-01, -3.8338e-01,\n", " -1.2137e-01, -8.2141e-02, 2.6694e-01, 5.6790e-01, 3.6747e-01,\n", " 2.3225e-01, 4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\n", " 2.9217e-01, -2.7284e-01, 6.6239e-01, -2.6185e-01, -3.1728e-01,\n", " 1.4997e-01, -1.1499e-01, 5.4129e-01, 5.1287e-01, 2.2698e-01,\n", " 6.5991e-02, 2.7580e-01, -9.2449e-02, 3.2780e-01, 2.8706e-01,\n", " -2.4724e-01, 1.3564e-01, 1.2187e-02, 1.0591e-01, 6.9933e-01,\n", " 5.7920e-02, 1.1761e-01, 3.0423e-01, -6.0233e-01, -3.1639e-01,\n", " 1.2788e-01, -3.2039e-01, 2.4106e-01, -5.5253e-02, 1.5497e-01,\n", " -1.4665e-01, -3.5109e-01, 1.5986e-01, -5.2488e-01]],\n", "\n", " [[ 3.7523e-01, -2.3620e-01, -4.9797e-02, 4.1835e-01, -1.5337e-01,\n", " -4.3592e-01, 6.0074e-02, 1.3534e-01, 1.7858e-01, 1.5966e-01,\n", " 3.3192e-01, 2.5094e-01, -5.0503e-03, 4.2395e-02, 1.9029e-01,\n", " 1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01, 9.0552e-02,\n", " -4.2521e-01, 3.6821e-01, -1.6868e-01, 2.4873e-01, -3.5418e-01,\n", " 1.5303e-01, 1.4946e-01, -2.1823e-01, 3.2424e-01, -1.1741e-01,\n", " -2.7139e-02, 2.0159e-02, -1.3201e-01, 8.5273e-02, 3.5133e-03,\n", " -4.1714e-01, -3.1202e-01, -1.2512e-01, 6.6698e-02, -8.2786e-02,\n", " 1.1544e-01, 1.8986e-01, -7.2979e-01, -1.3826e-01, 1.9034e-01,\n", " -2.3812e-01, -3.5628e-01, -2.2061e-02, 3.5664e-01, 6.5099e-02,\n", " 4.1999e-01, 1.4260e-01, -2.5012e-01, 1.5174e-01, -3.1281e-01,\n", " -3.5239e-01, 2.1327e-02, -1.5330e-01, -7.5938e-02, 1.5824e-01,\n", " -5.2105e-01, 7.9910e-02, 2.9691e-01, 1.0999e-01],\n", " [ 1.7269e-01, 7.1661e-01, -1.3392e-01, 2.4210e-01, -2.4052e-01,\n", " -2.5021e-01, -5.2839e-01, -1.0832e-01, 5.5602e-01, 3.8296e-01,\n", " 2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02, 1.5606e-01,\n", " 4.4199e-01, 5.1434e-01, 1.9665e-01, 8.0063e-01, -6.5867e-01,\n", " 9.2088e-02, -7.4456e-02, 8.8930e-02, 5.4215e-01, 5.4784e-01,\n", " 1.8820e-01, 1.0462e-01, 2.0219e-02, 9.1717e-03, -1.8383e-01,\n", " 5.4892e-01, -5.8456e-01, 3.5563e-01, 2.4806e-01, -1.4683e-01,\n", " 1.8306e-01, -6.4206e-02, 5.9534e-01, -4.2084e-02, 5.7999e-02,\n", " -1.0971e-01, 4.6418e-01, -1.8560e-02, 3.6068e-01, -4.5977e-02,\n", " -7.6532e-03, 2.3670e-01, 9.5715e-02, 4.4234e-01, 7.5172e-01,\n", " -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\n", " -8.5172e-03, -5.9053e-01, 2.6878e-01, -2.2309e-01, 7.8604e-01,\n", " -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\n", "\n", " [[ 3.9541e-01, 4.9519e-01, 1.1028e-01, 2.2783e-01, -2.1352e-01,\n", " -4.2290e-01, -3.8576e-01, 2.2347e-01, 4.9458e-01, 3.3885e-01,\n", " 3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03, 2.2591e-01,\n", " 4.0734e-01, 4.6116e-01, -1.0352e-01, 3.2594e-01, -5.3246e-01,\n", " -1.2795e-01, 3.0881e-01, -1.5611e-01, 2.7612e-01, 1.5252e-01,\n", " 1.9220e-01, 1.6186e-01, -6.1315e-02, 3.1383e-01, -2.0718e-01,\n", " 3.9542e-01, -5.2364e-01, -1.0867e-01, 4.3802e-01, 6.8734e-02,\n", " -1.5552e-01, -1.1045e-01, 1.0764e-01, -3.4260e-01, -1.5649e-01,\n", " -2.2060e-02, 3.6901e-01, -3.2511e-01, 5.9674e-02, -2.2943e-02,\n", " 3.1358e-02, -1.1782e-01, 4.7566e-02, 5.6886e-01, 2.8382e-01,\n", " 2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\n", " -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01, 7.6172e-01,\n", " -5.2932e-01, -4.2038e-01, -1.3811e-01, 9.3005e-02],\n", " [ 4.2985e-03, 5.3781e-01, 9.7958e-02, 6.4659e-01, -5.9524e-01,\n", " -2.4234e-01, -5.6040e-01, -8.2409e-01, 6.0406e-01, 2.5802e-01,\n", " 1.4920e-01, -7.4744e-01, -5.5557e-01, 3.0839e-01, -2.8524e-04,\n", " 7.6712e-01, 5.3626e-01, 6.4505e-01, 8.5630e-01, -6.8977e-01,\n", " -7.3681e-01, -3.5756e-01, 3.5687e-01, 5.4350e-01, 3.4881e-01,\n", " -8.0242e-01, 7.1195e-01, 8.1859e-02, -4.9816e-01, -1.9957e-01,\n", " 8.1895e-01, -3.0832e-01, 6.4616e-01, 2.4095e-01, -5.7400e-01,\n", " 1.5690e-01, -7.8424e-01, 6.9440e-01, 3.7262e-01, 9.6325e-02,\n", " -2.3760e-01, -6.6459e-01, -6.6820e-01, 6.2534e-01, 8.6112e-02,\n", " 1.6394e-01, -1.9756e-02, 2.5657e-01, 7.1100e-01, 9.1409e-01,\n", " -2.0942e-01, 4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\n", " 3.6628e-01, -8.2357e-01, 4.8054e-01, 8.2876e-01, 7.8838e-01,\n", " -3.1700e-01, -2.2284e-01, 7.4938e-01, -8.8767e-01]],\n", "\n", " [[ 2.0751e-01, 3.8295e-01, 2.3988e-01, 6.5699e-01, -5.7568e-01,\n", " -3.6006e-01, -4.8100e-01, -7.9433e-01, 5.6901e-01, 1.7161e-01,\n", " 2.8785e-01, -5.9491e-01, -4.3984e-01, 3.0638e-01, 9.5131e-03,\n", " 7.5487e-01, 5.2016e-01, 5.6168e-01, 5.5644e-01, -6.0117e-01,\n", " -6.7291e-01, -1.5772e-01, 1.8844e-01, 3.3261e-01, 1.1509e-01,\n", " -8.2417e-01, 7.0802e-01, 2.9094e-02, -3.2895e-01, -2.3967e-01,\n", " 7.7577e-01, -2.4526e-01, 5.9929e-01, 3.5422e-01, -4.4149e-01,\n", " -6.9179e-02, -7.8540e-01, 3.7833e-01, 2.8132e-01, -1.9018e-02,\n", " -1.6282e-01, -6.4327e-01, -7.5924e-01, 4.9658e-01, 8.3237e-02,\n", " 2.1320e-01, -2.6824e-01, 2.1273e-01, 7.7034e-01, 7.6653e-01,\n", " 1.5166e-02, 4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\n", " 2.4408e-01, -6.8280e-01, 3.1720e-01, 8.1391e-01, 7.6437e-01,\n", " -4.0419e-01, -1.7341e-01, 7.5999e-01, -7.8587e-01],\n", " [-3.5172e-01, 9.4749e-01, 9.3039e-02, 5.2600e-01, -4.9879e-01,\n", " -7.1578e-01, -9.3014e-01, -8.5450e-01, 8.4293e-01, 2.8136e-01,\n", " -1.3557e-01, -8.6492e-01, -6.6690e-01, 9.2696e-01, -1.7106e-01,\n", " 7.2665e-01, 2.6598e-01, 9.6001e-01, 9.6707e-01, -5.8140e-01,\n", " -9.7127e-01, -4.0630e-01, 3.7375e-01, 5.6344e-01, 7.4631e-02,\n", " -7.8830e-01, 5.5113e-01, 2.4708e-01, -4.1964e-01, -1.2664e-04,\n", " 9.2945e-01, -5.1485e-01, 4.9163e-01, -8.3042e-02, -1.8104e-01,\n", " 4.5435e-01, -7.3406e-01, 7.6429e-01, 4.7469e-01, 5.3298e-02,\n", " 7.7167e-01, -9.4698e-01, -7.0945e-01, 2.6853e-01, -8.7757e-01,\n", " 1.6556e-01, -1.4299e-01, -3.2505e-01, 7.4663e-01, 9.6821e-01,\n", " -6.8238e-01, 8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\n", " 4.0388e-01, -9.8040e-01, 8.1152e-01, 8.5002e-01, 7.9787e-01,\n", " -9.2759e-01, 4.8487e-01, 8.3804e-01, -9.2653e-01]],\n", "\n", " [[-2.1554e-01, 9.2967e-01, 2.0494e-01, 5.2804e-01, -4.8765e-01,\n", " -7.3976e-01, -9.2037e-01, -8.3445e-01, 8.1982e-01, 2.0183e-01,\n", " -1.4853e-01, -7.8974e-01, -6.0921e-01, 9.2589e-01, -1.7823e-01,\n", " 7.0490e-01, 2.6072e-01, 9.5497e-01, 9.1133e-01, -5.1347e-01,\n", " -9.5951e-01, -2.3076e-01, 2.1754e-01, 4.3733e-01, -2.9295e-02,\n", " -8.0489e-01, 5.3086e-01, 2.0390e-01, -3.0930e-01, -3.5179e-03,\n", " 9.1803e-01, -4.7151e-01, 4.4910e-01, -3.0464e-02, -1.2364e-01,\n", " 3.4547e-01, -7.2454e-01, 5.3417e-01, 4.1927e-01, -5.4921e-02,\n", " 7.7939e-01, -9.4286e-01, -7.4250e-01, 1.5274e-01, -8.7349e-01,\n", " 2.0929e-01, -3.1794e-01, -3.3657e-01, 7.9071e-01, 9.1712e-01,\n", " -5.6772e-01, 8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\n", " 2.9902e-01, -9.6587e-01, 7.5750e-01, 8.3694e-01, 7.7867e-01,\n", " -9.3306e-01, 4.5615e-01, 8.3903e-01, -8.6171e-01],\n", " [-5.8363e-01, 9.7749e-01, 8.7658e-02, 3.8939e-01, -4.0473e-01,\n", " -7.1746e-01, -9.7746e-01, -8.7006e-01, 9.1532e-01, 2.8459e-01,\n", " -2.2359e-01, -9.1768e-01, -7.4716e-01, 9.8367e-01, -2.7790e-01,\n", " 6.9578e-01, 1.8294e-01, 9.7452e-01, 9.8907e-01, -5.4132e-01,\n", " -9.9230e-01, -4.4919e-01, 3.8879e-01, 5.6903e-01, -5.8009e-02,\n", " -7.7496e-01, 4.3154e-01, 3.7605e-01, -4.2439e-01, 6.4348e-02,\n", " 9.4892e-01, -6.6214e-01, 3.6881e-01, -2.0051e-01, 1.2171e-01,\n", " 5.8965e-01, -6.7904e-01, 8.1712e-01, 5.3582e-01, 1.9643e-02,\n", " 9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\n", " 1.6236e-01, -2.0750e-01, -6.0565e-01, 7.7366e-01, 9.8503e-01,\n", " -8.3358e-01, 9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\n", " 4.3214e-01, -9.8765e-01, 9.0666e-01, 8.6743e-01, 8.4182e-01,\n", " -9.8590e-01, 6.4342e-01, 8.6847e-01, -9.4970e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([6, 8])\n", "dec_state: tensor([[[-0.0619, 0.7567, 0.1205, 0.3146, -0.0771, -0.2912, -0.4590,\n", " -0.2875, 0.8902, -0.5149, -0.5401, -0.9433, -0.4106, 0.8431,\n", " -0.2228, 0.4739, 0.7087, 0.9108, 0.4260, 0.5734, -0.2173,\n", " -0.0015, 0.0969, 0.8133, 0.0884, -0.8088, 0.6866, -0.1776,\n", " -0.6920, -0.4790, -0.0390, 0.3798, 0.7590, 0.3759, -0.2608,\n", " 0.1866, 0.4300, 0.3166, -0.0348, -0.0718, -0.0743, -0.7746,\n", " -0.3630, 0.1001, -0.9035, -0.5317, -0.5655, 0.1288, 0.4192,\n", " 0.9365, 0.6399, 0.6638, -0.8394, -0.1204, -0.9109, 0.2302,\n", " -0.7248, -0.3916, 0.8350, -0.5572, -0.8456, 0.8621, 0.2662,\n", " 0.2090],\n", " [-0.2767, 0.8894, -0.3564, 0.5279, -0.4105, 0.0656, -0.9167,\n", " -0.7913, 0.8128, -0.7535, -0.6824, -0.7956, -0.4263, 0.9789,\n", " -0.0665, 0.3864, 0.5544, 0.8427, 0.6987, 0.8968, 0.5111,\n", " -0.5644, 0.1894, 0.8616, 0.5779, -0.8460, 0.7724, 0.1171,\n", " -0.8536, 0.2645, -0.1319, 0.3148, 0.9148, 0.6079, -0.6065,\n", " -0.4402, 0.8145, 0.6784, -0.0376, 0.0951, -0.7069, -0.1107,\n", " 0.3654, -0.0601, -0.8398, 0.2703, -0.6797, -0.5191, 0.3495,\n", " 0.9757, 0.6839, 0.9661, -0.9464, 0.3785, -0.7692, 0.0596,\n", " -0.7438, 0.6235, 0.8007, -0.8292, -0.9440, 0.8517, 0.6813,\n", " -0.3706]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.7979e-01, 9.4467e-02, -1.0363e-01, 4.6698e-01, 2.1990e-01,\n", " 1.0968e-01, 6.3953e-02, -6.2686e-01, 3.3735e-01, -1.5381e-01,\n", " 4.4057e-01, -1.3544e-01, 3.1925e-02, 2.8315e-01, 1.3914e-01,\n", " 4.8791e-01, 2.2082e-01, 6.2355e-03, 2.7165e-01, 1.7884e-01,\n", " -5.0191e-01, -1.1003e-01, 2.6037e-01, -1.4109e-01, -4.9608e-01,\n", " 1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\n", " 1.6098e-01, -1.8203e-01, 8.5968e-02, 1.6584e-01, -1.8070e-01,\n", " -1.0343e-02, -5.9731e-01, 2.7544e-01, 5.4321e-01, 1.2392e-01,\n", " -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\n", " 3.5685e-01, -2.1323e-01, -1.0543e-01, 2.0594e-01, -2.2193e-02,\n", " 2.7921e-01, 4.1012e-01, 2.2706e-01, -5.1412e-01, -3.2686e-01,\n", " 1.8903e-01, -5.3830e-01, 2.9266e-01, 1.3446e-01, 1.6127e-01,\n", " -4.3490e-01, 1.0959e-01, -3.0305e-02, -3.5573e-01],\n", " [-2.6735e-01, 3.3112e-01, -2.7546e-01, 3.3183e-02, -8.5314e-02,\n", " -4.6477e-02, -2.8822e-01, 1.6451e-01, -7.2843e-02, -1.5546e-01,\n", " -2.3366e-01, -1.8629e-01, -5.3722e-01, 3.5115e-01, 1.0961e-01,\n", " -4.6762e-01, 4.1160e-01, 2.9585e-01, 9.0005e-02, -6.4770e-01,\n", " -6.2316e-01, -1.1505e-01, 1.1418e-01, -7.1088e-02, 1.3812e-01,\n", " -7.0793e-03, 1.7934e-01, 3.0685e-01, -1.1399e-01, -1.2434e-01,\n", " 1.6922e-01, -1.0212e-01, 4.3567e-02, -3.6941e-01, -1.6724e-01,\n", " -9.6767e-02, -2.0039e-01, 1.6684e-01, -6.7633e-02, -3.5034e-01,\n", " 1.3738e-01, 6.7207e-01, -8.7835e-02, 7.1087e-02, -6.5737e-01,\n", " -4.0125e-01, 4.1675e-01, -1.4082e-01, 3.5492e-02, 4.1041e-01,\n", " 1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\n", " 1.9867e-01, -4.3455e-01, 1.8238e-01, 7.0308e-02, -2.2539e-01,\n", " 8.4201e-02, 1.7078e-01, 3.0062e-01, -4.3804e-01]],\n", "\n", " [[-4.8065e-01, 2.6210e-01, -4.0260e-01, 5.8659e-01, 8.2546e-02,\n", " 3.4530e-02, 1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\n", " 1.0646e-01, 4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\n", " -1.5987e-02, -2.1735e-01, -2.0578e-01, 1.5982e-01, 5.9540e-02,\n", " -6.4146e-02, -6.8747e-02, 8.1613e-02, -2.4492e-01, -1.3727e-01,\n", " 2.8170e-02, 2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\n", " 3.1014e-01, -2.1871e-01, 2.2693e-01, 9.0831e-02, -1.9375e-01,\n", " -7.3290e-02, -4.6222e-01, -2.5226e-01, 2.8962e-01, 1.9681e-01,\n", " -5.0930e-01, 2.7643e-01, -7.9155e-02, -4.1990e-02, 2.0346e-01,\n", " 2.3497e-01, -2.8674e-01, -2.4855e-01, 1.9804e-01, 3.0052e-01,\n", " -6.0785e-02, 3.1826e-01, 1.9004e-01, -5.7711e-01, -4.9490e-01,\n", " -8.7735e-02, -1.7347e-03, 2.3653e-01, 2.0227e-02, -1.3482e-01,\n", " 1.6056e-01, 3.6861e-01, -9.3747e-02, -5.8709e-01],\n", " [ 2.8863e-01, 1.2149e-01, -6.2922e-01, 8.2764e-01, -2.3366e-01,\n", " -2.9659e-01, -1.3204e-01, 6.2296e-01, 4.1152e-01, -3.6350e-01,\n", " -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01, 4.4920e-01,\n", " 2.2330e-01, 5.0395e-01, 4.6923e-01, 4.3649e-01, -6.4579e-01,\n", " -7.1763e-01, 8.1157e-03, 3.5871e-01, 6.4578e-01, 3.9625e-01,\n", " -2.8031e-01, 2.3281e-01, 1.3482e-01, -1.3590e-01, -2.4081e-01,\n", " 2.4641e-01, -3.3319e-02, 6.3331e-01, 1.2224e-01, -1.5938e-01,\n", " 3.8584e-02, -5.9274e-01, 9.0730e-01, 3.3856e-01, 4.1958e-01,\n", " 3.3964e-02, 6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\n", " -4.5367e-01, 3.1252e-01, -6.7000e-01, 2.1814e-01, 7.2959e-01,\n", " -3.7967e-02, 3.6063e-02, 4.0004e-02, -7.2575e-01, -5.1842e-01,\n", " -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01, 5.4467e-01,\n", " -6.7269e-01, -5.9413e-01, 1.6626e-01, -3.8840e-01]],\n", "\n", " [[-2.7220e-01, -2.4531e-02, -1.6230e-01, 3.7354e-01, 2.7549e-01,\n", " 1.5702e-01, 4.3217e-01, -3.1798e-02, -2.4066e-02, 1.7492e-01,\n", " 3.4950e-01, 6.5571e-01, 3.6861e-02, -5.1874e-01, -2.7192e-01,\n", " 1.2709e-01, 2.2026e-02, -2.0383e-01, 1.1850e-01, 1.7263e-01,\n", " -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\n", " 5.0656e-01, -4.9259e-02, -1.8042e-01, 2.2685e-02, -1.6907e-02,\n", " 4.9316e-01, -4.0781e-01, 5.2768e-01, 1.4780e-01, -3.1708e-01,\n", " -5.8049e-02, -4.2868e-01, 1.5513e-01, 4.0871e-01, 6.9345e-02,\n", " -2.5745e-01, 2.2631e-01, -3.6025e-02, -1.1274e-01, 2.8092e-01,\n", " 2.8765e-01, -1.5027e-01, -4.8283e-01, 1.6113e-01, -1.1905e-01,\n", " 2.6178e-01, 4.1344e-01, 1.8685e-01, -1.6060e-01, -5.5496e-01,\n", " -2.1107e-02, -1.0227e-01, 3.2287e-01, 9.7470e-02, 2.6766e-01,\n", " 1.8691e-01, 8.5429e-02, 5.3812e-02, -4.7839e-02],\n", " [ 3.5464e-03, 2.9370e-01, -5.7085e-01, 3.3890e-01, -1.7416e-01,\n", " -1.8559e-01, -3.1623e-01, -4.1640e-01, 3.5136e-01, 1.9977e-01,\n", " -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01, 1.6816e-02,\n", " 1.6564e-01, 3.3103e-01, 5.8284e-01, 6.0926e-01, -3.8338e-01,\n", " -1.2137e-01, -8.2141e-02, 2.6694e-01, 5.6790e-01, 3.6747e-01,\n", " 2.3225e-01, 4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\n", " 2.9217e-01, -2.7284e-01, 6.6239e-01, -2.6185e-01, -3.1728e-01,\n", " 1.4997e-01, -1.1499e-01, 5.4129e-01, 5.1287e-01, 2.2698e-01,\n", " 6.5991e-02, 2.7580e-01, -9.2449e-02, 3.2780e-01, 2.8706e-01,\n", " -2.4724e-01, 1.3564e-01, 1.2187e-02, 1.0591e-01, 6.9933e-01,\n", " 5.7920e-02, 1.1761e-01, 3.0423e-01, -6.0233e-01, -3.1639e-01,\n", " 1.2788e-01, -3.2039e-01, 2.4106e-01, -5.5253e-02, 1.5497e-01,\n", " -1.4665e-01, -3.5109e-01, 1.5986e-01, -5.2488e-01]],\n", "\n", " [[ 3.7523e-01, -2.3620e-01, -4.9797e-02, 4.1835e-01, -1.5337e-01,\n", " -4.3592e-01, 6.0074e-02, 1.3534e-01, 1.7858e-01, 1.5966e-01,\n", " 3.3192e-01, 2.5094e-01, -5.0503e-03, 4.2395e-02, 1.9029e-01,\n", " 1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01, 9.0552e-02,\n", " -4.2521e-01, 3.6821e-01, -1.6868e-01, 2.4873e-01, -3.5418e-01,\n", " 1.5303e-01, 1.4946e-01, -2.1823e-01, 3.2424e-01, -1.1741e-01,\n", " -2.7139e-02, 2.0159e-02, -1.3201e-01, 8.5273e-02, 3.5133e-03,\n", " -4.1714e-01, -3.1202e-01, -1.2512e-01, 6.6698e-02, -8.2786e-02,\n", " 1.1544e-01, 1.8986e-01, -7.2979e-01, -1.3826e-01, 1.9034e-01,\n", " -2.3812e-01, -3.5628e-01, -2.2061e-02, 3.5664e-01, 6.5099e-02,\n", " 4.1999e-01, 1.4260e-01, -2.5012e-01, 1.5174e-01, -3.1281e-01,\n", " -3.5239e-01, 2.1327e-02, -1.5330e-01, -7.5938e-02, 1.5824e-01,\n", " -5.2105e-01, 7.9910e-02, 2.9691e-01, 1.0999e-01],\n", " [ 1.7269e-01, 7.1661e-01, -1.3392e-01, 2.4210e-01, -2.4052e-01,\n", " -2.5021e-01, -5.2839e-01, -1.0832e-01, 5.5602e-01, 3.8296e-01,\n", " 2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02, 1.5606e-01,\n", " 4.4199e-01, 5.1434e-01, 1.9665e-01, 8.0063e-01, -6.5867e-01,\n", " 9.2088e-02, -7.4456e-02, 8.8930e-02, 5.4215e-01, 5.4784e-01,\n", " 1.8820e-01, 1.0462e-01, 2.0219e-02, 9.1717e-03, -1.8383e-01,\n", " 5.4892e-01, -5.8456e-01, 3.5563e-01, 2.4806e-01, -1.4683e-01,\n", " 1.8306e-01, -6.4206e-02, 5.9534e-01, -4.2084e-02, 5.7999e-02,\n", " -1.0971e-01, 4.6418e-01, -1.8560e-02, 3.6068e-01, -4.5977e-02,\n", " -7.6532e-03, 2.3670e-01, 9.5715e-02, 4.4234e-01, 7.5172e-01,\n", " -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\n", " -8.5172e-03, -5.9053e-01, 2.6878e-01, -2.2309e-01, 7.8604e-01,\n", " -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\n", "\n", " [[ 3.9541e-01, 4.9519e-01, 1.1028e-01, 2.2783e-01, -2.1352e-01,\n", " -4.2290e-01, -3.8576e-01, 2.2347e-01, 4.9458e-01, 3.3885e-01,\n", " 3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03, 2.2591e-01,\n", " 4.0734e-01, 4.6116e-01, -1.0352e-01, 3.2594e-01, -5.3246e-01,\n", " -1.2795e-01, 3.0881e-01, -1.5611e-01, 2.7612e-01, 1.5252e-01,\n", " 1.9220e-01, 1.6186e-01, -6.1315e-02, 3.1383e-01, -2.0718e-01,\n", " 3.9542e-01, -5.2364e-01, -1.0867e-01, 4.3802e-01, 6.8734e-02,\n", " -1.5552e-01, -1.1045e-01, 1.0764e-01, -3.4260e-01, -1.5649e-01,\n", " -2.2060e-02, 3.6901e-01, -3.2511e-01, 5.9674e-02, -2.2943e-02,\n", " 3.1358e-02, -1.1782e-01, 4.7566e-02, 5.6886e-01, 2.8382e-01,\n", " 2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\n", " -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01, 7.6172e-01,\n", " -5.2932e-01, -4.2038e-01, -1.3811e-01, 9.3005e-02],\n", " [ 4.2985e-03, 5.3781e-01, 9.7958e-02, 6.4659e-01, -5.9524e-01,\n", " -2.4234e-01, -5.6040e-01, -8.2409e-01, 6.0406e-01, 2.5802e-01,\n", " 1.4920e-01, -7.4744e-01, -5.5557e-01, 3.0839e-01, -2.8524e-04,\n", " 7.6712e-01, 5.3626e-01, 6.4505e-01, 8.5630e-01, -6.8977e-01,\n", " -7.3681e-01, -3.5756e-01, 3.5687e-01, 5.4350e-01, 3.4881e-01,\n", " -8.0242e-01, 7.1195e-01, 8.1859e-02, -4.9816e-01, -1.9957e-01,\n", " 8.1895e-01, -3.0832e-01, 6.4616e-01, 2.4095e-01, -5.7400e-01,\n", " 1.5690e-01, -7.8424e-01, 6.9440e-01, 3.7262e-01, 9.6325e-02,\n", " -2.3760e-01, -6.6459e-01, -6.6820e-01, 6.2534e-01, 8.6112e-02,\n", " 1.6394e-01, -1.9756e-02, 2.5657e-01, 7.1100e-01, 9.1409e-01,\n", " -2.0942e-01, 4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\n", " 3.6628e-01, -8.2357e-01, 4.8054e-01, 8.2876e-01, 7.8838e-01,\n", " -3.1700e-01, -2.2284e-01, 7.4938e-01, -8.8767e-01]],\n", "\n", " [[ 2.0751e-01, 3.8295e-01, 2.3988e-01, 6.5699e-01, -5.7568e-01,\n", " -3.6006e-01, -4.8100e-01, -7.9433e-01, 5.6901e-01, 1.7161e-01,\n", " 2.8785e-01, -5.9491e-01, -4.3984e-01, 3.0638e-01, 9.5131e-03,\n", " 7.5487e-01, 5.2016e-01, 5.6168e-01, 5.5644e-01, -6.0117e-01,\n", " -6.7291e-01, -1.5772e-01, 1.8844e-01, 3.3261e-01, 1.1509e-01,\n", " -8.2417e-01, 7.0802e-01, 2.9094e-02, -3.2895e-01, -2.3967e-01,\n", " 7.7577e-01, -2.4526e-01, 5.9929e-01, 3.5422e-01, -4.4149e-01,\n", " -6.9179e-02, -7.8540e-01, 3.7833e-01, 2.8132e-01, -1.9018e-02,\n", " -1.6282e-01, -6.4327e-01, -7.5924e-01, 4.9658e-01, 8.3237e-02,\n", " 2.1320e-01, -2.6824e-01, 2.1273e-01, 7.7034e-01, 7.6653e-01,\n", " 1.5166e-02, 4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\n", " 2.4408e-01, -6.8280e-01, 3.1720e-01, 8.1391e-01, 7.6437e-01,\n", " -4.0419e-01, -1.7341e-01, 7.5999e-01, -7.8587e-01],\n", " [-3.5172e-01, 9.4749e-01, 9.3039e-02, 5.2600e-01, -4.9879e-01,\n", " -7.1578e-01, -9.3014e-01, -8.5450e-01, 8.4293e-01, 2.8136e-01,\n", " -1.3557e-01, -8.6492e-01, -6.6690e-01, 9.2696e-01, -1.7106e-01,\n", " 7.2665e-01, 2.6598e-01, 9.6001e-01, 9.6707e-01, -5.8140e-01,\n", " -9.7127e-01, -4.0630e-01, 3.7375e-01, 5.6344e-01, 7.4631e-02,\n", " -7.8830e-01, 5.5113e-01, 2.4708e-01, -4.1964e-01, -1.2664e-04,\n", " 9.2945e-01, -5.1485e-01, 4.9163e-01, -8.3042e-02, -1.8104e-01,\n", " 4.5435e-01, -7.3406e-01, 7.6429e-01, 4.7469e-01, 5.3298e-02,\n", " 7.7167e-01, -9.4698e-01, -7.0945e-01, 2.6853e-01, -8.7757e-01,\n", " 1.6556e-01, -1.4299e-01, -3.2505e-01, 7.4663e-01, 9.6821e-01,\n", " -6.8238e-01, 8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\n", " 4.0388e-01, -9.8040e-01, 8.1152e-01, 8.5002e-01, 7.9787e-01,\n", " -9.2759e-01, 4.8487e-01, 8.3804e-01, -9.2653e-01]],\n", "\n", " [[-2.1554e-01, 9.2967e-01, 2.0494e-01, 5.2804e-01, -4.8765e-01,\n", " -7.3976e-01, -9.2037e-01, -8.3445e-01, 8.1982e-01, 2.0183e-01,\n", " -1.4853e-01, -7.8974e-01, -6.0921e-01, 9.2589e-01, -1.7823e-01,\n", " 7.0490e-01, 2.6072e-01, 9.5497e-01, 9.1133e-01, -5.1347e-01,\n", " -9.5951e-01, -2.3076e-01, 2.1754e-01, 4.3733e-01, -2.9295e-02,\n", " -8.0489e-01, 5.3086e-01, 2.0390e-01, -3.0930e-01, -3.5179e-03,\n", " 9.1803e-01, -4.7151e-01, 4.4910e-01, -3.0464e-02, -1.2364e-01,\n", " 3.4547e-01, -7.2454e-01, 5.3417e-01, 4.1927e-01, -5.4921e-02,\n", " 7.7939e-01, -9.4286e-01, -7.4250e-01, 1.5274e-01, -8.7349e-01,\n", " 2.0929e-01, -3.1794e-01, -3.3657e-01, 7.9071e-01, 9.1712e-01,\n", " -5.6772e-01, 8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\n", " 2.9902e-01, -9.6587e-01, 7.5750e-01, 8.3694e-01, 7.7867e-01,\n", " -9.3306e-01, 4.5615e-01, 8.3903e-01, -8.6171e-01],\n", " [-5.8363e-01, 9.7749e-01, 8.7658e-02, 3.8939e-01, -4.0473e-01,\n", " -7.1746e-01, -9.7746e-01, -8.7006e-01, 9.1532e-01, 2.8459e-01,\n", " -2.2359e-01, -9.1768e-01, -7.4716e-01, 9.8367e-01, -2.7790e-01,\n", " 6.9578e-01, 1.8294e-01, 9.7452e-01, 9.8907e-01, -5.4132e-01,\n", " -9.9230e-01, -4.4919e-01, 3.8879e-01, 5.6903e-01, -5.8009e-02,\n", " -7.7496e-01, 4.3154e-01, 3.7605e-01, -4.2439e-01, 6.4348e-02,\n", " 9.4892e-01, -6.6214e-01, 3.6881e-01, -2.0051e-01, 1.2171e-01,\n", " 5.8965e-01, -6.7904e-01, 8.1712e-01, 5.3582e-01, 1.9643e-02,\n", " 9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\n", " 1.6236e-01, -2.0750e-01, -6.0565e-01, 7.7366e-01, 9.8503e-01,\n", " -8.3358e-01, 9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\n", " 4.3214e-01, -9.8765e-01, 9.0666e-01, 8.6743e-01, 8.4182e-01,\n", " -9.8590e-01, 6.4342e-01, 8.6847e-01, -9.4970e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([4, 4])\n", "dec_state: tensor([[[ 0.4145, 0.8034, -0.4497, 0.8137, 0.1620, -0.1642, -0.5163,\n", " 0.6276, 0.1669, -0.8109, -0.7122, -0.8870, -0.2438, 0.7051,\n", " -0.4046, 0.1736, 0.7841, 0.7520, -0.5989, 0.3950, 0.2712,\n", " -0.3587, 0.0194, 0.8535, 0.5979, -0.8901, 0.5302, -0.2672,\n", " -0.7822, -0.6777, -0.7786, 0.6688, -0.0781, 0.5255, -0.1296,\n", " 0.1052, 0.2813, -0.1268, -0.2628, 0.5788, -0.0837, -0.1216,\n", " 0.1174, 0.2317, -0.4765, -0.6229, 0.2213, 0.8543, 0.3167,\n", " 0.9137, 0.1647, 0.5662, -0.7528, -0.2908, -0.8550, 0.2875,\n", " -0.0267, -0.3560, -0.3308, -0.0200, -0.8423, 0.8980, -0.3055,\n", " -0.0134],\n", " [ 0.2716, 0.9305, -0.7244, 0.8304, 0.1074, 0.1377, -0.8548,\n", " 0.4808, 0.1763, -0.9296, -0.7709, -0.8660, -0.2169, 0.9077,\n", " -0.3215, 0.1061, 0.6931, 0.6811, -0.4758, 0.6829, 0.6935,\n", " -0.6841, -0.0492, 0.8936, 0.8336, -0.9220, 0.4413, -0.2281,\n", " -0.9198, -0.6208, -0.8434, 0.6866, -0.1222, 0.6724, -0.5153,\n", " -0.3472, 0.4738, 0.0631, -0.2764, 0.7384, -0.6184, 0.3584,\n", " 0.6517, 0.1828, -0.6488, -0.2904, -0.1656, 0.8305, 0.2865,\n", " 0.9618, 0.7392, 0.8290, -0.8448, 0.0346, -0.8366, 0.0970,\n", " 0.1140, 0.1170, -0.2594, -0.1908, -0.9644, 0.9174, 0.0642,\n", " -0.2290]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.7979e-01, 9.4467e-02, -1.0363e-01, 4.6698e-01, 2.1990e-01,\n", " 1.0968e-01, 6.3953e-02, -6.2686e-01, 3.3735e-01, -1.5381e-01,\n", " 4.4057e-01, -1.3544e-01, 3.1925e-02, 2.8315e-01, 1.3914e-01,\n", " 4.8791e-01, 2.2082e-01, 6.2355e-03, 2.7165e-01, 1.7884e-01,\n", " -5.0191e-01, -1.1003e-01, 2.6037e-01, -1.4109e-01, -4.9608e-01,\n", " 1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\n", " 1.6098e-01, -1.8203e-01, 8.5968e-02, 1.6584e-01, -1.8070e-01,\n", " -1.0343e-02, -5.9731e-01, 2.7544e-01, 5.4321e-01, 1.2392e-01,\n", " -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\n", " 3.5685e-01, -2.1323e-01, -1.0543e-01, 2.0594e-01, -2.2193e-02,\n", " 2.7921e-01, 4.1012e-01, 2.2706e-01, -5.1412e-01, -3.2686e-01,\n", " 1.8903e-01, -5.3830e-01, 2.9266e-01, 1.3446e-01, 1.6127e-01,\n", " -4.3490e-01, 1.0959e-01, -3.0305e-02, -3.5573e-01],\n", " [-2.6735e-01, 3.3112e-01, -2.7546e-01, 3.3183e-02, -8.5314e-02,\n", " -4.6477e-02, -2.8822e-01, 1.6451e-01, -7.2843e-02, -1.5546e-01,\n", " -2.3366e-01, -1.8629e-01, -5.3722e-01, 3.5115e-01, 1.0961e-01,\n", " -4.6762e-01, 4.1160e-01, 2.9585e-01, 9.0005e-02, -6.4770e-01,\n", " -6.2316e-01, -1.1505e-01, 1.1418e-01, -7.1088e-02, 1.3812e-01,\n", " -7.0793e-03, 1.7934e-01, 3.0685e-01, -1.1399e-01, -1.2434e-01,\n", " 1.6922e-01, -1.0212e-01, 4.3567e-02, -3.6941e-01, -1.6724e-01,\n", " -9.6767e-02, -2.0039e-01, 1.6684e-01, -6.7633e-02, -3.5034e-01,\n", " 1.3738e-01, 6.7207e-01, -8.7835e-02, 7.1087e-02, -6.5737e-01,\n", " -4.0125e-01, 4.1675e-01, -1.4082e-01, 3.5492e-02, 4.1041e-01,\n", " 1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\n", " 1.9867e-01, -4.3455e-01, 1.8238e-01, 7.0308e-02, -2.2539e-01,\n", " 8.4201e-02, 1.7078e-01, 3.0062e-01, -4.3804e-01]],\n", "\n", " [[-4.8065e-01, 2.6210e-01, -4.0260e-01, 5.8659e-01, 8.2546e-02,\n", " 3.4530e-02, 1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\n", " 1.0646e-01, 4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\n", " -1.5987e-02, -2.1735e-01, -2.0578e-01, 1.5982e-01, 5.9540e-02,\n", " -6.4146e-02, -6.8747e-02, 8.1613e-02, -2.4492e-01, -1.3727e-01,\n", " 2.8170e-02, 2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\n", " 3.1014e-01, -2.1871e-01, 2.2693e-01, 9.0831e-02, -1.9375e-01,\n", " -7.3290e-02, -4.6222e-01, -2.5226e-01, 2.8962e-01, 1.9681e-01,\n", " -5.0930e-01, 2.7643e-01, -7.9155e-02, -4.1990e-02, 2.0346e-01,\n", " 2.3497e-01, -2.8674e-01, -2.4855e-01, 1.9804e-01, 3.0052e-01,\n", " -6.0785e-02, 3.1826e-01, 1.9004e-01, -5.7711e-01, -4.9490e-01,\n", " -8.7735e-02, -1.7347e-03, 2.3653e-01, 2.0227e-02, -1.3482e-01,\n", " 1.6056e-01, 3.6861e-01, -9.3747e-02, -5.8709e-01],\n", " [ 2.8863e-01, 1.2149e-01, -6.2922e-01, 8.2764e-01, -2.3366e-01,\n", " -2.9659e-01, -1.3204e-01, 6.2296e-01, 4.1152e-01, -3.6350e-01,\n", " -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01, 4.4920e-01,\n", " 2.2330e-01, 5.0395e-01, 4.6923e-01, 4.3649e-01, -6.4579e-01,\n", " -7.1763e-01, 8.1157e-03, 3.5871e-01, 6.4578e-01, 3.9625e-01,\n", " -2.8031e-01, 2.3281e-01, 1.3482e-01, -1.3590e-01, -2.4081e-01,\n", " 2.4641e-01, -3.3319e-02, 6.3331e-01, 1.2224e-01, -1.5938e-01,\n", " 3.8584e-02, -5.9274e-01, 9.0730e-01, 3.3856e-01, 4.1958e-01,\n", " 3.3964e-02, 6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\n", " -4.5367e-01, 3.1252e-01, -6.7000e-01, 2.1814e-01, 7.2959e-01,\n", " -3.7967e-02, 3.6063e-02, 4.0004e-02, -7.2575e-01, -5.1842e-01,\n", " -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01, 5.4467e-01,\n", " -6.7269e-01, -5.9413e-01, 1.6626e-01, -3.8840e-01]],\n", "\n", " [[-2.7220e-01, -2.4531e-02, -1.6230e-01, 3.7354e-01, 2.7549e-01,\n", " 1.5702e-01, 4.3217e-01, -3.1798e-02, -2.4066e-02, 1.7492e-01,\n", " 3.4950e-01, 6.5571e-01, 3.6861e-02, -5.1874e-01, -2.7192e-01,\n", " 1.2709e-01, 2.2026e-02, -2.0383e-01, 1.1850e-01, 1.7263e-01,\n", " -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\n", " 5.0656e-01, -4.9259e-02, -1.8042e-01, 2.2685e-02, -1.6907e-02,\n", " 4.9316e-01, -4.0781e-01, 5.2768e-01, 1.4780e-01, -3.1708e-01,\n", " -5.8049e-02, -4.2868e-01, 1.5513e-01, 4.0871e-01, 6.9345e-02,\n", " -2.5745e-01, 2.2631e-01, -3.6025e-02, -1.1274e-01, 2.8092e-01,\n", " 2.8765e-01, -1.5027e-01, -4.8283e-01, 1.6113e-01, -1.1905e-01,\n", " 2.6178e-01, 4.1344e-01, 1.8685e-01, -1.6060e-01, -5.5496e-01,\n", " -2.1107e-02, -1.0227e-01, 3.2287e-01, 9.7470e-02, 2.6766e-01,\n", " 1.8691e-01, 8.5429e-02, 5.3812e-02, -4.7839e-02],\n", " [ 3.5464e-03, 2.9370e-01, -5.7085e-01, 3.3890e-01, -1.7416e-01,\n", " -1.8559e-01, -3.1623e-01, -4.1640e-01, 3.5136e-01, 1.9977e-01,\n", " -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01, 1.6816e-02,\n", " 1.6564e-01, 3.3103e-01, 5.8284e-01, 6.0926e-01, -3.8338e-01,\n", " -1.2137e-01, -8.2141e-02, 2.6694e-01, 5.6790e-01, 3.6747e-01,\n", " 2.3225e-01, 4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\n", " 2.9217e-01, -2.7284e-01, 6.6239e-01, -2.6185e-01, -3.1728e-01,\n", " 1.4997e-01, -1.1499e-01, 5.4129e-01, 5.1287e-01, 2.2698e-01,\n", " 6.5991e-02, 2.7580e-01, -9.2449e-02, 3.2780e-01, 2.8706e-01,\n", " -2.4724e-01, 1.3564e-01, 1.2187e-02, 1.0591e-01, 6.9933e-01,\n", " 5.7920e-02, 1.1761e-01, 3.0423e-01, -6.0233e-01, -3.1639e-01,\n", " 1.2788e-01, -3.2039e-01, 2.4106e-01, -5.5253e-02, 1.5497e-01,\n", " -1.4665e-01, -3.5109e-01, 1.5986e-01, -5.2488e-01]],\n", "\n", " [[ 3.7523e-01, -2.3620e-01, -4.9797e-02, 4.1835e-01, -1.5337e-01,\n", " -4.3592e-01, 6.0074e-02, 1.3534e-01, 1.7858e-01, 1.5966e-01,\n", " 3.3192e-01, 2.5094e-01, -5.0503e-03, 4.2395e-02, 1.9029e-01,\n", " 1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01, 9.0552e-02,\n", " -4.2521e-01, 3.6821e-01, -1.6868e-01, 2.4873e-01, -3.5418e-01,\n", " 1.5303e-01, 1.4946e-01, -2.1823e-01, 3.2424e-01, -1.1741e-01,\n", " -2.7139e-02, 2.0159e-02, -1.3201e-01, 8.5273e-02, 3.5133e-03,\n", " -4.1714e-01, -3.1202e-01, -1.2512e-01, 6.6698e-02, -8.2786e-02,\n", " 1.1544e-01, 1.8986e-01, -7.2979e-01, -1.3826e-01, 1.9034e-01,\n", " -2.3812e-01, -3.5628e-01, -2.2061e-02, 3.5664e-01, 6.5099e-02,\n", " 4.1999e-01, 1.4260e-01, -2.5012e-01, 1.5174e-01, -3.1281e-01,\n", " -3.5239e-01, 2.1327e-02, -1.5330e-01, -7.5938e-02, 1.5824e-01,\n", " -5.2105e-01, 7.9910e-02, 2.9691e-01, 1.0999e-01],\n", " [ 1.7269e-01, 7.1661e-01, -1.3392e-01, 2.4210e-01, -2.4052e-01,\n", " -2.5021e-01, -5.2839e-01, -1.0832e-01, 5.5602e-01, 3.8296e-01,\n", " 2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02, 1.5606e-01,\n", " 4.4199e-01, 5.1434e-01, 1.9665e-01, 8.0063e-01, -6.5867e-01,\n", " 9.2088e-02, -7.4456e-02, 8.8930e-02, 5.4215e-01, 5.4784e-01,\n", " 1.8820e-01, 1.0462e-01, 2.0219e-02, 9.1717e-03, -1.8383e-01,\n", " 5.4892e-01, -5.8456e-01, 3.5563e-01, 2.4806e-01, -1.4683e-01,\n", " 1.8306e-01, -6.4206e-02, 5.9534e-01, -4.2084e-02, 5.7999e-02,\n", " -1.0971e-01, 4.6418e-01, -1.8560e-02, 3.6068e-01, -4.5977e-02,\n", " -7.6532e-03, 2.3670e-01, 9.5715e-02, 4.4234e-01, 7.5172e-01,\n", " -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\n", " -8.5172e-03, -5.9053e-01, 2.6878e-01, -2.2309e-01, 7.8604e-01,\n", " -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\n", "\n", " [[ 3.9541e-01, 4.9519e-01, 1.1028e-01, 2.2783e-01, -2.1352e-01,\n", " -4.2290e-01, -3.8576e-01, 2.2347e-01, 4.9458e-01, 3.3885e-01,\n", " 3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03, 2.2591e-01,\n", " 4.0734e-01, 4.6116e-01, -1.0352e-01, 3.2594e-01, -5.3246e-01,\n", " -1.2795e-01, 3.0881e-01, -1.5611e-01, 2.7612e-01, 1.5252e-01,\n", " 1.9220e-01, 1.6186e-01, -6.1315e-02, 3.1383e-01, -2.0718e-01,\n", " 3.9542e-01, -5.2364e-01, -1.0867e-01, 4.3802e-01, 6.8734e-02,\n", " -1.5552e-01, -1.1045e-01, 1.0764e-01, -3.4260e-01, -1.5649e-01,\n", " -2.2060e-02, 3.6901e-01, -3.2511e-01, 5.9674e-02, -2.2943e-02,\n", " 3.1358e-02, -1.1782e-01, 4.7566e-02, 5.6886e-01, 2.8382e-01,\n", " 2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\n", " -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01, 7.6172e-01,\n", " -5.2932e-01, -4.2038e-01, -1.3811e-01, 9.3005e-02],\n", " [ 4.2985e-03, 5.3781e-01, 9.7958e-02, 6.4659e-01, -5.9524e-01,\n", " -2.4234e-01, -5.6040e-01, -8.2409e-01, 6.0406e-01, 2.5802e-01,\n", " 1.4920e-01, -7.4744e-01, -5.5557e-01, 3.0839e-01, -2.8524e-04,\n", " 7.6712e-01, 5.3626e-01, 6.4505e-01, 8.5630e-01, -6.8977e-01,\n", " -7.3681e-01, -3.5756e-01, 3.5687e-01, 5.4350e-01, 3.4881e-01,\n", " -8.0242e-01, 7.1195e-01, 8.1859e-02, -4.9816e-01, -1.9957e-01,\n", " 8.1895e-01, -3.0832e-01, 6.4616e-01, 2.4095e-01, -5.7400e-01,\n", " 1.5690e-01, -7.8424e-01, 6.9440e-01, 3.7262e-01, 9.6325e-02,\n", " -2.3760e-01, -6.6459e-01, -6.6820e-01, 6.2534e-01, 8.6112e-02,\n", " 1.6394e-01, -1.9756e-02, 2.5657e-01, 7.1100e-01, 9.1409e-01,\n", " -2.0942e-01, 4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\n", " 3.6628e-01, -8.2357e-01, 4.8054e-01, 8.2876e-01, 7.8838e-01,\n", " -3.1700e-01, -2.2284e-01, 7.4938e-01, -8.8767e-01]],\n", "\n", " [[ 2.0751e-01, 3.8295e-01, 2.3988e-01, 6.5699e-01, -5.7568e-01,\n", " -3.6006e-01, -4.8100e-01, -7.9433e-01, 5.6901e-01, 1.7161e-01,\n", " 2.8785e-01, -5.9491e-01, -4.3984e-01, 3.0638e-01, 9.5131e-03,\n", " 7.5487e-01, 5.2016e-01, 5.6168e-01, 5.5644e-01, -6.0117e-01,\n", " -6.7291e-01, -1.5772e-01, 1.8844e-01, 3.3261e-01, 1.1509e-01,\n", " -8.2417e-01, 7.0802e-01, 2.9094e-02, -3.2895e-01, -2.3967e-01,\n", " 7.7577e-01, -2.4526e-01, 5.9929e-01, 3.5422e-01, -4.4149e-01,\n", " -6.9179e-02, -7.8540e-01, 3.7833e-01, 2.8132e-01, -1.9018e-02,\n", " -1.6282e-01, -6.4327e-01, -7.5924e-01, 4.9658e-01, 8.3237e-02,\n", " 2.1320e-01, -2.6824e-01, 2.1273e-01, 7.7034e-01, 7.6653e-01,\n", " 1.5166e-02, 4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\n", " 2.4408e-01, -6.8280e-01, 3.1720e-01, 8.1391e-01, 7.6437e-01,\n", " -4.0419e-01, -1.7341e-01, 7.5999e-01, -7.8587e-01],\n", " [-3.5172e-01, 9.4749e-01, 9.3039e-02, 5.2600e-01, -4.9879e-01,\n", " -7.1578e-01, -9.3014e-01, -8.5450e-01, 8.4293e-01, 2.8136e-01,\n", " -1.3557e-01, -8.6492e-01, -6.6690e-01, 9.2696e-01, -1.7106e-01,\n", " 7.2665e-01, 2.6598e-01, 9.6001e-01, 9.6707e-01, -5.8140e-01,\n", " -9.7127e-01, -4.0630e-01, 3.7375e-01, 5.6344e-01, 7.4631e-02,\n", " -7.8830e-01, 5.5113e-01, 2.4708e-01, -4.1964e-01, -1.2664e-04,\n", " 9.2945e-01, -5.1485e-01, 4.9163e-01, -8.3042e-02, -1.8104e-01,\n", " 4.5435e-01, -7.3406e-01, 7.6429e-01, 4.7469e-01, 5.3298e-02,\n", " 7.7167e-01, -9.4698e-01, -7.0945e-01, 2.6853e-01, -8.7757e-01,\n", " 1.6556e-01, -1.4299e-01, -3.2505e-01, 7.4663e-01, 9.6821e-01,\n", " -6.8238e-01, 8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\n", " 4.0388e-01, -9.8040e-01, 8.1152e-01, 8.5002e-01, 7.9787e-01,\n", " -9.2759e-01, 4.8487e-01, 8.3804e-01, -9.2653e-01]],\n", "\n", " [[-2.1554e-01, 9.2967e-01, 2.0494e-01, 5.2804e-01, -4.8765e-01,\n", " -7.3976e-01, -9.2037e-01, -8.3445e-01, 8.1982e-01, 2.0183e-01,\n", " -1.4853e-01, -7.8974e-01, -6.0921e-01, 9.2589e-01, -1.7823e-01,\n", " 7.0490e-01, 2.6072e-01, 9.5497e-01, 9.1133e-01, -5.1347e-01,\n", " -9.5951e-01, -2.3076e-01, 2.1754e-01, 4.3733e-01, -2.9295e-02,\n", " -8.0489e-01, 5.3086e-01, 2.0390e-01, -3.0930e-01, -3.5179e-03,\n", " 9.1803e-01, -4.7151e-01, 4.4910e-01, -3.0464e-02, -1.2364e-01,\n", " 3.4547e-01, -7.2454e-01, 5.3417e-01, 4.1927e-01, -5.4921e-02,\n", " 7.7939e-01, -9.4286e-01, -7.4250e-01, 1.5274e-01, -8.7349e-01,\n", " 2.0929e-01, -3.1794e-01, -3.3657e-01, 7.9071e-01, 9.1712e-01,\n", " -5.6772e-01, 8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\n", " 2.9902e-01, -9.6587e-01, 7.5750e-01, 8.3694e-01, 7.7867e-01,\n", " -9.3306e-01, 4.5615e-01, 8.3903e-01, -8.6171e-01],\n", " [-5.8363e-01, 9.7749e-01, 8.7658e-02, 3.8939e-01, -4.0473e-01,\n", " -7.1746e-01, -9.7746e-01, -8.7006e-01, 9.1532e-01, 2.8459e-01,\n", " -2.2359e-01, -9.1768e-01, -7.4716e-01, 9.8367e-01, -2.7790e-01,\n", " 6.9578e-01, 1.8294e-01, 9.7452e-01, 9.8907e-01, -5.4132e-01,\n", " -9.9230e-01, -4.4919e-01, 3.8879e-01, 5.6903e-01, -5.8009e-02,\n", " -7.7496e-01, 4.3154e-01, 3.7605e-01, -4.2439e-01, 6.4348e-02,\n", " 9.4892e-01, -6.6214e-01, 3.6881e-01, -2.0051e-01, 1.2171e-01,\n", " 5.8965e-01, -6.7904e-01, 8.1712e-01, 5.3582e-01, 1.9643e-02,\n", " 9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\n", " 1.6236e-01, -2.0750e-01, -6.0565e-01, 7.7366e-01, 9.8503e-01,\n", " -8.3358e-01, 9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\n", " 4.3214e-01, -9.8765e-01, 9.0666e-01, 8.6743e-01, 8.4182e-01,\n", " -9.8590e-01, 6.4342e-01, 8.6847e-01, -9.4970e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([24, 29])\n", "dec_state: tensor([[[ 0.6927, 0.7885, -0.7646, 0.8062, 0.3100, -0.0495, -0.5363,\n", " 0.4349, 0.1901, -0.5013, -0.4259, -0.8109, 0.5571, 0.7493,\n", " -0.5011, 0.3282, 0.5875, 0.1143, -0.5180, 0.6524, 0.5600,\n", " -0.5203, 0.0943, 0.7639, 0.8379, -0.9109, -0.1592, -0.3479,\n", " -0.5785, -0.7633, -0.6723, 0.7714, 0.5959, 0.6716, -0.1297,\n", " -0.4177, 0.5829, -0.2754, 0.0319, 0.5388, -0.1466, 0.2963,\n", " 0.5819, 0.1801, -0.5854, -0.0340, -0.2865, 0.4052, 0.0876,\n", " 0.6361, -0.5384, 0.8541, -0.7245, -0.3613, -0.8596, 0.0126,\n", " 0.2066, 0.1447, -0.0522, 0.0949, -0.8303, 0.3892, 0.0010,\n", " -0.2699],\n", " [-0.0484, 0.8194, -0.8151, 0.8807, 0.5156, 0.3591, -0.8820,\n", " 0.2110, -0.0696, -0.9281, -0.7607, -0.8087, -0.5462, 0.8515,\n", " -0.6799, -0.2686, 0.8810, -0.0436, -0.6276, 0.5586, 0.9290,\n", " -0.7215, -0.4830, 0.8401, 0.2455, -0.8777, 0.0478, -0.2909,\n", " -0.9443, -0.8375, -0.8308, 0.9417, 0.0429, 0.5245, -0.6080,\n", " -0.5695, 0.6645, -0.4080, 0.0527, 0.8649, -0.6208, 0.2713,\n", " 0.7361, 0.2800, -0.6884, -0.4432, -0.7259, 0.7759, -0.1780,\n", " 0.6265, 0.5081, 0.8803, -0.8517, -0.0984, -0.9256, 0.1093,\n", " 0.3689, 0.7440, 0.2925, 0.1899, -0.9518, 0.8312, 0.0973,\n", " -0.1482]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.7979e-01, 9.4467e-02, -1.0363e-01, 4.6698e-01, 2.1990e-01,\n", " 1.0968e-01, 6.3953e-02, -6.2686e-01, 3.3735e-01, -1.5381e-01,\n", " 4.4057e-01, -1.3544e-01, 3.1925e-02, 2.8315e-01, 1.3914e-01,\n", " 4.8791e-01, 2.2082e-01, 6.2355e-03, 2.7165e-01, 1.7884e-01,\n", " -5.0191e-01, -1.1003e-01, 2.6037e-01, -1.4109e-01, -4.9608e-01,\n", " 1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\n", " 1.6098e-01, -1.8203e-01, 8.5968e-02, 1.6584e-01, -1.8070e-01,\n", " -1.0343e-02, -5.9731e-01, 2.7544e-01, 5.4321e-01, 1.2392e-01,\n", " -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\n", " 3.5685e-01, -2.1323e-01, -1.0543e-01, 2.0594e-01, -2.2193e-02,\n", " 2.7921e-01, 4.1012e-01, 2.2706e-01, -5.1412e-01, -3.2686e-01,\n", " 1.8903e-01, -5.3830e-01, 2.9266e-01, 1.3446e-01, 1.6127e-01,\n", " -4.3490e-01, 1.0959e-01, -3.0305e-02, -3.5573e-01],\n", " [-2.6735e-01, 3.3112e-01, -2.7546e-01, 3.3183e-02, -8.5314e-02,\n", " -4.6477e-02, -2.8822e-01, 1.6451e-01, -7.2843e-02, -1.5546e-01,\n", " -2.3366e-01, -1.8629e-01, -5.3722e-01, 3.5115e-01, 1.0961e-01,\n", " -4.6762e-01, 4.1160e-01, 2.9585e-01, 9.0005e-02, -6.4770e-01,\n", " -6.2316e-01, -1.1505e-01, 1.1418e-01, -7.1088e-02, 1.3812e-01,\n", " -7.0793e-03, 1.7934e-01, 3.0685e-01, -1.1399e-01, -1.2434e-01,\n", " 1.6922e-01, -1.0212e-01, 4.3567e-02, -3.6941e-01, -1.6724e-01,\n", " -9.6767e-02, -2.0039e-01, 1.6684e-01, -6.7633e-02, -3.5034e-01,\n", " 1.3738e-01, 6.7207e-01, -8.7835e-02, 7.1087e-02, -6.5737e-01,\n", " -4.0125e-01, 4.1675e-01, -1.4082e-01, 3.5492e-02, 4.1041e-01,\n", " 1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\n", " 1.9867e-01, -4.3455e-01, 1.8238e-01, 7.0308e-02, -2.2539e-01,\n", " 8.4201e-02, 1.7078e-01, 3.0062e-01, -4.3804e-01]],\n", "\n", " [[-4.8065e-01, 2.6210e-01, -4.0260e-01, 5.8659e-01, 8.2546e-02,\n", " 3.4530e-02, 1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\n", " 1.0646e-01, 4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\n", " -1.5987e-02, -2.1735e-01, -2.0578e-01, 1.5982e-01, 5.9540e-02,\n", " -6.4146e-02, -6.8747e-02, 8.1613e-02, -2.4492e-01, -1.3727e-01,\n", " 2.8170e-02, 2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\n", " 3.1014e-01, -2.1871e-01, 2.2693e-01, 9.0831e-02, -1.9375e-01,\n", " -7.3290e-02, -4.6222e-01, -2.5226e-01, 2.8962e-01, 1.9681e-01,\n", " -5.0930e-01, 2.7643e-01, -7.9155e-02, -4.1990e-02, 2.0346e-01,\n", " 2.3497e-01, -2.8674e-01, -2.4855e-01, 1.9804e-01, 3.0052e-01,\n", " -6.0785e-02, 3.1826e-01, 1.9004e-01, -5.7711e-01, -4.9490e-01,\n", " -8.7735e-02, -1.7347e-03, 2.3653e-01, 2.0227e-02, -1.3482e-01,\n", " 1.6056e-01, 3.6861e-01, -9.3747e-02, -5.8709e-01],\n", " [ 2.8863e-01, 1.2149e-01, -6.2922e-01, 8.2764e-01, -2.3366e-01,\n", " -2.9659e-01, -1.3204e-01, 6.2296e-01, 4.1152e-01, -3.6350e-01,\n", " -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01, 4.4920e-01,\n", " 2.2330e-01, 5.0395e-01, 4.6923e-01, 4.3649e-01, -6.4579e-01,\n", " -7.1763e-01, 8.1157e-03, 3.5871e-01, 6.4578e-01, 3.9625e-01,\n", " -2.8031e-01, 2.3281e-01, 1.3482e-01, -1.3590e-01, -2.4081e-01,\n", " 2.4641e-01, -3.3319e-02, 6.3331e-01, 1.2224e-01, -1.5938e-01,\n", " 3.8584e-02, -5.9274e-01, 9.0730e-01, 3.3856e-01, 4.1958e-01,\n", " 3.3964e-02, 6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\n", " -4.5367e-01, 3.1252e-01, -6.7000e-01, 2.1814e-01, 7.2959e-01,\n", " -3.7967e-02, 3.6063e-02, 4.0004e-02, -7.2575e-01, -5.1842e-01,\n", " -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01, 5.4467e-01,\n", " -6.7269e-01, -5.9413e-01, 1.6626e-01, -3.8840e-01]],\n", "\n", " [[-2.7220e-01, -2.4531e-02, -1.6230e-01, 3.7354e-01, 2.7549e-01,\n", " 1.5702e-01, 4.3217e-01, -3.1798e-02, -2.4066e-02, 1.7492e-01,\n", " 3.4950e-01, 6.5571e-01, 3.6861e-02, -5.1874e-01, -2.7192e-01,\n", " 1.2709e-01, 2.2026e-02, -2.0383e-01, 1.1850e-01, 1.7263e-01,\n", " -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\n", " 5.0656e-01, -4.9259e-02, -1.8042e-01, 2.2685e-02, -1.6907e-02,\n", " 4.9316e-01, -4.0781e-01, 5.2768e-01, 1.4780e-01, -3.1708e-01,\n", " -5.8049e-02, -4.2868e-01, 1.5513e-01, 4.0871e-01, 6.9345e-02,\n", " -2.5745e-01, 2.2631e-01, -3.6025e-02, -1.1274e-01, 2.8092e-01,\n", " 2.8765e-01, -1.5027e-01, -4.8283e-01, 1.6113e-01, -1.1905e-01,\n", " 2.6178e-01, 4.1344e-01, 1.8685e-01, -1.6060e-01, -5.5496e-01,\n", " -2.1107e-02, -1.0227e-01, 3.2287e-01, 9.7470e-02, 2.6766e-01,\n", " 1.8691e-01, 8.5429e-02, 5.3812e-02, -4.7839e-02],\n", " [ 3.5464e-03, 2.9370e-01, -5.7085e-01, 3.3890e-01, -1.7416e-01,\n", " -1.8559e-01, -3.1623e-01, -4.1640e-01, 3.5136e-01, 1.9977e-01,\n", " -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01, 1.6816e-02,\n", " 1.6564e-01, 3.3103e-01, 5.8284e-01, 6.0926e-01, -3.8338e-01,\n", " -1.2137e-01, -8.2141e-02, 2.6694e-01, 5.6790e-01, 3.6747e-01,\n", " 2.3225e-01, 4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\n", " 2.9217e-01, -2.7284e-01, 6.6239e-01, -2.6185e-01, -3.1728e-01,\n", " 1.4997e-01, -1.1499e-01, 5.4129e-01, 5.1287e-01, 2.2698e-01,\n", " 6.5991e-02, 2.7580e-01, -9.2449e-02, 3.2780e-01, 2.8706e-01,\n", " -2.4724e-01, 1.3564e-01, 1.2187e-02, 1.0591e-01, 6.9933e-01,\n", " 5.7920e-02, 1.1761e-01, 3.0423e-01, -6.0233e-01, -3.1639e-01,\n", " 1.2788e-01, -3.2039e-01, 2.4106e-01, -5.5253e-02, 1.5497e-01,\n", " -1.4665e-01, -3.5109e-01, 1.5986e-01, -5.2488e-01]],\n", "\n", " [[ 3.7523e-01, -2.3620e-01, -4.9797e-02, 4.1835e-01, -1.5337e-01,\n", " -4.3592e-01, 6.0074e-02, 1.3534e-01, 1.7858e-01, 1.5966e-01,\n", " 3.3192e-01, 2.5094e-01, -5.0503e-03, 4.2395e-02, 1.9029e-01,\n", " 1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01, 9.0552e-02,\n", " -4.2521e-01, 3.6821e-01, -1.6868e-01, 2.4873e-01, -3.5418e-01,\n", " 1.5303e-01, 1.4946e-01, -2.1823e-01, 3.2424e-01, -1.1741e-01,\n", " -2.7139e-02, 2.0159e-02, -1.3201e-01, 8.5273e-02, 3.5133e-03,\n", " -4.1714e-01, -3.1202e-01, -1.2512e-01, 6.6698e-02, -8.2786e-02,\n", " 1.1544e-01, 1.8986e-01, -7.2979e-01, -1.3826e-01, 1.9034e-01,\n", " -2.3812e-01, -3.5628e-01, -2.2061e-02, 3.5664e-01, 6.5099e-02,\n", " 4.1999e-01, 1.4260e-01, -2.5012e-01, 1.5174e-01, -3.1281e-01,\n", " -3.5239e-01, 2.1327e-02, -1.5330e-01, -7.5938e-02, 1.5824e-01,\n", " -5.2105e-01, 7.9910e-02, 2.9691e-01, 1.0999e-01],\n", " [ 1.7269e-01, 7.1661e-01, -1.3392e-01, 2.4210e-01, -2.4052e-01,\n", " -2.5021e-01, -5.2839e-01, -1.0832e-01, 5.5602e-01, 3.8296e-01,\n", " 2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02, 1.5606e-01,\n", " 4.4199e-01, 5.1434e-01, 1.9665e-01, 8.0063e-01, -6.5867e-01,\n", " 9.2088e-02, -7.4456e-02, 8.8930e-02, 5.4215e-01, 5.4784e-01,\n", " 1.8820e-01, 1.0462e-01, 2.0219e-02, 9.1717e-03, -1.8383e-01,\n", " 5.4892e-01, -5.8456e-01, 3.5563e-01, 2.4806e-01, -1.4683e-01,\n", " 1.8306e-01, -6.4206e-02, 5.9534e-01, -4.2084e-02, 5.7999e-02,\n", " -1.0971e-01, 4.6418e-01, -1.8560e-02, 3.6068e-01, -4.5977e-02,\n", " -7.6532e-03, 2.3670e-01, 9.5715e-02, 4.4234e-01, 7.5172e-01,\n", " -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\n", " -8.5172e-03, -5.9053e-01, 2.6878e-01, -2.2309e-01, 7.8604e-01,\n", " -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\n", "\n", " [[ 3.9541e-01, 4.9519e-01, 1.1028e-01, 2.2783e-01, -2.1352e-01,\n", " -4.2290e-01, -3.8576e-01, 2.2347e-01, 4.9458e-01, 3.3885e-01,\n", " 3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03, 2.2591e-01,\n", " 4.0734e-01, 4.6116e-01, -1.0352e-01, 3.2594e-01, -5.3246e-01,\n", " -1.2795e-01, 3.0881e-01, -1.5611e-01, 2.7612e-01, 1.5252e-01,\n", " 1.9220e-01, 1.6186e-01, -6.1315e-02, 3.1383e-01, -2.0718e-01,\n", " 3.9542e-01, -5.2364e-01, -1.0867e-01, 4.3802e-01, 6.8734e-02,\n", " -1.5552e-01, -1.1045e-01, 1.0764e-01, -3.4260e-01, -1.5649e-01,\n", " -2.2060e-02, 3.6901e-01, -3.2511e-01, 5.9674e-02, -2.2943e-02,\n", " 3.1358e-02, -1.1782e-01, 4.7566e-02, 5.6886e-01, 2.8382e-01,\n", " 2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\n", " -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01, 7.6172e-01,\n", " -5.2932e-01, -4.2038e-01, -1.3811e-01, 9.3005e-02],\n", " [ 4.2985e-03, 5.3781e-01, 9.7958e-02, 6.4659e-01, -5.9524e-01,\n", " -2.4234e-01, -5.6040e-01, -8.2409e-01, 6.0406e-01, 2.5802e-01,\n", " 1.4920e-01, -7.4744e-01, -5.5557e-01, 3.0839e-01, -2.8524e-04,\n", " 7.6712e-01, 5.3626e-01, 6.4505e-01, 8.5630e-01, -6.8977e-01,\n", " -7.3681e-01, -3.5756e-01, 3.5687e-01, 5.4350e-01, 3.4881e-01,\n", " -8.0242e-01, 7.1195e-01, 8.1859e-02, -4.9816e-01, -1.9957e-01,\n", " 8.1895e-01, -3.0832e-01, 6.4616e-01, 2.4095e-01, -5.7400e-01,\n", " 1.5690e-01, -7.8424e-01, 6.9440e-01, 3.7262e-01, 9.6325e-02,\n", " -2.3760e-01, -6.6459e-01, -6.6820e-01, 6.2534e-01, 8.6112e-02,\n", " 1.6394e-01, -1.9756e-02, 2.5657e-01, 7.1100e-01, 9.1409e-01,\n", " -2.0942e-01, 4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\n", " 3.6628e-01, -8.2357e-01, 4.8054e-01, 8.2876e-01, 7.8838e-01,\n", " -3.1700e-01, -2.2284e-01, 7.4938e-01, -8.8767e-01]],\n", "\n", " [[ 2.0751e-01, 3.8295e-01, 2.3988e-01, 6.5699e-01, -5.7568e-01,\n", " -3.6006e-01, -4.8100e-01, -7.9433e-01, 5.6901e-01, 1.7161e-01,\n", " 2.8785e-01, -5.9491e-01, -4.3984e-01, 3.0638e-01, 9.5131e-03,\n", " 7.5487e-01, 5.2016e-01, 5.6168e-01, 5.5644e-01, -6.0117e-01,\n", " -6.7291e-01, -1.5772e-01, 1.8844e-01, 3.3261e-01, 1.1509e-01,\n", " -8.2417e-01, 7.0802e-01, 2.9094e-02, -3.2895e-01, -2.3967e-01,\n", " 7.7577e-01, -2.4526e-01, 5.9929e-01, 3.5422e-01, -4.4149e-01,\n", " -6.9179e-02, -7.8540e-01, 3.7833e-01, 2.8132e-01, -1.9018e-02,\n", " -1.6282e-01, -6.4327e-01, -7.5924e-01, 4.9658e-01, 8.3237e-02,\n", " 2.1320e-01, -2.6824e-01, 2.1273e-01, 7.7034e-01, 7.6653e-01,\n", " 1.5166e-02, 4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\n", " 2.4408e-01, -6.8280e-01, 3.1720e-01, 8.1391e-01, 7.6437e-01,\n", " -4.0419e-01, -1.7341e-01, 7.5999e-01, -7.8587e-01],\n", " [-3.5172e-01, 9.4749e-01, 9.3039e-02, 5.2600e-01, -4.9879e-01,\n", " -7.1578e-01, -9.3014e-01, -8.5450e-01, 8.4293e-01, 2.8136e-01,\n", " -1.3557e-01, -8.6492e-01, -6.6690e-01, 9.2696e-01, -1.7106e-01,\n", " 7.2665e-01, 2.6598e-01, 9.6001e-01, 9.6707e-01, -5.8140e-01,\n", " -9.7127e-01, -4.0630e-01, 3.7375e-01, 5.6344e-01, 7.4631e-02,\n", " -7.8830e-01, 5.5113e-01, 2.4708e-01, -4.1964e-01, -1.2664e-04,\n", " 9.2945e-01, -5.1485e-01, 4.9163e-01, -8.3042e-02, -1.8104e-01,\n", " 4.5435e-01, -7.3406e-01, 7.6429e-01, 4.7469e-01, 5.3298e-02,\n", " 7.7167e-01, -9.4698e-01, -7.0945e-01, 2.6853e-01, -8.7757e-01,\n", " 1.6556e-01, -1.4299e-01, -3.2505e-01, 7.4663e-01, 9.6821e-01,\n", " -6.8238e-01, 8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\n", " 4.0388e-01, -9.8040e-01, 8.1152e-01, 8.5002e-01, 7.9787e-01,\n", " -9.2759e-01, 4.8487e-01, 8.3804e-01, -9.2653e-01]],\n", "\n", " [[-2.1554e-01, 9.2967e-01, 2.0494e-01, 5.2804e-01, -4.8765e-01,\n", " -7.3976e-01, -9.2037e-01, -8.3445e-01, 8.1982e-01, 2.0183e-01,\n", " -1.4853e-01, -7.8974e-01, -6.0921e-01, 9.2589e-01, -1.7823e-01,\n", " 7.0490e-01, 2.6072e-01, 9.5497e-01, 9.1133e-01, -5.1347e-01,\n", " -9.5951e-01, -2.3076e-01, 2.1754e-01, 4.3733e-01, -2.9295e-02,\n", " -8.0489e-01, 5.3086e-01, 2.0390e-01, -3.0930e-01, -3.5179e-03,\n", " 9.1803e-01, -4.7151e-01, 4.4910e-01, -3.0464e-02, -1.2364e-01,\n", " 3.4547e-01, -7.2454e-01, 5.3417e-01, 4.1927e-01, -5.4921e-02,\n", " 7.7939e-01, -9.4286e-01, -7.4250e-01, 1.5274e-01, -8.7349e-01,\n", " 2.0929e-01, -3.1794e-01, -3.3657e-01, 7.9071e-01, 9.1712e-01,\n", " -5.6772e-01, 8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\n", " 2.9902e-01, -9.6587e-01, 7.5750e-01, 8.3694e-01, 7.7867e-01,\n", " -9.3306e-01, 4.5615e-01, 8.3903e-01, -8.6171e-01],\n", " [-5.8363e-01, 9.7749e-01, 8.7658e-02, 3.8939e-01, -4.0473e-01,\n", " -7.1746e-01, -9.7746e-01, -8.7006e-01, 9.1532e-01, 2.8459e-01,\n", " -2.2359e-01, -9.1768e-01, -7.4716e-01, 9.8367e-01, -2.7790e-01,\n", " 6.9578e-01, 1.8294e-01, 9.7452e-01, 9.8907e-01, -5.4132e-01,\n", " -9.9230e-01, -4.4919e-01, 3.8879e-01, 5.6903e-01, -5.8009e-02,\n", " -7.7496e-01, 4.3154e-01, 3.7605e-01, -4.2439e-01, 6.4348e-02,\n", " 9.4892e-01, -6.6214e-01, 3.6881e-01, -2.0051e-01, 1.2171e-01,\n", " 5.8965e-01, -6.7904e-01, 8.1712e-01, 5.3582e-01, 1.9643e-02,\n", " 9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\n", " 1.6236e-01, -2.0750e-01, -6.0565e-01, 7.7366e-01, 9.8503e-01,\n", " -8.3358e-01, 9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\n", " 4.3214e-01, -9.8765e-01, 9.0666e-01, 8.6743e-01, 8.4182e-01,\n", " -9.8590e-01, 6.4342e-01, 8.6847e-01, -9.4970e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([33, 3])\n", "dec_state: tensor([[[ 0.5182, 0.8550, 0.0202, 0.5348, 0.6086, 0.2421, -0.6160,\n", " -0.6120, 0.3239, -0.2430, -0.6351, -0.7932, 0.2987, 0.6142,\n", " -0.3324, -0.1350, 0.3692, 0.3308, -0.3650, 0.5529, 0.7938,\n", " -0.6100, 0.0607, 0.8019, -0.2328, -0.7207, -0.2500, -0.4150,\n", " -0.8359, -0.0548, -0.7630, 0.6640, 0.2508, 0.5540, -0.2536,\n", " -0.2516, 0.5941, -0.3543, -0.0780, 0.6334, -0.5385, 0.7027,\n", " 0.5509, 0.1530, -0.6466, 0.4808, -0.2744, 0.6229, 0.1153,\n", " 0.7041, 0.7462, 0.6091, -0.5141, -0.4135, -0.8097, -0.0434,\n", " 0.5605, 0.3620, -0.0721, -0.2368, -0.8302, 0.4081, -0.0624,\n", " -0.1807],\n", " [ 0.9238, 0.9541, -0.9438, 0.8747, 0.5348, 0.4564, -0.9074,\n", " -0.4503, -0.2398, -0.9822, -0.9402, -0.8899, 0.6948, 0.9432,\n", " -0.9496, 0.0738, 0.9223, -0.2593, -0.8901, 0.7804, 0.9344,\n", " -0.7592, -0.6855, 0.8324, 0.9295, -0.9197, -0.0066, -0.9104,\n", " 0.0825, -0.9063, -0.8933, 0.9354, 0.8163, 0.8140, -0.5453,\n", " -0.8374, 0.8016, -0.8202, 0.8062, 0.9671, -0.8535, 0.5729,\n", " 0.8312, -0.5923, -0.8528, 0.7854, -0.6201, 0.8195, -0.2277,\n", " 0.6761, -0.8186, 0.9641, -0.4150, -0.3945, 0.5832, -0.0339,\n", " 0.8038, 0.8231, -0.4201, -0.2177, -0.9808, 0.9044, 0.0414,\n", " -0.9223]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.7979e-01, 9.4467e-02, -1.0363e-01, 4.6698e-01, 2.1990e-01,\n", " 1.0968e-01, 6.3953e-02, -6.2686e-01, 3.3735e-01, -1.5381e-01,\n", " 4.4057e-01, -1.3544e-01, 3.1925e-02, 2.8315e-01, 1.3914e-01,\n", " 4.8791e-01, 2.2082e-01, 6.2355e-03, 2.7165e-01, 1.7884e-01,\n", " -5.0191e-01, -1.1003e-01, 2.6037e-01, -1.4109e-01, -4.9608e-01,\n", " 1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\n", " 1.6098e-01, -1.8203e-01, 8.5968e-02, 1.6584e-01, -1.8070e-01,\n", " -1.0343e-02, -5.9731e-01, 2.7544e-01, 5.4321e-01, 1.2392e-01,\n", " -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\n", " 3.5685e-01, -2.1323e-01, -1.0543e-01, 2.0594e-01, -2.2193e-02,\n", " 2.7921e-01, 4.1012e-01, 2.2706e-01, -5.1412e-01, -3.2686e-01,\n", " 1.8903e-01, -5.3830e-01, 2.9266e-01, 1.3446e-01, 1.6127e-01,\n", " -4.3490e-01, 1.0959e-01, -3.0305e-02, -3.5573e-01],\n", " [-2.6735e-01, 3.3112e-01, -2.7546e-01, 3.3183e-02, -8.5314e-02,\n", " -4.6477e-02, -2.8822e-01, 1.6451e-01, -7.2843e-02, -1.5546e-01,\n", " -2.3366e-01, -1.8629e-01, -5.3722e-01, 3.5115e-01, 1.0961e-01,\n", " -4.6762e-01, 4.1160e-01, 2.9585e-01, 9.0005e-02, -6.4770e-01,\n", " -6.2316e-01, -1.1505e-01, 1.1418e-01, -7.1088e-02, 1.3812e-01,\n", " -7.0793e-03, 1.7934e-01, 3.0685e-01, -1.1399e-01, -1.2434e-01,\n", " 1.6922e-01, -1.0212e-01, 4.3567e-02, -3.6941e-01, -1.6724e-01,\n", " -9.6767e-02, -2.0039e-01, 1.6684e-01, -6.7633e-02, -3.5034e-01,\n", " 1.3738e-01, 6.7207e-01, -8.7835e-02, 7.1087e-02, -6.5737e-01,\n", " -4.0125e-01, 4.1675e-01, -1.4082e-01, 3.5492e-02, 4.1041e-01,\n", " 1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\n", " 1.9867e-01, -4.3455e-01, 1.8238e-01, 7.0308e-02, -2.2539e-01,\n", " 8.4201e-02, 1.7078e-01, 3.0062e-01, -4.3804e-01]],\n", "\n", " [[-4.8065e-01, 2.6210e-01, -4.0260e-01, 5.8659e-01, 8.2546e-02,\n", " 3.4530e-02, 1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\n", " 1.0646e-01, 4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\n", " -1.5987e-02, -2.1735e-01, -2.0578e-01, 1.5982e-01, 5.9540e-02,\n", " -6.4146e-02, -6.8747e-02, 8.1613e-02, -2.4492e-01, -1.3727e-01,\n", " 2.8170e-02, 2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\n", " 3.1014e-01, -2.1871e-01, 2.2693e-01, 9.0831e-02, -1.9375e-01,\n", " -7.3290e-02, -4.6222e-01, -2.5226e-01, 2.8962e-01, 1.9681e-01,\n", " -5.0930e-01, 2.7643e-01, -7.9155e-02, -4.1990e-02, 2.0346e-01,\n", " 2.3497e-01, -2.8674e-01, -2.4855e-01, 1.9804e-01, 3.0052e-01,\n", " -6.0785e-02, 3.1826e-01, 1.9004e-01, -5.7711e-01, -4.9490e-01,\n", " -8.7735e-02, -1.7347e-03, 2.3653e-01, 2.0227e-02, -1.3482e-01,\n", " 1.6056e-01, 3.6861e-01, -9.3747e-02, -5.8709e-01],\n", " [ 2.8863e-01, 1.2149e-01, -6.2922e-01, 8.2764e-01, -2.3366e-01,\n", " -2.9659e-01, -1.3204e-01, 6.2296e-01, 4.1152e-01, -3.6350e-01,\n", " -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01, 4.4920e-01,\n", " 2.2330e-01, 5.0395e-01, 4.6923e-01, 4.3649e-01, -6.4579e-01,\n", " -7.1763e-01, 8.1157e-03, 3.5871e-01, 6.4578e-01, 3.9625e-01,\n", " -2.8031e-01, 2.3281e-01, 1.3482e-01, -1.3590e-01, -2.4081e-01,\n", " 2.4641e-01, -3.3319e-02, 6.3331e-01, 1.2224e-01, -1.5938e-01,\n", " 3.8584e-02, -5.9274e-01, 9.0730e-01, 3.3856e-01, 4.1958e-01,\n", " 3.3964e-02, 6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\n", " -4.5367e-01, 3.1252e-01, -6.7000e-01, 2.1814e-01, 7.2959e-01,\n", " -3.7967e-02, 3.6063e-02, 4.0004e-02, -7.2575e-01, -5.1842e-01,\n", " -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01, 5.4467e-01,\n", " -6.7269e-01, -5.9413e-01, 1.6626e-01, -3.8840e-01]],\n", "\n", " [[-2.7220e-01, -2.4531e-02, -1.6230e-01, 3.7354e-01, 2.7549e-01,\n", " 1.5702e-01, 4.3217e-01, -3.1798e-02, -2.4066e-02, 1.7492e-01,\n", " 3.4950e-01, 6.5571e-01, 3.6861e-02, -5.1874e-01, -2.7192e-01,\n", " 1.2709e-01, 2.2026e-02, -2.0383e-01, 1.1850e-01, 1.7263e-01,\n", " -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\n", " 5.0656e-01, -4.9259e-02, -1.8042e-01, 2.2685e-02, -1.6907e-02,\n", " 4.9316e-01, -4.0781e-01, 5.2768e-01, 1.4780e-01, -3.1708e-01,\n", " -5.8049e-02, -4.2868e-01, 1.5513e-01, 4.0871e-01, 6.9345e-02,\n", " -2.5745e-01, 2.2631e-01, -3.6025e-02, -1.1274e-01, 2.8092e-01,\n", " 2.8765e-01, -1.5027e-01, -4.8283e-01, 1.6113e-01, -1.1905e-01,\n", " 2.6178e-01, 4.1344e-01, 1.8685e-01, -1.6060e-01, -5.5496e-01,\n", " -2.1107e-02, -1.0227e-01, 3.2287e-01, 9.7470e-02, 2.6766e-01,\n", " 1.8691e-01, 8.5429e-02, 5.3812e-02, -4.7839e-02],\n", " [ 3.5464e-03, 2.9370e-01, -5.7085e-01, 3.3890e-01, -1.7416e-01,\n", " -1.8559e-01, -3.1623e-01, -4.1640e-01, 3.5136e-01, 1.9977e-01,\n", " -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01, 1.6816e-02,\n", " 1.6564e-01, 3.3103e-01, 5.8284e-01, 6.0926e-01, -3.8338e-01,\n", " -1.2137e-01, -8.2141e-02, 2.6694e-01, 5.6790e-01, 3.6747e-01,\n", " 2.3225e-01, 4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\n", " 2.9217e-01, -2.7284e-01, 6.6239e-01, -2.6185e-01, -3.1728e-01,\n", " 1.4997e-01, -1.1499e-01, 5.4129e-01, 5.1287e-01, 2.2698e-01,\n", " 6.5991e-02, 2.7580e-01, -9.2449e-02, 3.2780e-01, 2.8706e-01,\n", " -2.4724e-01, 1.3564e-01, 1.2187e-02, 1.0591e-01, 6.9933e-01,\n", " 5.7920e-02, 1.1761e-01, 3.0423e-01, -6.0233e-01, -3.1639e-01,\n", " 1.2788e-01, -3.2039e-01, 2.4106e-01, -5.5253e-02, 1.5497e-01,\n", " -1.4665e-01, -3.5109e-01, 1.5986e-01, -5.2488e-01]],\n", "\n", " [[ 3.7523e-01, -2.3620e-01, -4.9797e-02, 4.1835e-01, -1.5337e-01,\n", " -4.3592e-01, 6.0074e-02, 1.3534e-01, 1.7858e-01, 1.5966e-01,\n", " 3.3192e-01, 2.5094e-01, -5.0503e-03, 4.2395e-02, 1.9029e-01,\n", " 1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01, 9.0552e-02,\n", " -4.2521e-01, 3.6821e-01, -1.6868e-01, 2.4873e-01, -3.5418e-01,\n", " 1.5303e-01, 1.4946e-01, -2.1823e-01, 3.2424e-01, -1.1741e-01,\n", " -2.7139e-02, 2.0159e-02, -1.3201e-01, 8.5273e-02, 3.5133e-03,\n", " -4.1714e-01, -3.1202e-01, -1.2512e-01, 6.6698e-02, -8.2786e-02,\n", " 1.1544e-01, 1.8986e-01, -7.2979e-01, -1.3826e-01, 1.9034e-01,\n", " -2.3812e-01, -3.5628e-01, -2.2061e-02, 3.5664e-01, 6.5099e-02,\n", " 4.1999e-01, 1.4260e-01, -2.5012e-01, 1.5174e-01, -3.1281e-01,\n", " -3.5239e-01, 2.1327e-02, -1.5330e-01, -7.5938e-02, 1.5824e-01,\n", " -5.2105e-01, 7.9910e-02, 2.9691e-01, 1.0999e-01],\n", " [ 1.7269e-01, 7.1661e-01, -1.3392e-01, 2.4210e-01, -2.4052e-01,\n", " -2.5021e-01, -5.2839e-01, -1.0832e-01, 5.5602e-01, 3.8296e-01,\n", " 2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02, 1.5606e-01,\n", " 4.4199e-01, 5.1434e-01, 1.9665e-01, 8.0063e-01, -6.5867e-01,\n", " 9.2088e-02, -7.4456e-02, 8.8930e-02, 5.4215e-01, 5.4784e-01,\n", " 1.8820e-01, 1.0462e-01, 2.0219e-02, 9.1717e-03, -1.8383e-01,\n", " 5.4892e-01, -5.8456e-01, 3.5563e-01, 2.4806e-01, -1.4683e-01,\n", " 1.8306e-01, -6.4206e-02, 5.9534e-01, -4.2084e-02, 5.7999e-02,\n", " -1.0971e-01, 4.6418e-01, -1.8560e-02, 3.6068e-01, -4.5977e-02,\n", " -7.6532e-03, 2.3670e-01, 9.5715e-02, 4.4234e-01, 7.5172e-01,\n", " -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\n", " -8.5172e-03, -5.9053e-01, 2.6878e-01, -2.2309e-01, 7.8604e-01,\n", " -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\n", "\n", " [[ 3.9541e-01, 4.9519e-01, 1.1028e-01, 2.2783e-01, -2.1352e-01,\n", " -4.2290e-01, -3.8576e-01, 2.2347e-01, 4.9458e-01, 3.3885e-01,\n", " 3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03, 2.2591e-01,\n", " 4.0734e-01, 4.6116e-01, -1.0352e-01, 3.2594e-01, -5.3246e-01,\n", " -1.2795e-01, 3.0881e-01, -1.5611e-01, 2.7612e-01, 1.5252e-01,\n", " 1.9220e-01, 1.6186e-01, -6.1315e-02, 3.1383e-01, -2.0718e-01,\n", " 3.9542e-01, -5.2364e-01, -1.0867e-01, 4.3802e-01, 6.8734e-02,\n", " -1.5552e-01, -1.1045e-01, 1.0764e-01, -3.4260e-01, -1.5649e-01,\n", " -2.2060e-02, 3.6901e-01, -3.2511e-01, 5.9674e-02, -2.2943e-02,\n", " 3.1358e-02, -1.1782e-01, 4.7566e-02, 5.6886e-01, 2.8382e-01,\n", " 2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\n", " -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01, 7.6172e-01,\n", " -5.2932e-01, -4.2038e-01, -1.3811e-01, 9.3005e-02],\n", " [ 4.2985e-03, 5.3781e-01, 9.7958e-02, 6.4659e-01, -5.9524e-01,\n", " -2.4234e-01, -5.6040e-01, -8.2409e-01, 6.0406e-01, 2.5802e-01,\n", " 1.4920e-01, -7.4744e-01, -5.5557e-01, 3.0839e-01, -2.8524e-04,\n", " 7.6712e-01, 5.3626e-01, 6.4505e-01, 8.5630e-01, -6.8977e-01,\n", " -7.3681e-01, -3.5756e-01, 3.5687e-01, 5.4350e-01, 3.4881e-01,\n", " -8.0242e-01, 7.1195e-01, 8.1859e-02, -4.9816e-01, -1.9957e-01,\n", " 8.1895e-01, -3.0832e-01, 6.4616e-01, 2.4095e-01, -5.7400e-01,\n", " 1.5690e-01, -7.8424e-01, 6.9440e-01, 3.7262e-01, 9.6325e-02,\n", " -2.3760e-01, -6.6459e-01, -6.6820e-01, 6.2534e-01, 8.6112e-02,\n", " 1.6394e-01, -1.9756e-02, 2.5657e-01, 7.1100e-01, 9.1409e-01,\n", " -2.0942e-01, 4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\n", " 3.6628e-01, -8.2357e-01, 4.8054e-01, 8.2876e-01, 7.8838e-01,\n", " -3.1700e-01, -2.2284e-01, 7.4938e-01, -8.8767e-01]],\n", "\n", " [[ 2.0751e-01, 3.8295e-01, 2.3988e-01, 6.5699e-01, -5.7568e-01,\n", " -3.6006e-01, -4.8100e-01, -7.9433e-01, 5.6901e-01, 1.7161e-01,\n", " 2.8785e-01, -5.9491e-01, -4.3984e-01, 3.0638e-01, 9.5131e-03,\n", " 7.5487e-01, 5.2016e-01, 5.6168e-01, 5.5644e-01, -6.0117e-01,\n", " -6.7291e-01, -1.5772e-01, 1.8844e-01, 3.3261e-01, 1.1509e-01,\n", " -8.2417e-01, 7.0802e-01, 2.9094e-02, -3.2895e-01, -2.3967e-01,\n", " 7.7577e-01, -2.4526e-01, 5.9929e-01, 3.5422e-01, -4.4149e-01,\n", " -6.9179e-02, -7.8540e-01, 3.7833e-01, 2.8132e-01, -1.9018e-02,\n", " -1.6282e-01, -6.4327e-01, -7.5924e-01, 4.9658e-01, 8.3237e-02,\n", " 2.1320e-01, -2.6824e-01, 2.1273e-01, 7.7034e-01, 7.6653e-01,\n", " 1.5166e-02, 4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\n", " 2.4408e-01, -6.8280e-01, 3.1720e-01, 8.1391e-01, 7.6437e-01,\n", " -4.0419e-01, -1.7341e-01, 7.5999e-01, -7.8587e-01],\n", " [-3.5172e-01, 9.4749e-01, 9.3039e-02, 5.2600e-01, -4.9879e-01,\n", " -7.1578e-01, -9.3014e-01, -8.5450e-01, 8.4293e-01, 2.8136e-01,\n", " -1.3557e-01, -8.6492e-01, -6.6690e-01, 9.2696e-01, -1.7106e-01,\n", " 7.2665e-01, 2.6598e-01, 9.6001e-01, 9.6707e-01, -5.8140e-01,\n", " -9.7127e-01, -4.0630e-01, 3.7375e-01, 5.6344e-01, 7.4631e-02,\n", " -7.8830e-01, 5.5113e-01, 2.4708e-01, -4.1964e-01, -1.2664e-04,\n", " 9.2945e-01, -5.1485e-01, 4.9163e-01, -8.3042e-02, -1.8104e-01,\n", " 4.5435e-01, -7.3406e-01, 7.6429e-01, 4.7469e-01, 5.3298e-02,\n", " 7.7167e-01, -9.4698e-01, -7.0945e-01, 2.6853e-01, -8.7757e-01,\n", " 1.6556e-01, -1.4299e-01, -3.2505e-01, 7.4663e-01, 9.6821e-01,\n", " -6.8238e-01, 8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\n", " 4.0388e-01, -9.8040e-01, 8.1152e-01, 8.5002e-01, 7.9787e-01,\n", " -9.2759e-01, 4.8487e-01, 8.3804e-01, -9.2653e-01]],\n", "\n", " [[-2.1554e-01, 9.2967e-01, 2.0494e-01, 5.2804e-01, -4.8765e-01,\n", " -7.3976e-01, -9.2037e-01, -8.3445e-01, 8.1982e-01, 2.0183e-01,\n", " -1.4853e-01, -7.8974e-01, -6.0921e-01, 9.2589e-01, -1.7823e-01,\n", " 7.0490e-01, 2.6072e-01, 9.5497e-01, 9.1133e-01, -5.1347e-01,\n", " -9.5951e-01, -2.3076e-01, 2.1754e-01, 4.3733e-01, -2.9295e-02,\n", " -8.0489e-01, 5.3086e-01, 2.0390e-01, -3.0930e-01, -3.5179e-03,\n", " 9.1803e-01, -4.7151e-01, 4.4910e-01, -3.0464e-02, -1.2364e-01,\n", " 3.4547e-01, -7.2454e-01, 5.3417e-01, 4.1927e-01, -5.4921e-02,\n", " 7.7939e-01, -9.4286e-01, -7.4250e-01, 1.5274e-01, -8.7349e-01,\n", " 2.0929e-01, -3.1794e-01, -3.3657e-01, 7.9071e-01, 9.1712e-01,\n", " -5.6772e-01, 8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\n", " 2.9902e-01, -9.6587e-01, 7.5750e-01, 8.3694e-01, 7.7867e-01,\n", " -9.3306e-01, 4.5615e-01, 8.3903e-01, -8.6171e-01],\n", " [-5.8363e-01, 9.7749e-01, 8.7658e-02, 3.8939e-01, -4.0473e-01,\n", " -7.1746e-01, -9.7746e-01, -8.7006e-01, 9.1532e-01, 2.8459e-01,\n", " -2.2359e-01, -9.1768e-01, -7.4716e-01, 9.8367e-01, -2.7790e-01,\n", " 6.9578e-01, 1.8294e-01, 9.7452e-01, 9.8907e-01, -5.4132e-01,\n", " -9.9230e-01, -4.4919e-01, 3.8879e-01, 5.6903e-01, -5.8009e-02,\n", " -7.7496e-01, 4.3154e-01, 3.7605e-01, -4.2439e-01, 6.4348e-02,\n", " 9.4892e-01, -6.6214e-01, 3.6881e-01, -2.0051e-01, 1.2171e-01,\n", " 5.8965e-01, -6.7904e-01, 8.1712e-01, 5.3582e-01, 1.9643e-02,\n", " 9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\n", " 1.6236e-01, -2.0750e-01, -6.0565e-01, 7.7366e-01, 9.8503e-01,\n", " -8.3358e-01, 9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\n", " 4.3214e-01, -9.8765e-01, 9.0666e-01, 8.6743e-01, 8.4182e-01,\n", " -9.8590e-01, 6.4342e-01, 8.6847e-01, -9.4970e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([3, 2])\n", "dec_state: tensor([[[ 0.9584, 0.9553, -0.7073, 0.5855, 0.4463, 0.3449, -0.7402,\n", " -0.7600, 0.0983, -0.9498, -0.9022, -0.8457, 0.8093, 0.8701,\n", " -0.8842, 0.2358, 0.8940, 0.0260, -0.8790, 0.7189, 0.8049,\n", " -0.6583, -0.5118, 0.7463, 0.8523, -0.8457, 0.0670, -0.9016,\n", " 0.4506, -0.5295, -0.8394, 0.7062, 0.8052, 0.7948, -0.1778,\n", " -0.6653, 0.7511, -0.8029, 0.7335, 0.8878, -0.7666, 0.8202,\n", " 0.6667, -0.5413, -0.8153, 0.8738, -0.3011, 0.8524, 0.0128,\n", " 0.6948, -0.8426, 0.8838, -0.0376, -0.5703, 0.6699, -0.1508,\n", " 0.8237, 0.5334, -0.5601, -0.3933, -0.9388, 0.6849, -0.1200,\n", " -0.8734],\n", " [ 0.9394, 0.7889, -0.9715, 0.8886, 0.6106, 0.5632, -0.6426,\n", " -0.4784, -0.5644, -0.1168, -0.1695, -0.8381, 0.6910, 0.6703,\n", " -0.9463, -0.4975, 0.4547, 0.1361, -0.8559, 0.5702, 0.9736,\n", " -0.7647, -0.1379, 0.8759, 0.8863, -0.9425, -0.5700, -0.8484,\n", " -0.6467, -0.6432, -0.8917, 0.9540, -0.6101, 0.8297, -0.6338,\n", " -0.9613, 0.5814, -0.5614, 0.7208, 0.8563, -0.7520, 0.7071,\n", " 0.8386, -0.2497, -0.4504, 0.5379, -0.6108, 0.8647, -0.2931,\n", " 0.5807, 0.1408, 0.9291, -0.3997, -0.5553, -0.2399, -0.1207,\n", " 0.9243, 0.8799, 0.2313, -0.1422, -0.9783, 0.8954, -0.0865,\n", " -0.1616]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.7979e-01, 9.4467e-02, -1.0363e-01, 4.6698e-01, 2.1990e-01,\n", " 1.0968e-01, 6.3953e-02, -6.2686e-01, 3.3735e-01, -1.5381e-01,\n", " 4.4057e-01, -1.3544e-01, 3.1925e-02, 2.8315e-01, 1.3914e-01,\n", " 4.8791e-01, 2.2082e-01, 6.2355e-03, 2.7165e-01, 1.7884e-01,\n", " -5.0191e-01, -1.1003e-01, 2.6037e-01, -1.4109e-01, -4.9608e-01,\n", " 1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\n", " 1.6098e-01, -1.8203e-01, 8.5968e-02, 1.6584e-01, -1.8070e-01,\n", " -1.0343e-02, -5.9731e-01, 2.7544e-01, 5.4321e-01, 1.2392e-01,\n", " -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\n", " 3.5685e-01, -2.1323e-01, -1.0543e-01, 2.0594e-01, -2.2193e-02,\n", " 2.7921e-01, 4.1012e-01, 2.2706e-01, -5.1412e-01, -3.2686e-01,\n", " 1.8903e-01, -5.3830e-01, 2.9266e-01, 1.3446e-01, 1.6127e-01,\n", " -4.3490e-01, 1.0959e-01, -3.0305e-02, -3.5573e-01],\n", " [-2.6735e-01, 3.3112e-01, -2.7546e-01, 3.3183e-02, -8.5314e-02,\n", " -4.6477e-02, -2.8822e-01, 1.6451e-01, -7.2843e-02, -1.5546e-01,\n", " -2.3366e-01, -1.8629e-01, -5.3722e-01, 3.5115e-01, 1.0961e-01,\n", " -4.6762e-01, 4.1160e-01, 2.9585e-01, 9.0005e-02, -6.4770e-01,\n", " -6.2316e-01, -1.1505e-01, 1.1418e-01, -7.1088e-02, 1.3812e-01,\n", " -7.0793e-03, 1.7934e-01, 3.0685e-01, -1.1399e-01, -1.2434e-01,\n", " 1.6922e-01, -1.0212e-01, 4.3567e-02, -3.6941e-01, -1.6724e-01,\n", " -9.6767e-02, -2.0039e-01, 1.6684e-01, -6.7633e-02, -3.5034e-01,\n", " 1.3738e-01, 6.7207e-01, -8.7835e-02, 7.1087e-02, -6.5737e-01,\n", " -4.0125e-01, 4.1675e-01, -1.4082e-01, 3.5492e-02, 4.1041e-01,\n", " 1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\n", " 1.9867e-01, -4.3455e-01, 1.8238e-01, 7.0308e-02, -2.2539e-01,\n", " 8.4201e-02, 1.7078e-01, 3.0062e-01, -4.3804e-01]],\n", "\n", " [[-4.8065e-01, 2.6210e-01, -4.0260e-01, 5.8659e-01, 8.2546e-02,\n", " 3.4530e-02, 1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\n", " 1.0646e-01, 4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\n", " -1.5987e-02, -2.1735e-01, -2.0578e-01, 1.5982e-01, 5.9540e-02,\n", " -6.4146e-02, -6.8747e-02, 8.1613e-02, -2.4492e-01, -1.3727e-01,\n", " 2.8170e-02, 2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\n", " 3.1014e-01, -2.1871e-01, 2.2693e-01, 9.0831e-02, -1.9375e-01,\n", " -7.3290e-02, -4.6222e-01, -2.5226e-01, 2.8962e-01, 1.9681e-01,\n", " -5.0930e-01, 2.7643e-01, -7.9155e-02, -4.1990e-02, 2.0346e-01,\n", " 2.3497e-01, -2.8674e-01, -2.4855e-01, 1.9804e-01, 3.0052e-01,\n", " -6.0785e-02, 3.1826e-01, 1.9004e-01, -5.7711e-01, -4.9490e-01,\n", " -8.7735e-02, -1.7347e-03, 2.3653e-01, 2.0227e-02, -1.3482e-01,\n", " 1.6056e-01, 3.6861e-01, -9.3747e-02, -5.8709e-01],\n", " [ 2.8863e-01, 1.2149e-01, -6.2922e-01, 8.2764e-01, -2.3366e-01,\n", " -2.9659e-01, -1.3204e-01, 6.2296e-01, 4.1152e-01, -3.6350e-01,\n", " -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01, 4.4920e-01,\n", " 2.2330e-01, 5.0395e-01, 4.6923e-01, 4.3649e-01, -6.4579e-01,\n", " -7.1763e-01, 8.1157e-03, 3.5871e-01, 6.4578e-01, 3.9625e-01,\n", " -2.8031e-01, 2.3281e-01, 1.3482e-01, -1.3590e-01, -2.4081e-01,\n", " 2.4641e-01, -3.3319e-02, 6.3331e-01, 1.2224e-01, -1.5938e-01,\n", " 3.8584e-02, -5.9274e-01, 9.0730e-01, 3.3856e-01, 4.1958e-01,\n", " 3.3964e-02, 6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\n", " -4.5367e-01, 3.1252e-01, -6.7000e-01, 2.1814e-01, 7.2959e-01,\n", " -3.7967e-02, 3.6063e-02, 4.0004e-02, -7.2575e-01, -5.1842e-01,\n", " -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01, 5.4467e-01,\n", " -6.7269e-01, -5.9413e-01, 1.6626e-01, -3.8840e-01]],\n", "\n", " [[-2.7220e-01, -2.4531e-02, -1.6230e-01, 3.7354e-01, 2.7549e-01,\n", " 1.5702e-01, 4.3217e-01, -3.1798e-02, -2.4066e-02, 1.7492e-01,\n", " 3.4950e-01, 6.5571e-01, 3.6861e-02, -5.1874e-01, -2.7192e-01,\n", " 1.2709e-01, 2.2026e-02, -2.0383e-01, 1.1850e-01, 1.7263e-01,\n", " -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\n", " 5.0656e-01, -4.9259e-02, -1.8042e-01, 2.2685e-02, -1.6907e-02,\n", " 4.9316e-01, -4.0781e-01, 5.2768e-01, 1.4780e-01, -3.1708e-01,\n", " -5.8049e-02, -4.2868e-01, 1.5513e-01, 4.0871e-01, 6.9345e-02,\n", " -2.5745e-01, 2.2631e-01, -3.6025e-02, -1.1274e-01, 2.8092e-01,\n", " 2.8765e-01, -1.5027e-01, -4.8283e-01, 1.6113e-01, -1.1905e-01,\n", " 2.6178e-01, 4.1344e-01, 1.8685e-01, -1.6060e-01, -5.5496e-01,\n", " -2.1107e-02, -1.0227e-01, 3.2287e-01, 9.7470e-02, 2.6766e-01,\n", " 1.8691e-01, 8.5429e-02, 5.3812e-02, -4.7839e-02],\n", " [ 3.5464e-03, 2.9370e-01, -5.7085e-01, 3.3890e-01, -1.7416e-01,\n", " -1.8559e-01, -3.1623e-01, -4.1640e-01, 3.5136e-01, 1.9977e-01,\n", " -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01, 1.6816e-02,\n", " 1.6564e-01, 3.3103e-01, 5.8284e-01, 6.0926e-01, -3.8338e-01,\n", " -1.2137e-01, -8.2141e-02, 2.6694e-01, 5.6790e-01, 3.6747e-01,\n", " 2.3225e-01, 4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\n", " 2.9217e-01, -2.7284e-01, 6.6239e-01, -2.6185e-01, -3.1728e-01,\n", " 1.4997e-01, -1.1499e-01, 5.4129e-01, 5.1287e-01, 2.2698e-01,\n", " 6.5991e-02, 2.7580e-01, -9.2449e-02, 3.2780e-01, 2.8706e-01,\n", " -2.4724e-01, 1.3564e-01, 1.2187e-02, 1.0591e-01, 6.9933e-01,\n", " 5.7920e-02, 1.1761e-01, 3.0423e-01, -6.0233e-01, -3.1639e-01,\n", " 1.2788e-01, -3.2039e-01, 2.4106e-01, -5.5253e-02, 1.5497e-01,\n", " -1.4665e-01, -3.5109e-01, 1.5986e-01, -5.2488e-01]],\n", "\n", " [[ 3.7523e-01, -2.3620e-01, -4.9797e-02, 4.1835e-01, -1.5337e-01,\n", " -4.3592e-01, 6.0074e-02, 1.3534e-01, 1.7858e-01, 1.5966e-01,\n", " 3.3192e-01, 2.5094e-01, -5.0503e-03, 4.2395e-02, 1.9029e-01,\n", " 1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01, 9.0552e-02,\n", " -4.2521e-01, 3.6821e-01, -1.6868e-01, 2.4873e-01, -3.5418e-01,\n", " 1.5303e-01, 1.4946e-01, -2.1823e-01, 3.2424e-01, -1.1741e-01,\n", " -2.7139e-02, 2.0159e-02, -1.3201e-01, 8.5273e-02, 3.5133e-03,\n", " -4.1714e-01, -3.1202e-01, -1.2512e-01, 6.6698e-02, -8.2786e-02,\n", " 1.1544e-01, 1.8986e-01, -7.2979e-01, -1.3826e-01, 1.9034e-01,\n", " -2.3812e-01, -3.5628e-01, -2.2061e-02, 3.5664e-01, 6.5099e-02,\n", " 4.1999e-01, 1.4260e-01, -2.5012e-01, 1.5174e-01, -3.1281e-01,\n", " -3.5239e-01, 2.1327e-02, -1.5330e-01, -7.5938e-02, 1.5824e-01,\n", " -5.2105e-01, 7.9910e-02, 2.9691e-01, 1.0999e-01],\n", " [ 1.7269e-01, 7.1661e-01, -1.3392e-01, 2.4210e-01, -2.4052e-01,\n", " -2.5021e-01, -5.2839e-01, -1.0832e-01, 5.5602e-01, 3.8296e-01,\n", " 2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02, 1.5606e-01,\n", " 4.4199e-01, 5.1434e-01, 1.9665e-01, 8.0063e-01, -6.5867e-01,\n", " 9.2088e-02, -7.4456e-02, 8.8930e-02, 5.4215e-01, 5.4784e-01,\n", " 1.8820e-01, 1.0462e-01, 2.0219e-02, 9.1717e-03, -1.8383e-01,\n", " 5.4892e-01, -5.8456e-01, 3.5563e-01, 2.4806e-01, -1.4683e-01,\n", " 1.8306e-01, -6.4206e-02, 5.9534e-01, -4.2084e-02, 5.7999e-02,\n", " -1.0971e-01, 4.6418e-01, -1.8560e-02, 3.6068e-01, -4.5977e-02,\n", " -7.6532e-03, 2.3670e-01, 9.5715e-02, 4.4234e-01, 7.5172e-01,\n", " -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\n", " -8.5172e-03, -5.9053e-01, 2.6878e-01, -2.2309e-01, 7.8604e-01,\n", " -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\n", "\n", " [[ 3.9541e-01, 4.9519e-01, 1.1028e-01, 2.2783e-01, -2.1352e-01,\n", " -4.2290e-01, -3.8576e-01, 2.2347e-01, 4.9458e-01, 3.3885e-01,\n", " 3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03, 2.2591e-01,\n", " 4.0734e-01, 4.6116e-01, -1.0352e-01, 3.2594e-01, -5.3246e-01,\n", " -1.2795e-01, 3.0881e-01, -1.5611e-01, 2.7612e-01, 1.5252e-01,\n", " 1.9220e-01, 1.6186e-01, -6.1315e-02, 3.1383e-01, -2.0718e-01,\n", " 3.9542e-01, -5.2364e-01, -1.0867e-01, 4.3802e-01, 6.8734e-02,\n", " -1.5552e-01, -1.1045e-01, 1.0764e-01, -3.4260e-01, -1.5649e-01,\n", " -2.2060e-02, 3.6901e-01, -3.2511e-01, 5.9674e-02, -2.2943e-02,\n", " 3.1358e-02, -1.1782e-01, 4.7566e-02, 5.6886e-01, 2.8382e-01,\n", " 2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\n", " -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01, 7.6172e-01,\n", " -5.2932e-01, -4.2038e-01, -1.3811e-01, 9.3005e-02],\n", " [ 4.2985e-03, 5.3781e-01, 9.7958e-02, 6.4659e-01, -5.9524e-01,\n", " -2.4234e-01, -5.6040e-01, -8.2409e-01, 6.0406e-01, 2.5802e-01,\n", " 1.4920e-01, -7.4744e-01, -5.5557e-01, 3.0839e-01, -2.8524e-04,\n", " 7.6712e-01, 5.3626e-01, 6.4505e-01, 8.5630e-01, -6.8977e-01,\n", " -7.3681e-01, -3.5756e-01, 3.5687e-01, 5.4350e-01, 3.4881e-01,\n", " -8.0242e-01, 7.1195e-01, 8.1859e-02, -4.9816e-01, -1.9957e-01,\n", " 8.1895e-01, -3.0832e-01, 6.4616e-01, 2.4095e-01, -5.7400e-01,\n", " 1.5690e-01, -7.8424e-01, 6.9440e-01, 3.7262e-01, 9.6325e-02,\n", " -2.3760e-01, -6.6459e-01, -6.6820e-01, 6.2534e-01, 8.6112e-02,\n", " 1.6394e-01, -1.9756e-02, 2.5657e-01, 7.1100e-01, 9.1409e-01,\n", " -2.0942e-01, 4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\n", " 3.6628e-01, -8.2357e-01, 4.8054e-01, 8.2876e-01, 7.8838e-01,\n", " -3.1700e-01, -2.2284e-01, 7.4938e-01, -8.8767e-01]],\n", "\n", " [[ 2.0751e-01, 3.8295e-01, 2.3988e-01, 6.5699e-01, -5.7568e-01,\n", " -3.6006e-01, -4.8100e-01, -7.9433e-01, 5.6901e-01, 1.7161e-01,\n", " 2.8785e-01, -5.9491e-01, -4.3984e-01, 3.0638e-01, 9.5131e-03,\n", " 7.5487e-01, 5.2016e-01, 5.6168e-01, 5.5644e-01, -6.0117e-01,\n", " -6.7291e-01, -1.5772e-01, 1.8844e-01, 3.3261e-01, 1.1509e-01,\n", " -8.2417e-01, 7.0802e-01, 2.9094e-02, -3.2895e-01, -2.3967e-01,\n", " 7.7577e-01, -2.4526e-01, 5.9929e-01, 3.5422e-01, -4.4149e-01,\n", " -6.9179e-02, -7.8540e-01, 3.7833e-01, 2.8132e-01, -1.9018e-02,\n", " -1.6282e-01, -6.4327e-01, -7.5924e-01, 4.9658e-01, 8.3237e-02,\n", " 2.1320e-01, -2.6824e-01, 2.1273e-01, 7.7034e-01, 7.6653e-01,\n", " 1.5166e-02, 4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\n", " 2.4408e-01, -6.8280e-01, 3.1720e-01, 8.1391e-01, 7.6437e-01,\n", " -4.0419e-01, -1.7341e-01, 7.5999e-01, -7.8587e-01],\n", " [-3.5172e-01, 9.4749e-01, 9.3039e-02, 5.2600e-01, -4.9879e-01,\n", " -7.1578e-01, -9.3014e-01, -8.5450e-01, 8.4293e-01, 2.8136e-01,\n", " -1.3557e-01, -8.6492e-01, -6.6690e-01, 9.2696e-01, -1.7106e-01,\n", " 7.2665e-01, 2.6598e-01, 9.6001e-01, 9.6707e-01, -5.8140e-01,\n", " -9.7127e-01, -4.0630e-01, 3.7375e-01, 5.6344e-01, 7.4631e-02,\n", " -7.8830e-01, 5.5113e-01, 2.4708e-01, -4.1964e-01, -1.2664e-04,\n", " 9.2945e-01, -5.1485e-01, 4.9163e-01, -8.3042e-02, -1.8104e-01,\n", " 4.5435e-01, -7.3406e-01, 7.6429e-01, 4.7469e-01, 5.3298e-02,\n", " 7.7167e-01, -9.4698e-01, -7.0945e-01, 2.6853e-01, -8.7757e-01,\n", " 1.6556e-01, -1.4299e-01, -3.2505e-01, 7.4663e-01, 9.6821e-01,\n", " -6.8238e-01, 8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\n", " 4.0388e-01, -9.8040e-01, 8.1152e-01, 8.5002e-01, 7.9787e-01,\n", " -9.2759e-01, 4.8487e-01, 8.3804e-01, -9.2653e-01]],\n", "\n", " [[-2.1554e-01, 9.2967e-01, 2.0494e-01, 5.2804e-01, -4.8765e-01,\n", " -7.3976e-01, -9.2037e-01, -8.3445e-01, 8.1982e-01, 2.0183e-01,\n", " -1.4853e-01, -7.8974e-01, -6.0921e-01, 9.2589e-01, -1.7823e-01,\n", " 7.0490e-01, 2.6072e-01, 9.5497e-01, 9.1133e-01, -5.1347e-01,\n", " -9.5951e-01, -2.3076e-01, 2.1754e-01, 4.3733e-01, -2.9295e-02,\n", " -8.0489e-01, 5.3086e-01, 2.0390e-01, -3.0930e-01, -3.5179e-03,\n", " 9.1803e-01, -4.7151e-01, 4.4910e-01, -3.0464e-02, -1.2364e-01,\n", " 3.4547e-01, -7.2454e-01, 5.3417e-01, 4.1927e-01, -5.4921e-02,\n", " 7.7939e-01, -9.4286e-01, -7.4250e-01, 1.5274e-01, -8.7349e-01,\n", " 2.0929e-01, -3.1794e-01, -3.3657e-01, 7.9071e-01, 9.1712e-01,\n", " -5.6772e-01, 8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\n", " 2.9902e-01, -9.6587e-01, 7.5750e-01, 8.3694e-01, 7.7867e-01,\n", " -9.3306e-01, 4.5615e-01, 8.3903e-01, -8.6171e-01],\n", " [-5.8363e-01, 9.7749e-01, 8.7658e-02, 3.8939e-01, -4.0473e-01,\n", " -7.1746e-01, -9.7746e-01, -8.7006e-01, 9.1532e-01, 2.8459e-01,\n", " -2.2359e-01, -9.1768e-01, -7.4716e-01, 9.8367e-01, -2.7790e-01,\n", " 6.9578e-01, 1.8294e-01, 9.7452e-01, 9.8907e-01, -5.4132e-01,\n", " -9.9230e-01, -4.4919e-01, 3.8879e-01, 5.6903e-01, -5.8009e-02,\n", " -7.7496e-01, 4.3154e-01, 3.7605e-01, -4.2439e-01, 6.4348e-02,\n", " 9.4892e-01, -6.6214e-01, 3.6881e-01, -2.0051e-01, 1.2171e-01,\n", " 5.8965e-01, -6.7904e-01, 8.1712e-01, 5.3582e-01, 1.9643e-02,\n", " 9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\n", " 1.6236e-01, -2.0750e-01, -6.0565e-01, 7.7366e-01, 9.8503e-01,\n", " -8.3358e-01, 9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\n", " 4.3214e-01, -9.8765e-01, 9.0666e-01, 8.6743e-01, 8.4182e-01,\n", " -9.8590e-01, 6.4342e-01, 8.6847e-01, -9.4970e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 0.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([2, 0])\n", "dec_state: tensor([[[ 0.9492, 0.4958, -0.8661, 0.6525, 0.3826, 0.4732, -0.4449,\n", " -0.4575, -0.4844, -0.0536, -0.1678, -0.7254, 0.7717, 0.2866,\n", " -0.9169, -0.4057, 0.4435, 0.2687, -0.8291, 0.4151, 0.9229,\n", " -0.6596, -0.0876, 0.7720, 0.8076, -0.8941, -0.4788, -0.7861,\n", " -0.4401, -0.2553, -0.8156, 0.8218, -0.5714, 0.8059, -0.3616,\n", " -0.9009, 0.5881, -0.4394, 0.6594, 0.6780, -0.6028, 0.8678,\n", " 0.6286, -0.2517, -0.3931, 0.4382, -0.3543, 0.8900, -0.1302,\n", " 0.5429, -0.2846, 0.8574, -0.0661, -0.6545, -0.1313, -0.1873,\n", " 0.9176, 0.6840, 0.1398, -0.1266, -0.9289, 0.7019, -0.2242,\n", " -0.1567],\n", " [ 0.8223, 0.9313, -0.5080, 0.7840, 0.4779, 0.0884, -0.4934,\n", " -0.6590, -0.4266, -0.2454, 0.0538, -0.5875, 0.0826, 0.7437,\n", " -0.6807, -0.5100, -0.1482, -0.4833, -0.5372, 0.7344, 0.9808,\n", " -0.8303, -0.2022, 0.8598, 0.9230, -0.8902, -0.7257, -0.7277,\n", " -0.8253, -0.8102, -0.4117, 0.9394, 0.6001, 0.7650, -0.7051,\n", " -0.9867, 0.1870, -0.6687, 0.5281, 0.9002, -0.6937, 0.8102,\n", " 0.9252, -0.4697, -0.6218, 0.8511, -0.6754, 0.5406, -0.1697,\n", " 0.7036, 0.6849, 0.9378, -0.1460, -0.6613, -0.0625, -0.0273,\n", " 0.9042, 0.9120, 0.0894, -0.2853, -0.9855, 0.8102, -0.1600,\n", " -0.1852]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-3.7979e-01, 9.4467e-02, -1.0363e-01, 4.6698e-01, 2.1990e-01,\n", " 1.0968e-01, 6.3953e-02, -6.2686e-01, 3.3735e-01, -1.5381e-01,\n", " 4.4057e-01, -1.3544e-01, 3.1925e-02, 2.8315e-01, 1.3914e-01,\n", " 4.8791e-01, 2.2082e-01, 6.2355e-03, 2.7165e-01, 1.7884e-01,\n", " -5.0191e-01, -1.1003e-01, 2.6037e-01, -1.4109e-01, -4.9608e-01,\n", " 1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\n", " 1.6098e-01, -1.8203e-01, 8.5968e-02, 1.6584e-01, -1.8070e-01,\n", " -1.0343e-02, -5.9731e-01, 2.7544e-01, 5.4321e-01, 1.2392e-01,\n", " -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\n", " 3.5685e-01, -2.1323e-01, -1.0543e-01, 2.0594e-01, -2.2193e-02,\n", " 2.7921e-01, 4.1012e-01, 2.2706e-01, -5.1412e-01, -3.2686e-01,\n", " 1.8903e-01, -5.3830e-01, 2.9266e-01, 1.3446e-01, 1.6127e-01,\n", " -4.3490e-01, 1.0959e-01, -3.0305e-02, -3.5573e-01],\n", " [-2.6735e-01, 3.3112e-01, -2.7546e-01, 3.3183e-02, -8.5314e-02,\n", " -4.6477e-02, -2.8822e-01, 1.6451e-01, -7.2843e-02, -1.5546e-01,\n", " -2.3366e-01, -1.8629e-01, -5.3722e-01, 3.5115e-01, 1.0961e-01,\n", " -4.6762e-01, 4.1160e-01, 2.9585e-01, 9.0005e-02, -6.4770e-01,\n", " -6.2316e-01, -1.1505e-01, 1.1418e-01, -7.1088e-02, 1.3812e-01,\n", " -7.0793e-03, 1.7934e-01, 3.0685e-01, -1.1399e-01, -1.2434e-01,\n", " 1.6922e-01, -1.0212e-01, 4.3567e-02, -3.6941e-01, -1.6724e-01,\n", " -9.6767e-02, -2.0039e-01, 1.6684e-01, -6.7633e-02, -3.5034e-01,\n", " 1.3738e-01, 6.7207e-01, -8.7835e-02, 7.1087e-02, -6.5737e-01,\n", " -4.0125e-01, 4.1675e-01, -1.4082e-01, 3.5492e-02, 4.1041e-01,\n", " 1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\n", " 1.9867e-01, -4.3455e-01, 1.8238e-01, 7.0308e-02, -2.2539e-01,\n", " 8.4201e-02, 1.7078e-01, 3.0062e-01, -4.3804e-01]],\n", "\n", " [[-4.8065e-01, 2.6210e-01, -4.0260e-01, 5.8659e-01, 8.2546e-02,\n", " 3.4530e-02, 1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\n", " 1.0646e-01, 4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\n", " -1.5987e-02, -2.1735e-01, -2.0578e-01, 1.5982e-01, 5.9540e-02,\n", " -6.4146e-02, -6.8747e-02, 8.1613e-02, -2.4492e-01, -1.3727e-01,\n", " 2.8170e-02, 2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\n", " 3.1014e-01, -2.1871e-01, 2.2693e-01, 9.0831e-02, -1.9375e-01,\n", " -7.3290e-02, -4.6222e-01, -2.5226e-01, 2.8962e-01, 1.9681e-01,\n", " -5.0930e-01, 2.7643e-01, -7.9155e-02, -4.1990e-02, 2.0346e-01,\n", " 2.3497e-01, -2.8674e-01, -2.4855e-01, 1.9804e-01, 3.0052e-01,\n", " -6.0785e-02, 3.1826e-01, 1.9004e-01, -5.7711e-01, -4.9490e-01,\n", " -8.7735e-02, -1.7347e-03, 2.3653e-01, 2.0227e-02, -1.3482e-01,\n", " 1.6056e-01, 3.6861e-01, -9.3747e-02, -5.8709e-01],\n", " [ 2.8863e-01, 1.2149e-01, -6.2922e-01, 8.2764e-01, -2.3366e-01,\n", " -2.9659e-01, -1.3204e-01, 6.2296e-01, 4.1152e-01, -3.6350e-01,\n", " -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01, 4.4920e-01,\n", " 2.2330e-01, 5.0395e-01, 4.6923e-01, 4.3649e-01, -6.4579e-01,\n", " -7.1763e-01, 8.1157e-03, 3.5871e-01, 6.4578e-01, 3.9625e-01,\n", " -2.8031e-01, 2.3281e-01, 1.3482e-01, -1.3590e-01, -2.4081e-01,\n", " 2.4641e-01, -3.3319e-02, 6.3331e-01, 1.2224e-01, -1.5938e-01,\n", " 3.8584e-02, -5.9274e-01, 9.0730e-01, 3.3856e-01, 4.1958e-01,\n", " 3.3964e-02, 6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\n", " -4.5367e-01, 3.1252e-01, -6.7000e-01, 2.1814e-01, 7.2959e-01,\n", " -3.7967e-02, 3.6063e-02, 4.0004e-02, -7.2575e-01, -5.1842e-01,\n", " -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01, 5.4467e-01,\n", " -6.7269e-01, -5.9413e-01, 1.6626e-01, -3.8840e-01]],\n", "\n", " [[-2.7220e-01, -2.4531e-02, -1.6230e-01, 3.7354e-01, 2.7549e-01,\n", " 1.5702e-01, 4.3217e-01, -3.1798e-02, -2.4066e-02, 1.7492e-01,\n", " 3.4950e-01, 6.5571e-01, 3.6861e-02, -5.1874e-01, -2.7192e-01,\n", " 1.2709e-01, 2.2026e-02, -2.0383e-01, 1.1850e-01, 1.7263e-01,\n", " -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\n", " 5.0656e-01, -4.9259e-02, -1.8042e-01, 2.2685e-02, -1.6907e-02,\n", " 4.9316e-01, -4.0781e-01, 5.2768e-01, 1.4780e-01, -3.1708e-01,\n", " -5.8049e-02, -4.2868e-01, 1.5513e-01, 4.0871e-01, 6.9345e-02,\n", " -2.5745e-01, 2.2631e-01, -3.6025e-02, -1.1274e-01, 2.8092e-01,\n", " 2.8765e-01, -1.5027e-01, -4.8283e-01, 1.6113e-01, -1.1905e-01,\n", " 2.6178e-01, 4.1344e-01, 1.8685e-01, -1.6060e-01, -5.5496e-01,\n", " -2.1107e-02, -1.0227e-01, 3.2287e-01, 9.7470e-02, 2.6766e-01,\n", " 1.8691e-01, 8.5429e-02, 5.3812e-02, -4.7839e-02],\n", " [ 3.5464e-03, 2.9370e-01, -5.7085e-01, 3.3890e-01, -1.7416e-01,\n", " -1.8559e-01, -3.1623e-01, -4.1640e-01, 3.5136e-01, 1.9977e-01,\n", " -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01, 1.6816e-02,\n", " 1.6564e-01, 3.3103e-01, 5.8284e-01, 6.0926e-01, -3.8338e-01,\n", " -1.2137e-01, -8.2141e-02, 2.6694e-01, 5.6790e-01, 3.6747e-01,\n", " 2.3225e-01, 4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\n", " 2.9217e-01, -2.7284e-01, 6.6239e-01, -2.6185e-01, -3.1728e-01,\n", " 1.4997e-01, -1.1499e-01, 5.4129e-01, 5.1287e-01, 2.2698e-01,\n", " 6.5991e-02, 2.7580e-01, -9.2449e-02, 3.2780e-01, 2.8706e-01,\n", " -2.4724e-01, 1.3564e-01, 1.2187e-02, 1.0591e-01, 6.9933e-01,\n", " 5.7920e-02, 1.1761e-01, 3.0423e-01, -6.0233e-01, -3.1639e-01,\n", " 1.2788e-01, -3.2039e-01, 2.4106e-01, -5.5253e-02, 1.5497e-01,\n", " -1.4665e-01, -3.5109e-01, 1.5986e-01, -5.2488e-01]],\n", "\n", " [[ 3.7523e-01, -2.3620e-01, -4.9797e-02, 4.1835e-01, -1.5337e-01,\n", " -4.3592e-01, 6.0074e-02, 1.3534e-01, 1.7858e-01, 1.5966e-01,\n", " 3.3192e-01, 2.5094e-01, -5.0503e-03, 4.2395e-02, 1.9029e-01,\n", " 1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01, 9.0552e-02,\n", " -4.2521e-01, 3.6821e-01, -1.6868e-01, 2.4873e-01, -3.5418e-01,\n", " 1.5303e-01, 1.4946e-01, -2.1823e-01, 3.2424e-01, -1.1741e-01,\n", " -2.7139e-02, 2.0159e-02, -1.3201e-01, 8.5273e-02, 3.5133e-03,\n", " -4.1714e-01, -3.1202e-01, -1.2512e-01, 6.6698e-02, -8.2786e-02,\n", " 1.1544e-01, 1.8986e-01, -7.2979e-01, -1.3826e-01, 1.9034e-01,\n", " -2.3812e-01, -3.5628e-01, -2.2061e-02, 3.5664e-01, 6.5099e-02,\n", " 4.1999e-01, 1.4260e-01, -2.5012e-01, 1.5174e-01, -3.1281e-01,\n", " -3.5239e-01, 2.1327e-02, -1.5330e-01, -7.5938e-02, 1.5824e-01,\n", " -5.2105e-01, 7.9910e-02, 2.9691e-01, 1.0999e-01],\n", " [ 1.7269e-01, 7.1661e-01, -1.3392e-01, 2.4210e-01, -2.4052e-01,\n", " -2.5021e-01, -5.2839e-01, -1.0832e-01, 5.5602e-01, 3.8296e-01,\n", " 2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02, 1.5606e-01,\n", " 4.4199e-01, 5.1434e-01, 1.9665e-01, 8.0063e-01, -6.5867e-01,\n", " 9.2088e-02, -7.4456e-02, 8.8930e-02, 5.4215e-01, 5.4784e-01,\n", " 1.8820e-01, 1.0462e-01, 2.0219e-02, 9.1717e-03, -1.8383e-01,\n", " 5.4892e-01, -5.8456e-01, 3.5563e-01, 2.4806e-01, -1.4683e-01,\n", " 1.8306e-01, -6.4206e-02, 5.9534e-01, -4.2084e-02, 5.7999e-02,\n", " -1.0971e-01, 4.6418e-01, -1.8560e-02, 3.6068e-01, -4.5977e-02,\n", " -7.6532e-03, 2.3670e-01, 9.5715e-02, 4.4234e-01, 7.5172e-01,\n", " -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\n", " -8.5172e-03, -5.9053e-01, 2.6878e-01, -2.2309e-01, 7.8604e-01,\n", " -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\n", "\n", " [[ 3.9541e-01, 4.9519e-01, 1.1028e-01, 2.2783e-01, -2.1352e-01,\n", " -4.2290e-01, -3.8576e-01, 2.2347e-01, 4.9458e-01, 3.3885e-01,\n", " 3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03, 2.2591e-01,\n", " 4.0734e-01, 4.6116e-01, -1.0352e-01, 3.2594e-01, -5.3246e-01,\n", " -1.2795e-01, 3.0881e-01, -1.5611e-01, 2.7612e-01, 1.5252e-01,\n", " 1.9220e-01, 1.6186e-01, -6.1315e-02, 3.1383e-01, -2.0718e-01,\n", " 3.9542e-01, -5.2364e-01, -1.0867e-01, 4.3802e-01, 6.8734e-02,\n", " -1.5552e-01, -1.1045e-01, 1.0764e-01, -3.4260e-01, -1.5649e-01,\n", " -2.2060e-02, 3.6901e-01, -3.2511e-01, 5.9674e-02, -2.2943e-02,\n", " 3.1358e-02, -1.1782e-01, 4.7566e-02, 5.6886e-01, 2.8382e-01,\n", " 2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\n", " -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01, 7.6172e-01,\n", " -5.2932e-01, -4.2038e-01, -1.3811e-01, 9.3005e-02],\n", " [ 4.2985e-03, 5.3781e-01, 9.7958e-02, 6.4659e-01, -5.9524e-01,\n", " -2.4234e-01, -5.6040e-01, -8.2409e-01, 6.0406e-01, 2.5802e-01,\n", " 1.4920e-01, -7.4744e-01, -5.5557e-01, 3.0839e-01, -2.8524e-04,\n", " 7.6712e-01, 5.3626e-01, 6.4505e-01, 8.5630e-01, -6.8977e-01,\n", " -7.3681e-01, -3.5756e-01, 3.5687e-01, 5.4350e-01, 3.4881e-01,\n", " -8.0242e-01, 7.1195e-01, 8.1859e-02, -4.9816e-01, -1.9957e-01,\n", " 8.1895e-01, -3.0832e-01, 6.4616e-01, 2.4095e-01, -5.7400e-01,\n", " 1.5690e-01, -7.8424e-01, 6.9440e-01, 3.7262e-01, 9.6325e-02,\n", " -2.3760e-01, -6.6459e-01, -6.6820e-01, 6.2534e-01, 8.6112e-02,\n", " 1.6394e-01, -1.9756e-02, 2.5657e-01, 7.1100e-01, 9.1409e-01,\n", " -2.0942e-01, 4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\n", " 3.6628e-01, -8.2357e-01, 4.8054e-01, 8.2876e-01, 7.8838e-01,\n", " -3.1700e-01, -2.2284e-01, 7.4938e-01, -8.8767e-01]],\n", "\n", " [[ 2.0751e-01, 3.8295e-01, 2.3988e-01, 6.5699e-01, -5.7568e-01,\n", " -3.6006e-01, -4.8100e-01, -7.9433e-01, 5.6901e-01, 1.7161e-01,\n", " 2.8785e-01, -5.9491e-01, -4.3984e-01, 3.0638e-01, 9.5131e-03,\n", " 7.5487e-01, 5.2016e-01, 5.6168e-01, 5.5644e-01, -6.0117e-01,\n", " -6.7291e-01, -1.5772e-01, 1.8844e-01, 3.3261e-01, 1.1509e-01,\n", " -8.2417e-01, 7.0802e-01, 2.9094e-02, -3.2895e-01, -2.3967e-01,\n", " 7.7577e-01, -2.4526e-01, 5.9929e-01, 3.5422e-01, -4.4149e-01,\n", " -6.9179e-02, -7.8540e-01, 3.7833e-01, 2.8132e-01, -1.9018e-02,\n", " -1.6282e-01, -6.4327e-01, -7.5924e-01, 4.9658e-01, 8.3237e-02,\n", " 2.1320e-01, -2.6824e-01, 2.1273e-01, 7.7034e-01, 7.6653e-01,\n", " 1.5166e-02, 4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\n", " 2.4408e-01, -6.8280e-01, 3.1720e-01, 8.1391e-01, 7.6437e-01,\n", " -4.0419e-01, -1.7341e-01, 7.5999e-01, -7.8587e-01],\n", " [-3.5172e-01, 9.4749e-01, 9.3039e-02, 5.2600e-01, -4.9879e-01,\n", " -7.1578e-01, -9.3014e-01, -8.5450e-01, 8.4293e-01, 2.8136e-01,\n", " -1.3557e-01, -8.6492e-01, -6.6690e-01, 9.2696e-01, -1.7106e-01,\n", " 7.2665e-01, 2.6598e-01, 9.6001e-01, 9.6707e-01, -5.8140e-01,\n", " -9.7127e-01, -4.0630e-01, 3.7375e-01, 5.6344e-01, 7.4631e-02,\n", " -7.8830e-01, 5.5113e-01, 2.4708e-01, -4.1964e-01, -1.2664e-04,\n", " 9.2945e-01, -5.1485e-01, 4.9163e-01, -8.3042e-02, -1.8104e-01,\n", " 4.5435e-01, -7.3406e-01, 7.6429e-01, 4.7469e-01, 5.3298e-02,\n", " 7.7167e-01, -9.4698e-01, -7.0945e-01, 2.6853e-01, -8.7757e-01,\n", " 1.6556e-01, -1.4299e-01, -3.2505e-01, 7.4663e-01, 9.6821e-01,\n", " -6.8238e-01, 8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\n", " 4.0388e-01, -9.8040e-01, 8.1152e-01, 8.5002e-01, 7.9787e-01,\n", " -9.2759e-01, 4.8487e-01, 8.3804e-01, -9.2653e-01]],\n", "\n", " [[-2.1554e-01, 9.2967e-01, 2.0494e-01, 5.2804e-01, -4.8765e-01,\n", " -7.3976e-01, -9.2037e-01, -8.3445e-01, 8.1982e-01, 2.0183e-01,\n", " -1.4853e-01, -7.8974e-01, -6.0921e-01, 9.2589e-01, -1.7823e-01,\n", " 7.0490e-01, 2.6072e-01, 9.5497e-01, 9.1133e-01, -5.1347e-01,\n", " -9.5951e-01, -2.3076e-01, 2.1754e-01, 4.3733e-01, -2.9295e-02,\n", " -8.0489e-01, 5.3086e-01, 2.0390e-01, -3.0930e-01, -3.5179e-03,\n", " 9.1803e-01, -4.7151e-01, 4.4910e-01, -3.0464e-02, -1.2364e-01,\n", " 3.4547e-01, -7.2454e-01, 5.3417e-01, 4.1927e-01, -5.4921e-02,\n", " 7.7939e-01, -9.4286e-01, -7.4250e-01, 1.5274e-01, -8.7349e-01,\n", " 2.0929e-01, -3.1794e-01, -3.3657e-01, 7.9071e-01, 9.1712e-01,\n", " -5.6772e-01, 8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\n", " 2.9902e-01, -9.6587e-01, 7.5750e-01, 8.3694e-01, 7.7867e-01,\n", " -9.3306e-01, 4.5615e-01, 8.3903e-01, -8.6171e-01],\n", " [-5.8363e-01, 9.7749e-01, 8.7658e-02, 3.8939e-01, -4.0473e-01,\n", " -7.1746e-01, -9.7746e-01, -8.7006e-01, 9.1532e-01, 2.8459e-01,\n", " -2.2359e-01, -9.1768e-01, -7.4716e-01, 9.8367e-01, -2.7790e-01,\n", " 6.9578e-01, 1.8294e-01, 9.7452e-01, 9.8907e-01, -5.4132e-01,\n", " -9.9230e-01, -4.4919e-01, 3.8879e-01, 5.6903e-01, -5.8009e-02,\n", " -7.7496e-01, 4.3154e-01, 3.7605e-01, -4.2439e-01, 6.4348e-02,\n", " 9.4892e-01, -6.6214e-01, 3.6881e-01, -2.0051e-01, 1.2171e-01,\n", " 5.8965e-01, -6.7904e-01, 8.1712e-01, 5.3582e-01, 1.9643e-02,\n", " 9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\n", " 1.6236e-01, -2.0750e-01, -6.0565e-01, 7.7366e-01, 9.8503e-01,\n", " -8.3358e-01, 9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\n", " 4.3214e-01, -9.8765e-01, 9.0666e-01, 8.6743e-01, 8.4182e-01,\n", " -9.8590e-01, 6.4342e-01, 8.6847e-01, -9.4970e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "tensor([[ 5, 4, 20, 3, 2, 0, 0],\n", " [ 8, 29, 26, 44, 3, 2, 0]])\n", "tensor([[ 8, 4, 20, 3, 2, 0, 0],\n", " [ 6, 4, 30, 10, 17, 3, 2]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-0.4926, 0.9920, -0.0134, 0.4109, -0.6246, -0.3218, -0.9875,\n", " -0.9226, 0.9716, -0.5513, 0.3783, -0.9762, -0.7466, 0.9917,\n", " 0.0698, 0.8021, 0.1127, 0.9836, 0.9717, 0.9573, -0.6240,\n", " -0.4236, 0.6281, 0.7880, 0.7974, -0.9134, -0.4135, -0.1915,\n", " -0.4179, -0.5657, -0.1617, -0.0803, 0.9626, 0.2555, 0.0035,\n", " 0.7511, 0.8956, 0.7793, 0.1154, -0.7133, -0.6264, -0.9765,\n", " 0.4175, -0.2215, -0.9883, 0.7281, -0.6475, -0.9267, 0.8927,\n", " 0.9929, -0.0055, 0.9890, -0.9765, 0.0757, -0.8288, 0.3630,\n", " -0.9335, 0.9559, 0.9264, 0.4917, -0.9947, 0.9554, 0.9351,\n", " -0.9154],\n", " [-0.3423, 0.9772, -0.0741, 0.4744, -0.7412, -0.4294, -0.9642,\n", " -0.9050, 0.9385, -0.4653, 0.3780, -0.9104, -0.5640, 0.9500,\n", " 0.1902, 0.8184, -0.0577, 0.9693, 0.9564, 0.9593, -0.8002,\n", " -0.5135, 0.5238, 0.6573, 0.7244, -0.8918, -0.3326, -0.2079,\n", " -0.4092, -0.1156, -0.2562, -0.2294, 0.9625, 0.4493, -0.0326,\n", " 0.7391, 0.8534, 0.7361, 0.0724, -0.7808, -0.3482, -0.9739,\n", " 0.3307, -0.0813, -0.9740, 0.7500, -0.6390, -0.8583, 0.8414,\n", " 0.9475, -0.5059, 0.9664, -0.9141, 0.1086, -0.7362, 0.3423,\n", " -0.9195, 0.9080, 0.8940, 0.6829, -0.9433, 0.9062, 0.8874,\n", " -0.9241]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2643, 0.4564, -0.2593, 0.0541, -0.0949, -0.0707, -0.4059,\n", " 0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895, 0.3679,\n", " 0.1058, -0.4368, 0.4438, 0.3126, 0.1805, -0.6815, -0.6550,\n", " -0.1472, 0.1178, -0.0509, 0.2158, -0.0236, 0.2572, 0.3204,\n", " -0.1213, -0.1323, 0.2779, -0.1086, 0.0890, -0.4043, -0.2370,\n", " -0.0740, -0.2013, 0.2110, -0.0625, -0.3476, 0.1305, 0.7000,\n", " -0.1356, 0.0533, -0.6974, -0.4555, 0.4434, -0.1698, 0.0568,\n", " 0.4341, 0.1590, -0.1960, -0.4161, -0.5756, -0.4891, 0.2558,\n", " -0.4767, 0.1833, 0.0714, -0.2048, -0.0357, 0.1653, 0.3216,\n", " -0.4956],\n", " [-0.3986, 0.1077, -0.1079, 0.4751, 0.2374, 0.0763, 0.0478,\n", " -0.6380, 0.3585, -0.1490, 0.4389, -0.1711, 0.0351, 0.3032,\n", " 0.1507, 0.5181, 0.2568, 0.0916, 0.2709, 0.1861, -0.5871,\n", " -0.1010, 0.2366, -0.1209, -0.5268, 0.0956, -0.4196, -0.2877,\n", " -0.0054, -0.0399, 0.1611, -0.1701, 0.1080, 0.1541, -0.1976,\n", " -0.0249, -0.6249, 0.3139, 0.5532, 0.1371, -0.2370, -0.5140,\n", " -0.1603, -0.1353, -0.1096, 0.3353, -0.2182, -0.1288, 0.1954,\n", " 0.0314, 0.2198, 0.4391, 0.2029, -0.5140, -0.3188, 0.2105,\n", " -0.5609, 0.2901, 0.1407, 0.1191, -0.4545, 0.1350, 0.0812,\n", " -0.3816]],\n", "\n", " [[ 0.3048, 0.2614, -0.6713, 0.8613, -0.2512, -0.4346, -0.2634,\n", " 0.6591, 0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\n", " 0.4387, 0.2709, 0.5605, 0.4969, 0.5650, -0.6975, -0.7697,\n", " -0.0075, 0.3626, 0.7565, 0.4823, -0.3389, 0.3312, 0.1820,\n", " -0.1854, -0.2484, 0.3879, -0.0510, 0.7113, 0.0262, -0.2328,\n", " 0.0428, -0.6167, 0.9327, 0.3825, 0.4738, 0.0045, 0.6714,\n", " -0.2780, -0.3274, -0.5227, -0.5403, 0.3292, -0.7134, 0.2665,\n", " 0.7792, -0.1701, 0.1585, -0.1340, -0.7831, -0.5599, 0.0010,\n", " -0.4418, 0.0466, -0.2996, 0.5337, -0.7619, -0.6692, 0.2525,\n", " -0.4926],\n", " [-0.5449, 0.2779, 0.6267, -0.0066, -0.3411, -0.4215, 0.1982,\n", " -0.4431, 0.6065, -0.3576, 0.1459, 0.1405, -0.3065, 0.3954,\n", " -0.0139, 0.5789, 0.3313, 0.1777, -0.2895, -0.0424, -0.7719,\n", " -0.1613, 0.3021, -0.0137, -0.1981, -0.1518, 0.0221, -0.0543,\n", " 0.4869, -0.0376, 0.6679, -0.2354, 0.1546, 0.4744, -0.0194,\n", " 0.2567, -0.0445, 0.2706, 0.2981, 0.0486, 0.3991, -0.7287,\n", " -0.2562, -0.6029, -0.2513, 0.2143, 0.0921, 0.0526, 0.3929,\n", " -0.1046, -0.1321, 0.5571, -0.0703, -0.4639, -0.5332, 0.7051,\n", " -0.4131, 0.4652, 0.3511, -0.1030, -0.6763, -0.2386, 0.4719,\n", " -0.1979]],\n", "\n", " [[ 0.3278, -0.2888, -0.0956, 0.7314, -0.2450, -0.5831, -0.0397,\n", " 0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\n", " 0.3975, 0.4884, 0.6930, 0.1510, 0.5433, -0.6360, -0.6441,\n", " 0.1115, 0.1613, 0.7858, 0.4847, -0.5446, 0.7429, 0.2655,\n", " -0.0490, -0.1175, 0.0364, 0.1196, 0.5943, 0.2333, -0.5645,\n", " -0.3604, -0.6270, 0.6515, -0.0406, 0.2102, -0.1837, 0.2619,\n", " -0.4548, 0.1320, -0.4382, -0.2788, 0.2147, -0.5275, 0.1388,\n", " 0.4512, 0.1896, -0.0293, -0.1224, -0.7348, -0.3286, 0.3086,\n", " -0.3752, 0.0572, -0.4160, 0.1187, -0.5770, -0.6388, 0.1324,\n", " -0.5198],\n", " [-0.5405, 0.0124, 0.3095, 0.0026, 0.3472, -0.0643, -0.2726,\n", " -0.1709, 0.3799, -0.5057, 0.6329, -0.0685, 0.4347, 0.3791,\n", " 0.4154, 0.4034, 0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\n", " -0.2282, -0.2110, 0.0466, -0.1903, -0.2866, 0.2155, 0.1366,\n", " 0.3826, -0.0260, 0.4968, -0.0116, -0.4877, 0.4981, -0.1737,\n", " -0.4543, -0.0929, 0.1796, 0.0635, 0.0320, -0.3178, -0.5188,\n", " 0.2668, -0.2357, -0.0332, -0.5571, -0.2157, 0.1033, 0.2126,\n", " -0.4119, 0.1621, 0.1569, 0.3292, -0.1883, -0.5136, 0.4836,\n", " 0.1629, 0.4135, 0.0817, 0.0296, -0.5296, -0.3845, 0.2176,\n", " -0.4257]],\n", "\n", " [[ 0.2165, 0.6643, 0.2134, 0.4667, -0.3658, -0.5918, -0.5354,\n", " 0.5185, 0.5647, 0.1890, 0.1068, -0.8998, -0.5254, -0.2879,\n", " 0.3621, 0.6158, 0.8000, -0.0707, 0.8353, -0.7904, -0.4499,\n", " 0.1003, 0.0254, 0.7849, 0.6487, -0.4766, 0.6924, 0.2688,\n", " -0.0224, -0.1641, 0.5357, -0.5526, 0.3533, 0.4206, -0.2618,\n", " -0.0252, -0.4151, 0.7307, -0.2902, 0.0149, -0.1347, 0.4171,\n", " -0.3612, 0.2912, -0.5252, -0.2134, 0.2129, -0.0995, 0.5832,\n", " 0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193, 0.2697,\n", " -0.7581, 0.1343, -0.4379, 0.8081, -0.7057, -0.7356, -0.2213,\n", " -0.5394],\n", " [-0.1251, 0.1434, 0.3819, 0.0779, 0.3546, 0.1264, 0.1404,\n", " -0.1140, 0.3947, -0.4812, 0.6593, -0.0573, 0.3087, 0.0349,\n", " 0.4715, 0.0450, 0.1793, -0.4911, -0.6166, 0.0762, -0.3557,\n", " -0.2982, -0.1911, 0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\n", " 0.1761, -0.1146, 0.1655, 0.1192, -0.0237, 0.4926, 0.1029,\n", " -0.2940, -0.1968, 0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\n", " 0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\n", " -0.1560, 0.3103, -0.2179, 0.0748, 0.2780, 0.0437, 0.1274,\n", " 0.2246, 0.3854, -0.3852, 0.4846, 0.0769, 0.1051, -0.1136,\n", " -0.2083]],\n", "\n", " [[ 0.0053, 0.5089, 0.3900, 0.7339, -0.6606, -0.5602, -0.6067,\n", " -0.7727, 0.6455, 0.0913, 0.2039, -0.9017, -0.6111, 0.2212,\n", " 0.2289, 0.8321, 0.7837, 0.6047, 0.8988, -0.8065, -0.8648,\n", " -0.1608, 0.2545, 0.7868, 0.4106, -0.9213, 0.8644, 0.2484,\n", " -0.4612, -0.1559, 0.8484, -0.3135, 0.6978, 0.2730, -0.6825,\n", " 0.1366, -0.8899, 0.8244, 0.3284, 0.0805, -0.2395, -0.6767,\n", " -0.8209, 0.6211, -0.3285, -0.0912, -0.0389, 0.1991, 0.8258,\n", " 0.9217, -0.2170, 0.5347, -0.4071, -0.8464, -0.5593, 0.6256,\n", " -0.9049, 0.4595, 0.9074, 0.7990, -0.5945, -0.3470, 0.8762,\n", " -0.9404],\n", " [ 0.0394, 0.7293, 0.1861, 0.0881, 0.0371, -0.1677, -0.4362,\n", " 0.1219, 0.6134, -0.0385, 0.6175, -0.7031, -0.0738, -0.1346,\n", " 0.5209, 0.4806, 0.6178, -0.3499, 0.3256, -0.4866, -0.1101,\n", " -0.2557, -0.1716, 0.2299, 0.3704, -0.2004, 0.0048, 0.0728,\n", " 0.1695, -0.1895, 0.5252, -0.4673, -0.0011, 0.5633, 0.0540,\n", " -0.0333, -0.0936, 0.6006, -0.4610, -0.1716, -0.3625, 0.0738,\n", " 0.2130, -0.0040, -0.1681, -0.0567, 0.0414, -0.0399, 0.3204,\n", " 0.1606, 0.0895, -0.4445, -0.1933, -0.5708, 0.0026, 0.1022,\n", " -0.1998, 0.2881, -0.4914, 0.8336, -0.2190, -0.4052, -0.4005,\n", " -0.2036]],\n", "\n", " [[-0.4344, 0.9695, 0.3881, 0.5407, -0.5645, -0.7304, -0.9651,\n", " -0.8371, 0.9021, 0.1183, 0.0341, -0.9520, -0.7408, 0.9443,\n", " 0.1162, 0.8202, 0.6560, 0.9675, 0.9835, -0.7582, -0.9880,\n", " -0.2225, 0.2812, 0.7177, 0.2373, -0.9129, 0.7111, 0.3292,\n", " -0.3043, 0.0067, 0.9513, -0.5549, 0.5781, -0.2277, -0.1309,\n", " 0.6114, -0.8130, 0.8737, 0.4949, 0.0302, 0.8304, -0.9538,\n", " -0.8416, 0.0377, -0.9450, -0.0728, -0.1449, -0.4713, 0.8478,\n", " 0.9788, -0.7699, 0.8377, -0.9320, -0.9075, -0.5798, 0.6564,\n", " -0.9924, 0.8009, 0.9216, 0.8556, -0.9676, 0.6107, 0.9332,\n", " -0.9650],\n", " [-0.1282, 0.6072, 0.2948, 0.5892, -0.5330, -0.2869, -0.5384,\n", " -0.7949, 0.6626, -0.0911, 0.4917, -0.7266, -0.3492, 0.2605,\n", " 0.2942, 0.8206, 0.6406, 0.5368, 0.5708, -0.5419, -0.7469,\n", " -0.3980, 0.1402, 0.3024, 0.2058, -0.9050, 0.7186, 0.1156,\n", " -0.3964, -0.1969, 0.8352, -0.2601, 0.6729, 0.3602, -0.5379,\n", " 0.1174, -0.8353, 0.7244, 0.2288, -0.0560, -0.4192, -0.7514,\n", " -0.6763, 0.4741, -0.0413, 0.0924, -0.2348, 0.1453, 0.6766,\n", " 0.7962, -0.1368, 0.4839, -0.2126, -0.7452, -0.4184, 0.5247,\n", " -0.6722, 0.5168, 0.8884, 0.8025, -0.1871, -0.1701, 0.8400,\n", " -0.8880]],\n", "\n", " [[-0.6811, 0.9904, 0.3873, 0.3274, -0.4650, -0.6639, -0.9928,\n", " -0.8714, 0.9532, 0.1302, -0.0052, -0.9700, -0.8229, 0.9916,\n", " 0.0321, 0.8120, 0.6073, 0.9809, 0.9954, -0.7496, -0.9976,\n", " -0.2798, 0.3025, 0.6563, 0.1430, -0.9052, 0.6155, 0.3971,\n", " -0.2514, 0.0549, 0.9648, -0.7167, 0.4741, -0.3832, 0.2246,\n", " 0.7622, -0.7477, 0.9110, 0.5800, -0.0079, 0.9455, -0.9695,\n", " -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456, 0.8637,\n", " 0.9926, -0.8969, 0.9267, -0.9887, -0.9147, -0.5940, 0.6758,\n", " -0.9929, 0.9099, 0.9321, 0.9038, -0.9955, 0.7793, 0.9528,\n", " -0.9790],\n", " [-0.5124, 0.9718, 0.2896, 0.4127, -0.4482, -0.6861, -0.9578,\n", " -0.8474, 0.8905, -0.0578, 0.1265, -0.8802, -0.5990, 0.9483,\n", " 0.1486, 0.8054, 0.5295, 0.9644, 0.9343, -0.5344, -0.9767,\n", " -0.4396, 0.1733, 0.4361, 0.1193, -0.8925, 0.5645, 0.2105,\n", " -0.2591, -0.0061, 0.9448, -0.4838, 0.5449, -0.2025, -0.1123,\n", " 0.5975, -0.7673, 0.8066, 0.4332, -0.1005, 0.7939, -0.9577,\n", " -0.7584, -0.0506, -0.9229, 0.0987, -0.3074, -0.4775, 0.7187,\n", " 0.9429, -0.7517, 0.8196, -0.8877, -0.8825, -0.4664, 0.5667,\n", " -0.9790, 0.8117, 0.9049, 0.8489, -0.9360, 0.6337, 0.9125,\n", " -0.9336]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([8, 6])\n", "dec_state: tensor([[[-0.5139, 0.9409, -0.3217, 0.4704, -0.4016, 0.4840, -0.9614,\n", " -0.8322, 0.9107, -0.8418, -0.8032, -0.9381, -0.7349, 0.9903,\n", " 0.2152, 0.5106, 0.5862, 0.8732, 0.8532, 0.9498, 0.5924,\n", " -0.5415, 0.4497, 0.8890, 0.5513, -0.9287, 0.7908, -0.0236,\n", " -0.8752, 0.2560, -0.3973, 0.3735, 0.8994, 0.4945, -0.7113,\n", " -0.4124, 0.9170, 0.7610, -0.2253, -0.1687, -0.8996, 0.1181,\n", " 0.0071, 0.0781, -0.9366, 0.3674, -0.7966, -0.7370, 0.1168,\n", " 0.9909, 0.8914, 0.9797, -0.9665, 0.5208, -0.8893, 0.1033,\n", " -0.7771, 0.6786, 0.9126, -0.8588, -0.9866, 0.9258, 0.8691,\n", " -0.2268],\n", " [-0.3547, 0.8473, 0.1931, 0.2897, -0.0424, 0.0313, -0.5243,\n", " -0.2753, 0.9347, -0.7126, -0.6475, -0.9686, -0.5810, 0.9238,\n", " 0.0477, 0.5437, 0.7361, 0.9091, 0.5509, 0.7893, -0.1386,\n", " 0.0350, 0.0471, 0.8609, 0.0062, -0.9019, 0.6731, -0.2110,\n", " -0.7027, -0.5051, -0.2774, 0.3881, 0.7472, 0.3543, -0.3488,\n", " 0.2362, 0.6532, 0.5327, -0.2058, -0.2741, -0.3495, -0.7365,\n", " -0.4693, 0.2411, -0.9539, -0.5723, -0.7329, 0.1148, 0.3159,\n", " 0.9596, 0.8297, 0.7788, -0.9345, -0.0642, -0.9583, 0.2603,\n", " -0.7771, -0.3859, 0.9046, -0.5980, -0.9246, 0.9335, 0.5049,\n", " 0.3799]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2643, 0.4564, -0.2593, 0.0541, -0.0949, -0.0707, -0.4059,\n", " 0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895, 0.3679,\n", " 0.1058, -0.4368, 0.4438, 0.3126, 0.1805, -0.6815, -0.6550,\n", " -0.1472, 0.1178, -0.0509, 0.2158, -0.0236, 0.2572, 0.3204,\n", " -0.1213, -0.1323, 0.2779, -0.1086, 0.0890, -0.4043, -0.2370,\n", " -0.0740, -0.2013, 0.2110, -0.0625, -0.3476, 0.1305, 0.7000,\n", " -0.1356, 0.0533, -0.6974, -0.4555, 0.4434, -0.1698, 0.0568,\n", " 0.4341, 0.1590, -0.1960, -0.4161, -0.5756, -0.4891, 0.2558,\n", " -0.4767, 0.1833, 0.0714, -0.2048, -0.0357, 0.1653, 0.3216,\n", " -0.4956],\n", " [-0.3986, 0.1077, -0.1079, 0.4751, 0.2374, 0.0763, 0.0478,\n", " -0.6380, 0.3585, -0.1490, 0.4389, -0.1711, 0.0351, 0.3032,\n", " 0.1507, 0.5181, 0.2568, 0.0916, 0.2709, 0.1861, -0.5871,\n", " -0.1010, 0.2366, -0.1209, -0.5268, 0.0956, -0.4196, -0.2877,\n", " -0.0054, -0.0399, 0.1611, -0.1701, 0.1080, 0.1541, -0.1976,\n", " -0.0249, -0.6249, 0.3139, 0.5532, 0.1371, -0.2370, -0.5140,\n", " -0.1603, -0.1353, -0.1096, 0.3353, -0.2182, -0.1288, 0.1954,\n", " 0.0314, 0.2198, 0.4391, 0.2029, -0.5140, -0.3188, 0.2105,\n", " -0.5609, 0.2901, 0.1407, 0.1191, -0.4545, 0.1350, 0.0812,\n", " -0.3816]],\n", "\n", " [[ 0.3048, 0.2614, -0.6713, 0.8613, -0.2512, -0.4346, -0.2634,\n", " 0.6591, 0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\n", " 0.4387, 0.2709, 0.5605, 0.4969, 0.5650, -0.6975, -0.7697,\n", " -0.0075, 0.3626, 0.7565, 0.4823, -0.3389, 0.3312, 0.1820,\n", " -0.1854, -0.2484, 0.3879, -0.0510, 0.7113, 0.0262, -0.2328,\n", " 0.0428, -0.6167, 0.9327, 0.3825, 0.4738, 0.0045, 0.6714,\n", " -0.2780, -0.3274, -0.5227, -0.5403, 0.3292, -0.7134, 0.2665,\n", " 0.7792, -0.1701, 0.1585, -0.1340, -0.7831, -0.5599, 0.0010,\n", " -0.4418, 0.0466, -0.2996, 0.5337, -0.7619, -0.6692, 0.2525,\n", " -0.4926],\n", " [-0.5449, 0.2779, 0.6267, -0.0066, -0.3411, -0.4215, 0.1982,\n", " -0.4431, 0.6065, -0.3576, 0.1459, 0.1405, -0.3065, 0.3954,\n", " -0.0139, 0.5789, 0.3313, 0.1777, -0.2895, -0.0424, -0.7719,\n", " -0.1613, 0.3021, -0.0137, -0.1981, -0.1518, 0.0221, -0.0543,\n", " 0.4869, -0.0376, 0.6679, -0.2354, 0.1546, 0.4744, -0.0194,\n", " 0.2567, -0.0445, 0.2706, 0.2981, 0.0486, 0.3991, -0.7287,\n", " -0.2562, -0.6029, -0.2513, 0.2143, 0.0921, 0.0526, 0.3929,\n", " -0.1046, -0.1321, 0.5571, -0.0703, -0.4639, -0.5332, 0.7051,\n", " -0.4131, 0.4652, 0.3511, -0.1030, -0.6763, -0.2386, 0.4719,\n", " -0.1979]],\n", "\n", " [[ 0.3278, -0.2888, -0.0956, 0.7314, -0.2450, -0.5831, -0.0397,\n", " 0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\n", " 0.3975, 0.4884, 0.6930, 0.1510, 0.5433, -0.6360, -0.6441,\n", " 0.1115, 0.1613, 0.7858, 0.4847, -0.5446, 0.7429, 0.2655,\n", " -0.0490, -0.1175, 0.0364, 0.1196, 0.5943, 0.2333, -0.5645,\n", " -0.3604, -0.6270, 0.6515, -0.0406, 0.2102, -0.1837, 0.2619,\n", " -0.4548, 0.1320, -0.4382, -0.2788, 0.2147, -0.5275, 0.1388,\n", " 0.4512, 0.1896, -0.0293, -0.1224, -0.7348, -0.3286, 0.3086,\n", " -0.3752, 0.0572, -0.4160, 0.1187, -0.5770, -0.6388, 0.1324,\n", " -0.5198],\n", " [-0.5405, 0.0124, 0.3095, 0.0026, 0.3472, -0.0643, -0.2726,\n", " -0.1709, 0.3799, -0.5057, 0.6329, -0.0685, 0.4347, 0.3791,\n", " 0.4154, 0.4034, 0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\n", " -0.2282, -0.2110, 0.0466, -0.1903, -0.2866, 0.2155, 0.1366,\n", " 0.3826, -0.0260, 0.4968, -0.0116, -0.4877, 0.4981, -0.1737,\n", " -0.4543, -0.0929, 0.1796, 0.0635, 0.0320, -0.3178, -0.5188,\n", " 0.2668, -0.2357, -0.0332, -0.5571, -0.2157, 0.1033, 0.2126,\n", " -0.4119, 0.1621, 0.1569, 0.3292, -0.1883, -0.5136, 0.4836,\n", " 0.1629, 0.4135, 0.0817, 0.0296, -0.5296, -0.3845, 0.2176,\n", " -0.4257]],\n", "\n", " [[ 0.2165, 0.6643, 0.2134, 0.4667, -0.3658, -0.5918, -0.5354,\n", " 0.5185, 0.5647, 0.1890, 0.1068, -0.8998, -0.5254, -0.2879,\n", " 0.3621, 0.6158, 0.8000, -0.0707, 0.8353, -0.7904, -0.4499,\n", " 0.1003, 0.0254, 0.7849, 0.6487, -0.4766, 0.6924, 0.2688,\n", " -0.0224, -0.1641, 0.5357, -0.5526, 0.3533, 0.4206, -0.2618,\n", " -0.0252, -0.4151, 0.7307, -0.2902, 0.0149, -0.1347, 0.4171,\n", " -0.3612, 0.2912, -0.5252, -0.2134, 0.2129, -0.0995, 0.5832,\n", " 0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193, 0.2697,\n", " -0.7581, 0.1343, -0.4379, 0.8081, -0.7057, -0.7356, -0.2213,\n", " -0.5394],\n", " [-0.1251, 0.1434, 0.3819, 0.0779, 0.3546, 0.1264, 0.1404,\n", " -0.1140, 0.3947, -0.4812, 0.6593, -0.0573, 0.3087, 0.0349,\n", " 0.4715, 0.0450, 0.1793, -0.4911, -0.6166, 0.0762, -0.3557,\n", " -0.2982, -0.1911, 0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\n", " 0.1761, -0.1146, 0.1655, 0.1192, -0.0237, 0.4926, 0.1029,\n", " -0.2940, -0.1968, 0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\n", " 0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\n", " -0.1560, 0.3103, -0.2179, 0.0748, 0.2780, 0.0437, 0.1274,\n", " 0.2246, 0.3854, -0.3852, 0.4846, 0.0769, 0.1051, -0.1136,\n", " -0.2083]],\n", "\n", " [[ 0.0053, 0.5089, 0.3900, 0.7339, -0.6606, -0.5602, -0.6067,\n", " -0.7727, 0.6455, 0.0913, 0.2039, -0.9017, -0.6111, 0.2212,\n", " 0.2289, 0.8321, 0.7837, 0.6047, 0.8988, -0.8065, -0.8648,\n", " -0.1608, 0.2545, 0.7868, 0.4106, -0.9213, 0.8644, 0.2484,\n", " -0.4612, -0.1559, 0.8484, -0.3135, 0.6978, 0.2730, -0.6825,\n", " 0.1366, -0.8899, 0.8244, 0.3284, 0.0805, -0.2395, -0.6767,\n", " -0.8209, 0.6211, -0.3285, -0.0912, -0.0389, 0.1991, 0.8258,\n", " 0.9217, -0.2170, 0.5347, -0.4071, -0.8464, -0.5593, 0.6256,\n", " -0.9049, 0.4595, 0.9074, 0.7990, -0.5945, -0.3470, 0.8762,\n", " -0.9404],\n", " [ 0.0394, 0.7293, 0.1861, 0.0881, 0.0371, -0.1677, -0.4362,\n", " 0.1219, 0.6134, -0.0385, 0.6175, -0.7031, -0.0738, -0.1346,\n", " 0.5209, 0.4806, 0.6178, -0.3499, 0.3256, -0.4866, -0.1101,\n", " -0.2557, -0.1716, 0.2299, 0.3704, -0.2004, 0.0048, 0.0728,\n", " 0.1695, -0.1895, 0.5252, -0.4673, -0.0011, 0.5633, 0.0540,\n", " -0.0333, -0.0936, 0.6006, -0.4610, -0.1716, -0.3625, 0.0738,\n", " 0.2130, -0.0040, -0.1681, -0.0567, 0.0414, -0.0399, 0.3204,\n", " 0.1606, 0.0895, -0.4445, -0.1933, -0.5708, 0.0026, 0.1022,\n", " -0.1998, 0.2881, -0.4914, 0.8336, -0.2190, -0.4052, -0.4005,\n", " -0.2036]],\n", "\n", " [[-0.4344, 0.9695, 0.3881, 0.5407, -0.5645, -0.7304, -0.9651,\n", " -0.8371, 0.9021, 0.1183, 0.0341, -0.9520, -0.7408, 0.9443,\n", " 0.1162, 0.8202, 0.6560, 0.9675, 0.9835, -0.7582, -0.9880,\n", " -0.2225, 0.2812, 0.7177, 0.2373, -0.9129, 0.7111, 0.3292,\n", " -0.3043, 0.0067, 0.9513, -0.5549, 0.5781, -0.2277, -0.1309,\n", " 0.6114, -0.8130, 0.8737, 0.4949, 0.0302, 0.8304, -0.9538,\n", " -0.8416, 0.0377, -0.9450, -0.0728, -0.1449, -0.4713, 0.8478,\n", " 0.9788, -0.7699, 0.8377, -0.9320, -0.9075, -0.5798, 0.6564,\n", " -0.9924, 0.8009, 0.9216, 0.8556, -0.9676, 0.6107, 0.9332,\n", " -0.9650],\n", " [-0.1282, 0.6072, 0.2948, 0.5892, -0.5330, -0.2869, -0.5384,\n", " -0.7949, 0.6626, -0.0911, 0.4917, -0.7266, -0.3492, 0.2605,\n", " 0.2942, 0.8206, 0.6406, 0.5368, 0.5708, -0.5419, -0.7469,\n", " -0.3980, 0.1402, 0.3024, 0.2058, -0.9050, 0.7186, 0.1156,\n", " -0.3964, -0.1969, 0.8352, -0.2601, 0.6729, 0.3602, -0.5379,\n", " 0.1174, -0.8353, 0.7244, 0.2288, -0.0560, -0.4192, -0.7514,\n", " -0.6763, 0.4741, -0.0413, 0.0924, -0.2348, 0.1453, 0.6766,\n", " 0.7962, -0.1368, 0.4839, -0.2126, -0.7452, -0.4184, 0.5247,\n", " -0.6722, 0.5168, 0.8884, 0.8025, -0.1871, -0.1701, 0.8400,\n", " -0.8880]],\n", "\n", " [[-0.6811, 0.9904, 0.3873, 0.3274, -0.4650, -0.6639, -0.9928,\n", " -0.8714, 0.9532, 0.1302, -0.0052, -0.9700, -0.8229, 0.9916,\n", " 0.0321, 0.8120, 0.6073, 0.9809, 0.9954, -0.7496, -0.9976,\n", " -0.2798, 0.3025, 0.6563, 0.1430, -0.9052, 0.6155, 0.3971,\n", " -0.2514, 0.0549, 0.9648, -0.7167, 0.4741, -0.3832, 0.2246,\n", " 0.7622, -0.7477, 0.9110, 0.5800, -0.0079, 0.9455, -0.9695,\n", " -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456, 0.8637,\n", " 0.9926, -0.8969, 0.9267, -0.9887, -0.9147, -0.5940, 0.6758,\n", " -0.9929, 0.9099, 0.9321, 0.9038, -0.9955, 0.7793, 0.9528,\n", " -0.9790],\n", " [-0.5124, 0.9718, 0.2896, 0.4127, -0.4482, -0.6861, -0.9578,\n", " -0.8474, 0.8905, -0.0578, 0.1265, -0.8802, -0.5990, 0.9483,\n", " 0.1486, 0.8054, 0.5295, 0.9644, 0.9343, -0.5344, -0.9767,\n", " -0.4396, 0.1733, 0.4361, 0.1193, -0.8925, 0.5645, 0.2105,\n", " -0.2591, -0.0061, 0.9448, -0.4838, 0.5449, -0.2025, -0.1123,\n", " 0.5975, -0.7673, 0.8066, 0.4332, -0.1005, 0.7939, -0.9577,\n", " -0.7584, -0.0506, -0.9229, 0.0987, -0.3074, -0.4775, 0.7187,\n", " 0.9429, -0.7517, 0.8196, -0.8877, -0.8825, -0.4664, 0.5667,\n", " -0.9790, 0.8117, 0.9049, 0.8489, -0.9360, 0.6337, 0.9125,\n", " -0.9336]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([4, 4])\n", "dec_state: tensor([[[ 0.0796, 0.9682, -0.7527, 0.8133, 0.2772, 0.4978, -0.9438,\n", " 0.6606, 0.2549, -0.9438, -0.8334, -0.9528, -0.5584, 0.9678,\n", " -0.1009, 0.0722, 0.6236, 0.5182, -0.5272, 0.8076, 0.7732,\n", " -0.6861, 0.3266, 0.9141, 0.8528, -0.9582, 0.1103, -0.2931,\n", " -0.9479, -0.7433, -0.9283, 0.7458, -0.5844, 0.5738, -0.6793,\n", " -0.2414, 0.7205, -0.0237, -0.5301, 0.6319, -0.8319, 0.5190,\n", " 0.4824, 0.4247, -0.8986, 0.1010, -0.4749, 0.8812, 0.0745,\n", " 0.9867, 0.8860, 0.9199, -0.8845, 0.0510, -0.9061, 0.1090,\n", " 0.3053, 0.4337, -0.1061, 0.1150, -0.9923, 0.9623, 0.2676,\n", " 0.0627],\n", " [ 0.1687, 0.8924, -0.4456, 0.7989, 0.3635, 0.1462, -0.5898,\n", " 0.7363, 0.1451, -0.8782, -0.8000, -0.9470, -0.4383, 0.8810,\n", " -0.1840, 0.0953, 0.7361, 0.6337, -0.6791, 0.6116, 0.4443,\n", " -0.3215, 0.1995, 0.8931, 0.6602, -0.9392, 0.2457, -0.2745,\n", " -0.8256, -0.7514, -0.8865, 0.7326, -0.4395, 0.5348, -0.2743,\n", " 0.1293, 0.5859, -0.0478, -0.4765, 0.5430, -0.3438, -0.0167,\n", " 0.1033, 0.4039, -0.7716, -0.3153, -0.0248, 0.8970, 0.2419,\n", " 0.9496, 0.3994, 0.7277, -0.8746, -0.2984, -0.9034, 0.2863,\n", " 0.1145, 0.0483, -0.2792, 0.2694, -0.9456, 0.9549, -0.1658,\n", " 0.1617]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2643, 0.4564, -0.2593, 0.0541, -0.0949, -0.0707, -0.4059,\n", " 0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895, 0.3679,\n", " 0.1058, -0.4368, 0.4438, 0.3126, 0.1805, -0.6815, -0.6550,\n", " -0.1472, 0.1178, -0.0509, 0.2158, -0.0236, 0.2572, 0.3204,\n", " -0.1213, -0.1323, 0.2779, -0.1086, 0.0890, -0.4043, -0.2370,\n", " -0.0740, -0.2013, 0.2110, -0.0625, -0.3476, 0.1305, 0.7000,\n", " -0.1356, 0.0533, -0.6974, -0.4555, 0.4434, -0.1698, 0.0568,\n", " 0.4341, 0.1590, -0.1960, -0.4161, -0.5756, -0.4891, 0.2558,\n", " -0.4767, 0.1833, 0.0714, -0.2048, -0.0357, 0.1653, 0.3216,\n", " -0.4956],\n", " [-0.3986, 0.1077, -0.1079, 0.4751, 0.2374, 0.0763, 0.0478,\n", " -0.6380, 0.3585, -0.1490, 0.4389, -0.1711, 0.0351, 0.3032,\n", " 0.1507, 0.5181, 0.2568, 0.0916, 0.2709, 0.1861, -0.5871,\n", " -0.1010, 0.2366, -0.1209, -0.5268, 0.0956, -0.4196, -0.2877,\n", " -0.0054, -0.0399, 0.1611, -0.1701, 0.1080, 0.1541, -0.1976,\n", " -0.0249, -0.6249, 0.3139, 0.5532, 0.1371, -0.2370, -0.5140,\n", " -0.1603, -0.1353, -0.1096, 0.3353, -0.2182, -0.1288, 0.1954,\n", " 0.0314, 0.2198, 0.4391, 0.2029, -0.5140, -0.3188, 0.2105,\n", " -0.5609, 0.2901, 0.1407, 0.1191, -0.4545, 0.1350, 0.0812,\n", " -0.3816]],\n", "\n", " [[ 0.3048, 0.2614, -0.6713, 0.8613, -0.2512, -0.4346, -0.2634,\n", " 0.6591, 0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\n", " 0.4387, 0.2709, 0.5605, 0.4969, 0.5650, -0.6975, -0.7697,\n", " -0.0075, 0.3626, 0.7565, 0.4823, -0.3389, 0.3312, 0.1820,\n", " -0.1854, -0.2484, 0.3879, -0.0510, 0.7113, 0.0262, -0.2328,\n", " 0.0428, -0.6167, 0.9327, 0.3825, 0.4738, 0.0045, 0.6714,\n", " -0.2780, -0.3274, -0.5227, -0.5403, 0.3292, -0.7134, 0.2665,\n", " 0.7792, -0.1701, 0.1585, -0.1340, -0.7831, -0.5599, 0.0010,\n", " -0.4418, 0.0466, -0.2996, 0.5337, -0.7619, -0.6692, 0.2525,\n", " -0.4926],\n", " [-0.5449, 0.2779, 0.6267, -0.0066, -0.3411, -0.4215, 0.1982,\n", " -0.4431, 0.6065, -0.3576, 0.1459, 0.1405, -0.3065, 0.3954,\n", " -0.0139, 0.5789, 0.3313, 0.1777, -0.2895, -0.0424, -0.7719,\n", " -0.1613, 0.3021, -0.0137, -0.1981, -0.1518, 0.0221, -0.0543,\n", " 0.4869, -0.0376, 0.6679, -0.2354, 0.1546, 0.4744, -0.0194,\n", " 0.2567, -0.0445, 0.2706, 0.2981, 0.0486, 0.3991, -0.7287,\n", " -0.2562, -0.6029, -0.2513, 0.2143, 0.0921, 0.0526, 0.3929,\n", " -0.1046, -0.1321, 0.5571, -0.0703, -0.4639, -0.5332, 0.7051,\n", " -0.4131, 0.4652, 0.3511, -0.1030, -0.6763, -0.2386, 0.4719,\n", " -0.1979]],\n", "\n", " [[ 0.3278, -0.2888, -0.0956, 0.7314, -0.2450, -0.5831, -0.0397,\n", " 0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\n", " 0.3975, 0.4884, 0.6930, 0.1510, 0.5433, -0.6360, -0.6441,\n", " 0.1115, 0.1613, 0.7858, 0.4847, -0.5446, 0.7429, 0.2655,\n", " -0.0490, -0.1175, 0.0364, 0.1196, 0.5943, 0.2333, -0.5645,\n", " -0.3604, -0.6270, 0.6515, -0.0406, 0.2102, -0.1837, 0.2619,\n", " -0.4548, 0.1320, -0.4382, -0.2788, 0.2147, -0.5275, 0.1388,\n", " 0.4512, 0.1896, -0.0293, -0.1224, -0.7348, -0.3286, 0.3086,\n", " -0.3752, 0.0572, -0.4160, 0.1187, -0.5770, -0.6388, 0.1324,\n", " -0.5198],\n", " [-0.5405, 0.0124, 0.3095, 0.0026, 0.3472, -0.0643, -0.2726,\n", " -0.1709, 0.3799, -0.5057, 0.6329, -0.0685, 0.4347, 0.3791,\n", " 0.4154, 0.4034, 0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\n", " -0.2282, -0.2110, 0.0466, -0.1903, -0.2866, 0.2155, 0.1366,\n", " 0.3826, -0.0260, 0.4968, -0.0116, -0.4877, 0.4981, -0.1737,\n", " -0.4543, -0.0929, 0.1796, 0.0635, 0.0320, -0.3178, -0.5188,\n", " 0.2668, -0.2357, -0.0332, -0.5571, -0.2157, 0.1033, 0.2126,\n", " -0.4119, 0.1621, 0.1569, 0.3292, -0.1883, -0.5136, 0.4836,\n", " 0.1629, 0.4135, 0.0817, 0.0296, -0.5296, -0.3845, 0.2176,\n", " -0.4257]],\n", "\n", " [[ 0.2165, 0.6643, 0.2134, 0.4667, -0.3658, -0.5918, -0.5354,\n", " 0.5185, 0.5647, 0.1890, 0.1068, -0.8998, -0.5254, -0.2879,\n", " 0.3621, 0.6158, 0.8000, -0.0707, 0.8353, -0.7904, -0.4499,\n", " 0.1003, 0.0254, 0.7849, 0.6487, -0.4766, 0.6924, 0.2688,\n", " -0.0224, -0.1641, 0.5357, -0.5526, 0.3533, 0.4206, -0.2618,\n", " -0.0252, -0.4151, 0.7307, -0.2902, 0.0149, -0.1347, 0.4171,\n", " -0.3612, 0.2912, -0.5252, -0.2134, 0.2129, -0.0995, 0.5832,\n", " 0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193, 0.2697,\n", " -0.7581, 0.1343, -0.4379, 0.8081, -0.7057, -0.7356, -0.2213,\n", " -0.5394],\n", " [-0.1251, 0.1434, 0.3819, 0.0779, 0.3546, 0.1264, 0.1404,\n", " -0.1140, 0.3947, -0.4812, 0.6593, -0.0573, 0.3087, 0.0349,\n", " 0.4715, 0.0450, 0.1793, -0.4911, -0.6166, 0.0762, -0.3557,\n", " -0.2982, -0.1911, 0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\n", " 0.1761, -0.1146, 0.1655, 0.1192, -0.0237, 0.4926, 0.1029,\n", " -0.2940, -0.1968, 0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\n", " 0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\n", " -0.1560, 0.3103, -0.2179, 0.0748, 0.2780, 0.0437, 0.1274,\n", " 0.2246, 0.3854, -0.3852, 0.4846, 0.0769, 0.1051, -0.1136,\n", " -0.2083]],\n", "\n", " [[ 0.0053, 0.5089, 0.3900, 0.7339, -0.6606, -0.5602, -0.6067,\n", " -0.7727, 0.6455, 0.0913, 0.2039, -0.9017, -0.6111, 0.2212,\n", " 0.2289, 0.8321, 0.7837, 0.6047, 0.8988, -0.8065, -0.8648,\n", " -0.1608, 0.2545, 0.7868, 0.4106, -0.9213, 0.8644, 0.2484,\n", " -0.4612, -0.1559, 0.8484, -0.3135, 0.6978, 0.2730, -0.6825,\n", " 0.1366, -0.8899, 0.8244, 0.3284, 0.0805, -0.2395, -0.6767,\n", " -0.8209, 0.6211, -0.3285, -0.0912, -0.0389, 0.1991, 0.8258,\n", " 0.9217, -0.2170, 0.5347, -0.4071, -0.8464, -0.5593, 0.6256,\n", " -0.9049, 0.4595, 0.9074, 0.7990, -0.5945, -0.3470, 0.8762,\n", " -0.9404],\n", " [ 0.0394, 0.7293, 0.1861, 0.0881, 0.0371, -0.1677, -0.4362,\n", " 0.1219, 0.6134, -0.0385, 0.6175, -0.7031, -0.0738, -0.1346,\n", " 0.5209, 0.4806, 0.6178, -0.3499, 0.3256, -0.4866, -0.1101,\n", " -0.2557, -0.1716, 0.2299, 0.3704, -0.2004, 0.0048, 0.0728,\n", " 0.1695, -0.1895, 0.5252, -0.4673, -0.0011, 0.5633, 0.0540,\n", " -0.0333, -0.0936, 0.6006, -0.4610, -0.1716, -0.3625, 0.0738,\n", " 0.2130, -0.0040, -0.1681, -0.0567, 0.0414, -0.0399, 0.3204,\n", " 0.1606, 0.0895, -0.4445, -0.1933, -0.5708, 0.0026, 0.1022,\n", " -0.1998, 0.2881, -0.4914, 0.8336, -0.2190, -0.4052, -0.4005,\n", " -0.2036]],\n", "\n", " [[-0.4344, 0.9695, 0.3881, 0.5407, -0.5645, -0.7304, -0.9651,\n", " -0.8371, 0.9021, 0.1183, 0.0341, -0.9520, -0.7408, 0.9443,\n", " 0.1162, 0.8202, 0.6560, 0.9675, 0.9835, -0.7582, -0.9880,\n", " -0.2225, 0.2812, 0.7177, 0.2373, -0.9129, 0.7111, 0.3292,\n", " -0.3043, 0.0067, 0.9513, -0.5549, 0.5781, -0.2277, -0.1309,\n", " 0.6114, -0.8130, 0.8737, 0.4949, 0.0302, 0.8304, -0.9538,\n", " -0.8416, 0.0377, -0.9450, -0.0728, -0.1449, -0.4713, 0.8478,\n", " 0.9788, -0.7699, 0.8377, -0.9320, -0.9075, -0.5798, 0.6564,\n", " -0.9924, 0.8009, 0.9216, 0.8556, -0.9676, 0.6107, 0.9332,\n", " -0.9650],\n", " [-0.1282, 0.6072, 0.2948, 0.5892, -0.5330, -0.2869, -0.5384,\n", " -0.7949, 0.6626, -0.0911, 0.4917, -0.7266, -0.3492, 0.2605,\n", " 0.2942, 0.8206, 0.6406, 0.5368, 0.5708, -0.5419, -0.7469,\n", " -0.3980, 0.1402, 0.3024, 0.2058, -0.9050, 0.7186, 0.1156,\n", " -0.3964, -0.1969, 0.8352, -0.2601, 0.6729, 0.3602, -0.5379,\n", " 0.1174, -0.8353, 0.7244, 0.2288, -0.0560, -0.4192, -0.7514,\n", " -0.6763, 0.4741, -0.0413, 0.0924, -0.2348, 0.1453, 0.6766,\n", " 0.7962, -0.1368, 0.4839, -0.2126, -0.7452, -0.4184, 0.5247,\n", " -0.6722, 0.5168, 0.8884, 0.8025, -0.1871, -0.1701, 0.8400,\n", " -0.8880]],\n", "\n", " [[-0.6811, 0.9904, 0.3873, 0.3274, -0.4650, -0.6639, -0.9928,\n", " -0.8714, 0.9532, 0.1302, -0.0052, -0.9700, -0.8229, 0.9916,\n", " 0.0321, 0.8120, 0.6073, 0.9809, 0.9954, -0.7496, -0.9976,\n", " -0.2798, 0.3025, 0.6563, 0.1430, -0.9052, 0.6155, 0.3971,\n", " -0.2514, 0.0549, 0.9648, -0.7167, 0.4741, -0.3832, 0.2246,\n", " 0.7622, -0.7477, 0.9110, 0.5800, -0.0079, 0.9455, -0.9695,\n", " -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456, 0.8637,\n", " 0.9926, -0.8969, 0.9267, -0.9887, -0.9147, -0.5940, 0.6758,\n", " -0.9929, 0.9099, 0.9321, 0.9038, -0.9955, 0.7793, 0.9528,\n", " -0.9790],\n", " [-0.5124, 0.9718, 0.2896, 0.4127, -0.4482, -0.6861, -0.9578,\n", " -0.8474, 0.8905, -0.0578, 0.1265, -0.8802, -0.5990, 0.9483,\n", " 0.1486, 0.8054, 0.5295, 0.9644, 0.9343, -0.5344, -0.9767,\n", " -0.4396, 0.1733, 0.4361, 0.1193, -0.8925, 0.5645, 0.2105,\n", " -0.2591, -0.0061, 0.9448, -0.4838, 0.5449, -0.2025, -0.1123,\n", " 0.5975, -0.7673, 0.8066, 0.4332, -0.1005, 0.7939, -0.9577,\n", " -0.7584, -0.0506, -0.9229, 0.0987, -0.3074, -0.4775, 0.7187,\n", " 0.9429, -0.7517, 0.8196, -0.8877, -0.8825, -0.4664, 0.5667,\n", " -0.9790, 0.8117, 0.9049, 0.8489, -0.9360, 0.6337, 0.9125,\n", " -0.9336]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([20, 30])\n", "dec_state: tensor([[[ 0.4745, 0.9762, -0.8598, 0.8400, 0.6505, 0.6636, -0.7727,\n", " 0.2102, -0.5082, -0.4561, -0.0538, -0.9111, -0.6578, 0.9547,\n", " -0.2309, -0.3372, 0.2878, -0.2481, -0.7266, 0.7281, 0.9745,\n", " -0.7803, 0.3708, 0.9464, 0.9260, -0.9284, -0.4815, -0.7679,\n", " -0.8446, -0.7406, -0.8924, 0.7532, 0.4614, 0.5389, -0.7065,\n", " -0.7184, 0.3893, -0.2018, -0.2994, 0.6826, -0.8677, 0.7264,\n", " 0.7340, 0.3544, -0.7882, 0.5901, -0.7388, 0.8485, 0.0589,\n", " 0.9639, 0.7774, 0.9588, -0.4676, -0.5464, -0.8136, -0.2098,\n", " 0.5777, 0.8557, -0.0411, -0.1038, -0.9810, 0.9668, 0.2124,\n", " -0.4334],\n", " [ 0.3633, 0.9521, -0.5004, 0.7246, 0.4697, 0.5263, -0.7805,\n", " -0.1471, 0.3911, -0.3922, -0.9429, -0.8670, 0.3088, 0.9616,\n", " -0.2001, -0.2349, 0.7130, 0.2369, -0.0729, 0.6765, 0.7163,\n", " -0.2702, -0.4376, 0.9381, 0.6016, -0.9418, 0.3252, -0.5904,\n", " -0.2976, -0.2988, -0.4439, 0.7373, 0.6474, 0.5106, -0.1087,\n", " -0.0405, 0.7924, -0.1458, -0.4020, 0.5518, -0.4919, 0.1441,\n", " 0.6316, -0.2103, -0.6101, 0.3307, 0.2009, 0.6321, -0.1175,\n", " 0.9239, -0.1104, 0.8300, -0.3840, -0.6672, -0.0366, -0.0285,\n", " 0.5695, 0.5802, -0.1769, -0.3600, -0.9563, 0.9571, -0.2749,\n", " -0.6171]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2643, 0.4564, -0.2593, 0.0541, -0.0949, -0.0707, -0.4059,\n", " 0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895, 0.3679,\n", " 0.1058, -0.4368, 0.4438, 0.3126, 0.1805, -0.6815, -0.6550,\n", " -0.1472, 0.1178, -0.0509, 0.2158, -0.0236, 0.2572, 0.3204,\n", " -0.1213, -0.1323, 0.2779, -0.1086, 0.0890, -0.4043, -0.2370,\n", " -0.0740, -0.2013, 0.2110, -0.0625, -0.3476, 0.1305, 0.7000,\n", " -0.1356, 0.0533, -0.6974, -0.4555, 0.4434, -0.1698, 0.0568,\n", " 0.4341, 0.1590, -0.1960, -0.4161, -0.5756, -0.4891, 0.2558,\n", " -0.4767, 0.1833, 0.0714, -0.2048, -0.0357, 0.1653, 0.3216,\n", " -0.4956],\n", " [-0.3986, 0.1077, -0.1079, 0.4751, 0.2374, 0.0763, 0.0478,\n", " -0.6380, 0.3585, -0.1490, 0.4389, -0.1711, 0.0351, 0.3032,\n", " 0.1507, 0.5181, 0.2568, 0.0916, 0.2709, 0.1861, -0.5871,\n", " -0.1010, 0.2366, -0.1209, -0.5268, 0.0956, -0.4196, -0.2877,\n", " -0.0054, -0.0399, 0.1611, -0.1701, 0.1080, 0.1541, -0.1976,\n", " -0.0249, -0.6249, 0.3139, 0.5532, 0.1371, -0.2370, -0.5140,\n", " -0.1603, -0.1353, -0.1096, 0.3353, -0.2182, -0.1288, 0.1954,\n", " 0.0314, 0.2198, 0.4391, 0.2029, -0.5140, -0.3188, 0.2105,\n", " -0.5609, 0.2901, 0.1407, 0.1191, -0.4545, 0.1350, 0.0812,\n", " -0.3816]],\n", "\n", " [[ 0.3048, 0.2614, -0.6713, 0.8613, -0.2512, -0.4346, -0.2634,\n", " 0.6591, 0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\n", " 0.4387, 0.2709, 0.5605, 0.4969, 0.5650, -0.6975, -0.7697,\n", " -0.0075, 0.3626, 0.7565, 0.4823, -0.3389, 0.3312, 0.1820,\n", " -0.1854, -0.2484, 0.3879, -0.0510, 0.7113, 0.0262, -0.2328,\n", " 0.0428, -0.6167, 0.9327, 0.3825, 0.4738, 0.0045, 0.6714,\n", " -0.2780, -0.3274, -0.5227, -0.5403, 0.3292, -0.7134, 0.2665,\n", " 0.7792, -0.1701, 0.1585, -0.1340, -0.7831, -0.5599, 0.0010,\n", " -0.4418, 0.0466, -0.2996, 0.5337, -0.7619, -0.6692, 0.2525,\n", " -0.4926],\n", " [-0.5449, 0.2779, 0.6267, -0.0066, -0.3411, -0.4215, 0.1982,\n", " -0.4431, 0.6065, -0.3576, 0.1459, 0.1405, -0.3065, 0.3954,\n", " -0.0139, 0.5789, 0.3313, 0.1777, -0.2895, -0.0424, -0.7719,\n", " -0.1613, 0.3021, -0.0137, -0.1981, -0.1518, 0.0221, -0.0543,\n", " 0.4869, -0.0376, 0.6679, -0.2354, 0.1546, 0.4744, -0.0194,\n", " 0.2567, -0.0445, 0.2706, 0.2981, 0.0486, 0.3991, -0.7287,\n", " -0.2562, -0.6029, -0.2513, 0.2143, 0.0921, 0.0526, 0.3929,\n", " -0.1046, -0.1321, 0.5571, -0.0703, -0.4639, -0.5332, 0.7051,\n", " -0.4131, 0.4652, 0.3511, -0.1030, -0.6763, -0.2386, 0.4719,\n", " -0.1979]],\n", "\n", " [[ 0.3278, -0.2888, -0.0956, 0.7314, -0.2450, -0.5831, -0.0397,\n", " 0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\n", " 0.3975, 0.4884, 0.6930, 0.1510, 0.5433, -0.6360, -0.6441,\n", " 0.1115, 0.1613, 0.7858, 0.4847, -0.5446, 0.7429, 0.2655,\n", " -0.0490, -0.1175, 0.0364, 0.1196, 0.5943, 0.2333, -0.5645,\n", " -0.3604, -0.6270, 0.6515, -0.0406, 0.2102, -0.1837, 0.2619,\n", " -0.4548, 0.1320, -0.4382, -0.2788, 0.2147, -0.5275, 0.1388,\n", " 0.4512, 0.1896, -0.0293, -0.1224, -0.7348, -0.3286, 0.3086,\n", " -0.3752, 0.0572, -0.4160, 0.1187, -0.5770, -0.6388, 0.1324,\n", " -0.5198],\n", " [-0.5405, 0.0124, 0.3095, 0.0026, 0.3472, -0.0643, -0.2726,\n", " -0.1709, 0.3799, -0.5057, 0.6329, -0.0685, 0.4347, 0.3791,\n", " 0.4154, 0.4034, 0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\n", " -0.2282, -0.2110, 0.0466, -0.1903, -0.2866, 0.2155, 0.1366,\n", " 0.3826, -0.0260, 0.4968, -0.0116, -0.4877, 0.4981, -0.1737,\n", " -0.4543, -0.0929, 0.1796, 0.0635, 0.0320, -0.3178, -0.5188,\n", " 0.2668, -0.2357, -0.0332, -0.5571, -0.2157, 0.1033, 0.2126,\n", " -0.4119, 0.1621, 0.1569, 0.3292, -0.1883, -0.5136, 0.4836,\n", " 0.1629, 0.4135, 0.0817, 0.0296, -0.5296, -0.3845, 0.2176,\n", " -0.4257]],\n", "\n", " [[ 0.2165, 0.6643, 0.2134, 0.4667, -0.3658, -0.5918, -0.5354,\n", " 0.5185, 0.5647, 0.1890, 0.1068, -0.8998, -0.5254, -0.2879,\n", " 0.3621, 0.6158, 0.8000, -0.0707, 0.8353, -0.7904, -0.4499,\n", " 0.1003, 0.0254, 0.7849, 0.6487, -0.4766, 0.6924, 0.2688,\n", " -0.0224, -0.1641, 0.5357, -0.5526, 0.3533, 0.4206, -0.2618,\n", " -0.0252, -0.4151, 0.7307, -0.2902, 0.0149, -0.1347, 0.4171,\n", " -0.3612, 0.2912, -0.5252, -0.2134, 0.2129, -0.0995, 0.5832,\n", " 0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193, 0.2697,\n", " -0.7581, 0.1343, -0.4379, 0.8081, -0.7057, -0.7356, -0.2213,\n", " -0.5394],\n", " [-0.1251, 0.1434, 0.3819, 0.0779, 0.3546, 0.1264, 0.1404,\n", " -0.1140, 0.3947, -0.4812, 0.6593, -0.0573, 0.3087, 0.0349,\n", " 0.4715, 0.0450, 0.1793, -0.4911, -0.6166, 0.0762, -0.3557,\n", " -0.2982, -0.1911, 0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\n", " 0.1761, -0.1146, 0.1655, 0.1192, -0.0237, 0.4926, 0.1029,\n", " -0.2940, -0.1968, 0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\n", " 0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\n", " -0.1560, 0.3103, -0.2179, 0.0748, 0.2780, 0.0437, 0.1274,\n", " 0.2246, 0.3854, -0.3852, 0.4846, 0.0769, 0.1051, -0.1136,\n", " -0.2083]],\n", "\n", " [[ 0.0053, 0.5089, 0.3900, 0.7339, -0.6606, -0.5602, -0.6067,\n", " -0.7727, 0.6455, 0.0913, 0.2039, -0.9017, -0.6111, 0.2212,\n", " 0.2289, 0.8321, 0.7837, 0.6047, 0.8988, -0.8065, -0.8648,\n", " -0.1608, 0.2545, 0.7868, 0.4106, -0.9213, 0.8644, 0.2484,\n", " -0.4612, -0.1559, 0.8484, -0.3135, 0.6978, 0.2730, -0.6825,\n", " 0.1366, -0.8899, 0.8244, 0.3284, 0.0805, -0.2395, -0.6767,\n", " -0.8209, 0.6211, -0.3285, -0.0912, -0.0389, 0.1991, 0.8258,\n", " 0.9217, -0.2170, 0.5347, -0.4071, -0.8464, -0.5593, 0.6256,\n", " -0.9049, 0.4595, 0.9074, 0.7990, -0.5945, -0.3470, 0.8762,\n", " -0.9404],\n", " [ 0.0394, 0.7293, 0.1861, 0.0881, 0.0371, -0.1677, -0.4362,\n", " 0.1219, 0.6134, -0.0385, 0.6175, -0.7031, -0.0738, -0.1346,\n", " 0.5209, 0.4806, 0.6178, -0.3499, 0.3256, -0.4866, -0.1101,\n", " -0.2557, -0.1716, 0.2299, 0.3704, -0.2004, 0.0048, 0.0728,\n", " 0.1695, -0.1895, 0.5252, -0.4673, -0.0011, 0.5633, 0.0540,\n", " -0.0333, -0.0936, 0.6006, -0.4610, -0.1716, -0.3625, 0.0738,\n", " 0.2130, -0.0040, -0.1681, -0.0567, 0.0414, -0.0399, 0.3204,\n", " 0.1606, 0.0895, -0.4445, -0.1933, -0.5708, 0.0026, 0.1022,\n", " -0.1998, 0.2881, -0.4914, 0.8336, -0.2190, -0.4052, -0.4005,\n", " -0.2036]],\n", "\n", " [[-0.4344, 0.9695, 0.3881, 0.5407, -0.5645, -0.7304, -0.9651,\n", " -0.8371, 0.9021, 0.1183, 0.0341, -0.9520, -0.7408, 0.9443,\n", " 0.1162, 0.8202, 0.6560, 0.9675, 0.9835, -0.7582, -0.9880,\n", " -0.2225, 0.2812, 0.7177, 0.2373, -0.9129, 0.7111, 0.3292,\n", " -0.3043, 0.0067, 0.9513, -0.5549, 0.5781, -0.2277, -0.1309,\n", " 0.6114, -0.8130, 0.8737, 0.4949, 0.0302, 0.8304, -0.9538,\n", " -0.8416, 0.0377, -0.9450, -0.0728, -0.1449, -0.4713, 0.8478,\n", " 0.9788, -0.7699, 0.8377, -0.9320, -0.9075, -0.5798, 0.6564,\n", " -0.9924, 0.8009, 0.9216, 0.8556, -0.9676, 0.6107, 0.9332,\n", " -0.9650],\n", " [-0.1282, 0.6072, 0.2948, 0.5892, -0.5330, -0.2869, -0.5384,\n", " -0.7949, 0.6626, -0.0911, 0.4917, -0.7266, -0.3492, 0.2605,\n", " 0.2942, 0.8206, 0.6406, 0.5368, 0.5708, -0.5419, -0.7469,\n", " -0.3980, 0.1402, 0.3024, 0.2058, -0.9050, 0.7186, 0.1156,\n", " -0.3964, -0.1969, 0.8352, -0.2601, 0.6729, 0.3602, -0.5379,\n", " 0.1174, -0.8353, 0.7244, 0.2288, -0.0560, -0.4192, -0.7514,\n", " -0.6763, 0.4741, -0.0413, 0.0924, -0.2348, 0.1453, 0.6766,\n", " 0.7962, -0.1368, 0.4839, -0.2126, -0.7452, -0.4184, 0.5247,\n", " -0.6722, 0.5168, 0.8884, 0.8025, -0.1871, -0.1701, 0.8400,\n", " -0.8880]],\n", "\n", " [[-0.6811, 0.9904, 0.3873, 0.3274, -0.4650, -0.6639, -0.9928,\n", " -0.8714, 0.9532, 0.1302, -0.0052, -0.9700, -0.8229, 0.9916,\n", " 0.0321, 0.8120, 0.6073, 0.9809, 0.9954, -0.7496, -0.9976,\n", " -0.2798, 0.3025, 0.6563, 0.1430, -0.9052, 0.6155, 0.3971,\n", " -0.2514, 0.0549, 0.9648, -0.7167, 0.4741, -0.3832, 0.2246,\n", " 0.7622, -0.7477, 0.9110, 0.5800, -0.0079, 0.9455, -0.9695,\n", " -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456, 0.8637,\n", " 0.9926, -0.8969, 0.9267, -0.9887, -0.9147, -0.5940, 0.6758,\n", " -0.9929, 0.9099, 0.9321, 0.9038, -0.9955, 0.7793, 0.9528,\n", " -0.9790],\n", " [-0.5124, 0.9718, 0.2896, 0.4127, -0.4482, -0.6861, -0.9578,\n", " -0.8474, 0.8905, -0.0578, 0.1265, -0.8802, -0.5990, 0.9483,\n", " 0.1486, 0.8054, 0.5295, 0.9644, 0.9343, -0.5344, -0.9767,\n", " -0.4396, 0.1733, 0.4361, 0.1193, -0.8925, 0.5645, 0.2105,\n", " -0.2591, -0.0061, 0.9448, -0.4838, 0.5449, -0.2025, -0.1123,\n", " 0.5975, -0.7673, 0.8066, 0.4332, -0.1005, 0.7939, -0.9577,\n", " -0.7584, -0.0506, -0.9229, 0.0987, -0.3074, -0.4775, 0.7187,\n", " 0.9429, -0.7517, 0.8196, -0.8877, -0.8825, -0.4664, 0.5667,\n", " -0.9790, 0.8117, 0.9049, 0.8489, -0.9360, 0.6337, 0.9125,\n", " -0.9336]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([ 3, 10])\n", "dec_state: tensor([[[ 0.9675, 0.9950, -0.9747, 0.8476, 0.6370, 0.7311, -0.8292,\n", " -0.6075, -0.5237, -0.9787, -0.9234, -0.9562, 0.7290, 0.9848,\n", " -0.9251, 0.2634, 0.9100, -0.4863, -0.9281, 0.8350, 0.9749,\n", " -0.8100, -0.5942, 0.9447, 0.9911, -0.9574, -0.2966, -0.9715,\n", " 0.3229, -0.9199, -0.9485, 0.7993, 0.8781, 0.7897, -0.6803,\n", " -0.9194, 0.7959, -0.8251, 0.8078, 0.9282, -0.9545, 0.8820,\n", " 0.8327, -0.7403, -0.8768, 0.9604, -0.7537, 0.8649, -0.0060,\n", " 0.9434, -0.6593, 0.9924, -0.0629, -0.7333, 0.7517, -0.3501,\n", " 0.8994, 0.9069, -0.5802, -0.4604, -0.9910, 0.9829, 0.1885,\n", " -0.9428],\n", " [ 0.4521, 0.9671, -0.3110, 0.8059, 0.5287, 0.5715, -0.7969,\n", " -0.3119, -0.5655, -0.5520, -0.9124, -0.8175, -0.0574, 0.9427,\n", " -0.1483, -0.3554, 0.7209, 0.0421, 0.4747, 0.6754, 0.7630,\n", " -0.6651, 0.0765, 0.9462, 0.7016, -0.8410, 0.6747, -0.3824,\n", " -0.8534, -0.1669, -0.7617, 0.7729, -0.0133, 0.5920, -0.8166,\n", " -0.2365, 0.4625, -0.2046, -0.5206, 0.5503, -0.8044, 0.6519,\n", " 0.3966, 0.6324, -0.6258, 0.7918, -0.3238, 0.1636, -0.1141,\n", " 0.8460, 0.5613, 0.8064, -0.4614, -0.7809, -0.6873, 0.0832,\n", " 0.6001, 0.9496, -0.2755, -0.6704, -0.9783, 0.9698, -0.2972,\n", " 0.1391]]], grad_fn=) torch.Size([1, 2, 64])\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "enc_outputs: tensor([[[-0.2643, 0.4564, -0.2593, 0.0541, -0.0949, -0.0707, -0.4059,\n", " 0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895, 0.3679,\n", " 0.1058, -0.4368, 0.4438, 0.3126, 0.1805, -0.6815, -0.6550,\n", " -0.1472, 0.1178, -0.0509, 0.2158, -0.0236, 0.2572, 0.3204,\n", " -0.1213, -0.1323, 0.2779, -0.1086, 0.0890, -0.4043, -0.2370,\n", " -0.0740, -0.2013, 0.2110, -0.0625, -0.3476, 0.1305, 0.7000,\n", " -0.1356, 0.0533, -0.6974, -0.4555, 0.4434, -0.1698, 0.0568,\n", " 0.4341, 0.1590, -0.1960, -0.4161, -0.5756, -0.4891, 0.2558,\n", " -0.4767, 0.1833, 0.0714, -0.2048, -0.0357, 0.1653, 0.3216,\n", " -0.4956],\n", " [-0.3986, 0.1077, -0.1079, 0.4751, 0.2374, 0.0763, 0.0478,\n", " -0.6380, 0.3585, -0.1490, 0.4389, -0.1711, 0.0351, 0.3032,\n", " 0.1507, 0.5181, 0.2568, 0.0916, 0.2709, 0.1861, -0.5871,\n", " -0.1010, 0.2366, -0.1209, -0.5268, 0.0956, -0.4196, -0.2877,\n", " -0.0054, -0.0399, 0.1611, -0.1701, 0.1080, 0.1541, -0.1976,\n", " -0.0249, -0.6249, 0.3139, 0.5532, 0.1371, -0.2370, -0.5140,\n", " -0.1603, -0.1353, -0.1096, 0.3353, -0.2182, -0.1288, 0.1954,\n", " 0.0314, 0.2198, 0.4391, 0.2029, -0.5140, -0.3188, 0.2105,\n", " -0.5609, 0.2901, 0.1407, 0.1191, -0.4545, 0.1350, 0.0812,\n", " -0.3816]],\n", "\n", " [[ 0.3048, 0.2614, -0.6713, 0.8613, -0.2512, -0.4346, -0.2634,\n", " 0.6591, 0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\n", " 0.4387, 0.2709, 0.5605, 0.4969, 0.5650, -0.6975, -0.7697,\n", " -0.0075, 0.3626, 0.7565, 0.4823, -0.3389, 0.3312, 0.1820,\n", " -0.1854, -0.2484, 0.3879, -0.0510, 0.7113, 0.0262, -0.2328,\n", " 0.0428, -0.6167, 0.9327, 0.3825, 0.4738, 0.0045, 0.6714,\n", " -0.2780, -0.3274, -0.5227, -0.5403, 0.3292, -0.7134, 0.2665,\n", " 0.7792, -0.1701, 0.1585, -0.1340, -0.7831, -0.5599, 0.0010,\n", " -0.4418, 0.0466, -0.2996, 0.5337, -0.7619, -0.6692, 0.2525,\n", " -0.4926],\n", " [-0.5449, 0.2779, 0.6267, -0.0066, -0.3411, -0.4215, 0.1982,\n", " -0.4431, 0.6065, -0.3576, 0.1459, 0.1405, -0.3065, 0.3954,\n", " -0.0139, 0.5789, 0.3313, 0.1777, -0.2895, -0.0424, -0.7719,\n", " -0.1613, 0.3021, -0.0137, -0.1981, -0.1518, 0.0221, -0.0543,\n", " 0.4869, -0.0376, 0.6679, -0.2354, 0.1546, 0.4744, -0.0194,\n", " 0.2567, -0.0445, 0.2706, 0.2981, 0.0486, 0.3991, -0.7287,\n", " -0.2562, -0.6029, -0.2513, 0.2143, 0.0921, 0.0526, 0.3929,\n", " -0.1046, -0.1321, 0.5571, -0.0703, -0.4639, -0.5332, 0.7051,\n", " -0.4131, 0.4652, 0.3511, -0.1030, -0.6763, -0.2386, 0.4719,\n", " -0.1979]],\n", "\n", " [[ 0.3278, -0.2888, -0.0956, 0.7314, -0.2450, -0.5831, -0.0397,\n", " 0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\n", " 0.3975, 0.4884, 0.6930, 0.1510, 0.5433, -0.6360, -0.6441,\n", " 0.1115, 0.1613, 0.7858, 0.4847, -0.5446, 0.7429, 0.2655,\n", " -0.0490, -0.1175, 0.0364, 0.1196, 0.5943, 0.2333, -0.5645,\n", " -0.3604, -0.6270, 0.6515, -0.0406, 0.2102, -0.1837, 0.2619,\n", " -0.4548, 0.1320, -0.4382, -0.2788, 0.2147, -0.5275, 0.1388,\n", " 0.4512, 0.1896, -0.0293, -0.1224, -0.7348, -0.3286, 0.3086,\n", " -0.3752, 0.0572, -0.4160, 0.1187, -0.5770, -0.6388, 0.1324,\n", " -0.5198],\n", " [-0.5405, 0.0124, 0.3095, 0.0026, 0.3472, -0.0643, -0.2726,\n", " -0.1709, 0.3799, -0.5057, 0.6329, -0.0685, 0.4347, 0.3791,\n", " 0.4154, 0.4034, 0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\n", " -0.2282, -0.2110, 0.0466, -0.1903, -0.2866, 0.2155, 0.1366,\n", " 0.3826, -0.0260, 0.4968, -0.0116, -0.4877, 0.4981, -0.1737,\n", " -0.4543, -0.0929, 0.1796, 0.0635, 0.0320, -0.3178, -0.5188,\n", " 0.2668, -0.2357, -0.0332, -0.5571, -0.2157, 0.1033, 0.2126,\n", " -0.4119, 0.1621, 0.1569, 0.3292, -0.1883, -0.5136, 0.4836,\n", " 0.1629, 0.4135, 0.0817, 0.0296, -0.5296, -0.3845, 0.2176,\n", " -0.4257]],\n", "\n", " [[ 0.2165, 0.6643, 0.2134, 0.4667, -0.3658, -0.5918, -0.5354,\n", " 0.5185, 0.5647, 0.1890, 0.1068, -0.8998, -0.5254, -0.2879,\n", " 0.3621, 0.6158, 0.8000, -0.0707, 0.8353, -0.7904, -0.4499,\n", " 0.1003, 0.0254, 0.7849, 0.6487, -0.4766, 0.6924, 0.2688,\n", " -0.0224, -0.1641, 0.5357, -0.5526, 0.3533, 0.4206, -0.2618,\n", " -0.0252, -0.4151, 0.7307, -0.2902, 0.0149, -0.1347, 0.4171,\n", " -0.3612, 0.2912, -0.5252, -0.2134, 0.2129, -0.0995, 0.5832,\n", " 0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193, 0.2697,\n", " -0.7581, 0.1343, -0.4379, 0.8081, -0.7057, -0.7356, -0.2213,\n", " -0.5394],\n", " [-0.1251, 0.1434, 0.3819, 0.0779, 0.3546, 0.1264, 0.1404,\n", " -0.1140, 0.3947, -0.4812, 0.6593, -0.0573, 0.3087, 0.0349,\n", " 0.4715, 0.0450, 0.1793, -0.4911, -0.6166, 0.0762, -0.3557,\n", " -0.2982, -0.1911, 0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\n", " 0.1761, -0.1146, 0.1655, 0.1192, -0.0237, 0.4926, 0.1029,\n", " -0.2940, -0.1968, 0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\n", " 0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\n", " -0.1560, 0.3103, -0.2179, 0.0748, 0.2780, 0.0437, 0.1274,\n", " 0.2246, 0.3854, -0.3852, 0.4846, 0.0769, 0.1051, -0.1136,\n", " -0.2083]],\n", "\n", " [[ 0.0053, 0.5089, 0.3900, 0.7339, -0.6606, -0.5602, -0.6067,\n", " -0.7727, 0.6455, 0.0913, 0.2039, -0.9017, -0.6111, 0.2212,\n", " 0.2289, 0.8321, 0.7837, 0.6047, 0.8988, -0.8065, -0.8648,\n", " -0.1608, 0.2545, 0.7868, 0.4106, -0.9213, 0.8644, 0.2484,\n", " -0.4612, -0.1559, 0.8484, -0.3135, 0.6978, 0.2730, -0.6825,\n", " 0.1366, -0.8899, 0.8244, 0.3284, 0.0805, -0.2395, -0.6767,\n", " -0.8209, 0.6211, -0.3285, -0.0912, -0.0389, 0.1991, 0.8258,\n", " 0.9217, -0.2170, 0.5347, -0.4071, -0.8464, -0.5593, 0.6256,\n", " -0.9049, 0.4595, 0.9074, 0.7990, -0.5945, -0.3470, 0.8762,\n", " -0.9404],\n", " [ 0.0394, 0.7293, 0.1861, 0.0881, 0.0371, -0.1677, -0.4362,\n", " 0.1219, 0.6134, -0.0385, 0.6175, -0.7031, -0.0738, -0.1346,\n", " 0.5209, 0.4806, 0.6178, -0.3499, 0.3256, -0.4866, -0.1101,\n", " -0.2557, -0.1716, 0.2299, 0.3704, -0.2004, 0.0048, 0.0728,\n", " 0.1695, -0.1895, 0.5252, -0.4673, -0.0011, 0.5633, 0.0540,\n", " -0.0333, -0.0936, 0.6006, -0.4610, -0.1716, -0.3625, 0.0738,\n", " 0.2130, -0.0040, -0.1681, -0.0567, 0.0414, -0.0399, 0.3204,\n", " 0.1606, 0.0895, -0.4445, -0.1933, -0.5708, 0.0026, 0.1022,\n", " -0.1998, 0.2881, -0.4914, 0.8336, -0.2190, -0.4052, -0.4005,\n", " -0.2036]],\n", "\n", " [[-0.4344, 0.9695, 0.3881, 0.5407, -0.5645, -0.7304, -0.9651,\n", " -0.8371, 0.9021, 0.1183, 0.0341, -0.9520, -0.7408, 0.9443,\n", " 0.1162, 0.8202, 0.6560, 0.9675, 0.9835, -0.7582, -0.9880,\n", " -0.2225, 0.2812, 0.7177, 0.2373, -0.9129, 0.7111, 0.3292,\n", " -0.3043, 0.0067, 0.9513, -0.5549, 0.5781, -0.2277, -0.1309,\n", " 0.6114, -0.8130, 0.8737, 0.4949, 0.0302, 0.8304, -0.9538,\n", " -0.8416, 0.0377, -0.9450, -0.0728, -0.1449, -0.4713, 0.8478,\n", " 0.9788, -0.7699, 0.8377, -0.9320, -0.9075, -0.5798, 0.6564,\n", " -0.9924, 0.8009, 0.9216, 0.8556, -0.9676, 0.6107, 0.9332,\n", " -0.9650],\n", " [-0.1282, 0.6072, 0.2948, 0.5892, -0.5330, -0.2869, -0.5384,\n", " -0.7949, 0.6626, -0.0911, 0.4917, -0.7266, -0.3492, 0.2605,\n", " 0.2942, 0.8206, 0.6406, 0.5368, 0.5708, -0.5419, -0.7469,\n", " -0.3980, 0.1402, 0.3024, 0.2058, -0.9050, 0.7186, 0.1156,\n", " -0.3964, -0.1969, 0.8352, -0.2601, 0.6729, 0.3602, -0.5379,\n", " 0.1174, -0.8353, 0.7244, 0.2288, -0.0560, -0.4192, -0.7514,\n", " -0.6763, 0.4741, -0.0413, 0.0924, -0.2348, 0.1453, 0.6766,\n", " 0.7962, -0.1368, 0.4839, -0.2126, -0.7452, -0.4184, 0.5247,\n", " -0.6722, 0.5168, 0.8884, 0.8025, -0.1871, -0.1701, 0.8400,\n", " -0.8880]],\n", "\n", " [[-0.6811, 0.9904, 0.3873, 0.3274, -0.4650, -0.6639, -0.9928,\n", " -0.8714, 0.9532, 0.1302, -0.0052, -0.9700, -0.8229, 0.9916,\n", " 0.0321, 0.8120, 0.6073, 0.9809, 0.9954, -0.7496, -0.9976,\n", " -0.2798, 0.3025, 0.6563, 0.1430, -0.9052, 0.6155, 0.3971,\n", " -0.2514, 0.0549, 0.9648, -0.7167, 0.4741, -0.3832, 0.2246,\n", " 0.7622, -0.7477, 0.9110, 0.5800, -0.0079, 0.9455, -0.9695,\n", " -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456, 0.8637,\n", " 0.9926, -0.8969, 0.9267, -0.9887, -0.9147, -0.5940, 0.6758,\n", " -0.9929, 0.9099, 0.9321, 0.9038, -0.9955, 0.7793, 0.9528,\n", " -0.9790],\n", " [-0.5124, 0.9718, 0.2896, 0.4127, -0.4482, -0.6861, -0.9578,\n", " -0.8474, 0.8905, -0.0578, 0.1265, -0.8802, -0.5990, 0.9483,\n", " 0.1486, 0.8054, 0.5295, 0.9644, 0.9343, -0.5344, -0.9767,\n", " -0.4396, 0.1733, 0.4361, 0.1193, -0.8925, 0.5645, 0.2105,\n", " -0.2591, -0.0061, 0.9448, -0.4838, 0.5449, -0.2025, -0.1123,\n", " 0.5975, -0.7673, 0.8066, 0.4332, -0.1005, 0.7939, -0.9577,\n", " -0.7584, -0.0506, -0.9229, 0.0987, -0.3074, -0.4775, 0.7187,\n", " 0.9429, -0.7517, 0.8196, -0.8877, -0.8825, -0.4664, 0.5667,\n", " -0.9790, 0.8117, 0.9049, 0.8489, -0.9360, 0.6337, 0.9125,\n", " -0.9336]]], grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([ 2, 17])\n", "dec_state: tensor([[[ 0.9473, 0.9313, -0.9878, 0.8604, 0.7372, 0.7617, -0.7951,\n", " -0.5794, -0.6665, 0.1700, -0.0295, -0.9323, 0.5450, 0.8378,\n", " -0.9391, -0.5223, 0.3825, -0.1205, -0.8696, 0.7332, 0.9912,\n", " -0.8306, 0.1641, 0.9563, 0.9380, -0.9691, -0.7445, -0.8984,\n", " -0.7164, -0.8286, -0.9550, 0.8958, -0.7718, 0.8139, -0.7418,\n", " -0.9858, 0.6880, -0.6520, 0.6791, 0.8826, -0.9081, 0.9235,\n", " 0.8571, -0.2061, -0.7047, 0.8744, -0.8011, 0.8993, -0.1427,\n", " 0.8784, 0.5005, 0.9764, -0.0972, -0.8108, -0.3337, -0.3959,\n", " 0.9712, 0.9506, 0.2212, -0.1489, -0.9927, 0.9782, 0.0623,\n", " 0.1165],\n", " [ 0.6426, 0.9839, -0.4883, 0.7742, 0.7518, 0.7075, -0.7008,\n", " -0.6732, 0.2228, -0.1950, -0.3983, -0.5712, 0.0978, 0.9339,\n", " 0.4096, -0.6226, 0.4763, -0.2598, -0.2107, 0.8241, 0.8496,\n", " -0.6863, -0.4066, 0.3727, 0.6547, -0.7730, -0.5617, -0.5953,\n", " -0.9063, -0.2914, -0.5167, 0.7813, 0.3135, 0.6645, -0.8230,\n", " -0.6250, 0.8137, -0.2644, -0.2032, 0.5774, -0.6422, 0.6087,\n", " 0.9017, 0.4752, -0.5230, 0.8664, -0.7029, 0.7444, 0.0427,\n", " 0.8753, -0.1979, 0.9174, 0.1496, -0.3512, -0.7734, -0.1080,\n", " 0.7142, 0.8879, -0.1547, 0.3519, -0.9723, 0.9193, -0.2451,\n", " -0.6447]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2643, 0.4564, -0.2593, 0.0541, -0.0949, -0.0707, -0.4059,\n", " 0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895, 0.3679,\n", " 0.1058, -0.4368, 0.4438, 0.3126, 0.1805, -0.6815, -0.6550,\n", " -0.1472, 0.1178, -0.0509, 0.2158, -0.0236, 0.2572, 0.3204,\n", " -0.1213, -0.1323, 0.2779, -0.1086, 0.0890, -0.4043, -0.2370,\n", " -0.0740, -0.2013, 0.2110, -0.0625, -0.3476, 0.1305, 0.7000,\n", " -0.1356, 0.0533, -0.6974, -0.4555, 0.4434, -0.1698, 0.0568,\n", " 0.4341, 0.1590, -0.1960, -0.4161, -0.5756, -0.4891, 0.2558,\n", " -0.4767, 0.1833, 0.0714, -0.2048, -0.0357, 0.1653, 0.3216,\n", " -0.4956],\n", " [-0.3986, 0.1077, -0.1079, 0.4751, 0.2374, 0.0763, 0.0478,\n", " -0.6380, 0.3585, -0.1490, 0.4389, -0.1711, 0.0351, 0.3032,\n", " 0.1507, 0.5181, 0.2568, 0.0916, 0.2709, 0.1861, -0.5871,\n", " -0.1010, 0.2366, -0.1209, -0.5268, 0.0956, -0.4196, -0.2877,\n", " -0.0054, -0.0399, 0.1611, -0.1701, 0.1080, 0.1541, -0.1976,\n", " -0.0249, -0.6249, 0.3139, 0.5532, 0.1371, -0.2370, -0.5140,\n", " -0.1603, -0.1353, -0.1096, 0.3353, -0.2182, -0.1288, 0.1954,\n", " 0.0314, 0.2198, 0.4391, 0.2029, -0.5140, -0.3188, 0.2105,\n", " -0.5609, 0.2901, 0.1407, 0.1191, -0.4545, 0.1350, 0.0812,\n", " -0.3816]],\n", "\n", " [[ 0.3048, 0.2614, -0.6713, 0.8613, -0.2512, -0.4346, -0.2634,\n", " 0.6591, 0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\n", " 0.4387, 0.2709, 0.5605, 0.4969, 0.5650, -0.6975, -0.7697,\n", " -0.0075, 0.3626, 0.7565, 0.4823, -0.3389, 0.3312, 0.1820,\n", " -0.1854, -0.2484, 0.3879, -0.0510, 0.7113, 0.0262, -0.2328,\n", " 0.0428, -0.6167, 0.9327, 0.3825, 0.4738, 0.0045, 0.6714,\n", " -0.2780, -0.3274, -0.5227, -0.5403, 0.3292, -0.7134, 0.2665,\n", " 0.7792, -0.1701, 0.1585, -0.1340, -0.7831, -0.5599, 0.0010,\n", " -0.4418, 0.0466, -0.2996, 0.5337, -0.7619, -0.6692, 0.2525,\n", " -0.4926],\n", " [-0.5449, 0.2779, 0.6267, -0.0066, -0.3411, -0.4215, 0.1982,\n", " -0.4431, 0.6065, -0.3576, 0.1459, 0.1405, -0.3065, 0.3954,\n", " -0.0139, 0.5789, 0.3313, 0.1777, -0.2895, -0.0424, -0.7719,\n", " -0.1613, 0.3021, -0.0137, -0.1981, -0.1518, 0.0221, -0.0543,\n", " 0.4869, -0.0376, 0.6679, -0.2354, 0.1546, 0.4744, -0.0194,\n", " 0.2567, -0.0445, 0.2706, 0.2981, 0.0486, 0.3991, -0.7287,\n", " -0.2562, -0.6029, -0.2513, 0.2143, 0.0921, 0.0526, 0.3929,\n", " -0.1046, -0.1321, 0.5571, -0.0703, -0.4639, -0.5332, 0.7051,\n", " -0.4131, 0.4652, 0.3511, -0.1030, -0.6763, -0.2386, 0.4719,\n", " -0.1979]],\n", "\n", " [[ 0.3278, -0.2888, -0.0956, 0.7314, -0.2450, -0.5831, -0.0397,\n", " 0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\n", " 0.3975, 0.4884, 0.6930, 0.1510, 0.5433, -0.6360, -0.6441,\n", " 0.1115, 0.1613, 0.7858, 0.4847, -0.5446, 0.7429, 0.2655,\n", " -0.0490, -0.1175, 0.0364, 0.1196, 0.5943, 0.2333, -0.5645,\n", " -0.3604, -0.6270, 0.6515, -0.0406, 0.2102, -0.1837, 0.2619,\n", " -0.4548, 0.1320, -0.4382, -0.2788, 0.2147, -0.5275, 0.1388,\n", " 0.4512, 0.1896, -0.0293, -0.1224, -0.7348, -0.3286, 0.3086,\n", " -0.3752, 0.0572, -0.4160, 0.1187, -0.5770, -0.6388, 0.1324,\n", " -0.5198],\n", " [-0.5405, 0.0124, 0.3095, 0.0026, 0.3472, -0.0643, -0.2726,\n", " -0.1709, 0.3799, -0.5057, 0.6329, -0.0685, 0.4347, 0.3791,\n", " 0.4154, 0.4034, 0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\n", " -0.2282, -0.2110, 0.0466, -0.1903, -0.2866, 0.2155, 0.1366,\n", " 0.3826, -0.0260, 0.4968, -0.0116, -0.4877, 0.4981, -0.1737,\n", " -0.4543, -0.0929, 0.1796, 0.0635, 0.0320, -0.3178, -0.5188,\n", " 0.2668, -0.2357, -0.0332, -0.5571, -0.2157, 0.1033, 0.2126,\n", " -0.4119, 0.1621, 0.1569, 0.3292, -0.1883, -0.5136, 0.4836,\n", " 0.1629, 0.4135, 0.0817, 0.0296, -0.5296, -0.3845, 0.2176,\n", " -0.4257]],\n", "\n", " [[ 0.2165, 0.6643, 0.2134, 0.4667, -0.3658, -0.5918, -0.5354,\n", " 0.5185, 0.5647, 0.1890, 0.1068, -0.8998, -0.5254, -0.2879,\n", " 0.3621, 0.6158, 0.8000, -0.0707, 0.8353, -0.7904, -0.4499,\n", " 0.1003, 0.0254, 0.7849, 0.6487, -0.4766, 0.6924, 0.2688,\n", " -0.0224, -0.1641, 0.5357, -0.5526, 0.3533, 0.4206, -0.2618,\n", " -0.0252, -0.4151, 0.7307, -0.2902, 0.0149, -0.1347, 0.4171,\n", " -0.3612, 0.2912, -0.5252, -0.2134, 0.2129, -0.0995, 0.5832,\n", " 0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193, 0.2697,\n", " -0.7581, 0.1343, -0.4379, 0.8081, -0.7057, -0.7356, -0.2213,\n", " -0.5394],\n", " [-0.1251, 0.1434, 0.3819, 0.0779, 0.3546, 0.1264, 0.1404,\n", " -0.1140, 0.3947, -0.4812, 0.6593, -0.0573, 0.3087, 0.0349,\n", " 0.4715, 0.0450, 0.1793, -0.4911, -0.6166, 0.0762, -0.3557,\n", " -0.2982, -0.1911, 0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\n", " 0.1761, -0.1146, 0.1655, 0.1192, -0.0237, 0.4926, 0.1029,\n", " -0.2940, -0.1968, 0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\n", " 0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\n", " -0.1560, 0.3103, -0.2179, 0.0748, 0.2780, 0.0437, 0.1274,\n", " 0.2246, 0.3854, -0.3852, 0.4846, 0.0769, 0.1051, -0.1136,\n", " -0.2083]],\n", "\n", " [[ 0.0053, 0.5089, 0.3900, 0.7339, -0.6606, -0.5602, -0.6067,\n", " -0.7727, 0.6455, 0.0913, 0.2039, -0.9017, -0.6111, 0.2212,\n", " 0.2289, 0.8321, 0.7837, 0.6047, 0.8988, -0.8065, -0.8648,\n", " -0.1608, 0.2545, 0.7868, 0.4106, -0.9213, 0.8644, 0.2484,\n", " -0.4612, -0.1559, 0.8484, -0.3135, 0.6978, 0.2730, -0.6825,\n", " 0.1366, -0.8899, 0.8244, 0.3284, 0.0805, -0.2395, -0.6767,\n", " -0.8209, 0.6211, -0.3285, -0.0912, -0.0389, 0.1991, 0.8258,\n", " 0.9217, -0.2170, 0.5347, -0.4071, -0.8464, -0.5593, 0.6256,\n", " -0.9049, 0.4595, 0.9074, 0.7990, -0.5945, -0.3470, 0.8762,\n", " -0.9404],\n", " [ 0.0394, 0.7293, 0.1861, 0.0881, 0.0371, -0.1677, -0.4362,\n", " 0.1219, 0.6134, -0.0385, 0.6175, -0.7031, -0.0738, -0.1346,\n", " 0.5209, 0.4806, 0.6178, -0.3499, 0.3256, -0.4866, -0.1101,\n", " -0.2557, -0.1716, 0.2299, 0.3704, -0.2004, 0.0048, 0.0728,\n", " 0.1695, -0.1895, 0.5252, -0.4673, -0.0011, 0.5633, 0.0540,\n", " -0.0333, -0.0936, 0.6006, -0.4610, -0.1716, -0.3625, 0.0738,\n", " 0.2130, -0.0040, -0.1681, -0.0567, 0.0414, -0.0399, 0.3204,\n", " 0.1606, 0.0895, -0.4445, -0.1933, -0.5708, 0.0026, 0.1022,\n", " -0.1998, 0.2881, -0.4914, 0.8336, -0.2190, -0.4052, -0.4005,\n", " -0.2036]],\n", "\n", " [[-0.4344, 0.9695, 0.3881, 0.5407, -0.5645, -0.7304, -0.9651,\n", " -0.8371, 0.9021, 0.1183, 0.0341, -0.9520, -0.7408, 0.9443,\n", " 0.1162, 0.8202, 0.6560, 0.9675, 0.9835, -0.7582, -0.9880,\n", " -0.2225, 0.2812, 0.7177, 0.2373, -0.9129, 0.7111, 0.3292,\n", " -0.3043, 0.0067, 0.9513, -0.5549, 0.5781, -0.2277, -0.1309,\n", " 0.6114, -0.8130, 0.8737, 0.4949, 0.0302, 0.8304, -0.9538,\n", " -0.8416, 0.0377, -0.9450, -0.0728, -0.1449, -0.4713, 0.8478,\n", " 0.9788, -0.7699, 0.8377, -0.9320, -0.9075, -0.5798, 0.6564,\n", " -0.9924, 0.8009, 0.9216, 0.8556, -0.9676, 0.6107, 0.9332,\n", " -0.9650],\n", " [-0.1282, 0.6072, 0.2948, 0.5892, -0.5330, -0.2869, -0.5384,\n", " -0.7949, 0.6626, -0.0911, 0.4917, -0.7266, -0.3492, 0.2605,\n", " 0.2942, 0.8206, 0.6406, 0.5368, 0.5708, -0.5419, -0.7469,\n", " -0.3980, 0.1402, 0.3024, 0.2058, -0.9050, 0.7186, 0.1156,\n", " -0.3964, -0.1969, 0.8352, -0.2601, 0.6729, 0.3602, -0.5379,\n", " 0.1174, -0.8353, 0.7244, 0.2288, -0.0560, -0.4192, -0.7514,\n", " -0.6763, 0.4741, -0.0413, 0.0924, -0.2348, 0.1453, 0.6766,\n", " 0.7962, -0.1368, 0.4839, -0.2126, -0.7452, -0.4184, 0.5247,\n", " -0.6722, 0.5168, 0.8884, 0.8025, -0.1871, -0.1701, 0.8400,\n", " -0.8880]],\n", "\n", " [[-0.6811, 0.9904, 0.3873, 0.3274, -0.4650, -0.6639, -0.9928,\n", " -0.8714, 0.9532, 0.1302, -0.0052, -0.9700, -0.8229, 0.9916,\n", " 0.0321, 0.8120, 0.6073, 0.9809, 0.9954, -0.7496, -0.9976,\n", " -0.2798, 0.3025, 0.6563, 0.1430, -0.9052, 0.6155, 0.3971,\n", " -0.2514, 0.0549, 0.9648, -0.7167, 0.4741, -0.3832, 0.2246,\n", " 0.7622, -0.7477, 0.9110, 0.5800, -0.0079, 0.9455, -0.9695,\n", " -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456, 0.8637,\n", " 0.9926, -0.8969, 0.9267, -0.9887, -0.9147, -0.5940, 0.6758,\n", " -0.9929, 0.9099, 0.9321, 0.9038, -0.9955, 0.7793, 0.9528,\n", " -0.9790],\n", " [-0.5124, 0.9718, 0.2896, 0.4127, -0.4482, -0.6861, -0.9578,\n", " -0.8474, 0.8905, -0.0578, 0.1265, -0.8802, -0.5990, 0.9483,\n", " 0.1486, 0.8054, 0.5295, 0.9644, 0.9343, -0.5344, -0.9767,\n", " -0.4396, 0.1733, 0.4361, 0.1193, -0.8925, 0.5645, 0.2105,\n", " -0.2591, -0.0061, 0.9448, -0.4838, 0.5449, -0.2025, -0.1123,\n", " 0.5975, -0.7673, 0.8066, 0.4332, -0.1005, 0.7939, -0.9577,\n", " -0.7584, -0.0506, -0.9229, 0.0987, -0.3074, -0.4775, 0.7187,\n", " 0.9429, -0.7517, 0.8196, -0.8877, -0.8825, -0.4664, 0.5667,\n", " -0.9790, 0.8117, 0.9049, 0.8489, -0.9360, 0.6337, 0.9125,\n", " -0.9336]]], grad_fn=)\n", "mask tensor([0., 1.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([0, 3])\n", "dec_state: tensor([[[ 0.8097, 0.9807, -0.5462, 0.8230, 0.6204, 0.3045, -0.7535,\n", " -0.7529, -0.4538, -0.0772, 0.0774, -0.8304, -0.1688, 0.8799,\n", " -0.6240, -0.5604, -0.2984, -0.6839, -0.5286, 0.8215, 0.9930,\n", " -0.8797, 0.0036, 0.9480, 0.9603, -0.9550, -0.8359, -0.8252,\n", " -0.8870, -0.9193, -0.6331, 0.9240, 0.5765, 0.8151, -0.8125,\n", " -0.9959, 0.2778, -0.7424, 0.3983, 0.9119, -0.8981, 0.9438,\n", " 0.9369, -0.4342, -0.7896, 0.9679, -0.8482, 0.4907, -0.1305,\n", " 0.9044, 0.8544, 0.9818, 0.1068, -0.8502, -0.1496, -0.2723,\n", " 0.9544, 0.9635, 0.1782, -0.3288, -0.9951, 0.9554, -0.0371,\n", " 0.0669],\n", " [ 0.9699, 0.9933, -0.9143, 0.7897, 0.5972, 0.7305, -0.7894,\n", " -0.8153, -0.0742, -0.9665, -0.9167, -0.8744, 0.8145, 0.9783,\n", " -0.8479, 0.2889, 0.9157, -0.5162, -0.9029, 0.8752, 0.8663,\n", " -0.7132, -0.7083, 0.4087, 0.9704, -0.8894, -0.0921, -0.9487,\n", " 0.6293, -0.6837, -0.8540, 0.8121, 0.8732, 0.8424, -0.7468,\n", " -0.8581, 0.9040, -0.8174, 0.8055, 0.8808, -0.8516, 0.8065,\n", " 0.9222, -0.7025, -0.7066, 0.9834, -0.6614, 0.8967, -0.0178,\n", " 0.8621, -0.8259, 0.9808, 0.3341, -0.6238, 0.7816, -0.2329,\n", " 0.9073, 0.8753, -0.6417, -0.0985, -0.9876, 0.9572, -0.2586,\n", " -0.9395]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-0.2643, 0.4564, -0.2593, 0.0541, -0.0949, -0.0707, -0.4059,\n", " 0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895, 0.3679,\n", " 0.1058, -0.4368, 0.4438, 0.3126, 0.1805, -0.6815, -0.6550,\n", " -0.1472, 0.1178, -0.0509, 0.2158, -0.0236, 0.2572, 0.3204,\n", " -0.1213, -0.1323, 0.2779, -0.1086, 0.0890, -0.4043, -0.2370,\n", " -0.0740, -0.2013, 0.2110, -0.0625, -0.3476, 0.1305, 0.7000,\n", " -0.1356, 0.0533, -0.6974, -0.4555, 0.4434, -0.1698, 0.0568,\n", " 0.4341, 0.1590, -0.1960, -0.4161, -0.5756, -0.4891, 0.2558,\n", " -0.4767, 0.1833, 0.0714, -0.2048, -0.0357, 0.1653, 0.3216,\n", " -0.4956],\n", " [-0.3986, 0.1077, -0.1079, 0.4751, 0.2374, 0.0763, 0.0478,\n", " -0.6380, 0.3585, -0.1490, 0.4389, -0.1711, 0.0351, 0.3032,\n", " 0.1507, 0.5181, 0.2568, 0.0916, 0.2709, 0.1861, -0.5871,\n", " -0.1010, 0.2366, -0.1209, -0.5268, 0.0956, -0.4196, -0.2877,\n", " -0.0054, -0.0399, 0.1611, -0.1701, 0.1080, 0.1541, -0.1976,\n", " -0.0249, -0.6249, 0.3139, 0.5532, 0.1371, -0.2370, -0.5140,\n", " -0.1603, -0.1353, -0.1096, 0.3353, -0.2182, -0.1288, 0.1954,\n", " 0.0314, 0.2198, 0.4391, 0.2029, -0.5140, -0.3188, 0.2105,\n", " -0.5609, 0.2901, 0.1407, 0.1191, -0.4545, 0.1350, 0.0812,\n", " -0.3816]],\n", "\n", " [[ 0.3048, 0.2614, -0.6713, 0.8613, -0.2512, -0.4346, -0.2634,\n", " 0.6591, 0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\n", " 0.4387, 0.2709, 0.5605, 0.4969, 0.5650, -0.6975, -0.7697,\n", " -0.0075, 0.3626, 0.7565, 0.4823, -0.3389, 0.3312, 0.1820,\n", " -0.1854, -0.2484, 0.3879, -0.0510, 0.7113, 0.0262, -0.2328,\n", " 0.0428, -0.6167, 0.9327, 0.3825, 0.4738, 0.0045, 0.6714,\n", " -0.2780, -0.3274, -0.5227, -0.5403, 0.3292, -0.7134, 0.2665,\n", " 0.7792, -0.1701, 0.1585, -0.1340, -0.7831, -0.5599, 0.0010,\n", " -0.4418, 0.0466, -0.2996, 0.5337, -0.7619, -0.6692, 0.2525,\n", " -0.4926],\n", " [-0.5449, 0.2779, 0.6267, -0.0066, -0.3411, -0.4215, 0.1982,\n", " -0.4431, 0.6065, -0.3576, 0.1459, 0.1405, -0.3065, 0.3954,\n", " -0.0139, 0.5789, 0.3313, 0.1777, -0.2895, -0.0424, -0.7719,\n", " -0.1613, 0.3021, -0.0137, -0.1981, -0.1518, 0.0221, -0.0543,\n", " 0.4869, -0.0376, 0.6679, -0.2354, 0.1546, 0.4744, -0.0194,\n", " 0.2567, -0.0445, 0.2706, 0.2981, 0.0486, 0.3991, -0.7287,\n", " -0.2562, -0.6029, -0.2513, 0.2143, 0.0921, 0.0526, 0.3929,\n", " -0.1046, -0.1321, 0.5571, -0.0703, -0.4639, -0.5332, 0.7051,\n", " -0.4131, 0.4652, 0.3511, -0.1030, -0.6763, -0.2386, 0.4719,\n", " -0.1979]],\n", "\n", " [[ 0.3278, -0.2888, -0.0956, 0.7314, -0.2450, -0.5831, -0.0397,\n", " 0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\n", " 0.3975, 0.4884, 0.6930, 0.1510, 0.5433, -0.6360, -0.6441,\n", " 0.1115, 0.1613, 0.7858, 0.4847, -0.5446, 0.7429, 0.2655,\n", " -0.0490, -0.1175, 0.0364, 0.1196, 0.5943, 0.2333, -0.5645,\n", " -0.3604, -0.6270, 0.6515, -0.0406, 0.2102, -0.1837, 0.2619,\n", " -0.4548, 0.1320, -0.4382, -0.2788, 0.2147, -0.5275, 0.1388,\n", " 0.4512, 0.1896, -0.0293, -0.1224, -0.7348, -0.3286, 0.3086,\n", " -0.3752, 0.0572, -0.4160, 0.1187, -0.5770, -0.6388, 0.1324,\n", " -0.5198],\n", " [-0.5405, 0.0124, 0.3095, 0.0026, 0.3472, -0.0643, -0.2726,\n", " -0.1709, 0.3799, -0.5057, 0.6329, -0.0685, 0.4347, 0.3791,\n", " 0.4154, 0.4034, 0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\n", " -0.2282, -0.2110, 0.0466, -0.1903, -0.2866, 0.2155, 0.1366,\n", " 0.3826, -0.0260, 0.4968, -0.0116, -0.4877, 0.4981, -0.1737,\n", " -0.4543, -0.0929, 0.1796, 0.0635, 0.0320, -0.3178, -0.5188,\n", " 0.2668, -0.2357, -0.0332, -0.5571, -0.2157, 0.1033, 0.2126,\n", " -0.4119, 0.1621, 0.1569, 0.3292, -0.1883, -0.5136, 0.4836,\n", " 0.1629, 0.4135, 0.0817, 0.0296, -0.5296, -0.3845, 0.2176,\n", " -0.4257]],\n", "\n", " [[ 0.2165, 0.6643, 0.2134, 0.4667, -0.3658, -0.5918, -0.5354,\n", " 0.5185, 0.5647, 0.1890, 0.1068, -0.8998, -0.5254, -0.2879,\n", " 0.3621, 0.6158, 0.8000, -0.0707, 0.8353, -0.7904, -0.4499,\n", " 0.1003, 0.0254, 0.7849, 0.6487, -0.4766, 0.6924, 0.2688,\n", " -0.0224, -0.1641, 0.5357, -0.5526, 0.3533, 0.4206, -0.2618,\n", " -0.0252, -0.4151, 0.7307, -0.2902, 0.0149, -0.1347, 0.4171,\n", " -0.3612, 0.2912, -0.5252, -0.2134, 0.2129, -0.0995, 0.5832,\n", " 0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193, 0.2697,\n", " -0.7581, 0.1343, -0.4379, 0.8081, -0.7057, -0.7356, -0.2213,\n", " -0.5394],\n", " [-0.1251, 0.1434, 0.3819, 0.0779, 0.3546, 0.1264, 0.1404,\n", " -0.1140, 0.3947, -0.4812, 0.6593, -0.0573, 0.3087, 0.0349,\n", " 0.4715, 0.0450, 0.1793, -0.4911, -0.6166, 0.0762, -0.3557,\n", " -0.2982, -0.1911, 0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\n", " 0.1761, -0.1146, 0.1655, 0.1192, -0.0237, 0.4926, 0.1029,\n", " -0.2940, -0.1968, 0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\n", " 0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\n", " -0.1560, 0.3103, -0.2179, 0.0748, 0.2780, 0.0437, 0.1274,\n", " 0.2246, 0.3854, -0.3852, 0.4846, 0.0769, 0.1051, -0.1136,\n", " -0.2083]],\n", "\n", " [[ 0.0053, 0.5089, 0.3900, 0.7339, -0.6606, -0.5602, -0.6067,\n", " -0.7727, 0.6455, 0.0913, 0.2039, -0.9017, -0.6111, 0.2212,\n", " 0.2289, 0.8321, 0.7837, 0.6047, 0.8988, -0.8065, -0.8648,\n", " -0.1608, 0.2545, 0.7868, 0.4106, -0.9213, 0.8644, 0.2484,\n", " -0.4612, -0.1559, 0.8484, -0.3135, 0.6978, 0.2730, -0.6825,\n", " 0.1366, -0.8899, 0.8244, 0.3284, 0.0805, -0.2395, -0.6767,\n", " -0.8209, 0.6211, -0.3285, -0.0912, -0.0389, 0.1991, 0.8258,\n", " 0.9217, -0.2170, 0.5347, -0.4071, -0.8464, -0.5593, 0.6256,\n", " -0.9049, 0.4595, 0.9074, 0.7990, -0.5945, -0.3470, 0.8762,\n", " -0.9404],\n", " [ 0.0394, 0.7293, 0.1861, 0.0881, 0.0371, -0.1677, -0.4362,\n", " 0.1219, 0.6134, -0.0385, 0.6175, -0.7031, -0.0738, -0.1346,\n", " 0.5209, 0.4806, 0.6178, -0.3499, 0.3256, -0.4866, -0.1101,\n", " -0.2557, -0.1716, 0.2299, 0.3704, -0.2004, 0.0048, 0.0728,\n", " 0.1695, -0.1895, 0.5252, -0.4673, -0.0011, 0.5633, 0.0540,\n", " -0.0333, -0.0936, 0.6006, -0.4610, -0.1716, -0.3625, 0.0738,\n", " 0.2130, -0.0040, -0.1681, -0.0567, 0.0414, -0.0399, 0.3204,\n", " 0.1606, 0.0895, -0.4445, -0.1933, -0.5708, 0.0026, 0.1022,\n", " -0.1998, 0.2881, -0.4914, 0.8336, -0.2190, -0.4052, -0.4005,\n", " -0.2036]],\n", "\n", " [[-0.4344, 0.9695, 0.3881, 0.5407, -0.5645, -0.7304, -0.9651,\n", " -0.8371, 0.9021, 0.1183, 0.0341, -0.9520, -0.7408, 0.9443,\n", " 0.1162, 0.8202, 0.6560, 0.9675, 0.9835, -0.7582, -0.9880,\n", " -0.2225, 0.2812, 0.7177, 0.2373, -0.9129, 0.7111, 0.3292,\n", " -0.3043, 0.0067, 0.9513, -0.5549, 0.5781, -0.2277, -0.1309,\n", " 0.6114, -0.8130, 0.8737, 0.4949, 0.0302, 0.8304, -0.9538,\n", " -0.8416, 0.0377, -0.9450, -0.0728, -0.1449, -0.4713, 0.8478,\n", " 0.9788, -0.7699, 0.8377, -0.9320, -0.9075, -0.5798, 0.6564,\n", " -0.9924, 0.8009, 0.9216, 0.8556, -0.9676, 0.6107, 0.9332,\n", " -0.9650],\n", " [-0.1282, 0.6072, 0.2948, 0.5892, -0.5330, -0.2869, -0.5384,\n", " -0.7949, 0.6626, -0.0911, 0.4917, -0.7266, -0.3492, 0.2605,\n", " 0.2942, 0.8206, 0.6406, 0.5368, 0.5708, -0.5419, -0.7469,\n", " -0.3980, 0.1402, 0.3024, 0.2058, -0.9050, 0.7186, 0.1156,\n", " -0.3964, -0.1969, 0.8352, -0.2601, 0.6729, 0.3602, -0.5379,\n", " 0.1174, -0.8353, 0.7244, 0.2288, -0.0560, -0.4192, -0.7514,\n", " -0.6763, 0.4741, -0.0413, 0.0924, -0.2348, 0.1453, 0.6766,\n", " 0.7962, -0.1368, 0.4839, -0.2126, -0.7452, -0.4184, 0.5247,\n", " -0.6722, 0.5168, 0.8884, 0.8025, -0.1871, -0.1701, 0.8400,\n", " -0.8880]],\n", "\n", " [[-0.6811, 0.9904, 0.3873, 0.3274, -0.4650, -0.6639, -0.9928,\n", " -0.8714, 0.9532, 0.1302, -0.0052, -0.9700, -0.8229, 0.9916,\n", " 0.0321, 0.8120, 0.6073, 0.9809, 0.9954, -0.7496, -0.9976,\n", " -0.2798, 0.3025, 0.6563, 0.1430, -0.9052, 0.6155, 0.3971,\n", " -0.2514, 0.0549, 0.9648, -0.7167, 0.4741, -0.3832, 0.2246,\n", " 0.7622, -0.7477, 0.9110, 0.5800, -0.0079, 0.9455, -0.9695,\n", " -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456, 0.8637,\n", " 0.9926, -0.8969, 0.9267, -0.9887, -0.9147, -0.5940, 0.6758,\n", " -0.9929, 0.9099, 0.9321, 0.9038, -0.9955, 0.7793, 0.9528,\n", " -0.9790],\n", " [-0.5124, 0.9718, 0.2896, 0.4127, -0.4482, -0.6861, -0.9578,\n", " -0.8474, 0.8905, -0.0578, 0.1265, -0.8802, -0.5990, 0.9483,\n", " 0.1486, 0.8054, 0.5295, 0.9644, 0.9343, -0.5344, -0.9767,\n", " -0.4396, 0.1733, 0.4361, 0.1193, -0.8925, 0.5645, 0.2105,\n", " -0.2591, -0.0061, 0.9448, -0.4838, 0.5449, -0.2025, -0.1123,\n", " 0.5975, -0.7673, 0.8066, 0.4332, -0.1005, 0.7939, -0.9577,\n", " -0.7584, -0.0506, -0.9229, 0.0987, -0.3074, -0.4775, 0.7187,\n", " 0.9429, -0.7517, 0.8196, -0.8877, -0.8825, -0.4664, 0.5667,\n", " -0.9790, 0.8117, 0.9049, 0.8489, -0.9360, 0.6337, 0.9125,\n", " -0.9336]]], grad_fn=)\n", "mask tensor([0., 1.])\n", "------------------------------\n", "tensor([[11, 4, 43, 36, 15, 3, 2],\n", " [ 5, 10, 40, 3, 2, 0, 0]])\n", "tensor([[ 6, 4, 10, 26, 28, 3, 2],\n", " [ 8, 4, 37, 3, 2, 0, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[ 0.0257, 0.7608, 0.1952, 0.7084, -0.8220, -0.2114, -0.8578,\n", " -0.9145, 0.7701, -0.3977, 0.6470, -0.8317, -0.6330, 0.4551,\n", " 0.2623, 0.8356, -0.6958, 0.7413, 0.8811, 0.9719, -0.8166,\n", " -0.2714, 0.5886, 0.6910, 0.8099, -0.9161, -0.4103, -0.4174,\n", " -0.5292, -0.1998, 0.0554, -0.4264, 0.9613, 0.5796, -0.2952,\n", " 0.6730, 0.8346, 0.7296, -0.0293, -0.8009, -0.5521, -0.9475,\n", " 0.0497, 0.5486, -0.8027, 0.8599, -0.6222, -0.8526, 0.8965,\n", " 0.9290, -0.5913, 0.9314, -0.6346, 0.3842, -0.6670, 0.4931,\n", " -0.7555, 0.7366, 0.9262, 0.7989, -0.4921, 0.6782, 0.8984,\n", " -0.9151],\n", " [-0.7170, 0.9946, 0.2001, 0.0835, -0.6144, -0.1523, -0.9858,\n", " -0.9394, 0.9803, -0.6567, 0.7709, -0.9762, -0.8259, 0.9954,\n", " 0.1657, 0.7995, -0.4178, 0.9870, 0.9865, 0.9567, -0.8958,\n", " -0.4879, 0.6675, 0.6189, 0.8001, -0.9052, -0.7355, -0.2388,\n", " -0.1095, -0.2719, -0.0088, -0.6197, 0.9563, -0.0013, 0.2816,\n", " 0.9368, 0.9279, 0.8263, 0.0327, -0.8375, -0.7684, -0.9716,\n", " 0.1923, -0.3077, -0.9891, 0.6632, -0.7312, -0.9647, 0.8973,\n", " 0.9924, -0.0549, 0.9862, -0.9876, 0.2897, -0.8521, 0.5444,\n", " -0.9373, 0.9275, 0.9599, 0.7495, -0.9927, 0.9667, 0.9693,\n", " -0.9140]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-2.1643e-01, 4.0703e-01, 3.2634e-01, -5.0862e-01, -5.9415e-01,\n", " 5.1934e-01, 2.3474e-02, 5.2337e-01, -3.0883e-01, -1.4427e-01,\n", " 4.1089e-01, 2.8636e-01, 4.1313e-01, -2.1515e-01, 1.8673e-01,\n", " -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\n", " 6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\n", " -9.0624e-02, 8.4112e-01, 4.1783e-01, 4.2457e-01, 4.4339e-01,\n", " -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\n", " -1.0899e-01, 2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\n", " -1.1454e-01, -1.9440e-01, 1.8098e-01, 3.7718e-01, 4.4388e-01,\n", " -1.9044e-01, 1.2831e-01, 9.2631e-02, -5.9981e-01, -1.7597e-01,\n", " 2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02, 1.3814e-01,\n", " 4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\n", " 4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\n", " [-2.7921e-01, 5.5246e-01, -2.3130e-01, 6.0324e-02, -1.0443e-01,\n", " -9.6127e-02, -4.8838e-01, 1.7342e-01, -1.6244e-03, -1.5950e-01,\n", " -2.0051e-01, -2.3869e-01, -6.2903e-01, 3.7441e-01, 1.1054e-01,\n", " -4.1060e-01, 4.7134e-01, 3.1578e-01, 2.8223e-01, -7.0127e-01,\n", " -6.8227e-01, -1.6815e-01, 1.2664e-01, -3.3500e-02, 2.8114e-01,\n", " -3.8212e-02, 3.1934e-01, 3.1801e-01, -1.0009e-01, -1.3935e-01,\n", " 3.5000e-01, -1.1332e-01, 1.6779e-01, -4.4952e-01, -2.7263e-01,\n", " -2.6393e-02, -2.0009e-01, 2.5008e-01, -5.6962e-02, -3.3716e-01,\n", " 1.2111e-01, 7.2555e-01, -1.6554e-01, 3.0319e-02, -7.2813e-01,\n", " -5.0258e-01, 4.6271e-01, -2.0600e-01, 7.9482e-02, 4.5408e-01,\n", " 1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\n", " 3.1461e-01, -5.0918e-01, 1.8147e-01, 6.9853e-02, -1.7200e-01,\n", " -1.3063e-01, 1.5399e-01, 3.4001e-01, -5.4762e-01]],\n", "\n", " [[ 2.9094e-01, 2.9604e-01, -6.4331e-01, 8.5796e-01, -5.0427e-01,\n", " -3.9154e-01, 1.1564e-01, 7.4492e-01, 2.2174e-01, -3.8437e-01,\n", " 3.4773e-01, 2.4916e-02, 3.9094e-01, -6.5730e-01, 5.5876e-01,\n", " 4.9713e-01, 4.2008e-01, 1.7297e-01, 2.0467e-01, -4.0904e-01,\n", " -3.2362e-01, 1.3526e-01, 5.7380e-02, 8.0937e-01, 4.6005e-01,\n", " -4.4897e-01, 8.0193e-01, 2.0982e-01, 5.7502e-02, 1.6175e-01,\n", " 1.6195e-01, 6.5908e-02, 8.0127e-01, 2.1267e-01, -3.2248e-01,\n", " 6.1880e-02, -6.0822e-01, 9.2528e-01, 1.5635e-01, 6.5912e-01,\n", " -2.5814e-01, 6.9864e-02, -6.9100e-02, -2.0400e-01, 4.4236e-01,\n", " -3.8749e-01, 2.2603e-01, -7.3010e-01, -6.7803e-02, 6.0987e-01,\n", " -2.3944e-01, -2.2402e-01, 3.4141e-02, -7.5317e-01, -1.9034e-01,\n", " 1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01, 4.8121e-01,\n", " -6.4265e-01, -7.2166e-01, 6.8618e-02, -1.7256e-01],\n", " [-4.2395e-01, 4.3782e-01, -3.7864e-01, 4.6429e-01, -1.9293e-01,\n", " -1.8951e-01, -2.7415e-01, 1.4951e-01, -3.3036e-01, -6.2952e-02,\n", " -2.8961e-01, 2.6387e-01, -6.7616e-01, 8.8255e-03, -1.3174e-02,\n", " -5.0924e-01, -5.3128e-02, -1.0846e-01, 4.2621e-01, -6.4251e-01,\n", " -1.9010e-01, -8.9229e-02, -1.8645e-02, 1.4834e-01, 4.4270e-01,\n", " -1.6318e-01, 5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\n", " 4.5368e-01, -2.8125e-01, 2.3815e-01, -3.6399e-01, -2.3326e-01,\n", " -1.2933e-01, -3.3350e-01, 4.6229e-02, -1.8867e-01, -8.2094e-02,\n", " -2.6307e-01, 7.5736e-01, -2.3453e-03, 1.3690e-01, -1.8830e-01,\n", " -3.6770e-01, 2.2573e-03, -2.6534e-01, 1.3679e-01, 5.0285e-01,\n", " -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\n", " 6.7031e-02, -6.5419e-02, 1.1711e-01, 3.5437e-02, -3.1980e-01,\n", " 2.7608e-01, 4.2805e-01, 1.0529e-01, -6.9090e-01]],\n", "\n", " [[ 2.6467e-01, -2.1472e-02, -2.3705e-01, 8.1433e-01, 1.1691e-01,\n", " -5.2326e-01, 2.7152e-01, 7.2288e-01, -2.7715e-01, -5.5603e-02,\n", " 6.1393e-01, -3.2977e-02, 2.7468e-01, -5.7310e-01, 4.7398e-01,\n", " 3.3744e-01, 3.9739e-01, -3.0474e-02, 1.2378e-01, -3.6966e-02,\n", " -5.7119e-01, 4.0540e-01, 7.2925e-02, 6.0944e-01, 3.6532e-01,\n", " -5.7006e-01, 6.2813e-01, 1.8211e-01, -1.2571e-01, 2.1051e-01,\n", " 2.2644e-01, 2.3753e-01, 1.0566e-01, 3.3964e-01, -9.8686e-02,\n", " 7.1103e-02, -5.1788e-01, 8.2421e-01, 4.0273e-01, 5.9817e-01,\n", " -5.9287e-01, 5.6128e-02, -3.0473e-01, 1.4045e-01, 1.7209e-01,\n", " -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\n", " 2.0601e-01, 3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\n", " -1.6437e-01, 9.7025e-02, -2.7640e-01, -1.8737e-01, 2.3292e-01,\n", " -4.5736e-01, -5.6993e-01, 3.8426e-01, -5.8431e-01],\n", " [ 2.9292e-02, 4.2082e-01, 1.1496e-01, -1.3269e-01, -4.9844e-01,\n", " -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\n", " -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01, 3.1475e-02,\n", " -3.9173e-01, 1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\n", " 3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02, 3.3985e-01,\n", " 4.4148e-02, 7.0217e-02, -9.1169e-02, 2.0149e-01, -5.0179e-01,\n", " 4.1926e-01, -2.3867e-01, -2.1852e-01, 4.9277e-02, -4.5147e-02,\n", " -1.3929e-01, -2.5047e-01, 4.9927e-01, -3.6437e-01, -3.5151e-01,\n", " -1.4846e-01, 2.4364e-01, -2.1723e-01, -4.6918e-02, 1.4216e-01,\n", " -5.0783e-02, -2.6806e-01, 8.9650e-03, 3.0882e-01, -5.4537e-02,\n", " -1.0623e-01, 8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\n", " 3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\n", " 3.3971e-01, 8.3942e-02, -1.2739e-01, -6.4155e-01]],\n", "\n", " [[ 3.9462e-01, -2.2764e-01, -3.7951e-02, 4.0051e-01, -2.9822e-01,\n", " 1.9265e-01, 9.7957e-02, 3.4318e-01, 6.5615e-02, 1.4674e-01,\n", " 1.9097e-01, -1.9940e-01, 1.4437e-01, -2.2148e-01, 5.6047e-01,\n", " 5.2499e-01, 4.4121e-01, -2.5948e-01, 1.0898e-01, -2.9630e-01,\n", " -1.4722e-01, 2.0510e-01, 3.2749e-02, 5.3201e-01, 5.3504e-01,\n", " -5.3038e-01, 6.1319e-01, 1.6065e-01, -3.3821e-02, 1.9661e-01,\n", " 5.2853e-01, -2.7200e-01, 1.5528e-01, 2.8527e-01, -1.4127e-01,\n", " 1.4125e-02, -2.4507e-01, 5.8318e-01, 2.6271e-01, 6.1537e-01,\n", " 5.7424e-02, 1.5592e-01, -1.7715e-01, 1.8923e-01, 4.4712e-01,\n", " -3.3768e-01, -1.8343e-01, -5.5573e-02, 4.3081e-01, 8.3409e-02,\n", " 2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\n", " 4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01, 3.5492e-01,\n", " -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\n", " [ 5.8269e-02, 8.0529e-01, 3.1633e-01, 3.5130e-02, -4.0030e-01,\n", " -5.2046e-01, -5.7112e-01, 1.2411e-01, 5.1932e-01, 8.1681e-02,\n", " -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01, 2.6595e-01,\n", " 2.8538e-01, 5.4966e-01, -2.2023e-01, 6.2513e-01, -7.1846e-01,\n", " 1.5489e-01, -2.3305e-01, -2.8478e-01, 4.7244e-02, 6.0448e-01,\n", " -2.4189e-02, 1.3727e-01, 4.3836e-02, 1.9764e-01, -4.9993e-01,\n", " 6.4335e-01, -6.3273e-01, -1.7085e-01, 3.6792e-01, -1.1653e-02,\n", " 5.9266e-02, -1.4715e-01, 6.0236e-01, -5.3754e-01, -3.3864e-01,\n", " -1.6203e-01, 4.6025e-01, -1.2995e-01, 1.5817e-01, -1.0733e-01,\n", " -7.5994e-02, -1.4720e-01, 7.4298e-02, 6.0721e-01, 3.2473e-01,\n", " -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\n", " 2.0282e-01, -5.1651e-01, 1.3683e-03, -2.0047e-01, 7.6022e-01,\n", " -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\n", "\n", " [[ 2.4355e-01, 9.7544e-02, 4.9027e-02, 3.3419e-01, 1.2388e-01,\n", " 7.1731e-02, 1.8976e-01, 4.4490e-01, -2.9891e-01, 2.0516e-01,\n", " -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02, 5.4330e-02,\n", " 4.1832e-01, 3.2749e-01, 5.0725e-02, 5.7945e-03, -1.6877e-01,\n", " -4.3551e-02, 7.4475e-02, 5.0754e-01, 5.8456e-01, 3.5108e-01,\n", " -3.2765e-01, 6.2981e-01, -2.1042e-01, -1.5040e-02, 3.9792e-01,\n", " 3.3859e-01, -2.2759e-01, 4.8875e-03, 2.0304e-01, -1.8557e-01,\n", " 5.1139e-01, -6.3578e-02, 3.7445e-01, 2.5876e-01, 3.2321e-01,\n", " 3.3812e-01, 4.8470e-01, -3.5065e-02, 5.6784e-01, 6.2865e-01,\n", " -3.4431e-01, -3.1394e-01, 2.1078e-01, 5.3845e-01, 3.1855e-01,\n", " 4.3601e-01, -3.4167e-03, -4.5149e-02, 4.3369e-02, 4.9973e-02,\n", " 5.7321e-01, -6.1557e-02, 1.4944e-01, -1.7503e-02, 1.5900e-01,\n", " -1.2167e-01, -4.7770e-01, 4.0990e-02, -1.3854e-01],\n", " [-1.2090e-01, 6.5291e-01, 4.9012e-01, 6.3469e-01, -6.1991e-01,\n", " -4.5836e-01, -6.4770e-01, -8.5862e-01, 6.3087e-01, -1.7720e-02,\n", " 1.7558e-01, -8.4372e-01, -6.0052e-01, 3.6973e-01, 1.8317e-01,\n", " 7.5792e-01, 5.6800e-01, 6.3874e-01, 7.7846e-01, -7.3676e-01,\n", " -8.1896e-01, -3.2437e-01, -5.9558e-02, 1.6930e-01, 4.0612e-01,\n", " -9.0851e-01, 7.4943e-01, 7.0389e-02, -3.3322e-01, -3.4272e-01,\n", " 8.7254e-01, -3.7895e-01, 5.6617e-01, 2.2784e-01, -5.8411e-01,\n", " 2.4766e-01, -8.4705e-01, 7.5885e-01, 2.6971e-01, -2.0708e-01,\n", " -2.3187e-01, -6.6556e-01, -7.9039e-01, 5.7092e-01, -9.1081e-03,\n", " 3.3079e-02, -3.3478e-01, 2.8295e-01, 7.9911e-01, 8.7098e-01,\n", " -3.8057e-01, 5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\n", " 6.5749e-01, -8.2280e-01, 4.0088e-01, 9.4624e-01, 7.4583e-01,\n", " -1.8822e-01, -1.5356e-01, 9.0531e-01, -9.4046e-01]],\n", "\n", " [[ 1.4370e-01, 6.9390e-01, 3.4906e-01, 1.8600e-01, -1.0352e-01,\n", " -1.8402e-01, -4.7587e-01, 3.9898e-01, 4.0702e-01, 3.4950e-01,\n", " 5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02, 2.1085e-01,\n", " 5.8135e-01, 6.0812e-01, -4.3868e-02, 5.5309e-01, -5.7745e-01,\n", " 1.1744e-01, 2.9086e-02, 1.2145e-01, 5.4306e-01, 6.4010e-01,\n", " -2.5673e-01, 6.0993e-01, -7.3052e-03, 7.7005e-02, 2.6385e-01,\n", " 6.2501e-01, -6.7076e-01, -9.6880e-02, 3.9839e-01, -1.2475e-01,\n", " 3.5841e-01, -4.1073e-02, 5.3352e-01, -2.4644e-01, 7.5658e-02,\n", " 1.7233e-01, 5.7383e-01, -8.7162e-02, 4.8839e-01, 1.1819e-01,\n", " -1.4091e-01, -1.5005e-01, 2.0554e-01, 7.3376e-01, 5.7186e-01,\n", " 2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\n", " 4.2501e-01, -4.6323e-01, 1.3973e-01, -2.1567e-01, 8.0603e-01,\n", " -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\n", " [-6.1965e-01, 9.8332e-01, 5.0493e-01, 2.8111e-01, -5.3563e-01,\n", " -5.9760e-01, -9.7713e-01, -9.0046e-01, 9.2203e-01, 3.4881e-04,\n", " 3.0716e-01, -9.3601e-01, -7.7404e-01, 9.6783e-01, 1.1720e-01,\n", " 7.5584e-01, 5.2906e-01, 9.7504e-01, 9.7287e-01, -7.2797e-01,\n", " -9.8892e-01, -3.6624e-01, -1.9580e-02, 3.4981e-01, 3.2603e-01,\n", " -9.0325e-01, 5.5451e-01, 1.3807e-01, -2.0965e-02, -4.0570e-02,\n", " 9.6092e-01, -5.8279e-01, 4.7798e-01, -4.6821e-01, 2.7388e-03,\n", " 7.5130e-01, -7.7676e-01, 8.5018e-01, 5.0395e-01, -2.3900e-01,\n", " 8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\n", " 4.2121e-02, -3.8591e-01, -4.9300e-01, 8.2269e-01, 9.6996e-01,\n", " -8.6781e-01, 8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\n", " 6.9462e-01, -9.9058e-01, 7.5560e-01, 9.5516e-01, 8.5390e-01,\n", " -9.3777e-01, 7.3466e-01, 9.5822e-01, -9.6689e-01]],\n", "\n", " [[-7.2412e-02, 5.5587e-01, 5.2648e-01, 6.8613e-01, -5.2126e-01,\n", " -2.6911e-01, -6.0472e-01, -8.5598e-01, 5.5327e-01, 1.5888e-01,\n", " 1.6669e-01, -7.6833e-01, -4.9673e-01, 4.0409e-01, 1.4775e-01,\n", " 8.2823e-01, 6.1798e-01, 6.2634e-01, 7.0638e-01, -6.3201e-01,\n", " -8.1080e-01, -1.9344e-01, 2.3377e-01, 5.5736e-01, 4.0636e-01,\n", " -9.2914e-01, 8.4626e-01, 4.3793e-02, -4.0619e-01, 1.3983e-01,\n", " 8.7200e-01, -3.6435e-01, 5.4387e-01, 1.9864e-01, -6.3067e-01,\n", " 3.2501e-01, -8.2716e-01, 7.3380e-01, 3.2731e-01, 1.1471e-01,\n", " 4.2973e-02, -5.7053e-01, -7.6254e-01, 6.5678e-01, 1.9348e-01,\n", " 9.6505e-03, -3.7881e-01, 3.7071e-01, 8.6609e-01, 9.2239e-01,\n", " -2.5739e-01, 5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\n", " 7.2268e-01, -7.9991e-01, 4.7691e-01, 9.3956e-01, 7.7451e-01,\n", " -3.3390e-01, -2.0639e-01, 9.0730e-01, -9.1102e-01],\n", " [-8.2056e-01, 9.9517e-01, 5.2822e-01, -2.9103e-02, -4.4076e-01,\n", " -5.0182e-01, -9.9669e-01, -9.2137e-01, 9.6995e-01, 9.8441e-03,\n", " 3.5683e-01, -9.7109e-01, -8.6985e-01, 9.9538e-01, 6.6071e-02,\n", " 7.5521e-01, 5.4956e-01, 9.8520e-01, 9.9528e-01, -7.4652e-01,\n", " -9.9837e-01, -4.0200e-01, 1.3232e-02, 4.5854e-01, 2.7352e-01,\n", " -8.9861e-01, 4.5760e-01, 1.9683e-01, 9.8737e-02, 5.9758e-02,\n", " 9.7392e-01, -7.3979e-01, 3.9800e-01, -6.4981e-01, 3.9077e-01,\n", " 8.7535e-01, -7.1771e-01, 9.1071e-01, 6.2887e-01, -2.6265e-01,\n", " 9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\n", " 5.0785e-02, -4.2154e-01, -7.8124e-01, 8.4035e-01, 9.9191e-01,\n", " -9.3793e-01, 9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\n", " 7.2309e-01, -9.9203e-01, 8.8789e-01, 9.6214e-01, 9.1157e-01,\n", " -9.9297e-01, 8.7711e-01, 9.7576e-01, -9.8162e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([6, 8])\n", "dec_state: tensor([[[-0.0897, 0.6267, 0.3705, 0.4170, -0.2316, 0.2110, -0.2141,\n", " -0.2169, 0.8292, -0.7173, -0.6847, -0.9468, -0.6876, 0.4888,\n", " 0.1389, 0.5996, 0.6330, 0.7681, 0.7616, 0.7816, -0.3708,\n", " 0.4293, 0.3216, 0.8708, -0.1233, -0.9128, 0.6912, -0.3638,\n", " -0.8211, -0.4372, 0.1206, 0.2035, 0.8014, 0.4522, -0.5063,\n", " 0.3544, 0.6205, 0.5835, -0.4024, -0.4807, -0.4116, -0.7531,\n", " -0.7665, 0.7638, -0.8251, -0.6089, -0.5825, -0.2108, 0.1335,\n", " 0.9424, 0.8174, 0.4705, -0.8583, 0.2764, -0.9442, 0.3900,\n", " -0.6942, -0.7099, 0.9335, -0.6479, -0.5481, 0.8296, 0.7493,\n", " 0.2921],\n", " [-0.7378, 0.9054, -0.1446, 0.1767, -0.4181, 0.6337, -0.9301,\n", " -0.7388, 0.9611, -0.8653, -0.7742, -0.9592, -0.8655, 0.9938,\n", " 0.5080, 0.6663, 0.4038, 0.9180, 0.9493, 0.9487, 0.4128,\n", " -0.4383, 0.6572, 0.7638, 0.2550, -0.9172, 0.7786, -0.0015,\n", " -0.8239, 0.5808, -0.2157, -0.2151, 0.8969, 0.2925, -0.7788,\n", " 0.1941, 0.9427, 0.8163, -0.4540, -0.6312, -0.9330, 0.4678,\n", " -0.6296, 0.0969, -0.9291, -0.0245, -0.8531, -0.8951, -0.1613,\n", " 0.9895, 0.9187, 0.9624, -0.9843, 0.6982, -0.8912, 0.2347,\n", " -0.8581, 0.2964, 0.9550, -0.8392, -0.9868, 0.8875, 0.9393,\n", " -0.1283]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-2.1643e-01, 4.0703e-01, 3.2634e-01, -5.0862e-01, -5.9415e-01,\n", " 5.1934e-01, 2.3474e-02, 5.2337e-01, -3.0883e-01, -1.4427e-01,\n", " 4.1089e-01, 2.8636e-01, 4.1313e-01, -2.1515e-01, 1.8673e-01,\n", " -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\n", " 6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\n", " -9.0624e-02, 8.4112e-01, 4.1783e-01, 4.2457e-01, 4.4339e-01,\n", " -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\n", " -1.0899e-01, 2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\n", " -1.1454e-01, -1.9440e-01, 1.8098e-01, 3.7718e-01, 4.4388e-01,\n", " -1.9044e-01, 1.2831e-01, 9.2631e-02, -5.9981e-01, -1.7597e-01,\n", " 2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02, 1.3814e-01,\n", " 4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\n", " 4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\n", " [-2.7921e-01, 5.5246e-01, -2.3130e-01, 6.0324e-02, -1.0443e-01,\n", " -9.6127e-02, -4.8838e-01, 1.7342e-01, -1.6244e-03, -1.5950e-01,\n", " -2.0051e-01, -2.3869e-01, -6.2903e-01, 3.7441e-01, 1.1054e-01,\n", " -4.1060e-01, 4.7134e-01, 3.1578e-01, 2.8223e-01, -7.0127e-01,\n", " -6.8227e-01, -1.6815e-01, 1.2664e-01, -3.3500e-02, 2.8114e-01,\n", " -3.8212e-02, 3.1934e-01, 3.1801e-01, -1.0009e-01, -1.3935e-01,\n", " 3.5000e-01, -1.1332e-01, 1.6779e-01, -4.4952e-01, -2.7263e-01,\n", " -2.6393e-02, -2.0009e-01, 2.5008e-01, -5.6962e-02, -3.3716e-01,\n", " 1.2111e-01, 7.2555e-01, -1.6554e-01, 3.0319e-02, -7.2813e-01,\n", " -5.0258e-01, 4.6271e-01, -2.0600e-01, 7.9482e-02, 4.5408e-01,\n", " 1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\n", " 3.1461e-01, -5.0918e-01, 1.8147e-01, 6.9853e-02, -1.7200e-01,\n", " -1.3063e-01, 1.5399e-01, 3.4001e-01, -5.4762e-01]],\n", "\n", " [[ 2.9094e-01, 2.9604e-01, -6.4331e-01, 8.5796e-01, -5.0427e-01,\n", " -3.9154e-01, 1.1564e-01, 7.4492e-01, 2.2174e-01, -3.8437e-01,\n", " 3.4773e-01, 2.4916e-02, 3.9094e-01, -6.5730e-01, 5.5876e-01,\n", " 4.9713e-01, 4.2008e-01, 1.7297e-01, 2.0467e-01, -4.0904e-01,\n", " -3.2362e-01, 1.3526e-01, 5.7380e-02, 8.0937e-01, 4.6005e-01,\n", " -4.4897e-01, 8.0193e-01, 2.0982e-01, 5.7502e-02, 1.6175e-01,\n", " 1.6195e-01, 6.5908e-02, 8.0127e-01, 2.1267e-01, -3.2248e-01,\n", " 6.1880e-02, -6.0822e-01, 9.2528e-01, 1.5635e-01, 6.5912e-01,\n", " -2.5814e-01, 6.9864e-02, -6.9100e-02, -2.0400e-01, 4.4236e-01,\n", " -3.8749e-01, 2.2603e-01, -7.3010e-01, -6.7803e-02, 6.0987e-01,\n", " -2.3944e-01, -2.2402e-01, 3.4141e-02, -7.5317e-01, -1.9034e-01,\n", " 1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01, 4.8121e-01,\n", " -6.4265e-01, -7.2166e-01, 6.8618e-02, -1.7256e-01],\n", " [-4.2395e-01, 4.3782e-01, -3.7864e-01, 4.6429e-01, -1.9293e-01,\n", " -1.8951e-01, -2.7415e-01, 1.4951e-01, -3.3036e-01, -6.2952e-02,\n", " -2.8961e-01, 2.6387e-01, -6.7616e-01, 8.8255e-03, -1.3174e-02,\n", " -5.0924e-01, -5.3128e-02, -1.0846e-01, 4.2621e-01, -6.4251e-01,\n", " -1.9010e-01, -8.9229e-02, -1.8645e-02, 1.4834e-01, 4.4270e-01,\n", " -1.6318e-01, 5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\n", " 4.5368e-01, -2.8125e-01, 2.3815e-01, -3.6399e-01, -2.3326e-01,\n", " -1.2933e-01, -3.3350e-01, 4.6229e-02, -1.8867e-01, -8.2094e-02,\n", " -2.6307e-01, 7.5736e-01, -2.3453e-03, 1.3690e-01, -1.8830e-01,\n", " -3.6770e-01, 2.2573e-03, -2.6534e-01, 1.3679e-01, 5.0285e-01,\n", " -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\n", " 6.7031e-02, -6.5419e-02, 1.1711e-01, 3.5437e-02, -3.1980e-01,\n", " 2.7608e-01, 4.2805e-01, 1.0529e-01, -6.9090e-01]],\n", "\n", " [[ 2.6467e-01, -2.1472e-02, -2.3705e-01, 8.1433e-01, 1.1691e-01,\n", " -5.2326e-01, 2.7152e-01, 7.2288e-01, -2.7715e-01, -5.5603e-02,\n", " 6.1393e-01, -3.2977e-02, 2.7468e-01, -5.7310e-01, 4.7398e-01,\n", " 3.3744e-01, 3.9739e-01, -3.0474e-02, 1.2378e-01, -3.6966e-02,\n", " -5.7119e-01, 4.0540e-01, 7.2925e-02, 6.0944e-01, 3.6532e-01,\n", " -5.7006e-01, 6.2813e-01, 1.8211e-01, -1.2571e-01, 2.1051e-01,\n", " 2.2644e-01, 2.3753e-01, 1.0566e-01, 3.3964e-01, -9.8686e-02,\n", " 7.1103e-02, -5.1788e-01, 8.2421e-01, 4.0273e-01, 5.9817e-01,\n", " -5.9287e-01, 5.6128e-02, -3.0473e-01, 1.4045e-01, 1.7209e-01,\n", " -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\n", " 2.0601e-01, 3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\n", " -1.6437e-01, 9.7025e-02, -2.7640e-01, -1.8737e-01, 2.3292e-01,\n", " -4.5736e-01, -5.6993e-01, 3.8426e-01, -5.8431e-01],\n", " [ 2.9292e-02, 4.2082e-01, 1.1496e-01, -1.3269e-01, -4.9844e-01,\n", " -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\n", " -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01, 3.1475e-02,\n", " -3.9173e-01, 1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\n", " 3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02, 3.3985e-01,\n", " 4.4148e-02, 7.0217e-02, -9.1169e-02, 2.0149e-01, -5.0179e-01,\n", " 4.1926e-01, -2.3867e-01, -2.1852e-01, 4.9277e-02, -4.5147e-02,\n", " -1.3929e-01, -2.5047e-01, 4.9927e-01, -3.6437e-01, -3.5151e-01,\n", " -1.4846e-01, 2.4364e-01, -2.1723e-01, -4.6918e-02, 1.4216e-01,\n", " -5.0783e-02, -2.6806e-01, 8.9650e-03, 3.0882e-01, -5.4537e-02,\n", " -1.0623e-01, 8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\n", " 3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\n", " 3.3971e-01, 8.3942e-02, -1.2739e-01, -6.4155e-01]],\n", "\n", " [[ 3.9462e-01, -2.2764e-01, -3.7951e-02, 4.0051e-01, -2.9822e-01,\n", " 1.9265e-01, 9.7957e-02, 3.4318e-01, 6.5615e-02, 1.4674e-01,\n", " 1.9097e-01, -1.9940e-01, 1.4437e-01, -2.2148e-01, 5.6047e-01,\n", " 5.2499e-01, 4.4121e-01, -2.5948e-01, 1.0898e-01, -2.9630e-01,\n", " -1.4722e-01, 2.0510e-01, 3.2749e-02, 5.3201e-01, 5.3504e-01,\n", " -5.3038e-01, 6.1319e-01, 1.6065e-01, -3.3821e-02, 1.9661e-01,\n", " 5.2853e-01, -2.7200e-01, 1.5528e-01, 2.8527e-01, -1.4127e-01,\n", " 1.4125e-02, -2.4507e-01, 5.8318e-01, 2.6271e-01, 6.1537e-01,\n", " 5.7424e-02, 1.5592e-01, -1.7715e-01, 1.8923e-01, 4.4712e-01,\n", " -3.3768e-01, -1.8343e-01, -5.5573e-02, 4.3081e-01, 8.3409e-02,\n", " 2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\n", " 4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01, 3.5492e-01,\n", " -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\n", " [ 5.8269e-02, 8.0529e-01, 3.1633e-01, 3.5130e-02, -4.0030e-01,\n", " -5.2046e-01, -5.7112e-01, 1.2411e-01, 5.1932e-01, 8.1681e-02,\n", " -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01, 2.6595e-01,\n", " 2.8538e-01, 5.4966e-01, -2.2023e-01, 6.2513e-01, -7.1846e-01,\n", " 1.5489e-01, -2.3305e-01, -2.8478e-01, 4.7244e-02, 6.0448e-01,\n", " -2.4189e-02, 1.3727e-01, 4.3836e-02, 1.9764e-01, -4.9993e-01,\n", " 6.4335e-01, -6.3273e-01, -1.7085e-01, 3.6792e-01, -1.1653e-02,\n", " 5.9266e-02, -1.4715e-01, 6.0236e-01, -5.3754e-01, -3.3864e-01,\n", " -1.6203e-01, 4.6025e-01, -1.2995e-01, 1.5817e-01, -1.0733e-01,\n", " -7.5994e-02, -1.4720e-01, 7.4298e-02, 6.0721e-01, 3.2473e-01,\n", " -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\n", " 2.0282e-01, -5.1651e-01, 1.3683e-03, -2.0047e-01, 7.6022e-01,\n", " -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\n", "\n", " [[ 2.4355e-01, 9.7544e-02, 4.9027e-02, 3.3419e-01, 1.2388e-01,\n", " 7.1731e-02, 1.8976e-01, 4.4490e-01, -2.9891e-01, 2.0516e-01,\n", " -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02, 5.4330e-02,\n", " 4.1832e-01, 3.2749e-01, 5.0725e-02, 5.7945e-03, -1.6877e-01,\n", " -4.3551e-02, 7.4475e-02, 5.0754e-01, 5.8456e-01, 3.5108e-01,\n", " -3.2765e-01, 6.2981e-01, -2.1042e-01, -1.5040e-02, 3.9792e-01,\n", " 3.3859e-01, -2.2759e-01, 4.8875e-03, 2.0304e-01, -1.8557e-01,\n", " 5.1139e-01, -6.3578e-02, 3.7445e-01, 2.5876e-01, 3.2321e-01,\n", " 3.3812e-01, 4.8470e-01, -3.5065e-02, 5.6784e-01, 6.2865e-01,\n", " -3.4431e-01, -3.1394e-01, 2.1078e-01, 5.3845e-01, 3.1855e-01,\n", " 4.3601e-01, -3.4167e-03, -4.5149e-02, 4.3369e-02, 4.9973e-02,\n", " 5.7321e-01, -6.1557e-02, 1.4944e-01, -1.7503e-02, 1.5900e-01,\n", " -1.2167e-01, -4.7770e-01, 4.0990e-02, -1.3854e-01],\n", " [-1.2090e-01, 6.5291e-01, 4.9012e-01, 6.3469e-01, -6.1991e-01,\n", " -4.5836e-01, -6.4770e-01, -8.5862e-01, 6.3087e-01, -1.7720e-02,\n", " 1.7558e-01, -8.4372e-01, -6.0052e-01, 3.6973e-01, 1.8317e-01,\n", " 7.5792e-01, 5.6800e-01, 6.3874e-01, 7.7846e-01, -7.3676e-01,\n", " -8.1896e-01, -3.2437e-01, -5.9558e-02, 1.6930e-01, 4.0612e-01,\n", " -9.0851e-01, 7.4943e-01, 7.0389e-02, -3.3322e-01, -3.4272e-01,\n", " 8.7254e-01, -3.7895e-01, 5.6617e-01, 2.2784e-01, -5.8411e-01,\n", " 2.4766e-01, -8.4705e-01, 7.5885e-01, 2.6971e-01, -2.0708e-01,\n", " -2.3187e-01, -6.6556e-01, -7.9039e-01, 5.7092e-01, -9.1081e-03,\n", " 3.3079e-02, -3.3478e-01, 2.8295e-01, 7.9911e-01, 8.7098e-01,\n", " -3.8057e-01, 5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\n", " 6.5749e-01, -8.2280e-01, 4.0088e-01, 9.4624e-01, 7.4583e-01,\n", " -1.8822e-01, -1.5356e-01, 9.0531e-01, -9.4046e-01]],\n", "\n", " [[ 1.4370e-01, 6.9390e-01, 3.4906e-01, 1.8600e-01, -1.0352e-01,\n", " -1.8402e-01, -4.7587e-01, 3.9898e-01, 4.0702e-01, 3.4950e-01,\n", " 5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02, 2.1085e-01,\n", " 5.8135e-01, 6.0812e-01, -4.3868e-02, 5.5309e-01, -5.7745e-01,\n", " 1.1744e-01, 2.9086e-02, 1.2145e-01, 5.4306e-01, 6.4010e-01,\n", " -2.5673e-01, 6.0993e-01, -7.3052e-03, 7.7005e-02, 2.6385e-01,\n", " 6.2501e-01, -6.7076e-01, -9.6880e-02, 3.9839e-01, -1.2475e-01,\n", " 3.5841e-01, -4.1073e-02, 5.3352e-01, -2.4644e-01, 7.5658e-02,\n", " 1.7233e-01, 5.7383e-01, -8.7162e-02, 4.8839e-01, 1.1819e-01,\n", " -1.4091e-01, -1.5005e-01, 2.0554e-01, 7.3376e-01, 5.7186e-01,\n", " 2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\n", " 4.2501e-01, -4.6323e-01, 1.3973e-01, -2.1567e-01, 8.0603e-01,\n", " -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\n", " [-6.1965e-01, 9.8332e-01, 5.0493e-01, 2.8111e-01, -5.3563e-01,\n", " -5.9760e-01, -9.7713e-01, -9.0046e-01, 9.2203e-01, 3.4881e-04,\n", " 3.0716e-01, -9.3601e-01, -7.7404e-01, 9.6783e-01, 1.1720e-01,\n", " 7.5584e-01, 5.2906e-01, 9.7504e-01, 9.7287e-01, -7.2797e-01,\n", " -9.8892e-01, -3.6624e-01, -1.9580e-02, 3.4981e-01, 3.2603e-01,\n", " -9.0325e-01, 5.5451e-01, 1.3807e-01, -2.0965e-02, -4.0570e-02,\n", " 9.6092e-01, -5.8279e-01, 4.7798e-01, -4.6821e-01, 2.7388e-03,\n", " 7.5130e-01, -7.7676e-01, 8.5018e-01, 5.0395e-01, -2.3900e-01,\n", " 8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\n", " 4.2121e-02, -3.8591e-01, -4.9300e-01, 8.2269e-01, 9.6996e-01,\n", " -8.6781e-01, 8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\n", " 6.9462e-01, -9.9058e-01, 7.5560e-01, 9.5516e-01, 8.5390e-01,\n", " -9.3777e-01, 7.3466e-01, 9.5822e-01, -9.6689e-01]],\n", "\n", " [[-7.2412e-02, 5.5587e-01, 5.2648e-01, 6.8613e-01, -5.2126e-01,\n", " -2.6911e-01, -6.0472e-01, -8.5598e-01, 5.5327e-01, 1.5888e-01,\n", " 1.6669e-01, -7.6833e-01, -4.9673e-01, 4.0409e-01, 1.4775e-01,\n", " 8.2823e-01, 6.1798e-01, 6.2634e-01, 7.0638e-01, -6.3201e-01,\n", " -8.1080e-01, -1.9344e-01, 2.3377e-01, 5.5736e-01, 4.0636e-01,\n", " -9.2914e-01, 8.4626e-01, 4.3793e-02, -4.0619e-01, 1.3983e-01,\n", " 8.7200e-01, -3.6435e-01, 5.4387e-01, 1.9864e-01, -6.3067e-01,\n", " 3.2501e-01, -8.2716e-01, 7.3380e-01, 3.2731e-01, 1.1471e-01,\n", " 4.2973e-02, -5.7053e-01, -7.6254e-01, 6.5678e-01, 1.9348e-01,\n", " 9.6505e-03, -3.7881e-01, 3.7071e-01, 8.6609e-01, 9.2239e-01,\n", " -2.5739e-01, 5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\n", " 7.2268e-01, -7.9991e-01, 4.7691e-01, 9.3956e-01, 7.7451e-01,\n", " -3.3390e-01, -2.0639e-01, 9.0730e-01, -9.1102e-01],\n", " [-8.2056e-01, 9.9517e-01, 5.2822e-01, -2.9103e-02, -4.4076e-01,\n", " -5.0182e-01, -9.9669e-01, -9.2137e-01, 9.6995e-01, 9.8441e-03,\n", " 3.5683e-01, -9.7109e-01, -8.6985e-01, 9.9538e-01, 6.6071e-02,\n", " 7.5521e-01, 5.4956e-01, 9.8520e-01, 9.9528e-01, -7.4652e-01,\n", " -9.9837e-01, -4.0200e-01, 1.3232e-02, 4.5854e-01, 2.7352e-01,\n", " -8.9861e-01, 4.5760e-01, 1.9683e-01, 9.8737e-02, 5.9758e-02,\n", " 9.7392e-01, -7.3979e-01, 3.9800e-01, -6.4981e-01, 3.9077e-01,\n", " 8.7535e-01, -7.1771e-01, 9.1071e-01, 6.2887e-01, -2.6265e-01,\n", " 9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\n", " 5.0785e-02, -4.2154e-01, -7.8124e-01, 8.4035e-01, 9.9191e-01,\n", " -9.3793e-01, 9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\n", " 7.2309e-01, -9.9203e-01, 8.8789e-01, 9.6214e-01, 9.1157e-01,\n", " -9.9297e-01, 8.7711e-01, 9.7576e-01, -9.8162e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([4, 4])\n", "dec_state: tensor([[[ 0.2905, 0.7527, -0.3698, 0.8555, 0.3202, 0.1867, -0.3535,\n", " 0.8386, 0.3149, -0.8806, -0.8028, -0.8874, -0.6217, 0.6163,\n", " -0.1134, -0.0066, 0.6359, 0.4521, -0.4873, 0.4565, 0.1907,\n", " -0.0065, 0.4648, 0.8977, 0.5536, -0.9439, 0.1522, -0.3966,\n", " -0.8704, -0.7110, -0.7356, 0.6488, -0.5709, 0.5956, -0.2854,\n", " 0.5041, 0.6281, -0.0127, -0.7029, 0.4197, -0.3893, -0.0770,\n", " -0.2616, 0.8185, -0.6111, -0.2423, 0.4200, 0.8558, 0.0696,\n", " 0.9317, 0.6333, 0.3468, -0.8823, -0.0382, -0.8931, 0.4541,\n", " 0.0938, -0.4317, -0.3229, 0.5745, -0.8075, 0.9039, 0.0605,\n", " 0.4151],\n", " [-0.2466, 0.9434, -0.6804, 0.7498, 0.4127, 0.5988, -0.8999,\n", " 0.8206, 0.6626, -0.9415, -0.7087, -0.9617, -0.7467, 0.9744,\n", " 0.2873, 0.2443, 0.5766, 0.4519, -0.4098, 0.7439, 0.6236,\n", " -0.6022, 0.5878, 0.7996, 0.6750, -0.9445, -0.3073, -0.1177,\n", " -0.9240, -0.6052, -0.9059, 0.5095, -0.7330, 0.3895, -0.6937,\n", " 0.5939, 0.8552, -0.0792, -0.7615, 0.2399, -0.8582, 0.7504,\n", " 0.0160, 0.5213, -0.8885, -0.0969, -0.5700, 0.8626, -0.1957,\n", " 0.9831, 0.9048, 0.8710, -0.9554, 0.3049, -0.8610, 0.2506,\n", " 0.3594, 0.0410, -0.1012, 0.6145, -0.9915, 0.9478, 0.3932,\n", " 0.4312]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-2.1643e-01, 4.0703e-01, 3.2634e-01, -5.0862e-01, -5.9415e-01,\n", " 5.1934e-01, 2.3474e-02, 5.2337e-01, -3.0883e-01, -1.4427e-01,\n", " 4.1089e-01, 2.8636e-01, 4.1313e-01, -2.1515e-01, 1.8673e-01,\n", " -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\n", " 6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\n", " -9.0624e-02, 8.4112e-01, 4.1783e-01, 4.2457e-01, 4.4339e-01,\n", " -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\n", " -1.0899e-01, 2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\n", " -1.1454e-01, -1.9440e-01, 1.8098e-01, 3.7718e-01, 4.4388e-01,\n", " -1.9044e-01, 1.2831e-01, 9.2631e-02, -5.9981e-01, -1.7597e-01,\n", " 2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02, 1.3814e-01,\n", " 4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\n", " 4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\n", " [-2.7921e-01, 5.5246e-01, -2.3130e-01, 6.0324e-02, -1.0443e-01,\n", " -9.6127e-02, -4.8838e-01, 1.7342e-01, -1.6244e-03, -1.5950e-01,\n", " -2.0051e-01, -2.3869e-01, -6.2903e-01, 3.7441e-01, 1.1054e-01,\n", " -4.1060e-01, 4.7134e-01, 3.1578e-01, 2.8223e-01, -7.0127e-01,\n", " -6.8227e-01, -1.6815e-01, 1.2664e-01, -3.3500e-02, 2.8114e-01,\n", " -3.8212e-02, 3.1934e-01, 3.1801e-01, -1.0009e-01, -1.3935e-01,\n", " 3.5000e-01, -1.1332e-01, 1.6779e-01, -4.4952e-01, -2.7263e-01,\n", " -2.6393e-02, -2.0009e-01, 2.5008e-01, -5.6962e-02, -3.3716e-01,\n", " 1.2111e-01, 7.2555e-01, -1.6554e-01, 3.0319e-02, -7.2813e-01,\n", " -5.0258e-01, 4.6271e-01, -2.0600e-01, 7.9482e-02, 4.5408e-01,\n", " 1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\n", " 3.1461e-01, -5.0918e-01, 1.8147e-01, 6.9853e-02, -1.7200e-01,\n", " -1.3063e-01, 1.5399e-01, 3.4001e-01, -5.4762e-01]],\n", "\n", " [[ 2.9094e-01, 2.9604e-01, -6.4331e-01, 8.5796e-01, -5.0427e-01,\n", " -3.9154e-01, 1.1564e-01, 7.4492e-01, 2.2174e-01, -3.8437e-01,\n", " 3.4773e-01, 2.4916e-02, 3.9094e-01, -6.5730e-01, 5.5876e-01,\n", " 4.9713e-01, 4.2008e-01, 1.7297e-01, 2.0467e-01, -4.0904e-01,\n", " -3.2362e-01, 1.3526e-01, 5.7380e-02, 8.0937e-01, 4.6005e-01,\n", " -4.4897e-01, 8.0193e-01, 2.0982e-01, 5.7502e-02, 1.6175e-01,\n", " 1.6195e-01, 6.5908e-02, 8.0127e-01, 2.1267e-01, -3.2248e-01,\n", " 6.1880e-02, -6.0822e-01, 9.2528e-01, 1.5635e-01, 6.5912e-01,\n", " -2.5814e-01, 6.9864e-02, -6.9100e-02, -2.0400e-01, 4.4236e-01,\n", " -3.8749e-01, 2.2603e-01, -7.3010e-01, -6.7803e-02, 6.0987e-01,\n", " -2.3944e-01, -2.2402e-01, 3.4141e-02, -7.5317e-01, -1.9034e-01,\n", " 1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01, 4.8121e-01,\n", " -6.4265e-01, -7.2166e-01, 6.8618e-02, -1.7256e-01],\n", " [-4.2395e-01, 4.3782e-01, -3.7864e-01, 4.6429e-01, -1.9293e-01,\n", " -1.8951e-01, -2.7415e-01, 1.4951e-01, -3.3036e-01, -6.2952e-02,\n", " -2.8961e-01, 2.6387e-01, -6.7616e-01, 8.8255e-03, -1.3174e-02,\n", " -5.0924e-01, -5.3128e-02, -1.0846e-01, 4.2621e-01, -6.4251e-01,\n", " -1.9010e-01, -8.9229e-02, -1.8645e-02, 1.4834e-01, 4.4270e-01,\n", " -1.6318e-01, 5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\n", " 4.5368e-01, -2.8125e-01, 2.3815e-01, -3.6399e-01, -2.3326e-01,\n", " -1.2933e-01, -3.3350e-01, 4.6229e-02, -1.8867e-01, -8.2094e-02,\n", " -2.6307e-01, 7.5736e-01, -2.3453e-03, 1.3690e-01, -1.8830e-01,\n", " -3.6770e-01, 2.2573e-03, -2.6534e-01, 1.3679e-01, 5.0285e-01,\n", " -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\n", " 6.7031e-02, -6.5419e-02, 1.1711e-01, 3.5437e-02, -3.1980e-01,\n", " 2.7608e-01, 4.2805e-01, 1.0529e-01, -6.9090e-01]],\n", "\n", " [[ 2.6467e-01, -2.1472e-02, -2.3705e-01, 8.1433e-01, 1.1691e-01,\n", " -5.2326e-01, 2.7152e-01, 7.2288e-01, -2.7715e-01, -5.5603e-02,\n", " 6.1393e-01, -3.2977e-02, 2.7468e-01, -5.7310e-01, 4.7398e-01,\n", " 3.3744e-01, 3.9739e-01, -3.0474e-02, 1.2378e-01, -3.6966e-02,\n", " -5.7119e-01, 4.0540e-01, 7.2925e-02, 6.0944e-01, 3.6532e-01,\n", " -5.7006e-01, 6.2813e-01, 1.8211e-01, -1.2571e-01, 2.1051e-01,\n", " 2.2644e-01, 2.3753e-01, 1.0566e-01, 3.3964e-01, -9.8686e-02,\n", " 7.1103e-02, -5.1788e-01, 8.2421e-01, 4.0273e-01, 5.9817e-01,\n", " -5.9287e-01, 5.6128e-02, -3.0473e-01, 1.4045e-01, 1.7209e-01,\n", " -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\n", " 2.0601e-01, 3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\n", " -1.6437e-01, 9.7025e-02, -2.7640e-01, -1.8737e-01, 2.3292e-01,\n", " -4.5736e-01, -5.6993e-01, 3.8426e-01, -5.8431e-01],\n", " [ 2.9292e-02, 4.2082e-01, 1.1496e-01, -1.3269e-01, -4.9844e-01,\n", " -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\n", " -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01, 3.1475e-02,\n", " -3.9173e-01, 1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\n", " 3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02, 3.3985e-01,\n", " 4.4148e-02, 7.0217e-02, -9.1169e-02, 2.0149e-01, -5.0179e-01,\n", " 4.1926e-01, -2.3867e-01, -2.1852e-01, 4.9277e-02, -4.5147e-02,\n", " -1.3929e-01, -2.5047e-01, 4.9927e-01, -3.6437e-01, -3.5151e-01,\n", " -1.4846e-01, 2.4364e-01, -2.1723e-01, -4.6918e-02, 1.4216e-01,\n", " -5.0783e-02, -2.6806e-01, 8.9650e-03, 3.0882e-01, -5.4537e-02,\n", " -1.0623e-01, 8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\n", " 3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\n", " 3.3971e-01, 8.3942e-02, -1.2739e-01, -6.4155e-01]],\n", "\n", " [[ 3.9462e-01, -2.2764e-01, -3.7951e-02, 4.0051e-01, -2.9822e-01,\n", " 1.9265e-01, 9.7957e-02, 3.4318e-01, 6.5615e-02, 1.4674e-01,\n", " 1.9097e-01, -1.9940e-01, 1.4437e-01, -2.2148e-01, 5.6047e-01,\n", " 5.2499e-01, 4.4121e-01, -2.5948e-01, 1.0898e-01, -2.9630e-01,\n", " -1.4722e-01, 2.0510e-01, 3.2749e-02, 5.3201e-01, 5.3504e-01,\n", " -5.3038e-01, 6.1319e-01, 1.6065e-01, -3.3821e-02, 1.9661e-01,\n", " 5.2853e-01, -2.7200e-01, 1.5528e-01, 2.8527e-01, -1.4127e-01,\n", " 1.4125e-02, -2.4507e-01, 5.8318e-01, 2.6271e-01, 6.1537e-01,\n", " 5.7424e-02, 1.5592e-01, -1.7715e-01, 1.8923e-01, 4.4712e-01,\n", " -3.3768e-01, -1.8343e-01, -5.5573e-02, 4.3081e-01, 8.3409e-02,\n", " 2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\n", " 4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01, 3.5492e-01,\n", " -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\n", " [ 5.8269e-02, 8.0529e-01, 3.1633e-01, 3.5130e-02, -4.0030e-01,\n", " -5.2046e-01, -5.7112e-01, 1.2411e-01, 5.1932e-01, 8.1681e-02,\n", " -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01, 2.6595e-01,\n", " 2.8538e-01, 5.4966e-01, -2.2023e-01, 6.2513e-01, -7.1846e-01,\n", " 1.5489e-01, -2.3305e-01, -2.8478e-01, 4.7244e-02, 6.0448e-01,\n", " -2.4189e-02, 1.3727e-01, 4.3836e-02, 1.9764e-01, -4.9993e-01,\n", " 6.4335e-01, -6.3273e-01, -1.7085e-01, 3.6792e-01, -1.1653e-02,\n", " 5.9266e-02, -1.4715e-01, 6.0236e-01, -5.3754e-01, -3.3864e-01,\n", " -1.6203e-01, 4.6025e-01, -1.2995e-01, 1.5817e-01, -1.0733e-01,\n", " -7.5994e-02, -1.4720e-01, 7.4298e-02, 6.0721e-01, 3.2473e-01,\n", " -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\n", " 2.0282e-01, -5.1651e-01, 1.3683e-03, -2.0047e-01, 7.6022e-01,\n", " -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\n", "\n", " [[ 2.4355e-01, 9.7544e-02, 4.9027e-02, 3.3419e-01, 1.2388e-01,\n", " 7.1731e-02, 1.8976e-01, 4.4490e-01, -2.9891e-01, 2.0516e-01,\n", " -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02, 5.4330e-02,\n", " 4.1832e-01, 3.2749e-01, 5.0725e-02, 5.7945e-03, -1.6877e-01,\n", " -4.3551e-02, 7.4475e-02, 5.0754e-01, 5.8456e-01, 3.5108e-01,\n", " -3.2765e-01, 6.2981e-01, -2.1042e-01, -1.5040e-02, 3.9792e-01,\n", " 3.3859e-01, -2.2759e-01, 4.8875e-03, 2.0304e-01, -1.8557e-01,\n", " 5.1139e-01, -6.3578e-02, 3.7445e-01, 2.5876e-01, 3.2321e-01,\n", " 3.3812e-01, 4.8470e-01, -3.5065e-02, 5.6784e-01, 6.2865e-01,\n", " -3.4431e-01, -3.1394e-01, 2.1078e-01, 5.3845e-01, 3.1855e-01,\n", " 4.3601e-01, -3.4167e-03, -4.5149e-02, 4.3369e-02, 4.9973e-02,\n", " 5.7321e-01, -6.1557e-02, 1.4944e-01, -1.7503e-02, 1.5900e-01,\n", " -1.2167e-01, -4.7770e-01, 4.0990e-02, -1.3854e-01],\n", " [-1.2090e-01, 6.5291e-01, 4.9012e-01, 6.3469e-01, -6.1991e-01,\n", " -4.5836e-01, -6.4770e-01, -8.5862e-01, 6.3087e-01, -1.7720e-02,\n", " 1.7558e-01, -8.4372e-01, -6.0052e-01, 3.6973e-01, 1.8317e-01,\n", " 7.5792e-01, 5.6800e-01, 6.3874e-01, 7.7846e-01, -7.3676e-01,\n", " -8.1896e-01, -3.2437e-01, -5.9558e-02, 1.6930e-01, 4.0612e-01,\n", " -9.0851e-01, 7.4943e-01, 7.0389e-02, -3.3322e-01, -3.4272e-01,\n", " 8.7254e-01, -3.7895e-01, 5.6617e-01, 2.2784e-01, -5.8411e-01,\n", " 2.4766e-01, -8.4705e-01, 7.5885e-01, 2.6971e-01, -2.0708e-01,\n", " -2.3187e-01, -6.6556e-01, -7.9039e-01, 5.7092e-01, -9.1081e-03,\n", " 3.3079e-02, -3.3478e-01, 2.8295e-01, 7.9911e-01, 8.7098e-01,\n", " -3.8057e-01, 5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\n", " 6.5749e-01, -8.2280e-01, 4.0088e-01, 9.4624e-01, 7.4583e-01,\n", " -1.8822e-01, -1.5356e-01, 9.0531e-01, -9.4046e-01]],\n", "\n", " [[ 1.4370e-01, 6.9390e-01, 3.4906e-01, 1.8600e-01, -1.0352e-01,\n", " -1.8402e-01, -4.7587e-01, 3.9898e-01, 4.0702e-01, 3.4950e-01,\n", " 5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02, 2.1085e-01,\n", " 5.8135e-01, 6.0812e-01, -4.3868e-02, 5.5309e-01, -5.7745e-01,\n", " 1.1744e-01, 2.9086e-02, 1.2145e-01, 5.4306e-01, 6.4010e-01,\n", " -2.5673e-01, 6.0993e-01, -7.3052e-03, 7.7005e-02, 2.6385e-01,\n", " 6.2501e-01, -6.7076e-01, -9.6880e-02, 3.9839e-01, -1.2475e-01,\n", " 3.5841e-01, -4.1073e-02, 5.3352e-01, -2.4644e-01, 7.5658e-02,\n", " 1.7233e-01, 5.7383e-01, -8.7162e-02, 4.8839e-01, 1.1819e-01,\n", " -1.4091e-01, -1.5005e-01, 2.0554e-01, 7.3376e-01, 5.7186e-01,\n", " 2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\n", " 4.2501e-01, -4.6323e-01, 1.3973e-01, -2.1567e-01, 8.0603e-01,\n", " -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\n", " [-6.1965e-01, 9.8332e-01, 5.0493e-01, 2.8111e-01, -5.3563e-01,\n", " -5.9760e-01, -9.7713e-01, -9.0046e-01, 9.2203e-01, 3.4881e-04,\n", " 3.0716e-01, -9.3601e-01, -7.7404e-01, 9.6783e-01, 1.1720e-01,\n", " 7.5584e-01, 5.2906e-01, 9.7504e-01, 9.7287e-01, -7.2797e-01,\n", " -9.8892e-01, -3.6624e-01, -1.9580e-02, 3.4981e-01, 3.2603e-01,\n", " -9.0325e-01, 5.5451e-01, 1.3807e-01, -2.0965e-02, -4.0570e-02,\n", " 9.6092e-01, -5.8279e-01, 4.7798e-01, -4.6821e-01, 2.7388e-03,\n", " 7.5130e-01, -7.7676e-01, 8.5018e-01, 5.0395e-01, -2.3900e-01,\n", " 8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\n", " 4.2121e-02, -3.8591e-01, -4.9300e-01, 8.2269e-01, 9.6996e-01,\n", " -8.6781e-01, 8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\n", " 6.9462e-01, -9.9058e-01, 7.5560e-01, 9.5516e-01, 8.5390e-01,\n", " -9.3777e-01, 7.3466e-01, 9.5822e-01, -9.6689e-01]],\n", "\n", " [[-7.2412e-02, 5.5587e-01, 5.2648e-01, 6.8613e-01, -5.2126e-01,\n", " -2.6911e-01, -6.0472e-01, -8.5598e-01, 5.5327e-01, 1.5888e-01,\n", " 1.6669e-01, -7.6833e-01, -4.9673e-01, 4.0409e-01, 1.4775e-01,\n", " 8.2823e-01, 6.1798e-01, 6.2634e-01, 7.0638e-01, -6.3201e-01,\n", " -8.1080e-01, -1.9344e-01, 2.3377e-01, 5.5736e-01, 4.0636e-01,\n", " -9.2914e-01, 8.4626e-01, 4.3793e-02, -4.0619e-01, 1.3983e-01,\n", " 8.7200e-01, -3.6435e-01, 5.4387e-01, 1.9864e-01, -6.3067e-01,\n", " 3.2501e-01, -8.2716e-01, 7.3380e-01, 3.2731e-01, 1.1471e-01,\n", " 4.2973e-02, -5.7053e-01, -7.6254e-01, 6.5678e-01, 1.9348e-01,\n", " 9.6505e-03, -3.7881e-01, 3.7071e-01, 8.6609e-01, 9.2239e-01,\n", " -2.5739e-01, 5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\n", " 7.2268e-01, -7.9991e-01, 4.7691e-01, 9.3956e-01, 7.7451e-01,\n", " -3.3390e-01, -2.0639e-01, 9.0730e-01, -9.1102e-01],\n", " [-8.2056e-01, 9.9517e-01, 5.2822e-01, -2.9103e-02, -4.4076e-01,\n", " -5.0182e-01, -9.9669e-01, -9.2137e-01, 9.6995e-01, 9.8441e-03,\n", " 3.5683e-01, -9.7109e-01, -8.6985e-01, 9.9538e-01, 6.6071e-02,\n", " 7.5521e-01, 5.4956e-01, 9.8520e-01, 9.9528e-01, -7.4652e-01,\n", " -9.9837e-01, -4.0200e-01, 1.3232e-02, 4.5854e-01, 2.7352e-01,\n", " -8.9861e-01, 4.5760e-01, 1.9683e-01, 9.8737e-02, 5.9758e-02,\n", " 9.7392e-01, -7.3979e-01, 3.9800e-01, -6.4981e-01, 3.9077e-01,\n", " 8.7535e-01, -7.1771e-01, 9.1071e-01, 6.2887e-01, -2.6265e-01,\n", " 9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\n", " 5.0785e-02, -4.2154e-01, -7.8124e-01, 8.4035e-01, 9.9191e-01,\n", " -9.3793e-01, 9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\n", " 7.2309e-01, -9.9203e-01, 8.8789e-01, 9.6214e-01, 9.1157e-01,\n", " -9.9297e-01, 8.7711e-01, 9.7576e-01, -9.8162e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([10, 37])\n", "dec_state: tensor([[[ 0.3433, 0.8954, -0.3030, 0.9019, 0.4173, 0.3451, -0.3994,\n", " 0.1875, -0.5598, -0.5549, -0.8549, -0.6657, -0.6926, 0.6528,\n", " -0.0358, -0.4273, 0.5484, 0.1493, 0.2043, 0.3952, 0.4672,\n", " -0.6498, 0.4227, 0.9514, 0.5742, -0.8121, 0.7690, -0.4353,\n", " -0.9444, -0.2032, -0.8103, 0.6320, -0.2872, 0.6642, -0.9037,\n", " 0.1142, 0.3284, -0.0162, -0.7696, 0.4079, -0.7704, 0.5194,\n", " -0.2941, 0.9458, -0.6177, 0.6220, 0.0854, 0.2091, -0.1943,\n", " 0.8021, 0.5769, 0.4077, -0.6804, -0.4940, -0.9389, 0.3685,\n", " 0.2158, 0.8728, -0.2725, -0.4201, -0.9082, 0.9383, -0.2267,\n", " 0.5393],\n", " [ 0.1324, 0.9620, -0.8676, 0.8176, 0.6529, 0.5220, -0.8891,\n", " -0.3921, 0.2496, -0.8212, 0.1635, -0.9842, -0.4843, 0.9775,\n", " -0.1468, -0.1055, 0.5927, -0.1739, -0.8540, 0.6892, 0.8912,\n", " -0.7970, 0.1485, 0.8176, 0.4366, -0.9416, -0.6095, -0.4789,\n", " -0.5344, -0.8225, -0.9548, 0.0068, -0.6093, 0.5889, -0.7728,\n", " -0.1830, 0.8481, 0.2855, -0.5969, 0.4605, -0.8975, 0.7737,\n", " 0.7115, 0.8576, -0.9221, 0.5046, -0.7604, 0.1902, -0.2841,\n", " 0.9726, 0.5623, 0.9471, -0.3761, -0.4791, -0.5147, -0.1659,\n", " 0.7009, 0.7900, -0.3937, -0.1217, -0.9941, 0.9232, 0.3653,\n", " -0.1000]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-2.1643e-01, 4.0703e-01, 3.2634e-01, -5.0862e-01, -5.9415e-01,\n", " 5.1934e-01, 2.3474e-02, 5.2337e-01, -3.0883e-01, -1.4427e-01,\n", " 4.1089e-01, 2.8636e-01, 4.1313e-01, -2.1515e-01, 1.8673e-01,\n", " -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\n", " 6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\n", " -9.0624e-02, 8.4112e-01, 4.1783e-01, 4.2457e-01, 4.4339e-01,\n", " -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\n", " -1.0899e-01, 2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\n", " -1.1454e-01, -1.9440e-01, 1.8098e-01, 3.7718e-01, 4.4388e-01,\n", " -1.9044e-01, 1.2831e-01, 9.2631e-02, -5.9981e-01, -1.7597e-01,\n", " 2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02, 1.3814e-01,\n", " 4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\n", " 4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\n", " [-2.7921e-01, 5.5246e-01, -2.3130e-01, 6.0324e-02, -1.0443e-01,\n", " -9.6127e-02, -4.8838e-01, 1.7342e-01, -1.6244e-03, -1.5950e-01,\n", " -2.0051e-01, -2.3869e-01, -6.2903e-01, 3.7441e-01, 1.1054e-01,\n", " -4.1060e-01, 4.7134e-01, 3.1578e-01, 2.8223e-01, -7.0127e-01,\n", " -6.8227e-01, -1.6815e-01, 1.2664e-01, -3.3500e-02, 2.8114e-01,\n", " -3.8212e-02, 3.1934e-01, 3.1801e-01, -1.0009e-01, -1.3935e-01,\n", " 3.5000e-01, -1.1332e-01, 1.6779e-01, -4.4952e-01, -2.7263e-01,\n", " -2.6393e-02, -2.0009e-01, 2.5008e-01, -5.6962e-02, -3.3716e-01,\n", " 1.2111e-01, 7.2555e-01, -1.6554e-01, 3.0319e-02, -7.2813e-01,\n", " -5.0258e-01, 4.6271e-01, -2.0600e-01, 7.9482e-02, 4.5408e-01,\n", " 1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\n", " 3.1461e-01, -5.0918e-01, 1.8147e-01, 6.9853e-02, -1.7200e-01,\n", " -1.3063e-01, 1.5399e-01, 3.4001e-01, -5.4762e-01]],\n", "\n", " [[ 2.9094e-01, 2.9604e-01, -6.4331e-01, 8.5796e-01, -5.0427e-01,\n", " -3.9154e-01, 1.1564e-01, 7.4492e-01, 2.2174e-01, -3.8437e-01,\n", " 3.4773e-01, 2.4916e-02, 3.9094e-01, -6.5730e-01, 5.5876e-01,\n", " 4.9713e-01, 4.2008e-01, 1.7297e-01, 2.0467e-01, -4.0904e-01,\n", " -3.2362e-01, 1.3526e-01, 5.7380e-02, 8.0937e-01, 4.6005e-01,\n", " -4.4897e-01, 8.0193e-01, 2.0982e-01, 5.7502e-02, 1.6175e-01,\n", " 1.6195e-01, 6.5908e-02, 8.0127e-01, 2.1267e-01, -3.2248e-01,\n", " 6.1880e-02, -6.0822e-01, 9.2528e-01, 1.5635e-01, 6.5912e-01,\n", " -2.5814e-01, 6.9864e-02, -6.9100e-02, -2.0400e-01, 4.4236e-01,\n", " -3.8749e-01, 2.2603e-01, -7.3010e-01, -6.7803e-02, 6.0987e-01,\n", " -2.3944e-01, -2.2402e-01, 3.4141e-02, -7.5317e-01, -1.9034e-01,\n", " 1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01, 4.8121e-01,\n", " -6.4265e-01, -7.2166e-01, 6.8618e-02, -1.7256e-01],\n", " [-4.2395e-01, 4.3782e-01, -3.7864e-01, 4.6429e-01, -1.9293e-01,\n", " -1.8951e-01, -2.7415e-01, 1.4951e-01, -3.3036e-01, -6.2952e-02,\n", " -2.8961e-01, 2.6387e-01, -6.7616e-01, 8.8255e-03, -1.3174e-02,\n", " -5.0924e-01, -5.3128e-02, -1.0846e-01, 4.2621e-01, -6.4251e-01,\n", " -1.9010e-01, -8.9229e-02, -1.8645e-02, 1.4834e-01, 4.4270e-01,\n", " -1.6318e-01, 5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\n", " 4.5368e-01, -2.8125e-01, 2.3815e-01, -3.6399e-01, -2.3326e-01,\n", " -1.2933e-01, -3.3350e-01, 4.6229e-02, -1.8867e-01, -8.2094e-02,\n", " -2.6307e-01, 7.5736e-01, -2.3453e-03, 1.3690e-01, -1.8830e-01,\n", " -3.6770e-01, 2.2573e-03, -2.6534e-01, 1.3679e-01, 5.0285e-01,\n", " -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\n", " 6.7031e-02, -6.5419e-02, 1.1711e-01, 3.5437e-02, -3.1980e-01,\n", " 2.7608e-01, 4.2805e-01, 1.0529e-01, -6.9090e-01]],\n", "\n", " [[ 2.6467e-01, -2.1472e-02, -2.3705e-01, 8.1433e-01, 1.1691e-01,\n", " -5.2326e-01, 2.7152e-01, 7.2288e-01, -2.7715e-01, -5.5603e-02,\n", " 6.1393e-01, -3.2977e-02, 2.7468e-01, -5.7310e-01, 4.7398e-01,\n", " 3.3744e-01, 3.9739e-01, -3.0474e-02, 1.2378e-01, -3.6966e-02,\n", " -5.7119e-01, 4.0540e-01, 7.2925e-02, 6.0944e-01, 3.6532e-01,\n", " -5.7006e-01, 6.2813e-01, 1.8211e-01, -1.2571e-01, 2.1051e-01,\n", " 2.2644e-01, 2.3753e-01, 1.0566e-01, 3.3964e-01, -9.8686e-02,\n", " 7.1103e-02, -5.1788e-01, 8.2421e-01, 4.0273e-01, 5.9817e-01,\n", " -5.9287e-01, 5.6128e-02, -3.0473e-01, 1.4045e-01, 1.7209e-01,\n", " -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\n", " 2.0601e-01, 3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\n", " -1.6437e-01, 9.7025e-02, -2.7640e-01, -1.8737e-01, 2.3292e-01,\n", " -4.5736e-01, -5.6993e-01, 3.8426e-01, -5.8431e-01],\n", " [ 2.9292e-02, 4.2082e-01, 1.1496e-01, -1.3269e-01, -4.9844e-01,\n", " -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\n", " -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01, 3.1475e-02,\n", " -3.9173e-01, 1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\n", " 3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02, 3.3985e-01,\n", " 4.4148e-02, 7.0217e-02, -9.1169e-02, 2.0149e-01, -5.0179e-01,\n", " 4.1926e-01, -2.3867e-01, -2.1852e-01, 4.9277e-02, -4.5147e-02,\n", " -1.3929e-01, -2.5047e-01, 4.9927e-01, -3.6437e-01, -3.5151e-01,\n", " -1.4846e-01, 2.4364e-01, -2.1723e-01, -4.6918e-02, 1.4216e-01,\n", " -5.0783e-02, -2.6806e-01, 8.9650e-03, 3.0882e-01, -5.4537e-02,\n", " -1.0623e-01, 8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\n", " 3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\n", " 3.3971e-01, 8.3942e-02, -1.2739e-01, -6.4155e-01]],\n", "\n", " [[ 3.9462e-01, -2.2764e-01, -3.7951e-02, 4.0051e-01, -2.9822e-01,\n", " 1.9265e-01, 9.7957e-02, 3.4318e-01, 6.5615e-02, 1.4674e-01,\n", " 1.9097e-01, -1.9940e-01, 1.4437e-01, -2.2148e-01, 5.6047e-01,\n", " 5.2499e-01, 4.4121e-01, -2.5948e-01, 1.0898e-01, -2.9630e-01,\n", " -1.4722e-01, 2.0510e-01, 3.2749e-02, 5.3201e-01, 5.3504e-01,\n", " -5.3038e-01, 6.1319e-01, 1.6065e-01, -3.3821e-02, 1.9661e-01,\n", " 5.2853e-01, -2.7200e-01, 1.5528e-01, 2.8527e-01, -1.4127e-01,\n", " 1.4125e-02, -2.4507e-01, 5.8318e-01, 2.6271e-01, 6.1537e-01,\n", " 5.7424e-02, 1.5592e-01, -1.7715e-01, 1.8923e-01, 4.4712e-01,\n", " -3.3768e-01, -1.8343e-01, -5.5573e-02, 4.3081e-01, 8.3409e-02,\n", " 2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\n", " 4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01, 3.5492e-01,\n", " -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\n", " [ 5.8269e-02, 8.0529e-01, 3.1633e-01, 3.5130e-02, -4.0030e-01,\n", " -5.2046e-01, -5.7112e-01, 1.2411e-01, 5.1932e-01, 8.1681e-02,\n", " -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01, 2.6595e-01,\n", " 2.8538e-01, 5.4966e-01, -2.2023e-01, 6.2513e-01, -7.1846e-01,\n", " 1.5489e-01, -2.3305e-01, -2.8478e-01, 4.7244e-02, 6.0448e-01,\n", " -2.4189e-02, 1.3727e-01, 4.3836e-02, 1.9764e-01, -4.9993e-01,\n", " 6.4335e-01, -6.3273e-01, -1.7085e-01, 3.6792e-01, -1.1653e-02,\n", " 5.9266e-02, -1.4715e-01, 6.0236e-01, -5.3754e-01, -3.3864e-01,\n", " -1.6203e-01, 4.6025e-01, -1.2995e-01, 1.5817e-01, -1.0733e-01,\n", " -7.5994e-02, -1.4720e-01, 7.4298e-02, 6.0721e-01, 3.2473e-01,\n", " -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\n", " 2.0282e-01, -5.1651e-01, 1.3683e-03, -2.0047e-01, 7.6022e-01,\n", " -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\n", "\n", " [[ 2.4355e-01, 9.7544e-02, 4.9027e-02, 3.3419e-01, 1.2388e-01,\n", " 7.1731e-02, 1.8976e-01, 4.4490e-01, -2.9891e-01, 2.0516e-01,\n", " -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02, 5.4330e-02,\n", " 4.1832e-01, 3.2749e-01, 5.0725e-02, 5.7945e-03, -1.6877e-01,\n", " -4.3551e-02, 7.4475e-02, 5.0754e-01, 5.8456e-01, 3.5108e-01,\n", " -3.2765e-01, 6.2981e-01, -2.1042e-01, -1.5040e-02, 3.9792e-01,\n", " 3.3859e-01, -2.2759e-01, 4.8875e-03, 2.0304e-01, -1.8557e-01,\n", " 5.1139e-01, -6.3578e-02, 3.7445e-01, 2.5876e-01, 3.2321e-01,\n", " 3.3812e-01, 4.8470e-01, -3.5065e-02, 5.6784e-01, 6.2865e-01,\n", " -3.4431e-01, -3.1394e-01, 2.1078e-01, 5.3845e-01, 3.1855e-01,\n", " 4.3601e-01, -3.4167e-03, -4.5149e-02, 4.3369e-02, 4.9973e-02,\n", " 5.7321e-01, -6.1557e-02, 1.4944e-01, -1.7503e-02, 1.5900e-01,\n", " -1.2167e-01, -4.7770e-01, 4.0990e-02, -1.3854e-01],\n", " [-1.2090e-01, 6.5291e-01, 4.9012e-01, 6.3469e-01, -6.1991e-01,\n", " -4.5836e-01, -6.4770e-01, -8.5862e-01, 6.3087e-01, -1.7720e-02,\n", " 1.7558e-01, -8.4372e-01, -6.0052e-01, 3.6973e-01, 1.8317e-01,\n", " 7.5792e-01, 5.6800e-01, 6.3874e-01, 7.7846e-01, -7.3676e-01,\n", " -8.1896e-01, -3.2437e-01, -5.9558e-02, 1.6930e-01, 4.0612e-01,\n", " -9.0851e-01, 7.4943e-01, 7.0389e-02, -3.3322e-01, -3.4272e-01,\n", " 8.7254e-01, -3.7895e-01, 5.6617e-01, 2.2784e-01, -5.8411e-01,\n", " 2.4766e-01, -8.4705e-01, 7.5885e-01, 2.6971e-01, -2.0708e-01,\n", " -2.3187e-01, -6.6556e-01, -7.9039e-01, 5.7092e-01, -9.1081e-03,\n", " 3.3079e-02, -3.3478e-01, 2.8295e-01, 7.9911e-01, 8.7098e-01,\n", " -3.8057e-01, 5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\n", " 6.5749e-01, -8.2280e-01, 4.0088e-01, 9.4624e-01, 7.4583e-01,\n", " -1.8822e-01, -1.5356e-01, 9.0531e-01, -9.4046e-01]],\n", "\n", " [[ 1.4370e-01, 6.9390e-01, 3.4906e-01, 1.8600e-01, -1.0352e-01,\n", " -1.8402e-01, -4.7587e-01, 3.9898e-01, 4.0702e-01, 3.4950e-01,\n", " 5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02, 2.1085e-01,\n", " 5.8135e-01, 6.0812e-01, -4.3868e-02, 5.5309e-01, -5.7745e-01,\n", " 1.1744e-01, 2.9086e-02, 1.2145e-01, 5.4306e-01, 6.4010e-01,\n", " -2.5673e-01, 6.0993e-01, -7.3052e-03, 7.7005e-02, 2.6385e-01,\n", " 6.2501e-01, -6.7076e-01, -9.6880e-02, 3.9839e-01, -1.2475e-01,\n", " 3.5841e-01, -4.1073e-02, 5.3352e-01, -2.4644e-01, 7.5658e-02,\n", " 1.7233e-01, 5.7383e-01, -8.7162e-02, 4.8839e-01, 1.1819e-01,\n", " -1.4091e-01, -1.5005e-01, 2.0554e-01, 7.3376e-01, 5.7186e-01,\n", " 2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\n", " 4.2501e-01, -4.6323e-01, 1.3973e-01, -2.1567e-01, 8.0603e-01,\n", " -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\n", " [-6.1965e-01, 9.8332e-01, 5.0493e-01, 2.8111e-01, -5.3563e-01,\n", " -5.9760e-01, -9.7713e-01, -9.0046e-01, 9.2203e-01, 3.4881e-04,\n", " 3.0716e-01, -9.3601e-01, -7.7404e-01, 9.6783e-01, 1.1720e-01,\n", " 7.5584e-01, 5.2906e-01, 9.7504e-01, 9.7287e-01, -7.2797e-01,\n", " -9.8892e-01, -3.6624e-01, -1.9580e-02, 3.4981e-01, 3.2603e-01,\n", " -9.0325e-01, 5.5451e-01, 1.3807e-01, -2.0965e-02, -4.0570e-02,\n", " 9.6092e-01, -5.8279e-01, 4.7798e-01, -4.6821e-01, 2.7388e-03,\n", " 7.5130e-01, -7.7676e-01, 8.5018e-01, 5.0395e-01, -2.3900e-01,\n", " 8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\n", " 4.2121e-02, -3.8591e-01, -4.9300e-01, 8.2269e-01, 9.6996e-01,\n", " -8.6781e-01, 8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\n", " 6.9462e-01, -9.9058e-01, 7.5560e-01, 9.5516e-01, 8.5390e-01,\n", " -9.3777e-01, 7.3466e-01, 9.5822e-01, -9.6689e-01]],\n", "\n", " [[-7.2412e-02, 5.5587e-01, 5.2648e-01, 6.8613e-01, -5.2126e-01,\n", " -2.6911e-01, -6.0472e-01, -8.5598e-01, 5.5327e-01, 1.5888e-01,\n", " 1.6669e-01, -7.6833e-01, -4.9673e-01, 4.0409e-01, 1.4775e-01,\n", " 8.2823e-01, 6.1798e-01, 6.2634e-01, 7.0638e-01, -6.3201e-01,\n", " -8.1080e-01, -1.9344e-01, 2.3377e-01, 5.5736e-01, 4.0636e-01,\n", " -9.2914e-01, 8.4626e-01, 4.3793e-02, -4.0619e-01, 1.3983e-01,\n", " 8.7200e-01, -3.6435e-01, 5.4387e-01, 1.9864e-01, -6.3067e-01,\n", " 3.2501e-01, -8.2716e-01, 7.3380e-01, 3.2731e-01, 1.1471e-01,\n", " 4.2973e-02, -5.7053e-01, -7.6254e-01, 6.5678e-01, 1.9348e-01,\n", " 9.6505e-03, -3.7881e-01, 3.7071e-01, 8.6609e-01, 9.2239e-01,\n", " -2.5739e-01, 5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\n", " 7.2268e-01, -7.9991e-01, 4.7691e-01, 9.3956e-01, 7.7451e-01,\n", " -3.3390e-01, -2.0639e-01, 9.0730e-01, -9.1102e-01],\n", " [-8.2056e-01, 9.9517e-01, 5.2822e-01, -2.9103e-02, -4.4076e-01,\n", " -5.0182e-01, -9.9669e-01, -9.2137e-01, 9.6995e-01, 9.8441e-03,\n", " 3.5683e-01, -9.7109e-01, -8.6985e-01, 9.9538e-01, 6.6071e-02,\n", " 7.5521e-01, 5.4956e-01, 9.8520e-01, 9.9528e-01, -7.4652e-01,\n", " -9.9837e-01, -4.0200e-01, 1.3232e-02, 4.5854e-01, 2.7352e-01,\n", " -8.9861e-01, 4.5760e-01, 1.9683e-01, 9.8737e-02, 5.9758e-02,\n", " 9.7392e-01, -7.3979e-01, 3.9800e-01, -6.4981e-01, 3.9077e-01,\n", " 8.7535e-01, -7.1771e-01, 9.1071e-01, 6.2887e-01, -2.6265e-01,\n", " 9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\n", " 5.0785e-02, -4.2154e-01, -7.8124e-01, 8.4035e-01, 9.9191e-01,\n", " -9.3793e-01, 9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\n", " 7.2309e-01, -9.9203e-01, 8.8789e-01, 9.6214e-01, 9.1157e-01,\n", " -9.9297e-01, 8.7711e-01, 9.7576e-01, -9.8162e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([26, 3])\n", "dec_state: tensor([[[ 2.5443e-01, 9.3441e-01, -1.4811e-01, 8.8686e-01, 3.9753e-01,\n", " 4.6698e-01, -4.8882e-01, 2.3902e-02, -9.2307e-02, -9.1608e-02,\n", " 3.8625e-01, -6.3666e-01, -3.8628e-01, 5.3947e-01, -5.7806e-01,\n", " -8.1972e-01, -2.0817e-01, -1.2631e-02, -1.4117e-01, 6.0960e-01,\n", " 6.7891e-01, -5.9534e-01, 5.9256e-01, 7.0495e-01, 5.8889e-01,\n", " -6.8780e-01, 3.5270e-01, -1.4734e-01, -9.8256e-01, -2.2464e-01,\n", " -7.0441e-01, 8.7418e-01, 8.2788e-02, 6.9129e-01, -6.8910e-01,\n", " -8.2131e-01, 6.7698e-01, -1.3681e-01, -8.2368e-01, 4.8132e-01,\n", " -7.6487e-01, 5.5576e-01, -8.8099e-02, 7.7983e-02, -6.1413e-01,\n", " 7.4257e-01, -2.0542e-01, 3.5646e-02, -4.4742e-03, 8.5738e-01,\n", " 5.4925e-01, 4.1615e-01, -6.6714e-01, -1.3500e-01, -9.5288e-01,\n", " 1.1565e-01, 1.2564e-01, -5.4328e-02, 3.9482e-04, 1.1906e-01,\n", " -9.1687e-01, 8.5418e-01, 2.6917e-01, -4.4784e-01],\n", " [ 9.4176e-01, 9.9342e-01, -9.7945e-01, 8.2937e-01, 6.5405e-01,\n", " 6.3548e-01, -9.1585e-01, -7.1653e-01, -4.3733e-02, -9.8246e-01,\n", " -9.0997e-01, -9.8530e-01, 7.5978e-01, 9.9149e-01, -9.2831e-01,\n", " 5.5637e-01, 9.2717e-01, -6.1696e-01, -9.2115e-01, 7.9475e-01,\n", " 9.0632e-01, -8.2382e-01, -5.5702e-01, 8.2265e-01, 9.6157e-01,\n", " -9.5956e-01, -5.3701e-01, -9.4306e-01, 6.2341e-01, -9.2066e-01,\n", " -9.6659e-01, 1.9108e-01, 7.5630e-01, 8.0602e-01, -7.2513e-01,\n", " -7.8743e-01, 9.2776e-01, -7.7533e-01, 7.3539e-01, 8.1868e-01,\n", " -9.7479e-01, 9.3603e-01, 8.2834e-01, -7.0802e-01, -9.5417e-01,\n", " 9.5953e-01, -8.1502e-01, 8.3311e-01, -3.2695e-01, 9.4064e-01,\n", " -6.5685e-01, 9.9154e-01, 1.7855e-02, -7.0035e-01, 8.9563e-01,\n", " -3.0076e-01, 9.4889e-01, 7.9818e-01, -7.0864e-01, -4.6977e-01,\n", " -9.9756e-01, 9.6643e-01, 3.4380e-01, -8.8210e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-2.1643e-01, 4.0703e-01, 3.2634e-01, -5.0862e-01, -5.9415e-01,\n", " 5.1934e-01, 2.3474e-02, 5.2337e-01, -3.0883e-01, -1.4427e-01,\n", " 4.1089e-01, 2.8636e-01, 4.1313e-01, -2.1515e-01, 1.8673e-01,\n", " -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\n", " 6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\n", " -9.0624e-02, 8.4112e-01, 4.1783e-01, 4.2457e-01, 4.4339e-01,\n", " -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\n", " -1.0899e-01, 2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\n", " -1.1454e-01, -1.9440e-01, 1.8098e-01, 3.7718e-01, 4.4388e-01,\n", " -1.9044e-01, 1.2831e-01, 9.2631e-02, -5.9981e-01, -1.7597e-01,\n", " 2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02, 1.3814e-01,\n", " 4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\n", " 4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\n", " [-2.7921e-01, 5.5246e-01, -2.3130e-01, 6.0324e-02, -1.0443e-01,\n", " -9.6127e-02, -4.8838e-01, 1.7342e-01, -1.6244e-03, -1.5950e-01,\n", " -2.0051e-01, -2.3869e-01, -6.2903e-01, 3.7441e-01, 1.1054e-01,\n", " -4.1060e-01, 4.7134e-01, 3.1578e-01, 2.8223e-01, -7.0127e-01,\n", " -6.8227e-01, -1.6815e-01, 1.2664e-01, -3.3500e-02, 2.8114e-01,\n", " -3.8212e-02, 3.1934e-01, 3.1801e-01, -1.0009e-01, -1.3935e-01,\n", " 3.5000e-01, -1.1332e-01, 1.6779e-01, -4.4952e-01, -2.7263e-01,\n", " -2.6393e-02, -2.0009e-01, 2.5008e-01, -5.6962e-02, -3.3716e-01,\n", " 1.2111e-01, 7.2555e-01, -1.6554e-01, 3.0319e-02, -7.2813e-01,\n", " -5.0258e-01, 4.6271e-01, -2.0600e-01, 7.9482e-02, 4.5408e-01,\n", " 1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\n", " 3.1461e-01, -5.0918e-01, 1.8147e-01, 6.9853e-02, -1.7200e-01,\n", " -1.3063e-01, 1.5399e-01, 3.4001e-01, -5.4762e-01]],\n", "\n", " [[ 2.9094e-01, 2.9604e-01, -6.4331e-01, 8.5796e-01, -5.0427e-01,\n", " -3.9154e-01, 1.1564e-01, 7.4492e-01, 2.2174e-01, -3.8437e-01,\n", " 3.4773e-01, 2.4916e-02, 3.9094e-01, -6.5730e-01, 5.5876e-01,\n", " 4.9713e-01, 4.2008e-01, 1.7297e-01, 2.0467e-01, -4.0904e-01,\n", " -3.2362e-01, 1.3526e-01, 5.7380e-02, 8.0937e-01, 4.6005e-01,\n", " -4.4897e-01, 8.0193e-01, 2.0982e-01, 5.7502e-02, 1.6175e-01,\n", " 1.6195e-01, 6.5908e-02, 8.0127e-01, 2.1267e-01, -3.2248e-01,\n", " 6.1880e-02, -6.0822e-01, 9.2528e-01, 1.5635e-01, 6.5912e-01,\n", " -2.5814e-01, 6.9864e-02, -6.9100e-02, -2.0400e-01, 4.4236e-01,\n", " -3.8749e-01, 2.2603e-01, -7.3010e-01, -6.7803e-02, 6.0987e-01,\n", " -2.3944e-01, -2.2402e-01, 3.4141e-02, -7.5317e-01, -1.9034e-01,\n", " 1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01, 4.8121e-01,\n", " -6.4265e-01, -7.2166e-01, 6.8618e-02, -1.7256e-01],\n", " [-4.2395e-01, 4.3782e-01, -3.7864e-01, 4.6429e-01, -1.9293e-01,\n", " -1.8951e-01, -2.7415e-01, 1.4951e-01, -3.3036e-01, -6.2952e-02,\n", " -2.8961e-01, 2.6387e-01, -6.7616e-01, 8.8255e-03, -1.3174e-02,\n", " -5.0924e-01, -5.3128e-02, -1.0846e-01, 4.2621e-01, -6.4251e-01,\n", " -1.9010e-01, -8.9229e-02, -1.8645e-02, 1.4834e-01, 4.4270e-01,\n", " -1.6318e-01, 5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\n", " 4.5368e-01, -2.8125e-01, 2.3815e-01, -3.6399e-01, -2.3326e-01,\n", " -1.2933e-01, -3.3350e-01, 4.6229e-02, -1.8867e-01, -8.2094e-02,\n", " -2.6307e-01, 7.5736e-01, -2.3453e-03, 1.3690e-01, -1.8830e-01,\n", " -3.6770e-01, 2.2573e-03, -2.6534e-01, 1.3679e-01, 5.0285e-01,\n", " -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\n", " 6.7031e-02, -6.5419e-02, 1.1711e-01, 3.5437e-02, -3.1980e-01,\n", " 2.7608e-01, 4.2805e-01, 1.0529e-01, -6.9090e-01]],\n", "\n", " [[ 2.6467e-01, -2.1472e-02, -2.3705e-01, 8.1433e-01, 1.1691e-01,\n", " -5.2326e-01, 2.7152e-01, 7.2288e-01, -2.7715e-01, -5.5603e-02,\n", " 6.1393e-01, -3.2977e-02, 2.7468e-01, -5.7310e-01, 4.7398e-01,\n", " 3.3744e-01, 3.9739e-01, -3.0474e-02, 1.2378e-01, -3.6966e-02,\n", " -5.7119e-01, 4.0540e-01, 7.2925e-02, 6.0944e-01, 3.6532e-01,\n", " -5.7006e-01, 6.2813e-01, 1.8211e-01, -1.2571e-01, 2.1051e-01,\n", " 2.2644e-01, 2.3753e-01, 1.0566e-01, 3.3964e-01, -9.8686e-02,\n", " 7.1103e-02, -5.1788e-01, 8.2421e-01, 4.0273e-01, 5.9817e-01,\n", " -5.9287e-01, 5.6128e-02, -3.0473e-01, 1.4045e-01, 1.7209e-01,\n", " -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\n", " 2.0601e-01, 3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\n", " -1.6437e-01, 9.7025e-02, -2.7640e-01, -1.8737e-01, 2.3292e-01,\n", " -4.5736e-01, -5.6993e-01, 3.8426e-01, -5.8431e-01],\n", " [ 2.9292e-02, 4.2082e-01, 1.1496e-01, -1.3269e-01, -4.9844e-01,\n", " -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\n", " -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01, 3.1475e-02,\n", " -3.9173e-01, 1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\n", " 3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02, 3.3985e-01,\n", " 4.4148e-02, 7.0217e-02, -9.1169e-02, 2.0149e-01, -5.0179e-01,\n", " 4.1926e-01, -2.3867e-01, -2.1852e-01, 4.9277e-02, -4.5147e-02,\n", " -1.3929e-01, -2.5047e-01, 4.9927e-01, -3.6437e-01, -3.5151e-01,\n", " -1.4846e-01, 2.4364e-01, -2.1723e-01, -4.6918e-02, 1.4216e-01,\n", " -5.0783e-02, -2.6806e-01, 8.9650e-03, 3.0882e-01, -5.4537e-02,\n", " -1.0623e-01, 8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\n", " 3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\n", " 3.3971e-01, 8.3942e-02, -1.2739e-01, -6.4155e-01]],\n", "\n", " [[ 3.9462e-01, -2.2764e-01, -3.7951e-02, 4.0051e-01, -2.9822e-01,\n", " 1.9265e-01, 9.7957e-02, 3.4318e-01, 6.5615e-02, 1.4674e-01,\n", " 1.9097e-01, -1.9940e-01, 1.4437e-01, -2.2148e-01, 5.6047e-01,\n", " 5.2499e-01, 4.4121e-01, -2.5948e-01, 1.0898e-01, -2.9630e-01,\n", " -1.4722e-01, 2.0510e-01, 3.2749e-02, 5.3201e-01, 5.3504e-01,\n", " -5.3038e-01, 6.1319e-01, 1.6065e-01, -3.3821e-02, 1.9661e-01,\n", " 5.2853e-01, -2.7200e-01, 1.5528e-01, 2.8527e-01, -1.4127e-01,\n", " 1.4125e-02, -2.4507e-01, 5.8318e-01, 2.6271e-01, 6.1537e-01,\n", " 5.7424e-02, 1.5592e-01, -1.7715e-01, 1.8923e-01, 4.4712e-01,\n", " -3.3768e-01, -1.8343e-01, -5.5573e-02, 4.3081e-01, 8.3409e-02,\n", " 2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\n", " 4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01, 3.5492e-01,\n", " -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\n", " [ 5.8269e-02, 8.0529e-01, 3.1633e-01, 3.5130e-02, -4.0030e-01,\n", " -5.2046e-01, -5.7112e-01, 1.2411e-01, 5.1932e-01, 8.1681e-02,\n", " -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01, 2.6595e-01,\n", " 2.8538e-01, 5.4966e-01, -2.2023e-01, 6.2513e-01, -7.1846e-01,\n", " 1.5489e-01, -2.3305e-01, -2.8478e-01, 4.7244e-02, 6.0448e-01,\n", " -2.4189e-02, 1.3727e-01, 4.3836e-02, 1.9764e-01, -4.9993e-01,\n", " 6.4335e-01, -6.3273e-01, -1.7085e-01, 3.6792e-01, -1.1653e-02,\n", " 5.9266e-02, -1.4715e-01, 6.0236e-01, -5.3754e-01, -3.3864e-01,\n", " -1.6203e-01, 4.6025e-01, -1.2995e-01, 1.5817e-01, -1.0733e-01,\n", " -7.5994e-02, -1.4720e-01, 7.4298e-02, 6.0721e-01, 3.2473e-01,\n", " -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\n", " 2.0282e-01, -5.1651e-01, 1.3683e-03, -2.0047e-01, 7.6022e-01,\n", " -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\n", "\n", " [[ 2.4355e-01, 9.7544e-02, 4.9027e-02, 3.3419e-01, 1.2388e-01,\n", " 7.1731e-02, 1.8976e-01, 4.4490e-01, -2.9891e-01, 2.0516e-01,\n", " -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02, 5.4330e-02,\n", " 4.1832e-01, 3.2749e-01, 5.0725e-02, 5.7945e-03, -1.6877e-01,\n", " -4.3551e-02, 7.4475e-02, 5.0754e-01, 5.8456e-01, 3.5108e-01,\n", " -3.2765e-01, 6.2981e-01, -2.1042e-01, -1.5040e-02, 3.9792e-01,\n", " 3.3859e-01, -2.2759e-01, 4.8875e-03, 2.0304e-01, -1.8557e-01,\n", " 5.1139e-01, -6.3578e-02, 3.7445e-01, 2.5876e-01, 3.2321e-01,\n", " 3.3812e-01, 4.8470e-01, -3.5065e-02, 5.6784e-01, 6.2865e-01,\n", " -3.4431e-01, -3.1394e-01, 2.1078e-01, 5.3845e-01, 3.1855e-01,\n", " 4.3601e-01, -3.4167e-03, -4.5149e-02, 4.3369e-02, 4.9973e-02,\n", " 5.7321e-01, -6.1557e-02, 1.4944e-01, -1.7503e-02, 1.5900e-01,\n", " -1.2167e-01, -4.7770e-01, 4.0990e-02, -1.3854e-01],\n", " [-1.2090e-01, 6.5291e-01, 4.9012e-01, 6.3469e-01, -6.1991e-01,\n", " -4.5836e-01, -6.4770e-01, -8.5862e-01, 6.3087e-01, -1.7720e-02,\n", " 1.7558e-01, -8.4372e-01, -6.0052e-01, 3.6973e-01, 1.8317e-01,\n", " 7.5792e-01, 5.6800e-01, 6.3874e-01, 7.7846e-01, -7.3676e-01,\n", " -8.1896e-01, -3.2437e-01, -5.9558e-02, 1.6930e-01, 4.0612e-01,\n", " -9.0851e-01, 7.4943e-01, 7.0389e-02, -3.3322e-01, -3.4272e-01,\n", " 8.7254e-01, -3.7895e-01, 5.6617e-01, 2.2784e-01, -5.8411e-01,\n", " 2.4766e-01, -8.4705e-01, 7.5885e-01, 2.6971e-01, -2.0708e-01,\n", " -2.3187e-01, -6.6556e-01, -7.9039e-01, 5.7092e-01, -9.1081e-03,\n", " 3.3079e-02, -3.3478e-01, 2.8295e-01, 7.9911e-01, 8.7098e-01,\n", " -3.8057e-01, 5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\n", " 6.5749e-01, -8.2280e-01, 4.0088e-01, 9.4624e-01, 7.4583e-01,\n", " -1.8822e-01, -1.5356e-01, 9.0531e-01, -9.4046e-01]],\n", "\n", " [[ 1.4370e-01, 6.9390e-01, 3.4906e-01, 1.8600e-01, -1.0352e-01,\n", " -1.8402e-01, -4.7587e-01, 3.9898e-01, 4.0702e-01, 3.4950e-01,\n", " 5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02, 2.1085e-01,\n", " 5.8135e-01, 6.0812e-01, -4.3868e-02, 5.5309e-01, -5.7745e-01,\n", " 1.1744e-01, 2.9086e-02, 1.2145e-01, 5.4306e-01, 6.4010e-01,\n", " -2.5673e-01, 6.0993e-01, -7.3052e-03, 7.7005e-02, 2.6385e-01,\n", " 6.2501e-01, -6.7076e-01, -9.6880e-02, 3.9839e-01, -1.2475e-01,\n", " 3.5841e-01, -4.1073e-02, 5.3352e-01, -2.4644e-01, 7.5658e-02,\n", " 1.7233e-01, 5.7383e-01, -8.7162e-02, 4.8839e-01, 1.1819e-01,\n", " -1.4091e-01, -1.5005e-01, 2.0554e-01, 7.3376e-01, 5.7186e-01,\n", " 2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\n", " 4.2501e-01, -4.6323e-01, 1.3973e-01, -2.1567e-01, 8.0603e-01,\n", " -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\n", " [-6.1965e-01, 9.8332e-01, 5.0493e-01, 2.8111e-01, -5.3563e-01,\n", " -5.9760e-01, -9.7713e-01, -9.0046e-01, 9.2203e-01, 3.4881e-04,\n", " 3.0716e-01, -9.3601e-01, -7.7404e-01, 9.6783e-01, 1.1720e-01,\n", " 7.5584e-01, 5.2906e-01, 9.7504e-01, 9.7287e-01, -7.2797e-01,\n", " -9.8892e-01, -3.6624e-01, -1.9580e-02, 3.4981e-01, 3.2603e-01,\n", " -9.0325e-01, 5.5451e-01, 1.3807e-01, -2.0965e-02, -4.0570e-02,\n", " 9.6092e-01, -5.8279e-01, 4.7798e-01, -4.6821e-01, 2.7388e-03,\n", " 7.5130e-01, -7.7676e-01, 8.5018e-01, 5.0395e-01, -2.3900e-01,\n", " 8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\n", " 4.2121e-02, -3.8591e-01, -4.9300e-01, 8.2269e-01, 9.6996e-01,\n", " -8.6781e-01, 8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\n", " 6.9462e-01, -9.9058e-01, 7.5560e-01, 9.5516e-01, 8.5390e-01,\n", " -9.3777e-01, 7.3466e-01, 9.5822e-01, -9.6689e-01]],\n", "\n", " [[-7.2412e-02, 5.5587e-01, 5.2648e-01, 6.8613e-01, -5.2126e-01,\n", " -2.6911e-01, -6.0472e-01, -8.5598e-01, 5.5327e-01, 1.5888e-01,\n", " 1.6669e-01, -7.6833e-01, -4.9673e-01, 4.0409e-01, 1.4775e-01,\n", " 8.2823e-01, 6.1798e-01, 6.2634e-01, 7.0638e-01, -6.3201e-01,\n", " -8.1080e-01, -1.9344e-01, 2.3377e-01, 5.5736e-01, 4.0636e-01,\n", " -9.2914e-01, 8.4626e-01, 4.3793e-02, -4.0619e-01, 1.3983e-01,\n", " 8.7200e-01, -3.6435e-01, 5.4387e-01, 1.9864e-01, -6.3067e-01,\n", " 3.2501e-01, -8.2716e-01, 7.3380e-01, 3.2731e-01, 1.1471e-01,\n", " 4.2973e-02, -5.7053e-01, -7.6254e-01, 6.5678e-01, 1.9348e-01,\n", " 9.6505e-03, -3.7881e-01, 3.7071e-01, 8.6609e-01, 9.2239e-01,\n", " -2.5739e-01, 5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\n", " 7.2268e-01, -7.9991e-01, 4.7691e-01, 9.3956e-01, 7.7451e-01,\n", " -3.3390e-01, -2.0639e-01, 9.0730e-01, -9.1102e-01],\n", " [-8.2056e-01, 9.9517e-01, 5.2822e-01, -2.9103e-02, -4.4076e-01,\n", " -5.0182e-01, -9.9669e-01, -9.2137e-01, 9.6995e-01, 9.8441e-03,\n", " 3.5683e-01, -9.7109e-01, -8.6985e-01, 9.9538e-01, 6.6071e-02,\n", " 7.5521e-01, 5.4956e-01, 9.8520e-01, 9.9528e-01, -7.4652e-01,\n", " -9.9837e-01, -4.0200e-01, 1.3232e-02, 4.5854e-01, 2.7352e-01,\n", " -8.9861e-01, 4.5760e-01, 1.9683e-01, 9.8737e-02, 5.9758e-02,\n", " 9.7392e-01, -7.3979e-01, 3.9800e-01, -6.4981e-01, 3.9077e-01,\n", " 8.7535e-01, -7.1771e-01, 9.1071e-01, 6.2887e-01, -2.6265e-01,\n", " 9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\n", " 5.0785e-02, -4.2154e-01, -7.8124e-01, 8.4035e-01, 9.9191e-01,\n", " -9.3793e-01, 9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\n", " 7.2309e-01, -9.9203e-01, 8.8789e-01, 9.6214e-01, 9.1157e-01,\n", " -9.9297e-01, 8.7711e-01, 9.7576e-01, -9.8162e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([28, 2])\n", "dec_state: tensor([[[ 0.5929, 0.9413, -0.4474, 0.6368, 0.1584, 0.1510, -0.4441,\n", " -0.4447, -0.3229, 0.3370, 0.3735, -0.6848, -0.4189, 0.6778,\n", " -0.0119, -0.6504, 0.1010, -0.1092, 0.0990, 0.2028, 0.7993,\n", " -0.4219, -0.0430, 0.7870, 0.8594, -0.7964, 0.0760, -0.4125,\n", " -0.9274, -0.7032, -0.8200, 0.8397, 0.1113, 0.5135, -0.5960,\n", " -0.9122, -0.2452, -0.0936, -0.8362, 0.4241, -0.6692, 0.6282,\n", " 0.2046, 0.2960, -0.7272, 0.9069, -0.7497, 0.0452, -0.0437,\n", " 0.8568, 0.9283, 0.8003, -0.4407, -0.1657, -0.9317, 0.0627,\n", " 0.4709, 0.3962, 0.4406, -0.3298, -0.9537, 0.9154, 0.4361,\n", " -0.1999],\n", " [ 0.9130, 0.9409, -0.9889, 0.8433, 0.8135, 0.7436, -0.8369,\n", " -0.3012, -0.4915, 0.4903, 0.2320, -0.9684, 0.3459, 0.8612,\n", " -0.8816, -0.4265, 0.2553, -0.3614, -0.8600, 0.6848, 0.9756,\n", " -0.8391, 0.3875, 0.8714, 0.8733, -0.9678, -0.8699, -0.8267,\n", " -0.6952, -0.7876, -0.9635, 0.5961, -0.8376, 0.8284, -0.7938,\n", " -0.9668, 0.7737, -0.5902, 0.3953, 0.7439, -0.9295, 0.9644,\n", " 0.8366, 0.0040, -0.7236, 0.8897, -0.8685, 0.8830, -0.4147,\n", " 0.8422, 0.6123, 0.9734, -0.1308, -0.7782, -0.2841, -0.3551,\n", " 0.9874, 0.9087, 0.3092, 0.0663, -0.9973, 0.9688, 0.2132,\n", " 0.4271]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-2.1643e-01, 4.0703e-01, 3.2634e-01, -5.0862e-01, -5.9415e-01,\n", " 5.1934e-01, 2.3474e-02, 5.2337e-01, -3.0883e-01, -1.4427e-01,\n", " 4.1089e-01, 2.8636e-01, 4.1313e-01, -2.1515e-01, 1.8673e-01,\n", " -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\n", " 6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\n", " -9.0624e-02, 8.4112e-01, 4.1783e-01, 4.2457e-01, 4.4339e-01,\n", " -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\n", " -1.0899e-01, 2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\n", " -1.1454e-01, -1.9440e-01, 1.8098e-01, 3.7718e-01, 4.4388e-01,\n", " -1.9044e-01, 1.2831e-01, 9.2631e-02, -5.9981e-01, -1.7597e-01,\n", " 2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02, 1.3814e-01,\n", " 4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\n", " 4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\n", " [-2.7921e-01, 5.5246e-01, -2.3130e-01, 6.0324e-02, -1.0443e-01,\n", " -9.6127e-02, -4.8838e-01, 1.7342e-01, -1.6244e-03, -1.5950e-01,\n", " -2.0051e-01, -2.3869e-01, -6.2903e-01, 3.7441e-01, 1.1054e-01,\n", " -4.1060e-01, 4.7134e-01, 3.1578e-01, 2.8223e-01, -7.0127e-01,\n", " -6.8227e-01, -1.6815e-01, 1.2664e-01, -3.3500e-02, 2.8114e-01,\n", " -3.8212e-02, 3.1934e-01, 3.1801e-01, -1.0009e-01, -1.3935e-01,\n", " 3.5000e-01, -1.1332e-01, 1.6779e-01, -4.4952e-01, -2.7263e-01,\n", " -2.6393e-02, -2.0009e-01, 2.5008e-01, -5.6962e-02, -3.3716e-01,\n", " 1.2111e-01, 7.2555e-01, -1.6554e-01, 3.0319e-02, -7.2813e-01,\n", " -5.0258e-01, 4.6271e-01, -2.0600e-01, 7.9482e-02, 4.5408e-01,\n", " 1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\n", " 3.1461e-01, -5.0918e-01, 1.8147e-01, 6.9853e-02, -1.7200e-01,\n", " -1.3063e-01, 1.5399e-01, 3.4001e-01, -5.4762e-01]],\n", "\n", " [[ 2.9094e-01, 2.9604e-01, -6.4331e-01, 8.5796e-01, -5.0427e-01,\n", " -3.9154e-01, 1.1564e-01, 7.4492e-01, 2.2174e-01, -3.8437e-01,\n", " 3.4773e-01, 2.4916e-02, 3.9094e-01, -6.5730e-01, 5.5876e-01,\n", " 4.9713e-01, 4.2008e-01, 1.7297e-01, 2.0467e-01, -4.0904e-01,\n", " -3.2362e-01, 1.3526e-01, 5.7380e-02, 8.0937e-01, 4.6005e-01,\n", " -4.4897e-01, 8.0193e-01, 2.0982e-01, 5.7502e-02, 1.6175e-01,\n", " 1.6195e-01, 6.5908e-02, 8.0127e-01, 2.1267e-01, -3.2248e-01,\n", " 6.1880e-02, -6.0822e-01, 9.2528e-01, 1.5635e-01, 6.5912e-01,\n", " -2.5814e-01, 6.9864e-02, -6.9100e-02, -2.0400e-01, 4.4236e-01,\n", " -3.8749e-01, 2.2603e-01, -7.3010e-01, -6.7803e-02, 6.0987e-01,\n", " -2.3944e-01, -2.2402e-01, 3.4141e-02, -7.5317e-01, -1.9034e-01,\n", " 1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01, 4.8121e-01,\n", " -6.4265e-01, -7.2166e-01, 6.8618e-02, -1.7256e-01],\n", " [-4.2395e-01, 4.3782e-01, -3.7864e-01, 4.6429e-01, -1.9293e-01,\n", " -1.8951e-01, -2.7415e-01, 1.4951e-01, -3.3036e-01, -6.2952e-02,\n", " -2.8961e-01, 2.6387e-01, -6.7616e-01, 8.8255e-03, -1.3174e-02,\n", " -5.0924e-01, -5.3128e-02, -1.0846e-01, 4.2621e-01, -6.4251e-01,\n", " -1.9010e-01, -8.9229e-02, -1.8645e-02, 1.4834e-01, 4.4270e-01,\n", " -1.6318e-01, 5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\n", " 4.5368e-01, -2.8125e-01, 2.3815e-01, -3.6399e-01, -2.3326e-01,\n", " -1.2933e-01, -3.3350e-01, 4.6229e-02, -1.8867e-01, -8.2094e-02,\n", " -2.6307e-01, 7.5736e-01, -2.3453e-03, 1.3690e-01, -1.8830e-01,\n", " -3.6770e-01, 2.2573e-03, -2.6534e-01, 1.3679e-01, 5.0285e-01,\n", " -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\n", " 6.7031e-02, -6.5419e-02, 1.1711e-01, 3.5437e-02, -3.1980e-01,\n", " 2.7608e-01, 4.2805e-01, 1.0529e-01, -6.9090e-01]],\n", "\n", " [[ 2.6467e-01, -2.1472e-02, -2.3705e-01, 8.1433e-01, 1.1691e-01,\n", " -5.2326e-01, 2.7152e-01, 7.2288e-01, -2.7715e-01, -5.5603e-02,\n", " 6.1393e-01, -3.2977e-02, 2.7468e-01, -5.7310e-01, 4.7398e-01,\n", " 3.3744e-01, 3.9739e-01, -3.0474e-02, 1.2378e-01, -3.6966e-02,\n", " -5.7119e-01, 4.0540e-01, 7.2925e-02, 6.0944e-01, 3.6532e-01,\n", " -5.7006e-01, 6.2813e-01, 1.8211e-01, -1.2571e-01, 2.1051e-01,\n", " 2.2644e-01, 2.3753e-01, 1.0566e-01, 3.3964e-01, -9.8686e-02,\n", " 7.1103e-02, -5.1788e-01, 8.2421e-01, 4.0273e-01, 5.9817e-01,\n", " -5.9287e-01, 5.6128e-02, -3.0473e-01, 1.4045e-01, 1.7209e-01,\n", " -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\n", " 2.0601e-01, 3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\n", " -1.6437e-01, 9.7025e-02, -2.7640e-01, -1.8737e-01, 2.3292e-01,\n", " -4.5736e-01, -5.6993e-01, 3.8426e-01, -5.8431e-01],\n", " [ 2.9292e-02, 4.2082e-01, 1.1496e-01, -1.3269e-01, -4.9844e-01,\n", " -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\n", " -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01, 3.1475e-02,\n", " -3.9173e-01, 1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\n", " 3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02, 3.3985e-01,\n", " 4.4148e-02, 7.0217e-02, -9.1169e-02, 2.0149e-01, -5.0179e-01,\n", " 4.1926e-01, -2.3867e-01, -2.1852e-01, 4.9277e-02, -4.5147e-02,\n", " -1.3929e-01, -2.5047e-01, 4.9927e-01, -3.6437e-01, -3.5151e-01,\n", " -1.4846e-01, 2.4364e-01, -2.1723e-01, -4.6918e-02, 1.4216e-01,\n", " -5.0783e-02, -2.6806e-01, 8.9650e-03, 3.0882e-01, -5.4537e-02,\n", " -1.0623e-01, 8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\n", " 3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\n", " 3.3971e-01, 8.3942e-02, -1.2739e-01, -6.4155e-01]],\n", "\n", " [[ 3.9462e-01, -2.2764e-01, -3.7951e-02, 4.0051e-01, -2.9822e-01,\n", " 1.9265e-01, 9.7957e-02, 3.4318e-01, 6.5615e-02, 1.4674e-01,\n", " 1.9097e-01, -1.9940e-01, 1.4437e-01, -2.2148e-01, 5.6047e-01,\n", " 5.2499e-01, 4.4121e-01, -2.5948e-01, 1.0898e-01, -2.9630e-01,\n", " -1.4722e-01, 2.0510e-01, 3.2749e-02, 5.3201e-01, 5.3504e-01,\n", " -5.3038e-01, 6.1319e-01, 1.6065e-01, -3.3821e-02, 1.9661e-01,\n", " 5.2853e-01, -2.7200e-01, 1.5528e-01, 2.8527e-01, -1.4127e-01,\n", " 1.4125e-02, -2.4507e-01, 5.8318e-01, 2.6271e-01, 6.1537e-01,\n", " 5.7424e-02, 1.5592e-01, -1.7715e-01, 1.8923e-01, 4.4712e-01,\n", " -3.3768e-01, -1.8343e-01, -5.5573e-02, 4.3081e-01, 8.3409e-02,\n", " 2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\n", " 4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01, 3.5492e-01,\n", " -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\n", " [ 5.8269e-02, 8.0529e-01, 3.1633e-01, 3.5130e-02, -4.0030e-01,\n", " -5.2046e-01, -5.7112e-01, 1.2411e-01, 5.1932e-01, 8.1681e-02,\n", " -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01, 2.6595e-01,\n", " 2.8538e-01, 5.4966e-01, -2.2023e-01, 6.2513e-01, -7.1846e-01,\n", " 1.5489e-01, -2.3305e-01, -2.8478e-01, 4.7244e-02, 6.0448e-01,\n", " -2.4189e-02, 1.3727e-01, 4.3836e-02, 1.9764e-01, -4.9993e-01,\n", " 6.4335e-01, -6.3273e-01, -1.7085e-01, 3.6792e-01, -1.1653e-02,\n", " 5.9266e-02, -1.4715e-01, 6.0236e-01, -5.3754e-01, -3.3864e-01,\n", " -1.6203e-01, 4.6025e-01, -1.2995e-01, 1.5817e-01, -1.0733e-01,\n", " -7.5994e-02, -1.4720e-01, 7.4298e-02, 6.0721e-01, 3.2473e-01,\n", " -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\n", " 2.0282e-01, -5.1651e-01, 1.3683e-03, -2.0047e-01, 7.6022e-01,\n", " -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\n", "\n", " [[ 2.4355e-01, 9.7544e-02, 4.9027e-02, 3.3419e-01, 1.2388e-01,\n", " 7.1731e-02, 1.8976e-01, 4.4490e-01, -2.9891e-01, 2.0516e-01,\n", " -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02, 5.4330e-02,\n", " 4.1832e-01, 3.2749e-01, 5.0725e-02, 5.7945e-03, -1.6877e-01,\n", " -4.3551e-02, 7.4475e-02, 5.0754e-01, 5.8456e-01, 3.5108e-01,\n", " -3.2765e-01, 6.2981e-01, -2.1042e-01, -1.5040e-02, 3.9792e-01,\n", " 3.3859e-01, -2.2759e-01, 4.8875e-03, 2.0304e-01, -1.8557e-01,\n", " 5.1139e-01, -6.3578e-02, 3.7445e-01, 2.5876e-01, 3.2321e-01,\n", " 3.3812e-01, 4.8470e-01, -3.5065e-02, 5.6784e-01, 6.2865e-01,\n", " -3.4431e-01, -3.1394e-01, 2.1078e-01, 5.3845e-01, 3.1855e-01,\n", " 4.3601e-01, -3.4167e-03, -4.5149e-02, 4.3369e-02, 4.9973e-02,\n", " 5.7321e-01, -6.1557e-02, 1.4944e-01, -1.7503e-02, 1.5900e-01,\n", " -1.2167e-01, -4.7770e-01, 4.0990e-02, -1.3854e-01],\n", " [-1.2090e-01, 6.5291e-01, 4.9012e-01, 6.3469e-01, -6.1991e-01,\n", " -4.5836e-01, -6.4770e-01, -8.5862e-01, 6.3087e-01, -1.7720e-02,\n", " 1.7558e-01, -8.4372e-01, -6.0052e-01, 3.6973e-01, 1.8317e-01,\n", " 7.5792e-01, 5.6800e-01, 6.3874e-01, 7.7846e-01, -7.3676e-01,\n", " -8.1896e-01, -3.2437e-01, -5.9558e-02, 1.6930e-01, 4.0612e-01,\n", " -9.0851e-01, 7.4943e-01, 7.0389e-02, -3.3322e-01, -3.4272e-01,\n", " 8.7254e-01, -3.7895e-01, 5.6617e-01, 2.2784e-01, -5.8411e-01,\n", " 2.4766e-01, -8.4705e-01, 7.5885e-01, 2.6971e-01, -2.0708e-01,\n", " -2.3187e-01, -6.6556e-01, -7.9039e-01, 5.7092e-01, -9.1081e-03,\n", " 3.3079e-02, -3.3478e-01, 2.8295e-01, 7.9911e-01, 8.7098e-01,\n", " -3.8057e-01, 5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\n", " 6.5749e-01, -8.2280e-01, 4.0088e-01, 9.4624e-01, 7.4583e-01,\n", " -1.8822e-01, -1.5356e-01, 9.0531e-01, -9.4046e-01]],\n", "\n", " [[ 1.4370e-01, 6.9390e-01, 3.4906e-01, 1.8600e-01, -1.0352e-01,\n", " -1.8402e-01, -4.7587e-01, 3.9898e-01, 4.0702e-01, 3.4950e-01,\n", " 5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02, 2.1085e-01,\n", " 5.8135e-01, 6.0812e-01, -4.3868e-02, 5.5309e-01, -5.7745e-01,\n", " 1.1744e-01, 2.9086e-02, 1.2145e-01, 5.4306e-01, 6.4010e-01,\n", " -2.5673e-01, 6.0993e-01, -7.3052e-03, 7.7005e-02, 2.6385e-01,\n", " 6.2501e-01, -6.7076e-01, -9.6880e-02, 3.9839e-01, -1.2475e-01,\n", " 3.5841e-01, -4.1073e-02, 5.3352e-01, -2.4644e-01, 7.5658e-02,\n", " 1.7233e-01, 5.7383e-01, -8.7162e-02, 4.8839e-01, 1.1819e-01,\n", " -1.4091e-01, -1.5005e-01, 2.0554e-01, 7.3376e-01, 5.7186e-01,\n", " 2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\n", " 4.2501e-01, -4.6323e-01, 1.3973e-01, -2.1567e-01, 8.0603e-01,\n", " -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\n", " [-6.1965e-01, 9.8332e-01, 5.0493e-01, 2.8111e-01, -5.3563e-01,\n", " -5.9760e-01, -9.7713e-01, -9.0046e-01, 9.2203e-01, 3.4881e-04,\n", " 3.0716e-01, -9.3601e-01, -7.7404e-01, 9.6783e-01, 1.1720e-01,\n", " 7.5584e-01, 5.2906e-01, 9.7504e-01, 9.7287e-01, -7.2797e-01,\n", " -9.8892e-01, -3.6624e-01, -1.9580e-02, 3.4981e-01, 3.2603e-01,\n", " -9.0325e-01, 5.5451e-01, 1.3807e-01, -2.0965e-02, -4.0570e-02,\n", " 9.6092e-01, -5.8279e-01, 4.7798e-01, -4.6821e-01, 2.7388e-03,\n", " 7.5130e-01, -7.7676e-01, 8.5018e-01, 5.0395e-01, -2.3900e-01,\n", " 8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\n", " 4.2121e-02, -3.8591e-01, -4.9300e-01, 8.2269e-01, 9.6996e-01,\n", " -8.6781e-01, 8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\n", " 6.9462e-01, -9.9058e-01, 7.5560e-01, 9.5516e-01, 8.5390e-01,\n", " -9.3777e-01, 7.3466e-01, 9.5822e-01, -9.6689e-01]],\n", "\n", " [[-7.2412e-02, 5.5587e-01, 5.2648e-01, 6.8613e-01, -5.2126e-01,\n", " -2.6911e-01, -6.0472e-01, -8.5598e-01, 5.5327e-01, 1.5888e-01,\n", " 1.6669e-01, -7.6833e-01, -4.9673e-01, 4.0409e-01, 1.4775e-01,\n", " 8.2823e-01, 6.1798e-01, 6.2634e-01, 7.0638e-01, -6.3201e-01,\n", " -8.1080e-01, -1.9344e-01, 2.3377e-01, 5.5736e-01, 4.0636e-01,\n", " -9.2914e-01, 8.4626e-01, 4.3793e-02, -4.0619e-01, 1.3983e-01,\n", " 8.7200e-01, -3.6435e-01, 5.4387e-01, 1.9864e-01, -6.3067e-01,\n", " 3.2501e-01, -8.2716e-01, 7.3380e-01, 3.2731e-01, 1.1471e-01,\n", " 4.2973e-02, -5.7053e-01, -7.6254e-01, 6.5678e-01, 1.9348e-01,\n", " 9.6505e-03, -3.7881e-01, 3.7071e-01, 8.6609e-01, 9.2239e-01,\n", " -2.5739e-01, 5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\n", " 7.2268e-01, -7.9991e-01, 4.7691e-01, 9.3956e-01, 7.7451e-01,\n", " -3.3390e-01, -2.0639e-01, 9.0730e-01, -9.1102e-01],\n", " [-8.2056e-01, 9.9517e-01, 5.2822e-01, -2.9103e-02, -4.4076e-01,\n", " -5.0182e-01, -9.9669e-01, -9.2137e-01, 9.6995e-01, 9.8441e-03,\n", " 3.5683e-01, -9.7109e-01, -8.6985e-01, 9.9538e-01, 6.6071e-02,\n", " 7.5521e-01, 5.4956e-01, 9.8520e-01, 9.9528e-01, -7.4652e-01,\n", " -9.9837e-01, -4.0200e-01, 1.3232e-02, 4.5854e-01, 2.7352e-01,\n", " -8.9861e-01, 4.5760e-01, 1.9683e-01, 9.8737e-02, 5.9758e-02,\n", " 9.7392e-01, -7.3979e-01, 3.9800e-01, -6.4981e-01, 3.9077e-01,\n", " 8.7535e-01, -7.1771e-01, 9.1071e-01, 6.2887e-01, -2.6265e-01,\n", " 9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\n", " 5.0785e-02, -4.2154e-01, -7.8124e-01, 8.4035e-01, 9.9191e-01,\n", " -9.3793e-01, 9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\n", " 7.2309e-01, -9.9203e-01, 8.8789e-01, 9.6214e-01, 9.1157e-01,\n", " -9.9297e-01, 8.7711e-01, 9.7576e-01, -9.8162e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 0.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([3, 0])\n", "dec_state: tensor([[[ 0.9781, 0.9872, -0.9264, 0.6691, 0.0951, 0.3156, -0.6320,\n", " -0.7366, -0.4670, -0.9615, -0.9010, -0.8785, 0.7344, 0.9201,\n", " -0.9227, 0.3516, 0.9201, -0.4521, -0.8692, 0.6034, 0.8072,\n", " -0.4677, -0.6117, 0.7930, 0.9824, -0.8906, -0.1189, -0.9387,\n", " 0.7411, -0.8231, -0.8983, 0.8603, 0.8638, 0.8514, -0.5059,\n", " -0.8946, 0.6783, -0.8250, 0.6805, 0.8581, -0.8626, 0.8645,\n", " 0.3882, -0.7911, -0.8356, 0.9895, -0.4922, 0.8056, -0.0756,\n", " 0.8191, -0.8261, 0.9629, -0.0070, -0.5062, 0.8791, -0.1445,\n", " 0.8673, 0.5193, -0.5945, -0.4677, -0.9788, 0.9610, 0.4043,\n", " -0.9366],\n", " [ 0.7331, 0.9824, -0.4263, 0.8007, 0.7327, 0.3563, -0.7526,\n", " -0.5364, -0.3909, 0.2115, 0.3455, -0.9110, -0.3309, 0.8979,\n", " -0.2999, -0.3954, -0.4487, -0.8195, -0.4908, 0.7663, 0.9840,\n", " -0.8888, 0.2278, 0.8943, 0.9196, -0.9582, -0.9077, -0.7245,\n", " -0.8709, -0.8953, -0.6125, 0.7328, 0.3806, 0.8263, -0.8462,\n", " -0.9920, 0.3422, -0.6997, -0.0449, 0.7883, -0.9241, 0.9713,\n", " 0.9226, -0.2699, -0.7932, 0.9691, -0.9056, 0.4422, -0.3167,\n", " 0.8821, 0.8931, 0.9782, 0.1177, -0.8298, 0.0827, -0.2664,\n", " 0.9633, 0.9341, 0.3331, -0.1655, -0.9979, 0.9480, 0.1138,\n", " 0.3794]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-2.1643e-01, 4.0703e-01, 3.2634e-01, -5.0862e-01, -5.9415e-01,\n", " 5.1934e-01, 2.3474e-02, 5.2337e-01, -3.0883e-01, -1.4427e-01,\n", " 4.1089e-01, 2.8636e-01, 4.1313e-01, -2.1515e-01, 1.8673e-01,\n", " -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\n", " 6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\n", " -9.0624e-02, 8.4112e-01, 4.1783e-01, 4.2457e-01, 4.4339e-01,\n", " -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\n", " -1.0899e-01, 2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\n", " -1.1454e-01, -1.9440e-01, 1.8098e-01, 3.7718e-01, 4.4388e-01,\n", " -1.9044e-01, 1.2831e-01, 9.2631e-02, -5.9981e-01, -1.7597e-01,\n", " 2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02, 1.3814e-01,\n", " 4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\n", " 4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\n", " [-2.7921e-01, 5.5246e-01, -2.3130e-01, 6.0324e-02, -1.0443e-01,\n", " -9.6127e-02, -4.8838e-01, 1.7342e-01, -1.6244e-03, -1.5950e-01,\n", " -2.0051e-01, -2.3869e-01, -6.2903e-01, 3.7441e-01, 1.1054e-01,\n", " -4.1060e-01, 4.7134e-01, 3.1578e-01, 2.8223e-01, -7.0127e-01,\n", " -6.8227e-01, -1.6815e-01, 1.2664e-01, -3.3500e-02, 2.8114e-01,\n", " -3.8212e-02, 3.1934e-01, 3.1801e-01, -1.0009e-01, -1.3935e-01,\n", " 3.5000e-01, -1.1332e-01, 1.6779e-01, -4.4952e-01, -2.7263e-01,\n", " -2.6393e-02, -2.0009e-01, 2.5008e-01, -5.6962e-02, -3.3716e-01,\n", " 1.2111e-01, 7.2555e-01, -1.6554e-01, 3.0319e-02, -7.2813e-01,\n", " -5.0258e-01, 4.6271e-01, -2.0600e-01, 7.9482e-02, 4.5408e-01,\n", " 1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\n", " 3.1461e-01, -5.0918e-01, 1.8147e-01, 6.9853e-02, -1.7200e-01,\n", " -1.3063e-01, 1.5399e-01, 3.4001e-01, -5.4762e-01]],\n", "\n", " [[ 2.9094e-01, 2.9604e-01, -6.4331e-01, 8.5796e-01, -5.0427e-01,\n", " -3.9154e-01, 1.1564e-01, 7.4492e-01, 2.2174e-01, -3.8437e-01,\n", " 3.4773e-01, 2.4916e-02, 3.9094e-01, -6.5730e-01, 5.5876e-01,\n", " 4.9713e-01, 4.2008e-01, 1.7297e-01, 2.0467e-01, -4.0904e-01,\n", " -3.2362e-01, 1.3526e-01, 5.7380e-02, 8.0937e-01, 4.6005e-01,\n", " -4.4897e-01, 8.0193e-01, 2.0982e-01, 5.7502e-02, 1.6175e-01,\n", " 1.6195e-01, 6.5908e-02, 8.0127e-01, 2.1267e-01, -3.2248e-01,\n", " 6.1880e-02, -6.0822e-01, 9.2528e-01, 1.5635e-01, 6.5912e-01,\n", " -2.5814e-01, 6.9864e-02, -6.9100e-02, -2.0400e-01, 4.4236e-01,\n", " -3.8749e-01, 2.2603e-01, -7.3010e-01, -6.7803e-02, 6.0987e-01,\n", " -2.3944e-01, -2.2402e-01, 3.4141e-02, -7.5317e-01, -1.9034e-01,\n", " 1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01, 4.8121e-01,\n", " -6.4265e-01, -7.2166e-01, 6.8618e-02, -1.7256e-01],\n", " [-4.2395e-01, 4.3782e-01, -3.7864e-01, 4.6429e-01, -1.9293e-01,\n", " -1.8951e-01, -2.7415e-01, 1.4951e-01, -3.3036e-01, -6.2952e-02,\n", " -2.8961e-01, 2.6387e-01, -6.7616e-01, 8.8255e-03, -1.3174e-02,\n", " -5.0924e-01, -5.3128e-02, -1.0846e-01, 4.2621e-01, -6.4251e-01,\n", " -1.9010e-01, -8.9229e-02, -1.8645e-02, 1.4834e-01, 4.4270e-01,\n", " -1.6318e-01, 5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\n", " 4.5368e-01, -2.8125e-01, 2.3815e-01, -3.6399e-01, -2.3326e-01,\n", " -1.2933e-01, -3.3350e-01, 4.6229e-02, -1.8867e-01, -8.2094e-02,\n", " -2.6307e-01, 7.5736e-01, -2.3453e-03, 1.3690e-01, -1.8830e-01,\n", " -3.6770e-01, 2.2573e-03, -2.6534e-01, 1.3679e-01, 5.0285e-01,\n", " -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\n", " 6.7031e-02, -6.5419e-02, 1.1711e-01, 3.5437e-02, -3.1980e-01,\n", " 2.7608e-01, 4.2805e-01, 1.0529e-01, -6.9090e-01]],\n", "\n", " [[ 2.6467e-01, -2.1472e-02, -2.3705e-01, 8.1433e-01, 1.1691e-01,\n", " -5.2326e-01, 2.7152e-01, 7.2288e-01, -2.7715e-01, -5.5603e-02,\n", " 6.1393e-01, -3.2977e-02, 2.7468e-01, -5.7310e-01, 4.7398e-01,\n", " 3.3744e-01, 3.9739e-01, -3.0474e-02, 1.2378e-01, -3.6966e-02,\n", " -5.7119e-01, 4.0540e-01, 7.2925e-02, 6.0944e-01, 3.6532e-01,\n", " -5.7006e-01, 6.2813e-01, 1.8211e-01, -1.2571e-01, 2.1051e-01,\n", " 2.2644e-01, 2.3753e-01, 1.0566e-01, 3.3964e-01, -9.8686e-02,\n", " 7.1103e-02, -5.1788e-01, 8.2421e-01, 4.0273e-01, 5.9817e-01,\n", " -5.9287e-01, 5.6128e-02, -3.0473e-01, 1.4045e-01, 1.7209e-01,\n", " -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\n", " 2.0601e-01, 3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\n", " -1.6437e-01, 9.7025e-02, -2.7640e-01, -1.8737e-01, 2.3292e-01,\n", " -4.5736e-01, -5.6993e-01, 3.8426e-01, -5.8431e-01],\n", " [ 2.9292e-02, 4.2082e-01, 1.1496e-01, -1.3269e-01, -4.9844e-01,\n", " -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\n", " -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01, 3.1475e-02,\n", " -3.9173e-01, 1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\n", " 3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02, 3.3985e-01,\n", " 4.4148e-02, 7.0217e-02, -9.1169e-02, 2.0149e-01, -5.0179e-01,\n", " 4.1926e-01, -2.3867e-01, -2.1852e-01, 4.9277e-02, -4.5147e-02,\n", " -1.3929e-01, -2.5047e-01, 4.9927e-01, -3.6437e-01, -3.5151e-01,\n", " -1.4846e-01, 2.4364e-01, -2.1723e-01, -4.6918e-02, 1.4216e-01,\n", " -5.0783e-02, -2.6806e-01, 8.9650e-03, 3.0882e-01, -5.4537e-02,\n", " -1.0623e-01, 8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\n", " 3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\n", " 3.3971e-01, 8.3942e-02, -1.2739e-01, -6.4155e-01]],\n", "\n", " [[ 3.9462e-01, -2.2764e-01, -3.7951e-02, 4.0051e-01, -2.9822e-01,\n", " 1.9265e-01, 9.7957e-02, 3.4318e-01, 6.5615e-02, 1.4674e-01,\n", " 1.9097e-01, -1.9940e-01, 1.4437e-01, -2.2148e-01, 5.6047e-01,\n", " 5.2499e-01, 4.4121e-01, -2.5948e-01, 1.0898e-01, -2.9630e-01,\n", " -1.4722e-01, 2.0510e-01, 3.2749e-02, 5.3201e-01, 5.3504e-01,\n", " -5.3038e-01, 6.1319e-01, 1.6065e-01, -3.3821e-02, 1.9661e-01,\n", " 5.2853e-01, -2.7200e-01, 1.5528e-01, 2.8527e-01, -1.4127e-01,\n", " 1.4125e-02, -2.4507e-01, 5.8318e-01, 2.6271e-01, 6.1537e-01,\n", " 5.7424e-02, 1.5592e-01, -1.7715e-01, 1.8923e-01, 4.4712e-01,\n", " -3.3768e-01, -1.8343e-01, -5.5573e-02, 4.3081e-01, 8.3409e-02,\n", " 2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\n", " 4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01, 3.5492e-01,\n", " -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\n", " [ 5.8269e-02, 8.0529e-01, 3.1633e-01, 3.5130e-02, -4.0030e-01,\n", " -5.2046e-01, -5.7112e-01, 1.2411e-01, 5.1932e-01, 8.1681e-02,\n", " -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01, 2.6595e-01,\n", " 2.8538e-01, 5.4966e-01, -2.2023e-01, 6.2513e-01, -7.1846e-01,\n", " 1.5489e-01, -2.3305e-01, -2.8478e-01, 4.7244e-02, 6.0448e-01,\n", " -2.4189e-02, 1.3727e-01, 4.3836e-02, 1.9764e-01, -4.9993e-01,\n", " 6.4335e-01, -6.3273e-01, -1.7085e-01, 3.6792e-01, -1.1653e-02,\n", " 5.9266e-02, -1.4715e-01, 6.0236e-01, -5.3754e-01, -3.3864e-01,\n", " -1.6203e-01, 4.6025e-01, -1.2995e-01, 1.5817e-01, -1.0733e-01,\n", " -7.5994e-02, -1.4720e-01, 7.4298e-02, 6.0721e-01, 3.2473e-01,\n", " -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\n", " 2.0282e-01, -5.1651e-01, 1.3683e-03, -2.0047e-01, 7.6022e-01,\n", " -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\n", "\n", " [[ 2.4355e-01, 9.7544e-02, 4.9027e-02, 3.3419e-01, 1.2388e-01,\n", " 7.1731e-02, 1.8976e-01, 4.4490e-01, -2.9891e-01, 2.0516e-01,\n", " -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02, 5.4330e-02,\n", " 4.1832e-01, 3.2749e-01, 5.0725e-02, 5.7945e-03, -1.6877e-01,\n", " -4.3551e-02, 7.4475e-02, 5.0754e-01, 5.8456e-01, 3.5108e-01,\n", " -3.2765e-01, 6.2981e-01, -2.1042e-01, -1.5040e-02, 3.9792e-01,\n", " 3.3859e-01, -2.2759e-01, 4.8875e-03, 2.0304e-01, -1.8557e-01,\n", " 5.1139e-01, -6.3578e-02, 3.7445e-01, 2.5876e-01, 3.2321e-01,\n", " 3.3812e-01, 4.8470e-01, -3.5065e-02, 5.6784e-01, 6.2865e-01,\n", " -3.4431e-01, -3.1394e-01, 2.1078e-01, 5.3845e-01, 3.1855e-01,\n", " 4.3601e-01, -3.4167e-03, -4.5149e-02, 4.3369e-02, 4.9973e-02,\n", " 5.7321e-01, -6.1557e-02, 1.4944e-01, -1.7503e-02, 1.5900e-01,\n", " -1.2167e-01, -4.7770e-01, 4.0990e-02, -1.3854e-01],\n", " [-1.2090e-01, 6.5291e-01, 4.9012e-01, 6.3469e-01, -6.1991e-01,\n", " -4.5836e-01, -6.4770e-01, -8.5862e-01, 6.3087e-01, -1.7720e-02,\n", " 1.7558e-01, -8.4372e-01, -6.0052e-01, 3.6973e-01, 1.8317e-01,\n", " 7.5792e-01, 5.6800e-01, 6.3874e-01, 7.7846e-01, -7.3676e-01,\n", " -8.1896e-01, -3.2437e-01, -5.9558e-02, 1.6930e-01, 4.0612e-01,\n", " -9.0851e-01, 7.4943e-01, 7.0389e-02, -3.3322e-01, -3.4272e-01,\n", " 8.7254e-01, -3.7895e-01, 5.6617e-01, 2.2784e-01, -5.8411e-01,\n", " 2.4766e-01, -8.4705e-01, 7.5885e-01, 2.6971e-01, -2.0708e-01,\n", " -2.3187e-01, -6.6556e-01, -7.9039e-01, 5.7092e-01, -9.1081e-03,\n", " 3.3079e-02, -3.3478e-01, 2.8295e-01, 7.9911e-01, 8.7098e-01,\n", " -3.8057e-01, 5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\n", " 6.5749e-01, -8.2280e-01, 4.0088e-01, 9.4624e-01, 7.4583e-01,\n", " -1.8822e-01, -1.5356e-01, 9.0531e-01, -9.4046e-01]],\n", "\n", " [[ 1.4370e-01, 6.9390e-01, 3.4906e-01, 1.8600e-01, -1.0352e-01,\n", " -1.8402e-01, -4.7587e-01, 3.9898e-01, 4.0702e-01, 3.4950e-01,\n", " 5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02, 2.1085e-01,\n", " 5.8135e-01, 6.0812e-01, -4.3868e-02, 5.5309e-01, -5.7745e-01,\n", " 1.1744e-01, 2.9086e-02, 1.2145e-01, 5.4306e-01, 6.4010e-01,\n", " -2.5673e-01, 6.0993e-01, -7.3052e-03, 7.7005e-02, 2.6385e-01,\n", " 6.2501e-01, -6.7076e-01, -9.6880e-02, 3.9839e-01, -1.2475e-01,\n", " 3.5841e-01, -4.1073e-02, 5.3352e-01, -2.4644e-01, 7.5658e-02,\n", " 1.7233e-01, 5.7383e-01, -8.7162e-02, 4.8839e-01, 1.1819e-01,\n", " -1.4091e-01, -1.5005e-01, 2.0554e-01, 7.3376e-01, 5.7186e-01,\n", " 2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\n", " 4.2501e-01, -4.6323e-01, 1.3973e-01, -2.1567e-01, 8.0603e-01,\n", " -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\n", " [-6.1965e-01, 9.8332e-01, 5.0493e-01, 2.8111e-01, -5.3563e-01,\n", " -5.9760e-01, -9.7713e-01, -9.0046e-01, 9.2203e-01, 3.4881e-04,\n", " 3.0716e-01, -9.3601e-01, -7.7404e-01, 9.6783e-01, 1.1720e-01,\n", " 7.5584e-01, 5.2906e-01, 9.7504e-01, 9.7287e-01, -7.2797e-01,\n", " -9.8892e-01, -3.6624e-01, -1.9580e-02, 3.4981e-01, 3.2603e-01,\n", " -9.0325e-01, 5.5451e-01, 1.3807e-01, -2.0965e-02, -4.0570e-02,\n", " 9.6092e-01, -5.8279e-01, 4.7798e-01, -4.6821e-01, 2.7388e-03,\n", " 7.5130e-01, -7.7676e-01, 8.5018e-01, 5.0395e-01, -2.3900e-01,\n", " 8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\n", " 4.2121e-02, -3.8591e-01, -4.9300e-01, 8.2269e-01, 9.6996e-01,\n", " -8.6781e-01, 8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\n", " 6.9462e-01, -9.9058e-01, 7.5560e-01, 9.5516e-01, 8.5390e-01,\n", " -9.3777e-01, 7.3466e-01, 9.5822e-01, -9.6689e-01]],\n", "\n", " [[-7.2412e-02, 5.5587e-01, 5.2648e-01, 6.8613e-01, -5.2126e-01,\n", " -2.6911e-01, -6.0472e-01, -8.5598e-01, 5.5327e-01, 1.5888e-01,\n", " 1.6669e-01, -7.6833e-01, -4.9673e-01, 4.0409e-01, 1.4775e-01,\n", " 8.2823e-01, 6.1798e-01, 6.2634e-01, 7.0638e-01, -6.3201e-01,\n", " -8.1080e-01, -1.9344e-01, 2.3377e-01, 5.5736e-01, 4.0636e-01,\n", " -9.2914e-01, 8.4626e-01, 4.3793e-02, -4.0619e-01, 1.3983e-01,\n", " 8.7200e-01, -3.6435e-01, 5.4387e-01, 1.9864e-01, -6.3067e-01,\n", " 3.2501e-01, -8.2716e-01, 7.3380e-01, 3.2731e-01, 1.1471e-01,\n", " 4.2973e-02, -5.7053e-01, -7.6254e-01, 6.5678e-01, 1.9348e-01,\n", " 9.6505e-03, -3.7881e-01, 3.7071e-01, 8.6609e-01, 9.2239e-01,\n", " -2.5739e-01, 5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\n", " 7.2268e-01, -7.9991e-01, 4.7691e-01, 9.3956e-01, 7.7451e-01,\n", " -3.3390e-01, -2.0639e-01, 9.0730e-01, -9.1102e-01],\n", " [-8.2056e-01, 9.9517e-01, 5.2822e-01, -2.9103e-02, -4.4076e-01,\n", " -5.0182e-01, -9.9669e-01, -9.2137e-01, 9.6995e-01, 9.8441e-03,\n", " 3.5683e-01, -9.7109e-01, -8.6985e-01, 9.9538e-01, 6.6071e-02,\n", " 7.5521e-01, 5.4956e-01, 9.8520e-01, 9.9528e-01, -7.4652e-01,\n", " -9.9837e-01, -4.0200e-01, 1.3232e-02, 4.5854e-01, 2.7352e-01,\n", " -8.9861e-01, 4.5760e-01, 1.9683e-01, 9.8737e-02, 5.9758e-02,\n", " 9.7392e-01, -7.3979e-01, 3.9800e-01, -6.4981e-01, 3.9077e-01,\n", " 8.7535e-01, -7.1771e-01, 9.1071e-01, 6.2887e-01, -2.6265e-01,\n", " 9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\n", " 5.0785e-02, -4.2154e-01, -7.8124e-01, 8.4035e-01, 9.9191e-01,\n", " -9.3793e-01, 9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\n", " 7.2309e-01, -9.9203e-01, 8.8789e-01, 9.6214e-01, 9.1157e-01,\n", " -9.9297e-01, 8.7711e-01, 9.7576e-01, -9.8162e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 0.])\n", "------------------------------\n", "tensor([[11, 4, 9, 35, 3, 2, 0],\n", " [ 6, 39, 25, 3, 2, 0, 0]])\n", "tensor([[ 6, 4, 9, 35, 3, 2, 0],\n", " [ 7, 5, 16, 3, 2, 0, 0]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-0.7086, 0.9864, 0.4316, 0.3359, -0.7541, -0.2385, -0.9812,\n", " -0.9489, 0.9693, -0.7433, 0.8606, -0.9586, -0.7341, 0.9724,\n", " 0.2809, 0.8833, -0.6994, 0.9830, 0.9846, 0.9719, -0.9650,\n", " 0.1856, 0.5594, 0.7060, 0.8065, -0.9380, -0.8137, -0.4220,\n", " 0.0434, 0.0744, 0.1208, -0.4253, 0.9681, -0.1435, 0.2724,\n", " 0.9532, 0.9454, 0.9305, 0.0953, -0.8152, -0.7740, -0.9828,\n", " -0.2652, -0.2975, -0.9859, 0.7865, -0.7123, -0.9517, 0.8805,\n", " 0.9874, -0.0171, 0.9657, -0.9784, 0.4981, -0.8841, 0.8066,\n", " -0.9717, 0.8449, 0.9646, 0.9102, -0.9598, 0.9566, 0.9814,\n", " -0.9235],\n", " [-0.8397, 0.9960, 0.4729, -0.0268, -0.7020, -0.0726, -0.9869,\n", " -0.9534, 0.9876, -0.7383, 0.9066, -0.9758, -0.8542, 0.9970,\n", " 0.1612, 0.8199, -0.7832, 0.9880, 0.9931, 0.9700, -0.9806,\n", " -0.3277, 0.7004, 0.5226, 0.7892, -0.9199, -0.8712, -0.3203,\n", " 0.2282, 0.0508, 0.0774, -0.7647, 0.9547, -0.2877, 0.5706,\n", " 0.9751, 0.9509, 0.9144, 0.0244, -0.8293, -0.8266, -0.9754,\n", " -0.0330, -0.4672, -0.9917, 0.7625, -0.7441, -0.9754, 0.8904,\n", " 0.9947, 0.0110, 0.9852, -0.9944, 0.5031, -0.8573, 0.7893,\n", " -0.9513, 0.9107, 0.9759, 0.9326, -0.9955, 0.9780, 0.9884,\n", " -0.9271]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.8919e-01, 3.4259e-01, 3.1522e-01, -4.7506e-01, -5.8994e-01,\n", " 5.1473e-01, 5.6873e-02, 5.4040e-01, -3.3129e-01, -1.3599e-01,\n", " 4.1210e-01, 2.9224e-01, 4.4804e-01, -2.0969e-01, 1.8312e-01,\n", " -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\n", " 9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\n", " -7.9656e-02, 8.3929e-01, 4.3339e-01, 3.9920e-01, 4.5494e-01,\n", " -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\n", " -1.3184e-01, 2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\n", " -1.2202e-01, -1.8331e-01, 1.9878e-01, 3.4604e-01, 4.5695e-01,\n", " -1.2873e-01, 1.2538e-01, 9.8116e-02, -5.7898e-01, -1.9313e-01,\n", " 3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02, 1.4781e-01,\n", " 4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\n", " 4.2793e-01, -1.4875e-02, -1.8840e-01, 1.0795e-02],\n", " [-5.6161e-02, 5.1079e-01, 2.5469e-01, 4.0636e-01, -3.6313e-01,\n", " 1.5495e-01, -9.8928e-02, 1.4182e-01, -7.7240e-02, -2.6764e-01,\n", " 2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02, 3.2069e-01,\n", " -1.9700e-01, 6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\n", " -6.0447e-01, -5.2675e-01, 5.4918e-01, 3.0957e-01, -3.8066e-01,\n", " -5.1973e-01, 7.1569e-02, 5.6027e-01, -1.1235e-02, 1.3392e-02,\n", " 1.8581e-01, 3.8664e-01, -6.3076e-01, 6.1353e-01, 1.7132e-01,\n", " -2.1614e-02, -4.0260e-01, 7.6765e-01, -6.0879e-01, 2.6077e-01,\n", " -7.0112e-02, 3.3747e-01, -6.6588e-01, -2.1261e-01, 7.7419e-02,\n", " -3.0452e-01, -3.6169e-01, 2.3957e-01, -2.0789e-02, 4.0888e-01,\n", " 1.9174e-01, 6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\n", " 1.3132e-01, 3.5580e-02, 3.3620e-01, -3.2242e-01, 2.6653e-01,\n", " -6.5847e-01, 3.5521e-01, 6.4256e-01, -4.4652e-01]],\n", "\n", " [[ 3.0272e-01, 2.5549e-01, -6.7423e-01, 8.7988e-01, -4.8633e-01,\n", " -4.3515e-01, 1.2682e-01, 7.5875e-01, 1.4521e-01, -3.9192e-01,\n", " 3.5380e-01, -1.7771e-03, 4.2796e-01, -6.6608e-01, 5.5359e-01,\n", " 4.9745e-01, 3.8194e-01, 1.6847e-01, 1.9478e-01, -3.7168e-01,\n", " -3.1005e-01, 2.3350e-01, 1.3845e-02, 8.2973e-01, 4.7779e-01,\n", " -4.5664e-01, 8.1294e-01, 2.1875e-01, 3.5033e-02, 2.0797e-01,\n", " 1.3223e-01, 9.8914e-02, 8.1988e-01, 1.6974e-01, -3.2957e-01,\n", " 2.3152e-02, -5.8926e-01, 9.2784e-01, 1.8358e-01, 6.9385e-01,\n", " -2.9518e-01, 9.3706e-02, -7.4089e-02, -2.3288e-01, 4.5474e-01,\n", " -3.7577e-01, 1.8794e-01, -7.1556e-01, -5.2221e-03, 6.3141e-01,\n", " -3.0712e-01, -1.7799e-01, 3.4922e-02, -7.6832e-01, -1.5140e-01,\n", " 1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01, 3.7399e-01,\n", " -6.4216e-01, -7.3713e-01, 1.1034e-01, -1.4378e-01],\n", " [-3.0783e-01, 7.0619e-01, 2.8843e-01, 3.4486e-01, -3.1416e-02,\n", " -5.5595e-01, -2.5893e-01, 3.7422e-01, 3.1599e-01, -1.7643e-02,\n", " 2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02, 1.7674e-01,\n", " -2.6358e-01, 6.5556e-01, -6.6972e-01, 2.4392e-01, -5.5597e-01,\n", " -5.4574e-01, -4.5712e-01, 2.6134e-01, 4.2726e-01, -1.7113e-02,\n", " -5.0937e-01, 6.9873e-02, 2.8159e-01, 4.4168e-02, -5.9215e-02,\n", " 5.3164e-01, 1.4104e-01, -1.7418e-01, 6.2521e-01, 3.4052e-01,\n", " -1.7095e-01, -3.7818e-01, 6.7129e-01, 3.5225e-03, 2.0033e-01,\n", " 2.6244e-01, 1.0848e-01, -4.6903e-03, -8.2113e-02, 1.2762e-01,\n", " -1.8695e-01, -2.9354e-01, 2.2579e-01, 1.6966e-02, 3.7529e-01,\n", " -4.1212e-02, 5.5560e-01, -4.2108e-01, -5.6336e-01, 2.0530e-02,\n", " 3.1856e-01, -1.6777e-01, 2.0985e-01, -3.4052e-01, 6.5363e-01,\n", " -6.8536e-01, -9.1188e-02, 4.7263e-01, -4.1575e-01]],\n", "\n", " [[-4.3091e-01, 4.7975e-02, -6.4154e-01, 7.8851e-01, -2.6898e-01,\n", " -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\n", " 6.2292e-01, -5.1763e-01, 5.1943e-01, -4.2000e-01, 5.3167e-01,\n", " -2.8981e-01, 4.0898e-01, 3.6800e-01, 5.1437e-01, -2.4354e-01,\n", " -4.3747e-01, 5.0437e-01, 2.3844e-01, 8.9447e-01, 3.0840e-01,\n", " -2.6264e-01, 7.8487e-01, 2.0361e-01, -4.4836e-01, 2.9879e-01,\n", " 3.2300e-02, 3.8987e-01, 8.8484e-01, 2.8142e-01, -5.2596e-01,\n", " -2.4904e-02, -6.4482e-01, 9.4409e-01, 7.2259e-01, 6.7215e-01,\n", " -8.2231e-01, 1.9351e-01, -8.7342e-02, 7.0266e-02, 9.5666e-02,\n", " -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02, 4.4018e-01,\n", " -3.8727e-01, -4.3340e-01, 5.1425e-01, -8.3512e-01, -3.8365e-02,\n", " 6.5514e-02, 1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\n", " -4.2758e-01, -8.9924e-01, 1.4681e-01, -5.5334e-01],\n", " [-3.9027e-01, 6.9603e-01, 4.5691e-01, 1.6166e-01, 7.7914e-02,\n", " -3.6820e-01, 3.5885e-01, 2.6877e-01, -4.4138e-01, -1.6789e-02,\n", " -1.9538e-01, 1.2826e-01, -7.0902e-01, 5.8229e-01, -5.2308e-02,\n", " -4.3843e-01, 5.0442e-01, 1.8963e-01, 2.9756e-01, -2.1835e-01,\n", " -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\n", " 1.9278e-01, 9.0932e-02, -5.2118e-02, 4.5367e-01, 1.5111e-01,\n", " 5.1936e-01, 3.5247e-02, -3.8751e-02, -1.4526e-01, 5.1607e-01,\n", " 2.3604e-02, -4.8188e-02, 7.6434e-01, 3.3253e-01, -2.4698e-01,\n", " 4.3771e-03, 1.0644e-02, 8.0129e-02, -4.2507e-01, -5.0781e-01,\n", " -1.4674e-01, -2.0134e-01, -3.1696e-01, 1.2785e-01, 3.3862e-02,\n", " -1.8421e-02, 5.6756e-01, -1.9796e-01, -2.4455e-01, 6.6150e-02,\n", " 4.8072e-01, -5.5249e-01, 3.9305e-01, 3.4074e-02, 1.3419e-01,\n", " -5.0839e-01, 3.6208e-01, 5.5418e-01, -3.4569e-01]],\n", "\n", " [[-4.4933e-01, -7.1931e-02, 5.0550e-03, 3.1785e-01, -2.0353e-01,\n", " -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\n", " 6.0992e-01, -3.2334e-01, 9.8982e-02, -6.3662e-03, 2.9666e-01,\n", " 2.6827e-01, 2.6206e-01, 1.5524e-01, -1.4986e-01, -3.7728e-01,\n", " -2.4287e-01, 5.9968e-01, -1.5402e-02, 7.1346e-01, 6.4422e-02,\n", " -3.3859e-01, 7.1390e-01, 2.8849e-02, 1.9976e-01, 4.0740e-01,\n", " -2.5490e-01, 4.9943e-01, 2.1258e-01, 3.8105e-02, -7.4817e-01,\n", " -4.9476e-01, -3.4258e-01, 8.5370e-01, -4.7424e-02, 2.3023e-03,\n", " 7.6213e-02, -2.0977e-01, -5.4353e-01, 7.5130e-02, 4.5926e-02,\n", " -2.5807e-01, -4.3763e-01, 5.4502e-04, -3.5419e-01, 3.9410e-01,\n", " 9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\n", " -1.8388e-01, -3.3026e-01, 4.2534e-01, -6.2395e-01, -4.9245e-01,\n", " -4.3765e-01, -8.1805e-01, 3.7798e-01, -2.5220e-01],\n", " [-1.9273e-01, 9.1169e-01, 4.3890e-01, 1.0174e-01, -1.9656e-02,\n", " -3.9100e-01, -6.5023e-01, 3.5940e-01, 4.9301e-01, 1.7146e-01,\n", " 7.3839e-02, -7.8011e-01, -6.7214e-01, 3.3858e-01, 1.7792e-01,\n", " 2.6100e-01, 6.7196e-01, -3.3304e-02, 7.4288e-01, -5.9793e-01,\n", " -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02, 3.9973e-01,\n", " 1.0201e-01, 1.4956e-01, 6.1471e-02, 3.4410e-01, 4.2557e-02,\n", " 6.9241e-01, -6.9050e-01, -9.9599e-02, 2.7794e-01, 2.8065e-01,\n", " 7.2173e-02, 6.3955e-03, 7.8340e-01, -1.9722e-01, -2.8579e-01,\n", " -6.8728e-02, 3.1987e-01, 8.2484e-02, -1.4364e-01, -4.0027e-01,\n", " -1.0889e-01, -1.0124e-01, -3.7705e-02, 6.1753e-01, 3.5287e-01,\n", " -2.5209e-01, 7.4057e-02, -5.3195e-01, -6.3228e-01, 1.0961e-01,\n", " 3.5351e-01, -6.0642e-01, 3.5917e-01, -1.7134e-01, 8.0014e-01,\n", " -6.3953e-01, -3.3486e-01, 1.1678e-01, -3.5628e-01]],\n", "\n", " [[-2.3718e-01, 7.2870e-01, 3.3308e-01, 2.0858e-01, -2.3181e-01,\n", " -6.6301e-01, -6.4745e-01, 1.3262e-01, 4.8326e-01, 6.6392e-02,\n", " 6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02, 3.4328e-01,\n", " 5.9002e-01, 6.3913e-01, -9.9936e-02, 6.0167e-01, -6.4984e-01,\n", " -1.3278e-01, 5.5604e-01, -2.1617e-01, 6.7785e-01, 4.6192e-01,\n", " -2.8609e-01, 6.6761e-01, 1.2330e-01, 1.9491e-01, 2.3275e-01,\n", " 4.1373e-01, -6.0354e-01, 8.9942e-02, 3.4765e-01, -4.1777e-01,\n", " 8.5970e-03, -2.2424e-01, 8.6788e-01, -2.3015e-01, -1.3828e-01,\n", " 5.8865e-02, 1.4415e-01, -4.8419e-01, 1.6516e-01, -2.7493e-01,\n", " -2.1732e-01, -2.4245e-01, 1.6697e-01, 4.6947e-01, 5.7996e-01,\n", " -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\n", " 2.2014e-01, -6.1083e-01, 4.0197e-01, -6.2808e-01, 7.9478e-01,\n", " -5.4961e-01, -6.7529e-01, 1.5489e-02, -2.9274e-01],\n", " [-3.6078e-01, 6.9189e-01, 6.1440e-01, 6.4958e-01, -4.3455e-01,\n", " -3.5583e-01, -7.3222e-01, -8.7517e-01, 6.3373e-01, -2.2112e-03,\n", " 2.9666e-01, -7.9231e-01, -5.1286e-01, 5.6895e-01, 1.2489e-01,\n", " 7.5713e-01, 6.4310e-01, 6.4566e-01, 8.3428e-01, -6.3758e-01,\n", " -8.9328e-01, -1.6739e-01, -1.3025e-01, 5.3928e-02, 2.3477e-01,\n", " -9.2187e-01, 7.0911e-01, 4.6542e-02, -2.4542e-01, 1.0799e-02,\n", " 8.8081e-01, -3.7415e-01, 5.2033e-01, 1.5552e-02, -5.1183e-01,\n", " 2.1724e-01, -8.0264e-01, 8.7225e-01, 5.0256e-01, -1.8578e-01,\n", " -1.4407e-01, -6.4479e-01, -7.9479e-01, 4.0860e-01, -2.7567e-01,\n", " 9.1192e-04, -3.5091e-01, 3.0913e-01, 8.0915e-01, 8.8322e-01,\n", " -4.6345e-01, 6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\n", " 7.7383e-01, -8.5906e-01, 5.4155e-01, 9.6536e-01, 7.4088e-01,\n", " -5.4469e-01, -8.6252e-02, 9.5525e-01, -9.2331e-01]],\n", "\n", " [[-4.0418e-01, 5.5571e-01, 5.8886e-01, 6.7950e-01, -5.3868e-01,\n", " -6.0882e-01, -7.3359e-01, -8.8612e-01, 6.2786e-01, -5.4523e-02,\n", " 5.7679e-01, -8.6235e-01, -3.5407e-01, 3.5055e-01, 2.2463e-01,\n", " 8.5547e-01, 6.4569e-01, 6.2466e-01, 7.5043e-01, -6.7614e-01,\n", " -8.8315e-01, 3.6020e-01, -9.6990e-02, 6.7707e-01, 2.9608e-01,\n", " -9.3966e-01, 8.0311e-01, 8.0575e-02, -2.5028e-01, 1.8937e-01,\n", " 8.5196e-01, -3.1190e-01, 5.9931e-01, 1.1915e-01, -7.4333e-01,\n", " 2.9976e-01, -8.6610e-01, 9.2273e-01, 4.9476e-01, -6.9907e-02,\n", " -3.3817e-02, -6.8751e-01, -8.7660e-01, 4.9436e-01, -1.5151e-01,\n", " -1.1269e-01, -4.6676e-01, 4.0701e-01, 7.6854e-01, 9.3047e-01,\n", " -4.3576e-01, 5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\n", " 7.7006e-01, -8.6413e-01, 5.6022e-01, 9.5810e-01, 7.2682e-01,\n", " -4.5427e-01, -2.5659e-01, 9.5853e-01, -9.2379e-01],\n", " [-7.7460e-01, 9.9026e-01, 6.3722e-01, 2.0712e-01, -3.6535e-01,\n", " -5.1381e-01, -9.8802e-01, -9.2029e-01, 9.4324e-01, 1.2037e-02,\n", " 5.6740e-01, -9.2826e-01, -7.5338e-01, 9.8160e-01, 8.7260e-02,\n", " 7.5755e-01, 6.3618e-01, 9.7823e-01, 9.8206e-01, -6.6112e-01,\n", " -9.9476e-01, -2.1120e-01, -9.0182e-02, 2.4394e-01, 2.6934e-01,\n", " -9.1776e-01, 4.5227e-01, 9.6771e-02, 2.4004e-01, 1.9161e-01,\n", " 9.6763e-01, -6.2995e-01, 4.5209e-01, -7.3755e-01, 1.7895e-01,\n", " 8.2790e-01, -7.4495e-01, 9.3048e-01, 6.8724e-01, -2.2175e-01,\n", " 7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\n", " 1.0962e-02, -3.9790e-01, -5.0389e-01, 8.2996e-01, 9.7687e-01,\n", " -9.1826e-01, 8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\n", " 8.0700e-01, -9.9238e-01, 7.9356e-01, 9.7202e-01, 8.6634e-01,\n", " -9.6564e-01, 8.0110e-01, 9.8311e-01, -9.5971e-01]],\n", "\n", " [[-7.8544e-01, 9.8591e-01, 6.1879e-01, 2.5189e-01, -4.5887e-01,\n", " -5.9831e-01, -9.8791e-01, -9.2568e-01, 9.4309e-01, -3.7440e-02,\n", " 6.7137e-01, -9.4777e-01, -6.6153e-01, 9.7169e-01, 1.8339e-01,\n", " 8.5464e-01, 6.4561e-01, 9.7789e-01, 9.7138e-01, -6.9134e-01,\n", " -9.9371e-01, 2.8951e-01, -5.6722e-02, 5.8515e-01, 3.1130e-01,\n", " -9.3571e-01, 5.6603e-01, 1.3169e-01, 2.1265e-01, 2.8412e-01,\n", " 9.6472e-01, -6.0069e-01, 5.2081e-01, -7.0690e-01, 7.3823e-02,\n", " 8.5549e-01, -7.9405e-01, 9.5622e-01, 6.7850e-01, -1.1331e-01,\n", " 8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\n", " -9.5556e-02, -4.8684e-01, -4.8504e-01, 7.9844e-01, 9.8674e-01,\n", " -9.1737e-01, 7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\n", " 8.0822e-01, -9.9301e-01, 8.0589e-01, 9.6631e-01, 8.5895e-01,\n", " -9.5692e-01, 7.8279e-01, 9.8394e-01, -9.6014e-01],\n", " [-8.9920e-01, 9.9750e-01, 6.7051e-01, -1.4098e-01, -2.9074e-01,\n", " -4.4487e-01, -9.9862e-01, -9.4112e-01, 9.8095e-01, 1.8637e-02,\n", " 6.6284e-01, -9.7143e-01, -8.7824e-01, 9.9706e-01, 5.6382e-02,\n", " 7.5856e-01, 6.5313e-01, 9.8820e-01, 9.9701e-01, -6.9944e-01,\n", " -9.9922e-01, -2.5071e-01, -5.8678e-02, 3.5966e-01, 2.8802e-01,\n", " -9.1436e-01, 3.4018e-01, 1.3987e-01, 4.1294e-01, 2.1804e-01,\n", " 9.8001e-01, -7.9156e-01, 3.8970e-01, -8.6485e-01, 5.5832e-01,\n", " 9.3225e-01, -6.9751e-01, 9.6238e-01, 7.7753e-01, -2.4782e-01,\n", " 9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\n", " 2.0784e-02, -4.3880e-01, -8.0816e-01, 8.4524e-01, 9.9437e-01,\n", " -9.5786e-01, 9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\n", " 8.3064e-01, -9.9141e-01, 8.9800e-01, 9.7707e-01, 9.1796e-01,\n", " -9.9589e-01, 9.2743e-01, 9.9109e-01, -9.7968e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([6, 7])\n", "dec_state: tensor([[[-0.7206, 0.6213, 0.5436, 0.1886, -0.2994, 0.3783, 0.0315,\n", " -0.1871, 0.9745, -0.8764, -0.8257, -0.9830, -0.7669, 0.9504,\n", " 0.3022, 0.6895, 0.7214, 0.9409, 0.9041, 0.8821, -0.5206,\n", " 0.6129, 0.2903, 0.8618, -0.4258, -0.9400, 0.6022, -0.2002,\n", " -0.5942, -0.1767, 0.1013, 0.3639, 0.8019, -0.1549, -0.4371,\n", " 0.7334, 0.7135, 0.8354, -0.5387, -0.7037, -0.5146, -0.6751,\n", " -0.9065, 0.4725, -0.9622, -0.7213, -0.8347, -0.4516, -0.2353,\n", " 0.9881, 0.9388, 0.4682, -0.9875, 0.4803, -0.9889, 0.6287,\n", " -0.9317, -0.8271, 0.9675, -0.4700, -0.9530, 0.9604, 0.9259,\n", " 0.3347],\n", " [-0.8522, 0.9939, -0.1190, 0.7899, -0.0856, -0.2731, -0.9515,\n", " -0.9057, 0.4352, -0.7740, 0.1122, -0.9964, -0.5755, 0.9971,\n", " 0.1951, 0.6782, 0.9266, -0.2149, -0.6926, 0.9757, 0.3361,\n", " -0.9201, -0.8640, 0.7603, -0.7016, -0.9080, -0.2927, -0.7655,\n", " -0.6946, -0.9294, -0.7387, -0.0666, 0.5382, -0.2275, -0.8607,\n", " 0.9876, -0.9522, -0.5782, 0.9243, 0.0298, 0.4144, -0.5416,\n", " -0.1760, 0.8995, -0.9746, -0.8764, -0.8308, -0.5480, 0.7530,\n", " 0.9936, 0.9133, 0.9833, 0.8200, -0.8087, -0.9930, -0.8474,\n", " -0.8603, 0.9635, 0.5955, -0.8644, -0.9778, 0.9941, 0.4020,\n", " 0.9467]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.8919e-01, 3.4259e-01, 3.1522e-01, -4.7506e-01, -5.8994e-01,\n", " 5.1473e-01, 5.6873e-02, 5.4040e-01, -3.3129e-01, -1.3599e-01,\n", " 4.1210e-01, 2.9224e-01, 4.4804e-01, -2.0969e-01, 1.8312e-01,\n", " -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\n", " 9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\n", " -7.9656e-02, 8.3929e-01, 4.3339e-01, 3.9920e-01, 4.5494e-01,\n", " -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\n", " -1.3184e-01, 2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\n", " -1.2202e-01, -1.8331e-01, 1.9878e-01, 3.4604e-01, 4.5695e-01,\n", " -1.2873e-01, 1.2538e-01, 9.8116e-02, -5.7898e-01, -1.9313e-01,\n", " 3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02, 1.4781e-01,\n", " 4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\n", " 4.2793e-01, -1.4875e-02, -1.8840e-01, 1.0795e-02],\n", " [-5.6161e-02, 5.1079e-01, 2.5469e-01, 4.0636e-01, -3.6313e-01,\n", " 1.5495e-01, -9.8928e-02, 1.4182e-01, -7.7240e-02, -2.6764e-01,\n", " 2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02, 3.2069e-01,\n", " -1.9700e-01, 6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\n", " -6.0447e-01, -5.2675e-01, 5.4918e-01, 3.0957e-01, -3.8066e-01,\n", " -5.1973e-01, 7.1569e-02, 5.6027e-01, -1.1235e-02, 1.3392e-02,\n", " 1.8581e-01, 3.8664e-01, -6.3076e-01, 6.1353e-01, 1.7132e-01,\n", " -2.1614e-02, -4.0260e-01, 7.6765e-01, -6.0879e-01, 2.6077e-01,\n", " -7.0112e-02, 3.3747e-01, -6.6588e-01, -2.1261e-01, 7.7419e-02,\n", " -3.0452e-01, -3.6169e-01, 2.3957e-01, -2.0789e-02, 4.0888e-01,\n", " 1.9174e-01, 6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\n", " 1.3132e-01, 3.5580e-02, 3.3620e-01, -3.2242e-01, 2.6653e-01,\n", " -6.5847e-01, 3.5521e-01, 6.4256e-01, -4.4652e-01]],\n", "\n", " [[ 3.0272e-01, 2.5549e-01, -6.7423e-01, 8.7988e-01, -4.8633e-01,\n", " -4.3515e-01, 1.2682e-01, 7.5875e-01, 1.4521e-01, -3.9192e-01,\n", " 3.5380e-01, -1.7771e-03, 4.2796e-01, -6.6608e-01, 5.5359e-01,\n", " 4.9745e-01, 3.8194e-01, 1.6847e-01, 1.9478e-01, -3.7168e-01,\n", " -3.1005e-01, 2.3350e-01, 1.3845e-02, 8.2973e-01, 4.7779e-01,\n", " -4.5664e-01, 8.1294e-01, 2.1875e-01, 3.5033e-02, 2.0797e-01,\n", " 1.3223e-01, 9.8914e-02, 8.1988e-01, 1.6974e-01, -3.2957e-01,\n", " 2.3152e-02, -5.8926e-01, 9.2784e-01, 1.8358e-01, 6.9385e-01,\n", " -2.9518e-01, 9.3706e-02, -7.4089e-02, -2.3288e-01, 4.5474e-01,\n", " -3.7577e-01, 1.8794e-01, -7.1556e-01, -5.2221e-03, 6.3141e-01,\n", " -3.0712e-01, -1.7799e-01, 3.4922e-02, -7.6832e-01, -1.5140e-01,\n", " 1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01, 3.7399e-01,\n", " -6.4216e-01, -7.3713e-01, 1.1034e-01, -1.4378e-01],\n", " [-3.0783e-01, 7.0619e-01, 2.8843e-01, 3.4486e-01, -3.1416e-02,\n", " -5.5595e-01, -2.5893e-01, 3.7422e-01, 3.1599e-01, -1.7643e-02,\n", " 2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02, 1.7674e-01,\n", " -2.6358e-01, 6.5556e-01, -6.6972e-01, 2.4392e-01, -5.5597e-01,\n", " -5.4574e-01, -4.5712e-01, 2.6134e-01, 4.2726e-01, -1.7113e-02,\n", " -5.0937e-01, 6.9873e-02, 2.8159e-01, 4.4168e-02, -5.9215e-02,\n", " 5.3164e-01, 1.4104e-01, -1.7418e-01, 6.2521e-01, 3.4052e-01,\n", " -1.7095e-01, -3.7818e-01, 6.7129e-01, 3.5225e-03, 2.0033e-01,\n", " 2.6244e-01, 1.0848e-01, -4.6903e-03, -8.2113e-02, 1.2762e-01,\n", " -1.8695e-01, -2.9354e-01, 2.2579e-01, 1.6966e-02, 3.7529e-01,\n", " -4.1212e-02, 5.5560e-01, -4.2108e-01, -5.6336e-01, 2.0530e-02,\n", " 3.1856e-01, -1.6777e-01, 2.0985e-01, -3.4052e-01, 6.5363e-01,\n", " -6.8536e-01, -9.1188e-02, 4.7263e-01, -4.1575e-01]],\n", "\n", " [[-4.3091e-01, 4.7975e-02, -6.4154e-01, 7.8851e-01, -2.6898e-01,\n", " -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\n", " 6.2292e-01, -5.1763e-01, 5.1943e-01, -4.2000e-01, 5.3167e-01,\n", " -2.8981e-01, 4.0898e-01, 3.6800e-01, 5.1437e-01, -2.4354e-01,\n", " -4.3747e-01, 5.0437e-01, 2.3844e-01, 8.9447e-01, 3.0840e-01,\n", " -2.6264e-01, 7.8487e-01, 2.0361e-01, -4.4836e-01, 2.9879e-01,\n", " 3.2300e-02, 3.8987e-01, 8.8484e-01, 2.8142e-01, -5.2596e-01,\n", " -2.4904e-02, -6.4482e-01, 9.4409e-01, 7.2259e-01, 6.7215e-01,\n", " -8.2231e-01, 1.9351e-01, -8.7342e-02, 7.0266e-02, 9.5666e-02,\n", " -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02, 4.4018e-01,\n", " -3.8727e-01, -4.3340e-01, 5.1425e-01, -8.3512e-01, -3.8365e-02,\n", " 6.5514e-02, 1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\n", " -4.2758e-01, -8.9924e-01, 1.4681e-01, -5.5334e-01],\n", " [-3.9027e-01, 6.9603e-01, 4.5691e-01, 1.6166e-01, 7.7914e-02,\n", " -3.6820e-01, 3.5885e-01, 2.6877e-01, -4.4138e-01, -1.6789e-02,\n", " -1.9538e-01, 1.2826e-01, -7.0902e-01, 5.8229e-01, -5.2308e-02,\n", " -4.3843e-01, 5.0442e-01, 1.8963e-01, 2.9756e-01, -2.1835e-01,\n", " -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\n", " 1.9278e-01, 9.0932e-02, -5.2118e-02, 4.5367e-01, 1.5111e-01,\n", " 5.1936e-01, 3.5247e-02, -3.8751e-02, -1.4526e-01, 5.1607e-01,\n", " 2.3604e-02, -4.8188e-02, 7.6434e-01, 3.3253e-01, -2.4698e-01,\n", " 4.3771e-03, 1.0644e-02, 8.0129e-02, -4.2507e-01, -5.0781e-01,\n", " -1.4674e-01, -2.0134e-01, -3.1696e-01, 1.2785e-01, 3.3862e-02,\n", " -1.8421e-02, 5.6756e-01, -1.9796e-01, -2.4455e-01, 6.6150e-02,\n", " 4.8072e-01, -5.5249e-01, 3.9305e-01, 3.4074e-02, 1.3419e-01,\n", " -5.0839e-01, 3.6208e-01, 5.5418e-01, -3.4569e-01]],\n", "\n", " [[-4.4933e-01, -7.1931e-02, 5.0550e-03, 3.1785e-01, -2.0353e-01,\n", " -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\n", " 6.0992e-01, -3.2334e-01, 9.8982e-02, -6.3662e-03, 2.9666e-01,\n", " 2.6827e-01, 2.6206e-01, 1.5524e-01, -1.4986e-01, -3.7728e-01,\n", " -2.4287e-01, 5.9968e-01, -1.5402e-02, 7.1346e-01, 6.4422e-02,\n", " -3.3859e-01, 7.1390e-01, 2.8849e-02, 1.9976e-01, 4.0740e-01,\n", " -2.5490e-01, 4.9943e-01, 2.1258e-01, 3.8105e-02, -7.4817e-01,\n", " -4.9476e-01, -3.4258e-01, 8.5370e-01, -4.7424e-02, 2.3023e-03,\n", " 7.6213e-02, -2.0977e-01, -5.4353e-01, 7.5130e-02, 4.5926e-02,\n", " -2.5807e-01, -4.3763e-01, 5.4502e-04, -3.5419e-01, 3.9410e-01,\n", " 9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\n", " -1.8388e-01, -3.3026e-01, 4.2534e-01, -6.2395e-01, -4.9245e-01,\n", " -4.3765e-01, -8.1805e-01, 3.7798e-01, -2.5220e-01],\n", " [-1.9273e-01, 9.1169e-01, 4.3890e-01, 1.0174e-01, -1.9656e-02,\n", " -3.9100e-01, -6.5023e-01, 3.5940e-01, 4.9301e-01, 1.7146e-01,\n", " 7.3839e-02, -7.8011e-01, -6.7214e-01, 3.3858e-01, 1.7792e-01,\n", " 2.6100e-01, 6.7196e-01, -3.3304e-02, 7.4288e-01, -5.9793e-01,\n", " -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02, 3.9973e-01,\n", " 1.0201e-01, 1.4956e-01, 6.1471e-02, 3.4410e-01, 4.2557e-02,\n", " 6.9241e-01, -6.9050e-01, -9.9599e-02, 2.7794e-01, 2.8065e-01,\n", " 7.2173e-02, 6.3955e-03, 7.8340e-01, -1.9722e-01, -2.8579e-01,\n", " -6.8728e-02, 3.1987e-01, 8.2484e-02, -1.4364e-01, -4.0027e-01,\n", " -1.0889e-01, -1.0124e-01, -3.7705e-02, 6.1753e-01, 3.5287e-01,\n", " -2.5209e-01, 7.4057e-02, -5.3195e-01, -6.3228e-01, 1.0961e-01,\n", " 3.5351e-01, -6.0642e-01, 3.5917e-01, -1.7134e-01, 8.0014e-01,\n", " -6.3953e-01, -3.3486e-01, 1.1678e-01, -3.5628e-01]],\n", "\n", " [[-2.3718e-01, 7.2870e-01, 3.3308e-01, 2.0858e-01, -2.3181e-01,\n", " -6.6301e-01, -6.4745e-01, 1.3262e-01, 4.8326e-01, 6.6392e-02,\n", " 6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02, 3.4328e-01,\n", " 5.9002e-01, 6.3913e-01, -9.9936e-02, 6.0167e-01, -6.4984e-01,\n", " -1.3278e-01, 5.5604e-01, -2.1617e-01, 6.7785e-01, 4.6192e-01,\n", " -2.8609e-01, 6.6761e-01, 1.2330e-01, 1.9491e-01, 2.3275e-01,\n", " 4.1373e-01, -6.0354e-01, 8.9942e-02, 3.4765e-01, -4.1777e-01,\n", " 8.5970e-03, -2.2424e-01, 8.6788e-01, -2.3015e-01, -1.3828e-01,\n", " 5.8865e-02, 1.4415e-01, -4.8419e-01, 1.6516e-01, -2.7493e-01,\n", " -2.1732e-01, -2.4245e-01, 1.6697e-01, 4.6947e-01, 5.7996e-01,\n", " -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\n", " 2.2014e-01, -6.1083e-01, 4.0197e-01, -6.2808e-01, 7.9478e-01,\n", " -5.4961e-01, -6.7529e-01, 1.5489e-02, -2.9274e-01],\n", " [-3.6078e-01, 6.9189e-01, 6.1440e-01, 6.4958e-01, -4.3455e-01,\n", " -3.5583e-01, -7.3222e-01, -8.7517e-01, 6.3373e-01, -2.2112e-03,\n", " 2.9666e-01, -7.9231e-01, -5.1286e-01, 5.6895e-01, 1.2489e-01,\n", " 7.5713e-01, 6.4310e-01, 6.4566e-01, 8.3428e-01, -6.3758e-01,\n", " -8.9328e-01, -1.6739e-01, -1.3025e-01, 5.3928e-02, 2.3477e-01,\n", " -9.2187e-01, 7.0911e-01, 4.6542e-02, -2.4542e-01, 1.0799e-02,\n", " 8.8081e-01, -3.7415e-01, 5.2033e-01, 1.5552e-02, -5.1183e-01,\n", " 2.1724e-01, -8.0264e-01, 8.7225e-01, 5.0256e-01, -1.8578e-01,\n", " -1.4407e-01, -6.4479e-01, -7.9479e-01, 4.0860e-01, -2.7567e-01,\n", " 9.1192e-04, -3.5091e-01, 3.0913e-01, 8.0915e-01, 8.8322e-01,\n", " -4.6345e-01, 6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\n", " 7.7383e-01, -8.5906e-01, 5.4155e-01, 9.6536e-01, 7.4088e-01,\n", " -5.4469e-01, -8.6252e-02, 9.5525e-01, -9.2331e-01]],\n", "\n", " [[-4.0418e-01, 5.5571e-01, 5.8886e-01, 6.7950e-01, -5.3868e-01,\n", " -6.0882e-01, -7.3359e-01, -8.8612e-01, 6.2786e-01, -5.4523e-02,\n", " 5.7679e-01, -8.6235e-01, -3.5407e-01, 3.5055e-01, 2.2463e-01,\n", " 8.5547e-01, 6.4569e-01, 6.2466e-01, 7.5043e-01, -6.7614e-01,\n", " -8.8315e-01, 3.6020e-01, -9.6990e-02, 6.7707e-01, 2.9608e-01,\n", " -9.3966e-01, 8.0311e-01, 8.0575e-02, -2.5028e-01, 1.8937e-01,\n", " 8.5196e-01, -3.1190e-01, 5.9931e-01, 1.1915e-01, -7.4333e-01,\n", " 2.9976e-01, -8.6610e-01, 9.2273e-01, 4.9476e-01, -6.9907e-02,\n", " -3.3817e-02, -6.8751e-01, -8.7660e-01, 4.9436e-01, -1.5151e-01,\n", " -1.1269e-01, -4.6676e-01, 4.0701e-01, 7.6854e-01, 9.3047e-01,\n", " -4.3576e-01, 5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\n", " 7.7006e-01, -8.6413e-01, 5.6022e-01, 9.5810e-01, 7.2682e-01,\n", " -4.5427e-01, -2.5659e-01, 9.5853e-01, -9.2379e-01],\n", " [-7.7460e-01, 9.9026e-01, 6.3722e-01, 2.0712e-01, -3.6535e-01,\n", " -5.1381e-01, -9.8802e-01, -9.2029e-01, 9.4324e-01, 1.2037e-02,\n", " 5.6740e-01, -9.2826e-01, -7.5338e-01, 9.8160e-01, 8.7260e-02,\n", " 7.5755e-01, 6.3618e-01, 9.7823e-01, 9.8206e-01, -6.6112e-01,\n", " -9.9476e-01, -2.1120e-01, -9.0182e-02, 2.4394e-01, 2.6934e-01,\n", " -9.1776e-01, 4.5227e-01, 9.6771e-02, 2.4004e-01, 1.9161e-01,\n", " 9.6763e-01, -6.2995e-01, 4.5209e-01, -7.3755e-01, 1.7895e-01,\n", " 8.2790e-01, -7.4495e-01, 9.3048e-01, 6.8724e-01, -2.2175e-01,\n", " 7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\n", " 1.0962e-02, -3.9790e-01, -5.0389e-01, 8.2996e-01, 9.7687e-01,\n", " -9.1826e-01, 8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\n", " 8.0700e-01, -9.9238e-01, 7.9356e-01, 9.7202e-01, 8.6634e-01,\n", " -9.6564e-01, 8.0110e-01, 9.8311e-01, -9.5971e-01]],\n", "\n", " [[-7.8544e-01, 9.8591e-01, 6.1879e-01, 2.5189e-01, -4.5887e-01,\n", " -5.9831e-01, -9.8791e-01, -9.2568e-01, 9.4309e-01, -3.7440e-02,\n", " 6.7137e-01, -9.4777e-01, -6.6153e-01, 9.7169e-01, 1.8339e-01,\n", " 8.5464e-01, 6.4561e-01, 9.7789e-01, 9.7138e-01, -6.9134e-01,\n", " -9.9371e-01, 2.8951e-01, -5.6722e-02, 5.8515e-01, 3.1130e-01,\n", " -9.3571e-01, 5.6603e-01, 1.3169e-01, 2.1265e-01, 2.8412e-01,\n", " 9.6472e-01, -6.0069e-01, 5.2081e-01, -7.0690e-01, 7.3823e-02,\n", " 8.5549e-01, -7.9405e-01, 9.5622e-01, 6.7850e-01, -1.1331e-01,\n", " 8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\n", " -9.5556e-02, -4.8684e-01, -4.8504e-01, 7.9844e-01, 9.8674e-01,\n", " -9.1737e-01, 7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\n", " 8.0822e-01, -9.9301e-01, 8.0589e-01, 9.6631e-01, 8.5895e-01,\n", " -9.5692e-01, 7.8279e-01, 9.8394e-01, -9.6014e-01],\n", " [-8.9920e-01, 9.9750e-01, 6.7051e-01, -1.4098e-01, -2.9074e-01,\n", " -4.4487e-01, -9.9862e-01, -9.4112e-01, 9.8095e-01, 1.8637e-02,\n", " 6.6284e-01, -9.7143e-01, -8.7824e-01, 9.9706e-01, 5.6382e-02,\n", " 7.5856e-01, 6.5313e-01, 9.8820e-01, 9.9701e-01, -6.9944e-01,\n", " -9.9922e-01, -2.5071e-01, -5.8678e-02, 3.5966e-01, 2.8802e-01,\n", " -9.1436e-01, 3.4018e-01, 1.3987e-01, 4.1294e-01, 2.1804e-01,\n", " 9.8001e-01, -7.9156e-01, 3.8970e-01, -8.6485e-01, 5.5832e-01,\n", " 9.3225e-01, -6.9751e-01, 9.6238e-01, 7.7753e-01, -2.4782e-01,\n", " 9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\n", " 2.0784e-02, -4.3880e-01, -8.0816e-01, 8.4524e-01, 9.9437e-01,\n", " -9.5786e-01, 9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\n", " 8.3064e-01, -9.9141e-01, 8.9800e-01, 9.7707e-01, 9.1796e-01,\n", " -9.9589e-01, 9.2743e-01, 9.9109e-01, -9.7968e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([4, 5])\n", "dec_state: tensor([[[-2.7810e-01, 7.1171e-01, -2.7313e-01, 7.6555e-01, 3.4180e-01,\n", " 3.5267e-01, -1.3704e-01, 9.0907e-01, 7.8109e-01, -9.1659e-01,\n", " -7.7033e-01, -9.1442e-01, -7.4031e-01, 9.0447e-01, 1.3443e-01,\n", " 2.0248e-01, 6.8207e-01, 2.9731e-01, -3.5775e-01, 4.4347e-01,\n", " 7.3741e-02, 2.7375e-01, 4.7917e-01, 8.8413e-01, 3.1077e-01,\n", " -9.5665e-01, -3.8454e-01, -2.0550e-01, -7.9606e-01, -5.4857e-01,\n", " -7.7557e-01, 7.3961e-01, -7.6450e-01, 8.2028e-02, -2.6826e-01,\n", " 8.4217e-01, 7.3362e-01, 3.2418e-01, -8.3903e-01, 6.7045e-02,\n", " -4.6349e-01, 1.0682e-01, -4.4147e-01, 6.4809e-01, -7.4248e-01,\n", " -4.1258e-01, 8.1582e-04, 8.5063e-01, -2.6916e-01, 9.8050e-01,\n", " 8.5923e-01, 2.7114e-01, -9.7982e-01, 1.1645e-01, -9.2062e-01,\n", " 6.9792e-01, 5.5972e-02, -6.4944e-01, -3.0894e-02, 8.3212e-01,\n", " -9.6305e-01, 9.7050e-01, 3.6046e-01, 6.2982e-01],\n", " [-3.3856e-01, 9.9583e-01, -4.7812e-01, 8.1460e-01, 1.5086e-01,\n", " -3.5992e-01, -9.6214e-01, -8.8878e-01, -6.7300e-01, 8.2048e-01,\n", " 6.9674e-01, -9.2415e-01, -7.5604e-01, 9.9507e-01, -3.1252e-01,\n", " -8.8202e-01, -2.5001e-01, -7.8275e-01, -3.4824e-01, 8.7833e-01,\n", " 9.3924e-01, -9.3320e-01, 9.2575e-01, 8.4394e-01, 3.0872e-01,\n", " -9.0865e-01, -6.2167e-01, 3.3885e-01, -8.8385e-01, 5.7011e-01,\n", " -7.8066e-01, 7.8853e-01, -1.3503e-01, 4.1457e-01, -9.0867e-01,\n", " -9.3144e-01, 6.6141e-01, -5.3103e-01, 4.2167e-01, 5.2227e-02,\n", " -9.8603e-01, 8.6814e-01, 6.8602e-01, 6.3384e-01, -5.5447e-01,\n", " 5.5702e-01, -8.7117e-01, 3.0328e-01, -2.8999e-01, 7.6483e-01,\n", " 6.8244e-01, 9.2904e-01, 4.5833e-01, -8.4362e-01, -8.8799e-01,\n", " -3.9211e-01, 6.4285e-01, 9.8265e-01, 7.0090e-01, -8.2531e-01,\n", " -9.7944e-01, 9.9252e-01, 2.3537e-01, 9.3108e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.8919e-01, 3.4259e-01, 3.1522e-01, -4.7506e-01, -5.8994e-01,\n", " 5.1473e-01, 5.6873e-02, 5.4040e-01, -3.3129e-01, -1.3599e-01,\n", " 4.1210e-01, 2.9224e-01, 4.4804e-01, -2.0969e-01, 1.8312e-01,\n", " -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\n", " 9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\n", " -7.9656e-02, 8.3929e-01, 4.3339e-01, 3.9920e-01, 4.5494e-01,\n", " -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\n", " -1.3184e-01, 2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\n", " -1.2202e-01, -1.8331e-01, 1.9878e-01, 3.4604e-01, 4.5695e-01,\n", " -1.2873e-01, 1.2538e-01, 9.8116e-02, -5.7898e-01, -1.9313e-01,\n", " 3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02, 1.4781e-01,\n", " 4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\n", " 4.2793e-01, -1.4875e-02, -1.8840e-01, 1.0795e-02],\n", " [-5.6161e-02, 5.1079e-01, 2.5469e-01, 4.0636e-01, -3.6313e-01,\n", " 1.5495e-01, -9.8928e-02, 1.4182e-01, -7.7240e-02, -2.6764e-01,\n", " 2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02, 3.2069e-01,\n", " -1.9700e-01, 6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\n", " -6.0447e-01, -5.2675e-01, 5.4918e-01, 3.0957e-01, -3.8066e-01,\n", " -5.1973e-01, 7.1569e-02, 5.6027e-01, -1.1235e-02, 1.3392e-02,\n", " 1.8581e-01, 3.8664e-01, -6.3076e-01, 6.1353e-01, 1.7132e-01,\n", " -2.1614e-02, -4.0260e-01, 7.6765e-01, -6.0879e-01, 2.6077e-01,\n", " -7.0112e-02, 3.3747e-01, -6.6588e-01, -2.1261e-01, 7.7419e-02,\n", " -3.0452e-01, -3.6169e-01, 2.3957e-01, -2.0789e-02, 4.0888e-01,\n", " 1.9174e-01, 6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\n", " 1.3132e-01, 3.5580e-02, 3.3620e-01, -3.2242e-01, 2.6653e-01,\n", " -6.5847e-01, 3.5521e-01, 6.4256e-01, -4.4652e-01]],\n", "\n", " [[ 3.0272e-01, 2.5549e-01, -6.7423e-01, 8.7988e-01, -4.8633e-01,\n", " -4.3515e-01, 1.2682e-01, 7.5875e-01, 1.4521e-01, -3.9192e-01,\n", " 3.5380e-01, -1.7771e-03, 4.2796e-01, -6.6608e-01, 5.5359e-01,\n", " 4.9745e-01, 3.8194e-01, 1.6847e-01, 1.9478e-01, -3.7168e-01,\n", " -3.1005e-01, 2.3350e-01, 1.3845e-02, 8.2973e-01, 4.7779e-01,\n", " -4.5664e-01, 8.1294e-01, 2.1875e-01, 3.5033e-02, 2.0797e-01,\n", " 1.3223e-01, 9.8914e-02, 8.1988e-01, 1.6974e-01, -3.2957e-01,\n", " 2.3152e-02, -5.8926e-01, 9.2784e-01, 1.8358e-01, 6.9385e-01,\n", " -2.9518e-01, 9.3706e-02, -7.4089e-02, -2.3288e-01, 4.5474e-01,\n", " -3.7577e-01, 1.8794e-01, -7.1556e-01, -5.2221e-03, 6.3141e-01,\n", " -3.0712e-01, -1.7799e-01, 3.4922e-02, -7.6832e-01, -1.5140e-01,\n", " 1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01, 3.7399e-01,\n", " -6.4216e-01, -7.3713e-01, 1.1034e-01, -1.4378e-01],\n", " [-3.0783e-01, 7.0619e-01, 2.8843e-01, 3.4486e-01, -3.1416e-02,\n", " -5.5595e-01, -2.5893e-01, 3.7422e-01, 3.1599e-01, -1.7643e-02,\n", " 2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02, 1.7674e-01,\n", " -2.6358e-01, 6.5556e-01, -6.6972e-01, 2.4392e-01, -5.5597e-01,\n", " -5.4574e-01, -4.5712e-01, 2.6134e-01, 4.2726e-01, -1.7113e-02,\n", " -5.0937e-01, 6.9873e-02, 2.8159e-01, 4.4168e-02, -5.9215e-02,\n", " 5.3164e-01, 1.4104e-01, -1.7418e-01, 6.2521e-01, 3.4052e-01,\n", " -1.7095e-01, -3.7818e-01, 6.7129e-01, 3.5225e-03, 2.0033e-01,\n", " 2.6244e-01, 1.0848e-01, -4.6903e-03, -8.2113e-02, 1.2762e-01,\n", " -1.8695e-01, -2.9354e-01, 2.2579e-01, 1.6966e-02, 3.7529e-01,\n", " -4.1212e-02, 5.5560e-01, -4.2108e-01, -5.6336e-01, 2.0530e-02,\n", " 3.1856e-01, -1.6777e-01, 2.0985e-01, -3.4052e-01, 6.5363e-01,\n", " -6.8536e-01, -9.1188e-02, 4.7263e-01, -4.1575e-01]],\n", "\n", " [[-4.3091e-01, 4.7975e-02, -6.4154e-01, 7.8851e-01, -2.6898e-01,\n", " -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\n", " 6.2292e-01, -5.1763e-01, 5.1943e-01, -4.2000e-01, 5.3167e-01,\n", " -2.8981e-01, 4.0898e-01, 3.6800e-01, 5.1437e-01, -2.4354e-01,\n", " -4.3747e-01, 5.0437e-01, 2.3844e-01, 8.9447e-01, 3.0840e-01,\n", " -2.6264e-01, 7.8487e-01, 2.0361e-01, -4.4836e-01, 2.9879e-01,\n", " 3.2300e-02, 3.8987e-01, 8.8484e-01, 2.8142e-01, -5.2596e-01,\n", " -2.4904e-02, -6.4482e-01, 9.4409e-01, 7.2259e-01, 6.7215e-01,\n", " -8.2231e-01, 1.9351e-01, -8.7342e-02, 7.0266e-02, 9.5666e-02,\n", " -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02, 4.4018e-01,\n", " -3.8727e-01, -4.3340e-01, 5.1425e-01, -8.3512e-01, -3.8365e-02,\n", " 6.5514e-02, 1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\n", " -4.2758e-01, -8.9924e-01, 1.4681e-01, -5.5334e-01],\n", " [-3.9027e-01, 6.9603e-01, 4.5691e-01, 1.6166e-01, 7.7914e-02,\n", " -3.6820e-01, 3.5885e-01, 2.6877e-01, -4.4138e-01, -1.6789e-02,\n", " -1.9538e-01, 1.2826e-01, -7.0902e-01, 5.8229e-01, -5.2308e-02,\n", " -4.3843e-01, 5.0442e-01, 1.8963e-01, 2.9756e-01, -2.1835e-01,\n", " -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\n", " 1.9278e-01, 9.0932e-02, -5.2118e-02, 4.5367e-01, 1.5111e-01,\n", " 5.1936e-01, 3.5247e-02, -3.8751e-02, -1.4526e-01, 5.1607e-01,\n", " 2.3604e-02, -4.8188e-02, 7.6434e-01, 3.3253e-01, -2.4698e-01,\n", " 4.3771e-03, 1.0644e-02, 8.0129e-02, -4.2507e-01, -5.0781e-01,\n", " -1.4674e-01, -2.0134e-01, -3.1696e-01, 1.2785e-01, 3.3862e-02,\n", " -1.8421e-02, 5.6756e-01, -1.9796e-01, -2.4455e-01, 6.6150e-02,\n", " 4.8072e-01, -5.5249e-01, 3.9305e-01, 3.4074e-02, 1.3419e-01,\n", " -5.0839e-01, 3.6208e-01, 5.5418e-01, -3.4569e-01]],\n", "\n", " [[-4.4933e-01, -7.1931e-02, 5.0550e-03, 3.1785e-01, -2.0353e-01,\n", " -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\n", " 6.0992e-01, -3.2334e-01, 9.8982e-02, -6.3662e-03, 2.9666e-01,\n", " 2.6827e-01, 2.6206e-01, 1.5524e-01, -1.4986e-01, -3.7728e-01,\n", " -2.4287e-01, 5.9968e-01, -1.5402e-02, 7.1346e-01, 6.4422e-02,\n", " -3.3859e-01, 7.1390e-01, 2.8849e-02, 1.9976e-01, 4.0740e-01,\n", " -2.5490e-01, 4.9943e-01, 2.1258e-01, 3.8105e-02, -7.4817e-01,\n", " -4.9476e-01, -3.4258e-01, 8.5370e-01, -4.7424e-02, 2.3023e-03,\n", " 7.6213e-02, -2.0977e-01, -5.4353e-01, 7.5130e-02, 4.5926e-02,\n", " -2.5807e-01, -4.3763e-01, 5.4502e-04, -3.5419e-01, 3.9410e-01,\n", " 9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\n", " -1.8388e-01, -3.3026e-01, 4.2534e-01, -6.2395e-01, -4.9245e-01,\n", " -4.3765e-01, -8.1805e-01, 3.7798e-01, -2.5220e-01],\n", " [-1.9273e-01, 9.1169e-01, 4.3890e-01, 1.0174e-01, -1.9656e-02,\n", " -3.9100e-01, -6.5023e-01, 3.5940e-01, 4.9301e-01, 1.7146e-01,\n", " 7.3839e-02, -7.8011e-01, -6.7214e-01, 3.3858e-01, 1.7792e-01,\n", " 2.6100e-01, 6.7196e-01, -3.3304e-02, 7.4288e-01, -5.9793e-01,\n", " -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02, 3.9973e-01,\n", " 1.0201e-01, 1.4956e-01, 6.1471e-02, 3.4410e-01, 4.2557e-02,\n", " 6.9241e-01, -6.9050e-01, -9.9599e-02, 2.7794e-01, 2.8065e-01,\n", " 7.2173e-02, 6.3955e-03, 7.8340e-01, -1.9722e-01, -2.8579e-01,\n", " -6.8728e-02, 3.1987e-01, 8.2484e-02, -1.4364e-01, -4.0027e-01,\n", " -1.0889e-01, -1.0124e-01, -3.7705e-02, 6.1753e-01, 3.5287e-01,\n", " -2.5209e-01, 7.4057e-02, -5.3195e-01, -6.3228e-01, 1.0961e-01,\n", " 3.5351e-01, -6.0642e-01, 3.5917e-01, -1.7134e-01, 8.0014e-01,\n", " -6.3953e-01, -3.3486e-01, 1.1678e-01, -3.5628e-01]],\n", "\n", " [[-2.3718e-01, 7.2870e-01, 3.3308e-01, 2.0858e-01, -2.3181e-01,\n", " -6.6301e-01, -6.4745e-01, 1.3262e-01, 4.8326e-01, 6.6392e-02,\n", " 6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02, 3.4328e-01,\n", " 5.9002e-01, 6.3913e-01, -9.9936e-02, 6.0167e-01, -6.4984e-01,\n", " -1.3278e-01, 5.5604e-01, -2.1617e-01, 6.7785e-01, 4.6192e-01,\n", " -2.8609e-01, 6.6761e-01, 1.2330e-01, 1.9491e-01, 2.3275e-01,\n", " 4.1373e-01, -6.0354e-01, 8.9942e-02, 3.4765e-01, -4.1777e-01,\n", " 8.5970e-03, -2.2424e-01, 8.6788e-01, -2.3015e-01, -1.3828e-01,\n", " 5.8865e-02, 1.4415e-01, -4.8419e-01, 1.6516e-01, -2.7493e-01,\n", " -2.1732e-01, -2.4245e-01, 1.6697e-01, 4.6947e-01, 5.7996e-01,\n", " -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\n", " 2.2014e-01, -6.1083e-01, 4.0197e-01, -6.2808e-01, 7.9478e-01,\n", " -5.4961e-01, -6.7529e-01, 1.5489e-02, -2.9274e-01],\n", " [-3.6078e-01, 6.9189e-01, 6.1440e-01, 6.4958e-01, -4.3455e-01,\n", " -3.5583e-01, -7.3222e-01, -8.7517e-01, 6.3373e-01, -2.2112e-03,\n", " 2.9666e-01, -7.9231e-01, -5.1286e-01, 5.6895e-01, 1.2489e-01,\n", " 7.5713e-01, 6.4310e-01, 6.4566e-01, 8.3428e-01, -6.3758e-01,\n", " -8.9328e-01, -1.6739e-01, -1.3025e-01, 5.3928e-02, 2.3477e-01,\n", " -9.2187e-01, 7.0911e-01, 4.6542e-02, -2.4542e-01, 1.0799e-02,\n", " 8.8081e-01, -3.7415e-01, 5.2033e-01, 1.5552e-02, -5.1183e-01,\n", " 2.1724e-01, -8.0264e-01, 8.7225e-01, 5.0256e-01, -1.8578e-01,\n", " -1.4407e-01, -6.4479e-01, -7.9479e-01, 4.0860e-01, -2.7567e-01,\n", " 9.1192e-04, -3.5091e-01, 3.0913e-01, 8.0915e-01, 8.8322e-01,\n", " -4.6345e-01, 6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\n", " 7.7383e-01, -8.5906e-01, 5.4155e-01, 9.6536e-01, 7.4088e-01,\n", " -5.4469e-01, -8.6252e-02, 9.5525e-01, -9.2331e-01]],\n", "\n", " [[-4.0418e-01, 5.5571e-01, 5.8886e-01, 6.7950e-01, -5.3868e-01,\n", " -6.0882e-01, -7.3359e-01, -8.8612e-01, 6.2786e-01, -5.4523e-02,\n", " 5.7679e-01, -8.6235e-01, -3.5407e-01, 3.5055e-01, 2.2463e-01,\n", " 8.5547e-01, 6.4569e-01, 6.2466e-01, 7.5043e-01, -6.7614e-01,\n", " -8.8315e-01, 3.6020e-01, -9.6990e-02, 6.7707e-01, 2.9608e-01,\n", " -9.3966e-01, 8.0311e-01, 8.0575e-02, -2.5028e-01, 1.8937e-01,\n", " 8.5196e-01, -3.1190e-01, 5.9931e-01, 1.1915e-01, -7.4333e-01,\n", " 2.9976e-01, -8.6610e-01, 9.2273e-01, 4.9476e-01, -6.9907e-02,\n", " -3.3817e-02, -6.8751e-01, -8.7660e-01, 4.9436e-01, -1.5151e-01,\n", " -1.1269e-01, -4.6676e-01, 4.0701e-01, 7.6854e-01, 9.3047e-01,\n", " -4.3576e-01, 5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\n", " 7.7006e-01, -8.6413e-01, 5.6022e-01, 9.5810e-01, 7.2682e-01,\n", " -4.5427e-01, -2.5659e-01, 9.5853e-01, -9.2379e-01],\n", " [-7.7460e-01, 9.9026e-01, 6.3722e-01, 2.0712e-01, -3.6535e-01,\n", " -5.1381e-01, -9.8802e-01, -9.2029e-01, 9.4324e-01, 1.2037e-02,\n", " 5.6740e-01, -9.2826e-01, -7.5338e-01, 9.8160e-01, 8.7260e-02,\n", " 7.5755e-01, 6.3618e-01, 9.7823e-01, 9.8206e-01, -6.6112e-01,\n", " -9.9476e-01, -2.1120e-01, -9.0182e-02, 2.4394e-01, 2.6934e-01,\n", " -9.1776e-01, 4.5227e-01, 9.6771e-02, 2.4004e-01, 1.9161e-01,\n", " 9.6763e-01, -6.2995e-01, 4.5209e-01, -7.3755e-01, 1.7895e-01,\n", " 8.2790e-01, -7.4495e-01, 9.3048e-01, 6.8724e-01, -2.2175e-01,\n", " 7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\n", " 1.0962e-02, -3.9790e-01, -5.0389e-01, 8.2996e-01, 9.7687e-01,\n", " -9.1826e-01, 8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\n", " 8.0700e-01, -9.9238e-01, 7.9356e-01, 9.7202e-01, 8.6634e-01,\n", " -9.6564e-01, 8.0110e-01, 9.8311e-01, -9.5971e-01]],\n", "\n", " [[-7.8544e-01, 9.8591e-01, 6.1879e-01, 2.5189e-01, -4.5887e-01,\n", " -5.9831e-01, -9.8791e-01, -9.2568e-01, 9.4309e-01, -3.7440e-02,\n", " 6.7137e-01, -9.4777e-01, -6.6153e-01, 9.7169e-01, 1.8339e-01,\n", " 8.5464e-01, 6.4561e-01, 9.7789e-01, 9.7138e-01, -6.9134e-01,\n", " -9.9371e-01, 2.8951e-01, -5.6722e-02, 5.8515e-01, 3.1130e-01,\n", " -9.3571e-01, 5.6603e-01, 1.3169e-01, 2.1265e-01, 2.8412e-01,\n", " 9.6472e-01, -6.0069e-01, 5.2081e-01, -7.0690e-01, 7.3823e-02,\n", " 8.5549e-01, -7.9405e-01, 9.5622e-01, 6.7850e-01, -1.1331e-01,\n", " 8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\n", " -9.5556e-02, -4.8684e-01, -4.8504e-01, 7.9844e-01, 9.8674e-01,\n", " -9.1737e-01, 7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\n", " 8.0822e-01, -9.9301e-01, 8.0589e-01, 9.6631e-01, 8.5895e-01,\n", " -9.5692e-01, 7.8279e-01, 9.8394e-01, -9.6014e-01],\n", " [-8.9920e-01, 9.9750e-01, 6.7051e-01, -1.4098e-01, -2.9074e-01,\n", " -4.4487e-01, -9.9862e-01, -9.4112e-01, 9.8095e-01, 1.8637e-02,\n", " 6.6284e-01, -9.7143e-01, -8.7824e-01, 9.9706e-01, 5.6382e-02,\n", " 7.5856e-01, 6.5313e-01, 9.8820e-01, 9.9701e-01, -6.9944e-01,\n", " -9.9922e-01, -2.5071e-01, -5.8678e-02, 3.5966e-01, 2.8802e-01,\n", " -9.1436e-01, 3.4018e-01, 1.3987e-01, 4.1294e-01, 2.1804e-01,\n", " 9.8001e-01, -7.9156e-01, 3.8970e-01, -8.6485e-01, 5.5832e-01,\n", " 9.3225e-01, -6.9751e-01, 9.6238e-01, 7.7753e-01, -2.4782e-01,\n", " 9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\n", " 2.0784e-02, -4.3880e-01, -8.0816e-01, 8.4524e-01, 9.9437e-01,\n", " -9.5786e-01, 9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\n", " 8.3064e-01, -9.9141e-01, 8.9800e-01, 9.7707e-01, 9.1796e-01,\n", " -9.9589e-01, 9.2743e-01, 9.9109e-01, -9.7968e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([ 9, 16])\n", "dec_state: tensor([[[ 1.5593e-01, 8.1538e-01, -3.6497e-01, 8.8808e-01, 7.6804e-01,\n", " 6.2933e-01, -4.3407e-01, -2.4707e-01, 8.0896e-01, -2.5596e-01,\n", " -2.0056e-01, -9.4520e-01, -7.8362e-01, 9.3027e-01, 1.4214e-01,\n", " 3.4872e-01, 7.8860e-02, 2.7197e-01, 3.8271e-02, 6.1823e-01,\n", " 7.8682e-01, -2.2098e-01, -2.9453e-01, 9.2332e-01, -7.7141e-02,\n", " -9.5939e-01, -7.8923e-01, -3.5838e-01, -9.0791e-01, -7.3123e-01,\n", " -8.1233e-01, 8.8035e-01, -7.7860e-01, 1.9996e-01, -5.8175e-01,\n", " -4.0078e-01, 7.9030e-01, 9.5569e-02, -2.7349e-01, 8.6122e-02,\n", " -6.3186e-01, 2.0622e-01, -3.3416e-02, 7.4579e-01, -9.0951e-01,\n", " 2.7161e-01, -1.8137e-01, 5.1107e-01, -3.1445e-01, 9.8160e-01,\n", " 9.2928e-01, 5.7448e-01, 1.0923e-01, -4.1756e-01, -9.1596e-01,\n", " 3.5990e-01, 6.1700e-01, 6.7893e-01, 2.7484e-01, 8.4586e-01,\n", " -9.6343e-01, 9.4907e-01, -7.3367e-04, 8.7368e-01],\n", " [ 1.5506e-01, 9.5286e-01, -8.4584e-01, 8.0375e-01, 3.6434e-01,\n", " 3.2145e-01, -9.6351e-01, -3.5896e-01, 1.5227e-01, -6.0061e-01,\n", " 2.7456e-01, -8.8560e-01, -5.5677e-01, 9.8420e-01, -2.1473e-01,\n", " -2.5911e-01, -7.4126e-01, -7.8248e-01, -1.3465e-01, 8.4065e-01,\n", " 9.0986e-01, -8.9844e-01, 7.4929e-01, 8.4345e-01, 7.4428e-01,\n", " -9.3815e-01, -8.6996e-01, 1.6196e-01, -6.7586e-01, -5.0763e-01,\n", " -5.4835e-01, 7.7233e-01, 2.1631e-01, 5.6712e-01, -9.0730e-01,\n", " -8.9161e-01, 6.7888e-01, -1.7903e-01, -4.3390e-01, -9.8104e-02,\n", " -9.9298e-01, 9.7058e-01, 3.5279e-01, 4.8655e-01, -5.3989e-01,\n", " 8.5492e-01, -9.7274e-01, -2.3209e-01, -4.7310e-01, 7.0984e-01,\n", " 7.6395e-01, 9.1796e-01, 2.2627e-01, -8.4193e-01, -6.3268e-01,\n", " -2.0735e-01, 7.8627e-01, 7.8691e-01, 7.4850e-01, -5.6272e-01,\n", " -9.8460e-01, 9.9408e-01, 2.6500e-01, 1.3678e-01]]],\n", " grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.8919e-01, 3.4259e-01, 3.1522e-01, -4.7506e-01, -5.8994e-01,\n", " 5.1473e-01, 5.6873e-02, 5.4040e-01, -3.3129e-01, -1.3599e-01,\n", " 4.1210e-01, 2.9224e-01, 4.4804e-01, -2.0969e-01, 1.8312e-01,\n", " -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\n", " 9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\n", " -7.9656e-02, 8.3929e-01, 4.3339e-01, 3.9920e-01, 4.5494e-01,\n", " -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\n", " -1.3184e-01, 2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\n", " -1.2202e-01, -1.8331e-01, 1.9878e-01, 3.4604e-01, 4.5695e-01,\n", " -1.2873e-01, 1.2538e-01, 9.8116e-02, -5.7898e-01, -1.9313e-01,\n", " 3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02, 1.4781e-01,\n", " 4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\n", " 4.2793e-01, -1.4875e-02, -1.8840e-01, 1.0795e-02],\n", " [-5.6161e-02, 5.1079e-01, 2.5469e-01, 4.0636e-01, -3.6313e-01,\n", " 1.5495e-01, -9.8928e-02, 1.4182e-01, -7.7240e-02, -2.6764e-01,\n", " 2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02, 3.2069e-01,\n", " -1.9700e-01, 6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\n", " -6.0447e-01, -5.2675e-01, 5.4918e-01, 3.0957e-01, -3.8066e-01,\n", " -5.1973e-01, 7.1569e-02, 5.6027e-01, -1.1235e-02, 1.3392e-02,\n", " 1.8581e-01, 3.8664e-01, -6.3076e-01, 6.1353e-01, 1.7132e-01,\n", " -2.1614e-02, -4.0260e-01, 7.6765e-01, -6.0879e-01, 2.6077e-01,\n", " -7.0112e-02, 3.3747e-01, -6.6588e-01, -2.1261e-01, 7.7419e-02,\n", " -3.0452e-01, -3.6169e-01, 2.3957e-01, -2.0789e-02, 4.0888e-01,\n", " 1.9174e-01, 6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\n", " 1.3132e-01, 3.5580e-02, 3.3620e-01, -3.2242e-01, 2.6653e-01,\n", " -6.5847e-01, 3.5521e-01, 6.4256e-01, -4.4652e-01]],\n", "\n", " [[ 3.0272e-01, 2.5549e-01, -6.7423e-01, 8.7988e-01, -4.8633e-01,\n", " -4.3515e-01, 1.2682e-01, 7.5875e-01, 1.4521e-01, -3.9192e-01,\n", " 3.5380e-01, -1.7771e-03, 4.2796e-01, -6.6608e-01, 5.5359e-01,\n", " 4.9745e-01, 3.8194e-01, 1.6847e-01, 1.9478e-01, -3.7168e-01,\n", " -3.1005e-01, 2.3350e-01, 1.3845e-02, 8.2973e-01, 4.7779e-01,\n", " -4.5664e-01, 8.1294e-01, 2.1875e-01, 3.5033e-02, 2.0797e-01,\n", " 1.3223e-01, 9.8914e-02, 8.1988e-01, 1.6974e-01, -3.2957e-01,\n", " 2.3152e-02, -5.8926e-01, 9.2784e-01, 1.8358e-01, 6.9385e-01,\n", " -2.9518e-01, 9.3706e-02, -7.4089e-02, -2.3288e-01, 4.5474e-01,\n", " -3.7577e-01, 1.8794e-01, -7.1556e-01, -5.2221e-03, 6.3141e-01,\n", " -3.0712e-01, -1.7799e-01, 3.4922e-02, -7.6832e-01, -1.5140e-01,\n", " 1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01, 3.7399e-01,\n", " -6.4216e-01, -7.3713e-01, 1.1034e-01, -1.4378e-01],\n", " [-3.0783e-01, 7.0619e-01, 2.8843e-01, 3.4486e-01, -3.1416e-02,\n", " -5.5595e-01, -2.5893e-01, 3.7422e-01, 3.1599e-01, -1.7643e-02,\n", " 2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02, 1.7674e-01,\n", " -2.6358e-01, 6.5556e-01, -6.6972e-01, 2.4392e-01, -5.5597e-01,\n", " -5.4574e-01, -4.5712e-01, 2.6134e-01, 4.2726e-01, -1.7113e-02,\n", " -5.0937e-01, 6.9873e-02, 2.8159e-01, 4.4168e-02, -5.9215e-02,\n", " 5.3164e-01, 1.4104e-01, -1.7418e-01, 6.2521e-01, 3.4052e-01,\n", " -1.7095e-01, -3.7818e-01, 6.7129e-01, 3.5225e-03, 2.0033e-01,\n", " 2.6244e-01, 1.0848e-01, -4.6903e-03, -8.2113e-02, 1.2762e-01,\n", " -1.8695e-01, -2.9354e-01, 2.2579e-01, 1.6966e-02, 3.7529e-01,\n", " -4.1212e-02, 5.5560e-01, -4.2108e-01, -5.6336e-01, 2.0530e-02,\n", " 3.1856e-01, -1.6777e-01, 2.0985e-01, -3.4052e-01, 6.5363e-01,\n", " -6.8536e-01, -9.1188e-02, 4.7263e-01, -4.1575e-01]],\n", "\n", " [[-4.3091e-01, 4.7975e-02, -6.4154e-01, 7.8851e-01, -2.6898e-01,\n", " -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\n", " 6.2292e-01, -5.1763e-01, 5.1943e-01, -4.2000e-01, 5.3167e-01,\n", " -2.8981e-01, 4.0898e-01, 3.6800e-01, 5.1437e-01, -2.4354e-01,\n", " -4.3747e-01, 5.0437e-01, 2.3844e-01, 8.9447e-01, 3.0840e-01,\n", " -2.6264e-01, 7.8487e-01, 2.0361e-01, -4.4836e-01, 2.9879e-01,\n", " 3.2300e-02, 3.8987e-01, 8.8484e-01, 2.8142e-01, -5.2596e-01,\n", " -2.4904e-02, -6.4482e-01, 9.4409e-01, 7.2259e-01, 6.7215e-01,\n", " -8.2231e-01, 1.9351e-01, -8.7342e-02, 7.0266e-02, 9.5666e-02,\n", " -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02, 4.4018e-01,\n", " -3.8727e-01, -4.3340e-01, 5.1425e-01, -8.3512e-01, -3.8365e-02,\n", " 6.5514e-02, 1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\n", " -4.2758e-01, -8.9924e-01, 1.4681e-01, -5.5334e-01],\n", " [-3.9027e-01, 6.9603e-01, 4.5691e-01, 1.6166e-01, 7.7914e-02,\n", " -3.6820e-01, 3.5885e-01, 2.6877e-01, -4.4138e-01, -1.6789e-02,\n", " -1.9538e-01, 1.2826e-01, -7.0902e-01, 5.8229e-01, -5.2308e-02,\n", " -4.3843e-01, 5.0442e-01, 1.8963e-01, 2.9756e-01, -2.1835e-01,\n", " -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\n", " 1.9278e-01, 9.0932e-02, -5.2118e-02, 4.5367e-01, 1.5111e-01,\n", " 5.1936e-01, 3.5247e-02, -3.8751e-02, -1.4526e-01, 5.1607e-01,\n", " 2.3604e-02, -4.8188e-02, 7.6434e-01, 3.3253e-01, -2.4698e-01,\n", " 4.3771e-03, 1.0644e-02, 8.0129e-02, -4.2507e-01, -5.0781e-01,\n", " -1.4674e-01, -2.0134e-01, -3.1696e-01, 1.2785e-01, 3.3862e-02,\n", " -1.8421e-02, 5.6756e-01, -1.9796e-01, -2.4455e-01, 6.6150e-02,\n", " 4.8072e-01, -5.5249e-01, 3.9305e-01, 3.4074e-02, 1.3419e-01,\n", " -5.0839e-01, 3.6208e-01, 5.5418e-01, -3.4569e-01]],\n", "\n", " [[-4.4933e-01, -7.1931e-02, 5.0550e-03, 3.1785e-01, -2.0353e-01,\n", " -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\n", " 6.0992e-01, -3.2334e-01, 9.8982e-02, -6.3662e-03, 2.9666e-01,\n", " 2.6827e-01, 2.6206e-01, 1.5524e-01, -1.4986e-01, -3.7728e-01,\n", " -2.4287e-01, 5.9968e-01, -1.5402e-02, 7.1346e-01, 6.4422e-02,\n", " -3.3859e-01, 7.1390e-01, 2.8849e-02, 1.9976e-01, 4.0740e-01,\n", " -2.5490e-01, 4.9943e-01, 2.1258e-01, 3.8105e-02, -7.4817e-01,\n", " -4.9476e-01, -3.4258e-01, 8.5370e-01, -4.7424e-02, 2.3023e-03,\n", " 7.6213e-02, -2.0977e-01, -5.4353e-01, 7.5130e-02, 4.5926e-02,\n", " -2.5807e-01, -4.3763e-01, 5.4502e-04, -3.5419e-01, 3.9410e-01,\n", " 9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\n", " -1.8388e-01, -3.3026e-01, 4.2534e-01, -6.2395e-01, -4.9245e-01,\n", " -4.3765e-01, -8.1805e-01, 3.7798e-01, -2.5220e-01],\n", " [-1.9273e-01, 9.1169e-01, 4.3890e-01, 1.0174e-01, -1.9656e-02,\n", " -3.9100e-01, -6.5023e-01, 3.5940e-01, 4.9301e-01, 1.7146e-01,\n", " 7.3839e-02, -7.8011e-01, -6.7214e-01, 3.3858e-01, 1.7792e-01,\n", " 2.6100e-01, 6.7196e-01, -3.3304e-02, 7.4288e-01, -5.9793e-01,\n", " -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02, 3.9973e-01,\n", " 1.0201e-01, 1.4956e-01, 6.1471e-02, 3.4410e-01, 4.2557e-02,\n", " 6.9241e-01, -6.9050e-01, -9.9599e-02, 2.7794e-01, 2.8065e-01,\n", " 7.2173e-02, 6.3955e-03, 7.8340e-01, -1.9722e-01, -2.8579e-01,\n", " -6.8728e-02, 3.1987e-01, 8.2484e-02, -1.4364e-01, -4.0027e-01,\n", " -1.0889e-01, -1.0124e-01, -3.7705e-02, 6.1753e-01, 3.5287e-01,\n", " -2.5209e-01, 7.4057e-02, -5.3195e-01, -6.3228e-01, 1.0961e-01,\n", " 3.5351e-01, -6.0642e-01, 3.5917e-01, -1.7134e-01, 8.0014e-01,\n", " -6.3953e-01, -3.3486e-01, 1.1678e-01, -3.5628e-01]],\n", "\n", " [[-2.3718e-01, 7.2870e-01, 3.3308e-01, 2.0858e-01, -2.3181e-01,\n", " -6.6301e-01, -6.4745e-01, 1.3262e-01, 4.8326e-01, 6.6392e-02,\n", " 6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02, 3.4328e-01,\n", " 5.9002e-01, 6.3913e-01, -9.9936e-02, 6.0167e-01, -6.4984e-01,\n", " -1.3278e-01, 5.5604e-01, -2.1617e-01, 6.7785e-01, 4.6192e-01,\n", " -2.8609e-01, 6.6761e-01, 1.2330e-01, 1.9491e-01, 2.3275e-01,\n", " 4.1373e-01, -6.0354e-01, 8.9942e-02, 3.4765e-01, -4.1777e-01,\n", " 8.5970e-03, -2.2424e-01, 8.6788e-01, -2.3015e-01, -1.3828e-01,\n", " 5.8865e-02, 1.4415e-01, -4.8419e-01, 1.6516e-01, -2.7493e-01,\n", " -2.1732e-01, -2.4245e-01, 1.6697e-01, 4.6947e-01, 5.7996e-01,\n", " -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\n", " 2.2014e-01, -6.1083e-01, 4.0197e-01, -6.2808e-01, 7.9478e-01,\n", " -5.4961e-01, -6.7529e-01, 1.5489e-02, -2.9274e-01],\n", " [-3.6078e-01, 6.9189e-01, 6.1440e-01, 6.4958e-01, -4.3455e-01,\n", " -3.5583e-01, -7.3222e-01, -8.7517e-01, 6.3373e-01, -2.2112e-03,\n", " 2.9666e-01, -7.9231e-01, -5.1286e-01, 5.6895e-01, 1.2489e-01,\n", " 7.5713e-01, 6.4310e-01, 6.4566e-01, 8.3428e-01, -6.3758e-01,\n", " -8.9328e-01, -1.6739e-01, -1.3025e-01, 5.3928e-02, 2.3477e-01,\n", " -9.2187e-01, 7.0911e-01, 4.6542e-02, -2.4542e-01, 1.0799e-02,\n", " 8.8081e-01, -3.7415e-01, 5.2033e-01, 1.5552e-02, -5.1183e-01,\n", " 2.1724e-01, -8.0264e-01, 8.7225e-01, 5.0256e-01, -1.8578e-01,\n", " -1.4407e-01, -6.4479e-01, -7.9479e-01, 4.0860e-01, -2.7567e-01,\n", " 9.1192e-04, -3.5091e-01, 3.0913e-01, 8.0915e-01, 8.8322e-01,\n", " -4.6345e-01, 6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\n", " 7.7383e-01, -8.5906e-01, 5.4155e-01, 9.6536e-01, 7.4088e-01,\n", " -5.4469e-01, -8.6252e-02, 9.5525e-01, -9.2331e-01]],\n", "\n", " [[-4.0418e-01, 5.5571e-01, 5.8886e-01, 6.7950e-01, -5.3868e-01,\n", " -6.0882e-01, -7.3359e-01, -8.8612e-01, 6.2786e-01, -5.4523e-02,\n", " 5.7679e-01, -8.6235e-01, -3.5407e-01, 3.5055e-01, 2.2463e-01,\n", " 8.5547e-01, 6.4569e-01, 6.2466e-01, 7.5043e-01, -6.7614e-01,\n", " -8.8315e-01, 3.6020e-01, -9.6990e-02, 6.7707e-01, 2.9608e-01,\n", " -9.3966e-01, 8.0311e-01, 8.0575e-02, -2.5028e-01, 1.8937e-01,\n", " 8.5196e-01, -3.1190e-01, 5.9931e-01, 1.1915e-01, -7.4333e-01,\n", " 2.9976e-01, -8.6610e-01, 9.2273e-01, 4.9476e-01, -6.9907e-02,\n", " -3.3817e-02, -6.8751e-01, -8.7660e-01, 4.9436e-01, -1.5151e-01,\n", " -1.1269e-01, -4.6676e-01, 4.0701e-01, 7.6854e-01, 9.3047e-01,\n", " -4.3576e-01, 5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\n", " 7.7006e-01, -8.6413e-01, 5.6022e-01, 9.5810e-01, 7.2682e-01,\n", " -4.5427e-01, -2.5659e-01, 9.5853e-01, -9.2379e-01],\n", " [-7.7460e-01, 9.9026e-01, 6.3722e-01, 2.0712e-01, -3.6535e-01,\n", " -5.1381e-01, -9.8802e-01, -9.2029e-01, 9.4324e-01, 1.2037e-02,\n", " 5.6740e-01, -9.2826e-01, -7.5338e-01, 9.8160e-01, 8.7260e-02,\n", " 7.5755e-01, 6.3618e-01, 9.7823e-01, 9.8206e-01, -6.6112e-01,\n", " -9.9476e-01, -2.1120e-01, -9.0182e-02, 2.4394e-01, 2.6934e-01,\n", " -9.1776e-01, 4.5227e-01, 9.6771e-02, 2.4004e-01, 1.9161e-01,\n", " 9.6763e-01, -6.2995e-01, 4.5209e-01, -7.3755e-01, 1.7895e-01,\n", " 8.2790e-01, -7.4495e-01, 9.3048e-01, 6.8724e-01, -2.2175e-01,\n", " 7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\n", " 1.0962e-02, -3.9790e-01, -5.0389e-01, 8.2996e-01, 9.7687e-01,\n", " -9.1826e-01, 8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\n", " 8.0700e-01, -9.9238e-01, 7.9356e-01, 9.7202e-01, 8.6634e-01,\n", " -9.6564e-01, 8.0110e-01, 9.8311e-01, -9.5971e-01]],\n", "\n", " [[-7.8544e-01, 9.8591e-01, 6.1879e-01, 2.5189e-01, -4.5887e-01,\n", " -5.9831e-01, -9.8791e-01, -9.2568e-01, 9.4309e-01, -3.7440e-02,\n", " 6.7137e-01, -9.4777e-01, -6.6153e-01, 9.7169e-01, 1.8339e-01,\n", " 8.5464e-01, 6.4561e-01, 9.7789e-01, 9.7138e-01, -6.9134e-01,\n", " -9.9371e-01, 2.8951e-01, -5.6722e-02, 5.8515e-01, 3.1130e-01,\n", " -9.3571e-01, 5.6603e-01, 1.3169e-01, 2.1265e-01, 2.8412e-01,\n", " 9.6472e-01, -6.0069e-01, 5.2081e-01, -7.0690e-01, 7.3823e-02,\n", " 8.5549e-01, -7.9405e-01, 9.5622e-01, 6.7850e-01, -1.1331e-01,\n", " 8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\n", " -9.5556e-02, -4.8684e-01, -4.8504e-01, 7.9844e-01, 9.8674e-01,\n", " -9.1737e-01, 7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\n", " 8.0822e-01, -9.9301e-01, 8.0589e-01, 9.6631e-01, 8.5895e-01,\n", " -9.5692e-01, 7.8279e-01, 9.8394e-01, -9.6014e-01],\n", " [-8.9920e-01, 9.9750e-01, 6.7051e-01, -1.4098e-01, -2.9074e-01,\n", " -4.4487e-01, -9.9862e-01, -9.4112e-01, 9.8095e-01, 1.8637e-02,\n", " 6.6284e-01, -9.7143e-01, -8.7824e-01, 9.9706e-01, 5.6382e-02,\n", " 7.5856e-01, 6.5313e-01, 9.8820e-01, 9.9701e-01, -6.9944e-01,\n", " -9.9922e-01, -2.5071e-01, -5.8678e-02, 3.5966e-01, 2.8802e-01,\n", " -9.1436e-01, 3.4018e-01, 1.3987e-01, 4.1294e-01, 2.1804e-01,\n", " 9.8001e-01, -7.9156e-01, 3.8970e-01, -8.6485e-01, 5.5832e-01,\n", " 9.3225e-01, -6.9751e-01, 9.6238e-01, 7.7753e-01, -2.4782e-01,\n", " 9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\n", " 2.0784e-02, -4.3880e-01, -8.0816e-01, 8.4524e-01, 9.9437e-01,\n", " -9.5786e-01, 9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\n", " 8.3064e-01, -9.9141e-01, 8.9800e-01, 9.7707e-01, 9.1796e-01,\n", " -9.9589e-01, 9.2743e-01, 9.9109e-01, -9.7968e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([35, 3])\n", "dec_state: tensor([[[ 0.0437, 0.8838, -0.5099, 0.9333, 0.8595, 0.2709, -0.4947,\n", " -0.1552, 0.1409, 0.1759, 0.0381, -0.9476, -0.7727, 0.9591,\n", " 0.0912, -0.5724, -0.2711, -0.2081, -0.1020, 0.3201, 0.9040,\n", " -0.6168, -0.2384, 0.9606, 0.0552, -0.9490, -0.2995, -0.2387,\n", " -0.9680, -0.8060, -0.9364, 0.9444, -0.5460, 0.2709, -0.7637,\n", " -0.3229, 0.4756, 0.1718, -0.4249, 0.3767, -0.9116, 0.3961,\n", " -0.1639, 0.9565, -0.7257, 0.2342, -0.6689, 0.7434, -0.2387,\n", " 0.8791, 0.9164, 0.5889, 0.1713, -0.6688, -0.9673, 0.4337,\n", " 0.6931, 0.9069, 0.1904, -0.3460, -0.9666, 0.9479, -0.2954,\n", " 0.8358],\n", " [ 0.9267, 0.9916, -0.9838, 0.8134, 0.3738, 0.4784, -0.9718,\n", " -0.6757, -0.0420, -0.9827, -0.9157, -0.9572, 0.7918, 0.9940,\n", " -0.9156, 0.6227, 0.8849, -0.8912, -0.8784, 0.8479, 0.9073,\n", " -0.9039, -0.4469, 0.8465, 0.9772, -0.9671, -0.7374, -0.8966,\n", " 0.7598, -0.8174, -0.8970, 0.7962, 0.8284, 0.8269, -0.8430,\n", " -0.9350, 0.8772, -0.8370, 0.7547, 0.6418, -0.9946, 0.9911,\n", " 0.5518, -0.8215, -0.7248, 0.9898, -0.9105, 0.8065, -0.4984,\n", " 0.7439, -0.6121, 0.9914, 0.3904, -0.8923, 0.9391, -0.3469,\n", " 0.9762, 0.7133, -0.4687, -0.5409, -0.9918, 0.9968, 0.2559,\n", " -0.8974]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.8919e-01, 3.4259e-01, 3.1522e-01, -4.7506e-01, -5.8994e-01,\n", " 5.1473e-01, 5.6873e-02, 5.4040e-01, -3.3129e-01, -1.3599e-01,\n", " 4.1210e-01, 2.9224e-01, 4.4804e-01, -2.0969e-01, 1.8312e-01,\n", " -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\n", " 9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\n", " -7.9656e-02, 8.3929e-01, 4.3339e-01, 3.9920e-01, 4.5494e-01,\n", " -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\n", " -1.3184e-01, 2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\n", " -1.2202e-01, -1.8331e-01, 1.9878e-01, 3.4604e-01, 4.5695e-01,\n", " -1.2873e-01, 1.2538e-01, 9.8116e-02, -5.7898e-01, -1.9313e-01,\n", " 3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02, 1.4781e-01,\n", " 4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\n", " 4.2793e-01, -1.4875e-02, -1.8840e-01, 1.0795e-02],\n", " [-5.6161e-02, 5.1079e-01, 2.5469e-01, 4.0636e-01, -3.6313e-01,\n", " 1.5495e-01, -9.8928e-02, 1.4182e-01, -7.7240e-02, -2.6764e-01,\n", " 2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02, 3.2069e-01,\n", " -1.9700e-01, 6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\n", " -6.0447e-01, -5.2675e-01, 5.4918e-01, 3.0957e-01, -3.8066e-01,\n", " -5.1973e-01, 7.1569e-02, 5.6027e-01, -1.1235e-02, 1.3392e-02,\n", " 1.8581e-01, 3.8664e-01, -6.3076e-01, 6.1353e-01, 1.7132e-01,\n", " -2.1614e-02, -4.0260e-01, 7.6765e-01, -6.0879e-01, 2.6077e-01,\n", " -7.0112e-02, 3.3747e-01, -6.6588e-01, -2.1261e-01, 7.7419e-02,\n", " -3.0452e-01, -3.6169e-01, 2.3957e-01, -2.0789e-02, 4.0888e-01,\n", " 1.9174e-01, 6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\n", " 1.3132e-01, 3.5580e-02, 3.3620e-01, -3.2242e-01, 2.6653e-01,\n", " -6.5847e-01, 3.5521e-01, 6.4256e-01, -4.4652e-01]],\n", "\n", " [[ 3.0272e-01, 2.5549e-01, -6.7423e-01, 8.7988e-01, -4.8633e-01,\n", " -4.3515e-01, 1.2682e-01, 7.5875e-01, 1.4521e-01, -3.9192e-01,\n", " 3.5380e-01, -1.7771e-03, 4.2796e-01, -6.6608e-01, 5.5359e-01,\n", " 4.9745e-01, 3.8194e-01, 1.6847e-01, 1.9478e-01, -3.7168e-01,\n", " -3.1005e-01, 2.3350e-01, 1.3845e-02, 8.2973e-01, 4.7779e-01,\n", " -4.5664e-01, 8.1294e-01, 2.1875e-01, 3.5033e-02, 2.0797e-01,\n", " 1.3223e-01, 9.8914e-02, 8.1988e-01, 1.6974e-01, -3.2957e-01,\n", " 2.3152e-02, -5.8926e-01, 9.2784e-01, 1.8358e-01, 6.9385e-01,\n", " -2.9518e-01, 9.3706e-02, -7.4089e-02, -2.3288e-01, 4.5474e-01,\n", " -3.7577e-01, 1.8794e-01, -7.1556e-01, -5.2221e-03, 6.3141e-01,\n", " -3.0712e-01, -1.7799e-01, 3.4922e-02, -7.6832e-01, -1.5140e-01,\n", " 1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01, 3.7399e-01,\n", " -6.4216e-01, -7.3713e-01, 1.1034e-01, -1.4378e-01],\n", " [-3.0783e-01, 7.0619e-01, 2.8843e-01, 3.4486e-01, -3.1416e-02,\n", " -5.5595e-01, -2.5893e-01, 3.7422e-01, 3.1599e-01, -1.7643e-02,\n", " 2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02, 1.7674e-01,\n", " -2.6358e-01, 6.5556e-01, -6.6972e-01, 2.4392e-01, -5.5597e-01,\n", " -5.4574e-01, -4.5712e-01, 2.6134e-01, 4.2726e-01, -1.7113e-02,\n", " -5.0937e-01, 6.9873e-02, 2.8159e-01, 4.4168e-02, -5.9215e-02,\n", " 5.3164e-01, 1.4104e-01, -1.7418e-01, 6.2521e-01, 3.4052e-01,\n", " -1.7095e-01, -3.7818e-01, 6.7129e-01, 3.5225e-03, 2.0033e-01,\n", " 2.6244e-01, 1.0848e-01, -4.6903e-03, -8.2113e-02, 1.2762e-01,\n", " -1.8695e-01, -2.9354e-01, 2.2579e-01, 1.6966e-02, 3.7529e-01,\n", " -4.1212e-02, 5.5560e-01, -4.2108e-01, -5.6336e-01, 2.0530e-02,\n", " 3.1856e-01, -1.6777e-01, 2.0985e-01, -3.4052e-01, 6.5363e-01,\n", " -6.8536e-01, -9.1188e-02, 4.7263e-01, -4.1575e-01]],\n", "\n", " [[-4.3091e-01, 4.7975e-02, -6.4154e-01, 7.8851e-01, -2.6898e-01,\n", " -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\n", " 6.2292e-01, -5.1763e-01, 5.1943e-01, -4.2000e-01, 5.3167e-01,\n", " -2.8981e-01, 4.0898e-01, 3.6800e-01, 5.1437e-01, -2.4354e-01,\n", " -4.3747e-01, 5.0437e-01, 2.3844e-01, 8.9447e-01, 3.0840e-01,\n", " -2.6264e-01, 7.8487e-01, 2.0361e-01, -4.4836e-01, 2.9879e-01,\n", " 3.2300e-02, 3.8987e-01, 8.8484e-01, 2.8142e-01, -5.2596e-01,\n", " -2.4904e-02, -6.4482e-01, 9.4409e-01, 7.2259e-01, 6.7215e-01,\n", " -8.2231e-01, 1.9351e-01, -8.7342e-02, 7.0266e-02, 9.5666e-02,\n", " -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02, 4.4018e-01,\n", " -3.8727e-01, -4.3340e-01, 5.1425e-01, -8.3512e-01, -3.8365e-02,\n", " 6.5514e-02, 1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\n", " -4.2758e-01, -8.9924e-01, 1.4681e-01, -5.5334e-01],\n", " [-3.9027e-01, 6.9603e-01, 4.5691e-01, 1.6166e-01, 7.7914e-02,\n", " -3.6820e-01, 3.5885e-01, 2.6877e-01, -4.4138e-01, -1.6789e-02,\n", " -1.9538e-01, 1.2826e-01, -7.0902e-01, 5.8229e-01, -5.2308e-02,\n", " -4.3843e-01, 5.0442e-01, 1.8963e-01, 2.9756e-01, -2.1835e-01,\n", " -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\n", " 1.9278e-01, 9.0932e-02, -5.2118e-02, 4.5367e-01, 1.5111e-01,\n", " 5.1936e-01, 3.5247e-02, -3.8751e-02, -1.4526e-01, 5.1607e-01,\n", " 2.3604e-02, -4.8188e-02, 7.6434e-01, 3.3253e-01, -2.4698e-01,\n", " 4.3771e-03, 1.0644e-02, 8.0129e-02, -4.2507e-01, -5.0781e-01,\n", " -1.4674e-01, -2.0134e-01, -3.1696e-01, 1.2785e-01, 3.3862e-02,\n", " -1.8421e-02, 5.6756e-01, -1.9796e-01, -2.4455e-01, 6.6150e-02,\n", " 4.8072e-01, -5.5249e-01, 3.9305e-01, 3.4074e-02, 1.3419e-01,\n", " -5.0839e-01, 3.6208e-01, 5.5418e-01, -3.4569e-01]],\n", "\n", " [[-4.4933e-01, -7.1931e-02, 5.0550e-03, 3.1785e-01, -2.0353e-01,\n", " -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\n", " 6.0992e-01, -3.2334e-01, 9.8982e-02, -6.3662e-03, 2.9666e-01,\n", " 2.6827e-01, 2.6206e-01, 1.5524e-01, -1.4986e-01, -3.7728e-01,\n", " -2.4287e-01, 5.9968e-01, -1.5402e-02, 7.1346e-01, 6.4422e-02,\n", " -3.3859e-01, 7.1390e-01, 2.8849e-02, 1.9976e-01, 4.0740e-01,\n", " -2.5490e-01, 4.9943e-01, 2.1258e-01, 3.8105e-02, -7.4817e-01,\n", " -4.9476e-01, -3.4258e-01, 8.5370e-01, -4.7424e-02, 2.3023e-03,\n", " 7.6213e-02, -2.0977e-01, -5.4353e-01, 7.5130e-02, 4.5926e-02,\n", " -2.5807e-01, -4.3763e-01, 5.4502e-04, -3.5419e-01, 3.9410e-01,\n", " 9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\n", " -1.8388e-01, -3.3026e-01, 4.2534e-01, -6.2395e-01, -4.9245e-01,\n", " -4.3765e-01, -8.1805e-01, 3.7798e-01, -2.5220e-01],\n", " [-1.9273e-01, 9.1169e-01, 4.3890e-01, 1.0174e-01, -1.9656e-02,\n", " -3.9100e-01, -6.5023e-01, 3.5940e-01, 4.9301e-01, 1.7146e-01,\n", " 7.3839e-02, -7.8011e-01, -6.7214e-01, 3.3858e-01, 1.7792e-01,\n", " 2.6100e-01, 6.7196e-01, -3.3304e-02, 7.4288e-01, -5.9793e-01,\n", " -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02, 3.9973e-01,\n", " 1.0201e-01, 1.4956e-01, 6.1471e-02, 3.4410e-01, 4.2557e-02,\n", " 6.9241e-01, -6.9050e-01, -9.9599e-02, 2.7794e-01, 2.8065e-01,\n", " 7.2173e-02, 6.3955e-03, 7.8340e-01, -1.9722e-01, -2.8579e-01,\n", " -6.8728e-02, 3.1987e-01, 8.2484e-02, -1.4364e-01, -4.0027e-01,\n", " -1.0889e-01, -1.0124e-01, -3.7705e-02, 6.1753e-01, 3.5287e-01,\n", " -2.5209e-01, 7.4057e-02, -5.3195e-01, -6.3228e-01, 1.0961e-01,\n", " 3.5351e-01, -6.0642e-01, 3.5917e-01, -1.7134e-01, 8.0014e-01,\n", " -6.3953e-01, -3.3486e-01, 1.1678e-01, -3.5628e-01]],\n", "\n", " [[-2.3718e-01, 7.2870e-01, 3.3308e-01, 2.0858e-01, -2.3181e-01,\n", " -6.6301e-01, -6.4745e-01, 1.3262e-01, 4.8326e-01, 6.6392e-02,\n", " 6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02, 3.4328e-01,\n", " 5.9002e-01, 6.3913e-01, -9.9936e-02, 6.0167e-01, -6.4984e-01,\n", " -1.3278e-01, 5.5604e-01, -2.1617e-01, 6.7785e-01, 4.6192e-01,\n", " -2.8609e-01, 6.6761e-01, 1.2330e-01, 1.9491e-01, 2.3275e-01,\n", " 4.1373e-01, -6.0354e-01, 8.9942e-02, 3.4765e-01, -4.1777e-01,\n", " 8.5970e-03, -2.2424e-01, 8.6788e-01, -2.3015e-01, -1.3828e-01,\n", " 5.8865e-02, 1.4415e-01, -4.8419e-01, 1.6516e-01, -2.7493e-01,\n", " -2.1732e-01, -2.4245e-01, 1.6697e-01, 4.6947e-01, 5.7996e-01,\n", " -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\n", " 2.2014e-01, -6.1083e-01, 4.0197e-01, -6.2808e-01, 7.9478e-01,\n", " -5.4961e-01, -6.7529e-01, 1.5489e-02, -2.9274e-01],\n", " [-3.6078e-01, 6.9189e-01, 6.1440e-01, 6.4958e-01, -4.3455e-01,\n", " -3.5583e-01, -7.3222e-01, -8.7517e-01, 6.3373e-01, -2.2112e-03,\n", " 2.9666e-01, -7.9231e-01, -5.1286e-01, 5.6895e-01, 1.2489e-01,\n", " 7.5713e-01, 6.4310e-01, 6.4566e-01, 8.3428e-01, -6.3758e-01,\n", " -8.9328e-01, -1.6739e-01, -1.3025e-01, 5.3928e-02, 2.3477e-01,\n", " -9.2187e-01, 7.0911e-01, 4.6542e-02, -2.4542e-01, 1.0799e-02,\n", " 8.8081e-01, -3.7415e-01, 5.2033e-01, 1.5552e-02, -5.1183e-01,\n", " 2.1724e-01, -8.0264e-01, 8.7225e-01, 5.0256e-01, -1.8578e-01,\n", " -1.4407e-01, -6.4479e-01, -7.9479e-01, 4.0860e-01, -2.7567e-01,\n", " 9.1192e-04, -3.5091e-01, 3.0913e-01, 8.0915e-01, 8.8322e-01,\n", " -4.6345e-01, 6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\n", " 7.7383e-01, -8.5906e-01, 5.4155e-01, 9.6536e-01, 7.4088e-01,\n", " -5.4469e-01, -8.6252e-02, 9.5525e-01, -9.2331e-01]],\n", "\n", " [[-4.0418e-01, 5.5571e-01, 5.8886e-01, 6.7950e-01, -5.3868e-01,\n", " -6.0882e-01, -7.3359e-01, -8.8612e-01, 6.2786e-01, -5.4523e-02,\n", " 5.7679e-01, -8.6235e-01, -3.5407e-01, 3.5055e-01, 2.2463e-01,\n", " 8.5547e-01, 6.4569e-01, 6.2466e-01, 7.5043e-01, -6.7614e-01,\n", " -8.8315e-01, 3.6020e-01, -9.6990e-02, 6.7707e-01, 2.9608e-01,\n", " -9.3966e-01, 8.0311e-01, 8.0575e-02, -2.5028e-01, 1.8937e-01,\n", " 8.5196e-01, -3.1190e-01, 5.9931e-01, 1.1915e-01, -7.4333e-01,\n", " 2.9976e-01, -8.6610e-01, 9.2273e-01, 4.9476e-01, -6.9907e-02,\n", " -3.3817e-02, -6.8751e-01, -8.7660e-01, 4.9436e-01, -1.5151e-01,\n", " -1.1269e-01, -4.6676e-01, 4.0701e-01, 7.6854e-01, 9.3047e-01,\n", " -4.3576e-01, 5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\n", " 7.7006e-01, -8.6413e-01, 5.6022e-01, 9.5810e-01, 7.2682e-01,\n", " -4.5427e-01, -2.5659e-01, 9.5853e-01, -9.2379e-01],\n", " [-7.7460e-01, 9.9026e-01, 6.3722e-01, 2.0712e-01, -3.6535e-01,\n", " -5.1381e-01, -9.8802e-01, -9.2029e-01, 9.4324e-01, 1.2037e-02,\n", " 5.6740e-01, -9.2826e-01, -7.5338e-01, 9.8160e-01, 8.7260e-02,\n", " 7.5755e-01, 6.3618e-01, 9.7823e-01, 9.8206e-01, -6.6112e-01,\n", " -9.9476e-01, -2.1120e-01, -9.0182e-02, 2.4394e-01, 2.6934e-01,\n", " -9.1776e-01, 4.5227e-01, 9.6771e-02, 2.4004e-01, 1.9161e-01,\n", " 9.6763e-01, -6.2995e-01, 4.5209e-01, -7.3755e-01, 1.7895e-01,\n", " 8.2790e-01, -7.4495e-01, 9.3048e-01, 6.8724e-01, -2.2175e-01,\n", " 7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\n", " 1.0962e-02, -3.9790e-01, -5.0389e-01, 8.2996e-01, 9.7687e-01,\n", " -9.1826e-01, 8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\n", " 8.0700e-01, -9.9238e-01, 7.9356e-01, 9.7202e-01, 8.6634e-01,\n", " -9.6564e-01, 8.0110e-01, 9.8311e-01, -9.5971e-01]],\n", "\n", " [[-7.8544e-01, 9.8591e-01, 6.1879e-01, 2.5189e-01, -4.5887e-01,\n", " -5.9831e-01, -9.8791e-01, -9.2568e-01, 9.4309e-01, -3.7440e-02,\n", " 6.7137e-01, -9.4777e-01, -6.6153e-01, 9.7169e-01, 1.8339e-01,\n", " 8.5464e-01, 6.4561e-01, 9.7789e-01, 9.7138e-01, -6.9134e-01,\n", " -9.9371e-01, 2.8951e-01, -5.6722e-02, 5.8515e-01, 3.1130e-01,\n", " -9.3571e-01, 5.6603e-01, 1.3169e-01, 2.1265e-01, 2.8412e-01,\n", " 9.6472e-01, -6.0069e-01, 5.2081e-01, -7.0690e-01, 7.3823e-02,\n", " 8.5549e-01, -7.9405e-01, 9.5622e-01, 6.7850e-01, -1.1331e-01,\n", " 8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\n", " -9.5556e-02, -4.8684e-01, -4.8504e-01, 7.9844e-01, 9.8674e-01,\n", " -9.1737e-01, 7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\n", " 8.0822e-01, -9.9301e-01, 8.0589e-01, 9.6631e-01, 8.5895e-01,\n", " -9.5692e-01, 7.8279e-01, 9.8394e-01, -9.6014e-01],\n", " [-8.9920e-01, 9.9750e-01, 6.7051e-01, -1.4098e-01, -2.9074e-01,\n", " -4.4487e-01, -9.9862e-01, -9.4112e-01, 9.8095e-01, 1.8637e-02,\n", " 6.6284e-01, -9.7143e-01, -8.7824e-01, 9.9706e-01, 5.6382e-02,\n", " 7.5856e-01, 6.5313e-01, 9.8820e-01, 9.9701e-01, -6.9944e-01,\n", " -9.9922e-01, -2.5071e-01, -5.8678e-02, 3.5966e-01, 2.8802e-01,\n", " -9.1436e-01, 3.4018e-01, 1.3987e-01, 4.1294e-01, 2.1804e-01,\n", " 9.8001e-01, -7.9156e-01, 3.8970e-01, -8.6485e-01, 5.5832e-01,\n", " 9.3225e-01, -6.9751e-01, 9.6238e-01, 7.7753e-01, -2.4782e-01,\n", " 9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\n", " 2.0784e-02, -4.3880e-01, -8.0816e-01, 8.4524e-01, 9.9437e-01,\n", " -9.5786e-01, 9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\n", " 8.3064e-01, -9.9141e-01, 8.9800e-01, 9.7707e-01, 9.1796e-01,\n", " -9.9589e-01, 9.2743e-01, 9.9109e-01, -9.7968e-01]]],\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([3, 2])\n", "dec_state: tensor([[[ 0.9502, 0.9803, -0.9556, 0.9371, 0.7209, 0.4109, -0.6240,\n", " -0.6508, -0.0789, -0.9733, -0.9201, -0.9665, 0.7747, 0.9893,\n", " -0.9453, 0.6420, 0.9026, -0.6839, -0.8657, 0.6164, 0.9007,\n", " -0.6406, -0.6550, 0.9572, 0.9462, -0.9686, -0.5413, -0.9424,\n", " 0.7813, -0.8729, -0.9535, 0.9504, 0.8639, 0.6936, -0.7287,\n", " -0.8804, 0.8292, -0.7553, 0.6777, 0.8122, -0.9759, 0.7852,\n", " 0.1651, -0.7995, -0.8487, 0.9599, -0.7238, 0.8786, -0.2760,\n", " 0.8642, -0.7897, 0.9662, 0.3951, -0.8005, 0.9013, 0.2070,\n", " 0.9395, 0.7273, -0.6872, -0.4580, -0.9870, 0.9769, -0.2916,\n", " -0.8772],\n", " [ 0.8773, 0.9191, -0.9887, 0.8248, 0.6969, 0.6947, -0.9124,\n", " -0.2113, -0.4510, 0.6187, 0.3257, -0.9483, 0.1856, 0.8217,\n", " -0.8419, -0.5020, 0.0926, -0.7470, -0.8294, 0.5920, 0.9677,\n", " -0.9038, 0.5266, 0.8788, 0.8326, -0.9745, -0.9224, -0.7375,\n", " -0.6705, -0.6764, -0.9493, 0.8804, -0.8656, 0.8468, -0.8748,\n", " -0.9830, 0.6597, -0.5575, 0.1694, 0.5271, -0.9530, 0.9913,\n", " 0.6616, 0.1434, -0.6065, 0.9357, -0.9044, 0.8698, -0.5611,\n", " 0.6501, 0.6818, 0.9711, 0.1038, -0.9143, -0.1904, -0.3511,\n", " 0.9946, 0.8698, 0.4346, 0.2902, -0.9932, 0.9916, 0.1558,\n", " 0.4944]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.8919e-01, 3.4259e-01, 3.1522e-01, -4.7506e-01, -5.8994e-01,\n", " 5.1473e-01, 5.6873e-02, 5.4040e-01, -3.3129e-01, -1.3599e-01,\n", " 4.1210e-01, 2.9224e-01, 4.4804e-01, -2.0969e-01, 1.8312e-01,\n", " -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\n", " 9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\n", " -7.9656e-02, 8.3929e-01, 4.3339e-01, 3.9920e-01, 4.5494e-01,\n", " -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\n", " -1.3184e-01, 2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\n", " -1.2202e-01, -1.8331e-01, 1.9878e-01, 3.4604e-01, 4.5695e-01,\n", " -1.2873e-01, 1.2538e-01, 9.8116e-02, -5.7898e-01, -1.9313e-01,\n", " 3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02, 1.4781e-01,\n", " 4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\n", " 4.2793e-01, -1.4875e-02, -1.8840e-01, 1.0795e-02],\n", " [-5.6161e-02, 5.1079e-01, 2.5469e-01, 4.0636e-01, -3.6313e-01,\n", " 1.5495e-01, -9.8928e-02, 1.4182e-01, -7.7240e-02, -2.6764e-01,\n", " 2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02, 3.2069e-01,\n", " -1.9700e-01, 6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\n", " -6.0447e-01, -5.2675e-01, 5.4918e-01, 3.0957e-01, -3.8066e-01,\n", " -5.1973e-01, 7.1569e-02, 5.6027e-01, -1.1235e-02, 1.3392e-02,\n", " 1.8581e-01, 3.8664e-01, -6.3076e-01, 6.1353e-01, 1.7132e-01,\n", " -2.1614e-02, -4.0260e-01, 7.6765e-01, -6.0879e-01, 2.6077e-01,\n", " -7.0112e-02, 3.3747e-01, -6.6588e-01, -2.1261e-01, 7.7419e-02,\n", " -3.0452e-01, -3.6169e-01, 2.3957e-01, -2.0789e-02, 4.0888e-01,\n", " 1.9174e-01, 6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\n", " 1.3132e-01, 3.5580e-02, 3.3620e-01, -3.2242e-01, 2.6653e-01,\n", " -6.5847e-01, 3.5521e-01, 6.4256e-01, -4.4652e-01]],\n", "\n", " [[ 3.0272e-01, 2.5549e-01, -6.7423e-01, 8.7988e-01, -4.8633e-01,\n", " -4.3515e-01, 1.2682e-01, 7.5875e-01, 1.4521e-01, -3.9192e-01,\n", " 3.5380e-01, -1.7771e-03, 4.2796e-01, -6.6608e-01, 5.5359e-01,\n", " 4.9745e-01, 3.8194e-01, 1.6847e-01, 1.9478e-01, -3.7168e-01,\n", " -3.1005e-01, 2.3350e-01, 1.3845e-02, 8.2973e-01, 4.7779e-01,\n", " -4.5664e-01, 8.1294e-01, 2.1875e-01, 3.5033e-02, 2.0797e-01,\n", " 1.3223e-01, 9.8914e-02, 8.1988e-01, 1.6974e-01, -3.2957e-01,\n", " 2.3152e-02, -5.8926e-01, 9.2784e-01, 1.8358e-01, 6.9385e-01,\n", " -2.9518e-01, 9.3706e-02, -7.4089e-02, -2.3288e-01, 4.5474e-01,\n", " -3.7577e-01, 1.8794e-01, -7.1556e-01, -5.2221e-03, 6.3141e-01,\n", " -3.0712e-01, -1.7799e-01, 3.4922e-02, -7.6832e-01, -1.5140e-01,\n", " 1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01, 3.7399e-01,\n", " -6.4216e-01, -7.3713e-01, 1.1034e-01, -1.4378e-01],\n", " [-3.0783e-01, 7.0619e-01, 2.8843e-01, 3.4486e-01, -3.1416e-02,\n", " -5.5595e-01, -2.5893e-01, 3.7422e-01, 3.1599e-01, -1.7643e-02,\n", " 2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02, 1.7674e-01,\n", " -2.6358e-01, 6.5556e-01, -6.6972e-01, 2.4392e-01, -5.5597e-01,\n", " -5.4574e-01, -4.5712e-01, 2.6134e-01, 4.2726e-01, -1.7113e-02,\n", " -5.0937e-01, 6.9873e-02, 2.8159e-01, 4.4168e-02, -5.9215e-02,\n", " 5.3164e-01, 1.4104e-01, -1.7418e-01, 6.2521e-01, 3.4052e-01,\n", " -1.7095e-01, -3.7818e-01, 6.7129e-01, 3.5225e-03, 2.0033e-01,\n", " 2.6244e-01, 1.0848e-01, -4.6903e-03, -8.2113e-02, 1.2762e-01,\n", " -1.8695e-01, -2.9354e-01, 2.2579e-01, 1.6966e-02, 3.7529e-01,\n", " -4.1212e-02, 5.5560e-01, -4.2108e-01, -5.6336e-01, 2.0530e-02,\n", " 3.1856e-01, -1.6777e-01, 2.0985e-01, -3.4052e-01, 6.5363e-01,\n", " -6.8536e-01, -9.1188e-02, 4.7263e-01, -4.1575e-01]],\n", "\n", " [[-4.3091e-01, 4.7975e-02, -6.4154e-01, 7.8851e-01, -2.6898e-01,\n", " -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\n", " 6.2292e-01, -5.1763e-01, 5.1943e-01, -4.2000e-01, 5.3167e-01,\n", " -2.8981e-01, 4.0898e-01, 3.6800e-01, 5.1437e-01, -2.4354e-01,\n", " -4.3747e-01, 5.0437e-01, 2.3844e-01, 8.9447e-01, 3.0840e-01,\n", " -2.6264e-01, 7.8487e-01, 2.0361e-01, -4.4836e-01, 2.9879e-01,\n", " 3.2300e-02, 3.8987e-01, 8.8484e-01, 2.8142e-01, -5.2596e-01,\n", " -2.4904e-02, -6.4482e-01, 9.4409e-01, 7.2259e-01, 6.7215e-01,\n", " -8.2231e-01, 1.9351e-01, -8.7342e-02, 7.0266e-02, 9.5666e-02,\n", " -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02, 4.4018e-01,\n", " -3.8727e-01, -4.3340e-01, 5.1425e-01, -8.3512e-01, -3.8365e-02,\n", " 6.5514e-02, 1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\n", " -4.2758e-01, -8.9924e-01, 1.4681e-01, -5.5334e-01],\n", " [-3.9027e-01, 6.9603e-01, 4.5691e-01, 1.6166e-01, 7.7914e-02,\n", " -3.6820e-01, 3.5885e-01, 2.6877e-01, -4.4138e-01, -1.6789e-02,\n", " -1.9538e-01, 1.2826e-01, -7.0902e-01, 5.8229e-01, -5.2308e-02,\n", " -4.3843e-01, 5.0442e-01, 1.8963e-01, 2.9756e-01, -2.1835e-01,\n", " -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\n", " 1.9278e-01, 9.0932e-02, -5.2118e-02, 4.5367e-01, 1.5111e-01,\n", " 5.1936e-01, 3.5247e-02, -3.8751e-02, -1.4526e-01, 5.1607e-01,\n", " 2.3604e-02, -4.8188e-02, 7.6434e-01, 3.3253e-01, -2.4698e-01,\n", " 4.3771e-03, 1.0644e-02, 8.0129e-02, -4.2507e-01, -5.0781e-01,\n", " -1.4674e-01, -2.0134e-01, -3.1696e-01, 1.2785e-01, 3.3862e-02,\n", " -1.8421e-02, 5.6756e-01, -1.9796e-01, -2.4455e-01, 6.6150e-02,\n", " 4.8072e-01, -5.5249e-01, 3.9305e-01, 3.4074e-02, 1.3419e-01,\n", " -5.0839e-01, 3.6208e-01, 5.5418e-01, -3.4569e-01]],\n", "\n", " [[-4.4933e-01, -7.1931e-02, 5.0550e-03, 3.1785e-01, -2.0353e-01,\n", " -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\n", " 6.0992e-01, -3.2334e-01, 9.8982e-02, -6.3662e-03, 2.9666e-01,\n", " 2.6827e-01, 2.6206e-01, 1.5524e-01, -1.4986e-01, -3.7728e-01,\n", " -2.4287e-01, 5.9968e-01, -1.5402e-02, 7.1346e-01, 6.4422e-02,\n", " -3.3859e-01, 7.1390e-01, 2.8849e-02, 1.9976e-01, 4.0740e-01,\n", " -2.5490e-01, 4.9943e-01, 2.1258e-01, 3.8105e-02, -7.4817e-01,\n", " -4.9476e-01, -3.4258e-01, 8.5370e-01, -4.7424e-02, 2.3023e-03,\n", " 7.6213e-02, -2.0977e-01, -5.4353e-01, 7.5130e-02, 4.5926e-02,\n", " -2.5807e-01, -4.3763e-01, 5.4502e-04, -3.5419e-01, 3.9410e-01,\n", " 9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\n", " -1.8388e-01, -3.3026e-01, 4.2534e-01, -6.2395e-01, -4.9245e-01,\n", " -4.3765e-01, -8.1805e-01, 3.7798e-01, -2.5220e-01],\n", " [-1.9273e-01, 9.1169e-01, 4.3890e-01, 1.0174e-01, -1.9656e-02,\n", " -3.9100e-01, -6.5023e-01, 3.5940e-01, 4.9301e-01, 1.7146e-01,\n", " 7.3839e-02, -7.8011e-01, -6.7214e-01, 3.3858e-01, 1.7792e-01,\n", " 2.6100e-01, 6.7196e-01, -3.3304e-02, 7.4288e-01, -5.9793e-01,\n", " -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02, 3.9973e-01,\n", " 1.0201e-01, 1.4956e-01, 6.1471e-02, 3.4410e-01, 4.2557e-02,\n", " 6.9241e-01, -6.9050e-01, -9.9599e-02, 2.7794e-01, 2.8065e-01,\n", " 7.2173e-02, 6.3955e-03, 7.8340e-01, -1.9722e-01, -2.8579e-01,\n", " -6.8728e-02, 3.1987e-01, 8.2484e-02, -1.4364e-01, -4.0027e-01,\n", " -1.0889e-01, -1.0124e-01, -3.7705e-02, 6.1753e-01, 3.5287e-01,\n", " -2.5209e-01, 7.4057e-02, -5.3195e-01, -6.3228e-01, 1.0961e-01,\n", " 3.5351e-01, -6.0642e-01, 3.5917e-01, -1.7134e-01, 8.0014e-01,\n", " -6.3953e-01, -3.3486e-01, 1.1678e-01, -3.5628e-01]],\n", "\n", " [[-2.3718e-01, 7.2870e-01, 3.3308e-01, 2.0858e-01, -2.3181e-01,\n", " -6.6301e-01, -6.4745e-01, 1.3262e-01, 4.8326e-01, 6.6392e-02,\n", " 6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02, 3.4328e-01,\n", " 5.9002e-01, 6.3913e-01, -9.9936e-02, 6.0167e-01, -6.4984e-01,\n", " -1.3278e-01, 5.5604e-01, -2.1617e-01, 6.7785e-01, 4.6192e-01,\n", " -2.8609e-01, 6.6761e-01, 1.2330e-01, 1.9491e-01, 2.3275e-01,\n", " 4.1373e-01, -6.0354e-01, 8.9942e-02, 3.4765e-01, -4.1777e-01,\n", " 8.5970e-03, -2.2424e-01, 8.6788e-01, -2.3015e-01, -1.3828e-01,\n", " 5.8865e-02, 1.4415e-01, -4.8419e-01, 1.6516e-01, -2.7493e-01,\n", " -2.1732e-01, -2.4245e-01, 1.6697e-01, 4.6947e-01, 5.7996e-01,\n", " -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\n", " 2.2014e-01, -6.1083e-01, 4.0197e-01, -6.2808e-01, 7.9478e-01,\n", " -5.4961e-01, -6.7529e-01, 1.5489e-02, -2.9274e-01],\n", " [-3.6078e-01, 6.9189e-01, 6.1440e-01, 6.4958e-01, -4.3455e-01,\n", " -3.5583e-01, -7.3222e-01, -8.7517e-01, 6.3373e-01, -2.2112e-03,\n", " 2.9666e-01, -7.9231e-01, -5.1286e-01, 5.6895e-01, 1.2489e-01,\n", " 7.5713e-01, 6.4310e-01, 6.4566e-01, 8.3428e-01, -6.3758e-01,\n", " -8.9328e-01, -1.6739e-01, -1.3025e-01, 5.3928e-02, 2.3477e-01,\n", " -9.2187e-01, 7.0911e-01, 4.6542e-02, -2.4542e-01, 1.0799e-02,\n", " 8.8081e-01, -3.7415e-01, 5.2033e-01, 1.5552e-02, -5.1183e-01,\n", " 2.1724e-01, -8.0264e-01, 8.7225e-01, 5.0256e-01, -1.8578e-01,\n", " -1.4407e-01, -6.4479e-01, -7.9479e-01, 4.0860e-01, -2.7567e-01,\n", " 9.1192e-04, -3.5091e-01, 3.0913e-01, 8.0915e-01, 8.8322e-01,\n", " -4.6345e-01, 6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\n", " 7.7383e-01, -8.5906e-01, 5.4155e-01, 9.6536e-01, 7.4088e-01,\n", " -5.4469e-01, -8.6252e-02, 9.5525e-01, -9.2331e-01]],\n", "\n", " [[-4.0418e-01, 5.5571e-01, 5.8886e-01, 6.7950e-01, -5.3868e-01,\n", " -6.0882e-01, -7.3359e-01, -8.8612e-01, 6.2786e-01, -5.4523e-02,\n", " 5.7679e-01, -8.6235e-01, -3.5407e-01, 3.5055e-01, 2.2463e-01,\n", " 8.5547e-01, 6.4569e-01, 6.2466e-01, 7.5043e-01, -6.7614e-01,\n", " -8.8315e-01, 3.6020e-01, -9.6990e-02, 6.7707e-01, 2.9608e-01,\n", " -9.3966e-01, 8.0311e-01, 8.0575e-02, -2.5028e-01, 1.8937e-01,\n", " 8.5196e-01, -3.1190e-01, 5.9931e-01, 1.1915e-01, -7.4333e-01,\n", " 2.9976e-01, -8.6610e-01, 9.2273e-01, 4.9476e-01, -6.9907e-02,\n", " -3.3817e-02, -6.8751e-01, -8.7660e-01, 4.9436e-01, -1.5151e-01,\n", " -1.1269e-01, -4.6676e-01, 4.0701e-01, 7.6854e-01, 9.3047e-01,\n", " -4.3576e-01, 5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\n", " 7.7006e-01, -8.6413e-01, 5.6022e-01, 9.5810e-01, 7.2682e-01,\n", " -4.5427e-01, -2.5659e-01, 9.5853e-01, -9.2379e-01],\n", " [-7.7460e-01, 9.9026e-01, 6.3722e-01, 2.0712e-01, -3.6535e-01,\n", " -5.1381e-01, -9.8802e-01, -9.2029e-01, 9.4324e-01, 1.2037e-02,\n", " 5.6740e-01, -9.2826e-01, -7.5338e-01, 9.8160e-01, 8.7260e-02,\n", " 7.5755e-01, 6.3618e-01, 9.7823e-01, 9.8206e-01, -6.6112e-01,\n", " -9.9476e-01, -2.1120e-01, -9.0182e-02, 2.4394e-01, 2.6934e-01,\n", " -9.1776e-01, 4.5227e-01, 9.6771e-02, 2.4004e-01, 1.9161e-01,\n", " 9.6763e-01, -6.2995e-01, 4.5209e-01, -7.3755e-01, 1.7895e-01,\n", " 8.2790e-01, -7.4495e-01, 9.3048e-01, 6.8724e-01, -2.2175e-01,\n", " 7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\n", " 1.0962e-02, -3.9790e-01, -5.0389e-01, 8.2996e-01, 9.7687e-01,\n", " -9.1826e-01, 8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\n", " 8.0700e-01, -9.9238e-01, 7.9356e-01, 9.7202e-01, 8.6634e-01,\n", " -9.6564e-01, 8.0110e-01, 9.8311e-01, -9.5971e-01]],\n", "\n", " [[-7.8544e-01, 9.8591e-01, 6.1879e-01, 2.5189e-01, -4.5887e-01,\n", " -5.9831e-01, -9.8791e-01, -9.2568e-01, 9.4309e-01, -3.7440e-02,\n", " 6.7137e-01, -9.4777e-01, -6.6153e-01, 9.7169e-01, 1.8339e-01,\n", " 8.5464e-01, 6.4561e-01, 9.7789e-01, 9.7138e-01, -6.9134e-01,\n", " -9.9371e-01, 2.8951e-01, -5.6722e-02, 5.8515e-01, 3.1130e-01,\n", " -9.3571e-01, 5.6603e-01, 1.3169e-01, 2.1265e-01, 2.8412e-01,\n", " 9.6472e-01, -6.0069e-01, 5.2081e-01, -7.0690e-01, 7.3823e-02,\n", " 8.5549e-01, -7.9405e-01, 9.5622e-01, 6.7850e-01, -1.1331e-01,\n", " 8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\n", " -9.5556e-02, -4.8684e-01, -4.8504e-01, 7.9844e-01, 9.8674e-01,\n", " -9.1737e-01, 7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\n", " 8.0822e-01, -9.9301e-01, 8.0589e-01, 9.6631e-01, 8.5895e-01,\n", " -9.5692e-01, 7.8279e-01, 9.8394e-01, -9.6014e-01],\n", " [-8.9920e-01, 9.9750e-01, 6.7051e-01, -1.4098e-01, -2.9074e-01,\n", " -4.4487e-01, -9.9862e-01, -9.4112e-01, 9.8095e-01, 1.8637e-02,\n", " 6.6284e-01, -9.7143e-01, -8.7824e-01, 9.9706e-01, 5.6382e-02,\n", " 7.5856e-01, 6.5313e-01, 9.8820e-01, 9.9701e-01, -6.9944e-01,\n", " -9.9922e-01, -2.5071e-01, -5.8678e-02, 3.5966e-01, 2.8802e-01,\n", " -9.1436e-01, 3.4018e-01, 1.3987e-01, 4.1294e-01, 2.1804e-01,\n", " 9.8001e-01, -7.9156e-01, 3.8970e-01, -8.6485e-01, 5.5832e-01,\n", " 9.3225e-01, -6.9751e-01, 9.6238e-01, 7.7753e-01, -2.4782e-01,\n", " 9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\n", " 2.0784e-02, -4.3880e-01, -8.0816e-01, 8.4524e-01, 9.9437e-01,\n", " -9.5786e-01, 9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\n", " 8.3064e-01, -9.9141e-01, 8.9800e-01, 9.7707e-01, 9.1796e-01,\n", " -9.9589e-01, 9.2743e-01, 9.9109e-01, -9.7968e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 0.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([2, 0])\n", "dec_state: tensor([[[ 0.8995, 0.8487, -0.9818, 0.9413, 0.8170, 0.6225, -0.7073,\n", " -0.1602, -0.4977, 0.6484, 0.2149, -0.9204, 0.1784, 0.7809,\n", " -0.8653, -0.5335, 0.1459, -0.6125, -0.7749, 0.4917, 0.9715,\n", " -0.6713, 0.3599, 0.9623, 0.8225, -0.9753, -0.8747, -0.7821,\n", " -0.6621, -0.6381, -0.9593, 0.9729, -0.8560, 0.7317, -0.7857,\n", " -0.9795, 0.7271, -0.4167, 0.1108, 0.6148, -0.9151, 0.8749,\n", " 0.3905, -0.0315, -0.6576, 0.9035, -0.7950, 0.8983, -0.3758,\n", " 0.7781, 0.6765, 0.9403, 0.1260, -0.8515, -0.3543, 0.0768,\n", " 0.9834, 0.8436, 0.2376, 0.3288, -0.9894, 0.9747, -0.3122,\n", " 0.5298],\n", " [ 0.6142, 0.9755, -0.1985, 0.7866, 0.6444, 0.4275, -0.8127,\n", " -0.4725, -0.3550, 0.3867, 0.4586, -0.8898, -0.4211, 0.8709,\n", " -0.1648, -0.3474, -0.5829, -0.9487, -0.4425, 0.6818, 0.9701,\n", " -0.9265, 0.3958, 0.8958, 0.8823, -0.9589, -0.9212, -0.6418,\n", " -0.8328, -0.8333, -0.6297, 0.9049, 0.2459, 0.8434, -0.8643,\n", " -0.9952, 0.1259, -0.6513, -0.3223, 0.5902, -0.9408, 0.9836,\n", " 0.8432, -0.1127, -0.7061, 0.9817, -0.9302, 0.3571, -0.4570,\n", " 0.7650, 0.9148, 0.9743, 0.2532, -0.9064, 0.2125, -0.2501,\n", " 0.9681, 0.9013, 0.4841, 0.1279, -0.9949, 0.9674, 0.0852,\n", " 0.4460]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-1.8919e-01, 3.4259e-01, 3.1522e-01, -4.7506e-01, -5.8994e-01,\n", " 5.1473e-01, 5.6873e-02, 5.4040e-01, -3.3129e-01, -1.3599e-01,\n", " 4.1210e-01, 2.9224e-01, 4.4804e-01, -2.0969e-01, 1.8312e-01,\n", " -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\n", " 9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\n", " -7.9656e-02, 8.3929e-01, 4.3339e-01, 3.9920e-01, 4.5494e-01,\n", " -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\n", " -1.3184e-01, 2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\n", " -1.2202e-01, -1.8331e-01, 1.9878e-01, 3.4604e-01, 4.5695e-01,\n", " -1.2873e-01, 1.2538e-01, 9.8116e-02, -5.7898e-01, -1.9313e-01,\n", " 3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02, 1.4781e-01,\n", " 4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\n", " 4.2793e-01, -1.4875e-02, -1.8840e-01, 1.0795e-02],\n", " [-5.6161e-02, 5.1079e-01, 2.5469e-01, 4.0636e-01, -3.6313e-01,\n", " 1.5495e-01, -9.8928e-02, 1.4182e-01, -7.7240e-02, -2.6764e-01,\n", " 2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02, 3.2069e-01,\n", " -1.9700e-01, 6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\n", " -6.0447e-01, -5.2675e-01, 5.4918e-01, 3.0957e-01, -3.8066e-01,\n", " -5.1973e-01, 7.1569e-02, 5.6027e-01, -1.1235e-02, 1.3392e-02,\n", " 1.8581e-01, 3.8664e-01, -6.3076e-01, 6.1353e-01, 1.7132e-01,\n", " -2.1614e-02, -4.0260e-01, 7.6765e-01, -6.0879e-01, 2.6077e-01,\n", " -7.0112e-02, 3.3747e-01, -6.6588e-01, -2.1261e-01, 7.7419e-02,\n", " -3.0452e-01, -3.6169e-01, 2.3957e-01, -2.0789e-02, 4.0888e-01,\n", " 1.9174e-01, 6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\n", " 1.3132e-01, 3.5580e-02, 3.3620e-01, -3.2242e-01, 2.6653e-01,\n", " -6.5847e-01, 3.5521e-01, 6.4256e-01, -4.4652e-01]],\n", "\n", " [[ 3.0272e-01, 2.5549e-01, -6.7423e-01, 8.7988e-01, -4.8633e-01,\n", " -4.3515e-01, 1.2682e-01, 7.5875e-01, 1.4521e-01, -3.9192e-01,\n", " 3.5380e-01, -1.7771e-03, 4.2796e-01, -6.6608e-01, 5.5359e-01,\n", " 4.9745e-01, 3.8194e-01, 1.6847e-01, 1.9478e-01, -3.7168e-01,\n", " -3.1005e-01, 2.3350e-01, 1.3845e-02, 8.2973e-01, 4.7779e-01,\n", " -4.5664e-01, 8.1294e-01, 2.1875e-01, 3.5033e-02, 2.0797e-01,\n", " 1.3223e-01, 9.8914e-02, 8.1988e-01, 1.6974e-01, -3.2957e-01,\n", " 2.3152e-02, -5.8926e-01, 9.2784e-01, 1.8358e-01, 6.9385e-01,\n", " -2.9518e-01, 9.3706e-02, -7.4089e-02, -2.3288e-01, 4.5474e-01,\n", " -3.7577e-01, 1.8794e-01, -7.1556e-01, -5.2221e-03, 6.3141e-01,\n", " -3.0712e-01, -1.7799e-01, 3.4922e-02, -7.6832e-01, -1.5140e-01,\n", " 1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01, 3.7399e-01,\n", " -6.4216e-01, -7.3713e-01, 1.1034e-01, -1.4378e-01],\n", " [-3.0783e-01, 7.0619e-01, 2.8843e-01, 3.4486e-01, -3.1416e-02,\n", " -5.5595e-01, -2.5893e-01, 3.7422e-01, 3.1599e-01, -1.7643e-02,\n", " 2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02, 1.7674e-01,\n", " -2.6358e-01, 6.5556e-01, -6.6972e-01, 2.4392e-01, -5.5597e-01,\n", " -5.4574e-01, -4.5712e-01, 2.6134e-01, 4.2726e-01, -1.7113e-02,\n", " -5.0937e-01, 6.9873e-02, 2.8159e-01, 4.4168e-02, -5.9215e-02,\n", " 5.3164e-01, 1.4104e-01, -1.7418e-01, 6.2521e-01, 3.4052e-01,\n", " -1.7095e-01, -3.7818e-01, 6.7129e-01, 3.5225e-03, 2.0033e-01,\n", " 2.6244e-01, 1.0848e-01, -4.6903e-03, -8.2113e-02, 1.2762e-01,\n", " -1.8695e-01, -2.9354e-01, 2.2579e-01, 1.6966e-02, 3.7529e-01,\n", " -4.1212e-02, 5.5560e-01, -4.2108e-01, -5.6336e-01, 2.0530e-02,\n", " 3.1856e-01, -1.6777e-01, 2.0985e-01, -3.4052e-01, 6.5363e-01,\n", " -6.8536e-01, -9.1188e-02, 4.7263e-01, -4.1575e-01]],\n", "\n", " [[-4.3091e-01, 4.7975e-02, -6.4154e-01, 7.8851e-01, -2.6898e-01,\n", " -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\n", " 6.2292e-01, -5.1763e-01, 5.1943e-01, -4.2000e-01, 5.3167e-01,\n", " -2.8981e-01, 4.0898e-01, 3.6800e-01, 5.1437e-01, -2.4354e-01,\n", " -4.3747e-01, 5.0437e-01, 2.3844e-01, 8.9447e-01, 3.0840e-01,\n", " -2.6264e-01, 7.8487e-01, 2.0361e-01, -4.4836e-01, 2.9879e-01,\n", " 3.2300e-02, 3.8987e-01, 8.8484e-01, 2.8142e-01, -5.2596e-01,\n", " -2.4904e-02, -6.4482e-01, 9.4409e-01, 7.2259e-01, 6.7215e-01,\n", " -8.2231e-01, 1.9351e-01, -8.7342e-02, 7.0266e-02, 9.5666e-02,\n", " -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02, 4.4018e-01,\n", " -3.8727e-01, -4.3340e-01, 5.1425e-01, -8.3512e-01, -3.8365e-02,\n", " 6.5514e-02, 1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\n", " -4.2758e-01, -8.9924e-01, 1.4681e-01, -5.5334e-01],\n", " [-3.9027e-01, 6.9603e-01, 4.5691e-01, 1.6166e-01, 7.7914e-02,\n", " -3.6820e-01, 3.5885e-01, 2.6877e-01, -4.4138e-01, -1.6789e-02,\n", " -1.9538e-01, 1.2826e-01, -7.0902e-01, 5.8229e-01, -5.2308e-02,\n", " -4.3843e-01, 5.0442e-01, 1.8963e-01, 2.9756e-01, -2.1835e-01,\n", " -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\n", " 1.9278e-01, 9.0932e-02, -5.2118e-02, 4.5367e-01, 1.5111e-01,\n", " 5.1936e-01, 3.5247e-02, -3.8751e-02, -1.4526e-01, 5.1607e-01,\n", " 2.3604e-02, -4.8188e-02, 7.6434e-01, 3.3253e-01, -2.4698e-01,\n", " 4.3771e-03, 1.0644e-02, 8.0129e-02, -4.2507e-01, -5.0781e-01,\n", " -1.4674e-01, -2.0134e-01, -3.1696e-01, 1.2785e-01, 3.3862e-02,\n", " -1.8421e-02, 5.6756e-01, -1.9796e-01, -2.4455e-01, 6.6150e-02,\n", " 4.8072e-01, -5.5249e-01, 3.9305e-01, 3.4074e-02, 1.3419e-01,\n", " -5.0839e-01, 3.6208e-01, 5.5418e-01, -3.4569e-01]],\n", "\n", " [[-4.4933e-01, -7.1931e-02, 5.0550e-03, 3.1785e-01, -2.0353e-01,\n", " -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\n", " 6.0992e-01, -3.2334e-01, 9.8982e-02, -6.3662e-03, 2.9666e-01,\n", " 2.6827e-01, 2.6206e-01, 1.5524e-01, -1.4986e-01, -3.7728e-01,\n", " -2.4287e-01, 5.9968e-01, -1.5402e-02, 7.1346e-01, 6.4422e-02,\n", " -3.3859e-01, 7.1390e-01, 2.8849e-02, 1.9976e-01, 4.0740e-01,\n", " -2.5490e-01, 4.9943e-01, 2.1258e-01, 3.8105e-02, -7.4817e-01,\n", " -4.9476e-01, -3.4258e-01, 8.5370e-01, -4.7424e-02, 2.3023e-03,\n", " 7.6213e-02, -2.0977e-01, -5.4353e-01, 7.5130e-02, 4.5926e-02,\n", " -2.5807e-01, -4.3763e-01, 5.4502e-04, -3.5419e-01, 3.9410e-01,\n", " 9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\n", " -1.8388e-01, -3.3026e-01, 4.2534e-01, -6.2395e-01, -4.9245e-01,\n", " -4.3765e-01, -8.1805e-01, 3.7798e-01, -2.5220e-01],\n", " [-1.9273e-01, 9.1169e-01, 4.3890e-01, 1.0174e-01, -1.9656e-02,\n", " -3.9100e-01, -6.5023e-01, 3.5940e-01, 4.9301e-01, 1.7146e-01,\n", " 7.3839e-02, -7.8011e-01, -6.7214e-01, 3.3858e-01, 1.7792e-01,\n", " 2.6100e-01, 6.7196e-01, -3.3304e-02, 7.4288e-01, -5.9793e-01,\n", " -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02, 3.9973e-01,\n", " 1.0201e-01, 1.4956e-01, 6.1471e-02, 3.4410e-01, 4.2557e-02,\n", " 6.9241e-01, -6.9050e-01, -9.9599e-02, 2.7794e-01, 2.8065e-01,\n", " 7.2173e-02, 6.3955e-03, 7.8340e-01, -1.9722e-01, -2.8579e-01,\n", " -6.8728e-02, 3.1987e-01, 8.2484e-02, -1.4364e-01, -4.0027e-01,\n", " -1.0889e-01, -1.0124e-01, -3.7705e-02, 6.1753e-01, 3.5287e-01,\n", " -2.5209e-01, 7.4057e-02, -5.3195e-01, -6.3228e-01, 1.0961e-01,\n", " 3.5351e-01, -6.0642e-01, 3.5917e-01, -1.7134e-01, 8.0014e-01,\n", " -6.3953e-01, -3.3486e-01, 1.1678e-01, -3.5628e-01]],\n", "\n", " [[-2.3718e-01, 7.2870e-01, 3.3308e-01, 2.0858e-01, -2.3181e-01,\n", " -6.6301e-01, -6.4745e-01, 1.3262e-01, 4.8326e-01, 6.6392e-02,\n", " 6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02, 3.4328e-01,\n", " 5.9002e-01, 6.3913e-01, -9.9936e-02, 6.0167e-01, -6.4984e-01,\n", " -1.3278e-01, 5.5604e-01, -2.1617e-01, 6.7785e-01, 4.6192e-01,\n", " -2.8609e-01, 6.6761e-01, 1.2330e-01, 1.9491e-01, 2.3275e-01,\n", " 4.1373e-01, -6.0354e-01, 8.9942e-02, 3.4765e-01, -4.1777e-01,\n", " 8.5970e-03, -2.2424e-01, 8.6788e-01, -2.3015e-01, -1.3828e-01,\n", " 5.8865e-02, 1.4415e-01, -4.8419e-01, 1.6516e-01, -2.7493e-01,\n", " -2.1732e-01, -2.4245e-01, 1.6697e-01, 4.6947e-01, 5.7996e-01,\n", " -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\n", " 2.2014e-01, -6.1083e-01, 4.0197e-01, -6.2808e-01, 7.9478e-01,\n", " -5.4961e-01, -6.7529e-01, 1.5489e-02, -2.9274e-01],\n", " [-3.6078e-01, 6.9189e-01, 6.1440e-01, 6.4958e-01, -4.3455e-01,\n", " -3.5583e-01, -7.3222e-01, -8.7517e-01, 6.3373e-01, -2.2112e-03,\n", " 2.9666e-01, -7.9231e-01, -5.1286e-01, 5.6895e-01, 1.2489e-01,\n", " 7.5713e-01, 6.4310e-01, 6.4566e-01, 8.3428e-01, -6.3758e-01,\n", " -8.9328e-01, -1.6739e-01, -1.3025e-01, 5.3928e-02, 2.3477e-01,\n", " -9.2187e-01, 7.0911e-01, 4.6542e-02, -2.4542e-01, 1.0799e-02,\n", " 8.8081e-01, -3.7415e-01, 5.2033e-01, 1.5552e-02, -5.1183e-01,\n", " 2.1724e-01, -8.0264e-01, 8.7225e-01, 5.0256e-01, -1.8578e-01,\n", " -1.4407e-01, -6.4479e-01, -7.9479e-01, 4.0860e-01, -2.7567e-01,\n", " 9.1192e-04, -3.5091e-01, 3.0913e-01, 8.0915e-01, 8.8322e-01,\n", " -4.6345e-01, 6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\n", " 7.7383e-01, -8.5906e-01, 5.4155e-01, 9.6536e-01, 7.4088e-01,\n", " -5.4469e-01, -8.6252e-02, 9.5525e-01, -9.2331e-01]],\n", "\n", " [[-4.0418e-01, 5.5571e-01, 5.8886e-01, 6.7950e-01, -5.3868e-01,\n", " -6.0882e-01, -7.3359e-01, -8.8612e-01, 6.2786e-01, -5.4523e-02,\n", " 5.7679e-01, -8.6235e-01, -3.5407e-01, 3.5055e-01, 2.2463e-01,\n", " 8.5547e-01, 6.4569e-01, 6.2466e-01, 7.5043e-01, -6.7614e-01,\n", " -8.8315e-01, 3.6020e-01, -9.6990e-02, 6.7707e-01, 2.9608e-01,\n", " -9.3966e-01, 8.0311e-01, 8.0575e-02, -2.5028e-01, 1.8937e-01,\n", " 8.5196e-01, -3.1190e-01, 5.9931e-01, 1.1915e-01, -7.4333e-01,\n", " 2.9976e-01, -8.6610e-01, 9.2273e-01, 4.9476e-01, -6.9907e-02,\n", " -3.3817e-02, -6.8751e-01, -8.7660e-01, 4.9436e-01, -1.5151e-01,\n", " -1.1269e-01, -4.6676e-01, 4.0701e-01, 7.6854e-01, 9.3047e-01,\n", " -4.3576e-01, 5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\n", " 7.7006e-01, -8.6413e-01, 5.6022e-01, 9.5810e-01, 7.2682e-01,\n", " -4.5427e-01, -2.5659e-01, 9.5853e-01, -9.2379e-01],\n", " [-7.7460e-01, 9.9026e-01, 6.3722e-01, 2.0712e-01, -3.6535e-01,\n", " -5.1381e-01, -9.8802e-01, -9.2029e-01, 9.4324e-01, 1.2037e-02,\n", " 5.6740e-01, -9.2826e-01, -7.5338e-01, 9.8160e-01, 8.7260e-02,\n", " 7.5755e-01, 6.3618e-01, 9.7823e-01, 9.8206e-01, -6.6112e-01,\n", " -9.9476e-01, -2.1120e-01, -9.0182e-02, 2.4394e-01, 2.6934e-01,\n", " -9.1776e-01, 4.5227e-01, 9.6771e-02, 2.4004e-01, 1.9161e-01,\n", " 9.6763e-01, -6.2995e-01, 4.5209e-01, -7.3755e-01, 1.7895e-01,\n", " 8.2790e-01, -7.4495e-01, 9.3048e-01, 6.8724e-01, -2.2175e-01,\n", " 7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\n", " 1.0962e-02, -3.9790e-01, -5.0389e-01, 8.2996e-01, 9.7687e-01,\n", " -9.1826e-01, 8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\n", " 8.0700e-01, -9.9238e-01, 7.9356e-01, 9.7202e-01, 8.6634e-01,\n", " -9.6564e-01, 8.0110e-01, 9.8311e-01, -9.5971e-01]],\n", "\n", " [[-7.8544e-01, 9.8591e-01, 6.1879e-01, 2.5189e-01, -4.5887e-01,\n", " -5.9831e-01, -9.8791e-01, -9.2568e-01, 9.4309e-01, -3.7440e-02,\n", " 6.7137e-01, -9.4777e-01, -6.6153e-01, 9.7169e-01, 1.8339e-01,\n", " 8.5464e-01, 6.4561e-01, 9.7789e-01, 9.7138e-01, -6.9134e-01,\n", " -9.9371e-01, 2.8951e-01, -5.6722e-02, 5.8515e-01, 3.1130e-01,\n", " -9.3571e-01, 5.6603e-01, 1.3169e-01, 2.1265e-01, 2.8412e-01,\n", " 9.6472e-01, -6.0069e-01, 5.2081e-01, -7.0690e-01, 7.3823e-02,\n", " 8.5549e-01, -7.9405e-01, 9.5622e-01, 6.7850e-01, -1.1331e-01,\n", " 8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\n", " -9.5556e-02, -4.8684e-01, -4.8504e-01, 7.9844e-01, 9.8674e-01,\n", " -9.1737e-01, 7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\n", " 8.0822e-01, -9.9301e-01, 8.0589e-01, 9.6631e-01, 8.5895e-01,\n", " -9.5692e-01, 7.8279e-01, 9.8394e-01, -9.6014e-01],\n", " [-8.9920e-01, 9.9750e-01, 6.7051e-01, -1.4098e-01, -2.9074e-01,\n", " -4.4487e-01, -9.9862e-01, -9.4112e-01, 9.8095e-01, 1.8637e-02,\n", " 6.6284e-01, -9.7143e-01, -8.7824e-01, 9.9706e-01, 5.6382e-02,\n", " 7.5856e-01, 6.5313e-01, 9.8820e-01, 9.9701e-01, -6.9944e-01,\n", " -9.9922e-01, -2.5071e-01, -5.8678e-02, 3.5966e-01, 2.8802e-01,\n", " -9.1436e-01, 3.4018e-01, 1.3987e-01, 4.1294e-01, 2.1804e-01,\n", " 9.8001e-01, -7.9156e-01, 3.8970e-01, -8.6485e-01, 5.5832e-01,\n", " 9.3225e-01, -6.9751e-01, 9.6238e-01, 7.7753e-01, -2.4782e-01,\n", " 9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\n", " 2.0784e-02, -4.3880e-01, -8.0816e-01, 8.4524e-01, 9.9437e-01,\n", " -9.5786e-01, 9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\n", " 8.3064e-01, -9.9141e-01, 8.9800e-01, 9.7707e-01, 9.1796e-01,\n", " -9.9589e-01, 9.2743e-01, 9.9109e-01, -9.7968e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 0.])\n", "------------------------------\n", "tensor([[ 6, 7, 22, 32, 17, 3, 2],\n", " [ 8, 10, 28, 9, 16, 3, 2]])\n", "tensor([[ 7, 5, 23, 22, 3, 2, 0],\n", " [ 6, 4, 13, 9, 15, 3, 2]])\n", "序列第 [0]个单词\n", "解码器输入dec_input: tensor([1, 1])\n", "dec_state: tensor([[[-0.3774, 0.8298, 0.5828, 0.5908, -0.8710, -0.2361, -0.9175,\n", " -0.9190, 0.7905, -0.5800, 0.9189, -0.8954, -0.7169, 0.3808,\n", " 0.2816, 0.8387, -0.9332, 0.6512, 0.8832, 0.9834, -0.9143,\n", " -0.4106, 0.7529, 0.3553, 0.7945, -0.9574, -0.8182, -0.3939,\n", " -0.3954, 0.2221, 0.1966, -0.5541, 0.9405, 0.2179, 0.1027,\n", " 0.8220, 0.9010, 0.8358, -0.1127, -0.8718, -0.5992, -0.9633,\n", " -0.1513, 0.5325, -0.9306, 0.8735, -0.7471, -0.9183, 0.8745,\n", " 0.9078, -0.8457, 0.9495, -0.8475, 0.5729, -0.6502, 0.8238,\n", " -0.7890, 0.6428, 0.9725, 0.9527, -0.6826, 0.7575, 0.9699,\n", " -0.9511],\n", " [-0.5162, 0.7963, 0.5833, 0.6184, -0.8239, -0.2652, -0.9220,\n", " -0.9531, 0.8101, -0.7137, 0.9250, -0.8846, -0.5295, 0.5542,\n", " 0.3271, 0.8636, -0.8552, 0.7838, 0.9709, 0.9755, -0.9442,\n", " 0.2424, 0.4293, 0.5719, 0.7542, -0.9200, -0.8459, -0.3651,\n", " -0.3915, 0.3918, 0.1574, -0.4432, 0.9716, 0.2659, -0.0901,\n", " 0.8275, 0.9018, 0.7706, 0.0455, -0.7900, -0.6035, -0.9510,\n", " -0.1729, 0.3693, -0.9309, 0.8266, -0.6342, -0.8883, 0.8489,\n", " 0.9198, -0.7913, 0.9118, -0.8554, 0.5371, -0.8256, 0.8453,\n", " -0.8342, 0.6933, 0.9627, 0.9020, -0.6181, 0.7121, 0.9641,\n", " -0.9233]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.8794e-02, 5.3342e-01, 2.7767e-01, 3.9600e-01, -3.6861e-01,\n", " 1.5557e-01, -1.0969e-01, 1.7756e-01, -1.0504e-01, -2.7521e-01,\n", " 2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03, 3.0370e-01,\n", " -1.8936e-01, 6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\n", " -6.2699e-01, -5.6061e-01, 5.4069e-01, 2.7735e-01, -3.8531e-01,\n", " -5.4473e-01, 6.6829e-02, 5.7072e-01, 3.5158e-02, 1.8771e-02,\n", " 1.7612e-01, 3.9111e-01, -6.5084e-01, 6.1659e-01, 1.7997e-01,\n", " -3.9050e-02, -3.8968e-01, 7.8072e-01, -6.3102e-01, 2.3746e-01,\n", " -5.4918e-02, 3.5109e-01, -6.9286e-01, -2.8419e-01, 7.8028e-02,\n", " -3.1589e-01, -3.9509e-01, 2.7848e-01, -1.8915e-02, 4.0646e-01,\n", " 1.8700e-01, 6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\n", " 1.7482e-01, 5.1712e-02, 3.2650e-01, -3.3498e-01, 2.5596e-01,\n", " -6.6363e-01, 3.9568e-01, 6.6326e-01, -4.5198e-01],\n", " [-4.4663e-01, 4.9992e-02, -1.1279e-01, 5.5714e-01, 2.9287e-01,\n", " 5.3430e-02, -3.2958e-02, -6.9619e-01, 3.7287e-01, -1.1730e-01,\n", " 4.7527e-01, -1.4236e-01, 1.0980e-01, 3.4374e-01, 4.4925e-02,\n", " 5.4476e-01, 1.3434e-01, 2.4798e-01, 1.4511e-01, 2.8671e-01,\n", " -7.2405e-01, -4.0333e-02, 1.2978e-01, -1.1822e-01, -6.4893e-01,\n", " 1.3198e-01, -5.2837e-01, -3.7102e-01, 6.7838e-02, 8.5206e-02,\n", " 1.3851e-01, -3.6910e-02, 3.1990e-02, 9.5910e-02, -2.7345e-01,\n", " -9.7926e-02, -6.3590e-01, 3.5229e-01, 6.0026e-01, 8.7420e-02,\n", " -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\n", " 3.1581e-01, -3.0370e-01, 6.5536e-02, 1.5106e-01, 1.2373e-01,\n", " 1.4191e-01, 5.0884e-01, 1.8682e-01, -4.1712e-01, -1.7723e-01,\n", " 2.8597e-01, -5.5452e-01, 2.8961e-01, 2.7804e-01, -1.9407e-01,\n", " -4.4526e-01, 3.7736e-01, 3.5711e-01, -3.5176e-01]],\n", "\n", " [[-2.1324e-01, 5.2025e-01, 5.0695e-01, 3.2545e-01, -5.7762e-01,\n", " -7.3069e-01, -1.0028e-01, 4.7019e-01, -3.5687e-01, -7.2285e-01,\n", " 2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01, 4.3462e-02,\n", " 3.6790e-02, 7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\n", " -4.6593e-01, -5.6537e-01, 5.0546e-01, 8.1896e-01, -2.9426e-01,\n", " -7.9558e-01, 8.4542e-01, 5.4046e-01, 5.8609e-01, 5.0922e-01,\n", " -1.6546e-01, 6.0234e-01, -5.6518e-01, 8.5887e-01, -4.5587e-01,\n", " -3.5113e-02, -3.1436e-01, 7.4797e-01, -6.6369e-01, -2.0690e-01,\n", " 7.0571e-01, -4.6216e-01, -7.8772e-01, 3.5452e-01, 2.6347e-01,\n", " -4.1197e-01, -4.6747e-01, 4.9282e-01, 6.8443e-02, 2.7213e-02,\n", " 3.8875e-01, 6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\n", " 8.9968e-01, 4.0096e-01, 9.4859e-02, -7.1174e-01, 3.0494e-02,\n", " -7.4953e-01, 8.1606e-02, 6.2147e-01, -2.7554e-01],\n", " [-4.6765e-01, 3.5594e-01, -4.6087e-01, 6.5994e-01, 1.5107e-01,\n", " -4.9836e-02, 3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\n", " 8.9305e-02, 4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\n", " 1.2247e-01, -7.1975e-02, -4.5834e-02, 8.9275e-02, 1.3229e-01,\n", " -3.2071e-01, 8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\n", " 5.4388e-02, 2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\n", " 2.7214e-01, -1.7248e-01, 2.0683e-01, -7.7345e-03, -2.9245e-01,\n", " -1.5008e-01, -4.2409e-01, -2.4032e-01, 2.3066e-01, 1.9569e-01,\n", " -3.6902e-01, 2.6708e-01, -1.5023e-01, -1.7348e-01, 3.3117e-01,\n", " 1.2738e-01, -2.8993e-01, -1.2677e-01, 1.4847e-01, 3.7645e-01,\n", " -1.9285e-01, 4.2530e-01, 2.1337e-01, -5.1065e-01, -3.3662e-01,\n", " 1.3590e-02, 2.5094e-02, 2.0697e-01, 1.3003e-01, -4.5041e-01,\n", " 1.9167e-01, 5.0020e-01, 1.3076e-01, -4.9900e-01]],\n", "\n", " [[-2.8282e-02, 4.8322e-01, -4.5622e-02, 2.9975e-01, -1.3149e-02,\n", " -7.4066e-01, 1.9927e-01, 7.5937e-01, -1.8768e-01, -1.1899e-01,\n", " -2.0289e-01, 3.6612e-01, -5.8996e-01, -5.1666e-01, 5.3625e-03,\n", " 3.3709e-01, 7.8384e-01, -7.4147e-01, 1.6300e-01, -7.4821e-01,\n", " -3.9660e-01, -4.5093e-01, 1.7294e-01, 9.2179e-01, 3.1065e-01,\n", " -3.7260e-01, 6.1350e-01, 2.4377e-01, 5.7021e-01, 5.0771e-01,\n", " -5.7705e-01, -1.0129e-02, -3.0245e-02, 7.3764e-01, -6.2183e-01,\n", " 8.5102e-02, 4.4259e-02, 5.7435e-01, -1.3313e-01, 9.5835e-02,\n", " 7.3970e-01, -8.5254e-02, -2.9058e-01, 6.6853e-01, 1.4284e-01,\n", " -4.4259e-01, -3.5658e-01, 3.1570e-02, 4.1088e-01, 5.8174e-01,\n", " 1.7225e-01, 5.0016e-01, -2.3336e-01, 1.1785e-01, -8.1593e-03,\n", " 9.0696e-01, 5.1017e-02, 2.1235e-01, -3.1208e-01, 3.0785e-01,\n", " -7.9104e-01, -4.6839e-01, 5.5536e-01, -1.8962e-01],\n", " [-2.9474e-01, 4.1033e-01, -1.0640e-01, 2.2170e-01, 3.7699e-01,\n", " 1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\n", " -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\n", " 5.2941e-01, -6.7271e-02, 4.9393e-01, -3.1223e-01, -1.9308e-01,\n", " 4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01, 2.1149e-02,\n", " 3.4688e-02, -2.6599e-02, 5.6323e-02, -2.3462e-01, -2.7575e-02,\n", " 3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\n", " 3.9748e-02, -5.5766e-02, -1.8779e-01, 3.7293e-01, -4.3215e-01,\n", " -3.2607e-01, 4.7629e-01, 1.2417e-01, 8.7553e-02, 7.4922e-02,\n", " 1.6414e-02, -3.7098e-01, 1.1215e-01, 5.0214e-01, 8.5971e-02,\n", " -1.8960e-01, 1.6976e-01, 5.8928e-02, -3.7863e-01, -1.9777e-02,\n", " 6.0712e-02, 3.4529e-01, 1.6618e-01, -2.3556e-01, 9.5518e-02,\n", " 3.2406e-01, 6.3608e-02, 1.7180e-01, -2.6295e-01]],\n", "\n", " [[-5.4039e-02, 8.8844e-01, 3.3888e-01, -9.1417e-02, 7.9695e-02,\n", " -2.3450e-01, -4.4034e-01, 6.3989e-01, 3.7835e-02, 3.9992e-01,\n", " -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\n", " 3.3464e-01, 6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\n", " -2.7994e-01, -6.0982e-01, 1.4235e-01, 2.2770e-01, 1.7566e-01,\n", " -5.3978e-01, 4.8615e-01, 3.1977e-01, 4.6543e-01, 3.2679e-01,\n", " 3.8429e-01, -4.0738e-01, -4.7408e-01, 1.6175e-01, 2.3650e-01,\n", " -6.0986e-01, -1.1444e-01, 8.2822e-01, -3.4007e-01, -3.5199e-01,\n", " 8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01, 8.2066e-02,\n", " -4.1364e-01, -5.2925e-01, 5.9958e-01, 3.0593e-01, 5.9111e-01,\n", " 3.8023e-01, 2.2484e-01, -5.9437e-01, 4.3079e-01, -2.0735e-01,\n", " 8.2035e-01, -4.0924e-02, 5.6995e-01, 1.0385e-01, 4.4414e-01,\n", " -8.6832e-01, -2.6419e-01, 8.3170e-01, -7.2663e-01],\n", " [-5.8141e-01, 1.1048e-01, -6.2374e-01, 5.0587e-01, 2.5336e-01,\n", " -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\n", " 4.2063e-01, -2.4931e-01, 3.9692e-01, -1.5809e-01, 3.2859e-01,\n", " -2.9822e-01, -1.9858e-02, 5.5853e-01, 7.8639e-02, 4.8963e-02,\n", " -2.2860e-01, 4.3759e-01, 2.3944e-01, 4.2009e-01, 1.3628e-01,\n", " 1.3792e-01, 1.2585e-01, 5.8101e-02, -5.4331e-01, -7.2530e-03,\n", " 8.0666e-02, -2.2224e-02, 6.3223e-01, 9.6790e-02, -4.9236e-01,\n", " -8.0862e-02, -2.6275e-01, 4.9909e-01, 7.1494e-01, 3.2871e-01,\n", " -7.4854e-01, 5.1980e-01, 1.2756e-01, 1.5925e-01, -1.1948e-01,\n", " -9.3237e-02, -3.0931e-01, -4.2692e-01, 2.9031e-01, 2.0414e-02,\n", " -3.2254e-01, -3.8900e-01, 5.7919e-01, -7.3999e-01, 1.2747e-01,\n", " -1.9365e-02, 4.8622e-01, 6.7972e-02, -6.2490e-01, -5.0826e-01,\n", " 2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\n", "\n", " [[ 3.6193e-01, 5.5425e-01, 5.4040e-01, -3.0972e-01, -1.3313e-01,\n", " -6.7800e-01, -4.0654e-01, 4.6998e-01, 1.0506e-02, -4.1220e-01,\n", " -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\n", " 7.3778e-02, 3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\n", " -4.0731e-01, -4.5251e-01, 2.7892e-01, 6.7418e-02, -1.8913e-01,\n", " -7.8529e-01, 7.4795e-02, 3.1780e-01, -5.6582e-02, -2.6386e-02,\n", " 5.4243e-01, -1.1841e-01, -3.2193e-01, 4.1168e-01, 6.0450e-01,\n", " -1.9057e-01, -1.6040e-01, 5.1988e-01, 2.5761e-01, -2.8185e-01,\n", " 1.6285e-01, -9.2601e-02, -2.9516e-01, 1.5801e-01, -3.4487e-01,\n", " -2.4956e-01, -4.2876e-01, 4.0097e-01, 7.6141e-02, 6.9152e-02,\n", " -1.9961e-01, 1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\n", " 7.0492e-01, 7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\n", " -7.6009e-01, 2.2291e-01, 6.5275e-01, -8.7851e-01],\n", " [-5.2118e-01, 5.0256e-01, -5.8167e-01, 1.1051e-01, 1.7868e-01,\n", " -4.7288e-01, -5.4152e-01, -7.2585e-01, 4.8291e-01, -3.2155e-01,\n", " 5.4432e-01, -3.7827e-01, 1.8096e-01, 5.5709e-01, 3.6829e-01,\n", " -4.2694e-01, -1.1016e-01, 3.8142e-01, 7.3456e-01, 1.3955e-01,\n", " -6.2690e-01, 4.6662e-01, 9.9586e-03, 4.4347e-01, -1.2285e-01,\n", " 2.4158e-01, -1.9818e-02, 3.2224e-02, -4.5263e-03, 9.7170e-02,\n", " -2.6790e-02, 3.4196e-01, 5.5448e-01, -2.6957e-01, -4.7481e-01,\n", " 2.5820e-01, -1.6188e-01, 1.8216e-01, 4.3528e-01, 4.1423e-02,\n", " 3.8483e-01, 2.9323e-01, -3.9919e-02, 2.4917e-02, -6.6221e-01,\n", " 4.4238e-02, -1.3296e-01, -5.2108e-01, 4.3413e-02, 2.4199e-01,\n", " 1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\n", " -2.2352e-01, -4.5641e-01, 6.2054e-04, -6.1068e-01, -2.4117e-02,\n", " -6.6375e-01, -2.8839e-01, 9.2161e-03, -1.7272e-01]],\n", "\n", " [[-1.2020e-01, 8.7811e-01, 6.2669e-01, -1.2818e-01, -1.8441e-01,\n", " -6.0717e-01, -7.9754e-01, 5.0410e-01, 4.0985e-01, -6.4446e-02,\n", " 1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01, 1.8644e-01,\n", " 4.3668e-01, 6.4194e-01, -4.0182e-01, 5.6554e-01, -5.9408e-01,\n", " -2.6671e-01, -4.0951e-01, -1.2089e-01, 1.1193e-01, 3.2120e-01,\n", " -6.5532e-01, 1.4062e-01, 2.8029e-01, 8.2498e-02, -1.1054e-01,\n", " 7.0519e-01, -6.9252e-01, -2.9735e-01, 3.8513e-01, 3.2410e-01,\n", " -7.1698e-03, -4.7982e-02, 6.5625e-01, -2.5359e-01, -3.1089e-01,\n", " 1.1211e-01, 2.1855e-01, -1.9636e-01, 1.6137e-01, -5.1002e-01,\n", " -3.1695e-01, -3.5947e-01, 3.2188e-01, 5.8348e-01, 3.8076e-01,\n", " -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01, 6.6140e-02,\n", " 6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01, 7.7110e-01,\n", " -7.8675e-01, -3.0830e-01, 2.2900e-01, -7.8719e-01],\n", " [-4.0451e-01, 8.7136e-01, 2.0729e-01, -1.9370e-02, -4.0648e-02,\n", " -4.8286e-01, -8.0573e-01, -2.4901e-01, 5.7310e-01, -5.8490e-02,\n", " 6.0313e-01, -8.4063e-01, -2.5698e-01, 3.3939e-01, 3.4959e-01,\n", " 3.7069e-01, 4.3289e-01, 9.9988e-02, 9.0438e-01, -3.6257e-01,\n", " -4.4119e-01, 4.2917e-01, -2.6990e-01, 4.2311e-01, 2.7980e-01,\n", " 1.9899e-01, 8.3125e-02, 1.3034e-01, 9.0406e-02, -2.5047e-02,\n", " 5.0993e-01, -6.0698e-01, 2.0975e-01, 2.8351e-01, -1.9944e-01,\n", " 2.5476e-01, -6.0071e-02, 4.2573e-01, 3.9131e-03, -9.8624e-02,\n", " 1.9323e-01, 5.3431e-01, -1.0846e-01, 8.3219e-02, -5.1852e-01,\n", " -1.0182e-01, 8.0068e-03, -9.8824e-02, 5.1580e-01, 4.8648e-01,\n", " -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\n", " 2.1330e-01, -6.1276e-01, 1.6057e-01, -6.3184e-01, 8.1466e-01,\n", " -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\n", "\n", " [[-4.0104e-01, 6.5426e-01, 7.7138e-01, 5.6748e-01, -4.7691e-01,\n", " -5.2622e-01, -8.1877e-01, -8.8119e-01, 6.0301e-01, -1.5291e-01,\n", " 4.0511e-01, -8.7244e-01, -3.8247e-01, 3.3862e-01, 1.2650e-01,\n", " 7.8641e-01, 6.1568e-01, 4.3722e-01, 7.2865e-01, -6.2760e-01,\n", " -9.0425e-01, -3.7571e-01, -8.7384e-02, 2.0393e-01, 1.7595e-01,\n", " -9.6426e-01, 6.6673e-01, 1.5598e-01, -2.9040e-01, 5.8154e-02,\n", " 8.7598e-01, -3.7915e-01, 3.1616e-01, -1.1750e-01, -5.0382e-01,\n", " 2.9781e-01, -8.1428e-01, 8.4853e-01, 6.1756e-01, -2.0564e-01,\n", " 1.9886e-02, -5.7905e-01, -8.4476e-01, 5.3807e-01, -3.7935e-01,\n", " -2.3593e-01, -5.5078e-01, 5.0617e-01, 7.8397e-01, 8.9721e-01,\n", " -5.4892e-01, 5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\n", " 9.1601e-01, -8.3470e-01, 3.3360e-01, 9.7394e-01, 6.7423e-01,\n", " -6.3171e-01, -5.4024e-02, 9.7447e-01, -9.5411e-01],\n", " [-5.6495e-01, 6.4817e-01, 6.1315e-01, 6.0038e-01, -4.1307e-01,\n", " -4.5898e-01, -8.2032e-01, -9.4217e-01, 6.8682e-01, -1.7263e-01,\n", " 6.3151e-01, -8.4917e-01, -2.9447e-01, 5.2271e-01, 2.1862e-01,\n", " 8.2034e-01, 4.7811e-01, 6.8474e-01, 9.2941e-01, -4.2096e-01,\n", " -9.4001e-01, 3.0864e-01, -1.8619e-01, 4.4706e-01, 1.4602e-01,\n", " -9.2286e-01, 6.6321e-01, 5.4442e-02, -3.0118e-01, 8.8396e-02,\n", " 8.6066e-01, -2.5356e-01, 5.8141e-01, -1.4684e-03, -6.8510e-01,\n", " 4.2343e-01, -8.3636e-01, 7.4505e-01, 6.3347e-01, -5.5176e-02,\n", " 8.0538e-02, -5.6538e-01, -8.6216e-01, 4.8400e-01, -3.9852e-01,\n", " -5.4495e-02, -3.7059e-01, 3.6633e-01, 7.5105e-01, 9.1164e-01,\n", " -5.1931e-01, 5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\n", " 8.3216e-01, -8.5892e-01, 4.5073e-01, 9.6752e-01, 7.1628e-01,\n", " -5.6690e-01, -2.2989e-01, 9.6539e-01, -9.2093e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [1]个单词\n", "解码器输入dec_input: tensor([7, 6])\n", "dec_state: tensor([[[-0.5102, 0.8771, -0.2442, 0.9024, -0.4286, -0.3775, -0.8722,\n", " -0.8776, 0.1165, -0.6138, 0.2049, -0.9887, -0.5307, 0.4958,\n", " 0.3538, 0.6369, 0.9051, -0.5532, -0.7011, 0.9636, 0.0967,\n", " -0.9163, -0.8002, 0.6493, -0.7218, -0.8909, -0.1443, -0.8289,\n", " -0.8881, -0.9089, -0.6799, -0.1224, 0.4952, 0.2456, -0.9079,\n", " 0.9706, -0.9750, -0.6236, 0.9406, 0.0480, 0.7411, -0.7231,\n", " -0.3255, 0.9657, -0.9355, -0.8542, -0.7350, -0.3847, 0.7847,\n", " 0.9373, 0.7433, 0.9584, 0.8982, -0.8137, -0.9826, -0.9029,\n", " -0.7516, 0.9434, 0.5079, -0.8678, -0.6594, 0.9515, 0.3266,\n", " 0.9325],\n", " [-0.5484, 0.1851, 0.7322, 0.2293, -0.5323, 0.2891, 0.4596,\n", " -0.1542, 0.8479, -0.8913, -0.8320, -0.9569, -0.5919, 0.5446,\n", " 0.4355, 0.7648, 0.6359, 0.7958, 0.9329, 0.8640, -0.7288,\n", " 0.7995, 0.2762, 0.7086, -0.5940, -0.9159, 0.7217, 0.1596,\n", " -0.7953, 0.1864, 0.5813, 0.1335, 0.8808, 0.2021, -0.6036,\n", " 0.8467, 0.7382, 0.7422, -0.5570, -0.7721, -0.1497, -0.5056,\n", " -0.8932, 0.6739, -0.8887, -0.6932, -0.8435, -0.4990, -0.4113,\n", " 0.9345, 0.8662, 0.1490, -0.9727, 0.6743, -0.9851, 0.7450,\n", " -0.8179, -0.8800, 0.9644, -0.6839, -0.6258, 0.8323, 0.9456,\n", " 0.0950]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.8794e-02, 5.3342e-01, 2.7767e-01, 3.9600e-01, -3.6861e-01,\n", " 1.5557e-01, -1.0969e-01, 1.7756e-01, -1.0504e-01, -2.7521e-01,\n", " 2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03, 3.0370e-01,\n", " -1.8936e-01, 6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\n", " -6.2699e-01, -5.6061e-01, 5.4069e-01, 2.7735e-01, -3.8531e-01,\n", " -5.4473e-01, 6.6829e-02, 5.7072e-01, 3.5158e-02, 1.8771e-02,\n", " 1.7612e-01, 3.9111e-01, -6.5084e-01, 6.1659e-01, 1.7997e-01,\n", " -3.9050e-02, -3.8968e-01, 7.8072e-01, -6.3102e-01, 2.3746e-01,\n", " -5.4918e-02, 3.5109e-01, -6.9286e-01, -2.8419e-01, 7.8028e-02,\n", " -3.1589e-01, -3.9509e-01, 2.7848e-01, -1.8915e-02, 4.0646e-01,\n", " 1.8700e-01, 6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\n", " 1.7482e-01, 5.1712e-02, 3.2650e-01, -3.3498e-01, 2.5596e-01,\n", " -6.6363e-01, 3.9568e-01, 6.6326e-01, -4.5198e-01],\n", " [-4.4663e-01, 4.9992e-02, -1.1279e-01, 5.5714e-01, 2.9287e-01,\n", " 5.3430e-02, -3.2958e-02, -6.9619e-01, 3.7287e-01, -1.1730e-01,\n", " 4.7527e-01, -1.4236e-01, 1.0980e-01, 3.4374e-01, 4.4925e-02,\n", " 5.4476e-01, 1.3434e-01, 2.4798e-01, 1.4511e-01, 2.8671e-01,\n", " -7.2405e-01, -4.0333e-02, 1.2978e-01, -1.1822e-01, -6.4893e-01,\n", " 1.3198e-01, -5.2837e-01, -3.7102e-01, 6.7838e-02, 8.5206e-02,\n", " 1.3851e-01, -3.6910e-02, 3.1990e-02, 9.5910e-02, -2.7345e-01,\n", " -9.7926e-02, -6.3590e-01, 3.5229e-01, 6.0026e-01, 8.7420e-02,\n", " -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\n", " 3.1581e-01, -3.0370e-01, 6.5536e-02, 1.5106e-01, 1.2373e-01,\n", " 1.4191e-01, 5.0884e-01, 1.8682e-01, -4.1712e-01, -1.7723e-01,\n", " 2.8597e-01, -5.5452e-01, 2.8961e-01, 2.7804e-01, -1.9407e-01,\n", " -4.4526e-01, 3.7736e-01, 3.5711e-01, -3.5176e-01]],\n", "\n", " [[-2.1324e-01, 5.2025e-01, 5.0695e-01, 3.2545e-01, -5.7762e-01,\n", " -7.3069e-01, -1.0028e-01, 4.7019e-01, -3.5687e-01, -7.2285e-01,\n", " 2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01, 4.3462e-02,\n", " 3.6790e-02, 7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\n", " -4.6593e-01, -5.6537e-01, 5.0546e-01, 8.1896e-01, -2.9426e-01,\n", " -7.9558e-01, 8.4542e-01, 5.4046e-01, 5.8609e-01, 5.0922e-01,\n", " -1.6546e-01, 6.0234e-01, -5.6518e-01, 8.5887e-01, -4.5587e-01,\n", " -3.5113e-02, -3.1436e-01, 7.4797e-01, -6.6369e-01, -2.0690e-01,\n", " 7.0571e-01, -4.6216e-01, -7.8772e-01, 3.5452e-01, 2.6347e-01,\n", " -4.1197e-01, -4.6747e-01, 4.9282e-01, 6.8443e-02, 2.7213e-02,\n", " 3.8875e-01, 6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\n", " 8.9968e-01, 4.0096e-01, 9.4859e-02, -7.1174e-01, 3.0494e-02,\n", " -7.4953e-01, 8.1606e-02, 6.2147e-01, -2.7554e-01],\n", " [-4.6765e-01, 3.5594e-01, -4.6087e-01, 6.5994e-01, 1.5107e-01,\n", " -4.9836e-02, 3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\n", " 8.9305e-02, 4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\n", " 1.2247e-01, -7.1975e-02, -4.5834e-02, 8.9275e-02, 1.3229e-01,\n", " -3.2071e-01, 8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\n", " 5.4388e-02, 2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\n", " 2.7214e-01, -1.7248e-01, 2.0683e-01, -7.7345e-03, -2.9245e-01,\n", " -1.5008e-01, -4.2409e-01, -2.4032e-01, 2.3066e-01, 1.9569e-01,\n", " -3.6902e-01, 2.6708e-01, -1.5023e-01, -1.7348e-01, 3.3117e-01,\n", " 1.2738e-01, -2.8993e-01, -1.2677e-01, 1.4847e-01, 3.7645e-01,\n", " -1.9285e-01, 4.2530e-01, 2.1337e-01, -5.1065e-01, -3.3662e-01,\n", " 1.3590e-02, 2.5094e-02, 2.0697e-01, 1.3003e-01, -4.5041e-01,\n", " 1.9167e-01, 5.0020e-01, 1.3076e-01, -4.9900e-01]],\n", "\n", " [[-2.8282e-02, 4.8322e-01, -4.5622e-02, 2.9975e-01, -1.3149e-02,\n", " -7.4066e-01, 1.9927e-01, 7.5937e-01, -1.8768e-01, -1.1899e-01,\n", " -2.0289e-01, 3.6612e-01, -5.8996e-01, -5.1666e-01, 5.3625e-03,\n", " 3.3709e-01, 7.8384e-01, -7.4147e-01, 1.6300e-01, -7.4821e-01,\n", " -3.9660e-01, -4.5093e-01, 1.7294e-01, 9.2179e-01, 3.1065e-01,\n", " -3.7260e-01, 6.1350e-01, 2.4377e-01, 5.7021e-01, 5.0771e-01,\n", " -5.7705e-01, -1.0129e-02, -3.0245e-02, 7.3764e-01, -6.2183e-01,\n", " 8.5102e-02, 4.4259e-02, 5.7435e-01, -1.3313e-01, 9.5835e-02,\n", " 7.3970e-01, -8.5254e-02, -2.9058e-01, 6.6853e-01, 1.4284e-01,\n", " -4.4259e-01, -3.5658e-01, 3.1570e-02, 4.1088e-01, 5.8174e-01,\n", " 1.7225e-01, 5.0016e-01, -2.3336e-01, 1.1785e-01, -8.1593e-03,\n", " 9.0696e-01, 5.1017e-02, 2.1235e-01, -3.1208e-01, 3.0785e-01,\n", " -7.9104e-01, -4.6839e-01, 5.5536e-01, -1.8962e-01],\n", " [-2.9474e-01, 4.1033e-01, -1.0640e-01, 2.2170e-01, 3.7699e-01,\n", " 1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\n", " -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\n", " 5.2941e-01, -6.7271e-02, 4.9393e-01, -3.1223e-01, -1.9308e-01,\n", " 4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01, 2.1149e-02,\n", " 3.4688e-02, -2.6599e-02, 5.6323e-02, -2.3462e-01, -2.7575e-02,\n", " 3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\n", " 3.9748e-02, -5.5766e-02, -1.8779e-01, 3.7293e-01, -4.3215e-01,\n", " -3.2607e-01, 4.7629e-01, 1.2417e-01, 8.7553e-02, 7.4922e-02,\n", " 1.6414e-02, -3.7098e-01, 1.1215e-01, 5.0214e-01, 8.5971e-02,\n", " -1.8960e-01, 1.6976e-01, 5.8928e-02, -3.7863e-01, -1.9777e-02,\n", " 6.0712e-02, 3.4529e-01, 1.6618e-01, -2.3556e-01, 9.5518e-02,\n", " 3.2406e-01, 6.3608e-02, 1.7180e-01, -2.6295e-01]],\n", "\n", " [[-5.4039e-02, 8.8844e-01, 3.3888e-01, -9.1417e-02, 7.9695e-02,\n", " -2.3450e-01, -4.4034e-01, 6.3989e-01, 3.7835e-02, 3.9992e-01,\n", " -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\n", " 3.3464e-01, 6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\n", " -2.7994e-01, -6.0982e-01, 1.4235e-01, 2.2770e-01, 1.7566e-01,\n", " -5.3978e-01, 4.8615e-01, 3.1977e-01, 4.6543e-01, 3.2679e-01,\n", " 3.8429e-01, -4.0738e-01, -4.7408e-01, 1.6175e-01, 2.3650e-01,\n", " -6.0986e-01, -1.1444e-01, 8.2822e-01, -3.4007e-01, -3.5199e-01,\n", " 8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01, 8.2066e-02,\n", " -4.1364e-01, -5.2925e-01, 5.9958e-01, 3.0593e-01, 5.9111e-01,\n", " 3.8023e-01, 2.2484e-01, -5.9437e-01, 4.3079e-01, -2.0735e-01,\n", " 8.2035e-01, -4.0924e-02, 5.6995e-01, 1.0385e-01, 4.4414e-01,\n", " -8.6832e-01, -2.6419e-01, 8.3170e-01, -7.2663e-01],\n", " [-5.8141e-01, 1.1048e-01, -6.2374e-01, 5.0587e-01, 2.5336e-01,\n", " -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\n", " 4.2063e-01, -2.4931e-01, 3.9692e-01, -1.5809e-01, 3.2859e-01,\n", " -2.9822e-01, -1.9858e-02, 5.5853e-01, 7.8639e-02, 4.8963e-02,\n", " -2.2860e-01, 4.3759e-01, 2.3944e-01, 4.2009e-01, 1.3628e-01,\n", " 1.3792e-01, 1.2585e-01, 5.8101e-02, -5.4331e-01, -7.2530e-03,\n", " 8.0666e-02, -2.2224e-02, 6.3223e-01, 9.6790e-02, -4.9236e-01,\n", " -8.0862e-02, -2.6275e-01, 4.9909e-01, 7.1494e-01, 3.2871e-01,\n", " -7.4854e-01, 5.1980e-01, 1.2756e-01, 1.5925e-01, -1.1948e-01,\n", " -9.3237e-02, -3.0931e-01, -4.2692e-01, 2.9031e-01, 2.0414e-02,\n", " -3.2254e-01, -3.8900e-01, 5.7919e-01, -7.3999e-01, 1.2747e-01,\n", " -1.9365e-02, 4.8622e-01, 6.7972e-02, -6.2490e-01, -5.0826e-01,\n", " 2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\n", "\n", " [[ 3.6193e-01, 5.5425e-01, 5.4040e-01, -3.0972e-01, -1.3313e-01,\n", " -6.7800e-01, -4.0654e-01, 4.6998e-01, 1.0506e-02, -4.1220e-01,\n", " -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\n", " 7.3778e-02, 3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\n", " -4.0731e-01, -4.5251e-01, 2.7892e-01, 6.7418e-02, -1.8913e-01,\n", " -7.8529e-01, 7.4795e-02, 3.1780e-01, -5.6582e-02, -2.6386e-02,\n", " 5.4243e-01, -1.1841e-01, -3.2193e-01, 4.1168e-01, 6.0450e-01,\n", " -1.9057e-01, -1.6040e-01, 5.1988e-01, 2.5761e-01, -2.8185e-01,\n", " 1.6285e-01, -9.2601e-02, -2.9516e-01, 1.5801e-01, -3.4487e-01,\n", " -2.4956e-01, -4.2876e-01, 4.0097e-01, 7.6141e-02, 6.9152e-02,\n", " -1.9961e-01, 1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\n", " 7.0492e-01, 7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\n", " -7.6009e-01, 2.2291e-01, 6.5275e-01, -8.7851e-01],\n", " [-5.2118e-01, 5.0256e-01, -5.8167e-01, 1.1051e-01, 1.7868e-01,\n", " -4.7288e-01, -5.4152e-01, -7.2585e-01, 4.8291e-01, -3.2155e-01,\n", " 5.4432e-01, -3.7827e-01, 1.8096e-01, 5.5709e-01, 3.6829e-01,\n", " -4.2694e-01, -1.1016e-01, 3.8142e-01, 7.3456e-01, 1.3955e-01,\n", " -6.2690e-01, 4.6662e-01, 9.9586e-03, 4.4347e-01, -1.2285e-01,\n", " 2.4158e-01, -1.9818e-02, 3.2224e-02, -4.5263e-03, 9.7170e-02,\n", " -2.6790e-02, 3.4196e-01, 5.5448e-01, -2.6957e-01, -4.7481e-01,\n", " 2.5820e-01, -1.6188e-01, 1.8216e-01, 4.3528e-01, 4.1423e-02,\n", " 3.8483e-01, 2.9323e-01, -3.9919e-02, 2.4917e-02, -6.6221e-01,\n", " 4.4238e-02, -1.3296e-01, -5.2108e-01, 4.3413e-02, 2.4199e-01,\n", " 1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\n", " -2.2352e-01, -4.5641e-01, 6.2054e-04, -6.1068e-01, -2.4117e-02,\n", " -6.6375e-01, -2.8839e-01, 9.2161e-03, -1.7272e-01]],\n", "\n", " [[-1.2020e-01, 8.7811e-01, 6.2669e-01, -1.2818e-01, -1.8441e-01,\n", " -6.0717e-01, -7.9754e-01, 5.0410e-01, 4.0985e-01, -6.4446e-02,\n", " 1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01, 1.8644e-01,\n", " 4.3668e-01, 6.4194e-01, -4.0182e-01, 5.6554e-01, -5.9408e-01,\n", " -2.6671e-01, -4.0951e-01, -1.2089e-01, 1.1193e-01, 3.2120e-01,\n", " -6.5532e-01, 1.4062e-01, 2.8029e-01, 8.2498e-02, -1.1054e-01,\n", " 7.0519e-01, -6.9252e-01, -2.9735e-01, 3.8513e-01, 3.2410e-01,\n", " -7.1698e-03, -4.7982e-02, 6.5625e-01, -2.5359e-01, -3.1089e-01,\n", " 1.1211e-01, 2.1855e-01, -1.9636e-01, 1.6137e-01, -5.1002e-01,\n", " -3.1695e-01, -3.5947e-01, 3.2188e-01, 5.8348e-01, 3.8076e-01,\n", " -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01, 6.6140e-02,\n", " 6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01, 7.7110e-01,\n", " -7.8675e-01, -3.0830e-01, 2.2900e-01, -7.8719e-01],\n", " [-4.0451e-01, 8.7136e-01, 2.0729e-01, -1.9370e-02, -4.0648e-02,\n", " -4.8286e-01, -8.0573e-01, -2.4901e-01, 5.7310e-01, -5.8490e-02,\n", " 6.0313e-01, -8.4063e-01, -2.5698e-01, 3.3939e-01, 3.4959e-01,\n", " 3.7069e-01, 4.3289e-01, 9.9988e-02, 9.0438e-01, -3.6257e-01,\n", " -4.4119e-01, 4.2917e-01, -2.6990e-01, 4.2311e-01, 2.7980e-01,\n", " 1.9899e-01, 8.3125e-02, 1.3034e-01, 9.0406e-02, -2.5047e-02,\n", " 5.0993e-01, -6.0698e-01, 2.0975e-01, 2.8351e-01, -1.9944e-01,\n", " 2.5476e-01, -6.0071e-02, 4.2573e-01, 3.9131e-03, -9.8624e-02,\n", " 1.9323e-01, 5.3431e-01, -1.0846e-01, 8.3219e-02, -5.1852e-01,\n", " -1.0182e-01, 8.0068e-03, -9.8824e-02, 5.1580e-01, 4.8648e-01,\n", " -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\n", " 2.1330e-01, -6.1276e-01, 1.6057e-01, -6.3184e-01, 8.1466e-01,\n", " -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\n", "\n", " [[-4.0104e-01, 6.5426e-01, 7.7138e-01, 5.6748e-01, -4.7691e-01,\n", " -5.2622e-01, -8.1877e-01, -8.8119e-01, 6.0301e-01, -1.5291e-01,\n", " 4.0511e-01, -8.7244e-01, -3.8247e-01, 3.3862e-01, 1.2650e-01,\n", " 7.8641e-01, 6.1568e-01, 4.3722e-01, 7.2865e-01, -6.2760e-01,\n", " -9.0425e-01, -3.7571e-01, -8.7384e-02, 2.0393e-01, 1.7595e-01,\n", " -9.6426e-01, 6.6673e-01, 1.5598e-01, -2.9040e-01, 5.8154e-02,\n", " 8.7598e-01, -3.7915e-01, 3.1616e-01, -1.1750e-01, -5.0382e-01,\n", " 2.9781e-01, -8.1428e-01, 8.4853e-01, 6.1756e-01, -2.0564e-01,\n", " 1.9886e-02, -5.7905e-01, -8.4476e-01, 5.3807e-01, -3.7935e-01,\n", " -2.3593e-01, -5.5078e-01, 5.0617e-01, 7.8397e-01, 8.9721e-01,\n", " -5.4892e-01, 5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\n", " 9.1601e-01, -8.3470e-01, 3.3360e-01, 9.7394e-01, 6.7423e-01,\n", " -6.3171e-01, -5.4024e-02, 9.7447e-01, -9.5411e-01],\n", " [-5.6495e-01, 6.4817e-01, 6.1315e-01, 6.0038e-01, -4.1307e-01,\n", " -4.5898e-01, -8.2032e-01, -9.4217e-01, 6.8682e-01, -1.7263e-01,\n", " 6.3151e-01, -8.4917e-01, -2.9447e-01, 5.2271e-01, 2.1862e-01,\n", " 8.2034e-01, 4.7811e-01, 6.8474e-01, 9.2941e-01, -4.2096e-01,\n", " -9.4001e-01, 3.0864e-01, -1.8619e-01, 4.4706e-01, 1.4602e-01,\n", " -9.2286e-01, 6.6321e-01, 5.4442e-02, -3.0118e-01, 8.8396e-02,\n", " 8.6066e-01, -2.5356e-01, 5.8141e-01, -1.4684e-03, -6.8510e-01,\n", " 4.2343e-01, -8.3636e-01, 7.4505e-01, 6.3347e-01, -5.5176e-02,\n", " 8.0538e-02, -5.6538e-01, -8.6216e-01, 4.8400e-01, -3.9852e-01,\n", " -5.4495e-02, -3.7059e-01, 3.6633e-01, 7.5105e-01, 9.1164e-01,\n", " -5.1931e-01, 5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\n", " 8.3216e-01, -8.5892e-01, 4.5073e-01, 9.6752e-01, 7.1628e-01,\n", " -5.6690e-01, -2.2989e-01, 9.6539e-01, -9.2093e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [2]个单词\n", "解码器输入dec_input: tensor([5, 4])\n", "dec_state: tensor([[[-0.1248, 0.9734, -0.5179, 0.9144, -0.2426, -0.4548, -0.9040,\n", " -0.8647, -0.7707, 0.8588, 0.7136, -0.7407, -0.7878, 0.5900,\n", " -0.1967, -0.8885, -0.5129, -0.9004, -0.4600, 0.7695, 0.9033,\n", " -0.9275, 0.9257, 0.7588, 0.3407, -0.8890, -0.4075, 0.4819,\n", " -0.8529, 0.6489, -0.7330, 0.7292, -0.3136, 0.6681, -0.9408,\n", " -0.9399, 0.3219, -0.5772, 0.5230, -0.0848, -0.9829, 0.8293,\n", " 0.5171, 0.8241, -0.3710, 0.5126, -0.7610, 0.5399, -0.2418,\n", " 0.4762, 0.3113, 0.8741, 0.6809, -0.8477, -0.8277, -0.2922,\n", " 0.7007, 0.9725, 0.6816, -0.7695, -0.6875, 0.9524, 0.1617,\n", " 0.8997],\n", " [-0.2271, 0.2629, 0.1473, 0.7591, 0.1817, 0.2074, 0.2649,\n", " 0.9412, 0.8214, -0.9373, -0.7219, -0.8170, -0.5721, 0.5137,\n", " 0.3798, 0.3332, 0.6180, 0.1114, -0.3531, 0.1805, -0.2881,\n", " 0.5491, 0.4241, 0.7365, 0.1013, -0.9430, -0.3158, 0.2007,\n", " -0.8332, -0.1643, -0.7123, 0.5356, -0.7456, 0.3297, -0.1868,\n", " 0.9340, 0.7403, 0.5124, -0.8519, -0.3194, -0.0055, 0.3685,\n", " -0.6437, 0.7319, -0.2311, -0.7918, 0.1952, 0.8460, -0.4433,\n", " 0.9049, 0.7665, -0.1793, -0.9849, 0.4243, -0.9020, 0.7944,\n", " 0.1320, -0.8462, -0.3261, 0.8438, -0.7552, 0.8830, 0.3403,\n", " 0.5135]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.8794e-02, 5.3342e-01, 2.7767e-01, 3.9600e-01, -3.6861e-01,\n", " 1.5557e-01, -1.0969e-01, 1.7756e-01, -1.0504e-01, -2.7521e-01,\n", " 2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03, 3.0370e-01,\n", " -1.8936e-01, 6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\n", " -6.2699e-01, -5.6061e-01, 5.4069e-01, 2.7735e-01, -3.8531e-01,\n", " -5.4473e-01, 6.6829e-02, 5.7072e-01, 3.5158e-02, 1.8771e-02,\n", " 1.7612e-01, 3.9111e-01, -6.5084e-01, 6.1659e-01, 1.7997e-01,\n", " -3.9050e-02, -3.8968e-01, 7.8072e-01, -6.3102e-01, 2.3746e-01,\n", " -5.4918e-02, 3.5109e-01, -6.9286e-01, -2.8419e-01, 7.8028e-02,\n", " -3.1589e-01, -3.9509e-01, 2.7848e-01, -1.8915e-02, 4.0646e-01,\n", " 1.8700e-01, 6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\n", " 1.7482e-01, 5.1712e-02, 3.2650e-01, -3.3498e-01, 2.5596e-01,\n", " -6.6363e-01, 3.9568e-01, 6.6326e-01, -4.5198e-01],\n", " [-4.4663e-01, 4.9992e-02, -1.1279e-01, 5.5714e-01, 2.9287e-01,\n", " 5.3430e-02, -3.2958e-02, -6.9619e-01, 3.7287e-01, -1.1730e-01,\n", " 4.7527e-01, -1.4236e-01, 1.0980e-01, 3.4374e-01, 4.4925e-02,\n", " 5.4476e-01, 1.3434e-01, 2.4798e-01, 1.4511e-01, 2.8671e-01,\n", " -7.2405e-01, -4.0333e-02, 1.2978e-01, -1.1822e-01, -6.4893e-01,\n", " 1.3198e-01, -5.2837e-01, -3.7102e-01, 6.7838e-02, 8.5206e-02,\n", " 1.3851e-01, -3.6910e-02, 3.1990e-02, 9.5910e-02, -2.7345e-01,\n", " -9.7926e-02, -6.3590e-01, 3.5229e-01, 6.0026e-01, 8.7420e-02,\n", " -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\n", " 3.1581e-01, -3.0370e-01, 6.5536e-02, 1.5106e-01, 1.2373e-01,\n", " 1.4191e-01, 5.0884e-01, 1.8682e-01, -4.1712e-01, -1.7723e-01,\n", " 2.8597e-01, -5.5452e-01, 2.8961e-01, 2.7804e-01, -1.9407e-01,\n", " -4.4526e-01, 3.7736e-01, 3.5711e-01, -3.5176e-01]],\n", "\n", " [[-2.1324e-01, 5.2025e-01, 5.0695e-01, 3.2545e-01, -5.7762e-01,\n", " -7.3069e-01, -1.0028e-01, 4.7019e-01, -3.5687e-01, -7.2285e-01,\n", " 2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01, 4.3462e-02,\n", " 3.6790e-02, 7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\n", " -4.6593e-01, -5.6537e-01, 5.0546e-01, 8.1896e-01, -2.9426e-01,\n", " -7.9558e-01, 8.4542e-01, 5.4046e-01, 5.8609e-01, 5.0922e-01,\n", " -1.6546e-01, 6.0234e-01, -5.6518e-01, 8.5887e-01, -4.5587e-01,\n", " -3.5113e-02, -3.1436e-01, 7.4797e-01, -6.6369e-01, -2.0690e-01,\n", " 7.0571e-01, -4.6216e-01, -7.8772e-01, 3.5452e-01, 2.6347e-01,\n", " -4.1197e-01, -4.6747e-01, 4.9282e-01, 6.8443e-02, 2.7213e-02,\n", " 3.8875e-01, 6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\n", " 8.9968e-01, 4.0096e-01, 9.4859e-02, -7.1174e-01, 3.0494e-02,\n", " -7.4953e-01, 8.1606e-02, 6.2147e-01, -2.7554e-01],\n", " [-4.6765e-01, 3.5594e-01, -4.6087e-01, 6.5994e-01, 1.5107e-01,\n", " -4.9836e-02, 3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\n", " 8.9305e-02, 4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\n", " 1.2247e-01, -7.1975e-02, -4.5834e-02, 8.9275e-02, 1.3229e-01,\n", " -3.2071e-01, 8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\n", " 5.4388e-02, 2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\n", " 2.7214e-01, -1.7248e-01, 2.0683e-01, -7.7345e-03, -2.9245e-01,\n", " -1.5008e-01, -4.2409e-01, -2.4032e-01, 2.3066e-01, 1.9569e-01,\n", " -3.6902e-01, 2.6708e-01, -1.5023e-01, -1.7348e-01, 3.3117e-01,\n", " 1.2738e-01, -2.8993e-01, -1.2677e-01, 1.4847e-01, 3.7645e-01,\n", " -1.9285e-01, 4.2530e-01, 2.1337e-01, -5.1065e-01, -3.3662e-01,\n", " 1.3590e-02, 2.5094e-02, 2.0697e-01, 1.3003e-01, -4.5041e-01,\n", " 1.9167e-01, 5.0020e-01, 1.3076e-01, -4.9900e-01]],\n", "\n", " [[-2.8282e-02, 4.8322e-01, -4.5622e-02, 2.9975e-01, -1.3149e-02,\n", " -7.4066e-01, 1.9927e-01, 7.5937e-01, -1.8768e-01, -1.1899e-01,\n", " -2.0289e-01, 3.6612e-01, -5.8996e-01, -5.1666e-01, 5.3625e-03,\n", " 3.3709e-01, 7.8384e-01, -7.4147e-01, 1.6300e-01, -7.4821e-01,\n", " -3.9660e-01, -4.5093e-01, 1.7294e-01, 9.2179e-01, 3.1065e-01,\n", " -3.7260e-01, 6.1350e-01, 2.4377e-01, 5.7021e-01, 5.0771e-01,\n", " -5.7705e-01, -1.0129e-02, -3.0245e-02, 7.3764e-01, -6.2183e-01,\n", " 8.5102e-02, 4.4259e-02, 5.7435e-01, -1.3313e-01, 9.5835e-02,\n", " 7.3970e-01, -8.5254e-02, -2.9058e-01, 6.6853e-01, 1.4284e-01,\n", " -4.4259e-01, -3.5658e-01, 3.1570e-02, 4.1088e-01, 5.8174e-01,\n", " 1.7225e-01, 5.0016e-01, -2.3336e-01, 1.1785e-01, -8.1593e-03,\n", " 9.0696e-01, 5.1017e-02, 2.1235e-01, -3.1208e-01, 3.0785e-01,\n", " -7.9104e-01, -4.6839e-01, 5.5536e-01, -1.8962e-01],\n", " [-2.9474e-01, 4.1033e-01, -1.0640e-01, 2.2170e-01, 3.7699e-01,\n", " 1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\n", " -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\n", " 5.2941e-01, -6.7271e-02, 4.9393e-01, -3.1223e-01, -1.9308e-01,\n", " 4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01, 2.1149e-02,\n", " 3.4688e-02, -2.6599e-02, 5.6323e-02, -2.3462e-01, -2.7575e-02,\n", " 3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\n", " 3.9748e-02, -5.5766e-02, -1.8779e-01, 3.7293e-01, -4.3215e-01,\n", " -3.2607e-01, 4.7629e-01, 1.2417e-01, 8.7553e-02, 7.4922e-02,\n", " 1.6414e-02, -3.7098e-01, 1.1215e-01, 5.0214e-01, 8.5971e-02,\n", " -1.8960e-01, 1.6976e-01, 5.8928e-02, -3.7863e-01, -1.9777e-02,\n", " 6.0712e-02, 3.4529e-01, 1.6618e-01, -2.3556e-01, 9.5518e-02,\n", " 3.2406e-01, 6.3608e-02, 1.7180e-01, -2.6295e-01]],\n", "\n", " [[-5.4039e-02, 8.8844e-01, 3.3888e-01, -9.1417e-02, 7.9695e-02,\n", " -2.3450e-01, -4.4034e-01, 6.3989e-01, 3.7835e-02, 3.9992e-01,\n", " -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\n", " 3.3464e-01, 6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\n", " -2.7994e-01, -6.0982e-01, 1.4235e-01, 2.2770e-01, 1.7566e-01,\n", " -5.3978e-01, 4.8615e-01, 3.1977e-01, 4.6543e-01, 3.2679e-01,\n", " 3.8429e-01, -4.0738e-01, -4.7408e-01, 1.6175e-01, 2.3650e-01,\n", " -6.0986e-01, -1.1444e-01, 8.2822e-01, -3.4007e-01, -3.5199e-01,\n", " 8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01, 8.2066e-02,\n", " -4.1364e-01, -5.2925e-01, 5.9958e-01, 3.0593e-01, 5.9111e-01,\n", " 3.8023e-01, 2.2484e-01, -5.9437e-01, 4.3079e-01, -2.0735e-01,\n", " 8.2035e-01, -4.0924e-02, 5.6995e-01, 1.0385e-01, 4.4414e-01,\n", " -8.6832e-01, -2.6419e-01, 8.3170e-01, -7.2663e-01],\n", " [-5.8141e-01, 1.1048e-01, -6.2374e-01, 5.0587e-01, 2.5336e-01,\n", " -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\n", " 4.2063e-01, -2.4931e-01, 3.9692e-01, -1.5809e-01, 3.2859e-01,\n", " -2.9822e-01, -1.9858e-02, 5.5853e-01, 7.8639e-02, 4.8963e-02,\n", " -2.2860e-01, 4.3759e-01, 2.3944e-01, 4.2009e-01, 1.3628e-01,\n", " 1.3792e-01, 1.2585e-01, 5.8101e-02, -5.4331e-01, -7.2530e-03,\n", " 8.0666e-02, -2.2224e-02, 6.3223e-01, 9.6790e-02, -4.9236e-01,\n", " -8.0862e-02, -2.6275e-01, 4.9909e-01, 7.1494e-01, 3.2871e-01,\n", " -7.4854e-01, 5.1980e-01, 1.2756e-01, 1.5925e-01, -1.1948e-01,\n", " -9.3237e-02, -3.0931e-01, -4.2692e-01, 2.9031e-01, 2.0414e-02,\n", " -3.2254e-01, -3.8900e-01, 5.7919e-01, -7.3999e-01, 1.2747e-01,\n", " -1.9365e-02, 4.8622e-01, 6.7972e-02, -6.2490e-01, -5.0826e-01,\n", " 2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\n", "\n", " [[ 3.6193e-01, 5.5425e-01, 5.4040e-01, -3.0972e-01, -1.3313e-01,\n", " -6.7800e-01, -4.0654e-01, 4.6998e-01, 1.0506e-02, -4.1220e-01,\n", " -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\n", " 7.3778e-02, 3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\n", " -4.0731e-01, -4.5251e-01, 2.7892e-01, 6.7418e-02, -1.8913e-01,\n", " -7.8529e-01, 7.4795e-02, 3.1780e-01, -5.6582e-02, -2.6386e-02,\n", " 5.4243e-01, -1.1841e-01, -3.2193e-01, 4.1168e-01, 6.0450e-01,\n", " -1.9057e-01, -1.6040e-01, 5.1988e-01, 2.5761e-01, -2.8185e-01,\n", " 1.6285e-01, -9.2601e-02, -2.9516e-01, 1.5801e-01, -3.4487e-01,\n", " -2.4956e-01, -4.2876e-01, 4.0097e-01, 7.6141e-02, 6.9152e-02,\n", " -1.9961e-01, 1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\n", " 7.0492e-01, 7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\n", " -7.6009e-01, 2.2291e-01, 6.5275e-01, -8.7851e-01],\n", " [-5.2118e-01, 5.0256e-01, -5.8167e-01, 1.1051e-01, 1.7868e-01,\n", " -4.7288e-01, -5.4152e-01, -7.2585e-01, 4.8291e-01, -3.2155e-01,\n", " 5.4432e-01, -3.7827e-01, 1.8096e-01, 5.5709e-01, 3.6829e-01,\n", " -4.2694e-01, -1.1016e-01, 3.8142e-01, 7.3456e-01, 1.3955e-01,\n", " -6.2690e-01, 4.6662e-01, 9.9586e-03, 4.4347e-01, -1.2285e-01,\n", " 2.4158e-01, -1.9818e-02, 3.2224e-02, -4.5263e-03, 9.7170e-02,\n", " -2.6790e-02, 3.4196e-01, 5.5448e-01, -2.6957e-01, -4.7481e-01,\n", " 2.5820e-01, -1.6188e-01, 1.8216e-01, 4.3528e-01, 4.1423e-02,\n", " 3.8483e-01, 2.9323e-01, -3.9919e-02, 2.4917e-02, -6.6221e-01,\n", " 4.4238e-02, -1.3296e-01, -5.2108e-01, 4.3413e-02, 2.4199e-01,\n", " 1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\n", " -2.2352e-01, -4.5641e-01, 6.2054e-04, -6.1068e-01, -2.4117e-02,\n", " -6.6375e-01, -2.8839e-01, 9.2161e-03, -1.7272e-01]],\n", "\n", " [[-1.2020e-01, 8.7811e-01, 6.2669e-01, -1.2818e-01, -1.8441e-01,\n", " -6.0717e-01, -7.9754e-01, 5.0410e-01, 4.0985e-01, -6.4446e-02,\n", " 1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01, 1.8644e-01,\n", " 4.3668e-01, 6.4194e-01, -4.0182e-01, 5.6554e-01, -5.9408e-01,\n", " -2.6671e-01, -4.0951e-01, -1.2089e-01, 1.1193e-01, 3.2120e-01,\n", " -6.5532e-01, 1.4062e-01, 2.8029e-01, 8.2498e-02, -1.1054e-01,\n", " 7.0519e-01, -6.9252e-01, -2.9735e-01, 3.8513e-01, 3.2410e-01,\n", " -7.1698e-03, -4.7982e-02, 6.5625e-01, -2.5359e-01, -3.1089e-01,\n", " 1.1211e-01, 2.1855e-01, -1.9636e-01, 1.6137e-01, -5.1002e-01,\n", " -3.1695e-01, -3.5947e-01, 3.2188e-01, 5.8348e-01, 3.8076e-01,\n", " -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01, 6.6140e-02,\n", " 6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01, 7.7110e-01,\n", " -7.8675e-01, -3.0830e-01, 2.2900e-01, -7.8719e-01],\n", " [-4.0451e-01, 8.7136e-01, 2.0729e-01, -1.9370e-02, -4.0648e-02,\n", " -4.8286e-01, -8.0573e-01, -2.4901e-01, 5.7310e-01, -5.8490e-02,\n", " 6.0313e-01, -8.4063e-01, -2.5698e-01, 3.3939e-01, 3.4959e-01,\n", " 3.7069e-01, 4.3289e-01, 9.9988e-02, 9.0438e-01, -3.6257e-01,\n", " -4.4119e-01, 4.2917e-01, -2.6990e-01, 4.2311e-01, 2.7980e-01,\n", " 1.9899e-01, 8.3125e-02, 1.3034e-01, 9.0406e-02, -2.5047e-02,\n", " 5.0993e-01, -6.0698e-01, 2.0975e-01, 2.8351e-01, -1.9944e-01,\n", " 2.5476e-01, -6.0071e-02, 4.2573e-01, 3.9131e-03, -9.8624e-02,\n", " 1.9323e-01, 5.3431e-01, -1.0846e-01, 8.3219e-02, -5.1852e-01,\n", " -1.0182e-01, 8.0068e-03, -9.8824e-02, 5.1580e-01, 4.8648e-01,\n", " -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\n", " 2.1330e-01, -6.1276e-01, 1.6057e-01, -6.3184e-01, 8.1466e-01,\n", " -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\n", "\n", " [[-4.0104e-01, 6.5426e-01, 7.7138e-01, 5.6748e-01, -4.7691e-01,\n", " -5.2622e-01, -8.1877e-01, -8.8119e-01, 6.0301e-01, -1.5291e-01,\n", " 4.0511e-01, -8.7244e-01, -3.8247e-01, 3.3862e-01, 1.2650e-01,\n", " 7.8641e-01, 6.1568e-01, 4.3722e-01, 7.2865e-01, -6.2760e-01,\n", " -9.0425e-01, -3.7571e-01, -8.7384e-02, 2.0393e-01, 1.7595e-01,\n", " -9.6426e-01, 6.6673e-01, 1.5598e-01, -2.9040e-01, 5.8154e-02,\n", " 8.7598e-01, -3.7915e-01, 3.1616e-01, -1.1750e-01, -5.0382e-01,\n", " 2.9781e-01, -8.1428e-01, 8.4853e-01, 6.1756e-01, -2.0564e-01,\n", " 1.9886e-02, -5.7905e-01, -8.4476e-01, 5.3807e-01, -3.7935e-01,\n", " -2.3593e-01, -5.5078e-01, 5.0617e-01, 7.8397e-01, 8.9721e-01,\n", " -5.4892e-01, 5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\n", " 9.1601e-01, -8.3470e-01, 3.3360e-01, 9.7394e-01, 6.7423e-01,\n", " -6.3171e-01, -5.4024e-02, 9.7447e-01, -9.5411e-01],\n", " [-5.6495e-01, 6.4817e-01, 6.1315e-01, 6.0038e-01, -4.1307e-01,\n", " -4.5898e-01, -8.2032e-01, -9.4217e-01, 6.8682e-01, -1.7263e-01,\n", " 6.3151e-01, -8.4917e-01, -2.9447e-01, 5.2271e-01, 2.1862e-01,\n", " 8.2034e-01, 4.7811e-01, 6.8474e-01, 9.2941e-01, -4.2096e-01,\n", " -9.4001e-01, 3.0864e-01, -1.8619e-01, 4.4706e-01, 1.4602e-01,\n", " -9.2286e-01, 6.6321e-01, 5.4442e-02, -3.0118e-01, 8.8396e-02,\n", " 8.6066e-01, -2.5356e-01, 5.8141e-01, -1.4684e-03, -6.8510e-01,\n", " 4.2343e-01, -8.3636e-01, 7.4505e-01, 6.3347e-01, -5.5176e-02,\n", " 8.0538e-02, -5.6538e-01, -8.6216e-01, 4.8400e-01, -3.9852e-01,\n", " -5.4495e-02, -3.7059e-01, 3.6633e-01, 7.5105e-01, 9.1164e-01,\n", " -5.1931e-01, 5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\n", " 8.3216e-01, -8.5892e-01, 4.5073e-01, 9.6752e-01, 7.1628e-01,\n", " -5.6690e-01, -2.2989e-01, 9.6539e-01, -9.2093e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [3]个单词\n", "解码器输入dec_input: tensor([23, 13])\n", "dec_state: tensor([[[-0.3075, 0.9776, -0.1374, 0.9173, -0.0681, -0.0627, -0.8882,\n", " -0.4850, 0.2096, 0.4473, 0.8303, -0.9300, -0.7826, 0.6701,\n", " 0.1106, -0.8504, -0.8767, -0.8756, 0.3436, 0.3406, 0.6921,\n", " -0.9232, 0.1135, 0.7108, 0.3015, -0.9442, -0.3562, -0.1146,\n", " -0.8740, -0.7501, -0.9313, 0.7121, -0.7791, 0.6097, -0.8515,\n", " -0.9187, -0.3870, -0.4611, -0.8759, -0.2160, -0.8301, -0.1328,\n", " 0.5965, 0.4782, -0.4282, 0.8980, -0.9544, -0.6619, -0.1295,\n", " 0.6311, 0.6208, 0.9412, 0.4865, -0.6264, -0.6609, -0.0761,\n", " 0.4115, 0.8649, 0.4995, 0.8572, -0.7776, 0.9725, 0.1579,\n", " -0.0298],\n", " [-0.3127, 0.3841, 0.0529, 0.7032, 0.3144, -0.0457, -0.0803,\n", " 0.5239, 0.7078, 0.1544, -0.0519, -0.1958, -0.7839, 0.6822,\n", " 0.5921, -0.2754, 0.5713, -0.5310, 0.1596, 0.2388, 0.1047,\n", " 0.3554, 0.1222, 0.7967, 0.0724, -0.9273, 0.3223, 0.5250,\n", " -0.8409, -0.0423, -0.7459, -0.5837, 0.1937, 0.1084, -0.6085,\n", " 0.6656, 0.7403, 0.3555, -0.8745, -0.6315, -0.3822, 0.3251,\n", " -0.0409, 0.7151, -0.0570, 0.1886, -0.4104, 0.5041, -0.5659,\n", " 0.6758, 0.7600, -0.0874, -0.4080, 0.0296, -0.7997, 0.1983,\n", " 0.3291, 0.1187, 0.5398, -0.4012, -0.7429, 0.3576, 0.4571,\n", " 0.3737]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.8794e-02, 5.3342e-01, 2.7767e-01, 3.9600e-01, -3.6861e-01,\n", " 1.5557e-01, -1.0969e-01, 1.7756e-01, -1.0504e-01, -2.7521e-01,\n", " 2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03, 3.0370e-01,\n", " -1.8936e-01, 6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\n", " -6.2699e-01, -5.6061e-01, 5.4069e-01, 2.7735e-01, -3.8531e-01,\n", " -5.4473e-01, 6.6829e-02, 5.7072e-01, 3.5158e-02, 1.8771e-02,\n", " 1.7612e-01, 3.9111e-01, -6.5084e-01, 6.1659e-01, 1.7997e-01,\n", " -3.9050e-02, -3.8968e-01, 7.8072e-01, -6.3102e-01, 2.3746e-01,\n", " -5.4918e-02, 3.5109e-01, -6.9286e-01, -2.8419e-01, 7.8028e-02,\n", " -3.1589e-01, -3.9509e-01, 2.7848e-01, -1.8915e-02, 4.0646e-01,\n", " 1.8700e-01, 6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\n", " 1.7482e-01, 5.1712e-02, 3.2650e-01, -3.3498e-01, 2.5596e-01,\n", " -6.6363e-01, 3.9568e-01, 6.6326e-01, -4.5198e-01],\n", " [-4.4663e-01, 4.9992e-02, -1.1279e-01, 5.5714e-01, 2.9287e-01,\n", " 5.3430e-02, -3.2958e-02, -6.9619e-01, 3.7287e-01, -1.1730e-01,\n", " 4.7527e-01, -1.4236e-01, 1.0980e-01, 3.4374e-01, 4.4925e-02,\n", " 5.4476e-01, 1.3434e-01, 2.4798e-01, 1.4511e-01, 2.8671e-01,\n", " -7.2405e-01, -4.0333e-02, 1.2978e-01, -1.1822e-01, -6.4893e-01,\n", " 1.3198e-01, -5.2837e-01, -3.7102e-01, 6.7838e-02, 8.5206e-02,\n", " 1.3851e-01, -3.6910e-02, 3.1990e-02, 9.5910e-02, -2.7345e-01,\n", " -9.7926e-02, -6.3590e-01, 3.5229e-01, 6.0026e-01, 8.7420e-02,\n", " -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\n", " 3.1581e-01, -3.0370e-01, 6.5536e-02, 1.5106e-01, 1.2373e-01,\n", " 1.4191e-01, 5.0884e-01, 1.8682e-01, -4.1712e-01, -1.7723e-01,\n", " 2.8597e-01, -5.5452e-01, 2.8961e-01, 2.7804e-01, -1.9407e-01,\n", " -4.4526e-01, 3.7736e-01, 3.5711e-01, -3.5176e-01]],\n", "\n", " [[-2.1324e-01, 5.2025e-01, 5.0695e-01, 3.2545e-01, -5.7762e-01,\n", " -7.3069e-01, -1.0028e-01, 4.7019e-01, -3.5687e-01, -7.2285e-01,\n", " 2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01, 4.3462e-02,\n", " 3.6790e-02, 7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\n", " -4.6593e-01, -5.6537e-01, 5.0546e-01, 8.1896e-01, -2.9426e-01,\n", " -7.9558e-01, 8.4542e-01, 5.4046e-01, 5.8609e-01, 5.0922e-01,\n", " -1.6546e-01, 6.0234e-01, -5.6518e-01, 8.5887e-01, -4.5587e-01,\n", " -3.5113e-02, -3.1436e-01, 7.4797e-01, -6.6369e-01, -2.0690e-01,\n", " 7.0571e-01, -4.6216e-01, -7.8772e-01, 3.5452e-01, 2.6347e-01,\n", " -4.1197e-01, -4.6747e-01, 4.9282e-01, 6.8443e-02, 2.7213e-02,\n", " 3.8875e-01, 6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\n", " 8.9968e-01, 4.0096e-01, 9.4859e-02, -7.1174e-01, 3.0494e-02,\n", " -7.4953e-01, 8.1606e-02, 6.2147e-01, -2.7554e-01],\n", " [-4.6765e-01, 3.5594e-01, -4.6087e-01, 6.5994e-01, 1.5107e-01,\n", " -4.9836e-02, 3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\n", " 8.9305e-02, 4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\n", " 1.2247e-01, -7.1975e-02, -4.5834e-02, 8.9275e-02, 1.3229e-01,\n", " -3.2071e-01, 8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\n", " 5.4388e-02, 2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\n", " 2.7214e-01, -1.7248e-01, 2.0683e-01, -7.7345e-03, -2.9245e-01,\n", " -1.5008e-01, -4.2409e-01, -2.4032e-01, 2.3066e-01, 1.9569e-01,\n", " -3.6902e-01, 2.6708e-01, -1.5023e-01, -1.7348e-01, 3.3117e-01,\n", " 1.2738e-01, -2.8993e-01, -1.2677e-01, 1.4847e-01, 3.7645e-01,\n", " -1.9285e-01, 4.2530e-01, 2.1337e-01, -5.1065e-01, -3.3662e-01,\n", " 1.3590e-02, 2.5094e-02, 2.0697e-01, 1.3003e-01, -4.5041e-01,\n", " 1.9167e-01, 5.0020e-01, 1.3076e-01, -4.9900e-01]],\n", "\n", " [[-2.8282e-02, 4.8322e-01, -4.5622e-02, 2.9975e-01, -1.3149e-02,\n", " -7.4066e-01, 1.9927e-01, 7.5937e-01, -1.8768e-01, -1.1899e-01,\n", " -2.0289e-01, 3.6612e-01, -5.8996e-01, -5.1666e-01, 5.3625e-03,\n", " 3.3709e-01, 7.8384e-01, -7.4147e-01, 1.6300e-01, -7.4821e-01,\n", " -3.9660e-01, -4.5093e-01, 1.7294e-01, 9.2179e-01, 3.1065e-01,\n", " -3.7260e-01, 6.1350e-01, 2.4377e-01, 5.7021e-01, 5.0771e-01,\n", " -5.7705e-01, -1.0129e-02, -3.0245e-02, 7.3764e-01, -6.2183e-01,\n", " 8.5102e-02, 4.4259e-02, 5.7435e-01, -1.3313e-01, 9.5835e-02,\n", " 7.3970e-01, -8.5254e-02, -2.9058e-01, 6.6853e-01, 1.4284e-01,\n", " -4.4259e-01, -3.5658e-01, 3.1570e-02, 4.1088e-01, 5.8174e-01,\n", " 1.7225e-01, 5.0016e-01, -2.3336e-01, 1.1785e-01, -8.1593e-03,\n", " 9.0696e-01, 5.1017e-02, 2.1235e-01, -3.1208e-01, 3.0785e-01,\n", " -7.9104e-01, -4.6839e-01, 5.5536e-01, -1.8962e-01],\n", " [-2.9474e-01, 4.1033e-01, -1.0640e-01, 2.2170e-01, 3.7699e-01,\n", " 1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\n", " -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\n", " 5.2941e-01, -6.7271e-02, 4.9393e-01, -3.1223e-01, -1.9308e-01,\n", " 4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01, 2.1149e-02,\n", " 3.4688e-02, -2.6599e-02, 5.6323e-02, -2.3462e-01, -2.7575e-02,\n", " 3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\n", " 3.9748e-02, -5.5766e-02, -1.8779e-01, 3.7293e-01, -4.3215e-01,\n", " -3.2607e-01, 4.7629e-01, 1.2417e-01, 8.7553e-02, 7.4922e-02,\n", " 1.6414e-02, -3.7098e-01, 1.1215e-01, 5.0214e-01, 8.5971e-02,\n", " -1.8960e-01, 1.6976e-01, 5.8928e-02, -3.7863e-01, -1.9777e-02,\n", " 6.0712e-02, 3.4529e-01, 1.6618e-01, -2.3556e-01, 9.5518e-02,\n", " 3.2406e-01, 6.3608e-02, 1.7180e-01, -2.6295e-01]],\n", "\n", " [[-5.4039e-02, 8.8844e-01, 3.3888e-01, -9.1417e-02, 7.9695e-02,\n", " -2.3450e-01, -4.4034e-01, 6.3989e-01, 3.7835e-02, 3.9992e-01,\n", " -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\n", " 3.3464e-01, 6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\n", " -2.7994e-01, -6.0982e-01, 1.4235e-01, 2.2770e-01, 1.7566e-01,\n", " -5.3978e-01, 4.8615e-01, 3.1977e-01, 4.6543e-01, 3.2679e-01,\n", " 3.8429e-01, -4.0738e-01, -4.7408e-01, 1.6175e-01, 2.3650e-01,\n", " -6.0986e-01, -1.1444e-01, 8.2822e-01, -3.4007e-01, -3.5199e-01,\n", " 8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01, 8.2066e-02,\n", " -4.1364e-01, -5.2925e-01, 5.9958e-01, 3.0593e-01, 5.9111e-01,\n", " 3.8023e-01, 2.2484e-01, -5.9437e-01, 4.3079e-01, -2.0735e-01,\n", " 8.2035e-01, -4.0924e-02, 5.6995e-01, 1.0385e-01, 4.4414e-01,\n", " -8.6832e-01, -2.6419e-01, 8.3170e-01, -7.2663e-01],\n", " [-5.8141e-01, 1.1048e-01, -6.2374e-01, 5.0587e-01, 2.5336e-01,\n", " -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\n", " 4.2063e-01, -2.4931e-01, 3.9692e-01, -1.5809e-01, 3.2859e-01,\n", " -2.9822e-01, -1.9858e-02, 5.5853e-01, 7.8639e-02, 4.8963e-02,\n", " -2.2860e-01, 4.3759e-01, 2.3944e-01, 4.2009e-01, 1.3628e-01,\n", " 1.3792e-01, 1.2585e-01, 5.8101e-02, -5.4331e-01, -7.2530e-03,\n", " 8.0666e-02, -2.2224e-02, 6.3223e-01, 9.6790e-02, -4.9236e-01,\n", " -8.0862e-02, -2.6275e-01, 4.9909e-01, 7.1494e-01, 3.2871e-01,\n", " -7.4854e-01, 5.1980e-01, 1.2756e-01, 1.5925e-01, -1.1948e-01,\n", " -9.3237e-02, -3.0931e-01, -4.2692e-01, 2.9031e-01, 2.0414e-02,\n", " -3.2254e-01, -3.8900e-01, 5.7919e-01, -7.3999e-01, 1.2747e-01,\n", " -1.9365e-02, 4.8622e-01, 6.7972e-02, -6.2490e-01, -5.0826e-01,\n", " 2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\n", "\n", " [[ 3.6193e-01, 5.5425e-01, 5.4040e-01, -3.0972e-01, -1.3313e-01,\n", " -6.7800e-01, -4.0654e-01, 4.6998e-01, 1.0506e-02, -4.1220e-01,\n", " -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\n", " 7.3778e-02, 3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\n", " -4.0731e-01, -4.5251e-01, 2.7892e-01, 6.7418e-02, -1.8913e-01,\n", " -7.8529e-01, 7.4795e-02, 3.1780e-01, -5.6582e-02, -2.6386e-02,\n", " 5.4243e-01, -1.1841e-01, -3.2193e-01, 4.1168e-01, 6.0450e-01,\n", " -1.9057e-01, -1.6040e-01, 5.1988e-01, 2.5761e-01, -2.8185e-01,\n", " 1.6285e-01, -9.2601e-02, -2.9516e-01, 1.5801e-01, -3.4487e-01,\n", " -2.4956e-01, -4.2876e-01, 4.0097e-01, 7.6141e-02, 6.9152e-02,\n", " -1.9961e-01, 1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\n", " 7.0492e-01, 7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\n", " -7.6009e-01, 2.2291e-01, 6.5275e-01, -8.7851e-01],\n", " [-5.2118e-01, 5.0256e-01, -5.8167e-01, 1.1051e-01, 1.7868e-01,\n", " -4.7288e-01, -5.4152e-01, -7.2585e-01, 4.8291e-01, -3.2155e-01,\n", " 5.4432e-01, -3.7827e-01, 1.8096e-01, 5.5709e-01, 3.6829e-01,\n", " -4.2694e-01, -1.1016e-01, 3.8142e-01, 7.3456e-01, 1.3955e-01,\n", " -6.2690e-01, 4.6662e-01, 9.9586e-03, 4.4347e-01, -1.2285e-01,\n", " 2.4158e-01, -1.9818e-02, 3.2224e-02, -4.5263e-03, 9.7170e-02,\n", " -2.6790e-02, 3.4196e-01, 5.5448e-01, -2.6957e-01, -4.7481e-01,\n", " 2.5820e-01, -1.6188e-01, 1.8216e-01, 4.3528e-01, 4.1423e-02,\n", " 3.8483e-01, 2.9323e-01, -3.9919e-02, 2.4917e-02, -6.6221e-01,\n", " 4.4238e-02, -1.3296e-01, -5.2108e-01, 4.3413e-02, 2.4199e-01,\n", " 1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\n", " -2.2352e-01, -4.5641e-01, 6.2054e-04, -6.1068e-01, -2.4117e-02,\n", " -6.6375e-01, -2.8839e-01, 9.2161e-03, -1.7272e-01]],\n", "\n", " [[-1.2020e-01, 8.7811e-01, 6.2669e-01, -1.2818e-01, -1.8441e-01,\n", " -6.0717e-01, -7.9754e-01, 5.0410e-01, 4.0985e-01, -6.4446e-02,\n", " 1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01, 1.8644e-01,\n", " 4.3668e-01, 6.4194e-01, -4.0182e-01, 5.6554e-01, -5.9408e-01,\n", " -2.6671e-01, -4.0951e-01, -1.2089e-01, 1.1193e-01, 3.2120e-01,\n", " -6.5532e-01, 1.4062e-01, 2.8029e-01, 8.2498e-02, -1.1054e-01,\n", " 7.0519e-01, -6.9252e-01, -2.9735e-01, 3.8513e-01, 3.2410e-01,\n", " -7.1698e-03, -4.7982e-02, 6.5625e-01, -2.5359e-01, -3.1089e-01,\n", " 1.1211e-01, 2.1855e-01, -1.9636e-01, 1.6137e-01, -5.1002e-01,\n", " -3.1695e-01, -3.5947e-01, 3.2188e-01, 5.8348e-01, 3.8076e-01,\n", " -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01, 6.6140e-02,\n", " 6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01, 7.7110e-01,\n", " -7.8675e-01, -3.0830e-01, 2.2900e-01, -7.8719e-01],\n", " [-4.0451e-01, 8.7136e-01, 2.0729e-01, -1.9370e-02, -4.0648e-02,\n", " -4.8286e-01, -8.0573e-01, -2.4901e-01, 5.7310e-01, -5.8490e-02,\n", " 6.0313e-01, -8.4063e-01, -2.5698e-01, 3.3939e-01, 3.4959e-01,\n", " 3.7069e-01, 4.3289e-01, 9.9988e-02, 9.0438e-01, -3.6257e-01,\n", " -4.4119e-01, 4.2917e-01, -2.6990e-01, 4.2311e-01, 2.7980e-01,\n", " 1.9899e-01, 8.3125e-02, 1.3034e-01, 9.0406e-02, -2.5047e-02,\n", " 5.0993e-01, -6.0698e-01, 2.0975e-01, 2.8351e-01, -1.9944e-01,\n", " 2.5476e-01, -6.0071e-02, 4.2573e-01, 3.9131e-03, -9.8624e-02,\n", " 1.9323e-01, 5.3431e-01, -1.0846e-01, 8.3219e-02, -5.1852e-01,\n", " -1.0182e-01, 8.0068e-03, -9.8824e-02, 5.1580e-01, 4.8648e-01,\n", " -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\n", " 2.1330e-01, -6.1276e-01, 1.6057e-01, -6.3184e-01, 8.1466e-01,\n", " -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\n", "\n", " [[-4.0104e-01, 6.5426e-01, 7.7138e-01, 5.6748e-01, -4.7691e-01,\n", " -5.2622e-01, -8.1877e-01, -8.8119e-01, 6.0301e-01, -1.5291e-01,\n", " 4.0511e-01, -8.7244e-01, -3.8247e-01, 3.3862e-01, 1.2650e-01,\n", " 7.8641e-01, 6.1568e-01, 4.3722e-01, 7.2865e-01, -6.2760e-01,\n", " -9.0425e-01, -3.7571e-01, -8.7384e-02, 2.0393e-01, 1.7595e-01,\n", " -9.6426e-01, 6.6673e-01, 1.5598e-01, -2.9040e-01, 5.8154e-02,\n", " 8.7598e-01, -3.7915e-01, 3.1616e-01, -1.1750e-01, -5.0382e-01,\n", " 2.9781e-01, -8.1428e-01, 8.4853e-01, 6.1756e-01, -2.0564e-01,\n", " 1.9886e-02, -5.7905e-01, -8.4476e-01, 5.3807e-01, -3.7935e-01,\n", " -2.3593e-01, -5.5078e-01, 5.0617e-01, 7.8397e-01, 8.9721e-01,\n", " -5.4892e-01, 5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\n", " 9.1601e-01, -8.3470e-01, 3.3360e-01, 9.7394e-01, 6.7423e-01,\n", " -6.3171e-01, -5.4024e-02, 9.7447e-01, -9.5411e-01],\n", " [-5.6495e-01, 6.4817e-01, 6.1315e-01, 6.0038e-01, -4.1307e-01,\n", " -4.5898e-01, -8.2032e-01, -9.4217e-01, 6.8682e-01, -1.7263e-01,\n", " 6.3151e-01, -8.4917e-01, -2.9447e-01, 5.2271e-01, 2.1862e-01,\n", " 8.2034e-01, 4.7811e-01, 6.8474e-01, 9.2941e-01, -4.2096e-01,\n", " -9.4001e-01, 3.0864e-01, -1.8619e-01, 4.4706e-01, 1.4602e-01,\n", " -9.2286e-01, 6.6321e-01, 5.4442e-02, -3.0118e-01, 8.8396e-02,\n", " 8.6066e-01, -2.5356e-01, 5.8141e-01, -1.4684e-03, -6.8510e-01,\n", " 4.2343e-01, -8.3636e-01, 7.4505e-01, 6.3347e-01, -5.5176e-02,\n", " 8.0538e-02, -5.6538e-01, -8.6216e-01, 4.8400e-01, -3.9852e-01,\n", " -5.4495e-02, -3.7059e-01, 3.6633e-01, 7.5105e-01, 9.1164e-01,\n", " -5.1931e-01, 5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\n", " 8.3216e-01, -8.5892e-01, 4.5073e-01, 9.6752e-01, 7.1628e-01,\n", " -5.6690e-01, -2.2989e-01, 9.6539e-01, -9.2093e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [4]个单词\n", "解码器输入dec_input: tensor([22, 9])\n", "dec_state: tensor([[[-0.3367, 0.8923, -0.4362, 0.8838, 0.4453, 0.3998, -0.7963,\n", " 0.1455, 0.4692, -0.4375, -0.1632, -0.9619, -0.7158, 0.6808,\n", " 0.0093, -0.4446, -0.8983, -0.5874, -0.2650, 0.6057, 0.4927,\n", " -0.8993, 0.5555, 0.7892, 0.5625, -0.9220, -0.7776, -0.3255,\n", " -0.9072, -0.5854, -0.8839, 0.7639, 0.0249, 0.6477, -0.7281,\n", " -0.8317, 0.5472, -0.0640, -0.9533, -0.5750, -0.3701, -0.0992,\n", " 0.4957, 0.4315, -0.6219, 0.9187, -0.9761, -0.6713, 0.0438,\n", " 0.6649, 0.1394, 0.7033, 0.2590, -0.8198, -0.7666, -0.1088,\n", " 0.3651, 0.4913, 0.5911, 0.8541, -0.7342, 0.9547, 0.0896,\n", " -0.0423],\n", " [ 0.0384, 0.5980, -0.0104, 0.8848, 0.7510, 0.3383, -0.3988,\n", " 0.0831, 0.7640, -0.1490, -0.0752, -0.6116, -0.7376, 0.7719,\n", " 0.6491, 0.0703, -0.0218, -0.0756, -0.0145, 0.3848, 0.6203,\n", " 0.0160, -0.2018, 0.8233, -0.2942, -0.9315, -0.6497, 0.2754,\n", " -0.8982, -0.4249, -0.6003, 0.1473, -0.5484, 0.2651, -0.6002,\n", " -0.2391, 0.6637, 0.3562, -0.0432, -0.4881, -0.4381, 0.3546,\n", " 0.1039, 0.6856, -0.6636, 0.0796, -0.3539, 0.3958, -0.5594,\n", " 0.7981, 0.8941, 0.2880, 0.3014, -0.2678, -0.8450, 0.1873,\n", " 0.7214, 0.5735, 0.3525, 0.5950, -0.7695, 0.6803, 0.0368,\n", " 0.8036]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.8794e-02, 5.3342e-01, 2.7767e-01, 3.9600e-01, -3.6861e-01,\n", " 1.5557e-01, -1.0969e-01, 1.7756e-01, -1.0504e-01, -2.7521e-01,\n", " 2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03, 3.0370e-01,\n", " -1.8936e-01, 6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\n", " -6.2699e-01, -5.6061e-01, 5.4069e-01, 2.7735e-01, -3.8531e-01,\n", " -5.4473e-01, 6.6829e-02, 5.7072e-01, 3.5158e-02, 1.8771e-02,\n", " 1.7612e-01, 3.9111e-01, -6.5084e-01, 6.1659e-01, 1.7997e-01,\n", " -3.9050e-02, -3.8968e-01, 7.8072e-01, -6.3102e-01, 2.3746e-01,\n", " -5.4918e-02, 3.5109e-01, -6.9286e-01, -2.8419e-01, 7.8028e-02,\n", " -3.1589e-01, -3.9509e-01, 2.7848e-01, -1.8915e-02, 4.0646e-01,\n", " 1.8700e-01, 6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\n", " 1.7482e-01, 5.1712e-02, 3.2650e-01, -3.3498e-01, 2.5596e-01,\n", " -6.6363e-01, 3.9568e-01, 6.6326e-01, -4.5198e-01],\n", " [-4.4663e-01, 4.9992e-02, -1.1279e-01, 5.5714e-01, 2.9287e-01,\n", " 5.3430e-02, -3.2958e-02, -6.9619e-01, 3.7287e-01, -1.1730e-01,\n", " 4.7527e-01, -1.4236e-01, 1.0980e-01, 3.4374e-01, 4.4925e-02,\n", " 5.4476e-01, 1.3434e-01, 2.4798e-01, 1.4511e-01, 2.8671e-01,\n", " -7.2405e-01, -4.0333e-02, 1.2978e-01, -1.1822e-01, -6.4893e-01,\n", " 1.3198e-01, -5.2837e-01, -3.7102e-01, 6.7838e-02, 8.5206e-02,\n", " 1.3851e-01, -3.6910e-02, 3.1990e-02, 9.5910e-02, -2.7345e-01,\n", " -9.7926e-02, -6.3590e-01, 3.5229e-01, 6.0026e-01, 8.7420e-02,\n", " -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\n", " 3.1581e-01, -3.0370e-01, 6.5536e-02, 1.5106e-01, 1.2373e-01,\n", " 1.4191e-01, 5.0884e-01, 1.8682e-01, -4.1712e-01, -1.7723e-01,\n", " 2.8597e-01, -5.5452e-01, 2.8961e-01, 2.7804e-01, -1.9407e-01,\n", " -4.4526e-01, 3.7736e-01, 3.5711e-01, -3.5176e-01]],\n", "\n", " [[-2.1324e-01, 5.2025e-01, 5.0695e-01, 3.2545e-01, -5.7762e-01,\n", " -7.3069e-01, -1.0028e-01, 4.7019e-01, -3.5687e-01, -7.2285e-01,\n", " 2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01, 4.3462e-02,\n", " 3.6790e-02, 7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\n", " -4.6593e-01, -5.6537e-01, 5.0546e-01, 8.1896e-01, -2.9426e-01,\n", " -7.9558e-01, 8.4542e-01, 5.4046e-01, 5.8609e-01, 5.0922e-01,\n", " -1.6546e-01, 6.0234e-01, -5.6518e-01, 8.5887e-01, -4.5587e-01,\n", " -3.5113e-02, -3.1436e-01, 7.4797e-01, -6.6369e-01, -2.0690e-01,\n", " 7.0571e-01, -4.6216e-01, -7.8772e-01, 3.5452e-01, 2.6347e-01,\n", " -4.1197e-01, -4.6747e-01, 4.9282e-01, 6.8443e-02, 2.7213e-02,\n", " 3.8875e-01, 6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\n", " 8.9968e-01, 4.0096e-01, 9.4859e-02, -7.1174e-01, 3.0494e-02,\n", " -7.4953e-01, 8.1606e-02, 6.2147e-01, -2.7554e-01],\n", " [-4.6765e-01, 3.5594e-01, -4.6087e-01, 6.5994e-01, 1.5107e-01,\n", " -4.9836e-02, 3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\n", " 8.9305e-02, 4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\n", " 1.2247e-01, -7.1975e-02, -4.5834e-02, 8.9275e-02, 1.3229e-01,\n", " -3.2071e-01, 8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\n", " 5.4388e-02, 2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\n", " 2.7214e-01, -1.7248e-01, 2.0683e-01, -7.7345e-03, -2.9245e-01,\n", " -1.5008e-01, -4.2409e-01, -2.4032e-01, 2.3066e-01, 1.9569e-01,\n", " -3.6902e-01, 2.6708e-01, -1.5023e-01, -1.7348e-01, 3.3117e-01,\n", " 1.2738e-01, -2.8993e-01, -1.2677e-01, 1.4847e-01, 3.7645e-01,\n", " -1.9285e-01, 4.2530e-01, 2.1337e-01, -5.1065e-01, -3.3662e-01,\n", " 1.3590e-02, 2.5094e-02, 2.0697e-01, 1.3003e-01, -4.5041e-01,\n", " 1.9167e-01, 5.0020e-01, 1.3076e-01, -4.9900e-01]],\n", "\n", " [[-2.8282e-02, 4.8322e-01, -4.5622e-02, 2.9975e-01, -1.3149e-02,\n", " -7.4066e-01, 1.9927e-01, 7.5937e-01, -1.8768e-01, -1.1899e-01,\n", " -2.0289e-01, 3.6612e-01, -5.8996e-01, -5.1666e-01, 5.3625e-03,\n", " 3.3709e-01, 7.8384e-01, -7.4147e-01, 1.6300e-01, -7.4821e-01,\n", " -3.9660e-01, -4.5093e-01, 1.7294e-01, 9.2179e-01, 3.1065e-01,\n", " -3.7260e-01, 6.1350e-01, 2.4377e-01, 5.7021e-01, 5.0771e-01,\n", " -5.7705e-01, -1.0129e-02, -3.0245e-02, 7.3764e-01, -6.2183e-01,\n", " 8.5102e-02, 4.4259e-02, 5.7435e-01, -1.3313e-01, 9.5835e-02,\n", " 7.3970e-01, -8.5254e-02, -2.9058e-01, 6.6853e-01, 1.4284e-01,\n", " -4.4259e-01, -3.5658e-01, 3.1570e-02, 4.1088e-01, 5.8174e-01,\n", " 1.7225e-01, 5.0016e-01, -2.3336e-01, 1.1785e-01, -8.1593e-03,\n", " 9.0696e-01, 5.1017e-02, 2.1235e-01, -3.1208e-01, 3.0785e-01,\n", " -7.9104e-01, -4.6839e-01, 5.5536e-01, -1.8962e-01],\n", " [-2.9474e-01, 4.1033e-01, -1.0640e-01, 2.2170e-01, 3.7699e-01,\n", " 1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\n", " -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\n", " 5.2941e-01, -6.7271e-02, 4.9393e-01, -3.1223e-01, -1.9308e-01,\n", " 4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01, 2.1149e-02,\n", " 3.4688e-02, -2.6599e-02, 5.6323e-02, -2.3462e-01, -2.7575e-02,\n", " 3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\n", " 3.9748e-02, -5.5766e-02, -1.8779e-01, 3.7293e-01, -4.3215e-01,\n", " -3.2607e-01, 4.7629e-01, 1.2417e-01, 8.7553e-02, 7.4922e-02,\n", " 1.6414e-02, -3.7098e-01, 1.1215e-01, 5.0214e-01, 8.5971e-02,\n", " -1.8960e-01, 1.6976e-01, 5.8928e-02, -3.7863e-01, -1.9777e-02,\n", " 6.0712e-02, 3.4529e-01, 1.6618e-01, -2.3556e-01, 9.5518e-02,\n", " 3.2406e-01, 6.3608e-02, 1.7180e-01, -2.6295e-01]],\n", "\n", " [[-5.4039e-02, 8.8844e-01, 3.3888e-01, -9.1417e-02, 7.9695e-02,\n", " -2.3450e-01, -4.4034e-01, 6.3989e-01, 3.7835e-02, 3.9992e-01,\n", " -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\n", " 3.3464e-01, 6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\n", " -2.7994e-01, -6.0982e-01, 1.4235e-01, 2.2770e-01, 1.7566e-01,\n", " -5.3978e-01, 4.8615e-01, 3.1977e-01, 4.6543e-01, 3.2679e-01,\n", " 3.8429e-01, -4.0738e-01, -4.7408e-01, 1.6175e-01, 2.3650e-01,\n", " -6.0986e-01, -1.1444e-01, 8.2822e-01, -3.4007e-01, -3.5199e-01,\n", " 8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01, 8.2066e-02,\n", " -4.1364e-01, -5.2925e-01, 5.9958e-01, 3.0593e-01, 5.9111e-01,\n", " 3.8023e-01, 2.2484e-01, -5.9437e-01, 4.3079e-01, -2.0735e-01,\n", " 8.2035e-01, -4.0924e-02, 5.6995e-01, 1.0385e-01, 4.4414e-01,\n", " -8.6832e-01, -2.6419e-01, 8.3170e-01, -7.2663e-01],\n", " [-5.8141e-01, 1.1048e-01, -6.2374e-01, 5.0587e-01, 2.5336e-01,\n", " -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\n", " 4.2063e-01, -2.4931e-01, 3.9692e-01, -1.5809e-01, 3.2859e-01,\n", " -2.9822e-01, -1.9858e-02, 5.5853e-01, 7.8639e-02, 4.8963e-02,\n", " -2.2860e-01, 4.3759e-01, 2.3944e-01, 4.2009e-01, 1.3628e-01,\n", " 1.3792e-01, 1.2585e-01, 5.8101e-02, -5.4331e-01, -7.2530e-03,\n", " 8.0666e-02, -2.2224e-02, 6.3223e-01, 9.6790e-02, -4.9236e-01,\n", " -8.0862e-02, -2.6275e-01, 4.9909e-01, 7.1494e-01, 3.2871e-01,\n", " -7.4854e-01, 5.1980e-01, 1.2756e-01, 1.5925e-01, -1.1948e-01,\n", " -9.3237e-02, -3.0931e-01, -4.2692e-01, 2.9031e-01, 2.0414e-02,\n", " -3.2254e-01, -3.8900e-01, 5.7919e-01, -7.3999e-01, 1.2747e-01,\n", " -1.9365e-02, 4.8622e-01, 6.7972e-02, -6.2490e-01, -5.0826e-01,\n", " 2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\n", "\n", " [[ 3.6193e-01, 5.5425e-01, 5.4040e-01, -3.0972e-01, -1.3313e-01,\n", " -6.7800e-01, -4.0654e-01, 4.6998e-01, 1.0506e-02, -4.1220e-01,\n", " -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\n", " 7.3778e-02, 3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\n", " -4.0731e-01, -4.5251e-01, 2.7892e-01, 6.7418e-02, -1.8913e-01,\n", " -7.8529e-01, 7.4795e-02, 3.1780e-01, -5.6582e-02, -2.6386e-02,\n", " 5.4243e-01, -1.1841e-01, -3.2193e-01, 4.1168e-01, 6.0450e-01,\n", " -1.9057e-01, -1.6040e-01, 5.1988e-01, 2.5761e-01, -2.8185e-01,\n", " 1.6285e-01, -9.2601e-02, -2.9516e-01, 1.5801e-01, -3.4487e-01,\n", " -2.4956e-01, -4.2876e-01, 4.0097e-01, 7.6141e-02, 6.9152e-02,\n", " -1.9961e-01, 1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\n", " 7.0492e-01, 7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\n", " -7.6009e-01, 2.2291e-01, 6.5275e-01, -8.7851e-01],\n", " [-5.2118e-01, 5.0256e-01, -5.8167e-01, 1.1051e-01, 1.7868e-01,\n", " -4.7288e-01, -5.4152e-01, -7.2585e-01, 4.8291e-01, -3.2155e-01,\n", " 5.4432e-01, -3.7827e-01, 1.8096e-01, 5.5709e-01, 3.6829e-01,\n", " -4.2694e-01, -1.1016e-01, 3.8142e-01, 7.3456e-01, 1.3955e-01,\n", " -6.2690e-01, 4.6662e-01, 9.9586e-03, 4.4347e-01, -1.2285e-01,\n", " 2.4158e-01, -1.9818e-02, 3.2224e-02, -4.5263e-03, 9.7170e-02,\n", " -2.6790e-02, 3.4196e-01, 5.5448e-01, -2.6957e-01, -4.7481e-01,\n", " 2.5820e-01, -1.6188e-01, 1.8216e-01, 4.3528e-01, 4.1423e-02,\n", " 3.8483e-01, 2.9323e-01, -3.9919e-02, 2.4917e-02, -6.6221e-01,\n", " 4.4238e-02, -1.3296e-01, -5.2108e-01, 4.3413e-02, 2.4199e-01,\n", " 1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\n", " -2.2352e-01, -4.5641e-01, 6.2054e-04, -6.1068e-01, -2.4117e-02,\n", " -6.6375e-01, -2.8839e-01, 9.2161e-03, -1.7272e-01]],\n", "\n", " [[-1.2020e-01, 8.7811e-01, 6.2669e-01, -1.2818e-01, -1.8441e-01,\n", " -6.0717e-01, -7.9754e-01, 5.0410e-01, 4.0985e-01, -6.4446e-02,\n", " 1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01, 1.8644e-01,\n", " 4.3668e-01, 6.4194e-01, -4.0182e-01, 5.6554e-01, -5.9408e-01,\n", " -2.6671e-01, -4.0951e-01, -1.2089e-01, 1.1193e-01, 3.2120e-01,\n", " -6.5532e-01, 1.4062e-01, 2.8029e-01, 8.2498e-02, -1.1054e-01,\n", " 7.0519e-01, -6.9252e-01, -2.9735e-01, 3.8513e-01, 3.2410e-01,\n", " -7.1698e-03, -4.7982e-02, 6.5625e-01, -2.5359e-01, -3.1089e-01,\n", " 1.1211e-01, 2.1855e-01, -1.9636e-01, 1.6137e-01, -5.1002e-01,\n", " -3.1695e-01, -3.5947e-01, 3.2188e-01, 5.8348e-01, 3.8076e-01,\n", " -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01, 6.6140e-02,\n", " 6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01, 7.7110e-01,\n", " -7.8675e-01, -3.0830e-01, 2.2900e-01, -7.8719e-01],\n", " [-4.0451e-01, 8.7136e-01, 2.0729e-01, -1.9370e-02, -4.0648e-02,\n", " -4.8286e-01, -8.0573e-01, -2.4901e-01, 5.7310e-01, -5.8490e-02,\n", " 6.0313e-01, -8.4063e-01, -2.5698e-01, 3.3939e-01, 3.4959e-01,\n", " 3.7069e-01, 4.3289e-01, 9.9988e-02, 9.0438e-01, -3.6257e-01,\n", " -4.4119e-01, 4.2917e-01, -2.6990e-01, 4.2311e-01, 2.7980e-01,\n", " 1.9899e-01, 8.3125e-02, 1.3034e-01, 9.0406e-02, -2.5047e-02,\n", " 5.0993e-01, -6.0698e-01, 2.0975e-01, 2.8351e-01, -1.9944e-01,\n", " 2.5476e-01, -6.0071e-02, 4.2573e-01, 3.9131e-03, -9.8624e-02,\n", " 1.9323e-01, 5.3431e-01, -1.0846e-01, 8.3219e-02, -5.1852e-01,\n", " -1.0182e-01, 8.0068e-03, -9.8824e-02, 5.1580e-01, 4.8648e-01,\n", " -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\n", " 2.1330e-01, -6.1276e-01, 1.6057e-01, -6.3184e-01, 8.1466e-01,\n", " -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\n", "\n", " [[-4.0104e-01, 6.5426e-01, 7.7138e-01, 5.6748e-01, -4.7691e-01,\n", " -5.2622e-01, -8.1877e-01, -8.8119e-01, 6.0301e-01, -1.5291e-01,\n", " 4.0511e-01, -8.7244e-01, -3.8247e-01, 3.3862e-01, 1.2650e-01,\n", " 7.8641e-01, 6.1568e-01, 4.3722e-01, 7.2865e-01, -6.2760e-01,\n", " -9.0425e-01, -3.7571e-01, -8.7384e-02, 2.0393e-01, 1.7595e-01,\n", " -9.6426e-01, 6.6673e-01, 1.5598e-01, -2.9040e-01, 5.8154e-02,\n", " 8.7598e-01, -3.7915e-01, 3.1616e-01, -1.1750e-01, -5.0382e-01,\n", " 2.9781e-01, -8.1428e-01, 8.4853e-01, 6.1756e-01, -2.0564e-01,\n", " 1.9886e-02, -5.7905e-01, -8.4476e-01, 5.3807e-01, -3.7935e-01,\n", " -2.3593e-01, -5.5078e-01, 5.0617e-01, 7.8397e-01, 8.9721e-01,\n", " -5.4892e-01, 5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\n", " 9.1601e-01, -8.3470e-01, 3.3360e-01, 9.7394e-01, 6.7423e-01,\n", " -6.3171e-01, -5.4024e-02, 9.7447e-01, -9.5411e-01],\n", " [-5.6495e-01, 6.4817e-01, 6.1315e-01, 6.0038e-01, -4.1307e-01,\n", " -4.5898e-01, -8.2032e-01, -9.4217e-01, 6.8682e-01, -1.7263e-01,\n", " 6.3151e-01, -8.4917e-01, -2.9447e-01, 5.2271e-01, 2.1862e-01,\n", " 8.2034e-01, 4.7811e-01, 6.8474e-01, 9.2941e-01, -4.2096e-01,\n", " -9.4001e-01, 3.0864e-01, -1.8619e-01, 4.4706e-01, 1.4602e-01,\n", " -9.2286e-01, 6.6321e-01, 5.4442e-02, -3.0118e-01, 8.8396e-02,\n", " 8.6066e-01, -2.5356e-01, 5.8141e-01, -1.4684e-03, -6.8510e-01,\n", " 4.2343e-01, -8.3636e-01, 7.4505e-01, 6.3347e-01, -5.5176e-02,\n", " 8.0538e-02, -5.6538e-01, -8.6216e-01, 4.8400e-01, -3.9852e-01,\n", " -5.4495e-02, -3.7059e-01, 3.6633e-01, 7.5105e-01, 9.1164e-01,\n", " -5.1931e-01, 5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\n", " 8.3216e-01, -8.5892e-01, 4.5073e-01, 9.6752e-01, 7.1628e-01,\n", " -5.6690e-01, -2.2989e-01, 9.6539e-01, -9.2093e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [5]个单词\n", "解码器输入dec_input: tensor([ 3, 15])\n", "dec_state: tensor([[[ 0.9376, 0.9796, -0.9724, 0.8919, 0.2452, 0.4933, -0.8507,\n", " -0.4310, 0.1226, -0.9720, -0.9620, -0.9773, 0.7710, 0.9302,\n", " -0.9179, 0.6201, 0.8571, -0.8821, -0.8776, 0.6627, 0.5104,\n", " -0.9036, -0.4885, 0.7935, 0.9652, -0.9507, -0.1816, -0.9444,\n", " 0.8940, -0.7134, -0.9545, 0.7820, 0.8247, 0.8818, -0.5374,\n", " -0.9111, 0.8311, -0.8450, 0.8396, 0.5005, -0.7956, 0.6962,\n", " 0.6243, -0.7406, -0.7826, 0.9927, -0.8054, 0.8480, -0.0056,\n", " 0.6803, -0.8839, 0.9667, 0.4806, -0.8863, 0.9699, -0.3309,\n", " 0.9134, 0.4165, -0.5281, -0.1904, -0.8443, 0.9792, 0.0811,\n", " -0.9178],\n", " [ 0.5424, 0.7369, -0.2433, 0.7250, 0.7523, 0.2888, -0.5094,\n", " -0.0754, 0.4618, -0.6091, -0.2164, -0.2908, -0.7601, 0.7786,\n", " 0.4238, -0.0468, 0.4545, -0.0505, -0.2010, -0.0385, 0.7828,\n", " -0.2725, 0.5833, 0.7771, -0.2824, -0.8375, 0.0299, 0.2532,\n", " -0.6545, -0.1112, -0.6816, 0.5323, -0.9026, 0.3828, -0.6406,\n", " -0.6973, 0.5383, 0.1959, -0.0330, -0.3161, -0.8132, 0.5772,\n", " 0.3413, 0.6147, -0.2265, 0.4392, -0.4982, 0.6388, -0.5994,\n", " 0.7427, 0.8387, 0.2817, 0.0079, -0.2049, -0.5776, 0.3742,\n", " 0.1367, 0.5171, 0.2580, 0.6392, -0.8136, 0.6977, 0.0528,\n", " 0.6994]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.8794e-02, 5.3342e-01, 2.7767e-01, 3.9600e-01, -3.6861e-01,\n", " 1.5557e-01, -1.0969e-01, 1.7756e-01, -1.0504e-01, -2.7521e-01,\n", " 2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03, 3.0370e-01,\n", " -1.8936e-01, 6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\n", " -6.2699e-01, -5.6061e-01, 5.4069e-01, 2.7735e-01, -3.8531e-01,\n", " -5.4473e-01, 6.6829e-02, 5.7072e-01, 3.5158e-02, 1.8771e-02,\n", " 1.7612e-01, 3.9111e-01, -6.5084e-01, 6.1659e-01, 1.7997e-01,\n", " -3.9050e-02, -3.8968e-01, 7.8072e-01, -6.3102e-01, 2.3746e-01,\n", " -5.4918e-02, 3.5109e-01, -6.9286e-01, -2.8419e-01, 7.8028e-02,\n", " -3.1589e-01, -3.9509e-01, 2.7848e-01, -1.8915e-02, 4.0646e-01,\n", " 1.8700e-01, 6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\n", " 1.7482e-01, 5.1712e-02, 3.2650e-01, -3.3498e-01, 2.5596e-01,\n", " -6.6363e-01, 3.9568e-01, 6.6326e-01, -4.5198e-01],\n", " [-4.4663e-01, 4.9992e-02, -1.1279e-01, 5.5714e-01, 2.9287e-01,\n", " 5.3430e-02, -3.2958e-02, -6.9619e-01, 3.7287e-01, -1.1730e-01,\n", " 4.7527e-01, -1.4236e-01, 1.0980e-01, 3.4374e-01, 4.4925e-02,\n", " 5.4476e-01, 1.3434e-01, 2.4798e-01, 1.4511e-01, 2.8671e-01,\n", " -7.2405e-01, -4.0333e-02, 1.2978e-01, -1.1822e-01, -6.4893e-01,\n", " 1.3198e-01, -5.2837e-01, -3.7102e-01, 6.7838e-02, 8.5206e-02,\n", " 1.3851e-01, -3.6910e-02, 3.1990e-02, 9.5910e-02, -2.7345e-01,\n", " -9.7926e-02, -6.3590e-01, 3.5229e-01, 6.0026e-01, 8.7420e-02,\n", " -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\n", " 3.1581e-01, -3.0370e-01, 6.5536e-02, 1.5106e-01, 1.2373e-01,\n", " 1.4191e-01, 5.0884e-01, 1.8682e-01, -4.1712e-01, -1.7723e-01,\n", " 2.8597e-01, -5.5452e-01, 2.8961e-01, 2.7804e-01, -1.9407e-01,\n", " -4.4526e-01, 3.7736e-01, 3.5711e-01, -3.5176e-01]],\n", "\n", " [[-2.1324e-01, 5.2025e-01, 5.0695e-01, 3.2545e-01, -5.7762e-01,\n", " -7.3069e-01, -1.0028e-01, 4.7019e-01, -3.5687e-01, -7.2285e-01,\n", " 2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01, 4.3462e-02,\n", " 3.6790e-02, 7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\n", " -4.6593e-01, -5.6537e-01, 5.0546e-01, 8.1896e-01, -2.9426e-01,\n", " -7.9558e-01, 8.4542e-01, 5.4046e-01, 5.8609e-01, 5.0922e-01,\n", " -1.6546e-01, 6.0234e-01, -5.6518e-01, 8.5887e-01, -4.5587e-01,\n", " -3.5113e-02, -3.1436e-01, 7.4797e-01, -6.6369e-01, -2.0690e-01,\n", " 7.0571e-01, -4.6216e-01, -7.8772e-01, 3.5452e-01, 2.6347e-01,\n", " -4.1197e-01, -4.6747e-01, 4.9282e-01, 6.8443e-02, 2.7213e-02,\n", " 3.8875e-01, 6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\n", " 8.9968e-01, 4.0096e-01, 9.4859e-02, -7.1174e-01, 3.0494e-02,\n", " -7.4953e-01, 8.1606e-02, 6.2147e-01, -2.7554e-01],\n", " [-4.6765e-01, 3.5594e-01, -4.6087e-01, 6.5994e-01, 1.5107e-01,\n", " -4.9836e-02, 3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\n", " 8.9305e-02, 4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\n", " 1.2247e-01, -7.1975e-02, -4.5834e-02, 8.9275e-02, 1.3229e-01,\n", " -3.2071e-01, 8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\n", " 5.4388e-02, 2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\n", " 2.7214e-01, -1.7248e-01, 2.0683e-01, -7.7345e-03, -2.9245e-01,\n", " -1.5008e-01, -4.2409e-01, -2.4032e-01, 2.3066e-01, 1.9569e-01,\n", " -3.6902e-01, 2.6708e-01, -1.5023e-01, -1.7348e-01, 3.3117e-01,\n", " 1.2738e-01, -2.8993e-01, -1.2677e-01, 1.4847e-01, 3.7645e-01,\n", " -1.9285e-01, 4.2530e-01, 2.1337e-01, -5.1065e-01, -3.3662e-01,\n", " 1.3590e-02, 2.5094e-02, 2.0697e-01, 1.3003e-01, -4.5041e-01,\n", " 1.9167e-01, 5.0020e-01, 1.3076e-01, -4.9900e-01]],\n", "\n", " [[-2.8282e-02, 4.8322e-01, -4.5622e-02, 2.9975e-01, -1.3149e-02,\n", " -7.4066e-01, 1.9927e-01, 7.5937e-01, -1.8768e-01, -1.1899e-01,\n", " -2.0289e-01, 3.6612e-01, -5.8996e-01, -5.1666e-01, 5.3625e-03,\n", " 3.3709e-01, 7.8384e-01, -7.4147e-01, 1.6300e-01, -7.4821e-01,\n", " -3.9660e-01, -4.5093e-01, 1.7294e-01, 9.2179e-01, 3.1065e-01,\n", " -3.7260e-01, 6.1350e-01, 2.4377e-01, 5.7021e-01, 5.0771e-01,\n", " -5.7705e-01, -1.0129e-02, -3.0245e-02, 7.3764e-01, -6.2183e-01,\n", " 8.5102e-02, 4.4259e-02, 5.7435e-01, -1.3313e-01, 9.5835e-02,\n", " 7.3970e-01, -8.5254e-02, -2.9058e-01, 6.6853e-01, 1.4284e-01,\n", " -4.4259e-01, -3.5658e-01, 3.1570e-02, 4.1088e-01, 5.8174e-01,\n", " 1.7225e-01, 5.0016e-01, -2.3336e-01, 1.1785e-01, -8.1593e-03,\n", " 9.0696e-01, 5.1017e-02, 2.1235e-01, -3.1208e-01, 3.0785e-01,\n", " -7.9104e-01, -4.6839e-01, 5.5536e-01, -1.8962e-01],\n", " [-2.9474e-01, 4.1033e-01, -1.0640e-01, 2.2170e-01, 3.7699e-01,\n", " 1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\n", " -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\n", " 5.2941e-01, -6.7271e-02, 4.9393e-01, -3.1223e-01, -1.9308e-01,\n", " 4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01, 2.1149e-02,\n", " 3.4688e-02, -2.6599e-02, 5.6323e-02, -2.3462e-01, -2.7575e-02,\n", " 3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\n", " 3.9748e-02, -5.5766e-02, -1.8779e-01, 3.7293e-01, -4.3215e-01,\n", " -3.2607e-01, 4.7629e-01, 1.2417e-01, 8.7553e-02, 7.4922e-02,\n", " 1.6414e-02, -3.7098e-01, 1.1215e-01, 5.0214e-01, 8.5971e-02,\n", " -1.8960e-01, 1.6976e-01, 5.8928e-02, -3.7863e-01, -1.9777e-02,\n", " 6.0712e-02, 3.4529e-01, 1.6618e-01, -2.3556e-01, 9.5518e-02,\n", " 3.2406e-01, 6.3608e-02, 1.7180e-01, -2.6295e-01]],\n", "\n", " [[-5.4039e-02, 8.8844e-01, 3.3888e-01, -9.1417e-02, 7.9695e-02,\n", " -2.3450e-01, -4.4034e-01, 6.3989e-01, 3.7835e-02, 3.9992e-01,\n", " -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\n", " 3.3464e-01, 6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\n", " -2.7994e-01, -6.0982e-01, 1.4235e-01, 2.2770e-01, 1.7566e-01,\n", " -5.3978e-01, 4.8615e-01, 3.1977e-01, 4.6543e-01, 3.2679e-01,\n", " 3.8429e-01, -4.0738e-01, -4.7408e-01, 1.6175e-01, 2.3650e-01,\n", " -6.0986e-01, -1.1444e-01, 8.2822e-01, -3.4007e-01, -3.5199e-01,\n", " 8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01, 8.2066e-02,\n", " -4.1364e-01, -5.2925e-01, 5.9958e-01, 3.0593e-01, 5.9111e-01,\n", " 3.8023e-01, 2.2484e-01, -5.9437e-01, 4.3079e-01, -2.0735e-01,\n", " 8.2035e-01, -4.0924e-02, 5.6995e-01, 1.0385e-01, 4.4414e-01,\n", " -8.6832e-01, -2.6419e-01, 8.3170e-01, -7.2663e-01],\n", " [-5.8141e-01, 1.1048e-01, -6.2374e-01, 5.0587e-01, 2.5336e-01,\n", " -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\n", " 4.2063e-01, -2.4931e-01, 3.9692e-01, -1.5809e-01, 3.2859e-01,\n", " -2.9822e-01, -1.9858e-02, 5.5853e-01, 7.8639e-02, 4.8963e-02,\n", " -2.2860e-01, 4.3759e-01, 2.3944e-01, 4.2009e-01, 1.3628e-01,\n", " 1.3792e-01, 1.2585e-01, 5.8101e-02, -5.4331e-01, -7.2530e-03,\n", " 8.0666e-02, -2.2224e-02, 6.3223e-01, 9.6790e-02, -4.9236e-01,\n", " -8.0862e-02, -2.6275e-01, 4.9909e-01, 7.1494e-01, 3.2871e-01,\n", " -7.4854e-01, 5.1980e-01, 1.2756e-01, 1.5925e-01, -1.1948e-01,\n", " -9.3237e-02, -3.0931e-01, -4.2692e-01, 2.9031e-01, 2.0414e-02,\n", " -3.2254e-01, -3.8900e-01, 5.7919e-01, -7.3999e-01, 1.2747e-01,\n", " -1.9365e-02, 4.8622e-01, 6.7972e-02, -6.2490e-01, -5.0826e-01,\n", " 2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\n", "\n", " [[ 3.6193e-01, 5.5425e-01, 5.4040e-01, -3.0972e-01, -1.3313e-01,\n", " -6.7800e-01, -4.0654e-01, 4.6998e-01, 1.0506e-02, -4.1220e-01,\n", " -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\n", " 7.3778e-02, 3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\n", " -4.0731e-01, -4.5251e-01, 2.7892e-01, 6.7418e-02, -1.8913e-01,\n", " -7.8529e-01, 7.4795e-02, 3.1780e-01, -5.6582e-02, -2.6386e-02,\n", " 5.4243e-01, -1.1841e-01, -3.2193e-01, 4.1168e-01, 6.0450e-01,\n", " -1.9057e-01, -1.6040e-01, 5.1988e-01, 2.5761e-01, -2.8185e-01,\n", " 1.6285e-01, -9.2601e-02, -2.9516e-01, 1.5801e-01, -3.4487e-01,\n", " -2.4956e-01, -4.2876e-01, 4.0097e-01, 7.6141e-02, 6.9152e-02,\n", " -1.9961e-01, 1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\n", " 7.0492e-01, 7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\n", " -7.6009e-01, 2.2291e-01, 6.5275e-01, -8.7851e-01],\n", " [-5.2118e-01, 5.0256e-01, -5.8167e-01, 1.1051e-01, 1.7868e-01,\n", " -4.7288e-01, -5.4152e-01, -7.2585e-01, 4.8291e-01, -3.2155e-01,\n", " 5.4432e-01, -3.7827e-01, 1.8096e-01, 5.5709e-01, 3.6829e-01,\n", " -4.2694e-01, -1.1016e-01, 3.8142e-01, 7.3456e-01, 1.3955e-01,\n", " -6.2690e-01, 4.6662e-01, 9.9586e-03, 4.4347e-01, -1.2285e-01,\n", " 2.4158e-01, -1.9818e-02, 3.2224e-02, -4.5263e-03, 9.7170e-02,\n", " -2.6790e-02, 3.4196e-01, 5.5448e-01, -2.6957e-01, -4.7481e-01,\n", " 2.5820e-01, -1.6188e-01, 1.8216e-01, 4.3528e-01, 4.1423e-02,\n", " 3.8483e-01, 2.9323e-01, -3.9919e-02, 2.4917e-02, -6.6221e-01,\n", " 4.4238e-02, -1.3296e-01, -5.2108e-01, 4.3413e-02, 2.4199e-01,\n", " 1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\n", " -2.2352e-01, -4.5641e-01, 6.2054e-04, -6.1068e-01, -2.4117e-02,\n", " -6.6375e-01, -2.8839e-01, 9.2161e-03, -1.7272e-01]],\n", "\n", " [[-1.2020e-01, 8.7811e-01, 6.2669e-01, -1.2818e-01, -1.8441e-01,\n", " -6.0717e-01, -7.9754e-01, 5.0410e-01, 4.0985e-01, -6.4446e-02,\n", " 1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01, 1.8644e-01,\n", " 4.3668e-01, 6.4194e-01, -4.0182e-01, 5.6554e-01, -5.9408e-01,\n", " -2.6671e-01, -4.0951e-01, -1.2089e-01, 1.1193e-01, 3.2120e-01,\n", " -6.5532e-01, 1.4062e-01, 2.8029e-01, 8.2498e-02, -1.1054e-01,\n", " 7.0519e-01, -6.9252e-01, -2.9735e-01, 3.8513e-01, 3.2410e-01,\n", " -7.1698e-03, -4.7982e-02, 6.5625e-01, -2.5359e-01, -3.1089e-01,\n", " 1.1211e-01, 2.1855e-01, -1.9636e-01, 1.6137e-01, -5.1002e-01,\n", " -3.1695e-01, -3.5947e-01, 3.2188e-01, 5.8348e-01, 3.8076e-01,\n", " -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01, 6.6140e-02,\n", " 6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01, 7.7110e-01,\n", " -7.8675e-01, -3.0830e-01, 2.2900e-01, -7.8719e-01],\n", " [-4.0451e-01, 8.7136e-01, 2.0729e-01, -1.9370e-02, -4.0648e-02,\n", " -4.8286e-01, -8.0573e-01, -2.4901e-01, 5.7310e-01, -5.8490e-02,\n", " 6.0313e-01, -8.4063e-01, -2.5698e-01, 3.3939e-01, 3.4959e-01,\n", " 3.7069e-01, 4.3289e-01, 9.9988e-02, 9.0438e-01, -3.6257e-01,\n", " -4.4119e-01, 4.2917e-01, -2.6990e-01, 4.2311e-01, 2.7980e-01,\n", " 1.9899e-01, 8.3125e-02, 1.3034e-01, 9.0406e-02, -2.5047e-02,\n", " 5.0993e-01, -6.0698e-01, 2.0975e-01, 2.8351e-01, -1.9944e-01,\n", " 2.5476e-01, -6.0071e-02, 4.2573e-01, 3.9131e-03, -9.8624e-02,\n", " 1.9323e-01, 5.3431e-01, -1.0846e-01, 8.3219e-02, -5.1852e-01,\n", " -1.0182e-01, 8.0068e-03, -9.8824e-02, 5.1580e-01, 4.8648e-01,\n", " -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\n", " 2.1330e-01, -6.1276e-01, 1.6057e-01, -6.3184e-01, 8.1466e-01,\n", " -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\n", "\n", " [[-4.0104e-01, 6.5426e-01, 7.7138e-01, 5.6748e-01, -4.7691e-01,\n", " -5.2622e-01, -8.1877e-01, -8.8119e-01, 6.0301e-01, -1.5291e-01,\n", " 4.0511e-01, -8.7244e-01, -3.8247e-01, 3.3862e-01, 1.2650e-01,\n", " 7.8641e-01, 6.1568e-01, 4.3722e-01, 7.2865e-01, -6.2760e-01,\n", " -9.0425e-01, -3.7571e-01, -8.7384e-02, 2.0393e-01, 1.7595e-01,\n", " -9.6426e-01, 6.6673e-01, 1.5598e-01, -2.9040e-01, 5.8154e-02,\n", " 8.7598e-01, -3.7915e-01, 3.1616e-01, -1.1750e-01, -5.0382e-01,\n", " 2.9781e-01, -8.1428e-01, 8.4853e-01, 6.1756e-01, -2.0564e-01,\n", " 1.9886e-02, -5.7905e-01, -8.4476e-01, 5.3807e-01, -3.7935e-01,\n", " -2.3593e-01, -5.5078e-01, 5.0617e-01, 7.8397e-01, 8.9721e-01,\n", " -5.4892e-01, 5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\n", " 9.1601e-01, -8.3470e-01, 3.3360e-01, 9.7394e-01, 6.7423e-01,\n", " -6.3171e-01, -5.4024e-02, 9.7447e-01, -9.5411e-01],\n", " [-5.6495e-01, 6.4817e-01, 6.1315e-01, 6.0038e-01, -4.1307e-01,\n", " -4.5898e-01, -8.2032e-01, -9.4217e-01, 6.8682e-01, -1.7263e-01,\n", " 6.3151e-01, -8.4917e-01, -2.9447e-01, 5.2271e-01, 2.1862e-01,\n", " 8.2034e-01, 4.7811e-01, 6.8474e-01, 9.2941e-01, -4.2096e-01,\n", " -9.4001e-01, 3.0864e-01, -1.8619e-01, 4.4706e-01, 1.4602e-01,\n", " -9.2286e-01, 6.6321e-01, 5.4442e-02, -3.0118e-01, 8.8396e-02,\n", " 8.6066e-01, -2.5356e-01, 5.8141e-01, -1.4684e-03, -6.8510e-01,\n", " 4.2343e-01, -8.3636e-01, 7.4505e-01, 6.3347e-01, -5.5176e-02,\n", " 8.0538e-02, -5.6538e-01, -8.6216e-01, 4.8400e-01, -3.9852e-01,\n", " -5.4495e-02, -3.7059e-01, 3.6633e-01, 7.5105e-01, 9.1164e-01,\n", " -5.1931e-01, 5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\n", " 8.3216e-01, -8.5892e-01, 4.5073e-01, 9.6752e-01, 7.1628e-01,\n", " -5.6690e-01, -2.2989e-01, 9.6539e-01, -9.2093e-01]]],\n", " grad_fn=)\n", "mask tensor([1., 1.])\n", "------------------------------\n", "序列第 [6]个单词\n", "解码器输入dec_input: tensor([2, 3])\n", "dec_state: tensor([[[ 0.8209, 0.7986, -0.9837, 0.8991, 0.4713, 0.6574, -0.7928,\n", " -0.0398, -0.4576, 0.7194, 0.2264, -0.9104, -0.0025, 0.5939,\n", " -0.7994, -0.6152, -0.2568, -0.8597, -0.8599, 0.2942, 0.8585,\n", " -0.9027, 0.6063, 0.8351, 0.8415, -0.9625, -0.7276, -0.7362,\n", " -0.5936, -0.4966, -0.9679, 0.8667, -0.8565, 0.8970, -0.6430,\n", " -0.9874, 0.3493, -0.6256, 0.1346, 0.2767, -0.8283, 0.8472,\n", " 0.6499, 0.2199, -0.6108, 0.9233, -0.7930, 0.9059, -0.1878,\n", " 0.5122, 0.2273, 0.9304, 0.2608, -0.9083, 0.2096, -0.3775,\n", " 0.9846, 0.7496, 0.4626, 0.4490, -0.8833, 0.9756, -0.0237,\n", " 0.3978],\n", " [ 0.9671, 0.9512, -0.9036, 0.7454, 0.5689, 0.3857, -0.6949,\n", " -0.5445, 0.1886, -0.9821, -0.9260, -0.7862, 0.8587, 0.9579,\n", " -0.8831, 0.7689, 0.9219, -0.6811, -0.8718, 0.2782, 0.7653,\n", " -0.3095, -0.5300, 0.7707, 0.8851, -0.9231, -0.0859, -0.8823,\n", " 0.8568, -0.3876, -0.8632, 0.5919, 0.7728, 0.7856, -0.5792,\n", " -0.7832, 0.8091, -0.7551, 0.6608, 0.5444, -0.9246, 0.8543,\n", " 0.4954, -0.8090, -0.6873, 0.9595, -0.5523, 0.9020, -0.6096,\n", " 0.6262, -0.9305, 0.8850, 0.3623, -0.5265, 0.9479, 0.1956,\n", " 0.8632, 0.4190, -0.7615, -0.0942, -0.9305, 0.8813, 0.0495,\n", " -0.7991]]], grad_fn=) torch.Size([1, 2, 64])\n", "enc_outputs: tensor([[[-6.8794e-02, 5.3342e-01, 2.7767e-01, 3.9600e-01, -3.6861e-01,\n", " 1.5557e-01, -1.0969e-01, 1.7756e-01, -1.0504e-01, -2.7521e-01,\n", " 2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03, 3.0370e-01,\n", " -1.8936e-01, 6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\n", " -6.2699e-01, -5.6061e-01, 5.4069e-01, 2.7735e-01, -3.8531e-01,\n", " -5.4473e-01, 6.6829e-02, 5.7072e-01, 3.5158e-02, 1.8771e-02,\n", " 1.7612e-01, 3.9111e-01, -6.5084e-01, 6.1659e-01, 1.7997e-01,\n", " -3.9050e-02, -3.8968e-01, 7.8072e-01, -6.3102e-01, 2.3746e-01,\n", " -5.4918e-02, 3.5109e-01, -6.9286e-01, -2.8419e-01, 7.8028e-02,\n", " -3.1589e-01, -3.9509e-01, 2.7848e-01, -1.8915e-02, 4.0646e-01,\n", " 1.8700e-01, 6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\n", " 1.7482e-01, 5.1712e-02, 3.2650e-01, -3.3498e-01, 2.5596e-01,\n", " -6.6363e-01, 3.9568e-01, 6.6326e-01, -4.5198e-01],\n", " [-4.4663e-01, 4.9992e-02, -1.1279e-01, 5.5714e-01, 2.9287e-01,\n", " 5.3430e-02, -3.2958e-02, -6.9619e-01, 3.7287e-01, -1.1730e-01,\n", " 4.7527e-01, -1.4236e-01, 1.0980e-01, 3.4374e-01, 4.4925e-02,\n", " 5.4476e-01, 1.3434e-01, 2.4798e-01, 1.4511e-01, 2.8671e-01,\n", " -7.2405e-01, -4.0333e-02, 1.2978e-01, -1.1822e-01, -6.4893e-01,\n", " 1.3198e-01, -5.2837e-01, -3.7102e-01, 6.7838e-02, 8.5206e-02,\n", " 1.3851e-01, -3.6910e-02, 3.1990e-02, 9.5910e-02, -2.7345e-01,\n", " -9.7926e-02, -6.3590e-01, 3.5229e-01, 6.0026e-01, 8.7420e-02,\n", " -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\n", " 3.1581e-01, -3.0370e-01, 6.5536e-02, 1.5106e-01, 1.2373e-01,\n", " 1.4191e-01, 5.0884e-01, 1.8682e-01, -4.1712e-01, -1.7723e-01,\n", " 2.8597e-01, -5.5452e-01, 2.8961e-01, 2.7804e-01, -1.9407e-01,\n", " -4.4526e-01, 3.7736e-01, 3.5711e-01, -3.5176e-01]],\n", "\n", " [[-2.1324e-01, 5.2025e-01, 5.0695e-01, 3.2545e-01, -5.7762e-01,\n", " -7.3069e-01, -1.0028e-01, 4.7019e-01, -3.5687e-01, -7.2285e-01,\n", " 2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01, 4.3462e-02,\n", " 3.6790e-02, 7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\n", " -4.6593e-01, -5.6537e-01, 5.0546e-01, 8.1896e-01, -2.9426e-01,\n", " -7.9558e-01, 8.4542e-01, 5.4046e-01, 5.8609e-01, 5.0922e-01,\n", " -1.6546e-01, 6.0234e-01, -5.6518e-01, 8.5887e-01, -4.5587e-01,\n", " -3.5113e-02, -3.1436e-01, 7.4797e-01, -6.6369e-01, -2.0690e-01,\n", " 7.0571e-01, -4.6216e-01, -7.8772e-01, 3.5452e-01, 2.6347e-01,\n", " -4.1197e-01, -4.6747e-01, 4.9282e-01, 6.8443e-02, 2.7213e-02,\n", " 3.8875e-01, 6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\n", " 8.9968e-01, 4.0096e-01, 9.4859e-02, -7.1174e-01, 3.0494e-02,\n", " -7.4953e-01, 8.1606e-02, 6.2147e-01, -2.7554e-01],\n", " [-4.6765e-01, 3.5594e-01, -4.6087e-01, 6.5994e-01, 1.5107e-01,\n", " -4.9836e-02, 3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\n", " 8.9305e-02, 4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\n", " 1.2247e-01, -7.1975e-02, -4.5834e-02, 8.9275e-02, 1.3229e-01,\n", " -3.2071e-01, 8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\n", " 5.4388e-02, 2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\n", " 2.7214e-01, -1.7248e-01, 2.0683e-01, -7.7345e-03, -2.9245e-01,\n", " -1.5008e-01, -4.2409e-01, -2.4032e-01, 2.3066e-01, 1.9569e-01,\n", " -3.6902e-01, 2.6708e-01, -1.5023e-01, -1.7348e-01, 3.3117e-01,\n", " 1.2738e-01, -2.8993e-01, -1.2677e-01, 1.4847e-01, 3.7645e-01,\n", " -1.9285e-01, 4.2530e-01, 2.1337e-01, -5.1065e-01, -3.3662e-01,\n", " 1.3590e-02, 2.5094e-02, 2.0697e-01, 1.3003e-01, -4.5041e-01,\n", " 1.9167e-01, 5.0020e-01, 1.3076e-01, -4.9900e-01]],\n", "\n", " [[-2.8282e-02, 4.8322e-01, -4.5622e-02, 2.9975e-01, -1.3149e-02,\n", " -7.4066e-01, 1.9927e-01, 7.5937e-01, -1.8768e-01, -1.1899e-01,\n", " -2.0289e-01, 3.6612e-01, -5.8996e-01, -5.1666e-01, 5.3625e-03,\n", " 3.3709e-01, 7.8384e-01, -7.4147e-01, 1.6300e-01, -7.4821e-01,\n", " -3.9660e-01, -4.5093e-01, 1.7294e-01, 9.2179e-01, 3.1065e-01,\n", " -3.7260e-01, 6.1350e-01, 2.4377e-01, 5.7021e-01, 5.0771e-01,\n", " -5.7705e-01, -1.0129e-02, -3.0245e-02, 7.3764e-01, -6.2183e-01,\n", " 8.5102e-02, 4.4259e-02, 5.7435e-01, -1.3313e-01, 9.5835e-02,\n", " 7.3970e-01, -8.5254e-02, -2.9058e-01, 6.6853e-01, 1.4284e-01,\n", " -4.4259e-01, -3.5658e-01, 3.1570e-02, 4.1088e-01, 5.8174e-01,\n", " 1.7225e-01, 5.0016e-01, -2.3336e-01, 1.1785e-01, -8.1593e-03,\n", " 9.0696e-01, 5.1017e-02, 2.1235e-01, -3.1208e-01, 3.0785e-01,\n", " -7.9104e-01, -4.6839e-01, 5.5536e-01, -1.8962e-01],\n", " [-2.9474e-01, 4.1033e-01, -1.0640e-01, 2.2170e-01, 3.7699e-01,\n", " 1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\n", " -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\n", " 5.2941e-01, -6.7271e-02, 4.9393e-01, -3.1223e-01, -1.9308e-01,\n", " 4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01, 2.1149e-02,\n", " 3.4688e-02, -2.6599e-02, 5.6323e-02, -2.3462e-01, -2.7575e-02,\n", " 3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\n", " 3.9748e-02, -5.5766e-02, -1.8779e-01, 3.7293e-01, -4.3215e-01,\n", " -3.2607e-01, 4.7629e-01, 1.2417e-01, 8.7553e-02, 7.4922e-02,\n", " 1.6414e-02, -3.7098e-01, 1.1215e-01, 5.0214e-01, 8.5971e-02,\n", " -1.8960e-01, 1.6976e-01, 5.8928e-02, -3.7863e-01, -1.9777e-02,\n", " 6.0712e-02, 3.4529e-01, 1.6618e-01, -2.3556e-01, 9.5518e-02,\n", " 3.2406e-01, 6.3608e-02, 1.7180e-01, -2.6295e-01]],\n", "\n", " [[-5.4039e-02, 8.8844e-01, 3.3888e-01, -9.1417e-02, 7.9695e-02,\n", " -2.3450e-01, -4.4034e-01, 6.3989e-01, 3.7835e-02, 3.9992e-01,\n", " -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\n", " 3.3464e-01, 6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\n", " -2.7994e-01, -6.0982e-01, 1.4235e-01, 2.2770e-01, 1.7566e-01,\n", " -5.3978e-01, 4.8615e-01, 3.1977e-01, 4.6543e-01, 3.2679e-01,\n", " 3.8429e-01, -4.0738e-01, -4.7408e-01, 1.6175e-01, 2.3650e-01,\n", " -6.0986e-01, -1.1444e-01, 8.2822e-01, -3.4007e-01, -3.5199e-01,\n", " 8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01, 8.2066e-02,\n", " -4.1364e-01, -5.2925e-01, 5.9958e-01, 3.0593e-01, 5.9111e-01,\n", " 3.8023e-01, 2.2484e-01, -5.9437e-01, 4.3079e-01, -2.0735e-01,\n", " 8.2035e-01, -4.0924e-02, 5.6995e-01, 1.0385e-01, 4.4414e-01,\n", " -8.6832e-01, -2.6419e-01, 8.3170e-01, -7.2663e-01],\n", " [-5.8141e-01, 1.1048e-01, -6.2374e-01, 5.0587e-01, 2.5336e-01,\n", " -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\n", " 4.2063e-01, -2.4931e-01, 3.9692e-01, -1.5809e-01, 3.2859e-01,\n", " -2.9822e-01, -1.9858e-02, 5.5853e-01, 7.8639e-02, 4.8963e-02,\n", " -2.2860e-01, 4.3759e-01, 2.3944e-01, 4.2009e-01, 1.3628e-01,\n", " 1.3792e-01, 1.2585e-01, 5.8101e-02, -5.4331e-01, -7.2530e-03,\n", " 8.0666e-02, -2.2224e-02, 6.3223e-01, 9.6790e-02, -4.9236e-01,\n", " -8.0862e-02, -2.6275e-01, 4.9909e-01, 7.1494e-01, 3.2871e-01,\n", " -7.4854e-01, 5.1980e-01, 1.2756e-01, 1.5925e-01, -1.1948e-01,\n", " -9.3237e-02, -3.0931e-01, -4.2692e-01, 2.9031e-01, 2.0414e-02,\n", " -3.2254e-01, -3.8900e-01, 5.7919e-01, -7.3999e-01, 1.2747e-01,\n", " -1.9365e-02, 4.8622e-01, 6.7972e-02, -6.2490e-01, -5.0826e-01,\n", " 2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\n", "\n", " [[ 3.6193e-01, 5.5425e-01, 5.4040e-01, -3.0972e-01, -1.3313e-01,\n", " -6.7800e-01, -4.0654e-01, 4.6998e-01, 1.0506e-02, -4.1220e-01,\n", " -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\n", " 7.3778e-02, 3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\n", " -4.0731e-01, -4.5251e-01, 2.7892e-01, 6.7418e-02, -1.8913e-01,\n", " -7.8529e-01, 7.4795e-02, 3.1780e-01, -5.6582e-02, -2.6386e-02,\n", " 5.4243e-01, -1.1841e-01, -3.2193e-01, 4.1168e-01, 6.0450e-01,\n", " -1.9057e-01, -1.6040e-01, 5.1988e-01, 2.5761e-01, -2.8185e-01,\n", " 1.6285e-01, -9.2601e-02, -2.9516e-01, 1.5801e-01, -3.4487e-01,\n", " -2.4956e-01, -4.2876e-01, 4.0097e-01, 7.6141e-02, 6.9152e-02,\n", " -1.9961e-01, 1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\n", " 7.0492e-01, 7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\n", " -7.6009e-01, 2.2291e-01, 6.5275e-01, -8.7851e-01],\n", " [-5.2118e-01, 5.0256e-01, -5.8167e-01, 1.1051e-01, 1.7868e-01,\n", " -4.7288e-01, -5.4152e-01, -7.2585e-01, 4.8291e-01, -3.2155e-01,\n", " 5.4432e-01, -3.7827e-01, 1.8096e-01, 5.5709e-01, 3.6829e-01,\n", " -4.2694e-01, -1.1016e-01, 3.8142e-01, 7.3456e-01, 1.3955e-01,\n", " -6.2690e-01, 4.6662e-01, 9.9586e-03, 4.4347e-01, -1.2285e-01,\n", " 2.4158e-01, -1.9818e-02, 3.2224e-02, -4.5263e-03, 9.7170e-02,\n", " -2.6790e-02, 3.4196e-01, 5.5448e-01, -2.6957e-01, -4.7481e-01,\n", " 2.5820e-01, -1.6188e-01, 1.8216e-01, 4.3528e-01, 4.1423e-02,\n", " 3.8483e-01, 2.9323e-01, -3.9919e-02, 2.4917e-02, -6.6221e-01,\n", " 4.4238e-02, -1.3296e-01, -5.2108e-01, 4.3413e-02, 2.4199e-01,\n", " 1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\n", " -2.2352e-01, -4.5641e-01, 6.2054e-04, -6.1068e-01, -2.4117e-02,\n", " -6.6375e-01, -2.8839e-01, 9.2161e-03, -1.7272e-01]],\n", "\n", " [[-1.2020e-01, 8.7811e-01, 6.2669e-01, -1.2818e-01, -1.8441e-01,\n", " -6.0717e-01, -7.9754e-01, 5.0410e-01, 4.0985e-01, -6.4446e-02,\n", " 1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01, 1.8644e-01,\n", " 4.3668e-01, 6.4194e-01, -4.0182e-01, 5.6554e-01, -5.9408e-01,\n", " -2.6671e-01, -4.0951e-01, -1.2089e-01, 1.1193e-01, 3.2120e-01,\n", " -6.5532e-01, 1.4062e-01, 2.8029e-01, 8.2498e-02, -1.1054e-01,\n", " 7.0519e-01, -6.9252e-01, -2.9735e-01, 3.8513e-01, 3.2410e-01,\n", " -7.1698e-03, -4.7982e-02, 6.5625e-01, -2.5359e-01, -3.1089e-01,\n", " 1.1211e-01, 2.1855e-01, -1.9636e-01, 1.6137e-01, -5.1002e-01,\n", " -3.1695e-01, -3.5947e-01, 3.2188e-01, 5.8348e-01, 3.8076e-01,\n", " -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01, 6.6140e-02,\n", " 6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01, 7.7110e-01,\n", " -7.8675e-01, -3.0830e-01, 2.2900e-01, -7.8719e-01],\n", " [-4.0451e-01, 8.7136e-01, 2.0729e-01, -1.9370e-02, -4.0648e-02,\n", " -4.8286e-01, -8.0573e-01, -2.4901e-01, 5.7310e-01, -5.8490e-02,\n", " 6.0313e-01, -8.4063e-01, -2.5698e-01, 3.3939e-01, 3.4959e-01,\n", " 3.7069e-01, 4.3289e-01, 9.9988e-02, 9.0438e-01, -3.6257e-01,\n", " -4.4119e-01, 4.2917e-01, -2.6990e-01, 4.2311e-01, 2.7980e-01,\n", " 1.9899e-01, 8.3125e-02, 1.3034e-01, 9.0406e-02, -2.5047e-02,\n", " 5.0993e-01, -6.0698e-01, 2.0975e-01, 2.8351e-01, -1.9944e-01,\n", " 2.5476e-01, -6.0071e-02, 4.2573e-01, 3.9131e-03, -9.8624e-02,\n", " 1.9323e-01, 5.3431e-01, -1.0846e-01, 8.3219e-02, -5.1852e-01,\n", " -1.0182e-01, 8.0068e-03, -9.8824e-02, 5.1580e-01, 4.8648e-01,\n", " -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\n", " 2.1330e-01, -6.1276e-01, 1.6057e-01, -6.3184e-01, 8.1466e-01,\n", " -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\n", "\n", " [[-4.0104e-01, 6.5426e-01, 7.7138e-01, 5.6748e-01, -4.7691e-01,\n", " -5.2622e-01, -8.1877e-01, -8.8119e-01, 6.0301e-01, -1.5291e-01,\n", " 4.0511e-01, -8.7244e-01, -3.8247e-01, 3.3862e-01, 1.2650e-01,\n", " 7.8641e-01, 6.1568e-01, 4.3722e-01, 7.2865e-01, -6.2760e-01,\n", " -9.0425e-01, -3.7571e-01, -8.7384e-02, 2.0393e-01, 1.7595e-01,\n", " -9.6426e-01, 6.6673e-01, 1.5598e-01, -2.9040e-01, 5.8154e-02,\n", " 8.7598e-01, -3.7915e-01, 3.1616e-01, -1.1750e-01, -5.0382e-01,\n", " 2.9781e-01, -8.1428e-01, 8.4853e-01, 6.1756e-01, -2.0564e-01,\n", " 1.9886e-02, -5.7905e-01, -8.4476e-01, 5.3807e-01, -3.7935e-01,\n", " -2.3593e-01, -5.5078e-01, 5.0617e-01, 7.8397e-01, 8.9721e-01,\n", " -5.4892e-01, 5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\n", " 9.1601e-01, -8.3470e-01, 3.3360e-01, 9.7394e-01, 6.7423e-01,\n", " -6.3171e-01, -5.4024e-02, 9.7447e-01, -9.5411e-01],\n", " [-5.6495e-01, 6.4817e-01, 6.1315e-01, 6.0038e-01, -4.1307e-01,\n", " -4.5898e-01, -8.2032e-01, -9.4217e-01, 6.8682e-01, -1.7263e-01,\n", " 6.3151e-01, -8.4917e-01, -2.9447e-01, 5.2271e-01, 2.1862e-01,\n", " 8.2034e-01, 4.7811e-01, 6.8474e-01, 9.2941e-01, -4.2096e-01,\n", " -9.4001e-01, 3.0864e-01, -1.8619e-01, 4.4706e-01, 1.4602e-01,\n", " -9.2286e-01, 6.6321e-01, 5.4442e-02, -3.0118e-01, 8.8396e-02,\n", " 8.6066e-01, -2.5356e-01, 5.8141e-01, -1.4684e-03, -6.8510e-01,\n", " 4.2343e-01, -8.3636e-01, 7.4505e-01, 6.3347e-01, -5.5176e-02,\n", " 8.0538e-02, -5.6538e-01, -8.6216e-01, 4.8400e-01, -3.9852e-01,\n", " -5.4495e-02, -3.7059e-01, 3.6633e-01, 7.5105e-01, 9.1164e-01,\n", " -5.1931e-01, 5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\n", " 8.3216e-01, -8.5892e-01, 4.5073e-01, 9.6752e-01, 7.1628e-01,\n", " -5.6690e-01, -2.2989e-01, 9.6539e-01, -9.2093e-01]]],\n", " grad_fn=)\n", "mask tensor([0., 1.])\n", "------------------------------\n" ] } ], "source": [ "embed_size, num_hiddens, num_layers = 64, 64, 1\n", "attention_size, drop_prob, lr, batch_size, num_epochs = 10, 0.5, 0.01, 2, 50\n", "encoder = Encoder(len(in_vocab), embed_size, num_hiddens, num_layers,\n", " drop_prob)\n", "decoder = Decoder(len(out_vocab), embed_size, num_hiddens, num_layers,\n", " attention_size, drop_prob)\n", "train(encoder, decoder, dataset, lr, batch_size, num_epochs)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 4 预测不定长的序列\n", "- 主流有3种方法来生成解码器在每个时间步的输出。这里我们实现最简单的贪婪搜索(greedy search)。" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "def translate(encoder, decoder, input_seq, max_seq_len):\n", " in_tokens = input_seq.split(' ')\n", " in_tokens += [EOS] + [PAD] * (max_seq_len - len(in_tokens) - 1)\n", " enc_input = torch.tensor([[in_vocab.stoi[tk] for tk in in_tokens]]) # batch=1\n", " enc_state = encoder.begin_state()\n", " enc_output, enc_state = encoder(enc_input, enc_state)\n", " dec_input = torch.tensor([out_vocab.stoi[BOS]])\n", " dec_state = decoder.begin_state(enc_state)\n", " output_tokens = []\n", " for _ in range(max_seq_len):\n", " dec_output, dec_state = decoder(dec_input, dec_state, enc_output)\n", " pred = dec_output.argmax(dim=1)\n", " pred_token = out_vocab.itos[int(pred.item())]\n", " if pred_token == EOS: # 当任一时间步搜索出EOS时,输出序列即完成\n", " break\n", " else:\n", " output_tokens.append(pred_token)\n", " dec_input = pred\n", " return output_tokens" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- 简单测试一下模型。输入法语句子“ils regardent.”,翻译后的英语句子应该是“they are watching.”。" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['they', 'are', 'watching', '.']" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "input_seq = 'ils regardent .'\n", "translate(encoder, decoder, input_seq, max_seq_len)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 5 评价翻译结果\n", "- bleu" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "def bleu(pred_tokens, label_tokens, k):\n", " len_pred, len_label = len(pred_tokens), len(label_tokens)\n", " score = math.exp(min(0, 1 - len_label / len_pred))\n", " for n in range(1, k + 1):\n", " num_matches, label_subs = 0, collections.defaultdict(int)\n", " for i in range(len_label - n + 1):\n", " label_subs[''.join(label_tokens[i: i + n])] += 1\n", " for i in range(len_pred - n + 1):\n", " if label_subs[''.join(pred_tokens[i: i + n])] > 0:\n", " num_matches += 1\n", " label_subs[''.join(pred_tokens[i: i + n])] -= 1\n", " score *= math.pow(num_matches / (len_pred - n + 1), math.pow(0.5, n))\n", " return score" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [], "source": [ "# 我爱你 +\n", "# 我爱你 + \n", "# 我爱你 + \n", "# 我爱你 + " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P012translate/torch_test.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import torch" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1., 2., 3., 4.],\n", " [4., 3., 2., 1.]])" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x = torch.tensor([[1,2,3,4],\n", " [4,3,2,1]], dtype=torch.float32)\n", "x" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([3, 0])" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x.argmax(dim=1)" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.float32" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x.dtype" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[0.0321, 0.0871, 0.2369, 0.6439],\n", " [0.6439, 0.2369, 0.0871, 0.0321]])" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x.softmax(dim=1)" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([3, 0])" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x.argmax(dim=1)" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [], "source": [ "#unsqueeze, cat, permute" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "torch.Size([1, 2, 4])" ] }, "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# squeeze 挤压\n", "x.unsqueeze(dim=0).size()" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-0.1562, -1.2787, 0.9936, -1.1843]])" ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y = torch.randn(1, 4)\n", "y" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[1., 2., 3., 4.],\n", " [4., 3., 2., 1.]])" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "x" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[ 1.0000, 2.0000, 3.0000, 4.0000],\n", " [ 4.0000, 3.0000, 2.0000, 1.0000],\n", " [-0.1562, -1.2787, 0.9936, -1.1843]])" ] }, "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.cat((x, y), dim=0) # 第一个参数是元组" ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[-0.8324, 1.8248, -0.8726, 0.3803]])" ] }, "execution_count": 39, "metadata": {}, "output_type": "execute_result" } ], "source": [ "y = torch.randn(1, 4)\n", "y" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "tensor([[ 1.0000, 2.0000, 3.0000, 4.0000],\n", " [ 4.0000, 3.0000, 2.0000, 1.0000],\n", " [-0.8324, 1.8248, -0.8726, 0.3803]])" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "torch.cat((x, y), dim=0) # 合并,其余维度相同" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: P013BertCode/bertTrainTest.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## bert源码测试" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import re\n", "import math\n", "import torch\n", "import numpy as np\n", "import torch.nn as nn\n", "import torch.optim as optim\n", "from random import *\n", "from torch.autograd import Variable" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# BERT参数\n", "maxlen = 30\n", "batch_size = 6\n", "max_pred = 5 # 句子中最大mask的字数\n", "n_layers = 6\n", "n_heads = 12\n", "d_model = 768\n", "d_ff = 768*4 # 4*d_model, FeedForward dimension\n", "d_k = d_v = 64 # dimension of K(=Q), V\n", "n_segments = 2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 数据预处理" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "text = (\n", " 'Hello, how are you? I am Romeo.\\n'\n", " 'Hello, Romeo My name is Juliet. Nice to meet you.\\n'\n", " 'Nice meet you too. How are you today?\\n'\n", " 'Great. My baseball team won the competition.\\n'\n", " 'Oh Congratulations, Juliet\\n'\n", " 'Thanks you Romeo'\n", ")\n", "\n", "# 过滤掉标点符号\n", "sentences = re.sub(\"[.,!?\\\\-]\", '', text.lower()).split('\\n') # filter '.', ',', '?', '!'\n", "# 词汇表\n", "word_list = list(set(\" \".join(sentences).split()))\n", "# 构建字典\n", "word_dict = {'[PAD]' : 0, '[CLS]' : 1, '[SEP]' : 2, '[MASK]' : 3} # 先加入四个特殊字符\n", "for i, w in enumerate(word_list):\n", " word_dict[w] = i + 4\n", "number_dict = {i: w for i, w in enumerate(word_dict)} # 将字符——>数字的字典反转为数字——>字典的编码\n", "vocab_size = len(word_dict)\n", "#将句子的字符列表转化为索引列表\n", "token_list = list()\n", "for sentence in sentences:\n", " arr = [word_dict[s] for s in sentence.split()]\n", " token_list.append(arr)\n", "\n", "#生成一个batch。\n", "# sample IsNext and NotNext to be same in small batch size\n", "def make_batch():\n", " batch = []\n", " positive = negative = 0\n", " while positive != batch_size / 2 or negative != batch_size / 2:\n", " tokens_a_index, tokens_b_index = randrange(len(sentences)), randrange(len(sentences)) # sample random index in sentences\n", " tokens_a, tokens_b = token_list[tokens_a_index], token_list[tokens_b_index]\n", " #输入:[CLS]句子1[SEP]句子2[SEP]\n", " input_ids = [word_dict['[CLS]']] + tokens_a + [word_dict['[SEP]']] + tokens_b + [word_dict['[SEP]']]\n", " #段ID\n", " segment_ids = [0] * (1 + len(tokens_a) + 1) + [1] * (len(tokens_b) + 1)\n", "\n", " # MASK LM\n", " n_pred = min(max_pred, max(1, int(round(len(input_ids) * 0.15)))) # 15 % of tokens in one sentence\n", " cand_maked_pos = [i for i, token in enumerate(input_ids)\n", " if token != word_dict['[CLS]'] and token != word_dict['[SEP]']]\n", " shuffle(cand_maked_pos) # 打乱顺序,然后去前几个词作为要预测的词\n", " masked_tokens, masked_pos = [], []\n", " for pos in cand_maked_pos[:n_pred]:\n", " masked_pos.append(pos)\n", " masked_tokens.append(input_ids[pos])\n", " if random() < 0.8: # 80%\n", " input_ids[pos] = word_dict['[MASK]'] # make mask\n", " elif random() < 0.5: # 10%\n", " index = randint(0, vocab_size - 1) # random index in vocabulary\n", " input_ids[pos] = word_dict[number_dict[index]] # replace\n", "\n", " # Zero Paddings\n", " n_pad = maxlen - len(input_ids)\n", " input_ids.extend([0] * n_pad)\n", " segment_ids.extend([0] * n_pad)\n", "\n", " # Zero Padding (100% - 15%) tokens\n", " # mask列表的填充\n", " if max_pred > n_pred:\n", " n_pad = max_pred - n_pred\n", " masked_tokens.extend([0] * n_pad)\n", " masked_pos.extend([0] * n_pad)\n", " #segment_ids=input_ids=[maxlen],masked_tokens=masked_pos=[max_pred]\n", " if tokens_a_index + 1 == tokens_b_index and positive < batch_size / 2:\n", " batch.append([input_ids, segment_ids, masked_tokens, masked_pos, True]) # IsNext:句子b是句子a的下一个句子\n", " positive += 1\n", " elif tokens_a_index + 1 != tokens_b_index and negative < batch_size / 2:\n", " batch.append([input_ids, segment_ids, masked_tokens, masked_pos, False]) # NotNext:句子b不是句子a的下一个句子\n", " negative += 1\n", " return batch" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "# 将填充位置mask掉\n", "def get_attn_pad_mask(seq_q, seq_k):\n", " #seq_q=seq_k=[bact_size,maxlen]\n", " batch_size, len_q = seq_q.size()\n", " batch_size, len_k = seq_k.size()\n", " # eq(zero) is PAD token\n", " pad_attn_mask = seq_k.data.eq(0).unsqueeze(1) # batch_size x 1 x len_k(=len_q), one is masking\n", " return pad_attn_mask.expand(batch_size, len_q, len_k) # batch_size x len_q x len_k\n", "\n", "\n", "def gelu(x):\n", " \"Implementation of the gelu activation function by Hugging Face\"\n", " return x * 0.5 * (1.0 + torch.erf(x / math.sqrt(2.0)))\n", "\n", "# Embeding类\n", "class Embedding(nn.Module):\n", " def __init__(self):\n", " super(Embedding, self).__init__()\n", " self.tok_embed = nn.Embedding(vocab_size, d_model) # token embedding\n", " self.pos_embed = nn.Embedding(maxlen, d_model) # position embedding\n", " self.seg_embed = nn.Embedding(n_segments, d_model) # segment(token type) embedding\n", " self.norm = nn.LayerNorm(d_model)\n", "\n", " def forward(self, x, seg):\n", " #x=seg=[bact_size,maxlen]\n", " seq_len = x.size(1)\n", " pos = torch.arange(seq_len, dtype=torch.long)\n", " pos = pos.unsqueeze(0).expand_as(x) # (seq_len,) -> (batch_size, seq_len)\n", " print(\"POS Embedding:\", self.pos_embed(pos).size())\n", " print(\"SEG Embedding:\", self.seg_embed(seg).size())\n", " embedding = self.tok_embed(x) + self.pos_embed(pos) + self.seg_embed(seg)\n", " return self.norm(embedding)\n", "\n", " \n", "class ScaledDotProductAttention(nn.Module):\n", " def __init__(self):\n", " super(ScaledDotProductAttention, self).__init__()\n", "\n", " def forward(self, Q, K, V, attn_mask):\n", " scores = torch.matmul(Q, K.transpose(-1, -2)) / np.sqrt(d_k) # scores : [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\n", " scores.masked_fill_(attn_mask, -1e9) # 将mask矩阵中为1的位置赋值为负无穷.\n", " attn = nn.Softmax(dim=-1)(scores) # [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\n", " context = torch.matmul(attn, V) # [batch_size x n_heads x len_q x d_v]\n", " return context, attn\n", " \n", " \n", "# 多头Attention子层\n", "class MultiHeadAttention(nn.Module):\n", " def __init__(self):\n", " super(MultiHeadAttention, self).__init__()\n", " self.W_Q = nn.Linear(d_model, d_k * n_heads)\n", " self.W_K = nn.Linear(d_model, d_k * n_heads)\n", " self.W_V = nn.Linear(d_model, d_v * n_heads)\n", " def forward(self, Q, K, V, attn_mask):\n", " # q: [batch_size x len_q x d_model], k: [batch_size x len_k x d_model], v: [batch_size x len_k x d_model]\n", " # attn_mask=[batch_size x maxlen x maxlen]\n", " residual, batch_size = Q, Q.size(0)\n", " # (B, S, D) -proj-> (B, S, D) -split-> (B, S, H, W) -trans-> (B, H, S, W)\n", " q_s = self.W_Q(Q).view(batch_size, -1, n_heads, d_k).transpose(1,2) # q_s: [batch_size x n_heads x len_q x d_k]\n", " k_s = self.W_K(K).view(batch_size, -1, n_heads, d_k).transpose(1,2) # k_s: [batch_size x n_heads x len_k x d_k]\n", " v_s = self.W_V(V).view(batch_size, -1, n_heads, d_v).transpose(1,2) # v_s: [batch_size x n_heads x len_k x d_v]\n", "\n", " attn_mask = attn_mask.unsqueeze(1).repeat(1, n_heads, 1, 1) # attn_mask : [batch_size x n_heads x len_q x len_k]\n", "\n", " # context: [batch_size x n_heads x len_q x d_v], attn: [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\n", " context, attn = ScaledDotProductAttention()(q_s, k_s, v_s, attn_mask)\n", " context = context.transpose(1, 2).contiguous().view(batch_size, -1, n_heads * d_v) # context: [batch_size x len_q x n_heads * d_v]\n", " output = nn.Linear(n_heads * d_v, d_model)(context) # batch_size x len_q x d_model]\n", " return nn.LayerNorm(d_model)(output + residual), attn # output: [batch_size x len_q x d_model]\n", "\n", "\n", "# FNN子层\n", "class PoswiseFeedForwardNet(nn.Module):\n", " def __init__(self):\n", " super(PoswiseFeedForwardNet, self).__init__()\n", " self.fc1 = nn.Linear(d_model, d_ff)\n", " self.fc2 = nn.Linear(d_ff, d_model)\n", "\n", " def forward(self, x):\n", " # (batch_size, len_seq, d_model) -> (batch_size, len_seq, d_ff) -> (batch_size, len_seq, d_model)\n", " return self.fc2(gelu(self.fc1(x)))\n", "\n", " \n", "# Encoder的每层\n", "class EncoderLayer(nn.Module):\n", " def __init__(self):\n", " super(EncoderLayer, self).__init__()\n", " self.enc_self_attn = MultiHeadAttention()\n", " self.pos_ffn = PoswiseFeedForwardNet()\n", " #enc_inputs = [bact_size,maxlen,d_model] enc_self_attn_mask=[batch_size x maxlen x maxlen]\n", " def forward(self, enc_inputs, enc_self_attn_mask):\n", " enc_outputs, attn = self.enc_self_attn(enc_inputs, enc_inputs, enc_inputs, enc_self_attn_mask) # enc_inputs to same Q,K,V\n", " enc_outputs = self.pos_ffn(enc_outputs) # enc_outputs: [batch_size x len_q x d_model]\n", " return enc_outputs, attn\n", "\n", " \n", "class BERT(nn.Module):\n", " def __init__(self):\n", " super(BERT, self).__init__()\n", " self.embedding = Embedding()\n", " self.layers = nn.ModuleList([EncoderLayer() for _ in range(n_layers)])\n", " self.fc = nn.Linear(d_model, d_model)\n", " self.activ1 = nn.Tanh()\n", " self.linear = nn.Linear(d_model, d_model)\n", " self.activ2 = gelu\n", " self.norm = nn.LayerNorm(d_model)\n", " self.classifier = nn.Linear(d_model, 2)\n", " # decoder is shared with embedding layer softmax层与embedding层参数共享。\n", " embed_weight = self.embedding.tok_embed.weight\n", " n_vocab, n_dim = embed_weight.size()\n", " self.decoder = nn.Linear(n_dim, n_vocab, bias=False)\n", " self.decoder.weight = embed_weight\n", " self.decoder_bias = nn.Parameter(torch.zeros(n_vocab))\n", "\n", " def forward(self, input_ids, segment_ids, masked_pos):\n", " # input_ids=segment_ids=[bact_size,maxlen]\n", " # masked_pos=[batch_size,max_pred]\n", " # output=[bact_size,maxlen,d_model]\n", " output = self.embedding(input_ids, segment_ids)#tok_embed+pos_embed+.seg_embed+norm\n", " # enc_self_attn_mask=batch_size x maxlen x maxlen\n", " enc_self_attn_mask = get_attn_pad_mask(input_ids, input_ids)\n", " for layer in self.layers:\n", " output, enc_self_attn = layer(output, enc_self_attn_mask)\n", " # output : [batch_size, len, d_model], attn : [batch_size, n_heads, d_mode, d_model]\n", " # it will be decided by first token(CLS)\n", " h_pooled = self.activ1(self.fc(output[:, 0])) # [batch_size, d_model] 取出句子开始标志CLS最后隐藏层输出用来预测两个句子是否为前后关系\n", " logits_clsf = self.classifier(h_pooled) # [batch_size, 2] #前后句子的预测,是个二分类\n", "\n", " masked_pos = masked_pos[:, :, None].expand(-1, -1, output.size(-1)) # [batch_size, max_pred, d_model]\n", " # get masked position from final output of transformer.\n", " # 取出需要预测词的隐藏层状态向量\n", " h_masked = torch.gather(output, 1, masked_pos) # masking position [batch_size, max_pred, d_model]\n", " h_masked = self.norm(self.activ2(self.linear(h_masked)))\n", " logits_lm = self.decoder(h_masked) + self.decoder_bias # [batch_size, max_pred, n_vocab]\n", "\n", " return logits_lm, logits_clsf" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "model = BERT()\n", "criterion = nn.CrossEntropyLoss() # 交叉熵loss函数\n", "optimizer = optim.Adam(model.parameters(), lr=0.001) # 优化器" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "input_ids: tensor([[ 1, 6, 11, 27, 9, 15, 12, 27, 13, 2, 3, 27, 25, 2, 0, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n", " [ 1, 3, 15, 12, 27, 21, 28, 3, 2, 14, 20, 10, 2, 0, 0, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n", " [ 1, 19, 15, 12, 27, 21, 3, 25, 2, 3, 20, 10, 2, 0, 0, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n", " [ 1, 6, 11, 3, 9, 15, 12, 27, 3, 2, 23, 3, 4, 8, 24, 22, 5, 2,\n", " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n", " [ 1, 19, 25, 17, 18, 7, 10, 6, 16, 11, 27, 2, 6, 11, 27, 9, 15, 12,\n", " 3, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n", " [ 1, 19, 3, 17, 18, 3, 10, 6, 16, 11, 27, 2, 6, 3, 27, 9, 15, 12,\n", " 27, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0]])\n", "segment_ids: tensor([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0],\n", " [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0],\n", " [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0],\n", " [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0],\n", " [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0],\n", " [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0,\n", " 0, 0, 0, 0, 0, 0]])\n", "masked_pos: tensor([[10, 4, 0, 0, 0],\n", " [ 7, 1, 0, 0, 0],\n", " [ 9, 6, 0, 0, 0],\n", " [11, 8, 3, 0, 0],\n", " [ 2, 18, 15, 0, 0],\n", " [ 5, 13, 2, 0, 0]])\n" ] } ], "source": [ "batch = make_batch()# 生成一个batch_data\n", "# input_ids=segment_ids=[bact_size,maxlen]\n", "# masked_tokens=masked_pos=[batch_size,max_pred]\n", "# isNext=[batch_size]\n", "input_ids, segment_ids, masked_tokens, masked_pos, isNext = zip(*batch)\n", "input_ids, segment_ids, masked_tokens, masked_pos, isNext = \\\n", " torch.LongTensor(input_ids), torch.LongTensor(segment_ids), torch.LongTensor(masked_tokens), \\\n", " torch.LongTensor(masked_pos), torch.LongTensor(isNext)\n", "\n", "print(\"input_ids:\", input_ids)\n", "print(\"segment_ids:\", segment_ids)\n", "print(\"masked_pos:\", masked_pos)" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0010 cost = 42.226273\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0020 cost = 24.461336\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0030 cost = 18.636894\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0040 cost = 7.536493\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0050 cost = 4.593762\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0060 cost = 4.424582\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0070 cost = 3.395122\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0080 cost = 3.978588\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0090 cost = 3.647416\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "POS Embedding: torch.Size([6, 30, 768])\n", "SEG Embedding: torch.Size([6, 30, 768])\n", "Epoch: 0100 cost = 4.097142\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Hello, how are you? I am Romeo.\n", "Hello, Romeo My name is Juliet. Nice to meet you.\n", "Nice meet you too. How are you today?\n", "Great. My baseball team won the competition.\n", "Oh Congratulations, Juliet\n", "Thanks you Romeo\n", "['[CLS]', 'nice', 'meet', 'you', 'too', 'how', 'are', 'you', 'today', '[SEP]', '[MASK]', 'you', 'romeo', '[SEP]']\n", "POS Embedding: torch.Size([1, 30, 768])\n", "SEG Embedding: torch.Size([1, 30, 768])\n", "masked tokens list : [26, 9]\n", "predict masked tokens list : [9]\n", "isNext : False\n", "predict isNext : True\n" ] } ], "source": [ "for epoch in range(100):\n", " optimizer.zero_grad()\n", " # logits_lm=[batch_size, max_pred, n_vocab]\n", " # logits_clsf=[batch_size, 2]\n", " logits_lm, logits_clsf = model(input_ids, segment_ids, masked_pos)\n", " loss_lm = criterion(logits_lm.transpose(1, 2), masked_tokens) # for masked LM\n", " loss_lm = (loss_lm.float()).mean()\n", " loss_clsf = criterion(logits_clsf, isNext) # for sentence classification\n", " loss = loss_lm + loss_clsf\n", " if (epoch + 1) % 10 == 0:\n", " print('Epoch:', '%04d' % (epoch + 1), 'cost =', '{:.6f}'.format(loss))\n", " loss.backward()\n", " optimizer.step()\n", "\n", "# Predict mask tokens and isNext\n", "input_ids, segment_ids, masked_tokens, masked_pos, isNext = batch[0]\n", "print(text)\n", "print([number_dict[w] for w in input_ids if number_dict[w] != '[PAD]'])\n", "\n", "logits_lm, logits_clsf = model(torch.LongTensor([input_ids]), \\\n", " torch.LongTensor([segment_ids]), torch.LongTensor([masked_pos]))\n", "\n", "logits_lm = logits_lm.data.max(2)[1][0].data.numpy() # 最大值索引[max_pred]\n", "print('masked tokens list : ',[pos for pos in masked_tokens if pos != 0])\n", "print('predict masked tokens list : ',[pos for pos in logits_lm if pos != 0])\n", "\n", "logits_clsf = logits_clsf.data.max(1)[1].data.numpy()[0]\n", "print('isNext : ', True if isNext else False)\n", "print('predict isNext : ',True if logits_clsf else False)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 4 } ================================================ FILE: P014Aho-Corasick-algorithm/AC.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting pyahocorasick\n", " Downloading pyahocorasick-1.4.2.tar.gz (321 kB)\n", "\u001b[K |████████████████████████████████| 321 kB 62 kB/s eta 0:00:011 |██ | 20 kB 257 kB/s eta 0:00:02 |█████████████████████████▌ | 256 kB 132 kB/s eta 0:00:01\n", "\u001b[?25hBuilding wheels for collected packages: pyahocorasick\n", " Building wheel for pyahocorasick (setup.py) ... \u001b[?25ldone\n", "\u001b[?25h Created wheel for pyahocorasick: filename=pyahocorasick-1.4.2-cp36-cp36m-linux_x86_64.whl size=92655 sha256=8c217f2ae8126f412e2d2acf33c9205fa94c6d4109454a990e243e4de574814d\n", " Stored in directory: /home/dc/.cache/pip/wheels/13/37/bd/c904d816433e1f65c97ca85c56823f1a7cb0dcaf3af2b17798\n", "Successfully built pyahocorasick\n", "Installing collected packages: pyahocorasick\n", "Successfully installed pyahocorasick-1.4.2\n", "\u001b[33mWARNING: You are using pip version 20.2.3; however, version 21.0.1 is available.\n", "You should consider upgrading via the '/usr/local/anaconda2/envs/pt-tf-env/bin/python -m pip install --upgrade pip' command.\u001b[0m\n" ] } ], "source": [ "! pip install pyahocorasick" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import ahocorasick\n", "import time" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ " \n", " \n", "class AhocorasickNer:\n", " def __init__(self, user_dict_path):\n", " self.user_dict_path = user_dict_path\n", " self.actree = ahocorasick.Automaton()\n", " \n", " \n", " def add_keywords(self):\n", " flag = 0\n", " with open(self.user_dict_path, \"r\", encoding=\"utf-8\") as file:\n", " for line in file:\n", " word, flag = line.strip(), flag + 1\n", " self.actree.add_word(word, (flag, word))\n", " self.actree.make_automaton()\n", " \n", " \n", " def get_ner_results(self, sentence):\n", " ner_results = []\n", " # i的形式为(index1,(index2,word))\n", " # index1: 提取后的结果在sentence中的末尾索引\n", " # index2: 提取后的结果在self.actree中的索引\n", " for i in self.actree.iter(sentence):\n", " ner_results.append((i[1], i[0] + 1 - len(i[1][1]), i[0] + 1))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "class AcTree(object):" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "ac = ahocorasick.Automaton()" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "True" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ac.add_word(\"喜马拉雅APP\", (1, \"喜马拉雅APP\"))" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "True" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ac.add_word(\"喜马拉雅山\", (0, \"喜马拉雅山\"))" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "True" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ac.add_word(\"喜马拉雅\", (0, \"喜马拉雅\"))" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "True" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ac.add_word(\"毛主席\", (1, \"毛主席\"))" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "False" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ac.add_word(\"毛主席\", (1.2, \"毛主席\"))" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "s = \"毛主席在喜马拉雅山上收听喜马拉雅APP, 喜马拉雅山真美丽啊\"" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [], "source": [ "ac.make_automaton()" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "毛主席 (0, 2) 1.2\n", "喜马拉雅 (4, 7) 0\n", "喜马拉雅山 (4, 8) 0\n", "喜马拉雅 (12, 15) 0\n", "喜马拉雅APP (12, 18) 1\n", "喜马拉雅 (21, 24) 0\n", "喜马拉雅山 (21, 25) 0\n" ] } ], "source": [ "for i in ac.iter(s):\n", " word = i[-1][-1]\n", " start_idx = i[0]-len(word) + 1\n", " end_idx = i[0]\n", " weights = i[-1][0]\n", " print(word, (start_idx, end_idx), weights)\n", " #print(i)\n", "# print(s[i[0]-i[0]])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "-词-权重-类别\n", "1 如何解决一个词对应的类别很多" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# \n", "- 短文本处理-娇喘\n", "- 文本多分类-AC自动机\n", "- 模型多分类\n", "- 侵权- 向量搜索\n", "- 如何解决少数民族\n", "- " ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import gensim" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "?gensim.models.Word2Vec.load" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: named_entity_recognition/.gitignore ================================================ __pycache__ models/__pycache__ ================================================ FILE: named_entity_recognition/README.md ================================================ # 中文命名实体识别 ## 数据集 本项目尝试使用了多种不同的模型(包括HMM,CRF,Bi-LSTM,Bi-LSTM+CRF)来解决中文命名实体识别问题,数据集用的是论文ACL 2018[Chinese NER using Lattice LSTM](https://github.com/jiesutd/LatticeLSTM)中收集的简历数据,数据的格式如下,它的每一行由一个字及其对应的标注组成,标注集采用BIOES,句子之间用一个空行隔开。 ``` 美 B-LOC 国 E-LOC 的 O 华 B-PER 莱 I-PER 士 E-PER 我 O 跟 O 他 O 谈 O 笑 O 风 O 生 O ``` 该数据集就位于项目目录下的`ResumeNER`文件夹里。 ## 运行结果 下面是四种不同的模型以及这Ensemble这四个模型预测结果的准确率(取最好): | | HMM | CRF | BiLSTM | BiLSTM+CRF | Ensemble | | ---- | ------ | ------ | ------ | ---------- | -------- | | 召回率 | 91.22% | 95.43% | 95.32% | 95.72% | 95.65% | | 准确率 | 91.49% | 95.43% | 95.37% | 95.74% | 95.69% | | F1分数 | 91.30% | 95.42% | 95.32% | 95.70% | 95.64% | 最后一列Ensemble是将这四个模型的预测结果结合起来,使用“投票表决”的方法得出最后的预测结果。 (Ensemble的三个指标均不如BiLSTM+CRF,可以认为在Ensemble过程中,是其他三个模型拖累了BiLSTM+CRF) 具体的输出可以查看`output.txt`文件。 ## 快速开始 首先安装依赖项: ``` pip3 install -r requirement.txt ``` 安装完毕之后,直接使用 ``` python3 main.py ``` 即可训练以及评估模型,评估模型将会打印出模型的精确率、召回率、F1分数值以及混淆矩阵,如果想要修改相关模型参数或者是训练参数,可以在`./models/config.py`文件中进行设置。 训练完毕之后,如果想要加载并评估模型,运行如下命令: ```shell python3 test.py ``` 下面是这些模型的简单介绍(github网页对数学公式的支持不太好,涉及公式的部分无法正常显示,[我的博客](https://zhuanlan.zhihu.com/p/61227299) 有对这些模型以及代码更加详细的介绍): ## 隐马尔可夫模型(Hidden Markov Model,HMM) 隐马尔可夫模型描述由一个隐藏的马尔科夫链随机生成不可观测的状态随机序列,再由各个状态生成一个观测而产生观测随机序列的过程(李航 统计学习方法)。隐马尔可夫模型由初始状态分布,状态转移概率矩阵以及观测概率矩阵所确定。 命名实体识别本质上可以看成是一种序列标注问题,在使用HMM解决命名实体识别这种序列标注问题的时候,我们所能观测到的是字组成的序列(观测序列),观测不到的是每个字对应的标注(状态序列)。 **初始状态分布**就是每一个标注的初始化概率,**状态转移概率矩阵**就是由某一个标注转移到下一个标注的概率(就是若前一个词的标注为$tag_i$ ,则下一个词的标注为$tag_j$的概率为 $M_{ij}$),**观测概率矩阵**就是指在 某个标注下,生成某个词的概率。 HMM模型的训练过程对应隐马尔可夫模型的学习问题(李航 统计学习方法), 实际上就是根据训练数据根据最大似然的方法估计模型的三个要素,即上文提到的初始状态分布、状态转移概率矩阵以及观测概率矩阵,模型训练完毕之后,利用模型进行解码,即对给定观测序列,求它对应的状态序列,这里就是对给定的句子,求句子中的每个字对应的标注,针对这个解码问题,我们使用的是维特比(viterbi)算法。 具体的细节可以查看 `models/hmm.py`文件。 ## 条件随机场(Conditional Random Field, CRF) HMM模型中存在两个假设,一是输出观察值之间严格独立,二是状态转移过程中当前状态只与前一状态有关。也就是说,在命名实体识别的场景下,HMM认为观测到的句子中的每个字都是相互独立的,而且当前时刻的标注只与前一时刻的标注相关。但实际上,命名实体识别往往需要更多的特征,比如词性,词的上下文等等,同时当前时刻的标注应该与前一时刻以及后一时刻的标注都相关联。由于这两个假设的存在,显然HMM模型在解决命名实体识别的问题上是存在缺陷的。 条件随机场通过引入自定义的特征函数,不仅可以表达观测之间的依赖,还可表示当前观测与前后多个状态之间的复杂依赖,可以有效克服HMM模型面临的问题。 为了建立一个条件随机场,我们首先要定义一个特征函数集,该函数集内的每个特征函数都以标注序列作为输入,提取的特征作为输出。假设该函数集为: ![函数集](./imgs/func_set.png) 其中$x=(x_1, ..., x_m)$表示观测序列,$s = (s_1, ...., s_m)$表示状态序列。然后,条件随机场使用对数线性模型来计算给定观测序列下状态序列的条件概率: ![log_linear_crf](./imgs/log_linear_crf.png) 其中$s^{'}$是是所有可能的状态序列,$w$是条件随机场模型的参数,可以把它看成是每个特征函数的权重。CRF模型的训练其实就是对参数$w$的估计。假设我们有$n$个已经标注好的数据$\{(x^i, s^i)\}_{i=1}^n$, 则其对数似然函数的正则化形式如下: ![log_likehood_crf](./imgs/log_likehood_crf.png) 那么,最优参数$w^*$就是: ![w_crf](./imgs/w_crf.png) 模型训练结束之后,对给定的观测序列$x$,它对应的最优状态序列应该是: ![decode_crf](./imgs/decode_crf.png) 解码的时候与HMM类似,也可以采用维特比算法。 具体的细节可以查看 `models/crf.py`文件。 ## Bi-LSTM 除了以上两种基于概率图模型的方法,LSTM也常常被用来解决序列标注问题。和HMM、CRF不同的是,LSTM是依靠神经网络超强的非线性拟合能力,在训练时将样本通过高维空间中的复杂非线性变换,学习到从样本到标注的函数,之后使用这个函数为指定的样本预测每个token的标注。下方就是使用双向LSTM(双向能够更好的捕捉序列之间的依赖关系)进行序列标注的示意图: ![biLSTM_NER](./imgs/biLSTM_NER.png) 基于双向LSTM的序列标注模型实现可以查看`models/bilstm.py`文件。 ## Bi-LSTM+CRF LSTM的优点是能够通过双向的设置学习到观测序列(输入的字)之间的依赖,在训练过程中,LSTM能够根据目标(比如识别实体)自动提取观测序列的特征,但是缺点是无法学习到状态序列(输出的标注)之间的关系,要知道,在命名实体识别任务中,标注之间是有一定的关系的,比如B类标注(表示某实体的开头)后面不会再接一个B类标注,所以LSTM在解决NER这类序列标注任务时,虽然可以省去很繁杂的特征工程,但是也存在无法学习到标注上下文的缺点。 相反,CRF的优点就是能对隐含状态建模,学习状态序列的特点,但它的缺点是需要手动提取序列特征。所以一般的做法是,在LSTM后面再加一层CRF,以获得两者的优点。 具体的实现请查看`models/bilstm_crf.py` ## 代码中一些需要注意的点 * HMM模型中要处理OOV(Out of vocabulary)的问题,就是测试集里面有些字是不在训练集里面的, 这个时候通过观测概率矩阵是无法查询到OOV对应的各种状态的概率的,处理这个问题可以将OOV对应的状态的概率分布设为均匀分布。 * HMM的三个参数(即状态转移概率矩阵、观测概率矩阵以及初始状态概率矩阵)在使用监督学习方法进行估计的过程中,如果有些项从未出现,那么该项对应的位置就为0,而在使用维特比算法进行解码的时候,计算过程需要将这些值相乘,那么如果其中有为0的项,那么整条路径的概率也变成0了。此外,解码过程中多个小概率相乘很可能出现下溢的情况,为了解决这两个问题,我们给那些从未出现过的项赋予一个很小的数(如0.00000001),同时在进行解码的时候将模型的三个参数都映射到对数空间,这样既可以避免下溢,又可以简化乘法运算。 * CRF中将训练数据以及测试数据作为模型的输入之前,都需要先用特征函数提取特征! * Bi-LSTM+CRF模型可以参考:[Neural Architectures for Named Entity Recognition](https://arxiv.org/pdf/1603.01360.pdf),可以重点看一下里面的损失函数的定义。代码里面关于损失函数的计算采用的是类似动态规划的方法,不是很好理解,这里推荐看一下以下这些博客: * [CRF Layer on the Top of BiLSTM - 5](https://createmomo.github.io/2017/11/11/CRF-Layer-on-the-Top-of-BiLSTM-5/) * [Bi-LSTM-CRF for Sequence Labeling PENG](https://zhuanlan.zhihu.com/p/27338210) * [Pytorch Bi-LSTM + CRF 代码详解](https://blog.csdn.net/cuihuijun1hao/article/details/79405740) ## TODO * BI-LSTM+CRF 比起Bi-LSTM效果并没有好很多,一种可能的解释是: - 数据集太小,不足够让模型学习到转移矩阵(后续尝试在更大的数据集上测试一下结果) * 尝试更加复杂的模型,参考论文[Chinese NER using Lattice LSTM](https://github.com/jiesutd/LatticeLSTM) * 更详细的评估结果:打印混淆矩阵,同时输出每种类别的召回率、准确率、F1指标,便于分析。 ================================================ FILE: named_entity_recognition/ResumeNER/dev.char.bmes ================================================ 吴 B-NAME 重 M-NAME 阳 E-NAME , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 工 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 特 O 殊 O 津 O 贴 O , O 历 O 任 O 邮 B-ORG 电 M-ORG 部 M-ORG 侯 M-ORG 马 M-ORG 电 M-ORG 缆 M-ORG 厂 E-ORG 仪 B-TITLE 表 M-TITLE 试 M-TITLE 制 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 光 B-TITLE 缆 M-TITLE 分 M-TITLE 厂 M-TITLE 副 M-TITLE 厂 M-TITLE 长 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 所 M-TITLE 副 M-TITLE 所 M-TITLE 长 E-TITLE , O 获 O 得 O 过 O 山 O 西 O 省 O 科 O 技 O 先 O 进 O 工 O 作 O 者 O 、 O 邮 O 电 O 部 O 成 O 绩 O 优 O 异 O 高 O 级 O 工 O 程 O 师 O 等 O 多 O 种 O 荣 O 誉 O 称 O 号 O 。 O 历 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 至 O 今 O , O 受 O 聘 O 为 O 公 B-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 资 M-TITLE 深 M-TITLE 技 M-TITLE 术 M-TITLE 顾 M-TITLE 问 E-TITLE ; O 兼 O 任 O 中 B-ORG 国 M-ORG 科 M-ORG 技 M-ORG 会 M-ORG 堂 E-ORG 专 B-TITLE 家 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 香 B-ORG 港 M-ORG 新 M-ORG 时 M-ORG 代 M-ORG 国 M-ORG 际 M-ORG 文 M-ORG 化 M-ORG 出 M-ORG 版 M-ORG 社 E-ORG 科 B-TITLE 技 M-TITLE 专 M-TITLE 家 M-TITLE 顾 M-TITLE 问 E-TITLE 。 O 谢 B-NAME 卫 M-NAME 东 E-NAME 先 O 生 O : O 1 O 9 O 6 O 6 O 年 O 1 O 2 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 国 B-TITLE 家 M-TITLE 注 M-TITLE 册 M-TITLE 造 M-TITLE 价 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 5 O 月 O 至 O 今 O 在 O 厦 B-ORG 门 M-ORG 泛 M-ORG 华 M-ORG 集 M-ORG 团 E-ORG 工 O 作 O , O 历 O 任 O 集 B-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 集 B-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O 任 O 云 B-ORG 南 M-ORG 罗 M-ORG 平 M-ORG 锌 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 喻 B-NAME 晓 M-NAME 春 E-NAME 先 O 生 O : O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 高 B-EDU 中 M-EDU 学 M-EDU 历 E-EDU , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 1 O 9 O 8 O 1 O 年 O 至 O 1 O 9 O 8 O 3 O 年 O , O 在 O 兰 B-ORG 州 M-ORG 军 M-ORG 区 M-ORG 8 M-ORG 4 M-ORG 5 M-ORG 6 M-ORG 4 M-ORG 部 M-ORG 队 E-ORG 工 O 作 O ; O 1 O 9 O 8 O 4 O 年 O 至 O 1 O 9 O 8 O 6 O 年 O , O 在 O 国 B-ORG 营 M-ORG 1 M-ORG 3 M-ORG 5 M-ORG 工 M-ORG 厂 E-ORG 工 O 作 O ; O 1 O 9 O 8 O 6 O 年 O 至 O 1 O 9 O 9 O 7 O 年 O , O 在 O 甘 B-ORG 肃 M-ORG 省 M-ORG 畜 M-ORG 产 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O ; O 1 O 9 O 9 O 8 O 年 O 至 O 今 O , O 在 O 上 B-ORG 海 M-ORG 百 M-ORG 润 M-ORG 香 M-ORG 精 M-ORG 香 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O ; O 现 O 任 O 上 B-ORG 海 M-ORG 百 M-ORG 润 M-ORG 香 M-ORG 精 M-ORG 香 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 烟 B-TITLE 草 M-TITLE 销 M-TITLE 售 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 赵 B-NAME 伟 E-NAME 先 O 生 O , O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 兰 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 系 E-ORG 硕 B-EDU 士 E-EDU 毕 O 业 O , O 浙 B-ORG 江 M-ORG 大 M-ORG 学 E-ORG 经 B-TITLE 济 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 历 O 任 O 甘 B-ORG 肃 M-ORG 省 M-ORG 建 M-ORG 工 M-ORG 局 E-ORG 工 B-TITLE 人 E-TITLE , O 兰 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 系 E-ORG 讲 B-TITLE 师 E-TITLE 、 O 副 B-TITLE 教 M-TITLE 授 E-TITLE , O 杭 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 系 E-ORG 教 B-TITLE 授 E-TITLE , O 瑞 B-ORG 士 M-ORG 联 M-ORG 邦 M-ORG 理 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 及 O 德 B-ORG 国 M-ORG 明 M-ORG 思 M-ORG 特 M-ORG 大 M-ORG 学 E-ORG 客 B-TITLE 座 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 任 O 浙 B-ORG 江 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE 、 O 国 B-ORG 际 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE , O 兼 O 任 O 浙 B-ORG 江 M-ORG 省 M-ORG 委 M-ORG 政 M-ORG 策 M-ORG 研 M-ORG 究 M-ORG 室 E-ORG 特 B-TITLE 邀 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 经 M-ORG 济 M-ORG 合 M-ORG 作 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 世 M-ORG 界 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 欧 M-ORG 洲 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 经 M-ORG 济 M-ORG 史 M-ORG 学 M-ORG 会 M-ORG 外 M-ORG 国 M-ORG 经 M-ORG 济 M-ORG 史 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 国 B-ORG 家 M-ORG 留 M-ORG 学 M-ORG 基 M-ORG 金 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 评 B-TITLE 审 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 浙 B-ORG 江 M-ORG 省 M-ORG 社 M-ORG 科 M-ORG 规 M-ORG 划 M-ORG 学 M-ORG 科 M-ORG 组 E-ORG 专 B-TITLE 家 E-TITLE 。 O 金 B-NAME 美 M-NAME 欧 E-NAME 女 O 士 O , O 1 O 9 O 8 O 4 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 温 B-ORG 州 M-ORG 金 M-ORG 龙 M-ORG 船 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 至 O 今 O 任 O 金 B-ORG 龙 M-ORG 机 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 林 B-NAME 金 M-NAME 和 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 1 O 0 O 月 O 进 O 入 O 江 B-ORG 苏 M-ORG 东 M-ORG 华 M-ORG 测 M-ORG 试 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 斐 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 税 M-TITLE 务 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 至 O 1 O 9 O 9 O 7 O 年 O , O 在 O 山 B-ORG 东 M-ORG 省 M-ORG 地 M-ORG 矿 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 从 O 事 O 会 B-TITLE 计 E-TITLE 工 O 作 O ; O 1 O 9 O 9 O 7 O 年 O 至 O 2 O 0 O 0 O 4 O 年 O 3 O 月 O , O 在 O 山 B-ORG 东 M-ORG 正 M-ORG 源 M-ORG 和 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 和 O 深 B-ORG 圳 M-ORG 天 M-ORG 健 M-ORG 信 M-ORG 德 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 担 O 任 O 审 B-TITLE 计 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 3 O 月 O , O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 天 M-ORG 音 M-ORG 通 M-ORG 信 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 3 O 月 O 正 O 式 O 加 O 入 O 博 B-ORG 彦 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 博 B-ORG 彦 M-ORG 科 M-ORG 技 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 李 B-NAME 海 M-NAME 鹰 E-NAME 先 O 生 O , O 出 O 生 O 于 O 1 O 9 O 6 O 7 O 年 O 8 O 月 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 2 O 月 O 任 O 河 B-ORG 南 M-ORG 辉 M-ORG 煌 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 2 O 月 O 至 O 今 O 担 O 任 O 辉 B-ORG 煌 M-ORG 科 M-ORG 技 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 最 O 近 O 5 O 年 O 无 O 在 O 其 O 他 O 单 O 位 O 担 O 任 O 董 O 事 O 、 O 监 O 事 O 、 O 高 O 级 O 管 O 理 O 人 O 员 O 的 O 情 O 况 O 。 O 段 B-NAME 志 M-NAME 平 E-NAME 先 O 生 O : O 1 O 9 O 6 O 4 O 年 O 9 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 担 O 任 O 甘 B-ORG 肃 M-ORG 定 M-ORG 西 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 质 B-TITLE 监 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 企 B-TITLE 管 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 代 B-TITLE 理 M-TITLE 厂 M-TITLE 长 E-TITLE 、 O 兰 B-ORG 州 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 恒 B-ORG 康 M-ORG 医 M-ORG 疗 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 恒 B-ORG 康 M-ORG 医 M-ORG 疗 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 黄 B-NAME 家 M-NAME 学 E-NAME , O 男 O , O 美 B-ORG 国 M-ORG 俄 M-ORG 克 M-ORG 拉 M-ORG 何 M-ORG 马 M-ORG 大 M-ORG 学 M-ORG 健 M-ORG 康 M-ORG 医 M-ORG 学 M-ORG 中 M-ORG 心 E-ORG 微 B-PRO 生 M-PRO 物 M-PRO 与 M-PRO 免 M-PRO 疫 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 2 O 0 O 1 O 1 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 2 O 月 O 任 O 中 B-ORG 源 M-ORG 协 M-ORG 和 M-ORG 细 M-ORG 胞 M-ORG 基 M-ORG 因 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 4 O 年 O 2 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 2 O 月 O , O 任 O 中 B-ORG 源 M-ORG 协 M-ORG 和 M-ORG 细 M-ORG 胞 M-ORG 基 M-ORG 因 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 质 M-TITLE 量 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 朱 B-NAME 慈 M-NAME 蕴 E-NAME 女 O 士 O : O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 博 B-EDU 士 E-EDU , O 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 历 O 任 O 天 B-ORG 津 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 讲 B-TITLE 师 E-TITLE 、 O 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 8 O 月 O 至 O 今 O 在 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 任 O 教 O , O 受 O 聘 O 为 O 责 B-TITLE 任 M-TITLE 教 M-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O , O 参 O 加 O 由 O 中 O 国 O 证 O 监 O 会 O 培 O 训 O 中 O 心 O 与 O 清 O 华 O 大 O 学 O 经 O 管 O 院 O 联 O 合 O 举 O 办 O 的 O 独 O 立 O 董 O 事 O 培 O 训 O 班 O , O 并 O 获 O 结 O 业 O 证 O 书 O 。 O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 今 O 任 O 鼎 B-ORG 捷 M-ORG 软 M-ORG 件 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 被 O 选 O 为 O 海 B-TITLE 淀 M-TITLE 区 M-TITLE 第 M-TITLE 十 M-TITLE 三 M-TITLE 届 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE , O 并 O 出 O 任 O 海 B-ORG 淀 M-ORG 区 M-ORG 第 M-ORG 十 M-ORG 三 M-ORG 届 M-ORG 人 M-ORG 大 M-ORG 财 M-ORG 经 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 继 O 续 O 当 O 选 O 海 B-TITLE 淀 M-TITLE 区 M-TITLE 第 M-TITLE 十 M-TITLE 四 M-TITLE 届 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE , O 财 B-ORG 经 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 继 O 续 O 当 O 选 O 海 B-TITLE 淀 M-TITLE 区 M-TITLE 第 M-TITLE 十 M-TITLE 五 M-TITLE 届 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE , O 财 B-ORG 经 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 。 O 曾 O 获 O 全 O 国 O 第 O 二 O 届 O 杰 O 出 O 中 O 青 O 年 O 法 O 学 O 家 O 提 O 名 O 奖 O 、 O 天 O 津 O 市 O 政 O 府 O 第 O 五 O 届 O 社 O 会 O 科 O 学 O 优 O 秀 O 成 O 果 O 二 O 等 O 奖 O 、 O 北 O 京 O 市 O 第 O 六 O 届 O 哲 O 学 O 社 O 会 O 科 O 学 O 二 O 等 O 奖 O 、 O 第 O 四 O 届 O 吴 O 玉 O 章 O 奖 O 优 O 秀 O 奖 O 、 O 第 O 三 O 届 O 中 O 国 O 高 O 校 O 人 O 文 O 社 O 会 O 科 O 学 O 研 O 究 O 优 O 秀 O 成 O 果 O 三 O 等 O 奖 O 、 O 1 O 9 O 9 O 9 O 年 O 度 O 美 O 国 O C O o O l O b O y O 科 O 学 O 文 O 化 O 信 O 息 O 中 O 心 O 优 O 秀 O 论 O 文 O 奖 O 、 O 第 O 一 O 届 O “ O 中 O 国 O 法 O 学 O 优 O 秀 O 成 O 果 O 奖 O ” O 论 O 文 O 类 O 三 O 等 O 奖 O ( O 2 O 0 O 0 O 8 O 年 O 1 O 1 O 月 O ) O 、 O 第 O 二 O 届 O “ O 中 O 国 O 法 O 学 O 优 O 秀 O 成 O 果 O 奖 O ” O 专 O 著 O 二 O 等 O 奖 O ( O 2 O 0 O 1 O 1 O 年 O 1 O 1 O 月 O ) O 等 O 。 O 吴 B-NAME 纹 E-NAME , O 女 O , O 毕 O 业 O 于 O 南 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG , O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O 职 O 深 B-ORG 圳 M-ORG 科 M-ORG 兴 M-ORG 生 M-ORG 物 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 职 O 深 B-ORG 圳 M-ORG 市 M-ORG 北 M-ORG 大 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 2 O 0 O 0 O 3 O 年 O 7 O 月 O 起 O 任 O 深 B-ORG 圳 M-ORG 中 M-ORG 国 M-ORG 农 M-ORG 大 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 袁 B-NAME 国 M-NAME 强 E-NAME 先 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 宏 B-ORG 图 M-ORG 高 M-ORG 科 M-ORG 光 M-ORG 电 M-ORG 线 M-ORG 缆 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG ( O 8 O 3 O 9 O 0 O 厂 O ) O 计 B-TITLE 划 M-TITLE 员 E-TITLE 、 O 供 B-TITLE 销 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 军 B-TITLE 品 M-TITLE 分 M-TITLE 厂 M-TITLE 长 E-TITLE , O 现 O 任 O 宏 B-ORG 图 M-ORG 高 M-ORG 科 M-ORG 光 M-ORG 电 M-ORG 线 M-ORG 缆 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 海 B-ORG 南 M-ORG 电 M-ORG 缆 M-ORG 厂 E-ORG ( O 海 B-ORG 南 M-ORG 通 M-ORG 信 M-ORG 电 M-ORG 缆 M-ORG 厂 E-ORG ) O 厂 B-TITLE 长 E-TITLE 。 O 罗 B-NAME 玫 E-NAME 女 O 士 O , O 1 O 9 O 7 O 6 O 年 O 3 O 月 O 生 O , O 美 B-ORG 国 M-ORG 加 M-ORG 州 M-ORG 伯 M-ORG 克 M-ORG 利 M-ORG 大 M-ORG 学 E-ORG 博 B-EDU 士 E-EDU 。 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 美 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE 、 O 美 B-ORG 国 M-ORG 金 M-ORG 融 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE 。 O 现 O 任 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 专 M-ORG 业 M-ORG 硕 M-ORG 士 M-ORG M M-ORG P M-ORG A M-ORG c M-ORG c E-ORG 项 B-TITLE 目 M-TITLE 主 M-TITLE 任 E-TITLE ; O 兼 O 任 O 加 B-ORG 拿 M-ORG 大 M-ORG 会 M-ORG 计 M-ORG 协 M-ORG 会 M-ORG 期 M-ORG 刊 M-ORG 《 M-ORG A M-ORG c M-ORG c M-ORG o M-ORG u M-ORG n M-ORG t M-ORG i M-ORG n M-ORG g M-ORG P M-ORG e M-ORG r M-ORG s M-ORG p M-ORG e M-ORG c M-ORG t M-ORG i M-ORG v M-ORG e M-ORG s M-ORG 》 E-ORG 副 B-TITLE 主 M-TITLE 编 E-TITLE 、 O 《 B-ORG J M-ORG o M-ORG u M-ORG r M-ORG n M-ORG a M-ORG l M-ORG o M-ORG f M-ORG A M-ORG c M-ORG c M-ORG o M-ORG u M-ORG n M-ORG t M-ORG i M-ORG n M-ORG g M-ORG a M-ORG n M-ORG d M-ORG P M-ORG u M-ORG b M-ORG l M-ORG i M-ORG c M-ORG P M-ORG o M-ORG l M-ORG i M-ORG c M-ORG y M-ORG 》 E-ORG 审 B-TITLE 稿 M-TITLE 人 E-TITLE 。 O 司 B-NAME 增 M-NAME 勤 E-NAME , O 男 O , O 1 O 9 O 6 O 1 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 1 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 枣 B-ORG 庄 M-ORG 市 M-ORG 电 M-ORG 力 M-ORG 局 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE , O 山 B-ORG 东 M-ORG 鲁 M-ORG 能 M-ORG 燃 M-ORG 料 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 泰 B-ORG 安 M-ORG 高 M-ORG 压 M-ORG 开 M-ORG 关 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 厂 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 山 B-ORG 东 M-ORG 鲁 M-ORG 能 M-ORG 泰 M-ORG 山 M-ORG 电 M-ORG 缆 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 华 B-ORG 能 M-ORG 泰 M-ORG 山 M-ORG 电 M-ORG 力 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 山 B-ORG 东 M-ORG 新 M-ORG 能 M-ORG 泰 M-ORG 山 M-ORG 发 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 章 B-NAME 小 M-NAME 龙 E-NAME 先 O 生 O : O 男 O , O 1 O 9 O 6 O 4 O 年 O 4 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 美 B-ORG 国 M-ORG 亚 M-ORG 利 M-ORG 桑 M-ORG 那 M-ORG 州 M-ORG 立 M-ORG 大 M-ORG 学 M-ORG 凯 M-ORG 瑞 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 份 O 至 O 今 O 一 O 直 O 担 O 任 O 江 B-ORG 苏 M-ORG 恩 M-ORG 华 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 兼 O 任 O 上 B-ORG 海 M-ORG 彤 M-ORG 源 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 胡 B-NAME 钢 M-NAME 亮 E-NAME , O 男 O , O 1 O 9 O 7 O 9 O 年 O 9 O 月 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 E-EDU , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 浙 B-ORG 江 M-ORG 康 M-ORG 恩 M-ORG 贝 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 杭 B-ORG 州 M-ORG 茵 M-ORG 诺 M-ORG 邦 M-ORG 医 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 康 M-ORG 恩 M-ORG 贝 M-ORG 健 M-ORG 康 M-ORG 产 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 报 O 告 O 期 O 内 O 因 O 监 O 事 O 会 O 换 O 届 O 已 O 不 O 在 O 浙 B-ORG 江 M-ORG 康 M-ORG 恩 M-ORG 贝 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 职 O 。 O 赵 B-NAME 振 M-NAME 营 E-NAME 先 O 生 O : O 1 O 9 O 5 O 3 O 年 O 4 O 月 O 出 O 生 O , O 辽 B-LOC 宁 M-LOC 海 M-LOC 城 M-LOC 人 E-LOC , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 历 O 任 O 湘 B-ORG 潭 M-ORG 钢 M-ORG 铁 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 宣 M-TITLE 传 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 第 B-ORG 二 M-ORG 炼 M-ORG 钢 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 湘 B-ORG 潭 M-ORG 钢 M-ORG 铁 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 菱 M-ORG 管 M-ORG 线 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 湘 B-TITLE 钢 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 党 M-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 湖 B-ORG 南 M-ORG 华 M-ORG 菱 M-ORG 钢 M-ORG 铁 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 湘 B-ORG 潭 M-ORG 钢 M-ORG 铁 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 菱 M-ORG 湘 M-ORG 钢 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 菱 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 三 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 韩 B-NAME 文 M-NAME 武 E-NAME ( O 离 O 任 O ) O : O 男 O , O 1 O 9 O 7 O 9 O 年 O 6 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 廊 B-ORG 坊 M-ORG 市 M-ORG 华 M-ORG 元 M-ORG 机 M-ORG 电 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 及 M-TITLE 税 M-TITLE 务 M-TITLE 会 M-TITLE 计 E-TITLE ; O 华 B-ORG 夏 M-ORG 控 M-ORG 股 E-ORG 出 B-TITLE 纳 E-TITLE 、 O 会 B-TITLE 计 E-TITLE ; O 九 B-ORG 通 M-ORG 投 M-ORG 资 E-ORG 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE ; O 华 B-ORG 夏 M-ORG 控 M-ORG 股 E-ORG 财 B-TITLE 务 M-TITLE 高 M-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE ; O 华 B-ORG 夏 M-ORG 幸 M-ORG 福 E-ORG 财 B-TITLE 务 M-TITLE 高 M-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 期 O 间 O 任 O 华 B-ORG 夏 M-ORG 幸 M-ORG 福 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 吴 B-NAME 幼 M-NAME 光 E-NAME 先 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 宁 B-ORG 波 M-ORG 雅 M-ORG 戈 M-ORG 尔 M-ORG 制 M-ORG 衣 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 经 B-TITLE 理 E-TITLE , O 雅 B-ORG 戈 M-ORG 尔 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 雅 B-ORG 戈 M-ORG 尔 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 龙 B-NAME 虹 E-NAME 女 O 士 O , O 1 O 9 O 6 O 5 O 年 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG 助 B-TITLE 教 E-TITLE 、 O 支 B-TITLE 部 M-TITLE 委 M-TITLE 员 E-TITLE , O 管 B-TITLE 理 M-TITLE 学 M-TITLE 院 M-TITLE 讲 M-TITLE 师 E-TITLE 、 O 室 B-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 支 B-TITLE 部 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 支 B-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 院 B-TITLE 工 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE , O 管 B-ORG 理 M-ORG 与 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 室 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 系 B-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 支 B-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 院 B-TITLE 工 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE ; O 盛 B-ORG 京 M-ORG 银 M-ORG 行 M-ORG 北 M-ORG 京 M-ORG 分 M-ORG 行 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 盛 B-ORG 京 M-ORG 银 M-ORG 行 M-ORG 北 M-ORG 京 M-ORG 分 M-ORG 行 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 东 B-ORG 北 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 姓 O 名 O : O 苏 B-NAME 壮 M-NAME 强 E-NAME 性 O 别 O : O 男 O 民 O 族 O : O 汉 S-RACE 出 O 生 O 年 O 月 O : O 1 O 9 O 7 O 1 O 年 O 1 O 0 O 月 O 2 O 3 O 日 O 教 O 育 O 程 O 度 O : O 大 B-EDU 学 E-EDU 健 O 康 O 状 O 况 O : O 良 O 好 O 1 O 9 O 8 O 9 O 年 O 9 O 月 O - O - O 1 O 9 O 9 O 3 O 年 O 9 O 月 O 汕 B-ORG 头 M-ORG 大 M-ORG 学 E-ORG 学 B-TITLE 生 E-TITLE 1 O 9 O 9 O 3 O 年 O 1 O 0 O 月 O - O - O 2 O 0 O 0 O 3 O 年 O 1 O 0 O 月 O 汕 B-ORG 头 M-ORG 市 M-ORG 联 M-ORG 美 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 2 O 0 O 0 O 3 O 年 O 1 O 0 O 月 O — O 至 O 今 O 沈 B-ORG 阳 M-ORG 房 M-ORG 产 M-ORG 实 M-ORG 业 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 2 O 0 O 0 O 4 O 年 O 5 O 月 O — O — O — O 至 O 今 O 中 B-ORG 体 M-ORG 产 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 郑 B-NAME 培 M-NAME 敏 E-NAME : O 男 O , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU , O 现 O 任 O 上 B-ORG 海 M-ORG 荣 M-ORG 正 M-ORG 投 M-ORG 资 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 首 B-TITLE 席 M-TITLE 合 M-TITLE 伙 M-TITLE 人 E-TITLE , O 中 B-ORG 国 M-ORG 海 M-ORG 诚 E-ORG 、 O 创 B-ORG 元 M-ORG 科 M-ORG 技 E-ORG 、 O 东 B-ORG 方 M-ORG 明 M-ORG 珠 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 投 B-ORG 资 M-ORG 银 M-ORG 行 M-ORG 业 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 。 O 吴 B-NAME 健 E-NAME : O 男 O , O 1 O 9 O 7 O 7 O 年 O 1 O 1 O 月 O 1 O 5 O 日 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 江 B-ORG 阴 M-ORG 职 M-ORG 教 M-ORG 中 M-ORG 心 E-ORG 会 B-TITLE 计 E-TITLE ; O 江 B-ORG 阴 M-ORG 市 M-ORG 教 M-ORG 育 M-ORG 局 E-ORG 计 B-TITLE 财 M-TITLE 审 M-TITLE 计 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE ; O 江 B-ORG 阴 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG 国 B-TITLE 库 M-TITLE 集 M-TITLE 中 M-TITLE 支 M-TITLE 付 M-TITLE 中 M-TITLE 心 M-TITLE 会 M-TITLE 计 E-TITLE ; O 江 B-ORG 南 M-ORG 水 M-ORG 务 E-ORG 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 江 B-ORG 南 M-ORG 水 M-ORG 务 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE ; O 江 B-ORG 阴 M-ORG 市 M-ORG 市 M-ORG 属 M-ORG 集 M-ORG 体 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 办 M-ORG 公 M-ORG 室 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 。 O 杨 B-NAME 小 M-NAME 勇 E-NAME 先 O 生 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 1 O 9 O 6 O 3 O 年 O 4 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 就 O 职 O 于 O 太 B-ORG 原 M-ORG 重 M-ORG 机 M-ORG 学 M-ORG 院 E-ORG 、 O 山 B-ORG 西 M-ORG 省 M-ORG 高 M-ORG 校 M-ORG 工 M-ORG 委 E-ORG 、 O 山 B-ORG 西 M-ORG 省 M-ORG 委 M-ORG 组 M-ORG 织 M-ORG 部 E-ORG 。 O 2 O 0 O 0 O 0 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 2 O 月 O 任 O 山 B-ORG 西 M-ORG 省 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 7 O 月 O , O 任 O 国 B-ORG 信 M-ORG 集 M-ORG 团 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 2 O 月 O 至 O 今 O 任 O 山 B-ORG 西 M-ORG 信 M-ORG 托 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 1 O 2 O 月 O 至 O 今 O 兼 O 任 O 汇 B-ORG 丰 M-ORG 晋 M-ORG 信 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 8 O 月 O 至 O 今 O 任 O 国 B-ORG 信 M-ORG 集 M-ORG 团 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 任 O 山 B-ORG 西 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 2 O 月 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 汉 E-NAME 先 O 生 O , O 董 B-TITLE 事 E-TITLE , O 1 O 9 O 6 O 7 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU , O 广 O 东 O 省 O 五 O 一 O 劳 O 动 O 奖 O 章 O 获 O 得 O 者 O 、 O 广 B-ORG 东 M-ORG 海 M-ORG 洋 M-ORG 大 M-ORG 学 E-ORG 客 B-TITLE 座 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 湛 B-ORG 江 M-ORG 市 E-ORG 人 B-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 、 O 湛 B-ORG 江 M-ORG 市 M-ORG 水 M-ORG 产 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 。 O 陈 O 汉 O 拥 O 2 O 0 O 年 O 的 O 水 O 产 O 从 O 业 O 经 O 历 O , O 1 O 9 O 8 O 7 O 年 O 就 O 职 O 于 O 湛 B-ORG 江 M-ORG 市 M-ORG 坡 M-ORG 头 M-ORG 外 M-ORG 经 M-ORG 冷 M-ORG 冻 M-ORG 厂 E-ORG 。 O 2 O 0 O 0 O 1 O 年 O 参 O 与 O 创 O 立 O 本 B-ORG 公 M-ORG 司 E-ORG , O 曾 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 与 O 其 O 他 O 持 O 有 O 公 O 司 O 5 O % O 以 O 上 O 股 O 份 O 的 O 股 O 东 O 、 O 实 O 际 O 控 O 制 O 人 O 、 O 其 O 他 O 董 O 事 O 、 O 监 O 事 O 、 O 高 O 级 O 管 O 理 O 人 O 员 O 不 O 存 O 在 O 关 O 联 O 关 O 系 O 。 O 李 B-NAME 苏 M-NAME 龙 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 4 O 年 O 1 O 月 O 出 O 生 O , O 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 晋 B-ORG 城 M-ORG 煤 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 管 M-TITLE 理 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 山 B-ORG 西 M-ORG 煤 M-ORG 炭 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE , O 山 B-ORG 煤 M-ORG 国 M-ORG 际 M-ORG 能 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 汤 B-NAME 巨 M-NAME 祥 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 2 O 年 O 1 O 1 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 西 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 法 M-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE , O 江 B-ORG 仓 M-ORG 能 M-ORG 源 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 五 B-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 罗 B-NAME 世 M-NAME 容 E-NAME , O 女 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 2 O 年 O 9 O 月 O 生 O 。 O 北 B-ORG 京 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 毕 O 业 O , O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 1 O 9 O 8 O 3 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 3 O 年 O 6 O 月 O , O 就 O 职 O 于 O 四 B-ORG 川 M-ORG 省 M-ORG 轻 M-ORG 工 M-ORG 厅 E-ORG , O 任 O 财 B-TITLE 经 M-TITLE 教 M-TITLE 研 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 1 O 9 O 9 O 3 O 年 O 6 O 月 O 至 O 1 O 9 O 9 O 4 O 年 O 7 O 月 O , O 就 O 职 O 于 O 海 B-ORG 南 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 证 O 券 O 部 O , O 任 O 主 B-TITLE 办 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 7 O 年 O 2 O 月 O , O 就 O 职 O 于 O 长 B-ORG 城 M-ORG 证 M-ORG 券 M-ORG ( M-ORG 汇 M-ORG 通 M-ORG ) M-ORG 深 M-ORG 圳 M-ORG 二 M-ORG 部 E-ORG , O 任 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 2 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 3 O 月 O , O 就 O 职 O 于 O 长 B-ORG 城 M-ORG 证 M-ORG 券 M-ORG 成 M-ORG 都 M-ORG 营 M-ORG 业 M-ORG 部 E-ORG , O 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 3 O 月 O , O 就 O 职 O 于 O 长 B-ORG 城 M-ORG 证 M-ORG 券 M-ORG 深 M-ORG 圳 M-ORG 一 M-ORG 部 E-ORG , O 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 3 O 月 O 至 O 今 O 任 O 长 B-ORG 城 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 赵 B-NAME 国 M-NAME 民 E-NAME 先 O 生 O , O 1 O 9 O 6 O 5 O 年 O 4 O 月 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 9 O 年 O 本 B-EDU 科 E-EDU 毕 O 业 O 于 O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG , O 浙 B-ORG 江 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A M-EDU 硕 M-EDU 士 E-EDU 。 O 先 O 后 O 就 O 职 O 于 O 杭 B-ORG 州 M-ORG 市 M-ORG 公 M-ORG 安 M-ORG 局 E-ORG 、 O 杭 B-ORG 州 M-ORG 华 M-ORG 特 M-ORG 移 M-ORG 动 M-ORG 通 M-ORG 讯 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 浙 B-ORG 江 M-ORG 通 M-ORG 普 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 和 O 上 B-ORG 海 M-ORG 欣 M-ORG 民 M-ORG 通 M-ORG 信 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 为 O 上 B-ORG 海 M-ORG 市 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 科 B-TITLE 学 M-TITLE 技 M-TITLE 术 M-TITLE 创 M-TITLE 新 M-TITLE 类 M-TITLE 评 M-TITLE 审 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 人 M-ORG 事 M-ORG 局 E-ORG 电 B-TITLE 子 M-TITLE 工 M-TITLE 程 M-TITLE 类 M-TITLE 职 M-TITLE 称 M-TITLE 评 M-TITLE 审 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 科 B-TITLE 技 M-TITLE 管 M-TITLE 理 M-TITLE 类 M-TITLE 评 M-TITLE 审 M-TITLE 专 M-TITLE 家 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 9 O 日 O 起 O 任 O 三 B-ORG 维 M-ORG 通 M-ORG 信 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 上 B-ORG 海 M-ORG 三 M-ORG 维 M-ORG 通 M-ORG 信 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 广 B-ORG 州 M-ORG 逸 M-ORG 信 M-ORG 电 M-ORG 子 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 马 B-NAME 忠 M-NAME 礼 E-NAME 先 O 生 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 4 O 年 O 起 O 出 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 马 S-NAME 先 O 生 O 1 O 9 O 7 O 8 O 年 O 毕 O 业 O 于 O 伦 B-ORG 敦 M-ORG 大 M-ORG 学 E-ORG 生 B-PRO 物 M-PRO 化 M-PRO 工 M-PRO 专 M-PRO 业 E-PRO , O 获 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 现 O 任 O 香 B-ORG 港 M-ORG 大 M-ORG 庆 M-ORG 石 M-ORG 油 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 并 O 担 O 任 O 中 B-ORG 华 M-ORG 全 M-ORG 国 M-ORG 工 M-ORG 商 M-ORG 业 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG ( B-TITLE 第 M-TITLE 九 M-TITLE 届 M-TITLE ) M-TITLE 执 M-TITLE 行 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 治 M-ORG 协 M-ORG 商 M-ORG 会 M-ORG 议 M-ORG 江 M-ORG 苏 M-ORG 省 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG ( B-TITLE 第 M-TITLE 九 M-TITLE 届 M-TITLE ) M-TITLE 常 M-TITLE 务 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 香 B-ORG 港 M-ORG 中 M-ORG 华 M-ORG 总 M-ORG 商 M-ORG 会 E-ORG 会 B-TITLE 董 E-TITLE 。 O 马 S-NAME 先 O 生 O 长 O 期 O 从 O 事 O 企 O 业 O 经 O 营 O 管 O 理 O 工 O 作 O , O 具 O 有 O 先 O 进 O 的 O 企 O 业 O 管 O 理 O 理 O 念 O 和 O 经 O 验 O 。 O 汪 B-NAME 春 M-NAME 华 E-NAME , O 男 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 4 O 年 O 8 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 公 M-ORG 路 M-ORG 勘 M-ORG 察 M-ORG 规 M-ORG 划 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 公 B-TITLE 路 M-TITLE 规 M-TITLE 划 M-TITLE 室 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 和 O 咨 B-TITLE 询 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 广 B-ORG 东 M-ORG 省 M-ORG 交 M-ORG 通 M-ORG 集 M-ORG 团 E-ORG 投 B-TITLE 资 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 主 B-TITLE 管 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 9 O 月 O 调 O 至 O 广 B-ORG 东 M-ORG 省 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 起 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 胡 B-NAME 立 M-NAME 君 E-NAME : O 男 O , O 1 O 9 O 6 O 1 O 年 O 生 O , O 武 B-ORG 汉 M-ORG 大 M-ORG 学 E-ORG 博 B-TITLE 士 M-TITLE 后 E-TITLE , O 中 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O M B-ORG B M-ORG A M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 经 M-ORG 济 M-ORG 系 M-ORG 统 M-ORG 工 M-ORG 程 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 工 M-ORG 业 M-ORG 经 M-ORG 济 M-ORG 协 M-ORG 会 E-ORG 个 B-TITLE 人 M-TITLE 会 M-TITLE 员 E-TITLE 、 O 湖 B-ORG 北 M-ORG 省 M-ORG 体 M-ORG 育 M-ORG 局 M-ORG 咨 M-ORG 询 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 特 B-TITLE 聘 M-TITLE 专 M-TITLE 家 E-TITLE 、 O A B-ORG c M-ORG a M-ORG d M-ORG e M-ORG m M-ORG y M-ORG 0 M-ORG f M-ORG m M-ORG a M-ORG n M-ORG a M-ORG g M-ORG e M-ORG m M-ORG e M-ORG n M-ORG t E-ORG 会 B-TITLE 员 E-TITLE ( O 美 B-ORG 国 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 会 E-ORG ) O 。 O 湖 B-ORG 北 M-ORG 三 M-ORG 环 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 俞 B-NAME 光 M-NAME 耀 E-NAME : O 男 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 现 O 任 O 浙 B-ORG 江 M-ORG 万 M-ORG 丰 M-ORG 奥 M-ORG 威 M-ORG 汽 M-ORG 轮 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 公 B-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 曾 O 任 O 浙 B-ORG 江 M-ORG 万 M-ORG 丰 M-ORG 奥 M-ORG 威 M-ORG 汽 M-ORG 轮 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 万 B-ORG 丰 M-ORG 奥 M-ORG 特 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 浙 B-ORG 江 M-ORG 万 M-ORG 丰 M-ORG 奥 M-ORG 威 M-ORG 汽 M-ORG 轮 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 制 B-TITLE 造 M-TITLE 中 M-TITLE 心 M-TITLE 内 M-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 外 B-TITLE 协 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE 等 O 职 O 务 O 。 O 所 O 获 O 荣 O 誉 O , O 2 O 0 O 0 O 2 O 年 O 新 O 昌 O 县 O 总 O 工 O 会 O 优 O 秀 O 工 O 会 O 工 O 作 O 者 O ; O 2 O 0 O 0 O 5 O 年 O 新 O 昌 O 县 O 总 O 工 O 会 O 优 O 秀 O 工 O 会 O 工 O 作 O 者 O ; O 2 O 0 O 1 O 1 O 年 O 绍 O 兴 O 市 O 工 O 会 O 积 O 极 O 工 O 作 O 者 O 。 O 朱 B-NAME 培 M-NAME 禄 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 1 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 宁 M-ORG 德 M-ORG 市 M-ORG 经 M-ORG 贸 M-ORG 委 E-ORG 技 B-TITLE 术 M-TITLE 进 M-TITLE 步 M-TITLE 与 M-TITLE 装 M-TITLE 备 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 福 B-ORG 建 M-ORG 省 M-ORG 宁 M-ORG 德 M-ORG 市 M-ORG 经 M-ORG 贸 M-ORG 委 E-ORG 电 B-TITLE 力 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 福 B-ORG 建 M-ORG 省 M-ORG 宁 M-ORG 德 M-ORG 市 M-ORG 经 M-ORG 贸 M-ORG 委 E-ORG 能 B-TITLE 源 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 现 O 任 O 福 B-ORG 建 M-ORG 闽 M-ORG 东 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 肖 B-NAME 荣 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 油 B-TITLE 气 M-TITLE 集 M-TITLE 输 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 1 O 9 O 8 O 1 O 年 O 至 O 1 O 9 O 8 O 9 O 年 O 在 O 河 B-ORG 南 M-ORG 油 M-ORG 田 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 工 O 作 O , O 1 O 9 O 8 O 9 O 年 O 至 O 2 O 0 O 0 O 1 O 年 O 1 O 月 O 在 O 中 B-ORG 国 M-ORG 石 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 河 M-ORG 南 M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 局 M-ORG 勘 M-ORG 察 M-ORG 设 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 工 O 作 O , O 先 O 后 O 担 O 任 O 工 B-TITLE 艺 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 院 B-TITLE 副 M-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 院 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 等 O 职 O ; O 2 O 0 O 0 O 1 O 年 O 7 O 月 O 起 O 历 O 任 O 惠 B-ORG 博 M-ORG 普 M-ORG 有 M-ORG 限 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 自 O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 华 B-ORG 油 M-ORG 惠 M-ORG 博 M-ORG 普 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 成 O 立 O 至 O 今 O , O 担 O 任 O 华 B-ORG 油 M-ORG 惠 M-ORG 博 M-ORG 普 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 贾 B-NAME 一 M-NAME 览 E-NAME 出 O 生 O 年 O 月 O : O 1 O 9 O 7 O 3 O 年 O 1 O 1 O 月 O 性 O 别 O : O 女 O 政 O 治 O 面 O 貌 O : O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 学 O 历 O : O 大 B-EDU 学 E-EDU 主 O 要 O 工 O 作 O 经 O 历 O : O 1 O 9 O 9 O 5 O 年 O 毕 O 业 O 于 O 上 B-ORG 海 M-ORG 对 M-ORG 外 M-ORG 贸 M-ORG 易 M-ORG 学 M-ORG 院 E-ORG , O 获 O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 1 O 9 O 9 O 5 O 年 O - O 至 O 今 O 浙 B-ORG 江 M-ORG 东 M-ORG 方 M-ORG 集 M-ORG 团 M-ORG 嘉 M-ORG 业 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 销 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE , O 浙 B-ORG 江 M-ORG 东 M-ORG 方 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 三 B-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 赵 B-NAME 智 M-NAME 文 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 国 B-ORG 际 M-ORG 金 M-ORG 融 E-ORG 博 B-EDU 士 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 8 O 9 O 年 O 至 O 2 O 0 O 0 O 0 O 年 O 任 O 南 B-ORG 开 M-ORG 大 M-ORG 学 M-ORG 金 M-ORG 融 M-ORG 系 E-ORG 教 B-TITLE 师 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 至 O 2 O 0 O 0 O 5 O 年 O 任 O 渤 B-ORG 海 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 至 O 今 O 任 O 南 B-ORG 开 M-ORG 大 M-ORG 学 M-ORG 滨 M-ORG 海 M-ORG 学 M-ORG 院 M-ORG 金 M-ORG 融 M-ORG 学 M-ORG 系 E-ORG 系 B-TITLE 主 M-TITLE 任 E-TITLE 。 O 荣 B-NAME 森 M-NAME 林 E-NAME 先 O 生 O , O 男 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 5 O 年 O 1 O 0 O 月 O 进 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 历 O 任 O 技 B-TITLE 术 M-TITLE 员 E-TITLE , O 公 B-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 7 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 艳 E-NAME , O 女 O , O 1 O 9 O 7 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O E B-EDU M M-EDU B M-EDU A E-EDU 在 O 读 O 。 O 现 O 任 O 上 B-ORG 海 M-ORG 嘉 M-ORG 麟 M-ORG 杰 M-ORG 纺 M-ORG 织 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 嘉 B-ORG 麟 M-ORG 杰 M-ORG 运 M-ORG 动 M-ORG 用 M-ORG 品 E-ORG 董 B-TITLE 事 E-TITLE 、 O S B-ORG C M-ORG T M-ORG J M-ORG a M-ORG p E-ORG 董 B-TITLE 事 E-TITLE 、 O S B-ORG N M-ORG E M-ORG u M-ORG r M-ORG o E-ORG 董 B-TITLE 事 E-TITLE 、 O C B-ORG A M-ORG P M-ORG A M-ORG K E-ORG 董 B-TITLE 事 E-TITLE 、 O 普 B-ORG 澜 M-ORG 特 M-ORG 复 M-ORG 合 M-ORG 面 M-ORG 料 E-ORG 董 B-TITLE 事 E-TITLE ; O 曾 O 任 O 上 B-ORG 海 M-ORG 申 M-ORG 时 M-ORG 广 M-ORG 告 M-ORG 传 M-ORG 播 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 嘉 M-ORG 乐 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 销 B-TITLE 售 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 肖 B-NAME 壮 M-NAME 勇 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 7 O 年 O 3 O 月 O 出 O 生 O , O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 毕 O 业 O 于 O 洛 B-ORG 阳 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 襄 B-ORG 阳 M-ORG 汽 M-ORG 车 M-ORG 轴 M-ORG 承 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 产 B-TITLE 品 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 张 B-NAME 耀 M-NAME 明 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 4 O 3 O 年 O 出 O 生 O , O 本 B-EDU 科 E-EDU , O 中 B-TITLE 国 M-TITLE 工 M-TITLE 程 M-TITLE 院 M-TITLE 院 M-TITLE 士 E-TITLE , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 贴 O 。 O 曾 O 任 O 南 B-ORG 京 M-ORG 玻 M-ORG 璃 M-ORG 纤 M-ORG 维 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE , O 南 B-ORG 京 M-ORG 彤 M-ORG 天 M-ORG 科 M-ORG 技 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 中 B-ORG 材 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 。 O 现 O 任 O 中 B-ORG 材 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 技 M-TITLE 术 M-TITLE 专 M-TITLE 家 E-TITLE , O 江 B-ORG 苏 M-ORG 省 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE , O 南 B-ORG 京 M-ORG 市 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE 。 O 兼 O 任 O 南 B-ORG 京 M-ORG 市 M-ORG 科 M-ORG 协 E-ORG 主 B-TITLE 席 E-TITLE , O 南 B-ORG 京 M-ORG 春 M-ORG 辉 M-ORG 科 M-ORG 技 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 硅 M-ORG 酸 M-ORG 盐 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 玻 M-ORG 璃 M-ORG 纤 M-ORG 维 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 等 O 职 O 。 O 曾 O 获 O 国 O 家 O 科 O 技 O 发 O 明 O 二 O 等 O 奖 O 1 O 项 O 、 O 国 O 家 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 3 O 项 O 、 O 三 O 等 O 奖 O 2 O 项 O , O 杜 O 邦 O 科 O 技 O 奖 O 1 O 项 O 。 O 王 B-NAME 荣 M-NAME 海 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 未 O 拥 O 有 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 4 O 年 O 5 O 月 O 出 O 生 O , O 硕 B-EDU 士 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 曾 O 获 O 安 O 徽 O 省 O 青 O 年 O 科 O 技 O 奖 O 、 O 安 O 徽 O 省 O 科 O 学 O 技 O 术 O 进 O 步 O 一 O 等 O 奖 O 2 O 次 O 、 O 安 O 徽 O 省 O 科 O 学 O 技 O 术 O 进 O 步 O 二 O 等 O 奖 O 1 O 次 O 。 O 现 O 任 O 安 B-ORG 徽 M-ORG 安 M-ORG 科 M-ORG 生 M-ORG 物 M-ORG 工 M-ORG 程 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 其 O 担 O 任 O 安 B-ORG 徽 M-ORG 安 M-ORG 科 M-ORG 生 M-ORG 物 M-ORG 工 M-ORG 程 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 的 O 任 O 期 O 为 O 2 O 0 O 1 O 3 O 年 O 1 O 1 O 月 O 5 O 日 O 至 O 2 O 0 O 1 O 6 O 年 O 1 O 1 O 月 O 4 O 日 O 。 O 徐 B-NAME 壮 M-NAME 城 E-NAME , O 男 O , O 1 O 9 O 7 O 2 O 年 O 出 O 生 O , O 法 B-PRO 律 E-PRO 硕 B-EDU 士 E-EDU 。 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 卡 M-ORG 金 M-ORG 亚 M-ORG 珠 M-ORG 宝 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 深 B-ORG 圳 M-ORG 仲 M-ORG 裁 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 仲 B-TITLE 裁 M-TITLE 员 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 深 M-ORG 宝 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 5 O 月 O 任 O 杭 B-ORG 州 M-ORG 天 M-ORG 目 M-ORG 山 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 昆 E-NAME 先 O 生 O : O 1 O 9 O 4 O 7 O 年 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 电 M-ORG 缆 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 高 B-TITLE 级 M-TITLE 顾 M-TITLE 问 E-TITLE , O 露 B-ORG 笑 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 浙 B-ORG 江 M-ORG 上 M-ORG 风 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 中 B-ORG 利 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 5 O 年 O 2 O 月 O 1 O 0 O 日 O 换 O 届 O 离 O 任 O 。 O 吴 B-NAME 慕 M-NAME 涛 E-NAME 先 O 生 O : O 1 O 9 O 4 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 、 M-TITLE 二 M-TITLE 、 M-TITLE 三 M-TITLE 届 M-TITLE 、 M-TITLE 四 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 等 O 职 O 。 O 曾 O 获 O 全 O 国 O 优 O 秀 O 会 O 计 O 称 O 号 O 。 O 王 B-NAME 阿 M-NAME 明 E-NAME 先 O 生 O , O 1 O 9 O 7 O 9 O 年 O 2 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 未 O 有 O 任 O 何 O 国 O 家 O 和 O 地 O 区 O 的 O 永 O 久 O 海 O 外 O 居 O 留 O 权 O 。 O 2 O 0 O 0 O 1 O 年 O 7 O 月 O 毕 O 业 O 于 O 西 B-ORG 南 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 畜 B-PRO 牧 M-PRO 兽 M-PRO 医 M-PRO 专 M-PRO 业 E-PRO , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 6 O 月 O 历 O 任 O 广 B-ORG 东 M-ORG 大 M-ORG 华 M-ORG 农 M-ORG 动 M-ORG 物 M-ORG 保 M-ORG 健 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 营 B-TITLE 销 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 7 O 月 O 至 O 今 O 历 O 任 O 广 B-ORG 东 M-ORG 大 M-ORG 华 M-ORG 农 M-ORG 动 M-ORG 物 M-ORG 保 M-ORG 健 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 秦 B-NAME 庆 M-NAME 华 E-NAME 先 O 生 O : O 1 O 9 O 6 O 5 O 年 O 8 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 法 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 。 O 1 O 9 O 8 O 6 O 年 O 参 O 加 O 工 O 作 O , O 先 O 后 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 公 M-ORG 安 M-ORG 局 E-ORG 刑 B-TITLE 侦 M-TITLE 处 M-TITLE 干 M-TITLE 警 E-TITLE 、 O 二 B-TITLE 级 M-TITLE 警 M-TITLE 司 E-TITLE 。 O 1 O 9 O 9 O 4 O 年 O 至 O 1 O 9 O 9 O 7 O 年 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 海 M-ORG 问 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 7 O - O 2 O 0 O 0 O 1 O 为 O 北 B-ORG 京 M-ORG 市 M-ORG 星 M-ORG 河 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 2 O 0 O 0 O 1 O - O 2 O 0 O 0 O 4 O 年 O 为 O 北 B-ORG 京 M-ORG 市 M-ORG 鑫 M-ORG 兴 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 2 O 0 O 0 O 4 O - O 2 O 0 O 1 O 2 O 年 O 为 O 北 B-ORG 京 M-ORG 市 M-ORG 凯 M-ORG 文 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O - O 2 O 0 O 1 O 4 O 年 O 北 B-ORG 京 M-ORG 国 M-ORG 枫 M-ORG 凯 M-ORG 文 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE , O 2 O 0 O 1 O 4 O 年 O - O 2 O 0 O 1 O 5 O 年 O 为 O 北 B-ORG 京 M-ORG 市 M-ORG 首 M-ORG 信 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 蓝 M-ORG 丰 M-ORG 生 M-ORG 物 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 陆 B-NAME 建 M-NAME 峰 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 8 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 医 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU 。 O 1 O 9 O 8 O 5 O 年 O 9 O 月 O 至 O 1 O 9 O 9 O 1 O 年 O 7 O 月 O 在 O 第 B-ORG 二 M-ORG 军 M-ORG 医 M-ORG 大 M-ORG 学 M-ORG 医 M-ORG 疗 M-ORG 系 E-ORG 学 O 习 O 。 O 现 O 在 O 国 B-ORG 投 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 职 O 。 O 曾 O 先 O 后 O 在 O 北 B-ORG 京 M-ORG 军 M-ORG 区 M-ORG 5 M-ORG 1 M-ORG 0 M-ORG 2 M-ORG 9 M-ORG 部 M-ORG 队 E-ORG 、 O 北 B-ORG 京 M-ORG 军 M-ORG 区 M-ORG 2 M-ORG 6 M-ORG 0 M-ORG 医 M-ORG 院 E-ORG 、 O 北 B-ORG 京 M-ORG 军 M-ORG 区 M-ORG 总 M-ORG 医 M-ORG 院 E-ORG 、 O 国 B-ORG 投 M-ORG 药 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 刘 B-NAME 斌 E-NAME , O 男 O , O 历 O 任 O 山 B-ORG 东 M-ORG 明 M-ORG 允 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 金 B-ORG 杜 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 北 B-ORG 京 M-ORG 市 M-ORG 金 M-ORG 杜 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 。 O 现 O 任 O 金 B-ORG 杜 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 四 M-ORG 川 M-ORG 分 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 、 O 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 刘 B-NAME 军 M-NAME 凯 E-NAME : O 男 O , O 1 O 9 O 5 O 6 O 年 O 4 O 月 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 1 O 0 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 1 O 月 O 任 O 黄 B-ORG 山 M-ORG 市 M-ORG 天 M-ORG 目 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 4 O 月 O 任 O 杭 B-ORG 州 M-ORG 天 M-ORG 目 M-ORG 山 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 卢 B-NAME 林 E-NAME 先 O 生 O , O 国 B-ORG 民 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 中 M-ORG 兴 M-ORG 维 M-ORG 先 M-ORG 通 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 财 B-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE , O 中 B-ORG 兴 M-ORG 通 M-ORG 讯 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 中 M-TITLE 心 M-TITLE 成 M-TITLE 本 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 二 B-TITLE 级 M-TITLE 业 M-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 无 B-ORG 锡 M-ORG 市 M-ORG 中 M-ORG 兴 M-ORG 光 M-ORG 电 M-ORG 子 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 4 O 月 O 至 O 今 O 在 O 国 B-ORG 民 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 张 B-NAME 原 E-NAME 先 O 生 O : O 1 O 9 O 6 O 9 O 年 O 7 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 6 O 月 O - O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 担 O 任 O 新 B-ORG 纶 M-ORG 科 M-ORG 技 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 5 O 年 O 4 O 月 O 任 O 新 B-ORG 纶 M-ORG 科 M-ORG 技 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE ; O 兼 O 任 O 东 B-ORG 莞 M-ORG 首 M-ORG 道 M-ORG 超 M-ORG 净 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 新 B-ORG 纶 M-ORG 科 M-ORG 技 M-ORG ( M-ORG 香 M-ORG 港 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 大 B-ORG 连 M-ORG 洁 M-ORG 净 M-ORG 易 M-ORG 超 M-ORG 净 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 北 B-ORG 京 M-ORG 洁 M-ORG 净 M-ORG 易 M-ORG 超 M-ORG 净 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 合 B-ORG 肥 M-ORG 洁 M-ORG 易 M-ORG 超 M-ORG 净 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 西 B-ORG 安 M-ORG 洁 M-ORG 净 M-ORG 易 M-ORG 超 M-ORG 净 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 成 B-ORG 都 M-ORG 洁 M-ORG 净 M-ORG 易 M-ORG 超 M-ORG 净 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 厦 B-ORG 门 M-ORG 洁 M-ORG 净 M-ORG 易 M-ORG 超 M-ORG 净 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 金 M-ORG 麒 M-ORG 麟 M-ORG 环 M-ORG 境 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 新 M-ORG 纶 M-ORG 先 M-ORG 进 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 长 B-ORG 江 M-ORG 新 M-ORG 纶 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 深 B-ORG 圳 M-ORG 红 M-ORG 尊 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 新 B-ORG 纶 M-ORG 科 M-ORG 技 M-ORG ( M-ORG 日 M-ORG 本 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 平 M-NAME 春 E-NAME , O 男 O , O 1 O 9 O 5 O 5 O 年 O 2 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 华 B-ORG 侨 M-ORG 城 M-ORG 经 M-ORG 济 M-ORG 发 M-ORG 展 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 策 B-TITLE 划 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 深 B-ORG 圳 M-ORG 华 M-ORG 侨 M-ORG 城 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 裁 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 华 B-ORG 侨 M-ORG 城 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 深 B-ORG 圳 M-ORG 欢 M-ORG 乐 M-ORG 谷 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 北 B-ORG 京 M-ORG 华 M-ORG 侨 M-ORG 城 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ( O 兼 O ) O , O 上 B-ORG 海 M-ORG 华 M-ORG 侨 M-ORG 城 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 锦 B-ORG 绣 M-ORG 中 M-ORG 华 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 深 B-ORG 圳 M-ORG 世 M-ORG 界 M-ORG 之 M-ORG 窗 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 华 B-ORG 侨 M-ORG 城 M-ORG 酒 M-ORG 店 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 云 B-ORG 南 M-ORG 华 M-ORG 侨 M-ORG 城 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 华 B-ORG 侨 M-ORG 城 M-ORG 集 M-ORG 团 E-ORG 党 B-TITLE 委 M-TITLE 常 M-TITLE 委 E-TITLE , O 公 B-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 同 O 时 O 兼 O 任 O 中 B-ORG 国 M-ORG 旅 M-ORG 游 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 旅 M-ORG 游 M-ORG 景 M-ORG 区 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 上 M-ORG 市 M-ORG 公 M-ORG 司 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 上 M-ORG 市 M-ORG 公 M-ORG 司 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 质 M-ORG 量 M-ORG 强 M-ORG 市 M-ORG 促 M-ORG 进 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 暨 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 深 M-ORG 圳 M-ORG 旅 M-ORG 游 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 。 O 杨 B-NAME 永 M-NAME 圣 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 4 O 年 O 9 O 月 O 出 O 生 O , O 湖 B-LOC 南 M-LOC 汉 M-LOC 寿 M-LOC 人 E-LOC , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 毕 O 业 O , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O , O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 直 M-ORG 属 M-ORG 粮 M-ORG 食 M-ORG 企 M-ORG 业 M-ORG 生 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 指 M-ORG 导 M-ORG 办 M-ORG 公 M-ORG 室 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 至 O 今 O , O 任 O 湖 B-ORG 南 M-ORG 粮 M-ORG 食 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 至 O 今 O , O 任 O 金 B-ORG 健 M-ORG 米 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 袁 B-NAME 会 M-NAME 琼 E-NAME ( O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE ) O : O 女 O , O 1 O 9 O 8 O 0 O 年 O 5 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 0 O 4 O 年 O 0 O 3 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 2 O 月 O , O 任 O 职 O 于 O 翔 B-ORG 宇 M-ORG 鞋 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 2 O 0 O 0 O 6 O 年 O 0 O 2 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 5 O 月 O , O 任 O 职 O 于 O 南 B-ORG 通 M-ORG 特 M-ORG 伟 M-ORG 箱 M-ORG 包 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 2 O 0 O 0 O 6 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O , O 任 O 欣 B-ORG 旺 M-ORG 达 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 3 O 月 O , O 任 O 欣 B-ORG 旺 M-ORG 达 E-ORG 采 B-TITLE 购 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O , O 任 O 欣 B-ORG 旺 M-ORG 达 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 1 O 月 O 至 O 今 O , O 任 O 欣 B-ORG 旺 M-ORG 达 E-ORG 秘 B-TITLE 书 M-TITLE 处 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 欣 B-ORG 旺 M-ORG 达 E-ORG 监 B-TITLE 事 E-TITLE 。 O 夏 B-NAME 茂 E-NAME 先 O 生 O , O 曾 O 任 O 安 B-ORG 凯 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 安 B-ORG 徽 M-ORG 省 M-ORG 化 M-ORG 工 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 兰 B-ORG 德 M-ORG 电 M-ORG 器 M-ORG 科 M-ORG 技 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 浦 B-ORG 发 M-ORG 机 M-ORG 电 M-ORG 制 M-ORG 造 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 合 B-ORG 肥 M-ORG 科 M-ORG 创 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 合 B-ORG 肥 M-ORG 市 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 风 M-ORG 险 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 湖 B-ORG 北 M-ORG 广 M-ORG 济 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 孟 B-NAME 建 M-NAME 立 E-NAME 先 O 生 O , O 1 O 9 O 8 O 5 O 年 O 6 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 2 O 0 O 1 O 1 O 年 O 毕 O 业 O 于 O 海 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 1 O 1 O 年 O 6 O 月 O 至 O 今 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 聚 M-ORG 飞 M-ORG 光 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 务 M-TITLE 专 M-TITLE 员 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 聚 M-ORG 飞 M-ORG 光 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 林 B-NAME 义 M-NAME 相 E-NAME 先 O 生 O : O 男 O , O 1 O 9 O 6 O 4 O 年 O 1 O 月 O 出 O 生 O , O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 0 O 起 O 任 O 中 B-ORG 国 M-ORG 证 M-ORG 券 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 1 O . O 3 O 月 O - O 今 O , O 天 B-ORG 相 M-ORG 投 M-ORG 资 M-ORG 顾 M-ORG 问 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O . O 6 O 月 O - O 今 O , O 注 B-ORG 册 M-ORG 国 M-ORG 际 M-ORG 投 M-ORG 资 M-ORG 分 M-ORG 析 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG ( O A B-ORG C M-ORG I M-ORG I M-ORG A E-ORG ) O 主 B-TITLE 席 E-TITLE ; O 2 O 0 O 1 O 3 O . O 1 O 0 O - O 今 O , O 太 B-ORG 钢 M-ORG 不 M-ORG 锈 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 姚 B-NAME 长 M-NAME 清 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 6 O 5 O 年 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 吉 B-NAME 冬 M-NAME 梅 E-NAME , O 女 O , O 1 O 9 O 7 O 3 O 年 O 生 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU 。 O 先 O 后 O 任 O 职 O 益 B-ORG 世 M-ORG 咨 M-ORG 询 M-ORG ( M-ORG 中 M-ORG 国 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 、 O 东 B-ORG 方 M-ORG 国 M-ORG 际 M-ORG 创 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 海 B-ORG 通 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 投 M-ORG 资 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 部 M-ORG 及 M-ORG 国 M-ORG 际 M-ORG 业 M-ORG 务 M-ORG 部 E-ORG 。 O 2 O 0 O 0 O 4 O 年 O 1 O 0 O 月 O 起 O 加 O 盟 O 海 B-ORG 富 M-ORG 产 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 投 B-TITLE 资 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE , O 为 O 担 O 任 O 中 B-ORG 比 M-ORG 基 M-ORG 金 E-ORG 投 O 资 O 的 O 金 B-ORG 风 M-ORG 科 M-ORG 技 E-ORG 、 O 宁 B-ORG 波 M-ORG 摩 M-ORG 士 E-ORG 、 O 海 B-ORG 利 M-ORG 得 E-ORG 、 O 浙 B-ORG 江 M-ORG 双 M-ORG 箭 E-ORG 、 O 国 B-ORG 德 M-ORG 电 M-ORG 气 E-ORG 等 O 项 O 目 O 的 O 负 B-TITLE 责 M-TITLE 人 E-TITLE 。 O 王 B-NAME 焕 M-NAME 然 E-NAME 先 O 生 O : O 1 O 9 O 5 O 7 O 年 O 出 O 生 O , O 本 B-EDU 科 E-EDU 。 O 曾 O 任 O 合 B-ORG 肥 M-ORG 新 M-ORG 华 M-ORG 书 M-ORG 店 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 安 B-ORG 徽 M-ORG 新 M-ORG 华 M-ORG 发 M-ORG 行 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 安 B-ORG 徽 M-ORG 新 M-ORG 华 M-ORG 传 M-ORG 媒 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 获 O 2 O 0 O 1 O 1 O 年 O 安 O 徽 O 省 O 宣 O 传 O 文 O 化 O 系 O 统 O “ O 六 O 个 O 一 O 批 O ” O 文 O 化 O 产 O 业 O 经 O 营 O 管 O 理 O 拔 O 尖 O 人 O 才 O 。 O 许 B-NAME 炎 M-NAME 平 E-NAME : O 男 O , O 1 O 9 O 5 O 9 O 年 O 1 O 0 O 月 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 燕 M-ORG 京 M-ORG 惠 M-ORG 泉 M-ORG 啤 M-ORG 酒 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 燕 M-ORG 京 M-ORG 惠 M-ORG 泉 M-ORG 啤 M-ORG 酒 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 5 O 年 O 被 O 授 O 予 O “ O 全 B-TITLE 国 M-TITLE 劳 M-TITLE 动 M-TITLE 模 M-TITLE 范 E-TITLE ” O 。 O 仇 B-NAME 成 M-NAME 丰 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 7 O 7 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 、 O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 海 B-ORG 通 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 员 E-TITLE 、 O 广 B-ORG 东 M-ORG 永 M-ORG 怡 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 东 B-ORG 方 M-ORG 日 M-ORG 升 M-ORG 证 M-ORG 券 E-ORG 事 B-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 1 O 0 O 月 O 起 O 就 O 职 O 于 O 东 B-ORG 方 M-ORG 日 M-ORG 升 E-ORG , O 现 O 任 O 东 B-ORG 方 M-ORG 日 M-ORG 升 E-ORG 董 B-TITLE 事 E-TITLE 、 O 东 B-ORG 方 M-ORG 日 M-ORG 升 M-ORG ( M-ORG 宁 M-ORG 波 M-ORG ) M-ORG 电 M-ORG 力 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 东 B-ORG 方 M-ORG 日 M-ORG 升 M-ORG ( M-ORG 郧 M-ORG 县 M-ORG ) M-ORG 光 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 浙 B-ORG 江 M-ORG 双 M-ORG 宇 M-ORG 电 M-ORG 子 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 天 M-NAME 立 E-NAME : O 现 O 任 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 重 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 军 B-TITLE 工 M-TITLE 专 M-TITLE 家 M-TITLE 咨 M-TITLE 询 M-TITLE 委 M-TITLE 主 M-TITLE 任 E-TITLE , O 中 B-ORG 国 M-ORG 第 M-ORG 一 M-ORG 重 M-ORG 型 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 中 B-ORG 国 M-ORG 恒 M-ORG 天 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE , O 中 B-ORG 国 M-ORG 兵 M-ORG 器 M-ORG 装 M-ORG 备 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE ; O 曾 O 任 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 重 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 韩 B-NAME 公 M-NAME 博 E-NAME 先 O 生 O : O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 至 O 今 O 服 O 务 O 于 O 康 B-ORG 力 M-ORG 电 M-ORG 梯 E-ORG , O 现 O 任 O 康 B-ORG 力 M-ORG 电 M-ORG 梯 M-ORG 销 M-ORG 售 M-ORG 中 M-ORG 心 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 文 M-NAME 华 E-NAME : O 2 O 0 O 0 O 6 O 年 O 8 O 月 O - O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O , O 湖 B-ORG 北 M-ORG 人 M-ORG 民 M-ORG 出 M-ORG 版 M-ORG 社 E-ORG 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 至 O 今 O , O 湖 B-ORG 北 M-ORG 人 M-ORG 民 M-ORG 出 M-ORG 版 M-ORG 社 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 蒋 B-NAME 吉 M-NAME 军 E-NAME : O 男 O , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 1 O 1 O 月 O 任 O 公 B-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 任 O 公 B-ORG 司 E-ORG 煤 B-TITLE 化 M-TITLE 工 M-TITLE 项 M-TITLE 目 M-TITLE 指 M-TITLE 挥 M-TITLE 部 M-TITLE 副 M-TITLE 指 M-TITLE 挥 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 8 O 月 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 符 B-NAME 冬 E-NAME , O 男 O , O 1 O 9 O 6 O 9 O 年 O 1 O 月 O 生 O , O 1 O 9 O 9 O 1 O 年 O 参 O 加 O 工 O 作 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 同 B-ORG 济 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 历 O 任 O 黑 B-ORG 牡 M-ORG 丹 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 前 B-TITLE 织 M-TITLE 车 M-TITLE 间 M-TITLE 染 M-TITLE 色 M-TITLE 值 M-TITLE 车 M-TITLE 工 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 常 B-ORG 州 M-ORG 服 M-ORG 装 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 常 B-ORG 州 M-ORG 大 M-ORG 成 M-ORG 纺 M-ORG 织 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 等 O 职 O 。 O 2 O 0 O 0 O 1 O 年 O 5 O 月 O 起 O , O 任 O 常 B-ORG 州 M-ORG 纺 M-ORG 织 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 孙 B-NAME 茜 E-NAME 女 O 士 O , O 加 B-CONT 拿 M-CONT 大 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 9 O 年 O 7 O 月 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 大 M-ORG 学 M-ORG 生 M-ORG 物 M-ORG 系 E-ORG 。 O 1 O 9 O 8 O 9 O 年 O 1 O 1 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 1 O 2 O 月 O 任 O 职 O 于 O 爱 B-ORG 博 M-ORG 生 M-ORG 化 M-ORG 制 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 担 O 任 O 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 3 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O , O 任 O 职 O 于 O 威 B-ORG 海 M-ORG 利 M-ORG 德 M-ORG 尔 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 担 O 任 O 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 至 O 2 O 0 O 0 O 9 O 年 O 7 O 月 O , O 担 O 任 O 北 B-ORG 京 M-ORG 利 M-ORG 德 M-ORG 曼 M-ORG 生 M-ORG 化 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 至 O 今 O , O 担 O 任 O 北 B-ORG 京 M-ORG 迈 M-ORG 迪 M-ORG 卡 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 7 O 月 O 至 O 今 O , O 担 O 任 O 北 B-ORG 京 M-ORG 利 M-ORG 德 M-ORG 曼 M-ORG 生 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 冯 B-NAME 冠 M-NAME 平 E-NAME , O 男 O , O 1 O 9 O 4 O 6 O 年 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 科 M-ORG 技 M-ORG 处 E-ORG 处 B-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 清 M-ORG 华 M-ORG 大 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 院 M-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 清 M-ORG 华 M-ORG 大 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 校 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 校 M-ORG 务 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 深 B-ORG 圳 M-ORG 清 M-ORG 华 M-ORG 大 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 飞 M-ORG 乐 M-ORG 音 M-ORG 响 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 力 M-ORG 合 M-ORG 天 M-ORG 使 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 方 B-NAME 琳 E-NAME : O 女 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 营 M-TITLE 师 E-TITLE 。 O 历 O 任 O 湖 B-ORG 北 M-ORG 省 M-ORG 纺 M-ORG 织 M-ORG 品 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 武 B-ORG 汉 M-ORG 纺 M-ORG 织 M-ORG 品 M-ORG 批 M-ORG 发 M-ORG 站 E-ORG 财 B-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 武 B-ORG 汉 M-ORG 市 M-ORG 工 M-ORG 业 M-ORG 品 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 武 B-ORG 汉 M-ORG 四 M-ORG 茂 M-ORG 纺 M-ORG 织 M-ORG 站 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 武 B-ORG 汉 M-ORG 武 M-ORG 商 M-ORG 量 M-ORG 贩 M-ORG 连 M-ORG 锁 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 武 B-ORG 商 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 冯 B-NAME 元 M-NAME 发 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 4 O 年 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 人 M-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 管 M-TITLE 理 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 6 O 年 O 7 O 月 O 至 O 1 O 9 O 8 O 7 O 年 O 9 O 月 O 于 O 郴 B-ORG 州 M-ORG 市 M-ORG 副 M-ORG 食 M-ORG 品 M-ORG 公 M-ORG 司 E-ORG 任 O 计 B-TITLE 划 M-TITLE 员 E-TITLE ; O 1 O 9 O 8 O 7 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 8 O 9 O 年 O 1 O 1 O 月 O 于 O 郴 B-ORG 州 M-ORG 市 M-ORG 建 M-ORG 设 M-ORG 银 M-ORG 行 E-ORG 任 O 会 B-TITLE 计 E-TITLE ; O 1 O 9 O 8 O 9 O 年 O 1 O 2 O 月 O 至 O 1 O 9 O 9 O 6 O 年 O 1 O 0 O 月 O 任 O 北 B-ORG 湖 M-ORG 区 M-ORG 建 M-ORG 设 M-ORG 银 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 6 O 年 O 1 O 1 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 9 O 月 O 任 O 郴 B-ORG 州 M-ORG 市 M-ORG 高 M-ORG 等 M-ORG 级 M-ORG 公 M-ORG 路 M-ORG 指 M-ORG 挥 M-ORG 部 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 4 O 月 O 任 O 郴 B-ORG 州 M-ORG 市 M-ORG 建 M-ORG 设 M-ORG 银 M-ORG 行 E-ORG 贷 B-TITLE 款 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 至 O 2 O 0 O 0 O 8 O 年 O 任 O 郴 B-ORG 州 M-ORG 市 M-ORG 金 M-ORG 贵 M-ORG 银 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 0 O 月 O 任 O 公 B-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 今 O 任 O 郴 B-ORG 州 M-ORG 市 M-ORG 金 M-ORG 贵 M-ORG 银 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 赵 B-NAME 文 M-NAME 权 E-NAME 先 O 生 O , O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 0 O 年 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 历 O 任 O 路 B-ORG 村 M-ORG 咨 M-ORG 询 M-ORG 策 M-ORG 划 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 雅 B-ORG 宝 M-ORG 拍 M-ORG 卖 M-ORG 网 E-ORG 首 B-TITLE 席 M-TITLE 运 M-TITLE 营 M-TITLE 官 E-TITLE , O 并 O 担 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 公 M-ORG 共 M-ORG 关 M-ORG 系 M-ORG 协 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE , O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 公 M-ORG 共 M-ORG 关 M-ORG 系 M-ORG 协 M-ORG 会 M-ORG 公 M-ORG 关 M-ORG 公 M-ORG 司 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 2 O 0 O 0 O 7 O 年 O 、 O 2 O 0 O 0 O 8 O 年 O 年 B-TITLE 度 M-TITLE 主 M-TITLE 任 E-TITLE , O 中 B-ORG 国 M-ORG 传 M-ORG 媒 M-ORG 大 M-ORG 学 E-ORG 董 B-TITLE 事 E-TITLE , O 北 B-ORG 京 M-ORG 2 M-ORG 0 M-ORG 0 M-ORG 8 M-ORG 年 M-ORG 奥 M-ORG 运 M-ORG 会 E-ORG 奥 B-TITLE 林 M-TITLE 匹 M-TITLE 克 M-TITLE 火 M-TITLE 炬 M-TITLE 接 M-TITLE 力 M-TITLE 火 M-TITLE 炬 M-TITLE 手 E-TITLE ; O 1 O 9 O 9 O 6 O 至 O 1 O 9 O 9 O 9 O 年 O , O 以 O 及 O 2 O 0 O 0 O 3 O 至 O 2 O 0 O 0 O 7 O 年 O 任 O 蓝 B-ORG 色 M-ORG 光 M-ORG 标 E-ORG 公 B-TITLE 共 M-TITLE 关 M-TITLE 系 M-TITLE 机 M-TITLE 构 M-TITLE 首 M-TITLE 席 M-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 至 O 今 O 任 O 蓝 B-ORG 色 M-ORG 光 M-ORG 标 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 起 O 担 O 任 O 有 B-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 起 O 担 O 任 O 蓝 B-ORG 色 M-ORG 光 M-ORG 标 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 至 O 今 O 。 O 何 B-NAME 刚 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 浙 B-ORG 江 M-ORG 省 M-ORG 丝 M-ORG 绸 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 直 B-TITLE 属 M-TITLE 企 M-TITLE 业 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 办 M-TITLE 会 M-TITLE 计 E-TITLE , O 杭 B-ORG 州 M-ORG 网 M-ORG 通 M-ORG 信 M-ORG 息 M-ORG 港 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 华 B-ORG 夏 M-ORG 视 M-ORG 联 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 华 B-ORG 数 M-ORG 传 M-ORG 媒 M-ORG 网 M-ORG 络 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 华 B-ORG 数 M-ORG 传 M-ORG 媒 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 何 B-NAME 梅 M-NAME 芬 E-NAME : O 女 O , O 1 O 9 O 6 O 4 O 年 O 5 O 月 O 出 O 生 O 。 O 东 B-ORG 北 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 金 B-PRO 属 M-PRO 压 M-PRO 力 M-PRO 加 M-PRO 工 M-PRO 专 M-PRO 业 E-PRO 本 B-EDU 科 E-EDU 毕 O 业 O , O 香 B-ORG 港 M-ORG 中 M-ORG 文 M-ORG 大 M-ORG 学 E-ORG 专 B-PRO 业 M-PRO 会 M-PRO 计 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 现 O 任 O 宝 B-ORG 山 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 审 B-TITLE 计 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 宝 M-ORG 信 M-ORG 软 M-ORG 件 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 斌 E-NAME : O 男 O , O 1 O 9 O 7 O 4 O 年 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 上 B-ORG 海 M-ORG 振 M-ORG 华 M-ORG 重 M-ORG 工 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 质 B-TITLE 管 M-TITLE 部 M-TITLE 项 M-TITLE 目 M-TITLE 质 M-TITLE 量 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 质 B-TITLE 管 M-TITLE 部 M-TITLE 轮 M-TITLE 胎 M-TITLE 吊 M-TITLE 室 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 质 B-TITLE 管 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 质 B-ORG 检 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 质 B-TITLE 量 M-TITLE 安 M-TITLE 全 M-TITLE 办 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 质 B-TITLE 量 M-TITLE 安 M-TITLE 全 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 监 B-TITLE 事 E-TITLE 等 O 职 O 。 O 现 O 任 O 上 B-ORG 海 M-ORG 振 M-ORG 华 M-ORG 重 M-ORG 工 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 振 M-ORG 华 M-ORG 船 M-ORG 运 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 文 M-NAME 兴 E-NAME : O 1 O 9 O 5 O 8 O 年 O 8 O 月 O 出 O 生 O , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 李 S-NAME 先 O 生 O 自 O 1 O 9 O 9 O 9 O 年 O 7 O 月 O 至 O 今 O , O 历 O 任 O 北 B-ORG 京 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 会 B-TITLE 计 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 院 B-TITLE 党 M-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 北 B-ORG 京 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 中 M-ORG 国 M-ORG 交 M-ORG 通 M-ORG 运 M-ORG 输 M-ORG 价 M-ORG 格 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE ; O 国 B-ORG 家 M-ORG 政 M-ORG 府 M-ORG 价 M-ORG 格 M-ORG 工 M-ORG 作 M-ORG 专 M-ORG 家 M-ORG 咨 M-ORG 询 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 等 O 。 O 张 B-NAME 文 M-NAME 春 E-NAME 先 O 生 O , O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 先 O 后 O 在 O 东 B-ORG 北 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 和 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 政 M-ORG 金 M-ORG 融 M-ORG 系 E-ORG 学 O 习 O , O 分 O 别 O 获 O 得 O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 E-EDU 、 O 硕 B-EDU 士 E-EDU 、 O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 历 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 政 M-ORG 学 M-ORG 院 E-ORG 讲 B-TITLE 师 E-TITLE 、 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 政 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 教 M-TITLE 授 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 政 M-ORG 金 M-ORG 融 M-ORG 学 M-ORG 院 M-ORG 财 M-ORG 政 M-ORG 系 E-ORG 副 B-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE , O 副 B-TITLE 教 M-TITLE 授 E-TITLE 。 O 周 B-NAME 博 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 8 O 0 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 3 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 昆 B-ORG 山 M-ORG 新 M-ORG 宁 M-ORG 公 M-ORG 共 M-ORG 保 M-ORG 税 M-ORG 仓 M-ORG 储 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 O 务 O 部 O 、 O 苏 B-ORG 州 M-ORG 新 M-ORG 宁 M-ORG 公 M-ORG 共 M-ORG 保 M-ORG 税 M-ORG 仓 M-ORG 储 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 5 O 月 O 期 O 间 O 任 O 江 B-ORG 苏 M-ORG 新 M-ORG 宁 M-ORG 现 M-ORG 代 M-ORG 物 M-ORG 流 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE ; O 现 O 担 O 任 O 江 B-ORG 苏 M-ORG 新 M-ORG 宁 M-ORG 现 M-ORG 代 M-ORG 物 M-ORG 流 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 存 M-NAME 方 E-NAME : O 男 O , O 曾 O 任 O 福 B-ORG 成 M-ORG 酿 M-ORG 酒 M-ORG 公 M-ORG 司 E-ORG 任 O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 谢 B-NAME 敏 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 6 O 3 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 5 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O 。 O 曾 O 任 O 云 B-ORG 南 M-ORG 沾 M-ORG 益 M-ORG 化 M-ORG 肥 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 沾 B-ORG 化 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE ; O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE ; O 云 B-ORG 南 M-ORG 大 M-ORG 为 M-ORG 制 M-ORG 焦 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 云 B-ORG 南 M-ORG 泸 M-ORG 西 M-ORG 大 M-ORG 为 M-ORG 焦 M-ORG 化 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE ; O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 现 O 任 O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 范 B-NAME 五 M-NAME 亭 E-NAME 先 O 生 O , O 1 O 9 O 5 O 2 O 年 O 3 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 职 O 于 O 北 B-ORG 京 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 仪 M-ORG 器 M-ORG 仪 M-ORG 表 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 、 O 香 B-ORG 港 M-ORG 兴 M-ORG 华 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 香 B-ORG 港 M-ORG 艺 M-ORG 高 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 2 O 0 O 0 O 2 O 年 O 起 O 进 O 入 O 武 B-ORG 汉 M-ORG 高 M-ORG 德 M-ORG 光 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 2 O 0 O 0 O 6 O 年 O 起 O 任 O 公 B-ORG 司 E-ORG ( O 前 O 身 O 红 B-ORG 外 M-ORG 有 M-ORG 限 E-ORG ) O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 武 B-ORG 汉 M-ORG 高 M-ORG 德 M-ORG 红 M-ORG 外 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 前 B-ORG 视 M-ORG 远 M-ORG 景 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 寻 B-NAME 冬 M-NAME 生 E-NAME , O 1 O 9 O 5 O 8 O 年 O 5 O 月 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 湖 B-ORG 南 M-ORG 粮 M-ORG 油 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 湖 B-ORG 南 M-ORG 第 M-ORG 一 M-ORG 大 M-ORG 道 M-ORG 置 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 湖 B-ORG 南 M-ORG 百 M-ORG 岁 M-ORG 置 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 曾 O 任 O 长 B-ORG 沙 M-ORG 市 M-ORG 计 M-ORG 划 M-ORG 委 M-ORG 员 M-ORG 会 M-ORG 基 M-ORG 建 M-ORG 计 M-ORG 划 M-ORG 科 E-ORG 副 B-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 物 B-TITLE 资 M-TITLE 计 M-TITLE 划 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 湖 B-ORG 南 M-ORG 粮 M-ORG 油 E-ORG 基 B-TITLE 建 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 刘 B-NAME 孟 M-NAME 林 E-NAME 先 O 生 O , O 监 B-TITLE 事 E-TITLE 。 O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 集 B-ORG 团 M-ORG 公 M-ORG 司 E-ORG 规 B-TITLE 划 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 四 B-ORG 川 M-ORG 广 M-ORG 安 M-ORG 泰 M-ORG 丰 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 原 B-ORG 渠 M-ORG 江 M-ORG 电 M-ORG 力 E-ORG 证 B-TITLE 券 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 。 O 现 O 任 O 股 B-ORG 份 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 物 B-ORG 资 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 为 O 本 B-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 成 M-NAME 森 E-NAME 先 O 生 O : O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 至 O 2 O 0 O 0 O 4 O 年 O 任 O 北 B-ORG 京 M-ORG 城 M-ORG 市 M-ORG 开 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 任 O 北 B-ORG 京 M-ORG 城 M-ORG 市 M-ORG 开 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 现 O 任 O 北 B-ORG 京 M-ORG 首 M-ORG 都 M-ORG 开 M-ORG 发 M-ORG 控 M-ORG 股 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 置 B-TITLE 业 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 市 M-TITLE 场 M-TITLE 总 M-TITLE 监 E-TITLE 董 B-NAME 焱 E-NAME , O 女 O , O 群 B-TITLE 众 E-TITLE , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 国 B-TITLE 家 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 天 B-ORG 津 M-ORG 泰 M-ORG 达 M-ORG 城 M-ORG 市 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 职 M-TITLE 员 E-TITLE 、 O 主 B-TITLE 管 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 泰 M-ORG 达 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 风 B-TITLE 险 M-TITLE 控 M-TITLE 制 M-TITLE 中 M-TITLE 心 M-TITLE 合 M-TITLE 规 M-TITLE 内 M-TITLE 审 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 郭 B-NAME 丽 E-NAME 女 O 士 O : O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 最 O 近 O 五 O 年 O 任 O 大 B-ORG 恒 M-ORG 科 M-ORG 技 E-ORG 企 B-TITLE 管 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 监 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 煊 E-NAME : O 男 O , O 1 O 9 O 7 O 3 O 年 O 6 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 近 O 五 O 年 O 一 O 直 O 在 O 江 B-ORG 苏 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 E-ORG 任 O 高 B-TITLE 级 M-TITLE 投 M-TITLE 资 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 5 O 月 O 至 O 今 O 任 O 康 B-ORG 达 M-ORG 新 M-ORG 材 E-ORG 董 B-TITLE 事 E-TITLE 。 O 王 B-NAME 兆 M-NAME 君 E-NAME , O 男 O , O 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 历 O 任 O 东 B-ORG 北 M-ORG 林 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 校 B-TITLE 党 M-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 现 O 任 O 青 B-ORG 岛 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 农 M-ORG 林 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 刘 B-NAME 近 M-NAME 荣 E-NAME 先 O 生 O , O 1 O 9 O 5 O 7 O 年 O 3 O 月 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 主 B-TITLE 管 M-TITLE 药 M-TITLE 师 E-TITLE , O 现 O 任 O 泰 B-ORG 盛 M-ORG 制 M-ORG 药 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 刘 S-NAME 先 O 生 O 于 O 1 O 9 O 8 O 0 O 年 O 至 O 1 O 9 O 9 O 5 O 年 O 任 O 职 O 于 O 大 B-ORG 同 M-ORG 市 M-ORG 利 M-ORG 群 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG , O 历 O 任 O 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 5 O 年 O 加 O 入 O 泰 B-ORG 盛 M-ORG 制 M-ORG 药 E-ORG , O 历 O 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 由 O 其 O 主 O 持 O 的 O 曲 O 颈 O 易 O 折 O 安 O 瓶 O 拉 O 丝 O 灌 O 封 O 工 O 艺 O 改 O 造 O 曾 O 获 O 大 O 同 O 市 O 科 O 学 O 技 O 术 O 进 O 步 O 二 O 等 O 奖 O , O 大 O 剂 O 量 O 5 O 0 O m O g O 亚 O 叶 O 酸 O 钙 O 生 O 产 O 新 O 工 O 艺 O 获 O 大 O 同 O 市 O 科 O 学 O 技 O 术 O 进 O 步 O 一 O 等 O 奖 O 。 O 刘 S-NAME 先 O 生 O 曾 O 于 O 1 O 9 O 9 O 3 O 年 O 荣 O 获 O 大 O 同 O 市 O 劳 O 动 O 模 O 范 O 称 O 号 O ; O 2 O 0 O 0 O 3 O 年 O 由 O 山 O 西 O 省 O 社 O 会 O 主 O 义 O 劳 O 动 O 竞 O 赛 O 委 O 员 O 会 O 授 O 予 O 二 O 等 O 功 O 嘉 O 奖 O ; O 2 O 0 O 0 O 5 O 年 O 荣 O 获 O 山 O 西 O 省 O 五 O 一 O 劳 O 动 O 奖 O 章 O 称 O 号 O 。 O 2 O 0 O 1 O 2 O 年 O 评 O 为 O 大 O 同 O 市 O “ O 优 O 秀 O 人 O 才 O ” O 。 O 彭 B-NAME 伟 M-NAME 哲 E-NAME , O 男 O , O 1 O 9 O 7 O 3 O 年 O 2 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 副 B-TITLE 编 M-TITLE 审 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 7 O 月 O 起 O 历 O 任 O 辽 B-ORG 宁 M-ORG 美 M-ORG 术 M-ORG 出 M-ORG 版 M-ORG 社 E-ORG 编 B-TITLE 辑 E-TITLE 、 O 编 B-TITLE 辑 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 编 M-TITLE 辑 E-TITLE 兼 O 《 B-ORG 美 M-ORG 术 M-ORG 大 M-ORG 观 M-ORG 》 M-ORG 杂 M-ORG 志 E-ORG 执 B-TITLE 行 M-TITLE 主 M-TITLE 编 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 8 O 月 O 至 O 今 O 兼 O 任 O 出 B-TITLE 版 M-TITLE 传 M-TITLE 媒 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 孙 B-NAME 喆 M-NAME 浩 E-NAME , O 男 O , O 1 O 9 O 7 O 7 O 年 O 7 O 月 O 6 O 日 O 出 O 生 O , O 1 O 9 O 9 O 9 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 上 B-ORG 海 M-ORG 华 M-ORG 谊 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 上 B-ORG 海 M-ORG 三 M-ORG 爱 M-ORG 富 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 上 B-ORG 海 M-ORG 巴 M-ORG 斯 M-ORG 夫 M-ORG 聚 M-ORG 氨 M-ORG 酯 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 曙 M-NAME 光 E-NAME , O 男 O , O 1 O 9 O 5 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 担 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 宾 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 生 O 于 O 1 O 9 O 7 O 0 O 年 O 1 O 1 O 月 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 6 O 年 O - O 1 O 9 O 9 O 8 O 年 O 在 O 西 B-ORG 安 M-ORG 电 M-ORG 视 M-ORG 台 M-ORG 《 M-ORG 证 M-ORG 券 M-ORG 天 M-ORG 地 M-ORG 》 M-ORG 栏 M-ORG 目 E-ORG 担 O 任 O 主 B-TITLE 持 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O - O 2 O 0 O 0 O 1 O 年 O 在 O 北 B-ORG 京 M-ORG 均 M-ORG 利 M-ORG ( M-ORG 国 M-ORG 际 M-ORG ) M-ORG 实 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O ; O 2 O 0 O 0 O 2 O 年 O - O 2 O 0 O 0 O 4 O 年 O 在 O 西 B-ORG 安 M-ORG 鼎 M-ORG 天 M-ORG 济 M-ORG 农 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O ; O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 至 O 今 O 在 O 铜 B-ORG 城 M-ORG 集 M-ORG 团 E-ORG 任 O 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 童 B-NAME 志 M-NAME 胜 E-NAME , O 男 O , O 1 O 9 O 7 O 6 O 年 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 进 O 入 O 海 B-ORG 航 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 历 O 任 O 长 B-ORG 江 M-ORG 租 M-ORG 赁 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 天 B-ORG 津 M-ORG 渤 M-ORG 海 M-ORG 租 M-ORG 赁 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 浦 B-ORG 航 M-ORG 租 M-ORG 赁 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 兼 O 任 O 浦 B-ORG 航 M-ORG 租 M-ORG 赁 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 及 O 横 B-ORG 琴 M-ORG 国 M-ORG 际 M-ORG 融 M-ORG 资 M-ORG 租 M-ORG 赁 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 邱 B-NAME 政 E-NAME 先 O 生 O : O 1 O 9 O 7 O 2 O 年 O 6 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 双 O 专 O 业 O 。 O 历 O 任 O 妮 B-ORG 维 M-ORG 雅 M-ORG ( M-ORG 上 M-ORG 海 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 成 B-TITLE 都 M-TITLE 销 M-TITLE 售 M-TITLE 主 M-TITLE 管 E-TITLE , O 成 B-ORG 都 M-ORG 明 M-ORG 霞 M-ORG 事 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 销 B-TITLE 售 M-TITLE 一 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 美 B-ORG 晨 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 大 B-TITLE 华 M-TITLE 西 M-TITLE 7 M-TITLE 省 M-TITLE 区 M-TITLE 域 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 恒 B-ORG 康 M-ORG 医 M-ORG 疗 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 日 B-ORG 化 E-ORG 事 B-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 邱 B-NAME 政 E-NAME 先 O 生 O 在 O 商 O 业 O 快 O 消 O 行 O 业 O 、 O 口 O 腔 O 行 O 业 O 拥 O 有 O 丰 O 富 O 的 O 工 O 作 O 经 O 验 O 。 O 杨 B-NAME 春 M-NAME 枝 E-NAME , O 女 O , O 汉 B-RACE 族 E-RACE , O 出 O 生 O 于 O 1 O 9 O 5 O 3 O 年 O 1 O 2 O 月 O 1 O 1 O 日 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 专 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 伊 B-ORG 春 M-ORG 市 M-ORG 消 M-ORG 防 M-ORG 器 M-ORG 材 M-ORG 厂 E-ORG 会 B-TITLE 计 E-TITLE 、 O 伊 B-ORG 春 M-ORG 光 M-ORG 明 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 营 M-TITLE 部 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 伊 B-ORG 春 M-ORG 光 M-ORG 明 M-ORG 家 M-ORG 具 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 M-TITLE 师 E-TITLE 、 O 光 B-ORG 明 M-ORG 集 M-ORG 团 M-ORG 家 M-ORG 具 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 伊 B-ORG 春 M-ORG 青 M-ORG 峰 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 伊 B-ORG 春 M-ORG 青 M-ORG 山 M-ORG 木 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 顾 B-NAME 建 M-NAME 国 E-NAME 先 O 生 O : O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 正 B-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 马 B-ORG 钢 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 顾 S-NAME 先 O 生 O 1 O 9 O 9 O 3 O 年 O 9 O 月 O 起 O 出 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 5 O 年 O 7 O 月 O 起 O 出 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 6 O 月 O 出 O 任 O 马 B-ORG 钢 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 7 O 月 O 出 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 8 O 年 O 9 O 月 O 马 B-ORG 钢 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 改 O 制 O 为 O 马 B-ORG 钢 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 顾 S-NAME 先 O 生 O 出 O 任 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 顾 S-NAME 先 O 生 O 1 O 9 O 9 O 9 O 年 O 9 O 月 O 不 O 再 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 何 B-NAME 次 M-NAME 琴 E-NAME 女 O 士 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 河 B-ORG 北 M-ORG 省 M-ORG 邯 M-ORG 郸 M-ORG 地 M-ORG 区 M-ORG ( M-ORG 市 M-ORG ) M-ORG 商 M-ORG 业 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 江 B-ORG 苏 M-ORG 省 M-ORG 冶 M-ORG 金 M-ORG 厅 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 等 O 职 O , O 现 O 为 O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 。 O 有 O 着 O 丰 O 富 O 的 O 企 O 业 O 财 O 务 O 管 O 理 O 经 O 验 O 。 O 赵 B-NAME 黎 M-NAME 明 E-NAME : O 男 O , O 1 O 9 O 5 O 1 O 年 O 出 O 生 O , O 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 历 O 任 O 天 B-ORG 津 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 等 O 职 O ; O 现 O 任 O 天 B-ORG 津 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 天 B-ORG 津 M-ORG 大 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 经 M-ORG 济 M-ORG 及 M-ORG 管 M-ORG 理 M-ORG 博 M-ORG 士 M-ORG 点 E-ORG 学 B-TITLE 术 M-TITLE 带 M-TITLE 头 M-TITLE 人 E-TITLE , O 天 B-ORG 津 M-ORG 市 M-ORG 技 M-ORG 术 M-ORG 经 M-ORG 济 M-ORG 与 M-ORG 管 M-ORG 理 M-ORG 现 M-ORG 代 M-ORG 化 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 颁 O 发 O 的 O 政 O 府 O 特 O 殊 O 津 O 贴 O ; O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O ================================================ FILE: named_entity_recognition/ResumeNER/test.char.bmes ================================================ 常 B-NAME 建 M-NAME 良 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 工 B-PRO 科 E-PRO 学 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 北 B-ORG 京 M-ORG 物 M-ORG 资 M-ORG 学 M-ORG 院 E-ORG 客 B-TITLE 座 M-TITLE 副 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 1 O 9 O 8 O 5 O 年 O 8 O 月 O — O 1 O 9 O 9 O 3 O 年 O 在 O 国 B-ORG 家 M-ORG 物 M-ORG 资 M-ORG 局 E-ORG 、 O 物 B-ORG 资 M-ORG 部 E-ORG 、 O 国 B-ORG 内 M-ORG 贸 M-ORG 易 M-ORG 部 M-ORG 金 M-ORG 属 M-ORG 材 M-ORG 料 M-ORG 流 M-ORG 通 M-ORG 司 E-ORG 从 O 事 O 国 O 家 O 统 O 配 O 钢 O 材 O 中 O 特 O 种 O 钢 O 材 O 品 O 种 O 的 O 全 O 国 O 调 O 拔 O 分 O 配 O 工 O 作 O , O 先 O 后 O 任 O 科 B-TITLE 员 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE 、 O 主 B-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 5 O 月 O — O 1 O 9 O 9 O 9 O 年 O 5 O 月 O 受 O 国 B-ORG 内 M-ORG 贸 M-ORG 易 M-ORG 部 E-ORG 委 O 派 O 到 O 国 B-ORG 内 M-ORG 贸 M-ORG 易 M-ORG 部 E-ORG 、 O 冶 B-ORG 金 M-ORG 部 E-ORG 、 O 天 B-ORG 津 M-ORG 市 M-ORG 政 M-ORG 府 M-ORG 共 M-ORG 同 M-ORG 领 M-ORG 导 M-ORG 组 M-ORG 建 M-ORG 的 M-ORG 北 M-ORG 洋 M-ORG ( M-ORG 天 M-ORG 津 M-ORG ) M-ORG 钢 M-ORG 材 M-ORG 批 M-ORG 发 M-ORG 交 M-ORG 易 M-ORG 市 M-ORG 场 E-ORG 任 O 理 B-TITLE 事 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 5 O 月 O — O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 任 O 天 B-ORG 津 M-ORG 一 M-ORG 德 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 5 O 月 O 任 O 天 B-ORG 津 M-ORG 一 M-ORG 德 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 陈 B-NAME 学 M-NAME 军 E-NAME 先 O 生 O : O 1 O 9 O 6 O 7 O 年 O 5 O 月 O 出 O 生 O , O 大 B-EDU 学 E-EDU 毕 O 业 O , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 6 O 年 O 7 O 月 O 进 O 入 O 无 B-ORG 锡 M-ORG 威 M-ORG 孚 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 历 O 任 O 公 B-ORG 司 E-ORG 采 B-TITLE 供 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 兼 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE , O 党 B-TITLE 委 M-TITLE 工 M-TITLE 作 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 。 O 无 B-ORG 锡 M-ORG 威 M-ORG 孚 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 五 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 第 B-TITLE 六 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 第 B-TITLE 七 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 大 B-ORG 股 M-ORG 东 M-ORG 无 M-ORG 锡 M-ORG 产 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 局 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 无 B-ORG 锡 M-ORG 威 M-ORG 孚 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 陈 B-NAME 栋 M-NAME 梁 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 中 B-ORG 航 M-ORG 供 M-ORG 销 M-ORG 汉 M-ORG 中 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE ( O 经 B-TITLE 理 E-TITLE ) O 、 O 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 汉 B-ORG 航 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 审 M-TITLE 计 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 中 B-ORG 航 M-ORG 工 M-ORG 业 M-ORG 长 M-ORG 空 M-ORG 精 M-ORG 密 M-ORG 机 M-ORG 械 M-ORG 制 M-ORG 造 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 兼 O 任 O 陕 B-ORG 西 M-ORG 华 M-ORG 燕 M-ORG 航 M-ORG 空 M-ORG 仪 M-ORG 表 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 陕 B-ORG 西 M-ORG 千 M-ORG 山 M-ORG 航 M-ORG 空 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 中 B-ORG 航 M-ORG 电 M-ORG 测 M-ORG 仪 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 韩 B-NAME 震 M-NAME 东 E-NAME : O 男 O , O 1 O 9 O 4 O 8 O 年 O 1 O 0 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 历 O 任 O 青 B-ORG 岛 M-ORG 海 M-ORG 尔 M-ORG 电 M-ORG 冰 M-ORG 箱 M-ORG 总 M-ORG 厂 E-ORG 生 B-TITLE 产 M-TITLE 技 M-TITLE 术 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 青 B-ORG 岛 M-ORG 海 M-ORG 尔 M-ORG 电 M-ORG 冰 M-ORG 柜 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 海 B-ORG 尔 M-ORG 集 M-ORG 团 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 现 O 任 O 海 B-ORG 尔 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 组 B-TITLE 织 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 青 B-ORG 岛 M-ORG 海 M-ORG 尔 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 张 B-NAME 克 M-NAME 勤 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 4 O 年 O 1 O 1 O 月 O 生 O , O 江 B-LOC 苏 M-LOC 如 M-LOC 皋 M-LOC 人 E-LOC , O 1 O 9 O 8 O 5 O 年 O 1 O 1 O 月 O 入 O 党 O , O 1 O 9 O 7 O 2 O 年 O 1 O 0 O 月 O 参 O 加 O 工 O 作 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 南 B-ORG 通 M-ORG 精 M-ORG 华 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 苏 B-NAME 洋 E-NAME : O 男 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 和 O 深 B-ORG 圳 M-ORG 市 M-ORG 汇 M-ORG 洋 M-ORG 企 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 曾 O 任 O 深 B-ORG 圳 M-ORG 岳 M-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 。 O 徐 B-NAME 献 M-NAME 礼 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 河 B-LOC 南 M-LOC 平 M-LOC 舆 M-LOC 人 E-LOC , O 1 O 9 O 6 O 0 O 年 O 3 O 月 O 出 O 生 O , O 1 O 9 O 7 O 9 O 年 O 9 O 月 O 参 O 加 O 工 O 作 O , O 1 O 9 O 9 O 0 O 年 O 6 O 月 O 加 O 入 O 中 B-ORG 国 M-ORG 共 M-ORG 产 M-ORG 党 E-ORG , O 研 B-EDU 究 M-EDU 生 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU ( O 新 B-ORG 疆 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO ) O , O 现 O 任 O 公 B-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 李 B-NAME 超 E-NAME , O 男 O , O 成 B-ORG 都 M-ORG 电 M-ORG 力 M-ORG 职 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 发 O 电 B-EDU 厂 M-EDU 及 M-EDU 电 M-EDU 力 M-EDU 系 M-EDU 统 M-EDU 专 M-EDU 业 E-EDU 毕 O 业 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 大 B-ORG 连 M-ORG 市 M-ORG 电 M-ORG 力 M-ORG 发 M-ORG 展 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 大 B-ORG 连 M-ORG 市 M-ORG 电 M-ORG 力 M-ORG 发 M-ORG 展 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 虞 B-NAME 兔 M-NAME 良 E-NAME 先 O 生 O : O 1 O 9 O 6 O 3 O 年 O 1 O 2 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 浙 B-LOC 江 M-LOC 绍 M-LOC 兴 M-LOC 人 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O M B-EDU B M-EDU A E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 虞 B-NAME 兔 M-NAME 良 E-NAME 先 O 生 O 于 O 1 O 9 O 8 O 9 O 年 O 至 O 1 O 9 O 9 O 4 O 年 O , O 任 O 浙 B-ORG 江 M-ORG 老 M-ORG 凤 M-ORG 祥 M-ORG 首 M-ORG 饰 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 至 O 1 O 9 O 9 O 5 O 年 O , O 任 O 浙 B-ORG 江 M-ORG 华 M-ORG 雅 M-ORG 金 M-ORG 银 M-ORG 珠 M-ORG 宝 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 5 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 2 O 月 O , O 任 O 日 B-ORG 月 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 3 O 月 O 至 O 今 O , O 任 O 日 B-ORG 月 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 5 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 明 M-ORG 牌 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 明 M-ORG 牌 M-ORG 珠 M-ORG 宝 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O 至 O 今 O , O 任 O 浙 B-ORG 江 M-ORG 明 M-ORG 牌 M-ORG 珠 M-ORG 宝 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 政 E-NAME 先 O 生 O , O 公 B-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 5 O 9 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 9 O 年 O 至 O 今 O , O 任 O 杭 B-ORG 州 M-ORG 巨 M-ORG 星 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 李 B-NAME 士 M-NAME 训 E-NAME , O 男 O , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 华 B-ORG 中 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 5 B-TITLE 级 M-TITLE 教 M-TITLE 育 M-TITLE 职 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 华 B-ORG 中 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 财 M-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 华 B-ORG 工 M-ORG 科 M-ORG 技 M-ORG 产 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 武 B-ORG 汉 M-ORG 华 M-ORG 工 M-ORG 正 M-ORG 源 M-ORG 光 M-ORG 子 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 华 B-ORG 工 M-ORG 科 M-ORG 技 M-ORG 产 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 五 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 召 M-TITLE 集 M-TITLE 人 E-TITLE 。 O 现 O 任 O 武 B-ORG 汉 M-ORG 华 M-ORG 中 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 产 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 武 B-ORG 汉 M-ORG 天 M-ORG 喻 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 华 B-ORG 工 M-ORG 科 M-ORG 技 M-ORG 产 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 召 M-TITLE 集 M-TITLE 人 E-TITLE 。 O 陈 B-NAME 启 M-NAME 卫 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 9 O 年 O 8 O 月 O 北 B-ORG 京 M-ORG 联 M-ORG 合 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 M-ORG 财 M-ORG 会 M-ORG 系 E-ORG 工 B-PRO 业 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO 本 B-EDU 科 E-EDU 毕 O 业 O , O 获 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 获 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 E-ORG ( O E B-EDU M M-EDU B M-EDU A E-EDU ) O , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 会 M-TITLE 计 M-TITLE 科 M-TITLE 职 M-TITLE 员 E-TITLE , O 中 B-ORG 化 M-ORG 伯 M-ORG 利 M-ORG 兹 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 财 M-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 会 M-TITLE 部 M-TITLE 投 M-TITLE 资 M-TITLE 科 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 化 M-ORG 国 M-ORG 际 M-ORG 实 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 石 M-ORG 油 M-ORG 中 M-ORG 心 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 化 B-ORG 肥 M-ORG 中 M-ORG 心 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 中 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 西 B-ORG 北 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 主 B-TITLE 任 E-TITLE 、 O 风 B-TITLE 险 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 保 B-TITLE 险 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 风 B-TITLE 险 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 中 B-ORG 化 M-ORG 蓝 M-ORG 天 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 浙 B-ORG 江 M-ORG 英 M-ORG 特 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 倩 E-NAME 女 O 士 O , O 女 O , O 1 O 9 O 7 O 8 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 历 O 任 O 公 B-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 乐 B-ORG 普 M-ORG 医 M-ORG 疗 E-ORG 采 B-TITLE 购 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 赫 B-NAME 崇 M-NAME 明 E-NAME , O 男 O , O 满 B-RACE 族 E-RACE , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 通 B-ORG 化 M-ORG 市 M-ORG 纸 M-ORG 箱 M-ORG 厂 E-ORG 供 B-TITLE 销 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 通 B-ORG 化 M-ORG 新 M-ORG 星 M-ORG 生 M-ORG 物 M-ORG 提 M-ORG 取 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 。 O 现 O 任 O 通 B-ORG 化 M-ORG 长 M-ORG 生 M-ORG 农 M-ORG 业 M-ORG 经 M-ORG 济 M-ORG 开 M-ORG 发 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 。 O 蔡 B-NAME 辉 M-NAME 益 E-NAME , O 男 O , O 金 B-ORG 新 M-ORG 农 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 重 B-LOC 庆 M-LOC 市 M-LOC 璧 M-LOC 山 M-LOC 县 M-LOC 人 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 博 B-EDU 士 E-EDU 毕 O 业 O ; O 美 B-ORG 国 M-ORG 明 M-ORG 尼 M-ORG 苏 M-ORG 达 M-ORG 大 M-ORG 学 E-ORG 博 B-TITLE 士 M-TITLE 后 E-TITLE ; O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 公 M-ORG 共 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG M B-EDU P M-EDU A E-EDU 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 饲 M-ORG 料 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 动 B-TITLE 物 M-TITLE 营 M-TITLE 养 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 所 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 所 B-TITLE 长 E-TITLE 。 O 2 O 0 O 1 O 4 O 年 O 2 O 月 O 2 O 8 O 日 O 辞 O 去 O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 职 O 务 O ( O 尚 O 未 O 生 O 效 O ) O 。 O 怀 B-NAME 进 M-NAME 鹏 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 2 O 月 O 任 O 北 B-ORG 京 M-ORG 航 M-ORG 空 M-ORG 航 M-ORG 天 M-ORG 大 M-ORG 学 E-ORG 副 B-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 校 M-TITLE 长 E-TITLE , O 现 O 任 O 北 B-ORG 京 M-ORG 航 M-ORG 空 M-ORG 航 M-ORG 天 M-ORG 大 M-ORG 学 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 校 M-TITLE 长 E-TITLE , O 国 B-TITLE 家 M-TITLE 8 M-TITLE 6 M-TITLE 3 M-TITLE 计 M-TITLE 划 M-TITLE 计 M-TITLE 算 M-TITLE 机 M-TITLE 技 M-TITLE 术 M-TITLE 主 M-TITLE 题 M-TITLE 首 M-TITLE 席 M-TITLE 科 M-TITLE 学 M-TITLE 家 E-TITLE , O 国 B-TITLE 家 M-TITLE 信 M-TITLE 息 M-TITLE 化 M-TITLE 专 M-TITLE 家 M-TITLE 咨 M-TITLE 询 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 成 M-TITLE 员 E-TITLE 。 O 于 B-NAME 学 M-NAME 东 E-NAME , O 男 O , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 先 O 后 O 任 O 沈 B-ORG 阳 M-ORG 热 M-ORG 电 M-ORG 厂 E-ORG 生 B-TITLE 技 M-TITLE 处 M-TITLE 专 M-TITLE 业 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 锅 O 炉 B-TITLE 分 M-TITLE 场 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 生 B-TITLE 技 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 沈 B-ORG 阳 M-ORG 金 M-ORG 山 M-ORG 热 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 金 B-ORG 山 M-ORG 热 M-ORG 电 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 沈 B-ORG 阳 M-ORG 金 M-ORG 山 M-ORG 热 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 金 B-ORG 山 M-ORG 热 M-ORG 电 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 沈 B-ORG 阳 M-ORG 金 M-ORG 山 M-ORG 热 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 南 B-ORG 票 M-ORG 劣 M-ORG 质 M-ORG 煤 M-ORG 热 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 沈 B-ORG 阳 M-ORG 金 M-ORG 山 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 丹 B-ORG 东 M-ORG 金 M-ORG 山 M-ORG 热 M-ORG 电 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 沈 B-ORG 阳 M-ORG 金 M-ORG 山 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 华 B-ORG 电 M-ORG 金 M-ORG 山 M-ORG 能 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 沈 B-ORG 阳 M-ORG 金 M-ORG 山 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 等 O 职 O 。 O 现 O 任 O 沈 B-ORG 阳 M-ORG 金 M-ORG 山 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 骆 B-NAME 飞 E-NAME 先 O 生 O : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 7 O 年 O 1 O 2 O 月 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 上 B-ORG 海 M-ORG 宝 M-ORG 鸟 M-ORG 服 M-ORG 饰 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 浙 B-ORG 江 M-ORG 报 M-ORG 喜 M-ORG 鸟 M-ORG 服 M-ORG 饰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 上 B-ORG 海 M-ORG 宝 M-ORG 鸟 M-ORG 服 M-ORG 饰 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 宝 M-ORG 鸟 M-ORG 纺 M-ORG 织 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 定 M-TITLE 代 M-TITLE 表 M-TITLE 人 E-TITLE 、 O 北 B-ORG 京 M-ORG 宝 M-ORG 鸟 M-ORG 服 M-ORG 饰 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 定 M-TITLE 代 M-TITLE 表 M-TITLE 人 E-TITLE 。 O 盛 B-NAME 志 M-NAME 豪 E-NAME , O 男 O , O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 石 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 公 B-TITLE 用 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 计 M-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 石 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 水 B-TITLE 厂 M-TITLE 财 M-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 石 M-ORG 化 M-ORG 水 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE , O 上 B-ORG 海 M-ORG 实 M-ORG 业 M-ORG 东 M-ORG 滩 M-ORG 投 M-ORG 资 M-ORG 开 M-ORG 发 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 廖 B-NAME 廷 M-NAME 建 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU , O 曾 O 任 O 北 B-ORG 京 M-ORG 城 M-ORG 建 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE , O 现 O 任 O 北 B-ORG 京 M-ORG 城 M-ORG 建 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 于 B-NAME 恩 M-NAME 军 E-NAME 先 O 生 O , O 1 O 9 O 6 O 9 O 年 O 1 O 1 O 月 O 出 O 生 O , O 硕 B-EDU 士 E-EDU 。 O 毕 O 业 O 于 O 甘 B-ORG 肃 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 和 O 中 B-ORG 欧 M-ORG 国 M-ORG 际 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 。 O 现 O 任 O T B-ORG C M-ORG L M-ORG 集 M-ORG 团 E-ORG 助 B-TITLE 理 M-TITLE 总 M-TITLE 裁 E-TITLE 及 O T B-ORG C M-ORG L M-ORG 通 M-ORG 讯 E-ORG 首 B-TITLE 席 M-TITLE 运 M-TITLE 营 M-TITLE 官 E-TITLE 、 O T B-ORG C M-ORG L M-ORG 财 M-ORG 务 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 等 O 职 O 务 O 。 O 于 B-NAME 恩 M-NAME 军 E-NAME 先 O 生 O 于 O 2 O 0 O 0 O 0 O 年 O 8 O 月 O 开 O 始 O 服 O 务 O 于 O 本 B-ORG 集 M-ORG 团 E-ORG 。 O 从 O 2 O 0 O 0 O 5 O 年 O 7 O 月 O 至 O 今 O 一 O 直 O 担 O 任 O T B-ORG C M-ORG L M-ORG 通 M-ORG 讯 M-ORG 科 M-ORG 技 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 运 M-TITLE 营 M-TITLE 官 E-TITLE , O 兼 O 任 O 翰 B-ORG 林 M-ORG 汇 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 并 O 于 O 2 O 0 O 0 O 6 O 年 O 9 O 月 O 出 O 任 O T B-ORG C M-ORG L M-ORG 集 M-ORG 团 E-ORG 助 B-TITLE 理 M-TITLE 总 M-TITLE 裁 E-TITLE 职 O 务 O ; O 于 B-NAME 恩 M-NAME 军 E-NAME 先 O 生 O 2 O 0 O 0 O 2 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 7 O 月 O 间 O 曾 O 任 O 翰 B-ORG 林 M-ORG 汇 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 9 O 月 O 间 O 任 O T B-ORG C M-ORG L M-ORG 电 M-ORG 脑 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 1 O 9 O 9 O 4 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 7 O 月 O 间 O 于 B-NAME 恩 M-NAME 军 E-NAME 先 O 生 O 曾 O 就 O 职 O 于 O 海 B-ORG 信 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 等 O 职 O 务 O 。 O 吕 B-NAME 丙 M-NAME 芳 E-NAME 先 O 生 O : O 1 O 9 O 7 O 2 O 年 O 5 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 、 O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 二 B-TITLE 级 M-TITLE 注 M-TITLE 册 M-TITLE 建 M-TITLE 造 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 淄 B-ORG 博 M-ORG 龙 M-ORG 泉 M-ORG 管 M-ORG 道 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 现 O 任 O 山 B-ORG 东 M-ORG 龙 M-ORG 泉 M-ORG 管 M-ORG 道 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 监 B-TITLE 事 E-TITLE 。 O 王 B-NAME 有 M-NAME 为 E-NAME : O 男 O , O 1 O 9 O 4 O 4 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 至 O 今 O 任 O 辽 B-ORG 宁 M-ORG 核 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 顾 B-TITLE 问 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 任 O 大 B-ORG 连 M-ORG 大 M-ORG 杨 M-ORG 创 M-ORG 世 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 七 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 李 B-NAME 新 M-NAME 春 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 德 B-ORG 国 M-ORG 洪 M-ORG 堡 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 现 O 任 O 中 B-ORG 山 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 贴 O 专 O 家 O 。 O 2 O 0 O 0 O 4 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 任 O 中 B-ORG 山 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 。 O 长 O 期 O 从 O 事 O 企 O 业 O 战 O 略 O 管 O 理 O 、 O 家 O 族 O 企 O 业 O 管 O 理 O 和 O 创 O 业 O 管 O 理 O 的 O 研 O 究 O 与 O 教 O 学 O 。 O 入 O 选 O 国 O 家 O 人 O 事 O 部 O 、 O 科 O 技 O 部 O 、 O 教 O 育 O 部 O 等 O 批 O 准 O 的 O " O 新 O 世 O 纪 O 百 O 千 O 万 O 人 O 才 O 工 O 程 O 国 O 家 O 级 O 人 O 选 O " O ( O 2 O 0 O 0 O 5 O ) O 和 O 教 O 育 O 部 O 新 O 世 O 纪 O 优 O 秀 O 人 O 才 O ( O 2 O 0 O 0 O 4 O ) O , O 第 O 四 O 届 O 全 O 国 O M O B O A O 专 O 业 O 学 O 位 O 教 O 育 O 指 O 导 O 委 O 员 O 会 O 委 O 员 O 。 O 兼 O 任 O 中 B-ORG 国 M-ORG 企 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 企 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 现 M-ORG 代 M-ORG 化 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 广 B-ORG 东 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 家 M-ORG 族 M-ORG 企 M-ORG 业 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 、 O 以 O 及 O 广 B-ORG 东 M-ORG 海 M-ORG 大 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 广 B-ORG 州 M-ORG 市 M-ORG 东 M-ORG 方 M-ORG 宾 M-ORG 馆 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 广 B-ORG 州 M-ORG 东 M-ORG 华 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 和 O 广 B-ORG 东 M-ORG 银 M-ORG 禧 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 等 O 职 O 。 O 2 O 0 O 1 O 4 O 年 O 1 O 月 O 2 O 3 O 日 O 起 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 黄 B-NAME 学 M-NAME 敏 E-NAME , O 男 O , O 1 O 9 O 7 O 4 O 年 O 3 O 月 O 出 O 生 O , O 博 B-EDU 士 E-EDU 。 O 曾 O 任 O “ B-ORG 环 M-ORG 三 M-ORG ” M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 、 O 督 B-TITLE 察 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 福 B-ORG 建 M-ORG 闽 M-ORG 东 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 福 B-ORG 建 M-ORG 闽 M-ORG 东 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 福 B-ORG 建 M-ORG 闽 M-ORG 东 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 阎 B-NAME 前 E-NAME , O 男 O , O 1 O 9 O 5 O 3 O 年 O 7 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 职 O 称 O , O 曾 O 任 O 贵 B-ORG 阳 M-ORG 市 M-ORG 床 M-ORG 单 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 珠 B-ORG 海 M-ORG 市 M-ORG 纺 M-ORG 织 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 珠 B-ORG 海 M-ORG 经 M-ORG 济 M-ORG 特 M-ORG 区 M-ORG 富 M-ORG 华 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 任 O 珠 B-ORG 海 M-ORG 经 M-ORG 济 M-ORG 特 M-ORG 区 M-ORG 富 M-ORG 华 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 局 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 珠 B-ORG 海 M-ORG 功 M-ORG 控 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 珠 B-ORG 海 M-ORG 裕 M-ORG 华 M-ORG 聚 M-ORG 酯 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 珠 B-ORG 海 M-ORG 碧 M-ORG 辟 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 珠 B-ORG 海 M-ORG 市 M-ORG 石 M-ORG 油 M-ORG 和 M-ORG 化 M-ORG 工 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 。 O 张 B-NAME 天 M-NAME 宇 E-NAME 先 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 担 O 任 O 中 B-ORG 国 M-ORG 医 M-ORG 药 M-ORG 保 M-ORG 健 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 政 B-TITLE 治 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 至 O 今 O 担 O 任 O 中 B-ORG 国 M-ORG 医 M-ORG 药 M-ORG 保 M-ORG 健 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 群 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 担 O 任 O 中 B-ORG 国 M-ORG 医 M-ORG 药 M-ORG 保 M-ORG 健 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 医 M-ORG 药 M-ORG 健 M-ORG 康 M-ORG 产 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 宝 M-NAME 杰 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE 。 O 毕 O 业 O 于 O 解 B-ORG 放 M-ORG 军 M-ORG 南 M-ORG 京 M-ORG 政 M-ORG 治 M-ORG 学 M-ORG 院 E-ORG , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 南 B-ORG 京 M-ORG 政 M-ORG 治 M-ORG 学 M-ORG 院 E-ORG 机 B-TITLE 关 M-TITLE 干 M-TITLE 部 E-TITLE 、 O 学 B-TITLE 员 M-TITLE 队 M-TITLE 干 M-TITLE 部 E-TITLE , O 北 B-ORG 京 M-ORG 军 M-ORG 区 M-ORG 舟 M-ORG 桥 M-ORG 第 M-ORG 8 M-ORG 5 M-ORG 团 E-ORG 宣 B-TITLE 传 M-TITLE 干 M-TITLE 事 E-TITLE , O 天 B-ORG 津 M-ORG 军 M-ORG 事 M-ORG 检 M-ORG 察 M-ORG 院 E-ORG 检 B-TITLE 察 M-TITLE 员 E-TITLE , O 北 B-ORG 京 M-ORG 军 M-ORG 区 M-ORG 军 M-ORG 事 M-ORG 检 M-ORG 察 M-ORG 院 E-ORG 检 B-TITLE 察 M-TITLE 员 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 企 M-ORG 业 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 企 M-ORG 业 M-ORG 家 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 员 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 北 B-ORG 京 M-ORG 友 M-ORG 基 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 特 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 兼 O 董 B-TITLE 事 M-TITLE 长 M-TITLE 秘 M-TITLE 书 E-TITLE , O 特 B-ORG 发 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 深 B-ORG 圳 M-ORG 市 M-ORG 特 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 兼 O 董 B-TITLE 事 M-TITLE 长 M-TITLE 秘 M-TITLE 书 E-TITLE , O 现 O 任 O 特 B-ORG 发 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 樊 B-NAME 晔 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 1 O 0 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 。 O 曾 O 任 O 南 B-ORG 京 M-ORG 纺 M-ORG 织 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 报 O 告 O 期 O 内 O 因 O 公 O 司 O 另 O 有 O 任 O 用 O 辞 O 去 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 姜 B-NAME 华 M-NAME 方 E-NAME , O 1 O 9 O 7 O 6 O 年 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 E-EDU 。 O 现 O 任 O 无 B-ORG 锡 M-ORG 小 M-ORG 天 M-ORG 鹅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 营 B-TITLE 运 M-TITLE 与 M-TITLE 人 M-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE ; O 曾 O 任 O 无 B-ORG 锡 M-ORG 小 M-ORG 天 M-ORG 鹅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 供 B-TITLE 应 M-TITLE 链 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 海 B-TITLE 外 M-TITLE 支 M-TITLE 持 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE , O 美 B-ORG 的 M-ORG 电 M-ORG 器 M-ORG 中 M-ORG 央 M-ORG 空 M-ORG 调 M-ORG 营 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 区 B-TITLE 域 M-TITLE 销 M-TITLE 售 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 合 B-ORG 肥 M-ORG 华 M-ORG 凌 M-ORG 电 M-ORG 器 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 采 B-TITLE 购 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE , O 合 B-ORG 肥 M-ORG 荣 M-ORG 事 M-ORG 达 M-ORG 洗 M-ORG 衣 M-ORG 设 M-ORG 备 M-ORG 制 M-ORG 造 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 供 B-TITLE 应 M-TITLE 链 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 总 O 监 O 等 O 职 O 。 O 钱 B-NAME 森 M-NAME 力 E-NAME : O 男 O , O 1 O 9 O 5 O 8 O 年 O 7 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 自 O 2 O 0 O 1 O 0 O 年 O 起 O 历 O 任 O 马 B-ORG 鞍 M-ORG 山 M-ORG 方 M-ORG 圆 M-ORG 回 M-ORG 转 M-ORG 支 M-ORG 承 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 浏 B-ORG 阳 M-ORG 方 M-ORG 圆 M-ORG 液 M-ORG 压 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 马 B-ORG 鞍 M-ORG 山 M-ORG 方 M-ORG 圆 M-ORG 动 M-ORG 力 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 现 O 任 O 方 B-ORG 圆 M-ORG 支 M-ORG 承 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 长 B-ORG 沙 M-ORG 方 M-ORG 圆 M-ORG 回 M-ORG 转 M-ORG 支 M-ORG 承 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 浏 B-ORG 阳 M-ORG 方 M-ORG 圆 M-ORG 液 M-ORG 压 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 马 B-ORG 鞍 M-ORG 山 M-ORG 方 M-ORG 圆 M-ORG 动 M-ORG 力 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 安 B-ORG 徽 M-ORG 同 M-ORG 盛 M-ORG 环 M-ORG 件 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 惊 B-ORG 天 M-ORG 智 M-ORG 能 M-ORG 装 M-ORG 备 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 凤 M-NAME 山 E-NAME 先 O 生 O , O 1 O 9 O 6 O 5 O 年 O 1 O 1 O 月 O 出 O 生 O , O 新 B-ORG 加 M-ORG 坡 M-ORG 南 M-ORG 洋 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 公 B-PRO 共 M-PRO 关 M-PRO 系 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 。 O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 毕 O 业 O 于 O 昆 B-ORG 明 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 选 B-PRO 矿 M-PRO 专 M-PRO 业 E-PRO , O 获 O 工 B-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 1 O 9 O 8 O 7 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O 8 O 月 O , O 先 O 后 O 任 O 大 B-ORG 冶 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 公 M-ORG 司 M-ORG 赤 M-ORG 马 M-ORG 山 M-ORG 矿 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 矿 M-TITLE 长 E-TITLE 、 O 矿 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 8 O 月 O , O 任 O 大 B-ORG 冶 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 公 M-ORG 司 M-ORG 铜 M-ORG 录 M-ORG 山 M-ORG 矿 E-ORG 矿 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 1 O 月 O , O 任 O 大 B-ORG 冶 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 4 O 月 O , O 任 O 黄 B-ORG 石 M-ORG 市 M-ORG 纪 M-ORG 委 E-ORG 副 B-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 1 O 0 O 月 O , O 任 O 大 B-ORG 冶 M-ORG 市 M-ORG 委 E-ORG 副 B-TITLE 书 M-TITLE 记 E-TITLE 、 O 市 B-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 1 O 1 O 月 O , O 任 O 黄 B-ORG 石 M-ORG 市 M-ORG 委 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 9 O 月 O , O 任 O 黄 B-ORG 石 M-ORG 市 M-ORG 民 M-ORG 政 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 起 O , O 任 O 华 B-ORG 新 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 华 B-ORG 新 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 华 B-ORG 新 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 起 O , O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O , O 出 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 张 B-NAME 凌 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 5 O 6 O 年 O 1 O 月 O , O 博 B-EDU 士 E-EDU , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 朝 M-ORG 阳 M-ORG 区 M-ORG 人 M-ORG 民 M-ORG 检 M-ORG 察 M-ORG 院 E-ORG 副 B-TITLE 检 M-TITLE 察 M-TITLE 长 E-TITLE 、 O 检 B-TITLE 察 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE , O 日 B-ORG 本 M-ORG 丰 M-ORG 田 M-ORG 汽 M-ORG 车 M-ORG 金 M-ORG 融 M-ORG 公 M-ORG 司 E-ORG 特 B-TITLE 别 M-TITLE 顾 M-TITLE 问 E-TITLE , O 华 B-ORG 电 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE , O 亚 B-ORG 洲 M-ORG 法 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE , O 兼 O 任 O 中 B-ORG 国 M-ORG 犯 M-ORG 罪 M-ORG 学 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 全 B-ORG 国 M-ORG 犯 M-ORG 罪 M-ORG 被 M-ORG 害 M-ORG 人 M-ORG 学 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE , O 北 B-ORG 京 M-ORG 蓝 M-ORG 鹏 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 兼 B-TITLE 职 M-TITLE 律 M-TITLE 师 E-TITLE , O 郑 B-ORG 州 M-ORG 华 M-ORG 晶 M-ORG 金 M-ORG 刚 M-ORG 石 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 自 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 起 O 担 O 任 O 泸 B-ORG 州 M-ORG 老 M-ORG 窖 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 方 B-NAME 翥 E-NAME : O 男 O , O 1 O 9 O 7 O 3 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 重 B-ORG 庆 M-ORG 国 M-ORG 际 M-ORG 实 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 办 M-TITLE 秘 M-TITLE 书 E-TITLE , O 现 O 任 O 重 B-ORG 庆 M-ORG 国 M-ORG 际 M-ORG 实 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 薛 B-NAME 崐 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 3 O 年 O 3 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 原 O 任 O 重 B-ORG 庆 M-ORG 港 M-ORG 九 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 历 O 任 O 重 B-ORG 庆 M-ORG 港 M-ORG 客 M-ORG 运 M-ORG 总 M-ORG 站 E-ORG 货 B-TITLE 运 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE , O 重 B-ORG 庆 M-ORG 港 M-ORG 商 M-ORG 务 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE , O 重 B-ORG 庆 M-ORG 港 M-ORG 江 M-ORG 北 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE , O 重 B-ORG 庆 M-ORG 港 M-ORG 集 M-ORG 装 M-ORG 箱 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 重 B-ORG 庆 M-ORG 港 M-ORG 业 M-ORG 务 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE , O 重 B-ORG 庆 M-ORG 港 M-ORG 江 M-ORG 北 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 重 B-ORG 庆 M-ORG 港 M-ORG 九 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 九 M-ORG 龙 M-ORG 坡 M-ORG 集 M-ORG 装 M-ORG 箱 M-ORG 码 M-ORG 头 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 等 O 职 O 务 O 。 O 肖 B-NAME 笛 M-NAME 波 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 6 O 年 O 1 O 1 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 桂 B-ORG 林 M-ORG 市 M-ORG 经 M-ORG 济 M-ORG 体 M-ORG 制 M-ORG 改 M-ORG 革 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 企 B-TITLE 业 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 2 O 月 O 任 O 桂 B-ORG 林 M-ORG 集 M-ORG 琦 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 2 O 月 O 历 O 任 O 桂 B-ORG 林 M-ORG 集 M-ORG 琦 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 董 B-TITLE 事 E-TITLE ; O 任 O 桂 B-ORG 林 M-ORG 集 M-ORG 琦 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 桂 B-ORG 林 M-ORG 集 M-ORG 琦 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 齐 B-NAME 东 M-NAME 绮 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 1 O 9 O 7 O 7 O 年 O 毕 O 业 O 于 O 河 B-ORG 北 M-ORG 化 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 基 B-PRO 本 M-PRO 有 M-PRO 机 M-PRO 合 M-PRO 成 M-PRO 专 M-PRO 业 E-PRO , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 执 B-TITLE 业 M-TITLE 药 M-TITLE 师 E-TITLE 。 O 曾 O 先 O 后 O 任 O 河 B-ORG 北 M-ORG 省 M-ORG 医 M-ORG 药 M-ORG 工 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 华 B-ORG 泰 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 3 B-ORG 0 M-ORG 1 M-ORG 医 M-ORG 院 M-ORG 技 M-ORG 术 M-ORG 开 M-ORG 发 M-ORG 中 M-ORG 心 E-ORG 多 B-TITLE 肽 M-TITLE 室 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 烟 B-ORG 台 M-ORG 东 M-ORG 诚 M-ORG 药 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 北 B-ORG 方 M-ORG 制 M-ORG 药 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 曹 B-NAME 国 M-NAME 其 E-NAME 先 O 生 O : O 1 O 9 O 7 O 8 O 年 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 浙 B-LOC 江 M-LOC 绍 M-LOC 兴 M-LOC 人 E-LOC , O E B-EDU M M-EDU B M-EDU A E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O , O 任 O 浙 B-ORG 江 M-ORG 明 M-ORG 牌 M-ORG 首 M-ORG 饰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 至 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 日 M-ORG 月 M-ORG 首 M-ORG 饰 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 至 O 今 O , O 任 O 公 B-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 明 M-ORG 牌 M-ORG 珠 M-ORG 宝 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 5 O 月 O 至 O 今 O , O 任 O 浙 B-ORG 江 M-ORG 明 M-ORG 牌 M-ORG 珠 M-ORG 宝 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 郭 B-NAME 忠 E-NAME , O 男 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU 。 O 先 O 后 O 在 O 广 B-ORG 州 M-ORG 军 M-ORG 区 M-ORG 十 M-ORG 三 M-ORG 师 M-ORG 8 M-ORG 6 M-ORG 3 M-ORG 4 M-ORG 8 M-ORG 总 M-ORG 队 E-ORG 服 O 役 O 、 O 湖 B-ORG 北 M-ORG 宜 M-ORG 昌 M-ORG 毛 M-ORG 涤 M-ORG 纶 M-ORG 厂 E-ORG 、 O 海 B-ORG 南 M-ORG 中 M-ORG 国 M-ORG 城 E-ORG 任 O 销 B-TITLE 售 M-TITLE 主 M-TITLE 管 E-TITLE ; O 东 B-ORG 莞 M-ORG 长 M-ORG 安 M-ORG 海 M-ORG 悦 M-ORG 花 M-ORG 园 M-ORG 大 M-ORG 酒 M-ORG 店 E-ORG 、 O 三 B-ORG 九 M-ORG 大 M-ORG 酒 M-ORG 店 E-ORG 任 O 主 B-TITLE 任 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 行 B-TITLE 政 M-TITLE 经 M-TITLE 理 E-TITLE ; O 现 O 在 O 深 B-ORG 圳 M-ORG 市 M-ORG 明 M-ORG 伦 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 钟 B-NAME 明 M-NAME 强 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 3 O 年 O 生 O , O 工 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 浙 B-ORG 江 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 学 M-ORG 与 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 M-ORG 高 M-ORG 分 M-ORG 子 M-ORG 材 M-ORG 料 M-ORG 与 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE ; O “ B-ORG 材 M-ORG 料 M-ORG 化 M-ORG 工 M-ORG ” M-ORG 专 M-ORG 业 M-ORG 博 M-ORG 士 M-ORG 点 E-ORG 负 B-TITLE 责 M-TITLE 人 E-TITLE ; O “ B-ORG 材 M-ORG 料 M-ORG 科 M-ORG 学 M-ORG 与 M-ORG 工 M-ORG 程 M-ORG ” M-ORG 浙 M-ORG 江 M-ORG 省 M-ORG 重 M-ORG 中 M-ORG 之 M-ORG 重 M-ORG 学 M-ORG 科 E-ORG 负 B-TITLE 责 M-TITLE 人 E-TITLE ; O 浙 B-ORG 江 M-ORG 省 M-ORG 塑 M-ORG 料 M-ORG 改 M-ORG 性 M-ORG 与 M-ORG 加 M-ORG 工 M-ORG 技 M-ORG 术 M-ORG 研 M-ORG 究 M-ORG 重 M-ORG 点 M-ORG 实 M-ORG 验 M-ORG 室 E-ORG 主 B-TITLE 任 E-TITLE ; O 浙 B-ORG 江 M-ORG 省 M-ORG 腐 M-ORG 蚀 M-ORG 与 M-ORG 防 M-ORG 护 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 M-TITLE 长 E-TITLE ; O 浙 B-ORG 江 M-ORG 省 M-ORG 化 M-ORG 学 M-ORG 建 M-ORG 材 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE ; O 浙 B-ORG 江 M-ORG 省 M-ORG 粘 M-ORG 接 M-ORG 技 M-ORG 术 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE ; O 浙 B-ORG 江 M-ORG 省 M-ORG 建 M-ORG 设 M-ORG 厅 M-ORG 科 M-ORG 技 M-ORG 委 M-ORG 化 M-ORG 学 M-ORG 建 M-ORG 材 M-ORG 节 M-ORG 材 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE ; O 浙 B-ORG 江 M-ORG 省 M-ORG “ M-ORG 十 M-ORG 二 M-ORG 五 M-ORG ” M-ORG 重 M-ORG 大 M-ORG 科 M-ORG 技 M-ORG 专 M-ORG 项 M-ORG “ M-ORG 纺 M-ORG 织 M-ORG 、 M-ORG 皮 M-ORG 革 M-ORG 与 M-ORG 塑 M-ORG 料 M-ORG ” M-ORG 转 M-ORG 化 M-ORG 工 M-ORG 程 E-ORG 专 B-TITLE 家 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 。 O 道 B-ORG 明 M-ORG 光 M-ORG 学 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 兼 O 任 O 浙 B-ORG 江 M-ORG 赞 M-ORG 宇 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 尚 B-NAME 兴 M-NAME 中 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 2 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 任 O 一 B-ORG 汽 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 任 O 一 B-ORG 汽 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 一 B-ORG 汽 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 赵 B-NAME 学 E-NAME , O 男 O , O 1 O 9 O 5 O 2 O 年 O 7 O 月 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE , O 大 B-EDU 专 E-EDU 。 O 1 O 9 O 7 O 6 O 年 O 毕 O 业 O 于 O 兰 B-ORG 州 M-ORG 大 M-ORG 学 E-ORG , O 曾 O 任 O 嘉 B-ORG 峪 M-ORG 关 M-ORG 市 M-ORG 委 E-ORG 组 B-TITLE 织 M-TITLE 部 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE , O 酒 B-ORG 钢 M-ORG 党 M-ORG 委 E-ORG 组 B-TITLE 织 M-TITLE 部 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 部 M-TITLE 长 E-TITLE , O 甘 B-ORG 肃 M-ORG 省 M-ORG 人 M-ORG 才 M-ORG 交 M-ORG 流 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 甘 B-ORG 肃 M-ORG 省 M-ORG 人 M-ORG 事 M-ORG 局 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 主 B-TITLE 任 E-TITLE , O 酒 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 驻 M-ORG 兰 M-ORG 州 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 主 B-TITLE 任 E-TITLE , O 酒 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 兰 B-ORG 钢 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 组 B-TITLE 织 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 酒 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 兰 B-ORG 钢 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 酒 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 财 M-TITLE 务 M-TITLE 审 M-TITLE 计 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 甘 B-ORG 肃 M-ORG 酒 M-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 宏 M-ORG 兴 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 赵 B-NAME 晋 M-NAME 蓉 E-NAME 先 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 邮 B-ORG 电 M-ORG 部 M-ORG 成 M-ORG 都 M-ORG 电 M-ORG 缆 M-ORG 厂 E-ORG 生 B-TITLE 产 M-TITLE 处 M-TITLE 、 M-TITLE 供 M-TITLE 应 M-TITLE 处 M-TITLE 、 M-TITLE 销 M-TITLE 售 M-TITLE 处 M-TITLE 、 M-TITLE 原 M-TITLE 料 M-TITLE 分 M-TITLE 析 M-TITLE 处 M-TITLE 、 M-TITLE 计 M-TITLE 量 M-TITLE 处 M-TITLE 、 M-TITLE 科 M-TITLE 研 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 四 B-ORG 川 M-ORG 汇 M-ORG 源 M-ORG 光 M-ORG 通 M-ORG 信 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 四 B-ORG 川 M-ORG 汇 M-ORG 源 M-ORG 光 M-ORG 通 M-ORG 信 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 文 M-NAME 忠 E-NAME , O 男 O , O 出 O 生 O 于 O 1 O 9 O 6 O 2 O 年 O 1 O 0 O 月 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 至 O 今 O , O 任 O 青 B-ORG 海 M-ORG 华 M-ORG 鼎 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 张 B-NAME 军 E-NAME , O 男 O , O 1 O 9 O 6 O 1 O 年 O 出 O 生 O , O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 历 O 任 O 空 B-ORG 军 M-ORG 华 M-ORG 英 M-ORG 寻 M-ORG 呼 M-ORG 网 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 北 B-ORG 京 M-ORG 华 M-ORG 英 M-ORG 台 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 空 B-ORG 军 M-ORG 通 M-ORG 信 M-ORG 支 M-ORG 援 M-ORG 国 M-ORG 家 M-ORG 经 M-ORG 济 M-ORG 建 M-ORG 设 M-ORG 办 M-ORG 公 M-ORG 室 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 至 O 今 O 任 O 北 B-ORG 京 M-ORG 北 M-ORG 纬 M-ORG 通 M-ORG 信 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 起 O 任 O 北 B-ORG 京 M-ORG 北 M-ORG 纬 M-ORG 通 M-ORG 信 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 徐 B-NAME 聆 E-NAME : O 男 O , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 上 M-ORG 投 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE ; O 历 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 第 M-ORG 四 M-ORG 建 M-ORG 筑 M-ORG 工 M-ORG 程 M-ORG 公 M-ORG 司 E-ORG 机 B-TITLE 械 M-TITLE 施 M-TITLE 工 M-TITLE 队 M-TITLE 会 M-TITLE 计 E-TITLE , O 上 B-ORG 海 M-ORG 市 M-ORG 上 M-ORG 投 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 会 M-TITLE 计 E-TITLE , O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 等 O 。 O 刘 B-NAME 东 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 研 B-EDU 究 M-EDU 生 E-EDU 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 信 M-ORG 达 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 M-ORG 北 M-ORG 京 M-ORG 证 M-ORG 券 M-ORG 营 M-ORG 业 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 证 B-ORG 券 M-ORG 业 M-ORG 务 M-ORG 总 M-ORG 部 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 北 B-ORG 京 M-ORG 营 M-ORG 业 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 宏 B-ORG 源 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 证 B-ORG 券 M-ORG 业 M-ORG 务 M-ORG 总 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 宏 B-ORG 源 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 袁 B-NAME 湛 E-NAME : O 男 O , O 1 O 9 O 6 O 5 O 年 O 4 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 毕 O 业 O 于 O 太 B-ORG 原 M-ORG 机 M-ORG 械 M-ORG 学 M-ORG 院 E-ORG , O 本 B-EDU 科 E-EDU , O 中 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 8 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 襄 B-ORG 阳 M-ORG 汽 M-ORG 车 M-ORG 轴 M-ORG 承 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 人 M-TITLE 事 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 组 M-TITLE 织 M-TITLE 部 M-TITLE 干 M-TITLE 部 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 部 B-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 襄 B-ORG 阳 M-ORG 汽 M-ORG 车 M-ORG 轴 M-ORG 承 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 规 M-TITLE 划 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 无 O 简 O 历 O 信 O 息 O 郑 B-NAME 保 M-NAME 安 E-NAME 先 O 生 O , O 1 O 9 O 8 O 5 O 年 O 毕 O 业 O 于 O 山 B-ORG 东 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 院 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 系 E-ORG , O 获 O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 1 O 9 O 9 O 0 O 年 O 毕 O 业 O 于 O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 管 B-PRO 理 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO , O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 。 O 1 O 9 O 9 O 4 O 年 O 任 O 山 B-ORG 东 M-ORG 齐 M-ORG 鲁 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 任 O 山 B-ORG 东 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 任 O 山 B-ORG 东 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 加 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG , O 并 O 作 O 为 O 重 O 要 O 成 O 员 O 参 O 与 O 了 O 本 B-ORG 公 M-ORG 司 E-ORG 的 O 海 O 外 O 上 O 市 O 工 O 作 O 。 O 2 O 0 O 0 O 5 O 年 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE , O 持 O 有 O 香 B-ORG 港 M-ORG 秘 M-ORG 书 M-ORG 公 M-ORG 会 E-ORG 与 O 深 B-ORG 圳 M-ORG 证 M-ORG 券 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 颁 O 发 O 的 O 董 O 事 O 会 O 秘 O 书 O 资 O 格 O 证 O 书 O 。 O 季 B-NAME 茜 E-NAME , O 女 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 主 O 要 O 工 O 作 O 经 O 历 O : O 曾 O 就 O 职 O 于 O 平 B-ORG 煤 M-ORG 集 M-ORG 团 E-ORG 工 O 作 O 。 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 1 O 月 O 在 O 珠 B-ORG 海 M-ORG 经 M-ORG 济 M-ORG 特 M-ORG 区 M-ORG 富 M-ORG 华 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 O 公 O 室 O 工 O 作 O ; O 2 O 0 O 0 O 3 O 年 O 2 O 月 O 至 O 今 O 在 O 珠 B-ORG 海 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 O 事 O 局 O 秘 O 书 O 处 O 工 O 作 O , O 2 O 0 O 0 O 5 O 年 O 1 O 0 O 月 O 起 O 任 O 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 郑 B-NAME 泗 M-NAME 滨 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O ; O 历 O 任 O 浙 B-ORG 江 M-ORG 松 M-ORG 阳 M-ORG 啤 M-ORG 酒 M-ORG 厂 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 南 B-ORG 太 M-ORG 电 M-ORG 子 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE , O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 现 O 任 O 深 B-ORG 圳 M-ORG 拓 M-ORG 邦 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 电 B-TITLE 控 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 拓 M-ORG 邦 M-ORG 软 M-ORG 件 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 重 B-ORG 庆 M-ORG 拓 M-ORG 邦 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 杨 B-NAME 红 M-NAME 帆 E-NAME , O 女 O , O 1 O 9 O 6 O 5 O 年 O 6 O 月 O 2 O 4 O 日 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 中 B-ORG 国 M-ORG 民 M-ORG 主 M-ORG 建 M-ORG 国 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 浙 B-ORG 江 M-ORG 中 M-ORG 瑞 M-ORG 江 M-ORG 南 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 1 O 9 O 8 O 6 O 年 O 7 O 月 O — O — O 1 O 9 O 9 O 9 O 年 O 6 O 月 O , O 浙 B-ORG 江 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 院 E-ORG ( O 原 O 杭 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 金 M-ORG 融 M-ORG 与 M-ORG 经 M-ORG 贸 M-ORG 学 M-ORG 院 E-ORG 、 O 杭 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 金 M-ORG 系 E-ORG 、 O 杭 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 系 E-ORG ) O 担 O 任 O 财 B-TITLE 政 M-TITLE 专 M-TITLE 业 M-TITLE 、 M-TITLE 会 M-TITLE 计 M-TITLE 专 M-TITLE 业 M-TITLE 专 M-TITLE 业 M-TITLE 课 M-TITLE 程 M-TITLE 教 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 6 O 月 O 至 O 今 O , O 在 O 浙 B-ORG 江 M-ORG 中 M-ORG 瑞 M-ORG 江 M-ORG 南 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 原 O 浙 B-ORG 江 M-ORG 中 M-ORG 瑞 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 浙 B-ORG 江 M-ORG 浙 M-ORG 瑞 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG ) O 工 O 作 O , O 历 O 任 O 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 浙 B-ORG 江 M-ORG 中 M-ORG 瑞 M-ORG 江 M-ORG 南 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 9 O 月 O 至 O 今 O 任 O 浙 B-ORG 江 M-ORG 世 M-ORG 纪 M-ORG 华 M-ORG 通 M-ORG 车 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 李 B-NAME 国 M-NAME 明 E-NAME 先 O 生 O , O 1 O 9 O 7 O 0 O 年 O 3 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 南 B-ORG 京 M-ORG 化 M-ORG 工 M-ORG 动 M-ORG 力 M-ORG 专 M-ORG 科 M-ORG 学 M-ORG 校 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 系 E-ORG 会 B-PRO 计 M-PRO 专 M-PRO 业 E-PRO , O 全 B-ORG 国 M-ORG 高 M-ORG 等 M-ORG 教 M-ORG 育 M-ORG 自 M-ORG 学 M-ORG 考 M-ORG 试 E-ORG 会 B-PRO 计 M-PRO 专 M-PRO 业 E-PRO , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 西 B-ORG 柏 M-ORG 坡 M-ORG 发 M-ORG 电 M-ORG 总 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 河 B-ORG 北 M-ORG 省 M-ORG 电 M-ORG 力 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 会 M-TITLE 计 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 华 M-ORG 电 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 预 M-TITLE 算 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 级 M-TITLE 职 M-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 华 M-ORG 电 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 预 M-TITLE 算 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE , O 国 B-ORG 电 M-ORG 南 M-ORG 京 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 、 M-TITLE 第 M-TITLE 五 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 华 M-ORG 电 M-ORG 工 M-ORG 程 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 马 B-NAME 建 M-NAME 伟 E-NAME 先 O 生 O , O 1 O 9 O 6 O 8 O 年 O 生 O 于 O 辽 B-LOC 宁 M-LOC 省 M-LOC 鞍 M-LOC 山 M-LOC 市 E-LOC 。 O 本 B-EDU 科 E-EDU 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 材 M-ORG 料 M-ORG 物 M-ORG 理 M-ORG 系 E-ORG 金 B-PRO 属 M-PRO 物 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 硕 B-EDU 士 E-EDU 毕 O 业 O 于 O 加 B-ORG 拿 M-ORG 大 M-ORG 安 M-ORG 大 M-ORG 略 M-ORG 省 M-ORG 皇 M-ORG 后 M-ORG 大 M-ORG 学 M-ORG 材 M-ORG 料 M-ORG 和 M-ORG 冶 M-ORG 金 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG 。 O 华 B-ORG 菱 M-ORG 钢 M-ORG 铁 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 曾 O 任 O 安 B-ORG 赛 M-ORG 乐 M-ORG 米 M-ORG 塔 M-ORG 尔 E-ORG 研 B-TITLE 究 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 经 B-TITLE 理 E-TITLE 。 O 郑 B-NAME 长 M-NAME 山 E-NAME , O 男 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 党 B-TITLE 校 M-TITLE 研 M-TITLE 究 M-TITLE 生 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 青 B-ORG 海 M-ORG 盐 M-ORG 湖 M-ORG 工 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE , O 青 B-ORG 海 M-ORG 盐 M-ORG 湖 M-ORG 钾 M-ORG 肥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 任 O 青 B-ORG 海 M-ORG 省 M-ORG 内 M-ORG 部 M-ORG 审 M-ORG 计 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 至 O 今 O 任 O 全 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 审 M-ORG 计 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 。 O 虞 B-NAME 斌 E-NAME , O 男 O , O 1 O 9 O 7 O 4 O 年 O 1 O 2 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 华 M-ORG 谊 M-ORG 集 M-ORG 团 M-ORG 企 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 华 M-ORG 谊 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 闵 M-ORG 行 M-ORG 华 M-ORG 谊 M-ORG 小 M-ORG 额 M-ORG 贷 M-ORG 款 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 氯 M-ORG 碱 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 季 B-NAME 贵 M-NAME 荣 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 1 O 年 O 1 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 航 M-ORG 空 M-ORG 技 M-ORG 术 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 计 B-TITLE 划 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 江 B-ORG 西 M-ORG 洪 M-ORG 都 M-ORG 航 M-ORG 空 M-ORG 工 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 四 B-ORG 维 M-ORG 航 M-ORG 空 M-ORG 遥 M-ORG 感 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 四 B-ORG 维 M-ORG 图 M-ORG 新 M-ORG ( M-ORG 香 M-ORG 港 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 中 B-ORG 航 M-ORG 国 M-ORG 际 M-ORG 香 M-ORG 港 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 、 O 杭 B-ORG 州 M-ORG 海 M-ORG 联 M-ORG 热 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 主 B-TITLE 席 E-TITLE 。 O 刘 B-NAME 国 M-NAME 平 E-NAME 先 O 生 O : O 1 O 9 O 6 O 1 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 彭 B-ORG 浦 M-ORG 机 M-ORG 器 M-ORG 厂 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 鼓 M-ORG 风 M-ORG 机 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 电 M-ORG 气 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 管 B-TITLE 理 M-TITLE 二 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 企 B-TITLE 业 M-TITLE 重 M-TITLE 组 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 机 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 电 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 印 M-ORG 刷 M-ORG 包 M-ORG 装 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 无 O 简 O 历 O 信 O 息 O 吴 B-NAME 安 M-NAME 平 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 0 O 年 O 4 O 月 O 出 O 生 O , O 教 B-TITLE 授 E-TITLE 。 O 曾 O 任 O 长 B-ORG 春 M-ORG 高 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 产 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 现 O 任 O 长 B-ORG 春 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 长 B-ORG 春 M-ORG 高 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 产 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 外 M-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 曲 B-NAME 云 M-NAME 虹 E-NAME 女 O 士 O : O 监 B-TITLE 事 E-TITLE ( O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 E-TITLE ) O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT ( O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O ) O , O 中 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 7 O 年 O 1 O 0 O 月 O 至 O 今 O 任 O 大 B-ORG 连 M-ORG 天 M-ORG 宝 M-ORG 绿 M-ORG 色 M-ORG 食 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE , O 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 兰 M-NAME 芬 E-NAME , O 女 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 云 B-ORG 南 M-ORG 省 M-ORG 机 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 云 B-ORG 南 M-ORG 省 M-ORG 机 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 黄 B-NAME 国 M-NAME 安 E-NAME 先 O 生 O : O 男 O , O 1 O 9 O 5 O 9 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 7 O 9 O 年 O 至 O 1 O 9 O 9 O 0 O 年 O 在 O 饶 B-ORG 平 M-ORG 县 M-ORG 木 M-ORG 材 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 任 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 0 O 年 O 至 O 2 O 0 O 0 O 1 O 年 O 在 O 饶 B-ORG 平 M-ORG 县 M-ORG 汇 M-ORG 润 M-ORG 工 M-ORG 艺 M-ORG 木 M-ORG 制 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 任 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 2 O 至 O 今 O 在 O 广 B-ORG 东 M-ORG 省 M-ORG 宜 M-ORG 华 M-ORG 木 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 现 O 任 O 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 蒯 B-NAME 振 M-NAME 宪 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 经 B-TITLE 济 M-TITLE 师 E-TITLE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 外 M-ORG 高 M-ORG 桥 M-ORG 保 M-ORG 税 M-ORG 区 M-ORG 三 M-ORG 联 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 党 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE ; O 上 B-ORG 海 M-ORG 外 M-ORG 高 M-ORG 桥 M-ORG 现 M-ORG 代 M-ORG 服 M-ORG 务 M-ORG 贸 M-ORG 易 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 雷 B-NAME 声 M-NAME 洪 E-NAME , O 男 O , O 3 O 4 O 岁 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 曾 O 任 O 公 B-ORG 司 E-ORG 车 B-TITLE 间 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 设 B-TITLE 备 M-TITLE 管 M-TITLE 理 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 制 B-TITLE 造 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 制 B-TITLE 造 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 徐 B-NAME 兵 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 出 O 生 O 于 O 1 O 9 O 6 O 2 O 年 O 9 O 月 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 光 B-ORG 正 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE , O 1 O 9 O 8 O 5 O 年 O 起 O 任 O 职 O 于 O 新 B-ORG 疆 M-ORG 建 M-ORG 筑 M-ORG 设 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG , O 曾 O 担 O 任 O 所 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 职 O 务 O 。 O 现 O 任 O 光 B-ORG 正 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE , O 新 B-ORG 疆 M-ORG 建 M-ORG 筑 M-ORG 设 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 覃 B-NAME 清 M-NAME 元 E-NAME 先 O 生 O , O 出 O 生 O 于 O 1 O 9 O 4 O 7 O 年 O 5 O 月 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 初 B-EDU 中 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 6 O 6 O 年 O 参 O 加 O 工 O 作 O , O 1 O 9 O 6 O 6 O 年 O — O 1 O 9 O 7 O 8 O 年 O 在 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 8 M-ORG 0 M-ORG 2 M-ORG 3 M-ORG 部 M-ORG 队 E-ORG 和 O 空 B-ORG 九 M-ORG 军 E-ORG 服 O 役 O ; O 1 O 9 O 7 O 8 O 年 O — O 1 O 9 O 9 O 2 O 年 O 在 O 四 B-ORG 川 M-ORG 省 M-ORG 绵 M-ORG 阳 M-ORG 市 M-ORG 汽 M-ORG 车 M-ORG 运 M-ORG 输 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 2 O 年 O — O 2 O 0 O 0 O 1 O 年 O 在 O 四 B-ORG 川 M-ORG 省 M-ORG 绵 M-ORG 阳 M-ORG 市 M-ORG 汽 M-ORG 车 M-ORG 运 M-ORG 输 M-ORG 公 M-ORG 司 E-ORG 任 O 经 B-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O — O 2 O 0 O 0 O 5 O 年 O 在 O 四 B-ORG 川 M-ORG 富 M-ORG 临 M-ORG 捷 M-ORG 达 M-ORG 公 M-ORG 司 E-ORG 任 O 经 B-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O — O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 任 O 富 B-ORG 临 M-ORG 实 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 任 O 期 O 为 O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 3 O 0 O 日 O 至 O 2 O 0 O 1 O 0 O 年 O 7 O 月 O 3 O 0 O 日 O 。 O 蒋 B-NAME 艺 E-NAME , O 女 O , O 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 起 O 任 O 广 B-ORG 州 M-ORG 汇 M-ORG 崃 M-ORG 商 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 5 O 月 O 任 O 东 B-ORG 凌 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 月 O 任 O 东 B-ORG 凌 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 5 O 月 O 起 O 任 O 广 B-ORG 州 M-ORG 植 M-ORG 之 M-ORG 元 M-ORG 油 M-ORG 脂 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 月 O 任 O 广 B-ORG 州 M-ORG 东 M-ORG 凌 M-ORG 粮 M-ORG 油 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 东 M-ORG 广 M-ORG 州 M-ORG 东 M-ORG 凌 M-ORG 实 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O 起 O 任 O 广 B-ORG 州 M-ORG 东 M-ORG 凌 M-ORG 粮 M-ORG 油 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 曾 B-NAME 嵘 E-NAME 先 O 生 O : O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O ; O 工 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 现 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 机 M-ORG 系 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 曾 B-NAME 嵘 E-NAME 先 O 生 O 1 O 9 O 9 O 0 O ~ O 1 O 9 O 9 O 5 O 年 O 就 O 读 O 于 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 机 M-ORG 系 E-ORG , O 后 O 直 O 接 O 推 O 荐 O 攻 O 读 O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 1 O 9 O 9 O 9 O 年 O 7 O 月 O 博 B-EDU 士 E-EDU 毕 O 业 O , O 获 O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 1 O 9 O 9 O 9 O 年 O 至 O 今 O 在 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 机 M-ORG 系 E-ORG 工 O 作 O , O 历 O 任 O 讲 B-TITLE 师 E-TITLE 、 O 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 。 O 曾 B-NAME 嵘 E-NAME 先 O 生 O 为 O 输 O 配 O 电 O 领 O 域 O 的 O 专 O 家 O , O 主 O 要 O 从 O 事 O 超 O 、 O 特 O 高 O 压 O 交 O 直 O 流 O 输 O 电 O 中 O 的 O 电 O 磁 O 暂 O 态 O 及 O 其 O 防 O 护 O 、 O 电 O 磁 O 环 O 境 O , O 配 O 电 O 系 O 统 O 自 O 动 O 化 O 及 O 其 O 管 O 理 O 系 O 统 O 等 O 的 O 研 O 究 O 工 O 作 O 。 O 曾 B-NAME 嵘 E-NAME 先 O 生 O 先 O 后 O 负 O 责 O 和 O 参 O 加 O 了 O 国 O 家 O 自 O 然 O 科 O 学 O 基 O 金 O 重 O 点 O 项 O 目 O 、 O “ O 9 O 7 O 3 O 计 O 划 O ” O 、 O “ O 8 O 6 O 3 O 计 O 划 O ” O 、 O “ O 十 O 一 O 五 O ” O 科 O 技 O 支 O 撑 O 计 O 划 O 、 O 直 O 流 O 输 O 电 O 国 O 产 O 化 O 与 O 特 O 高 O 压 O 输 O 电 O 等 O 几 O 十 O 项 O 科 O 研 O 项 O 目 O , O 获 O 中 O 国 O 电 O 力 O 科 O 技 O 进 O 步 O 一 O 等 O 奖 O 1 O 项 O , O 教 O 育 O 部 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 1 O 项 O , O 中 O 国 O 能 O 源 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 1 O 项 O , O 中 O 国 O 电 O 力 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 2 O 项 O 、 O 三 O 等 O 奖 O 多 O 项 O , O 国 O 家 O 电 O 网 O 科 O 技 O 进 O 步 O 特 O 等 O 奖 O 1 O 项 O , O 北 O 京 O 市 O 教 O 学 O 成 O 果 O 一 O 等 O 奖 O 等 O 奖 O 项 O 多 O 项 O 。 O 曾 B-NAME 嵘 E-NAME 先 O 生 O 现 O 为 O I B-TITLE E M-TITLE T M-TITLE F M-TITLE e M-TITLE l M-TITLE l M-TITLE o M-TITLE w E-TITLE , O I B-TITLE E M-TITLE E M-TITLE E M-TITLE s M-TITLE e M-TITLE n M-TITLE i M-TITLE o M-TITLE r M-TITLE m M-TITLE e M-TITLE m M-TITLE b M-TITLE e M-TITLE r E-TITLE , O C B-TITLE I M-TITLE G M-TITLE R M-TITLE E M-TITLE S M-TITLE C M-TITLE C M-TITLE 3 M-TITLE m M-TITLE e M-TITLE m M-TITLE b M-TITLE e M-TITLE r E-TITLE , O I B-TITLE E M-TITLE C M-TITLE T M-TITLE C M-TITLE 2 M-TITLE 2 M-TITLE / M-TITLE M M-TITLE T M-TITLE 1 M-TITLE 5 M-TITLE 、 M-TITLE T M-TITLE C M-TITLE 2 M-TITLE 2 M-TITLE / M-TITLE W M-TITLE G M-TITLE 1 M-TITLE 6 M-TITLE m M-TITLE e M-TITLE m M-TITLE b M-TITLE e M-TITLE r E-TITLE 、 O 全 B-ORG 国 M-ORG 高 M-ORG 压 M-ORG 直 M-ORG 流 M-ORG 输 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 标 M-ORG 准 M-ORG 化 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 电 M-ORG 机 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 会 M-ORG 高 M-ORG 压 M-ORG 专 M-ORG 委 M-ORG 会 E-ORG 高 B-TITLE 压 M-TITLE 测 M-TITLE 试 M-TITLE 技 M-TITLE 术 M-TITLE 及 M-TITLE 设 M-TITLE 备 M-TITLE 学 M-TITLE 组 M-TITLE 副 M-TITLE 主 M-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE 等 O 。 O 陈 B-NAME 中 M-NAME 革 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 1 O 1 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 2 O 月 O 任 O 奥 B-ORG 瑞 M-ORG 金 M-ORG 包 M-ORG 装 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 4 O 年 O 2 O 月 O 至 O 今 O 任 O 奥 B-ORG 瑞 M-ORG 金 M-ORG 包 M-ORG 装 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 至 O 今 O 任 O 湖 B-ORG 北 M-ORG 奥 M-ORG 瑞 M-ORG 金 M-ORG 制 M-ORG 罐 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 赵 B-NAME 成 M-NAME 彦 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 1 O 9 O 9 O 7 O 年 O 加 O 入 O 中 B-ORG 国 M-ORG 共 M-ORG 产 M-ORG 党 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 1 O 0 O . O 0 O 6 O 至 O 今 O 任 O 徐 B-ORG 工 M-ORG 集 M-ORG 团 M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 徐 B-ORG 州 M-ORG 徐 M-ORG 工 M-ORG 随 M-ORG 车 M-ORG 起 M-ORG 重 M-ORG 机 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 徐 B-ORG 州 M-ORG 徐 M-ORG 工 M-ORG 筑 M-ORG 路 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 徐 B-ORG 州 M-ORG 重 M-ORG 型 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 徐 B-ORG 州 M-ORG 徐 M-ORG 工 M-ORG 挖 M-ORG 掘 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 徐 B-ORG 工 M-ORG 重 M-ORG 庆 M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 徐 B-ORG 州 M-ORG 徐 M-ORG 工 M-ORG 物 M-ORG 资 M-ORG 供 M-ORG 应 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 沈 B-NAME 健 M-NAME 斌 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 5 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 株 M-ORG 洲 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 株 B-ORG 洲 M-ORG 市 M-ORG 计 M-ORG 划 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 经 B-TITLE 济 M-TITLE 信 M-TITLE 息 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 中 B-ORG 共 M-ORG 株 M-ORG 洲 M-ORG 市 M-ORG 委 E-ORG 组 B-TITLE 织 M-TITLE 部 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 等 O 职 O 。 O 现 O 任 O 株 B-ORG 洲 M-ORG 市 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 投 M-ORG 资 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 宪 M-NAME 华 E-NAME , O 男 O , O 1 O 9 O 5 O 4 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 汉 B-ORG 商 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 陈 B-NAME 光 M-NAME 优 E-NAME , O 男 O , O 1 O 9 O 7 O 5 O 年 O 生 O 。 O 毕 O 业 O 于 O 福 B-ORG 建 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 E-ORG 。 O 任 O 永 B-ORG 辉 M-ORG 超 M-ORG 市 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 管 O 公 O 司 O 安 O 徽 O 、 O 江 O 苏 O 及 O 河 O 南 O 区 O 域 O 公 O 共 O 事 O 务 O 及 O 投 O 资 O 。 O 历 O 任 O 永 B-ORG 辉 M-ORG 超 M-ORG 市 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG ( M-ORG 前 M-ORG 福 M-ORG 建 M-ORG 永 M-ORG 辉 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG ) M-ORG 上 M-ORG 渡 M-ORG 店 E-ORG 学 B-TITLE 习 M-TITLE 店 M-TITLE 助 E-TITLE 、 O 店 B-TITLE 助 E-TITLE , O 仓 B-TITLE 山 M-TITLE 片 M-TITLE 区 M-TITLE 区 M-TITLE 域 M-TITLE 店 M-TITLE 助 E-TITLE 、 O 店 B-TITLE 长 E-TITLE , O 闽 B-TITLE 南 M-TITLE 地 M-TITLE 区 M-TITLE 区 M-TITLE 域 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 安 B-TITLE 徽 M-TITLE 区 M-TITLE 域 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 沈 B-NAME 灵 M-NAME 佳 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 9 O 月 O 生 O , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 担 O 任 O 湖 B-ORG 北 M-ORG 省 M-ORG 医 M-ORG 药 M-ORG 工 M-ORG 业 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 湖 B-ORG 北 M-ORG 丽 M-ORG 益 M-ORG 医 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 北 M-ORG 丽 M-ORG 益 M-ORG 医 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 2 O 月 O 任 O 江 B-ORG 苏 M-ORG 恒 M-ORG 瑞 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 龙 B-NAME 伟 E-NAME : O 男 O , O 1 O 9 O 6 O 8 O 年 O 1 O 0 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 2 O 0 O 0 O 8 O 年 O 7 O 月 O 毕 O 业 O 于 O 重 B-ORG 庆 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 。 O 2 O 0 O 0 O 2 O 年 O 1 O 0 O 月 O - O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 在 O 博 B-ORG 世 M-ORG 电 M-ORG 动 M-ORG 工 M-ORG 具 M-ORG ( M-ORG 中 M-ORG 国 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 中 B-TITLE 国 M-TITLE 西 M-TITLE 部 M-TITLE 大 M-TITLE 区 M-TITLE 销 M-TITLE 售 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 今 O 在 O 锐 B-ORG 奇 M-ORG 股 M-ORG 份 E-ORG 任 O 销 B-TITLE 售 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 锐 B-ORG 奇 M-ORG 股 M-ORG 份 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 严 B-NAME 文 M-NAME 俊 E-NAME 先 O 生 O 简 O 历 O 严 B-NAME 文 M-NAME 俊 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 1 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 江 B-ORG 苏 M-ORG 大 M-ORG 学 E-ORG 汽 B-PRO 车 M-PRO 设 M-PRO 计 M-PRO 与 M-PRO 制 M-PRO 造 M-PRO 专 M-PRO 业 E-PRO 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 重 B-ORG 汽 M-ORG 技 M-ORG 术 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 中 B-ORG 国 M-ORG 重 M-ORG 型 M-ORG 汽 M-ORG 车 M-ORG 集 M-ORG 团 M-ORG 济 M-ORG 南 M-ORG 卡 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 重 M-ORG 汽 M-ORG 集 M-ORG 团 M-ORG 济 M-ORG 南 M-ORG 卡 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 严 B-NAME 文 M-NAME 俊 E-NAME 先 O 生 O 现 O 任 O 中 B-ORG 国 M-ORG 重 M-ORG 汽 M-ORG 集 M-ORG 团 M-ORG 济 M-ORG 南 M-ORG 卡 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 秦 B-NAME 文 M-NAME 莉 E-NAME , O 女 O , O 1 O 9 O 6 O 9 O 年 O 2 O 月 O 生 O , O 法 B-PRO 律 E-PRO 研 B-EDU 究 M-EDU 生 E-EDU , O 四 B-TITLE 级 M-TITLE 律 M-TITLE 师 E-TITLE , O 民 B-TITLE 革 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 8 O 9 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 在 O 上 B-ORG 海 M-ORG 卢 M-ORG 湾 M-ORG 区 M-ORG 人 M-ORG 民 M-ORG 检 M-ORG 察 M-ORG 院 E-ORG 起 O 诉 O 科 O 、 O 上 B-ORG 海 M-ORG 沪 M-ORG 江 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 任 B-TITLE 职 E-TITLE , O 现 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 华 M-ORG 通 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 E-TITLE 。 O 董 B-NAME 明 E-NAME 先 O 生 O , O 本 B-EDU 科 E-EDU , O 2 O 0 O 0 O 4 O 年 O 加 O 入 O 长 B-ORG 城 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 先 O 后 O 在 O 营 B-ORG 销 M-ORG 公 M-ORG 司 E-ORG 任 O 公 B-TITLE 关 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 长 B-ORG 城 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 营 B-ORG 销 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 务 O , O 现 O 任 O 营 B-ORG 销 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 至 O 今 O 任 O 长 B-ORG 城 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 林 B-NAME 万 M-NAME 祥 E-NAME , O 男 O , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 大 B-EDU 学 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU 。 O 历 O 任 O 西 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 现 M-ORG 代 M-ORG 会 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE ; O 西 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 会 B-TITLE 计 M-TITLE 学 M-TITLE 博 M-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 现 O 任 O 四 B-ORG 川 M-ORG 天 M-ORG 一 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 四 B-ORG 川 M-ORG 国 M-ORG 栋 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 成 B-ORG 都 M-ORG 市 M-ORG 新 M-ORG 筑 M-ORG 路 M-ORG 桥 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 四 B-ORG 川 M-ORG 川 M-ORG 大 M-ORG 智 M-ORG 胜 M-ORG 软 M-ORG 件 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 四 B-ORG 川 M-ORG 九 M-ORG 洲 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 谢 B-NAME 中 M-NAME 华 E-NAME , O 男 O , O 1 O 9 O 4 O 8 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 6 O 8 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 兴 B-ORG 宁 M-ORG 通 M-ORG 用 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE , O 广 B-ORG 东 M-ORG 明 M-ORG 珠 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 第 B-TITLE 三 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 广 B-ORG 东 M-ORG 明 M-ORG 珠 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 司 B-NAME 国 M-NAME 晨 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 1 O 9 O 4 O 5 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 贴 O 。 O 历 O 任 O 中 B-ORG 国 M-ORG 建 M-ORG 筑 M-ORG 材 M-ORG 料 M-ORG 工 M-ORG 业 M-ORG 建 M-ORG 设 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 唐 M-ORG 山 M-ORG 安 M-ORG 装 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 经 B-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 建 M-ORG 筑 M-ORG 材 M-ORG 料 M-ORG 工 M-ORG 业 M-ORG 建 M-ORG 设 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 中 B-ORG 材 M-ORG 建 M-ORG 设 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 材 M-ORG 国 M-ORG 际 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE ; O 现 O 兼 O 任 O 中 B-ORG 材 M-ORG 建 M-ORG 设 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 建 M-ORG 材 M-ORG 工 M-ORG 程 M-ORG 建 M-ORG 设 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 。 O 是 O 推 O 动 O 建 O 材 O 工 O 程 O 建 O 设 O 领 O 域 O 国 O 内 O 外 O 工 O 程 O 总 O 承 O 包 O 模 O 式 O 的 O 实 O 践 O 者 O 和 O 代 O 表 O 人 O 物 O 。 O 陆 B-NAME 兆 M-NAME 奎 E-NAME , O 男 O , O 政 B-TITLE 工 M-TITLE 师 E-TITLE , O 公 B-ORG 司 M-ORG 所 M-ORG 属 M-ORG 厂 M-ORG 东 M-ORG 江 M-ORG 糖 M-ORG 厂 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 谢 B-NAME 孔 M-NAME 标 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 中 B-ORG 国 M-ORG 药 M-ORG 科 M-ORG 大 M-ORG 学 E-ORG 毕 O 业 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 执 B-TITLE 业 M-TITLE 药 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O , O 担 O 任 O 山 B-ORG 东 M-ORG 鲁 M-ORG 抗 M-ORG 医 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 赛 M-ORG 特 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 1 O 月 O 任 O 山 B-ORG 东 M-ORG 鲁 M-ORG 抗 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 制 B-TITLE 剂 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 兼 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 2 O 9 O 日 O 辞 O 去 O 山 B-ORG 东 M-ORG 鲁 M-ORG 抗 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 李 B-NAME 兵 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 万 M-ORG 众 M-ORG 空 M-ORG 调 M-ORG 国 M-ORG 际 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 设 B-TITLE 计 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 加 B-ORG 冷 M-ORG 有 M-ORG 限 E-ORG 技 B-TITLE 术 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 厦 B-ORG 门 M-ORG 松 M-ORG 芝 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 加 M-ORG 冷 M-ORG 松 M-ORG 芝 M-ORG 汽 M-ORG 车 M-ORG 空 M-ORG 调 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 兼 O 任 O 义 B-ORG 兴 M-ORG 投 M-ORG 资 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 任 B-NAME 建 M-NAME 成 E-NAME , O 男 O , O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 研 B-EDU 究 M-EDU 生 M-EDU 班 E-EDU 毕 O 业 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 在 O 天 B-ORG 津 M-ORG 三 M-ORG 建 M-ORG 建 M-ORG 筑 M-ORG 工 M-ORG 程 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 现 O 任 O 天 B-ORG 津 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 产 M-ORG 业 M-ORG 园 M-ORG 区 M-ORG 开 M-ORG 发 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 天 B-ORG 津 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 产 M-ORG 业 M-ORG 园 M-ORG 区 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 侯 B-NAME 玉 M-NAME 清 E-NAME 先 O 生 O : O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE , O 任 O 期 O 至 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 2 O 9 O 日 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 3 O 年 O 1 O 2 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 西 B-ORG 安 M-ORG 电 M-ORG 子 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 在 O 江 B-ORG 西 M-ORG 有 M-ORG 线 M-ORG 电 M-ORG 厂 E-ORG 、 O 广 B-ORG 州 M-ORG 通 M-ORG 信 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 第 O 五 O 研 O 究 O 室 O 工 O 作 O 。 O 2 O 0 O 0 O 0 O 年 O 起 O 就 O 职 O 于 O 广 B-ORG 州 M-ORG 杰 M-ORG 赛 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 先 O 后 O 任 O 职 O 于 O 通 B-ORG 信 M-ORG 设 M-ORG 备 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 、 O 技 B-ORG 术 M-ORG 中 M-ORG 心 E-ORG 、 O 网 B-ORG 络 M-ORG 通 M-ORG 信 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 等 O 部 O 门 O , O 现 O 任 O 职 O 于 O 网 B-ORG 络 M-ORG 通 M-ORG 信 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 辉 M-NAME 峰 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 9 O 月 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 国 M-TITLE 际 M-TITLE 商 M-TITLE 务 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 轻 M-ORG 工 M-ORG 业 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 M-ORG 日 M-ORG 用 M-ORG 品 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 轻 M-ORG 工 M-ORG 国 M-ORG 际 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 五 M-ORG 金 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 市 M-ORG 轻 M-ORG 工 M-ORG 业 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 轻 M-ORG 工 M-ORG 国 M-ORG 际 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 兰 M-ORG 生 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 、 M-TITLE 第 M-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE , O 上 B-ORG 海 M-ORG 兰 M-ORG 生 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 营 B-TITLE 运 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 东 M-ORG 浩 M-ORG 兰 M-ORG 生 M-ORG 国 M-ORG 际 M-ORG 服 M-ORG 务 M-ORG 贸 M-ORG 易 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 兰 M-ORG 生 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 邵 B-NAME 毅 M-NAME 平 E-NAME , O 女 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 6 O 3 O 年 O 1 O 0 O 月 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 8 O 年 O 7 O 月 O 年 O 参 O 加 O 工 O 作 O , O 浙 B-ORG 江 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 E-ORG 会 B-TITLE 计 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 硕 B-TITLE 士 M-TITLE 研 M-TITLE 究 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 个 B-TITLE 人 M-TITLE 会 M-TITLE 员 E-TITLE , O 浙 B-ORG 江 M-ORG 省 M-ORG 会 M-ORG 计 M-ORG 制 M-ORG 度 M-ORG 与 M-ORG 会 M-ORG 计 M-ORG 准 M-ORG 则 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 。 O 先 O 后 O 在 O 《 O 数 O 量 O 经 O 济 O 技 O 术 O 经 O 济 O 研 O 究 O 》 O 、 O 《 O 财 O 务 O 与 O 会 O 计 O 》 O 、 O 《 O 财 O 经 O 论 O 丛 O 》 O 、 O 《 O 当 O 代 O 财 O 经 O 》 O 、 O 《 O 四 O 川 O 会 O 计 O 》 O 、 O 《 O 上 O 海 O 会 O 计 O 》 O 、 O 《 O 广 O 西 O 会 O 计 O 》 O 与 O 《 O 浙 O 江 O 财 O 税 O 与 O 会 O 计 O 》 O 等 O 多 O 家 O 刊 O 物 O 上 O 公 O 开 O 发 O 表 O 学 O 术 O 论 O 文 O 三 O 十 O 余 O 篇 O , O 并 O 主 O 持 O 或 O 参 O 与 O 过 O 中 O 国 O 会 O 计 O 学 O 会 O 课 O 题 O 、 O 省 O 教 O 育 O 厅 O 课 O 题 O 和 O 浙 O 江 O 财 O 经 O 学 O 院 O 课 O 题 O 近 O 十 O 项 O 。 O 邵 B-NAME 毅 M-NAME 平 E-NAME 女 O 士 O 现 O 任 O 浙 B-ORG 江 M-ORG 利 M-ORG 欧 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 同 O 时 O 担 O 任 O 浙 B-ORG 江 M-ORG 海 M-ORG 正 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 浙 B-ORG 江 M-ORG 江 M-ORG 山 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 浙 B-ORG 江 M-ORG 海 M-ORG 利 M-ORG 得 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 的 O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 景 M-NAME 升 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 4 O 年 O 6 O 月 O 出 O 生 O 。 O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 E-TITLE 。 O 曾 O 任 O 东 B-ORG 北 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 政 M-ORG 税 M-ORG 务 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 师 E-TITLE , O 现 O 任 O 东 B-ORG 北 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 内 M-ORG 部 M-ORG 控 M-ORG 制 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 协 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 大 B-ORG 连 M-ORG 市 M-ORG 政 M-ORG 府 E-ORG 采 B-TITLE 购 M-TITLE 评 M-TITLE 标 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 大 B-ORG 连 M-ORG 市 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 房 M-TITLE 地 M-TITLE 产 M-TITLE 估 M-TITLE 价 M-TITLE 师 E-TITLE 、 O 司 B-TITLE 法 M-TITLE 鉴 M-TITLE 定 M-TITLE 人 E-TITLE 。 O 沈 B-NAME 振 M-NAME 云 E-NAME 先 O 生 O 简 O 历 O : O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 秦 B-ORG 皇 M-ORG 岛 M-ORG 耀 M-ORG 华 M-ORG 国 M-ORG 投 M-ORG 浮 M-ORG 法 M-ORG 玻 M-ORG 璃 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 装 B-TITLE 备 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 沈 B-ORG 阳 M-ORG 耀 M-ORG 华 M-ORG 玻 M-ORG 璃 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 集 B-ORG 团 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 李 B-NAME 英 M-NAME 杰 E-NAME : O 女 O , O 1 O 9 O 5 O 2 O 年 O 1 O 1 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 公 B-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 组 B-TITLE 织 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 企 B-TITLE 业 M-TITLE 策 M-TITLE 划 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 高 B-NAME 海 M-NAME 龙 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 7 O 2 O 年 O 7 O 月 O 生 O , O 硕 B-EDU 士 E-EDU 。 O 1 O 9 O 9 O 4 O 年 O 9 O 月 O 起 O 任 O 安 B-ORG 徽 M-ORG 省 M-ORG 巢 M-ORG 湖 M-ORG 水 M-ORG 泥 M-ORG 厂 M-ORG 学 M-ORG 校 E-ORG 教 B-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 8 O 月 O 任 O 安 B-ORG 徽 M-ORG 巢 M-ORG 东 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 室 M-TITLE 职 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 起 O 任 O 安 B-ORG 徽 M-ORG 巢 M-ORG 东 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 起 O 任 O 职 O 于 O 苏 B-ORG 州 M-ORG 新 M-ORG 海 M-ORG 宜 M-ORG 通 M-ORG 信 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 曾 O 任 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 3 O 月 O 起 O 任 O 董 B-TITLE 事 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE , O 兼 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 易 M-ORG 思 M-ORG 博 M-ORG 软 M-ORG 件 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 苏 B-ORG 州 M-ORG 海 M-ORG 汇 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 苏 B-ORG 州 M-ORG 新 M-ORG 海 M-ORG 宜 M-ORG 光 M-ORG 电 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 罗 B-NAME 利 M-NAME 成 E-NAME 先 O 生 O : O 1 O 9 O 6 O 5 O 年 O 2 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 金 B-ORG 科 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 曾 O 任 O 职 O 于 O 重 B-ORG 庆 M-ORG 荣 M-ORG 昌 M-ORG 建 M-ORG 设 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 、 O 重 B-ORG 庆 M-ORG 荣 M-ORG 昌 M-ORG 电 M-ORG 厂 E-ORG , O 2 O 0 O 0 O 0 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 8 O 月 O 历 O 任 O 金 B-ORG 科 M-ORG 集 M-ORG 团 M-ORG 规 M-ORG 划 M-ORG 设 M-ORG 计 M-ORG 中 M-ORG 心 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 金 B-ORG 科 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 8 O 月 O 至 O 今 O , O 任 O 金 B-ORG 科 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 3 O 月 O , O 任 O 金 B-ORG 科 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE , O 其 O 中 O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 任 O 金 B-ORG 科 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 总 M-TITLE 裁 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 2 O 月 O , O 任 O 金 B-ORG 科 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 江 M-ORG 苏 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 起 O , O 任 O 金 B-ORG 科 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 喻 B-NAME 昌 M-NAME 平 E-NAME , O 男 O , O 农 B-ORG 工 M-ORG 民 M-ORG 主 M-ORG 党 E-ORG 党 B-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 5 O 年 O 7 O 月 O 毕 O 业 O 于 O 于 O 武 B-ORG 汉 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG ( O 原 O 武 B-ORG 汉 M-ORG 建 M-ORG 筑 M-ORG 材 M-ORG 料 M-ORG 工 M-ORG 业 M-ORG 学 M-ORG 院 E-ORG ) O 工 B-PRO 业 M-PRO 自 M-PRO 动 M-PRO 化 M-PRO 专 M-PRO 业 E-PRO , O 1 O 9 O 9 O 0 O 年 O 3 O 月 O 获 O 冶 B-ORG 金 M-ORG 部 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 化 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 1 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 2 O 6 O 日 O 起 O 任 O 北 B-ORG 京 M-ORG 金 M-ORG 自 M-ORG 天 M-ORG 正 M-ORG 智 M-ORG 能 M-ORG 控 M-ORG 制 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 总 M-TITLE 监 E-TITLE 兼 O 市 B-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 中 M-TITLE 心 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 李 B-NAME 建 M-NAME 华 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 6 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 东 B-ORG 营 M-ORG 市 M-ORG 造 M-ORG 纸 M-ORG 厂 E-ORG 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 技 M-TITLE 术 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE 。 O 华 B-ORG 泰 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE ; O 山 B-ORG 东 M-ORG 华 M-ORG 泰 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 华 B-ORG 泰 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 等 O 职 O 务 O 。 O 当 O 选 O 为 O 全 B-TITLE 国 M-TITLE 劳 M-TITLE 动 M-TITLE 模 M-TITLE 范 E-TITLE ; O 全 B-TITLE 国 M-TITLE 优 M-TITLE 秀 M-TITLE 经 M-TITLE 营 M-TITLE 管 M-TITLE 理 M-TITLE 工 M-TITLE 作 M-TITLE 者 E-TITLE ; O 全 B-TITLE 国 M-TITLE 优 M-TITLE 秀 M-TITLE 党 M-TITLE 务 M-TITLE 工 M-TITLE 作 M-TITLE 者 E-TITLE ; O 第 B-TITLE 二 M-TITLE 届 M-TITLE 中 M-TITLE 国 M-TITLE “ M-TITLE 创 M-TITLE 业 M-TITLE 企 M-TITLE 业 M-TITLE 家 M-TITLE ” E-TITLE ; O 南 B-ORG 京 M-ORG 林 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 特 B-TITLE 聘 M-TITLE 教 M-TITLE 授 E-TITLE ; O 山 B-ORG 东 M-ORG 省 M-ORG 工 M-ORG 商 M-ORG 联 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 中 B-ORG 国 M-ORG 造 M-ORG 纸 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE ; O 中 B-ORG 国 M-ORG 造 M-ORG 纸 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE ; O 全 B-ORG 国 M-ORG 工 M-ORG 商 M-ORG 联 M-ORG 纸 M-ORG 业 M-ORG 商 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE ; O 并 O 荣 O 获 O “ O 五 O 一 O 劳 O 动 O 奖 O 章 O ” O , O 是 O 第 B-TITLE 九 M-TITLE 、 M-TITLE 十 M-TITLE 、 M-TITLE 十 M-TITLE 一 M-TITLE 、 M-TITLE 十 M-TITLE 二 M-TITLE 届 M-TITLE 全 M-TITLE 国 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 贴 O 。 O 现 O 任 O 山 B-ORG 东 M-ORG 华 M-ORG 泰 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 栾 B-NAME 永 M-NAME 良 E-NAME 先 O 生 O : O 1 O 9 O 5 O 2 O 年 O 出 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 崇 M-ORG 文 M-ORG 区 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 北 B-ORG 京 M-ORG 崇 M-ORG 远 M-ORG 投 M-ORG 资 M-ORG 经 M-ORG 营 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 北 B-ORG 京 M-ORG 建 M-ORG 远 M-ORG 投 M-ORG 资 M-ORG 经 M-ORG 营 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 曹 B-NAME 春 M-NAME 昱 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 生 O 于 O 1 O 9 O 6 O 4 O 年 O 2 O 月 O , O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 至 O 今 O 在 O 中 B-ORG 国 M-ORG 制 M-ORG 浆 M-ORG 造 M-ORG 纸 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 工 O 作 O , O 任 O 院 B-TITLE 长 E-TITLE 。 O 曹 B-NAME 巍 E-NAME 先 O 生 O : O 男 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 专 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 至 O 今 O 历 O 任 O 江 B-ORG 苏 M-ORG 中 M-ORG 泰 M-ORG 桥 M-ORG 梁 M-ORG 钢 M-ORG 构 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 中 M-ORG 泰 M-ORG 桥 M-ORG 梁 M-ORG 钢 M-ORG 构 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 贺 B-NAME 竹 M-NAME 磬 E-NAME : O 男 O , O 1 O 9 O 7 O 6 O 年 O 7 O 月 O 出 O 生 O , O 博 B-EDU 士 E-EDU , O 副 B-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 获 O 西 B-ORG 安 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 至 O 今 O 在 O 招 B-ORG 商 M-ORG 局 M-ORG 华 M-ORG 建 M-ORG 公 M-ORG 路 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 曾 O 在 O 长 B-ORG 庆 M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 局 E-ORG 、 O 招 B-ORG 商 M-ORG 局 M-ORG 集 M-ORG 团 M-ORG 博 M-ORG 士 M-ORG 后 M-ORG 工 M-ORG 作 M-ORG 站 E-ORG 工 O 作 O , O 现 O 任 O 招 B-ORG 商 M-ORG 局 M-ORG 华 M-ORG 建 M-ORG 公 M-ORG 路 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 四 B-ORG 川 M-ORG 成 M-ORG 渝 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 公 M-ORG 路 M-ORG 学 M-ORG 会 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 分 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 及 O 中 B-ORG 国 M-ORG 公 M-ORG 路 M-ORG 学 M-ORG 会 E-ORG 青 B-TITLE 年 M-TITLE 专 M-TITLE 家 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 1 O 日 O 起 O 至 O 今 O 任 O 楚 B-ORG 天 M-ORG 高 M-ORG 速 E-ORG 董 B-TITLE 事 E-TITLE 。 O 李 B-NAME 金 M-NAME 明 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 3 O 年 O 3 O 月 O 生 O 。 O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 复 B-ORG 旦 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 会 B-PRO 计 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 货 B-PRO 币 M-PRO 银 M-PRO 行 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 法 B-ORG 国 M-ORG 巴 M-ORG 黎 M-ORG H M-ORG E M-ORG C M-ORG 商 M-ORG 学 M-ORG 院 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU ( O 教 O 育 O 部 O 留 O 学 O 认 O 证 O ) O ; O 曾 O 任 O 北 B-ORG 京 M-ORG 双 M-ORG 鹤 M-ORG 药 M-ORG 业 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 北 B-ORG 京 M-ORG 双 M-ORG 鹤 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 金 B-TITLE 鹤 M-TITLE 工 M-TITLE 程 M-TITLE ( M-TITLE 信 M-TITLE 息 M-TITLE 化 M-TITLE 建 M-TITLE 设 M-TITLE ) M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ( O 兼 O ) O , O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 西 B-ORG 藏 M-ORG 奇 M-ORG 正 M-ORG 藏 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 西 B-ORG 藏 M-ORG 宇 M-ORG 妥 M-ORG 藏 M-ORG 药 M-ORG 产 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 北 B-ORG 京 M-ORG 奇 M-ORG 正 M-ORG 天 M-ORG 麦 M-ORG 力 M-ORG 健 M-ORG 康 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 甘 B-ORG 南 M-ORG 佛 M-ORG 阁 M-ORG 藏 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 马 B-NAME 武 E-NAME , O 男 O , O 1 O 9 O 7 O 3 O 年 O 5 O 月 O 出 O 生 O , O 本 B-EDU 科 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 南 M-ORG 武 M-ORG 陵 M-ORG 旅 M-ORG 游 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 金 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 鸿 M-ORG 仪 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 总 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 嘉 M-ORG 瑞 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 湖 B-ORG 南 M-ORG 嘉 M-ORG 瑞 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O ================================================ FILE: named_entity_recognition/ResumeNER/train.char.bmes ================================================ 高 B-NAME 勇 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 美 B-ORG 国 M-ORG 项 M-ORG 目 M-ORG 管 M-ORG 理 M-ORG 协 M-ORG 会 E-ORG 注 B-TITLE 册 M-TITLE 会 M-TITLE 员 E-TITLE ( O P B-TITLE M M-TITLE I M-TITLE M M-TITLE e M-TITLE m M-TITLE b M-TITLE e M-TITLE r E-TITLE ) O 、 O 注 B-TITLE 册 M-TITLE 项 M-TITLE 目 M-TITLE 管 M-TITLE 理 M-TITLE 专 M-TITLE 家 E-TITLE ( O P B-TITLE M M-TITLE P E-TITLE ) O 、 O 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 至 O 今 O 任 O 人 B-ORG 和 M-ORG 投 M-ORG 资 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 至 O 今 O 任 O 山 B-ORG 东 M-ORG 三 M-ORG 维 M-ORG 石 M-ORG 化 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 雁 M-NAME 冰 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 1 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 兰 B-ORG 州 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 会 B-PRO 计 M-PRO 专 M-PRO 业 E-PRO 学 B-EDU 士 E-EDU , O 中 B-ORG 国 M-ORG 社 M-ORG 科 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 国 B-PRO 际 M-PRO 贸 M-PRO 易 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 1 O 9 O 8 O 7 O 年 O 7 O 月 O - O 1 O 9 O 9 O 5 O 年 O 5 O 月 O 任 O 甘 B-ORG 肃 M-ORG 省 M-ORG 友 M-ORG 谊 M-ORG 公 M-ORG 司 E-ORG 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 第 B-TITLE 二 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 9 O 5 O 年 O 5 O 月 O - O - O 2 O 0 O 1 O 0 O 年 O 2 O 月 O 历 O 任 O 华 B-ORG 为 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 山 B-ORG 东 M-ORG 华 M-ORG 为 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 河 B-ORG 北 M-ORG 华 M-ORG 为 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 乌 B-ORG 克 M-ORG 兰 M-ORG 华 M-ORG 为 E-ORG 财 B-TITLE 经 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 长 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 北 B-ORG 京 M-ORG 鼎 M-ORG 汉 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 陈 B-NAME 云 M-NAME 峰 E-NAME 先 O 生 O , O 1 O 9 O 9 O 2 O 年 O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG , O 获 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 1 O 9 O 9 O 2 O 年 O 至 O 1 O 9 O 9 O 3 O 年 O 于 O 外 B-ORG 交 M-ORG 部 E-ORG 财 B-TITLE 务 M-TITLE 司 M-TITLE 二 M-TITLE 处 E-TITLE 工 O 作 O ; O 先 O 后 O 担 O 任 O 北 B-ORG 京 M-ORG 中 M-ORG 银 M-ORG 信 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 和 O 凤 B-ORG 凰 M-ORG 城 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 北 B-ORG 京 M-ORG 市 M-ORG 保 M-ORG 福 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 北 B-ORG 京 M-ORG 新 M-ORG 天 M-ORG 麓 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 以 O 及 O 北 B-ORG 京 M-ORG 中 M-ORG 经 M-ORG 大 M-ORG 厦 M-ORG 物 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 、 O 北 B-ORG 京 M-ORG 博 M-ORG 雅 M-ORG 苑 M-ORG 置 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 及 O 集 B-ORG 团 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 曾 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 杨 B-NAME 帆 E-NAME , O 男 O , O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 杨 B-NAME 帆 E-NAME 先 O 生 O 曾 O 任 O 天 B-ORG 津 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 、 O 国 B-ORG 家 M-ORG 物 M-ORG 价 M-ORG 局 E-ORG 涉 B-TITLE 外 M-TITLE 价 M-TITLE 格 M-TITLE 司 M-TITLE 进 M-TITLE 出 M-TITLE 口 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 湖 B-ORG 北 M-ORG 天 M-ORG 华 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 贾 B-NAME 志 M-NAME 颖 E-NAME 女 O 士 O : O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 天 B-ORG 津 M-ORG 市 M-ORG 化 M-ORG 工 M-ORG 原 M-ORG 料 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 分 M-TITLE 公 M-TITLE 司 M-TITLE 会 M-TITLE 计 M-TITLE 主 M-TITLE 管 E-TITLE , O 天 B-ORG 津 M-ORG 新 M-ORG 星 M-ORG 文 M-ORG 教 M-ORG 学 M-ORG 具 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O G B-ORG M M-ORG P M-ORG T M-ORG ( M-ORG 天 M-ORG 津 M-ORG ) M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 天 B-ORG 津 M-ORG 赛 M-ORG 象 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 E-TITLE , O 现 O 任 O 天 B-ORG 津 M-ORG 赛 M-ORG 象 M-ORG 酒 M-ORG 店 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 段 B-NAME 继 M-NAME 东 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 5 O 年 O 5 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 山 B-ORG 东 M-ORG 齐 M-ORG 鲁 M-ORG 制 M-ORG 药 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 贵 B-ORG 州 M-ORG 神 M-ORG 奇 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 昆 B-ORG 明 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 仁 B-ORG 和 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 北 B-ORG 京 M-ORG 时 M-ORG 代 M-ORG 方 M-ORG 略 M-ORG 企 M-ORG 业 M-ORG 咨 M-ORG 询 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 张 B-NAME 礼 M-NAME 进 E-NAME , O 男 O , O 1 O 9 O 7 O 1 O 年 O 6 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 吉 B-ORG 林 M-ORG 大 M-ORG 学 E-ORG 数 B-PRO 量 M-PRO 经 M-PRO 济 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 软 M-ORG 件 M-ORG 与 M-ORG 技 M-ORG 术 M-ORG 服 M-ORG 务 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 群 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 兼 O 纪 B-TITLE 检 M-TITLE 监 M-TITLE 察 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 监 B-TITLE 事 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 电 M-ORG 子 M-ORG 纪 M-ORG 检 M-ORG 监 M-ORG 察 M-ORG 部 M-ORG ( M-ORG 审 M-ORG 计 M-ORG 部 M-ORG ) M-ORG 一 M-ORG 处 E-ORG 处 B-TITLE 长 E-TITLE , O 报 O 告 O 期 O 内 O 辞 O 去 O 中 B-ORG 国 M-ORG 软 M-ORG 件 M-ORG 与 M-ORG 技 M-ORG 术 M-ORG 服 M-ORG 务 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 职 O 务 O 。 O 谢 B-NAME 永 M-NAME 林 E-NAME , O 副 B-TITLE 行 M-TITLE 长 E-TITLE 。 O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 获 O 得 O 南 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 理 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 企 B-PRO 业 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 现 O 任 O 平 B-ORG 安 M-ORG 银 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 4 O 年 O 1 O 0 O 月 O 加 O 入 O 中 B-ORG 国 M-ORG 平 M-ORG 安 M-ORG 保 M-ORG 险 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 历 O 任 O 江 B-ORG 苏 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 业 M-TITLE 务 M-TITLE 主 M-TITLE 任 E-TITLE , O 平 B-ORG 安 M-ORG 产 M-ORG 险 M-ORG 南 M-ORG 京 M-ORG 分 M-ORG 公 M-ORG 司 M-ORG 大 M-ORG 厂 M-ORG 支 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE ( O 主 O 持 O 工 O 作 O ) O , O 平 B-ORG 安 M-ORG 寿 M-ORG 险 M-ORG 无 M-ORG 锡 M-ORG 支 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE ( O 主 O 持 O 工 O 作 O ) O , O 平 B-ORG 安 M-ORG 寿 M-ORG 险 M-ORG 南 M-ORG 京 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 险 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 经 B-TITLE 理 E-TITLE , O 平 B-ORG 安 M-ORG 寿 M-ORG 险 M-ORG 杭 M-ORG 州 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ( O 主 O 持 O 工 O 作 O ) O , O 平 B-ORG 安 M-ORG 集 M-ORG 团 M-ORG 发 M-ORG 展 M-ORG 改 M-ORG 革 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 平 B-ORG 安 M-ORG 寿 M-ORG 险 E-ORG 市 B-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 浙 B-ORG 江 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 2 O 0 O 0 O 6 O 年 O 3 O 月 O 加 O 入 O 原 O 平 B-ORG 安 M-ORG 银 M-ORG 行 E-ORG , O 历 O 任 O 运 B-TITLE 营 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 总 M-TITLE 监 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 任 O 原 O 平 B-ORG 安 M-ORG 银 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE , O 并 O 自 O 2 O 0 O 0 O 7 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 任 O 原 O 平 B-ORG 安 M-ORG 银 M-ORG 行 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 7 O 月 O 加 O 入 O 深 B-ORG 圳 M-ORG 发 M-ORG 展 M-ORG 银 M-ORG 行 E-ORG , O 任 O 副 B-TITLE 行 M-TITLE 长 E-TITLE 。 O 罗 B-NAME 军 E-NAME : O 男 O , O 汉 S-RACE , O 党 B-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O , O 曾 O 任 O 公 B-ORG 司 M-ORG 变 M-ORG 压 M-ORG 器 M-ORG 厂 M-ORG 销 M-ORG 售 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 销 B-ORG 售 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 公 B-ORG 司 M-ORG 销 M-ORG 售 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 M-ORG 变 M-ORG 压 M-ORG 器 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 。 O 孙 B-NAME 醒 E-NAME : O 男 O , O 1 O 9 O 7 O 6 O 年 O 出 O 生 O , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 高 M-ORG 科 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 河 B-ORG 南 M-ORG 硕 M-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 曾 O 任 O 河 B-ORG 南 M-ORG 联 M-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 梁 B-NAME 明 M-NAME 煅 E-NAME 先 O 生 O : O 1 O 9 O 6 O 2 O 年 O 7 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 民 B-ORG 进 E-ORG 会 B-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 房 M-TITLE 地 M-TITLE 产 M-TITLE 估 M-TITLE 价 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 所 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 厦 B-ORG 门 M-ORG 市 M-ORG 大 M-ORG 学 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 同 O 时 O 兼 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 高 M-ORG 级 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 评 M-ORG 审 M-ORG 委 M-ORG 员 M-ORG 会 M-ORG 评 M-ORG 审 M-ORG 专 M-ORG 家 M-ORG 库 E-ORG 第 B-TITLE 八 M-TITLE 、 M-TITLE 九 M-TITLE 届 M-TITLE 成 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 协 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 福 B-ORG 建 M-ORG 省 M-ORG 土 M-ORG 地 M-ORG 估 M-ORG 价 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 厦 B-ORG 门 M-ORG 市 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 厦 B-ORG 门 M-ORG 市 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 中 M-ORG 介 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 及 O 专 B-TITLE 家 M-TITLE 组 M-TITLE 副 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 厦 B-ORG 门 M-ORG 市 M-ORG 十 M-ORG 一 M-ORG 届 M-ORG 政 M-ORG 协 E-ORG 委 B-TITLE 员 E-TITLE 、 O 民 B-ORG 进 M-ORG 厦 M-ORG 门 M-ORG 市 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 起 O 兼 O 任 O 厦 B-ORG 门 M-ORG 厦 M-ORG 工 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 厦 B-ORG 门 M-ORG 厦 M-ORG 工 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 由 O 于 O 工 O 作 O 调 O 动 O , O 2 O 0 O 1 O 1 O 年 O 8 O 月 O 1 O 9 O 日 O 起 O 不 O 再 O 担 O 任 O 厦 B-ORG 门 M-ORG 厦 M-ORG 工 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 艳 M-NAME 萍 E-NAME 女 O 士 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 E-ORG , O 北 B-ORG 京 M-ORG 证 M-ORG 券 M-ORG 投 M-ORG 资 M-ORG 银 M-ORG 行 E-ORG 业 B-TITLE 务 M-TITLE 一 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 山 B-ORG 东 M-ORG 江 M-ORG 泉 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 周 B-NAME 云 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 8 O 2 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 1 O 2 O 月 O 进 O 入 O 双 B-ORG 成 M-ORG 药 M-ORG 业 E-ORG 财 O 务 O 部 O 工 O 作 O , O 先 O 后 O 担 O 任 O 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 双 B-ORG 成 M-ORG 药 M-ORG 业 E-ORG 监 B-TITLE 事 E-TITLE 。 O 吴 B-NAME 国 M-NAME 芝 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 1 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 。 O 历 O 任 O 济 B-ORG 南 M-ORG 市 M-ORG 委 M-ORG 党 M-ORG 校 E-ORG 教 B-TITLE 师 E-TITLE , O 山 B-ORG 东 M-ORG 省 M-ORG 财 M-ORG 政 M-ORG 学 M-ORG 校 E-ORG 教 B-TITLE 师 E-TITLE , O 山 B-ORG 东 M-ORG 方 M-ORG 正 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE , O 山 B-ORG 东 M-ORG 中 M-ORG 山 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 山 B-ORG 东 M-ORG 和 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG ( M-ORG 特 M-ORG 殊 M-ORG 普 M-ORG 通 M-ORG 合 M-ORG 伙 M-ORG ) M-ORG 烟 M-ORG 台 M-ORG 芝 M-ORG 罘 M-ORG 分 M-ORG 所 E-ORG 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE , O 山 B-ORG 东 M-ORG 瑞 M-ORG 康 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 肖 B-NAME 春 M-NAME 华 E-NAME 先 O 生 O , O 4 O 8 O 岁 O , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 5 O 年 O 1 O 2 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 青 B-ORG 岛 M-ORG 工 M-ORG 具 M-ORG 四 M-ORG 厂 E-ORG ( O 青 B-ORG 岛 M-ORG 海 M-ORG 尔 M-ORG 电 M-ORG 冰 M-ORG 箱 M-ORG 厂 E-ORG 前 O 身 O ) O 工 B-TITLE 人 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 青 B-ORG 岛 M-ORG 海 M-ORG 尔 M-ORG 电 M-ORG 冰 M-ORG 箱 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 管 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 分 B-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 青 B-ORG 岛 M-ORG 海 M-ORG 尔 M-ORG 电 M-ORG 冰 M-ORG 柜 M-ORG 总 M-ORG 厂 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 青 B-ORG 岛 M-ORG 海 M-ORG 尔 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 律 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 7 O 月 O 至 O 今 O , O 任 O 青 B-ORG 岛 M-ORG 金 M-ORG 王 M-ORG 应 M-ORG 用 M-ORG 化 M-ORG 学 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 秦 B-NAME 和 M-NAME 清 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 6 O 年 O 3 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 9 O 月 O 任 O 湖 B-ORG 南 M-ORG 一 M-ORG 六 M-ORG 九 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 科 B-TITLE 研 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 1 O 0 O 月 O 任 O 湖 B-ORG 南 M-ORG 一 M-ORG 六 M-ORG 九 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 科 B-TITLE 技 M-TITLE 质 M-TITLE 量 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 研 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE 、 O 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 1 O 0 O 月 O 任 O 湖 B-ORG 南 M-ORG 一 M-ORG 六 M-ORG 九 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 3 O 月 O 任 O 湖 B-ORG 南 M-ORG 一 M-ORG 六 M-ORG 九 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 任 O 湖 B-ORG 南 M-ORG 一 M-ORG 六 M-ORG 九 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 7 O 月 O 任 O 湖 B-ORG 南 M-ORG 一 M-ORG 六 M-ORG 九 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O , O 任 O 湖 B-ORG 南 M-ORG 神 M-ORG 斧 M-ORG 民 M-ORG 爆 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 至 O 今 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 谢 B-NAME 名 M-NAME 优 E-NAME 先 O 生 O , O 1 O 9 O 7 O 2 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 8 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 担 O 任 O 汕 B-ORG 头 M-ORG 市 M-ORG 东 M-ORG 风 M-ORG 印 M-ORG 刷 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 汕 B-ORG 头 M-ORG 东 M-ORG 风 M-ORG 印 M-ORG 刷 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 邓 B-NAME 中 M-NAME 富 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 任 O 新 B-ORG 希 M-ORG 望 M-ORG 农 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 至 O 今 O 任 O 新 B-ORG 希 M-ORG 望 M-ORG 乳 M-ORG 业 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 3 O 月 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 5 O 月 O 至 O 今 O 担 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 王 B-NAME 宏 M-NAME 伟 E-NAME 先 O 生 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 6 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 城 M-ORG 市 M-ORG 开 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 建 M-TITLE 筑 M-TITLE 师 E-TITLE , O 北 B-ORG 京 M-ORG 首 M-ORG 都 M-ORG 开 M-ORG 发 M-ORG 控 M-ORG 股 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 规 M-TITLE 划 M-TITLE 师 E-TITLE , O 现 O 任 O 北 B-ORG 京 M-ORG 首 M-ORG 都 M-ORG 开 M-ORG 发 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 孙 B-NAME 红 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 4 O 6 O 年 O 2 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 任 O 西 B-ORG 安 M-ORG 饮 M-ORG 食 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 曾 O 荣 O 获 O 全 O 国 O 商 O 业 O 系 O 统 O 优 O 秀 O 政 O 工 O 干 O 部 O 、 O 西 O 安 O 市 O 优 O 秀 O 思 O 想 O 政 O 治 O 工 O 作 O 者 O 、 O 西 O 安 O 市 O 劳 O 动 O 模 O 范 O 等 O 称 O 号 O 。 O 张 B-NAME 同 M-NAME 松 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 7 O 8 O 年 O 生 O , O 高 B-EDU 中 M-EDU 学 M-EDU 历 E-EDU , O 无 B-TITLE 损 M-TITLE 检 M-TITLE 测 M-TITLE 助 M-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 无 B-TITLE 损 M-TITLE 检 M-TITLE 测 M-TITLE 高 M-TITLE 级 M-TITLE 检 M-TITLE 验 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 至 O 至 O 今 O 任 O 江 B-ORG 苏 M-ORG 玉 M-ORG 龙 M-ORG 钢 M-ORG 管 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 先 O 后 O 担 O 任 O 质 B-TITLE 检 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 精 B-TITLE 密 M-TITLE 质 M-TITLE 保 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 职 O 务 O , O 现 O 在 O 公 O 司 O 质 O 保 O 部 O 工 O 作 O 。 O 袁 B-NAME 中 M-NAME 强 E-NAME 先 O 生 O , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 在 O 锂 O 行 O 业 O 从 O 事 O 技 O 术 O 工 O 作 O 二 O 十 O 余 O 年 O , O 对 O 锂 O 化 O 工 O 设 O 备 O 有 O 着 O 丰 O 富 O 的 O 实 O 践 O 经 O 验 O 和 O 理 O 论 O 水 O 平 O , O 钻 O 研 O 能 O 力 O 很 O 强 O 。 O 历 O 任 O 新 B-ORG 疆 M-ORG 锂 M-ORG 盐 M-ORG 厂 E-ORG 车 B-TITLE 间 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE 、 O 工 B-TITLE 段 M-TITLE 长 E-TITLE 、 O 设 B-TITLE 备 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 机 B-TITLE 动 M-TITLE 能 M-TITLE 源 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 新 B-ORG 疆 M-ORG 锂 M-ORG 盐 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 党 M-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 5 O 月 O 起 O 任 O 赣 B-ORG 锋 M-ORG 有 M-ORG 限 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 邓 B-NAME 一 M-NAME 平 E-NAME , O 男 O , O 1 O 9 O 5 O 6 O 年 O 5 O 月 O 2 O 9 O 日 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 重 B-ORG 庆 M-ORG 万 M-ORG 里 M-ORG 蓄 M-ORG 电 M-ORG 池 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 改 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 王 B-NAME 敏 E-NAME 先 O 生 O : O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 武 M-ORG 装 M-ORG 部 M-ORG 队 M-ORG 装 M-ORG 甲 M-ORG 兵 M-ORG 训 M-ORG 练 M-ORG 基 M-ORG 地 E-ORG 技 B-TITLE 师 E-TITLE 、 O 教 B-TITLE 员 E-TITLE 、 O 合 B-ORG 肥 M-ORG 江 M-ORG 淮 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 造 M-ORG 厂 E-ORG 纪 B-TITLE 检 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 江 B-ORG 汽 M-ORG 集 M-ORG 团 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 等 O 职 O , O 近 O 五 O 年 O 主 O 要 O 就 O 任 O 安 B-ORG 徽 M-ORG 江 M-ORG 淮 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 吴 B-NAME 建 M-NAME 南 E-NAME , O 男 O , O 西 B-ORG 安 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 美 B-ORG 国 M-ORG S M-ORG y M-ORG r M-ORG a M-ORG c M-ORG u M-ORG s M-ORG e M-ORG 大 M-ORG 学 M-ORG M M-ORG a M-ORG x M-ORG w M-ORG e M-ORG l M-ORG l M-ORG 公 M-ORG 民 M-ORG 与 M-ORG 公 M-ORG 共 M-ORG 事 M-ORG 务 M-ORG 学 M-ORG 院 E-ORG 公 B-PRO 共 M-PRO 管 M-PRO 理 M-PRO 学 E-PRO 博 B-TITLE 士 M-TITLE 后 E-TITLE , O 现 O 任 O 西 B-ORG 安 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 公 M-ORG 共 M-ORG 政 M-ORG 策 M-ORG 与 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 张 B-NAME 敷 M-NAME 彪 E-NAME , O 1 O 9 O 5 O 0 O 年 O 1 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 会 B-PRO 计 E-PRO 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 化 M-ORG 工 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 厂 B-TITLE 部 M-TITLE 副 M-TITLE 厂 M-TITLE 长 E-TITLE ; O 电 B-ORG 气 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 、 O 资 B-TITLE 金 M-TITLE 计 M-TITLE 划 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE ; O 电 B-ORG 气 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE ; O 电 B-ORG 气 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 电 B-ORG 气 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 公 M-ORG 司 E-ORG 管 B-TITLE 理 M-TITLE 四 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 电 B-ORG 气 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 预 M-TITLE 算 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 林 B-NAME 钟 M-NAME 高 E-NAME , O 男 O , O 1 O 9 O 6 O 0 O 年 O 5 O 月 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 E-TITLE 、 O 硕 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 安 B-TITLE 徽 M-TITLE 省 M-TITLE 政 M-TITLE 协 M-TITLE 委 M-TITLE 员 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 专 O 家 O 津 O 贴 O 。 O 历 O 任 O 安 B-ORG 徽 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG 教 B-TITLE 授 E-TITLE 、 O 系 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 商 B-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 管 B-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 校 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 安 B-ORG 徽 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 副 B-TITLE 校 M-TITLE 长 E-TITLE , O 福 B-ORG 州 M-ORG 大 M-ORG 学 E-ORG 、 O 安 B-ORG 徽 M-ORG 大 M-ORG 学 E-ORG 兼 B-TITLE 职 M-TITLE 教 M-TITLE 授 E-TITLE , O 上 B-ORG 海 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 兼 B-TITLE 职 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 M-ORG 财 M-ORG 务 M-ORG 成 M-ORG 本 M-ORG 分 M-ORG 会 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 。 O 陆 B-NAME 江 E-NAME , O 女 O , O 1 O 9 O 7 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 现 O 任 O 厦 B-ORG 门 M-ORG 象 M-ORG 屿 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 资 B-TITLE 金 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 曾 O 任 O 厦 B-ORG 门 M-ORG 象 M-ORG 屿 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 贸 B-TITLE 易 M-TITLE 中 M-TITLE 心 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 房 B-NAME 晓 M-NAME 焱 E-NAME 先 O 生 O , O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 负 O 责 O 公 B-ORG 司 E-ORG 生 O 产 O 管 O 理 O 、 O 质 O 量 O 控 O 制 O 、 O 设 O 备 O 管 O 理 O 、 O 采 O 购 O 以 O 及 O 生 O 产 O 安 O 全 O ; O 中 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 7 O 年 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 9 O 0 O 年 O 加 O 入 O 公 B-ORG 司 E-ORG , O 曾 O 任 O 公 B-ORG 司 E-ORG 参 O 股 O 公 O 司 O 广 B-ORG 州 M-ORG 普 M-ORG 笙 M-ORG 音 M-ORG 箱 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 筹 B-TITLE 建 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O P B-TITLE M M-TITLE C M-TITLE 经 M-TITLE 理 E-TITLE 、 O 木 B-TITLE 工 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 音 B-TITLE 响 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 木 B-TITLE 箱 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 在 O 生 O 产 O 制 O 造 O 管 O 理 O 方 O 面 O 具 O 有 O 丰 O 富 O 的 O 经 O 验 O 。 O 周 B-NAME 伟 M-NAME 兴 E-NAME : O 男 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 正 M-ORG 泰 M-ORG 橡 M-ORG 胶 M-ORG 厂 E-ORG 轮 B-TITLE 胎 M-TITLE 车 M-TITLE 间 M-TITLE 团 M-TITLE 总 M-TITLE 支 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 上 B-ORG 海 M-ORG 橡 M-ORG 胶 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 住 B-TITLE 宅 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 回 M-ORG 力 M-ORG 宾 M-ORG 馆 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 党 B-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE , O 上 B-ORG 海 M-ORG 轮 M-ORG 胎 M-ORG 橡 M-ORG 胶 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 乘 M-ORG 用 M-ORG 轮 M-ORG 胎 M-ORG 厂 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 钢 B-ORG 丝 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 欣 B-ORG 业 M-ORG 实 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 河 B-ORG 南 M-ORG 洛 M-ORG 阳 M-ORG 海 M-ORG 虹 M-ORG 轮 M-ORG 胎 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 至 O 今 O 任 O 上 B-ORG 海 M-ORG 凯 M-ORG 迪 M-ORG 企 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 1 O 0 O 日 O - O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 9 O 日 O 任 O 武 B-ORG 汉 M-ORG 国 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 1 O 日 O 起 O 任 O 武 B-ORG 汉 M-ORG 国 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 张 B-NAME 长 M-NAME 安 E-NAME 先 O 生 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 3 O 年 O 8 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 职 O 称 O 。 O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 任 O 西 B-ORG 安 M-ORG 常 M-ORG 宁 M-ORG 宫 M-ORG 会 M-ORG 议 M-ORG 培 M-ORG 训 M-ORG 中 M-ORG 心 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 2 O 日 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 西 B-ORG 安 M-ORG 常 M-ORG 宁 M-ORG 宫 M-ORG 会 M-ORG 议 M-ORG 培 M-ORG 训 M-ORG 中 M-ORG 心 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 2 O 日 O 至 O 今 O 任 O 西 B-ORG 安 M-ORG 饮 M-ORG 食 E-ORG 董 B-TITLE 事 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 黄 B-NAME 涛 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 助 B-TITLE 理 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 最 O 近 O 五 O 年 O 历 O 任 O 潍 B-ORG 坊 M-ORG 亚 M-ORG 星 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 潍 B-ORG 坊 M-ORG 亚 M-ORG 星 M-ORG 化 M-ORG 学 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 曾 O 任 O 潍 B-ORG 坊 M-ORG 亚 M-ORG 星 M-ORG 化 M-ORG 学 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 胡 B-NAME 三 M-NAME 忠 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 9 O 年 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 供 M-ORG 销 M-ORG 社 E-ORG 基 B-TITLE 层 M-TITLE 工 M-TITLE 作 M-TITLE 处 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 湖 B-ORG 南 M-ORG 省 M-ORG 再 M-ORG 生 M-ORG 资 M-ORG 源 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 湖 B-ORG 南 M-ORG 省 M-ORG 上 M-ORG 海 M-ORG 皮 M-ORG 鞋 M-ORG 经 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 省 M-ORG 天 M-ORG 策 M-ORG 文 M-ORG 化 M-ORG 传 M-ORG 播 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 特 M-ORG 尔 M-ORG 佳 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 胡 B-NAME 三 M-NAME 忠 E-NAME 先 O 生 O 自 O 2 O 0 O 0 O 6 O 年 O 至 O 今 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 特 M-ORG 尔 M-ORG 佳 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 伯 M-NAME 富 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 1 O 月 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 3 O 年 O 1 O 1 O 月 O 至 O 今 O , O 任 O 河 B-ORG 南 M-ORG 东 M-ORG 方 M-ORG 银 M-ORG 星 M-ORG 投 M-ORG 资 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 徐 B-NAME 菲 E-NAME , O 女 O , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 法 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 现 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 再 M-ORG 担 M-ORG 保 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 电 M-ORG 力 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 保 M-ORG 险 M-ORG 公 M-ORG 司 M-ORG 上 M-ORG 海 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 石 B-NAME 卫 E-NAME 先 O 生 O , O 1 O 9 O 6 O 6 O 年 O 9 O 月 O 5 O 日 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 毕 O 业 O , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 产 B-PRO 业 M-PRO 经 M-PRO 济 M-PRO 学 E-PRO 研 B-EDU 究 M-EDU 生 E-EDU 、 O 化 B-PRO 学 M-PRO 工 M-PRO 程 E-PRO 硕 B-EDU 士 M-EDU 在 M-EDU 读 E-EDU 。 O 曾 O 任 O 天 B-ORG 原 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 计 B-TITLE 量 M-TITLE 室 M-TITLE 设 M-TITLE 备 M-TITLE 员 E-TITLE 、 O 主 B-TITLE 任 M-TITLE 助 M-TITLE 理 E-TITLE , O 天 B-ORG 原 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 上 B-ORG 海 M-ORG 市 M-ORG 化 M-ORG 学 M-ORG 工 M-ORG 业 M-ORG 技 M-ORG 术 M-ORG 监 M-ORG 督 M-ORG 所 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 所 M-TITLE 长 E-TITLE 现 O 任 O 电 B-ORG 化 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 高 B-NAME 欣 E-NAME , O 男 O , O 1 O 9 O 6 O 4 O 年 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 国 B-ORG 家 M-ORG 民 M-ORG 爆 M-ORG 专 M-ORG 家 M-ORG 库 E-ORG 成 B-TITLE 员 E-TITLE , O 国 B-ORG 家 M-ORG 民 M-ORG 爆 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 获 O “ O 四 O 川 O 省 O 五 O 一 O 劳 O 动 O 奖 O 章 O ” O , O 2 O 0 O 1 O 0 O 年 O 获 O “ O 四 O 川 O 省 O 劳 O 动 O 模 O 范 O ” O 称 O 号 O , O 2 O 0 O 1 O 3 O 年 O 当 O 选 O 为 O 四 B-TITLE 川 M-TITLE 省 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 1 O 9 O 8 O 5 O 年 O 至 O 2 O 0 O 0 O 6 O 年 O , O 历 O 任 O 重 B-ORG 庆 M-ORG 国 M-ORG 营 M-ORG 2 M-ORG 0 M-ORG 4 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 新 B-ORG 疆 M-ORG 雪 M-ORG 峰 M-ORG 民 M-ORG 爆 M-ORG 器 M-ORG 材 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 主 B-TITLE 管 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 设 B-TITLE 计 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 至 O 2 O 0 O 0 O 9 O 年 O 5 O 月 O , O 历 O 任 O 四 B-ORG 川 M-ORG 省 M-ORG 雅 M-ORG 化 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O , O 任 O 四 B-ORG 川 M-ORG 雅 M-ORG 化 M-ORG 实 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 至 O 今 O , O 任 O 四 B-ORG 川 M-ORG 雅 M-ORG 化 M-ORG 实 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 丁 B-NAME 爱 M-NAME 兵 E-NAME 女 O 士 O : O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 至 O 2 O 0 O 1 O 3 O 年 O 历 O 任 O 任 O 银 B-ORG 川 M-ORG 新 M-ORG 华 M-ORG 百 M-ORG 货 M-ORG 商 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 东 M-ORG 方 M-ORG 红 M-ORG 店 E-ORG 一 B-TITLE 楼 M-TITLE 商 M-TITLE 品 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 商 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 1 O 月 O 任 O 银 B-ORG 川 M-ORG 新 M-ORG 华 M-ORG 百 M-ORG 货 M-ORG 商 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 五 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 刘 B-NAME 志 M-NAME 坚 E-NAME 先 O 生 O : O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 6 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 某 M-ORG 部 M-ORG 司 M-ORG 令 M-ORG 部 M-ORG 通 M-ORG 信 M-ORG 营 E-ORG 连 B-TITLE 长 E-TITLE 、 O 司 B-TITLE 令 M-TITLE 部 M-TITLE 参 M-TITLE 谋 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 第 M-ORG 二 M-ORG 炮 M-ORG 兵 M-ORG 神 M-ORG 剑 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 南 B-ORG 京 M-ORG 企 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 安 B-ORG 徽 M-ORG 神 M-ORG 剑 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 神 B-ORG 剑 M-ORG 化 M-ORG 工 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 神 B-ORG 剑 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 第 M-TITLE 一 M-TITLE 、 M-TITLE 二 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 学 M-ORG 会 M-ORG 涂 M-ORG 料 M-ORG 涂 M-ORG 装 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 现 O 任 O 神 B-ORG 剑 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 S-NAME 先 O 生 O 曾 O 先 O 后 O 荣 O 立 O 三 O 等 O 功 O 三 O 次 O 、 O 二 O 等 O 功 O 一 O 次 O , O 1 O 9 O 9 O 6 O 年 O 被 O 评 O 为 O “ O 全 B-TITLE 军 M-TITLE 优 M-TITLE 秀 M-TITLE 企 M-TITLE 业 M-TITLE 家 E-TITLE ” O , O 1 O 9 O 9 O 7 O 年 O 获 O 授 O 上 B-TITLE 校 M-TITLE 军 M-TITLE 衔 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 当 O 选 O 安 B-ORG 徽 M-ORG 省 M-ORG 繁 M-ORG 昌 M-ORG 县 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 被 O 评 O 为 O “ O 安 B-TITLE 徽 M-TITLE 省 M-TITLE 优 M-TITLE 秀 M-TITLE 青 M-TITLE 年 M-TITLE 企 M-TITLE 业 M-TITLE 家 E-TITLE ” O , O 2 O 0 O 0 O 2 O 年 O 当 O 选 O 安 B-TITLE 徽 M-TITLE 省 M-TITLE 芜 M-TITLE 湖 M-TITLE 市 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 被 O 评 O 为 O “ O 安 B-TITLE 徽 M-TITLE 省 M-TITLE 优 M-TITLE 秀 M-TITLE 民 M-TITLE 营 M-TITLE 科 M-TITLE 技 M-TITLE 企 M-TITLE 家 E-TITLE ” O , O 2 O 0 O 0 O 5 O 年 O 被 O 评 O 为 O “ O 安 B-TITLE 徽 M-TITLE 省 M-TITLE 优 M-TITLE 秀 M-TITLE 军 M-TITLE 转 M-TITLE 干 M-TITLE 部 E-TITLE ” O , O 2 O 0 O 0 O 6 O 年 O 被 O 评 O 为 O “ O 芜 B-TITLE 湖 M-TITLE 市 M-TITLE 首 M-TITLE 届 M-TITLE 优 M-TITLE 秀 M-TITLE 中 M-TITLE 国 M-TITLE 特 M-TITLE 色 M-TITLE 社 M-TITLE 会 M-TITLE 主 M-TITLE 义 M-TITLE 事 M-TITLE 业 M-TITLE 建 M-TITLE 设 M-TITLE 者 E-TITLE ” O , O 2 O 0 O 0 O 8 O 年 O 荣 O 获 O “ O 芜 B-TITLE 湖 M-TITLE 改 M-TITLE 革 M-TITLE 开 M-TITLE 放 M-TITLE 3 M-TITLE 0 M-TITLE 周 M-TITLE 年 M-TITLE 纪 M-TITLE 念 M-TITLE 勋 M-TITLE 章 E-TITLE ” O , O 2 O 0 O 0 O 9 O 年 O 被 O 评 O 为 O “ O 芜 B-TITLE 湖 M-TITLE 市 M-TITLE 第 M-TITLE 二 M-TITLE 届 M-TITLE 优 M-TITLE 秀 M-TITLE 中 M-TITLE 国 M-TITLE 特 M-TITLE 色 M-TITLE 社 M-TITLE 会 M-TITLE 主 M-TITLE 义 M-TITLE 事 M-TITLE 业 M-TITLE 建 M-TITLE 设 M-TITLE 者 E-TITLE ” O , O 2 O 0 O 1 O 0 O 年 O 被 O 评 O 为 O “ O 芜 B-TITLE 湖 M-TITLE 市 M-TITLE 突 M-TITLE 出 M-TITLE 贡 M-TITLE 献 M-TITLE 的 M-TITLE 创 M-TITLE 新 M-TITLE 型 M-TITLE 人 M-TITLE 才 E-TITLE ” O 。 O 倪 B-NAME 为 M-NAME 民 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 8 O 年 O 9 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 云 B-LOC 南 M-LOC 建 M-LOC 水 M-LOC 人 E-LOC , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 6 O 年 O 5 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 云 B-ORG 南 M-ORG 铝 M-ORG 厂 M-ORG 电 M-ORG 解 M-ORG 一 M-ORG 分 M-ORG 厂 E-ORG 二 B-TITLE 车 M-TITLE 间 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 云 B-ORG 南 M-ORG 铝 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 电 M-ORG 解 M-ORG 二 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 兼 O 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 云 B-ORG 南 M-ORG 铝 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 魏 B-NAME 毅 M-NAME 军 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 E-EDU 。 O 曾 O 任 O 攀 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 炼 M-ORG 铁 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 安 B-TITLE 全 M-TITLE 环 M-TITLE 保 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 物 B-TITLE 质 M-TITLE 供 M-TITLE 应 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 计 M-TITLE 划 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 现 O 任 O 攀 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 四 M-ORG 川 M-ORG 长 M-ORG 城 M-ORG 特 M-ORG 殊 M-ORG 钢 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 攀 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 四 M-ORG 川 M-ORG 长 M-ORG 城 M-ORG 特 M-ORG 殊 M-ORG 钢 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 马 B-NAME 兴 M-NAME 亚 E-NAME : O 1 O 9 O 5 O 0 O 年 O 6 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 获 O 山 O 西 O 省 O 科 O 委 O “ O 财 O 务 O 专 O 家 O ” O 称 O 号 O 。 O 曾 O 任 O 潞 B-ORG 安 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE , O 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 建 B-TITLE 立 M-TITLE 现 M-TITLE 代 M-TITLE 企 M-TITLE 业 M-TITLE 制 M-TITLE 度 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 潞 B-ORG 安 M-ORG 矿 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 股 B-TITLE 份 M-TITLE 制 M-TITLE 改 M-TITLE 造 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 财 B-TITLE 务 M-TITLE 公 M-TITLE 司 M-TITLE 董 M-TITLE 事 E-TITLE , O 郭 B-ORG 庄 M-ORG 煤 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 潞 B-ORG 安 M-ORG 环 M-ORG 能 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 弘 B-ORG 峰 M-ORG 焦 M-ORG 化 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 上 B-ORG 庄 M-ORG 煤 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 潞 B-ORG 安 M-ORG 环 M-ORG 能 M-ORG 焦 M-ORG 化 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 太 B-ORG 原 M-ORG 市 M-ORG 梗 M-ORG 阳 M-ORG 实 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 8 O 月 O 任 O 山 B-ORG 东 M-ORG 宏 M-ORG 达 M-ORG 矿 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 彭 B-NAME 毅 E-NAME 先 O 生 O , O 1 O 9 O 5 O 3 O 年 O 7 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU 。 O 1 O 9 O 6 O 9 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 战 B-TITLE 士 E-TITLE 、 O 工 B-TITLE 人 E-TITLE 、 O 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 党 M-TITLE 支 M-TITLE 部 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 书 B-TITLE 记 E-TITLE , O 1 O 9 O 8 O 4 O 至 O 今 O 历 O 任 O 济 B-ORG 南 M-ORG 轻 M-ORG 骑 M-ORG 摩 M-ORG 托 M-ORG 车 M-ORG 总 M-ORG 厂 M-ORG 发 M-ORG 动 M-ORG 机 M-ORG 厂 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 轻 B-ORG 骑 M-ORG 集 M-ORG 团 M-ORG 青 M-ORG 岛 M-ORG 轻 M-ORG 骑 M-ORG 摩 M-ORG 托 M-ORG 车 M-ORG 公 M-ORG 司 E-ORG ( O 青 B-ORG 岛 M-ORG 工 M-ORG 业 M-ORG 园 E-ORG ) O 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 轻 B-ORG 骑 M-ORG 集 M-ORG 团 E-ORG 摩 B-TITLE 托 M-TITLE 车 M-TITLE 本 M-TITLE 部 M-TITLE 本 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 企 B-TITLE 划 M-TITLE 本 M-TITLE 部 M-TITLE 本 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 郜 B-NAME 卫 M-NAME 华 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 E-EDU , O 现 O 任 O 上 B-ORG 海 M-ORG 医 M-ORG 药 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) E-ORG 监 B-TITLE 察 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 医 M-ORG 药 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 察 M-TITLE 室 M-TITLE 纪 M-TITLE 检 M-TITLE 处 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 先 M-ORG 锋 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 冻 B-TITLE 干 M-TITLE 车 M-TITLE 间 M-TITLE 筹 M-TITLE 建 M-TITLE 组 M-TITLE 组 M-TITLE 长 E-TITLE 。 O 肖 B-NAME 艳 M-NAME 君 E-NAME : O 女 O , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 E-ORG 法 B-PRO 律 E-PRO 硕 B-EDU 士 E-EDU 及 O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 高 B-PRO 级 M-PRO 管 M-PRO 理 M-PRO 人 M-PRO 员 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 先 O 后 O 担 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 航 M-ORG 空 M-ORG 公 M-ORG 司 E-ORG 培 B-TITLE 训 M-TITLE 部 M-TITLE 教 M-TITLE 员 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 科 B-TITLE 级 M-TITLE 组 M-TITLE 织 M-TITLE 员 E-TITLE 、 O 支 B-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 干 B-TITLE 部 M-TITLE 培 M-TITLE 训 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 培 M-TITLE 训 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 1 O 月 O 任 O 公 B-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 1 O 1 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 6 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 顾 B-NAME 政 M-NAME 巍 E-NAME , O 女 O , O 1 O 9 O 7 O 4 O 年 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 近 O 5 O 年 O 曾 O 任 O 江 B-ORG 苏 M-ORG 综 M-ORG 艺 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 江 B-ORG 苏 M-ORG 综 M-ORG 艺 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 亚 M-NAME 平 E-NAME , O 男 O , O 1 O 9 O 6 O 4 O 年 O 3 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 8 O 2 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 西 B-ORG 北 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 计 B-PRO 算 M-PRO 机 M-PRO 应 M-PRO 用 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 6 O / O 0 O 2 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 M-ORG 一 M-ORG 飞 M-ORG 院 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 2 O / O 0 O 5 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 E-ORG 飞 B-TITLE 机 M-TITLE 分 M-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 2 O / O 0 O 6 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 E-ORG 飞 B-TITLE 机 M-TITLE 分 M-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 2 O / O 0 O 8 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 E-ORG 飞 B-TITLE 机 M-TITLE 分 M-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 2 O / O 0 O 9 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 E-ORG 飞 B-TITLE 机 M-TITLE 分 M-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE ; O 中 B-ORG 航 M-ORG 航 M-ORG 空 M-ORG 装 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 2 O / O 1 O 2 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 E-ORG 飞 B-TITLE 机 M-TITLE 分 M-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE ; O 西 B-ORG 飞 M-ORG 国 M-ORG 际 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 中 B-ORG 航 M-ORG 航 M-ORG 空 M-ORG 装 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 2 O / O 1 O 2 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 E-ORG 飞 B-TITLE 机 M-TITLE 分 M-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE ; O 中 B-ORG 航 M-ORG 飞 M-ORG 机 E-ORG 董 B-TITLE 事 E-TITLE 、 O 分 B-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 中 B-ORG 航 M-ORG 航 M-ORG 空 M-ORG 装 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 3 O / O 0 O 4 O , O 中 B-ORG 航 M-ORG 工 M-ORG 业 E-ORG 飞 B-TITLE 机 M-TITLE 分 M-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE ; O 中 B-ORG 航 M-ORG 飞 M-ORG 机 E-ORG 董 B-TITLE 事 E-TITLE 、 O 分 B-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 中 B-ORG 航 M-ORG 工 M-ORG 业 M-ORG 西 M-ORG 飞 E-ORG 董 B-TITLE 事 E-TITLE ; O 中 B-ORG 航 M-ORG 航 M-ORG 空 M-ORG 装 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 4 O / O 0 O 5 O , O 中 B-ORG 航 M-ORG 飞 M-ORG 机 E-ORG 分 B-TITLE 党 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 组 M-TITLE 长 E-TITLE ; O 中 B-ORG 航 M-ORG 工 M-ORG 业 M-ORG 西 M-ORG 飞 E-ORG 董 B-TITLE 事 E-TITLE ; O 中 B-ORG 航 M-ORG 航 M-ORG 空 M-ORG 装 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 易 B-NAME 睿 E-NAME 先 O 生 O , O 1 O 9 O 7 O 8 O 年 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 深 B-ORG 圳 M-ORG 大 M-ORG 学 E-ORG 电 B-PRO 子 M-PRO 与 M-PRO 通 M-PRO 讯 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 1 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 1 O 1 O 月 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 冠 M-ORG 日 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 加 O 入 O 深 B-ORG 圳 M-ORG 市 M-ORG 同 M-ORG 洲 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 E-TITLE , O 兼 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 飞 M-ORG 看 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 9 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 4 O 年 O 1 O 月 O 1 O 5 O 日 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 易 B-NAME 睿 E-NAME 先 O 生 O 与 O 公 O 司 O 或 O 其 O 控 O 股 O 股 O 东 O 及 O 实 O 际 O 控 O 制 O 人 O 不 O 存 O 在 O 关 O 联 O 关 O 系 O , O 未 O 持 O 有 O 公 O 司 O 股 O 票 O , O 没 O 有 O 受 O 过 O 证 O 监 O 会 O 及 O 其 O 他 O 有 O 关 O 部 O 门 O 的 O 处 O 罚 O 和 O 证 O 券 O 交 O 易 O 所 O 惩 O 戒 O 。 O 樊 B-NAME 军 E-NAME 先 O 生 O , O 亚 B-ORG 威 M-ORG 股 M-ORG 份 E-ORG 监 B-TITLE 事 E-TITLE , O 中 B-CONT 国 M-CONT 公 M-CONT 民 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 1 O 9 O 6 O 8 O 年 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 质 B-TITLE 量 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 江 B-ORG 苏 M-ORG 亚 M-ORG 威 M-ORG 机 M-ORG 床 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 品 B-TITLE 质 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 数 B-ORG 控 M-ORG 冲 M-ORG 床 M-ORG 分 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 兼 O 综 B-TITLE 管 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 亚 M-ORG 威 M-ORG 机 M-ORG 床 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE , O 折 B-ORG 剪 M-ORG 机 M-ORG 床 M-ORG 分 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 兼 O 综 B-TITLE 管 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 亚 M-ORG 威 M-ORG 机 M-ORG 床 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 钣 B-ORG 金 M-ORG 装 M-ORG 备 E-ORG 事 B-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 综 B-TITLE 管 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 赵 B-NAME 志 M-NAME 锠 E-NAME 先 O 生 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 美 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 美 B-ORG 国 M-ORG 南 M-ORG 加 M-ORG 州 M-ORG 大 M-ORG 学 E-ORG 学 B-EDU 士 E-EDU 及 O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 拥 O 有 O 丰 O 富 O 的 O 金 O 融 O 证 O 券 O 和 O 财 O 务 O 管 O 理 O 经 O 验 O 以 O 及 O 企 O 业 O 管 O 治 O 经 O 验 O 。 O 1 O 9 O 9 O 4 O 年 O 1 O 月 O 起 O 任 O ( B-ORG 香 M-ORG 港 M-ORG ) M-ORG 丰 M-ORG 诚 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 并 O 曾 O 担 O 任 O 香 B-ORG 港 M-ORG 证 M-ORG 监 M-ORG 会 M-ORG 收 M-ORG 购 M-ORG 及 M-ORG 合 M-ORG 并 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE 、 O 香 B-ORG 港 M-ORG 证 M-ORG 监 M-ORG 会 M-ORG 程 M-ORG 序 M-ORG 覆 M-ORG 检 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 香 B-ORG 港 M-ORG 交 M-ORG 易 M-ORG 所 M-ORG 主 M-ORG 板 M-ORG 上 M-ORG 市 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE 和 O 创 B-ORG 业 M-ORG 板 M-ORG 上 M-ORG 市 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE 等 O 职 O , O 现 O 亦 O 兼 O 任 O 香 B-ORG 港 M-ORG 特 M-ORG 别 M-ORG 行 M-ORG 政 M-ORG 区 M-ORG 大 M-ORG 学 M-ORG 教 M-ORG 育 M-ORG 资 M-ORG 助 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 。 O 自 O 1 O 9 O 9 O 6 O 年 O 1 O 2 O 月 O 起 O 担 O 任 O 深 B-ORG 圳 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ( O 1 O 9 O 9 O 6 O - O 2 O 0 O 0 O 2 O 年 O 期 O 间 O 任 O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ) O 。 O 谢 B-NAME 获 M-NAME 宝 E-NAME 先 O 生 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 武 B-ORG 汉 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 博 B-EDU 士 E-EDU , O 现 O 任 O 华 B-ORG 灿 M-ORG 光 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 武 B-ORG 汉 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 起 O 担 O 任 O 华 B-ORG 灿 M-ORG 光 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 目 O 前 O 同 O 时 O 担 O 任 O 武 B-ORG 锅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 中 B-ORG 商 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 浙 B-ORG 江 M-ORG 森 M-ORG 马 M-ORG 服 M-ORG 饰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 武 B-ORG 汉 M-ORG 中 M-ORG 博 M-ORG 生 M-ORG 物 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 非 O 上 O 市 O 公 O 司 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 及 O 汉 B-ORG 口 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 非 O 上 O 市 O 公 O 司 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 醒 E-NAME : O 男 O , O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 干 M-ORG 部 M-ORG 学 M-ORG 院 E-ORG 。 O 自 O 2 O 0 O 0 O 7 O 年 O 3 O 月 O 起 O 在 O 浙 B-ORG 江 M-ORG 大 M-ORG 东 M-ORG 南 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 至 O 今 O , O 历 O 任 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 证 B-ORG 券 M-ORG 投 M-ORG 资 M-ORG 部 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 曾 B-NAME 谦 E-NAME 女 O 士 O , O 1 O 9 O 7 O 1 O 年 O 7 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 9 O 年 O 1 O 2 O 月 O 至 O 1 O 9 O 9 O 7 O 年 O 9 O 月 O 任 O 职 O 于 O 衡 B-ORG 阳 M-ORG 纺 M-ORG 织 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG ; O 1 O 9 O 9 O 7 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 4 O 月 O 任 O 职 O 于 O 广 B-ORG 州 M-ORG 华 M-ORG 冠 M-ORG 龙 M-ORG 伟 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 1 O 9 O 9 O 9 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 8 O 月 O 任 O 利 B-ORG 亚 M-ORG 德 M-ORG 有 M-ORG 限 M-ORG 营 M-ORG 销 M-ORG 中 M-ORG 心 E-ORG 经 B-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 7 O 月 O 任 O 北 B-ORG 京 M-ORG 巴 M-ORG 可 M-ORG 利 M-ORG 亚 M-ORG 德 M-ORG 电 M-ORG 子 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 销 B-TITLE 售 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 8 O 月 O 至 O 今 O 任 O 利 B-ORG 亚 M-ORG 德 M-ORG 有 M-ORG 限 E-ORG / O 利 B-ORG 亚 M-ORG 德 M-ORG 光 E-ORG 电 B-TITLE 营 M-TITLE 销 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 1 O 月 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 马 B-NAME 开 M-NAME 翔 E-NAME , O 男 O , O 1 O 9 O 9 O 9 O 年 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 国 B-PRO 际 M-PRO 经 M-PRO 济 M-PRO 法 E-PRO 、 O 国 B-PRO 际 M-PRO 企 M-PRO 业 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 本 B-EDU 科 E-EDU 毕 O 业 O , O 2 O 0 O 0 O 1 O - O 2 O 0 O 0 O 2 O 年 O 获 O U B-ORG n M-ORG i M-ORG v M-ORG e M-ORG r M-ORG s M-ORG i M-ORG t M-ORG y M-ORG o M-ORG f M-ORG H M-ORG e M-ORG r M-ORG t M-ORG f M-ORG o M-ORG r M-ORG d M-ORG s M-ORG h M-ORG i M-ORG r M-ORG e M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 法 B-PRO 律 E-PRO 、 O 财 B-PRO 务 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 0 O 3 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 在 O 上 B-ORG 海 M-ORG 圣 M-ORG 博 M-ORG 华 M-ORG 康 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O ; O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 1 O 月 O 在 O 上 B-ORG 海 M-ORG 浦 M-ORG 东 M-ORG 现 M-ORG 代 M-ORG 产 M-ORG 业 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 O 资 O 经 O 营 O 部 O 工 O 作 O ; O 2 O 0 O 0 O 5 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 6 O 月 O 在 O 上 B-ORG 海 M-ORG 金 M-ORG 桥 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 O 资 O 管 O 理 O 部 O 工 O 作 O ; O 2 O 0 O 0 O 6 O 年 O 6 O 至 O 今 O 历 O 任 O 上 B-ORG 海 M-ORG 外 M-ORG 高 M-ORG 桥 M-ORG 保 M-ORG 税 M-ORG 区 M-ORG 开 M-ORG 发 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 春 M-NAME 凤 E-NAME 女 O 士 O , O 1 O 9 O 7 O 0 O 年 O 2 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 6 O 月 O 就 O 职 O 于 O 利 B-ORG 德 M-ORG 科 M-ORG 技 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 2 O 0 O 1 O 1 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 就 O 职 O 于 O 上 B-ORG 海 M-ORG 赋 M-ORG 唐 M-ORG 贸 M-ORG 易 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 至 O 今 O 任 O 利 B-ORG 德 M-ORG 科 M-ORG 技 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 0 O 月 O 任 O 方 B-ORG 正 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE , O 现 O 任 O 方 B-ORG 正 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 张 B-NAME 赤 M-NAME 雷 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 广 B-LOC 东 M-LOC 龙 M-LOC 川 M-LOC 人 E-LOC , O 1 O 9 O 5 O 8 O 年 O 1 O 1 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 职 O 称 O , O 国 B-TITLE 家 M-TITLE 注 M-TITLE 册 M-TITLE 监 M-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 2 O 年 O 1 O 0 O 月 O 参 O 加 O 工 O 作 O 。 O 历 O 任 O 云 B-ORG 南 M-ORG 省 M-ORG 地 M-ORG 质 M-ORG 矿 M-ORG 产 M-ORG 局 E-ORG 干 B-TITLE 部 E-TITLE 、 O 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 大 M-TITLE 队 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 云 B-ORG 南 M-ORG 地 M-ORG 矿 M-ORG 建 M-ORG 设 M-ORG 工 M-ORG 程 M-ORG 监 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 万 M-ORG 裕 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 香 B-ORG 港 M-ORG 万 M-ORG 裕 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 西 M-ORG 安 M-ORG 代 M-ORG 表 M-ORG 处 E-ORG 首 B-TITLE 席 M-TITLE 代 M-TITLE 表 E-TITLE , O 万 B-ORG 裕 M-ORG 文 M-ORG 化 M-ORG 产 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 行 B-TITLE 政 M-TITLE 人 M-TITLE 事 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 万 B-ORG 裕 M-ORG 文 M-ORG 化 M-ORG 产 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 陕 B-ORG 西 M-ORG 金 M-ORG 叶 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 程 B-NAME 文 M-NAME 旦 E-NAME 先 O 生 O , O 5 O 7 O 岁 O , O 硕 B-EDU 士 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 未 O 有 O 任 O 何 O 国 O 家 O 和 O 地 O 区 O 的 O 永 O 久 O 海 O 外 O 居 O 留 O 权 O ; O 1 O 9 O 8 O 2 O 年 O 起 O 历 O 任 O 物 B-ORG 构 M-ORG 所 E-ORG 助 B-TITLE 理 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 曾 O 任 O 福 B-ORG 晶 M-ORG 有 M-ORG 限 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 6 O 月 O 起 O 任 O 福 B-ORG 建 M-ORG 福 M-ORG 晶 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 万 B-NAME 启 M-NAME 成 E-NAME : O 男 O , O 出 O 生 O 于 O 1 O 9 O 5 O 5 O 年 O , O 湖 B-LOC 北 M-LOC 谷 M-LOC 城 M-LOC 县 M-LOC 人 E-LOC , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 7 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 湖 B-ORG 北 M-ORG 华 M-ORG 光 M-ORG 器 M-ORG 材 M-ORG 厂 E-ORG 二 B-TITLE 车 M-TITLE 间 M-TITLE 助 M-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 湖 B-ORG 北 M-ORG 华 M-ORG 光 M-ORG 器 M-ORG 材 M-ORG 厂 E-ORG 四 B-TITLE 车 M-TITLE 间 M-TITLE 副 M-TITLE 总 E-TITLE 兼 O 主 B-TITLE 任 E-TITLE 、 O 书 B-TITLE 记 E-TITLE , O 湖 B-ORG 北 M-ORG 华 M-ORG 光 M-ORG 器 M-ORG 材 M-ORG 厂 M-ORG 高 M-ORG 温 M-ORG 元 M-ORG 件 M-ORG 分 M-ORG 厂 E-ORG 副 B-TITLE 总 E-TITLE 兼 O 厂 B-TITLE 长 E-TITLE 、 O 书 B-TITLE 记 E-TITLE , O 襄 B-ORG 樊 M-ORG 华 M-ORG 天 M-ORG 元 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 襄 B-ORG 樊 M-ORG 华 M-ORG 天 M-ORG 元 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 鞠 B-NAME 在 M-NAME 云 E-NAME 先 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 铁 B-ORG 道 M-ORG 部 M-ORG 中 M-ORG 国 M-ORG 铁 M-ORG 路 M-ORG 机 M-ORG 车 M-ORG 车 M-ORG 辆 M-ORG 工 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 北 B-ORG 京 M-ORG 华 M-ORG 盈 M-ORG 恒 M-ORG 通 M-ORG 铁 M-ORG 路 M-ORG 机 M-ORG 车 M-ORG 车 M-ORG 辆 M-ORG 配 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 本 B-ORG 公 M-ORG 司 E-ORG 第 O 三 O 届 O 、 O 第 B-TITLE 四 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 1 O 月 O 1 O 4 O 日 O 起 O 不 O 再 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 吕 B-NAME 晓 M-NAME 明 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 4 O 年 O 1 O 2 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 9 O 月 O 任 O 陕 B-ORG 西 M-ORG 省 M-ORG 新 M-ORG 闻 M-ORG 出 M-ORG 版 M-ORG 广 M-ORG 电 M-ORG 局 E-ORG 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 4 O 月 O 任 O 广 B-ORG 电 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 5 O 月 O 起 O 任 O 广 B-ORG 电 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 9 O 月 O 任 O 广 B-ORG 电 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 9 O 月 O 任 O 广 B-ORG 电 M-ORG 集 M-ORG 团 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 起 O 任 O 陕 B-ORG 西 M-ORG 广 M-ORG 电 M-ORG 网 M-ORG 络 M-ORG 传 M-ORG 媒 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 任 O 陕 B-ORG 西 M-ORG 广 M-ORG 电 M-ORG 网 M-ORG 络 M-ORG 传 M-ORG 媒 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 任 O 陕 B-ORG 西 M-ORG 广 M-ORG 电 M-ORG 网 M-ORG 络 M-ORG 传 M-ORG 媒 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 石 B-NAME 海 M-NAME 宁 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 5 O 7 O 年 O 6 O 月 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 曾 O 任 O 总 B-ORG 调 M-ORG 度 M-ORG 室 E-ORG 总 B-TITLE 调 M-TITLE 度 M-TITLE 长 E-TITLE , O 现 O 任 O 柳 B-ORG 州 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 兆 M-NAME 善 E-NAME , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 中 B-ORG 海 M-ORG 油 M-ORG 服 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 1 O 9 O 7 O 9 O 年 O 7 O 月 O 至 O 1 O 9 O 8 O 8 O 年 O 8 O 月 O 任 O 青 B-ORG 岛 M-ORG 红 M-ORG 旗 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 基 B-TITLE 建 M-TITLE 科 M-TITLE 、 M-TITLE 财 M-TITLE 务 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE , O 1 O 9 O 8 O 8 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 6 O 月 O 任 O 青 B-ORG 岛 M-ORG 红 M-ORG 旗 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 2 O 年 O 6 O 月 O 至 O 1 O 9 O 9 O 4 O 年 O 3 O 月 O 任 O 青 B-ORG 岛 M-ORG 红 M-ORG 旗 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 4 O 年 O 3 O 月 O 至 O 1 O 9 O 9 O 5 O 年 O 7 O 月 O 任 O 青 B-ORG 岛 M-ORG 广 M-ORG 益 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 5 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 7 O 年 O 1 O 月 O 任 O 青 B-ORG 岛 M-ORG 华 M-ORG 辰 M-ORG 化 M-ORG 工 M-ORG 供 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 7 O 年 O 1 O 月 O 至 O 1 O 9 O 9 O 8 O 年 O 1 O 1 O 月 O 任 O 青 B-ORG 岛 M-ORG 华 M-ORG 辰 M-ORG 化 M-ORG 工 M-ORG 供 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 8 O 年 O 1 O 1 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 1 O 2 O 月 O 任 O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 供 M-ORG 销 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 1 O 年 O 9 O 月 O 任 O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 供 M-ORG 销 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 1 O 1 O 月 O 任 O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 供 M-ORG 销 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 3 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 任 O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 供 M-ORG 销 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 任 O 中 B-ORG 国 M-ORG 海 M-ORG 洋 M-ORG 石 M-ORG 油 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 销 M-ORG 售 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 为 O 中 B-ORG 国 M-ORG 海 M-ORG 洋 M-ORG 石 M-ORG 油 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 派 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 任 O 中 B-ORG 国 M-ORG 海 M-ORG 洋 M-ORG 石 M-ORG 油 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 海 M-ORG 石 M-ORG 油 M-ORG 财 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 海 M-ORG 油 M-ORG 自 M-ORG 保 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 海 M-ORG 石 M-ORG 油 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 海 M-ORG 信 M-ORG 托 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 5 O 月 O 至 O 今 O , O 任 O 中 B-ORG 海 M-ORG 油 M-ORG 服 E-ORG 和 O 海 B-ORG 油 M-ORG 发 M-ORG 展 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 1 O 4 O 年 O 1 O 1 O 月 O 任 O 中 B-ORG 海 M-ORG 油 M-ORG 山 M-ORG 西 M-ORG 能 M-ORG 源 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 张 B-NAME 振 M-NAME 生 E-NAME : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 8 O 年 O - O 2 O 0 O 0 O 0 O 年 O 任 O 吉 B-ORG 化 M-ORG 集 M-ORG 团 M-ORG 建 M-ORG 设 M-ORG 公 M-ORG 司 M-ORG 安 M-ORG 装 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 1 O 1 O 月 O - O 2 O 0 O 0 O 2 O 年 O 任 O 吉 B-ORG 林 M-ORG 化 M-ORG 建 M-ORG 安 M-ORG 装 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 2 O 年 O - O 2 O 0 O 0 O 5 O 年 O 任 O 吉 B-ORG 林 M-ORG 化 M-ORG 建 M-ORG 安 M-ORG 装 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 中 B-ORG 油 M-ORG 化 M-ORG 建 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 吴 B-NAME 开 M-NAME 贤 E-NAME , O 男 O , O 1 O 9 O 5 O 1 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 具 O 有 O 多 O 年 O 的 O 工 O 业 O 电 O 气 O 行 O 业 O 经 O 验 O , O 曾 O 在 O 汕 B-ORG 头 M-ORG 市 M-ORG 电 M-ORG 气 M-ORG 控 M-ORG 制 M-ORG 设 M-ORG 备 M-ORG 厂 E-ORG 从 O 事 O 采 O 购 O 、 O 销 O 售 O 等 O 工 O 作 O , O 后 O 创 O 立 O 汕 B-ORG 头 M-ORG 市 M-ORG 达 M-ORG 濠 M-ORG 机 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 任 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 创 O 立 O 众 B-ORG 业 M-ORG 达 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 至 O 今 O 任 O 众 B-ORG 业 M-ORG 达 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 起 O 兼 O 任 O 广 B-ORG 东 M-ORG 依 M-ORG 力 M-ORG 得 M-ORG 北 M-ORG 美 M-ORG 电 M-ORG 气 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 张 B-NAME 学 M-NAME 斌 E-NAME 先 O 生 O , O 生 O 于 O 1 O 9 O 4 O 5 O 年 O 1 O 2 O 月 O , O 高 B-EDU 中 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE , O 1 O 9 O 6 O 4 O 年 O 参 O 军 O , O 1 O 9 O 7 O 7 O 年 O 至 O 1 O 9 O 9 O 2 O 年 O 任 O 青 B-ORG 岛 M-ORG 市 M-ORG 家 M-ORG 用 M-ORG 电 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 组 B-TITLE 织 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 2 O 年 O 加 O 入 O 青 B-ORG 岛 M-ORG 澳 M-ORG 柯 M-ORG 玛 M-ORG 集 M-ORG 团 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 任 O 人 B-TITLE 事 M-TITLE 处 M-TITLE 长 E-TITLE , O 现 O 任 O 青 B-ORG 岛 M-ORG 澳 M-ORG 柯 M-ORG 玛 M-ORG 集 M-ORG 团 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 青 B-ORG 岛 M-ORG 澳 M-ORG 柯 M-ORG 玛 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 志 M-NAME 华 E-NAME 先 O 生 O : O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 9 O 年 O 以 O 来 O , O 任 O 香 B-ORG 溢 M-ORG 融 M-ORG 通 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 商 B-TITLE 贸 M-TITLE 管 M-TITLE 理 M-TITLE 总 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 香 B-ORG 溢 M-ORG 融 M-ORG 通 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 舒 B-NAME 涛 E-NAME 女 O 士 O : O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 长 B-ORG 沙 M-ORG 通 M-ORG 程 M-ORG 商 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 审 M-TITLE 计 M-TITLE 专 M-TITLE 员 E-TITLE , O 通 B-ORG 程 M-ORG 商 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 超 B-TITLE 市 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE , O 通 B-TITLE 程 M-TITLE 商 M-TITLE 业 M-TITLE 公 M-TITLE 司 M-TITLE 审 M-TITLE 计 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 长 B-ORG 沙 M-ORG 通 M-ORG 程 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 公 B-ORG 司 M-ORG 分 M-ORG 公 M-ORG 司 M-ORG 长 M-ORG 沙 M-ORG 通 M-ORG 程 M-ORG 商 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 张 B-NAME 凯 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 出 O 生 O 于 O 1 O 9 O 6 O 7 O 年 O 1 O 1 O 月 O , O 双 B-EDU 学 M-EDU 士 E-EDU 。 O 张 B-NAME 凯 E-NAME 先 O 生 O 曾 O 任 O 天 B-ORG 津 M-ORG 富 M-ORG 源 M-ORG 食 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 M-TITLE 助 M-TITLE 理 E-TITLE , O 住 B-ORG 友 M-ORG 电 M-ORG 工 M-ORG ( M-ORG 天 M-ORG 津 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 瑞 B-ORG 普 M-ORG 生 M-ORG 物 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 瑞 M-ORG 普 M-ORG 生 M-ORG 物 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 赵 B-NAME 沛 E-NAME 先 O 生 O , O 中 B-ORG 国 M-ORG 中 M-ORG 煤 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 金 M-ORG 属 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 秘 B-TITLE 书 M-TITLE 长 E-TITLE 。 O 曾 O 任 O 安 B-ORG 泰 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE , O 北 B-ORG 京 M-ORG 安 M-ORG 泰 M-ORG 钢 M-ORG 研 M-ORG 超 M-ORG 硬 M-ORG 材 M-ORG 料 M-ORG 制 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 河 B-ORG 冶 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 中 B-ORG 联 M-ORG 先 M-ORG 进 M-ORG 钢 M-ORG 铁 M-ORG 材 M-ORG 料 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 北 B-ORG 京 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE 、 O 系 B-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 冶 B-ORG 金 M-ORG 工 M-ORG 业 M-ORG 部 M-ORG 科 M-ORG 技 M-ORG 司 E-ORG 处 B-TITLE 长 E-TITLE 、 O 钢 B-ORG 铁 M-ORG 研 M-ORG 究 M-ORG 总 M-ORG 院 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 工 B-TITLE 程 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 钢 B-ORG 铁 M-ORG 研 M-ORG 究 M-ORG 总 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 新 B-ORG 冶 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 北 B-ORG 京 M-ORG 钢 M-ORG 研 M-ORG 新 M-ORG 冶 M-ORG 工 M-ORG 程 M-ORG 设 M-ORG 计 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 赵 S-NAME 先 O 生 O 是 O 工 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 英 B-ORG 国 M-ORG 利 M-ORG 兹 M-ORG 大 M-ORG 学 E-ORG 博 B-TITLE 士 M-TITLE 后 E-TITLE , O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 贴 O 。 O 赵 S-NAME 先 O 生 O 精 O 通 O 冶 O 金 O 工 O 艺 O 和 O 材 O 料 O 科 O 学 O , O 熟 O 悉 O 国 O 内 O 外 O 的 O 冶 O 金 O 企 O 业 O 和 O 研 O 究 O 机 O 构 O , O 对 O 该 O 领 O 域 O 技 O 术 O 发 O 展 O 和 O 市 O 场 O 趋 O 势 O 有 O 充 O 分 O 的 O 了 O 解 O , O 并 O 具 O 有 O 大 O 型 O 高 O 科 O 技 O 企 O 业 O 和 O 上 O 市 O 公 O 司 O 的 O 经 O 营 O 管 O 理 O 经 O 验 O 。 O 赵 B-NAME 燕 M-NAME 红 E-NAME 女 O 士 O , O 1 O 9 O 8 O 4 O 年 O 2 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 财 M-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 任 O 职 O 于 O 海 B-ORG 信 M-ORG ( M-ORG 南 M-ORG 京 M-ORG ) M-ORG 电 M-ORG 器 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 材 B-TITLE 料 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 综 M-TITLE 合 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 成 B-TITLE 本 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 成 B-TITLE 本 M-TITLE 主 M-TITLE 管 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 起 O 任 O 山 B-ORG 西 M-ORG 振 M-ORG 东 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 监 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 起 O 任 O 山 B-ORG 西 M-ORG 振 M-ORG 东 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 孙 B-NAME 凯 E-NAME : O 男 O , O 1 O 9 O 7 O 3 O 年 O 8 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 E-ORG 法 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O , O 内 B-ORG 蒙 M-ORG 古 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O , O 现 O 任 O 公 B-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 曾 O 任 O 内 B-ORG 蒙 M-ORG 古 M-ORG 平 M-ORG 庄 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 刘 B-NAME 华 M-NAME 蓉 E-NAME 女 O 士 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 大 B-EDU 专 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 就 O 职 O 于 O 北 B-ORG 京 M-ORG 市 M-ORG 汽 M-ORG 车 M-ORG 离 M-ORG 合 M-ORG 器 M-ORG 厂 E-ORG 、 O 桑 B-ORG 德 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 采 B-TITLE 购 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 1 O 9 O 9 O 4 O 年 O 至 O 今 O 任 O 职 O 于 O 桑 B-ORG 德 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 启 B-ORG 迪 M-ORG 桑 M-ORG 德 M-ORG 环 M-ORG 境 M-ORG 资 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 召 M-TITLE 集 M-TITLE 人 E-TITLE 。 O 方 B-NAME 驰 E-NAME : O 1 O 9 O 6 O 4 O 年 O 1 O 0 O 月 O 2 O 4 O 日 O 出 O 生 O , O 党 B-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 研 B-TITLE 究 M-TITLE 员 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 东 B-ORG 风 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 商 M-ORG 品 M-ORG 研 M-ORG 发 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 东 B-ORG 风 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 商 M-ORG 品 M-ORG 研 M-ORG 发 M-ORG 院 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 穆 B-NAME 学 M-NAME 奎 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 0 O 年 O 出 O 生 O , O 毕 O 业 O 于 O 河 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 医 M-ORG 学 M-ORG 院 E-ORG , O 在 B-EDU 读 M-EDU 硕 M-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 医 B-TITLE 学 M-TITLE 生 M-TITLE 物 M-TITLE 学 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 新 B-ORG 乡 M-ORG 市 M-ORG 卫 M-ORG 生 M-ORG 防 M-ORG 疫 M-ORG 站 E-ORG 医 B-TITLE 师 E-TITLE 、 O 华 B-ORG 兰 M-ORG 生 M-ORG 物 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 销 B-TITLE 售 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 徐 B-NAME 金 M-NAME 发 E-NAME , O 男 O , O 1 O 9 O 4 O 6 O 年 O 出 O 生 O , O 浙 B-ORG 江 M-ORG 大 M-ORG 学 E-ORG 管 B-PRO 理 M-PRO 学 M-PRO 科 E-PRO 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 香 B-ORG 港 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 访 M-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE 。 O 曾 O 任 O 内 B-ORG 蒙 M-ORG 古 M-ORG 千 M-ORG 里 M-ORG 山 M-ORG 钢 M-ORG 铁 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 浙 B-ORG 江 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE 、 O 浙 B-ORG 江 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 兼 O 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 与 M-TITLE 市 M-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 学 M-TITLE 系 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 浙 B-ORG 江 M-ORG 杭 M-ORG 萧 M-ORG 钢 M-ORG 构 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 大 M-ORG 学 M-ORG 企 M-ORG 业 M-ORG 成 M-ORG 长 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE , O 杭 B-ORG 州 M-ORG 市 M-ORG 企 M-ORG 业 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 、 O 杭 B-ORG 州 M-ORG 市 M-ORG 企 M-ORG 业 M-ORG 家 M-ORG 协 M-ORG 会 E-ORG 、 O 杭 B-ORG 州 M-ORG 市 M-ORG 工 M-ORG 业 M-ORG 经 M-ORG 济 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 等 O 三 O 会 O 副 B-TITLE 会 M-TITLE 长 E-TITLE 。 O 唐 B-NAME 国 M-NAME 平 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 5 O 年 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 6 O 年 O 起 O 任 O 贵 B-ORG 州 M-ORG 轮 M-ORG 胎 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 贵 B-ORG 州 M-ORG 前 M-ORG 进 M-ORG 橡 M-ORG 胶 M-ORG 内 M-ORG 胎 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 和 O 2 O 0 O 1 O 1 O 年 O 1 O 月 O 分 O 别 O 辞 O 去 O 贵 B-ORG 州 M-ORG 前 M-ORG 进 M-ORG 橡 M-ORG 胶 M-ORG 内 M-ORG 胎 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 和 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 李 B-NAME 祥 M-NAME 凌 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 有 O 阿 O 根 O 廷 O 居 O 留 O 权 O , O 1 O 9 O 4 O 7 O 年 O 2 O 月 O 生 O , O 大 B-EDU 专 E-EDU 。 O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 担 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 轻 M-ORG 工 M-ORG 机 M-ORG 械 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 至 O 今 O 担 O 任 O 福 B-ORG 建 M-ORG 海 M-ORG 源 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 兼 O 任 O 海 B-ORG 诚 M-ORG 投 M-ORG 资 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 海 B-ORG 源 M-ORG 实 M-ORG 业 E-ORG 董 B-TITLE 事 E-TITLE 。 O 目 O 前 O 还 O 担 O 任 O 福 B-ORG 州 M-ORG 市 M-ORG 民 M-ORG 营 M-ORG 企 M-ORG 业 M-ORG 家 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE 。 O 陈 B-NAME 占 M-NAME 飞 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 4 O 年 O 1 O 0 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 3 O 年 O 参 O 加 O 工 O 作 O 。 O 曾 O 任 O 国 B-ORG 营 M-ORG 第 M-ORG 八 M-ORG 四 M-ORG 三 M-ORG 厂 E-ORG 会 B-TITLE 计 E-TITLE 、 O 西 B-ORG 安 M-ORG 秦 M-ORG 川 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 发 M-ORG 展 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 陕 B-ORG 西 M-ORG 省 M-ORG 技 M-ORG 术 M-ORG 进 M-ORG 步 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 E-TITLE 。 O 现 O 任 O 陕 B-ORG 西 M-ORG 省 M-ORG 技 M-ORG 术 M-ORG 进 M-ORG 步 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 王 B-NAME 玉 M-NAME 田 E-NAME 先 O 生 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 召 M-TITLE 集 M-TITLE 人 E-TITLE , O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 宣 B-ORG 化 M-ORG 钢 M-ORG 铁 M-ORG 公 M-ORG 司 E-ORG 机 B-TITLE 电 M-TITLE 车 M-TITLE 间 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE , O 矿 B-ORG 冶 M-ORG 总 M-ORG 院 E-ORG 自 B-TITLE 动 M-TITLE 化 M-TITLE 室 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 矿 B-ORG 冶 M-ORG 总 M-ORG 院 E-ORG 人 B-TITLE 事 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 北 B-ORG 矿 M-ORG 磁 M-ORG 材 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE ; O 现 O 兼 O 任 O 矿 B-ORG 冶 M-ORG 总 M-ORG 院 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 徐 B-NAME 兰 E-NAME , O 女 O , O 1 O 9 O 6 O 1 O 年 O 8 O 月 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 。 O 历 O 任 O 云 B-ORG 南 M-ORG 省 M-ORG 盐 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE ; O 云 B-ORG 南 M-ORG 盐 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE , O 纪 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 一 B-ORG 平 M-ORG 浪 M-ORG 盐 M-ORG 矿 E-ORG 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 云 B-ORG 南 M-ORG 盐 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 雷 B-NAME 蕾 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 6 O 8 O 年 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 深 B-ORG 圳 M-ORG 泰 M-ORG 格 M-ORG 阿 M-ORG 玛 M-ORG 皮 M-ORG 草 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 北 B-ORG 京 M-ORG 中 M-ORG 汇 M-ORG 圆 M-ORG 通 M-ORG 投 M-ORG 资 M-ORG 咨 M-ORG 询 M-ORG 集 M-ORG 团 E-ORG 会 B-TITLE 计 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 华 B-ORG 夏 M-ORG 西 M-ORG 部 M-ORG 经 M-ORG 济 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 昆 B-ORG 百 M-ORG 大 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 监 B-TITLE 事 E-TITLE , O 华 B-ORG 夏 M-ORG 同 M-ORG 和 M-ORG 置 M-ORG 地 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 行 B-TITLE 政 M-TITLE 财 M-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 华 B-ORG 夏 M-ORG 西 M-ORG 部 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 行 B-TITLE 政 M-TITLE 人 M-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 华 B-ORG 夏 M-ORG 西 M-ORG 部 E-ORG 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 6 O 月 O 至 O 今 O 任 O 昆 B-ORG 百 M-ORG 大 E-ORG 监 B-TITLE 事 E-TITLE 。 O 蔡 B-NAME 景 M-NAME 川 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O E B-EDU M M-EDU B M-EDU A E-EDU 。 O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 担 O 任 O 公 B-ORG 司 E-ORG 信 B-TITLE 息 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 担 O 任 O 公 B-ORG 司 E-ORG 信 B-TITLE 息 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 至 O 今 O 担 O 任 O 国 B-ORG 药 M-ORG 集 M-ORG 团 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 高 B-NAME 靖 M-NAME 桓 E-NAME , O 男 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 浙 B-ORG 江 M-ORG 省 M-ORG 火 M-ORG 电 M-ORG 建 M-ORG 设 M-ORG 公 M-ORG 司 M-ORG 北 M-ORG 仑 M-ORG 电 M-ORG 厂 E-ORG 、 O 台 B-ORG 州 M-ORG 电 M-ORG 厂 E-ORG 项 B-TITLE 目 M-TITLE 物 M-TITLE 资 M-TITLE 处 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE 、 O 浙 B-ORG 江 M-ORG 华 M-ORG 能 M-ORG 工 M-ORG 程 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE , O 浙 B-ORG 江 M-ORG 耀 M-ORG 江 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 公 M-ORG 司 E-ORG 耀 O 江 O 国 O 际 O 大 O 厦 O 、 O 耀 O 江 O 福 O 村 O 、 O 耀 O 江 O 喜 O 得 O 宝 O 花 O 园 O 等 O 项 B-TITLE 目 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 项 B-TITLE 目 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 上 B-ORG 海 M-ORG 耀 M-ORG 海 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 王 B-NAME 江 M-NAME 安 E-NAME 先 O 生 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 9 O 0 O 年 O 起 O , O 曾 O 任 O 安 B-ORG 徽 M-ORG 江 M-ORG 淮 M-ORG 汽 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 销 M-ORG 售 M-ORG 公 M-ORG 司 E-ORG 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 企 B-TITLE 划 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 安 B-ORG 徽 M-ORG 江 M-ORG 淮 M-ORG 客 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 现 O 任 O 安 B-ORG 徽 M-ORG 江 M-ORG 淮 M-ORG 汽 M-ORG 车 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE , O 安 B-ORG 徽 M-ORG 江 M-ORG 淮 M-ORG 客 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 孙 B-NAME 向 M-NAME 浩 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 7 O 2 O 年 O 1 O 0 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 荣 O 获 O 上 O 海 O 市 O 科 O 技 O 进 O 步 O 三 O 等 O 奖 O 。 O 曾 O 供 O 职 O 于 O 烟 B-ORG 台 M-ORG 万 M-ORG 华 M-ORG 合 M-ORG 成 M-ORG 革 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 从 O 事 O 研 O 发 O 工 O 作 O 。 O 现 O 任 O 上 B-ORG 海 M-ORG 华 M-ORG 峰 M-ORG 超 M-ORG 纤 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 张 B-NAME 立 M-NAME 和 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 北 B-LOC 京 M-LOC 市 M-LOC 丰 M-LOC 台 M-LOC 区 M-LOC 人 E-LOC , O 1 O 9 O 5 O 1 O 年 O 2 O 月 O 出 O 生 O , O 1 O 9 O 6 O 8 O 年 O 1 O 2 O 月 O 参 O 加 O 工 O 作 O , O 1 O 9 O 8 O 1 O 年 O 3 O 月 O 加 O 入 O 中 B-ORG 国 M-ORG 共 M-ORG 产 M-ORG 党 E-ORG , O 2 O 0 O 0 O 4 O 年 O 7 O 月 O 山 B-ORG 西 M-ORG 省 M-ORG 党 M-ORG 委 M-ORG 校 E-ORG 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 公 B-PRO 共 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 研 B-EDU 究 M-EDU 生 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE , O 现 O 任 O 大 B-ORG 同 M-ORG 煤 M-ORG 矿 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 党 B-TITLE 纪 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 工 O 作 O 简 O 历 O 1 O 9 O 6 O 8 O . O 1 O 2 O 山 B-ORG 西 M-ORG 省 M-ORG 山 M-ORG 阴 M-ORG 县 E-ORG 插 O 队 O , O 大 B-ORG 同 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 晋 B-TITLE 华 M-TITLE 宫 M-TITLE 矿 M-TITLE 工 M-TITLE 人 E-TITLE ; O 1 O 9 O 7 O 8 O . O 0 O 7 O 大 B-ORG 同 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 晋 B-TITLE 华 M-TITLE 宫 M-TITLE 矿 M-TITLE 党 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 秘 M-TITLE 书 E-TITLE 1 O 9 O 8 O 2 O . O 1 O 0 O 大 B-ORG 同 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 晋 B-TITLE 华 M-TITLE 宫 M-TITLE 矿 M-TITLE 党 M-TITLE 办 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 1 O 9 O 8 O 5 O . O 0 O 4 O 大 B-ORG 同 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 晋 B-TITLE 华 M-TITLE 宫 M-TITLE 矿 M-TITLE 矿 M-TITLE 办 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 1 O 9 O 8 O 8 O . O 0 O 7 O 大 B-ORG 同 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 晋 B-TITLE 华 M-TITLE 宫 M-TITLE 矿 M-TITLE 副 M-TITLE 矿 M-TITLE 长 E-TITLE 1 O 9 O 9 O 2 O . O 1 O 2 O 武 B-ORG 警 M-ORG 水 M-ORG 电 M-ORG 指 M-ORG 挥 M-ORG 部 M-ORG 企 M-ORG 业 M-ORG 局 E-ORG 大 B-TITLE 校 E-TITLE 、 O 副 B-TITLE 局 M-TITLE 长 E-TITLE 1 O 9 O 9 O 9 O . O 1 O 1 O 大 B-ORG 同 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 2 O 0 O 0 O 0 O . O 0 O 6 O 大 B-ORG 同 M-ORG 煤 M-ORG 矿 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 常 M-TITLE 委 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 2 O 0 O 0 O 7 O . O 0 O 6 O 大 B-ORG 同 M-ORG 煤 M-ORG 矿 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 苏 B-NAME 春 M-NAME 轩 E-NAME , O 男 O , O 1 O 9 O 7 O 0 O 年 O 2 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU 。 O 曾 O 任 O 天 B-ORG 茂 M-ORG 集 M-ORG 团 M-ORG 总 M-ORG 工 M-ORG 办 M-ORG 试 M-ORG 制 M-ORG 中 M-ORG 心 M-ORG 项 M-ORG 目 M-ORG 部 M-ORG 、 M-ORG 公 M-ORG 司 M-ORG 试 M-ORG 制 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 、 O 原 B-ORG 料 M-ORG 药 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 现 O 任 O 天 B-ORG 茂 M-ORG 集 M-ORG 团 E-ORG C B-TITLE 4 M-TITLE 烯 M-TITLE 烃 M-TITLE 催 M-TITLE 化 M-TITLE 裂 M-TITLE 解 M-TITLE 制 M-TITLE 丙 M-TITLE 烯 M-TITLE 项 M-TITLE 目 M-TITLE 部 M-TITLE 技 M-TITLE 术 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 刘 B-NAME 时 M-NAME 祯 E-NAME , O 男 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 安 B-ORG 德 M-ORG 鲁 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 泰 B-ORG 科 M-ORG 电 M-ORG 子 M-ORG 能 M-ORG 源 M-ORG 集 M-ORG 团 E-ORG 亚 B-TITLE 太 M-TITLE 区 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 泰 B-ORG 科 M-ORG 电 M-ORG 子 M-ORG 电 M-ORG 源 M-ORG 系 M-ORG 统 E-ORG 全 B-TITLE 球 M-TITLE 研 M-TITLE 究 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 、 O 阿 B-ORG 尔 M-ORG 法 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 发 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 、 O E B-ORG x M-ORG i M-ORG d M-ORG e M-ORG 电 M-ORG 子 M-ORG 集 M-ORG 团 E-ORG 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O , O 2 O 0 O 0 O 9 O 年 O 加 O 入 O 正 B-ORG 泰 E-ORG , O 现 O 任 O 浙 B-ORG 江 M-ORG 正 M-ORG 泰 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 1 O 8 O 日 O 辞 O 去 O 浙 B-ORG 江 M-ORG 正 M-ORG 泰 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 职 O 务 O 。 O 张 B-NAME 慧 E-NAME , O 男 O , O 1 O 9 O 4 O 9 O 年 O 1 O 2 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 就 O 读 O 于 O 湖 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG , O 管 B-PRO 理 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 近 O 5 O 年 O 任 O 上 B-ORG 海 M-ORG 爱 M-ORG 建 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 战 B-TITLE 略 M-TITLE 管 M-TITLE 理 M-TITLE 顾 M-TITLE 问 E-TITLE , O 大 B-ORG 湖 M-ORG 水 M-ORG 殖 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 大 B-ORG 湖 M-ORG 水 M-ORG 殖 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 开 B-NAME 晓 M-NAME 彬 E-NAME : O 男 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 现 O 任 O 国 B-ORG 投 M-ORG 新 M-ORG 集 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 曲 B-NAME 禄 M-NAME 生 E-NAME : O 男 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 助 B-TITLE 理 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 大 B-ORG 连 M-ORG 衬 M-ORG 衫 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE 。 O 现 O 任 O 大 B-ORG 连 M-ORG 亚 M-ORG 瑟 M-ORG 王 M-ORG 服 M-ORG 饰 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 磊 M-NAME 乐 E-NAME , O 男 O , O 1 O 9 O 5 O 3 O 年 O 7 O 月 O 出 O 生 O , O 广 B-LOC 东 M-LOC 新 M-LOC 会 M-LOC 人 E-LOC 。 O 1 O 9 O 7 O 2 O 年 O 3 O 月 O 参 O 加 O 工 O 作 O , O 1 O 9 O 8 O 0 O 年 O 起 O 至 O 今 O 一 O 直 O 从 O 事 O 财 O 务 O 工 O 作 O , O 具 O 有 O 3 O 0 O 多 O 年 O 的 O 财 O 务 O 管 O 理 O 经 O 验 O , O 分 O 别 O 于 O 2 O 0 O 0 O 0 O 年 O 及 O 2 O 0 O 0 O 2 O 年 O 被 O 新 B-ORG 会 M-ORG 市 M-ORG 国 M-ORG 家 M-ORG 税 M-ORG 务 M-ORG 局 E-ORG 和 O 新 B-ORG 会 M-ORG 市 M-ORG 地 M-ORG 方 M-ORG 税 M-ORG 务 M-ORG 所 E-ORG 聘 O 为 O 特 B-TITLE 邀 M-TITLE 检 M-TITLE 察 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 2 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 夏 B-NAME 小 M-NAME 强 E-NAME , O 现 O 任 O 东 B-ORG 方 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 毕 O 业 O 于 O 合 B-ORG 肥 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG , O 2 O 0 O 0 O 2 O 年 O 1 O 月 O 西 B-ORG 南 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O 。 O 历 O 任 O 东 B-ORG 电 M-ORG 厂 E-ORG 厂 B-TITLE 办 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 股 B-ORG 份 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 办 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 外 B-TITLE 事 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 兼 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 焊 B-ORG 接 M-ORG 分 M-ORG 厂 E-ORG 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 重 B-ORG 金 M-ORG 工 M-ORG 分 M-ORG 厂 E-ORG 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 金 B-ORG 属 M-ORG 结 M-ORG 构 M-ORG 件 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE , O 股 B-ORG 份 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 企 B-TITLE 管 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 兼 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 拥 O 有 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 职 O 称 O 。 O 高 B-NAME 圣 M-NAME 平 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 8 O 年 O 8 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 博 B-TITLE 士 M-TITLE 后 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 教 M-TITLE 授 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 民 M-ORG 商 M-ORG 事 M-ORG 法 M-ORG 律 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 专 B-TITLE 职 M-TITLE 研 M-TITLE 究 M-TITLE 人 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG M B-EDU B M-EDU A E-EDU 、 O E B-TITLE M M-TITLE B M-TITLE A M-TITLE 商 M-TITLE 法 M-TITLE 教 M-TITLE 员 E-TITLE , O 世 B-ORG 行 M-ORG 集 M-ORG 团 M-ORG 国 M-ORG 际 M-ORG 金 M-ORG 融 M-ORG 公 M-ORG 司 E-ORG 中 B-TITLE 国 M-TITLE 法 M-TITLE 律 M-TITLE 专 M-TITLE 家 E-TITLE 。 O 参 O 与 O 《 O 中 O 华 O 人 O 民 O 共 O 和 O 国 O 物 O 权 O 法 O 》 O 、 O 《 O 中 O 华 O 人 O 民 O 共 O 和 O 国 O 融 O 资 O 租 O 赁 O 法 O 》 O 的 O 论 O 证 O 与 O 起 O 草 O 工 O 作 O , O 是 O 全 B-ORG 国 M-ORG 人 M-ORG 大 M-ORG 财 M-ORG 经 M-ORG 委 E-ORG 《 O 中 O 华 O 人 O 民 O 共 O 和 O 国 O 融 O 资 O 租 O 赁 O 法 O 》 O 立 B-TITLE 法 M-TITLE 小 M-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 。 O 获 O 上 B-TITLE 市 M-TITLE 公 M-TITLE 司 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 M-TITLE 培 M-TITLE 训 M-TITLE 结 M-TITLE 业 M-TITLE 证 M-TITLE 书 E-TITLE , O 现 O 任 O 广 B-ORG 州 M-ORG 杰 M-ORG 赛 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 兼 O 任 O 苏 B-ORG 州 M-ORG 宝 M-ORG 鑫 M-ORG 科 M-ORG 技 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 上 B-ORG 海 M-ORG 汉 M-ORG 钟 M-ORG 精 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 北 B-ORG 京 M-ORG 迪 M-ORG 信 M-ORG 通 M-ORG 商 M-ORG 贸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 曲 B-NAME 晓 M-NAME 辉 E-NAME , O 女 O , O 生 O 于 O 1 O 9 O 5 O 4 O 年 O 1 O 1 O 月 O , O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 会 B-TITLE 计 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE ; O 中 O 国 O 第 O 一 O 位 O 会 B-PRO 计 M-PRO 学 E-PRO 女 O 博 B-EDU 士 E-EDU 和 O 第 O 一 O 位 O 会 B-PRO 计 M-PRO 学 E-PRO 博 B-TITLE 士 M-TITLE 生 M-TITLE 女 M-TITLE 导 M-TITLE 师 E-TITLE , O 全 B-EDU 国 M-EDU 会 M-EDU 计 M-EDU 硕 M-EDU 士 M-EDU 专 M-EDU 业 M-EDU 学 M-EDU 位 E-EDU ( O M B-EDU P M-EDU A M-EDU c M-EDU c E-EDU ) O 论 B-TITLE 证 M-TITLE 发 M-TITLE 起 M-TITLE 人 E-TITLE 。 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 E-ORG 社 B-TITLE 会 M-TITLE 学 M-TITLE 部 M-TITLE 委 M-TITLE 员 E-TITLE ; O 财 B-ORG 政 M-ORG 部 M-ORG 会 M-ORG 计 M-ORG 准 M-ORG 则 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 咨 B-TITLE 询 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 全 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 专 M-ORG 业 M-ORG 学 M-ORG 位 M-ORG 教 M-ORG 育 M-ORG 指 M-ORG 导 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 兼 O 学 B-ORG 位 M-ORG 论 M-ORG 文 M-ORG 指 M-ORG 导 M-ORG 工 M-ORG 作 M-ORG 分 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 E-TITLE 、 O 教 B-ORG 育 M-ORG 部 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 管 B-TITLE 理 M-TITLE 学 M-TITLE 部 M-TITLE 委 M-TITLE 员 E-TITLE ; O 国 B-ORG 家 M-ORG 社 M-ORG 科 M-ORG 基 M-ORG 金 M-ORG 项 M-ORG 目 E-ORG 评 B-TITLE 委 E-TITLE 、 O 教 B-ORG 育 M-ORG 部 M-ORG 中 M-ORG 外 M-ORG 合 M-ORG 作 M-ORG 办 M-ORG 学 M-ORG 项 M-ORG 目 E-ORG 评 B-TITLE 审 M-TITLE 专 M-TITLE 家 E-TITLE 。 O 现 O 任 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 发 M-ORG 展 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 、 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 务 M-ORG 管 M-ORG 理 M-ORG 与 M-ORG 会 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 云 B-ORG 南 M-ORG 白 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 戴 B-NAME 大 M-NAME 双 E-NAME , O 女 O , O 1 O 9 O 5 O 1 O 年 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 8 O 9 O 年 O 获 O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 与 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 部 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 项 B-TITLE 目 M-TITLE 管 M-TITLE 理 M-TITLE 研 M-TITLE 究 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE , O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 与 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 部 E-ORG 学 B-TITLE 术 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 兼 O 任 O 中 B-ORG 国 M-ORG 项 M-ORG 目 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 大 B-ORG 连 M-ORG 项 M-ORG 目 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE , O 具 O 有 O 国 B-ORG 际 M-ORG 项 M-ORG 目 M-ORG 管 M-ORG 理 M-ORG 协 M-ORG 会 M-ORG ( M-ORG I M-ORG P M-ORG M M-ORG A M-ORG ) E-ORG “ O 项 B-TITLE 目 M-TITLE 管 M-TITLE 理 M-TITLE 专 M-TITLE 家 E-TITLE ” O 资 O 质 O 和 O 国 B-ORG 际 M-ORG 项 M-ORG 目 M-ORG 管 M-ORG 理 M-ORG 协 M-ORG 会 E-ORG 评 B-TITLE 估 M-TITLE 师 E-TITLE ; O 兼 O 任 O 大 B-ORG 连 M-ORG 国 M-ORG 际 M-ORG 合 M-ORG 作 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE , O 大 B-ORG 连 M-ORG 热 M-ORG 电 M-ORG 集 M-ORG 团 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 自 O 2 O 0 O 0 O 0 O 年 O 以 O 来 O 曾 O 任 O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 院 M-TITLE 长 E-TITLE , O 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE ; O 大 B-ORG 连 M-ORG 市 M-ORG 妇 M-ORG 联 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 0 O 4 O 月 O 至 O 今 O , O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 刘 B-NAME 会 M-NAME 生 E-NAME : O 男 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 法 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 历 O 任 O 最 B-ORG 高 M-ORG 人 M-ORG 民 M-ORG 法 M-ORG 院 M-ORG 办 M-ORG 公 M-ORG 厅 E-ORG 主 B-TITLE 任 E-TITLE 、 O 一 B-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 法 M-TITLE 官 E-TITLE 、 O 最 B-ORG 高 M-ORG 人 M-ORG 民 M-ORG 法 M-ORG 院 E-ORG 新 B-TITLE 闻 M-TITLE 发 M-TITLE 言 M-TITLE 人 E-TITLE 、 O 湖 B-ORG 北 M-ORG 高 M-ORG 级 M-ORG 人 M-ORG 民 M-ORG 法 M-ORG 院 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 院 M-TITLE 长 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 汽 M-ORG 车 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 地 B-ORG 平 M-ORG 线 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 朱 B-NAME 国 M-NAME 章 E-NAME 先 O 生 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 4 O 9 O 年 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 宁 B-ORG 波 M-ORG 冶 M-ORG 金 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 主 B-TITLE 任 E-TITLE 、 O 宁 B-ORG 波 M-ORG 城 M-ORG 建 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 历 O 任 O 鄞 B-ORG 县 M-ORG 电 M-ORG 子 M-ORG 门 M-ORG 窗 M-ORG 厂 E-ORG 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 鄞 B-ORG 县 M-ORG 彩 M-ORG 印 M-ORG 包 M-ORG 装 M-ORG 用 M-ORG 品 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 宁 B-ORG 波 M-ORG 东 M-ORG 方 M-ORG 印 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 浙 B-ORG 江 M-ORG 广 M-ORG 博 M-ORG 文 M-ORG 具 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 宁 B-ORG 波 M-ORG 广 M-ORG 博 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 宁 B-ORG 波 M-ORG 广 M-ORG 博 M-ORG 建 M-ORG 设 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 宁 B-ORG 波 M-ORG 广 M-ORG 枫 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 宁 B-ORG 波 M-ORG 广 M-ORG 博 M-ORG 纳 M-ORG 米 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 宁 B-ORG 波 M-ORG 广 M-ORG 宏 M-ORG 商 M-ORG 贸 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 张 B-NAME 卫 M-NAME 国 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 2 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 陕 B-LOC 西 M-LOC 咸 M-LOC 阳 M-LOC 人 E-LOC , O 1 O 9 O 8 O 8 O 年 O 6 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 在 O 公 B-ORG 司 M-ORG 熔 M-ORG 炼 M-ORG 分 M-ORG 厂 E-ORG 、 O 工 O 艺 O 处 O 工 O 作 O , O 历 O 任 O 公 B-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 技 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 技 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 等 O 职 O , O 现 O 任 O 科 B-TITLE 技 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 刘 B-NAME 道 M-NAME 仁 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 出 O 生 O 于 O 1 O 9 O 7 O 4 O 年 O 1 O 月 O 。 O 1 O 9 O 9 O 6 O 年 O 7 O 月 O 毕 O 业 O 于 O 武 B-ORG 汉 M-ORG 冶 M-ORG 金 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 资 M-ORG 源 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 6 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 7 O 年 O 1 O 2 O 月 O , O 任 O 湖 B-ORG 北 M-ORG 郧 M-ORG 阳 M-ORG 金 M-ORG 牛 M-ORG 集 M-ORG 团 M-ORG 矿 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O , O 任 O 福 B-ORG 建 M-ORG 冶 M-ORG 金 M-ORG 设 M-ORG 计 M-ORG 院 M-ORG 属 M-ORG 诚 M-ORG 信 M-ORG 监 M-ORG 理 M-ORG 公 M-ORG 司 E-ORG 矿 B-TITLE 山 M-TITLE 工 M-TITLE 程 M-TITLE 监 M-TITLE 理 M-TITLE 员 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O , O 任 O 南 B-ORG 方 M-ORG 科 M-ORG 学 M-ORG 城 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 部 M-TITLE 项 M-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O , O 任 O 安 B-ORG 徽 M-ORG 淮 M-ORG 北 M-ORG 徐 M-ORG 楼 M-ORG 矿 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 科 M-TITLE 主 M-TITLE 管 E-TITLE , O 安 B-TITLE 全 M-TITLE 科 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 至 O 今 O 任 O 金 B-ORG 叶 M-ORG 珠 M-ORG 宝 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 矿 B-TITLE 业 M-TITLE 经 M-TITLE 理 E-TITLE , O 金 B-ORG 叶 M-ORG 珠 M-ORG 宝 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 丁 B-NAME 衬 M-NAME 欢 E-NAME : O 女 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 7 O 4 O 年 O 1 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 、 O 初 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O 。 O 近 O 5 O 年 O 历 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 现 O 任 O 广 B-ORG 东 M-ORG 众 M-ORG 生 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 林 B-NAME 楚 M-NAME 彬 E-NAME : O 男 O , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 程 M-PRO 物 M-PRO 理 E-PRO 学 B-EDU 士 E-EDU , O 美 B-ORG 国 M-ORG 北 M-ORG 卡 M-ORG 罗 M-ORG 来 M-ORG 纳 M-ORG 州 M-ORG 立 M-ORG 大 M-ORG 学 E-ORG 计 B-PRO 算 M-PRO 机 M-PRO 工 M-PRO 程 E-PRO 硕 B-EDU 士 E-EDU 。 O 曾 O 任 O 加 B-ORG 拿 M-ORG 大 M-ORG 北 M-ORG 方 M-ORG 电 M-ORG 信 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 软 M-TITLE 件 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 美 B-ORG 国 M-ORG 优 M-ORG 利 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 华 B-ORG 晨 M-ORG 集 M-ORG 团 E-ORG 技 B-TITLE 术 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 福 B-ORG 建 M-ORG 新 M-ORG 大 M-ORG 陆 M-ORG 电 M-ORG 脑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 证 M-ORG 通 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 证 B-ORG 通 M-ORG 金 M-ORG 信 E-ORG 董 B-TITLE 事 E-TITLE 。 O 卢 B-NAME 立 M-NAME 勇 E-NAME , O 男 O , O 1 O 9 O 6 O 1 O 年 O 5 O 月 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 1 O 9 O 8 O 2 O 年 O 毕 O 业 O 于 O 河 B-ORG 北 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 石 B-PRO 油 M-PRO 炼 M-PRO 制 M-PRO 专 M-PRO 业 E-PRO , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 2 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 石 B-ORG 家 M-ORG 庄 M-ORG 炼 M-ORG 油 M-ORG 厂 E-ORG 副 B-TITLE 总 M-TITLE 调 M-TITLE 度 M-TITLE 长 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 现 O 任 O 石 B-ORG 家 M-ORG 庄 M-ORG 炼 M-ORG 油 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 石 B-ORG 家 M-ORG 庄 M-ORG 炼 M-ORG 油 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 丁 B-NAME 笑 E-NAME , O 女 O , O 1 O 9 O 7 O 5 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 工 O 作 O 经 O 历 O : O 1 O 9 O 9 O 7 O - O 1 O 9 O 9 O 8 O 年 O 在 O 北 B-ORG 京 M-ORG 大 M-ORG 学 M-ORG 新 M-ORG 北 M-ORG 高 M-ORG 公 M-ORG 司 E-ORG 财 O 务 O 部 O 任 O 职 O ; O 1 O 9 O 9 O 8 O 年 O - O 2 O 0 O 0 O 0 O 年 O 在 O 深 B-ORG 圳 M-ORG 市 M-ORG 雄 M-ORG 震 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 O 产 O 管 O 理 O 部 O 任 O 职 O ; O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 任 O 厦 B-ORG 门 M-ORG 雄 M-ORG 震 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 至 O 今 O 任 O 厦 B-ORG 门 M-ORG 雄 M-ORG 震 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 孙 B-NAME 伟 M-NAME 强 E-NAME , O 男 O , O 现 O 任 O 天 B-ORG 创 M-ORG 置 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 北 B-ORG 京 M-ORG 天 M-ORG 创 M-ORG 世 M-ORG 缘 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 曾 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 天 M-ORG 创 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 光 M-NAME 保 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 0 O 年 O 9 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 营 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 任 O 湖 B-ORG 南 M-ORG 一 M-ORG 六 M-ORG 九 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O 任 O 湖 B-ORG 南 M-ORG 神 M-ORG 斧 M-ORG 民 M-ORG 爆 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE , O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE , O 湖 B-ORG 南 M-ORG 神 M-ORG 斧 M-ORG 民 M-ORG 爆 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE , O 湖 B-ORG 南 M-ORG 新 M-ORG 天 M-ORG 地 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE , O 湖 B-ORG 南 M-ORG 新 M-ORG 天 M-ORG 地 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 金 B-NAME 向 M-NAME 宝 E-NAME , O 男 O , O 1 O 9 O 7 O 8 O 年 O 1 O 1 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 最 O 近 O 5 O 年 O , O 任 O 东 B-ORG 方 M-ORG 金 M-ORG 钰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 策 B-TITLE 划 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 东 B-ORG 方 M-ORG 金 M-ORG 钰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 于 O 2 O 0 O 1 O 3 O 年 O 1 O 0 O 月 O 辞 O 去 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 职 O 务 O 。 O 赖 B-NAME 国 M-NAME 华 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 9 O 年 O 7 O 月 O 毕 O 业 O 于 O 福 B-ORG 建 M-ORG 龙 M-ORG 岩 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 校 E-ORG ; O 1 O 9 O 9 O 7 O 年 O 6 O 月 O 毕 O 业 O 于 O 中 B-ORG 央 M-ORG 党 M-ORG 校 E-ORG ( O 函 O 授 O ) O 经 B-PRO 管 M-PRO 专 M-PRO 业 E-PRO 。 O 曾 O 任 O 漳 B-ORG 州 M-ORG 片 M-ORG 仔 M-ORG 癀 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE , O 漳 B-ORG 州 M-ORG 片 M-ORG 仔 M-ORG 癀 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 2 O 月 O 任 O 漳 B-ORG 州 M-ORG 片 M-ORG 仔 M-ORG 癀 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 任 O 漳 B-ORG 州 M-ORG 片 M-ORG 仔 M-ORG 癀 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 醒 E-NAME : O 男 O , O 1 O 9 O 5 O 7 O 年 O 1 O 2 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 锦 B-ORG 江 M-ORG 国 M-ORG 际 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 组 B-TITLE 织 M-TITLE 部 M-TITLE 部 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 机 B-TITLE 关 M-TITLE 总 M-TITLE 部 M-TITLE 党 M-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 现 O 任 O 上 B-ORG 海 M-ORG 锦 M-ORG 江 M-ORG 国 M-ORG 际 M-ORG 实 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 王 B-NAME 昌 M-NAME 东 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 5 O 2 O 年 O 2 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 高 B-EDU 中 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU , O 浙 B-ORG 江 M-ORG 大 M-ORG 学 M-ORG 总 M-ORG 裁 M-ORG 高 M-ORG 级 M-ORG 研 M-ORG 修 M-ORG 班 E-ORG 结 O 业 O 。 O 曾 O 任 O 新 B-ORG 界 M-ORG 有 M-ORG 限 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 现 O 任 O 新 B-ORG 界 M-ORG 泵 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 浙 B-ORG 江 M-ORG 老 M-ORG 百 M-ORG 姓 M-ORG 泵 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 江 B-ORG 苏 M-ORG 新 M-ORG 界 M-ORG 机 M-ORG 械 M-ORG 配 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 台 B-ORG 州 M-ORG 鑫 M-ORG 特 M-ORG 物 M-ORG 资 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 王 B-NAME 素 M-NAME 玲 E-NAME , O 女 O , O 1 O 9 O 6 O 3 O 年 O 6 O 月 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 教 B-TITLE 授 E-TITLE , O 现 O 任 O 安 B-ORG 徽 M-ORG 大 M-ORG 学 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 会 B-TITLE 计 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE , O 兼 O 职 O 安 B-ORG 徽 M-ORG 合 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 、 O 安 B-ORG 徽 M-ORG 省 M-ORG 皖 M-ORG 能 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 唐 B-NAME 长 M-NAME 虹 E-NAME , O 女 O , O 1 O 9 O 7 O 1 O 年 O 4 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 电 M-ORG 信 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 实 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 主 M-TITLE 管 E-TITLE , O 中 B-ORG 卫 M-ORG 国 M-ORG 脉 M-ORG 通 M-ORG 信 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 七 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 通 M-ORG 信 M-ORG 服 M-ORG 务 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 风 B-TITLE 险 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 业 M-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 向 M-NAME 宁 E-NAME 先 O 生 O : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 8 O 0 O 年 O 8 O 月 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 进 O 入 O 河 B-ORG 南 M-ORG 省 M-ORG 中 M-ORG 原 M-ORG 内 M-ORG 配 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 曾 O 任 O 公 B-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE , O 第 B-TITLE 六 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 审 B-TITLE 计 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 刘 S-NAME 先 O 生 O 现 O 任 O 河 B-ORG 南 M-ORG 省 M-ORG 中 M-ORG 原 M-ORG 内 M-ORG 配 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 南 B-ORG 京 M-ORG 飞 M-ORG 燕 M-ORG 活 M-ORG 塞 M-ORG 环 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 安 B-ORG 徽 M-ORG 中 M-ORG 原 M-ORG 内 M-ORG 配 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 河 B-ORG 南 M-ORG 省 M-ORG 中 M-ORG 原 M-ORG 内 M-ORG 配 M-ORG 轴 M-ORG 瓦 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 步 M-NAME 林 E-NAME : O 男 O , O 1 O 9 O 4 O 5 O 年 O 6 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 毕 M-EDU 业 E-EDU , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 统 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 华 B-ORG 域 M-ORG 汽 M-ORG 车 M-ORG 系 M-ORG 统 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 徐 B-NAME 旭 M-NAME 珠 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 9 O 年 O 1 O 0 O 月 O 出 O 生 O ; O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 营 B-ORG 财 M-ORG 投 M-ORG 资 E-ORG 顾 B-TITLE 问 E-TITLE , O 东 B-ORG 吴 M-ORG 期 M-ORG 货 E-ORG 董 B-TITLE 事 E-TITLE , O 苏 B-ORG 州 M-ORG 市 M-ORG 再 M-ORG 生 M-ORG 资 M-ORG 源 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 东 B-ORG 吴 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 1 O 9 O 7 O 8 O 年 O 至 O 1 O 9 O 8 O 4 O 年 O 在 O 苏 B-ORG 州 M-ORG 东 M-ORG 风 M-ORG 丝 M-ORG 织 M-ORG 厂 E-ORG 任 O 财 B-TITLE 务 M-TITLE 科 M-TITLE 主 M-TITLE 办 M-TITLE 会 M-TITLE 计 E-TITLE 。 O 1 O 9 O 8 O 4 O 年 O 至 O 1 O 9 O 9 O 3 O 年 O 在 O 苏 B-ORG 州 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG 任 O 科 B-TITLE 员 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 至 O 1 O 9 O 9 O 4 O 年 O 在 O 江 B-ORG 苏 M-ORG 省 M-ORG 高 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 风 M-ORG 险 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 M-ORG 苏 M-ORG 州 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 4 O 年 O 起 O 至 O 2 O 0 O 1 O 3 O 年 O 在 O 营 B-ORG 财 M-ORG 投 M-ORG 资 E-ORG 历 O 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 4 O 年 O 1 O 月 O 起 O 至 O 今 O , O 营 B-ORG 财 M-ORG 投 M-ORG 资 E-ORG 顾 B-TITLE 问 E-TITLE 。 O 张 B-NAME 忠 E-NAME 先 O 生 O , O 1 O 9 O 4 O 6 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 北 M-ORG 车 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 亦 O 任 O 中 B-ORG 国 M-ORG 保 M-ORG 利 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 S-NAME 先 O 生 O 曾 O 任 O 中 B-ORG 国 M-ORG 兵 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 3 M-ORG 3 M-ORG 3 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 发 B-TITLE 展 M-TITLE 规 M-TITLE 划 M-TITLE 局 M-TITLE 局 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 兵 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 6 O 月 O 起 O 出 O 任 O 中 B-ORG 国 M-ORG 北 M-ORG 车 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 起 O 任 O 中 B-ORG 国 M-ORG 保 M-ORG 利 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 监 B-TITLE 事 E-TITLE : O 王 B-NAME 凤 M-NAME 仙 E-NAME , O 女 O , O 汉 B-RACE 族 E-RACE , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 1 O 月 O - O 2 O 0 O 0 O 2 O 年 O 3 O 月 O , O 任 O 白 B-ORG 鸽 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 4 O 月 O - O 2 O 0 O 0 O 5 O 年 O 1 O 0 O 月 O , O 任 O 白 B-ORG 鸽 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 律 M-TITLE 审 M-TITLE 计 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 1 O 1 O 月 O 至 O 今 O , O 任 O 白 B-ORG 鸽 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 高 B-NAME 涛 E-NAME 先 O 生 O , O 1 O 9 O 6 O 9 O 年 O 1 O 2 O 月 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 硕 B-EDU 士 E-EDU 在 O 读 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 北 M-ORG 通 M-ORG 发 M-ORG 科 M-ORG 技 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 业 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 部 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 现 O 任 O 湖 B-ORG 北 M-ORG 国 M-ORG 创 M-ORG 高 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 韩 B-NAME 复 M-NAME 龄 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 6 O 4 O 年 O 1 O 0 O 月 O , O 先 O 后 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 获 O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU 、 O 管 B-PRO 理 M-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 波 B-ORG 兰 M-ORG 西 M-ORG 里 M-ORG 西 M-ORG 亚 M-ORG 大 M-ORG 学 E-ORG 获 O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 经 B-TITLE 济 M-TITLE 学 M-TITLE 博 M-TITLE 士 M-TITLE 后 E-TITLE , O 荷 B-ORG 兰 M-ORG 蒂 M-ORG 尔 M-ORG 堡 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE 、 O 澳 B-ORG 大 M-ORG 利 M-ORG 亚 M-ORG 维 M-ORG 多 M-ORG 利 M-ORG 亚 M-ORG 大 M-ORG 学 E-ORG ( O V B-ORG i M-ORG c M-ORG t M-ORG o M-ORG r M-ORG i M-ORG a M-ORG U M-ORG n M-ORG i M-ORG v M-ORG e M-ORG r M-ORG s M-ORG i M-ORG t M-ORG y E-ORG ) O 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE 。 O 曾 O 在 O 北 B-ORG 京 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 、 O 中 B-ORG 国 M-ORG 证 M-ORG 券 M-ORG 市 M-ORG 场 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 中 M-ORG 心 E-ORG 等 O 机 O 构 O 任 O 职 O , O 兼 O 任 O 全 B-ORG 国 M-ORG 人 M-ORG 大 M-ORG 财 M-ORG 经 M-ORG 委 E-ORG 、 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 M-ORG 研 M-ORG 究 M-ORG 局 E-ORG 咨 B-TITLE 询 M-TITLE 专 M-TITLE 家 E-TITLE , O 中 B-ORG 国 M-ORG 工 M-ORG 商 M-ORG 银 M-ORG 行 E-ORG 、 O 中 B-ORG 国 M-ORG 银 M-ORG 行 E-ORG 理 B-TITLE 财 M-TITLE 顾 M-TITLE 问 E-TITLE , O 北 B-ORG 京 M-ORG 市 M-ORG 政 M-ORG 府 E-ORG 、 O 河 B-ORG 北 M-ORG 省 M-ORG 政 M-ORG 府 E-ORG 顾 B-TITLE 问 E-TITLE , O 现 O 任 O 中 B-ORG 央 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 金 M-ORG 融 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE , O 应 B-TITLE 用 M-TITLE 金 M-TITLE 融 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 荆 B-NAME 云 M-NAME 涛 E-NAME 先 O 生 O : O 1 O 9 O 6 O 9 O 年 O 生 O 人 O , O 1 O 9 O 9 O 3 O 年 O 毕 O 业 O 于 O 哈 B-ORG 尔 M-ORG 滨 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 动 B-PRO 力 M-PRO 工 M-PRO 程 M-PRO 系 M-PRO 热 M-PRO 能 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO , O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 哈 B-ORG 尔 M-ORG 滨 M-ORG 空 M-ORG 调 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 销 B-TITLE 售 M-TITLE 处 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 公 B-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ( O 2 O 0 O 0 O 5 O 年 O 5 O 月 O 2 O 1 O 日 O 至 O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 3 O 日 O 期 O 间 O , O 受 O 董 O 事 O 会 O 指 O 定 O 代 O 行 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 职 O 责 O ) O 、 O 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 上 B-ORG 海 M-ORG 尔 M-ORG 华 M-ORG 杰 M-ORG 机 M-ORG 电 M-ORG 装 M-ORG 备 M-ORG 制 M-ORG 造 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 天 M-ORG 勃 M-ORG 能 M-ORG 源 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 3 O 0 O 日 O 起 O 代 O 行 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 职 O 权 O , O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 1 O 3 O 日 O , O 因 O 工 O 作 O 调 O 动 O , O 辞 O 去 O 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 郝 B-NAME 立 M-NAME 华 E-NAME 先 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 陕 B-ORG 西 M-ORG 彩 M-ORG 虹 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 玻 M-ORG 璃 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 陕 B-ORG 西 M-ORG 彩 M-ORG 虹 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 战 B-TITLE 略 M-TITLE 规 M-TITLE 划 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 职 O 务 O 。 O 现 O 任 O 青 B-ORG 海 M-ORG 省 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 青 B-ORG 海 M-ORG 省 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 西 B-ORG 宁 M-ORG 特 M-ORG 殊 M-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 青 B-ORG 海 M-ORG 四 M-ORG 维 M-ORG 信 M-ORG 用 M-ORG 担 M-ORG 保 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 万 B-NAME 曾 M-NAME 炜 E-NAME 先 O 生 O , O 1 O 9 O 4 O 9 O 年 O 7 O 月 O 出 O 生 O , O 博 B-EDU 士 E-EDU 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 浦 M-ORG 东 M-ORG 新 M-ORG 区 M-ORG 综 M-ORG 合 M-ORG 规 M-ORG 划 M-ORG 土 M-ORG 地 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE , O 浦 B-ORG 东 M-ORG 新 M-ORG 区 M-ORG 综 M-ORG 合 M-ORG 计 M-ORG 划 M-ORG 局 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE , O 上 B-ORG 海 M-ORG 市 M-ORG 公 M-ORG 积 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 中 M-ORG 心 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 上 B-ORG 海 M-ORG 张 M-ORG 江 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 园 M-ORG 区 M-ORG 开 M-ORG 发 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 、 M-TITLE 三 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 上 B-ORG 海 M-ORG 金 M-ORG 丰 M-ORG 投 M-ORG 资 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 上 B-ORG 海 M-ORG 张 M-ORG 江 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 园 M-ORG 区 M-ORG 开 M-ORG 发 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 浦 B-ORG 东 M-ORG 改 M-ORG 革 M-ORG 与 M-ORG 发 M-ORG 展 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 6 O 月 O , O 万 B-NAME 曾 M-NAME 炜 E-NAME 董 B-TITLE 事 E-TITLE 因 O 个 O 人 O 原 O 因 O 无 O 法 O 履 O 行 O 公 O 司 O 董 O 事 O 职 O 责 O , O 公 O 司 O 股 O 东 O 大 O 会 O 免 O 去 O 其 O 董 O 事 O 职 O 务 O 。 O 李 B-NAME 罗 M-NAME 生 E-NAME , O 男 O , O 1 O 9 O 5 O 0 O 年 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 长 B-ORG 沙 M-ORG 矿 M-ORG 冶 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 金 B-ORG 瑞 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 长 B-ORG 沙 M-ORG 金 M-ORG 石 M-ORG 粉 M-ORG 体 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 杨 B-NAME 兴 M-NAME 全 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 6 O 9 O . O 1 O 2 O 生 O , O 甘 B-LOC 肃 M-LOC 古 M-LOC 浪 M-LOC 人 E-LOC , O 1 O 9 O 9 O 6 O 年 O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O 留 O 石 B-ORG 河 M-ORG 子 M-ORG 大 M-ORG 学 E-ORG 任 O 教 O , O 2 O 0 O 0 O 1 O 年 O 9 O 月 O 考 O 取 O 中 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 2 O 0 O 0 O 4 O 年 O 获 O 管 B-PRO 理 M-PRO 学 M-PRO ( M-PRO 会 M-PRO 计 M-PRO 学 M-PRO ) E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 现 O 为 O 石 B-ORG 河 M-ORG 子 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 顾 B-NAME 启 M-NAME 峰 E-NAME 先 O 生 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 同 M-ORG 济 M-ORG 大 M-ORG 学 E-ORG , O 并 O 获 O 工 B-PRO 程 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 1 O 9 O 9 O 8 O 年 O 于 O 同 B-ORG 济 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 班 E-ORG 毕 O 业 O 。 O 从 O 1 O 9 O 8 O 8 O 年 O 起 O , O 顾 S-NAME 先 O 生 O 在 O 天 B-ORG 津 M-ORG 市 M-ORG 第 M-ORG 三 M-ORG 市 M-ORG 政 M-ORG 工 M-ORG 程 M-ORG 公 M-ORG 司 E-ORG 负 O 责 O 监 O 督 O 济 O 青 O 高 O 速 O 公 O 路 O 、 O 沪 O 宁 O 高 O 速 O 公 O 路 O 及 O 唐 O 津 O 高 O 速 O 公 O 路 O 的 O 建 O 设 O 。 O 1 O 9 O 9 O 7 O 年 O 任 O 天 B-ORG 津 M-ORG 市 M-ORG 政 M-ORG 三 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 8 O 年 O 至 O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 担 O 任 O 天 B-ORG 津 M-ORG 市 M-ORG 政 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 顾 S-NAME 先 O 生 O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 于 O 2 O 0 O 0 O 2 O 年 O 后 O 开 O 始 O 兼 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 3 O 年 O 2 O 月 O 辞 O 去 O 公 B-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 职 O 务 O , O 2 O 0 O 0 O 3 O 年 O 7 O 月 O 任 O 公 B-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 自 O 2 O 0 O 0 O 3 O 年 O 1 O 2 O 月 O 开 O 始 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 顾 S-NAME 先 O 生 O 从 O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 马 B-NAME 崇 M-NAME 贤 E-NAME : O 男 O , O 1 O 9 O 6 O 5 O 年 O 6 O 月 O 生 O , O E B-EDU M M-EDU B M-EDU A E-EDU , O 毕 O 业 O 于 O 内 B-ORG 蒙 M-ORG 古 M-ORG 大 M-ORG 学 E-ORG 计 B-PRO 划 M-PRO 统 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO 。 O 1 O 9 O 8 O 8 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 民 B-ORG 航 M-ORG 内 M-ORG 蒙 M-ORG 古 M-ORG 区 M-ORG 局 E-ORG 机 B-TITLE 务 M-TITLE 科 M-TITLE 计 M-TITLE 划 M-TITLE 员 E-TITLE 、 O 国 B-ORG 航 M-ORG 内 M-ORG 蒙 M-ORG 古 M-ORG 分 M-ORG 公 M-ORG 司 M-ORG 航 M-ORG 修 M-ORG 厂 E-ORG 航 B-TITLE 材 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 支 B-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE , O 蓝 B-ORG 天 M-ORG 旅 M-ORG 客 M-ORG 服 M-ORG 务 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 内 B-ORG 蒙 M-ORG 古 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 浙 B-ORG 江 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 2 O 0 O 0 O 9 O 年 O 6 O 月 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 湖 M-ORG 北 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 兼 O 任 O 山 B-ORG 东 M-ORG 航 M-ORG 空 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE 和 O 山 B-ORG 东 M-ORG 航 M-ORG 空 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 任 B-NAME 宇 M-NAME 光 E-NAME : O 女 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 2 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 财 B-ORG 政 M-ORG 部 M-ORG 工 M-ORG 交 M-ORG 司 E-ORG 副 B-TITLE 主 M-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE 、 O 国 B-ORG 家 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 局 M-ORG 企 M-ORG 业 M-ORG 司 E-ORG 处 B-TITLE 长 E-TITLE 、 O 财 B-ORG 政 M-ORG 部 M-ORG 财 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 司 E-ORG 处 B-TITLE 长 E-TITLE 。 O 现 O 任 O 北 B-ORG 方 M-ORG 财 M-ORG 务 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 并 O 兼 O 任 O 中 B-ORG 纺 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 南 B-ORG 京 M-ORG 新 M-ORG 街 M-ORG 口 M-ORG 百 M-ORG 货 M-ORG 商 M-ORG 店 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 柯 B-NAME 桂 M-NAME 苑 E-NAME , O 男 O , O 1 O 9 O 4 O 2 O 年 O 1 O 0 O 月 O 3 O 0 O 日 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 籍 O 贯 O 温 B-LOC 岭 E-LOC 。 O 1 O 9 O 6 O 4 O 年 O 毕 O 业 O 于 O 温 B-ORG 州 M-ORG 师 M-ORG 范 M-ORG 学 M-ORG 院 E-ORG 。 O 历 O 任 O 浙 B-ORG 江 M-ORG 省 M-ORG 温 M-ORG 州 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE , O 温 B-ORG 岭 M-ORG 化 M-ORG 肥 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE , O 温 B-ORG 岭 M-ORG 县 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 副 B-TITLE 县 M-TITLE 长 E-TITLE 、 O 温 B-ORG 岭 M-ORG 市 M-ORG 委 E-ORG 常 B-TITLE 委 E-TITLE 、 O 温 B-ORG 岭 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 市 M-TITLE 长 E-TITLE 、 O 温 B-ORG 岭 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 调 B-TITLE 研 M-TITLE 员 E-TITLE 。 O 现 O 退 O 休 O 。 O 夏 B-NAME 峰 E-NAME : O 男 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 畜 M-TITLE 牧 M-TITLE 师 E-TITLE , O 毕 O 业 O 于 O 沈 B-ORG 阳 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 畜 M-ORG 牧 M-ORG 学 M-ORG 校 E-ORG 教 B-TITLE 师 E-TITLE , O 国 B-ORG 家 M-ORG 土 M-ORG 地 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 教 B-TITLE 育 M-TITLE 处 M-TITLE 干 M-TITLE 部 E-TITLE , O 中 B-ORG 国 M-ORG 牧 M-ORG 工 M-ORG 商 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 华 M-ORG 联 M-ORG 鸡 M-ORG 场 E-ORG 副 B-TITLE 场 M-TITLE 长 E-TITLE 、 O 禽 B-TITLE 蛋 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 西 B-TITLE 北 M-TITLE 地 M-TITLE 区 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 家 B-ORG 禽 M-ORG 育 M-ORG 种 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 党 B-TITLE 办 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 总 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 党 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 牧 M-ORG 工 M-ORG 商 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 牧 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 戚 B-NAME 亚 M-NAME 红 E-NAME , O 女 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 戚 B-NAME 亚 M-NAME 红 E-NAME 女 O 士 O 2 O 0 O 0 O 5 O 年 O 7 O 月 O 加 O 入 O 杭 B-ORG 州 M-ORG 顺 M-ORG 网 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 现 O 担 O 任 O 杭 B-ORG 州 M-ORG 顺 M-ORG 网 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 兼 O 综 B-TITLE 合 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陆 B-NAME 长 M-NAME 荣 E-NAME : O 男 O , O 1 O 9 O 6 O 4 O 年 O 1 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 曾 O 任 O 南 B-ORG 京 M-ORG 中 M-ORG 心 M-ORG 大 M-ORG 酒 M-ORG 店 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 成 M-TITLE 本 M-TITLE 控 M-TITLE 制 M-TITLE 组 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 综 M-TITLE 合 M-TITLE 分 M-TITLE 析 M-TITLE 组 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 审 B-TITLE 计 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 安 B-ORG 徽 M-ORG 黄 M-ORG 山 M-ORG 国 M-ORG 际 M-ORG 大 M-ORG 酒 M-ORG 店 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 紫 M-ORG 金 M-ORG 山 M-ORG 大 M-ORG 酒 M-ORG 店 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 吴 B-NAME 鹰 E-NAME 先 O 生 O , O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 美 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 9 O 年 O 出 O 生 O , O 美 B-ORG 国 M-ORG 新 M-ORG 泽 M-ORG 西 M-ORG 州 M-ORG 理 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 硕 B-EDU 士 E-EDU 。 O 历 O 任 O 美 B-ORG 国 M-ORG 贝 M-ORG 尔 M-ORG 实 M-ORG 验 M-ORG 室 E-ORG 高 B-TITLE 级 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 项 B-TITLE 目 M-TITLE 主 M-TITLE 管 E-TITLE 、 O U B-ORG T M-ORG 斯 M-ORG 康 M-ORG 达 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O U B-ORG T M-ORG 斯 M-ORG 康 M-ORG 达 M-ORG ( M-ORG 中 M-ORG 国 M-ORG ) M-ORG 中 M-ORG 国 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 任 O 和 B-ORG 利 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 E-ORG 资 B-TITLE 深 M-TITLE 合 M-TITLE 伙 M-TITLE 人 E-TITLE 。 O 现 O 任 O 华 B-ORG 谊 M-ORG 兄 M-ORG 弟 M-ORG 传 M-ORG 媒 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 等 O 。 O 高 B-NAME 忠 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 5 O 8 O 年 O , O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 毕 O 业 O 于 O 西 B-ORG 北 M-ORG 纺 M-ORG 织 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 新 B-ORG 疆 M-ORG 金 M-ORG 纺 M-ORG 纺 M-ORG 织 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 新 B-ORG 疆 M-ORG 八 M-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 监 B-TITLE 事 E-TITLE , O 新 B-ORG 疆 M-ORG 贝 M-ORG 正 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 现 O 任 O 新 B-ORG 疆 M-ORG 风 M-ORG 能 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 王 B-NAME 毅 M-NAME 刚 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 自 B-TITLE 动 M-TITLE 化 M-TITLE 仪 M-TITLE 表 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 9 O 年 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 河 B-ORG 南 M-ORG 油 M-ORG 田 M-ORG 采 M-ORG 油 M-ORG 二 M-ORG 厂 E-ORG 仪 B-TITLE 表 M-TITLE 自 M-TITLE 动 M-TITLE 化 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-ORG 国 M-ORG 石 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 河 M-ORG 南 M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 局 M-ORG 勘 M-ORG 察 M-ORG 设 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 仪 B-TITLE 表 M-TITLE 自 M-TITLE 动 M-TITLE 化 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 等 O 职 O 。 O 2 O 0 O 0 O 1 O 年 O 8 O 月 O 起 O 到 O 惠 B-ORG 博 M-ORG 普 M-ORG 有 M-ORG 限 E-ORG 工 O 作 O , O 历 O 任 O 工 B-TITLE 控 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 设 B-TITLE 计 M-TITLE 所 M-TITLE 副 M-TITLE 所 M-TITLE 长 E-TITLE 等 O 职 O , O 现 O 任 O 华 B-ORG 油 M-ORG 惠 M-ORG 博 M-ORG 普 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 油 B-TITLE 气 M-TITLE 工 M-TITLE 程 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 8 O 月 O 起 O 担 O 任 O 华 B-ORG 油 M-ORG 惠 M-ORG 博 M-ORG 普 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 蒋 B-NAME 毅 E-NAME , O 男 O , O 1 O 9 O 7 O 2 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 1 O 年 O 9 O 月 O 至 O 1 O 9 O 9 O 5 O 年 O 6 O 月 O 在 O 中 B-ORG 国 M-ORG 科 M-ORG 技 M-ORG 经 M-ORG 营 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 学 O 习 O ; O 1 O 9 O 9 O 5 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 在 O 北 B-ORG 京 M-ORG 城 M-ORG 建 M-ORG 集 M-ORG 团 M-ORG 建 M-ORG 筑 M-ORG 设 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 担 O 任 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 至 O 今 O 在 O 北 B-ORG 京 M-ORG 京 M-ORG 贸 M-ORG 运 M-ORG 通 M-ORG 物 M-ORG 流 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 担 O 任 O 物 B-TITLE 流 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 乔 B-NAME 小 M-NAME 明 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 正 B-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 天 B-ORG 房 M-ORG 发 M-ORG 展 E-ORG 董 B-TITLE 事 E-TITLE , O 天 B-ORG 房 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 天 B-ORG 房 M-ORG 发 M-ORG 展 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 欣 B-ORG 苑 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 金 B-NAME 德 M-NAME 环 E-NAME , O 男 O , O 1 O 9 O 5 O 3 O 年 O 生 O , O 硕 B-EDU 士 E-EDU , O 教 B-TITLE 授 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 交 M-ORG 大 M-ORG 昂 M-ORG 立 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 并 O 兼 O 任 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 金 M-ORG 融 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 海 B-ORG 证 M-ORG 期 M-ORG 货 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 兴 B-ORG 业 M-ORG 期 M-ORG 货 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 光 B-ORG 大 M-ORG 保 M-ORG 德 M-ORG 信 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 书 M-NAME 剑 E-NAME 先 O 生 O , O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 北 B-ORG 京 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 于 O 2 O 0 O 1 O 4 O 年 O 5 O 月 O 加 O 入 O 北 B-ORG 京 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 O 事 O 会 O 。 O 2 O 0 O 1 O 4 O 年 O 8 O 月 O 担 O 任 O 本 B-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE , O 杨 S-NAME 先 O 生 O 于 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 今 O 担 O 任 O 本 B-ORG 行 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE , O 期 O 间 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 兼 O 任 O 中 B-ORG 加 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 4 O 年 O 7 O 月 O 至 O 今 O 兼 O 任 O 本 B-ORG 行 M-ORG 石 M-ORG 家 M-ORG 庄 M-ORG 分 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 担 O 任 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ( O 主 O 持 O 工 O 作 O ) O , O 2 O 0 O 0 O 4 O 年 O 2 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 2 O 月 O 担 O 任 O 学 B-ORG 院 M-ORG 路 M-ORG 支 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 担 O 任 O 人 B-TITLE 事 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 担 O 任 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 1 O 9 O 9 O 7 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 4 O 月 O 担 O 任 O 业 B-TITLE 务 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 银 M-TITLE 行 M-TITLE 卡 M-TITLE 业 M-TITLE 务 M-TITLE 组 M-TITLE 组 M-TITLE 长 E-TITLE 。 O 杨 S-NAME 先 O 生 O 为 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 1 O 年 O 获 O 吉 B-ORG 林 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 1 O 9 O 9 O 4 O 年 O 获 O 吉 B-ORG 林 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 1 O 9 O 9 O 7 O 年 O 获 O 中 B-ORG 央 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 邬 B-NAME 红 M-NAME 华 E-NAME : O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU ( O 后 O ) O , O 高 B-TITLE 级 M-TITLE 国 M-TITLE 际 M-TITLE 商 M-TITLE 务 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 财 M-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 北 M-ORG 普 M-ORG 康 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 武 B-ORG 汉 M-ORG 嘉 M-ORG 诚 M-ORG 铝 M-ORG 业 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 武 B-ORG 汉 M-ORG 盛 M-ORG 佳 M-ORG 铝 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 湖 B-ORG 北 M-ORG 银 M-ORG 泰 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 武 B-ORG 商 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 高 B-NAME 峰 E-NAME , O 男 O , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 1 O 9 O 8 O 8 O 年 O 至 O 1 O 9 O 9 O 2 O 年 O , O 就 O 读 O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 获 O 工 B-PRO 程 M-PRO 力 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 1 O 9 O 9 O 2 O 年 O 至 O 1 O 9 O 9 O 6 O 年 O , O 任 O 职 O 哈 B-ORG 尔 M-ORG 滨 M-ORG 市 M-ORG 锅 M-ORG 炉 M-ORG 厂 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG ; O 1 O 9 O 9 O 6 O 年 O 至 O 1 O 9 O 9 O 9 O 年 O 就 O 读 O 哈 B-ORG 尔 M-ORG 滨 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 获 O 计 B-PRO 算 M-PRO 机 M-PRO 应 M-PRO 用 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 2 O 0 O 0 O 1 O 年 O 至 O 今 O , O 历 O 任 O 公 B-ORG 司 E-ORG 销 B-TITLE 售 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 王 B-NAME 坚 M-NAME 能 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 东 B-ORG 北 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 动 B-PRO 物 M-PRO 营 M-PRO 养 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 高 B-TITLE 级 M-TITLE 畜 M-TITLE 牧 M-TITLE 师 E-TITLE 。 O 近 O 五 O 年 O 来 O , O 一 O 直 O 担 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 金 M-ORG 新 M-ORG 农 M-ORG 饲 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 黄 B-NAME 生 M-NAME 荣 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 9 O 年 O 加 O 入 O 线 O 路 O 板 O 行 O 业 O , O 任 O 职 O C B-TITLE A M-TITLE M M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 先 O 后 O 担 O 任 O 惠 B-ORG 州 M-ORG 中 M-ORG 京 M-ORG 电 M-ORG 子 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 部 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE 及 O 开 B-TITLE 发 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 务 O , O 现 O 任 O 惠 B-ORG 州 M-ORG 中 M-ORG 京 M-ORG 电 M-ORG 子 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 兼 O 任 O 产 B-TITLE 品 M-TITLE 评 M-TITLE 估 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 袁 B-NAME 端 M-NAME 淇 E-NAME 先 O 生 O : O 曾 O 用 O 名 O 袁 B-NAME 彪 E-NAME , O 1 O 9 O 6 O 4 O 年 O 出 O 生 O , O 中 B-ORG 国 M-ORG 青 M-ORG 年 M-ORG 企 M-ORG 业 M-ORG 家 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE , O 中 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 现 O 任 O 湖 B-ORG 南 M-ORG 新 M-ORG 五 M-ORG 丰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 湖 B-ORG 南 M-ORG 新 M-ORG 永 M-ORG 联 M-ORG 物 M-ORG 流 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 粮 M-ORG 油 M-ORG 食 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 单 B-TITLE 证 M-TITLE 员 E-TITLE 、 O 业 B-TITLE 务 M-TITLE 员 E-TITLE 、 O 蔬 B-TITLE 菜 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 进 B-TITLE 口 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 。 O 泰 B-ORG 国 M-ORG C M-ORG . M-ORG H M-ORG . M-ORG I M-ORG n M-ORG t M-ORG e M-ORG r M-ORG n M-ORG a M-ORG t M-ORG i M-ORG o M-ORG n M-ORG a M-ORG l M-ORG T M-ORG r M-ORG a M-ORG d M-ORG i M-ORG n M-ORG g M-ORG C M-ORG o M-ORG . M-ORG , M-ORG L M-ORG t M-ORG d M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 湖 B-ORG 南 M-ORG 省 M-ORG 土 M-ORG 产 M-ORG 畜 M-ORG 产 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 进 B-TITLE 口 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 应 B-TITLE 收 M-TITLE 账 M-TITLE 款 M-TITLE 催 M-TITLE 收 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 湖 B-ORG 南 M-ORG 新 M-ORG 五 M-ORG 丰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 工 B-TITLE 程 M-TITLE 建 M-TITLE 设 M-TITLE 项 M-TITLE 目 M-TITLE 指 M-TITLE 挥 M-TITLE 长 E-TITLE 。 O 湖 B-ORG 北 M-ORG 长 M-ORG 阳 M-ORG 锰 M-ORG 业 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 株 B-ORG 洲 M-ORG 兆 M-ORG 富 M-ORG 投 M-ORG 资 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 株 B-ORG 洲 M-ORG 兆 M-ORG 富 M-ORG 成 M-ORG 长 M-ORG 企 M-ORG 业 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 湖 B-ORG 南 M-ORG 胜 M-ORG 景 M-ORG 山 M-ORG 河 M-ORG 生 M-ORG 物 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 运 B-TITLE 营 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 湖 B-ORG 南 M-ORG 众 M-ORG 益 M-ORG 文 M-ORG 化 M-ORG 传 M-ORG 媒 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 内 B-ORG 蒙 M-ORG 古 M-ORG 四 M-ORG 海 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 湖 B-ORG 南 M-ORG 优 M-ORG 鲜 M-ORG 食 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 范 B-NAME 小 M-NAME 平 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 出 O 生 O 于 O 1 O 9 O 5 O 9 O 年 O , O 文 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 1 O 9 O 8 O 2 O 年 O - O 1 O 9 O 8 O 8 O 年 O 从 O 事 O 教 O 育 O 工 O 作 O , O 1 O 9 O 8 O 8 O 年 O - O 2 O 0 O 0 O 1 O 年 O 在 O 泸 B-ORG 天 M-ORG 化 E-ORG 从 O 事 O 管 O 理 O 工 O 作 O 。 O 曾 O 任 O 广 B-ORG 东 M-ORG 德 M-ORG 美 M-ORG 精 M-ORG 细 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 宜 B-ORG 宾 M-ORG 天 M-ORG 原 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 现 O 任 O 广 B-ORG 东 M-ORG 德 M-ORG 美 M-ORG 精 M-ORG 细 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 湖 B-ORG 南 M-ORG 尤 M-ORG 特 M-ORG 尔 M-ORG 生 M-ORG 化 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 和 O 广 B-ORG 东 M-ORG 瑞 M-ORG 图 M-ORG 万 M-ORG 方 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 广 B-ORG 东 M-ORG 日 M-ORG 丰 M-ORG 电 M-ORG 缆 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 佛 B-ORG 山 M-ORG 市 M-ORG 顺 M-ORG 德 M-ORG 德 M-ORG 美 M-ORG 德 M-ORG 鑫 M-ORG 产 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 合 M-ORG 伙 M-ORG 企 M-ORG 业 M-ORG ( M-ORG 有 M-ORG 限 M-ORG 合 M-ORG 伙 M-ORG ) E-ORG 普 B-TITLE 通 M-TITLE 合 M-TITLE 伙 M-TITLE 人 E-TITLE 、 O 广 B-ORG 东 M-ORG 欧 M-ORG 浦 M-ORG 钢 M-ORG 铁 M-ORG 物 M-ORG 流 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 和 O 欧 B-ORG 浦 M-ORG 支 M-ORG 付 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 珠 B-ORG 海 M-ORG 市 M-ORG 永 M-ORG 康 M-ORG 达 M-ORG 股 M-ORG 权 M-ORG 投 M-ORG 资 M-ORG 基 M-ORG 金 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 广 B-ORG 东 M-ORG 康 M-ORG 宝 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 担 O 任 O 辽 B-ORG 宁 M-ORG 奥 M-ORG 克 M-ORG 化 M-ORG 学 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 三 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 付 B-NAME 宇 M-NAME 卓 E-NAME , O 男 O , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 毕 O 业 O 于 O 哈 B-ORG 尔 M-ORG 滨 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 计 B-PRO 算 M-PRO 机 M-PRO 专 M-PRO 业 E-PRO , O 获 O 得 O 计 B-PRO 算 M-PRO 机 M-PRO 系 M-PRO 统 M-PRO 与 M-PRO 结 M-PRO 构 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 曾 O 任 O 黑 B-ORG 龙 M-ORG 江 M-ORG 省 M-ORG 计 M-ORG 算 M-ORG 中 M-ORG 心 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 黑 B-ORG 龙 M-ORG 江 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 主 B-TITLE 任 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 系 E-ORG 副 B-TITLE 教 M-TITLE 授 E-TITLE , O 上 B-ORG 海 M-ORG 集 M-ORG 成 M-ORG 电 M-ORG 路 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 单 B-TITLE 位 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 加 B-ORG 拿 M-ORG 大 M-ORG C M-ORG o M-ORG n M-ORG c M-ORG o M-ORG r M-ORG d M-ORG i M-ORG a M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE , O 华 B-ORG 盛 M-ORG 顿 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE , O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 微 M-ORG 电 M-ORG 子 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 教 M-ORG 务 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 、 O 国 B-ORG 家 M-ORG 集 M-ORG 成 M-ORG 电 M-ORG 路 M-ORG 人 M-ORG 才 M-ORG 培 M-ORG 养 M-ORG 基 M-ORG 地 M-ORG 上 M-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 基 M-ORG 地 E-ORG 执 B-TITLE 行 M-TITLE 人 E-TITLE , O 上 B-ORG 海 M-ORG 市 M-ORG 经 M-ORG 委 M-ORG 集 M-ORG 成 M-ORG 电 M-ORG 路 M-ORG 项 M-ORG 目 M-ORG 组 E-ORG 专 B-TITLE 家 E-TITLE , O 上 B-ORG 海 M-ORG 市 M-ORG 集 M-ORG 成 M-ORG 电 M-ORG 路 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 起 O 任 O 中 B-ORG 颖 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 蔚 M-NAME 东 E-NAME , O 男 O , O 1 O 9 O 5 O 9 O 年 O 7 O 月 O 出 O 生 O , O 中 B-ORG 国 M-ORG 民 M-ORG 主 M-ORG 建 M-ORG 国 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 曾 O 任 O 天 B-ORG 津 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 天 B-ORG 津 M-ORG 渤 M-ORG 海 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 M-ORG 战 M-ORG 略 M-ORG 发 M-ORG 展 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 E-TITLE , O 天 B-ORG 津 M-ORG 证 M-ORG 券 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 理 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 市 M-ORG 工 M-ORG 商 M-ORG 业 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE , O 天 B-ORG 津 M-ORG 劝 M-ORG 业 M-ORG 场 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 芳 E-NAME , O 女 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 9 O 年 O 生 O 。 O 毕 O 业 O 于 O 中 B-ORG 共 M-ORG 四 M-ORG 川 M-ORG 省 M-ORG 委 M-ORG 党 M-ORG 校 E-ORG , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 自 B-ORG 贡 M-ORG 市 M-ORG 双 M-ORG 峰 M-ORG 电 M-ORG 子 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 四 B-ORG 川 M-ORG 自 M-ORG 贡 M-ORG 汇 M-ORG 东 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 四 B-ORG 川 M-ORG 自 M-ORG 贡 M-ORG 汇 M-ORG 东 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 四 B-ORG 川 M-ORG 自 M-ORG 贡 M-ORG 汇 M-ORG 东 M-ORG 大 M-ORG 酒 M-ORG 店 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 四 B-ORG 川 M-ORG 大 M-ORG 西 M-ORG 洋 M-ORG 焊 M-ORG 接 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 康 B-NAME 亚 M-NAME 斌 E-NAME , O 男 O , O 1 O 9 O 7 O 2 O 年 O 4 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 曾 O 就 O 职 O 西 B-ORG 安 M-ORG 新 M-ORG 兴 M-ORG 电 M-ORG 器 M-ORG 厂 E-ORG , O 现 O 任 O 陕 B-ORG 西 M-ORG 炼 M-ORG 石 M-ORG 矿 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 陕 B-ORG 西 M-ORG 炼 M-ORG 石 M-ORG 有 M-ORG 色 M-ORG 资 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 张 B-NAME 宏 M-NAME 鹰 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 7 O 年 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 新 B-ORG 筑 M-ORG 股 M-ORG 份 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE ; O 现 O 任 O 新 B-ORG 筑 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 E-ORG 监 B-TITLE 事 E-TITLE 、 O 新 B-ORG 筑 M-ORG 股 M-ORG 份 E-ORG 监 B-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 成 B-ORG 都 M-ORG 新 M-ORG 诚 M-ORG 融 M-ORG 资 M-ORG 担 M-ORG 保 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 袁 B-NAME 怀 M-NAME 中 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 5 O 年 O 9 O 月 O 出 O 生 O , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 复 B-ORG 旦 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 曾 O 供 O 职 O 于 O 上 B-ORG 海 M-ORG 证 M-ORG 券 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 。 O 现 O 任 O 融 B-ORG 德 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 北 B-ORG 京 M-ORG 国 M-ORG 家 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 特 B-TITLE 聘 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 朗 B-ORG 姿 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 李 B-NAME 健 E-NAME 先 O 生 O , O 1 O 9 O 6 O 8 O 年 O 1 O 月 O 出 O 生 O , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 律 M-TITLE 师 E-TITLE , O 安 B-ORG 徽 M-ORG 省 M-ORG 人 M-ORG 大 E-ORG 地 B-TITLE 方 M-TITLE 立 M-TITLE 法 M-TITLE 咨 M-TITLE 询 M-TITLE 专 M-TITLE 家 M-TITLE 库 M-TITLE 成 M-TITLE 员 E-TITLE , O 安 B-ORG 徽 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 客 B-TITLE 座 M-TITLE 教 M-TITLE 授 E-TITLE , O 安 B-ORG 徽 M-ORG 省 M-ORG 律 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 合 B-ORG 肥 M-ORG 仲 M-ORG 裁 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 仲 B-TITLE 裁 M-TITLE 员 E-TITLE , O 安 B-ORG 徽 M-ORG 健 M-ORG 友 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 E-TITLE 。 O 科 B-ORG 大 M-ORG 讯 M-ORG 飞 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 同 O 时 O 担 O 任 O 安 B-ORG 徽 M-ORG 六 M-ORG 国 M-ORG 华 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 艾 B-NAME 力 M-NAME · M-NAME 巴 M-NAME 拉 M-NAME 提 E-NAME : O 男 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 维 B-RACE 吾 M-RACE 尔 M-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 历 O 任 O 新 B-ORG 疆 M-ORG 八 M-ORG 一 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 八 B-ORG 钢 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 退 B-TITLE 服 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 姜 B-NAME 少 M-NAME 军 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 7 O 年 O 9 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 兰 B-ORG 溪 M-ORG 市 M-ORG 建 M-ORG 筑 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 科 B-TITLE 长 E-TITLE , O 浙 B-ORG 江 M-ORG 企 M-ORG 成 M-ORG 机 M-ORG 电 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 M-ORG 分 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE , O 兰 B-ORG 溪 M-ORG 市 M-ORG 建 M-ORG 筑 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O , O 现 O 任 O 浙 B-ORG 江 M-ORG 科 M-ORG 宇 M-ORG 金 M-ORG 属 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 海 B-ORG 亮 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 E-TITLE 、 O 浙 B-ORG 江 M-ORG 科 M-ORG 宇 M-ORG 金 M-ORG 属 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 福 M-NAME 华 E-NAME 先 O 生 O , O 1 O 9 O 6 O 4 O 年 O 3 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 E-EDU 毕 O 业 O , O 管 B-PRO 理 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 5 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 先 O 后 O 任 O 广 B-ORG 州 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 工 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 广 B-ORG 州 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 恒 M-ORG 丰 M-ORG 发 M-ORG 展 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 广 B-ORG 州 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 工 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 E-ORG 策 B-TITLE 划 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 法 B-TITLE 律 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 广 B-ORG 州 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 工 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 广 B-ORG 州 M-ORG 凯 M-ORG 得 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 广 B-ORG 州 M-ORG 凯 M-ORG 得 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 兼 O 任 O 广 B-ORG 州 M-ORG 凯 M-ORG 得 M-ORG 文 M-ORG 化 M-ORG 娱 M-ORG 乐 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 广 B-ORG 州 M-ORG 凯 M-ORG 得 M-ORG 体 M-ORG 育 M-ORG 文 M-ORG 化 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 广 B-ORG 州 M-ORG 科 M-ORG 技 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 广 B-ORG 州 M-ORG 知 M-ORG 识 M-ORG 城 M-ORG 投 M-ORG 资 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 新 M-ORG 广 M-ORG 州 M-ORG 广 M-ORG 州 M-ORG 知 M-ORG 识 M-ORG 城 M-ORG 投 M-ORG 资 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 牛 B-NAME 海 M-NAME 艇 E-NAME , O 男 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU ; O 现 O 任 O 古 B-ORG 井 M-ORG 贡 M-ORG 酒 E-ORG 监 B-TITLE 事 E-TITLE 、 O 古 B-ORG 井 M-ORG 集 M-ORG 团 E-ORG 纪 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 历 O 任 O 古 B-ORG 井 M-ORG 集 M-ORG 团 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 人 M-TITLE 事 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 党 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 安 B-TITLE 全 M-TITLE 管 M-TITLE 理 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 陈 B-NAME 国 M-NAME 宏 E-NAME : O 男 O , O 1 O 9 O 5 O 3 O 年 O 9 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 现 O 任 O 福 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 与 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE ; O 兼 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 顾 B-TITLE 问 E-TITLE 、 O 福 B-ORG 建 M-ORG 省 M-ORG 软 M-ORG 科 M-ORG 学 M-ORG 专 M-ORG 家 M-ORG 顾 M-ORG 问 M-ORG 组 E-ORG 成 B-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 企 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 工 M-ORG 业 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 福 B-ORG 建 M-ORG 省 M-ORG 技 M-ORG 术 M-ORG 经 M-ORG 济 M-ORG 与 M-ORG 管 M-ORG 理 M-ORG 现 M-ORG 代 M-ORG 化 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 《 B-ORG 中 M-ORG 国 M-ORG 管 M-ORG 理 M-ORG 科 M-ORG 学 M-ORG 》 E-ORG 、 O 《 B-ORG 研 M-ORG 究 M-ORG 与 M-ORG 发 M-ORG 展 M-ORG 管 M-ORG 理 M-ORG 》 E-ORG 等 O 国 O 内 O 权 O 威 O 刊 O 物 O 编 O 委 O ; O 曾 O 任 O 福 B-ORG 建 M-ORG 福 M-ORG 能 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 福 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 学 B-TITLE 术 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 吕 B-NAME 廷 M-NAME 杰 E-NAME 先 O 生 O : O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 博 B-EDU 士 E-EDU , O 教 B-TITLE 授 E-TITLE 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 邮 M-ORG 电 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 师 E-TITLE 。 O 兼 O 任 O 罗 B-ORG 顿 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 江 B-ORG 西 M-ORG 赣 M-ORG 南 M-ORG 果 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 华 B-ORG 夏 M-ORG 建 M-ORG 通 M-ORG 科 M-ORG 技 M-ORG 开 M-ORG 发 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 兼 O 任 O 信 B-ORG 息 M-ORG 产 M-ORG 业 M-ORG 部 M-ORG 第 M-ORG 2 M-ORG 2 M-ORG 届 M-ORG 万 M-ORG 国 M-ORG 邮 M-ORG 联 M-ORG 大 M-ORG 会 E-ORG 主 B-TITLE 席 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 中 B-ORG 国 M-ORG 通 M-ORG 信 M-ORG 学 M-ORG 会 E-ORG 会 B-TITLE 士 E-TITLE 、 O 中 B-ORG 国 M-ORG 运 M-ORG 筹 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 互 M-ORG 联 M-ORG 网 M-ORG 学 M-ORG 会 E-ORG 高 B-TITLE 级 M-TITLE 顾 M-TITLE 问 E-TITLE 、 O 信 B-ORG 息 M-ORG 产 M-ORG 业 M-ORG 部 M-ORG 通 M-ORG 信 M-ORG 科 M-ORG 技 M-ORG 委 E-ORG 委 B-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 邮 M-ORG 政 M-ORG 科 M-ORG 技 M-ORG 委 E-ORG 常 B-TITLE 委 E-TITLE 。 O 现 O 任 O 北 B-ORG 京 M-ORG 邮 M-ORG 电 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE , O 罗 B-ORG 顿 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 江 B-ORG 西 M-ORG 赣 M-ORG 南 M-ORG 果 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 华 B-ORG 夏 M-ORG 建 M-ORG 通 M-ORG 科 M-ORG 技 M-ORG 开 M-ORG 发 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 亿 B-ORG 阳 M-ORG 信 M-ORG 通 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 武 M-NAME 龙 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 出 O 生 O 于 O 1 O 9 O 4 O 0 O 年 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 国 B-TITLE 家 M-TITLE 注 M-TITLE 册 M-TITLE 咨 M-TITLE 询 M-TITLE 工 M-TITLE 程 M-TITLE 师 M-TITLE ( M-TITLE 投 M-TITLE 资 M-TITLE ) E-TITLE , O 曾 O 任 O 第 B-TITLE 十 M-TITLE 届 M-TITLE 全 M-TITLE 国 M-TITLE 政 M-TITLE 协 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 1 O 9 O 9 O 4 O 年 O 至 O 1 O 9 O 9 O 5 O 年 O 任 B-ORG 国 M-ORG 家 M-ORG 计 M-ORG 委 M-ORG 投 M-ORG 资 M-ORG 司 E-ORG 司 B-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 5 O 年 O 至 O 2 O 0 O 0 O 2 O 年 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 工 M-ORG 程 M-ORG 咨 M-ORG 询 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 工 M-ORG 程 M-ORG 咨 M-ORG 询 M-ORG 公 M-ORG 司 E-ORG 专 B-TITLE 家 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 退 O 休 O ; O 目 O 前 O 兼 O 任 O 国 B-ORG 务 M-ORG 院 M-ORG 三 M-ORG 峡 M-ORG 建 M-ORG 设 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 三 B-TITLE 峡 M-TITLE 枢 M-TITLE 纽 M-TITLE 工 M-TITLE 程 M-TITLE 稽 M-TITLE 查 M-TITLE 组 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 工 M-ORG 程 M-ORG 咨 M-ORG 询 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 企 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 能 M-ORG 源 M-ORG 网 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 顾 B-TITLE 问 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 中 B-ORG 国 M-ORG 投 M-ORG 资 M-ORG 协 M-ORG 会 E-ORG 顾 B-TITLE 问 E-TITLE 、 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 工 M-ORG 程 M-ORG 咨 M-ORG 询 M-ORG 公 M-ORG 司 E-ORG 专 B-TITLE 家 M-TITLE 学 M-TITLE 术 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 顾 M-TITLE 问 E-TITLE 、 O 达 B-ORG 华 M-ORG 工 M-ORG 程 M-ORG 管 M-ORG 理 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 顾 B-TITLE 问 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 大 M-ORG 富 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 马 B-NAME 西 M-NAME 庆 E-NAME : O 2 O 0 O 0 O 2 O 年 O 9 O 月 O , O 潍 B-ORG 坊 M-ORG 长 M-ORG 安 M-ORG 铁 M-ORG 塔 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 月 O 2 O 1 O 日 O , O 任 O 梅 B-ORG 花 M-ORG 生 M-ORG 物 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 任 B-NAME 晓 M-NAME 常 E-NAME , O 男 O , O 1 O 9 O 5 O 6 O 年 O 5 O 出 O 生 O , O 籍 O 贯 O : O 四 B-LOC 川 E-LOC , O 1 O 9 O 8 O 1 O 年 O 1 O 2 O 月 O 毕 O 业 O 于 O 湖 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG 汽 B-PRO 车 M-PRO 专 M-PRO 业 E-PRO , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 9 O 5 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 任 O 重 B-ORG 庆 M-ORG 汽 M-ORG 车 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 任 O 重 B-ORG 庆 M-ORG 汽 M-ORG 车 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 、 O 重 B-ORG 庆 M-ORG 重 M-ORG 型 M-ORG 汽 M-ORG 车 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 至 O 今 O 任 O 重 B-ORG 庆 M-ORG 重 M-ORG 庆 M-ORG 汽 M-ORG 车 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 、 O 重 B-ORG 庆 M-ORG 重 M-ORG 型 M-ORG 汽 M-ORG 车 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 成 B-ORG 都 M-ORG 银 M-ORG 河 M-ORG 动 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 广 M-NAME 生 E-NAME , O 男 O , O 1 O 9 O 4 O 3 O 年 O 2 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O E B-EDU M M-EDU B M-EDU A E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 现 O 任 O 光 B-ORG 明 M-ORG 乳 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 吉 B-ORG 林 M-ORG 省 M-ORG 政 M-ORG 府 E-ORG 经 B-TITLE 济 M-TITLE 顾 M-TITLE 问 E-TITLE , O 上 B-ORG 海 M-ORG 流 M-ORG 通 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 名 B-TITLE 誉 M-TITLE 所 M-TITLE 长 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 浦 M-ORG 东 M-ORG 发 M-ORG 展 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 罗 B-NAME 筱 M-NAME 溪 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 理 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 具 O 有 O 深 B-ORG 交 M-ORG 所 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 资 O 格 O 、 O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 资 O 格 O 、 O 国 B-TITLE 际 M-TITLE 注 M-TITLE 册 M-TITLE 金 M-TITLE 融 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE 执 O 业 O 资 O 格 O 、 O 证 B-TITLE 券 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE 从 O 业 O 资 O 格 O , O 曾 O 任 O 职 O 深 B-ORG 圳 M-ORG 宏 M-ORG 太 M-ORG 健 M-ORG 康 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 金 B-ORG 盛 M-ORG 人 M-ORG 寿 M-ORG 保 M-ORG 险 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 华 M-ORG 南 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 、 O 国 B-ORG 信 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 朗 M-ORG 科 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 先 O 后 O 分 O 别 O 担 O 任 O 市 B-TITLE 场 M-TITLE 总 M-TITLE 监 E-TITLE , O 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 证 B-TITLE 券 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE , O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 等 O 职 O 位 O 。 O 经 O 2 O 0 O 1 O 4 O 年 O 2 O 月 O 1 O 1 O 日 O 公 O 司 O 第 O 三 O 届 O 董 O 事 O 会 O 第 O 五 O 次 O ( O 临 O 时 O ) O 会 O 议 O 审 O 议 O 通 O 过 O , O 聘 O 任 O 罗 B-NAME 筱 M-NAME 溪 E-NAME 女 O 士 O 为 O 深 B-ORG 圳 M-ORG 市 M-ORG 爱 M-ORG 施 M-ORG 德 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 张 B-NAME 大 M-NAME 钰 E-NAME , O 男 O , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 环 B-ORG 保 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 山 B-ORG 东 M-ORG 山 M-ORG 大 M-ORG 华 M-ORG 特 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 M-ORG 环 M-ORG 保 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 海 M-NAME 明 E-NAME 先 O 生 O , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 专 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 长 O 期 O 在 O 任 O 中 B-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 职 O , O 现 O 任 O 中 B-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 奎 B-NAME 伟 E-NAME : O 男 O , O 1 O 9 O 7 O 3 O 年 O 8 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU 。 O 毕 O 业 O 于 O 云 B-ORG 南 M-ORG 省 M-ORG 委 M-ORG 党 M-ORG 校 E-ORG 。 O 现 O 任 O 昆 B-ORG 明 M-ORG 市 M-ORG 国 M-ORG 资 M-ORG 委 E-ORG 第 B-TITLE 六 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE , O 曾 O 任 O 公 B-ORG 司 E-ORG 三 B-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 股 M-TITLE 东 M-TITLE 监 M-TITLE 事 E-TITLE , O 昆 B-ORG 明 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG 工 O 作 O , O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 今 O 任 O 昆 B-ORG 明 M-ORG 云 M-ORG 内 M-ORG 动 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 四 B-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 股 M-TITLE 东 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 魏 B-NAME 立 M-NAME 军 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 9 O 8 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 公 B-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 设 M-TITLE 备 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 东 B-ORG 营 M-ORG 华 M-ORG 泰 M-ORG 纸 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 设 B-TITLE 备 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 项 B-TITLE 目 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 山 B-ORG 东 M-ORG 华 M-ORG 泰 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 山 B-ORG 东 M-ORG 华 M-ORG 泰 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 崔 B-NAME 勇 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 生 O , O 北 B-ORG 京 M-ORG 华 M-ORG 胜 M-ORG 天 M-ORG 成 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 北 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 高 B-PRO 级 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU ; O 公 B-ORG 司 E-ORG 电 B-TITLE 信 M-TITLE 行 M-TITLE 业 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 存 B-TITLE 储 M-TITLE 增 M-TITLE 值 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 系 B-TITLE 统 M-TITLE 产 M-TITLE 品 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 北 B-ORG 京 M-ORG 华 M-ORG 胜 M-ORG 天 M-ORG 成 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 系 B-TITLE 统 M-TITLE 信 M-TITLE 息 M-TITLE 产 M-TITLE 品 M-TITLE 一 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 江 M-NAME 良 E-NAME 先 O 生 O , O 1 O 9 O 4 O 1 O 年 O 9 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 统 M-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 原 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 企 M-ORG 业 M-ORG 调 M-ORG 查 M-ORG 队 E-ORG 队 B-TITLE 长 E-TITLE 、 O 福 B-ORG 建 M-ORG 省 M-ORG 政 M-ORG 府 M-ORG 咨 M-ORG 询 M-ORG 团 E-ORG 成 B-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 1 O 8 O 日 O 至 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 2 O 2 O 日 O 参 O 加 O 由 O 中 B-ORG 国 M-ORG 证 M-ORG 监 M-ORG 会 E-ORG 和 O 上 B-ORG 海 M-ORG 国 M-ORG 家 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 共 O 同 O 举 O 办 O 的 O 上 O 市 O 公 O 司 O 独 O 立 O 董 O 事 O 培 O 训 O 班 O ( O 获 O 证 O 书 O ) O 。 O 1 O 9 O 5 O 9 O 年 O 8 O 月 O 至 O 1 O 9 O 6 O 0 O 年 O 1 O 2 O 月 O , O 任 O 福 B-ORG 建 M-ORG 漳 M-ORG 州 M-ORG 糖 M-ORG 厂 M-ORG 造 M-ORG 纸 M-ORG 分 M-ORG 厂 E-ORG 统 B-TITLE 计 M-TITLE 员 E-TITLE ; O 1 O 9 O 6 O 1 O 年 O 1 O 月 O 至 O 1 O 9 O 6 O 9 O 年 O 1 O 0 O 月 O , O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 统 M-ORG 计 M-ORG 局 E-ORG 科 B-TITLE 员 E-TITLE ; O 1 O 9 O 6 O 9 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 7 O 1 O 年 O 1 O 1 O 月 O , O 下 O 放 O 福 B-ORG 建 M-ORG 省 M-ORG 将 M-ORG 乐 M-ORG 县 E-ORG ; O 1 O 9 O 7 O 1 O 年 O 1 O 1 O 月 O 至 O 1 O 9 O 7 O 1 O 年 O 1 O 2 O 月 O , O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 将 M-ORG 乐 M-ORG 机 M-ORG 床 M-ORG 厂 E-ORG 计 B-TITLE 统 M-TITLE 员 E-TITLE ; O 1 O 9 O 7 O 2 O 年 O 1 O 月 O 至 O 1 O 9 O 7 O 2 O 年 O 1 O 2 O 月 O , O 福 B-ORG 建 M-ORG 省 M-ORG 七 M-ORG 五 M-ORG 干 M-ORG 校 E-ORG 学 B-TITLE 员 E-TITLE ; O 1 O 9 O 7 O 2 O 年 O 1 O 2 O 月 O 至 O 1 O 9 O 8 O 4 O 年 O 1 O 0 O 月 O , O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 永 M-ORG 安 M-ORG 轴 M-ORG 承 M-ORG 厂 E-ORG 科 B-TITLE 长 E-TITLE ; O 1 O 9 O 8 O 4 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 9 O 6 O 年 O 7 O 月 O , O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 统 M-ORG 计 M-ORG 局 E-ORG 工 B-TITLE 交 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 5 O 年 O 至 O 1 O 9 O 9 O 7 O 年 O , O 任 O 福 B-ORG 建 M-ORG 工 M-ORG 业 M-ORG 普 M-ORG 查 M-ORG 办 M-ORG 公 M-ORG 室 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 1 O 9 O 9 O 6 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 1 O 1 O 月 O , O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 企 M-ORG 业 M-ORG 调 M-ORG 查 M-ORG 队 E-ORG 队 B-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 至 O 今 O , O 任 O 福 B-ORG 建 M-ORG 龙 M-ORG 溪 M-ORG 轴 M-ORG 承 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 立 M-NAME 鸿 E-NAME 先 O 生 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 美 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 美 B-ORG 国 M-ORG 托 M-ORG 莱 M-ORG 多 M-ORG 大 M-ORG 学 E-ORG 机 B-PRO 械 M-PRO 工 M-PRO 程 E-PRO 学 B-EDU 士 E-EDU 。 O 1 O 9 O 8 O 3 O 年 O 至 O 1 O 9 O 9 O 6 O 年 O , O 分 O 别 O 在 O 美 B-ORG 国 M-ORG O M-ORG w M-ORG e M-ORG n M-ORG s M-ORG - M-ORG I M-ORG l M-ORG l M-ORG i M-ORG n M-ORG o M-ORG i M-ORG s M-ORG C M-ORG o M-ORG r M-ORG p M-ORG o M-ORG r M-ORG a M-ORG t M-ORG i M-ORG o M-ORG n M-ORG 公 M-ORG 司 E-ORG 任 O 项 B-TITLE 目 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O S B-ORG a M-ORG i M-ORG n M-ORG t M-ORG G M-ORG o M-ORG b M-ORG a M-ORG i M-ORG n M-ORG C M-ORG o M-ORG r M-ORG p M-ORG o M-ORG r M-ORG a M-ORG t M-ORG i M-ORG o M-ORG n E-ORG 任 O 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE , O A B-ORG i M-ORG r M-ORG P M-ORG r M-ORG o M-ORG d M-ORG u M-ORG c M-ORG t M-ORG s M-ORG a M-ORG n M-ORG d M-ORG C M-ORG h M-ORG e M-ORG m M-ORG i M-ORG c M-ORG a M-ORG l M-ORG s M-ORG , M-ORG I M-ORG n M-ORG c M-ORG . E-ORG 任 O 亚 B-TITLE 洲 M-TITLE 区 M-TITLE 高 M-TITLE 级 M-TITLE 理 M-TITLE 论 M-TITLE 应 M-TITLE 用 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 6 O 年 O 7 O 月 O 在 O A B-ORG i M-ORG r M-ORG P M-ORG r M-ORG o M-ORG d M-ORG u M-ORG c M-ORG t M-ORG s M-ORG a M-ORG n M-ORG d M-ORG C M-ORG h M-ORG e M-ORG m M-ORG i M-ORG c M-ORG a M-ORG l M-ORG s M-ORG , M-ORG I M-ORG n M-ORG c M-ORG . M-ORG 中 M-ORG 国 M-ORG 区 E-ORG 任 O 气 B-TITLE 体 M-TITLE 应 M-TITLE 用 M-TITLE 业 M-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 南 B-TITLE 京 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 区 M-TITLE 大 M-TITLE 众 M-TITLE 气 M-TITLE 体 M-TITLE 业 M-TITLE 务 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-TITLE 国 M-TITLE 区 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 及 O 区 B-TITLE 域 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 在 O P B-ORG o M-ORG l M-ORG y M-ORG m M-ORG e M-ORG r M-ORG G M-ORG r M-ORG o M-ORG u M-ORG p M-ORG I M-ORG n M-ORG c M-ORG . E-ORG 任 O 高 B-TITLE 级 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 亚 B-TITLE 洲 M-TITLE 区 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 南 M-ORG 大 M-ORG 光 M-ORG 电 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 黄 B-NAME 永 M-NAME 锡 E-NAME : O 男 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 最 O 近 O 五 O 年 O 先 O 后 O 任 O 上 B-ORG 海 M-ORG 船 M-ORG 舶 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ( O 主 O 持 O 工 O 作 O ) O 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 江 M-ORG 南 M-ORG 长 M-ORG 兴 M-ORG 造 M-ORG 船 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 现 O 任 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 外 M-ORG 高 M-ORG 桥 M-ORG 造 M-ORG 船 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 江 B-ORG 南 M-ORG 造 M-ORG 船 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 上 B-ORG 海 M-ORG 江 M-ORG 南 M-ORG 长 M-ORG 兴 M-ORG 重 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 工 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 王 B-NAME 彦 M-NAME 亮 E-NAME , O 男 O , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O , O 研 B-TITLE 究 M-TITLE 员 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 水 B-ORG 电 M-ORG 部 E-ORG 淮 B-TITLE 委 E-TITLE 、 O 中 B-ORG 国 M-ORG 电 M-ORG 力 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG 通 M-ORG 信 M-ORG 所 E-ORG 技 B-TITLE 术 M-TITLE 干 M-TITLE 部 E-TITLE , O 中 B-ORG 国 M-ORG 电 M-ORG 力 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 人 B-TITLE 事 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE 、 O 院 B-TITLE 党 M-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE , O 副 B-TITLE 总 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 兼 O 人 B-TITLE 事 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 院 B-TITLE 党 M-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE , O 院 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 人 B-TITLE 事 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 院 B-TITLE 党 M-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE , O 国 B-ORG 家 M-ORG 电 M-ORG 力 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 与 M-TITLE 董 M-TITLE 事 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 干 M-TITLE 部 M-TITLE 一 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 国 B-ORG 家 M-ORG 电 M-ORG 网 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 董 M-TITLE 事 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 安 B-ORG 徽 M-ORG 省 M-ORG 电 M-ORG 力 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 国 B-ORG 网 M-ORG 电 M-ORG 力 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 南 B-ORG 京 M-ORG 南 M-ORG 瑞 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 现 O 任 O 国 B-ORG 网 M-ORG 智 M-ORG 能 M-ORG 电 M-ORG 网 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 潘 B-NAME 玲 M-NAME 曼 E-NAME 女 O 士 O , O 1 O 9 O 4 O 9 O 年 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 管 M-TITLE 理 M-TITLE 咨 M-TITLE 询 M-TITLE 师 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 6 O 8 O 年 O 至 O 1 O 9 O 7 O 9 O 年 O 任 O 职 O 于 O 武 B-ORG 汉 M-ORG 市 M-ORG 硚 M-ORG 口 M-ORG 区 M-ORG 工 M-ORG 业 M-ORG 局 E-ORG , O 先 O 后 O 担 O 任 O 局 B-TITLE 长 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 团 B-TITLE 委 M-TITLE 干 M-TITLE 部 E-TITLE 、 O 理 B-TITLE 论 M-TITLE 教 M-TITLE 育 M-TITLE 干 M-TITLE 部 E-TITLE ; O 1 O 9 O 7 O 9 O 年 O 至 O 1 O 9 O 9 O 0 O 年 O 5 O 月 O 先 O 后 O 任 O 湖 B-ORG 北 M-ORG 印 M-ORG 刷 M-ORG 物 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 0 O 年 O 6 O 月 O 至 O 1 O 9 O 9 O 3 O 年 O 5 O 月 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 审 M-ORG 计 M-ORG 局 E-ORG 主 B-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 3 O 年 O 至 O 1 O 9 O 9 O 4 O 年 O 任 O 中 B-ORG 国 M-ORG 宝 M-ORG 安 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 永 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 任 O 深 B-ORG 圳 M-ORG 中 M-ORG 达 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 天 B-TITLE 华 M-TITLE 会 M-TITLE 计 M-TITLE 师 M-TITLE 事 M-TITLE 务 M-TITLE 所 E-TITLE 、 O 北 B-ORG 京 M-ORG 大 M-ORG 公 M-ORG 天 M-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 深 M-ORG 圳 M-ORG 分 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 至 O 2 O 0 O 1 O 2 O 年 O 任 O 天 B-ORG 职 M-ORG 国 M-ORG 际 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 深 M-ORG 圳 M-ORG 分 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 永 M-ORG 达 M-ORG 信 M-ORG 工 M-ORG 程 M-ORG 造 M-ORG 价 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O 至 O 今 O 担 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 戴 B-NAME 红 M-NAME 兵 E-NAME , O 男 O , O 1 O 9 O 7 O 2 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 起 O 任 O 职 O 于 O 德 B-ORG 威 M-ORG 实 M-ORG 业 E-ORG , O 任 O 德 B-ORG 威 M-ORG 新 M-ORG 材 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 金 B-NAME 立 M-NAME 山 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 5 O 年 O 5 O 月 O 出 O 生 O , O 1 O 9 O 8 O 4 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 现 O 任 O 山 B-ORG 东 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 付 B-NAME 汉 M-NAME 江 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 一 B-TITLE 级 M-TITLE 建 M-TITLE 造 M-TITLE 师 E-TITLE , O 正 B-TITLE 高 M-TITLE 职 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 0 O 月 O 任 O 武 B-ORG 汉 M-ORG 东 M-ORG 湖 M-ORG 高 M-ORG 新 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 0 O 月 O 任 O 武 B-ORG 汉 M-ORG 东 M-ORG 湖 M-ORG 高 M-ORG 新 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 历 O 任 O 湖 B-ORG 北 M-ORG 省 M-ORG 路 M-ORG 桥 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 湖 B-ORG 北 M-ORG 省 M-ORG 联 M-ORG 合 M-ORG 发 M-ORG 展 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 恩 M-ORG 施 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 姚 B-NAME 方 E-NAME , O 男 O , O 1 O 9 O 6 O 9 O 年 O 7 O 月 O 生 O , O 复 B-ORG 旦 M-ORG 大 M-ORG 学 M-ORG 世 M-ORG 界 M-ORG 经 M-ORG 济 M-ORG 系 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 香 B-ORG 港 M-ORG 中 M-ORG 文 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 现 O 任 O 上 B-ORG 海 M-ORG 实 M-ORG 业 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 上 B-ORG 实 M-ORG 管 M-ORG 理 M-ORG ( M-ORG 上 M-ORG 海 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 万 M-ORG 国 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 E-ORG 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 总 M-TITLE 部 M-TITLE 助 M-TITLE 理 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 上 M-ORG 实 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 戴 B-NAME 佐 M-NAME 军 E-NAME 先 O 生 O , O 1 O 9 O 6 O 5 O 年 O 7 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 湖 B-LOC 南 M-LOC 湘 M-LOC 乡 M-LOC 人 E-LOC , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 曾 O 任 O 华 B-ORG 菱 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 庞 B-NAME 伟 M-NAME 民 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 杭 B-ORG 州 M-ORG 第 M-ORG 二 M-ORG 织 M-ORG 布 M-ORG 厂 E-ORG 保 O 卫 O 科 O 先 O 后 O 任 O 干 B-TITLE 事 E-TITLE 、 O 科 B-TITLE 长 E-TITLE ; O 杭 B-ORG 州 M-ORG 金 M-ORG 都 M-ORG 贸 M-ORG 易 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 经 M-TITLE 理 E-TITLE ; O 浙 B-ORG 江 M-ORG 金 M-ORG 都 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 浙 B-ORG 江 M-ORG 红 M-ORG 楼 M-ORG 旅 M-ORG 游 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE ; O 杭 B-ORG 州 M-ORG 环 M-ORG 北 M-ORG 小 M-ORG 商 M-ORG 品 M-ORG 市 M-ORG 场 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 杭 B-ORG 州 M-ORG 环 M-ORG 北 M-ORG 丝 M-ORG 绸 M-ORG 服 M-ORG 装 M-ORG 城 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 兰 B-ORG 州 M-ORG 民 M-ORG 百 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 吴 B-NAME 力 E-NAME 先 O 生 O : O 男 O , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 曾 O 任 O 吉 B-ORG 林 M-ORG 铁 M-ORG 路 M-ORG 局 E-ORG 电 B-TITLE 子 M-TITLE 所 M-TITLE 助 M-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 电 B-TITLE 子 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE 、 O 沈 B-ORG 阳 M-ORG 铁 M-ORG 路 M-ORG 局 E-ORG 电 B-TITLE 子 M-TITLE 计 M-TITLE 算 M-TITLE 机 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 1 O 年 O 起 O 任 O 和 B-ORG 光 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 裁 E-TITLE , O 9 O 2 O 年 O 被 O 授 O 予 O 国 O 务 O 院 O 电 O 子 O 信 O 息 O 系 O 统 O 先 O 进 O 工 O 作 O 者 O 称 O 号 O ; O 9 O 7 O 年 O 被 O 评 O 为 O 沈 O 阳 O 市 O 优 O 秀 O 企 O 业 O 家 O 、 O 辽 B-TITLE 宁 M-TITLE 省 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE ; O 9 O 9 O 年 O 被 O 授 O 予 O 沈 O 阳 O 优 O 秀 O 企 O 业 O 家 O 荣 O 誉 O 称 O 号 O 、 O 被 O 沈 O 阳 O 市 O 科 O 委 O 授 O 予 O 先 O 进 O 个 O 人 O 奖 O ; O 现 O 任 O 和 B-ORG 光 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 和 B-TITLE 光 M-TITLE 商 M-TITLE 务 M-TITLE 二 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 宋 B-NAME 永 M-NAME 红 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 9 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE , O 湖 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG 高 B-PRO 级 M-PRO 管 M-PRO 理 M-PRO 人 M-PRO 员 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU ( O E B-EDU M M-EDU B M-EDU A E-EDU ) O , O 政 B-TITLE 工 M-TITLE 师 E-TITLE , O 曾 O 任 O 汝 B-ORG 城 M-ORG 县 M-ORG 水 M-ORG 电 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 党 B-TITLE 总 M-TITLE 支 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 5 O 月 O 至 O 今 O 任 O 湖 B-ORG 南 M-ORG 郴 M-ORG 电 M-ORG 国 M-ORG 际 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 起 O 兼 O 任 O 湖 B-ORG 南 M-ORG 郴 M-ORG 电 M-ORG 国 M-ORG 际 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 兰 B-NAME 正 M-NAME 恩 E-NAME 先 O 生 O : O 1 O 9 O 6 O 4 O 年 O 5 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 特 M-TITLE 许 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 曾 O 任 O 北 B-ORG 京 M-ORG 亚 M-ORG 太 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 中 B-ORG 瑞 M-ORG 华 M-ORG 恒 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 管 B-TITLE 理 M-TITLE 咨 M-TITLE 询 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 山 B-ORG 东 M-ORG 龙 M-ORG 泉 M-ORG 管 M-ORG 道 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 上 B-ORG 海 M-ORG 上 M-ORG 会 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 北 M-ORG 京 M-ORG 分 M-ORG 所 E-ORG 负 B-TITLE 责 M-TITLE 人 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 赵 B-NAME 斌 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 中 B-ORG 国 M-ORG 矿 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG ( M-ORG 北 M-ORG 京 M-ORG ) E-ORG 博 B-EDU 士 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 山 B-ORG 东 M-ORG 省 M-ORG 国 M-ORG 资 M-ORG 委 E-ORG 清 B-TITLE 产 M-TITLE 核 M-TITLE 资 M-TITLE 专 M-TITLE 家 M-TITLE 成 M-TITLE 员 E-TITLE , O 国 B-ORG 务 M-ORG 院 M-ORG 国 M-ORG 资 M-ORG 委 E-ORG 企 B-TITLE 业 M-TITLE 财 M-TITLE 务 M-TITLE 信 M-TITLE 息 M-TITLE 化 M-TITLE 专 M-TITLE 家 M-TITLE 成 M-TITLE 员 E-TITLE 。 O 现 O 任 O 立 B-ORG 信 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG ( O 特 O 殊 O 普 O 通 O 合 O 伙 O ) O 合 B-TITLE 伙 M-TITLE 人 E-TITLE , O 副 B-TITLE 主 M-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 香 O 港 O 联 O 交 O 所 O 上 O 市 O 公 O 司 O 安 B-ORG 徽 M-ORG 天 M-ORG 大 M-ORG 石 M-ORG 油 M-ORG 管 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 股 O 份 O 代 O 号 O 8 O 3 O 9 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 泰 M-ORG 昂 M-ORG 能 M-ORG 源 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 周 B-ORG 大 M-ORG 生 M-ORG 珠 M-ORG 宝 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 起 O , O 担 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 袁 B-NAME 哲 E-NAME : O 男 O , O 1 O 9 O 6 O 6 O 年 O 1 O 2 O 月 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 任 O 中 B-ORG 国 M-ORG 航 M-ORG 空 M-ORG 工 M-ORG 业 M-ORG 第 M-ORG 二 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 纪 B-TITLE 检 M-TITLE 监 M-TITLE 察 M-TITLE 审 M-TITLE 计 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 1 O 月 O 至 O 今 O 任 O 中 B-ORG 航 M-ORG 直 M-ORG 升 M-ORG 机 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 任 O 国 B-ORG 有 M-ORG 企 M-ORG 业 M-ORG 监 M-ORG 事 M-ORG 会 M-ORG 驻 M-ORG 中 M-ORG 航 M-ORG 二 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 任 O 航 B-ORG 空 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 任 O 成 B-ORG 发 M-ORG 集 M-ORG 团 E-ORG 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O , O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 周 B-NAME 舟 E-NAME 先 O 生 O , O 1 O 9 O 7 O 5 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 博 B-EDU 士 E-EDU , O 研 B-TITLE 究 M-TITLE 员 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 长 B-ORG 安 M-ORG 汽 M-ORG 车 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG C M-ORG A M-ORG E M-ORG 工 M-ORG 程 M-ORG 所 E-ORG 发 B-TITLE 动 M-TITLE 机 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 所 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 分 M-ORG 院 E-ORG 院 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE , O 美 B-ORG 国 M-ORG A M-ORG l M-ORG t M-ORG a M-ORG i M-ORG r M-ORG 公 M-ORG 司 M-ORG 中 M-ORG 国 M-ORG 区 E-ORG 技 B-TITLE 术 M-TITLE 总 M-TITLE 监 E-TITLE , O 中 B-ORG 国 M-ORG 汽 M-ORG 车 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 数 B-TITLE 据 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE , O 研 B-TITLE 发 M-TITLE 中 M-TITLE 心 M-TITLE 常 M-TITLE 务 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 汽 M-ORG 车 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 研 B-TITLE 发 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 中 B-ORG 国 M-ORG 汽 M-ORG 车 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 会 M-ORG 产 M-ORG 品 M-ORG 分 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 力 M-ORG 学 M-ORG 学 M-ORG 会 M-ORG 产 M-ORG 学 M-ORG 研 M-ORG 工 M-ORG 作 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 机 M-ORG 械 M-ORG 工 M-ORG 程 M-ORG 工 M-ORG 业 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 分 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 等 O 。 O 鲍 B-NAME 臻 M-NAME 湧 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 5 O 年 O 4 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 黄 B-ORG 岩 M-ORG 橡 M-ORG 胶 M-ORG 助 M-ORG 剂 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 黄 B-ORG 岩 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 浙 B-ORG 江 M-ORG 联 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 联 B-ORG 化 M-ORG 科 M-ORG 技 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 联 B-ORG 化 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 孙 B-NAME 有 M-NAME 文 E-NAME 先 O 生 O , O 现 O 任 O 中 B-ORG 国 M-ORG 东 M-ORG 方 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 孙 S-NAME 先 O 生 O 于 O 一 O 九 O 八 O 零 O 年 O 加 O 入 O 民 O 航 O 业 O , O 曾 O 任 O 上 B-ORG 海 M-ORG 飞 M-ORG 行 M-ORG 部 E-ORG 中 B-TITLE 队 M-TITLE 长 E-TITLE 、 O 大 B-TITLE 队 M-TITLE 长 E-TITLE 。 O 二 O ○ O ○ O 七 O 年 O 四 O 月 O 至 O 二 O ○ O ○ O 九 O 年 O 十 O 一 O 月 O 任 O 东 B-ORG 航 M-ORG 江 M-ORG 苏 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 二 O ○ O ○ O 九 O 年 O 十 O 二 O 月 O 至 O 二 O ○ O 一 O 二 O 年 O 四 O 月 O 任 O 上 B-ORG 海 M-ORG 飞 M-ORG 行 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 二 O ○ O 一 O 二 O 年 O 四 O 月 O 至 O 二 O ○ O 一 O 四 O 年 O 三 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 飞 M-TITLE 行 M-TITLE 师 E-TITLE , O 兼 O 任 O 上 B-ORG 海 M-ORG 飞 M-ORG 行 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 二 O ○ O 一 O 四 O 年 O 三 O 月 O 至 O 二 O ○ O 一 O 四 O 年 O 七 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 飞 M-TITLE 行 M-TITLE 师 E-TITLE , O 二 O ○ O 一 O 四 O 年 O 七 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 东 M-ORG 方 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 孙 S-NAME 先 O 生 O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 民 M-ORG 用 M-ORG 航 M-ORG 空 M-ORG 飞 M-ORG 行 M-ORG 学 M-ORG 院 M-ORG 驾 M-ORG 驶 M-ORG 系 E-ORG 飞 B-PRO 机 M-PRO 驾 M-PRO 驶 M-PRO 专 M-PRO 业 E-PRO , O 拥 O 有 O 复 B-ORG 旦 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 高 B-PRO 级 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO ( O E B-EDU M M-EDU B M-EDU A E-EDU ) O 学 O 位 O 。 O 楚 B-NAME 国 M-NAME 志 E-NAME 先 O 生 O : O 1 O 9 O 4 O 9 O 年 O 出 O 生 O , O 1 O 9 O 6 O 8 O 年 O 参 O 加 O 工 O 作 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 民 O 族 O : O 汉 S-RACE 。 O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 通 B-ORG 化 M-ORG 纺 M-ORG 织 M-ORG 厂 E-ORG 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE , O 通 B-ORG 化 M-ORG 地 M-ORG 区 M-ORG 轻 M-ORG 工 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 通 B-ORG 化 M-ORG 市 M-ORG 纺 M-ORG 织 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE , O 省 B-ORG 纺 M-ORG 织 M-ORG 工 M-ORG 业 M-ORG 厅 E-ORG 生 B-TITLE 产 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 通 B-ORG 化 M-ORG 市 M-ORG 政 M-ORG 协 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 。 O 现 O 任 O 吉 B-ORG 林 M-ORG 化 M-ORG 纤 M-ORG 化 M-ORG 纤 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 吉 B-ORG 林 M-ORG 化 M-ORG 纤 M-ORG 集 M-ORG 团 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 吉 B-ORG 林 M-ORG 化 M-ORG 纤 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 曹 B-NAME 中 E-NAME 先 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 上 B-ORG 海 M-ORG 立 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 M-ORG 涉 M-ORG 外 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE , O 沪 B-ORG 港 M-ORG 财 M-ORG 务 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 麻 B-NAME 伯 M-NAME 平 E-NAME 先 O 生 O : O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 毕 O 业 O 于 O 武 B-ORG 汉 M-ORG 钢 M-ORG 铁 M-ORG 学 M-ORG 院 E-ORG 选 B-PRO 矿 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO , O 并 O 在 O 瑞 B-ORG 典 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG ( O I B-ORG F M-ORG C E-ORG ) O 进 O 修 O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO , O 曾 O 任 O 长 B-ORG 春 M-ORG 黄 M-ORG 金 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 科 B-TITLE 研 M-TITLE 办 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 国 B-ORG 家 M-ORG 黄 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 科 B-TITLE 技 M-TITLE 处 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 中 B-ORG 国 M-ORG 黄 M-ORG 金 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 中 B-ORG 金 M-ORG 黄 M-ORG 金 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 筹 B-TITLE 委 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 仝 B-NAME 凤 M-NAME 广 E-NAME 先 O 生 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 助 B-TITLE 理 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 自 O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 2 O 8 O 日 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 2 O 月 O 2 O 7 O 日 O 担 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 郑 B-NAME 亿 M-NAME 华 E-NAME , O 1 O 9 O 6 O 3 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 广 M-ORG 州 M-ORG 市 M-ORG 环 M-ORG 境 M-ORG 保 M-ORG 护 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 研 B-TITLE 究 M-TITLE 人 M-TITLE 员 E-TITLE 、 O 广 B-ORG 东 M-ORG 省 M-ORG 广 M-ORG 州 M-ORG 市 M-ORG 华 M-ORG 越 M-ORG 企 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 广 B-ORG 东 M-ORG 省 M-ORG 广 M-ORG 州 M-ORG 市 M-ORG 捷 M-ORG 进 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 北 B-ORG 京 M-ORG 华 M-ORG 信 M-ORG 六 M-ORG 合 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 汤 B-NAME 德 M-NAME 平 E-NAME 先 O 生 O , O 1 O 9 O 6 O 4 O 年 O 8 O 月 O 出 O 生 O , O 生 B-PRO 化 M-PRO 药 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 执 B-TITLE 业 M-TITLE 药 M-TITLE 师 E-TITLE , O 曾 O 任 O 上 B-ORG 海 M-ORG 医 M-ORG 药 M-ORG 工 M-ORG 业 M-ORG 销 M-ORG 售 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 中 M-ORG 美 M-ORG 施 M-ORG 贵 M-ORG 宝 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 上 B-ORG 海 M-ORG 医 M-ORG 药 M-ORG 集 M-ORG 团 E-ORG 原 B-TITLE 料 M-TITLE 药 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 医 M-ORG 药 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 执 M-ORG 业 M-ORG 药 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 生 B-ORG 产 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 采 B-TITLE 购 M-TITLE 咨 M-TITLE 询 M-TITLE 专 M-TITLE 家 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 崔 B-NAME 建 M-NAME 明 E-NAME 先 O 生 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 任 O 济 B-ORG 南 M-ORG 市 M-ORG 冶 M-ORG 金 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 所 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 7 O 月 O 任 O 济 B-ORG 南 M-ORG 市 M-ORG 冶 M-ORG 金 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 所 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 7 O 月 O 至 O 今 O 任 O 通 B-ORG 裕 M-ORG 重 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 济 B-ORG 南 M-ORG 市 M-ORG 冶 M-ORG 金 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 熊 B-NAME 澄 M-NAME 宇 E-NAME : O 男 O , O 美 B-ORG 国 M-ORG 杨 M-ORG 百 M-ORG 翰 M-ORG 大 M-ORG 学 E-ORG 博 B-EDU 士 E-EDU , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 新 M-ORG 闻 M-ORG 与 M-ORG 传 M-ORG 播 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 现 O 任 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 国 M-ORG 家 M-ORG 文 M-ORG 化 M-ORG 产 M-ORG 业 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 、 O 新 B-ORG 媒 M-ORG 体 M-ORG 传 M-ORG 播 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE ; O 中 B-ORG 南 M-ORG 出 M-ORG 版 M-ORG 传 M-ORG 媒 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 江 B-ORG 苏 M-ORG 省 M-ORG 广 M-ORG 电 M-ORG 有 M-ORG 线 M-ORG 信 M-ORG 息 M-ORG 网 M-ORG 络 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 湖 B-ORG 南 M-ORG 电 M-ORG 广 M-ORG 传 M-ORG 媒 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 闫 B-NAME 建 M-NAME 平 E-NAME , O 男 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 毕 O 业 O 于 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 E-ORG 计 B-PRO 划 M-PRO 统 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 国 B-ORG 旅 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-ORG 免 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 国 B-ORG 旅 M-ORG 总 M-ORG 社 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 现 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 旅 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 国 B-ORG 旅 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 孟 B-NAME 庆 M-NAME 山 E-NAME 先 O 生 O , O 1 O 9 O 4 O 8 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 为 O 梅 O 花 O 味 O 精 O 创 O 始 O 人 O 之 O 一 O , O 孟 B-NAME 庆 M-NAME 山 E-NAME 先 O 生 O 现 O 任 O 河 B-TITLE 北 M-TITLE 省 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE , O 曾 O 先 O 后 O 被 O 评 O 为 O 河 O 北 O 省 O 农 O 业 O 劳 O 动 O 模 O 范 O 、 O 河 O 北 O 省 O “ O 优 O 秀 O 中 O 国 O 特 O 色 O 社 O 会 O 主 O 义 O 事 O 业 O 建 O 设 O 者 O ” O 、 O 霸 O 州 O 市 O “ O 明 O 星 O 企 O 业 O 家 O ” O , O 并 O 被 O 聘 O 为 O “ O 市 O 政 O 府 O 经 O 济 O 顾 O 问 O ” O 。 O 曾 O 任 O 梅 B-ORG 花 M-ORG 味 M-ORG 精 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 原 O 梅 B-ORG 花 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 现 O 任 O 梅 B-ORG 花 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 申 B-NAME 万 M-NAME 秋 E-NAME , O 男 O , O 出 O 生 O 于 O 1 O 9 O 7 O 0 O 年 O 4 O 月 O , O 毕 O 业 O 于 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG , O 获 O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 入 O 选 O 清 B-TITLE 华 M-TITLE M M-TITLE B M-TITLE A M-TITLE 教 M-TITLE 育 M-TITLE 2 M-TITLE 0 M-TITLE 年 M-TITLE 2 M-TITLE 0 M-TITLE 人 E-TITLE 。 O 曾 O 工 O 作 O 于 O 中 B-ORG 国 M-ORG 邮 M-ORG 电 M-ORG 工 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 、 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 与 M-ORG 企 M-ORG 业 M-ORG 合 M-ORG 作 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 。 O 中 B-ORG 关 M-ORG 村 M-ORG 科 M-ORG 技 M-ORG 园 M-ORG 区 M-ORG 海 M-ORG 淀 M-ORG 园 M-ORG 企 M-ORG 业 M-ORG 家 M-ORG 协 M-ORG 会 M-ORG 咨 M-ORG 询 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 中 B-ORG 关 M-ORG 村 M-ORG 科 M-ORG 技 M-ORG 园 M-ORG 区 E-ORG 2 B-TITLE 0 M-TITLE 周 M-TITLE 年 M-TITLE 突 M-TITLE 出 M-TITLE 贡 M-TITLE 献 M-TITLE 奖 M-TITLE 获 M-TITLE 得 M-TITLE 者 E-TITLE , O 南 B-ORG 通 M-ORG 市 E-ORG 科 B-TITLE 技 M-TITLE 兴 M-TITLE 市 M-TITLE 功 M-TITLE 臣 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 2 O 月 O 创 O 办 O 北 B-ORG 京 M-ORG 海 M-ORG 兰 M-ORG 信 M-ORG 数 M-ORG 据 M-ORG 记 M-ORG 录 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 任 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 海 B-ORG 兰 M-ORG 船 M-ORG 舶 E-ORG 、 O 香 B-ORG 港 M-ORG 海 M-ORG 兰 M-ORG 信 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 海 B-ORG 兰 M-ORG 天 M-ORG 澄 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 江 B-ORG 苏 M-ORG 海 M-ORG 兰 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 三 B-ORG 沙 M-ORG 海 M-ORG 兰 M-ORG 信 E-ORG 、 O 江 B-ORG 苏 M-ORG 船 M-ORG 舶 E-ORG 、 O 海 B-ORG 兰 M-ORG 劳 M-ORG 雷 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 上 B-ORG 海 M-ORG 言 M-ORG 盛 M-ORG 执 M-ORG 行 M-ORG 事 M-ORG 务 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 王 B-NAME 洵 E-NAME 先 O 生 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 上 B-ORG 海 M-ORG 浦 M-ORG 东 M-ORG 新 M-ORG 区 E-ORG 政 B-TITLE 协 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 大 B-ORG 公 M-ORG 国 M-ORG 际 M-ORG 资 M-ORG 信 M-ORG 评 M-ORG 估 M-ORG 公 M-ORG 司 M-ORG 上 M-ORG 海 M-ORG 总 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 同 M-ORG 达 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 交 B-ORG 通 M-ORG 银 M-ORG 行 M-ORG 深 M-ORG 圳 M-ORG 分 M-ORG 行 E-ORG 信 B-TITLE 贷 M-TITLE 主 M-TITLE 管 E-TITLE , O 中 B-ORG 国 M-ORG 投 M-ORG 资 M-ORG 咨 M-ORG 询 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 上 B-ORG 海 M-ORG 同 M-ORG 华 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 江 B-ORG 苏 M-ORG 南 M-ORG 大 M-ORG 光 M-ORG 电 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 闵 B-NAME 勇 E-NAME : O 男 O , O 生 O 于 O 1 O 9 O 6 O 3 O 年 O , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 4 O 年 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 机 M-ORG 系 E-ORG 本 B-EDU 科 E-EDU 毕 O 业 O , O 1 O 9 O 9 O 0 O 年 O 在 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 机 M-ORG 系 E-ORG 获 O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 机 M-ORG 系 M-ORG 柔 M-ORG 性 M-ORG 输 M-ORG 配 M-ORG 电 M-ORG 系 M-ORG 统 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 、 O 电 B-ORG 力 M-ORG 系 M-ORG 统 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 、 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 气 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 位 M-ORG 分 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 席 E-TITLE 、 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 电 M-ORG 机 M-ORG 系 E-ORG 系 B-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 低 M-ORG 碳 M-ORG 能 M-ORG 源 M-ORG 实 M-ORG 验 M-ORG 室 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 电 B-ORG 力 M-ORG 系 M-ORG 统 M-ORG 及 M-ORG 发 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 安 M-ORG 全 M-ORG 控 M-ORG 制 M-ORG 和 M-ORG 仿 M-ORG 真 M-ORG 国 M-ORG 家 M-ORG 重 M-ORG 点 M-ORG 实 M-ORG 验 M-ORG 室 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 任 O 广 B-ORG 西 M-ORG 桂 M-ORG 冠 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 北 B-ORG 京 M-ORG 双 M-ORG 杰 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 刘 B-NAME 钊 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 6 O 6 O 年 O 1 O 月 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 兰 B-ORG 州 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 程 E-PRO 硕 B-EDU 士 E-EDU ; O 高 B-TITLE 级 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 策 M-TITLE 划 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 至 O 今 O 担 O 任 O 甘 B-ORG 肃 M-ORG 天 M-ORG 行 M-ORG 健 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 职 O 务 O ; O 2 O 0 O 0 O 7 O 年 O 2 O 月 O 取 O 得 O 独 O 立 O 董 O 事 O 培 O 训 O 证 O 书 O ; O 2 O 0 O 0 O 9 O 年 O 6 O 月 O 至 O 今 O 任 O 海 B-ORG 南 M-ORG 亚 M-ORG 太 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 唐 B-NAME 泓 E-NAME , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 男 O , O 法 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 毕 O 业 O 于 O 武 B-ORG 汉 M-ORG 大 M-ORG 学 E-ORG 。 O 1 O 9 O 8 O 8 O 年 O 至 O 1 O 9 O 9 O 3 O 年 O 担 O 任 O 武 B-ORG 汉 M-ORG 市 M-ORG 政 M-ORG 府 E-ORG 外 B-TITLE 资 M-TITLE 办 M-TITLE 综 M-TITLE 合 M-TITLE 组 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 1 O 9 O 9 O 3 O 年 O 至 O 2 O 0 O 0 O 3 O 年 O 任 O 职 O 普 B-ORG 华 M-ORG 永 M-ORG 道 E-ORG ( O 伦 O 敦 O - O 香 O 港 O - O 上 O 海 O ) O , O 先 O 后 O 担 O 任 O 经 B-TITLE 理 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 至 O 今 O 担 O 任 O C B-ORG V M-ORG R M-ORG D M-ORG I M-ORG N M-ORG C M-ORG O M-ORG 中 M-ORG 国 M-ORG 区 E-ORG 商 B-TITLE 务 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 5 O 至 O 今 O 同 O 时 O 担 O 任 O 加 B-ORG 商 M-ORG 英 M-ORG 可 M-ORG 金 M-ORG 属 M-ORG ( M-ORG 上 M-ORG 海 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 胡 B-NAME 曙 M-NAME 光 E-NAME 先 O 生 O : O 1 O 9 O 8 O 1 O 年 O 毕 O 业 O 于 O 洪 B-ORG 都 M-ORG 机 M-ORG 械 M-ORG 厂 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 洪 B-ORG 都 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 生 B-TITLE 产 M-TITLE 处 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 洪 B-ORG 都 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 生 B-TITLE 产 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 南 B-ORG 昌 M-ORG 飞 M-ORG 机 M-ORG 制 M-ORG 造 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 江 B-ORG 西 M-ORG 洪 M-ORG 都 M-ORG 航 M-ORG 空 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 9 O 8 O 年 O 至 O 今 O 任 O 江 B-ORG 西 M-ORG 洪 M-ORG 都 M-ORG 航 M-ORG 空 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 有 O 较 O 丰 O 富 O 的 O 大 O 型 O 企 O 业 O 生 O 产 O 组 O 织 O 管 O 理 O 经 O 验 O 。 O 本 B-ORG 公 M-ORG 司 E-ORG 一 B-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 卫 M-NAME 红 E-NAME 先 O 生 O , O 出 O 生 O 于 O 1 O 9 O 7 O 0 O 年 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 2 O 0 O 0 O 6 O 年 O 至 O 今 O 任 O 职 O 于 O 湖 B-ORG 南 M-ORG 尔 M-ORG 康 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 湖 B-ORG 南 M-ORG 尔 M-ORG 康 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 销 B-TITLE 售 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 佗 B-NAME 文 M-NAME 汉 E-NAME 先 O 生 O : O 中 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 原 M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 局 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 中 B-ORG 原 M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 局 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 中 B-ORG 原 M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 局 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 6 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 中 B-ORG 原 M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 金 M-NAME 书 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 王 B-NAME 金 M-NAME 书 E-NAME 先 O 生 O 自 O 1 O 9 O 8 O 9 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 福 B-ORG 建 M-ORG 南 M-ORG 平 M-ORG 太 M-ORG 阳 M-ORG 电 M-ORG 缆 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 车 B-TITLE 间 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE 、 O 话 B-TITLE 缆 M-TITLE 车 M-TITLE 间 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 裸 B-TITLE 线 M-TITLE 车 M-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 电 B-TITLE 缆 M-TITLE 车 M-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 制 M-TITLE 造 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 公 B-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 企 B-TITLE 管 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 公 B-ORG 司 M-ORG 营 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 市 B-TITLE 场 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 现 O 任 O 福 B-ORG 建 M-ORG 南 M-ORG 平 M-ORG 太 M-ORG 阳 M-ORG 电 M-ORG 缆 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 艾 B-NAME 依 M-NAME 热 M-NAME 提 M-NAME · M-NAME 麦 M-NAME 麦 M-NAME 提 M-NAME 吐 M-NAME 尔 M-NAME 逊 E-NAME , O 男 O , O 维 B-RACE 吾 M-RACE 尔 M-RACE 族 E-RACE , O 1 O 9 O 6 O 2 O 年 O 3 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 0 O 年 O 至 O 今 O 在 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 毛 M-ORG 纺 M-ORG 织 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O ; O 历 O 任 O 天 B-ORG 山 M-ORG 毛 M-ORG 纺 M-ORG 厂 E-ORG 分 O 梳 O 车 O 间 O 挡 O 车 O 工 O 作 O 、 O 分 B-TITLE 梳 M-TITLE 运 M-TITLE 转 M-TITLE 班 M-TITLE 班 M-TITLE 长 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 供 B-TITLE 应 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 供 B-TITLE 应 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 新 B-ORG 疆 M-ORG 库 M-ORG 车 M-ORG 天 M-ORG 兹 M-ORG 畜 M-ORG 牧 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 绒 B-ORG 毛 M-ORG 厂 E-ORG 原 B-TITLE 料 M-TITLE 室 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 天 B-ORG 山 M-ORG 纺 M-ORG 织 M-ORG 绒 M-ORG 毛 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 3 O 月 O 至 O 今 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 毛 M-ORG 纺 M-ORG 织 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 寿 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 中 B-ORG 国 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 理 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 享 O 受 O 深 O 圳 O 市 O 政 O 府 O 特 O 别 O 津 O 贴 O , O 深 O 圳 O 市 O 地 O 方 O 级 O 领 O 军 O 人 O 才 O 。 O I B-TITLE S M-TITLE O M-TITLE / M-TITLE T M-TITLE C M-TITLE 1 M-TITLE 2 M-TITLE 2 M-TITLE / M-TITLE S M-TITLE C M-TITLE 4 M-TITLE 工 M-TITLE 作 M-TITLE 组 M-TITLE 国 M-TITLE 际 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 中 B-ORG 国 M-ORG 标 M-ORG 准 M-ORG 化 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 专 B-TITLE 家 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 《 B-ORG 塑 M-ORG 料 M-ORG 包 M-ORG 装 M-ORG 》 E-ORG 编 B-TITLE 委 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE , O 中 B-ORG 科 M-ORG 院 M-ORG 化 M-ORG 学 M-ORG 所 M-ORG 及 M-ORG 华 M-ORG 南 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 合 M-ORG 作 M-ORG 企 M-ORG 业 E-ORG 博 B-TITLE 士 M-TITLE 后 M-TITLE 导 M-TITLE 师 E-TITLE , O 中 B-ORG 科 M-ORG 院 M-ORG 宁 M-ORG 波 M-ORG 材 M-ORG 料 M-ORG 所 E-ORG 、 O 深 B-ORG 圳 M-ORG 大 M-ORG 学 E-ORG 等 O 客 B-TITLE 座 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 中 B-ORG 山 M-ORG 大 M-ORG 学 E-ORG 、 O 深 B-ORG 圳 M-ORG 大 M-ORG 学 E-ORG 等 O 硕 B-TITLE 士 M-TITLE 导 M-TITLE 师 E-TITLE , O 湖 B-ORG 南 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 博 B-TITLE 士 M-TITLE 指 M-TITLE 导 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE ; O 曾 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 印 M-ORG 刷 M-ORG 版 M-ORG 再 M-ORG 生 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 石 M-ORG 化 M-ORG 集 M-ORG 团 E-ORG 工 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 通 B-ORG 产 M-ORG 丽 M-ORG 星 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 通 B-ORG 产 M-ORG 丽 M-ORG 星 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 通 B-ORG 产 M-ORG 丽 M-ORG 星 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 通 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 中 B-ORG 国 M-ORG 塑 M-ORG 料 M-ORG 加 M-ORG 工 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 绿 M-ORG 色 M-ORG 印 M-ORG 刷 M-ORG 电 M-ORG 子 M-ORG 产 M-ORG 业 M-ORG 技 M-ORG 术 M-ORG 创 M-ORG 新 M-ORG 联 M-ORG 盟 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 。 O 李 B-NAME 军 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 出 O 生 O 于 O 1 O 9 O 5 O 9 O 年 O 3 O 月 O 。 O 自 O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 起 O 任 O 中 B-ORG 国 M-ORG 工 M-ORG 商 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 进 O 入 O 汇 B-ORG 金 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 曾 O 任 O 国 B-ORG 际 M-ORG 商 M-ORG 业 M-ORG 信 M-ORG 贷 M-ORG 银 M-ORG 行 M-ORG 北 M-ORG 京 M-ORG 代 M-ORG 表 M-ORG 处 E-ORG 代 B-TITLE 表 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 法 B-ORG 国 M-ORG 巴 M-ORG 黎 M-ORG 巴 M-ORG 银 M-ORG 行 M-ORG 中 M-ORG 国 M-ORG 代 M-ORG 表 M-ORG 处 E-ORG 副 B-TITLE 代 M-TITLE 表 E-TITLE 、 O 西 B-ORG 班 M-ORG 牙 M-ORG 对 M-ORG 外 M-ORG 银 M-ORG 行 E-ORG 银 B-TITLE 行 M-TITLE 国 M-TITLE 际 M-TITLE 部 M-TITLE 顾 M-TITLE 问 E-TITLE 、 O 中 B-ORG 国 M-ORG 科 M-ORG 技 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 中 B-ORG 国 M-ORG 科 M-ORG 技 M-ORG 证 M-ORG 券 E-ORG 研 B-TITLE 究 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 北 B-ORG 京 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 金 B-TITLE 融 M-TITLE 系 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 目 O 前 O 还 O 担 O 任 O 申 B-ORG 银 M-ORG 万 M-ORG 国 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 毕 O 业 O 于 O 西 B-ORG 班 M-ORG 牙 M-ORG 马 M-ORG 德 M-ORG 里 M-ORG 大 M-ORG 学 E-ORG , O 获 O 经 B-PRO 济 M-PRO 管 M-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 林 B-NAME 江 M-NAME 南 E-NAME 女 O 士 O , O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 理 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 。 O 1 O 9 O 9 O 6 O 年 O 至 O 今 O 在 O 公 B-ORG 司 E-ORG 任 O 职 O , O 历 O 任 O 本 B-TITLE 地 M-TITLE 化 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 本 B-TITLE 地 M-TITLE 化 M-TITLE 部 M-TITLE 部 M-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 应 B-TITLE 用 M-TITLE 系 M-TITLE 统 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 业 M-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 专 M-TITLE 员 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 助 M-TITLE 理 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 博 B-ORG 彦 M-ORG 科 M-ORG 技 E-ORG 监 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 晔 E-NAME 女 O 士 O , O 女 O , O 安 B-LOC 徽 M-LOC 六 M-LOC 安 M-LOC 人 E-LOC , O 1 O 9 O 6 O 3 O 年 O 1 O 2 O 月 O 生 O , O 毕 O 业 O 于 O 安 B-ORG 徽 M-ORG 广 M-ORG 播 M-ORG 电 M-ORG 视 M-ORG 大 M-ORG 学 E-ORG 财 B-PRO 税 M-PRO 专 M-PRO 业 E-PRO , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 国 B-PRO 民 M-PRO 经 M-PRO 济 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 研 B-EDU 究 M-EDU 生 E-EDU 结 O 业 O , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O , O 国 B-TITLE 际 M-TITLE 注 M-TITLE 册 M-TITLE 内 M-TITLE 部 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 3 O 月 O , O 任 O 海 B-ORG 口 M-ORG 市 M-ORG 城 M-ORG 建 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 8 O 月 O , O 任 O 海 B-ORG 南 M-ORG 千 M-ORG 博 M-ORG 乐 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 月 O , O 任 O 海 B-ORG 南 M-ORG 农 M-ORG 垦 M-ORG 中 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 至 O 今 O , O 任 O 海 B-ORG 南 M-ORG 橡 M-ORG 胶 E-ORG 审 B-TITLE 计 M-TITLE 风 M-TITLE 险 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 6 O 月 O 任 O 海 B-ORG 南 M-ORG 橡 M-ORG 胶 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 梁 B-NAME 中 M-NAME 华 E-NAME 先 O 生 O , O 出 O 生 O 于 O 1 O 9 O 6 O 3 O 年 O 8 O 月 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE , O 现 O 任 O 西 B-ORG 泵 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 1 O 9 O 8 O 0 O 年 O 6 O 月 O 至 O 1 O 9 O 8 O 5 O 年 O 1 O 1 O 月 O 在 O 河 B-ORG 南 M-ORG 省 M-ORG 西 M-ORG 峡 M-ORG 县 M-ORG 五 M-ORG 里 M-ORG 桥 M-ORG 乡 M-ORG 燕 M-ORG 岗 M-ORG 中 M-ORG 学 E-ORG 任 B-TITLE 教 E-TITLE ; O 1 O 9 O 8 O 5 O 年 O 1 O 2 O 月 O 2 O 0 O 0 O 0 O 年 O 7 O 月 O 在 O 西 B-ORG 峡 M-ORG 汽 M-ORG 车 M-ORG 水 M-ORG 泵 M-ORG 厂 E-ORG 工 O 作 O , O 曾 O 任 O 人 B-TITLE 事 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 8 O 月 O 至 O 今 O 任 O 河 B-ORG 南 M-ORG 省 M-ORG 西 M-ORG 峡 M-ORG 汽 M-ORG 车 M-ORG 水 M-ORG 泵 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 检 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 自 O 2 O 0 O 0 O 3 O 年 O 1 O 月 O 1 O 日 O 起 O 任 O 河 B-ORG 南 M-ORG 省 M-ORG 西 M-ORG 峡 M-ORG 汽 M-ORG 车 M-ORG 水 M-ORG 泵 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 4 O 月 O 被 O 评 O 为 O 南 O 阳 O 市 O “ O 五 O 一 O 劳 O 动 O 奖 O 章 O ” O 。 O 敖 B-NAME 治 M-NAME 平 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 6 O 6 O 年 O 1 O 月 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 最 O 近 O 五 O 年 O 曾 O 任 O 泸 B-ORG 州 M-ORG 老 M-ORG 窖 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 已 O 于 O 2 O 0 O 1 O 5 O 年 O 3 O 月 O 4 O 日 O 辞 O 去 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 职 O 务 O 。 O 夏 B-NAME 仲 M-NAME 昊 E-NAME , O 男 O , O 1 O 9 O 6 O 9 O 年 O 1 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 0 O 年 O 至 O 1 O 9 O 9 O 3 O 年 O 任 O 中 B-ORG 国 M-ORG 建 M-ORG 筑 M-ORG 第 M-ORG 六 M-ORG 工 M-ORG 程 M-ORG 局 M-ORG 第 M-ORG 四 M-ORG 建 M-ORG 筑 M-ORG 工 M-ORG 程 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 至 O 2 O 0 O 0 O 1 O 年 O 任 O 保 B-ORG 税 M-ORG 区 M-ORG 天 M-ORG 津 M-ORG 天 M-ORG 正 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 招 M-ORG 商 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 历 O 任 O 天 B-ORG 保 M-ORG 控 M-ORG 股 E-ORG 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 副 B-TITLE 部 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 起 O 任 O 天 B-ORG 津 M-ORG 天 M-ORG 保 M-ORG 基 M-ORG 建 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 起 O 兼 O 任 O 天 B-ORG 津 M-ORG 天 M-ORG 保 M-ORG 基 M-ORG 建 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 天 B-ORG 津 M-ORG 天 M-ORG 保 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 天 B-ORG 津 M-ORG 滨 M-ORG 海 M-ORG 开 M-ORG 元 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 天 M-ORG 保 M-ORG 基 M-ORG 建 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 天 B-ORG 津 M-ORG 天 M-ORG 保 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 天 B-ORG 津 M-ORG 滨 M-ORG 海 M-ORG 开 M-ORG 元 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 彭 B-NAME 国 M-NAME 泉 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 生 O 于 O 一 O 九 O 六 O 六 O 年 O 十 O 月 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 华 B-ORG 电 M-ORG 滕 M-ORG 州 M-ORG 新 M-ORG 源 M-ORG 热 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 华 B-ORG 电 M-ORG 莱 M-ORG 州 M-ORG 风 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 和 O 华 B-ORG 电 M-ORG 内 M-ORG 蒙 M-ORG 古 M-ORG 开 M-ORG 鲁 M-ORG 风 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 彭 S-NAME 先 O 生 O 毕 O 业 O 于 O 华 B-ORG 中 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 热 B-PRO 能 M-PRO 动 M-PRO 力 M-PRO 专 M-PRO 业 E-PRO , O 在 O 电 O 力 O 生 O 产 O 、 O 管 O 理 O 等 O 方 O 面 O 具 O 有 O 1 O 9 O 年 O 的 O 工 O 作 O 经 O 验 O 。 O 加 O 入 O 本 O 公 O 司 O 前 O , O 彭 S-NAME 先 O 生 O 先 O 后 O 于 O 青 B-ORG 山 M-ORG 热 M-ORG 电 M-ORG 厂 E-ORG 、 O 武 B-ORG 昌 M-ORG 热 M-ORG 电 M-ORG 厂 E-ORG 、 O 安 B-ORG 徽 M-ORG 华 M-ORG 电 M-ORG 芜 M-ORG 湖 M-ORG 发 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 朱 B-NAME 子 M-NAME 君 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 1 O 年 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 建 M-ORG 国 M-ORG 际 M-ORG 建 M-ORG 设 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 企 B-TITLE 划 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 管 B-TITLE 理 M-TITLE 者 M-TITLE 代 M-TITLE 表 E-TITLE , O 中 B-ORG 国 M-ORG 建 M-ORG 筑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 海 B-TITLE 外 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 管 B-TITLE 理 M-TITLE 者 M-TITLE 代 M-TITLE 表 E-TITLE , O 中 B-ORG 国 M-ORG 建 M-ORG 筑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 业 M-TITLE 策 M-TITLE 划 M-TITLE 与 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ( O 主 O 持 O 工 O 作 O ) O ; O 现 O 任 O 中 B-ORG 国 M-ORG 建 M-ORG 筑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 业 M-TITLE 策 M-TITLE 划 M-TITLE 与 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O 任 O 中 B-ORG 建 M-ORG 西 M-ORG 部 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 李 B-NAME 晓 M-NAME 擎 E-NAME : O 男 O , O 1 O 9 O 5 O 4 O 年 O 9 O 月 O 出 O 生 O , O 河 B-ORG 北 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 汽 B-PRO 车 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 长 O 期 O 从 O 事 O 汽 O 车 O 整 O 车 O 产 O 品 O 设 O 计 O 、 O 管 O 理 O 和 O 铝 O 车 O 轮 O 制 O 造 O , O 曾 O 任 O 戴 B-ORG 卡 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 和 M-TITLE 产 M-TITLE 品 M-TITLE 开 M-TITLE 发 M-TITLE 工 M-TITLE 作 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 中 B-ORG 国 M-ORG 汽 M-ORG 车 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 M-ORG 车 M-ORG 轮 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 秘 B-TITLE 书 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 汽 M-ORG 车 M-ORG 标 M-ORG 准 M-ORG 化 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 M-ORG 车 M-ORG 轮 M-ORG 分 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 商 B-ORG 务 M-ORG 部 E-ORG 出 B-TITLE 口 M-TITLE 援 M-TITLE 助 M-TITLE 物 M-TITLE 资 M-TITLE 招 M-TITLE 标 M-TITLE 评 M-TITLE 审 M-TITLE 专 M-TITLE 家 E-TITLE 等 O 职 O 。 O 王 B-NAME 文 M-NAME 霞 E-NAME , O 女 O , O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 8 O 年 O 至 O 今 O 先 O 后 O 工 O 作 O 于 O 河 B-ORG 南 M-ORG 省 M-ORG 博 M-ORG 爱 M-ORG 县 M-ORG 开 M-ORG 源 M-ORG 精 M-ORG 细 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 、 O 博 B-ORG 爱 M-ORG 新 M-ORG 开 M-ORG 源 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 现 O 任 O 博 B-ORG 爱 M-ORG 新 M-ORG 开 M-ORG 源 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 发 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 当 O 选 O 为 O 博 B-ORG 爱 M-ORG 新 M-ORG 开 M-ORG 源 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 王 B-NAME 振 M-NAME 刚 E-NAME 先 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 中 B-ORG 国 M-ORG 三 M-ORG 峡 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 三 M-ORG 峡 M-ORG 保 M-ORG 税 M-ORG 库 M-ORG 暨 M-ORG 宜 M-ORG 昌 M-ORG 峡 M-ORG 润 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 设 B-ORG 备 M-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 三 B-ORG 峡 M-ORG 水 M-ORG 力 M-ORG 发 M-ORG 电 M-ORG 厂 E-ORG 筹 B-TITLE 建 M-TITLE 处 M-TITLE 综 M-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 三 B-ORG 峡 M-ORG 水 M-ORG 力 M-ORG 发 M-ORG 电 M-ORG 厂 E-ORG 综 B-TITLE 合 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 三 B-ORG 峡 M-ORG 水 M-ORG 力 M-ORG 发 M-ORG 电 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 秦 B-NAME 宏 M-NAME 武 E-NAME 先 O 生 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 9 O 年 O 5 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 1 O 年 O 毕 O 业 O 于 O 北 B-ORG 方 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 统 B-PRO 计 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 2 O 0 O 0 O 1 O 年 O 毕 O 业 O 于 O 南 B-ORG 开 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU 。 O 历 O 任 O 宁 B-ORG 夏 M-ORG 星 M-ORG 日 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 计 B-TITLE 划 M-TITLE 企 M-TITLE 管 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 董 B-TITLE 秘 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 宁 B-ORG 夏 M-ORG 建 M-ORG 材 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ( O 挂 O 职 O ) O , O 中 B-ORG 色 M-ORG ( M-ORG 宁 M-ORG 夏 M-ORG ) M-ORG 东 M-ORG 方 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 指 M-TITLE 挥 M-TITLE 部 M-TITLE 计 M-TITLE 划 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 预 B-TITLE 决 M-TITLE 算 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 中 B-ORG 色 M-ORG ( M-ORG 宁 M-ORG 夏 M-ORG ) M-ORG 东 M-ORG 方 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 宁 B-ORG 夏 M-ORG 东 M-ORG 方 M-ORG 钽 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 计 B-TITLE 划 M-TITLE 企 M-TITLE 管 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 监 B-TITLE 事 E-TITLE 。 O 现 O 任 O 宁 B-ORG 夏 M-ORG 东 M-ORG 方 M-ORG 钽 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 杨 B-NAME 旭 M-NAME 东 E-NAME : O 男 O , O 1 O 9 O 6 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 毕 O 业 O 于 O 黑 B-ORG 龙 M-ORG 江 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 业 M-ORG 学 M-ORG 校 E-ORG , O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 4 O 年 O 6 O 月 O 黑 B-ORG 龙 M-ORG 江 M-ORG 省 M-ORG 富 M-ORG 拉 M-ORG 尔 M-ORG 基 M-ORG 发 M-ORG 电 M-ORG 总 M-ORG 厂 E-ORG 任 O 技 B-TITLE 术 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 南 B-ORG 海 M-ORG 发 M-ORG 电 M-ORG 一 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 至 O 今 O 在 O 佛 B-ORG 山 M-ORG 电 M-ORG 器 M-ORG 照 M-ORG 明 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 高 M-ORG 明 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 。 O 第 B-TITLE 九 M-TITLE 届 M-TITLE 广 M-TITLE 东 M-TITLE 省 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 汤 B-NAME 民 M-NAME 强 E-NAME : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 1 O 9 O 5 O 7 O 年 O 1 O 0 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 月 O , O 任 O 杭 B-ORG 钢 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 至 O 今 O , O 任 O 杭 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 已 O 离 O 任 O 。 O 张 B-NAME 孟 M-NAME 青 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 年 O 来 O 先 O 后 O 主 O 要 O 担 O 任 O 安 B-ORG 徽 M-ORG 合 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 计 B-TITLE 划 M-TITLE 信 M-TITLE 息 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE 、 O 信 B-TITLE 息 M-TITLE 化 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 现 O 任 O 安 B-ORG 徽 M-ORG 合 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 兼 O 信 B-TITLE 息 M-TITLE 化 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 安 B-ORG 徽 M-ORG 合 M-ORG 力 M-ORG 物 M-ORG 流 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 程 B-NAME 则 M-NAME 虎 E-NAME 先 O 生 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 山 B-ORG 东 M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 山 B-ORG 东 M-ORG 重 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 法 M-TITLE 务 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 山 B-ORG 东 M-ORG 众 M-ORG 友 M-ORG ( M-ORG 山 M-ORG 重 M-ORG 建 M-ORG 机 M-ORG ) M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 现 O 任 O 山 B-ORG 东 M-ORG 重 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ( O 职 O 工 O 代 O 表 O ) O , O 山 B-ORG 东 M-ORG 山 M-ORG 推 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 山 B-ORG 推 M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 林 B-NAME 松 M-NAME 生 E-NAME , O 男 O , O 1 O 9 O 6 O 1 O 年 O 4 O 月 O 生 O , O 日 B-CONT 本 M-CONT 国 M-CONT 籍 E-CONT , O 现 O 任 O 福 B-ORG 建 M-ORG 雪 M-ORG 人 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 8 O 2 O 年 O 8 O 月 O - O 1 O 9 O 9 O 1 O 年 O 4 O 月 O 在 O 福 B-ORG 州 M-ORG 精 M-ORG 细 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 职 O ; O 1 O 9 O 9 O 1 O 年 O 4 O 月 O - O 1 O 9 O 9 O 6 O 年 O 4 O 月 O 就 O 职 O 于 O 日 B-ORG 本 M-ORG 特 M-ORG 殊 M-ORG 工 M-ORG 业 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG ; O 1 O 9 O 9 O 6 O 年 O 4 O 月 O - O 2 O 0 O 0 O 1 O 年 O 6 O 月 O 就 O 职 O 于 O 山 B-ORG 城 M-ORG 工 M-ORG 业 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG , O 任 O 八 B-ORG 尾 M-ORG 工 M-ORG 厂 E-ORG 工 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 6 O 月 O - O 2 O 0 O 0 O 5 O 年 O 3 O 月 O 参 O 加 O 山 B-ORG 城 M-ORG 工 M-ORG 业 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG 投 O 资 O 成 O 立 O 的 O 上 B-ORG 海 M-ORG 山 M-ORG 城 M-ORG 塑 M-ORG 胶 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 筹 O 建 O , O 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 5 O 月 O - O 2 O 0 O 1 O 0 O 年 O 3 O 月 O 就 O 职 O 于 O 昭 B-ORG 和 M-ORG 精 M-ORG 机 M-ORG 械 M-ORG 工 M-ORG 业 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG ; O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O - O 2 O 0 O 1 O 2 O 年 O 1 O 0 O 月 O 就 O 职 O 于 O 黑 B-ORG 田 M-ORG 化 M-ORG 学 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG , O 派 O 驻 O 鹏 B-ORG 映 M-ORG 塑 M-ORG 胶 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 黄 B-NAME 金 M-NAME 陵 E-NAME 先 O 生 O , O 毕 O 业 O 于 O 香 B-ORG 港 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG ( O 原 O 香 B-ORG 港 M-ORG 理 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG ) O 。 O 黄 S-NAME 先 O 生 O 为 O 英 B-ORG 国 M-ORG 特 M-ORG 许 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 公 M-ORG 会 E-ORG 资 B-TITLE 深 M-TITLE 会 M-TITLE 员 E-TITLE 、 O 澳 B-ORG 洲 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 公 M-ORG 会 E-ORG 资 B-TITLE 深 M-TITLE 会 M-TITLE 员 E-TITLE 、 O 香 B-ORG 港 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 公 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE 以 O 及 O 英 B-ORG 国 M-ORG 特 M-ORG 许 M-ORG 公 M-ORG 司 M-ORG 秘 M-ORG 书 M-ORG 公 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE 。 O 黄 S-NAME 先 O 生 O 于 O 1 O 9 O 8 O 7 O 年 O 至 O 1 O 9 O 9 O 1 O 年 O 期 O 间 O 先 O 后 O 担 O 任 O 中 B-ORG 国 M-ORG 染 M-ORG 厂 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 曾 O 为 O 香 O 港 O 上 O 市 O 公 O 司 O ) O 的 O 集 B-TITLE 团 M-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 及 O 凯 B-ORG 威 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 曾 O 为 O 香 O 港 O 上 O 市 O 公 O 司 O ) O 的 O 集 B-TITLE 团 M-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 于 O 1 O 9 O 9 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O 退 O 休 O 前 O , O 黄 S-NAME 先 O 生 O 在 O 百 B-ORG 富 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 为 O 美 O 国 O 纳 O 斯 O 达 O 克 O 股 O 票 O 交 O 易 O 所 O 上 O 市 O 公 O 司 O B B-ORG e M-ORG l M-ORG F M-ORG u M-ORG s M-ORG e M-ORG I M-ORG n M-ORG c M-ORG . E-ORG 的 O 子 B-ORG 公 M-ORG 司 E-ORG ) O 担 O 任 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 及 O 顾 B-TITLE 问 E-TITLE 职 O 务 O , O 除 O 财 O 务 O 监 O 控 O 工 O 作 O 外 O , O 黄 O 先 O 生 O 还 O 负 O 责 O 建 O 立 O 公 O 司 O 管 O 治 O 系 O 统 O 及 O 程 O 序 O , O 在 O 财 O 务 O 管 O 理 O 、 O 会 O 计 O 和 O 公 O 司 O 管 O 治 O 方 O 面 O 积 O 累 O 了 O 丰 O 富 O 的 O 经 O 验 O 。 O 黄 S-NAME 先 O 生 O 自 O 2 O 0 O 0 O 5 O 年 O 6 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 并 O 担 O 任 O 审 B-TITLE 核 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 赵 B-NAME 勇 M-NAME 敏 E-NAME 先 O 生 O : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 5 B-EDU 3 M-EDU 岁 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O 。 O 曾 O 任 O 丹 B-ORG 东 M-ORG 化 M-ORG 学 M-ORG 纤 M-ORG 维 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 成 M-TITLE 本 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE , O 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE ; O 任 O 丹 B-ORG 东 M-ORG 化 M-ORG 学 M-ORG 纤 M-ORG 维 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 任 O 吉 B-ORG 林 M-ORG 化 M-ORG 纤 M-ORG 公 M-ORG 司 M-ORG 子 M-ORG 公 M-ORG 司 M-ORG 丹 M-ORG 东 M-ORG 吉 M-ORG 丹 M-ORG 化 M-ORG 纤 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 湖 B-ORG 南 M-ORG 拓 M-ORG 普 M-ORG 竹 M-ORG 麻 M-ORG 产 M-ORG 业 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 财 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 1 O 月 O 起 O 进 O 入 O 公 B-ORG 司 E-ORG , O 历 O 任 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 现 O 任 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 其 O 与 O 持 O 有 O 公 O 司 O 5 O % O 以 O 上 O 股 O 份 O 的 O 股 O 东 O 及 O 实 O 际 O 控 O 制 O 人 O 不 O 存 O 在 O 关 O 联 O 关 O 系 O 。 O 赵 B-NAME 春 M-NAME 年 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 未 O 拥 O 有 O 永 O 久 O 国 O 外 O 居 O 留 O 权 O , O 1 O 9 O 4 O 9 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 研 M-TITLE 究 M-TITLE 员 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 至 O 今 O , O 曾 O 任 O 丹 B-ORG 东 M-ORG 电 M-ORG 业 M-ORG 局 E-ORG 科 B-TITLE 技 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 盘 B-ORG 锦 M-ORG 供 M-ORG 电 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 沈 B-ORG 阳 M-ORG 供 M-ORG 电 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 辽 B-ORG 宁 M-ORG 省 M-ORG 电 M-ORG 力 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 产 M-TITLE 业 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 丹 B-ORG 东 M-ORG 欣 M-ORG 泰 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 任 O 职 O 期 O 限 O 为 O 2 O 0 O 1 O 3 O 年 O 7 O 月 O - O 2 O 0 O 1 O 6 O 年 O 7 O 月 O 。 O 钱 B-NAME 美 M-NAME 芳 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 9 O 年 O 1 O 月 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 宜 B-ORG 兴 M-ORG 万 M-ORG 昌 M-ORG 食 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 德 M-ORG 威 M-ORG 节 M-ORG 能 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 副 M-TITLE 总 E-TITLE , O 舟 B-ORG 山 M-ORG 万 M-ORG 昌 M-ORG 食 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 副 M-TITLE 总 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O , O 任 O 公 B-ORG 司 E-ORG 内 B-TITLE 部 M-TITLE 审 M-TITLE 计 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 雅 M-ORG 克 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 晓 M-NAME 辉 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 7 O 1 O 年 O 9 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 中 B-ORG 石 M-ORG 化 M-ORG 洞 M-ORG 庭 M-ORG 氮 M-ORG 肥 M-ORG 厂 E-ORG 合 B-TITLE 成 M-TITLE 车 M-TITLE 间 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE , O 湖 B-ORG 南 M-ORG 凯 M-ORG 美 M-ORG 特 M-ORG 气 M-ORG 体 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 石 M-ORG 化 M-ORG 壳 M-ORG 牌 M-ORG 煤 M-ORG 气 M-ORG 化 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 运 B-TITLE 行 M-TITLE 主 M-TITLE 管 E-TITLE , O 现 O 任 O 湖 B-ORG 南 M-ORG 凯 M-ORG 美 M-ORG 特 M-ORG 气 M-ORG 体 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 总 M-TITLE 监 E-TITLE , O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 被 O 评 O 为 O 岳 B-ORG 阳 M-ORG 楼 M-ORG 区 E-ORG 劳 B-TITLE 动 M-TITLE 模 M-TITLE 范 E-TITLE 。 O 参 O 与 O 了 O 公 O 司 O “ O 二 O 氧 O 化 O 碳 O 动 O 态 O 减 O 压 O 提 O 纯 O 技 O 术 O ” O 、 O “ O 低 O 温 O 容 O 器 O 复 O 合 O 保 O 冷 O 工 O 艺 O ” O 、 O “ O 一 O 种 O 食 O 品 O 级 O 二 O 氧 O 化 O 碳 O 产 O 品 O 的 O 生 O 产 O 方 O 法 O ” O 等 O 专 O 利 O 及 O 其 O 他 O 非 O 专 O 利 O 核 O 心 O 技 O 术 O 的 O 开 O 发 O 和 O 研 O 究 O 。 O 孟 B-NAME 颖 M-NAME 超 E-NAME 女 O 士 O : O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 9 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 烟 B-ORG 台 M-ORG 广 M-ORG 源 M-ORG 果 M-ORG 蔬 E-ORG 干 B-TITLE 果 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 广 B-ORG 源 M-ORG 货 M-ORG 运 E-ORG 货 B-TITLE 代 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 2 O 0 O 1 O 4 O 年 O 9 O 月 O 任 O 朗 B-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 干 B-TITLE 果 M-TITLE 外 M-TITLE 贸 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 4 O 年 O 9 O 月 O 至 O 今 O 任 O 职 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 天 M-NAME 倪 E-NAME 先 O 生 O : O 现 O 任 O 重 B-ORG 庆 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 薪 B-TITLE 酬 M-TITLE 与 M-TITLE 考 M-TITLE 核 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 审 B-TITLE 核 M-TITLE ( M-TITLE 审 M-TITLE 计 M-TITLE ) M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE ; O 皓 B-ORG 天 M-ORG 财 M-ORG 经 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 创 B-TITLE 办 M-TITLE 人 E-TITLE 及 O 主 B-TITLE 席 E-TITLE , O 香 O 港 O 上 O 市 O 公 O 司 O 银 B-ORG 建 M-ORG 国 M-ORG 际 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 及 O 保 B-ORG 弘 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 庆 B-ORG 铃 M-ORG 汽 M-ORG 车 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 刘 S-NAME 先 O 生 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 E-ORG , O 理 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 刘 S-NAME 先 O 生 O 对 O 国 O 际 O 资 O 本 O 市 O 场 O 及 O 上 O 市 O 后 O 之 O 企 O 业 O 融 O 资 O 、 O 收 O 购 O 兼 O 并 O 及 O 直 O 接 O 投 O 资 O 等 O 方 O 面 O 拥 O 有 O 丰 O 富 O 实 O 战 O 经 O 验 O 。 O 刘 S-NAME 先 O 生 O 凭 O 借 O 其 O 卓 O 越 O 的 O 公 O 司 O 管 O 理 O 及 O 出 O 色 O 的 O 经 O 营 O 策 O 略 O , O 于 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 荣 O 获 O 《 O 亚 O 洲 O 周 O 刊 O 》 O 颁 O 发 O 之 O “ O 世 O 界 O 杰 O 出 O 青 O 年 O 华 O 商 O ” O 大 O 奖 O 。 O 刘 S-NAME 先 O 生 O 于 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O 3 O 1 O 日 O 重 B-ORG 庆 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 2 O 0 O 1 O 1 O 年 O 度 O 股 O 东 O 周 O 年 O 大 O 会 O 获 O 选 O 连 O 重 B-ORG 庆 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 徐 B-NAME 益 M-NAME 民 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 8 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 自 O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 南 B-ORG 京 M-ORG 高 M-ORG 科 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 南 B-ORG 京 M-ORG 栖 M-ORG 霞 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 南 B-ORG 京 M-ORG 栖 M-ORG 霞 M-ORG 建 M-ORG 设 M-ORG 仙 M-ORG 林 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 鑫 B-ORG 元 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 曾 O 任 O 南 B-ORG 京 M-ORG 高 M-ORG 科 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 肖 B-NAME 松 E-NAME : O 男 O , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 德 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 9 O 5 O 年 O 获 O 得 O 多 B-ORG 特 M-ORG 蒙 M-ORG 德 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 程 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O 西 B-ORG 门 M-ORG 子 M-ORG 威 M-ORG 迪 M-ORG 欧 M-ORG 汽 M-ORG 车 M-ORG 电 M-ORG 子 E-ORG 、 O 德 B-ORG 国 M-ORG 大 M-ORG 陆 M-ORG 汽 M-ORG 车 M-ORG 亚 M-ORG 洲 M-ORG 总 M-ORG 部 E-ORG 亚 B-TITLE 太 M-TITLE 区 M-TITLE 执 M-TITLE 行 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE , O 西 B-ORG 门 M-ORG 子 M-ORG 中 M-ORG 国 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 输 B-ORG 配 M-ORG 电 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 西 B-ORG 门 M-ORG 子 M-ORG 基 M-ORG 础 M-ORG 设 M-ORG 施 M-ORG 与 M-ORG 城 M-ORG 市 M-ORG 业 M-ORG 务 M-ORG 领 M-ORG 域 E-ORG 亚 B-TITLE 太 M-TITLE 区 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 孙 B-NAME 大 M-NAME 伟 E-NAME 先 O 生 O : O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 7 O 3 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 北 B-ORG 京 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 孙 S-NAME 先 O 生 O 1 O 9 O 9 O 6 O 年 O 7 O 月 O - O 1 O 9 O 9 O 9 O 年 O 9 O 月 O 在 O 北 B-ORG 京 M-ORG 粮 M-ORG 食 M-ORG 集 M-ORG 团 E-ORG 组 O 织 O 干 O 部 O 处 O 任 O 科 B-TITLE 员 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 1 O 月 O - O 2 O 0 O 0 O 3 O 年 O 1 O 2 O 月 O 在 O 联 B-ORG 想 M-ORG 集 M-ORG 团 E-ORG 企 O 业 O I O T O 群 O 组 O 任 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 主 M-TITLE 管 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 1 O 2 O 月 O - O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 在 O 方 B-ORG 正 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 E-ORG 人 O 力 O 资 O 源 O 部 O 任 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 在 O 东 B-ORG 易 M-ORG 有 M-ORG 限 E-ORG 任 O 职 O , O 担 O 任 O 人 B-TITLE 力 M-TITLE 行 M-TITLE 政 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 监 E-TITLE , O 现 O 任 O 东 B-ORG 易 M-ORG 日 M-ORG 盛 M-ORG 家 M-ORG 居 M-ORG 装 M-ORG 饰 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 行 M-TITLE 政 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 张 B-NAME 焱 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 加 O 入 O 软 B-ORG 控 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 先 O 后 O 担 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 今 O , O 担 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 同 O 时 O 兼 O 任 O 橡 B-ORG 胶 M-ORG 谷 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE , O 青 B-ORG 岛 M-ORG 华 M-ORG 控 M-ORG 能 M-ORG 源 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 青 B-ORG 岛 M-ORG 软 M-ORG 控 M-ORG 机 M-ORG 电 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 大 B-ORG 连 M-ORG 天 M-ORG 晟 M-ORG 通 M-ORG 用 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 蒋 B-NAME 兴 M-NAME 灿 E-NAME 先 O 生 O : O 1 O 9 O 5 O 2 O 年 O 1 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 金 B-ORG 科 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 曾 O 先 O 后 O 在 O 四 B-ORG 川 M-ORG 石 M-ORG 油 M-ORG 局 M-ORG 地 M-ORG 质 M-ORG 调 M-ORG 查 M-ORG 处 E-ORG 、 O 四 B-ORG 川 M-ORG 石 M-ORG 油 M-ORG 局 M-ORG 仪 M-ORG 器 M-ORG 厂 E-ORG 工 O 作 O , O 历 O 任 O 重 B-ORG 庆 M-ORG 公 M-ORG 共 M-ORG 电 M-ORG 车 M-ORG 公 M-ORG 司 E-ORG 秘 B-TITLE 书 E-TITLE 、 O 副 B-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 5 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 期 O 间 O 历 O 任 O 重 B-ORG 庆 M-ORG 公 M-ORG 用 M-ORG 事 M-ORG 业 M-ORG 建 M-ORG 设 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 支 B-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 法 B-TITLE 定 M-TITLE 代 M-TITLE 表 M-TITLE 人 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 任 O 重 B-ORG 庆 M-ORG 水 M-ORG 务 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 集 B-TITLE 团 M-TITLE 专 M-TITLE 务 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 起 O , O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 谢 B-NAME 明 M-NAME 允 E-NAME , O 男 O , O 1 O 9 O 6 O 1 O 年 O 1 O 2 O 月 O 生 O , O 汉 B-RACE 族 E-RACE , O 大 B-EDU 专 M-EDU 毕 M-EDU 业 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 。 O 历 O 任 O 广 B-ORG 州 M-ORG 带 M-ORG 钢 M-ORG 总 M-ORG 厂 E-ORG 机 B-TITLE 修 M-TITLE 车 M-TITLE 间 M-TITLE 工 M-TITLE 人 E-TITLE 、 O 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 香 B-ORG 港 M-ORG 越 M-ORG 阜 M-ORG 企 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 外 B-TITLE 经 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 金 B-ORG 钧 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE , O 广 B-ORG 钢 M-ORG 集 M-ORG 团 E-ORG 进 B-TITLE 出 M-TITLE 口 M-TITLE 贸 M-TITLE 易 M-TITLE 部 M-TITLE 常 M-TITLE 务 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 广 B-ORG 州 M-ORG 钢 M-ORG 铁 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 金 M-ORG 钧 M-ORG 国 M-ORG 际 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 广 B-ORG 州 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 张 B-NAME 一 M-NAME 巍 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 7 O 7 O 年 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 3 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 任 O 职 O 于 O 在 O 深 B-ORG 圳 M-ORG 市 M-ORG 华 M-ORG 为 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 曾 O 任 O 华 B-ORG 为 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 西 M-ORG 班 M-ORG 牙 M-ORG 代 M-ORG 表 M-ORG 处 E-ORG 及 O 东 B-ORG 欧 M-ORG 地 M-ORG 区 M-ORG 部 E-ORG 固 B-TITLE 网 M-TITLE 销 M-TITLE 售 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 至 O 今 O , O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 同 M-ORG 创 M-ORG 伟 M-ORG 业 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 梁 B-NAME 侠 E-NAME 女 O 士 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 女 O , O 出 O 生 O 于 O 1 O 9 O 5 O 9 O 年 O 9 O 月 O 2 O 8 O 日 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 E-EDU 。 O 该 O 独 O 立 O 董 O 事 O 由 O 公 O 司 O 董 O 事 O 会 O 提 O 名 O 委 O 员 O 会 O 提 O 名 O , O 经 O 公 O 司 O 2 O 0 O 1 O 2 O 年 O 第 O 二 O 次 O 临 O 时 O 股 O 东 O 大 O 会 O 一 O 致 O 通 O 过 O , O 并 O 经 O 公 O 司 O 2 O 0 O 1 O 2 O 年 O 年 O 度 O 股 O 东 O 大 O 会 O 一 O 致 O 通 O 过 O , O 任 O 期 O 自 O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 到 O 2 O 0 O 1 O 6 O 年 O 5 O 月 O 。 O 梁 B-NAME 侠 E-NAME 女 O 士 O 为 O 公 B-ORG 司 E-ORG 现 O 任 O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 外 O , O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 职 O 深 B-ORG 圳 M-ORG 市 M-ORG 深 M-ORG 信 M-ORG 泰 M-ORG 丰 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 1 O 月 O 至 O 今 O 任 O 职 O 深 B-ORG 圳 M-ORG 市 M-ORG 深 M-ORG 信 M-ORG 泰 M-ORG 丰 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 委 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 袁 B-NAME 志 M-NAME 刚 E-NAME , O 男 O , O 出 O 生 O 于 O 1 O 9 O 7 O 2 O 年 O 1 O 0 O 月 O 2 O 0 O 日 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 0 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 4 O 月 O , O 任 O 东 B-ORG 莞 M-ORG 市 M-ORG 君 M-ORG 德 M-ORG 富 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 3 O 月 O , O 任 O 东 B-ORG 莞 M-ORG 市 M-ORG 景 M-ORG 瑞 M-ORG 实 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 至 O 今 O , O 任 O 广 B-ORG 汇 M-ORG 科 M-ORG 技 M-ORG 融 M-ORG 资 M-ORG 担 M-ORG 保 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 0 O 月 O 至 O 今 O 担 O 任 O 广 B-ORG 东 M-ORG 银 M-ORG 禧 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 李 B-NAME 力 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 北 B-ORG 京 M-ORG 邮 M-ORG 电 M-ORG 大 M-ORG 学 E-ORG 通 B-PRO 信 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO 学 B-EDU 士 E-EDU , O 美 B-ORG 国 M-ORG 福 M-ORG 坦 M-ORG 莫 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU 。 O 1 O 9 O 9 O 6 O 年 O 至 O 1 O 9 O 9 O 9 O 年 O 历 O 任 O 中 B-ORG 国 M-ORG 光 M-ORG 大 M-ORG 国 M-ORG 际 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 M-ORG 国 M-ORG 信 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 中 B-ORG 国 M-ORG 联 M-ORG 通 M-ORG 云 M-ORG 南 M-ORG 省 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 至 O 2 O 0 O 0 O 1 O 年 O 供 O 职 O 于 O I B-ORG T M-ORG E M-ORG L M-ORG I M-ORG W M-ORG E M-ORG B M-ORG 公 M-ORG 司 E-ORG ( O 中 O 华 O 区 O ) O 任 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 北 B-ORG 京 M-ORG 银 M-ORG 科 M-ORG 博 M-ORG 星 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 北 B-ORG 京 M-ORG 佳 M-ORG 讯 M-ORG 飞 M-ORG 鸿 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 黄 B-NAME 颂 M-NAME 恩 E-NAME 先 O 生 O , O 1 O 9 O 4 O 3 O 年 O 3 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 副 B-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 6 O 5 O 年 O 毕 O 业 O 于 O 成 B-ORG 都 M-ORG 电 M-ORG 讯 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 M-ORG 二 M-ORG 系 E-ORG , O 1 O 9 O 6 O 8 O 年 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 工 M-ORG 业 M-ORG 学 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 部 E-ORG , O 1 O 9 O 8 O 1 O 年 O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG , O 获 O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O 国 B-ORG 防 M-ORG 科 M-ORG 工 M-ORG 委 M-ORG 第 M-ORG 七 M-ORG ○ M-ORG 五 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 助 B-TITLE 工 E-TITLE , O 中 B-ORG 国 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 电 M-ORG 子 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 助 B-TITLE 研 E-TITLE 、 O 副 B-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 大 M-ORG 通 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 福 B-ORG 建 M-ORG 省 M-ORG 工 M-ORG 程 M-ORG 咨 M-ORG 询 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 马 B-ORG 来 M-ORG 西 M-ORG 亚 M-ORG G M-ORG R M-ORG E M-ORG E M-ORG N M-ORG E M-ORG V M-ORG E M-ORG R M-ORG 公 M-ORG 司 E-ORG 特 B-TITLE 邀 M-TITLE 工 M-TITLE 作 M-TITLE 专 M-TITLE 家 E-TITLE , O 福 B-ORG 建 M-ORG 省 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 业 M-ORG 厅 E-ORG 副 B-TITLE 厅 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 福 B-ORG 建 M-ORG 省 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 厅 E-ORG 助 B-TITLE 理 M-TITLE 巡 M-TITLE 视 M-TITLE 员 E-TITLE ; O 第 B-ORG 八 M-ORG 届 M-ORG 福 M-ORG 建 M-ORG 省 M-ORG 政 M-ORG 协 E-ORG 委 B-TITLE 员 E-TITLE 、 O 第 B-ORG 六 M-ORG 届 M-ORG 福 M-ORG 建 M-ORG 省 M-ORG 科 M-ORG 协 E-ORG 委 B-TITLE 员 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 电 M-ORG 子 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O " B-ORG 数 M-ORG 字 M-ORG 福 M-ORG 建 M-ORG " M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 韩 B-NAME 保 M-NAME 新 E-NAME 先 O 生 O , O 生 O 于 O 1 O 9 O 6 O 1 O 年 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 2 O 年 O 加 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 工 B-TITLE 艺 M-TITLE 员 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 设 B-TITLE 备 M-TITLE 管 M-TITLE 理 M-TITLE 员 E-TITLE 、 O 大 B-TITLE 班 M-TITLE 长 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 山 B-ORG 东 M-ORG 太 M-ORG 阳 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 现 O 任 O 兖 B-ORG 州 M-ORG 市 M-ORG 旭 M-ORG 东 M-ORG 浆 M-ORG 纸 M-ORG 销 M-ORG 售 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 兖 B-ORG 州 M-ORG 天 M-ORG 章 M-ORG 纸 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 山 B-ORG 东 M-ORG 太 M-ORG 阳 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 李 B-NAME 新 M-NAME 胜 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 9 O 年 O 1 O 2 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 临 B-ORG 沂 M-ORG 江 M-ORG 泰 M-ORG 铝 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 O 事 O 科 O 任 O 劳 B-TITLE 资 M-TITLE 员 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 等 O 职 O , O 现 O 任 O 华 B-ORG 盛 M-ORG 江 M-ORG 泉 M-ORG 集 M-ORG 团 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 山 B-ORG 东 M-ORG 江 M-ORG 泉 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 乐 B-NAME 嘉 M-NAME 明 E-NAME 先 O 生 O : O 1 O 9 O 6 O 2 O 年 O 8 O 月 O 出 O 生 O , O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 理 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU 、 O 美 B-ORG 国 M-ORG 罗 M-ORG 特 M-ORG 格 M-ORG 斯 M-ORG 州 M-ORG 立 M-ORG 大 M-ORG 学 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU 。 O 曾 O 先 O 后 O 担 O 任 O 摩 B-ORG 托 M-ORG 罗 M-ORG 拉 E-ORG 亚 B-TITLE 太 M-TITLE 区 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 摩 B-ORG 托 M-ORG 罗 M-ORG 拉 M-ORG 中 M-ORG 国 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 东 B-TITLE 区 M-TITLE 销 M-TITLE 售 M-TITLE 与 M-TITLE 市 M-TITLE 场 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 诺 B-ORG 基 M-ORG 亚 M-ORG 中 M-ORG 国 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 东 B-TITLE 区 M-TITLE 客 M-TITLE 户 M-TITLE 及 M-TITLE 市 M-TITLE 场 M-TITLE 运 M-TITLE 营 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 三 B-ORG 星 M-ORG 中 M-ORG 国 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 三 B-ORG 星 M-ORG 电 M-ORG 子 M-ORG 中 M-ORG 国 M-ORG 区 M-ORG 移 M-ORG 动 M-ORG 通 M-ORG 信 M-ORG 事 M-ORG 业 M-ORG 部 E-ORG 销 B-TITLE 售 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O A B-ORG M M-ORG D M-ORG 中 M-ORG 国 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O A B-ORG M M-ORG D E-ORG 大 B-TITLE 中 M-TITLE 华 M-TITLE 区 M-TITLE 销 M-TITLE 售 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 至 O 今 O 担 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 爱 M-ORG 施 M-ORG 德 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 爱 M-ORG 施 M-ORG 德 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE 。 O 张 B-NAME 辉 E-NAME 先 O 生 O , O 1 O 9 O 6 O 0 O 年 O 1 O 2 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 国 M-TITLE 际 M-TITLE 财 M-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 师 E-TITLE ( O S B-TITLE I M-TITLE F M-TITLE M E-TITLE ) O 。 O 现 O 任 O 宜 B-ORG 宾 M-ORG 五 M-ORG 粮 M-ORG 液 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 宜 B-ORG 宾 M-ORG 市 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 宜 B-ORG 宾 M-ORG 市 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 宜 B-ORG 宾 M-ORG 市 M-ORG 金 M-ORG 发 M-ORG 建 M-ORG 设 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 曾 O 任 O 宜 B-ORG 宾 M-ORG 市 M-ORG 政 M-ORG 府 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE ( O 自 O 2 O 0 O 0 O 7 O 年 O 至 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 正 B-TITLE 处 M-TITLE 级 E-TITLE ) O , O 宜 B-ORG 宾 M-ORG 市 M-ORG 政 M-ORG 府 M-ORG 驻 M-ORG 成 M-ORG 都 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 主 B-TITLE 任 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 兼 O 任 O 宜 B-ORG 宾 M-ORG 市 M-ORG 政 M-ORG 府 E-ORG 所 O 属 O 的 O 成 B-ORG 都 M-ORG 五 M-ORG 粮 M-ORG 液 M-ORG 大 M-ORG 酒 M-ORG 店 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 7 O 月 O 起 O 任 O 宜 B-ORG 宾 M-ORG 市 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 宜 B-ORG 宾 M-ORG 市 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 8 O 月 O 起 O 任 O 宜 B-ORG 宾 M-ORG 市 M-ORG 金 M-ORG 发 M-ORG 建 M-ORG 设 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 胡 B-NAME 刚 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 8 O 年 O 1 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 职 O 称 O 。 O 2 O 0 O 0 O 8 O 年 O 任 O 沙 B-ORG 湾 M-ORG 盖 M-ORG 瑞 M-ORG 乳 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 及 O 沙 B-ORG 湾 M-ORG 天 M-ORG 润 M-ORG 生 M-ORG 物 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 润 M-ORG 生 M-ORG 物 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 同 O 时 O 兼 O 任 O 上 B-ORG 述 M-ORG 两 M-ORG 个 M-ORG 子 M-ORG 公 M-ORG 司 E-ORG 的 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 润 M-ORG 乳 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 仁 M-NAME 虎 E-NAME 先 O 生 O , O 1 O 9 O 6 O 3 O 年 O 1 O 1 O 月 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 毕 O 业 O 于 O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 班 E-EDU , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU , O 现 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 振 B-ORG 东 M-ORG 集 M-ORG 团 E-ORG 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 S-NAME 先 O 生 O 自 O 1 O 9 O 9 O 6 O 年 O 加 O 入 O 振 B-ORG 东 M-ORG 集 M-ORG 团 E-ORG 以 O 来 O , O 长 O 期 O 负 O 责 O 集 O 团 O 财 O 务 O 工 O 作 O , O 历 O 任 O 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 经 B-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O , O 拥 O 有 O 丰 O 富 O 的 O 企 O 业 O 财 O 务 O 管 O 理 O 经 O 验 O 。 O 邵 B-NAME 淑 M-NAME 婉 E-NAME 女 O 士 O , O 1 O 9 O 7 O 7 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 现 O 任 O 广 B-ORG 东 M-ORG 威 M-ORG 奇 M-ORG 材 M-ORG 料 M-ORG 电 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 任 O 职 O 广 B-ORG 东 M-ORG 威 M-ORG 奇 M-ORG 材 M-ORG 料 M-ORG 电 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 中 B-NAME 山 M-NAME 太 M-NAME 郎 E-NAME ( O T B-NAME A M-NAME R M-NAME O M-NAME N M-NAME A M-NAME K M-NAME A M-NAME Y M-NAME A M-NAME M M-NAME A E-NAME ) O 先 O 生 O 1 O 9 O 5 O 5 O 年 O 9 O 月 O 1 O 8 O 日 O 出 O 生 O , O 国 B-CONT 籍 M-CONT : M-CONT 日 M-CONT 本 E-CONT 。 O 1 O 9 O 8 O 0 O 年 O 3 O 毕 O 业 O 于 O 早 B-ORG 稻 M-ORG 田 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 务 M-ORG 部 E-ORG 。 O 1 O 9 O 8 O 0 O 年 O 4 O 月 O , O 任 O 职 O 日 B-ORG 产 M-ORG 汽 M-ORG 车 M-ORG 公 M-ORG 司 E-ORG 。 O 1 O 9 O 9 O 5 O 年 O 7 O 月 O , O 日 B-ORG 产 M-ORG 汽 M-ORG 车 E-ORG 中 B-TITLE 近 M-TITLE 东 M-TITLE 南 M-TITLE 非 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 主 M-TITLE 担 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 7 O 月 O , O 派 O 驻 O 南 B-ORG 非 M-ORG 日 M-ORG 产 E-ORG 任 O 经 B-TITLE 营 M-TITLE 室 M-TITLE 室 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 1 O 月 O 产 B-ORG 汽 M-ORG 车 E-ORG 企 B-TITLE 划 M-TITLE 室 M-TITLE 主 M-TITLE 担 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 4 O 月 O , O 日 B-ORG 产 M-ORG 汽 M-ORG 车 E-ORG 企 B-TITLE 划 M-TITLE 室 M-TITLE 主 M-TITLE 管 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 4 O 日 B-ORG 产 M-ORG 汽 M-ORG 车 E-ORG 中 B-TITLE 国 M-TITLE 事 M-TITLE 业 M-TITLE 室 M-TITLE 主 M-TITLE 管 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 7 O 月 O , O 派 O 驻 O 东 B-ORG 风 M-ORG 汽 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 经 B-TITLE 营 M-TITLE 规 M-TITLE 划 M-TITLE 总 M-TITLE 部 M-TITLE 总 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 韩 B-NAME 豫 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 2 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 宁 B-ORG 夏 M-ORG 科 M-ORG 技 M-ORG 印 M-ORG 刷 M-ORG 厂 E-ORG 会 B-TITLE 计 E-TITLE ; O 宁 B-ORG 夏 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 应 M-ORG 用 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 开 B-TITLE 发 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 宁 B-ORG 夏 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 信 O 托 O 部 O 、 O 投 O 资 O 部 O 、 O 信 B-TITLE 贷 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 宁 B-ORG 夏 M-ORG 伊 M-ORG 斯 M-ORG 兰 M-ORG 国 M-ORG 际 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 物 O 业 O 部 O 、 O 投 B-TITLE 资 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 伊 B-ORG 斯 M-ORG 兰 M-ORG 国 M-ORG 际 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 投 B-TITLE 资 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 沈 B-NAME 明 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU 。 O 2 O 0 O 0 O 0 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 任 O 成 B-ORG 都 M-ORG 华 M-ORG 融 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 2 O 9 O 日 O 任 O 公 B-ORG 司 E-ORG 代 B-TITLE 理 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 2 O 9 O 日 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 2 O 4 O 日 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 2 O 9 O 日 O 至 O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 1 O 3 O 日 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 卢 B-NAME 立 M-NAME 新 E-NAME 先 O 生 O : O 1 O 9 O 6 O 6 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 博 B-EDU 士 E-EDU , O 大 B-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 任 O 江 B-ORG 西 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 师 E-TITLE 、 O 教 B-TITLE 导 M-TITLE 处 M-TITLE 主 M-TITLE 任 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 起 O 先 O 后 O 在 O 江 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 机 M-ORG 械 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 任 O 教 B-TITLE 师 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 院 B-TITLE 长 E-TITLE , O 兼 O 任 O 国 B-ORG 家 M-ORG 轻 M-ORG 工 M-ORG 业 M-ORG 包 M-ORG 装 M-ORG 制 M-ORG 品 M-ORG 质 M-ORG 量 M-ORG 监 M-ORG 督 M-ORG 检 M-ORG 测 M-ORG 中 M-ORG 心 E-ORG 和 O 全 B-ORG 国 M-ORG 轻 M-ORG 工 M-ORG 业 M-ORG 包 M-ORG 装 M-ORG 标 M-ORG 准 M-ORG 化 M-ORG 中 M-ORG 心 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 技 B-TITLE 术 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 现 O 任 O 无 B-ORG 锡 M-ORG 华 M-ORG 东 M-ORG 重 M-ORG 型 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 朱 B-NAME 兆 M-NAME 麒 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 十 B-ORG 四 M-ORG 所 M-ORG 研 M-ORG 究 M-ORG 室 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 国 B-ORG 睿 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 南 B-ORG 京 M-ORG 国 M-ORG 睿 M-ORG 微 M-ORG 波 M-ORG 器 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 邵 B-NAME 蓉 E-NAME : O 女 O , O 博 B-EDU 士 E-EDU 、 O 教 B-TITLE 授 E-TITLE 、 O 执 B-TITLE 业 M-TITLE 律 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 药 M-ORG 科 M-ORG 大 M-ORG 学 M-ORG 国 M-ORG 际 M-ORG 医 M-ORG 药 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 研 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 药 M-ORG 科 M-ORG 大 M-ORG 学 M-ORG 国 M-ORG 际 M-ORG 医 M-ORG 药 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE , O 兼 O 任 O 中 B-ORG 国 M-ORG 药 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 药 M-ORG 学 M-ORG 会 M-ORG 药 M-ORG 事 M-ORG 管 M-ORG 理 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 江 B-ORG 苏 M-ORG 药 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 江 B-ORG 苏 M-ORG 药 M-ORG 学 M-ORG 会 M-ORG 药 M-ORG 事 M-ORG 管 M-ORG 理 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE 等 O 职 O 。 O 陈 B-NAME 庇 M-NAME 昌 E-NAME 先 O 生 O , O 广 B-ORG 东 M-ORG 科 M-ORG 龙 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O M B-EDU B M-EDU A E-EDU , O F B-EDU C M-EDU C M-EDU A E-EDU , O F B-EDU H M-EDU K M-EDU S M-EDU A E-EDU , O A B-EDU C M-EDU I M-EDU S E-EDU , O H B-EDU K M-EDU I M-EDU C M-EDU S E-EDU , O 拥 O 有 O 多 O 年 O 之 O 财 O 务 O 管 O 理 O 、 O 投 O 资 O 及 O 企 O 业 O 融 O 资 O 经 O 验 O , O 曾 O 任 O 职 O 商 B-ORG 人 M-ORG 银 M-ORG 行 E-ORG 融 B-TITLE 资 M-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE , O 负 O 责 O 企 O 业 O 改 O 组 O 、 O 收 O 购 O 及 O 资 O 本 O 市 O 场 O 运 O 作 O 。 O 同 O 时 O 在 O 一 O 家 O 国 B-ORG 际 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 工 O 作 O , O 专 O 门 O 负 O 责 O 协 O 助 O 企 O 业 O 年 O 审 O 及 O 财 O 务 O 管 O 理 O 工 O 作 O 。 O 九 O 十 O 年 O 代 O 初 O , O 陈 S-NAME 先 O 生 O 在 O 香 B-ORG 港 M-ORG 联 M-ORG 合 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 担 O 任 O 上 B-TITLE 市 M-TITLE 科 M-TITLE 经 M-TITLE 理 E-TITLE , O 专 O 职 O 负 O 责 O 审 O 批 O 公 O 司 O 上 O 市 O 安 O 排 O 及 O 协 O 调 O , O 其 O 中 O 包 O 括 O 首 O 次 O 上 O 市 O 、 O 衍 O 生 O 工 O 具 O 发 O 行 O 、 O 股 O 份 O 回 O 购 O 等 O 。 O 陈 S-NAME 先 O 生 O 为 O 英 O 国 B-ORG 达 M-ORG 勒 M-ORG 姆 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 同 O 时 O 持 O 有 O 香 B-ORG 港 M-ORG 岭 M-ORG 南 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG 荣 O 誉 O 文 O 凭 O 、 O 英 B-ORG 国 M-ORG 公 M-ORG 认 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 公 M-ORG 会 E-ORG 及 O 公 B-ORG 认 M-ORG 香 M-ORG 港 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 公 M-ORG 会 E-ORG 资 B-TITLE 深 M-TITLE 会 M-TITLE 员 E-TITLE 、 O 英 B-ORG 国 M-ORG 及 M-ORG 香 M-ORG 港 M-ORG 公 M-ORG 司 M-ORG 秘 M-ORG 书 M-ORG 行 M-ORG 政 M-ORG 人 M-ORG 员 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE 等 O 专 O 业 O 资 O 格 O 。 O 此 O 外 O , O 还 O 拥 O 有 O 英 B-TITLE 国 M-TITLE 及 M-TITLE 香 M-TITLE 港 M-TITLE 执 M-TITLE 业 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 牌 O 照 O 。 O 陈 S-NAME 先 O 生 O 现 O 为 O 一 B-ORG 家 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE , O 亦 O 为 O 另 O 一 O 香 O 港 O 主 O 板 O 上 O 市 O 公 O 司 O 御 B-ORG 泰 M-ORG 国 M-ORG 际 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 万 M-NAME 山 E-NAME 先 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 曾 O 任 O 吉 B-ORG 林 M-ORG 造 M-ORG 纸 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 营 B-TITLE 林 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 吉 B-ORG 林 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 夏 B-NAME 玉 M-NAME 龙 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 1 O 年 O 1 O 月 O 出 O 生 O , O 1 O 9 O 9 O 0 O 年 O 8 O 月 O 参 O 加 O 工 O 作 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 自 O 2 O 0 O 0 O 5 O 年 O 起 O , O 任 O 青 B-ORG 松 M-ORG 建 M-ORG 化 M-ORG 全 M-ORG 资 M-ORG 子 M-ORG 公 M-ORG 司 M-ORG 库 M-ORG 车 M-ORG 青 M-ORG 松 M-ORG 水 M-ORG 泥 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 青 B-ORG 松 M-ORG 建 M-ORG 化 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 唐 B-NAME 福 M-NAME 生 E-NAME , O 1 O 9 O 9 O 6 O 年 O 7 O 月 O 毕 O 业 O 于 O 天 B-ORG 津 M-ORG 城 M-ORG 市 M-ORG 建 M-ORG 设 M-ORG 学 M-ORG 院 E-ORG , O 获 O 工 B-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 2 O 0 O 0 O 5 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 就 O 读 O 于 O 亚 B-ORG 洲 M-ORG ( M-ORG 澳 M-ORG 门 M-ORG ) M-ORG 国 M-ORG 际 M-ORG 公 M-ORG 开 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU 专 O 业 O , O 获 O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 原 O 任 O 天 B-ORG 津 M-ORG 创 M-ORG 业 M-ORG 环 M-ORG 保 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 唐 S-NAME 先 O 生 O 因 O 工 O 作 O 调 O 动 O , O 于 O 2 O 0 O 1 O 5 O 年 O 2 O 月 O 1 O 6 O 日 O 申 O 请 O 辞 O 去 O 天 B-ORG 津 M-ORG 创 M-ORG 业 M-ORG 环 M-ORG 保 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 徐 B-NAME 尚 M-NAME 林 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 6 O 年 O 9 O 月 O 出 O 生 O , O 山 B-LOC 东 M-LOC 济 M-LOC 阳 M-LOC 人 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 近 O 五 O 年 O 曾 O 任 O 山 B-ORG 东 M-ORG 银 M-ORG 座 M-ORG 商 M-ORG 城 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 物 B-TITLE 业 M-TITLE 本 M-TITLE 部 M-TITLE 副 M-TITLE 本 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 7 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 已 O 离 O 任 O 。 O 翟 B-NAME 大 M-NAME 福 E-NAME 先 O 生 O : O 1 O 9 O 7 O 2 O 年 O 1 O 0 O 月 O 出 O 生 O , O 1 O 9 O 9 O 2 O 年 O 9 O 月 O - O 1 O 9 O 9 O 6 O 年 O 7 O 月 O , O " O 合 B-ORG 肥 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG " O 管 O 理 O 工 O 程 O 系 O 工 B-PRO 业 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO , O 取 O 得 O 工 B-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 同 O 时 O 取 O 得 O 计 B-PRO 算 M-PRO 机 M-PRO 及 M-PRO 其 M-PRO 应 M-PRO 用 M-PRO 专 M-PRO 业 E-PRO 本 B-EDU 科 E-EDU 毕 O 业 O 资 O 格 O 。 O 2 O 0 O 0 O 0 O 年 O 8 O 月 O - O 2 O 0 O 0 O 3 O 年 O 1 O 月 O , O 财 B-ORG 政 M-ORG 部 M-ORG 财 M-ORG 政 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG , O 会 B-PRO 计 M-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 同 M-EDU 等 M-EDU 学 M-EDU 力 E-EDU 进 O 修 O 。 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O - O 2 O 0 O 0 O 9 O 年 O 9 O 月 O , O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 管 M-ORG 学 M-ORG 院 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU 。 O 2 O 0 O 0 O 3 O 年 O 8 O 月 O - O 现 O 在 O , O 任 O 职 O 于 O 华 B-ORG 夏 M-ORG 幸 M-ORG 福 M-ORG 基 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 董 B-TITLE 事 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 6 O 月 O - O 2 O 0 O 0 O 3 O 年 O 7 O 月 O , O 中 B-ORG 信 M-ORG 集 M-ORG 团 M-ORG 文 M-ORG 化 M-ORG 传 M-ORG 媒 M-ORG 公 M-ORG 司 E-ORG , O 计 B-TITLE 财 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 6 O 月 O - O 2 O 0 O 0 O 2 O 年 O 6 O 月 O , O 青 B-ORG 鸟 M-ORG 寰 M-ORG 宇 M-ORG 消 M-ORG 防 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 财 B-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE 。 O 1 O 9 O 9 O 8 O 年 O 6 O 月 O - O 1 O 9 O 9 O 9 O 年 O 6 O 月 O , O S B-ORG c M-ORG a M-ORG n M-ORG w M-ORG e M-ORG l M-ORG l M-ORG 跨 M-ORG 国 M-ORG 公 M-ORG 司 E-ORG , O 会 B-TITLE 计 E-TITLE 。 O 1 O 9 O 9 O 6 O 年 O 7 O 月 O - O 1 O 9 O 9 O 8 O 年 O 6 O 月 O , O 中 B-ORG 国 M-ORG 航 M-ORG 天 M-ORG 机 M-ORG 电 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG ( M-ORG 2 M-ORG 3 M-ORG 9 M-ORG 厂 M-ORG ) E-ORG , O 电 B-TITLE 算 M-TITLE 化 M-TITLE 组 M-TITLE 组 M-TITLE 长 E-TITLE 。 O 吴 B-NAME 国 M-NAME 政 E-NAME 先 O 生 O , O 公 B-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 5 O 0 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 洛 B-ORG 阳 M-ORG 亚 M-ORG 宝 M-ORG 贸 M-ORG 易 M-ORG 公 M-ORG 司 E-ORG 上 B-TITLE 海 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 金 M-ORG 力 M-ORG 泰 M-ORG 百 M-ORG 货 M-ORG 商 M-ORG 行 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 金 B-ORG 力 M-ORG 泰 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 北 B-ORG 京 M-ORG 福 M-ORG 田 M-ORG 产 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 曾 B-NAME 雪 M-NAME 琴 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 1 O 年 O 5 O 月 O 1 O 9 O 日 O 出 O 生 O , O 毕 O 业 O 于 O 乐 B-ORG 山 M-ORG 师 M-ORG 范 M-ORG 学 M-ORG 院 E-ORG 。 O 2 O 0 O 0 O 4 O 年 O 1 O 1 O 月 O 起 O 任 O 热 B-ORG 键 M-ORG 科 M-ORG 技 E-ORG 生 B-TITLE 产 M-TITLE 主 M-TITLE 管 E-TITLE , O 现 O 任 O 深 B-ORG 圳 M-ORG 雷 M-ORG 柏 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 志 M-NAME 军 E-NAME , O 男 O , O 1 O 9 O 7 O 4 O 年 O 4 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 毕 O 业 O 于 O 山 B-ORG 东 M-ORG 大 M-ORG 学 E-ORG 财 B-PRO 务 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 3 O 年 O 起 O 就 O 职 O 于 O 烟 B-ORG 台 M-ORG 东 M-ORG 海 M-ORG 驾 M-ORG 驶 M-ORG 培 M-ORG 训 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 。 O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 至 O 今 O 就 O 职 O 于 O 公 B-ORG 司 M-ORG 报 M-ORG 运 M-ORG 物 M-ORG 流 M-ORG 部 E-ORG 。 O 烟 B-ORG 台 M-ORG 杰 M-ORG 瑞 M-ORG 石 M-ORG 油 M-ORG 服 M-ORG 务 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 李 B-NAME 钟 M-NAME 民 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 7 O 0 O 年 O 6 O 月 O 出 O 生 O ; O 1 O 9 O 7 O 7 O 年 O 9 O 月 O 至 O 1 O 9 O 8 O 2 O 年 O 7 O 月 O 就 O 读 O 于 O 昆 B-ORG 明 M-ORG 市 M-ORG 韶 M-ORG 山 M-ORG 小 M-ORG 学 E-ORG ; O 1 O 9 O 8 O 2 O 年 O 9 O 月 O 至 O 1 O 9 O 8 O 4 O 年 O 7 O 月 O 就 O 读 O 于 O 昆 B-ORG 明 M-ORG 市 M-ORG 第 M-ORG 3 M-ORG 2 M-ORG 中 M-ORG 学 E-ORG , O 1 O 9 O 8 O 4 O 年 O 9 O 月 O 至 O 1 O 9 O 8 O 9 O 年 O 7 O 月 O 就 O 读 O 于 O 昆 B-ORG 明 M-ORG 市 M-ORG 第 M-ORG 8 M-ORG 中 M-ORG 学 E-ORG ; O 1 O 9 O 8 O 9 O 年 O 9 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 7 O 月 O 就 O 读 O 于 O 电 B-ORG 子 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 昆 M-ORG 明 M-ORG 分 M-ORG 部 E-ORG ; O 1 O 9 O 9 O 2 O 年 O 6 O 月 O 至 O 1 O 9 O 9 O 6 O 年 O 1 O 0 O 月 O 在 O 云 B-ORG 南 M-ORG 省 M-ORG 机 M-ORG 电 M-ORG 技 M-ORG 术 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 工 O 地 O 区 O 性 O 作 O ; O 1 O 9 O 9 O 6 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 1 O 0 O 月 O 在 O 云 B-ORG 南 M-ORG 省 M-ORG 技 M-ORG 术 M-ORG 进 M-ORG 步 M-ORG 开 M-ORG 发 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O ; O 2 O 0 O 0 O 0 O 年 O 1 O 0 O 月 O 至 O 今 O 在 O 云 B-ORG 南 M-ORG 省 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 现 O 任 O 云 B-ORG 南 M-ORG 省 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 汪 B-NAME 群 M-NAME 斌 E-NAME 先 O 生 O , O 1 O 9 O 6 O 9 O 年 O 1 O 0 O 月 O 出 O 生 O , O 1 O 9 O 9 O 1 O 年 O 7 O 月 O 获 O 得 O 复 B-ORG 旦 M-ORG 大 M-ORG 学 E-ORG 的 O 理 B-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 上 B-ORG 海 M-ORG 复 M-ORG 星 M-ORG 医 M-ORG 药 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 汪 S-NAME 先 O 生 O 于 O 1 O 9 O 9 O 4 O 年 O 1 O 月 O 加 O 入 O 本 B-ORG 集 M-ORG 团 E-ORG , O 自 O 1 O 9 O 9 O 5 O 年 O 5 O 月 O 3 O 1 O 日 O 起 O 获 O 委 O 任 O 为 O 董 B-TITLE 事 E-TITLE 。 O 汪 S-NAME 先 O 生 O 曾 O 于 O 1 O 9 O 9 O 5 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 期 O 间 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 之 O 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 并 O 于 O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 期 O 间 O 担 O 任 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 汪 S-NAME 先 O 生 O 现 O 为 O 联 O 交 O 所 O 上 O 市 O 公 O 司 O 复 B-ORG 星 M-ORG 国 M-ORG 际 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 股 O 份 O 代 O 号 O : O 0 O 0 O 6 O 5 O 6 O ) O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 及 O 总 B-TITLE 裁 E-TITLE ; O 联 B-ORG 交 M-ORG 所 M-ORG 上 M-ORG 市 M-ORG 公 M-ORG 司 M-ORG 国 M-ORG 药 M-ORG 控 M-ORG 股 E-ORG ( O 股 O 份 O 代 O 号 O : O 0 O 1 O 0 O 9 O 9 O ) O 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 上 B-ORG 证 M-ORG 所 M-ORG 上 M-ORG 市 M-ORG 公 M-ORG 司 M-ORG 羚 M-ORG 锐 M-ORG 制 M-ORG 药 E-ORG ( O 股 O 份 O 代 O 号 O : O 6 O 0 O 0 O 2 O 8 O 5 O ) O 董 B-TITLE 事 E-TITLE ; O 复 B-ORG 地 M-ORG 集 M-ORG 团 E-ORG ( O 于 O 2 O 0 O 1 O 1 O 年 O 5 O 月 O 自 O 联 O 交 O 所 O 摘 O 牌 O ) O 董 B-TITLE 事 E-TITLE ; O 南 B-ORG 京 M-ORG 南 M-ORG 钢 M-ORG 钢 M-ORG 铁 M-ORG 联 M-ORG 合 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O F B-ORG i M-ORG d M-ORG e M-ORG l M-ORG i M-ORG d M-ORG a M-ORG d M-ORG e M-ORG - M-ORG C M-ORG o M-ORG m M-ORG p M-ORG a M-ORG n M-ORG h M-ORG i M-ORG a M-ORG d M-ORG e M-ORG S M-ORG e M-ORG g M-ORG u M-ORG r M-ORG o M-ORG s M-ORG , M-ORG S M-ORG . M-ORG A M-ORG . E-ORG 董 B-TITLE 事 E-TITLE ; O M B-ORG u M-ORG l M-ORG t M-ORG i M-ORG c M-ORG a M-ORG r M-ORG e M-ORG - M-ORG S M-ORG e M-ORG g M-ORG u M-ORG r M-ORG o M-ORG s M-ORG d M-ORG e M-ORG S M-ORG a M-ORG ú M-ORG d M-ORG e M-ORG , M-ORG S M-ORG . M-ORG A M-ORG . E-ORG 董 B-TITLE 事 E-TITLE ; O C B-ORG a M-ORG r M-ORG e M-ORG s M-ORG - M-ORG C M-ORG o M-ORG m M-ORG p M-ORG a M-ORG n M-ORG h M-ORG i M-ORG a M-ORG d M-ORG e M-ORG S M-ORG e M-ORG g M-ORG u M-ORG r M-ORG o M-ORG s M-ORG , M-ORG S M-ORG . M-ORG A M-ORG . E-ORG 董 B-TITLE 事 E-TITLE 及 O R B-ORG O M-ORG C M-ORG O M-ORG i M-ORG l M-ORG C M-ORG o M-ORG m M-ORG p M-ORG a M-ORG n M-ORG y M-ORG L M-ORG i M-ORG m M-ORG i M-ORG t M-ORG e M-ORG d E-ORG 董 B-TITLE 事 E-TITLE 以 O 及 O 鼎 B-ORG 睿 M-ORG 再 M-ORG 保 M-ORG 险 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 汪 S-NAME 先 O 生 O 现 O 为 O 上 B-ORG 海 M-ORG 市 M-ORG 生 M-ORG 物 M-ORG 医 M-ORG 药 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 名 B-TITLE 誉 M-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 商 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 及 O 上 B-ORG 海 M-ORG 湖 M-ORG 州 M-ORG 商 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 。 O 方 B-NAME 兆 M-NAME 本 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 6 O 年 O 获 O 美 B-ORG 国 M-ORG 匹 M-ORG 兹 M-ORG 堡 M-ORG 大 M-ORG 学 E-ORG 统 B-PRO 计 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 1 O 9 O 9 O 0 O 年 O 加 B-ORG 拿 M-ORG 大 M-ORG 温 M-ORG 哥 M-ORG 华 M-ORG U M-ORG B M-ORG C M-ORG 大 M-ORG 学 E-ORG 访 O 问 O 讲 O 学 O 。 O 现 O 任 O 中 B-ORG 国 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 现 M-ORG 场 M-ORG 统 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 美 B-ORG 国 M-ORG 当 M-ORG 代 M-ORG 统 M-ORG 计 M-ORG 索 M-ORG 引 M-ORG C M-ORG I M-ORG S E-ORG 通 B-TITLE 讯 M-TITLE 编 M-TITLE 辑 E-TITLE , O 为 O 美 B-ORG 国 M-ORG A M-ORG S M-ORG A M-ORG 、 M-ORG I M-ORG M M-ORG S E-ORG 会 B-TITLE 员 E-TITLE 。 O 程 B-NAME 家 M-NAME 安 E-NAME 先 O 生 O : O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 教 B-TITLE 授 E-TITLE 。 O 1 O 9 O 6 O 4 O 年 O 8 O 月 O 至 O 1 O 9 O 7 O 8 O 年 O 1 O 1 O 月 O 在 O 浙 B-ORG 江 M-ORG 嘉 M-ORG 兴 M-ORG 地 M-ORG 区 M-ORG 农 M-ORG 科 M-ORG 所 E-ORG 做 O 技 B-TITLE 术 M-TITLE 员 E-TITLE ; O 1 O 9 O 7 O 8 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O 9 O 月 O 在 O 浙 B-ORG 江 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG , O 历 O 任 O 讲 B-TITLE 师 E-TITLE 、 O 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 、 O 系 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 校 M-TITLE 长 E-TITLE 、 O 校 B-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 9 O 月 O 至 O 今 O , O 任 O 浙 B-ORG 江 M-ORG 大 M-ORG 学 E-ORG 副 B-TITLE 校 M-TITLE 长 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 。 O 是 O 中 B-ORG 国 M-ORG 水 M-ORG 稻 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE 、 O 中 B-ORG 科 M-ORG 院 M-ORG 上 M-ORG 海 M-ORG 昆 M-ORG 虫 M-ORG 所 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 李 B-NAME 华 M-NAME 夏 E-NAME , O 女 O , O 1 O 9 O 6 O 1 O 年 O 6 O 月 O 2 O 4 O 日 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 2 O 年 O 7 O 月 O 毕 O 业 O 于 O 重 B-ORG 庆 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 M-ORG 数 M-ORG 学 M-ORG 系 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 2 O 0 O 0 O 3 O 年 O 重 B-ORG 庆 M-ORG 大 M-ORG 学 M-ORG 贸 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 产 B-PRO 业 M-PRO 经 M-PRO 济 E-PRO , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 至 O 今 O 任 O 化 B-ORG 医 M-ORG 集 M-ORG 团 E-ORG 运 B-TITLE 行 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 6 O 月 O 至 O 今 O 任 O 重 B-ORG 庆 M-ORG 建 M-ORG 峰 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 徐 B-NAME 玉 M-NAME 锁 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 1 O 9 O 8 O 4 O 年 O 毕 O 业 O 于 O 西 B-ORG 北 M-ORG 电 M-ORG 讯 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 雷 B-PRO 达 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 、 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 2 O 0 O 0 O 5 O 年 O 1 O 月 O 获 O 得 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 高 B-PRO 级 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ( O E B-EDU M M-EDU B M-EDU A E-EDU ) O 。 O 未 O 拥 O 有 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 9 O 9 O 年 O 创 O 建 O 深 B-ORG 圳 M-ORG 市 M-ORG 远 M-ORG 望 M-ORG 谷 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 1 O 9 O 9 O 9 O 至 O 今 O 任 O 职 O 于 O 本 B-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE 。 O 杨 B-NAME 掌 M-NAME 怀 E-NAME 先 O 生 O , O 1 O 9 O 7 O 2 O 年 O 9 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 中 B-ORG 原 M-ORG 电 M-ORG 测 M-ORG 仪 M-ORG 器 M-ORG 厂 M-ORG 5 M-ORG 2 M-ORG 分 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE , O 技 B-TITLE 术 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 中 B-ORG 航 M-ORG 电 M-ORG 测 M-ORG 5 M-ORG 2 M-ORG 分 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 5 B-ORG 8 M-ORG 分 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 5 B-ORG 7 M-ORG 分 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 中 B-ORG 航 M-ORG 电 M-ORG 测 M-ORG 仪 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 卢 B-NAME 楚 M-NAME 隆 E-NAME , O 男 O , O 1 O 9 O 5 O 6 O 年 O 5 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 中 B-ORG 山 M-ORG 大 M-ORG 学 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU 课 O 程 O 高 O 级 O 研 O 修 O 班 O 、 O 管 O 理 O 哲 O 学 O 与 O 企 O 业 O 战 O 略 O 高 O 研 O 班 O 结 O 业 O 。 O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 卢 B-NAME 楚 M-NAME 隆 E-NAME 先 O 生 O 是 O 中 O 国 O 人 O 民 O 政 O 治 O 协 O 商 O 会 O 议 O 第 O 十 O 三 O 届 O 佛 B-ORG 山 M-ORG 市 M-ORG 顺 M-ORG 德 M-ORG 区 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 委 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 获 O 肇 O 庆 O 市 O “ O 荣 O 誉 O 市 O 民 O ” O 称 O 号 O , O 2 O 0 O 1 O 4 O 年 O 获 O “ O 台 O 山 O 市 O 第 O 五 O 批 O 荣 O 誉 O 市 O 民 O ” O 称 O 号 O 。 O 卢 B-NAME 楚 M-NAME 隆 E-NAME 先 O 生 O 还 O 担 O 任 O 广 B-ORG 东 M-ORG 万 M-ORG 和 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 广 B-ORG 东 M-ORG 万 M-ORG 和 M-ORG 电 M-ORG 气 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 广 B-ORG 东 M-ORG 万 M-ORG 和 M-ORG 新 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE ; O 广 B-ORG 东 M-ORG 鸿 M-ORG 特 M-ORG 精 M-ORG 密 M-ORG 技 M-ORG 术 M-ORG ( M-ORG 台 M-ORG 山 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 经 B-TITLE 理 E-TITLE ; O 佛 B-ORG 山 M-ORG 市 M-ORG 顺 M-ORG 德 M-ORG 区 M-ORG 德 M-ORG 和 M-ORG 恒 M-ORG 信 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 广 B-ORG 东 M-ORG 硕 M-ORG 富 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 广 B-ORG 东 M-ORG 南 M-ORG 方 M-ORG 中 M-ORG 宝 M-ORG 电 M-ORG 缆 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 佛 B-ORG 山 M-ORG 市 M-ORG 南 M-ORG 港 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 佛 B-ORG 山 M-ORG 市 M-ORG 顺 M-ORG 德 M-ORG 区 M-ORG 凯 M-ORG 汇 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 广 B-ORG 东 M-ORG 梅 M-ORG 赛 M-ORG 思 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 广 B-ORG 东 M-ORG 家 M-ORG 电 M-ORG 商 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 广 B-ORG 东 M-ORG 顺 M-ORG 德 M-ORG 工 M-ORG 商 M-ORG 联 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE ; O 江 B-ORG 门 M-ORG 顺 M-ORG 德 M-ORG 商 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 等 O 职 O 务 O 。 O 王 B-NAME 勇 E-NAME , O 男 O , O 1 O 9 O 7 O 0 O 年 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 现 O 任 O 大 B-ORG 连 M-ORG 獐 M-ORG 子 M-ORG 岛 M-ORG 渔 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 兼 O 任 O 加 B-TITLE 工 M-TITLE 事 M-TITLE 业 M-TITLE 一 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 5 O . O 0 O 3 O - O 2 O 0 O 0 O 7 O . O 1 O 2 O , O 任 O 大 B-ORG 连 M-ORG 獐 M-ORG 子 M-ORG 岛 M-ORG 渔 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 国 B-TITLE 际 M-TITLE 贸 M-TITLE 易 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 7 O . O 1 O 2 O - O 2 O 0 O 1 O 0 O . O 1 O 2 O , O 任 O 大 B-ORG 连 M-ORG 獐 M-ORG 子 M-ORG 岛 M-ORG 渔 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 加 B-TITLE 工 M-TITLE 事 M-TITLE 业 M-TITLE 一 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O . O 1 O 2 O 至 O 今 O , O 任 O 大 B-ORG 连 M-ORG 獐 M-ORG 子 M-ORG 岛 M-ORG 渔 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 兼 O 任 O 加 B-TITLE 工 M-TITLE 事 M-TITLE 业 M-TITLE 一 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 启 M-NAME 盛 E-NAME , O 男 O , O 1 O 9 O 6 O 4 O 年 O 1 O 2 O 月 O 出 O 生 O , O 土 B-RACE 家 M-RACE 族 E-RACE , O 湖 B-LOC 南 M-LOC 慈 M-LOC 利 M-LOC 人 E-LOC , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 0 O 月 O , O 任 O 湖 B-ORG 南 M-ORG 金 M-ORG 健 M-ORG 粮 M-ORG 油 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O , O 任 O 湖 B-ORG 南 M-ORG 金 M-ORG 健 M-ORG 米 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 任 O 湖 B-ORG 南 M-ORG 金 M-ORG 健 M-ORG 粮 M-ORG 油 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 至 O 今 O , O 任 O 金 B-ORG 健 M-ORG 米 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 其 O 中 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 兼 O 任 O 湖 B-ORG 南 M-ORG 金 M-ORG 健 M-ORG 粮 M-ORG 油 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 王 B-NAME 丽 M-NAME 梅 E-NAME 女 O 士 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 曾 O 就 O 职 O 于 O 深 B-ORG 圳 M-ORG 天 M-ORG 祥 M-ORG 质 M-ORG 量 M-ORG 技 M-ORG 术 M-ORG 服 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 美 B-ORG 国 M-ORG 友 M-ORG 邦 M-ORG 保 M-ORG 险 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 敦 B-ORG 天 M-ORG 礼 M-ORG 品 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 上 B-ORG 海 M-ORG 汤 M-ORG 臣 M-ORG 集 M-ORG 团 M-ORG 金 M-ORG 属 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 江 B-ORG 苏 M-ORG 索 M-ORG 普 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 等 O , O 2 O 0 O 0 O 9 O 年 O 2 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 起 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 王 B-NAME 丽 M-NAME 梅 E-NAME 女 O 士 O 与 O 本 O 公 O 司 O 控 O 股 O 股 O 东 O 、 O 实 O 际 O 控 O 制 O 人 O 及 O 持 O 有 O 公 O 司 O 5 O % O 以 O 上 O 股 O 份 O 的 O 股 O 东 O 不 O 存 O 在 O 关 O 联 O 关 O 系 O , O 与 O 其 O 他 O 董 O 事 O 、 O 监 O 事 O 、 O 高 O 管 O 不 O 存 O 在 O 关 O 联 O 关 O 系 O 。 O 除 O 上 O 述 O 任 O 职 O 外 O , O 最 O 近 O 五 O 年 O 未 O 在 O 其 O 他 O 机 O 构 O 担 O 任 O 董 O 事 O 、 O 监 O 事 O 、 O 高 O 级 O 管 O 理 O 人 O 员 O 。 O 朱 B-NAME 军 E-NAME 先 O 生 O , O 1 O 9 O 6 O 4 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 职 O 称 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 2 O 0 O 0 O 9 O 年 O 至 O 今 O , O 先 O 后 O 担 O 任 O 过 O 江 B-TITLE 西 M-TITLE 省 M-TITLE 宜 M-TITLE 春 M-TITLE 市 M-TITLE 袁 M-TITLE 州 M-TITLE 区 M-TITLE 人 M-TITLE 大 M-TITLE 常 M-TITLE 委 E-TITLE 、 O 宜 B-ORG 春 M-ORG 市 M-ORG 工 M-ORG 商 M-ORG 联 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 宜 B-ORG 春 M-ORG 市 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE , O 现 O 任 O 江 B-TITLE 西 M-TITLE 省 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 、 O 宜 B-TITLE 春 M-TITLE 市 M-TITLE 人 M-TITLE 大 M-TITLE 常 M-TITLE 委 E-TITLE 、 O 宜 B-ORG 春 M-ORG 市 M-ORG 无 M-ORG 党 M-ORG 派 M-ORG 高 M-ORG 级 M-ORG 知 M-ORG 识 M-ORG 分 M-ORG 子 M-ORG 联 M-ORG 谊 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 宜 B-ORG 春 M-ORG 市 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 民 M-TITLE 营 M-TITLE 经 M-TITLE 济 M-TITLE 组 M-TITLE 组 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 至 O 今 O 任 O 江 B-ORG 西 M-ORG 特 M-ORG 种 M-ORG 电 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 江 B-ORG 西 M-ORG 江 M-ORG 特 M-ORG 电 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 宜 B-ORG 春 M-ORG 江 M-ORG 特 M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 起 O 兼 O 任 O 江 B-ORG 西 M-ORG 江 M-ORG 特 M-ORG 锂 M-ORG 电 M-ORG 池 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 起 O 兼 O 任 O 江 B-ORG 西 M-ORG 江 M-ORG 特 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 邓 B-NAME 荔 M-NAME 遐 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 7 O 7 O 年 O 9 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 先 O 后 O 任 O 杭 B-ORG 州 M-ORG 巨 M-ORG 星 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 销 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 6 O 月 O 至 O 今 O , O 任 O 杭 B-ORG 州 M-ORG 巨 M-ORG 星 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 米 B-NAME 海 M-NAME 祥 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 3 O 年 O 7 O 月 O 1 O 2 O 日 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 曾 O 任 O 吉 B-ORG 林 M-ORG 吉 M-ORG 恩 M-ORG 镍 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 销 M-ORG 售 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 吉 B-ORG 林 M-ORG 吉 M-ORG 恩 M-ORG 镍 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 现 O 任 O 吉 B-ORG 林 M-ORG 吉 M-ORG 恩 M-ORG 镍 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 翼 E-NAME : O 男 O , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 E-EDU 。 O 2 O 0 O 0 O 3 O 年 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 0 O 月 O 份 O 任 O 广 B-ORG 东 M-ORG 君 M-ORG 言 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 M-TITLE 律 M-TITLE 师 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 1 O 1 O 月 O 份 O 至 O 今 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 大 M-ORG 成 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 M-TITLE 律 M-TITLE 师 E-TITLE , O 深 B-ORG 圳 M-ORG 证 M-ORG 券 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 网 B-TITLE 站 M-TITLE 专 M-TITLE 栏 M-TITLE 作 M-TITLE 者 E-TITLE , O 深 B-ORG 圳 M-ORG 证 M-ORG 券 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 证 B-TITLE 券 M-TITLE 教 M-TITLE 室 M-TITLE 丛 M-TITLE 书 M-TITLE 之 M-TITLE 一 M-TITLE 的 M-TITLE 《 M-TITLE 投 M-TITLE 资 M-TITLE 者 M-TITLE 维 M-TITLE 权 M-TITLE 2 M-TITLE 1 M-TITLE 讲 M-TITLE 》 M-TITLE 的 M-TITLE 作 M-TITLE 者 E-TITLE 。 O 曾 O 担 O 任 O 山 B-ORG 西 M-ORG 西 M-ORG 山 M-ORG 煤 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 0 O 0 O 0 O 9 O 8 O 3 O ) O 第 B-TITLE 二 M-TITLE 届 M-TITLE 和 M-TITLE 第 M-TITLE 三 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 担 O 任 O 山 B-ORG 西 M-ORG 焦 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 6 O 0 O 0 O 7 O 4 O 0 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 中 M-ORG 诺 M-ORG 通 M-ORG 讯 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 9 O 月 O 至 O 今 O 任 O 深 B-ORG 圳 M-ORG 中 M-ORG 恒 M-ORG 华 M-ORG 发 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 凌 B-NAME 伯 M-NAME 辉 E-NAME 先 O 生 O : O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 华 B-ORG 南 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 科 M-ORG 学 M-ORG 系 E-ORG 本 B-EDU 科 E-EDU 毕 O 业 O , O 2 O 0 O 0 O 8 O 年 O 广 B-ORG 东 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 项 B-PRO 目 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 E-EDU 毕 O 业 O , O 现 O 任 O 广 B-ORG 州 M-ORG 市 M-ORG 番 M-ORG 禺 M-ORG 通 M-ORG 信 M-ORG 管 M-ORG 道 M-ORG 建 M-ORG 设 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 凌 S-NAME 先 O 生 O 曾 O 在 O 中 B-ORG 国 M-ORG 银 M-ORG 行 M-ORG 番 M-ORG 禺 M-ORG 支 M-ORG 行 E-ORG 从 O 事 O 软 O 件 O 开 O 发 O 和 O 硬 O 件 O 及 O 网 O 络 O 维 O 护 O 工 O 作 O , O 曾 O 任 O 职 O 于 O 广 B-ORG 州 M-ORG 市 M-ORG 番 M-ORG 禺 M-ORG 区 M-ORG 信 M-ORG 息 M-ORG 化 M-ORG 办 M-ORG 公 M-ORG 室 M-ORG ( M-ORG 区 M-ORG 信 M-ORG 息 M-ORG 中 M-ORG 心 M-ORG ) E-ORG , O 先 O 后 O 就 O 任 O 广 B-ORG 州 M-ORG 星 M-ORG 海 M-ORG 传 M-ORG 媒 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 务 O 。 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O 起 O 任 O 佳 B-ORG 都 M-ORG 科 M-ORG 技 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 桂 M-NAME 霞 E-NAME 女 O 士 O , O 1 O 9 O 5 O 6 O 年 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 专 M-EDU 毕 M-EDU 业 E-EDU 。 O 1 O 9 O 8 O 2 O 年 O - O 1 O 9 O 9 O 1 O 年 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 朝 M-ORG 付 M-ORG 公 M-ORG 司 M-ORG 下 M-ORG 属 M-ORG 基 M-ORG 层 M-ORG 店 E-ORG 财 B-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE ; O 1 O 9 O 9 O 2 O - O 1 O 9 O 9 O 5 O 年 O 在 O 北 B-ORG 内 M-ORG 集 M-ORG 团 M-ORG 三 M-ORG 产 E-ORG 任 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 6 O 年 O - O 2 O 0 O 0 O 1 O 年 O 任 O 北 B-ORG 京 M-ORG 京 M-ORG 客 M-ORG 隆 M-ORG 集 M-ORG 团 E-ORG 下 B-TITLE 属 M-TITLE 财 M-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE / O 总 B-TITLE 帐 M-TITLE 主 M-TITLE 管 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 加 O 入 O 公 B-ORG 司 E-ORG , O 历 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 起 O 至 O 今 O 任 O 北 B-ORG 京 M-ORG 东 M-ORG 方 M-ORG 国 M-ORG 信 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 赵 B-NAME 小 M-NAME 青 E-NAME , O 女 O , O 1 O 9 O 5 O 5 O 年 O 1 O 2 O 月 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 在 O 马 B-ORG 鞍 M-ORG 山 M-ORG 市 M-ORG 第 M-ORG 一 M-ORG 建 M-ORG 材 M-ORG 厂 E-ORG 、 O 马 B-ORG 鞍 M-ORG 山 M-ORG 专 M-ORG 用 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 造 M-ORG 厂 E-ORG 工 O 作 O 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 马 B-ORG 鞍 M-ORG 山 M-ORG 华 M-ORG 神 M-ORG 建 M-ORG 材 M-ORG 工 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 郭 B-NAME 章 M-NAME 鹏 E-NAME 先 O 生 O , O 1 O 9 O 7 O 1 O 年 O 3 O 月 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 曾 O 任 O 中 B-ORG 共 M-ORG 北 M-ORG 京 M-ORG 市 M-ORG 委 M-ORG 办 M-ORG 公 M-ORG 厅 E-ORG 会 B-TITLE 议 M-TITLE 处 M-TITLE 主 M-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE , O 中 B-ORG 共 M-ORG 北 M-ORG 京 M-ORG 市 M-ORG 委 M-ORG 办 M-ORG 公 M-ORG 厅 E-ORG 副 B-TITLE 处 M-TITLE 级 E-TITLE 、 O 正 B-TITLE 处 M-TITLE 级 M-TITLE 秘 M-TITLE 书 E-TITLE , O 中 B-ORG 共 M-ORG 北 M-ORG 京 M-ORG 市 M-ORG 委 M-ORG 宣 M-ORG 传 M-ORG 部 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 张 B-NAME 元 M-NAME 领 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 国 B-ORG 投 M-ORG 电 M-ORG 力 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 程 B-NAME 友 M-NAME 海 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 青 B-ORG 海 M-ORG 省 M-ORG 黄 M-ORG 南 M-ORG 州 M-ORG 同 M-ORG 仁 M-ORG 县 M-ORG 司 M-ORG 法 M-ORG 局 E-ORG 科 B-TITLE 员 E-TITLE , O 青 B-ORG 海 M-ORG 汇 M-ORG 元 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 任 O 律 B-TITLE 师 E-TITLE 、 O 青 B-ORG 海 M-ORG 昆 M-ORG 宇 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 。 O 现 O 在 O 青 B-ORG 海 M-ORG 夏 M-ORG 都 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 担 O 任 O 律 B-TITLE 师 E-TITLE 、 O 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 任 O 青 B-ORG 海 M-ORG 盐 M-ORG 湖 M-ORG 钾 M-ORG 肥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 今 O 任 O 青 B-ORG 海 M-ORG 盐 M-ORG 湖 M-ORG 工 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 育 M-NAME 红 E-NAME , O 女 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 法 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 律 B-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 至 O 今 O 在 O 北 B-ORG 京 M-ORG 市 M-ORG 中 M-ORG 伦 M-ORG 金 M-ORG 通 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 执 O 业 O , O 现 O 任 O 牡 B-ORG 丹 M-ORG 江 M-ORG 恒 M-ORG 丰 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 殷 E-NAME : O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 浙 B-ORG 江 M-ORG 大 M-ORG 学 M-ORG 科 M-ORG 仪 M-ORG 系 E-ORG 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 、 O 历 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 基 M-ORG 础 M-ORG 公 M-ORG 司 E-ORG 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 铁 B-ORG 道 M-ORG 部 M-ORG 大 M-ORG 桥 M-ORG 局 M-ORG 机 M-ORG 施 M-ORG 公 M-ORG 司 E-ORG 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 汕 B-ORG 头 M-ORG 东 M-ORG 南 M-ORG 科 M-ORG 技 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 原 O 任 O 浙 B-ORG 江 M-ORG 浙 M-ORG 大 M-ORG 网 M-ORG 新 M-ORG 机 M-ORG 电 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 现 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 王 B-NAME 洋 E-NAME , O 男 O , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 曾 O 任 O 黑 B-ORG 龙 M-ORG 江 M-ORG 省 M-ORG 电 M-ORG 力 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 黑 B-ORG 龙 M-ORG 江 M-ORG 辰 M-ORG 能 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 华 M-ORG 电 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 贝 B-NAME 政 M-NAME 新 E-NAME , O 男 O , O 1 O 9 O 5 O 2 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 大 B-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 1 O 9 O 6 O 9 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 苏 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 E-ORG 讲 B-TITLE 师 E-TITLE 、 O 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 教 B-TITLE 授 E-TITLE ( O 财 O 务 O 方 O 向 O ) O 、 O 学 B-ORG 院 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 管 B-TITLE 理 M-TITLE 系 M-TITLE 党 M-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 苏 B-ORG 州 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 E-ORG 金 B-TITLE 融 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 苏 B-ORG 福 M-ORG 马 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 东 E-NAME 先 O 生 O : O 2 O 0 O 0 O 4 O 年 O 7 O 月 O 毕 O 业 O 于 O 天 B-ORG 津 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 自 B-PRO 动 M-PRO 化 M-PRO 专 M-PRO 业 E-PRO , O 获 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 0 O 4 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 7 O 月 O 任 O 职 O 于 O 陕 B-ORG 西 M-ORG 法 M-ORG 士 M-ORG 特 M-ORG 齿 M-ORG 轮 M-ORG 责 M-ORG 任 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 任 O 电 B-TITLE 气 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 7 O 月 O 进 O 入 O 西 B-ORG 安 M-ORG 宝 M-ORG 德 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 西 B-ORG 安 M-ORG 宝 M-ORG 德 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 参 O 与 O 研 O 发 O 了 O 包 O 括 O 国 O 内 O 首 O 套 O 9 O 0 O 0 O 0 O 米 O 钻 O 机 O 交 O 流 O 变 O 频 O 电 O 传 O 动 O 控 O 制 O 系 O 统 O 及 O 世 O 界 O 首 O 套 O 1 O 2 O 0 O 0 O 0 O 米 O 陆 O 地 O 交 O 流 O 变 O 频 O 钻 O 机 O 电 O 控 O 系 O 统 O 在 O 内 O 的 O 十 O 多 O 种 O 项 O 目 O 产 O 品 O 。 O 叶 B-NAME 明 M-NAME 星 E-NAME , O 男 O , O 高 B-EDU 中 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 芳 B-ORG 华 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 获 O 浙 O 江 O 省 O 办 O 厂 O 能 O 人 O 、 O 省 O 跨 O 世 O 纪 O 改 O 革 O 家 O 、 O 省 O 创 O 业 O 标 O 兵 O 称 O 号 O 。 O 李 B-NAME 世 M-NAME 壮 E-NAME , O 男 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 建 M-ORG 筑 M-ORG 机 M-ORG 械 M-ORG 动 M-ORG 力 M-ORG 公 M-ORG 司 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 主 B-TITLE 任 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 天 M-ORG 地 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 南 B-TITLE 湾 M-TITLE 项 M-TITLE 目 M-TITLE 部 M-TITLE 技 M-TITLE 术 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE ; O 项 B-TITLE 目 M-TITLE 开 M-TITLE 发 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 经 B-TITLE 理 E-TITLE ; O 西 B-ORG 安 M-ORG 千 M-ORG 禧 M-ORG 国 M-ORG 际 M-ORG 置 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 天 M-ORG 地 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 经 B-TITLE 营 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 连 B-ORG 云 M-ORG 港 M-ORG 天 M-ORG 地 M-ORG 经 M-ORG 纬 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 西 B-ORG 安 M-ORG 千 M-ORG 禧 M-ORG 国 M-ORG 际 M-ORG 置 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 天 M-ORG 地 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 小 B-NAME 六 M-NAME 修 M-NAME 一 M-NAME 郎 E-NAME : O 男 O , O 日 B-CONT 本 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 0 O 年 O 1 O 2 O 月 O 1 O 5 O 日 O 生 O 。 O 1 O 9 O 7 O 3 O 年 O 3 O 月 O 于 O 国 B-ORG 立 M-ORG 爱 M-ORG 媛 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 科 M-PRO 冶 M-PRO 金 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 同 O 年 O 4 O 月 O 进 O 入 O 大 B-ORG 阪 M-ORG 金 M-ORG 刚 M-ORG 石 M-ORG 工 M-ORG 业 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG ; O 1 O 9 O 8 O 5 O 年 O 1 O 月 O 担 O 任 O 锯 B-TITLE 片 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 技 M-TITLE 术 M-TITLE 科 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 1 O 9 O 8 O 9 O 年 O 1 O 月 O , O 担 O 任 O 锯 B-TITLE 片 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 技 M-TITLE 术 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 1 O 月 O 担 O 任 O 锯 B-TITLE 片 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 兼 O 静 B-TITLE 冈 M-TITLE 制 M-TITLE 作 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 6 O 月 O 担 O 任 O 联 B-ORG 合 M-ORG 材 M-ORG 料 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG 理 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 1 O 0 O 月 O 担 O 任 O 联 B-ORG 合 M-ORG 金 M-ORG 刚 M-ORG 石 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG 董 B-TITLE 事 M-TITLE 锯 M-TITLE 片 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 1 O 月 O 担 O 任 O 联 B-ORG 合 M-ORG 金 M-ORG 刚 M-ORG 石 M-ORG 株 M-ORG 式 M-ORG 会 M-ORG 社 E-ORG 常 B-TITLE 务 M-TITLE 董 M-TITLE 事 E-TITLE 兼 O 播 B-ORG 磨 M-ORG 制 M-ORG 作 M-ORG 所 E-ORG 业 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 月 O 至 O 今 O 任 O 日 B-ORG 本 M-ORG 联 M-ORG 合 M-ORG 材 M-ORG 料 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 今 O , O 任 O 河 B-ORG 南 M-ORG 黄 M-ORG 河 M-ORG 旋 M-ORG 风 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 孙 B-NAME 降 M-NAME 龙 E-NAME : O 男 O , O 1 O 9 O 6 O 8 O 年 O 8 O 月 O 出 O 生 O , O 1 O 9 O 9 O 2 O 年 O 毕 O 业 O 于 O 河 B-ORG 南 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 能 B-PRO 源 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO 。 O 现 O 任 O 河 B-ORG 南 M-ORG 豫 M-ORG 光 M-ORG 金 M-ORG 铅 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 河 B-ORG 南 M-ORG 豫 M-ORG 光 M-ORG 金 M-ORG 铅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 王 B-NAME 方 M-NAME 明 E-NAME 先 O 生 O , O 1 O 9 O 5 O 8 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 现 O 任 O 马 B-ORG 应 M-ORG 龙 M-ORG 药 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 曾 O 任 O 马 B-ORG 应 M-ORG 龙 M-ORG 药 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 行 B-TITLE 政 M-TITLE 事 M-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 等 O 职 O 务 O 。 O 李 B-NAME 秦 M-NAME 生 E-NAME : O 男 O , O 1 O 9 O 4 O 5 O 年 O 1 O 1 O 月 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 四 B-ORG 川 M-ORG 省 M-ORG 交 M-ORG 通 M-ORG 厅 M-ORG 汽 M-ORG 车 M-ORG 修 M-ORG 理 M-ORG 厂 E-ORG 生 B-TITLE 产 M-TITLE 调 M-TITLE 度 M-TITLE 员 E-TITLE 、 O 成 B-ORG 都 M-ORG 市 M-ORG 第 M-ORG 一 M-ORG 技 M-ORG 工 M-ORG 学 M-ORG 校 M-ORG 实 M-ORG 习 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 总 B-TITLE 务 M-TITLE 行 M-TITLE 政 M-TITLE 处 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 校 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 4 O 年 O 开 O 始 O 任 O 四 B-ORG 川 M-ORG 国 M-ORG 栋 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 至 O 2 O 0 O 0 O 5 O 年 O 5 O 月 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 三 M-TITLE 、 M-TITLE 第 M-TITLE 四 M-TITLE 、 M-TITLE 第 M-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 5 O 月 O 起 O 2 O 0 O 1 O 4 O 年 O 4 O 月 O 任 O 四 B-ORG 川 M-ORG 国 M-ORG 栋 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 七 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 建 M-NAME 防 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 未 O 拥 O 有 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 4 O 年 O 1 O 0 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 职 O 称 O 。 O 2 O 0 O 0 O 4 O 年 O 至 O 今 O 在 O 新 B-ORG 疆 M-ORG 西 M-ORG 部 M-ORG 牧 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 现 O 任 O 新 B-ORG 疆 M-ORG 西 M-ORG 部 M-ORG 牧 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 建 M-NAME 福 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 生 O 于 O 1 O 9 O 6 O 3 O 年 O 2 O 月 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 5 O 年 O 8 O 月 O 起 O 先 O 后 O 担 O 任 O 宏 B-ORG 达 M-ORG 高 M-ORG 科 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O , O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 9 O 月 O 任 O 宏 B-ORG 达 M-ORG 高 M-ORG 科 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 起 O 任 O 宏 B-ORG 达 M-ORG 高 M-ORG 科 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 现 O 任 O 宏 B-ORG 达 M-ORG 高 M-ORG 科 E-ORG 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 振 M-NAME 东 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 出 O 生 O 于 O 1 O 9 O 6 O 6 O 年 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 聚 B-ORG 龙 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 曾 O 任 O 鞍 B-ORG 山 M-ORG 一 M-ORG 工 M-ORG 技 M-ORG 术 M-ORG 中 M-ORG 心 E-ORG 传 B-TITLE 动 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 聚 B-ORG 龙 M-ORG 有 M-ORG 限 E-ORG 捆 B-TITLE 扎 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 综 B-TITLE 合 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 裘 B-NAME 伟 M-NAME 强 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 1 O 年 O 6 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 2 O 年 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG 毕 O 业 O 。 O 曾 O 担 O 任 O 上 B-ORG 海 M-ORG 农 M-ORG 学 M-ORG 院 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 高 M-ORG 科 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 中 B-ORG 纺 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 大 M-ORG 盛 M-ORG 资 M-ORG 产 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 彭 B-NAME 少 M-NAME 民 E-NAME 先 O 生 O , O 1 O 9 O 3 O 8 O 年 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 土 B-TITLE 木 M-TITLE 与 M-TITLE 建 M-TITLE 筑 M-TITLE 教 M-TITLE 授 E-TITLE , O 国 B-TITLE 家 M-TITLE 一 M-TITLE 级 M-TITLE 结 M-TITLE 构 M-TITLE 注 M-TITLE 册 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 武 B-ORG 汉 M-ORG 市 M-ORG 第 M-ORG 八 M-ORG 届 M-ORG 政 M-ORG 协 E-ORG 委 B-TITLE 员 E-TITLE 。 O 历 O 任 O 武 B-ORG 汉 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 土 M-ORG 木 M-ORG 与 M-ORG 建 M-ORG 筑 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 公 B-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-ORG 国 M-ORG 土 M-ORG 木 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 会 M-ORG 纤 M-ORG 维 M-ORG 混 M-ORG 凝 M-ORG 土 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 全 B-ORG 国 M-ORG 高 M-ORG 校 M-ORG 土 M-ORG 木 M-ORG 工 M-ORG 程 M-ORG 专 M-ORG 业 M-ORG 指 M-ORG 导 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 湖 B-ORG 北 M-ORG 省 M-ORG 土 M-ORG 建 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE , O 湖 B-ORG 北 M-ORG 省 M-ORG 工 M-ORG 程 M-ORG 建 M-ORG 设 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE 等 O 职 O 。 O 现 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 专 B-TITLE 家 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 邱 B-NAME 永 M-NAME 宁 E-NAME : O 男 O , O 1 O 9 O 7 O 0 O 年 O 3 O 月 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 本 B-EDU 科 E-EDU 毕 O 业 O 于 O 南 B-ORG 京 M-ORG 航 M-ORG 空 M-ORG 航 M-ORG 天 M-ORG 大 M-ORG 学 E-ORG , O 中 B-ORG 国 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 大 M-ORG 学 M-ORG 苏 M-ORG 州 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG M B-EDU B M-EDU A E-EDU 在 O 读 O , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 正 B-ORG 茂 M-ORG 集 M-ORG 团 M-ORG 正 M-ORG 茂 M-ORG 特 M-ORG 钢 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 正 B-ORG 茂 M-ORG 集 M-ORG 团 E-ORG 规 B-TITLE 划 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 项 M-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 正 B-ORG 茂 M-ORG 集 M-ORG 团 M-ORG 正 M-ORG 茂 M-ORG 日 M-ORG 立 M-ORG 造 M-ORG 船 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 华 B-ORG 力 M-ORG 电 M-ORG 机 M-ORG ( M-ORG 苏 M-ORG 州 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 凯 B-ORG 迩 M-ORG 必 M-ORG 液 M-ORG 压 M-ORG 工 M-ORG 业 M-ORG ( M-ORG 镇 M-ORG 江 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 江 B-ORG 苏 M-ORG 恒 M-ORG 立 M-ORG 高 M-ORG 压 M-ORG 油 M-ORG 缸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 立 M-ORG 新 E-ORG 董 B-TITLE 事 E-TITLE , O 现 O 任 O 江 B-ORG 苏 M-ORG 恒 M-ORG 立 M-ORG 高 M-ORG 压 M-ORG 油 M-ORG 缸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 恒 B-ORG 立 M-ORG 液 M-ORG 压 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 闻 B-NAME 连 M-NAME 茹 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 0 O 年 O 3 O 月 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O 。 O 2 O 0 O 0 O 2 O 年 O 至 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O 1 O 5 O 日 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 王 B-NAME 昕 E-NAME , O 律 B-TITLE 师 E-TITLE 。 O 曾 O 在 O 山 B-ORG 东 M-ORG 省 M-ORG 淄 M-ORG 博 M-ORG 市 M-ORG 法 M-ORG 律 M-ORG 顾 M-ORG 问 M-ORG 处 E-ORG 、 O 山 B-ORG 东 M-ORG 省 M-ORG 淄 M-ORG 博 M-ORG 市 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 山 B-ORG 东 M-ORG 致 M-ORG 公 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 任 O 律 B-TITLE 师 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 同 O 时 O 兼 O 任 O 山 B-ORG 东 M-ORG 天 M-ORG 矩 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 。 O 张 B-NAME 晓 M-NAME 荣 E-NAME : O 男 O , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 复 B-ORG 旦 M-ORG 大 M-ORG 学 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 上 M-ORG 会 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 江 B-ORG 苏 M-ORG 通 M-ORG 达 M-ORG 动 M-ORG 力 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 志 M-NAME 宇 E-NAME 先 O 生 O : O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 。 O 2 O 0 O 0 O 0 O 年 O 加 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 技 B-TITLE 术 M-TITLE 支 M-TITLE 持 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 开 B-TITLE 发 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O ; O 2 O 0 O 0 O 6 O 年 O 度 O 被 O 评 O 为 O 优 O 秀 O 干 O 部 O ; O 现 O 任 O 公 B-ORG 司 E-ORG 无 B-TITLE 线 M-TITLE 交 M-TITLE 换 M-TITLE 产 M-TITLE 品 M-TITLE 线 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 唐 B-NAME 劲 M-NAME 然 E-NAME , O 男 O , O 1 O 9 O 7 O 3 O 年 O 生 O , O 历 O 任 O 广 B-ORG 州 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 究 M-TITLE 部 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE , O 神 B-ORG 州 M-ORG 学 M-ORG 人 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 浙 B-ORG 江 M-ORG 省 M-ORG 升 M-ORG 华 M-ORG 拜 M-ORG 克 M-ORG 生 M-ORG 物 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE , O 现 O 任 O 浙 B-ORG 江 M-ORG 升 M-ORG 华 M-ORG 拜 M-ORG 克 M-ORG 生 M-ORG 物 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 上 B-ORG 海 M-ORG 壬 M-ORG 思 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 方 B-NAME 敏 M-NAME 宗 E-NAME 先 O 生 O , O 中 B-LOC 国 M-LOC 台 M-LOC 湾 M-LOC 省 M-LOC 籍 E-LOC , O 1 O 9 O 5 O 6 O 年 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU 。 O 1 O 9 O 8 O 4 O 年 O 至 O 1 O 9 O 9 O 3 O 年 O 任 O 鼎 B-ORG 强 M-ORG 电 M-ORG 子 M-ORG 半 M-ORG 导 M-ORG 体 E-ORG 事 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 9 O 5 O 年 O 至 O 2 O 0 O 0 O 0 O 年 O 任 O 强 B-ORG 茂 M-ORG 电 M-ORG 子 M-ORG ( M-ORG 股 M-ORG 份 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 台 B-ORG 湾 M-ORG 强 M-ORG 茂 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 裁 E-TITLE , O 台 B-ORG 湾 M-ORG 金 M-ORG 茂 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 2 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 1 O 0 O 月 O 任 O 宁 B-ORG 波 M-ORG 康 M-ORG 强 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 胡 B-NAME 颖 E-NAME , O 男 O , O 1 O 9 O 5 O 9 O 年 O 5 O 月 O 生 O , O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 、 O 副 B-TITLE 教 M-TITLE 授 E-TITLE , O 曾 O 任 O 北 B-ORG 京 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 材 M-ORG 料 M-ORG 物 M-ORG 理 M-ORG 系 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 北 B-ORG 京 M-ORG 创 M-ORG 格 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 二 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 三 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 任 O 北 B-ORG 京 M-ORG 国 M-ORG 寿 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 林 B-NAME 生 M-NAME 策 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 审 B-TITLE 计 M-TITLE 师 E-TITLE , O 历 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 现 O 任 O 海 B-ORG 南 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 华 B-NAME 伟 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 博 B-EDU 士 E-EDU 。 O 曾 O 任 O 南 B-ORG 京 M-ORG 下 M-ORG 关 M-ORG 发 M-ORG 电 M-ORG 厂 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 复 B-ORG 旦 M-ORG 大 M-ORG 学 M-ORG 金 M-ORG 融 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 副 B-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 7 O 月 O 至 O 今 O 任 O 华 B-ORG 东 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 M-ORG 东 M-ORG 方 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 学 M-ORG 院 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 院 M-TITLE 长 E-TITLE 、 O 华 B-ORG 东 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 房 B-TITLE 地 M-TITLE 产 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 1 O 5 O 日 O 起 O 任 O 西 B-ORG 藏 M-ORG 城 M-ORG 市 M-ORG 发 M-ORG 展 M-ORG 投 M-ORG 资 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 2 O 月 O 8 O 日 O 起 O 任 O 武 B-ORG 汉 M-ORG 国 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 建 M-NAME 平 E-NAME 先 O 生 O , O 现 O 任 O 中 B-ORG 国 M-ORG 远 M-ORG 洋 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 对 B-ORG 外 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 大 M-ORG 学 M-ORG 国 M-ORG 际 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 对 B-ORG 外 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 大 M-ORG 学 M-ORG 资 M-ORG 本 M-ORG 市 M-ORG 场 M-ORG 与 M-ORG 投 M-ORG 融 M-ORG 资 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 曾 O 任 O 对 B-ORG 外 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 大 M-ORG 学 M-ORG 国 M-ORG 际 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 研 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 系 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 等 O 职 O , O 目 O 前 O 兼 O 任 O 国 B-ORG 投 M-ORG 中 M-ORG 鲁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 华 B-ORG 峰 M-ORG 氨 M-ORG 纶 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 S-NAME 先 O 生 O 毕 O 业 O 于 O 对 B-ORG 外 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 大 M-ORG 学 E-ORG 跨 B-PRO 国 M-PRO 经 M-PRO 营 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 欧 B-NAME 炯 M-NAME 实 E-NAME , O 男 O 、 O 1 O 9 O 4 O 7 O 年 O 1 O 月 O 生 O , O 汉 B-RACE 族 E-RACE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 历 O 任 O 广 B-ORG 州 M-ORG 钢 M-ORG 铁 M-ORG 厂 E-ORG 组 B-TITLE 织 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 等 O 职 O , O 现 O 任 O 广 B-ORG 钢 M-ORG 集 M-ORG 团 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 郑 B-NAME 强 E-NAME 先 O 生 O , O 1 O 9 O 9 O 8 O 年 O 本 B-EDU 科 E-EDU 毕 O 业 O 于 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 会 B-PRO 计 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 2 O 0 O 1 O 5 O 年 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG A B-EDU C M-EDU C M-EDU A E-EDU 在 O 读 O , O 会 B-TITLE 计 M-TITLE 中 M-TITLE 级 E-TITLE 职 O 称 O , O 2 O 0 O 0 O 0 O 年 O - O 2 O 0 O 0 O 4 O 年 O 任 O 职 O 于 O 上 B-ORG 海 M-ORG 市 M-ORG 燃 M-ORG 料 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG , O 担 O 任 O 财 B-TITLE 务 M-TITLE 处 M-TITLE 核 M-TITLE 算 M-TITLE 主 M-TITLE 管 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O - O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 任 O 职 O 上 B-ORG 海 M-ORG 斯 M-ORG 米 M-ORG 克 M-ORG 建 M-ORG 筑 M-ORG 陶 M-ORG 瓷 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 担 O 任 O 财 B-TITLE 务 M-TITLE 分 M-TITLE 析 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 管 B-TITLE 理 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 7 O 月 O , O 加 O 入 O 公 B-ORG 司 E-ORG , O 2 O 0 O 1 O 1 O 年 O 3 O 月 O - O 2 O 0 O 1 O 4 O 年 O 8 O 月 O , O 担 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 一 O 职 O , O 2 O 0 O 1 O 4 O 年 O 8 O 月 O 至 O 今 O 担 O 任 O 上 B-ORG 海 M-ORG 安 M-ORG 诺 M-ORG 其 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 一 O 职 O , O 2 O 0 O 1 O 5 O 年 O 8 O 月 O 起 O 担 O 任 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 干 B-NAME 勇 E-NAME 先 O 生 O , O 工 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 国 B-TITLE 家 M-TITLE 有 M-TITLE 突 M-TITLE 出 M-TITLE 贡 M-TITLE 献 M-TITLE 中 M-TITLE 青 M-TITLE 年 M-TITLE 专 M-TITLE 家 E-TITLE , O 中 B-TITLE 国 M-TITLE 工 M-TITLE 程 M-TITLE 院 M-TITLE 院 M-TITLE 士 E-TITLE 。 O 曾 O 任 O 吉 B-ORG 林 M-ORG 天 M-ORG 宝 M-ORG 矿 M-ORG 机 M-ORG 修 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE , O 四 B-ORG 川 M-ORG 内 M-ORG 江 M-ORG 电 M-ORG 力 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE , O 钢 B-ORG 铁 M-ORG 研 M-ORG 究 M-ORG 总 M-ORG 院 E-ORG 冶 B-TITLE 金 M-TITLE 研 M-TITLE 究 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 钢 B-ORG 铁 M-ORG 研 M-ORG 究 M-ORG 总 M-ORG 院 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 院 M-TITLE 长 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 北 B-ORG 矿 M-ORG 磁 M-ORG 材 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 兼 O 任 O 钢 B-ORG 铁 M-ORG 研 M-ORG 究 M-ORG 总 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 安 B-ORG 泰 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 新 B-ORG 冶 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 连 B-ORG 铸 M-ORG 技 M-ORG 术 M-ORG 国 M-ORG 家 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 刘 B-NAME 韵 M-NAME 洁 E-NAME , O 男 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 6 O 8 O 年 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 大 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 物 M-ORG 理 M-ORG 系 E-ORG 。 O 1 O 9 O 8 O 3 O 年 O 1 O 月 O 至 O 1 O 9 O 9 O 3 O 年 O 1 O 1 O 月 O 先 O 后 O 担 O 任 O 邮 B-ORG 电 M-ORG 部 M-ORG 数 M-ORG 据 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 所 B-TITLE 长 E-TITLE , O 1 O 9 O 9 O 3 O 年 O 1 O 1 O 月 O 至 O 1 O 9 O 9 O 8 O 年 O 8 O 月 O 任 O 邮 B-ORG 电 M-ORG 部 M-ORG 电 M-ORG 信 M-ORG 总 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 8 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 4 O 月 O 担 O 任 O 邮 B-ORG 电 M-ORG 部 M-ORG 邮 M-ORG 政 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 规 M-ORG 划 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 1 O 2 O 月 O 先 O 后 O 担 O 任 O 联 B-ORG 通 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 1 O 2 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 韵 M-NAME 洁 E-NAME 先 O 生 O 有 O 3 O 4 O 年 O 丰 O 富 O 的 O 电 O 信 O 行 O 业 O 管 O 理 O 及 O 运 O 营 O 经 O 验 O , O 在 O 数 O 据 O 通 O 信 O 技 O 术 O 领 O 域 O 有 O 很 O 高 O 的 O 造 O 诣 O 。 O 刘 S-NAME 先 O 生 O 于 O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 退 O 休 O 。 O 卢 B-NAME 建 M-NAME 华 E-NAME , O 男 O , O 1 O 9 O 5 O 5 O 年 O 8 O 月 O 出 O 生 O , O M B-EDU B M-EDU A M-EDU 硕 M-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 1 O 年 O 加 O 入 O 韶 B-ORG 钢 E-ORG , O 1 O 9 O 9 O 7 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 历 O 任 O 韶 B-ORG 钢 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 至 O 今 O 兼 O 任 O 韶 B-ORG 关 M-ORG 钢 M-ORG 铁 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 杨 B-NAME 黎 M-NAME 升 E-NAME 先 O 生 O : O 铜 B-ORG 陵 M-ORG 有 M-ORG 色 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 6 O 3 O 年 O 9 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 机 B-TITLE 械 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 任 O 铜 B-ORG 陵 M-ORG 有 M-ORG 色 M-ORG 公 M-ORG 司 E-ORG 机 B-TITLE 动 M-TITLE 能 M-TITLE 源 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 任 O 铜 B-ORG 陵 M-ORG 有 M-ORG 色 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 机 M-TITLE 动 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 7 O 月 O 任 O 铜 B-ORG 陵 M-ORG 有 M-ORG 色 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 生 B-TITLE 产 M-TITLE 机 M-TITLE 动 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 至 O 今 O 任 O 铜 B-ORG 陵 M-ORG 有 M-ORG 色 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 5 O 年 O 3 O 月 O 任 O 铜 B-ORG 陵 M-ORG 有 M-ORG 色 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 王 B-NAME 跃 M-NAME 堂 E-NAME 先 O 生 O : O 1 O 9 O 6 O 3 O 年 O 生 O , O 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 具 O 有 O 独 O 立 O 董 O 事 O 资 O 格 O , O 自 O 2 O 0 O 0 O 9 O 年 O 3 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 S-NAME 先 O 生 O 任 O 南 B-ORG 京 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 会 B-TITLE 计 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 南 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 会 B-TITLE 计 M-TITLE 专 M-TITLE 业 M-TITLE 硕 M-TITLE 士 M-TITLE ( M-TITLE M M-TITLE P M-TITLE A M-TITLE c M-TITLE c M-TITLE ) M-TITLE 教 M-TITLE 育 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 兼 O 任 O , O 江 B-ORG 苏 M-ORG 省 M-ORG 审 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 实 M-ORG 证 M-ORG 会 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 。 O 王 S-NAME 先 O 生 O 曾 O 在 O 美 B-ORG 国 M-ORG 康 M-ORG 奈 M-ORG 尔 M-ORG 大 M-ORG 学 E-ORG 等 O 做 O 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE , O 曾 O 在 O 国 O 内 O 外 O 著 O 名 O 学 O 术 O 刊 O 物 O 发 O 表 O 论 O 文 O 4 O 0 O 余 O 篇 O , O 主 O 持 O 国 O 家 O 级 O 课 O 题 O 如 O 国 O 家 O 自 O 然 O 基 O 金 O 项 O 目 O 、 O 教 O 育 O 部 O 十 O 五 O 规 O 划 O 项 O 目 O 以 O 及 O 财 O 政 O 部 O 重 O 点 O 会 O 计 O 课 O 题 O 等 O 多 O 项 O , O 主 O 持 O 过 O 多 O 项 O 企 O 业 O 财 O 务 O 管 O 理 O 和 O 内 O 部 O 控 O 制 O 课 O 题 O 。 O 王 S-NAME 先 O 生 O 现 O 兼 O 任 O 南 B-ORG 京 M-ORG 栖 M-ORG 霞 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 宝 B-ORG 胜 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 亿 B-ORG 通 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 及 O 泰 B-ORG 尔 M-ORG 重 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 隋 B-NAME 玉 M-NAME 民 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 6 O 4 O 年 O 1 O 2 O 月 O 出 O 生 O , O 1 O 9 O 8 O 6 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 毕 O 业 O 于 O 长 B-ORG 江 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 9 O 月 O - O 2 O 0 O 0 O 4 O 年 O 9 O 月 O 任 O 中 B-ORG 材 M-ORG 水 M-ORG 泥 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 2 O 月 O - O 2 O 0 O 0 O 4 O 年 O 9 O 月 O 任 O 中 B-ORG 材 M-ORG 汉 M-ORG 江 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O - O 2 O 0 O 0 O 5 O 年 O 1 O 0 O 月 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 1 O 0 O 月 O - O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 至 O 今 O 任 O 中 B-ORG 材 M-ORG 水 M-ORG 泥 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 彭 B-NAME 建 M-NAME 波 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 6 O 月 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 昆 B-ORG 明 M-ORG 盐 M-ORG 矿 E-ORG 采 B-TITLE 卤 M-TITLE 车 M-TITLE 间 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE ; O 云 B-ORG 南 M-ORG 省 M-ORG 盐 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 安 M-ORG 宁 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 云 B-ORG 南 M-ORG 轻 M-ORG 纺 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 云 B-ORG 南 M-ORG 省 M-ORG 轻 M-ORG 工 M-ORG 业 M-ORG 供 M-ORG 销 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 云 B-ORG 南 M-ORG 盐 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 天 M-ORG 塑 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O “ B-ORG 双 M-ORG 十 M-ORG ” M-ORG 项 M-ORG 目 M-ORG 建 M-ORG 设 M-ORG 指 M-ORG 挥 M-ORG 部 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 指 M-TITLE 挥 M-TITLE 长 E-TITLE , O 昆 B-ORG 明 M-ORG 盐 M-ORG 矿 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 云 B-ORG 南 M-ORG 盐 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 谭 B-NAME 秋 M-NAME 斌 E-NAME 女 O 士 O : O 1 O 9 O 6 O 3 O 年 O 1 O 1 O 月 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 历 O 任 O 张 B-ORG 家 M-ORG 港 M-ORG 市 M-ORG 对 M-ORG 外 M-ORG 贸 M-ORG 易 M-ORG 公 M-ORG 司 E-ORG 秘 B-TITLE 书 E-TITLE 、 O 业 B-TITLE 务 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 纺 M-ORG 织 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 8 O 年 O 5 O 月 O 至 O 今 O 任 O 职 O 于 O 江 B-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 国 M-ORG 贸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 江 B-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 国 M-ORG 贸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 国 M-ORG 贸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 国 M-ORG 贸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 东 M-ORG 江 M-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 和 O 江 B-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 国 M-ORG 贸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 参 O 股 O 公 O 司 O 江 B-ORG 苏 M-ORG 国 M-ORG 泰 M-ORG 国 M-ORG 际 M-ORG 集 M-ORG 团 M-ORG 华 M-ORG 昇 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 戴 B-NAME 波 E-NAME : O 男 O , O 1 O 9 O 6 O 0 O 年 O 1 O 0 O 月 O 生 O , O 大 B-EDU 学 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 工 E-TITLE , O 历 O 任 O 水 B-ORG 电 M-ORG 七 M-ORG 局 M-ORG 对 M-ORG 外 M-ORG 经 M-ORG 营 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 计 B-ORG 经 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE , O 水 B-ORG 电 M-ORG 七 M-ORG 局 M-ORG 天 M-ORG 生 M-ORG 桥 M-ORG 一 M-ORG 级 M-ORG 电 M-ORG 站 E-ORG 项 B-TITLE 目 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 天 B-TITLE 生 M-TITLE 桥 M-TITLE 工 M-TITLE 程 M-TITLE 项 M-TITLE 目 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 水 B-ORG 电 M-ORG 七 M-ORG 局 E-ORG 局 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 计 B-ORG 划 M-ORG 经 M-ORG 营 M-ORG 管 M-ORG 理 M-ORG 处 E-ORG 处 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 局 M-TITLE 长 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 大 M-ORG 唐 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 大 M-ORG 唐 M-ORG 广 M-ORG 西 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 龙 B-ORG 滩 M-ORG 水 M-ORG 电 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 广 B-ORG 西 M-ORG 桂 M-ORG 冠 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 大 B-ORG 唐 M-ORG 岩 M-ORG 滩 M-ORG 水 M-ORG 力 M-ORG 发 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 大 B-ORG 唐 M-ORG 集 M-ORG 团 M-ORG 广 M-ORG 西 M-ORG 聚 M-ORG 源 M-ORG 电 M-ORG 力 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 陶 B-NAME 正 M-NAME 利 E-NAME , O 男 O , O 1 O 9 O 5 O 5 O 年 O 1 O 2 O 月 O 出 O 生 O , O 浙 B-LOC 江 M-LOC 台 M-LOC 州 M-LOC 人 E-LOC , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 5 O - O 1 O 9 O 9 O 5 O , O 海 B-ORG 门 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 工 O 作 O , O 历 O 任 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 6 O - O 1 O 9 O 9 O 7 O , O 海 B-ORG 正 M-ORG 药 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 7 O - O 2 O 0 O 0 O 2 O . O 7 O , O 海 B-ORG 正 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 2 O . O 7 O - O 至 O 今 O 浙 B-ORG 江 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 新 B-ORG 昌 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 兼 O 抗 B-ORG 生 M-ORG 素 M-ORG 分 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 台 B-ORG 州 M-ORG 市 E-ORG 拔 B-TITLE 尖 M-TITLE 人 M-TITLE 才 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 浙 B-ORG 江 M-ORG 省 E-ORG 劳 B-TITLE 动 M-TITLE 模 M-TITLE 范 E-TITLE , O 曾 O 获 O 国 O 家 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 、 O 三 O 等 O 奖 O ; O 各 O 一 O 次 O , O 化 O 工 O 部 O 科 O 技 O 进 O 步 O 一 O 等 O 奖 O 一 O 次 O , O 中 O 科 O 院 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 、 O 浙 O 江 O 省 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 各 O 一 O 次 O , O 曾 O 担 O 当 O 国 O 家 O 七 O 五 O 、 O 八 O 五 O 、 O 九 O 五 O 、 O 十 O 五 O 重 O 大 O 科 O 技 O 攻 O 关 O 项 O 目 O 主 O 持 O 。 O 张 B-NAME 广 M-NAME 智 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 5 O 1 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 曾 O 就 O 职 O 于 O 洛 B-ORG 阳 M-ORG 耐 M-ORG 火 M-ORG 材 M-ORG 料 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 、 O 北 B-ORG 京 M-ORG 利 M-ORG 尔 M-ORG 耐 M-ORG 火 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 北 B-ORG 京 M-ORG 利 M-ORG 尔 M-ORG 高 M-ORG 温 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 石 B-NAME 英 E-NAME 女 O 士 O : O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 女 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 教 B-TITLE 授 E-TITLE 。 O 1 O 9 O 8 O 1 O 辽 B-ORG 宁 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 律 M-ORG 系 E-ORG 学 B-TITLE 生 E-TITLE 1 O 9 O 8 O 7 O 中 B-ORG 国 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 学 B-TITLE 生 E-TITLE 1 O 9 O 9 O 0 O 至 O 今 O 辽 B-ORG 宁 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 律 M-ORG 系 E-ORG 讲 B-TITLE 师 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 2 O 0 O 0 O 3 O 年 O 至 O 今 O 沈 B-ORG 阳 M-ORG 机 M-ORG 床 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 段 B-NAME 连 M-NAME 吉 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 9 O 年 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 历 O 任 O 四 B-ORG 建 M-ORG 基 M-ORG 层 M-ORG 施 M-ORG 工 M-ORG 队 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 四 B-ORG 建 M-ORG 黄 M-ORG 河 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE , O 四 B-ORG 建 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 建 B-ORG 工 M-ORG 集 M-ORG 团 M-ORG 工 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE 、 O 行 B-TITLE 政 M-TITLE 综 M-TITLE 合 M-TITLE 部 M-TITLE 常 M-TITLE 务 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE ; O 现 O 任 O 中 B-ORG 建 M-ORG 新 M-ORG 疆 M-ORG 建 M-ORG 工 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 沈 B-NAME 健 M-NAME 斌 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 5 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 株 M-ORG 洲 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 株 B-ORG 洲 M-ORG 市 M-ORG 计 M-ORG 划 M-ORG 委 M-ORG 员 M-ORG 会 M-ORG 经 M-ORG 济 M-ORG 信 M-ORG 息 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 中 B-ORG 共 M-ORG 株 M-ORG 洲 M-ORG 市 M-ORG 委 M-ORG 组 M-ORG 织 M-ORG 部 E-ORG 副 B-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 等 O 职 O 。 O 现 O 任 O 株 B-ORG 洲 M-ORG 市 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 投 M-ORG 资 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 现 O 没 O 有 O 持 O 有 O 本 O 公 O 司 O 股 O 份 O , O 未 O 受 O 过 O 中 O 国 O 证 O 监 O 会 O 及 O 其 O 他 O 有 O 关 O 部 O 门 O 的 O 处 O 罚 O 和 O 证 O 券 O 交 O 易 O 所 O 的 O 惩 O 戒 O 。 O 盛 B-NAME 毅 E-NAME : O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 四 O 川 O 省 O 有 O 突 O 出 O 贡 O 献 O 专 O 家 O , O 四 O 川 O 省 O 学 O 术 O 、 O 技 O 术 O 带 O 头 O 人 O , O 长 O 期 O 从 O 事 O 经 O 济 O 研 O 究 O 工 O 作 O 。 O 历 O 任 O 四 B-ORG 川 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 四 B-ORG 川 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 四 B-TITLE 川 M-TITLE 经 M-TITLE 济 M-TITLE 社 M-TITLE 会 M-TITLE 发 M-TITLE 展 M-TITLE 重 M-TITLE 大 M-TITLE 问 M-TITLE 题 M-TITLE 对 M-TITLE 策 M-TITLE 研 M-TITLE 究 M-TITLE 中 M-TITLE 心 M-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 、 O 四 B-ORG 川 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 宏 M-ORG 观 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE , O 曾 O 任 O 四 B-ORG 川 M-ORG 全 M-ORG 兴 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 四 B-ORG 川 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 四 B-ORG 川 M-ORG 省 M-ORG 决 M-ORG 策 M-ORG 咨 M-ORG 询 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 四 B-ORG 川 M-ORG 路 M-ORG 桥 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 四 B-ORG 川 M-ORG 迪 M-ORG 康 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 四 B-ORG 川 M-ORG 双 M-ORG 马 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 四 B-ORG 川 M-ORG 长 M-ORG 城 M-ORG 国 M-ORG 际 M-ORG 动 M-ORG 漫 M-ORG 游 M-ORG 戏 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 舒 B-NAME 适 M-NAME 广 E-NAME 女 O 士 O : O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 长 B-ORG 沙 M-ORG 东 M-ORG 塘 M-ORG 百 M-ORG 货 M-ORG 大 M-ORG 楼 E-ORG 主 B-TITLE 办 M-TITLE 会 M-TITLE 计 E-TITLE , O 财 B-TITLE 务 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE , O 审 B-TITLE 计 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 法 B-TITLE 务 M-TITLE 审 M-TITLE 计 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 蕊 E-NAME , O 女 O , O 1 O 9 O 6 O 2 O 年 O 6 O 月 O 生 O , O 二 O 零 O 零 O 六 O 年 O 八 O 月 O 至 O 二 O 零 O 一 O 二 O 年 O 六 O 月 O 期 O 间 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 为 O 江 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 会 B-TITLE 计 M-TITLE 学 M-TITLE 首 M-TITLE 席 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 管 B-PRO 理 M-PRO 学 M-PRO ( M-PRO 会 M-PRO 计 M-PRO ) E-PRO 博 B-EDU 士 E-EDU 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE ; O 享 O 受 O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 特 O ; O 现 O 任 O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 准 M-ORG 则 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 咨 B-TITLE 询 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 教 M-ORG 授 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 江 B-ORG 西 M-ORG 省 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 江 B-ORG 西 M-ORG 省 M-ORG 内 M-ORG 部 M-ORG 审 M-ORG 计 M-ORG 师 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 中 M-ORG 青 M-ORG 年 M-ORG 财 M-ORG 务 M-ORG 成 M-ORG 本 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 。 O 在 O 会 O 计 O 理 O 论 O 和 O 实 O 务 O 、 O 审 O 计 O 理 O 论 O 和 O 实 O 务 O 及 O 业 O 绩 O 评 O 价 O 方 O 面 O 有 O 较 O 深 O 的 O 研 O 究 O 和 O 丰 O 富 O 的 O 经 O 验 O 。 O 苏 B-NAME 红 E-NAME 女 O 士 O , O 出 O 生 O 于 O 1 O 9 O 7 O 9 O 年 O 7 O 月 O , O 金 B-PRO 融 M-PRO 投 M-PRO 资 M-PRO 与 M-PRO 管 M-PRO 理 E-PRO 硕 O 士 O , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 最 O 近 O 五 O 年 O 先 O 后 O 担 O 任 O 东 B-ORG 方 M-ORG 国 M-ORG 际 M-ORG 物 M-ORG 流 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE , O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE , O 法 B-TITLE 律 M-TITLE 审 M-TITLE 计 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 东 B-ORG 方 M-ORG 国 M-ORG 际 M-ORG 物 M-ORG 流 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 律 M-TITLE 审 M-TITLE 计 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 东 B-TITLE 方 M-TITLE 创 M-TITLE 业 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 刘 B-NAME 治 M-NAME 海 E-NAME , O 男 O , O 硕 B-EDU 士 E-EDU , O 律 B-TITLE 师 E-TITLE 。 O 曾 O 任 O 江 B-ORG 苏 M-ORG 盐 M-ORG 城 M-ORG 市 M-ORG 政 M-ORG 法 M-ORG 干 M-ORG 校 E-ORG 干 B-TITLE 部 E-TITLE 、 O 首 B-ORG 都 M-ORG 经 M-ORG 贸 M-ORG 大 M-ORG 学 E-ORG 讲 B-TITLE 师 E-TITLE ; O 现 O 任 O 北 B-ORG 京 M-ORG 市 M-ORG 金 M-ORG 诚 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 高 B-TITLE 级 M-TITLE 合 M-TITLE 伙 M-TITLE 人 E-TITLE 、 O 律 B-TITLE 师 E-TITLE , O 北 B-ORG 京 M-ORG 理 M-ORG 工 M-ORG 中 M-ORG 兴 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 方 B-NAME 慎 M-NAME 非 E-NAME , O 男 O , O 广 B-ORG 东 M-ORG 南 M-ORG 洋 M-ORG 电 M-ORG 缆 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 3 O 月 O 进 O 入 O 广 B-ORG 东 M-ORG 南 M-ORG 洋 M-ORG 电 M-ORG 缆 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 主 O 管 O 产 O 品 O 研 O 究 O 开 O 发 O 、 O 认 O 证 O 体 O 系 O 管 O 理 O 、 O 技 O 术 O 谈 O 判 O 、 O 售 O 后 O 服 O 务 O 等 O 工 O 作 O 。 O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 7 O 月 O 任 O 广 B-ORG 东 M-ORG 南 M-ORG 洋 M-ORG 电 M-ORG 缆 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 张 B-NAME 德 M-NAME 仲 E-NAME , O 男 O , O 1 O 9 O 5 O 2 O 年 O 5 O 月 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 国 M-TITLE 际 M-TITLE 商 M-TITLE 务 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 辽 B-ORG 宁 M-ORG 成 M-ORG 大 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE , O 辽 B-ORG 宁 M-ORG 成 M-ORG 大 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 唐 B-NAME 根 M-NAME 初 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 8 O 0 O 年 O 生 O , O 博 B-EDU 士 E-EDU , O 2 O 0 O 0 O 8 O 年 O 7 O 月 O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 上 M-ORG 海 M-ORG 硅 M-ORG 酸 M-ORG 盐 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 材 B-PRO 料 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 在 O 材 O 料 O 学 O 方 O 面 O 有 O 较 O 深 O 的 O 研 O 究 O , O 在 O 国 O 内 O 外 O 重 O 要 O 专 O 业 O 书 O 刊 O 发 O 表 O 论 O 文 O 多 O 篇 O 。 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 今 O 供 O 职 O 于 O 公 B-ORG 司 E-ORG , O 历 O 任 O 深 B-ORG 圳 M-ORG 欧 M-ORG 菲 M-ORG 光 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 究 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 1 O 月 O 至 O 今 O 任 O 深 B-ORG 圳 M-ORG 欧 M-ORG 菲 M-ORG 光 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 目 O 前 O 系 O 广 B-ORG 东 M-ORG 省 M-ORG 及 M-ORG 深 M-ORG 圳 M-ORG 市 M-ORG 科 M-ORG 技 M-ORG 专 M-ORG 家 M-ORG 库 E-ORG 专 B-TITLE 家 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 深 B-TITLE 圳 M-TITLE 市 M-TITLE 政 M-TITLE 府 M-TITLE 特 M-TITLE 殊 M-TITLE 津 M-TITLE 贴 M-TITLE 技 M-TITLE 术 M-TITLE 专 M-TITLE 家 E-TITLE 。 O 广 B-ORG 东 M-ORG 省 M-ORG 精 M-ORG 密 M-ORG 光 M-ORG 电 M-ORG 薄 M-ORG 膜 M-ORG 工 M-ORG 程 M-ORG 中 M-ORG 心 E-ORG 及 O 江 B-ORG 西 M-ORG 省 M-ORG 精 M-ORG 密 M-ORG 镀 M-ORG 膜 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 技 B-TITLE 术 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 李 B-NAME 令 M-NAME 红 E-NAME 先 O 生 O , O 出 O 生 O 于 O 1 O 9 O 5 O 3 O 年 O 1 O 1 O 月 O , O 浙 B-LOC 江 M-LOC 宁 M-LOC 波 M-LOC 人 E-LOC , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 管 B-PRO 理 M-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 6 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 1 O 年 O 5 O 月 O 任 O 宁 B-ORG 波 M-ORG 市 M-ORG 江 M-ORG 北 M-ORG 区 M-ORG 委 E-ORG 副 B-TITLE 书 M-TITLE 记 E-TITLE 兼 O 政 B-TITLE 法 M-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 1 O 9 O 9 O 1 O 年 O 5 O 月 O 至 O 1 O 9 O 9 O 5 O 年 O 1 O 1 O 月 O 任 O 宁 B-ORG 波 M-ORG 市 M-ORG 江 M-ORG 北 M-ORG 区 M-ORG 委 E-ORG 副 B-TITLE 书 M-TITLE 记 E-TITLE 、 O 区 B-TITLE 长 E-TITLE , O 1 O 9 O 9 O 5 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 任 O 宁 B-ORG 波 M-ORG 市 M-ORG 经 M-ORG 济 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 E-TITLE 、 O 党 B-TITLE 工 M-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 任 O 宁 B-ORG 波 M-ORG 港 M-ORG 务 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 宁 B-ORG 波 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 并 O 任 O 中 B-ORG 共 M-ORG 宁 M-ORG 波 M-ORG 市 M-ORG 第 M-ORG 十 M-ORG 二 M-ORG 届 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 港 M-ORG 口 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 是 O 第 B-TITLE 十 M-TITLE 一 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 十 M-TITLE 二 M-TITLE 届 M-TITLE 全 M-TITLE 国 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 杜 B-NAME 新 M-NAME 民 E-NAME , O 男 O , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 曾 O 任 O 东 B-ORG 乡 M-ORG 铜 M-ORG 矿 M-ORG 学 M-ORG 校 E-ORG 教 B-TITLE 师 E-TITLE , O 东 B-ORG 乡 M-ORG 铜 M-ORG 矿 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 江 B-ORG 西 M-ORG 铜 M-ORG 业 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 E-TITLE , O 江 B-ORG 西 M-ORG 铜 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 现 O 任 O 宁 B-ORG 波 M-ORG 兴 M-ORG 业 M-ORG 铜 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 获 O 得 O 中 O 国 O 证 O 监 O 会 O " O 上 O 市 O 公 O 司 O 独 O 立 O 董 O 事 O " O 资 O 格 O 证 O 书 O 。 O 杨 B-NAME 丽 M-NAME 云 E-NAME , O 女 O , O 1 O 9 O 7 O 2 O 年 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 江 B-ORG 苏 M-ORG 省 M-ORG 淮 M-ORG 阴 M-ORG 第 M-ORG 一 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 、 O 南 B-ORG 宁 M-ORG 第 M-ORG 三 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 国 B-ORG 宇 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 E-TITLE 。 O 朱 B-NAME 润 M-NAME 资 E-NAME : O 男 O , O 1 O 9 O 7 O 1 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 海 B-ORG 峡 M-ORG 股 M-ORG 份 E-ORG “ O 椰 O 香 O 公 O 主 O ” O 、 O “ O 宝 O 岛 O 1 O 2 O 号 O ” O 等 O 船 O 舶 O 的 O 船 B-TITLE 长 E-TITLE 、 O 海 B-ORG 南 M-ORG 港 M-ORG 航 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 部 M-TITLE 长 E-TITLE , O 现 O 任 O 海 B-ORG 峡 M-ORG 股 M-ORG 份 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 于 B-NAME 广 M-NAME 勇 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 7 O 年 O 1 O 2 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 9 O 月 O 至 O 1 O 9 O 9 O 1 O 年 O 7 O 月 O 就 O 读 O 于 O 锦 B-ORG 州 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 。 O 1 O 9 O 9 O 1 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 4 O 年 O 3 O 月 O 在 O 沈 B-ORG 阳 M-ORG 百 M-ORG 花 M-ORG 电 M-ORG 器 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 变 M-ORG 频 M-ORG 调 M-ORG 速 M-ORG 器 M-ORG 厂 E-ORG 从 O 事 O 生 O 产 O 检 O 验 O 及 O 销 O 售 O 工 O 作 O ; O 1 O 9 O 9 O 4 O 年 O 4 O 月 O 至 O 1 O 9 O 9 O 6 O 年 O 5 O 月 O 在 O 沈 B-ORG 阳 M-ORG 市 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 科 O 技 O 处 O 从 O 事 O 科 O 技 O 项 O 目 O 调 O 查 O 、 O 汇 O 总 O 工 O 作 O ; O 1 O 9 O 9 O 6 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 在 O 沈 B-ORG 阳 M-ORG 华 M-ORG 岩 M-ORG 电 M-ORG 力 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 发 B-TITLE 电 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 9 O 月 O 至 O 今 O 在 O 蓝 B-ORG 英 M-ORG 装 M-ORG 备 E-ORG ( O 及 O 前 O 身 O ) O 任 O 职 O , O 曾 O 任 O 技 B-TITLE 术 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 采 B-TITLE 购 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 职 O 务 O 。 O 目 O 前 O 任 O 蓝 B-ORG 英 M-ORG 装 M-ORG 备 E-ORG 监 B-TITLE 事 E-TITLE 、 O 采 B-TITLE 购 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 赵 B-NAME 瑞 M-NAME 航 E-NAME : O 男 O , O 生 O 于 O 1 O 9 O 5 O 7 O 年 O , O 大 B-EDU 学 M-EDU 普 M-EDU 通 M-EDU 班 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 1 O 1 O 月 O , O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 2 O 月 O , O 任 O 北 B-ORG 京 M-ORG 四 M-ORG 方 M-ORG 同 M-ORG 创 M-ORG 保 M-ORG 护 M-ORG 与 M-ORG 控 M-ORG 制 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 2 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O , O 任 O 公 B-ORG 司 E-ORG 营 B-TITLE 销 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 营 B-TITLE 销 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE , O 兼 O 任 O 北 B-ORG 京 M-ORG 四 M-ORG 方 M-ORG 继 M-ORG 保 M-ORG 工 M-ORG 程 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O , O 任 O 北 B-ORG 京 M-ORG 同 M-ORG 兴 M-ORG 时 M-ORG 代 M-ORG 物 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 至 O 2 O 0 O 1 O 3 O 年 O 任 O 四 B-ORG 方 M-ORG 继 M-ORG 保 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 营 B-TITLE 销 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 行 B-TITLE 政 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 公 B-TITLE 共 M-TITLE 及 M-TITLE 国 M-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O , O 任 O 北 B-ORG 京 M-ORG 四 M-ORG 方 M-ORG 继 M-ORG 保 M-ORG 工 M-ORG 程 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 现 O 任 O 北 B-ORG 京 M-ORG 四 M-ORG 方 M-ORG 继 M-ORG 保 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 蔡 B-NAME 炬 M-NAME 怡 E-NAME 先 O 生 O , O 1 O 9 O 5 O 3 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 9 O 年 O 起 O 在 O 佛 B-ORG 山 M-ORG 市 M-ORG 光 M-ORG 电 M-ORG 器 M-ORG 材 M-ORG 厂 E-ORG 工 O 作 O ; O 1 O 9 O 9 O 3 O 年 O 起 O 在 O 佛 B-ORG 山 M-ORG 市 M-ORG 光 M-ORG 电 M-ORG 器 M-ORG 材 M-ORG 公 M-ORG 司 E-ORG 、 O 佛 B-ORG 山 M-ORG 市 M-ORG 国 M-ORG 星 M-ORG 光 M-ORG 电 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 本 B-ORG 公 M-ORG 司 E-ORG 前 O 身 O ) O 工 O 作 O , O 曾 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 杨 B-NAME 莉 E-NAME , O 女 O , O 1 O 9 O 7 O 6 O 年 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 9 O 4 O 年 O 3 O 月 O 参 O 加 O 工 O 作 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 历 O 任 O 宁 B-ORG 波 M-ORG 凯 M-ORG 建 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 宁 B-ORG 波 M-ORG 热 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 匡 B-NAME 献 M-NAME 平 E-NAME 先 O 生 O , O 暨 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG 金 B-PRO 融 M-PRO 学 E-PRO 研 B-EDU 究 M-EDU 生 E-EDU 课 O 程 O 班 O 在 O 读 O 。 O 1 O 9 O 8 O 9 O 年 O 7 O 月 O 毕 O 业 O 于 O 湖 B-ORG 南 M-ORG 城 M-ORG 市 M-ORG 学 M-ORG 院 M-ORG 中 M-ORG 文 M-ORG 系 E-ORG , O 先 O 后 O 被 O 聘 O 为 O 新 B-ORG 华 M-ORG 社 M-ORG 深 M-ORG 圳 M-ORG 新 M-ORG 闻 M-ORG 中 M-ORG 心 M-ORG 《 M-ORG 名 M-ORG 牌 M-ORG 食 M-ORG 品 M-ORG 》 M-ORG 杂 M-ORG 志 E-ORG 执 B-TITLE 行 M-TITLE 总 M-TITLE 编 E-TITLE 、 O 新 B-ORG 华 M-ORG 社 M-ORG 广 M-ORG 东 M-ORG 分 M-ORG 社 M-ORG 广 M-ORG 东 M-ORG 新 M-ORG 闻 M-ORG 发 M-ORG 展 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 新 B-ORG 华 M-ORG 社 M-ORG 《 M-ORG 中 M-ORG 国 M-ORG 证 M-ORG 券 M-ORG 报 M-ORG 》 M-ORG 广 M-ORG 东 M-ORG 站 E-ORG 投 B-TITLE 资 M-TITLE 策 M-TITLE 划 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 广 B-ORG 州 M-ORG 市 M-ORG 盛 M-ORG 世 M-ORG 同 M-ORG 盈 M-ORG 投 M-ORG 资 M-ORG ( M-ORG 推 M-ORG 广 M-ORG ) E-ORG 顾 B-TITLE 问 M-TITLE 机 M-TITLE 构 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 风 M-NAME 东 E-NAME 先 O 生 O : O 汉 B-RACE 族 E-RACE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 4 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 新 B-ORG 疆 M-ORG 塔 M-ORG 城 M-ORG 地 M-ORG 区 M-ORG 纪 M-ORG 检 M-ORG 委 E-ORG 秘 B-TITLE 书 E-TITLE 、 O 塔 B-ORG 城 M-ORG 地 M-ORG 区 M-ORG 地 M-ORG 直 M-ORG 团 M-ORG 委 E-ORG 书 B-TITLE 记 E-TITLE 、 O 新 B-ORG 疆 M-ORG 生 M-ORG 产 M-ORG 建 M-ORG 设 M-ORG 兵 M-ORG 团 M-ORG 农 M-ORG 九 M-ORG 师 M-ORG 团 M-ORG 委 E-ORG 书 B-TITLE 记 E-TITLE 、 O 农 B-ORG 九 M-ORG 师 E-ORG 外 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 农 B-ORG 九 M-ORG 师 E-ORG 外 B-TITLE 经 M-TITLE 贸 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 额 B-ORG 敏 M-ORG 农 M-ORG 垦 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 新 B-ORG 天 M-ORG 国 M-ORG 际 M-ORG 经 M-ORG 贸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 新 B-ORG 天 M-ORG 国 M-ORG 际 M-ORG 经 M-ORG 济 M-ORG 技 M-ORG 术 M-ORG 合 M-ORG 作 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 罗 B-NAME 会 M-NAME 榕 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 毕 O 业 O 于 O 南 B-ORG 昌 M-ORG 师 M-ORG 范 M-ORG 学 M-ORG 院 E-ORG , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 先 O 后 O 担 O 任 O 奥 B-ORG 康 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 公 B-ORG 司 E-ORG 品 B-TITLE 牌 M-TITLE 规 M-TITLE 划 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 奥 B-ORG 康 E-ORG 事 B-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 奥 B-ORG 康 M-ORG 鞋 M-ORG 业 M-ORG 销 M-ORG 售 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 等 O 职 O 。 O 现 O 任 O 奥 B-ORG 康 M-ORG 国 M-ORG 际 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 无 O 简 O 历 O 信 O 息 O 何 B-NAME 腾 M-NAME 国 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 4 O 9 O 年 O 9 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 广 B-ORG 州 M-ORG 市 M-ORG 新 M-ORG 大 M-ORG 新 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 广 B-ORG 州 M-ORG 百 M-ORG 货 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 广 B-ORG 州 M-ORG 百 M-ORG 货 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 李 B-NAME 礼 M-NAME 辉 E-NAME 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 行 B-TITLE 长 E-TITLE 自 O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 起 O 任 O 本 B-ORG 行 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 行 B-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 任 O 海 B-ORG 南 M-ORG 省 E-ORG 副 B-TITLE 省 M-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 4 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 9 O 月 O 任 O 中 B-ORG 国 M-ORG 工 M-ORG 商 M-ORG 银 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 至 O 1 O 9 O 9 O 4 O 年 O 7 O 月 O 曾 O 任 O 中 B-ORG 国 M-ORG 工 M-ORG 商 M-ORG 银 M-ORG 行 E-ORG 多 O 个 O 职 O 位 O , O 包 O 括 O 福 B-ORG 建 M-ORG 省 M-ORG 分 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 、 O 驻 B-TITLE 新 M-TITLE 加 M-TITLE 坡 M-TITLE 首 M-TITLE 席 M-TITLE 代 M-TITLE 表 E-TITLE 、 O 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 务 O 。 O 李 S-NAME 先 O 生 O 1 O 9 O 7 O 7 O 年 O 毕 O 业 O 于 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 系 E-ORG 金 B-ORG 融 M-ORG 专 M-ORG 业 E-ORG , O 拥 O 有 O 北 B-ORG 京 M-ORG 大 M-ORG 学 M-ORG 光 M-ORG 华 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 金 B-PRO 融 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 的 O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 自 O 2 O 0 O 0 O 5 O 年 O 6 O 月 O 起 O , O 李 S-NAME 先 O 生 O 兼 O 任 O 中 B-ORG 银 M-ORG 国 M-ORG 际 M-ORG 控 M-ORG 股 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 1 O 2 O 月 O 起 O , O 李 S-NAME 先 O 生 O 兼 O 任 O 渤 B-ORG 海 M-ORG 产 M-ORG 业 E-ORG 刘 B-NAME 义 M-NAME 传 E-NAME , O 男 O , O 1 O 9 O 5 O 4 O 年 O 3 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 经 B-PRO 济 E-PRO 学 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 曾 O 任 O 职 O 于 O 福 B-ORG 建 M-ORG 省 M-ORG 财 M-ORG 政 M-ORG 厅 E-ORG 会 B-TITLE 计 M-TITLE 顾 M-TITLE 问 M-TITLE 处 M-TITLE 副 M-TITLE 主 M-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE , O 福 B-ORG 建 M-ORG 华 M-ORG 兴 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 副 B-TITLE 主 M-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ( O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ) O , O 福 B-ORG 建 M-ORG 省 M-ORG 中 M-ORG 福 M-ORG 集 M-ORG 团 E-ORG 计 B-TITLE 财 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 福 B-ORG 建 M-ORG 省 M-ORG 中 M-ORG 福 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 福 B-ORG 建 M-ORG 运 M-ORG 盛 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 任 O 苏 B-ORG 州 M-ORG 市 M-ORG 西 M-ORG 江 M-ORG 建 M-ORG 设 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O ◆ O 董 B-TITLE 事 E-TITLE 郑 B-NAME 扬 M-NAME 宏 E-NAME 男 O , O 5 O 1 O 岁 O , O 广 B-LOC 东 M-LOC 五 M-LOC 华 M-LOC 人 E-LOC , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 0 B-ORG 0 M-ORG 4 M-ORG 2 M-ORG 3 M-ORG 部 M-ORG 队 E-ORG 组 B-TITLE 织 M-TITLE 宣 M-TITLE 传 M-TITLE 股 M-TITLE 干 M-TITLE 事 E-TITLE 、 O 0 B-ORG 0 M-ORG 4 M-ORG 2 M-ORG 9 M-ORG 部 M-ORG 队 E-ORG 政 B-TITLE 治 M-TITLE 部 M-TITLE 宣 M-TITLE 传 M-TITLE 干 M-TITLE 事 E-TITLE 。 O 1 O 9 O 8 O 3 O 年 O 1 O 月 O 至 O 1 O 9 O 9 O 4 O 年 O 1 O 月 O 在 O 深 B-ORG 圳 M-ORG 市 M-ORG 直 M-ORG 属 M-ORG 机 M-ORG 关 M-ORG 工 M-ORG 委 E-ORG 工 O 作 O , O 先 O 后 O 任 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 干 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 组 B-TITLE 织 M-TITLE 部 M-TITLE 代 M-TITLE 理 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 宣 B-TITLE 传 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 部 B-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 8 O 月 O 在 O 深 B-ORG 圳 M-ORG 市 M-ORG 旅 M-ORG 游 M-ORG 协 M-ORG 会 E-ORG 工 O 作 O , O 任 O 协 B-ORG 会 E-ORG 第 B-TITLE 三 M-TITLE 、 M-TITLE 四 M-TITLE 届 M-TITLE 常 M-TITLE 务 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 8 O 月 O 至 O 今 O 在 O 深 B-ORG 圳 M-ORG 市 M-ORG 宝 M-ORG 恒 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 1 O 1 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 周 B-NAME 和 M-NAME 华 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 会 B-PRO 计 E-PRO 本 B-EDU 科 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ( O 非 O 执 O 业 O ) O 。 O 2 O 0 O 0 O 2 O 年 O 加 O 入 O 公 B-ORG 司 E-ORG , O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 科 B-ORG 达 M-ORG 石 M-ORG 材 E-ORG 董 B-TITLE 事 E-TITLE 、 O 科 B-ORG 达 M-ORG 香 M-ORG 港 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 马 B-ORG 鞍 M-ORG 山 M-ORG 科 M-ORG 达 M-ORG 机 M-ORG 电 E-ORG 董 B-TITLE 事 E-TITLE 、 O 信 B-ORG 诚 M-ORG 融 M-ORG 资 M-ORG 租 M-ORG 赁 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 吕 B-NAME 宏 E-NAME 女 O 士 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 山 B-ORG 东 M-ORG 储 M-ORG 备 M-ORG 物 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 会 B-TITLE 计 E-TITLE 、 O 主 B-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 现 O 任 O 山 B-ORG 东 M-ORG 储 M-ORG 备 M-ORG 物 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 。 O 杨 B-NAME 稔 M-NAME 年 E-NAME , O 男 O , O 1 O 9 O 3 O 1 O 年 O 出 O 生 O , O 辽 B-LOC 宁 M-LOC 沈 M-LOC 阳 M-LOC 人 E-LOC , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 5 O 0 O 年 O 北 B-ORG 京 M-ORG 中 M-ORG 央 M-ORG 税 M-ORG 务 M-ORG 学 M-ORG 校 E-ORG 毕 O 业 O , O 1 O 9 O 5 O 4 O 年 O 至 O 1 O 9 O 5 O 6 O 年 O 财 B-ORG 政 M-ORG 部 M-ORG 上 M-ORG 海 M-ORG 财 M-ORG 校 E-ORG 专 B-EDU 修 M-EDU 科 E-EDU 进 O 修 O 。 O 1 O 9 O 5 O 0 O 年 O 起 O 在 O 安 B-ORG 徽 M-ORG 省 M-ORG 税 M-ORG 务 M-ORG 局 E-ORG 历 O 任 O 办 B-TITLE 事 M-TITLE 员 E-TITLE 、 O 科 B-TITLE 员 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 局 M-TITLE 长 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 税 M-ORG 务 M-ORG 咨 M-ORG 询 M-ORG 协 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE , O 安 B-ORG 徽 M-ORG 省 M-ORG 税 M-ORG 务 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 安 B-ORG 徽 M-ORG 省 M-ORG 地 M-ORG 方 M-ORG 税 M-ORG 务 M-ORG 咨 M-ORG 询 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 省 B-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 省 B-ORG 中 M-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 顾 B-TITLE 问 E-TITLE 。 O 现 O 任 O 安 B-ORG 徽 M-ORG 省 M-ORG 科 M-ORG 苑 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 一 M-NAME 欢 E-NAME : O 男 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 6 O 9 O 年 O 至 O 1 O 9 O 7 O 5 O 年 O 在 O 空 B-ORG 军 M-ORG 3 M-ORG 4 M-ORG 3 M-ORG 部 M-ORG 队 E-ORG 服 O 役 O , O 1 O 9 O 7 O 5 O 年 O 至 O 1 O 9 O 8 O 6 O 年 O 在 O 北 B-ORG 京 M-ORG 第 M-ORG 二 M-ORG 机 M-ORG 床 M-ORG 厂 E-ORG 任 O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 6 O 年 O 至 O 今 O 在 O 中 B-ORG 国 M-ORG 汽 M-ORG 车 M-ORG 工 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 任 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 俞 B-NAME 立 E-NAME 先 O 生 O , O 1 O 9 O 6 O 1 O 年 O 6 O 月 O 出 O 生 O , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 博 B-EDU 士 E-EDU 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 信 M-ORG 息 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 浙 B-ORG 江 M-ORG 省 M-ORG 嵌 M-ORG 入 M-ORG 式 M-ORG 系 M-ORG 统 M-ORG 联 M-ORG 合 M-ORG 重 M-ORG 点 M-ORG 实 M-ORG 验 M-ORG 室 E-ORG 主 B-TITLE 任 E-TITLE 、 O 中 B-ORG 国 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 学 M-ORG 会 M-ORG 控 M-ORG 制 M-ORG 理 M-ORG 论 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 过 B-ORG 程 M-ORG 控 M-ORG 制 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 教 B-ORG 学 M-ORG 部 M-ORG 高 M-ORG 等 M-ORG 学 M-ORG 校 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 类 M-ORG 专 M-ORG 业 M-ORG 教 M-ORG 学 M-ORG 指 M-ORG 导 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 浙 B-ORG 江 M-ORG 省 M-ORG 第 M-ORG 十 M-ORG 一 M-ORG 届 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE 。 O 现 O 任 O 银 B-ORG 江 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 孙 B-NAME 凯 M-NAME 捷 E-NAME , O 女 O , O 1 O 9 O 6 O 3 O 年 O 3 O 月 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 丹 B-ORG 东 M-ORG 化 M-ORG 纤 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 等 O 职 O 务 O 。 O 无 O 简 O 历 O 信 O 息 O 吴 B-NAME 桥 E-NAME , O 男 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 7 O 0 O 年 O - O 1 O 9 O 7 O 8 O 年 O 在 O 内 B-ORG 蒙 M-ORG 古 M-ORG 呼 M-ORG 和 M-ORG 浩 M-ORG 特 M-ORG 铁 M-ORG 路 M-ORG 局 M-ORG 工 M-ORG 人 M-ORG 文 M-ORG 化 M-ORG 宫 E-ORG 担 O 任 O 文 B-TITLE 艺 M-TITLE 辅 M-TITLE 导 M-TITLE 员 E-TITLE ; O 1 O 9 O 7 O 8 O 年 O - O 1 O 9 O 9 O 4 O 年 O 任 O 中 B-ORG 国 M-ORG 铁 M-ORG 路 M-ORG 文 M-ORG 工 M-ORG 团 M-ORG 歌 M-ORG 舞 M-ORG 团 E-ORG 国 B-TITLE 家 M-TITLE 二 M-TITLE 级 M-TITLE 演 M-TITLE 奏 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O - O 2 O 0 O 0 O 4 O 年 O 任 O 北 B-ORG 京 M-ORG 中 M-ORG 德 M-ORG 行 M-ORG 投 M-ORG 资 M-ORG 顾 M-ORG 问 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 至 O 今 O 任 O 星 B-ORG 光 M-ORG 浩 M-ORG 华 M-ORG ( M-ORG 北 M-ORG 京 M-ORG ) M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 北 B-ORG 京 M-ORG 万 M-ORG 恒 M-ORG 置 M-ORG 业 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 占 B-NAME 磊 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 7 O 年 O 1 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 注 B-TITLE 册 M-TITLE 律 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 至 O 今 O , O 任 O 新 B-ORG 疆 M-ORG 公 M-ORG 论 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 E-TITLE ; O 先 O 后 O 担 O 任 O 多 O 家 O 单 O 位 O 的 O 法 B-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 以 O 及 O 新 B-ORG 疆 M-ORG 城 M-ORG 建 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 新 B-ORG 疆 M-ORG 青 M-ORG 松 M-ORG 建 M-ORG 材 M-ORG 化 M-ORG 工 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 新 B-ORG 疆 M-ORG 西 M-ORG 部 M-ORG 建 M-ORG 设 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 新 B-ORG 疆 M-ORG 中 M-ORG 基 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 李 B-NAME 东 M-NAME 友 E-NAME 先 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 3 O 年 O 9 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 兴 B-ORG 平 M-ORG 化 M-ORG 肥 M-ORG 厂 E-ORG 合 B-TITLE 成 M-TITLE 车 M-TITLE 间 M-TITLE 党 M-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 兴 B-ORG 化 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 兴 B-ORG 化 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 、 O 兴 B-ORG 化 M-ORG 股 M-ORG 份 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 姚 B-NAME 越 M-NAME 灿 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 外 M-ORG 国 M-ORG 语 M-ORG 大 M-ORG 学 E-ORG 英 B-PRO 语 M-PRO 专 M-PRO 业 E-PRO 、 O 美 B-ORG 国 M-ORG 夏 M-ORG 威 M-ORG 夷 M-ORG 旅 M-ORG 游 M-ORG 学 M-ORG 院 E-ORG 旅 B-PRO 游 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 副 B-TITLE 译 M-TITLE 审 E-TITLE 。 O 曾 O 任 O 国 B-ORG 旅 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE , O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 国 B-ORG 旅 M-ORG 总 M-ORG 社 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 任 B-NAME 兴 M-NAME 洲 E-NAME , O 女 O , O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 及 O 研 B-EDU 究 M-EDU 生 E-EDU 毕 O 业 O 于 O 吉 B-ORG 林 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 系 E-ORG 。 O 2 O 0 O 0 O 9 O 年 O 至 O 今 O 任 O 国 B-ORG 务 M-ORG 院 M-ORG 发 M-ORG 展 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 市 B-TITLE 场 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 至 O 今 O 兼 O 任 O 中 B-ORG 外 M-ORG 运 M-ORG 空 M-ORG 运 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 徐 B-NAME 凤 M-NAME 江 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 毕 O 业 O 于 O 西 B-ORG 安 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 会 B-PRO 计 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O M B-EDU P M-EDU A M-EDU C M-EDU C M-EDU 学 M-EDU 员 E-EDU 。 O 曾 O 任 O 西 B-ORG 安 M-ORG 荣 M-ORG 和 M-ORG 高 M-ORG 级 M-ORG 陶 M-ORG 瓷 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 陕 B-ORG 西 M-ORG 富 M-ORG 安 M-ORG 果 M-ORG 汁 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 陕 B-ORG 西 M-ORG 坚 M-ORG 瑞 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 曾 O 于 O 2 O 0 O 1 O 3 O 年 O 9 O 月 O 3 O 日 O 受 O 到 O 深 B-ORG 圳 M-ORG 证 M-ORG 券 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 通 O 报 O 批 O 评 O 的 O 处 O 分 O 。 O 原 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 现 O 任 O 陕 B-ORG 西 M-ORG 坚 M-ORG 瑞 M-ORG 消 M-ORG 防 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 于 B-NAME 东 E-NAME , O 男 O , O 1 O 9 O 6 O 0 O 年 O 3 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 广 M-ORG 电 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 仪 M-ORG 电 M-ORG 电 M-ORG 子 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 战 B-TITLE 略 M-TITLE 投 M-TITLE 资 M-TITLE 总 M-TITLE 监 E-TITLE , O 上 B-ORG 海 M-ORG 仪 M-ORG 电 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 任 B-NAME 家 M-NAME 国 E-NAME , O 男 O , O 1 O 9 O 6 O 4 O 年 O 9 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 住 O 权 O , O 南 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 历 O 任 O 江 B-ORG 苏 M-ORG 南 M-ORG 方 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 现 O 任 O 南 B-ORG 京 M-ORG 百 M-ORG 地 M-ORG 年 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 管 B-NAME 振 M-NAME 毅 E-NAME 先 O 生 O , O 现 O 任 O 上 B-ORG 海 M-ORG 烟 M-ORG 草 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 青 B-ORG 浦 M-ORG 、 M-ORG 长 M-ORG 宁 M-ORG 烟 M-ORG 草 M-ORG 糖 M-ORG 酒 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 海 B-ORG 烟 M-ORG 物 M-ORG 流 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 铁 B-ORG 路 M-ORG 烟 M-ORG 草 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 中 B-ORG 国 M-ORG 烟 M-ORG 草 M-ORG 上 M-ORG 海 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 宝 B-ORG 山 M-ORG 、 M-ORG 崇 M-ORG 明 M-ORG 、 M-ORG 奉 M-ORG 贤 M-ORG 、 M-ORG 虹 M-ORG 口 M-ORG 、 M-ORG 黄 M-ORG 浦 M-ORG 、 M-ORG 嘉 M-ORG 定 M-ORG 、 M-ORG 金 M-ORG 山 M-ORG 、 M-ORG 静 M-ORG 安 M-ORG 、 M-ORG 卢 M-ORG 湾 M-ORG 、 M-ORG 闵 M-ORG 行 M-ORG 、 M-ORG 南 M-ORG 汇 M-ORG 、 M-ORG 浦 M-ORG 东 M-ORG 、 M-ORG 普 M-ORG 陀 M-ORG 、 M-ORG 松 M-ORG 江 M-ORG 、 M-ORG 徐 M-ORG 汇 M-ORG 、 M-ORG 杨 M-ORG 浦 M-ORG 、 M-ORG 闸 M-ORG 北 M-ORG 烟 M-ORG 草 M-ORG 糖 M-ORG 酒 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 管 S-NAME 先 O 生 O 2 O 0 O 0 O 0 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 1 O 月 O 在 O 上 B-ORG 海 M-ORG 烟 M-ORG 草 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 M-ORG 三 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 部 E-ORG 工 O 作 O , O 历 O 任 O 主 B-TITLE 任 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 海 B-ORG 烟 M-ORG 商 M-ORG 厦 E-ORG 经 B-TITLE 理 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 兼 O 海 B-ORG 烟 M-ORG 商 M-ORG 厦 E-ORG 经 B-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 7 O 月 O 在 O 上 B-ORG 海 M-ORG 烟 M-ORG 草 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 财 B-ORG 务 M-ORG 物 M-ORG 价 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 投 B-ORG 资 M-ORG 管 M-ORG 理 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 7 O 月 O 至 O 今 O 任 O 上 B-ORG 海 M-ORG 烟 M-ORG 草 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 处 E-ORG 处 B-TITLE 长 E-TITLE 。 O 管 S-NAME 先 O 生 O 2 O 0 O 0 O 2 O 年 O 获 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 南 M-ORG 京 M-ORG 政 M-ORG 治 M-ORG 学 M-ORG 院 M-ORG 上 M-ORG 海 M-ORG 分 M-ORG 院 E-ORG 经 B-PRO 济 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 刘 B-NAME 万 M-NAME 赋 E-NAME 先 O 生 O , O 山 B-ORG 东 M-ORG 墨 M-ORG 龙 M-ORG 石 M-ORG 油 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 生 O 于 O 1 O 9 O 3 O 9 O 年 O 1 O 月 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 刘 B-NAME 万 M-NAME 赋 E-NAME 先 O 生 O 自 O 2 O 0 O 0 O 3 O 年 O 3 O 月 O 2 O 9 O 日 O 起 O 任 O 山 B-ORG 东 M-ORG 墨 M-ORG 龙 M-ORG 石 M-ORG 油 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 万 M-NAME 赋 E-NAME 先 O 生 O 拥 O 有 O 逾 O 四 O 十 O 年 O 石 O 油 O 行 O 业 O 的 O 经 O 验 O , O 现 O 为 O 中 B-ORG 石 M-ORG 油 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 顾 B-TITLE 问 E-TITLE 。 O 赵 B-NAME 柏 M-NAME 福 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 4 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 毕 O 业 O 于 O 吉 B-ORG 林 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 业 M-PRO 企 M-PRO 业 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 在 O 中 B-ORG 国 M-ORG 软 M-ORG 件 M-ORG 与 M-ORG 技 M-ORG 术 M-ORG 服 M-ORG 务 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 任 O 中 B-ORG 国 M-ORG 软 M-ORG 件 M-ORG 与 M-ORG 技 M-ORG 术 M-ORG 服 M-ORG 务 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 柴 B-NAME 强 E-NAME : O 男 O , O 先 O 后 O 就 O 读 O 于 O 武 B-ORG 汉 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 管 B-PRO 理 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO 、 O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 技 B-PRO 术 M-PRO 经 M-PRO 济 M-PRO 专 M-PRO 业 E-PRO , O 获 O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU 、 O 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 国 O 务 O 院 O 批 O 准 O 享 O 受 O 政 O 府 O 特 O 殊 O 津 O 贴 O 专 O 家 O ; O 美 B-ORG 国 M-ORG 估 M-ORG 价 M-ORG 学 M-ORG 会 E-ORG 荣 B-TITLE 誉 M-TITLE 会 M-TITLE 员 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 估 M-ORG 价 M-ORG 师 M-ORG 与 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 经 M-ORG 纪 M-ORG 人 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 兼 O 秘 B-TITLE 书 M-TITLE 长 E-TITLE , O 住 B-ORG 房 M-ORG 和 M-ORG 城 M-ORG 乡 M-ORG 建 M-ORG 设 M-ORG 部 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 招 B-ORG 商 M-ORG 局 M-ORG 地 M-ORG 产 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 历 O 任 O 中 B-ORG 国 M-ORG 城 M-ORG 乡 M-ORG 建 M-ORG 设 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 城 B-TITLE 市 M-TITLE 经 M-TITLE 济 M-TITLE 研 M-TITLE 究 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 建 B-ORG 设 M-ORG 部 M-ORG 政 M-ORG 策 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-ORG 国 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 估 M-ORG 价 M-ORG 师 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 兼 O 秘 B-TITLE 书 M-TITLE 长 E-TITLE 。 O 方 B-NAME 卫 M-NAME 英 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 出 O 生 O 于 O 1 O 9 O 6 O 4 O 年 O 8 O 月 O , O 党 B-ORG 校 E-ORG 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 编 M-TITLE 辑 E-TITLE 职 O 称 O 。 O 2 O 0 O 0 O 7 O \ O 1 O - O 2 O 0 O 1 O 0 O \ O 1 O 1 O 浙 B-ORG 江 M-ORG 日 M-ORG 报 E-ORG 服 B-TITLE 务 M-TITLE 专 M-TITLE 刊 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 广 B-TITLE 告 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 1 O 0 O \ O 1 O 2 O 至 O 今 O 浙 B-ORG 江 M-ORG 日 M-ORG 报 M-ORG 新 M-ORG 闻 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 广 B-TITLE 告 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 1 O 1 O \ O 9 O 至 O 今 O 浙 B-ORG 报 M-ORG 传 M-ORG 媒 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 包 B-NAME 炜 M-NAME 堂 E-NAME , O 男 O , O 1 O 9 O 4 O 5 O 年 O 8 O 月 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 6 O 5 O 年 O 1 O 月 O 参 O 加 O 工 O 作 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 第 M-ORG 三 M-ORG 羊 M-ORG 毛 M-ORG 衫 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 股 M-TITLE 帐 M-TITLE 务 M-TITLE 、 M-TITLE 成 M-TITLE 本 M-TITLE 、 M-TITLE 核 M-TITLE 价 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 上 B-ORG 海 M-ORG 第 M-ORG 五 M-ORG 羊 M-ORG 毛 M-ORG 衫 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 副 M-TITLE 股 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 第 M-ORG 十 M-ORG 五 M-ORG 羊 M-ORG 毛 M-ORG 衫 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 第 M-ORG 一 M-ORG 毛 M-ORG 衫 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 凤 M-ORG 凰 M-ORG 装 M-ORG 饰 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 纺 M-ORG 织 M-ORG 控 M-ORG 股 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 、 O 上 B-ORG 海 M-ORG 纺 M-ORG 织 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 审 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 曹 B-NAME 旭 E-NAME 先 O 生 O , O 1 O 9 O 7 O 1 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 3 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 山 B-ORG 东 M-ORG 省 M-ORG 针 M-ORG 织 M-ORG 品 M-ORG 家 M-ORG 用 M-ORG 纺 M-ORG 织 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 山 B-ORG 东 M-ORG 省 M-ORG 纺 M-ORG 织 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 处 M-TITLE 长 E-TITLE ; O 新 B-ORG 华 M-ORG 锦 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 山 B-ORG 东 M-ORG 新 M-ORG 华 M-ORG 锦 M-ORG 国 M-ORG 际 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 李 B-NAME 建 M-NAME 伟 E-NAME , O 女 O , O 1 O 9 O 6 O 4 O 年 O 1 O 0 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 1 O 月 O 担 O 任 O 金 B-ORG 陵 M-ORG 饭 M-ORG 店 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 现 O 任 O 南 B-ORG 京 M-ORG 金 M-ORG 陵 M-ORG 饭 M-ORG 店 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 曾 O 作 O 为 O 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE 公 O 派 O 赴 O 德 B-ORG 国 M-ORG 巴 M-ORG 伐 M-ORG 利 M-ORG 亚 M-ORG 旅 M-ORG 游 M-ORG 学 M-ORG 院 E-ORG 学 O 习 O , O 赴 O 美 B-ORG 国 M-ORG 伊 M-ORG 利 M-ORG 诺 M-ORG 伊 M-ORG 斯 M-ORG 大 M-ORG 学 E-ORG 研 O 修 O 。 O 历 O 任 O 原 B-ORG 南 M-ORG 京 M-ORG 金 M-ORG 陵 M-ORG 饭 M-ORG 店 E-ORG 西 B-TITLE 餐 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE , O 金 B-ORG 陵 M-ORG 饭 M-ORG 店 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 南 B-ORG 京 M-ORG 金 M-ORG 陵 M-ORG 饭 M-ORG 店 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 钟 B-NAME 表 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 9 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 简 O 历 O : O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 毕 O 业 O 于 O 湖 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 邵 M-ORG 阳 M-ORG 分 M-ORG 校 E-ORG 内 B-PRO 燃 M-PRO 机 M-PRO 专 M-PRO 业 E-PRO ; O 1 O 9 O 8 O 7 O 年 O 7 O 月 O 至 O 1 O 9 O 8 O 9 O 年 O 6 O 月 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 第 M-ORG 7 M-ORG 3 M-ORG 1 M-ORG 9 M-ORG 工 M-ORG 厂 E-ORG 见 B-TITLE 习 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE ; O 1 O 9 O 8 O 9 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 1 O 1 O 月 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 第 M-ORG 7 M-ORG 3 M-ORG 1 M-ORG 9 M-ORG 工 M-ORG 厂 E-ORG 二 B-TITLE 车 M-TITLE 间 M-TITLE 调 M-TITLE 度 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 2 O 年 O 1 O 2 O 月 O 至 O 1 O 9 O 9 O 3 O 年 O 1 O 2 O 月 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 第 M-ORG 7 M-ORG 3 M-ORG 1 M-ORG 9 M-ORG 工 M-ORG 厂 E-ORG 二 B-TITLE 车 M-TITLE 间 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 调 B-TITLE 度 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 1 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 3 O 月 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 第 M-ORG 7 M-ORG 3 M-ORG 1 M-ORG 9 M-ORG 工 M-ORG 厂 M-ORG 汽 M-ORG 车 M-ORG 修 M-ORG 理 M-ORG 分 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 任 O 湖 B-ORG 南 M-ORG 长 M-ORG 丰 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 造 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 9 O 月 O 任 O 湖 B-ORG 南 M-ORG 长 M-ORG 丰 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 造 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 任 O 安 B-ORG 徽 M-ORG 长 M-ORG 丰 M-ORG 扬 M-ORG 子 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 造 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 任 O 湖 B-ORG 南 M-ORG 长 M-ORG 丰 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 造 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 起 O 任 O 湖 B-ORG 南 M-ORG 长 M-ORG 丰 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 造 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 傅 B-NAME 祖 M-NAME 平 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 0 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 起 O 任 O 浙 B-ORG 江 M-ORG 金 M-ORG 鹰 M-ORG 股 M-ORG 份 M-ORG 伊 M-ORG 犁 M-ORG 亚 M-ORG 麻 M-ORG 制 M-ORG 品 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 至 O 今 O 任 O 浙 B-ORG 江 M-ORG 金 M-ORG 鹰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 肖 B-NAME 红 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 3 O 月 O 2 O 0 O 日 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 8 O 1 O 年 O 7 O 月 O - O 2 O 0 O 0 O 1 O 年 O 8 O 月 O 在 O 桃 B-ORG 源 M-ORG 县 M-ORG 粮 M-ORG 食 M-ORG 局 E-ORG 工 O 作 O ; O 2 O 0 O 0 O 1 O 年 O 9 O 月 O 至 O 今 O 在 O 湖 B-ORG 南 M-ORG 金 M-ORG 健 M-ORG 米 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 曾 O 任 O 粮 B-TITLE 油 M-TITLE 食 M-TITLE 品 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 现 O 任 O 湖 B-ORG 南 M-ORG 金 M-ORG 健 M-ORG 米 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 粮 B-TITLE 油 M-TITLE 食 M-TITLE 品 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 精 B-ORG 米 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 师 B-NAME 志 M-NAME 刚 E-NAME 先 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 医 M-ORG 用 M-ORG 电 M-ORG 子 M-ORG 仪 M-ORG 器 M-ORG 厂 E-ORG 行 B-TITLE 政 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 北 B-ORG 京 M-ORG 医 M-ORG 用 M-ORG 超 M-ORG 声 M-ORG 仪 M-ORG 器 M-ORG 厂 E-ORG 四 B-TITLE 车 M-TITLE 间 M-TITLE 书 M-TITLE 记 E-TITLE , O 北 B-ORG 京 M-ORG 医 M-ORG 用 M-ORG 电 M-ORG 子 M-ORG 仪 M-ORG 器 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 北 B-ORG 京 M-ORG 万 M-ORG 东 M-ORG 医 M-ORG 疗 M-ORG 装 M-ORG 备 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 北 B-ORG 京 M-ORG 万 M-ORG 东 M-ORG 医 M-ORG 疗 M-ORG 装 M-ORG 备 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 陈 B-NAME 继 M-NAME 勇 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 至 O 2 O 0 O 1 O 2 O 年 O 任 O 武 B-ORG 汉 M-ORG 马 M-ORG 应 M-ORG 龙 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 1 O 月 O 至 O 今 O 担 O 任 O 九 B-ORG 州 M-ORG 通 M-ORG 医 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 武 B-ORG 汉 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 与 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 兼 O 中 B-ORG 国 M-ORG 美 M-ORG 国 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 世 M-ORG 界 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 。 O 蒋 B-NAME 明 M-NAME 刚 E-NAME , O 男 O , O 1 O 9 O 7 O 0 O 年 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 2 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 宁 B-ORG 夏 M-ORG 赛 M-ORG 马 M-ORG 水 M-ORG 泥 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 宁 B-ORG 夏 M-ORG 赛 M-ORG 马 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 公 B-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 丘 B-NAME 炜 E-NAME , O 男 O , O 1 O 9 O 6 O 9 O 年 O 生 O , O 中 B-TITLE 共 M-TITLE 预 M-TITLE 备 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 工 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 建 B-TITLE 筑 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 西 B-ORG 安 M-ORG 市 M-ORG 城 M-ORG 建 M-ORG 开 M-ORG 发 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 建 B-TITLE 筑 M-TITLE 设 M-TITLE 计 M-TITLE 研 M-TITLE 究 M-TITLE 院 M-TITLE 建 M-TITLE 筑 M-TITLE 师 E-TITLE , O 西 B-ORG 安 M-ORG 高 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 产 M-ORG 业 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 策 B-TITLE 划 M-TITLE 部 M-TITLE 主 M-TITLE 任 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 主 B-TITLE 任 M-TITLE 策 M-TITLE 划 M-TITLE 师 E-TITLE 、 O 经 B-TITLE 理 E-TITLE 、 O 天 B-ORG 地 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 西 M-ORG 安 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 天 B-ORG 地 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 发 B-TITLE 展 M-TITLE 规 M-TITLE 划 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 天 B-ORG 地 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 王 B-NAME 兆 M-NAME 庆 E-NAME 先 O 生 O : O 1 O 9 O 5 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 5 M-ORG 1 M-ORG 3 M-ORG 6 M-ORG 3 M-ORG 部 M-ORG 队 E-ORG 战 B-TITLE 勤 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 后 B-TITLE 勤 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 就 O 职 O 于 O 中 B-ORG 国 M-ORG 华 M-ORG 融 E-ORG , O 历 O 任 O 中 B-ORG 国 M-ORG 华 M-ORG 融 M-ORG 济 M-ORG 南 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 审 B-TITLE 计 M-TITLE 评 M-TITLE 估 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 债 B-TITLE 权 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 创 B-TITLE 新 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 新 B-TITLE 北 M-TITLE 洋 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 高 B-NAME 利 M-NAME 民 E-NAME 先 O 生 O , O 1 O 9 O 5 O 5 O 年 O 1 O 月 O 出 O 生 O , O 大 B-EDU 专 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 海 B-ORG 宁 M-ORG 市 M-ORG 马 M-ORG 桥 M-ORG 砖 M-ORG 瓦 M-ORG 厂 E-ORG 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE , O 海 B-ORG 宁 M-ORG 市 M-ORG 马 M-ORG 桥 M-ORG 泡 M-ORG 塑 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 海 B-ORG 宁 M-ORG 市 M-ORG 马 M-ORG 桥 M-ORG 砖 M-ORG 瓦 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 嘉 B-ORG 兴 M-ORG 海 M-ORG 亮 M-ORG 皮 M-ORG 塑 M-ORG 制 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 浙 B-ORG 江 M-ORG 海 M-ORG 利 M-ORG 得 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 嘉 B-TITLE 兴 M-TITLE 市 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 、 O 2 O 0 O 0 O 5 O 年 O 连 O 续 O 两 O 年 O 被 O 海 B-ORG 宁 M-ORG 市 M-ORG 委 E-ORG 、 O 海 B-ORG 宁 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 评 O 为 O “ O 海 O 宁 O 市 O 十 O 佳 O 企 O 业 O 家 O ” O ; O 2 O 0 O 0 O 4 O 年 O - O 2 O 0 O 0 O 8 O 年 O 连 O 续 O 5 O 年 O 被 O 海 B-ORG 宁 M-ORG 市 M-ORG 委 E-ORG 、 O 海 B-ORG 宁 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 评 O 为 O “ O 优 O 秀 O 企 O 业 O 家 O ” O ; O 2 O 0 O 0 O 5 O 年 O 被 O 海 B-ORG 宁 M-ORG 市 M-ORG 委 E-ORG 、 O 海 B-ORG 宁 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 评 O 为 O “ O 非 O 公 O 有 O 制 O 经 O 济 O 人 O 士 O 优 O 秀 O 中 O 国 O 特 O 色 O 社 O 会 O 主 O 义 O 事 O 业 O 建 O 设 O 者 O ” O 。 O 2 O 0 O 0 O 7 O - O 2 O 0 O 0 O 8 O 年 O 度 O 被 O 中 B-ORG 共 M-ORG 嘉 M-ORG 兴 M-ORG 市 M-ORG 委 E-ORG 、 O 嘉 B-ORG 兴 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 评 O 为 O 嘉 O 兴 O 市 O 优 O 秀 O 社 O 会 O 主 O 义 O 事 O 业 O 建 O 设 O 者 O 。 O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 1 O 4 O 日 O 中 B-ORG 共 M-ORG 海 M-ORG 宁 M-ORG 市 M-ORG 委 E-ORG 、 O 海 B-ORG 宁 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 授 O 予 O “ O 海 O 宁 O 市 O 杰 O 出 O 企 O 业 O 家 O 称 O 号 O ” O 。 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 被 O 嘉 B-ORG 兴 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 授 O 予 O “ O 嘉 O 兴 O 市 O 劳 O 动 O 模 O 范 O 称 O 号 O ” O 。 O 周 B-NAME 程 M-NAME 爱 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 1 O 9 O 8 O 4 O 年 O 参 O 加 O 工 O 作 O 。 O 历 O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 园 M-ORG 艺 M-ORG 所 E-ORG 植 B-TITLE 保 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 省 M-ORG 蔬 M-ORG 菜 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 湘 M-ORG 研 M-ORG 种 M-ORG 苗 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 湖 B-ORG 南 M-ORG 湘 M-ORG 研 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 兰 B-NAME 庆 M-NAME 民 E-NAME : O 男 O , O 1 O 9 O 6 O 4 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 在 O 南 B-ORG 宁 M-ORG 糖 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 下 M-ORG 属 M-ORG 明 M-ORG 阳 M-ORG 糖 M-ORG 厂 E-ORG 工 O 作 O , O 曾 O 任 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 任 O 南 B-ORG 宁 M-ORG 糖 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 下 M-ORG 属 M-ORG 东 M-ORG 江 M-ORG 糖 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 第 B-TITLE 一 M-TITLE 副 M-TITLE 厂 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 至 O 今 O 担 O 任 O 南 B-ORG 宁 M-ORG 糖 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 下 M-ORG 属 M-ORG 东 M-ORG 江 M-ORG 糖 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 1 O 1 O 月 O 起 O 为 O 南 B-ORG 宁 M-ORG 糖 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 昊 M-NAME 维 E-NAME 先 O 生 O , O 现 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 职 M-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 生 O 于 O 1 O 9 O 7 O 5 O 年 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 9 O 7 O 年 O 毕 O 业 O 于 O 辽 B-ORG 宁 M-ORG 大 M-ORG 学 E-ORG 通 B-PRO 信 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO 。 O 先 O 后 O 任 O 职 O 于 O 沈 B-ORG 阳 M-ORG 金 M-ORG 帝 M-ORG 二 M-ORG 建 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 北 M-ORG 华 M-ORG 兴 M-ORG 通 M-ORG 信 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 从 O 事 O 技 B-TITLE 术 M-TITLE 管 M-TITLE 理 E-TITLE 等 O 职 O 。 O 2 O 0 O 0 O 3 O 年 O 起 O 就 O 职 O 本 B-ORG 公 M-ORG 司 E-ORG , O 任 O 职 O 辽 B-ORG 宁 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 应 B-TITLE 用 M-TITLE 技 M-TITLE 术 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 辽 B-ORG 宁 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 工 B-TITLE 程 M-TITLE 技 M-TITLE 术 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 辽 B-ORG 宁 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 辽 B-ORG 宁 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 高 B-NAME 锦 M-NAME 芬 E-NAME , O 男 O , O 1 O 9 O 5 O 3 O 年 O 4 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 职 O 称 O , O 曾 O 任 O 职 O 于 O 韶 B-ORG 关 M-ORG 地 M-ORG 区 M-ORG 交 M-ORG 通 M-ORG 局 E-ORG , O 韶 B-ORG 关 M-ORG 航 M-ORG 运 M-ORG 局 E-ORG , O 前 B-ORG 山 M-ORG 港 M-ORG 阜 M-ORG 公 M-ORG 司 E-ORG ( O 副 B-TITLE 经 M-TITLE 理 E-TITLE ) O , O 珠 B-ORG 海 M-ORG 航 M-ORG 运 M-ORG 公 M-ORG 司 E-ORG ( O 副 B-TITLE 经 M-TITLE 理 E-TITLE ) O , O 珠 B-ORG 海 M-ORG 九 M-ORG 州 M-ORG 港 M-ORG 务 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG ( O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ) O , O 珠 B-ORG 海 M-ORG 港 M-ORG 务 M-ORG 局 E-ORG ( O 副 B-TITLE 局 M-TITLE 长 E-TITLE ) O ; O 现 O 任 O 珠 B-ORG 海 M-ORG 市 M-ORG 港 M-ORG 口 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 富 B-ORG 华 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 局 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 宋 B-NAME 深 M-NAME 海 E-NAME 先 O 生 O : O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 二 B-TITLE 级 M-TITLE 律 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 任 O 浙 B-ORG 富 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 1 O 9 O 8 O 9 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 6 O 月 O , O 任 O 职 O 于 O 浙 B-ORG 江 M-ORG 省 M-ORG 经 M-ORG 济 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 。 O 2 O 0 O 0 O 6 O 年 O 7 O 月 O 至 O 今 O , O 在 O 浙 B-ORG 江 M-ORG 省 M-ORG 浙 M-ORG 经 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 从 O 事 O 律 B-TITLE 师 E-TITLE 工 O 作 O , O 任 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 。 O 宋 B-NAME 深 M-NAME 海 E-NAME 先 O 生 O 还 O 兼 O 任 O 浙 B-ORG 江 M-ORG 大 M-ORG 学 M-ORG 城 M-ORG 市 M-ORG 学 M-ORG 院 E-ORG 兼 B-TITLE 职 M-TITLE 教 M-TITLE 授 E-TITLE , O 杭 B-ORG 州 M-ORG 仲 M-ORG 裁 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 仲 B-TITLE 裁 M-TITLE 员 E-TITLE 。 O 刘 B-NAME 岚 E-NAME 女 O 士 O , O 1 O 9 O 8 O 9 O 年 O 毕 O 业 O 于 O 四 B-ORG 川 M-ORG 大 M-ORG 学 E-ORG , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 先 O 后 O 任 O 西 B-ORG 藏 M-ORG 药 M-ORG 业 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE , O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 内 B-TITLE 控 M-TITLE 审 M-TITLE 计 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE ; O 现 O 任 O 西 B-ORG 藏 M-ORG 药 M-ORG 业 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 吕 B-NAME 学 M-NAME 强 E-NAME 先 O 生 O , O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 中 B-CONT 国 M-CONT 公 M-CONT 民 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 1 O 9 O 6 O 6 O 年 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 江 B-ORG 苏 M-ORG 金 M-ORG 信 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 信 B-ORG 泰 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 兼 O 稽 B-TITLE 核 M-TITLE 总 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 江 B-ORG 苏 M-ORG 亚 M-ORG 威 M-ORG 机 M-ORG 床 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 亚 M-ORG 威 M-ORG 机 M-ORG 床 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 江 B-ORG 苏 M-ORG 高 M-ORG 鼎 M-ORG 科 M-ORG 技 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 江 B-ORG 苏 M-ORG 高 M-ORG 新 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 军 E-NAME 先 O 生 O , O 北 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 地 B-PRO 质 M-PRO 学 E-PRO 学 B-EDU 士 E-EDU 、 O 硕 B-EDU 士 E-EDU 、 O 芝 B-ORG 加 M-ORG 哥 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A E-EDU 、 O 斯 B-ORG 坦 M-ORG 福 M-ORG 大 M-ORG 学 E-ORG 地 B-PRO 质 M-PRO 与 M-PRO 环 M-PRO 境 M-PRO 科 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 、 O 电 B-TITLE 子 M-TITLE 工 M-TITLE 程 M-TITLE 博 M-TITLE 士 M-TITLE 后 E-TITLE ; O 曾 O 任 O 美 B-ORG 国 M-ORG A M-ORG p M-ORG p M-ORG l M-ORG i M-ORG e M-ORG d M-ORG M M-ORG a M-ORG t M-ORG e M-ORG r M-ORG i M-ORG a M-ORG l M-ORG s M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE 、 O 香 B-ORG 港 M-ORG 智 M-ORG 联 M-ORG 通 M-ORG 风 M-ORG 险 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 深 M-TITLE 投 M-TITLE 资 M-TITLE 总 M-TITLE 监 E-TITLE 、 O I B-ORG n M-ORG v M-ORG e M-ORG s M-ORG t M-ORG o M-ORG r M-ORG G M-ORG r M-ORG o M-ORG w M-ORG t M-ORG h M-ORG C M-ORG a M-ORG p M-ORG i M-ORG t M-ORG a M-ORG l M-ORG A M-ORG s M-ORG i M-ORG a E-ORG 资 B-TITLE 深 M-TITLE 投 M-TITLE 资 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 华 B-ORG 润 M-ORG 上 M-ORG 华 M-ORG 科 M-ORG 技 M-ORG 公 M-ORG 司 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 战 M-TITLE 略 M-TITLE 官 E-TITLE 、 O 市 B-TITLE 场 M-TITLE 与 M-TITLE 营 M-TITLE 销 M-TITLE 总 M-TITLE 监 E-TITLE , O 芝 B-ORG 华 M-ORG 财 M-ORG 瑞 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 现 O 任 O 恒 B-ORG 泰 M-ORG 艾 M-ORG 普 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 吴 B-NAME 海 M-NAME 波 E-NAME 先 O 生 O , O 1 O 9 O 7 O 4 O 年 O 8 O 月 O 生 O , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 最 O 近 O 五 O 年 O 担 O 任 O 武 B-ORG 汉 M-ORG 光 M-ORG 迅 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 等 O 职 O 务 O 。 O 孙 B-NAME 传 M-NAME 尧 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 4 O 4 O 年 O 1 O 2 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 中 B-ORG 国 M-ORG 工 M-ORG 程 M-ORG 院 E-ORG 院 B-TITLE 士 E-TITLE 、 O 俄 B-ORG 罗 M-ORG 斯 M-ORG 圣 M-ORG 。 M-ORG 彼 M-ORG 得 M-ORG 堡 M-ORG 工 M-ORG 程 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 士 E-TITLE 。 O 曾 O 任 O 新 B-ORG 疆 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 公 M-ORG 司 M-ORG 可 M-ORG 可 M-ORG 托 M-ORG 海 M-ORG 矿 M-ORG 务 M-ORG 局 M-ORG 选 M-ORG 矿 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 北 B-ORG 京 M-ORG 矿 M-ORG 冶 M-ORG 研 M-ORG 究 M-ORG 总 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE ; O 北 B-ORG 矿 M-ORG 磁 M-ORG 材 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 矿 B-ORG 物 M-ORG 加 M-ORG 工 M-ORG 科 M-ORG 学 M-ORG 与 M-ORG 技 M-ORG 术 M-ORG 国 M-ORG 家 M-ORG 重 M-ORG 点 M-ORG 实 M-ORG 验 M-ORG 室 E-ORG 主 B-TITLE 任 E-TITLE ; O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE ; O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 矿 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG ( O 香 O 港 O 上 O 市 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 中 B-ORG 铝 M-ORG 国 M-ORG 际 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG ( O 香 O 港 O 上 O 市 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 哈 B-ORG 尔 M-ORG 滨 M-ORG 电 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 佳 M-ORG 木 M-ORG 斯 M-ORG 电 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 朱 B-NAME 平 M-NAME 礼 E-NAME : O 男 O , O 1 O 9 O 7 O 0 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 通 M-ORG 用 M-ORG 汽 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 经 M-TITLE 理 E-TITLE , O 沈 B-ORG 阳 M-ORG 华 M-ORG 晨 M-ORG 汽 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 轿 B-ORG 车 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 福 B-ORG 耀 M-ORG 集 M-ORG 团 M-ORG ( M-ORG 上 M-ORG 海 M-ORG ) M-ORG 汽 M-ORG 车 M-ORG 玻 M-ORG 璃 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 空 B-ORG 调 M-ORG 国 M-ORG 际 M-ORG ( M-ORG 上 M-ORG 海 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 自 O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 起 O 任 O 上 B-ORG 海 M-ORG 加 M-ORG 冷 M-ORG 松 M-ORG 芝 M-ORG 汽 M-ORG 车 M-ORG 空 M-ORG 调 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 周 B-NAME 云 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 烟 B-ORG 台 M-ORG 市 M-ORG 医 M-ORG 药 M-ORG 公 M-ORG 司 E-ORG 组 B-TITLE 织 M-TITLE 科 M-TITLE 干 M-TITLE 事 E-TITLE 至 O 烟 B-ORG 台 M-ORG 市 M-ORG 医 M-ORG 药 M-ORG 公 M-ORG 司 E-ORG 下 B-TITLE 属 M-TITLE 企 M-TITLE 业 M-TITLE 劳 M-TITLE 资 M-TITLE 主 M-TITLE 管 E-TITLE , O 山 B-ORG 东 M-ORG 瑞 M-ORG 康 M-ORG 药 M-ORG 业 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 瑞 B-ORG 康 M-ORG 配 M-ORG 送 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 中 M-TITLE 心 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 监 E-TITLE , O 瑞 B-TITLE 康 M-TITLE 配 M-TITLE 送 M-TITLE 监 M-TITLE 事 E-TITLE , O 现 O 任 O 山 B-ORG 东 M-ORG 瑞 M-ORG 康 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 蔡 B-NAME 锦 M-NAME 波 E-NAME 先 O 生 O : O 1 O 9 O 6 O 0 O 年 O 生 O , O 浙 B-LOC 江 M-LOC 杭 M-LOC 州 M-LOC 人 E-LOC , O 汉 B-RACE 族 E-RACE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 杭 B-ORG 州 M-ORG 汽 M-ORG 车 M-ORG 发 M-ORG 动 M-ORG 机 M-ORG 厂 E-ORG 机 B-TITLE 械 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 海 B-ORG 口 M-ORG 三 M-ORG 圣 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 德 B-ORG 瑞 M-ORG 投 M-ORG 资 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 兼 O 经 B-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 力 M-NAME 生 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 成 B-ORG 都 M-ORG 人 M-ORG 民 M-ORG 商 M-ORG 场 E-ORG 针 B-TITLE 织 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 经 B-TITLE 理 E-TITLE , O 北 B-TITLE 站 M-TITLE 分 M-TITLE 场 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 成 B-ORG 都 M-ORG 人 M-ORG 民 M-ORG 商 M-ORG 场 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 成 B-ORG 都 M-ORG 人 M-ORG 民 M-ORG 商 M-ORG 场 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 成 B-ORG 都 M-ORG 人 M-ORG 民 M-ORG 商 M-ORG 场 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 成 B-ORG 都 M-ORG 人 M-ORG 民 M-ORG 商 M-ORG 场 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 孙 B-NAME 永 M-NAME 法 E-NAME 先 O 生 O , O 1 O 9 O 7 O 5 O 年 O 2 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 新 B-ORG 大 M-ORG 洲 M-ORG 本 M-ORG 田 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 电 B-TITLE 器 M-TITLE 设 M-TITLE 计 M-TITLE 室 M-TITLE 主 M-TITLE 管 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 上 B-ORG 海 M-ORG 现 M-ORG 代 M-ORG M M-ORG O M-ORG B M-ORG I M-ORG S M-ORG 汽 M-ORG 车 M-ORG 配 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 采 B-TITLE 购 M-TITLE 部 M-TITLE 主 M-TITLE 管 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 黄 B-ORG 山 M-ORG 金 M-ORG 马 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 市 B-TITLE 场 M-TITLE 拓 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 职 M-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE , O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 黄 B-ORG 山 M-ORG 金 M-ORG 马 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 杨 B-NAME 启 M-NAME 明 E-NAME , O 男 O , O 1 O 9 O 5 O 1 O 年 O 出 O 生 O , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 工 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 5 O 月 O 至 O 今 O , O 历 O 任 O 机 B-ORG 械 M-ORG 工 M-ORG 业 M-ORG 北 M-ORG 京 M-ORG 电 M-ORG 工 M-ORG 技 M-ORG 术 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 电 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 、 O 秘 B-TITLE 书 M-TITLE 长 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 至 O 今 O , O 任 O 卧 B-ORG 龙 M-ORG 电 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 振 M-NAME 宇 E-NAME 先 O 生 O , O 中 B-ORG 信 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 司 O 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 行 M-TITLE 政 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 杨 S-NAME 先 O 生 O 于 O 1 O 9 O 9 O 7 O 年 O 加 O 入 O 中 B-ORG 信 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 并 O 于 O 2 O 0 O 0 O 5 O 年 O 1 O 2 O 月 O 1 O 6 O 日 O 获 O 委 O 任 O 为 O 中 B-ORG 信 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 杨 S-NAME 先 O 生 O 曾 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 资 B-TITLE 金 M-TITLE 运 M-TITLE 营 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 杨 S-NAME 先 O 生 O 于 O 1 O 9 O 9 O 3 O 年 O 获 O 得 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 公 M-ORG 安 M-ORG 大 M-ORG 学 E-ORG 法 B-PRO 律 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 王 B-NAME 成 M-NAME 义 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 南 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 、 O 德 B-ORG 国 M-ORG 哥 M-ORG 廷 M-ORG 根 M-ORG 大 M-ORG 学 E-ORG 法 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 1 O 9 O 9 O 4 O 年 O 开 O 始 O 律 B-TITLE 师 E-TITLE 执 O 业 O , O 先 O 后 O 在 O 深 B-ORG 圳 M-ORG 市 M-ORG 新 M-ORG 世 M-ORG 纪 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 广 B-ORG 东 M-ORG 鹏 M-ORG 都 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 广 B-ORG 东 M-ORG 博 M-ORG 合 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 东 B-ORG 方 M-ORG 昆 M-ORG 仑 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 执 O 业 O , O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 法 M-ORG 制 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE ( O 研 B-TITLE 究 M-TITLE 员 E-TITLE ) O 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 人 M-ORG 大 M-ORG 常 M-ORG 委 M-ORG 会 E-ORG 主 B-TITLE 任 M-TITLE 法 M-TITLE 律 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 深 B-ORG 圳 M-ORG 仲 M-ORG 裁 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 仲 B-TITLE 裁 M-TITLE 员 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 英 M-ORG 唐 M-ORG 智 M-ORG 能 M-ORG 控 M-ORG 制 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 邱 B-NAME 九 M-NAME 辉 E-NAME 先 O 生 O : O 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 现 O 任 O 金 B-ORG 轮 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 历 O 任 O 南 B-ORG 通 M-ORG 合 M-ORG 成 M-ORG 纤 M-ORG 维 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 技 M-TITLE 术 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 和 O 分 B-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 银 M-ORG 凤 M-ORG 化 M-ORG 纤 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 原 O 南 B-ORG 通 M-ORG 合 M-ORG 成 M-ORG 纤 M-ORG 维 M-ORG 厂 E-ORG ) O 生 B-TITLE 产 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 经 B-TITLE 营 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 金 B-ORG 轮 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 行 B-TITLE 政 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 兼 O 总 B-TITLE 裁 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 孟 B-NAME 杰 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 7 O 年 O 1 O 0 O 月 O 生 O , O 籍 O 贯 O 河 B-LOC 南 M-LOC 周 M-LOC 口 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 咨 M-TITLE 询 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 董 O 秘 O 资 O 格 O 。 O 1 O 9 O 9 O 5 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 7 O 月 O 在 O 湖 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 土 M-ORG 木 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 学 O 习 O ; O 2 O 0 O 0 O 2 O 年 O 8 O 月 O 至 O 今 O 在 O 招 B-ORG 商 M-ORG 局 M-ORG 华 M-ORG 建 M-ORG 公 M-ORG 路 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 历 O 任 O 股 B-TITLE 权 M-TITLE 管 M-TITLE 理 M-TITLE 一 M-TITLE 部 M-TITLE 项 M-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 部 B-TITLE 门 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 部 B-TITLE 门 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 部 B-TITLE 门 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 首 B-TITLE 席 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE , O 兼 O 任 O 安 B-ORG 徽 M-ORG 皖 M-ORG 通 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 河 B-ORG 南 M-ORG 中 M-ORG 原 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 华 B-ORG 北 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ( O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 7 O 月 O 在 O 北 B-ORG 京 M-ORG 大 M-ORG 学 M-ORG 光 M-ORG 华 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 就 O 读 O 在 B-EDU 职 M-EDU M M-EDU B M-EDU A E-EDU ) O ; O 2 O 0 O 0 O 8 O 年 O 7 O 月 O 至 O 今 O 任 O 广 B-ORG 西 M-ORG 五 M-ORG 洲 M-ORG 交 M-ORG 通 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 、 M-TITLE 七 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 范 B-NAME 志 M-NAME 伟 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 6 O 0 O 年 O 4 O 月 O , O 高 B-EDU 中 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 技 M-TITLE 师 E-TITLE 。 O 历 O 任 O 云 B-ORG 南 M-ORG 白 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 生 M-ORG 产 M-ORG 制 M-ORG 造 M-ORG 中 M-ORG 心 E-ORG 胶 B-TITLE 囊 M-TITLE 生 M-TITLE 产 M-TITLE 线 M-TITLE 设 M-TITLE 备 M-TITLE 维 M-TITLE 护 M-TITLE 员 E-TITLE 。 O 云 B-ORG 南 M-ORG 白 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 动 M-ORG 力 M-ORG 装 M-ORG 备 M-ORG 部 M-ORG 技 M-ORG 术 M-ORG 中 M-ORG 心 E-ORG “ O 名 O 匠 O 工 O 作 O 室 O ” O 特 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 云 B-ORG 南 M-ORG 白 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 华 M-NAME 明 E-NAME 先 O 生 O , O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 深 B-ORG 圳 M-ORG 市 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE , O 民 B-ORG 进 M-ORG 深 M-ORG 圳 M-ORG 市 M-ORG 委 E-ORG 副 B-TITLE 主 M-TITLE 委 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 7 O 月 O - O 1 O 9 O 9 O 4 O 年 O 3 O 月 O 在 O 深 B-ORG 圳 M-ORG 罗 M-ORG 湖 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 公 M-ORG 司 E-ORG 任 O 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 4 O 年 O 3 O 月 O - O 1 O 9 O 9 O 6 O 年 O 1 O 0 O 月 O 在 O 招 B-ORG 银 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 现 O 招 B-ORG 商 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ) O 任 O 发 B-TITLE 行 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 6 O 年 O 1 O 0 O - O 2 O 0 O 0 O 1 O 年 O 6 O 月 O 在 O 国 B-ORG 信 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 投 B-TITLE 资 M-TITLE 银 M-TITLE 行 M-TITLE 部 M-TITLE 执 M-TITLE 行 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 6 O - O 2 O 0 O 0 O 3 O 年 O 1 O 月 O 在 O 富 B-ORG 港 M-ORG 控 M-ORG 股 M-ORG ( M-ORG 香 M-ORG 港 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 执 B-TITLE 行 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 华 M-NAME 明 E-NAME 先 O 生 O 现 O 兼 O 任 O 上 O 市 O 公 O 司 O " O 陕 B-ORG 西 M-ORG 秦 M-ORG 川 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG " O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 综 B-ORG 合 M-ORG 开 M-ORG 发 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG ( M-ORG 中 M-ORG 国 M-ORG 。 M-ORG 深 M-ORG 圳 M-ORG ) E-ORG 特 B-TITLE 邀 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 。 O 徐 B-NAME 勇 E-NAME 先 O 生 O , O 1 O 9 O 6 O 6 O 年 O 1 O 0 O 月 O 生 O , O 硕 B-EDU 士 E-EDU 。 O 最 O 近 O 五 O 年 O 担 O 任 O 武 B-ORG 汉 M-ORG 光 M-ORG 迅 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 武 B-ORG 汉 M-ORG 电 M-ORG 信 M-ORG 器 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 务 O 。 O 薛 B-NAME 瑞 M-NAME 勇 E-NAME , O 男 O , O 1 O 9 O 7 O 3 O 年 O 2 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 6 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 法 M-TITLE 规 M-TITLE 处 M-TITLE 处 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 大 B-ORG 成 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 审 M-TITLE 部 M-TITLE 主 M-TITLE 任 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 大 B-ORG 成 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 审 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 任 O 山 B-ORG 东 M-ORG 大 M-ORG 成 M-ORG 农 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 法 M-TITLE 规 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 刘 B-NAME 方 M-NAME 权 E-NAME 先 O 生 O : O 现 O 任 O 威 B-ORG 华 M-ORG 股 M-ORG 份 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 司 B-TITLE 法 M-TITLE 会 M-TITLE 计 M-TITLE 鉴 M-TITLE 定 M-TITLE 人 E-TITLE 。 O 现 O 任 O 瑞 B-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 佛 M-ORG 山 M-ORG 分 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE , O 主 O 持 O 事 O 务 O 所 O 全 O 面 O 工 O 作 O ; O 同 O 时 O 兼 O 任 O 广 B-ORG 东 M-ORG 公 M-ORG 信 M-ORG 管 M-ORG 理 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 广 B-ORG 东 M-ORG 省 M-ORG 注 M-ORG 册 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG 及 O 佛 B-ORG 山 M-ORG 市 M-ORG 注 M-ORG 册 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE ; O 广 B-ORG 东 M-ORG 省 M-ORG 国 M-ORG 资 M-ORG 委 M-ORG 专 M-ORG 家 M-ORG 库 E-ORG 及 O 广 B-ORG 东 M-ORG 省 M-ORG 管 M-ORG 理 M-ORG 咨 M-ORG 询 M-ORG 协 M-ORG 会 M-ORG 专 M-ORG 家 M-ORG 库 E-ORG 财 B-TITLE 务 M-TITLE 专 M-TITLE 家 E-TITLE ; O 佛 B-ORG 山 M-ORG 市 M-ORG 工 M-ORG 商 M-ORG 行 M-ORG 政 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 行 B-TITLE 政 M-TITLE 廉 M-TITLE 政 M-TITLE 监 M-TITLE 督 M-TITLE 员 E-TITLE ; O 佛 B-ORG 山 M-ORG 市 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 监 B-TITLE 事 E-TITLE , O 以 O 及 O 佛 B-ORG 山 M-ORG 市 M-ORG 燃 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 佛 B-ORG 山 M-ORG 市 M-ORG 蓝 M-ORG 箭 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 和 O 佛 B-ORG 山 M-ORG 市 M-ORG 天 M-ORG 波 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 职 O 务 O 。 O 长 O 期 O 从 O 事 O 会 O 计 O 审 O 计 O 、 O 税 O 务 O 、 O 评 O 估 O 、 O 咨 O 询 O 、 O 培 O 训 O 教 O 育 O 等 O 工 O 作 O , O 并 O 致 O 力 O 于 O 企 O 业 O 财 O 务 O 运 O 营 O 与 O 管 O 理 O 研 O 究 O , O 具 O 有 O 丰 O 富 O 的 O 企 O 业 O 重 O 组 O 策 O 划 O 、 O 企 O 业 O 管 O 理 O 咨 O 询 O 、 O 投 O 融 O 资 O 咨 O 询 O 、 O 管 O 理 O 培 O 训 O 等 O 方 O 面 O 的 O 实 O 践 O 经 O 验 O 。 O 2 O 0 O 1 O 3 O 年 O 5 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 冯 B-NAME 淑 M-NAME 华 E-NAME 女 O 士 O , O 1 O 9 O 4 O 9 O 年 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 1 O 2 O 月 O 取 O 得 O 上 O 市 O 公 O 司 O 独 O 立 O 董 O 事 O 培 O 训 O 班 O 结 O 业 O 证 O 书 O 。 O 历 O 任 O 吉 B-ORG 林 M-ORG 省 M-ORG 经 M-ORG 济 M-ORG 体 M-ORG 制 M-ORG 改 M-ORG 革 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 证 M-ORG 监 M-ORG 会 M-ORG 长 M-ORG 春 M-ORG 证 M-ORG 券 M-ORG 监 M-ORG 管 M-ORG 特 M-ORG 派 M-ORG 员 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 法 B-TITLE 规 M-TITLE 稽 M-TITLE 查 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 现 O 拟 O 离 O 休 O 。 O 董 B-TITLE 事 E-TITLE 刘 B-NAME 振 M-NAME 宇 E-NAME 先 O 生 O : O 历 O 任 O 天 B-ORG 津 M-ORG 经 M-ORG 济 M-ORG 技 M-ORG 术 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 工 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 、 O 天 B-ORG 津 M-ORG 泰 M-ORG 达 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 项 M-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 等 O 职 O , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 天 B-ORG 津 M-ORG 泰 M-ORG 达 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 兼 O 任 O 天 B-ORG 津 M-ORG 滨 M-ORG 海 M-ORG 能 M-ORG 源 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 霍 B-NAME 美 M-NAME 英 E-NAME 女 O 士 O : O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 先 O 后 O 任 O 职 O 东 B-ORG 瑞 M-ORG 制 M-ORG 药 M-ORG ( M-ORG 控 M-ORG 股 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 地 B-TITLE 区 M-TITLE 销 M-TITLE 售 M-TITLE 经 M-TITLE 理 E-TITLE , O 北 B-ORG 京 M-ORG 麦 M-ORG 邦 M-ORG 生 M-ORG 物 M-ORG 工 M-ORG 程 M-ORG 技 M-ORG 术 M-ORG 公 M-ORG 司 E-ORG 糖 B-TITLE 尿 M-TITLE 病 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 入 O 职 O 江 B-ORG 苏 M-ORG 鱼 M-ORG 跃 M-ORG 医 M-ORG 疗 M-ORG 设 M-ORG 备 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 担 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 兼 O 血 B-TITLE 糖 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 左 B-NAME 爱 M-NAME 军 E-NAME , O 男 O , O 白 B-RACE 族 E-RACE , O 中 B-ORG 国 M-ORG 共 M-ORG 产 M-ORG 党 E-ORG , O 1 O 9 O 6 O 8 O 年 O 6 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 0 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 云 B-ORG 南 M-ORG 沾 M-ORG 益 M-ORG 化 M-ORG 肥 M-ORG 厂 E-ORG 团 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 书 B-TITLE 记 E-TITLE 、 O 组 B-TITLE 织 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 兼 O 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 组 B-TITLE 织 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 兼 O 党 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 云 B-ORG 南 M-ORG 沾 M-ORG 化 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 云 B-ORG 南 M-ORG 云 M-ORG 维 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 王 B-NAME 友 M-NAME 权 E-NAME : O 男 O , O 1 O 9 O 7 O 1 O 年 O 7 O 月 O 出 O 生 O 。 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 最 O 近 O 5 O 年 O 曾 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 已 O 离 O 任 O 。 O 熊 B-NAME 必 M-NAME 琳 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 0 O 年 O 8 O 月 O 出 O 生 O , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG , O 中 B-ORG 南 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 近 O 五 O 年 O 来 O , O 先 O 后 O 担 O 任 O 国 B-ORG 家 M-ORG 发 M-ORG 展 M-ORG 和 M-ORG 改 M-ORG 革 M-ORG 委 M-ORG 工 M-ORG 业 M-ORG 司 E-ORG 副 B-TITLE 司 M-TITLE 长 E-TITLE 、 O 国 B-ORG 家 M-ORG 发 M-ORG 展 M-ORG 和 M-ORG 改 M-ORG 革 M-ORG 委 M-ORG 产 M-ORG 业 M-ORG 协 M-ORG 调 M-ORG 司 E-ORG 巡 B-TITLE 视 M-TITLE 员 E-TITLE 等 O 职 O 。 O 现 O 任 O 中 B-ORG 国 M-ORG 食 M-ORG 品 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 兼 O 秘 B-TITLE 书 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 国 B-ORG 家 M-ORG 食 M-ORG 品 M-ORG 安 M-ORG 全 M-ORG 风 M-ORG 险 M-ORG 评 M-ORG 估 M-ORG 中 M-ORG 心 E-ORG 理 B-TITLE 事 E-TITLE , O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 工 M-ORG 程 M-ORG 咨 M-ORG 询 M-ORG 公 M-ORG 司 E-ORG 专 B-TITLE 家 M-TITLE 学 M-TITLE 术 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 雷 B-NAME 霞 E-NAME 女 O 士 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 2 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O 任 O 新 B-ORG 疆 M-ORG 化 M-ORG 工 M-ORG 供 M-ORG 销 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 员 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 、 O 书 B-TITLE 记 E-TITLE 、 O 法 B-TITLE 人 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 任 O 中 B-ORG 泰 M-ORG 化 M-ORG 学 E-ORG 物 B-TITLE 资 M-TITLE 装 M-TITLE 备 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 7 O 月 O 任 O 中 B-ORG 泰 M-ORG 化 M-ORG 学 M-ORG 供 M-ORG 销 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 书 B-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 任 O 中 B-ORG 泰 M-ORG 化 M-ORG 学 E-ORG 总 B-TITLE 经 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 商 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 7 O 月 O 任 O 中 B-ORG 泰 M-ORG 化 M-ORG 学 E-ORG 采 B-TITLE 购 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 7 O 月 O 任 O 中 B-ORG 泰 M-ORG 化 M-ORG 学 E-ORG 销 B-TITLE 售 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 7 O 月 O 至 O 今 O 任 O 中 B-ORG 泰 M-ORG 化 M-ORG 学 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 4 O 年 O 5 O 月 O 至 O 今 O 任 O 新 B-ORG 疆 M-ORG 富 M-ORG 丽 M-ORG 达 M-ORG 纤 M-ORG 维 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 5 O 年 O 1 O 月 O 至 O 今 O 任 O 新 B-ORG 疆 M-ORG 富 M-ORG 丽 M-ORG 达 M-ORG 纤 M-ORG 维 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 吴 B-NAME 仁 M-NAME 铭 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 3 O 8 O 年 O 1 O 1 O 月 O 生 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 工 E-TITLE 。 O 曾 O 在 O 中 B-ORG 国 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 化 M-ORG 学 M-ORG 所 E-ORG 、 O 兰 B-ORG 州 M-ORG 地 M-ORG 质 M-ORG 所 E-ORG 从 O 事 O 科 O 研 O 工 O 作 O , O 1 O 9 O 7 O 4 O 年 O 起 O 历 O 任 O 甘 B-ORG 肃 M-ORG 环 M-ORG 境 M-ORG 保 M-ORG 护 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 、 O 甘 B-ORG 肃 M-ORG 环 M-ORG 境 M-ORG 保 M-ORG 护 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG I M-ORG T M-ORG S M-ORG 公 M-ORG 司 E-ORG 实 B-TITLE 验 M-TITLE 室 M-TITLE 主 M-TITLE 任 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 起 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 总 M-TITLE 顾 M-TITLE 问 E-TITLE 。 O 在 O 环 O 境 O 保 O 护 O 方 O 面 O 拥 O 有 O 较 O 深 O 的 O 造 O 诣 O , O 在 O 国 O 内 O 核 O 心 O 期 O 刊 O 上 O 发 O 表 O 论 O 文 O 2 O 0 O 余 O 篇 O , O 国 O 外 O 期 O 刊 O 上 O 发 O 表 O 论 O 文 O 3 O 篇 O , O 曾 O 多 O 次 O 获 O 得 O 国 O 家 O 科 O 学 O 技 O 术 O 进 O 步 O 二 O 等 O 奖 O 、 O 三 O 等 O 奖 O , O 并 O 被 O 评 O 为 O 全 O 国 O 环 O 境 O 保 O 护 O 系 O 统 O 精 O 神 O 文 O 明 O 先 O 进 O 个 O 人 O 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 总 M-TITLE 顾 M-TITLE 问 E-TITLE , O 为 O 本 O 公 O 司 O 核 O 心 O 技 O 术 O 人 O 员 O 。 O 黄 B-NAME 忠 M-NAME 和 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 7 O 2 O 年 O 生 O , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 南 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 企 B-PRO 业 M-PRO 管 M-PRO 理 M-PRO 现 M-PRO 代 M-PRO 财 M-PRO 务 M-PRO 与 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO 研 B-EDU 究 M-EDU 生 M-EDU 进 M-EDU 修 M-EDU 班 E-EDU 结 O 业 O , O 历 O 任 O 张 B-ORG 家 M-ORG 港 M-ORG 鑫 M-ORG 宏 M-ORG 铝 M-ORG 业 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 长 E-TITLE , O 华 B-ORG 夏 M-ORG ( M-ORG 张 M-ORG 家 M-ORG 港 M-ORG ) M-ORG 电 M-ORG 梯 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 长 B-ORG 江 M-ORG 润 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 现 O 任 O 长 B-ORG 江 M-ORG 润 M-ORG 发 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 长 B-ORG 江 M-ORG 润 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 董 B-TITLE 事 E-TITLE , O 长 B-ORG 江 M-ORG 润 M-ORG 发 M-ORG ( M-ORG 张 M-ORG 家 M-ORG 港 M-ORG ) M-ORG 重 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 胡 B-NAME 本 M-NAME 源 E-NAME : O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 教 B-TITLE 授 E-TITLE , O 会 B-PRO 计 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 博 B-EDU 士 E-EDU , O 硕 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 新 B-ORG 疆 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 曾 O 任 O 新 B-ORG 疆 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG A B-TITLE C M-TITLE C M-TITLE A M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 主 O 要 O 从 O 事 O 内 O 部 O 控 O 制 O 与 O 审 O 计 O 领 O 域 O 的 O 研 O 究 O , O 主 O 持 O 并 O 参 O 与 O 多 O 项 O 国 O 家 O 及 O 省 O 部 O 级 O 课 O 题 O , O 入 O 选 O 第 O 四 O 批 O 全 O 国 O 会 O 计 O 学 O 术 O 类 O 领 O 军 O 人 O 才 O 。 O 孙 B-NAME 建 M-NAME 华 E-NAME 女 O 士 O , O 1 O 9 O 5 O 7 O 年 O 2 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 理 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 硕 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 担 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 至 O 今 O 担 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 刘 B-NAME 凯 M-NAME 风 E-NAME : O 男 O , O 1 O 9 O 5 O 3 O 年 O 9 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 普 M-EDU 通 M-EDU 班 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 因 O 退 O 休 O 于 O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 不 O 再 O 担 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 青 M-ORG 山 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 及 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 职 O 务 O 。 O 陈 B-NAME 传 M-NAME 贤 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 1 O 9 O 6 O 2 O 年 O 1 O 0 O 月 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 陈 B-NAME 传 M-NAME 贤 E-NAME 先 O 生 O 长 O 期 O 从 O 事 O 营 O 销 O 管 O 理 O , O 主 O 持 O 开 O 发 O 了 O 大 O 量 O 较 O 有 O 影 O 响 O 力 O 的 O 钢 O 结 O 构 O 工 O 程 O 项 O 目 O , O 具 O 有 O 丰 O 富 O 的 O 工 O 程 O 项 O 目 O 市 O 场 O 开 O 发 O 经 O 验 O , O 1 O 9 O 9 O 9 O 年 O 获 O 浙 O 江 O 省 O 建 O 材 O 科 O 技 O 进 O 步 O 一 O 等 O 奖 O 和 O 浙 O 江 O 省 O 科 O 技 O 进 O 步 O 优 O 秀 O 奖 O 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 东 M-ORG 南 M-ORG 网 M-ORG 架 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 至 O 今 O 任 O 天 B-ORG 津 M-ORG 东 M-ORG 南 M-ORG 钢 M-ORG 结 M-ORG 构 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 蔡 B-NAME 增 M-NAME 正 E-NAME , O 男 O , O 博 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 至 O 今 O , O 在 O 深 B-ORG 圳 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 院 E-ORG 任 O 经 B-TITLE 济 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 兰 B-NAME 国 M-NAME 政 E-NAME 先 O 生 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 未 O 有 O 任 O 何 O 国 O 家 O 和 O 地 O 区 O 的 O 永 O 久 O 海 O 外 O 居 O 留 O 权 O ; O 现 O 为 O 福 B-ORG 建 M-ORG 物 M-ORG 质 M-ORG 结 M-ORG 构 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE , O 兼 O 任 O 所 B-TITLE 工 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 福 B-ORG 建 M-ORG 省 M-ORG 生 M-ORG 产 M-ORG 力 M-ORG 促 M-ORG 进 M-ORG 协 M-ORG 会 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 理 M-TITLE 事 M-TITLE 会 M-TITLE 常 M-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE , O 福 B-ORG 建 M-ORG 省 M-ORG 高 M-ORG 科 M-ORG 技 M-ORG 产 M-ORG 业 M-ORG 促 M-ORG 进 M-ORG 会 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 副 M-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE , O 福 B-ORG 州 M-ORG 市 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE 等 O 职 O ; O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 起 O 任 O 福 B-ORG 建 M-ORG 福 M-ORG 晶 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 黄 B-NAME 仕 M-NAME 群 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 地 M-ORG 质 M-ORG 大 M-ORG 学 E-ORG 。 O 黄 S-NAME 先 O 生 O 是 O 广 B-ORG 东 M-ORG 群 M-ORG 兴 M-ORG 玩 M-ORG 具 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 主 O 要 O 创 O 立 O 者 O 之 O 一 O 、 O 实 B-TITLE 际 M-TITLE 控 M-TITLE 制 M-TITLE 人 E-TITLE , O 并 O 长 O 期 O 主 O 管 O 公 B-ORG 司 E-ORG 采 O 购 O 、 O 生 O 产 O 、 O 财 O 务 O 等 O 工 O 作 O , O 现 O 任 O 广 B-ORG 东 M-ORG 群 M-ORG 兴 M-ORG 玩 M-ORG 具 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 并 O 担 O 任 O 群 B-ORG 興 M-ORG 玩 M-ORG 具 M-ORG ( M-ORG 香 M-ORG 港 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 澄 B-ORG 海 M-ORG 工 M-ORG 商 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 澄 B-ORG 海 M-ORG 青 M-ORG 年 M-ORG 企 M-ORG 业 M-ORG 家 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 名 B-TITLE 誉 M-TITLE 会 M-TITLE 长 E-TITLE 、 O 汕 B-ORG 头 M-ORG 市 M-ORG 澄 M-ORG 海 M-ORG 区 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE 等 O 职 O 。 O 张 B-NAME 惠 M-NAME 强 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 生 O , O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 材 M-ORG 料 M-ORG 学 M-ORG 院 E-ORG 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 毕 O 业 O 。 O 近 O 5 O 年 O 曾 O 任 O 上 B-ORG 海 M-ORG 申 M-ORG 能 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 究 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 总 M-TITLE 监 E-TITLE 兼 O 研 B-TITLE 究 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 松 M-ORG 江 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 程 B-NAME 少 M-NAME 博 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 博 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 6 O 4 O 年 O 6 O 月 O 出 O 生 O , O 山 B-ORG 东 M-ORG 省 M-ORG 十 M-ORG 届 M-ORG 政 M-ORG 协 E-ORG 委 B-TITLE 员 E-TITLE 、 O 十 B-ORG 一 M-ORG 届 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE , O 国 O 家 O 技 O 术 O 发 O 明 O 奖 O 、 O 国 O 家 O 科 O 技 O 进 O 步 O 奖 O 获 O 得 O 者 O 。 O 现 O 任 O 山 B-ORG 东 M-ORG 龙 M-ORG 力 M-ORG 生 M-ORG 物 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 享 O 受 O 国 O 务 O 院 O 颁 O 发 O 特 O 殊 O 津 O 贴 O 。 O 李 B-NAME 国 M-NAME 平 E-NAME 先 O 生 O , O 1 O 9 O 7 O 7 O 年 O 出 O 生 O 。 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 国 B-TITLE 际 M-TITLE 内 M-TITLE 部 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 。 O 2 O 0 O 1 O 5 O 年 O 6 O 月 O 1 O 日 O 取 O 得 O 香 B-ORG 港 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 高 B-PRO 层 M-PRO 管 M-PRO 理 M-PRO 人 M-PRO 员 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 铁 M-ORG 路 M-ORG 局 M-ORG 临 M-ORG 汾 M-ORG 铁 M-ORG 路 M-ORG 分 M-ORG 局 E-ORG 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE ; O 北 B-ORG 京 M-ORG 敬 M-ORG 业 M-ORG 瑞 M-ORG 之 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 项 M-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE ; O 首 B-ORG 创 M-ORG 置 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE ; O 裕 B-ORG 田 M-ORG 中 M-ORG 国 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 加 O 入 O 阳 B-ORG 光 M-ORG 新 M-ORG 业 M-ORG 地 M-ORG 产 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 现 O 任 O 阳 B-ORG 光 M-ORG 新 M-ORG 业 M-ORG 地 M-ORG 产 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 白 B-NAME 永 M-NAME 强 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 6 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 文 M-EDU 化 M-EDU 程 M-EDU 度 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 西 B-ORG 部 M-ORG 矿 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE ; O 现 O 任 O 西 B-ORG 部 M-ORG 矿 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE , O 青 B-ORG 海 M-ORG 省 M-ORG 盐 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 自 O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 2 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 任 O 西 B-ORG 部 M-ORG 矿 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 冀 B-NAME 树 M-NAME 军 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 电 B-ORG 解 M-ORG 一 M-ORG 分 M-ORG 厂 E-ORG 经 B-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 8 O ~ O 2 O 0 O 0 O 0 O 年 O 任 O 包 B-ORG 铝 M-ORG 集 M-ORG 团 M-ORG 电 M-ORG 解 M-ORG 一 M-ORG 分 M-ORG 厂 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 至 O 2 O 0 O 0 O 1 O 年 O 任 O 包 B-ORG 铝 M-ORG 集 M-ORG 团 M-ORG 电 M-ORG 解 M-ORG 一 M-ORG 分 M-ORG 厂 E-ORG 经 B-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 M-ORG 电 M-ORG 解 M-ORG 一 M-ORG 分 M-ORG 厂 E-ORG 经 B-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 张 B-NAME 小 M-NAME 静 E-NAME : O 女 O , O 1 O 9 O 5 O 5 O 年 O 1 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 研 B-TITLE 究 M-TITLE 员 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 湖 B-ORG 南 M-ORG 苎 M-ORG 麻 M-ORG 技 M-ORG 术 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 上 M-ORG 海 M-ORG 潇 M-ORG 湘 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 发 B-TITLE 展 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 杨 B-NAME 铁 M-NAME 强 E-NAME : O 1 O 9 O 6 O 2 O 年 O 1 O 2 O 月 O 出 O 生 O , O 男 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 7 O 9 O 年 O 在 O 株 B-ORG 洲 M-ORG 车 M-ORG 辆 M-ORG 厂 E-ORG 参 O 加 O 工 O 作 O , O 1 O 9 O 8 O 9 O 年 O 调 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG 。 O 历 O 任 O 公 B-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 商 B-TITLE 场 M-TITLE 部 M-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 庆 B-ORG 云 M-ORG 装 M-ORG 饰 M-ORG 公 M-ORG 司 E-ORG 、 O 房 B-ORG 地 M-ORG 产 M-ORG 公 M-ORG 司 E-ORG 、 O 广 B-ORG 告 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 、 M-TITLE 七 M-TITLE 、 M-TITLE 八 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 等 O 职 O 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 现 O 没 O 有 O 持 O 有 O 本 O 公 O 司 O 股 O 份 O , O 未 O 受 O 过 O 中 O 国 O 证 O 监 O 会 O 及 O 其 O 他 O 有 O 关 O 部 O 门 O 的 O 处 O 罚 O 和 O 证 O 券 O 交 O 易 O 所 O 的 O 惩 O 戒 O 。 O 黄 B-NAME 树 M-NAME 喜 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 籍 O 贯 O 广 B-LOC 东 E-LOC , O 1 O 9 O 6 O 1 O 年 O 1 O 0 O 月 O 出 O 生 O , O 1 O 9 O 8 O 2 O 年 O 8 O 月 O 参 O 加 O 工 O 作 O , O 1 O 9 O 8 O 4 O 年 O 5 O 月 O 加 O 入 O 中 B-ORG 国 M-ORG 共 M-ORG 产 M-ORG 党 E-ORG , O 在 B-EDU 职 M-EDU 硕 M-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 职 O 称 O 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 盐 M-ORG 田 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 1 O 9 O 7 O 9 O 年 O 9 O 月 O 至 O 1 O 9 O 8 O 2 O 年 O 8 O 月 O 为 O 广 B-ORG 东 M-ORG 汕 M-ORG 头 M-ORG 农 M-ORG 学 M-ORG 院 E-ORG 学 B-TITLE 生 E-TITLE ; O 1 O 9 O 8 O 2 O 年 O 8 O 月 O 至 O 1 O 9 O 8 O 6 O 年 O 8 O 月 O 历 O 任 O 广 B-ORG 东 M-ORG 陆 M-ORG 丰 M-ORG 县 M-ORG 西 M-ORG 南 M-ORG 区 M-ORG 委 E-ORG 资 B-TITLE 料 M-TITLE 员 E-TITLE 、 O 科 B-TITLE 协 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 1 O 9 O 8 O 6 O 年 O 8 O 月 O 至 O 1 O 9 O 8 O 7 O 年 O 9 O 月 O 任 O 中 B-ORG 共 M-ORG 广 M-ORG 东 M-ORG 揭 M-ORG 阳 M-ORG 县 M-ORG 纪 M-ORG 委 E-ORG 科 B-TITLE 员 E-TITLE ; O 1 O 9 O 8 O 7 O 年 O 9 O 月 O 至 O 1 O 9 O 8 O 9 O 年 O 6 O 月 O 在 O 职 O 带 O 薪 O 在 O 中 B-ORG 山 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 律 M-ORG 系 E-ORG 进 O 修 O 大 B-EDU 专 E-EDU ; O 1 O 9 O 8 O 9 O 年 O 6 O 月 O 至 O 1 O 9 O 9 O 0 O 年 O 8 O 月 O 历 O 任 O 中 B-ORG 共 M-ORG 广 M-ORG 东 M-ORG 揭 M-ORG 阳 M-ORG 县 M-ORG 纪 M-ORG 委 E-ORG 科 B-TITLE 员 E-TITLE 、 O 副 B-TITLE 科 M-TITLE 级 M-TITLE 纪 M-TITLE 检 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 0 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 7 O 年 O 8 O 月 O 历 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 盐 M-ORG 田 M-ORG 港 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 业 M-TITLE 务 M-TITLE 副 M-TITLE 主 M-TITLE 办 E-TITLE 、 O 主 B-TITLE 办 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 5 O 月 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 盐 M-ORG 田 M-ORG 港 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE ( O 其 O 中 O : O 2 O 0 O 0 O 0 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 1 O 0 O 月 O 在 O 职 O 攻 O 读 O 美 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 东 M-ORG 西 M-ORG 方 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU ) O 。 O 2 O 0 O 0 O 5 O 年 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O , O 任 O 盐 B-ORG 田 M-ORG 港 M-ORG 集 M-ORG 团 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 月 O , O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 至 O 今 O , O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 今 O , O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 魏 B-NAME 永 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 生 O 于 O 1 O 9 O 7 O 6 O 年 O 1 O 月 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU 。 O 2 O 0 O 0 O 6 O 年 O 3 O 月 O 至 O 今 O 任 O 河 B-ORG 北 M-ORG 衡 M-ORG 水 M-ORG 老 M-ORG 白 M-ORG 干 M-ORG 酒 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 礼 M-NAME 璠 E-NAME 先 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 曾 O 任 O 同 B-ORG 济 M-ORG 大 M-ORG 学 E-ORG 汽 B-TITLE 车 M-TITLE 系 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 上 B-ORG 汽 M-ORG - M-ORG 同 M-ORG 济 M-ORG 汽 M-ORG 车 M-ORG 整 M-ORG 车 M-ORG 工 M-ORG 程 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 现 O 任 O 同 B-ORG 济 M-ORG 大 M-ORG 学 M-ORG 中 M-ORG 德 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 顾 B-TITLE 问 E-TITLE , O 汽 B-TITLE 车 M-TITLE 服 M-TITLE 务 M-TITLE 工 M-TITLE 程 M-TITLE 教 M-TITLE 席 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 吴 B-NAME 邦 M-NAME 明 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 6 O 月 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 、 O 在 B-EDU 职 M-EDU 博 M-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 1 O 年 O 3 O 月 O 参 O 加 O 工 O 作 O , O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 加 O 入 O 韶 B-ORG 钢 E-ORG , O 历 O 任 O 韶 B-ORG 关 M-ORG 钢 M-ORG 铁 E-ORG 总 B-TITLE 监 E-TITLE 、 O 战 B-TITLE 略 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 广 B-TITLE 州 M-TITLE 土 M-TITLE 地 M-TITLE 开 M-TITLE 发 M-TITLE 项 M-TITLE 目 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 驻 B-ORG 广 M-ORG 州 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 广 B-ORG 东 M-ORG 南 M-ORG 华 M-ORG 置 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 韶 B-ORG 钢 M-ORG 松 M-ORG 山 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 广 B-TITLE 州 M-TITLE 土 M-TITLE 地 M-TITLE 开 M-TITLE 发 M-TITLE 项 M-TITLE 目 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 广 B-ORG 东 M-ORG 韶 M-ORG 钢 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 多 B-TITLE 元 M-TITLE 产 M-TITLE 业 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 魏 B-NAME 玲 M-NAME 丽 E-NAME : O 女 O , O 1 O 9 O 7 O 4 O 年 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 毕 O 业 O 于 O 浙 B-ORG 江 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 E-ORG , O 会 B-PRO 计 M-PRO 专 M-PRO 业 E-PRO 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 海 M-ORG 正 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 富 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 M-ORG 台 M-ORG 州 M-ORG 营 M-ORG 业 M-ORG 部 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 台 B-ORG 州 M-ORG 市 M-ORG 椒 M-ORG 江 M-ORG 区 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 产 B-TITLE 权 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 发 M-TITLE 展 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 。 O 现 O 兼 O 任 O 海 B-ORG 正 M-ORG 药 M-ORG 业 M-ORG 南 M-ORG 通 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 海 B-ORG 旭 M-ORG 生 M-ORG 物 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 李 B-NAME 维 M-NAME 维 E-NAME 女 O 士 O , O 女 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 李 S-NAME 女 O 士 O 自 O 1 O 9 O 9 O 1 O 年 O 起 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 自 O 1 O 9 O 9 O 9 O 年 O 起 O 至 O 今 O 任 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 李 S-NAME 女 O 士 O 曾 O 于 O 1 O 9 O 6 O 3 O 年 O 至 O 1 O 9 O 8 O 9 O 年 O 在 O 上 B-ORG 海 M-ORG 耀 M-ORG 华 M-ORG 玻 M-ORG 璃 M-ORG 厂 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 工 O 作 O 。 O 刘 B-NAME 蔚 E-NAME , O 男 O , O 1 O 9 O 7 O 3 O 年 O 1 O 月 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O 工 B-ORG 商 M-ORG 银 M-ORG 行 M-ORG 江 M-ORG 西 M-ORG 省 M-ORG 上 M-ORG 饶 M-ORG 市 M-ORG 分 M-ORG 行 E-ORG 信 B-TITLE 用 M-TITLE 卡 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 干 M-TITLE 事 E-TITLE ; O 西 B-ORG 子 M-ORG 电 M-ORG 梯 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 部 B-TITLE 长 E-TITLE 。 O 现 O 任 O 西 B-ORG 子 M-ORG 联 M-ORG 合 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 金 B-TITLE 融 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 李 B-NAME 峰 E-NAME : O 男 O , O 1 O 9 O 6 O 8 O 年 O 3 O 月 O 出 O 生 O , O 1 O 9 O 9 O 0 O 年 O 8 O 月 O 参 O 加 O 工 O 作 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 福 B-ORG 能 M-ORG 集 M-ORG 团 E-ORG 审 B-TITLE 计 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 曾 O 任 O 福 B-ORG 建 M-ORG 福 M-ORG 能 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE ; O 曾 O 兼 O 任 O 福 B-ORG 建 M-ORG 南 M-ORG 平 M-ORG 新 M-ORG 南 M-ORG 针 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 王 B-NAME 全 M-NAME 喜 E-NAME 先 O 生 O , O 教 B-TITLE 授 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 现 O 任 O 南 B-ORG 开 M-ORG 大 M-ORG 学 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 南 B-ORG 开 M-ORG 大 M-ORG 学 M-ORG 企 M-ORG 业 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 社 B-ORG 会 M-ORG 兼 M-ORG 职 M-ORG 有 M-ORG 国 M-ORG 家 M-ORG 税 M-ORG 务 M-ORG 总 M-ORG 局 E-ORG 特 B-TITLE 约 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 天 B-ORG 津 M-ORG 市 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 会 E-ORG 秘 B-TITLE 书 M-TITLE 长 E-TITLE 。 O 主 O 要 O 研 O 究 O 领 O 域 O 为 O 公 O 司 O 财 O 务 O 管 O 理 O 、 O 会 O 计 O 学 O 、 O 税 O 收 O 、 O 企 O 业 O 制 O 度 O 与 O 公 O 司 O 治 O 理 O 。 O 林 B-NAME 海 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 7 O 年 O 至 O 2 O 0 O 0 O 1 O 年 O 在 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 M-ORG 湛 M-ORG 江 M-ORG 市 M-ORG 中 M-ORG 心 M-ORG 支 M-ORG 行 E-ORG 工 O 作 O ; O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 0 O 5 O 年 O 任 O 湛 B-ORG 江 M-ORG 市 M-ORG 万 M-ORG 吉 M-ORG 利 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 广 M-ORG 州 M-ORG 阳 M-ORG 普 M-ORG 医 M-ORG 疗 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 任 O 佛 B-ORG 山 M-ORG 华 M-ORG 新 M-ORG 包 M-ORG 装 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 战 B-TITLE 略 M-TITLE 投 M-TITLE 资 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 进 O 入 O 广 B-ORG 州 M-ORG 阳 M-ORG 普 M-ORG 医 M-ORG 疗 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 计 O 划 O 财 O 务 O 部 O 工 O 作 O , O 现 O 任 O 广 B-ORG 州 M-ORG 阳 M-ORG 普 M-ORG 医 M-ORG 疗 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 曹 B-NAME 海 M-NAME 成 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 通 M-ORG 产 M-ORG 包 M-ORG 装 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 运 B-TITLE 营 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 通 M-ORG 产 M-ORG 丽 M-ORG 星 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 兼 O 任 O 公 B-ORG 司 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 东 M-ORG 深 M-ORG 圳 M-ORG 市 M-ORG 通 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 深 B-ORG 圳 M-ORG 鹏 M-ORG 达 M-ORG 尔 M-ORG 粉 M-ORG 体 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 商 M-ORG 控 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 长 B-ORG 和 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 肇 B-ORG 庆 M-ORG 市 M-ORG 通 M-ORG 产 M-ORG 玻 M-ORG 璃 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 四 B-ORG 川 M-ORG 通 M-ORG 产 M-ORG 玻 M-ORG 璃 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 华 M-ORG 晶 M-ORG 玻 M-ORG 璃 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 黄 B-NAME 锦 M-NAME 波 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 本 B-EDU 科 E-EDU 毕 O 业 O 于 O 华 B-ORG 南 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 。 O 曾 O 任 O 职 O 于 O 东 B-ORG 莞 M-ORG 市 M-ORG 果 M-ORG 菜 M-ORG 公 M-ORG 司 E-ORG , O 1 O 9 O 9 O 5 O 年 O 加 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 勤 B-ORG 上 M-ORG 光 M-ORG 电 E-ORG 董 B-TITLE 事 E-TITLE 、 O 产 B-TITLE 品 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 耿 B-NAME 加 M-NAME 怀 E-NAME , O 工 B-TITLE 程 M-TITLE 技 M-TITLE 术 M-TITLE 应 M-TITLE 用 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 。 O 耿 S-NAME 先 O 生 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 兖 B-ORG 矿 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG ( M-ORG “ M-ORG 母 M-ORG 公 M-ORG 司 M-ORG ” M-ORG ) E-ORG 董 B-TITLE 事 M-TITLE 局 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 耿 S-NAME 先 O 生 O 于 O 1 O 9 O 8 O 5 O 年 O 至 O 2 O 0 O 0 O 2 O 年 O 间 O , O 先 O 后 O 任 O 淄 B-ORG 博 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 安 B-TITLE 监 M-TITLE 局 M-TITLE 局 M-TITLE 长 E-TITLE 、 O 淄 B-ORG 博 E-ORG 矿 B-TITLE 务 M-TITLE 局 M-TITLE 局 M-TITLE 长 E-TITLE 。 O 耿 S-NAME 先 O 生 O 于 O 2 O 0 O 0 O 2 O 年 O 加 O 入 O 母 B-ORG 公 M-ORG 司 E-ORG , O 任 O 母 B-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 局 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 2 O 0 O 0 O 3 O 年 O 任 O 母 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 局 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 耿 S-NAME 先 O 生 O 毕 O 业 O 于 O 山 B-ORG 东 M-ORG 矿 M-ORG 业 M-ORG 学 M-ORG 院 E-ORG 。 O 杨 B-NAME 慧 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 国 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 4 O 年 O 2 O 月 O 出 O 生 O , O 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 历 O 任 O 江 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 研 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 江 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 江 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG M M-ORG B M-ORG A M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 2 O 0 O 0 O 2 O 年 O 至 O 2 O 0 O 0 O 9 O 年 O 任 O 江 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG M M-ORG B M-ORG A M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 任 O 江 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 博 B-TITLE 士 M-TITLE 后 M-TITLE 管 M-TITLE 理 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 至 O 今 O 任 O 江 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 国 M-ORG 际 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 高 M-ORG 校 M-ORG 市 M-ORG 场 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 江 B-ORG 西 M-ORG 省 M-ORG 生 M-ORG 产 M-ORG 力 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 金 B-NAME 月 M-NAME 芳 E-NAME , O 女 O , O 1 O 9 O 5 O 3 O 年 O 1 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 江 B-LOC 苏 M-LOC 省 M-LOC 吴 M-LOC 江 M-LOC 市 M-LOC 人 E-LOC , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 江 B-ORG 苏 M-ORG 吴 M-ORG 江 M-ORG 中 M-ORG 国 M-ORG 东 M-ORG 方 M-ORG 丝 M-ORG 绸 M-ORG 市 M-ORG 场 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 1 O 月 O - O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 任 O 吴 B-ORG 江 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 M-ORG 财 M-ORG 政 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 盛 B-TITLE 泽 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 参 O 加 O 由 O 深 B-ORG 圳 M-ORG 证 M-ORG 券 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 主 O 办 O 的 O 第 O 二 O 十 O 五 O 期 O 独 O 立 O 董 O 事 O 培 O 训 O 班 O , O 获 O 得 O 独 O 立 O 董 O 事 O 资 O 格 O 证 O 书 O 。 O 严 B-NAME 昌 M-NAME 来 E-NAME , O 男 O , O 1 O 9 O 5 O 2 O 年 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 湖 B-LOC 北 M-LOC 汉 M-LOC 阳 M-LOC 人 E-LOC , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 1 O 年 O 1 O 1 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 葛 O 洲 B-ORG 坝 M-ORG 工 M-ORG 程 M-ORG 局 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 葛 B-ORG 洲 M-ORG 坝 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 生 M-TITLE 活 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 葛 B-ORG 洲 M-ORG 坝 M-ORG 集 M-ORG 团 M-ORG 第 M-ORG 四 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 葛 M-ORG 洲 M-ORG 坝 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE , O 监 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 邓 B-NAME 涛 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 2 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 5 O 月 O 至 O 今 O 在 O 武 B-ORG 汉 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 任 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 资 M-TITLE 产 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 唐 B-NAME 宁 E-NAME , O 1 O 9 O 5 O 5 O 年 O 4 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 唐 S-NAME 先 O 生 O 于 O 1 O 9 O 9 O 8 O 年 O 毕 O 业 O 于 O 中 B-ORG 共 M-ORG 中 M-ORG 央 M-ORG 党 M-ORG 校 E-ORG 。 O 唐 S-NAME 先 O 生 O 自 O 2 O 0 O 1 O 4 O 年 O 8 O 月 O 起 O 任 O 中 B-ORG 国 M-ORG 神 M-ORG 华 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 O 三 O 届 O 监 O 事 O 会 O , O 自 O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 起 O 任 O 神 B-ORG 华 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 下 B-TITLE 派 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 工 M-TITLE 作 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 唐 S-NAME 先 O 生 O 自 O 2 O 0 O 1 O 0 O 年 O 至 O 2 O 0 O 1 O 4 O 年 O 任 O 中 B-ORG 国 M-ORG 神 M-ORG 华 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE , O 自 O 2 O 0 O 1 O 0 O 年 O 至 O 2 O 0 O 1 O 1 O 年 O 任 O 神 B-ORG 华 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 产 M-ORG 权 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 自 O 2 O 0 O 1 O 1 O 年 O 至 O 2 O 0 O 1 O 3 O 年 O 任 O 神 B-ORG 华 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 下 B-TITLE 派 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 工 M-TITLE 作 M-TITLE 一 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 此 O 前 O , O 唐 S-NAME 先 O 生 O 曾 O 任 O 神 B-ORG 华 M-ORG 国 M-ORG 际 M-ORG ( M-ORG 香 M-ORG 港 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 神 B-ORG 华 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 厅 M-TITLE 主 M-TITLE 任 E-TITLE 等 O 职 O 务 O 。 O 陈 B-NAME 作 M-NAME 习 E-NAME , O 男 O , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 7 O 月 O - O 2 O 0 O 1 O 2 O 年 O 3 O 月 O , O 任 O 南 B-ORG 方 M-ORG 报 M-ORG 业 M-ORG 传 M-ORG 媒 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 监 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 4 O 月 O - O 2 O 0 O 1 O 3 O 年 O 1 O 1 O 月 O , O 任 O 南 B-ORG 方 M-ORG 报 M-ORG 业 M-ORG 传 M-ORG 媒 M-ORG 集 M-ORG 团 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 至 O 今 O , O 经 O 珠 O 海 O 市 O 国 O 资 O 委 O 委 O 派 O , O 任 O 珠 B-ORG 海 M-ORG 港 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 至 O 今 O , O 兼 O 任 O 珠 B-ORG 海 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 引 M-ORG 导 M-ORG 基 M-ORG 金 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 4 O 年 O 1 O 月 O 开 O 始 O 任 O 珠 B-ORG 海 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 戴 B-NAME 杨 E-NAME 先 O 生 O , O 1 O 9 O 7 O 0 O 年 O 1 O 1 O 月 O 出 O 生 O , O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 数 B-ORG 源 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 杭 B-ORG 州 M-ORG 易 M-ORG 和 M-ORG 网 M-ORG 络 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 西 B-ORG 湖 M-ORG 电 M-ORG 子 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 数 B-ORG 源 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 杭 B-ORG 州 M-ORG 三 M-ORG 花 M-ORG 科 M-ORG 特 M-ORG 光 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 杭 B-ORG 州 M-ORG 数 M-ORG 字 M-ORG 电 M-ORG 视 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 黄 B-NAME 锦 M-NAME 官 E-NAME : O 男 O , O 1 O 9 O 6 O 5 O 年 O 1 O 2 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 近 O 五 O 年 O 曾 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 青 M-ORG 山 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 设 B-TITLE 备 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 技 B-TITLE 改 M-TITLE 副 M-TITLE 总 M-TITLE 指 M-TITLE 挥 E-TITLE 。 O 现 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 青 M-ORG 山 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 顾 B-NAME 敏 E-NAME 先 O 生 O , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 获 O 得 O 香 B-ORG 港 M-ORG 中 M-ORG 文 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 自 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 出 O 任 O 中 B-ORG 国 M-ORG 平 M-ORG 安 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 至 O 今 O 。 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 月 O , O 任 O 平 B-ORG 安 M-ORG 银 M-ORG 行 E-ORG ( O 原 O 深 B-ORG 圳 M-ORG 发 M-ORG 展 M-ORG 银 M-ORG 行 E-ORG ) O 董 B-TITLE 事 E-TITLE 。 O 于 O 2 O 0 O 0 O 0 O 年 O 加 O 入 O 中 B-ORG 国 M-ORG 平 M-ORG 安 E-ORG , O 历 O 任 O 平 B-ORG 安 M-ORG 电 M-ORG 子 M-ORG 商 M-ORG 务 E-ORG 高 B-TITLE 级 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 、 O 客 B-TITLE 户 M-TITLE 资 M-TITLE 源 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O E B-TITLE 服 M-TITLE 务 M-TITLE 行 M-TITLE 销 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 及 O 寿 B-TITLE 险 M-TITLE 运 M-TITLE 营 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 集 B-TITLE 团 M-TITLE 发 M-TITLE 展 M-TITLE 改 M-TITLE 革 M-TITLE 中 M-TITLE 心 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 2 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O , O 先 O 后 O 在 O 中 B-ORG 国 M-ORG 平 M-ORG 安 M-ORG 全 M-ORG 国 M-ORG 后 M-ORG 援 M-ORG 管 M-ORG 理 M-ORG 中 M-ORG 心 E-ORG 和 O 集 B-ORG 团 E-ORG 运 O 营 O 管 O 理 O 中 O 心 O 担 O 任 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 集 B-ORG 团 E-ORG 副 B-TITLE 首 M-TITLE 席 M-TITLE 服 M-TITLE 务 E-TITLE 及 O 运 O 营 B-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE 等 O 职 O 。 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 与 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O , O 分 O 别 O 担 O 任 O 中 B-ORG 国 M-ORG 平 M-ORG 安 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 和 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O , O 担 O 任 O 平 B-ORG 安 E-ORG 渠 B-TITLE 道 M-TITLE 发 M-TITLE 展 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O C B-TITLE E M-TITLE O E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 月 O , O 担 O 任 O 平 B-ORG 安 E-ORG 数 B-TITLE 据 M-TITLE 科 M-TITLE 技 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 此 O 前 O , O 就 O 职 O 于 O 麦 B-ORG 肯 M-ORG 锡 M-ORG 公 M-ORG 司 E-ORG 任 O 咨 B-TITLE 询 M-TITLE 顾 M-TITLE 问 E-TITLE 。 O 杨 B-NAME 俊 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 生 O 于 O 1 O 9 O 7 O 2 O 年 O 9 O 月 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 博 B-TITLE 士 M-TITLE 后 E-TITLE 。 O 曾 O 任 O 重 B-ORG 庆 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 与 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE ; O 现 O 任 O 重 B-ORG 庆 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 与 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 教 B-TITLE 授 E-TITLE ( O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE ) O , O 重 B-ORG 庆 M-ORG 涪 M-ORG 陵 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 志 M-NAME 新 E-NAME 先 O 生 O , O 出 O 生 O 于 O 1 O 9 O 5 O 4 O 年 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 2 O 年 O 1 O 1 O 月 O 至 O 1 O 9 O 9 O 4 O 年 O 1 O 2 O 月 O 任 O 浙 B-ORG 江 M-ORG 嘉 M-ORG 兴 M-ORG 丝 M-ORG 绸 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 贸 M-ORG 易 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 5 O 年 O 1 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 3 O 月 O 任 O 浙 B-ORG 江 M-ORG 丝 M-ORG 绸 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 东 M-ORG 兴 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 1 O 9 O 9 O 9 O 年 O 3 O 月 O 至 O 今 O 任 O 职 O 于 O 浙 B-ORG 江 M-ORG 嘉 M-ORG 欣 M-ORG 丝 M-ORG 绸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 浙 B-ORG 江 M-ORG 嘉 M-ORG 欣 M-ORG 丝 M-ORG 绸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE ; O 浙 B-ORG 江 M-ORG 嘉 M-ORG 欣 M-ORG 丝 M-ORG 绸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 盟 M-NAME 飞 E-NAME 先 O 生 O : O 1 O 9 O 5 O 8 O 年 O 9 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 航 M-ORG 天 M-ORG 局 E-ORG 审 B-TITLE 计 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 航 M-ORG 天 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 第 M-ORG 八 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 审 B-TITLE 计 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 上 B-ORG 海 M-ORG 航 M-ORG 天 M-ORG 汽 M-ORG 车 M-ORG 机 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 临 B-TITLE 时 M-TITLE 召 M-TITLE 集 M-TITLE 人 E-TITLE 。 O J B-NAME e M-NAME r M-NAME r M-NAME y M-NAME M M-NAME a E-NAME ( O 马 B-NAME 磊 E-NAME ) O 先 O 生 O : O 男 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 新 B-CONT 西 M-CONT 兰 M-CONT 国 M-CONT 籍 E-CONT , O 毕 O 业 O 于 O 新 B-ORG 西 M-ORG 兰 M-ORG 梅 M-ORG 西 M-ORG 大 M-ORG 学 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 于 O 挪 B-ORG 威 M-ORG 佛 M-ORG 力 M-ORG 士 M-ORG 上 M-ORG 海 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 、 O 英 B-ORG 国 M-ORG 豪 M-ORG 罗 M-ORG 宾 M-ORG 逊 M-ORG 船 M-ORG 务 M-ORG 经 M-ORG 纪 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 上 M-ORG 海 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 任 O 职 O 。 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O 起 O 服 O 务 O 于 O 公 B-ORG 司 E-ORG , O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 贸 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 一 O 职 O , O 现 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 莹 M-NAME 升 E-NAME 先 O 生 O , O 1 O 9 O 6 O 5 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 南 B-ORG 充 M-ORG 师 M-ORG 范 M-ORG 学 M-ORG 院 M-ORG 生 M-ORG 物 M-ORG 系 E-ORG 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 理 B-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 职 O 称 O 。 O 1 O 9 O 8 O 9 O 年 O 6 O 月 O 2 O 0 O 日 O 至 O 1 O 9 O 9 O 3 O 年 O 6 O 月 O 2 O 0 O 日 O , O 在 O 四 B-ORG 川 M-ORG 省 M-ORG 江 M-ORG 油 M-ORG 师 M-ORG 范 M-ORG 学 M-ORG 校 E-ORG 任 O 教 O ; O 1 O 9 O 9 O 3 O 年 O 6 O 月 O 2 O 0 O 日 O 至 O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 8 O 日 O , O 先 O 后 O 任 O 绵 B-ORG 阳 M-ORG 市 M-ORG 汽 M-ORG 车 M-ORG 运 M-ORG 输 M-ORG 公 M-ORG 司 E-ORG 文 B-TITLE 员 E-TITLE 、 O 绵 B-ORG 阳 M-ORG 市 M-ORG 汽 M-ORG 车 M-ORG 运 M-ORG 输 M-ORG 公 M-ORG 司 E-ORG 汽 B-TITLE 车 M-TITLE 北 M-TITLE 站 M-TITLE 副 M-TITLE 站 M-TITLE 长 E-TITLE 、 O 绵 B-ORG 阳 M-ORG 市 M-ORG 汽 M-ORG 车 M-ORG 运 M-ORG 输 M-ORG 公 M-ORG 司 E-ORG 汽 B-TITLE 车 M-TITLE 南 M-TITLE 站 M-TITLE 站 M-TITLE 长 E-TITLE 、 O 绵 B-ORG 阳 M-ORG 市 M-ORG 汽 M-ORG 车 M-ORG 运 M-ORG 输 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 富 B-TITLE 乐 M-TITLE 车 M-TITLE 站 M-TITLE 站 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 8 O 日 O 至 O 2 O 0 O 0 O 6 O 年 O 6 O 月 O 3 O 0 O 日 O , O 在 O 绵 B-ORG 阳 M-ORG 南 M-ORG 湖 M-ORG 车 M-ORG 站 E-ORG 任 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 站 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 6 O 月 O 3 O 0 O 日 O 至 O 2 O 0 O 0 O 8 O 年 O 7 O 月 O 3 O 0 O 日 O , O 在 O 四 B-ORG 川 M-ORG 富 M-ORG 临 M-ORG 运 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 射 M-ORG 洪 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 站 B-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 8 O 月 O 3 O 1 O 日 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 2 O 6 O 日 O , O 在 O 四 B-ORG 川 M-ORG 富 M-ORG 临 M-ORG 运 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 2 O 6 O 日 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O 3 O 日 O , O 在 O 四 B-ORG 川 M-ORG 富 M-ORG 临 M-ORG 运 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 成 M-ORG 都 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 城 M-ORG 北 M-ORG 客 M-ORG 运 M-ORG 中 M-ORG 心 E-ORG 任 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 5 O 日 O 至 O 2 O 0 O 1 O 3 O 年 O 5 O 月 O 7 O 日 O , O 在 O 成 B-ORG 都 M-ORG 国 M-ORG 际 M-ORG 商 M-ORG 贸 M-ORG 城 M-ORG 运 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 7 O 月 O 3 O 日 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O 3 O 日 O , O 在 O 四 B-ORG 川 M-ORG 富 M-ORG 临 M-ORG 运 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 成 M-ORG 都 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 1 O 月 O 至 O 今 O , O 任 O 四 B-ORG 川 M-ORG 富 M-ORG 临 M-ORG 运 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 驾 M-ORG 培 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 张 B-NAME 雨 M-NAME 歌 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 经 B-TITLE 济 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 1 O 年 O 起 O 先 O 后 O 在 O 苏 B-ORG 州 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG 、 O 苏 B-ORG 州 M-ORG 市 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 中 M-ORG 心 E-ORG 、 O 苏 B-ORG 州 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 M-ORG 国 M-ORG 资 M-ORG 科 E-ORG 等 O 处 O 任 O 职 O , O 1 O 9 O 9 O 2 O 年 O 至 O 1 O 9 O 9 O 9 O 年 O 在 O 苏 B-ORG 州 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 担 O 任 O 所 B-TITLE 长 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 在 O 江 B-ORG 苏 M-ORG 仁 M-ORG 和 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 担 O 任 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 并 O 担 O 任 O 政 B-ORG 协 M-ORG 江 M-ORG 苏 M-ORG 省 M-ORG 省 M-ORG 委 E-ORG 委 B-TITLE 员 E-TITLE , O 苏 B-ORG 州 M-ORG 市 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE , O 省 B-ORG 注 M-ORG 协 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 等 O 职 O 务 O 。 O 李 B-NAME 永 M-NAME 胜 E-NAME 先 O 生 O , O 加 B-ORG 拿 M-ORG 大 M-ORG 约 M-ORG 克 M-ORG 大 M-ORG 学 E-ORG 学 B-EDU 士 E-EDU 。 O 曾 O 任 O 添 B-ORG 利 M-ORG 工 M-ORG 业 M-ORG 国 M-ORG 际 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 采 B-TITLE 购 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 腾 B-ORG 达 M-ORG 置 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 依 B-ORG 顿 M-ORG ( M-ORG 广 M-ORG 东 M-ORG ) M-ORG 电 M-ORG 子 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 营 B-TITLE 运 M-TITLE 总 M-TITLE 裁 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 马 B-NAME 红 M-NAME 星 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 5 O 年 O 1 O 1 O 月 O 生 O , O 初 B-EDU 中 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 9 O 2 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O 任 O 吴 B-ORG 江 M-ORG 平 M-ORG 望 M-ORG 溪 M-ORG 港 M-ORG 塑 M-ORG 料 M-ORG 厂 E-ORG 会 B-TITLE 计 E-TITLE , O 2 O 0 O 0 O 3 O 年 O 至 O 今 O 任 O 苏 B-ORG 州 M-ORG 星 M-ORG 特 M-ORG 堡 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 强 E-NAME 女 O 士 O , O 1 O 9 O 6 O 4 O 年 O 2 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 第 M-ORG 二 M-ORG 外 M-ORG 国 M-ORG 语 M-ORG 学 M-ORG 院 E-ORG 英 B-PRO 国 M-PRO 文 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 获 O 得 O 文 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 副 B-TITLE 译 M-TITLE 审 E-TITLE , O 为 O 北 B-TITLE 京 M-TITLE 市 M-TITLE 海 M-TITLE 淀 M-TITLE 区 M-TITLE 十 M-TITLE 五 M-TITLE 届 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 及 O 海 B-ORG 淀 M-ORG 区 M-ORG 十 M-ORG 五 M-ORG 届 M-ORG 人 M-ORG 大 M-ORG 代 M-ORG 表 M-ORG 会 M-ORG 议 M-ORG “ M-ORG 国 M-ORG 民 M-ORG 经 M-ORG 济 M-ORG 、 M-ORG 社 M-ORG 会 M-ORG 发 M-ORG 展 M-ORG 计 M-ORG 划 M-ORG 和 M-ORG 财 M-ORG 政 M-ORG 预 M-ORG 算 M-ORG 审 M-ORG 查 M-ORG 委 M-ORG 员 M-ORG 会 M-ORG ” E-ORG 委 B-TITLE 员 E-TITLE 。 O 曾 O 在 O 北 B-ORG 京 M-ORG 对 M-ORG 外 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 大 M-ORG 学 E-ORG 学 O 习 O 金 O 融 O 、 O 财 O 务 O 和 O 工 O 商 O 管 O 理 O 课 O 程 O , O 获 O 得 O 研 B-EDU 究 M-EDU 生 E-EDU 结 O 业 O 证 O 书 O 。 O 在 O 香 O 港 O 接 O 受 O 金 O 融 O 和 O 财 O 务 O 培 O 训 O , O 在 O 香 B-ORG 港 M-ORG 东 M-ORG 方 M-ORG 鑫 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 O 务 O 部 O 工 O 作 O 。 O 历 O 任 O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 澳 M-ORG 大 M-ORG 利 M-ORG 亚 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 铝 B-TITLE 业 M-TITLE 务 M-TITLE 处 M-TITLE 业 M-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 贸 M-ORG 易 M-ORG 集 M-ORG 团 E-ORG 和 O 中 B-ORG 国 M-ORG 五 M-ORG 金 M-ORG 矿 M-ORG 产 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 铝 B-TITLE 行 M-TITLE 业 M-TITLE 市 M-TITLE 场 M-TITLE 高 M-TITLE 级 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE , O 中 B-ORG 铝 M-ORG 国 M-ORG 际 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 进 B-TITLE 出 M-TITLE 口 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 1 O 0 O 月 O - O 2 O 0 O 1 O 3 O 年 O 5 O 月 O 任 O 中 B-ORG 国 M-ORG 铝 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 及 O 公 B-ORG 司 E-ORG 秘 B-TITLE 书 E-TITLE 。 O 现 O 任 O 紫 B-ORG 金 M-ORG 矿 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 王 B-NAME 时 M-NAME 中 E-NAME : O 男 O , O 1 O 9 O 6 O 5 O 年 O 生 O , O 曾 O 就 O 读 O 于 O 杭 B-ORG 州 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 、 O 南 B-ORG 开 M-ORG 大 M-ORG 学 E-ORG 、 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 E-ORG 。 O 历 O 任 O 招 B-ORG 商 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 行 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 第 B-ORG 一 M-ORG 创 M-ORG 业 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 行 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 安 B-ORG 信 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 行 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 何 B-NAME 祥 M-NAME 兴 E-NAME 先 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 6 O 6 O 年 O 参 O 加 O 工 O 作 O , O 先 O 后 O 在 O 武 B-ORG 穴 M-ORG 市 M-ORG 官 M-ORG 桥 M-ORG 公 M-ORG 社 E-ORG 、 O 大 B-ORG 治 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 自 O 1 O 9 O 8 O 5 O 年 O 起 O 历 O 任 O 湖 B-ORG 北 M-ORG 省 M-ORG 广 M-ORG 济 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 劳 B-TITLE 资 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 及 O 孟 B-ORG 州 M-ORG 市 M-ORG 厚 M-ORG 德 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 龚 B-NAME 少 M-NAME 晖 E-NAME 先 O 生 O , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 8 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 专 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 毕 O 业 O 于 O 上 B-ORG 海 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 系 E-ORG ; O 2 O 0 O 0 O 7 O 年 O - O 2 O 0 O 1 O 0 O 年 O 于 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 攻 O 读 O E B-EDU M M-EDU B M-EDU A E-EDU 。 O 曾 O 就 O 职 O 于 O 福 B-ORG 建 M-ORG 电 M-ORG 子 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 公 M-ORG 司 E-ORG , O 从 O 事 O 计 O 算 O 机 O 技 O 术 O 和 O 销 O 售 O 工 O 作 O ; O 后 O 创 O 立 O 厦 B-ORG 门 M-ORG 精 M-ORG 通 M-ORG 科 M-ORG 技 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 厦 B-ORG 门 M-ORG 市 M-ORG 二 M-ORG 进 M-ORG 制 M-ORG 数 M-ORG 码 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 厦 B-ORG 门 M-ORG 中 M-ORG 网 M-ORG 兴 M-ORG 管 M-ORG 理 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 厦 B-ORG 门 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 厦 B-ORG 门 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 并 O 任 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 今 O , O 任 O 厦 B-ORG 门 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 兼 O 任 O 天 B-ORG 津 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 青 B-ORG 岛 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 苏 B-ORG 州 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 天 B-ORG 津 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 移 M-ORG 动 M-ORG 通 M-ORG 讯 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 曲 B-ORG 水 M-ORG 中 M-ORG 网 M-ORG 兴 M-ORG 管 M-ORG 理 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE ; O 北 B-ORG 京 M-ORG 亿 M-ORG 中 M-ORG 邮 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 北 B-ORG 京 M-ORG 中 M-ORG 亚 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 广 B-ORG 州 M-ORG 三 M-ORG 五 M-ORG 知 M-ORG 微 M-ORG 信 M-ORG 息 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 天 B-ORG 津 M-ORG 爱 M-ORG 蹭 M-ORG 网 M-ORG 络 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 徐 B-NAME 炳 M-NAME 祥 E-NAME 先 O 生 O , O 1 O 9 O 4 O 8 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 宁 B-ORG 波 M-ORG 海 M-ORG 运 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 宁 B-ORG 波 M-ORG 海 M-ORG 运 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 等 O 职 O 。 O 于 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 因 O 换 O 届 O 离 O 任 O 宁 B-ORG 波 M-ORG 海 M-ORG 运 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 职 O 务 O 。 O 佘 B-NAME 建 E-NAME 先 O 生 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 专 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 8 O 3 O 年 O 进 O 入 O 湘 B-ORG 潭 M-ORG 电 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 保 B-TITLE 卫 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 武 B-TITLE 装 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 9 B-TITLE 3 M-TITLE 8 M-TITLE 分 M-TITLE 厂 M-TITLE 党 M-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 湘 B-ORG 潭 M-ORG 电 M-ORG 化 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 审 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 兼 O 监 B-TITLE 事 E-TITLE 。 O 现 O 任 O 湘 B-ORG 潭 M-ORG 电 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 屈 B-NAME 伟 M-NAME 华 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 1 O 年 O 8 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 中 B-ORG 金 M-ORG 黄 M-ORG 金 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 河 B-ORG 北 M-ORG 峪 M-ORG 耳 M-ORG 崖 M-ORG 黄 M-ORG 金 M-ORG 矿 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 河 B-ORG 北 M-ORG 宽 M-ORG 城 M-ORG 满 M-ORG 族 M-ORG 自 M-ORG 治 M-ORG 县 M-ORG 东 M-ORG 梁 M-ORG 矿 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 胡 B-NAME 波 E-NAME : O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 武 B-ORG 汉 M-ORG 服 M-ORG 装 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 诚 M-ORG 信 M-ORG 证 M-ORG 券 M-ORG 评 M-ORG 估 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 中 M-ORG 南 M-ORG 公 M-ORG 司 E-ORG 股 B-TITLE 改 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 中 B-ORG 企 M-ORG 产 M-ORG 权 M-ORG 交 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 武 B-ORG 汉 M-ORG 正 M-ORG 信 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 武 B-ORG 汉 M-ORG 正 M-ORG 信 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 战 B-TITLE 略 M-TITLE 统 M-TITLE 筹 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 武 B-ORG 汉 M-ORG 国 M-ORG 际 M-ORG 信 M-ORG 托 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 潘 B-NAME 兴 M-NAME 祥 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 浙 B-LOC 江 M-LOC 省 M-LOC 绍 M-LOC 兴 M-LOC 县 M-LOC 人 E-LOC , O 1 O 9 O 6 O 8 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 绍 B-ORG 兴 M-ORG 县 M-ORG 中 M-ORG 国 M-ORG 轻 M-ORG 纺 M-ORG 城 M-ORG 市 M-ORG 场 M-ORG 开 M-ORG 发 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 绍 B-ORG 兴 M-ORG 县 M-ORG 中 M-ORG 国 M-ORG 轻 M-ORG 纺 M-ORG 城 M-ORG 建 M-ORG 设 M-ORG 管 M-ORG 理 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 规 B-TITLE 划 M-TITLE 建 M-TITLE 设 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 绍 B-ORG 兴 M-ORG 县 M-ORG 中 M-ORG 国 M-ORG 轻 M-ORG 纺 M-ORG 城 M-ORG 市 M-ORG 场 M-ORG 开 M-ORG 发 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 浙 B-ORG 江 M-ORG 中 M-ORG 国 M-ORG 轻 M-ORG 纺 M-ORG 城 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 绍 B-ORG 兴 M-ORG 县 M-ORG 中 M-ORG 国 M-ORG 轻 M-ORG 纺 M-ORG 城 M-ORG 市 M-ORG 场 M-ORG 开 M-ORG 发 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 任 B-NAME 有 M-NAME 法 E-NAME 先 O 生 O : O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 5 O 年 O 7 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 主 O 要 O 工 O 作 O 经 O 历 O , O 1 O 9 O 7 O 4 O 年 O 至 O 1 O 9 O 9 O 0 O 年 O 在 O 空 B-ORG 军 M-ORG 某 M-ORG 部 E-ORG 服 O 役 O ; O 1 O 9 O 9 O 0 O 年 O 至 O 1 O 9 O 9 O 7 O 年 O 历 O 任 O 海 B-ORG 宁 M-ORG 市 M-ORG 工 M-ORG 商 M-ORG 行 M-ORG 政 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 市 B-TITLE 场 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 工 B-TITLE 商 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 止 O 历 O 任 O 皮 B-TITLE 管 M-TITLE 委 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 主 B-TITLE 任 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 至 O 今 O 历 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 海 B-ORG 宁 M-ORG 中 M-ORG 国 M-ORG 皮 M-ORG 革 M-ORG 城 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 曾 O 任 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 并 O 兼 O 任 O 海 B-ORG 宁 M-ORG 中 M-ORG 国 M-ORG 皮 M-ORG 革 M-ORG 城 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 同 O 时 O 也 O 是 O 中 B-ORG 国 M-ORG 皮 M-ORG 革 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE , O 浙 B-ORG 江 M-ORG 省 M-ORG 市 M-ORG 场 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 海 B-ORG 宁 M-ORG 市 M-ORG 皮 M-ORG 革 M-ORG 协 M-ORG 会 E-ORG 理 B-TITLE 事 M-TITLE 长 E-TITLE , O 海 B-ORG 宁 M-ORG 市 M-ORG 电 M-ORG 子 M-ORG 商 M-ORG 务 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE ; O 浙 B-ORG 江 M-ORG 省 M-ORG 市 M-ORG 场 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 高 B-TITLE 级 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 度 O 风 O 云 O 浙 O 商 O , O 福 O 布 O 斯 O 2 O 0 O 1 O 3 O 中 O 国 O 上 O 市 O 公 O 司 O 最 O 佳 O C O E O O O 。 O 杨 B-NAME 威 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 万 B-ORG 钧 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 执 B-TITLE 业 M-TITLE 律 M-TITLE 师 E-TITLE , O 现 O 任 O 天 B-ORG 津 M-ORG 允 M-ORG 公 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 E-TITLE , O 天 B-ORG 津 M-ORG 市 M-ORG 仲 M-ORG 裁 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 仲 B-TITLE 裁 M-TITLE 员 E-TITLE , O 天 B-ORG 津 M-ORG 市 M-ORG 律 M-ORG 师 M-ORG 协 M-ORG 会 M-ORG 民 M-ORG 法 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 天 B-ORG 津 M-ORG 市 M-ORG 法 M-ORG 学 M-ORG 会 M-ORG 民 M-ORG 法 M-ORG 分 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 。 O 自 O 2 O 0 O 0 O 7 O 年 O 至 O 今 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 刘 B-NAME 河 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 6 O 5 O 年 O , O 现 O 任 O 金 B-ORG 风 M-ORG 科 M-ORG 技 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 毕 O 业 O 于 O 西 B-ORG 北 M-ORG 农 M-ORG 林 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 于 O 2 O 0 O 0 O 1 O 年 O 加 O 入 O 金 B-ORG 风 M-ORG 科 M-ORG 技 E-ORG , O 历 O 任 O 技 B-TITLE 术 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 质 B-TITLE 量 M-TITLE 技 M-TITLE 术 M-TITLE 保 M-TITLE 证 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 质 B-TITLE 量 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 及 O 研 B-TITLE 发 M-TITLE 系 M-TITLE 统 M-TITLE 产 M-TITLE 品 M-TITLE 开 M-TITLE 发 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 于 O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 起 O 担 O 任 O 金 B-ORG 风 M-ORG 科 M-ORG 技 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 段 B-NAME 继 M-NAME 东 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 5 O 月 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 曾 O 任 O 昆 B-ORG 明 M-ORG 制 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 E-TITLE , O 重 B-ORG 庆 M-ORG 华 M-ORG 立 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 武 B-ORG 汉 M-ORG 健 M-ORG 民 M-ORG 药 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 北 B-ORG 京 M-ORG 时 M-ORG 代 M-ORG 方 M-ORG 略 M-ORG 企 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 咨 M-ORG 询 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 浙 B-ORG 江 M-ORG 康 M-ORG 恩 M-ORG 贝 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 第 B-TITLE 六 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 报 O 告 O 期 O 内 O 因 O 董 O 事 O 会 O 换 O 届 O 已 O 不 O 在 O 浙 B-ORG 江 M-ORG 康 M-ORG 恩 M-ORG 贝 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 职 O 。 O 孙 B-NAME 新 M-NAME 虎 E-NAME , O 男 O , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 孙 B-NAME 新 M-NAME 虎 E-NAME 先 O 生 O 自 O 1 O 9 O 9 O 7 O 年 O 7 O 月 O 起 O 在 O 青 B-ORG 岛 M-ORG 肯 M-ORG 德 M-ORG 基 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 驻 M-ORG 外 M-ORG 事 M-ORG 务 M-ORG 部 E-ORG 参 O 加 O 工 O 作 O , O 2 O 0 O 0 O 3 O 年 O 3 O 月 O 加 O 入 O 山 B-ORG 东 M-ORG 西 M-ORG 王 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 近 O 五 O 年 O 来 O , O 孙 B-NAME 新 M-NAME 虎 E-NAME 先 O 生 O 先 O 后 O 担 O 任 O 西 B-ORG 王 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 公 B-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 等 O 职 O , O 现 O 主 O 要 O 担 O 任 O 西 B-ORG 王 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 西 B-ORG 王 M-ORG 臵 M-ORG 业 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 西 B-ORG 王 M-ORG 特 M-ORG 钢 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 山 B-ORG 东 M-ORG 西 M-ORG 王 M-ORG 糖 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 西 B-ORG 王 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 西 B-ORG 王 M-ORG 淀 M-ORG 粉 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 西 B-ORG 王 M-ORG 食 M-ORG 品 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 杜 B-NAME 少 M-NAME 先 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 4 O 1 O 年 O 1 O 0 O 月 O 生 O 。 O 本 B-EDU 科 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 1 O 9 O 6 O 6 O 年 O 参 O 加 O 工 O 作 O 。 O 现 O 任 O 吉 B-ORG 林 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE 、 O 兼 O 吉 B-ORG 林 M-ORG 省 M-ORG 社 M-ORG 科 M-ORG 联 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE , O 东 B-ORG 北 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 1 O 9 O 6 O 6 O 年 O - O 1 O 9 O 7 O 6 O 年 O 长 B-ORG 春 M-ORG 市 M-ORG 公 M-ORG 安 M-ORG 局 E-ORG 工 O 作 O ; O 1 O 9 O 7 O 6 O 年 O - O 1 O 9 O 7 O 9 O 年 O 长 B-ORG 春 M-ORG 市 M-ORG 委 M-ORG 研 M-ORG 究 M-ORG 室 E-ORG 工 O 作 O ; O 1 O 9 O 7 O 9 O 年 O - O 1 O 9 O 8 O 3 O 年 O 吉 B-ORG 林 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 工 O 作 O ; O 1 O 9 O 8 O 3 O 年 O - O 1 O 9 O 8 O 8 O 年 O 吉 B-ORG 林 M-ORG 省 M-ORG 省 M-ORG 政 M-ORG 府 M-ORG 发 M-ORG 展 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 城 B-TITLE 市 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 1 O 9 O 8 O 8 O 年 O - O 1 O 9 O 9 O 6 O 年 O 吉 B-ORG 林 M-ORG 省 M-ORG 政 M-ORG 府 M-ORG 调 M-ORG 研 M-ORG 室 E-ORG 、 O 省 B-ORG 软 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 6 O 年 O - O 2 O 0 O 0 O 1 O 年 O 吉 B-ORG 林 M-ORG 省 M-ORG 经 M-ORG 团 M-ORG 联 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE ( O 正 O 厅 O 长 O 级 O ) O 、 O 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 3 O 月 O - O 1 O 2 O 月 O 吉 B-ORG 林 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG ( O 社 B-ORG 科 M-ORG 联 E-ORG ) O 副 B-TITLE 院 M-TITLE 长 E-TITLE ( O 正 O 厅 O 长 O 级 O ) O ; O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 吉 B-ORG 林 M-ORG 省 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE 、 O 兼 O 吉 B-ORG 林 M-ORG 省 M-ORG 社 M-ORG 科 M-ORG 联 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 1 O 2 O 月 O 至 O 今 O 东 B-ORG 北 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 林 B-NAME 福 M-NAME 臣 E-NAME , O 男 O , O 1 O 9 O 5 O 8 O 年 O 1 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 E-ORG 稽 B-TITLE 核 M-TITLE 局 M-TITLE 银 M-TITLE 行 M-TITLE 一 M-TITLE 处 M-TITLE 、 M-TITLE 二 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 M-ORG 银 M-ORG 行 E-ORG 一 B-TITLE 司 M-TITLE 银 M-TITLE 行 M-TITLE 二 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 浦 M-ORG 东 M-ORG 发 M-ORG 展 M-ORG 银 M-ORG 行 E-ORG 稽 B-TITLE 核 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 浦 M-ORG 东 M-ORG 发 M-ORG 展 M-ORG 银 M-ORG 行 E-ORG 首 B-TITLE 席 M-TITLE 审 M-TITLE 计 M-TITLE 官 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 吴 B-NAME 友 M-NAME 富 E-NAME , O 男 O , O 1 O 9 O 5 O 1 O 年 O 4 O 月 O 生 O , O 教 B-TITLE 授 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 外 M-ORG 国 M-ORG 语 M-ORG 大 M-ORG 学 M-ORG 英 M-ORG 语 M-ORG 系 E-ORG 助 B-TITLE 教 E-TITLE 、 O 讲 B-TITLE 师 E-TITLE 、 O 副 B-TITLE 教 M-TITLE 授 E-TITLE , O 工 B-TITLE 商 M-TITLE 管 M-TITLE 理 M-TITLE 研 M-TITLE 究 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 、 O 校 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 校 B-TITLE 党 M-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 外 M-ORG 国 M-ORG 语 M-ORG 大 M-ORG 学 E-ORG 副 B-TITLE 校 M-TITLE 长 E-TITLE 。 O 赵 B-NAME 霞 E-NAME 女 O 士 O , O 1 O 9 O 7 O 9 O 年 O 1 O 月 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 专 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 0 O 2 O 年 O 起 O 任 O 职 O 于 O 北 B-ORG 京 M-ORG 华 M-ORG 录 M-ORG 百 M-ORG 纳 M-ORG 影 M-ORG 视 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 北 B-ORG 京 M-ORG 华 M-ORG 录 M-ORG 百 M-ORG 纳 M-ORG 影 M-ORG 视 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 主 M-TITLE 管 E-TITLE , O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 黎 B-NAME 晓 M-NAME 宏 E-NAME 先 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 玻 M-ORG 璃 M-ORG 二 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 北 B-ORG 京 M-ORG 玻 M-ORG 璃 M-ORG 总 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 北 B-ORG 京 M-ORG 玻 M-ORG 璃 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 北 B-ORG 京 M-ORG 一 M-ORG 轻 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 北 B-ORG 京 M-ORG 一 M-ORG 轻 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 京 B-ORG 泰 M-ORG 实 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 华 B-ORG 夏 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 中 B-ORG 信 M-ORG 建 M-ORG 投 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 王 B-NAME 学 M-NAME 闻 E-NAME , O 男 O , O 1 O 9 O 6 O 9 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 中 B-ORG 国 M-ORG 纺 M-ORG 织 M-ORG 大 M-ORG 学 E-ORG 企 B-PRO 业 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 专 B-EDU 科 E-EDU 。 O 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 4 O 月 O 至 O 今 O 担 O 任 O 该 O 职 O 务 O 。 O 现 O 兼 O 任 O 浙 B-ORG 江 M-ORG 新 M-ORG 和 M-ORG 成 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 新 B-ORG 昌 M-ORG 新 M-ORG 和 M-ORG 成 M-ORG 维 M-ORG 生 M-ORG 素 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 梁 B-NAME 津 M-NAME 明 E-NAME , O 男 O , O 1 O 9 O 5 O 4 O 年 O 1 O 1 O 月 O 生 O 于 O 天 B-LOC 津 E-LOC , O 汉 B-RACE 族 E-RACE , O 籍 B-LOC 贯 M-LOC 山 M-LOC 西 M-LOC 省 E-LOC 。 O 1 O 9 O 7 O 4 O 年 O 1 O 2 O 月 O 加 O 入 O 中 B-ORG 国 M-ORG 共 M-ORG 产 M-ORG 党 E-ORG , O 1 O 9 O 7 O 1 O 年 O 1 O 2 O 月 O 参 O 加 O 工 O 作 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 北 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE , O 法 B-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE ; O 兼 O 任 O 天 B-ORG 津 M-ORG 市 M-ORG 法 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 法 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 行 M-ORG 政 M-ORG 法 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 中 B-ORG 共 M-ORG 天 M-ORG 津 M-ORG 市 M-ORG 委 M-ORG 研 M-ORG 究 M-ORG 室 E-ORG 特 B-TITLE 约 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 、 O 天 B-ORG 津 M-ORG 市 M-ORG 人 M-ORG 大 M-ORG 常 M-ORG 委 M-ORG 会 E-ORG 立 B-TITLE 法 M-TITLE 咨 M-TITLE 询 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 天 B-ORG 津 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 E-ORG 法 B-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 、 O 天 B-ORG 津 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 检 M-ORG 察 M-ORG 院 E-ORG 咨 B-TITLE 询 M-TITLE 专 M-TITLE 家 E-TITLE 、 O 天 B-ORG 津 M-ORG 市 M-ORG 高 M-ORG 级 M-ORG 人 M-ORG 民 M-ORG 法 M-ORG 院 E-ORG 咨 B-TITLE 询 M-TITLE 专 M-TITLE 家 E-TITLE 。 O 顾 B-NAME 斌 E-NAME : O 男 O , O 1 O 9 O 7 O 0 O 年 O 生 O , O 江 B-LOC 苏 M-LOC 省 M-LOC 无 M-LOC 锡 M-LOC 市 M-LOC 人 E-LOC , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 职 O 称 O 。 O 曾 O 担 O 任 O 太 B-ORG 极 M-ORG 实 M-ORG 业 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 无 B-ORG 锡 M-ORG 产 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 太 B-ORG 极 M-ORG 实 M-ORG 业 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 海 B-ORG 太 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE / O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 太 B-ORG 极 M-ORG 半 M-ORG 导 M-ORG 体 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 太 B-ORG 极 M-ORG 微 M-ORG 电 M-ORG 子 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 无 B-ORG 锡 M-ORG 德 M-ORG 鑫 M-ORG 太 M-ORG 阳 M-ORG 能 M-ORG 电 M-ORG 力 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 刘 B-NAME 丹 M-NAME 萍 E-NAME 女 O 士 O : O 1 O 9 O 5 O 7 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 首 B-ORG 都 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 大 M-ORG 学 E-ORG 助 B-TITLE 教 E-TITLE 、 O 讲 B-TITLE 师 E-TITLE 、 O 经 B-TITLE 济 M-TITLE 学 M-TITLE 副 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 教 B-TITLE 授 E-TITLE 。 O 现 O 任 O 山 B-ORG 东 M-ORG 海 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 宝 B-ORG 胜 M-ORG 科 M-ORG 技 M-ORG 创 M-ORG 新 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 侯 B-NAME 功 M-NAME 海 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 山 B-LOC 东 M-LOC 济 M-LOC 南 M-LOC 人 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 近 O 五 O 年 O 历 O 任 O 东 B-ORG 营 M-ORG 银 M-ORG 座 M-ORG 商 M-ORG 城 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 山 B-ORG 东 M-ORG 银 M-ORG 座 M-ORG 商 M-ORG 城 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 银 B-ORG 座 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 银 B-ORG 座 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 超 B-TITLE 市 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 山 B-ORG 东 M-ORG 银 M-ORG 座 M-ORG 购 M-ORG 物 M-ORG 中 M-ORG 心 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 山 B-ORG 东 M-ORG 银 M-ORG 座 M-ORG 购 M-ORG 物 M-ORG 中 M-ORG 心 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 自 O 2 O 0 O 1 O 5 O 年 O 9 O 月 O 2 O 5 O 日 O 起 O 任 O 银 B-ORG 座 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 国 M-NAME 庆 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 现 O 任 O 厦 B-ORG 门 M-ORG 象 M-ORG 屿 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 黑 B-ORG 龙 M-ORG 江 M-ORG 象 M-ORG 屿 M-ORG 农 M-ORG 业 M-ORG 物 M-ORG 产 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 并 M-TITLE 购 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 曾 O 任 O 厦 B-ORG 门 M-ORG 象 M-ORG 屿 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 资 B-TITLE 本 M-TITLE 运 M-TITLE 营 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 红 M-NAME 旗 E-NAME , O 男 O , O 1 O 9 O 5 O 8 O 年 O 7 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 研 B-EDU 究 M-EDU 生 E-EDU 。 O 1 O 9 O 7 O 8 O 年 O 至 O 1 O 9 O 8 O 4 O 年 O 牡 B-ORG 丹 M-ORG 江 M-ORG 电 M-ORG 子 M-ORG 设 M-ORG 备 M-ORG 总 M-ORG 厂 E-ORG 工 B-TITLE 人 E-TITLE 1 O 9 O 8 O 4 O 年 O 至 O 1 O 9 O 9 O 3 O 年 O 牡 B-ORG 丹 M-ORG 江 M-ORG 经 M-ORG 济 M-ORG 体 M-ORG 制 M-ORG 改 M-ORG 革 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 科 B-TITLE 长 E-TITLE 1 O 9 O 9 O 3 O 年 O 至 O 1 O 9 O 9 O 5 O 年 O 牡 B-ORG 丹 M-ORG 江 M-ORG 造 M-ORG 纸 M-ORG 厂 M-ORG 驻 M-ORG 厦 M-ORG 门 M-ORG 经 M-ORG 贸 M-ORG 公 M-ORG 司 E-ORG 付 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 1 O 9 O 9 O 5 O 年 O 至 O 1 O 9 O 9 O 6 O 年 O 牡 B-ORG 丹 M-ORG 江 M-ORG 兴 M-ORG 林 M-ORG 木 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 1 O 9 O 9 O 7 O 年 O 至 O 今 O 牡 B-ORG 丹 M-ORG 江 M-ORG 水 M-ORG 泥 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 牡 B-ORG 丹 M-ORG 江 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 付 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 黑 B-ORG 龙 M-ORG 江 M-ORG 省 M-ORG 牡 M-ORG 丹 M-ORG 江 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 付 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 陈 B-NAME 信 M-NAME 康 E-NAME , O 男 O , O 大 B-EDU 学 E-EDU , O 教 B-TITLE 授 E-TITLE , O 曾 O 任 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 贸 B-TITLE 易 M-TITLE 经 M-TITLE 济 M-TITLE 系 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 市 B-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 国 M-ORG 际 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 华 B-ORG 联 M-ORG 超 M-ORG 市 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 江 B-NAME 树 M-NAME 邦 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 4 O 9 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE , O 现 O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 衡 M-ORG 阳 M-ORG 市 M-ORG 供 M-ORG 销 M-ORG 合 M-ORG 作 M-ORG 社 E-ORG 理 B-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 李 B-NAME 志 M-NAME 鹏 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 7 O 8 O 年 O 出 O 生 O , O 本 B-EDU 科 E-EDU 毕 O 业 O 于 O 中 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG , O 获 O 得 O 北 B-ORG 京 M-ORG 邮 M-ORG 电 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 0 O 6 O 年 O 任 O 广 B-ORG 州 M-ORG 市 M-ORG 宜 M-ORG 通 M-ORG 世 M-ORG 纪 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 公 O 司 O 前 O 身 O ) O 工 B-TITLE 程 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 8 O 月 O 至 O 今 O 任 O 北 B-ORG 京 M-ORG 宜 M-ORG 通 M-ORG 华 M-ORG 瑞 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 自 O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 2 O 2 O 日 O 起 O 任 O 宜 B-ORG 通 M-ORG 世 M-ORG 纪 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 任 O 期 O 三 O 年 O 。 O 崔 B-NAME 基 M-NAME 道 E-NAME : O 男 O , O 出 O 生 O 于 O 1 O 9 O 5 O 1 O 年 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 毕 O 业 O 于 O 浙 B-ORG 江 M-ORG 大 M-ORG 学 M-ORG 化 M-ORG 工 M-ORG 系 E-ORG , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 西 B-ORG 南 M-ORG 化 M-ORG 工 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 专 B-TITLE 题 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 气 B-TITLE 体 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 院 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE , O 1 O 9 O 9 O 5 O 至 O 今 O 任 O 西 B-ORG 南 M-ORG 化 M-ORG 工 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 任 O 西 B-ORG 南 M-ORG 化 M-ORG 工 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 2 O 0 O 0 O 1 O 任 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 1 O 9 O 9 O 9 O 至 O 今 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 高 B-NAME 同 M-NAME 国 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 4 O 年 O 3 O 月 O 出 O 生 O , O 安 B-LOC 徽 M-LOC 桐 M-LOC 城 M-LOC 人 E-LOC , O 1 O 9 O 8 O 8 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 1 O 9 O 9 O 8 O 年 O 5 O 月 O 加 O 入 O 中 B-ORG 国 M-ORG 共 M-ORG 产 M-ORG 党 E-ORG , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 2 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 任 O 合 B-ORG 肥 M-ORG 兴 M-ORG 泰 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE , O 期 O 间 O 兼 O 任 O 安 B-ORG 徽 M-ORG 兴 M-ORG 泰 M-ORG 融 M-ORG 资 M-ORG 租 M-ORG 赁 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 合 B-ORG 肥 M-ORG 百 M-ORG 货 M-ORG 大 M-ORG 楼 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 合 B-ORG 肥 M-ORG 市 M-ORG 商 M-ORG 业 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 华 B-ORG 富 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 徽 B-ORG 商 M-ORG 银 M-ORG 行 E-ORG 董 B-TITLE 事 E-TITLE 、 O 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 被 O 安 B-ORG 徽 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 院 E-ORG 聘 O 为 O " B-TITLE 金 M-TITLE 融 M-TITLE 硕 M-TITLE 士 M-TITLE " M-TITLE 兼 M-TITLE 职 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 至 O 2 O 0 O 1 O 5 O 年 O 3 O 月 O 任 O 合 B-ORG 肥 M-ORG 市 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 1 O 5 O 年 O 3 O 月 O 至 O 今 O 任 O 合 B-ORG 肥 M-ORG 滨 M-ORG 湖 M-ORG 新 M-ORG 区 M-ORG 建 M-ORG 设 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 孙 B-NAME 利 M-NAME 明 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 2 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 泰 B-ORG 伦 M-ORG 特 M-ORG 化 M-ORG 学 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 香 B-ORG 港 M-ORG 都 M-ORG 年 M-ORG 装 M-ORG 饰 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 北 B-ORG 京 M-ORG 岛 M-ORG 津 M-ORG 医 M-ORG 疗 M-ORG 器 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 龙 B-ORG 基 M-ORG 九 M-ORG 天 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 北 B-ORG 京 M-ORG 同 M-ORG 仁 M-ORG 堂 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 青 B-ORG 海 M-ORG 晶 M-ORG 珠 M-ORG 藏 M-ORG 药 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 海 B-ORG 南 M-ORG 中 M-ORG 谊 M-ORG 国 M-ORG 际 M-ORG 经 M-ORG 济 M-ORG 技 M-ORG 术 M-ORG 合 M-ORG 作 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 吕 B-NAME 先 M-NAME 锫 E-NAME 先 O 生 O : O 1 O 9 O 6 O 4 O 年 O 1 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 不 O 具 O 有 O 境 O 外 O 居 O 留 O 权 O 。 O 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 教 B-TITLE 授 E-TITLE , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE , O 完 O 成 O 课 O 题 O 、 O 专 O 著 O 、 O 论 O 文 O 、 O 教 O 材 O 等 O 科 O 研 O 成 O 果 O 6 O 0 O 多 O 项 O , O 获 O 省 O 部 O 级 O 等 O 各 O 项 O 奖 O 励 O 2 O 0 O 多 O 项 O 。 O 1 O 9 O 8 O 8 O 年 O 至 O 1 O 9 O 9 O 3 O 年 O 任 O 西 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 师 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 至 O 2 O 0 O 0 O 4 O 年 O 历 O 任 O 西 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 审 B-TITLE 计 M-TITLE 教 M-TITLE 研 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 7 O 月 O 至 O 今 O 任 O 西 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 现 O 兼 O 任 O 四 B-ORG 川 M-ORG 省 M-ORG 审 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE , O 四 B-ORG 川 M-ORG 省 M-ORG 注 M-ORG 册 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 教 M-ORG 育 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE ; O 同 O 时 O 兼 O 职 O 成 B-ORG 都 M-ORG 银 M-ORG 河 M-ORG 磁 M-ORG 体 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 任 O 期 O 自 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 1 O 日 O 至 O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 1 O 日 O 。 O 汤 B-NAME 建 M-NAME 华 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 5 O 7 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE ; O 曾 O 任 O 南 B-ORG 京 M-ORG 第 M-ORG 一 M-ORG 农 M-ORG 药 M-ORG 厂 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 红 B-ORG 太 M-ORG 阳 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 南 B-ORG 京 M-ORG 红 M-ORG 太 M-ORG 阳 M-ORG 农 M-ORG 资 M-ORG 连 M-ORG 锁 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 现 O 任 O 红 B-ORG 太 M-ORG 阳 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 南 B-ORG 京 M-ORG 红 M-ORG 太 M-ORG 阳 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 岳 B-NAME 建 M-NAME 水 E-NAME : O 男 O , O 出 O 生 O 于 O 1 O 9 O 6 O 3 O 年 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 河 B-ORG 南 M-ORG 平 M-ORG 原 M-ORG 光 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 大 M-ORG 晨 M-ORG 光 M-ORG 电 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 北 B-ORG 方 M-ORG 光 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 龚 B-NAME 建 M-NAME 平 E-NAME : O 曾 O 任 O 上 B-ORG 海 M-ORG 二 M-ORG 纺 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 任 O 上 B-ORG 海 M-ORG 二 M-ORG 纺 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 霍 B-NAME 广 M-NAME 华 E-NAME , O 女 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 政 B-TITLE 工 M-TITLE 师 E-TITLE 、 O 助 B-TITLE 理 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 湖 B-ORG 北 M-ORG 襄 M-ORG 樊 M-ORG 水 M-ORG 泥 M-ORG 厂 E-ORG 政 B-TITLE 工 M-TITLE 干 M-TITLE 事 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 市 M-ORG 政 M-ORG 工 M-ORG 程 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 科 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE 。 O 历 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 党 B-TITLE 群 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 行 B-TITLE 政 M-TITLE 副 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 彰 M-NAME 清 E-NAME : O 男 O , O 1 O 9 O 4 O 5 O 年 O 3 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 历 O 任 O 长 B-ORG 城 M-ORG 电 M-ORG 工 M-ORG 合 M-ORG 金 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 代 B-TITLE 理 M-TITLE 厂 M-TITLE 长 E-TITLE , O 长 B-ORG 城 M-ORG 电 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 处 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 株 B-ORG 洲 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 业 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 省 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 业 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 局 B-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 电 M-ORG 子 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 湖 B-ORG 南 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 省 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 厅 E-ORG 厅 B-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 省 M-ORG 九 M-ORG 届 M-ORG 政 M-ORG 协 E-ORG 委 B-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 超 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 住 O 权 O , O 1 O 9 O 7 O 2 O 年 O 1 O 0 O 月 O 出 O 生 O , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O , O 1 O 9 O 9 O 4 O 年 O 7 O 月 O 安 B-ORG 徽 M-ORG 财 M-ORG 贸 M-ORG 学 M-ORG 院 E-ORG 会 B-PRO 计 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 专 B-EDU 科 E-EDU 毕 O 业 O 。 O 历 O 任 O 无 B-ORG 锡 M-ORG 小 M-ORG 天 M-ORG 鹅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 主 B-TITLE 办 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 江 B-ORG 苏 M-ORG 小 M-ORG 天 M-ORG 鹅 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 江 B-ORG 苏 M-ORG 鑫 M-ORG 南 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 7 O 月 O 进 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 1 O 0 O 日 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 起 O 同 O 时 O 担 O 任 O 江 B-ORG 苏 M-ORG 双 M-ORG 象 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 李 B-NAME 梅 E-NAME , O 女 O , O 1 O 9 O 6 O 2 O 年 O 1 O 1 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 本 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 公 B-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 部 M-TITLE 工 M-TITLE 艺 M-TITLE 员 E-TITLE 、 O 品 B-TITLE 质 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 运 M-TITLE 营 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 环 M-ORG 球 M-ORG 磁 M-ORG 卡 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 王 B-NAME 照 M-NAME 生 E-NAME , O 男 O , O 1 O 9 O 7 O 9 O 年 O 生 O , O 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 毕 O 业 O 于 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 博 M-ORG 润 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE , O 河 B-ORG 南 M-ORG 省 M-ORG 建 M-ORG 设 M-ORG 投 M-ORG 资 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 部 M-TITLE 、 M-TITLE 证 M-TITLE 券 M-TITLE 部 M-TITLE 职 M-TITLE 员 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 朱 B-NAME 小 M-NAME 雄 E-NAME 先 O 生 O : O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 山 B-ORG 东 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 本 B-EDU 科 E-EDU 毕 O 业 O 。 O 已 O 参 O 加 O 深 B-ORG 交 M-ORG 所 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 培 O 训 O , O 并 O 获 O 取 O 上 O 市 O 公 O 司 O 高 O 级 O 管 O 理 O 人 O 员 O 培 O 训 O 结 O 业 O 证 O 书 O 。 O 曾 O 任 O 昆 B-ORG 山 M-ORG 经 M-ORG 济 M-ORG 技 M-ORG 术 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 太 M-ORG 光 M-ORG 电 M-ORG 信 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE ; O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 太 M-ORG 光 M-ORG 电 M-ORG 信 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ( O 代 O 行 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 责 O ) O 。 O 何 B-NAME 维 M-NAME 嘉 E-NAME , O 男 O , O 1 O 9 O 5 O 7 O 年 O 8 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 厦 B-ORG 门 M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 生 B-TITLE 产 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 厦 B-ORG 门 M-ORG 工 M-ORG 程 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 才 M-NAME 庆 E-NAME : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 男 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 厦 B-ORG 门 M-ORG 莹 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 加 O 入 O 厦 B-ORG 门 M-ORG 蒙 M-ORG 发 M-ORG 利 M-ORG 科 M-ORG 技 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 后 O , O 曾 O 任 O 深 B-ORG 圳 M-ORG 凯 M-ORG 得 M-ORG 克 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 现 O 任 O 厦 B-ORG 门 M-ORG 蒙 M-ORG 发 M-ORG 利 M-ORG 科 M-ORG 技 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 武 B-NAME 佩 M-NAME 雄 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 3 O 年 O 9 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 1 O 9 O 7 O 0 O 年 O 1 O 2 O 月 O 参 O 加 O 工 O 作 O 。 O 历 O 任 O 云 B-ORG 南 M-ORG 铝 M-ORG 厂 E-ORG 电 B-TITLE 解 M-TITLE 车 M-TITLE 间 M-TITLE 工 M-TITLE 段 M-TITLE 长 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 厂 S-ORG 两 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 电 B-ORG 解 M-ORG 二 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 云 B-ORG 南 M-ORG 铝 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE ; O 云 B-ORG 南 M-ORG 冶 M-ORG 金 M-ORG 集 M-ORG 团 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 任 O 党 B-ORG 委 M-ORG 组 M-ORG 织 M-ORG 部 E-ORG 部 B-TITLE 长 E-TITLE 、 O 人 B-TITLE 事 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 2 O 月 O 至 O 今 O 任 O 云 B-ORG 南 M-ORG 驰 M-ORG 宏 M-ORG 锌 M-ORG 锗 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O 至 O 今 O 任 O 云 B-ORG 南 M-ORG 驰 M-ORG 宏 M-ORG 锌 M-ORG 锗 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 陆 B-NAME 志 M-NAME 强 E-NAME , O 男 O , O 1 O 9 O 5 O 7 O 年 O 2 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 2 O 年 O 1 O 2 O 月 O 参 O 加 O 工 O 作 O 。 O 1 O 9 O 8 O 2 O 年 O 1 O 2 O 月 O 至 O 1 O 9 O 8 O 5 O 年 O 7 O 月 O , O 在 O 苏 B-ORG 州 M-ORG 医 M-ORG 学 M-ORG 院 M-ORG 学 M-ORG 生 M-ORG 办 M-ORG 公 M-ORG 室 E-ORG , O 图 B-ORG 书 M-ORG 馆 M-ORG 情 M-ORG 报 M-ORG 室 E-ORG 工 O 作 O 。 O 1 O 9 O 8 O 5 O 年 O 9 O 月 O 至 O 1 O 9 O 8 O 9 O 年 O 7 O 月 O , O 苏 B-ORG 州 M-ORG 医 M-ORG 学 M-ORG 院 E-ORG 药 B-PRO 理 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 就 O 读 O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 1 O 9 O 8 O 9 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 3 O 年 O 7 O 月 O , O 苏 B-ORG 州 M-ORG 医 M-ORG 学 M-ORG 院 E-ORG 药 B-TITLE 理 M-TITLE 教 M-TITLE 研 M-TITLE 室 M-TITLE 讲 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 8 O 年 O 7 O 月 O , O 任 O 苏 B-ORG 州 M-ORG 中 M-ORG 化 M-ORG 药 M-ORG 品 M-ORG 工 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 划 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 8 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 1 O 年 O 4 O 月 O , O 任 O 苏 B-ORG 州 M-ORG 东 M-ORG 瑞 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 月 O 至 O 今 O , O 任 O 江 B-ORG 苏 M-ORG 吴 M-ORG 中 M-ORG 医 M-ORG 药 M-ORG 销 M-ORG 售 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 吴 B-NAME 明 M-NAME 辉 E-NAME , O 男 O , O 1 O 9 O 4 O 5 O 年 O 1 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 农 B-TITLE 业 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 江 B-ORG 西 M-ORG 省 M-ORG 国 M-ORG 资 M-ORG 办 E-ORG 主 B-TITLE 任 E-TITLE , O 江 B-ORG 西 M-ORG 省 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 监 M-ORG 督 M-ORG 管 M-ORG 理 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 E-TITLE , O 江 B-ORG 西 M-ORG 省 M-ORG 政 M-ORG 协 E-ORG 常 B-TITLE 委 E-TITLE , O 江 B-ORG 西 M-ORG 诚 M-ORG 志 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 江 B-ORG 西 M-ORG 中 M-ORG 江 M-ORG 地 M-ORG 产 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 已 O 退 O 休 O , O 现 O 任 O 江 B-ORG 西 M-ORG 赣 M-ORG 粤 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 崇 M-NAME 滨 E-NAME 先 O 生 O , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 3 O 年 O 1 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 就 O 职 O 陕 B-ORG 西 M-ORG 省 M-ORG 旅 M-ORG 游 M-ORG 局 E-ORG , O W B-ORG e M-ORG i M-ORG j M-ORG i M-ORG a M-ORG n M-ORG g M-ORG P M-ORG l M-ORG a M-ORG s M-ORG t M-ORG i M-ORG c M-ORG s M-ORG C M-ORG o M-ORG . M-ORG L M-ORG t M-ORG d M-ORG . M-ORG 西 M-ORG 北 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 之 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 及 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 任 O 职 O 于 O 美 B-ORG 国 M-ORG P M-ORG h M-ORG o M-ORG e M-ORG n M-ORG i M-ORG x M-ORG M M-ORG e M-ORG d M-ORG i M-ORG c M-ORG a M-ORG l M-ORG E M-ORG q M-ORG u M-ORG i M-ORG p M-ORG m M-ORG e M-ORG n M-ORG t M-ORG C M-ORG o M-ORG m M-ORG p M-ORG a M-ORG n M-ORG y E-ORG , O 重 B-ORG 庆 M-ORG 三 M-ORG 峡 M-ORG 轮 M-ORG 船 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 现 O 任 O 中 B-ORG 软 M-ORG 国 M-ORG 际 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 及 O 首 B-TITLE 席 M-TITLE 人 M-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 官 E-TITLE , O 曾 O 于 O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 担 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 5 O 年 O 5 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 荆 B-NAME 林 M-NAME 波 E-NAME : O 男 O , O 1 O 9 O 6 O 6 O 年 O 4 O 月 O 出 O 生 O , O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 获 O 得 O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 现 O 任 O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 财 M-ORG 经 M-ORG 战 M-ORG 略 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE ; O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU ; O 兼 O 任 O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 财 M-ORG 经 M-ORG 战 M-ORG 略 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE ; O 中 B-ORG 国 M-ORG 市 M-ORG 场 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O A B-ORG P M-ORG E M-ORG C M-ORG 电 M-ORG 子 M-ORG 商 M-ORG 务 M-ORG 工 M-ORG 商 M-ORG 联 M-ORG 盟 M-ORG 专 M-ORG 委 M-ORG 会 E-ORG 主 B-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE ; O 中 B-ORG 国 M-ORG 商 M-ORG 业 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 中 B-ORG 国 M-ORG 物 M-ORG 流 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 世 B-ORG 烹 M-ORG 联 M-ORG 国 M-ORG 际 M-ORG 饮 M-ORG 食 M-ORG 文 M-ORG 化 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 秘 B-TITLE 书 M-TITLE 长 E-TITLE ; O 中 B-ORG 国 M-ORG 烹 M-ORG 饪 M-ORG 协 M-ORG 会 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE ; O 中 B-ORG 国 M-ORG 商 M-ORG 业 M-ORG 政 M-ORG 策 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 全 B-ORG 国 M-ORG 高 M-ORG 等 M-ORG 院 M-ORG 校 M-ORG 贸 M-ORG 易 M-ORG 经 M-ORG 济 M-ORG 教 M-ORG 学 M-ORG 理 M-ORG 事 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 广 B-ORG 州 M-ORG 卡 M-ORG 奴 M-ORG 迪 M-ORG 路 M-ORG 服 M-ORG 饰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 浙 B-ORG 江 M-ORG 中 M-ORG 国 M-ORG 小 M-ORG 商 M-ORG 品 M-ORG 城 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 中 B-ORG 国 M-ORG 全 M-ORG 聚 M-ORG 德 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 姜 B-NAME 雨 M-NAME 松 E-NAME 先 O 生 O , O M B-EDU B M-EDU A M-EDU 硕 M-EDU 士 E-EDU , O 助 B-TITLE 理 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 7 O 月 O 毕 O 业 O 于 O 天 B-ORG 津 M-ORG 对 M-ORG 外 M-ORG 经 M-ORG 贸 M-ORG 学 M-ORG 院 E-ORG ; O 1 O 9 O 9 O 9 O 年 O 7 O 月 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG M B-PRO B M-PRO A E-PRO 毕 O 业 O ; O 曾 O 工 O 作 O 于 O 河 B-ORG 北 M-ORG 省 M-ORG 针 M-ORG 棉 M-ORG 织 M-ORG 品 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG , O 河 B-ORG 北 M-ORG 圣 M-ORG 仑 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG , O 电 B-ORG 信 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG 战 M-ORG 略 M-ORG 投 M-ORG 资 M-ORG 部 E-ORG ; O 曾 O 任 O 电 B-ORG 信 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 战 B-TITLE 略 M-TITLE 投 M-TITLE 资 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 电 B-ORG 信 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 战 B-TITLE 略 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 张 B-NAME 家 M-NAME 明 E-NAME 先 O 生 O , O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 4 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 河 B-ORG 南 M-ORG 华 M-ORG 英 M-ORG 农 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 饲 M-ORG 料 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 营 B-TITLE 销 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 2 O 6 O 日 O 至 O 今 O , O 任 O 河 B-ORG 南 M-ORG 华 M-ORG 英 M-ORG 农 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 家 M-NAME 明 E-NAME 先 O 生 O 目 O 前 O 未 O 持 O 有 O 本 O 公 O 司 O 股 O 份 O , O 与 O 其 O 他 O 持 O 有 O 公 O 司 O 百 O 分 O 之 O 五 O 以 O 上 O 股 O 份 O 的 O 股 O 东 O 、 O 实 O 际 O 控 O 制 O 人 O 之 O 间 O 无 O 关 O 联 O 关 O 系 O , O 未 O 受 O 过 O 中 O 国 O 证 O 监 O 会 O 及 O 其 O 他 O 有 O 关 O 部 O 门 O 的 O 处 O 罚 O 和 O 证 O 券 O 交 O 易 O 所 O 惩 O 戒 O , O 不 O 存 O 在 O 《 O 公 O 司 O 法 O 》 O 、 O 《 O 公 O 司 O 章 O 程 O 》 O 中 O 规 O 定 O 的 O 不 O 得 O 担 O 任 O 公 O 司 O 高 O 管 O 的 O 情 O 形 O 。 O 张 B-NAME 跃 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 天 B-ORG 津 M-ORG 邮 M-ORG 电 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 市 B-TITLE 场 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 天 B-ORG 津 M-ORG 移 M-ORG 动 M-ORG 通 M-ORG 信 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 中 B-ORG 国 M-ORG 移 M-ORG 动 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 中 B-ORG 信 M-ORG 2 M-ORG 1 M-ORG 世 M-ORG 纪 M-ORG 通 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 兼 O C B-TITLE E M-TITLE O E-TITLE , O 鸿 B-ORG 联 M-ORG 九 M-ORG 五 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 等 O , O 现 O 任 O 北 B-ORG 京 M-ORG 宽 M-ORG 广 M-ORG 电 M-ORG 信 M-ORG 高 M-ORG 技 M-ORG 术 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 5 O 月 O 任 O 拓 B-ORG 维 M-ORG 信 M-ORG 息 M-ORG 系 M-ORG 统 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 5 O 月 O 起 O 任 O 拓 B-ORG 维 M-ORG 信 M-ORG 息 M-ORG 系 M-ORG 统 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 张 B-NAME 伟 M-NAME 夫 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 毕 O 业 O 于 O 江 B-ORG 苏 M-ORG 大 M-ORG 学 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 浙 B-ORG 江 M-ORG 中 M-ORG 国 M-ORG 轻 M-ORG 纺 M-ORG 城 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 中 M-ORG 国 M-ORG 轻 M-ORG 纺 M-ORG 城 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 邵 B-NAME 瑞 M-NAME 庆 E-NAME : O 男 O , O 1 O 9 O 5 O 7 O 年 O 生 O , O 博 B-EDU 士 E-EDU 、 O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 4 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 2 O 月 O , O 先 O 后 O 担 O 任 O 上 B-ORG 海 M-ORG 海 M-ORG 事 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 务 M-ORG 与 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 系 E-ORG 主 B-TITLE 任 E-TITLE 、 O 管 B-ORG 理 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 经 B-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 5 O 年 O 1 O 月 O 担 O 任 O 上 B-ORG 海 M-ORG 立 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 具 O 有 O 独 O 立 O 董 O 事 O 资 O 格 O , O 现 O 任 O 上 B-ORG 海 M-ORG 立 M-ORG 信 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE ( O 二 B-TITLE 级 M-TITLE 教 M-TITLE 授 E-TITLE ) O 、 O 上 B-ORG 海 M-ORG 海 M-ORG 事 M-ORG 大 M-ORG 学 E-ORG 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 兼 O 任 O 中 B-ORG 国 M-ORG 交 M-ORG 通 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 中 B-ORG 国 M-ORG 审 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 兼 O 学 B-TITLE 术 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 交 B-ORG 通 M-ORG 运 M-ORG 输 M-ORG 部 M-ORG 财 M-ORG 会 M-ORG 决 M-ORG 策 M-ORG 咨 M-ORG 询 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 教 B-ORG 育 M-ORG 部 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 专 M-ORG 业 M-ORG 教 M-ORG 学 M-ORG 指 M-ORG 导 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 等 O 。 O 曲 B-NAME 锋 E-NAME , O 男 O , O 1 O 9 O 7 O 6 O 年 O 9 O 月 O 出 O 生 O , O 山 B-LOC 东 M-LOC 蓬 M-LOC 莱 M-LOC 人 E-LOC , O 汉 B-RACE 族 E-RACE , O 东 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 土 M-ORG 木 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG 建 B-PRO 设 M-PRO 工 M-PRO 程 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 项 M-TITLE 目 M-TITLE 管 M-TITLE 理 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 8 O . O 3 O - O 2 O 0 O 0 O 9 O . O 8 O 任 O 海 B-ORG 口 M-ORG 市 M-ORG 创 M-ORG 新 M-ORG 产 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O . O 8 O 至 O 今 O , O 历 O 任 O 海 B-ORG 口 M-ORG 市 M-ORG 创 M-ORG 新 M-ORG 产 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 海 B-ORG 口 M-ORG 市 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 3 O 年 O 1 O 月 O 至 O 今 O , O 任 O 海 B-ORG 南 M-ORG 椰 M-ORG 岛 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 刘 B-NAME 诚 E-NAME : O 男 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 中 B-LOC 国 M-LOC 香 M-LOC 港 E-LOC , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 职 O 于 O 光 B-ORG 大 M-ORG 证 M-ORG 券 E-ORG 、 O 招 B-ORG 商 M-ORG 证 M-ORG 券 E-ORG 的 O 资 O 产 O 管 O 理 O 部 O 门 O , O 光 B-ORG 大 M-ORG 控 M-ORG 股 E-ORG 直 O 接 O 投 O 资 O 部 O 门 O 。 O 现 O 任 O 贝 B-ORG 因 M-ORG 美 M-ORG 婴 M-ORG 童 M-ORG 食 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 光 B-ORG 远 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 投 M-TITLE 资 M-TITLE 官 E-TITLE , O 远 B-ORG 成 M-ORG 物 M-ORG 流 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 深 B-ORG 圳 M-ORG 华 M-ORG 大 M-ORG 基 M-ORG 因 M-ORG 科 M-ORG 技 M-ORG 服 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 吕 B-NAME 剑 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 国 B-TITLE 家 M-TITLE 注 M-TITLE 册 M-TITLE 一 M-TITLE 级 M-TITLE 建 M-TITLE 造 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 至 O 今 O 就 O 职 O 于 O 中 B-ORG 天 M-ORG 发 M-ORG 展 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 资 B-TITLE 产 M-TITLE 监 M-TITLE 管 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 资 B-TITLE 产 M-TITLE 监 M-TITLE 管 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 资 B-TITLE 产 M-TITLE 监 M-TITLE 管 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 至 O 今 O 任 O 浙 B-ORG 江 M-ORG 新 M-ORG 嘉 M-ORG 联 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 李 B-NAME 雅 M-NAME 生 E-NAME 先 O 生 O , O 原 O 为 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 三 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 成 M-TITLE 员 E-TITLE , O 现 O 任 O 蛇 B-ORG 口 M-ORG 工 M-ORG 业 M-ORG 区 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 招 B-ORG 商 M-ORG 局 M-ORG 物 M-ORG 流 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 联 B-ORG 合 M-ORG 国 M-ORG 人 M-ORG 口 M-ORG 中 M-ORG 心 M-ORG ( M-ORG 开 M-ORG 罗 M-ORG ) E-ORG 硕 B-EDU 士 E-EDU 。 O 历 O 任 O 四 B-ORG 川 M-ORG 大 M-ORG 学 M-ORG 人 M-ORG 口 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 蛇 M-ORG 口 M-ORG 区 M-ORG 计 M-ORG 划 M-ORG 统 M-ORG 计 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE , O 蛇 B-ORG 口 M-ORG 工 M-ORG 业 M-ORG 区 E-ORG 计 B-TITLE 划 M-TITLE 统 M-TITLE 计 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 经 B-TITLE 济 M-TITLE 发 M-TITLE 展 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 招 B-ORG 商 M-ORG 石 M-ORG 化 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 爽 E-NAME 先 O 生 O , O 1 O 9 O 6 O 7 O 年 O 生 O , O 硕 B-EDU 士 E-EDU 。 O 现 O 任 O 光 B-ORG 大 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 中 B-ORG 国 M-ORG 光 M-ORG 大 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 光 M-ORG 大 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 首 B-TITLE 席 M-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE , O 中 B-ORG 国 M-ORG 光 M-ORG 大 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 诺 B-ORG 亚 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 及 O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 矿 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 陈 S-NAME 先 O 生 O 现 O 为 O 香 B-ORG 港 M-ORG 金 M-ORG 融 M-ORG 发 M-ORG 展 M-ORG 局 E-ORG 非 B-TITLE 官 M-TITLE 方 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 香 B-ORG 港 M-ORG 中 M-ORG 国 M-ORG 金 M-ORG 融 M-ORG 协 M-ORG 会 E-ORG 主 B-TITLE 席 E-TITLE 及 O 香 B-ORG 港 M-ORG 中 M-ORG 资 M-ORG 证 M-ORG 券 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 席 E-TITLE , O 并 O 担 O 任 O 华 B-ORG 东 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 客 B-TITLE 座 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 陈 S-NAME 先 O 生 O 持 O 有 O 华 B-ORG 东 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 法 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 衔 O 及 O 香 B-ORG 港 M-ORG 大 M-ORG 学 M-ORG 专 M-ORG 业 M-ORG 进 M-ORG 修 M-ORG 学 M-ORG 院 E-ORG 之 O 法 B-PRO 律 E-PRO 文 O 凭 O , O 并 O 具 O 备 O 中 B-TITLE 华 M-TITLE 人 M-TITLE 民 M-TITLE 共 M-TITLE 和 M-TITLE 国 M-TITLE 律 M-TITLE 师 E-TITLE 资 O 格 O 及 O 为 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 陈 S-NAME 先 O 生 O 在 O 加 O 入 O 光 B-ORG 大 M-ORG 集 M-ORG 团 E-ORG 前 O , O 曾 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 行 E-ORG 法 B-TITLE 律 M-TITLE 事 M-TITLE 务 M-TITLE 室 M-TITLE 处 M-TITLE 长 E-TITLE 。 O 李 B-NAME 江 M-NAME 鹏 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 4 O 年 O 2 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 博 B-EDU 士 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 评 B-TITLE 估 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 深 B-ORG 圳 M-ORG 中 M-ORG 诚 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 审 B-TITLE 计 M-TITLE 员 E-TITLE 、 O 评 B-TITLE 估 M-TITLE 员 E-TITLE , O 宏 B-ORG 源 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 二 M-TITLE 部 M-TITLE 审 M-TITLE 计 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 审 B-TITLE 计 M-TITLE 总 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 稽 B-TITLE 核 M-TITLE 审 M-TITLE 计 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 组 M-TITLE 织 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 宏 B-ORG 源 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 、 O 公 B-TITLE 司 M-TITLE 计 M-TITLE 划 M-TITLE 资 M-TITLE 金 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 朱 B-NAME 小 M-NAME 军 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 5 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 丰 M-ORG 东 M-ORG 热 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 营 B-TITLE 销 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 江 B-ORG 苏 M-ORG 丰 M-ORG 东 M-ORG 热 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 李 B-NAME 旦 M-NAME 生 E-NAME 先 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 7 O 2 O 年 O 至 O 1 O 9 O 9 O 5 O 年 O , O 担 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 北 M-ORG 京 M-ORG 卫 M-ORG 戍 M-ORG 区 E-ORG 部 B-TITLE 队 M-TITLE 干 M-TITLE 部 E-TITLE , O 1 O 9 O 9 O 5 O 年 O 至 O 2 O 0 O 0 O 0 O 年 O , O 担 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 北 M-ORG 京 M-ORG 预 M-ORG 备 M-ORG 役 M-ORG 高 M-ORG 炮 M-ORG 师 E-ORG 干 B-TITLE 部 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 0 O 5 O 年 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 M-ORG 内 M-ORG 蒙 M-ORG 古 M-ORG 军 M-ORG 区 M-ORG 阿 M-ORG 拉 M-ORG 善 M-ORG 军 M-ORG 分 M-ORG 区 E-ORG 司 B-TITLE 令 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 取 O 得 O 上 O 市 O 公 O 司 O 独 O 立 O 董 O 事 O 任 O 职 O 资 O 格 O 。 O 黄 B-NAME 建 E-NAME 先 O 生 O , O 1 O 9 O 6 O 8 O 年 O 9 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO M B-EDU B M-EDU A E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O 。 O 最 O 近 O 5 O 年 O 的 O 主 O 要 O 工 O 作 O 经 O 历 O , O 历 O 任 O 三 B-ORG 湘 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 三 B-ORG 湘 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 湘 M-ORG 大 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 鲍 B-NAME 涌 M-NAME 波 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 8 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 一 B-TITLE 级 M-TITLE 人 M-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 廊 B-TITLE 坊 M-TITLE 发 M-TITLE 展 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE ; O 历 O 任 O 廊 B-ORG 坊 M-ORG 市 M-ORG 地 M-ORG 矿 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 廊 B-ORG 坊 M-ORG 市 M-ORG 国 M-ORG 土 M-ORG 资 M-ORG 源 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 调 B-TITLE 研 M-TITLE 员 E-TITLE , O 廊 B-ORG 坊 M-ORG 市 M-ORG 城 M-ORG 改 M-ORG 办 E-ORG 主 B-TITLE 任 E-TITLE , O 廊 B-ORG 坊 M-ORG 市 M-ORG 国 M-ORG 土 M-ORG 资 M-ORG 源 M-ORG 局 M-ORG 广 M-ORG 阳 M-ORG 区 M-ORG 分 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE , O 廊 B-ORG 坊 M-ORG 市 M-ORG 国 M-ORG 土 M-ORG 资 M-ORG 源 M-ORG 局 M-ORG 市 M-ORG 区 M-ORG 分 M-ORG 局 E-ORG 局 B-TITLE 长 E-TITLE , O 土 B-ORG 地 M-ORG 储 M-ORG 备 M-ORG 交 M-ORG 易 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE , O 廊 B-ORG 坊 M-ORG 市 M-ORG 国 M-ORG 土 M-ORG 土 M-ORG 地 M-ORG 开 M-ORG 发 M-ORG 建 M-ORG 设 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 廊 B-ORG 坊 M-ORG 市 M-ORG 国 M-ORG 土 M-ORG 土 M-ORG 地 M-ORG 开 M-ORG 发 M-ORG 建 M-ORG 设 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 廊 B-ORG 坊 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 张 B-NAME 敏 M-NAME 康 E-NAME , O 男 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 出 M-ORG 租 M-ORG 汽 M-ORG 车 M-ORG 公 M-ORG 司 E-ORG 组 B-TITLE 织 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 强 M-ORG 生 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 王 B-NAME 予 M-NAME 省 E-NAME 先 O 生 O : O 男 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O ; O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 北 B-ORG 京 M-ORG 科 M-ORG 锐 M-ORG 第 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 审 B-TITLE 计 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 兼 O 任 O 公 B-ORG 司 M-ORG 控 M-ORG 股 M-ORG 子 M-ORG 公 M-ORG 司 M-ORG 北 M-ORG 京 M-ORG 科 M-ORG 锐 M-ORG 屹 M-ORG 拓 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 河 B-ORG 南 M-ORG 科 M-ORG 锐 M-ORG 电 M-ORG 力 M-ORG 设 M-ORG 备 M-ORG 运 M-ORG 行 M-ORG 维 M-ORG 护 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 王 S-NAME 先 O 生 O 曾 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 王 S-NAME 先 O 生 O 1 O 9 O 7 O 0 O ~ O 1 O 9 O 7 O 6 O 年 O 在 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 E-ORG 服 O 役 O ; O 1 O 9 O 7 O 6 O ~ O 1 O 9 O 8 O 9 O 年 O 在 O 郑 B-ORG 州 M-ORG 市 M-ORG 灯 M-ORG 泡 M-ORG 厂 E-ORG 历 O 任 O 财 B-TITLE 务 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 1 O 9 O 8 O 9 O ~ O 1 O 9 O 9 O 8 O 年 O 在 O 中 B-ORG 国 M-ORG 出 M-ORG 国 M-ORG 人 M-ORG 员 M-ORG 服 M-ORG 务 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 河 M-ORG 南 M-ORG 公 M-ORG 司 E-ORG 任 O 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 8 O ~ O 2 O 0 O 1 O 4 O 年 O 在 O 公 B-ORG 司 E-ORG 及 O 前 O 身 O 任 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 至 O 今 O 任 O 北 B-ORG 京 M-ORG 科 M-ORG 锐 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 丁 B-NAME 昀 E-NAME 先 O 生 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 历 O 任 O 中 B-ORG 国 M-ORG 公 M-ORG 路 M-ORG 机 M-ORG 械 M-ORG 车 M-ORG 辆 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 中 B-ORG 国 M-ORG 公 M-ORG 路 M-ORG 机 M-ORG 械 M-ORG 车 M-ORG 辆 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 邹 B-NAME 兰 E-NAME : O 女 O , O 1 O 9 O 7 O 9 O 年 O 出 O 生 O , O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 曾 O 任 O 华 B-ORG 润 M-ORG 纺 M-ORG 织 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 润 M-ORG 联 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 华 B-ORG 润 M-ORG 纺 M-ORG 织 M-ORG 集 M-ORG 团 M-ORG 上 M-ORG 海 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 华 B-ORG 润 M-ORG 医 M-ORG 药 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 中 B-ORG 国 M-ORG 华 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 三 B-ORG 九 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 华 B-ORG 润 M-ORG 金 M-ORG 融 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 战 B-TITLE 略 M-TITLE 及 M-TITLE 业 M-TITLE 务 M-TITLE 发 M-TITLE 展 M-TITLE 董 M-TITLE 事 E-TITLE , O 华 B-ORG 润 M-ORG 资 M-ORG 产 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 华 B-ORG 润 M-ORG 医 M-ORG 疗 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 陈 B-NAME 振 M-NAME 平 E-NAME , O 男 O , O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O 硕 B-EDU 士 E-EDU 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 商 M-ORG 品 M-ORG 交 M-ORG 易 M-ORG 所 M-ORG 研 M-ORG 发 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 上 B-ORG 海 M-ORG 久 M-ORG 联 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 久 M-ORG 联 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 白 B-NAME 维 E-NAME 先 O 生 O , O 1 O 9 O 6 O 4 O 年 O 1 O 1 O 月 O 出 O 生 O , O 现 O 任 O 竞 B-ORG 天 M-ORG 公 M-ORG 诚 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 、 O 律 B-TITLE 师 E-TITLE , O 中 B-ORG 国 M-ORG 太 M-ORG 平 M-ORG 洋 M-ORG 保 M-ORG 险 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 白 S-NAME 先 O 生 O 曾 O 任 O 中 B-ORG 国 M-ORG 环 M-ORG 球 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE , O 美 B-ORG 国 M-ORG S M-ORG u M-ORG l M-ORG l M-ORG i M-ORG v M-ORG a M-ORG n M-ORG & M-ORG C M-ORG r M-ORG o M-ORG m M-ORG w M-ORG e M-ORG l M-ORG l M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 。 O 还 O 担 O 任 O 于 O 上 O 证 O 所 O 上 O 市 O 的 O 华 B-ORG 泰 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 于 O 深 O 圳 O 证 O 券 O 交 O 易 O 所 O 上 O 市 O 的 O 宁 B-ORG 夏 M-ORG 东 M-ORG 方 M-ORG 钽 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 白 S-NAME 先 O 生 O 拥 O 有 O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 并 O 拥 O 有 O 中 B-ORG 国 E-ORG 与 O 美 B-ORG 国 M-ORG 纽 M-ORG 约 M-ORG 州 E-ORG 律 B-TITLE 师 E-TITLE 资 O 格 O 。 O 王 B-NAME 秋 M-NAME 霜 E-NAME 女 O 士 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 执 B-TITLE 业 M-TITLE 药 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 南 B-ORG 京 M-ORG 同 M-ORG 仁 M-ORG 堂 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 厂 B-TITLE 长 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ( O 主 O 持 O 工 O 作 O ) O 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 南 B-ORG 京 M-ORG 医 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 李 B-NAME 佳 M-NAME 铭 E-NAME 先 O 生 O , O 1 O 9 O 7 O 2 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 6 O - O 2 O 0 O 0 O 1 O 年 O 任 O 上 B-ORG 海 M-ORG 专 M-ORG 利 M-ORG 商 M-ORG 标 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE , O 2 O 0 O 0 O 3 O - O 2 O 0 O 0 O 4 O 年 O 任 O 通 B-ORG 用 M-ORG 电 M-ORG 气 M-ORG ( M-ORG 中 M-ORG 国 M-ORG ) M-ORG 研 M-ORG 究 M-ORG 开 M-ORG 发 M-ORG 中 M-ORG 心 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE , O 2 O 0 O 0 O 4 O - O 2 O 0 O 0 O 7 O 年 O 任 O 上 B-ORG 海 M-ORG 虹 M-ORG 桥 M-ORG 正 M-ORG 瀚 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 M-TITLE 律 M-TITLE 师 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 翰 M-ORG 鸿 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 M-TITLE 律 M-TITLE 师 E-TITLE 。 O 朱 B-NAME 舫 E-NAME , O 女 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 2 O 年 O 8 O 月 O - O 1 O 9 O 8 O 4 O 年 O 1 O 2 O 月 O , O 在 O 商 B-ORG 业 M-ORG 部 M-ORG 经 M-ORG 济 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 工 O 作 O ; O 1 O 9 O 8 O 5 O 年 O 1 O 月 O - O 2 O 0 O 1 O 1 O 年 O 2 O 月 O , O 在 O 中 B-ORG 国 M-ORG 商 M-ORG 报 E-ORG 工 O 作 O , O 历 O 任 O 记 B-TITLE 者 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 主 B-TITLE 任 E-TITLE , O 主 B-TITLE 编 M-TITLE 助 M-TITLE 理 E-TITLE , O 副 B-TITLE 总 M-TITLE 编 E-TITLE 等 O 职 O 务 O ; O 现 O 任 O 中 B-ORG 国 M-ORG 连 M-ORG 锁 M-ORG 经 M-ORG 营 M-ORG 协 M-ORG 会 E-ORG 首 B-TITLE 席 M-TITLE 顾 M-TITLE 问 E-TITLE , O 好 B-ORG 想 M-ORG 你 M-ORG 枣 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 新 B-ORG 疆 M-ORG 百 M-ORG 富 M-ORG 餐 M-ORG 饮 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 中 B-ORG 兴 M-ORG — M-ORG 沈 M-ORG 阳 M-ORG 商 M-ORG 业 M-ORG 大 M-ORG 厦 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 薪 M-TITLE 酬 M-TITLE 与 M-TITLE 考 M-TITLE 核 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE ; O 兼 O 任 O 北 B-ORG 京 M-ORG 聚 M-ORG 霖 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 中 M-ORG 心 E-ORG 代 B-TITLE 表 E-TITLE 。 O 张 B-NAME 国 M-NAME 柱 E-NAME 先 O 生 O : O 1 O 9 O 5 O 3 O 年 O 7 O 月 O 出 O 生 O , O 1 O 9 O 8 O 4 O 年 O 毕 O 业 O 于 O 内 B-ORG 蒙 M-ORG 古 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG 电 B-PRO 企 M-PRO 自 M-PRO 动 M-PRO 化 M-PRO 专 M-PRO 业 E-PRO , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 7 O 2 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O 在 O 内 B-ORG 蒙 M-ORG 古 M-ORG 电 M-ORG 缆 M-ORG 厂 E-ORG 工 O 作 O , O 曾 O 负 O 责 O 的 O 交 O 联 O 电 O 缆 O 项 O 目 O 获 O 得 O 省 O 级 O 科 O 学 O 技 O 术 O 进 O 步 O 二 O 等 O 奖 O ; O 1 O 9 O 9 O 8 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 扬 B-ORG 州 M-ORG 曙 M-ORG 光 M-ORG 电 M-ORG 缆 M-ORG 厂 E-ORG 工 O 作 O , O 任 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 至 O 2 O 0 O 0 O 8 O 年 O 在 O 上 B-ORG 海 M-ORG 电 M-ORG 气 M-ORG 内 M-ORG 蒙 M-ORG 古 M-ORG 电 M-ORG 缆 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 任 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 对 O 高 O 压 O 电 O 缆 O 技 O 术 O 的 O 研 O 发 O 和 O 管 O 理 O 具 O 有 O 较 O 丰 O 富 O 的 O 经 O 验 O ; O 2 O 0 O 0 O 8 O 年 O 7 O 月 O 至 O 今 O 在 O 本 B-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 担 O 任 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 兼 O 设 B-TITLE 备 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 6 O 月 O 1 O 5 O 日 O 至 O 今 O 担 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 薛 B-NAME 广 M-NAME 志 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 5 O 年 O 9 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE , O 历 O 任 O 西 B-ORG 宁 M-ORG 钢 M-ORG 厂 E-ORG 热 B-TITLE 管 M-TITLE 车 M-TITLE 间 M-TITLE 工 M-TITLE 段 M-TITLE 长 E-TITLE 、 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 西 B-ORG 宁 M-ORG 钢 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 组 M-TITLE 织 M-TITLE 处 M-TITLE 副 M-TITLE 科 M-TITLE 级 M-TITLE 组 M-TITLE 织 M-TITLE 员 E-TITLE 、 O 纪 B-ORG 律 M-ORG 检 M-ORG 查 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 西 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 政 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 秘 M-TITLE 书 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 西 B-ORG 钢 M-ORG 机 M-ORG 械 M-ORG 动 M-ORG 力 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 书 B-TITLE 记 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 任 O 西 B-ORG 钢 M-ORG 集 M-ORG 团 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 西 B-ORG 宁 M-ORG 特 M-ORG 殊 M-ORG 钢 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 三 B-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 龚 B-NAME 高 E-NAME : O 男 O , O 5 O 8 O 岁 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 现 O 任 O 广 B-ORG 东 M-ORG 旭 M-ORG 飞 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 曾 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 深 B-ORG 圳 M-ORG 成 M-ORG 协 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 龚 B-NAME 高 E-NAME 先 O 生 O 是 O 公 B-ORG 司 E-ORG 的 O 关 B-TITLE 联 M-TITLE 人 E-TITLE 。 O 万 B-NAME 毅 E-NAME : O 男 O , O 1 O 9 O 7 O 2 O 年 O 2 O 月 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 5 O 年 O 3 O 月 O 任 O 武 B-ORG 汉 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 黄 B-NAME 旭 M-NAME 晖 E-NAME 女 O 士 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 电 M-ORG 子 M-ORG 信 M-ORG 息 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 福 B-ORG 建 M-ORG 星 M-ORG 网 M-ORG 锐 M-ORG 捷 M-ORG 通 M-ORG 讯 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 华 B-ORG 映 M-ORG 科 M-ORG 技 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 曾 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 电 M-ORG 子 M-ORG 信 M-ORG 息 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 福 B-ORG 日 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 日 B-ORG 立 M-ORG 数 M-ORG 字 M-ORG 映 M-ORG 像 M-ORG ( M-ORG 中 M-ORG 国 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 内 B-TITLE 部 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 张 B-NAME 学 M-NAME 军 E-NAME ( O 离 O 任 O ) O : O 男 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 4 O 年 O 毕 O 业 O 于 O 河 B-ORG 北 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG , O 电 B-PRO 器 M-PRO 专 M-PRO 业 E-PRO ; O 2 O 0 O 0 O 5 O 年 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG , O 智 B-PRO 能 M-PRO 建 M-PRO 筑 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO 工 B-EDU 程 M-EDU 硕 M-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 至 O 今 O , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU 在 O 读 O 。 O 2 O 0 O 0 O 5 O 年 O 至 O 2 O 0 O 1 O 1 O 年 O 9 O 月 O , O 历 O 任 O 华 B-ORG 夏 M-ORG 控 M-ORG 股 M-ORG 京 M-ORG 御 M-ORG 地 M-ORG 产 E-ORG 事 B-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O , O 任 O 华 B-ORG 夏 M-ORG 幸 M-ORG 福 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE , O 京 B-ORG 御 M-ORG 地 M-ORG 产 E-ORG 事 B-TITLE 业 M-TITLE 部 M-TITLE 常 M-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 6 O 月 O , O 任 O 华 B-ORG 夏 M-ORG 幸 M-ORG 福 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 分 O 管 O 大 O 厂 O 大 O 区 O ; O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 任 O 华 B-ORG 夏 M-ORG 幸 M-ORG 福 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 华 B-ORG 夏 M-ORG 幸 M-ORG 福 M-ORG 基 M-ORG 业 E-ORG 产 B-TITLE 业 M-TITLE 发 M-TITLE 展 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 梁 B-NAME 仕 M-NAME 念 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 山 B-ORG 东 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 院 E-ORG 会 B-PRO 计 E-PRO 本 B-EDU 科 E-EDU , O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 天 B-ORG 津 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 研 B-EDU 究 M-EDU 生 M-EDU 同 M-EDU 等 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-TITLE 华 M-TITLE 人 M-TITLE 民 M-TITLE 共 M-TITLE 和 M-TITLE 国 M-TITLE 律 M-TITLE 师 E-TITLE 资 O 格 O 。 O 现 O 任 O 山 B-ORG 东 M-ORG 华 M-ORG 联 M-ORG 矿 M-ORG 业 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 山 B-ORG 东 M-ORG 省 M-ORG 注 M-ORG 册 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG 监 B-TITLE 管 M-TITLE 部 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 8 O 月 O 2 O 7 O 日 O 起 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 陈 B-NAME 伟 M-NAME 强 E-NAME : O 男 O , O 1 O 9 O 6 O 2 O 年 O 9 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 中 B-ORG 国 M-ORG 民 M-ORG 主 M-ORG 建 M-ORG 国 M-ORG 会 E-ORG 会 B-TITLE 员 E-TITLE 。 O 曾 O 任 O 河 B-ORG 南 M-ORG 省 M-ORG 开 M-ORG 封 M-ORG 第 M-ORG 一 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 宝 M-ORG 安 M-ORG 律 M-ORG 师 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 起 O 任 O 广 B-ORG 东 M-ORG 深 M-ORG 天 M-ORG 正 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 。 O 王 B-NAME 桂 M-NAME 生 E-NAME 先 O 生 O , O 1 O 9 O 5 O 1 O 年 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 7 O 年 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 4 O 月 O 起 O 任 O 芜 B-ORG 湖 M-ORG 新 M-ORG 兴 M-ORG 铸 M-ORG 管 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 4 O 月 O - O 2 O 0 O 1 O 1 O 年 O 5 O 月 O 任 O 芜 B-ORG 湖 M-ORG 新 M-ORG 兴 M-ORG 铸 M-ORG 管 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 4 O 月 O - O 2 O 0 O 0 O 5 O 年 O 7 O 月 O 任 O 芜 B-ORG 湖 M-ORG 新 M-ORG 兴 M-ORG 铸 M-ORG 管 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 7 O 月 O - O 2 O 0 O 0 O 6 O 年 O 1 O 月 O 任 O 芜 B-ORG 湖 M-ORG 新 M-ORG 兴 M-ORG 铸 M-ORG 管 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 2 O 月 O - O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 任 O 芜 B-ORG 湖 M-ORG 新 M-ORG 兴 M-ORG 铸 M-ORG 管 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 起 O 任 O 芜 B-ORG 湖 M-ORG 新 M-ORG 兴 M-ORG 铸 M-ORG 管 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 法 B-TITLE 定 M-TITLE 代 M-TITLE 表 M-TITLE 人 E-TITLE 。 O 杨 B-NAME 志 M-NAME 友 E-NAME , O 男 O , O 大 B-EDU 专 E-EDU , O 党 B-TITLE 员 E-TITLE 。 O 历 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 业 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 合 B-ORG 肥 M-ORG 百 M-ORG 货 M-ORG 大 M-ORG 楼 M-ORG 集 M-ORG 团 M-ORG 商 M-ORG 业 M-ORG 大 M-ORG 厦 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 合 B-ORG 肥 M-ORG 百 M-ORG 货 M-ORG 大 M-ORG 楼 M-ORG 集 M-ORG 团 M-ORG 铜 M-ORG 陵 M-ORG 合 M-ORG 百 M-ORG 商 M-ORG 厦 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 合 B-ORG 肥 M-ORG 百 M-ORG 货 M-ORG 大 M-ORG 楼 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 玉 M-NAME 霞 E-NAME , O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 候 M-TITLE 选 M-TITLE 人 E-TITLE , O 女 O , O 1 O 9 O 7 O 2 O 年 O 7 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 E-EDU , O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG M B-EDU B M-EDU A M-EDU 硕 M-EDU 士 E-EDU 在 O 读 O ( O 正 O 在 O 论 O 文 O 答 O 辩 O 中 O ) O 。 O 现 O 任 O 巨 B-ORG 田 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 1 O 9 O 9 O 3 O 年 O 8 O 月 O - O 1 O 9 O 9 O 7 O 年 O 7 O 月 O 在 O 深 B-ORG 圳 M-ORG 中 M-ORG 诚 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG ( O 后 O 改 O 名 O 同 B-ORG 人 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG ) O 执 B-TITLE 业 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 任 O 职 O 于 O 巨 B-ORG 田 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 O 务 O 部 O 。 O 李 B-NAME 玉 M-NAME 霞 E-NAME 女 O 士 O 在 O 本 B-ORG 公 M-ORG 司 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 东 M-ORG 巨 M-ORG 田 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 因 O 此 O 与 O 本 O 公 O 司 O 控 O 股 O 股 O 东 O 及 O 实 O 际 O 控 O 制 O 人 O 存 O 在 O 关 O 联 O 关 O 系 O ; O 截 O 止 O 2 O 0 O 0 O 7 O 年 O 5 O 月 O 2 O 5 O 日 O , O 李 O 玉 O 霞 O 女 O 士 O 持 O 有 O 中 O 辽 O 国 O 际 O 股 O 票 O 0 O 股 O , O 未 O 受 O 过 O 中 O 国 O 证 O 监 O 会 O 及 O 其 O 他 O 有 O 关 O 部 O 门 O 的 O 处 O 罚 O 和 O 证 O 券 O 游 B-NAME 善 M-NAME 芬 E-NAME 先 O 生 O : O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 三 B-ORG 明 M-ORG 市 M-ORG 天 M-ORG 地 M-ORG 环 M-ORG 保 M-ORG 技 M-ORG 术 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 王 B-NAME 文 M-NAME 杰 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 5 O 7 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 7 O 8 O 年 O - O 1 O 9 O 9 O 0 O 年 O 6 O 月 O 在 O 阳 B-ORG 谷 M-ORG 县 M-ORG 油 M-ORG 棉 M-ORG 二 M-ORG 厂 E-ORG 工 O 作 O , O 1 O 9 O 9 O 0 O 年 O 7 O 月 O - O 1 O 9 O 9 O 1 O 年 O 8 O 月 O 在 O 阳 B-ORG 谷 M-ORG 县 M-ORG 油 M-ORG 棉 M-ORG 六 M-ORG 厂 E-ORG 工 O 作 O , O 1 O 9 O 9 O 1 O 年 O 9 O 月 O - O 1 O 9 O 9 O 4 O 年 O 8 O 月 O 任 O 阳 B-ORG 谷 M-ORG 县 M-ORG 交 M-ORG 通 M-ORG 环 M-ORG 保 M-ORG 设 M-ORG 备 M-ORG 厂 E-ORG 经 B-TITLE 营 M-TITLE 厂 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 4 O 年 O 9 O 月 O - O 2 O 0 O 0 O 0 O 年 O 3 O 月 O 任 O 山 B-ORG 东 M-ORG 阳 M-ORG 谷 M-ORG 华 M-ORG 泰 M-ORG 有 M-ORG 机 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 3 O 月 O - O 2 B-ORG 0 M-ORG 0 M-ORG 9 M-ORG 年 M-ORG 9 M-ORG 月 E-ORG 任 O 山 B-ORG 东 M-ORG 阳 M-ORG 谷 M-ORG 华 M-ORG 泰 M-ORG 化 M-ORG 工 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 起 O , O 任 O 山 B-ORG 东 M-ORG 阳 M-ORG 谷 M-ORG 华 M-ORG 泰 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 1 O 1 O 月 O 起 O 任 O 公 B-ORG 司 M-ORG 全 M-ORG 资 M-ORG 子 M-ORG 公 M-ORG 司 M-ORG 山 M-ORG 东 M-ORG 戴 M-ORG 瑞 M-ORG 克 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 2 O 7 O 日 O 辞 O 去 O 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 孙 B-NAME 喜 M-NAME 田 E-NAME 先 O 生 O , O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 本 B-EDU 科 E-EDU , O 学 B-EDU 士 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 6 O 年 O 3 O 月 O 至 O 1 O 9 O 9 O 7 O 年 O 1 O 1 O 月 O , O 任 O 重 B-ORG 庆 M-ORG 工 M-ORG 业 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 仪 M-ORG 表 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 1 O 1 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 6 O 月 O , O 任 O 重 B-ORG 庆 M-ORG 工 M-ORG 业 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 仪 M-ORG 表 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 1 O 年 O 5 O 月 O , O 任 O 重 B-ORG 庆 M-ORG 工 M-ORG 业 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 仪 M-ORG 表 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 7 O 月 O , O 任 O 中 B-ORG 国 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 控 M-ORG 制 M-ORG 系 M-ORG 统 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O , O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 贸 M-ORG 易 M-ORG 促 M-ORG 进 M-ORG 委 M-ORG 员 M-ORG 会 M-ORG 机 M-ORG 械 M-ORG 行 M-ORG 业 M-ORG 分 M-ORG 会 E-ORG 第 B-TITLE 一 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O 至 O 今 O , O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 贸 M-ORG 易 M-ORG 促 M-ORG 进 M-ORG 委 M-ORG 员 M-ORG 会 M-ORG 机 M-ORG 械 M-ORG 行 M-ORG 业 M-ORG 分 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 商 M-ORG 会 M-ORG 机 M-ORG 械 M-ORG 行 M-ORG 业 M-ORG 商 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 2 O 月 O 任 O 山 B-ORG 东 M-ORG 威 M-ORG 达 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 杨 B-NAME 明 M-NAME 才 E-NAME 先 O 生 O , O 生 O 于 O 1 O 9 O 6 O 7 O 年 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 1 O 9 O 9 O 0 O 年 O 毕 O 业 O 于 O 中 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 法 M-PRO 专 M-PRO 业 E-PRO , O 历 O 任 O 湖 B-ORG 北 M-ORG 凯 M-ORG 乐 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 董 B-TITLE 事 E-TITLE 。 O 丁 B-NAME 吉 E-NAME , O 1 O 9 O 7 O 3 O 年 O 6 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 具 O 有 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 资 O 格 O 、 O 律 B-TITLE 师 E-TITLE 资 O 格 O 。 O 曾 O 任 O 玺 B-ORG 萌 M-ORG 资 M-ORG 产 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 中 M-ORG 心 E-ORG 总 B-TITLE 监 E-TITLE 、 O 玺 B-ORG 萌 M-ORG 嘉 M-ORG 祥 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 格 B-ORG 林 M-ORG 期 M-ORG 货 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 等 O 职 O , O 现 O 任 O 玺 B-ORG 萌 M-ORG 资 M-ORG 产 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 玺 B-ORG 萌 M-ORG 融 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 、 O 北 B-ORG 京 M-ORG 市 M-ORG 中 M-ORG 金 M-ORG 小 M-ORG 额 M-ORG 贷 M-ORG 款 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 凤 B-ORG 山 M-ORG 县 M-ORG 宏 M-ORG 益 M-ORG 矿 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 大 B-ORG 连 M-ORG 华 M-ORG 阳 M-ORG 密 M-ORG 封 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 袁 B-NAME 宏 M-NAME 林 E-NAME 先 O 生 O , O 1 O 9 O 6 O 7 O 年 O 1 O 1 O 月 O 出 O 生 O , O 于 O 二 O 零 O 一 O 三 O 年 O 十 O 一 O 月 O 起 O 担 O 任 O 我 O 们 O 的 O 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 及 O 薪 B-TITLE 酬 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 彼 O 拥 O 有 O 二 O 十 O 多 O 年 O 从 O 事 O 银 O 行 O 业 O 之 O 经 O 验 O 。 O 袁 S-NAME 先 O 生 O 于 O 一 O 九 O 九 O 零 O 年 O 七 O 月 O 毕 O 业 O 于 O 南 B-ORG 京 M-ORG 大 M-ORG 学 E-ORG , O 获 O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 二 O 零 O 零 O 四 O 年 O 七 O 月 O 获 O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 一 O 九 O 九 O 零 O 年 O 八 O 月 O 至 O 二 O 零 O 零 O 零 O 年 O 五 O 月 O , O 就 O 职 O 于 O 中 B-ORG 国 M-ORG 银 M-ORG 行 M-ORG 南 M-ORG 通 M-ORG 分 M-ORG 行 E-ORG , O 先 O 后 O 任 O 如 B-ORG 东 M-ORG 支 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 、 O 分 B-TITLE 行 M-TITLE 信 M-TITLE 贷 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 二 O 零 O 零 O 零 O 年 O 六 O 月 O 至 O 二 O 零 O 零 O 七 O 年 O 八 O 月 O , O 就 O 职 O 于 O 招 B-ORG 商 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 上 M-ORG 海 M-ORG 分 M-ORG 行 E-ORG , O 先 O 后 O 任 O 江 B-ORG 湾 M-ORG 支 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE 、 O 企 B-TITLE 业 M-TITLE 银 M-TITLE 行 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 二 O 零 O 零 O 七 O 年 O 九 O 月 O 至 O 二 O 零 O 一 O 二 O 年 O 九 O 月 O , O 就 O 职 O 于 O 平 B-ORG 安 M-ORG 银 M-ORG 行 E-ORG , O 先 O 后 O 任 O 上 B-ORG 海 M-ORG 分 M-ORG 行 E-ORG 行 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 及 O 副 B-TITLE 行 M-TITLE 长 E-TITLE ( O 负 O 责 O 整 O 体 O 业 O 务 O 营 O 运 O ) O 、 O 企 B-TITLE 业 M-TITLE 银 M-TITLE 行 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 负 O 责 O 中 O 国 O 北 O 区 O 业 O 务 O ; O 二 O 零 O 一 O 二 O 年 O 十 O 月 O 起 O 至 O 今 O , O 任 O 鸿 B-ORG 商 M-ORG 资 M-ORG 本 M-ORG 股 M-ORG 权 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 洛 B-ORG 阳 M-ORG 钼 M-ORG 业 M-ORG 控 M-ORG 股 M-ORG 股 M-ORG 东 M-ORG 鸿 M-ORG 商 M-ORG 产 M-ORG 业 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 的 O 全 O 资 O 附 O 属 O 公 O 司 O ) O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 臧 B-NAME 伟 E-NAME , O 男 O , O 1 O 9 O 6 O 9 O 年 O 1 O 2 O 月 O 生 O , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 1 O 9 O 9 O 7 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 4 O 月 O 在 O 五 B-ORG 院 E-ORG 任 O 国 B-TITLE 际 M-TITLE 经 M-TITLE 贸 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 4 O 月 O 任 O 中 B-ORG 国 M-ORG 航 M-ORG 天 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 历 O 任 O 经 B-TITLE 贸 M-TITLE 合 M-TITLE 作 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 资 B-TITLE 产 M-TITLE 经 M-TITLE 营 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 4 O 月 O 任 O 中 B-ORG 国 M-ORG 天 M-ORG 地 M-ORG 卫 M-ORG 星 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 4 O 月 O 任 O 中 B-ORG 国 M-ORG 天 M-ORG 地 M-ORG 卫 M-ORG 星 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 。 O 张 B-NAME 铭 M-NAME 杰 E-NAME 先 O 生 O : O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 变 M-ORG 压 M-ORG 器 M-ORG 厂 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 上 B-ORG 海 M-ORG 电 M-ORG 压 M-ORG 调 M-ORG 整 M-ORG 器 M-ORG 厂 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 厂 M-TITLE 长 E-TITLE 、 O 代 B-TITLE 厂 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 华 M-ORG 通 M-ORG 开 M-ORG 关 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 输 M-ORG 配 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 电 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 产 B-TITLE 业 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 机 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 常 B-NAME 晓 M-NAME 波 E-NAME 先 O 生 O : O 1 O 9 O 7 O 0 O 年 O 6 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O 。 O 陕 B-ORG 西 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 E-ORG 工 B-PRO 业 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ( O 证 O 券 O 期 O 货 O 相 O 关 O 业 O 务 O 特 O 许 O ) O 。 O 1 O 9 O 9 O 3 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 7 O 年 O 8 O 月 O , O 任 O 中 B-ORG 国 M-ORG 第 M-ORG 十 M-ORG 冶 M-ORG 金 M-ORG 建 M-ORG 设 M-ORG 公 M-ORG 司 E-ORG 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O , O 历 O 任 O 岳 B-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 陕 M-ORG 西 M-ORG 分 M-ORG 所 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 主 B-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 2 O 月 O , O 任 O 中 B-ORG 瑞 M-ORG 岳 M-ORG 华 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 陕 M-ORG 西 M-ORG 分 M-ORG 所 E-ORG 主 B-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 至 O 今 O 为 O 信 B-ORG 永 M-ORG 中 M-ORG 和 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE 。 O 现 O 兼 O 任 O 陕 B-ORG 西 M-ORG 省 M-ORG 注 M-ORG 册 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 陕 B-ORG 西 M-ORG 省 M-ORG 总 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG ( M-ORG 财 M-ORG 务 M-ORG 总 M-ORG 监 M-ORG ) M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 。 O 曾 O 任 O 银 B-ORG 龙 M-ORG 股 M-ORG 份 E-ORG ( O 6 O 0 O 3 O 9 O 6 O 9 O , O 上 O 海 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 任 O 国 B-ORG 际 M-ORG 医 M-ORG 学 E-ORG ( O 0 O 0 O 0 O 5 O 1 O 6 O , O 深 O 圳 O ) O 、 O 森 B-ORG 源 M-ORG 电 M-ORG 气 E-ORG ( O 6 O 0 O 2 O 3 O 5 O 8 O , O 上 O 海 O ) O 、 O 瑞 B-ORG 贝 M-ORG 卡 E-ORG ( O 6 O 0 O 0 O 4 O 3 O 9 O , O 上 O 海 O ) O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 任 O 西 B-ORG 安 M-ORG 宝 M-ORG 德 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 曾 B-NAME 燕 M-NAME 云 E-NAME , O 女 O , O 1 O 9 O 4 O 8 O 年 O 出 O 生 O , O 初 B-EDU 中 M-EDU 学 M-EDU 历 E-EDU , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 1 O 9 O 7 O 8 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O 就 O 职 O 于 O 福 B-ORG 州 M-ORG 元 M-ORG 钉 M-ORG 厂 E-ORG 担 O 任 O 仓 B-TITLE 管 M-TITLE 员 E-TITLE , O 1 O 9 O 9 O 8 O 年 O 至 O 2 O 0 O 0 O 2 O 年 O 就 O 职 O 于 O 福 B-ORG 州 M-ORG 中 M-ORG 能 M-ORG 电 M-ORG 力 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 担 O 任 O 仓 B-TITLE 管 M-TITLE 员 E-TITLE 、 O 出 B-TITLE 纳 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 至 O 今 O 就 O 职 O 于 O 本 B-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 中 B-ORG 能 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 杜 B-NAME 凡 E-NAME 先 O 生 O , O 1 O 9 O 6 O 4 O 年 O 7 O 月 O 出 O 生 O , O 宁 B-ORG 波 M-ORG 华 M-ORG 翔 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 汽 B-PRO 车 M-PRO 专 M-PRO 业 E-PRO 本 B-EDU 科 E-EDU 毕 O 业 O , O 曾 O 任 O 上 B-ORG 海 M-ORG 大 M-ORG 众 M-ORG 汽 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 上 B-ORG 海 M-ORG 通 M-ORG 用 M-ORG 汽 M-ORG 车 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 上 B-ORG 海 M-ORG 岱 M-ORG 美 M-ORG 汽 M-ORG 车 M-ORG 内 M-ORG 饰 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 宁 B-ORG 波 M-ORG 玛 M-ORG 克 M-ORG 特 M-ORG 汽 M-ORG 车 M-ORG 饰 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 郑 B-NAME 杏 M-NAME 建 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 8 O 年 O 3 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 新 B-ORG 疆 M-ORG 国 M-ORG 统 M-ORG 管 M-ORG 道 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 最 O 近 O 5 O 年 O 一 O 直 O 就 O 职 O 于 O 新 B-ORG 疆 M-ORG 国 M-ORG 统 M-ORG 管 M-ORG 道 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 兼 O 任 O 茂 B-ORG 名 M-ORG 市 M-ORG 恒 M-ORG 威 M-ORG 橡 M-ORG 胶 M-ORG 制 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 广 B-ORG 东 M-ORG 省 M-ORG 茂 M-ORG 名 M-ORG 市 M-ORG 茂 M-ORG 南 M-ORG 区 M-ORG 政 M-ORG 协 E-ORG 委 B-TITLE 员 E-TITLE 、 O 全 B-ORG 国 M-ORG 橡 M-ORG 胶 M-ORG 制 M-ORG 品 M-ORG 标 M-ORG 准 M-ORG 化 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE 、 O 中 B-ORG 国 M-ORG 水 M-ORG 泥 M-ORG 制 M-ORG 品 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 控 B-ORG 股 M-ORG 子 M-ORG 公 M-ORG 司 M-ORG 广 M-ORG 东 M-ORG 海 M-ORG 源 M-ORG 管 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 曹 B-NAME 洪 M-NAME 权 E-NAME , O 男 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 毕 O 业 O 于 O 外 B-ORG 经 M-ORG 贸 M-ORG 部 M-ORG 管 M-ORG 理 M-ORG 干 M-ORG 部 M-ORG 学 M-ORG 院 E-ORG , O 国 B-TITLE 际 M-TITLE 商 M-TITLE 务 M-TITLE 师 E-TITLE 。 O 历 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 储 M-ORG 运 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 化 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 风 B-TITLE 险 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 中 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 风 B-TITLE 险 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 明 M-NAME 山 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 3 O 年 O 9 O 月 O 至 O 1 O 9 O 9 O 5 O 年 O 7 O 月 O , O 曾 O 先 O 后 O 担 O 任 O 焦 B-ORG 作 M-ORG 市 M-ORG 化 M-ORG 学 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 业 B-TITLE 务 M-TITLE 员 E-TITLE 、 O 供 B-TITLE 应 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 销 B-TITLE 售 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 等 O 职 O 务 O 。 O 1 O 9 O 9 O 5 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 7 O 月 O 任 O 焦 B-ORG 作 M-ORG 市 M-ORG 化 M-ORG 学 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 采 B-TITLE 购 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 现 O 任 O 佰 B-ORG 利 M-ORG 联 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 何 B-NAME 曲 E-NAME : O 女 O , O 本 B-EDU 科 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 曾 O 任 O 太 B-ORG 极 M-ORG 集 M-ORG 团 M-ORG 四 M-ORG 川 M-ORG 衡 M-ORG 生 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 重 B-ORG 庆 M-ORG 西 M-ORG 部 M-ORG 医 M-ORG 药 M-ORG 商 M-ORG 城 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 重 B-ORG 庆 M-ORG 桐 M-ORG 君 M-ORG 阁 M-ORG 大 M-ORG 药 M-ORG 房 M-ORG 连 M-ORG 锁 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 毛 B-NAME 育 M-NAME 铭 E-NAME , O 男 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 6 O 年 O 从 O 集 B-ORG 美 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 E-ORG 毕 O 业 O 后 O 曾 O 在 O 厦 B-ORG 门 M-ORG 市 M-ORG 路 M-ORG 桥 M-ORG 建 M-ORG 设 M-ORG 投 M-ORG 资 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 O 务 O 部 O 工 O 作 O , O 现 O 在 O 厦 B-ORG 门 M-ORG 路 M-ORG 桥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 O 资 O 管 O 理 O 部 O 任 O 职 O , O 并 O 担 O 任 O 厦 B-ORG 门 M-ORG 路 M-ORG 桥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 职 O 务 O 。 O 丁 B-NAME 安 M-NAME 华 E-NAME 先 O 生 O , O 1 O 9 O 6 O 4 O 年 O 4 O 月 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 香 B-LOC 港 M-LOC 特 M-LOC 别 M-LOC 行 M-LOC 政 M-LOC 区 E-LOC 永 O 久 O 居 O 民 O , O 1 O 9 O 8 O 4 O 年 O 毕 O 业 O 于 O 长 B-ORG 沙 M-ORG 交 M-ORG 通 M-ORG 学 M-ORG 院 E-ORG ( O 现 O 长 B-ORG 沙 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG ) O , O 获 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU ; O 1 O 9 O 8 O 9 O 年 O 毕 O 业 O 于 O 华 B-ORG 南 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG , O 获 O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 担 O 任 O 招 B-ORG 商 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 任 O 招 B-ORG 商 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 经 M-TITLE 济 M-TITLE 学 M-TITLE 家 E-TITLE 。 O 丁 S-NAME 先 O 生 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 兼 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 4 O 月 O , O 兼 O 任 O 招 B-ORG 商 M-ORG 轮 M-ORG 船 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O , O 兼 O 任 O 招 B-ORG 商 M-ORG 银 M-ORG 行 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O , O 任 O 招 B-ORG 商 M-ORG 局 M-ORG 集 M-ORG 团 E-ORG 战 B-TITLE 略 M-TITLE 研 M-TITLE 究 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 3 O 月 O , O 历 O 任 O 招 B-ORG 商 M-ORG 局 M-ORG 集 M-ORG 团 E-ORG 业 B-TITLE 务 M-TITLE 开 M-TITLE 发 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 企 B-TITLE 业 M-TITLE 规 M-TITLE 划 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 1 O 年 O 2 O 月 O , O 任 O 职 O 于 O 加 B-ORG 拿 M-ORG 大 M-ORG 皇 M-ORG 家 M-ORG 银 M-ORG 行 E-ORG ; O 1 O 9 O 9 O 5 O 年 O 1 O 月 O 至 O 1 O 9 O 9 O 8 O 年 O 8 O 月 O , O 任 O 美 B-ORG 资 M-ORG 企 M-ORG 业 E-ORG 高 B-TITLE 级 M-TITLE 管 M-TITLE 理 M-TITLE 人 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 2 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 9 O 4 O 年 O 1 O 2 O 月 O , O 任 O 招 B-ORG 商 M-ORG 局 M-ORG 集 M-ORG 团 E-ORG 研 B-TITLE 究 M-TITLE 部 M-TITLE 主 M-TITLE 任 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE ; O 1 O 9 O 8 O 9 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 1 O 0 O 月 O , O 任 O 华 B-ORG 南 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 讲 B-TITLE 师 E-TITLE ; O 1 O 9 O 8 O 4 O 年 O 8 O 月 O 至 O 1 O 9 O 8 O 6 O 年 O 8 O 月 O , O 任 O 人 B-ORG 民 M-ORG 交 M-ORG 通 M-ORG 出 M-ORG 版 M-ORG 社 E-ORG 编 B-TITLE 辑 E-TITLE 。 O 梁 B-NAME 卓 M-NAME 昭 E-NAME , O 男 O , O 1 O 9 O 5 O 3 O 年 O 8 O 月 O 生 O , O 汉 B-RACE 族 E-RACE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 广 B-ORG 钢 E-ORG 生 B-TITLE 活 M-TITLE 福 M-TITLE 利 M-TITLE 处 M-TITLE 处 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 综 B-ORG 合 M-ORG 饮 M-ORG 食 M-ORG 服 M-ORG 务 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 广 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 广 B-ORG 州 M-ORG 气 M-ORG 体 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 许 B-NAME 红 M-NAME 超 E-NAME : O 1 O 9 O 7 O 0 O 年 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 1 O 9 O 9 O 9 O 年 O 任 O 中 B-ORG 国 M-ORG 核 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 资 M-TITLE 产 M-TITLE 经 M-TITLE 营 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 起 O 任 O 中 B-ORG 国 M-ORG 核 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 政 B-TITLE 研 M-TITLE 体 M-TITLE 改 M-TITLE 部 M-TITLE 处 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 起 O 任 O 中 B-ORG 国 M-ORG 核 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 投 M-TITLE 资 M-TITLE 经 M-TITLE 营 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 。 O 任 O 中 B-ORG 核 M-ORG 苏 M-ORG 阀 M-ORG 科 M-ORG 技 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 郑 B-NAME 志 M-NAME 华 E-NAME 男 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 山 B-ORG 东 M-ORG 菏 M-ORG 泽 M-ORG 供 M-ORG 电 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 山 B-ORG 东 M-ORG 济 M-ORG 南 M-ORG 供 M-ORG 电 M-ORG 局 E-ORG 代 B-TITLE 局 M-TITLE 长 E-TITLE , O 山 B-ORG 东 M-ORG 电 M-ORG 力 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 M-ORG 调 M-ORG 度 M-ORG 所 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 农 B-ORG 村 M-ORG 电 M-ORG 气 M-ORG 化 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 地 B-TITLE 电 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 山 B-ORG 东 M-ORG 电 M-ORG 力 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 山 B-ORG 东 M-ORG 鲁 M-ORG 能 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 山 B-ORG 东 M-ORG 英 M-ORG 大 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 潘 B-NAME 亚 M-NAME 敏 E-NAME , O 女 O , O 1 O 9 O 7 O 6 O 年 O 1 O 0 O 月 O 出 O 生 O , O 浙 B-LOC 江 M-LOC 省 M-LOC 绍 M-LOC 兴 M-LOC 市 M-LOC 人 E-LOC , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 金 M-ORG 昌 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 集 B-ORG 团 E-ORG 营 B-TITLE 销 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 2 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 金 M-ORG 昌 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 2 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 8 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 金 M-ORG 昌 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 2 O 月 O , O 任 O 浙 B-ORG 江 M-ORG 金 M-ORG 昌 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 北 B-ORG 京 M-ORG 兴 M-ORG 业 M-ORG 玉 M-ORG 海 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 3 O 月 O 至 O 今 O , O 任 O 浙 B-ORG 江 M-ORG 金 M-ORG 昌 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 裁 E-TITLE 、 O 北 B-ORG 京 M-ORG 兴 M-ORG 业 M-ORG 玉 M-ORG 海 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 龙 B-NAME 云 M-NAME 刚 E-NAME : O 男 O , O 1 O 9 O 7 O 6 O 年 O 8 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 。 O 毕 O 业 O 于 O 中 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 会 B-PRO 计 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO 。 O 1 O 9 O 9 O 9 O 年 O 7 O 月 O 至 O 今 O 在 O 亚 B-ORG 太 M-ORG 中 M-ORG 汇 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 毛 B-NAME 文 M-NAME 群 E-NAME 先 O 生 O , O 1 O 9 O 7 O 6 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 6 O 年 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 恒 B-ORG 立 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 控 M-ORG 股 M-ORG 子 M-ORG 公 M-ORG 司 M-ORG 岳 M-ORG 阳 M-ORG 恒 M-ORG 生 M-ORG 汽 M-ORG 车 M-ORG 空 M-ORG 调 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE , O 恒 B-ORG 立 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 营 B-TITLE 销 M-TITLE 部 M-TITLE 片 M-TITLE 区 M-TITLE 经 M-TITLE 理 E-TITLE , O 湖 B-ORG 北 M-ORG 美 M-ORG 标 M-ORG 汽 M-ORG 车 M-ORG 制 M-ORG 冷 M-ORG 系 M-ORG 统 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 发 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE , O 现 O 任 O 恒 B-ORG 立 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 李 B-NAME 从 M-NAME 容 E-NAME , O 历 O 任 O 太 B-ORG 原 M-ORG 天 M-ORG 龙 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 针 B-TITLE 纺 M-TITLE 商 M-TITLE 场 M-TITLE 合 M-TITLE 同 M-TITLE 物 M-TITLE 价 M-TITLE 员 E-TITLE 、 O 纺 B-TITLE 织 M-TITLE 商 M-TITLE 场 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 购 B-TITLE 物 M-TITLE 广 M-TITLE 场 M-TITLE 女 M-TITLE 装 M-TITLE 商 M-TITLE 场 M-TITLE 商 M-TITLE 品 M-TITLE 部 M-TITLE 主 M-TITLE 管 E-TITLE 。 O 现 O 任 O 太 B-ORG 原 M-ORG 天 M-ORG 龙 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 购 B-TITLE 物 M-TITLE 广 M-TITLE 场 M-TITLE 男 M-TITLE 装 M-TITLE 商 M-TITLE 场 M-TITLE 商 M-TITLE 品 M-TITLE 部 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 太 B-ORG 原 M-ORG 天 M-ORG 龙 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 罗 B-NAME 凌 E-NAME : O 女 O , O 1 O 9 O 7 O 1 O 年 O 5 O 月 O 出 O 生 O , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 历 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 职 M-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE , O 现 O 任 O 南 B-ORG 京 M-ORG 中 M-ORG 央 M-ORG 商 M-ORG 场 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 职 M-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 王 B-NAME 一 M-NAME 宁 E-NAME , O 男 O , O 1 O 9 O 6 O 0 O 年 O 1 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 正 B-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 担 O 任 O 乐 B-ORG 凯 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 无 O 简 O 历 O 信 O 息 O 段 B-NAME 威 E-NAME , O 男 O , O 1 O 9 O 7 O 5 O 年 O 1 O 0 O 月 O 出 O 生 O , O 法 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 三 M-ORG 鸣 M-ORG 博 M-ORG 雅 M-ORG 装 M-ORG 饰 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 北 B-ORG 京 M-ORG 全 M-ORG 创 M-ORG 通 M-ORG 讯 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 北 B-ORG 京 M-ORG 中 M-ORG 教 M-ORG 大 M-ORG 通 M-ORG 教 M-ORG 育 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 等 O 企 O 业 O 的 O 法 B-TITLE 务 M-TITLE 顾 M-TITLE 问 E-TITLE 、 O 中 B-ORG 央 M-ORG 民 M-ORG 族 M-ORG 法 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 讲 B-TITLE 师 E-TITLE , O 北 B-ORG 京 M-ORG 市 M-ORG 永 M-ORG 邦 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 兼 B-TITLE 职 M-TITLE 律 M-TITLE 师 E-TITLE 。 O 现 O 任 O 中 B-ORG 央 M-ORG 民 M-ORG 族 M-ORG 大 M-ORG 学 M-ORG 法 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 卢 B-NAME 明 E-NAME 先 O 生 O , O 1 O 9 O 5 O 0 O 年 O 1 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 。 O 现 O 任 O 中 B-ORG 国 M-ORG 电 M-ORG 子 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 中 B-ORG 国 M-ORG 长 M-ORG 城 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 长 B-ORG 城 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE 、 O 深 B-ORG 圳 M-ORG 长 M-ORG 城 M-ORG 开 M-ORG 发 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 等 O 。 O 曾 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 6 O 月 O 首 O 次 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 6 O 月 O 换 O 届 O 选 O 举 O 时 O 再 O 次 O 连 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 1 O 1 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 王 B-NAME 伟 M-NAME 东 E-NAME , O 男 O , O 1 O 9 O 7 O 1 O 年 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 6 O 年 O 1 O 月 O - O 2 O 0 O 0 O 9 O 年 O 7 O 月 O , O 任 O 獐 B-ORG 子 M-ORG 岛 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 旅 M-ORG 顺 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 7 O 月 O - O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O , O 任 O 獐 B-ORG 子 M-ORG 岛 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 五 B-TITLE 合 M-TITLE 一 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 月 O - O 2 O 0 O 1 O 2 O 年 O 2 O 月 O , O 任 O 獐 B-ORG 子 M-ORG 岛 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 养 B-TITLE 殖 M-TITLE 事 M-TITLE 业 M-TITLE 四 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 广 B-TITLE 鹿 M-TITLE 分 M-TITLE 公 M-TITLE 司 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 大 B-TITLE 长 M-TITLE 山 M-TITLE 岛 M-TITLE 分 M-TITLE 公 M-TITLE 司 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 2 O 月 O - O 2 O 0 O 1 O 4 O 年 O 6 O 月 O 2 O 2 O 日 O , O 任 O 獐 B-ORG 子 M-ORG 岛 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 安 B-TITLE 全 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 梁 B-NAME 桂 M-NAME 添 E-NAME 先 O 生 O : O 1 O 9 O 6 O 6 O 年 O 出 O 生 O , O M B-EDU B M-EDU A E-EDU , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 1 O 9 O 9 O 8 O 年 O 梁 B-NAME 桂 M-NAME 添 E-NAME 先 O 生 O 与 O 梁 B-NAME 桂 M-NAME 秋 E-NAME 先 O 生 O 一 O 起 O 创 O 立 O 深 B-ORG 圳 M-ORG 市 M-ORG 尚 M-ORG 荣 M-ORG 医 M-ORG 疗 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 尚 M-ORG 荣 M-ORG 医 M-ORG 疗 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 苏 B-ORG 州 M-ORG 吉 M-ORG 美 M-ORG 瑞 M-ORG 医 M-ORG 疗 M-ORG 器 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 尚 M-ORG 荣 M-ORG 医 M-ORG 院 M-ORG 后 M-ORG 勤 M-ORG 物 M-ORG 业 M-ORG 服 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 荣 M-ORG 昶 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 合 B-ORG 肥 M-ORG 普 M-ORG 尔 M-ORG 德 M-ORG 医 M-ORG 疗 M-ORG 用 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 布 M-ORG 兰 M-ORG 登 M-ORG 医 M-ORG 疗 M-ORG 科 M-ORG 技 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 深 B-ORG 圳 M-ORG 市 M-ORG 华 M-ORG 荣 M-ORG 健 M-ORG 康 M-ORG 医 M-ORG 疗 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 和 O 深 B-ORG 圳 M-ORG 市 M-ORG 尚 M-ORG 云 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 高 B-NAME 德 M-NAME 柱 E-NAME 先 O 生 O : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 4 O 0 O 年 O 1 O 月 O 1 O 8 O 日 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 6 O 2 O 年 O 毕 O 业 O 于 O 抚 B-ORG 顺 M-ORG 师 M-ORG 范 M-ORG 学 M-ORG 院 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 享 O 受 O 政 O 府 O 特 O 殊 O 津 O 贴 O 的 O 专 O 家 O , O 历 O 任 O 中 B-ORG 国 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 行 E-ORG 信 B-TITLE 贷 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE O O 、 O 中 B-ORG 国 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 、 O 国 B-ORG 家 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 工 M-ORG 业 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE 、 O 山 B-ORG 东 M-ORG 铝 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 北 B-ORG 京 M-ORG 北 M-ORG 矿 M-ORG 磁 M-ORG 材 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 安 B-ORG 徽 M-ORG 铜 M-ORG 都 M-ORG 铜 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE 、 O 株 B-ORG 洲 M-ORG 冶 M-ORG 炼 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 西 B-ORG 部 M-ORG 矿 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 洛 B-ORG 阳 M-ORG 钼 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 严 B-NAME 志 M-NAME 荣 E-NAME : O 男 O , O 1 O 9 O 7 O 1 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O E B-EDU M M-EDU B M-EDU A E-EDU 在 O 读 O , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 就 O 职 O 于 O 深 B-ORG 圳 M-ORG 市 M-ORG 新 M-ORG 天 M-ORG 下 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 任 O 亚 B-ORG 洲 M-ORG 铝 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 月 O , O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 至 O 今 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 兆 M-ORG 驰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 5 O 年 O 4 O 月 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 兆 M-ORG 驰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 张 B-NAME 嘉 M-NAME 玲 E-NAME , O 女 O , O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 青 M-ORG 山 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 经 O 福 B-ORG 建 M-ORG 东 M-ORG 百 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 O 七 O 届 O 董 O 事 O 会 O 第 O 十 O 二 O 次 O 会 O 议 O 审 O 议 O 通 O 过 O , O 担 O 任 O 福 B-ORG 建 M-ORG 东 M-ORG 百 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 职 O 务 O 。 O 徐 B-NAME 世 M-NAME 森 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE , O 曾 O 任 O 青 B-ORG 海 M-ORG 钾 M-ORG 肥 M-ORG 厂 E-ORG 人 B-TITLE 事 M-TITLE 处 M-TITLE 工 M-TITLE 资 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 青 B-ORG 海 M-ORG 盐 M-ORG 湖 M-ORG 科 M-ORG 技 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 青 B-ORG 海 M-ORG 盐 M-ORG 湖 M-ORG 钾 M-ORG 肥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 林 B-NAME 少 M-NAME 明 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 6 O 5 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O - O 2 O 0 O 0 O 9 O 年 O , O 投 O 资 O 设 O 立 O 源 B-ORG 茗 M-ORG 祥 M-ORG 茶 M-ORG 叶 M-ORG 商 M-ORG 行 E-ORG 从 O 事 O 茶 O 叶 O 批 O 发 O , O 2 O 0 O 0 O 9 O 年 O - O 2 O 0 O 1 O 0 O 年 O , O 任 O 汕 B-ORG 头 M-ORG 市 M-ORG 澄 M-ORG 海 M-ORG 区 M-ORG 源 M-ORG 茗 M-ORG 祥 M-ORG 茶 M-ORG 叶 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 公 B-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 、 M-TITLE 第 M-TITLE 二 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 范 B-NAME 鸿 M-NAME 贤 E-NAME , O 男 O , O 国 B-CONT 籍 M-CONT 马 M-CONT 来 M-CONT 西 M-CONT 亚 E-CONT , O 1 O 9 O 9 O 1 O 年 O 毕 O 业 O 于 O 马 B-ORG 来 M-ORG 西 M-ORG 亚 M-ORG 特 M-ORG 许 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 学 M-ORG 院 E-ORG , O 1 O 9 O 9 O 2 O 年 O 成 O 为 O 马 B-ORG 来 M-ORG 西 M-ORG 亚 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 学 M-ORG 会 E-ORG 专 B-TITLE 业 M-TITLE 会 M-TITLE 员 E-TITLE , O 1 O 9 O 9 O 7 O 年 O 升 O 为 O 高 B-TITLE 级 M-TITLE 会 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 至 O 1 O 9 O 9 O 1 O 年 O 任 O 世 O 界 O 著 O 名 O D B-ORG e M-ORG l M-ORG o M-ORG i M-ORG t M-ORG t M-ORG e M-ORG T M-ORG o M-ORG u M-ORG c M-ORG h M-ORG e M-ORG T M-ORG o M-ORG h M-ORG m M-ORG a M-ORG t M-ORG s M-ORG u M-ORG I M-ORG n M-ORG t M-ORG . E-ORG , O 会 B-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 高 B-TITLE 级 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 金 B-ORG 狮 M-ORG 集 M-ORG 团 E-ORG 摩 B-TITLE 托 M-TITLE 车 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 负 O 责 O 开 O 拓 O 经 O 营 O 在 O 华 O 摩 O 托 O 车 O 及 O 相 O 关 O 零 O 部 O 件 O 事 O 业 O , O 同 O 时 O 担 O 任 O 浙 B-ORG 江 M-ORG 钱 M-ORG 江 M-ORG 摩 M-ORG 托 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 丁 B-NAME 凌 M-NAME 烨 E-NAME : O 女 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 0 O 5 O 年 O 5 O 月 O 至 O 今 O 在 O 华 B-ORG 盛 M-ORG 达 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 企 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 部 E-ORG 工 O 作 O , O 现 O 任 O 企 B-TITLE 业 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 赵 B-NAME 永 M-NAME 宏 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 6 O 年 O 3 O 月 O 出 O 生 O , O 陕 B-LOC 西 M-LOC 礼 M-LOC 泉 M-LOC 县 M-LOC 人 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 毕 O 业 O 于 O 中 B-ORG 南 M-ORG 财 M-ORG 经 M-ORG 政 M-ORG 法 M-ORG 大 M-ORG 学 E-ORG 财 B-TITLE 政 M-TITLE 专 M-TITLE 业 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 1 O 月 O 担 O 任 O 陕 B-ORG 西 M-ORG 秦 M-ORG 丰 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 担 O 任 O 陕 B-ORG 西 M-ORG 秦 M-ORG 丰 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 公 B-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 6 O 月 O 担 O 任 O 陕 B-ORG 西 M-ORG 秦 M-ORG 丰 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 、 O 公 B-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 担 O 任 O 陕 B-ORG 西 M-ORG 秦 M-ORG 丰 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 行 B-TITLE 政 M-TITLE 人 M-TITLE 事 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 公 B-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 担 O 任 O 陕 B-ORG 西 M-ORG 秦 M-ORG 丰 M-ORG 农 M-ORG 业 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 今 O 担 O 任 O 陕 B-ORG 西 M-ORG 延 M-ORG 长 M-ORG 石 M-ORG 油 M-ORG 化 M-ORG 建 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 张 B-NAME 美 M-NAME 文 E-NAME 先 O 生 O , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 4 O 年 O 出 O 生 O , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 5 O 年 O 毕 O 业 O 于 O 四 B-ORG 川 M-ORG 大 M-ORG 学 M-ORG 中 M-ORG 文 M-ORG 系 E-ORG 汉 B-PRO 语 M-PRO 言 M-PRO 文 M-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 获 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 历 O 任 O 福 B-ORG 建 M-ORG 电 M-ORG 子 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 北 B-ORG 京 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 主 B-TITLE 任 E-TITLE 兼 O 华 B-TITLE 北 M-TITLE 销 M-TITLE 售 M-TITLE 区 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 北 B-TITLE 方 M-TITLE 销 M-TITLE 售 M-TITLE 区 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 电 B-TITLE 脑 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 福 B-ORG 州 M-ORG 飞 M-ORG 奇 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 福 B-ORG 建 M-ORG 新 M-ORG 大 M-ORG 陆 M-ORG 电 M-ORG 脑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 行 B-TITLE 政 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 市 B-TITLE 场 M-TITLE 总 M-TITLE 监 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 7 O 月 O , O 就 O 职 O 于 O 厦 B-ORG 门 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 2 O 0 O 0 O 8 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 5 O 月 O , O 任 O 厦 B-ORG 门 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O , O 任 O 福 B-ORG 建 M-ORG 敏 M-ORG 讯 M-ORG 信 M-ORG 息 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 5 O 年 O 3 O 月 O 任 O 厦 B-ORG 门 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 马 B-NAME 国 M-NAME 鑫 E-NAME 先 O 生 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 3 O 年 O 9 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O ; O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 7 O 0 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 杭 B-ORG 州 M-ORG 医 M-ORG 疗 M-ORG 器 M-ORG 械 M-ORG 厂 E-ORG ( O 后 O 改 O 为 O 杭 B-ORG 州 M-ORG 电 M-ORG 冰 M-ORG 箱 M-ORG 总 M-ORG 厂 E-ORG 、 O 杭 B-ORG 州 M-ORG 西 M-ORG 泠 M-ORG 电 M-ORG 器 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ) O 公 B-TITLE 司 M-TITLE ( M-TITLE 党 M-TITLE 委 M-TITLE ) M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 销 B-ORG 售 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE ( O 兼 O 书 B-TITLE 记 E-TITLE ) O , O 浙 B-ORG 江 M-ORG 省 M-ORG 家 M-ORG 电 M-ORG 协 M-ORG 会 E-ORG 家 B-TITLE 电 M-TITLE 行 M-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 省 M-ORG 家 M-ORG 电 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 秘 B-TITLE 书 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE ; O 杭 B-ORG 州 M-ORG 老 M-ORG 板 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 丰 M-NAME 年 E-NAME , O 男 O , O 1 O 9 O 4 O 6 O 年 O 1 O 2 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 国 B-ORG 营 M-ORG 第 M-ORG 4 M-ORG 3 M-ORG 1 M-ORG 0 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 西 B-ORG 安 M-ORG 西 M-ORG 京 M-ORG 电 M-ORG 子 M-ORG 元 M-ORG 器 M-ORG 件 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 电 M-ORG 子 M-ORG 基 M-ORG 础 M-ORG 产 M-ORG 品 M-ORG 装 M-ORG 备 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 电 M-ORG 子 M-ORG 系 M-ORG 统 M-ORG 工 M-ORG 程 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 电 M-ORG 子 M-ORG 信 M-ORG 息 M-ORG 产 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 专 M-TITLE 项 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 、 M-TITLE 三 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 夏 B-ORG 新 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 冯 B-NAME 宝 M-NAME 珊 E-NAME , O 女 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 4 O 月 O 至 O 今 O 在 O 机 B-ORG 械 M-ORG 工 M-ORG 业 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 任 O 规 B-TITLE 划 M-TITLE 与 M-TITLE 市 M-TITLE 场 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 公 B-ORG 司 E-ORG 第 B-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 0 O 年 O 2 O 月 O 4 O 日 O 续 O 任 O 公 B-ORG 司 E-ORG 第 B-TITLE 六 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 兼 O 任 O 安 B-ORG 徽 M-ORG 合 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 及 O 三 B-ORG 一 M-ORG 重 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 许 B-NAME 倩 E-NAME , O 女 O , O 1 O 9 O 7 O 5 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 硕 B-EDU 士 E-EDU 、 O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 浙 B-ORG 江 M-ORG 新 M-ORG 和 M-ORG 成 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 任 O 上 B-ORG 海 M-ORG 立 M-ORG 信 M-ORG 锐 M-ORG 思 M-ORG 信 M-ORG 息 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 合 B-TITLE 伙 M-TITLE 人 E-TITLE , O 兼 O 任 O 杭 B-ORG 州 M-ORG 巨 M-ORG 星 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 南 B-ORG 方 M-ORG 泵 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 吴 B-NAME 胜 M-NAME 军 E-NAME 先 O 生 O : O 1 O 9 O 6 O 0 O 年 O 4 O 月 O 出 O 生 O , O 大 B-EDU 学 E-EDU , O 高 B-TITLE 级 M-TITLE 国 M-TITLE 际 M-TITLE 财 M-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 师 E-TITLE 。 O 历 O 任 O 上 B-ORG 海 M-ORG 新 M-ORG 世 M-ORG 界 M-ORG 投 M-ORG 资 M-ORG 咨 M-ORG 询 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 新 M-ORG 世 M-ORG 界 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 监 E-TITLE ( O 主 O 持 O 工 O 作 O ) O , O 现 O 任 O 上 B-ORG 海 M-ORG 新 M-ORG 世 M-ORG 界 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 龙 B-NAME 凤 M-NAME 鸣 E-NAME , O 女 O , O 汉 B-RACE 族 M-RACE 人 E-RACE , O 1 O 9 O 6 O 8 O 年 O 8 O 月 O 2 O 2 O 日 O 出 O 生 O , O 经 B-PRO 济 M-PRO 管 M-PRO 理 E-PRO 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 注 B-TITLE 册 M-TITLE 纳 M-TITLE 税 M-TITLE 筹 M-TITLE 划 M-TITLE 师 E-TITLE , O 项 B-TITLE 目 M-TITLE 数 M-TITLE 据 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE , O 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 国 M-TITLE 家 M-TITLE 一 M-TITLE 级 E-TITLE , O 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 M-TITLE 国 M-TITLE 际 M-TITLE 最 M-TITLE 高 M-TITLE 级 E-TITLE , O 剑 B-TITLE 桥 M-TITLE C M-TITLE F M-TITLE O E-TITLE , O 现 O 任 O 兰 B-ORG 州 M-ORG 市 M-ORG 政 M-ORG 府 M-ORG 项 M-ORG 目 M-ORG 投 M-ORG 资 M-ORG 评 M-ORG 审 M-ORG 中 M-ORG 心 E-ORG 专 B-TITLE 家 M-TITLE 评 M-TITLE 审 E-TITLE 。 O 经 O 福 B-ORG 建 M-ORG 东 M-ORG 百 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 2 O 0 O 1 O 0 O 年 O 第 O 二 O 次 O 临 O 时 O 股 O 东 O 大 O 会 O 会 O 议 O 审 O 议 O 通 O 过 O , O 开 O 始 O 担 O 任 O 福 B-ORG 建 M-ORG 东 M-ORG 百 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 吴 B-NAME 解 M-NAME 萍 E-NAME , O 女 O , O 1 O 9 O 6 O 7 O 年 O 1 O 1 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 宁 B-ORG 夏 M-ORG 天 M-ORG 净 M-ORG 贺 M-ORG 兰 M-ORG 山 M-ORG 风 M-ORG 力 M-ORG 发 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 宁 B-ORG 夏 M-ORG 发 M-ORG 电 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 M-ORG 贺 M-ORG 兰 M-ORG 山 M-ORG 风 M-ORG 电 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 经 B-TITLE 营 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 贺 B-ORG 兰 M-ORG 山 M-ORG 风 M-ORG 电 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 风 B-TITLE 电 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 宁 B-ORG 夏 M-ORG 新 M-ORG 能 M-ORG 源 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG ( M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG ) E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 银 B-ORG 星 M-ORG 能 M-ORG 源 E-ORG 第 B-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 中 B-ORG 铝 M-ORG 宁 M-ORG 夏 M-ORG 能 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 原 O 宁 B-ORG 夏 M-ORG 发 M-ORG 电 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG ) O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 新 B-TITLE 能 M-TITLE 源 M-TITLE 发 M-TITLE 电 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O C B-TITLE D M-TITLE M M-TITLE 项 M-TITLE 目 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 宁 B-ORG 夏 M-ORG 意 M-ORG 科 M-ORG 太 M-ORG 阳 M-ORG 能 M-ORG 发 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 中 B-ORG 卫 M-ORG 宁 M-ORG 电 M-ORG 新 M-ORG 能 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 银 B-ORG 星 M-ORG 能 M-ORG 源 E-ORG 第 B-TITLE 六 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 张 B-NAME 秀 M-NAME 生 E-NAME 先 O 生 O , O 1 O 9 O 5 O 1 O 年 O 1 O 2 O 月 O 出 O 生 O , O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 武 B-ORG 汉 M-ORG 大 M-ORG 学 M-ORG 发 M-ORG 展 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 3 O 月 O 曾 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O 任 O 武 B-ORG 汉 M-ORG 三 M-ORG 特 M-ORG 索 M-ORG 道 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 吴 B-NAME 国 M-NAME 森 E-NAME 先 O 生 O : O 男 O , O 1 O 9 O 5 O 8 O 年 O 9 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 黄 B-TITLE 冈 M-TITLE 工 M-TITLE 业 M-TITLE 系 M-TITLE 统 M-TITLE 企 M-TITLE 管 M-TITLE 干 M-TITLE 部 E-TITLE 、 O 永 B-ORG 安 M-ORG 有 M-ORG 限 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 担 O 任 O 潜 B-ORG 江 M-ORG 永 M-ORG 安 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 永 B-ORG 安 M-ORG 康 M-ORG 健 M-ORG 药 M-ORG 业 M-ORG ( M-ORG 武 M-ORG 汉 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 宋 B-NAME 学 M-NAME 勇 E-NAME , O 男 O , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 9 O 月 O 进 O 入 O 公 B-ORG 司 E-ORG , O 从 O 事 O 通 O 信 O 及 O 硬 O 件 O 产 O 品 O 开 O 发 O 、 O 系 O 统 O 集 O 成 O 、 O 项 O 目 O 培 O 训 O 、 O 工 O 程 O 及 O 售 O 后 O 技 O 术 O 支 O 持 O 工 O 作 O 。 O 现 O 任 O 四 B-ORG 川 M-ORG 川 M-ORG 大 M-ORG 智 M-ORG 胜 M-ORG 软 M-ORG 件 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 赏 B-NAME 冠 M-NAME 军 E-NAME : O 男 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 公 B-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE , O 现 O 任 O 浙 B-ORG 江 M-ORG 富 M-ORG 润 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 柳 B-NAME 振 M-NAME 江 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 2 O 年 O 出 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 自 O 2 O 0 O 0 O 2 O 年 O 1 O 0 O 月 O 起 O 历 O 任 O 江 B-ORG 苏 M-ORG 通 M-ORG 润 M-ORG 装 M-ORG 备 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 现 O 任 O 江 B-ORG 苏 M-ORG 通 M-ORG 润 M-ORG 装 M-ORG 备 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 兼 O 任 O 常 B-ORG 熟 M-ORG 市 M-ORG 千 M-ORG 斤 M-ORG 顶 M-ORG 厂 E-ORG 董 B-TITLE 事 E-TITLE , O 新 B-ORG 余 M-ORG 新 M-ORG 观 M-ORG 念 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 常 B-ORG 熟 M-ORG 市 M-ORG 通 M-ORG 用 M-ORG 电 M-ORG 器 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 常 B-ORG 熟 M-ORG 通 M-ORG 润 M-ORG 天 M-ORG 狼 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 祥 M-NAME 玉 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 山 B-ORG 东 M-ORG 三 M-ORG 维 M-ORG 石 M-ORG 化 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 叔 M-NAME 良 E-NAME , O 男 O , O 1 O 9 O 4 O 1 O 年 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 毕 O 业 O 于 O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG , O 本 B-EDU 科 E-EDU 、 O 研 B-TITLE 究 M-TITLE 员 E-TITLE 。 O 曾 O 任 O 航 B-ORG 天 M-ORG 部 M-ORG 5 M-ORG 0 M-ORG 8 M-ORG 所 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 科 B-TITLE 技 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 航 B-ORG 天 M-ORG 工 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 审 M-ORG 计 M-ORG 局 E-ORG 审 B-TITLE 计 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 局 M-TITLE 级 M-TITLE 审 M-TITLE 计 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 航 M-ORG 天 M-ORG 机 M-ORG 电 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 清 B-TITLE 理 M-TITLE 整 M-TITLE 顿 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 1 O 1 O 月 O 开 O 始 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 1 O 9 O 9 O 5 O 年 O 获 O 航 O 天 O 工 O 业 O 总 O 公 O 司 O 一 O 等 O 功 O , O 1 O 9 O 9 O 7 O 年 O 获 O 原 O 国 O 防 O 科 O 工 O 委 O 审 O 计 O 系 O 统 O 先 O 进 O 个 O 人 O 。 O 祖 B-NAME 国 E-NAME 先 O 生 O , O 1 O 9 O 7 O 6 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 绵 M-ORG 世 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE , O 现 O 任 O 北 B-ORG 京 M-ORG 绵 M-ORG 世 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 邱 B-NAME 惠 M-NAME 清 E-NAME , O 男 O , O 1 O 9 O 6 O 8 O 年 O 1 O 0 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 2 O 0 O 1 O 4 O 年 O 5 O 月 O 起 O 至 O 今 O 担 O 任 O 金 B-ORG 陵 M-ORG 饭 M-ORG 店 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 江 B-ORG 苏 M-ORG 金 M-ORG 陵 M-ORG 旅 M-ORG 游 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 历 O 任 O 甘 B-ORG 肃 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 投 M-ORG 资 M-ORG 银 M-ORG 行 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 总 M-ORG 部 E-ORG 高 B-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 江 B-ORG 苏 M-ORG 星 M-ORG 盛 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 信 B-ORG 泰 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 银 M-TITLE 行 M-TITLE 部 M-TITLE 主 M-TITLE 管 E-TITLE , O 金 B-ORG 陵 M-ORG 饭 M-ORG 店 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 孙 B-NAME 亚 M-NAME 明 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 8 O 年 O 1 O 月 O 出 O 生 O , O 高 B-PRO 级 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU ( O E B-EDU M M-EDU B M-EDU A E-EDU ) O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 山 B-ORG 煤 M-ORG 国 M-ORG 际 M-ORG 能 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 天 M-ORG 津 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 山 B-ORG 煤 M-ORG 国 M-ORG 际 M-ORG 能 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 秦 M-ORG 皇 M-ORG 岛 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 支 M-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE , O 太 B-ORG 行 M-ORG 海 M-ORG 运 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 山 B-ORG 煤 M-ORG 国 M-ORG 际 M-ORG 能 M-ORG 源 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 葛 B-NAME 晓 M-NAME 智 E-NAME 先 O 生 O : O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 宝 B-ORG 钢 M-ORG 资 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 高 B-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE ( O 资 O 产 O 管 O 理 O ) O , O 现 O 任 O 宝 B-ORG 钢 M-ORG 资 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 郑 B-NAME 世 M-NAME 伟 E-NAME : O 男 O , O 1 O 9 O 5 O 8 O 年 O 生 O , O 现 O 为 O 中 B-ORG 国 M-ORG 资 M-ORG 本 M-ORG ( M-ORG 控 M-ORG 股 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 合 B-TITLE 资 M-TITLE 格 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 及 O 公 B-TITLE 司 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 中 B-ORG 国 M-ORG 资 M-ORG 本 M-ORG ( M-ORG 控 M-ORG 股 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 为 O 在 O 香 B-ORG 港 M-ORG 联 M-ORG 交 M-ORG 所 E-ORG 挂 O 牌 O 之 O 香 O 港 O 上 O 市 O 公 O 司 O 。 O 郑 S-NAME 先 O 生 O 毕 O 业 O 于 O 香 B-ORG 港 M-ORG 中 M-ORG 文 M-ORG 大 M-ORG 学 E-ORG , O 主 O 修 O 会 B-PRO 计 M-PRO 财 M-PRO 务 E-PRO , O 曾 O 先 O 后 O 在 O 香 B-ORG 港 E-ORG 和 O 加 B-ORG 拿 M-ORG 大 E-ORG 担 O 任 O 审 B-TITLE 计 E-TITLE 工 O 作 O , O 拥 O 有 O 丰 O 富 O 相 O 关 O 经 O 验 O 。 O 其 O 后 O 出 O 任 O 多 B-ORG 家 M-ORG 香 M-ORG 港 M-ORG 上 M-ORG 市 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 E-TITLE 要 O 职 O 。 O 郑 S-NAME 先 O 生 O 为 O 香 B-ORG 港 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 公 M-ORG 会 E-ORG 资 B-TITLE 深 M-TITLE 会 M-TITLE 员 E-TITLE 。 O 在 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 管 M-TITLE 理 E-TITLE 、 O 投 O 资 O 范 O 畴 O 及 O 公 O 司 O 秘 O 书 O 服 O 务 O 等 O 方 O 面 O 拥 O 有 O 丰 O 富 O 的 O 管 O 理 O 经 O 验 O 。 O 丁 B-NAME 靖 M-NAME 国 E-NAME , O 男 O , O 1 O 9 O 4 O 9 O 年 O 5 O 月 O 出 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 中 M-ORG 航 M-ORG 地 M-ORG 产 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 曾 O 任 O 西 B-ORG 安 M-ORG 飞 M-ORG 机 M-ORG 工 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 秘 B-TITLE 书 M-TITLE 科 M-TITLE 长 E-TITLE , O 深 B-ORG 圳 M-ORG 中 M-ORG 航 M-ORG 地 M-ORG 产 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 王 B-NAME 北 M-NAME 婴 E-NAME 女 O 士 O 1 O 9 O 5 O 7 O 年 O 出 O 生 O , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 历 O 任 O 国 B-ORG 家 M-ORG 卫 M-ORG 生 M-ORG 部 M-ORG 药 M-ORG 政 M-ORG 局 E-ORG 中 B-TITLE 药 M-TITLE 处 M-TITLE 主 M-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE 、 O 卫 O 生 B-ORG 总 M-ORG 办 M-ORG 公 M-ORG 厅 E-ORG 秘 B-TITLE 书 M-TITLE 处 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 国 B-ORG 家 M-ORG 药 M-ORG 品 M-ORG 审 M-ORG 评 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 国 B-ORG 家 M-ORG 中 M-ORG 医 M-ORG 药 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 应 B-TITLE 用 M-TITLE 研 M-TITLE 究 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 浙 B-ORG 江 M-ORG 康 M-ORG 莱 M-ORG 特 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 中 M-ORG 科 M-ORG 合 M-ORG 臣 M-ORG 化 M-ORG 学 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 国 B-ORG 家 M-ORG 中 M-ORG 医 M-ORG 药 M-ORG 师 M-ORG 管 M-ORG 理 M-ORG 局 M-ORG 中 M-ORG 医 M-ORG 药 M-ORG 师 M-ORG 资 M-ORG 格 M-ORG 认 M-ORG 证 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 吕 B-NAME 厚 M-NAME 军 E-NAME 先 O 生 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 6 O 年 O 迄 O 今 O 历 O 任 O 建 B-ORG 设 M-ORG 银 M-ORG 行 M-ORG 苏 M-ORG 州 M-ORG 分 M-ORG 行 E-ORG 行 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE , O 江 B-ORG 苏 M-ORG 省 M-ORG 分 M-ORG 行 E-ORG 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 建 B-ORG 设 M-ORG 银 M-ORG 行 M-ORG 南 M-ORG 京 M-ORG 分 M-ORG 行 E-ORG 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 海 B-ORG 通 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 银 M-TITLE 行 M-TITLE 总 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 海 B-ORG 通 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 海 B-ORG 富 M-ORG 产 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 南 B-ORG 京 M-ORG 朗 M-ORG 光 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 新 B-ORG 疆 M-ORG 金 M-ORG 风 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 戴 B-NAME 智 E-NAME , O 男 O , O 1 O 9 O 7 O 1 O 年 O 7 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 历 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 机 M-ORG 场 M-ORG 管 M-ORG 理 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 组 M-TITLE 织 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 广 B-ORG 东 M-ORG 民 M-ORG 航 M-ORG 机 M-ORG 场 M-ORG 建 M-ORG 设 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 白 B-ORG 云 M-ORG 机 M-ORG 场 E-ORG 董 B-TITLE 事 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 机 M-ORG 场 M-ORG 管 M-ORG 理 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 白 B-ORG 云 M-ORG 机 M-ORG 场 E-ORG 董 B-TITLE 事 E-TITLE 。 O 谢 B-NAME 东 M-NAME 城 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 5 O 8 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 专 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 现 O 任 O 成 B-ORG 都 M-ORG 天 M-ORG 府 M-ORG 新 M-ORG 城 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 北 B-ORG 京 M-ORG 绵 M-ORG 世 M-ORG 投 M-ORG 资 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 雷 B-NAME 自 M-NAME 力 E-NAME : O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 男 O , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 中 B-ORG 国 M-ORG 航 M-ORG 空 M-ORG 救 M-ORG 生 M-ORG 研 M-ORG 究 M-ORG 所 M-ORG 嘉 M-ORG 利 M-ORG 分 M-ORG 厂 E-ORG 企 B-TITLE 划 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 分 B-ORG 厂 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 北 M-ORG 中 M-ORG 航 M-ORG 精 M-ORG 机 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O , O 现 O 任 O 湖 B-ORG 北 M-ORG 中 M-ORG 航 M-ORG 精 M-ORG 机 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 武 B-ORG 汉 M-ORG 中 M-ORG 航 M-ORG 精 M-ORG 冲 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 苏 B-ORG 州 M-ORG 中 M-ORG 航 M-ORG 中 M-ORG 振 M-ORG 汽 M-ORG 车 M-ORG 饰 M-ORG 件 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 湖 B-ORG 北 M-ORG 航 M-ORG 宇 M-ORG 嘉 M-ORG 泰 M-ORG 飞 M-ORG 机 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 魏 B-NAME 永 M-NAME 新 E-NAME , O 男 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 武 B-ORG 汉 M-ORG 车 M-ORG 站 M-ORG 路 M-ORG 商 M-ORG 场 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 武 B-ORG 汉 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 风 B-ORG 险 M-ORG 投 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 发 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 国 B-ORG 资 M-ORG 公 M-ORG 司 E-ORG 战 B-TITLE 略 M-TITLE 策 M-TITLE 划 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 郭 B-NAME 建 M-NAME 堂 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 任 O 浙 B-ORG 富 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 历 O 任 O 中 B-ORG 国 M-ORG 水 M-ORG 电 M-ORG 第 M-ORG 四 M-ORG 工 M-ORG 程 M-ORG 局 E-ORG 处 B-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 水 M-ORG 电 M-ORG 第 M-ORG 九 M-ORG 工 M-ORG 程 M-ORG 局 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 中 B-ORG 国 M-ORG 水 M-ORG 电 M-ORG 第 M-ORG 四 M-ORG 工 M-ORG 程 M-ORG 局 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 电 B-ORG 力 M-ORG 部 E-ORG ( O 国 B-ORG 家 M-ORG 电 M-ORG 力 M-ORG 公 M-ORG 司 E-ORG ) O 机 B-TITLE 关 M-TITLE 党 M-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 政 B-TITLE 工 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 中 B-ORG 国 M-ORG 水 M-ORG 利 M-ORG 水 M-ORG 电 M-ORG 工 M-ORG 程 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE , O 中 B-ORG 国 M-ORG 水 M-ORG 电 M-ORG 建 M-ORG 设 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 已 O 退 O 休 O , O 受 O 聘 O 为 O 中 B-ORG 国 M-ORG 水 M-ORG 电 M-ORG 建 M-ORG 设 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 顾 B-TITLE 问 E-TITLE 。 O S B-NAME t M-NAME e M-NAME p M-NAME h M-NAME e M-NAME n M-NAME B M-NAME i M-NAME r M-NAME d E-NAME ( O 中 O 文 O 名 O : O 卓 B-NAME 曦 M-NAME 文 E-NAME ) O , O 男 O , O 英 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O M B-EDU B M-EDU A M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 任 O G B-ORG E M-ORG 资 M-ORG 本 E-ORG 在 O 英 O 国 O 的 O 运 B-TITLE 营 M-TITLE 总 M-TITLE 裁 E-TITLE ; O 花 B-ORG 旗 M-ORG 亚 M-ORG 太 M-ORG 区 E-ORG 运 B-TITLE 营 M-TITLE 和 M-TITLE 技 M-TITLE 术 M-TITLE 部 M-TITLE 门 M-TITLE 的 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE ; O 花 B-ORG 旗 M-ORG 拉 M-ORG 美 M-ORG 地 M-ORG 区 E-ORG 运 B-TITLE 营 M-TITLE 和 M-TITLE 技 M-TITLE 术 M-TITLE 部 M-TITLE 门 M-TITLE 的 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE ; O 花 B-ORG 旗 M-ORG 日 M-ORG 本 E-ORG 信 B-TITLE 用 M-TITLE 卡 M-TITLE 和 M-TITLE 消 M-TITLE 费 M-TITLE 金 M-TITLE 融 M-TITLE 业 M-TITLE 务 M-TITLE 的 M-TITLE 首 M-TITLE 席 M-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE ; O 花 B-ORG 旗 M-ORG 集 M-ORG 团 E-ORG 拉 B-TITLE 美 M-TITLE 运 M-TITLE 营 M-TITLE 和 M-TITLE 技 M-TITLE 术 M-TITLE 部 M-TITLE 门 M-TITLE 的 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O , O 花 B-ORG 旗 M-ORG 北 M-ORG 亚 M-ORG 地 M-ORG 区 E-ORG 首 B-TITLE 席 M-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE 、 O 亚 B-TITLE 太 M-TITLE 区 M-TITLE 消 M-TITLE 费 M-TITLE 金 M-TITLE 融 M-TITLE 业 M-TITLE 务 M-TITLE 和 M-TITLE 银 M-TITLE 行 M-TITLE 卡 M-TITLE 业 M-TITLE 务 M-TITLE 总 M-TITLE 裁 E-TITLE ; O 现 O 任 O 亚 B-TITLE 太 M-TITLE 区 M-TITLE 首 M-TITLE 席 M-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE , O 是 O 花 B-ORG 旗 M-ORG 高 M-ORG 级 M-ORG 领 M-ORG 导 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 成 B-TITLE 员 E-TITLE 。 O 张 B-NAME 逢 M-NAME 春 E-NAME 先 O 生 O , O 出 O 生 O 于 O 1 O 9 O 6 O 5 O 年 O 1 O 月 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 拥 O 有 O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 管 B-PRO 理 M-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 和 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 E-ORG 财 B-PRO 务 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 张 S-NAME 先 O 生 O 于 O 1 O 9 O 8 O 7 O 年 O 参 O 加 O 工 O 作 O , O 历 O 任 O 国 B-ORG 务 M-ORG 院 M-ORG 侨 M-ORG 务 M-ORG 办 M-ORG 公 M-ORG 室 M-ORG 行 M-ORG 政 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 港 B-ORG 中 M-ORG 投 E-ORG 董 B-TITLE 事 M-TITLE 局 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 华 B-ORG 贸 M-ORG 有 M-ORG 限 E-ORG 董 B-TITLE 事 E-TITLE , O 香 B-ORG 港 M-ORG 中 M-ORG 旅 M-ORG 金 M-ORG 融 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 港 B-ORG 中 M-ORG 旅 M-ORG 财 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 焦 B-ORG 作 M-ORG 市 M-ORG 商 M-ORG 业 M-ORG 银 M-ORG 行 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 港 B-ORG 中 M-ORG 旅 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 等 O 职 O 务 O 。 O 史 B-NAME 晋 M-NAME 京 E-NAME 先 O 生 O , O 1 O 9 O 6 O 1 O 年 O 出 O 生 O , O 法 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 英 B-TITLE 国 M-TITLE 执 M-TITLE 业 M-TITLE 律 M-TITLE 师 E-TITLE 、 O 香 B-TITLE 港 M-TITLE 执 M-TITLE 业 M-TITLE 律 M-TITLE 师 E-TITLE 。 O 历 O 任 O 司 B-ORG 利 M-ORG 达 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE , O 荷 B-ORG 兰 M-ORG 银 M-ORG 行 E-ORG 董 B-TITLE 事 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 史 S-NAME 先 O 生 O 于 O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 加 O 入 O 瑞 B-ORG 德 M-ORG 银 M-ORG 行 E-ORG , O 主 O 要 O 负 O 责 O 大 O 中 O 国 O 区 O 业 O 务 O 。 O 马 B-NAME 俊 M-NAME 霞 E-NAME , O 女 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 、 O 在 B-EDU 读 M-EDU 硕 M-EDU 士 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 曾 O 任 O 美 B-ORG 的 M-ORG 空 M-ORG 调 M-ORG 事 M-ORG 业 M-ORG 部 M-ORG 海 M-ORG 外 M-ORG 营 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 制 B-ORG 冷 M-ORG 家 M-ORG 电 M-ORG 集 M-ORG 团 E-ORG 家 B-TITLE 用 M-TITLE 空 M-TITLE 调 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 制 B-ORG 冷 M-ORG 家 M-ORG 电 M-ORG 集 M-ORG 团 E-ORG 中 B-TITLE 央 M-TITLE 空 M-TITLE 调 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE 等 O 职 O 。 O 贾 B-NAME 建 M-NAME 军 E-NAME , O 男 O , O 1 O 9 O 6 O 4 O 年 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 新 M-ORG 型 M-ORG 建 M-ORG 筑 M-ORG 材 M-ORG 料 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 中 B-ORG 国 M-ORG 玻 M-ORG 纤 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 陈 B-NAME 方 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 理 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 现 O 任 O 厦 B-ORG 门 M-ORG 象 M-ORG 屿 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 厦 B-ORG 门 M-ORG 象 M-ORG 屿 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 曹 B-NAME 海 M-NAME 燕 E-NAME 女 O 士 O : O 1 O 9 O 7 O 4 O 年 O 0 O 4 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 2 O 0 O 1 O 1 O 年 O 0 O 2 O 月 O 至 O 今 O 任 O 舒 B-ORG 泰 M-ORG 神 M-ORG ( M-ORG 北 M-ORG 京 M-ORG ) M-ORG 生 M-ORG 物 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 现 O 任 O 香 B-ORG 塘 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 苏 B-ORG 州 M-ORG 香 M-ORG 塘 M-ORG 担 M-ORG 保 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 苏 B-ORG 州 M-ORG 香 M-ORG 塘 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 宿 B-ORG 迁 M-ORG 经 M-ORG 济 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 香 M-ORG 塘 M-ORG 农 M-ORG 村 M-ORG 小 M-ORG 额 M-ORG 贷 M-ORG 款 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 李 B-NAME 长 M-NAME 俊 E-NAME , O 历 O 任 O 东 B-ORG 方 M-ORG 锅 M-ORG 炉 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 蛇 B-TITLE 形 M-TITLE 管 M-TITLE 车 M-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 项 B-TITLE 目 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 副 B-TITLE 总 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 现 O 任 O 东 B-ORG 方 M-ORG 锅 M-ORG 炉 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 王 B-NAME 建 M-NAME 华 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 未 O 拥 O 有 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 担 O 任 O 辽 B-ORG 宁 M-ORG 欣 M-ORG 泰 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 至 O 今 O 担 O 任 O 丹 B-ORG 东 M-ORG 欣 M-ORG 泰 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 董 B-TITLE 事 E-TITLE , O 任 O 职 O 期 O 限 O 为 O 2 O 0 O 1 O 3 O 年 O 7 O 月 O - O 2 O 0 O 1 O 6 O 年 O 7 O 月 O 。 O 于 B-NAME 建 M-NAME 全 E-NAME 先 O 生 O , O 历 O 任 O 吉 B-ORG 林 M-ORG 敖 M-ORG 东 M-ORG 药 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 延 B-ORG 边 M-ORG 石 M-ORG 岘 M-ORG 白 M-ORG 麓 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 赵 B-NAME 涛 E-NAME : O 男 O , O 1 O 9 O 7 O 5 O 年 O 出 O 生 O 。 O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 2 O 0 O 0 O 5 O 年 O 至 O 今 O 工 O 作 O 于 O 晨 B-ORG 光 M-ORG 生 M-ORG 物 M-ORG 科 M-ORG 技 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 子 B-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 喻 B-NAME 陆 E-NAME : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 4 O 年 O 1 O 月 O 出 O 生 O , O 博 B-TITLE 士 M-TITLE 后 E-TITLE , O 教 B-TITLE 授 E-TITLE 。 O 现 O 任 O 北 B-ORG 京 M-ORG 三 M-ORG 零 M-ORG 五 M-ORG 医 M-ORG 院 E-ORG 肾 B-TITLE 脏 M-TITLE 病 M-TITLE 血 M-TITLE 液 M-TITLE 净 M-TITLE 化 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 南 B-ORG 方 M-ORG 医 M-ORG 科 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE 等 O 职 O 务 O 。 O 为 O 上 B-ORG 海 M-ORG 莱 M-ORG 士 M-ORG 血 M-ORG 液 M-ORG 制 M-ORG 品 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 李 B-NAME 凤 M-NAME 伟 E-NAME 女 O 士 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 罗 B-ORG 庄 M-ORG 镇 M-ORG 白 M-ORG 瓷 M-ORG 厂 E-ORG 质 B-TITLE 量 M-TITLE 检 M-TITLE 查 M-TITLE 员 E-TITLE 、 O 化 B-TITLE 验 M-TITLE 员 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE 、 O 山 B-ORG 东 M-ORG 华 M-ORG 盛 M-ORG 集 M-ORG 团 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 山 B-ORG 东 M-ORG 江 M-ORG 泉 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 吴 B-NAME 赞 E-NAME 吴 B-NAME 赞 M-NAME 平 E-NAME 先 O 生 O : O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 6 O 4 O 年 O 出 O 生 O , O 大 B-EDU 学 E-EDU 、 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 一 O 九 O 九 O 二 O 年 O 八 O 月 O 加 O 入 O 本 B-ORG 公 M-ORG 司 E-ORG 。 O 吴 S-NAME 先 O 生 O 曾 O 先 O 后 O 担 O 任 O 江 B-ORG 苏 M-ORG 省 M-ORG 高 M-ORG 速 M-ORG 公 M-ORG 路 M-ORG 建 M-ORG 设 M-ORG 指 M-ORG 挥 M-ORG 部 E-ORG 副 B-TITLE 科 M-TITLE 长 E-TITLE 及 O 科 B-TITLE 长 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 程 M-TITLE 技 M-TITLE 术 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 及 O 经 B-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 等 O 职 O 。 O 吴 O 先 O 生 O 从 O 事 O 交 O 通 O 项 O 目 O 管 O 理 O 工 O 作 O 十 O 多 O 年 O 。 O 李 B-NAME 波 E-NAME , O 男 O , O 1 O 9 O 6 O 4 O 年 O 1 O 2 O 月 O 生 O , O 1 O 9 O 8 O 5 O 年 O 原 B-ORG 昆 M-ORG 明 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 地 B-PRO 质 M-PRO 系 M-PRO 矿 M-PRO 产 M-PRO 普 M-PRO 查 M-PRO 与 M-PRO 勘 M-PRO 探 E-PRO 本 B-EDU 科 E-EDU 毕 O 业 O , O 1 O 9 O 9 O 0 O 年 O 获 O 工 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 为 O 昆 B-ORG 明 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 地 B-TITLE 球 M-TITLE 科 M-TITLE 学 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE , O 副 B-TITLE 教 M-TITLE 授 E-TITLE 。 O 主 O 要 O 从 O 事 O 地 O 质 O 专 O 业 O 的 O 教 O 学 O 与 O 科 O 研 O 活 O 动 O , O 曾 O 获 O 得 O 原 O 地 O 质 O 矿 O 产 O 部 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 和 O 原 O 中 O 国 O 有 O 色 O 金 O 属 O 总 O 公 O 司 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 。 O 参 O 与 O 编 O 制 O 的 O 公 O 开 O 出 O 版 O 物 O 《 O 云 O 南 O 省 O 三 O 江 O 并 O 流 O 带 O 旅 O 游 O 地 O 质 O 资 O 源 O 开 O 发 O 与 O 环 O 境 O 保 O 护 O 策 O 略 O 》 O 等 O 。 O 参 O 与 O 共 O 同 O 完 O 成 O 的 O 地 O 质 O 找 O 矿 O 项 O 目 O 6 O 项 O 次 O , O 社 O 会 O 地 O 质 O 服 O 务 O 项 O 目 O 1 O 0 O 余 O 项 O 。 O 周 B-NAME 新 M-NAME 兵 E-NAME , O 男 O , O 1 O 9 O 7 O 6 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 0 O 6 O 年 O 至 O 2 O 0 O 1 O 3 O 年 O 4 O 月 O , O 历 O 任 O 北 B-ORG 京 M-ORG 博 M-ORG 星 M-ORG 投 M-ORG 资 M-ORG 顾 M-ORG 问 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 银 M-TITLE 行 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 川 M-ORG 国 M-ORG 际 M-ORG 矿 M-ORG 业 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 部 M-TITLE 高 M-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE , O 吉 B-ORG 隆 M-ORG 矿 M-ORG 业 M-ORG 证 M-ORG 券 E-ORG 法 B-TITLE 律 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 赤 B-ORG 峰 M-ORG 黄 M-ORG 金 M-ORG 证 M-ORG 券 E-ORG 法 B-TITLE 律 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 4 O 月 O 至 O 今 O 任 O 赤 B-ORG 峰 M-ORG 吉 M-ORG 隆 M-ORG 黄 M-ORG 金 M-ORG 矿 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 李 B-NAME 新 M-NAME 宇 E-NAME : O 男 O , O 1 O 9 O 7 O 0 O 年 O 1 O 0 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 历 O 任 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 工 M-ORG 贸 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 湖 B-ORG 南 M-ORG 华 M-ORG 升 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 肖 B-NAME 寒 M-NAME 梅 E-NAME 女 O 士 O , O 1 O 9 O 6 O 8 O 年 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 民 B-TITLE 主 M-TITLE 党 M-TITLE 派 E-TITLE , O 湖 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 法 M-PRO 专 M-PRO 业 E-PRO 学 B-EDU 士 E-EDU , O 律 B-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 6 O 年 O 到 O 1 O 9 O 9 O 7 O 年 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 金 M-ORG 三 M-ORG 元 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 律 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 到 O 2 O 0 O 0 O 2 O 年 O 任 O 广 B-ORG 东 M-ORG 信 M-ORG 通 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 、 O 合 B-TITLE 伙 M-TITLE 人 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 到 O 2 O 0 O 1 O 2 O 年 O 任 O 广 B-ORG 东 M-ORG 诚 M-ORG 公 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 、 O 合 B-TITLE 伙 M-TITLE 人 E-TITLE ; O 现 O 任 O 广 B-ORG 东 M-ORG 诚 M-ORG 公 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 律 B-TITLE 师 E-TITLE 、 O 主 B-TITLE 任 E-TITLE ; O 西 B-ORG 安 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 深 B-ORG 圳 M-ORG 仲 M-ORG 裁 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 仲 B-TITLE 裁 M-TITLE 员 E-TITLE 。 O 为 O 法 B-TITLE 律 M-TITLE 专 M-TITLE 业 M-TITLE 人 M-TITLE 士 E-TITLE , O 已 O 取 O 得 O 深 O 圳 O 证 O 券 O 交 O 易 O 所 O 颁 O 发 O 的 O 独 O 立 O 董 O 事 O 资 O 格 O 证 O 书 O 。 O 2 O 0 O 1 O 3 O 年 O 0 O 6 O 月 O 0 O 7 O 日 O 至 O 今 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 同 M-ORG 洲 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 彭 B-NAME 纯 E-NAME 先 O 生 O , O 1 O 9 O 6 O 2 O 年 O 1 O 月 O 生 O , O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 行 B-TITLE 长 E-TITLE 。 O 彭 S-NAME 先 O 生 O 2 O 0 O 1 O 3 O 年 O 1 O 1 O 月 O 起 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 1 O 0 O 月 O 起 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 9 O 月 O 任 O 中 B-ORG 国 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 中 B-ORG 央 M-ORG 汇 M-ORG 金 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 4 O 月 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 行 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 9 O 月 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 E-ORG 董 B-TITLE 事 E-TITLE 、 O 行 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 6 O 月 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 E-ORG 行 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 至 O 2 O 0 O 0 O 1 O 年 O 历 O 任 O 交 B-ORG 通 M-ORG 银 M-ORG 行 M-ORG 乌 M-ORG 鲁 M-ORG 木 M-ORG 齐 M-ORG 分 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 、 O 行 B-TITLE 长 E-TITLE , O 南 B-ORG 宁 M-ORG 分 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE , O 广 B-ORG 州 M-ORG 分 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE 。 O 彭 S-NAME 先 O 生 O 于 O 1 O 9 O 8 O 6 O 年 O 获 O 得 O 人 B-ORG 民 M-ORG 银 M-ORG 行 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 部 E-ORG 颁 O 授 O 经 B-PRO 济 M-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 于 O 2 O 0 O 0 O 6 O 年 O 获 O 得 O 华 B-ORG 东 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 E-ORG 颁 O 授 O 经 B-PRO 济 M-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 黄 B-NAME 龙 M-NAME 德 E-NAME 教 B-TITLE 授 E-TITLE , O B B-TITLE . M-TITLE B M-TITLE . M-TITLE S M-TITLE . E-TITLE , O 太 B-TITLE 平 M-TITLE 绅 M-TITLE 士 E-TITLE , O 6 O 6 O 岁 O , O 自 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 2 O 8 O 日 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 黄 B-NAME 教 M-NAME 授 E-NAME 为 O 香 B-TITLE 港 M-TITLE 执 M-TITLE 业 M-TITLE 资 M-TITLE 深 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 特 B-TITLE 许 M-TITLE 秘 M-TITLE 书 E-TITLE 及 O 香 B-TITLE 港 M-TITLE 注 M-TITLE 册 M-TITLE 税 M-TITLE 务 M-TITLE 师 E-TITLE , O 并 O 为 O 黄 B-ORG 龙 M-ORG 德 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 的 O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 他 O 于 O 会 O 计 O 行 O 业 O 拥 O 有 O 逾 O 3 O 0 O 多 O 年 O 经 O 验 O 。 O 黄 B-NAME 教 M-NAME 授 E-NAME 取 O 得 O 商 B-PRO 业 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 获 O 英 B-TITLE 女 M-TITLE 皇 M-TITLE 颁 M-TITLE 授 M-TITLE 荣 M-TITLE 誉 M-TITLE 奖 M-TITLE 章 E-TITLE , O 获 O 香 O 港 O 特 O 别 O 行 O 政 O 区 O 政 O 府 O 委 O 任 O 为 O 太 O 平 O 绅 O 士 O , O 并 O 获 O 香 O 港 O 特 O 别 O 行 O 政 O 区 O 政 O 府 O 颁 O 授 O 铜 O 紫 O 荆 O 星 O 章 O 。 O 黄 B-NAME 教 M-NAME 授 E-NAME 亦 O 于 O 2 O 0 O 0 O 2 O 年 O 起 O 至 O 2 O 0 O 1 O 3 O 年 O 出 O 任 O 香 B-ORG 港 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 及 M-ORG 金 M-ORG 融 M-ORG 学 M-ORG 院 E-ORG 兼 B-TITLE 任 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 黄 B-NAME 教 M-NAME 授 E-NAME 参 O 与 O 多 O 项 O 社 O 区 O 服 O 务 O , O 并 O 于 O 多 O 个 O 官 O 方 O 委 O 员 O 会 O 及 O 志 O 愿 O 机 O 构 O 担 O 任 O 职 O 务 O 。 O 黄 B-NAME 教 M-NAME 授 E-NAME 现 O 为 O 中 B-ORG 国 M-ORG 贵 M-ORG 金 M-ORG 属 M-ORG 资 M-ORG 源 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 渝 M-ORG 置 M-ORG 地 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 银 B-ORG 河 M-ORG 娱 M-ORG 乐 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 奥 B-ORG 思 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 瑞 B-ORG 年 M-ORG 国 M-ORG 际 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 国 M-ORG 油 M-ORG 气 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 国 B-ORG 芸 M-ORG 娱 M-ORG 乐 M-ORG 文 M-ORG 化 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 盈 B-ORG 利 M-ORG 时 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 及 O 怡 B-ORG 益 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 的 O 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 以 O 上 O 公 O 司 O 均 O 于 O 联 O 交 O 所 O 上 O 市 O 。 O 吴 B-NAME 建 M-NAME 敏 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 会 B-PRO 计 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 税 M-TITLE 务 M-TITLE 师 E-TITLE 资 O 格 O , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O 、 O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 资 O 格 O 证 O 书 O 。 O 曾 O 在 O 冶 B-ORG 金 M-ORG 工 M-ORG 业 M-ORG 出 M-ORG 版 M-ORG 社 E-ORG 、 O 审 B-ORG 计 M-ORG 署 M-ORG 驻 M-ORG 冶 M-ORG 金 M-ORG 部 M-ORG 审 M-ORG 计 M-ORG 局 E-ORG 工 O 作 O , O 曾 O 任 O 兴 B-ORG 业 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 现 O 任 O 北 B-ORG 京 M-ORG 天 M-ORG 健 M-ORG 兴 M-ORG 业 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 兼 O 任 O 中 B-ORG 国 M-ORG 证 M-ORG 监 M-ORG 会 E-ORG 并 B-TITLE 购 M-TITLE 重 M-TITLE 组 M-TITLE 审 M-TITLE 核 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 佘 B-NAME 志 M-NAME 莉 E-NAME , O 女 O , O 1 O 9 O 6 O 4 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 3 O 年 O 1 O 2 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 华 B-ORG 北 M-ORG 制 M-ORG 药 M-ORG 厂 M-ORG 财 M-ORG 务 M-ORG 处 E-ORG 会 B-TITLE 计 E-TITLE , O 国 B-ORG 医 M-ORG 药 M-ORG 工 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 农 M-ORG 化 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE , O 任 O 中 B-ORG 国 M-ORG 化 M-ORG 工 M-ORG 农 M-ORG 化 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 任 B-NAME 随 M-NAME 安 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 1 O 1 O 月 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 专 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 0 O 年 O 9 O 月 O 至 O 1 O 9 O 8 O 2 O 年 O 7 O 月 O 在 O 桂 B-ORG 林 M-ORG 航 M-ORG 天 M-ORG 工 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 校 E-ORG 学 O 习 O ; O 2 O 0 O 0 O 7 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 9 O 月 O 任 O 航 B-ORG 天 M-ORG 动 M-ORG 力 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 1 O 4 O 年 O 9 O 月 O 至 O 今 O 任 O 航 B-ORG 天 M-ORG 动 M-ORG 力 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 谭 B-NAME 焕 M-NAME 珠 E-NAME , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 男 O , O 1 O 9 O 6 O 9 O 年 O 3 O 月 O 生 O , O 法 B-PRO 律 E-PRO 硕 B-EDU 士 E-EDU 。 O 具 O 有 O 律 O 师 O 、 O 证 O 券 O 从 O 业 O 人 O 员 O 、 O 独 O 立 O 董 O 事 O 任 O 职 O 资 O 格 O 。 O 曾 O 在 O 北 B-ORG 京 M-ORG 市 M-ORG 工 M-ORG 商 M-ORG 行 M-ORG 政 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 、 O 中 B-ORG 国 M-ORG 证 M-ORG 监 M-ORG 会 M-ORG 发 M-ORG 行 M-ORG 监 M-ORG 管 M-ORG 处 E-ORG 、 O 山 B-ORG 东 M-ORG 证 M-ORG 券 E-ORG ( O 后 O 更 O 名 O 天 B-ORG 同 M-ORG 证 M-ORG 券 E-ORG ) O 投 B-ORG 资 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 部 E-ORG 、 O 北 B-ORG 京 M-ORG 国 M-ORG 方 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 、 O 东 B-ORG 吴 M-ORG 证 M-ORG 券 M-ORG 投 M-ORG 资 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 部 E-ORG 、 O 云 B-ORG 南 M-ORG 文 M-ORG 山 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 天 B-ORG 津 M-ORG 诚 M-ORG 远 M-ORG 投 M-ORG 资 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O 。 O 曾 O 任 O 湖 B-ORG 北 M-ORG 百 M-ORG 科 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 天 B-ORG 津 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 中 B-ORG 科 M-ORG 英 M-ORG 华 M-ORG 高 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 天 B-ORG 津 M-ORG 红 M-ORG 日 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 四 B-ORG 川 M-ORG 广 M-ORG 安 M-ORG 爱 M-ORG 众 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 山 B-ORG 东 M-ORG 施 M-ORG 可 M-ORG 丰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 云 B-ORG 南 M-ORG 绿 M-ORG 大 M-ORG 地 M-ORG 生 M-ORG 物 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 许 B-ORG 昌 M-ORG 传 M-ORG 动 M-ORG 轴 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 濮 B-ORG 阳 M-ORG 蔚 M-ORG 林 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 李 B-NAME 中 E-NAME 先 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 甘 B-ORG 肃 M-ORG 省 M-ORG 金 M-ORG 塔 M-ORG 县 M-ORG 供 M-ORG 销 M-ORG 联 E-ORG 社 B-TITLE 财 M-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 金 B-ORG 塔 M-ORG 县 M-ORG 棉 M-ORG 花 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O 。 O 现 O 任 O 甘 B-ORG 肃 M-ORG 省 M-ORG 敦 M-ORG 煌 M-ORG 种 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 金 M-ORG 塔 M-ORG 县 M-ORG 棉 M-ORG 花 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 。 O 李 B-NAME 滔 E-NAME 先 O 生 O , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU 、 O 高 B-TITLE 级 M-TITLE 程 M-TITLE 序 M-TITLE 员 E-TITLE 已 O 获 O 得 O 董 O 秘 O 资 O 格 O 证 O 书 O 。 O 1 O 9 O 9 O 6 O 年 O 9 O 月 O 至 O 今 O 工 O 作 O 于 O 恒 B-ORG 立 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 O 券 O 部 O 门 O , O 曾 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 处 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 现 O 任 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 徐 B-NAME 开 M-NAME 先 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 4 O 4 O 年 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 沈 B-ORG 阳 M-ORG 仪 M-ORG 器 M-ORG 仪 M-ORG 表 M-ORG 工 M-ORG 艺 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 所 B-TITLE 长 E-TITLE , O 沈 B-ORG 阳 M-ORG 仪 M-ORG 表 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 等 O 职 O 。 O 现 O 任 O 中 B-ORG 国 M-ORG 电 M-ORG 器 M-ORG 科 M-ORG 学 M-ORG 研 M-ORG 究 M-ORG 院 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 周 B-NAME 益 M-NAME 明 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 盛 M-ORG 华 M-ORG 科 M-ORG 源 M-ORG 科 M-ORG 技 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 广 B-ORG 东 M-ORG 金 M-ORG 安 M-ORG 沙 M-ORG 汽 M-ORG 车 M-ORG 科 M-ORG 技 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 明 M-ORG 伦 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 付 B-NAME 瑞 M-NAME 军 E-NAME 女 O 士 O : O 汉 B-RACE 族 E-RACE , O 助 B-TITLE 理 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 毕 O 业 O 于 O 西 B-ORG 安 M-ORG 大 M-ORG 学 E-ORG , O 1 O 9 O 9 O 9 O 年 O 西 B-ORG 安 M-ORG 交 M-ORG 大 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG M B-EDU B M-EDU A M-EDU 进 M-EDU 修 M-EDU 班 E-EDU 毕 O 业 O 。 O 1 O 9 O 8 O 8 O 年 O 9 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 1 O 2 O 月 O 在 O 西 B-ORG 电 M-ORG 公 M-ORG 司 M-ORG 微 M-ORG 电 M-ORG 机 M-ORG 厂 E-ORG 任 O 供 B-TITLE 应 M-TITLE 科 M-TITLE 统 M-TITLE 计 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 3 O 年 O 3 O 月 O 至 O 1 O 9 O 9 O 6 O 年 O 3 O 月 O 在 O 西 B-ORG 安 M-ORG 东 M-ORG 森 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 销 B-TITLE 售 M-TITLE 部 M-TITLE 副 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 6 O 年 O 4 O 月 O 至 O 1 O 9 O 9 O 8 O 年 O 3 O 月 O 担 O 任 O 西 B-ORG 安 M-ORG 海 M-ORG 星 M-ORG 利 M-ORG 达 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 3 O 月 O 至 O 1 O 9 O 9 O 9 O 年 O 1 O 2 O 月 O 担 O 任 O 西 B-ORG 安 M-ORG 海 M-ORG 星 M-ORG 现 M-ORG 代 M-ORG 饮 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 元 O 月 O 至 O 今 O 担 O 任 O 海 B-ORG 星 M-ORG 科 M-ORG 技 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 王 B-NAME 之 M-NAME 钧 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 7 O 3 O 年 O , O 高 B-PRO 级 M-PRO 工 M-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 曾 O 任 O 天 B-ORG 同 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 M-ORG 北 M-ORG 京 M-ORG 投 M-ORG 资 M-ORG 银 M-ORG 行 M-ORG 部 E-ORG 副 B-TITLE 总 E-TITLE , O 同 B-ORG 人 M-ORG 华 M-ORG 塑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 现 O 任 O 同 B-ORG 人 M-ORG 华 M-ORG 塑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 烘 E-NAME , O 男 O , O 1 O 9 O 7 O 8 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 会 B-PRO 计 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 2 O 月 O 任 O 中 B-ORG 国 M-ORG 证 M-ORG 监 M-ORG 会 M-ORG 广 M-ORG 东 M-ORG 监 M-ORG 管 M-ORG 局 E-ORG 科 B-TITLE 员 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 任 O 广 B-ORG 东 M-ORG 信 M-ORG 宁 M-ORG 工 M-ORG 艺 M-ORG 玩 M-ORG 具 M-ORG 厂 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 2 O 月 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 金 M-ORG 融 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 入 O 职 O 公 B-ORG 司 E-ORG 。 O 2 O 0 O 1 O 3 O 年 O 7 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 2 O 0 O 1 O 4 O 年 O 4 O 月 O 至 O 今 O 任 O 众 B-ORG 业 M-ORG 达 M-ORG 电 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 郝 B-NAME 彭 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 9 O 6 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 任 O 本 B-ORG 公 M-ORG 司 M-ORG 经 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 1 O 1 O 月 O 先 O 后 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 综 B-TITLE 合 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 生 B-TITLE 产 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 3 O 年 O 1 O 1 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 1 O 0 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 郝 B-NAME 彭 E-NAME 先 O 生 O 无 O 在 O 股 O 东 O 单 O 位 O 和 O 其 O 他 O 单 O 位 O 任 O 职 O 或 O 兼 O 职 O 的 O 情 O 况 O 。 O 杨 B-NAME 奇 M-NAME 逊 E-NAME 先 O 生 O : O 1 O 9 O 3 O 7 O 年 O 出 O 生 O , O 澳 B-ORG 大 M-ORG 利 M-ORG 亚 M-ORG 新 M-ORG 南 M-ORG 威 M-ORG 尔 M-ORG 士 M-ORG 大 M-ORG 学 E-ORG 博 B-EDU 士 E-EDU , O 中 B-ORG 国 M-ORG 工 M-ORG 程 M-ORG 院 E-ORG 首 O 届 O 院 B-EDU 士 E-EDU , O 我 B-TITLE 国 M-TITLE 第 M-TITLE 一 M-TITLE 台 M-TITLE 微 M-TITLE 机 M-TITLE 保 M-TITLE 护 M-TITLE 研 M-TITLE 制 M-TITLE 者 E-TITLE , O 现 O 任 O 华 B-ORG 北 M-ORG 电 M-ORG 力 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 国 B-ORG 电 M-ORG 南 M-ORG 京 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 玉 E-NAME 女 O 士 O , O 1 O 9 O 7 O 3 O 年 O 4 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 湖 B-ORG 北 M-ORG 大 M-ORG 学 E-ORG , O 武 B-ORG 汉 M-ORG 大 M-ORG 学 E-ORG E B-EDU M M-EDU B M-EDU A E-EDU , O 曾 O 任 O 职 O 于 O 中 B-ORG 外 M-ORG 运 M-ORG 武 M-ORG 汉 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 。 O 1 O 9 O 9 O 8 O 年 O 起 O 进 O 入 O 武 B-ORG 汉 M-ORG 高 M-ORG 德 M-ORG 电 M-ORG 气 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 2 O 0 O 0 O 5 O 年 O 起 O 任 O 公 B-ORG 司 M-ORG ( M-ORG 前 M-ORG 身 M-ORG 红 M-ORG 外 M-ORG 有 M-ORG 限 M-ORG ) E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 为 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 叶 B-NAME 志 M-NAME 超 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 7 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 4 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 4 O 年 O 4 O 月 O 起 O 任 O 广 B-ORG 东 M-ORG 肇 M-ORG 庆 M-ORG 星 M-ORG 湖 M-ORG 生 M-ORG 物 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 王 B-NAME 宛 M-NAME 山 E-NAME , O 男 O , O 1 O 9 O 4 O 6 O 年 O 出 O 生 O , O 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 0 O 年 O 至 O 1 O 9 O 8 O 8 O 年 O 任 O 东 B-ORG 北 M-ORG 工 M-ORG 学 M-ORG 院 M-ORG 机 M-ORG 械 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 教 M-TITLE 授 E-TITLE 、 O 教 B-TITLE 授 E-TITLE , O 1 O 9 O 8 O 8 O 年 O 起 O 历 O 任 O 东 B-ORG 北 M-ORG 大 M-ORG 学 E-ORG 校 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 秘 B-TITLE 书 M-TITLE 长 E-TITLE , O 现 O 任 O 东 B-ORG 北 M-ORG 大 M-ORG 学 E-ORG 副 B-TITLE 校 M-TITLE 长 E-TITLE 。 O 王 B-NAME 黄 M-NAME 来 E-NAME 先 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU ( O M B-EDU B M-EDU A E-EDU ) O , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 国 B-ORG 营 M-ORG 九 M-ORG 四 M-ORG 二 M-ORG 厂 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 马 B-ORG 鞍 M-ORG 山 M-ORG 市 M-ORG 轻 M-ORG 工 M-ORG 总 M-ORG 会 E-ORG 会 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 起 O 任 O 马 B-ORG 鞍 M-ORG 山 M-ORG 市 M-ORG 山 M-ORG 鹰 M-ORG 造 M-ORG 纸 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 马 B-ORG 鞍 M-ORG 山 M-ORG 山 M-ORG 鹰 M-ORG 纸 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 现 O 任 O 马 B-ORG 鞍 M-ORG 山 M-ORG 山 M-ORG 鹰 M-ORG 纸 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 安 B-ORG 徽 M-ORG 山 M-ORG 鹰 M-ORG 纸 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 李 B-NAME 耀 M-NAME 基 E-NAME , O 男 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 2 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 1 O 月 O 任 O 磷 B-ORG 化 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 企 B-TITLE 管 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 任 O 磷 B-ORG 化 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 1 O 月 O 任 O 磷 B-ORG 化 M-ORG 集 M-ORG 团 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 1 O 1 O 月 O 于 O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 任 O 磷 B-ORG 化 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 至 O 今 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 磷 B-ORG 化 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 申 B-NAME 林 E-NAME : O 男 O , O 1 O 9 O 6 O 0 O 年 O 出 O 生 O , O 硕 B-EDU 士 E-EDU , O 副 B-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE , O 曾 O 任 O 黑 B-ORG 龙 M-ORG 江 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 黑 B-ORG 龙 M-ORG 江 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 张 B-NAME 佐 M-NAME 刚 E-NAME , O 男 O , O 1 O 9 O 5 O 9 O 年 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 教 B-TITLE 授 E-TITLE , O 曾 O 任 O 辽 B-ORG 宁 M-ORG 工 M-ORG 程 M-ORG 技 M-ORG 术 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 现 O 任 O 辽 B-ORG 宁 M-ORG 工 M-ORG 程 M-ORG 技 M-ORG 术 M-ORG 大 M-ORG 学 E-ORG 副 B-TITLE 校 M-TITLE 长 E-TITLE 。 O 骆 B-NAME 百 M-NAME 能 E-NAME 先 O 生 O : O 1 O 9 O 6 O 5 O 年 O 5 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 营 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 3 O 月 O 历 O 任 O 中 B-ORG 国 M-ORG 银 M-ORG 行 M-ORG 黄 M-ORG 冈 M-ORG 市 M-ORG 城 M-ORG 区 M-ORG 支 M-ORG 行 E-ORG 会 B-TITLE 计 M-TITLE 员 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 员 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 支 B-TITLE 行 M-TITLE 副 M-TITLE 行 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 银 M-ORG 行 M-ORG 黄 M-ORG 冈 M-ORG 市 M-ORG 分 M-ORG 行 E-ORG 个 B-TITLE 人 M-TITLE 金 M-TITLE 融 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 至 O 今 O , O 任 O 潜 B-ORG 江 M-ORG 永 M-ORG 安 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 翟 B-NAME 凤 M-NAME 银 E-NAME : O 男 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 编 B-TITLE 审 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 现 O 任 O 公 B-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 历 O 任 O 济 B-ORG 南 M-ORG 军 M-ORG 区 E-ORG 排 B-TITLE 长 E-TITLE 、 O 干 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 处 M-TITLE 长 E-TITLE , O 山 B-ORG 东 M-ORG 省 M-ORG 军 M-ORG 区 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 正 B-TITLE 团 M-TITLE 职 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 秘 B-TITLE 书 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 山 B-ORG 东 M-ORG 省 M-ORG 省 M-ORG 委 M-ORG 组 M-ORG 织 M-ORG 部 E-ORG 副 B-TITLE 处 M-TITLE 级 M-TITLE 巡 M-TITLE 视 M-TITLE 员 E-TITLE 、 O 机 B-TITLE 关 M-TITLE 党 M-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 人 B-TITLE 事 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 调 B-TITLE 研 M-TITLE 员 E-TITLE 、 O 电 B-TITLE 教 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 编 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 等 O 职 O 。 O 蒋 B-NAME 涵 M-NAME 庭 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 3 O 9 O 年 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 江 B-ORG 苏 M-ORG 省 M-ORG 农 M-ORG 机 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 省 M-ORG 机 M-ORG 械 M-ORG 工 M-ORG 业 M-ORG 厅 E-ORG 科 B-TITLE 技 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 南 B-ORG 京 M-ORG 第 M-ORG 二 M-ORG 机 M-ORG 床 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 省 M-ORG 机 M-ORG 械 M-ORG 工 M-ORG 业 M-ORG 厅 E-ORG 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 科 B-TITLE 技 M-TITLE 处 M-TITLE 长 E-TITLE 职 O 务 O , O 江 B-ORG 苏 M-ORG 省 M-ORG 机 M-ORG 电 M-ORG 产 M-ORG 品 M-ORG 出 M-ORG 口 M-ORG 办 M-ORG 公 M-ORG 室 E-ORG 专 B-TITLE 职 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 江 B-ORG 苏 M-ORG 省 M-ORG 计 M-ORG 划 M-ORG 经 M-ORG 济 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 机 B-TITLE 电 M-TITLE 产 M-TITLE 品 M-TITLE 进 M-TITLE 出 M-TITLE 口 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ( O 副 O 厅 O 级 O ) O , O 1 O 9 O 9 O 9 O 年 O 9 O 月 O 在 O 江 B-ORG 苏 M-ORG 省 M-ORG 发 M-ORG 展 M-ORG 与 M-ORG 改 M-ORG 革 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 退 O 休 O 。 O 现 O 任 O 江 B-ORG 苏 M-ORG 通 M-ORG 润 M-ORG 装 M-ORG 备 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 贻 M-NAME 贵 E-NAME 先 O 生 O , O 1 O 9 O 6 O 1 O 年 O 参 O 加 O 工 O 作 O , O 先 O 后 O 在 O 龙 B-ORG 坪 M-ORG 供 M-ORG 销 M-ORG 社 E-ORG 和 O 湖 B-ORG 北 M-ORG 省 M-ORG 广 M-ORG 济 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 工 O 作 O , O 曾 O 任 O 湖 B-ORG 北 M-ORG 省 M-ORG 广 M-ORG 济 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE 。 O 现 O 任 O 湖 B-ORG 北 M-ORG 广 M-ORG 济 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 王 B-NAME 宏 M-NAME 军 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 2 O 年 O 9 O 月 O 至 O 1 O 9 O 9 O 5 O 年 O 9 O 月 O 在 O 陕 B-ORG 西 M-ORG 咸 M-ORG 阳 M-ORG 西 M-ORG 藏 M-ORG 民 M-ORG 族 M-ORG 学 M-ORG 院 E-ORG 读 O 书 O ; O 1 O 9 O 9 O 5 O 年 O 9 O 月 O 至 O 今 O 在 O 西 B-ORG 藏 M-ORG 矿 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 公 M-ORG 司 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 现 O 任 O 西 B-ORG 藏 M-ORG 矿 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 薛 B-NAME 玫 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 E-EDU 、 O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 特 M-TITLE 许 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 税 M-TITLE 务 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 咨 M-TITLE 询 M-TITLE ( M-TITLE 投 M-TITLE 资 M-TITLE ) M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 7 O 月 O , O 历 O 任 O 西 B-ORG 安 M-ORG 市 M-ORG 海 M-ORG 洋 M-ORG 针 M-ORG 织 M-ORG 厂 E-ORG 会 B-TITLE 计 E-TITLE 、 O 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 中 B-ORG 天 M-ORG 银 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 陕 M-ORG 西 M-ORG 分 M-ORG 所 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 部 B-TITLE 门 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE 等 O 职 O ; O 2 O 0 O 0 O 8 O 年 O 8 O 月 O 至 O 今 O 任 O 西 B-ORG 安 M-ORG 达 M-ORG 刚 M-ORG 路 M-ORG 面 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 西 B-ORG 安 M-ORG 达 M-ORG 刚 M-ORG 路 M-ORG 面 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 二 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 2 O 月 O 至 O 今 O 任 O 西 B-ORG 安 M-ORG 达 M-ORG 刚 M-ORG 路 M-ORG 面 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 平 E-NAME , O 男 O , O 1 O 9 O 6 O 1 O 年 O 6 O 月 O 出 O 生 O ; O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 7 O 月 O 毕 O 业 O 于 O 北 B-ORG 京 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO ; O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU ; O 工 B-TITLE 程 M-TITLE 师 E-TITLE ; O 1 O 9 O 8 O 3 O 年 O 7 O 月 O ~ O 1 O 9 O 8 O 9 O 年 O 1 O 1 O 月 O , O 在 O 天 B-ORG 津 M-ORG 新 M-ORG 河 M-ORG 船 M-ORG 厂 E-ORG 任 O 技 B-TITLE 术 M-TITLE 员 E-TITLE ; O 1 O 9 O 8 O 9 O 年 O 1 O 1 O 月 O ~ O 1 O 9 O 9 O 7 O 年 O 6 O 月 O 在 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 工 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 工 M-TITLE 资 M-TITLE 处 M-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 7 O 月 O ~ O 1 O 9 O 9 O 9 O 年 O 6 O 月 O 任 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 工 M-ORG 业 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 工 M-TITLE 资 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 9 O 年 O 7 O 月 O ~ O 2 O 0 O 0 O 3 O 年 O 1 O 2 O 月 O 任 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 劳 M-TITLE 动 M-TITLE 工 M-TITLE 资 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 起 O 任 O 沪 B-ORG 东 M-ORG 重 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 王 B-NAME 斌 E-NAME : O 男 O , O 1 O 9 O 6 O 6 O 年 O 生 O , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 8 O 年 O 获 O 上 B-ORG 海 M-ORG 海 M-ORG 事 M-ORG 大 M-ORG 学 E-ORG 财 B-PRO 务 M-PRO 与 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 2 O 0 O 0 O 1 O 年 O 获 O 澳 B-ORG 大 M-ORG 利 M-ORG 亚 M-ORG 梅 M-ORG 铎 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 最 O 近 O 5 O 年 O 以 O 来 O , O 曾 O 任 O 华 B-ORG 孚 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 华 B-ORG 孚 M-ORG 色 M-ORG 纺 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O S O Z O 0 O 0 O 2 O 0 O 4 O 2 O ) O 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 茂 B-ORG 业 M-ORG 国 M-ORG 际 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O H O K O ) O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 首 B-TITLE 席 M-TITLE 财 M-TITLE 务 M-TITLE 官 E-TITLE , O 成 B-ORG 商 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 茂 B-ORG 业 M-ORG 物 M-ORG 流 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O S O Z O 0 O 0 O 0 O 8 O 8 O 9 O ) O 董 B-TITLE 事 E-TITLE , O 沈 B-ORG 阳 M-ORG 商 M-ORG 业 M-ORG 城 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O S O H O 6 O 0 O 0 O 3 O 0 O 6 O ) O 董 B-TITLE 事 E-TITLE 。 O 魏 B-NAME 华 M-NAME 德 E-NAME 先 O 生 O , O 1 O 9 O 5 O 7 O 年 O 出 O 生 O , O 拥 O 有 O 美 B-ORG 国 M-ORG 宾 M-ORG 西 M-ORG 法 M-ORG 尼 M-ORG 亚 M-ORG 州 M-ORG 立 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 程 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 和 O 美 B-ORG 国 M-ORG 匹 M-ORG 兹 M-ORG 堡 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 近 O 五 O 年 O 主 O 要 O 就 O 任 O 福 B-ORG 特 M-ORG 汽 M-ORG 车 M-ORG ( M-ORG 中 M-ORG 国 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 自 O 2 O 0 O 0 O 4 O 年 O 1 O 2 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 周 B-NAME 逸 M-NAME 群 E-NAME 先 O 生 O , O 董 B-TITLE 事 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 0 O 年 O 3 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 在 O 郑 B-ORG 州 M-ORG 畜 M-ORG 牧 M-ORG 工 M-ORG 程 M-ORG 高 M-ORG 等 M-ORG 专 M-ORG 科 M-ORG 学 M-ORG 校 E-ORG 校 O 办 O 产 O 业 O 处 O 工 O 作 O , O 现 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 康 M-ORG 畜 M-ORG 牧 M-ORG 生 M-ORG 物 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 全 O 资 O 子 O 公 O 司 O 河 B-ORG 南 M-ORG 宏 M-ORG 展 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 覃 B-NAME 丽 M-NAME 芳 E-NAME : O 女 O , O 1 O 9 O 7 O 5 O 年 O 5 O 月 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 统 B-TITLE 计 M-TITLE 师 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 3 O 月 O 到 O 广 B-ORG 西 M-ORG 河 M-ORG 池 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 O 券 O 部 O 工 O 作 O , O 2 O 0 O 0 O 3 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 担 O 任 O 广 B-ORG 西 M-ORG 河 M-ORG 池 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 任 O 广 B-ORG 西 M-ORG 河 M-ORG 池 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 至 O 今 O 任 O 广 B-ORG 西 M-ORG 河 M-ORG 池 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 今 O 任 O 广 B-ORG 西 M-ORG 河 M-ORG 池 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 刘 B-NAME 意 E-NAME , O 男 O , O 1 O 9 O 5 O 9 O 年 O 1 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O M B-EDU B M-EDU A M-EDU 硕 M-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 2 O 年 O 加 O 入 O 韶 B-ORG 钢 E-ORG , O 2 O 0 O 0 O 0 O 年 O 7 O 月 O 任 O 广 B-ORG 东 M-ORG 韶 M-ORG 钢 M-ORG 松 M-ORG 山 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 6 O 月 O 任 O 广 B-ORG 东 M-ORG 韶 M-ORG 钢 M-ORG 松 M-ORG 山 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 至 O 今 O 任 O 广 B-ORG 东 M-ORG 韶 M-ORG 钢 M-ORG 松 M-ORG 山 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 至 O 今 O 兼 O 任 O 韶 B-ORG 关 M-ORG 钢 M-ORG 铁 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 祝 B-NAME 鹏 E-NAME 女 O 士 O : O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 曾 O 任 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 4 M-ORG 7 M-ORG 1 M-ORG 厂 E-ORG 总 B-TITLE 部 M-TITLE 财 M-TITLE 务 M-TITLE 处 M-TITLE 主 M-TITLE 办 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 中 B-ORG 国 M-ORG 船 M-ORG 舶 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 武 M-ORG 汉 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 M-TITLE 核 M-TITLE 算 M-TITLE 基 M-TITLE 础 M-TITLE 达 M-TITLE 标 M-TITLE 考 M-TITLE 核 M-TITLE 评 M-TITLE 委 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 公 M-ORG 诚 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 审 B-TITLE 计 M-TITLE 师 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 奥 M-ORG 维 M-ORG 迅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE , O 历 O 任 O 迪 B-ORG 威 M-ORG 有 M-ORG 限 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 经 O 公 B-ORG 司 E-ORG 2 O 0 O 1 O 4 O 年 O 5 O 月 O 3 O 0 O 日 O 召 O 开 O 的 O 第 O 三 O 届 O 董 O 事 O 会 O 第 O 二 O 次 O 会 O 议 O 聘 O 为 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 任 O 期 O 3 O 年 O 。 O 彭 B-NAME 珏 E-NAME , O 女 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 管 B-PRO 理 M-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 会 B-TITLE 计 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 曾 O 任 O 成 B-ORG 都 M-ORG 市 M-ORG 煤 M-ORG 炭 M-ORG 工 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 供 B-TITLE 销 M-TITLE 处 M-TITLE 主 M-TITLE 办 M-TITLE 会 M-TITLE 计 E-TITLE , O 重 B-ORG 庆 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 M-ORG 历 M-ORG 史 M-ORG 系 E-ORG 助 B-TITLE 教 E-TITLE , O 西 B-ORG 南 M-ORG 农 M-ORG 业 M-ORG 大 M-ORG 学 E-ORG ( O 西 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG ) O 讲 B-TITLE 师 E-TITLE 。 O 现 O 任 O 西 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 M-ORG 系 E-ORG 主 B-TITLE 任 E-TITLE , O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 贴 O 获 O 得 O 者 O 。 O 李 B-NAME 跃 M-NAME 军 E-NAME , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 1 O 9 O 6 O 1 O 年 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 7 O 8 O 年 O 参 O 加 O 工 O 作 O , O 先 O 后 O 在 O 乌 B-ORG 溪 M-ORG 江 M-ORG 水 M-ORG 电 M-ORG 厂 E-ORG 生 O 产 O 技 O 术 O 办 O 公 O 室 O 、 O 金 B-ORG 华 M-ORG 市 M-ORG 水 M-ORG 电 M-ORG 局 E-ORG 工 O 程 O 设 O 计 O 与 O 管 O 理 O 部 O 门 O 工 O 作 O , O 曾 O 担 O 任 O 金 B-ORG 华 M-ORG 三 M-ORG 联 M-ORG 水 M-ORG 泥 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 金 B-ORG 华 M-ORG 科 M-ORG 技 M-ORG 园 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 金 B-ORG 正 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 兰 B-ORG 溪 M-ORG 工 M-ORG 业 M-ORG 园 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 等 O 职 O 务 O , O 现 O 任 O 通 B-ORG 和 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 黄 B-NAME 卫 M-NAME 东 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 曾 O 先 O 后 O 任 O 自 B-ORG 治 M-ORG 区 M-ORG 物 M-ORG 资 M-ORG 局 M-ORG 南 M-ORG 疆 M-ORG 综 M-ORG 合 M-ORG 物 M-ORG 资 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 计 M-TITLE 划 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 经 B-TITLE 营 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 新 B-ORG 疆 M-ORG 机 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 新 B-ORG 产 M-ORG 品 M-ORG 经 M-ORG 营 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 、 O 新 B-ORG 疆 M-ORG 机 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 新 B-ORG 疆 M-ORG 机 M-ORG 电 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 新 B-ORG 疆 M-ORG 友 M-ORG 好 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 新 B-ORG 疆 M-ORG 友 M-ORG 好 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 潘 B-NAME 峰 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 材 B-PRO 料 M-PRO 专 M-PRO 业 E-PRO 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 6 O 年 O 7 O 月 O 至 O 今 O , O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 学 M-ORG 与 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG 教 B-TITLE 授 E-TITLE , O 历 O 任 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 学 M-ORG 与 M-ORG 工 M-ORG 程 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 先 B-ORG 进 M-ORG 材 M-ORG 料 M-ORG 教 M-ORG 育 M-ORG 部 M-ORG 重 M-ORG 点 M-ORG 实 M-ORG 验 M-ORG 室 E-ORG 主 B-TITLE 任 E-TITLE 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 航 M-ORG 空 M-ORG 材 M-ORG 料 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 北 B-ORG 京 M-ORG 航 M-ORG 空 M-ORG 永 M-ORG 磁 M-ORG 材 M-ORG 料 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 入 O 选 O 教 B-TITLE 育 M-TITLE 部 M-TITLE 跨 M-TITLE 世 M-TITLE 纪 M-TITLE 人 M-TITLE 才 M-TITLE 计 M-TITLE 划 E-TITLE , O 2 O 0 O 0 O 3 O 年 O 获 O 得 O 国 O 家 O 杰 O 出 O 青 O 年 O 基 O 金 O 支 O 持 O , O 在 O 金 O 属 O 功 O 能 O 材 O 料 O 等 O 方 O 面 O 从 O 事 O 相 O 关 O 研 O 究 O 工 O 作 O 。 O 发 O 表 O 论 O 文 O 百 O 余 O 篇 O , O 4 O 项 O 已 O 授 O 权 O 国 O 家 O 发 O 明 O 专 O 利 O 。 O 获 O 得 O 包 O 括 O 国 O 家 O 技 O 术 O 发 O 明 O 二 O 等 O 奖 O 、 O 国 O 家 O 自 O 然 O 科 O 学 O 三 O 等 O 奖 O 等 O 7 O 项 O 科 O 技 O 成 O 果 O 奖 O 励 O 。 O 李 B-NAME 恩 M-NAME 明 E-NAME , O 男 O , O 1 O 9 O 6 O 8 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 辽 B-ORG 宁 M-ORG 省 M-ORG 财 M-ORG 政 M-ORG 学 M-ORG 校 E-ORG 会 B-PRO 计 M-PRO 专 M-PRO 业 E-PRO 毕 O 业 O , O 历 O 任 O 锦 B-ORG 州 M-ORG 女 M-ORG 儿 M-ORG 河 M-ORG 造 M-ORG 纸 M-ORG 厂 E-ORG 会 B-TITLE 计 E-TITLE 、 O 轻 B-ORG 工 M-ORG 供 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 干 B-TITLE 部 E-TITLE 、 O 锦 B-ORG 州 M-ORG 宝 M-ORG 地 M-ORG 建 M-ORG 设 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 现 O 任 O 宝 B-ORG 地 M-ORG 建 M-ORG 设 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 宝 B-ORG 地 M-ORG 纸 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 锦 B-ORG 州 M-ORG 鑫 M-ORG 天 M-ORG 纸 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 金 B-ORG 城 M-ORG 股 M-ORG 份 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 沈 B-NAME 国 M-NAME 泉 E-NAME : O 男 O , O 1 O 9 O 4 O 6 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 、 O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 现 O 任 O 江 B-ORG 阴 M-ORG 虹 M-ORG 桥 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 主 B-TITLE 任 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 江 B-ORG 南 M-ORG 模 M-ORG 塑 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 0 O 月 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 孔 B-NAME 祥 M-NAME 征 E-NAME : O 男 O , O 历 O 任 O 河 B-ORG 南 M-ORG 豫 M-ORG 光 M-ORG 金 M-ORG 铅 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 河 B-ORG 南 M-ORG 豫 M-ORG 光 M-ORG 金 M-ORG 铅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 科 B-TITLE 技 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE , O 现 O 任 O 河 B-ORG 南 M-ORG 豫 M-ORG 光 M-ORG 金 M-ORG 铅 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 河 B-ORG 南 M-ORG 豫 M-ORG 光 M-ORG 金 M-ORG 铅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 李 B-NAME 跃 M-NAME 昌 E-NAME , O 男 O , O 生 O 于 O 1 O 9 O 5 O 8 O 年 O 1 O 月 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 中 B-ORG 国 M-ORG 乐 M-ORG 凯 M-ORG 胶 M-ORG 片 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 进 B-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 外 B-TITLE 事 M-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 乐 B-ORG 凯 M-ORG 胶 M-ORG 片 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 乐 B-ORG 凯 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 胡 B-NAME 北 M-NAME 忠 E-NAME : O 男 O , O 生 O 于 O 1 O 9 O 6 O 3 O 年 O 1 O 1 O 月 O 7 O 日 O , O 中 B-TITLE 国 M-TITLE 致 M-TITLE 公 M-TITLE 党 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 贵 B-ORG 州 M-ORG 大 M-ORG 学 E-ORG 管 B-TITLE 理 M-TITLE 学 M-TITLE 硕 M-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 贵 B-ORG 州 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 会 B-TITLE 计 M-TITLE 学 M-TITLE 硕 M-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O M B-TITLE B M-TITLE A M-TITLE 硕 M-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 现 O 任 O 贵 B-ORG 州 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 专 B-TITLE 职 M-TITLE 教 M-TITLE 师 E-TITLE , O 中 B-ORG 天 M-ORG 城 M-ORG 投 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 赵 B-NAME 洁 E-NAME 女 O 士 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 华 B-ORG 北 M-ORG 电 M-ORG 力 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 副 B-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 设 B-TITLE 总 E-TITLE 、 O 副 B-TITLE 总 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 。 O 现 O 任 O 电 B-ORG 力 M-ORG 规 M-ORG 划 M-ORG 设 M-ORG 计 M-ORG 总 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 国 B-ORG 电 M-ORG 华 M-ORG 北 M-ORG 电 M-ORG 力 M-ORG 设 M-ORG 计 M-ORG 院 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 本 B-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 罗 B-NAME 祝 M-NAME 平 E-NAME 先 O 生 O , O 报 O 告 O 期 O 内 O 任 O 中 B-ORG 国 M-ORG 东 M-ORG 方 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 罗 S-NAME 先 O 生 O 于 O 1 O 9 O 9 O 8 O 年 O 加 O 入 O 东 B-ORG 航 E-ORG , O 曾 O 任 O 中 B-ORG 国 M-ORG 东 M-ORG 方 M-ORG 航 M-ORG 空 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE 、 O 股 B-TITLE 份 M-TITLE 制 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 一 O 九 O 九 O 六 O 年 O 十 O 二 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O 任 O 中 B-ORG 国 M-ORG 东 M-ORG 方 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 十 O 五 O 年 O 、 O 一 O 九 O 九 O 七 O 年 O 至 O 二 O 〇 O 〇 O 八 O 年 O 兼 O 任 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 6 O 月 O 任 O 中 B-ORG 国 M-ORG 东 M-ORG 方 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 罗 S-NAME 先 O 生 O 自 O 一 O 九 O 九 O 三 O 年 O 起 O 一 O 直 O 负 O 责 O 企 O 业 O 境 O 内 O 外 O 上 O 市 O 和 O 资 O 木 O 运 O 营 O 的 O 相 O 关 O 工 O 作 O , O 在 O 企 O 业 O 改 O 制 O 、 O 股 O 票 O 发 O 行 O 、 O 公 O 司 O 治 O 理 O 、 O 购 O 并 O 重 O 组 O 等 O 提 O 升 O 企 O 业 O 价 O 值 O 的 O 渚 O 多 O 方 O 面 O 有 O 长 O 时 O 间 O 的 O 实 O 践 O 和 O 积 O 累 O 。 O 罗 S-NAME 先 O 生 O 毕 O 业 O 于 O 安 B-ORG 徽 M-ORG 大 M-ORG 学 E-ORG 哲 B-PRO 学 M-PRO 专 M-PRO 业 E-PRO 和 O 法 B-PRO 学 M-PRO 专 M-PRO 业 E-PRO , O 并 O 拥 O 有 O 华 B-ORG 东 M-ORG 师 M-ORG 范 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 学 M-PRO 世 M-PRO 界 M-PRO 经 M-PRO 济 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 曾 O 参 O 加 O 国 B-ORG 家 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 与 O 摩 B-ORG 根 M-ORG 士 M-ORG 丹 M-ORG 利 M-ORG 公 M-ORG 司 E-ORG 在 O 美 O 国 O 举 O 办 O 的 O 国 O 家 O 大 O 型 O 企 O 业 O 高 O 级 O 管 O 理 O 人 O 员 O 培 O 训 O 班 O 。 O 许 B-NAME 秋 M-NAME 华 E-NAME , O 女 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 3 O 年 O 1 O 0 O 月 O 1 O 2 O 日 O 出 O 生 O , O 历 O 任 O 汕 B-ORG 头 M-ORG 经 M-ORG 济 M-ORG 特 M-ORG 区 M-ORG 顺 M-ORG 兴 M-ORG 发 M-ORG 展 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 广 B-ORG 东 M-ORG 皮 M-ORG 宝 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 M-TITLE 主 M-TITLE 管 E-TITLE , O 现 O 任 O 广 B-ORG 东 M-ORG 太 M-ORG 安 M-ORG 堂 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 审 B-TITLE 计 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 荣 M-NAME 秋 E-NAME , O 男 O , O 6 O 3 O 岁 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 教 B-TITLE 授 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 历 O 任 O 四 B-ORG 川 M-ORG 自 M-ORG 贡 M-ORG 东 M-ORG 方 M-ORG 锅 M-ORG 炉 M-ORG 厂 E-ORG 员 B-TITLE 工 E-TITLE , O 华 B-ORG 中 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 师 E-TITLE 。 O 现 O 任 O 华 B-ORG 中 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 陈 B-NAME 荣 M-NAME 秋 E-NAME 先 O 生 O 受 O 聘 O 兼 O 任 O 湖 B-ORG 北 M-ORG 省 M-ORG 政 M-ORG 府 E-ORG 咨 B-TITLE 询 M-TITLE 委 M-TITLE 员 E-TITLE , O 武 B-ORG 汉 M-ORG 市 M-ORG 政 M-ORG 府 E-ORG 决 B-TITLE 策 M-TITLE 咨 M-TITLE 询 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 张 B-NAME 英 M-NAME 惠 E-NAME : O 女 O , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ( O 非 O 执 O 业 O ) O 。 O 1 O 9 O 6 O 7 O 年 O 毕 O 业 O 于 O 辽 B-ORG 宁 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 M-ORG 计 M-ORG 统 M-ORG 系 E-ORG , O 分 O 配 O 到 O 辽 B-ORG 宁 M-ORG 省 M-ORG 盘 M-ORG 锦 M-ORG 地 M-ORG 区 M-ORG 供 M-ORG 销 M-ORG 社 E-ORG 从 O 事 O 计 O 划 O 、 O 财 O 务 O 等 O 工 O 作 O , O 1 O 9 O 8 O 1 O 年 O 后 O 任 O 辽 B-PRO 宁 M-PRO 省 M-PRO 丹 M-PRO 东 M-PRO 市 M-PRO 物 M-PRO 价 M-PRO 局 E-PRO 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 局 B-TITLE 长 E-TITLE , O 1 O 9 O 9 O 0 O 年 O 1 O 月 O 任 O 辽 B-TITLE 宁 M-TITLE 省 M-TITLE 丹 M-TITLE 东 M-TITLE 市 M-TITLE 副 M-TITLE 市 M-TITLE 长 E-TITLE , O 1 O 9 O 9 O 2 O 年 O 7 O 月 O 任 O 国 B-ORG 家 M-ORG 税 M-ORG 务 M-ORG 总 M-ORG 局 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 国 B-ORG 务 M-ORG 院 M-ORG 派 M-ORG 驻 M-ORG 国 M-ORG 有 M-ORG 重 M-ORG 点 M-ORG 大 M-ORG 型 M-ORG 企 M-ORG 业 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 1 O 2 O 月 O 卸 O 任 O 。 O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 今 O , O 任 O 中 B-ORG 国 M-ORG 税 M-ORG 务 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 4 O 月 O , O 任 O 四 B-ORG 川 M-ORG 岷 M-ORG 江 M-ORG 水 M-ORG 利 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 1 O 2 O 月 O , O 任 O 华 B-ORG 联 M-ORG 控 M-ORG 股 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 曹 B-NAME 润 M-NAME 珊 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 毕 O 业 O 于 O 四 B-ORG 川 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 江 B-ORG 南 M-ORG 机 M-ORG 器 M-ORG 厂 E-ORG 劳 B-TITLE 资 M-TITLE 综 M-TITLE 合 M-TITLE 管 M-TITLE 理 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 中 B-ORG 国 M-ORG 兵 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 标 M-ORG 准 M-ORG 化 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 劳 B-TITLE 动 M-TITLE 标 M-TITLE 准 M-TITLE 研 M-TITLE 究 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE , O 中 B-ORG 国 M-ORG 兵 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 二 B-TITLE 级 M-TITLE 业 M-TITLE 务 M-TITLE 主 M-TITLE 管 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 兵 M-ORG 器 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 黄 B-NAME 宁 M-NAME 宅 E-NAME : O 男 O , O 生 O 于 O 1 O 9 O 6 O 9 O 年 O , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 兼 O 任 O 东 B-ORG 信 M-ORG 和 M-ORG 平 M-ORG 智 M-ORG 能 M-ORG 卡 M-ORG ( M-ORG 新 M-ORG 加 M-ORG 坡 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 杭 B-ORG 州 M-ORG 东 M-ORG 信 M-ORG 百 M-ORG 丰 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 公 B-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 曾 O 任 O 杭 B-ORG 州 M-ORG 通 M-ORG 信 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 东 M-ORG 信 M-ORG 和 M-ORG 平 M-ORG 智 M-ORG 能 M-ORG 卡 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 艺 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 普 B-ORG 天 M-ORG 东 M-ORG 方 M-ORG 通 M-ORG 信 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 东 B-ORG 信 M-ORG 和 M-ORG 平 M-ORG 智 M-ORG 能 M-ORG 卡 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 等 O 职 O 。 O 张 B-NAME 秋 M-NAME 贵 E-NAME 先 O 生 O : O 1 O 9 O 7 O 1 O 年 O 生 O , O 浙 B-LOC 江 M-LOC 兰 M-LOC 溪 M-LOC 人 E-LOC , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O M B-EDU B M-EDU A E-EDU 。 O 历 O 任 O 浙 B-ORG 江 M-ORG 企 M-ORG 成 M-ORG 机 M-ORG 电 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 浙 B-ORG 江 M-ORG 企 M-ORG 成 M-ORG 机 M-ORG 电 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 M-ORG 齿 M-ORG 轮 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 质 M-TITLE 量 M-TITLE 主 M-TITLE 管 E-TITLE ; O 金 B-ORG 华 M-ORG 市 M-ORG 清 M-ORG 华 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 变 B-ORG 速 M-ORG 器 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 市 B-TITLE 场 M-TITLE 开 M-TITLE 发 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 发 B-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE ; O 浙 B-ORG 江 M-ORG 万 M-ORG 里 M-ORG 扬 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 发 B-TITLE 展 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 销 B-ORG 售 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 E-TITLE ; O 浙 B-ORG 江 M-ORG 万 M-ORG 里 M-ORG 扬 M-ORG 变 M-ORG 速 M-ORG 器 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 销 B-ORG 售 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 万 M-ORG 里 M-ORG 扬 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 金 B-ORG 华 M-ORG 万 M-ORG 里 M-ORG 扬 E-ORG 监 B-TITLE 事 E-TITLE 。 O 陆 B-NAME 治 M-NAME 明 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 4 O 2 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 波 M-ORG 轮 M-ORG 船 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 上 M-ORG 海 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 波 M-ORG 兰 M-ORG 高 M-ORG 登 M-ORG 尼 M-ORG 亚 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 远 M-ORG 洋 M-ORG 运 M-ORG 输 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-ORG 远 M-ORG ( M-ORG 香 M-ORG 港 M-ORG ) M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 中 B-ORG 远 M-ORG ( M-ORG 新 M-ORG 加 M-ORG 坡 M-ORG ) M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ( O 新 O 加 O 坡 O 上 O 市 O 公 O 司 O ) O , O 中 B-ORG 远 M-ORG 太 M-ORG 平 M-ORG 洋 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ( O 香 O 港 O 上 O 市 O 代 O 码 O 1 O 1 O 9 O 9 O ) O , O 中 B-ORG 远 M-ORG 国 M-ORG 际 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ( O 香 O 港 O 上 O 市 O 代 O 码 O 5 O 1 O 7 O ) O 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 兰 M-ORG 生 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 6 O 0 O 0 O 8 O 2 O 6 O ) O 、 O 招 B-ORG 商 M-ORG 局 M-ORG 能 M-ORG 源 M-ORG 运 M-ORG 输 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 、 M-TITLE 第 M-TITLE 二 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 华 B-ORG 鑫 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 谈 B-NAME 锋 E-NAME , O 1 O 9 O 4 O 6 O 年 O , O 男 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 主 B-TITLE 任 M-TITLE 编 M-TITLE 辑 E-TITLE , O 曾 O 任 O 职 O 于 O 北 B-ORG 京 M-ORG 外 M-ORG 文 M-ORG 出 M-ORG 版 M-ORG 社 E-ORG 、 O 中 B-ORG 共 M-ORG 中 M-ORG 央 M-ORG 联 M-ORG 络 M-ORG 部 M-ORG 亚 M-ORG 洲 M-ORG 局 E-ORG , O 历 O 任 O 人 B-ORG 民 M-ORG 日 M-ORG 报 E-ORG 国 B-TITLE 际 M-TITLE 部 M-TITLE 编 M-TITLE 辑 E-TITLE 、 O 主 B-TITLE 编 E-TITLE 、 O 四 B-ORG 通 M-ORG 集 M-ORG 团 E-ORG 总 B-TITLE 裁 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 美 B-ORG 国 M-ORG 四 M-ORG 通 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 、 O 集 B-ORG 团 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 集 B-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 等 O 职 O 。 O 闻 B-NAME 建 M-NAME 中 E-NAME , O 女 O , O 1 O 9 O 5 O 5 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 上 B-ORG 海 M-ORG 科 M-ORG 技 M-ORG 五 M-ORG 七 M-ORG 干 M-ORG 校 E-ORG 教 B-TITLE 员 E-TITLE 、 O 7 B-ORG 1 M-ORG 1 M-ORG 所 E-ORG 人 B-TITLE 事 M-TITLE 教 M-TITLE 育 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE ; O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 李 B-NAME 宏 E-NAME , O 男 O , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 本 B-EDU 科 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 荣 O 获 O 2 O 0 O 0 O 6 O 年 O 上 O 海 O 市 O 节 O 能 O 先 O 进 O 个 O 人 O 。 O 2 O 0 O 0 O 4 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 6 O 年 O 1 O 2 O 月 O , O 先 O 后 O 担 O 任 O 上 B-ORG 海 M-ORG 普 M-ORG 利 M-ORG 特 M-ORG 复 M-ORG 合 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 质 B-TITLE 量 M-TITLE 保 M-TITLE 证 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 生 B-TITLE 产 M-TITLE 制 M-TITLE 造 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 等 O 职 O , O 2 O 0 O 0 O 7 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 7 O 月 O , O 担 O 任 O 上 B-ORG 海 M-ORG 普 M-ORG 利 M-ORG 特 M-ORG 复 M-ORG 合 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 制 B-TITLE 造 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 监 E-TITLE 兼 O 生 B-TITLE 产 M-TITLE 制 M-TITLE 造 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 普 M-ORG 利 M-ORG 特 M-ORG 复 M-ORG 合 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 黎 B-NAME 燕 M-NAME 红 E-NAME , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 于 O 1 O 9 O 9 O 7 O 年 O 毕 O 业 O 于 O 深 B-ORG 圳 M-ORG 大 M-ORG 学 E-ORG , O 获 O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 曾 O 于 O 深 B-ORG 圳 M-ORG 华 M-ORG 润 M-ORG 超 M-ORG 级 M-ORG 市 M-ORG 场 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 财 B-TITLE 务 M-TITLE 主 M-TITLE 办 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 华 M-ORG 特 M-ORG 容 M-ORG 器 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 财 B-TITLE 务 M-TITLE 主 M-TITLE 办 E-TITLE 以 O 及 O 深 B-ORG 圳 M-ORG 市 M-ORG 华 M-ORG 特 M-ORG 容 M-ORG 器 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 起 O 加 O 入 O 深 B-ORG 圳 M-ORG 中 M-ORG 青 M-ORG 宝 M-ORG 互 M-ORG 动 M-ORG 网 M-ORG 络 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 现 O 任 O 深 B-ORG 圳 M-ORG 中 M-ORG 青 M-ORG 宝 M-ORG 互 M-ORG 动 M-ORG 网 M-ORG 络 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 郁 B-NAME 武 M-NAME 铮 E-NAME 先 O 生 O , O 1 O 9 O 6 O 8 O 年 O 3 O 月 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 籍 O 贯 O 浙 B-LOC 江 M-LOC 宁 M-LOC 波 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 9 O 0 O 年 O 7 O 月 O 工 O 作 O , O 现 O 任 O 宁 B-ORG 波 M-ORG 建 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 宁 B-ORG 波 M-ORG 建 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 第 M-ORG 五 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 。 O 工 O 作 O 经 O 历 O , O 宁 B-ORG 波 M-ORG 市 M-ORG 建 M-ORG 筑 M-ORG 安 M-ORG 装 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 工 M-TITLE 程 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 施 M-TITLE 工 M-TITLE 员 E-TITLE 、 O 主 B-TITLE 施 M-TITLE 工 E-TITLE ; O 宁 B-ORG 波 M-ORG 市 M-ORG 建 M-ORG 筑 M-ORG 安 M-ORG 装 M-ORG 集 M-ORG 团 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 第 M-ORG 一 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE ; O 宁 B-ORG 波 M-ORG 建 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 第 M-ORG 一 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE ; O 宁 B-ORG 波 M-ORG 建 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 工 M-ORG 程 M-ORG 建 M-ORG 设 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 第 M-ORG 五 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE ; O 宁 B-ORG 波 M-ORG 建 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 第 B-ORG 五 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE 。 O 宁 B-ORG 波 M-ORG 大 M-ORG 学 M-ORG 建 M-ORG 筑 M-ORG 工 M-ORG 程 M-ORG 与 M-ORG 环 M-ORG 境 M-ORG 学 M-ORG 院 E-ORG 研 B-TITLE 究 M-TITLE 生 E-TITLE 兼 O 职 O 导 B-TITLE 师 E-TITLE 。 O 何 B-NAME 三 M-NAME 星 E-NAME 先 O 生 O , O 董 B-TITLE 事 E-TITLE , O 1 O 9 O 6 O 3 O 年 O 2 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 就 O 职 O 于 O 岳 B-ORG 阳 M-ORG 县 M-ORG 卫 M-ORG 生 M-ORG 局 E-ORG , O 湖 B-ORG 南 M-ORG 省 M-ORG 卫 M-ORG 生 M-ORG 厅 M-ORG 卫 M-ORG 生 M-ORG 政 M-ORG 策 M-ORG 杂 M-ORG 志 M-ORG 社 E-ORG , O 湖 B-ORG 南 M-ORG 省 M-ORG 医 M-ORG 药 M-ORG 开 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 。 O 曾 O 任 O 湖 B-ORG 南 M-ORG 汉 M-ORG 森 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 湖 B-ORG 南 M-ORG 汉 M-ORG 森 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 王 B-NAME 贵 M-NAME 生 E-NAME , O 男 O , O 汉 S-RACE , O 1 O 9 O 5 O 6 O 年 O 1 O 月 O 6 O 日 O 出 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 4 O 年 O 7 O 月 O 至 O 1 O 9 O 7 O 7 O 年 O 9 O 月 O 在 O 新 B-ORG 疆 M-ORG 库 M-ORG 车 M-ORG 县 M-ORG 气 M-ORG 象 M-ORG 站 E-ORG 工 O 作 O , O 1 O 9 O 7 O 7 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 8 O 1 O 年 O 4 O 月 O 在 O 阿 B-ORG 里 M-ORG 军 M-ORG 分 M-ORG 区 E-ORG 服 O 兵 O 役 O , O 1 O 9 O 8 O 1 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 1 O 2 O 月 O 曾 O 先 O 后 O 担 O 任 O 新 B-ORG 疆 M-ORG 水 M-ORG 泥 M-ORG 厂 E-ORG 化 B-TITLE 验 M-TITLE 室 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE , O 制 B-TITLE 成 M-TITLE 车 M-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE , O 销 B-ORG 售 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 二 B-ORG 分 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 E-TITLE , O 1 O 9 O 9 O 8 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 0 O 年 O 4 O 月 O 先 O 后 O 担 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 销 M-ORG 售 M-ORG 公 M-ORG 司 E-ORG 经 B-TITLE 理 E-TITLE , O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 0 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 1 O 年 O 5 O 月 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 和 O 静 O 项 O 目 O 组 O 任 O 指 B-TITLE 挥 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 1 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 大 O 河 O 沿 O 项 O 目 O 组 O 任 O 指 B-TITLE 挥 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 3 O 月 O 至 O 今 O 任 O 新 B-ORG 疆 M-ORG 天 M-ORG 山 M-ORG 水 M-ORG 泥 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 冯 B-NAME 莉 M-NAME 莉 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 8 O 1 O 年 O 出 O 生 O , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 在 O 大 B-ORG 连 M-ORG 实 M-ORG 德 E-ORG 财 O 务 O 部 O 、 O 大 B-ORG 元 M-ORG 股 M-ORG 份 E-ORG 证 O 券 O 部 O 、 O 大 B-ORG 连 M-ORG 北 M-ORG 部 E-ORG 资 O 产 O 财 O 务 O 行 O 政 O 部 O 工 O 作 O , O 曾 O 任 O 大 B-ORG 连 M-ORG 智 M-ORG 云 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 装 M-ORG 备 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 冯 B-NAME 国 M-NAME 泰 E-NAME : O 男 O 1 O 9 O 4 O 9 O 年 O 6 O 月 O 出 O 生 O , O 学 B-EDU 士 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE ; O 1 O 9 O 7 O 4 O 年 O 5 O 月 O — O 1 O 9 O 8 O 0 O 年 O 4 O 月 O 生 O 宝 B-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 发 M-TITLE 部 M-TITLE 电 M-TITLE 视 M-TITLE 设 M-TITLE 计 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 组 B-TITLE 长 E-TITLE 、 O 课 B-TITLE 长 E-TITLE ; O 1 O 9 O 8 O 0 O 年 O 5 O 月 O — O 1 O 9 O 9 O 4 O 年 O 8 O 月 O A B-ORG O M-ORG C M-ORG 艾 M-ORG 德 M-ORG 蒙 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ; O 历 O 任 O : O 研 B-TITLE 发 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 研 B-TITLE 发 M-TITLE 处 M-TITLE 副 M-TITLE 总 E-TITLE 、 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 董 B-TITLE 事 E-TITLE ; O 1 O 9 O 9 O 4 O 年 O 9 O 月 O — O 2 O 0 O 0 O 2 O 年 O 2 O 月 O 饭 B-ORG 山 M-ORG 国 M-ORG 际 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 至 O 今 O 宝 B-ORG 成 M-ORG 集 M-ORG 团 M-ORG 光 M-ORG 威 M-ORG 电 M-ORG 脑 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 深 M-TITLE 副 M-TITLE 总 E-TITLE 、 O 威 B-TITLE 成 M-TITLE 电 M-TITLE 子 E-TITLE ; O 资 B-TITLE 深 M-TITLE 副 M-TITLE 总 E-TITLE 、 O 光 B-ORG 威 M-ORG 电 M-ORG 脑 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 副 M-TITLE 总 E-TITLE 。 O 张 B-NAME 杰 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 2 O 月 O 出 O 生 O , O 河 B-LOC 南 M-LOC 舞 M-LOC 阳 M-LOC 人 E-LOC , O 1 O 9 O 8 O 4 O 年 O 2 O 月 O 参 O 加 O 工 O 作 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 法 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 律 B-TITLE 师 E-TITLE 职 O 称 O 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 工 M-ORG 商 M-ORG 银 M-ORG 行 M-ORG 武 M-ORG 汉 M-ORG 市 M-ORG 分 M-ORG 行 E-ORG 监 B-TITLE 察 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 M-TITLE 科 M-TITLE 员 E-TITLE 、 O 资 B-TITLE 产 M-TITLE 保 M-TITLE 全 M-TITLE 处 M-TITLE 处 M-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 法 B-TITLE 律 M-TITLE 顾 M-TITLE 问 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 工 M-ORG 商 M-ORG 银 M-ORG 行 M-ORG 武 M-ORG 汉 M-ORG 市 M-ORG 汉 M-ORG 阳 M-ORG 区 M-ORG 支 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE 。 O 焦 B-NAME 迎 M-NAME 光 E-NAME , O 男 O , O 1 O 9 O 6 O 7 O 年 O 9 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 物 M-TITLE 流 M-TITLE 师 E-TITLE 。 O 历 O 任 O 大 B-ORG 连 M-ORG 港 M-ORG 杂 M-ORG 货 M-ORG 码 M-ORG 头 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 大 B-ORG 连 M-ORG 港 M-ORG 集 M-ORG 团 M-ORG ( M-ORG 锦 M-ORG 州 M-ORG ) M-ORG 辽 M-ORG 西 M-ORG 港 M-ORG 口 M-ORG 投 M-ORG 资 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 大 B-ORG 连 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE , O 现 O 任 O 大 B-ORG 连 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 胡 B-NAME 晓 M-NAME 辉 E-NAME 先 O 生 O , O 男 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 加 B-CONT 拿 M-CONT 大 M-CONT 国 M-CONT 籍 E-CONT , O 曾 O 任 O 加 B-ORG 拿 M-ORG 大 M-ORG 格 M-ORG 林 M-ORG 柯 M-ORG 尔 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 现 O 任 O 格 B-ORG 林 M-ORG 柯 M-ORG 尔 M-ORG 科 M-ORG 技 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 首 B-TITLE 席 M-TITLE 执 M-TITLE 行 M-TITLE 官 E-TITLE 。 O 尤 B-NAME 福 M-NAME 永 E-NAME : O 男 O , O 1 O 9 O 5 O 9 O 年 O 1 O 月 O 出 O 生 O , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 律 B-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 起 O 先 O 后 O 任 O 深 B-ORG 圳 M-ORG 大 M-ORG 学 E-ORG 讲 B-TITLE 师 E-TITLE 、 O 深 B-ORG 圳 M-ORG 华 M-ORG 侨 M-ORG 城 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 城 M-ORG 建 M-ORG 开 M-ORG 发 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 城 B-ORG 建 M-ORG 物 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 美 B-ORG 国 M-ORG 联 M-ORG 邦 M-ORG 政 M-ORG 府 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 金 M-ORG 融 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE 、 O 深 B-ORG 圳 M-ORG 市 M-ORG 地 M-ORG 铁 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 兼 O 运 B-TITLE 营 M-TITLE 管 M-TITLE 理 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 和 O 地 B-ORG 铁 M-ORG 远 M-ORG 为 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 1 O 0 O 月 O 起 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 高 B-NAME 正 M-NAME 平 E-NAME : O 男 O , O 1 O 9 O 5 O 4 O 年 O 1 O 1 O 月 O 出 O 生 O , O 金 B-TITLE 融 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 享 O 受 O 政 O 府 O 特 O 殊 O 津 O 贴 O 。 O 现 O 任 O 天 B-ORG 津 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 副 B-TITLE 校 M-TITLE 长 E-TITLE 、 O 中 B-ORG 金 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 天 B-ORG 津 M-ORG 市 M-ORG 金 M-ORG 融 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 金 M-ORG 融 M-ORG 出 M-ORG 版 M-ORG 社 E-ORG 金 B-TITLE 融 M-TITLE 教 M-TITLE 材 M-TITLE 编 M-TITLE 委 M-TITLE 会 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 天 B-ORG 津 M-ORG 市 M-ORG 风 M-ORG 险 M-ORG 投 M-ORG 资 M-ORG 促 M-ORG 进 M-ORG 会 E-ORG 专 B-TITLE 家 M-TITLE 组 M-TITLE 专 M-TITLE 家 E-TITLE 。 O 1 O 9 O 7 O 0 O 年 O — O 1 O 9 O 7 O 9 O 年 O 黑 B-ORG 龙 M-ORG 江 M-ORG 建 M-ORG 设 M-ORG 兵 M-ORG 团 E-ORG 知 B-TITLE 青 E-TITLE ; O 1 O 9 O 7 O 9 O 年 O — O 1 O 9 O 8 O 3 O 年 O 天 B-ORG 津 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 M-ORG 金 M-ORG 融 M-ORG 系 E-ORG 金 B-PRO 融 M-PRO 专 M-PRO 业 E-PRO 本 B-EDU 科 E-EDU ; O 1 O 9 O 8 O 3 O 年 O — O 今 O 天 B-ORG 津 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 工 O 作 O 。 O 曹 B-NAME 承 M-NAME 鼎 E-NAME , O 男 O , O 1 O 9 O 4 O 4 O 年 O 1 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 行 E-ORG 稽 B-TITLE 核 M-TITLE 司 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 行 E-ORG 稽 B-TITLE 核 M-TITLE 监 M-TITLE 督 M-TITLE 局 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 司 M-TITLE 局 M-TITLE 级 M-TITLE 助 M-TITLE 理 M-TITLE 巡 M-TITLE 视 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 M-ORG 总 M-ORG 行 E-ORG 内 B-TITLE 审 M-TITLE 司 M-TITLE 副 M-TITLE 司 M-TITLE 长 E-TITLE 、 O 正 B-TITLE 司 M-TITLE 局 M-TITLE 级 M-TITLE 巡 M-TITLE 视 M-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 E-ORG 融 B-TITLE 资 M-TITLE 中 M-TITLE 心 M-TITLE 清 M-TITLE 理 M-TITLE 小 M-TITLE 组 M-TITLE 组 M-TITLE 长 E-TITLE 。 O 现 O 已 O 退 O 休 O , O 任 O 本 B-ORG 行 E-ORG 外 B-TITLE 部 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 郝 B-NAME 敬 M-NAME 开 E-NAME , O 男 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 。 O 历 O 任 O 合 B-ORG 肥 M-ORG 物 M-ORG 价 M-ORG 学 M-ORG 校 E-ORG 讲 B-TITLE 师 E-TITLE 、 O 合 B-ORG 肥 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG ( O 现 O 华 B-ORG 证 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG ) O 资 B-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 审 B-TITLE 计 M-TITLE 业 M-TITLE 务 M-TITLE 四 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 合 B-ORG 肥 M-ORG 兴 M-ORG 泰 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 监 M-TITLE 管 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 杨 B-NAME 越 M-NAME 山 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 5 O 年 O 7 O 月 O 3 O 0 O 日 O 出 O 生 O 。 O 南 B-ORG 京 M-ORG 金 M-ORG 陵 M-ORG 职 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 经 M-ORG 系 E-ORG 毕 O 业 O 。 O 1 O 9 O 9 O 3 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O , O 中 B-ORG 山 M-ORG 市 M-ORG 雅 M-ORG 居 M-ORG 乐 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 销 B-TITLE 售 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 0 O 3 O 年 O , O 广 B-ORG 州 M-ORG 市 M-ORG 花 M-ORG 都 M-ORG 雅 M-ORG 居 M-ORG 乐 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 至 O 2 O 0 O 0 O 5 O 年 O , O 广 B-ORG 州 M-ORG 市 M-ORG 花 M-ORG 都 M-ORG 区 M-ORG 宏 M-ORG 峰 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 5 O 月 O 至 O 今 O , O 珠 B-ORG 海 M-ORG 市 M-ORG 斗 M-ORG 门 M-ORG 区 M-ORG 世 M-ORG 荣 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 市 B-TITLE 场 M-TITLE 营 M-TITLE 销 M-TITLE 总 M-TITLE 监 E-TITLE ; O 张 B-NAME 建 M-NAME 民 E-NAME , O 男 O , O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 河 B-ORG 北 M-ORG 工 M-ORG 学 M-ORG 院 M-ORG 土 M-ORG 建 M-ORG 系 E-ORG 教 B-TITLE 师 E-TITLE , O 天 B-ORG 津 M-ORG 天 M-ORG 荣 M-ORG 建 M-ORG 筑 M-ORG 板 M-ORG 材 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 天 B-ORG 津 M-ORG 新 M-ORG 技 M-ORG 术 M-ORG 产 M-ORG 业 M-ORG 园 M-ORG 区 M-ORG 天 M-ORG 荣 M-ORG 建 M-ORG 筑 M-ORG 工 M-ORG 程 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 起 O 任 O 天 B-ORG 津 M-ORG 海 M-ORG 泰 M-ORG 科 M-ORG 技 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 程 B-NAME 凡 M-NAME 贵 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 国 O 外 O 永 O 久 O 居 O 留 O 权 O , O 出 O 生 O 于 O 1 O 9 O 6 O 1 O 年 O 8 O 月 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 任 O 正 B-ORG 邦 M-ORG 集 M-ORG 团 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 任 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 至 O 2 O 0 O 1 O 0 O 年 O 1 O 0 O 月 O 任 O 正 B-ORG 邦 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 江 B-ORG 西 M-ORG 永 M-ORG 联 E-ORG 监 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 9 O 月 O 至 O 今 O 任 O 正 B-ORG 邦 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 5 O 年 O 4 O 月 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 5 O 年 O 4 O 月 O 辞 O 去 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 担 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 张 B-NAME 新 M-NAME 泽 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 自 O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 起 O 任 O 本 B-ORG 行 E-ORG 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 1 O 9 O 7 O 5 O 年 O 5 O 月 O 至 O 1 O 9 O 7 O 8 O 年 O 1 O 0 O 月 O 、 O 1 O 9 O 8 O 2 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 8 O 月 O 期 O 间 O , O 张 S-NAME 先 O 生 O 就 O 职 O 于 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 E-ORG , O 曾 O 在 O 调 B-ORG 查 M-ORG 统 M-ORG 计 M-ORG 司 E-ORG 任 O 副 B-TITLE 司 M-TITLE 长 E-TITLE 、 O 巡 B-TITLE 视 M-TITLE 员 E-TITLE , O 在 O 征 B-ORG 信 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 任 O 巡 B-TITLE 视 M-TITLE 员 E-TITLE 及 O 信 B-ORG 贷 M-ORG 征 M-ORG 信 M-ORG 服 M-ORG 务 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 。 O 张 S-NAME 先 O 生 O 为 O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 1 O 9 O 8 O 2 O 年 O 毕 O 业 O 于 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 M-ORG 财 M-ORG 政 M-ORG 系 E-ORG 财 B-PRO 政 M-PRO 金 M-PRO 融 M-PRO 专 M-PRO 业 E-PRO , O 并 O 获 O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 梁 B-NAME 锦 M-NAME 棋 E-NAME : O 男 O , O 1 O 9 O 7 O 2 O 年 O 出 O 生 O , O 1 O 9 O 9 O 4 O 年 O 毕 O 业 O 于 O 广 B-ORG 东 M-ORG 商 M-ORG 学 M-ORG 院 E-ORG 会 B-PRO 计 M-PRO 专 M-PRO 业 E-PRO , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 税 M-TITLE 务 M-TITLE 师 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 至 O 今 O 任 O 佛 B-ORG 山 M-ORG 市 M-ORG 南 M-ORG 海 M-ORG 骏 M-ORG 朗 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 至 O 今 O 任 O 广 B-ORG 东 M-ORG 伊 M-ORG 立 M-ORG 浦 M-ORG 电 M-ORG 器 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 6 O 月 O 至 O 今 O 任 O 瀚 B-ORG 蓝 M-ORG 环 M-ORG 境 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 晓 M-NAME 东 E-NAME , O 男 O , O 1 O 9 O 6 O 0 O 年 O 出 O 生 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 1 O 9 O 8 O 2 O 年 O 7 O 月 O 毕 O 业 O 于 O 成 B-ORG 都 M-ORG 科 M-ORG 技 M-ORG 大 M-ORG 学 E-ORG ( O 现 O 四 B-ORG 川 M-ORG 大 M-ORG 学 E-ORG ) O 基 B-PRO 本 M-PRO 有 M-PRO 机 M-PRO 化 M-PRO 工 M-PRO 专 M-PRO 业 E-PRO , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 2 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 西 B-ORG 南 M-ORG 化 M-ORG 工 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 院 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 第 B-TITLE 三 M-TITLE 研 M-TITLE 究 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 四 B-ORG 川 M-ORG 天 M-ORG 一 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 等 O 职 O 务 O 。 O 现 O 任 O 西 B-ORG 南 M-ORG 化 M-ORG 工 M-ORG 研 M-ORG 究 M-ORG 设 M-ORG 计 M-ORG 院 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 傅 B-NAME 伟 E-NAME 女 O 士 O , O 出 O 生 O 于 O 1 O 9 O 6 O 7 O 年 O 2 O 月 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 职 O 称 O 。 O 自 O 1 O 9 O 9 O 7 O 年 O 以 O 来 O 一 O 直 O 任 O 职 O 于 O 公 B-ORG 司 E-ORG 财 O 务 O 部 O , O 现 O 任 O 公 B-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 。 O 马 B-NAME 斌 M-NAME 武 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 7 O 8 O 年 O 9 O 月 O 生 O , O 2 O 0 O 0 O 2 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 7 O 月 O 进 O 入 O 浙 B-ORG 江 M-ORG 方 M-ORG 正 M-ORG 电 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 就 O 职 O , O 2 O 0 O 0 O 2 O 年 O 7 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 4 O 月 O , O 任 O 职 O 于 O 浙 B-ORG 江 M-ORG 方 M-ORG 正 M-ORG 电 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 技 B-TITLE 术 M-TITLE 部 M-TITLE 技 M-TITLE 术 M-TITLE 员 E-TITLE 、 O 平 O 缝 O 事 O 业 O 部 O 品 O 质 O 管 O 理 O 部 O 等 O 部 O 门 O 。 O 2 O 0 O 0 O 7 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O , O 担 O 任 O 公 B-ORG 司 M-ORG 全 M-ORG 资 M-ORG 子 M-ORG 公 M-ORG 司 E-ORG 制 B-TITLE 造 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 1 O 2 O 月 O , O 担 O 任 O 浙 B-ORG 江 M-ORG 方 M-ORG 正 M-ORG 电 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 行 B-TITLE 政 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ( O 主 O 持 O 工 O 作 O ) O ; O 2 O 0 O 1 O 3 O 年 O 1 O 月 O 至 O 今 O , O 担 O 任 O 浙 B-ORG 江 M-ORG 方 M-ORG 正 M-ORG 电 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 方 B-NAME 夕 M-NAME 刚 E-NAME 先 O 生 O , O 1 O 9 O 6 O 4 O 年 O 1 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 电 B-TITLE 容 M-TITLE 器 M-TITLE 制 M-TITLE 造 M-TITLE 工 M-TITLE 艺 M-TITLE 员 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 质 M-TITLE 量 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 质 B-TITLE 量 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 质 B-TITLE 量 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 技 B-TITLE 术 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 现 O 任 O 安 B-ORG 徽 M-ORG 铜 M-ORG 峰 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 控 O 股 O 子 O 公 O 司 O 安 B-ORG 徽 M-ORG 铜 M-ORG 峰 M-ORG 世 M-ORG 贸 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 徐 B-NAME 志 M-NAME 翰 E-NAME : O 男 O , O 1 O 9 O 6 O 3 O 年 O 7 O 月 O 1 O 4 O 日 O 生 O , O 汉 B-RACE 族 E-RACE , O 上 B-LOC 海 M-LOC 市 M-LOC 人 E-LOC , O 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 毕 O 业 O 于 O 复 B-ORG 旦 M-ORG 大 M-ORG 学 E-ORG 企 B-PRO 业 M-PRO 管 M-PRO 理 M-PRO ( M-PRO 会 M-PRO 计 M-PRO ) M-PRO 专 M-PRO 业 E-PRO , O 复 B-ORG 旦 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 业 M-PRO 经 M-PRO 济 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 E-EDU , O 复 B-ORG 旦 M-ORG 大 M-ORG 学 E-ORG 经 B-PRO 济 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 学 B-EDU 士 E-EDU , O 会 B-TITLE 计 M-TITLE 学 M-TITLE 副 M-TITLE 教 M-TITLE 授 E-TITLE , O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 上 B-ORG 海 M-ORG 复 M-ORG 旦 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 M-ORG 会 M-ORG 计 M-ORG 系 E-ORG 会 B-TITLE 计 M-TITLE 学 M-TITLE 副 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 张 B-NAME 泾 M-NAME 生 E-NAME : O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 4 O 5 O 年 O 生 O , O 河 B-LOC 南 M-LOC 灵 M-LOC 宝 M-LOC 人 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 东 B-ORG 北 M-ORG 大 M-ORG 学 E-ORG 兼 B-TITLE 职 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 武 B-ORG 汉 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 兼 B-TITLE 职 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 历 O 任 O 新 B-ORG 建 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 公 M-ORG 司 M-ORG 可 M-ORG 可 M-ORG 托 M-ORG 海 M-ORG 矿 M-ORG 务 M-ORG 局 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 助 B-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 长 B-ORG 沙 M-ORG 矿 M-ORG 冶 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 药 B-TITLE 剂 M-TITLE 室 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 选 B-TITLE 矿 M-TITLE 工 M-TITLE 艺 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 长 B-ORG 沙 M-ORG 矿 M-ORG 冶 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 院 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 院 B-TITLE 长 E-TITLE , O 金 B-ORG 瑞 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 华 M-ORG 菱 M-ORG 管 M-ORG 线 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 长 B-ORG 沙 M-ORG 矿 M-ORG 冶 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE , O 南 B-ORG 方 M-ORG 建 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 黄 B-NAME 南 M-NAME 山 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 硕 B-EDU 士 E-EDU , O 曾 O 任 O 福 B-ORG 建 M-ORG 省 M-ORG 华 M-ORG 安 M-ORG 水 M-ORG 力 M-ORG 发 M-ORG 电 M-ORG 厂 E-ORG 检 B-TITLE 修 M-TITLE 管 M-TITLE 理 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 福 B-ORG 建 M-ORG 龙 M-ORG 岩 M-ORG 万 M-ORG 安 M-ORG 溪 M-ORG 水 M-ORG 力 M-ORG 发 M-ORG 电 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE , O 现 O 任 O 福 B-ORG 建 M-ORG 闽 M-ORG 东 M-ORG 水 M-ORG 电 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 申 B-NAME 萍 E-NAME , O 女 O , O 1 O 9 O 7 O 1 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 有 O 新 O 加 O 坡 O 永 O 久 O 居 O 留 O 权 O , O 毕 O 业 O 于 O 华 B-ORG 西 M-ORG 医 M-ORG 科 M-ORG 大 M-ORG 学 E-ORG , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 职 O 于 O 四 B-ORG 川 M-ORG 抗 M-ORG 菌 M-ORG 素 M-ORG 工 M-ORG 业 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG ; O 2 O 0 O 0 O 5 O 年 O 6 O 月 O 至 O 今 O 任 O 职 O 于 O 成 B-ORG 都 M-ORG 康 M-ORG 信 E-ORG , O 现 O 任 O 西 B-ORG 藏 M-ORG 海 M-ORG 思 M-ORG 科 M-ORG 药 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 方 B-NAME 秀 M-NAME 华 E-NAME : O 女 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 7 O 年 O 9 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 曾 O 荣 O 获 O “ O 安 B-TITLE 徽 M-TITLE 省 M-TITLE 工 M-TITLE 会 M-TITLE 财 M-TITLE 务 M-TITLE 先 M-TITLE 进 M-TITLE 个 M-TITLE 人 E-TITLE ” O 、 O “ O 安 B-TITLE 徽 M-TITLE 省 M-TITLE 先 M-TITLE 进 M-TITLE 女 M-TITLE 职 M-TITLE 工 M-TITLE 标 M-TITLE 兵 M-TITLE 称 M-TITLE 号 E-TITLE ” O 。 O 曾 O 任 O 黄 B-ORG 山 M-ORG 永 M-ORG 新 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE ; O 现 O 任 O 黄 B-ORG 山 M-ORG 永 M-ORG 新 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE 兼 O 财 B-TITLE 务 M-TITLE 中 M-TITLE 心 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 康 B-NAME 玉 M-NAME 星 E-NAME , O 女 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 曾 O 先 O 后 O 任 O 新 B-ORG 疆 M-ORG 石 M-ORG 油 M-ORG 公 M-ORG 司 E-ORG 政 B-TITLE 治 M-TITLE 处 M-TITLE 干 M-TITLE 部 E-TITLE 、 O 新 B-ORG 疆 M-ORG 石 M-ORG 油 M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 新 B-ORG 疆 M-ORG 石 M-ORG 油 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 兼 O 团 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 新 B-ORG 疆 M-ORG 石 M-ORG 油 M-ORG 总 M-ORG 公 M-ORG 司 M-ORG 新 M-ORG 欧 M-ORG 亚 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 支 B-TITLE 部 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 自 B-ORG 治 M-ORG 区 M-ORG 糖 M-ORG 酒 M-ORG 副 M-ORG 食 M-ORG 品 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 新 B-ORG 疆 M-ORG 副 M-ORG 食 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 乌 B-ORG 鲁 M-ORG 木 M-ORG 齐 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 经 M-ORG 营 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 由 B-NAME 立 M-NAME 明 E-NAME , O 男 O , O 4 O 7 O 岁 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 本 B-EDU 科 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 吉 B-ORG 林 M-ORG 省 M-ORG 电 M-ORG 力 M-ORG 局 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE ; O 吉 B-ORG 林 M-ORG 省 M-ORG 电 M-ORG 力 M-ORG 投 M-ORG 资 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 营 M-TITLE 部 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 经 M-TITLE 理 E-TITLE ; O 吉 B-ORG 林 M-ORG 省 M-ORG 能 M-ORG 源 M-ORG 交 M-ORG 通 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE ; O 吉 B-ORG 林 M-ORG 省 M-ORG 能 M-ORG 源 M-ORG 交 M-ORG 通 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 吉 B-ORG 林 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 吉 B-ORG 林 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 马 B-NAME 强 E-NAME 先 O 生 O , O 5 O 3 O 岁 O , O 现 O 任 O 本 B-ORG 行 E-ORG 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 马 S-NAME 先 O 生 O 自 O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 社 B-TITLE 保 M-TITLE 基 M-TITLE 金 M-TITLE 理 M-TITLE 事 M-TITLE 会 M-TITLE # M-TITLE O M-TITLE R M-TITLE G M-TITLE * M-TITLE [ M-TITLE ] M-TITLE 股 M-TITLE 权 M-TITLE 资 M-TITLE 产 M-TITLE 部 M-TITLE ( M-TITLE 实 M-TITLE 业 M-TITLE 投 M-TITLE 资 M-TITLE 部 M-TITLE ) M-TITLE 主 M-TITLE 任 E-TITLE , O 自 O 2 O 0 O 0 O 1 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 1 O 2 O 月 O 历 O 任 O 天 B-ORG 津 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG ( O 天 B-ORG 津 M-ORG 市 M-ORG 地 M-ORG 方 M-ORG 税 M-ORG 务 M-ORG 局 E-ORG ) O 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE , O 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE ( O 正 O 局 O 级 O ) O 。 O 马 S-NAME 先 O 生 O 2 O 0 O 0 O 4 O 年 O 毕 O 业 O 于 O 湖 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 网 M-ORG 络 M-ORG 学 M-ORG 院 E-ORG 财 B-PRO 政 M-PRO 专 M-PRO 业 E-PRO 。 O 马 S-NAME 先 O 生 O 自 O 2 O 0 O 1 O 1 O 年 O 9 O 月 O 起 O 任 O 本 B-ORG 行 E-ORG 非 B-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 吉 B-NAME 兴 M-NAME 军 E-NAME , O 男 O , O 1 O 9 O 6 O 8 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 内 B-ORG 蒙 M-ORG 古 M-ORG 兴 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE ; O 现 O 任 O 内 B-ORG 蒙 M-ORG 古 M-ORG 兴 M-ORG 业 M-ORG 矿 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 内 B-ORG 蒙 M-ORG 古 M-ORG 兴 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 张 B-NAME 启 M-NAME 銮 E-NAME , O 男 O , O 1 O 9 O 5 O 7 O 年 O 7 O 月 O 出 O 生 O , O 毕 O 业 O 于 O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 财 B-PRO 务 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 工 B-PRO 学 E-PRO 硕 B-EDU 士 E-EDU , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 系 E-ORG 书 B-TITLE 记 E-TITLE 、 O 副 B-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 学 M-TITLE 硕 M-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 M-ORG 财 M-ORG 务 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 书 B-TITLE 记 E-TITLE 、 O 副 B-TITLE 所 M-TITLE 长 E-TITLE 。 O 现 O 任 O 大 B-ORG 连 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 M-ORG 证 M-ORG 券 M-ORG 与 M-ORG 期 M-ORG 货 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 会 B-ORG 计 M-ORG 与 M-ORG 财 M-ORG 务 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE , O 北 B-ORG 京 M-ORG 亚 M-ORG 太 M-ORG 华 M-ORG 夏 M-ORG 财 M-ORG 务 M-ORG 会 M-ORG 计 M-ORG 研 M-ORG 究 M-ORG 院 E-ORG 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 东 B-ORG 北 M-ORG 暨 M-ORG 内 M-ORG 蒙 M-ORG 古 M-ORG 高 M-ORG 校 M-ORG 财 M-ORG 务 M-ORG 会 M-ORG 计 M-ORG 教 M-ORG 师 M-ORG 联 M-ORG 谊 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE , O 大 B-ORG 化 M-ORG B M-ORG 股 E-ORG 、 O 大 B-ORG 连 M-ORG 友 M-ORG 谊 E-ORG 、 O 大 B-ORG 橡 M-ORG 塑 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 徐 B-NAME 智 M-NAME 麟 E-NAME , O 男 O , O 1 O 9 O 5 O 8 O 年 O 4 O 月 O 出 O 生 O , O 中 B-ORG 欧 M-ORG 国 M-ORG 际 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG ( B-PRO 金 M-PRO 融 M-PRO 专 M-PRO 业 M-PRO 方 M-PRO 向 M-PRO ) M-PRO E M-PRO M M-PRO B M-PRO A E-PRO 毕 O 业 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 现 O 在 O 职 O 就 O 读 O 英 B-ORG 国 M-ORG 杜 M-ORG 伦 M-ORG 大 M-ORG 学 E-ORG 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 博 B-EDU 士 E-EDU 。 O 曾 O 任 O 国 B-ORG 泰 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 交 B-TITLE 易 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 国 B-ORG 泰 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 研 M-TITLE 究 M-TITLE 联 M-TITLE 席 M-TITLE 会 M-TITLE 议 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 新 B-TITLE 产 M-TITLE 品 M-TITLE 开 M-TITLE 发 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE 等 O , O 以 O 及 O 金 B-ORG 泰 M-ORG 基 M-ORG 金 E-ORG 的 O 基 B-TITLE 金 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 为 O 广 B-ORG 誉 M-ORG 远 E-ORG 董 B-TITLE 事 E-TITLE 、 O 上 B-ORG 海 M-ORG 钧 M-ORG 齐 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 广 B-ORG 誉 M-ORG 远 M-ORG ( M-ORG 上 M-ORG 海 M-ORG ) M-ORG 龟 M-ORG 龄 M-ORG 集 M-ORG 酒 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 唐 B-NAME 少 M-NAME 文 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 6 O 2 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU ; O 历 O 任 O 铁 B-ORG 道 M-ORG 部 M-ORG 南 M-ORG 京 M-ORG 浦 M-ORG 镇 M-ORG 车 M-ORG 辆 M-ORG 工 M-ORG 厂 E-ORG 技 B-TITLE 术 M-TITLE 员 E-TITLE 、 O 助 B-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 苏 B-ORG 州 M-ORG 纺 M-ORG 织 M-ORG 机 M-ORG 械 M-ORG 厂 E-ORG 助 B-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 工 B-TITLE 程 M-TITLE 师 E-TITLE 、 O 中 B-ORG 国 M-ORG 建 M-ORG 设 M-ORG 银 M-ORG 行 M-ORG 苏 M-ORG 州 M-ORG 分 M-ORG 行 E-ORG 投 B-TITLE 资 M-TITLE 信 M-TITLE 贷 M-TITLE 科 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 贷 B-TITLE 款 M-TITLE 项 M-TITLE 目 M-TITLE 评 M-TITLE 估 M-TITLE 员 E-TITLE 、 O 苏 B-ORG 州 M-ORG 工 M-ORG 业 M-ORG 园 M-ORG 区 M-ORG 支 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 、 O 行 B-TITLE 长 E-TITLE 、 O 苏 B-ORG 州 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE 、 O 苏 B-ORG 州 M-ORG 国 M-ORG 际 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 现 O 任 O 苏 B-ORG 州 M-ORG 胜 M-ORG 利 M-ORG 精 M-ORG 密 M-ORG 制 M-ORG 造 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 苏 B-ORG 州 M-ORG 国 M-ORG 发 M-ORG 投 M-ORG 资 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 苏 B-ORG 州 M-ORG 国 M-ORG 发 M-ORG 安 M-ORG 农 M-ORG 管 M-ORG 理 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 亿 B-ORG 文 M-ORG 创 M-ORG 投 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 江 B-ORG 苏 M-ORG 东 M-ORG 吴 M-ORG 保 M-ORG 险 M-ORG 经 M-ORG 纪 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 贡 B-NAME 华 M-NAME 章 E-NAME 先 O 生 O , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 审 B-TITLE 计 M-TITLE 委 M-TITLE 员 M-TITLE 会 M-TITLE 主 M-TITLE 任 E-TITLE , O 同 O 时 O 任 O 财 B-ORG 政 M-ORG 部 M-ORG 评 M-ORG 估 M-ORG 准 M-ORG 则 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 中 B-ORG 国 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 价 M-ORG 格 M-ORG 协 M-ORG 会 E-ORG 顾 B-TITLE 问 E-TITLE , O 清 B-ORG 华 M-ORG 大 M-ORG 学 E-ORG 、 O 南 B-ORG 开 M-ORG 大 M-ORG 学 E-ORG 、 O 厦 B-ORG 门 M-ORG 大 M-ORG 学 E-ORG 、 O 中 B-ORG 国 M-ORG 石 M-ORG 油 M-ORG 大 M-ORG 学 M-ORG ( M-ORG 北 M-ORG 京 M-ORG ) E-ORG 、 O 中 B-ORG 国 M-ORG 石 M-ORG 油 M-ORG 大 M-ORG 学 M-ORG ( M-ORG 华 M-ORG 东 M-ORG ) E-ORG 、 O 上 B-ORG 海 M-ORG 国 M-ORG 家 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 、 O 厦 B-ORG 门 M-ORG 国 M-ORG 家 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 兼 B-TITLE 职 M-TITLE 教 M-TITLE 授 E-TITLE , O 北 B-ORG 京 M-ORG 国 M-ORG 家 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 4 O 月 O 任 O 中 B-ORG 国 M-ORG 石 M-ORG 油 M-ORG 天 M-ORG 然 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE 、 O 总 B-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 任 O 中 B-ORG 国 M-ORG 石 M-ORG 油 M-ORG 天 M-ORG 然 M-ORG 气 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 1 O 9 O 9 O 9 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 任 O 中 B-ORG 油 M-ORG 财 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 任 O 长 B-ORG 江 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 2 O 月 O 任 O 中 B-ORG 国 M-ORG 南 M-ORG 方 M-ORG 航 M-ORG 空 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 南 B-ORG 洋 M-ORG 商 M-ORG 业 M-ORG 银 M-ORG 行 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 东 M-ORG 方 M-ORG 电 M-ORG 气 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 6 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 神 M-ORG 华 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 今 O 任 O 中 B-ORG 粮 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 外 B-TITLE 部 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 李 B-NAME 俊 M-NAME 峰 E-NAME 先 O 生 O , O 1 O 9 O 5 O 6 O 年 O 5 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 研 B-TITLE 究 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O , O 国 B-ORG 家 M-ORG 发 M-ORG 改 M-ORG 委 M-ORG 能 M-ORG 源 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG , O 副 B-TITLE 所 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 4 O 月 O , O 株 B-ORG 洲 M-ORG 时 M-ORG 代 M-ORG 新 M-ORG 材 M-ORG 料 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O , O 龙 B-ORG 源 M-ORG 电 M-ORG 力 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 非 B-TITLE 执 M-TITLE 行 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 至 O 今 O , O 国 B-ORG 家 M-ORG 气 M-ORG 候 M-ORG 变 M-ORG 化 M-ORG 战 M-ORG 略 M-ORG 研 M-ORG 究 M-ORG 和 M-ORG 国 M-ORG 际 M-ORG 合 M-ORG 作 M-ORG 中 M-ORG 心 E-ORG , O 主 B-TITLE 任 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 至 O 今 O , O 日 B-ORG 出 M-ORG 东 M-ORG 方 M-ORG 太 M-ORG 阳 M-ORG 能 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 宗 M-NAME 军 E-NAME 先 O 生 O , O 1 O 9 O 8 O 4 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 0 O 6 O 年 O 6 O 月 O 起 O 任 O 职 O 于 O 宁 B-ORG 海 M-ORG 县 M-ORG 日 M-ORG 升 M-ORG 电 M-ORG 器 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 任 O 公 B-ORG 司 E-ORG 质 B-TITLE 检 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 至 O 今 O 担 O 任 O 公 B-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 赵 B-NAME 景 M-NAME 华 E-NAME , O 男 O , O 4 O 2 O 岁 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 教 B-TITLE 授 E-TITLE , O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 山 B-ORG 东 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 系 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 山 B-ORG 东 M-ORG 大 M-ORG 学 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 院 B-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 7 O 月 O 1 O 5 O 日 O 至 O 2 O 0 O 0 O 1 O 年 O 7 O 月 O 2 O 0 O 日 O 参 O 加 O 了 O 由 O 中 B-ORG 国 M-ORG 证 M-ORG 券 M-ORG 监 M-ORG 督 M-ORG 管 M-ORG 理 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 和 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG 共 O 同 O 举 O 办 O 的 O 上 O 市 O 公 O 司 O 独 O 立 O 董 O 事 O 培 O 训 O 班 O , O 并 O 取 O 得 O 了 O 结 O 业 O 证 O 书 O 。 O 现 O 为 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 沈 B-NAME 予 M-NAME 方 E-NAME , O 男 O , O 1 O 9 O 7 O 0 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 百 B-ORG 威 M-ORG ( M-ORG 武 M-ORG 汉 M-ORG ) M-ORG 啤 M-ORG 酒 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 上 M-ORG 海 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 百 B-ORG 威 M-ORG 英 M-ORG 博 M-ORG 啤 M-ORG 酒 M-ORG ( M-ORG 投 M-ORG 资 M-ORG ) M-ORG 中 M-ORG 国 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 监 E-TITLE , O 冠 B-ORG 生 M-ORG 园 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 总 M-TITLE 监 E-TITLE , O 上 B-ORG 海 M-ORG 金 M-ORG 枫 M-ORG 酒 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 市 B-TITLE 场 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 金 M-ORG 枫 M-ORG 酒 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 胡 B-NAME 奎 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 7 O 4 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 0 O 7 O 年 O 1 O 月 O 1 O 日 O 至 O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 2 O 5 O 日 O , O 任 O 河 B-ORG 南 M-ORG 华 M-ORG 英 M-ORG 农 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 2 O 6 O 日 O 至 O 今 O , O 任 O 河 B-ORG 南 M-ORG 华 M-ORG 英 M-ORG 农 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 华 B-ORG 英 M-ORG 樱 M-ORG 桃 M-ORG 谷 M-ORG 食 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 河 B-ORG 南 M-ORG 华 M-ORG 英 M-ORG 农 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 方 B-NAME 培 M-NAME 琦 E-NAME 男 O 1 O 9 O 6 O 1 O 年 O 9 O 月 O 出 O 生 O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 曾 O 任 O 上 B-ORG 海 M-ORG 雷 M-ORG 磁 M-ORG 仪 M-ORG 器 M-ORG 总 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 上 B-ORG 海 M-ORG 惠 M-ORG 普 M-ORG 分 M-ORG 析 M-ORG 仪 M-ORG 器 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 上 B-ORG 海 M-ORG 精 M-ORG 密 M-ORG 科 M-ORG 学 M-ORG 仪 M-ORG 器 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 仪 M-ORG 电 M-ORG 控 M-ORG 股 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 。 O 现 O 任 O 上 B-ORG 海 M-ORG 华 M-ORG 虹 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 、 O 公 B-ORG 司 E-ORG 第 B-TITLE 五 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 高 B-NAME 德 M-NAME 柱 E-NAME : O 男 O , O 1 O 9 O 4 O 0 O 年 O 1 O 月 O 出 O 生 O , O 二 O 零 O 零 O 九 O 年 O 六 O 月 O 起 O 获 O 委 O 任 O 为 O 江 B-ORG 西 M-ORG 铜 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 非 M-TITLE 执 M-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 曾 O 任 O 中 B-ORG 国 M-ORG 银 M-ORG 行 E-ORG 副 B-TITLE 行 M-TITLE 长 E-TITLE 、 O 国 B-ORG 家 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 工 M-ORG 业 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE ; O 现 O 任 O 中 B-ORG 国 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 工 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE , O 并 O 担 O 任 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 大 M-ORG 学 E-ORG 、 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 银 M-ORG 行 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 、 O 辽 B-ORG 宁 M-ORG 大 M-ORG 学 E-ORG 、 O 中 B-ORG 南 M-ORG 大 M-ORG 学 E-ORG 和 O 昆 B-ORG 明 M-ORG 理 M-ORG 工 M-ORG 大 M-ORG 学 E-ORG 兼 B-TITLE 职 M-TITLE 教 M-TITLE 授 E-TITLE , O 在 O 金 O 融 O 、 O 有 O 色 O 金 O 属 O 行 O 业 O 管 O 理 O 等 O 方 O 面 O 有 O 丰 O 富 O 经 O 验 O 。 O 高 S-NAME 先 O 生 O 已 O 于 O 2 O 0 O 1 O 5 O 年 O 1 O 月 O 卸 O 任 O 独 O 董 O 一 O 职 O 。 O 林 B-NAME 乐 M-NAME 清 E-NAME , O 男 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 资 M-TITLE 产 M-TITLE 评 M-TITLE 估 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 至 O 2 O 0 O 0 O 6 O 年 O 4 O 月 O 兼 O 任 O 山 B-ORG 东 M-ORG 高 M-ORG 速 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 6 O 年 O 4 O 月 O 至 O 本 O 报 O 告 O 期 O 末 O , O 兼 O 任 O 山 B-ORG 东 M-ORG 高 M-ORG 速 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 独 M-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 向 B-NAME 左 M-NAME 云 E-NAME 先 O 生 O : O 监 B-TITLE 事 E-TITLE , O 南 B-ORG 开 M-ORG 大 M-ORG 学 E-ORG 生 B-PRO 物 M-PRO 化 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 、 O 助 B-TITLE 理 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE 。 O 向 O 左 O 云 O 先 O 生 O 长 O 期 O 从 O 事 O 病 O 毒 O 学 O 及 O 生 O 化 O 药 O 物 O 纯 O 化 O 工 O 艺 O 研 O 究 O , O 在 O 国 O 内 O 学 O 术 O 期 O 刊 O 发 O 表 O 学 O 术 O 论 O 文 O 十 O 余 O 篇 O , O 并 O 荣 O 获 O 2 O 0 O 0 O 7 O 年 O 云 O 南 O 省 O 科 O 技 O 进 O 步 O 二 O 等 O 奖 O 。 O 2 O 0 O 0 O 6 O 年 O 加 O 盟 O 云 B-ORG 南 M-ORG 沃 M-ORG 森 M-ORG 生 M-ORG 物 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 历 O 任 O 公 B-ORG 司 E-ORG 研 B-TITLE 究 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 部 B-TITLE 长 E-TITLE , O 现 O 任 O 云 B-ORG 南 M-ORG 沃 M-ORG 森 M-ORG 生 M-ORG 物 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 研 B-TITLE 发 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 张 B-NAME 乐 M-NAME 鸣 E-NAME 先 O 生 O , O 1 O 9 O 5 O 6 O 年 O 7 O 月 O 出 O 生 O , O 医 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU , O 主 B-TITLE 任 M-TITLE 医 M-TITLE 师 E-TITLE , O 教 B-TITLE 授 E-TITLE 。 O 曾 O 任 O 宁 B-ORG 波 M-ORG 市 M-ORG 第 M-ORG 二 M-ORG 医 M-ORG 院 E-ORG 肿 B-TITLE 瘤 M-TITLE 科 M-TITLE 科 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 宁 B-ORG 波 M-ORG 市 M-ORG 第 M-ORG 二 M-ORG 医 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE , O 现 O 任 O 宁 B-ORG 波 M-ORG 市 M-ORG 第 M-ORG 二 M-ORG 医 M-ORG 院 E-ORG 院 B-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 马 B-NAME 挺 M-NAME 贵 E-NAME : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 男 O , O 1 O 9 O 3 O 9 O 年 O 1 O 2 O 月 O 1 O 2 O 日 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 最 O 近 O 五 O 年 O 曾 O 任 O 江 B-ORG 河 M-ORG 创 M-ORG 建 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 已 O 离 O 任 O 不 O 在 O 公 B-ORG 司 E-ORG 任 O 职 O 。 O 朱 B-NAME 群 M-NAME 芬 E-NAME 女 O 士 O , O 1 O 9 O 6 O 9 O 年 O 1 O 2 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 8 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 在 O 常 B-ORG 熟 M-ORG 金 M-ORG 刚 M-ORG 箱 M-ORG 包 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 外 O 贸 O 部 O 任 O 职 O ; O 1 O 9 O 9 O 3 O 年 O 至 O 1 O 9 O 9 O 4 O 年 O 在 O 常 B-ORG 熟 M-ORG 市 M-ORG 电 M-ORG 解 M-ORG 铜 M-ORG 厂 E-ORG 办 O 公 O 室 O 任 O 职 O ; O 1 O 9 O 9 O 5 O 年 O 至 O 2 O 0 O 0 O 0 O 年 O 4 O 月 O 在 O 常 B-ORG 熟 M-ORG 鑫 M-ORG 成 M-ORG 铜 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 0 O 年 O 5 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 8 O 月 O 在 O 常 B-ORG 熟 M-ORG 市 M-ORG 铁 M-ORG 塔 M-ORG 厂 E-ORG 、 O 常 B-ORG 熟 M-ORG 市 M-ORG 铁 M-ORG 塔 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 任 O 外 B-TITLE 贸 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 9 O 年 O 8 O 月 O 至 O 今 O 任 O 常 B-ORG 熟 M-ORG 风 M-ORG 范 M-ORG 电 M-ORG 力 M-ORG 设 M-ORG 备 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 国 B-TITLE 际 M-TITLE 业 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 高 B-NAME 力 M-NAME 生 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 9 O 年 O 4 O 月 O 生 O , O 籍 B-LOC 贯 M-LOC 河 M-LOC 北 M-LOC 省 M-LOC 大 M-LOC 名 M-LOC 县 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 8 O 年 O 至 O 1 O 9 O 8 O 1 O 年 O 在 O 广 B-ORG 西 M-ORG 航 M-ORG 运 M-ORG 学 M-ORG 校 E-ORG 学 O 习 O ; O 毕 O 业 O 分 O 配 O 南 B-ORG 宁 M-ORG 船 M-ORG 厂 E-ORG 工 O 作 O ; O 1 O 9 O 8 O 3 O 年 O 至 O 1 O 9 O 8 O 6 O 年 O 在 O 广 B-ORG 西 M-ORG 电 M-ORG 大 E-ORG 工 B-PRO 业 M-PRO 会 M-PRO 计 M-PRO 专 M-PRO 业 E-PRO 学 O 习 O ; O 1 O 9 O 8 O 8 O 年 O 至 O 2 O 0 O 0 O 6 O 年 O 历 O 任 O 中 B-ORG 国 M-ORG 广 M-ORG 西 M-ORG 国 M-ORG 际 M-ORG 经 M-ORG 济 M-ORG 技 M-ORG 术 M-ORG 合 M-ORG 作 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 三 B-TITLE 总 M-TITLE 师 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ( O 期 O 间 O 1 O 9 O 9 O 1 O 年 O 至 O 1 O 9 O 9 O 4 O 年 O 派 O 往 O 巴 B-ORG 基 M-ORG 斯 M-ORG 坦 E-ORG 工 O 作 O , O 任 O 水 B-TITLE 利 M-TITLE 工 M-TITLE 程 M-TITLE 项 M-TITLE 目 M-TITLE 经 M-TITLE 理 M-TITLE 部 M-TITLE 会 M-TITLE 计 M-TITLE 主 M-TITLE 管 E-TITLE ; O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 0 O 4 O 年 O 在 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 企 B-PRO 业 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 班 E-EDU 学 O 习 O 、 O 结 O 业 O ) O 。 O 2 O 0 O 0 O 6 O 年 O 至 O 今 O 任 O 广 B-ORG 西 M-ORG 国 M-ORG 宏 M-ORG 经 M-ORG 济 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 至 O 今 O 任 O 广 B-ORG 西 M-ORG 五 M-ORG 洲 M-ORG 交 M-ORG 通 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 杨 B-NAME 海 M-NAME 江 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 1 O 9 O 6 O 9 O 年 O 出 O 生 O , O 中 B-ORG 海 M-ORG 油 M-ORG 服 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE , O 1 O 9 O 9 O 1 O 年 O 毕 O 业 O 于 O 解 B-ORG 放 M-ORG 军 M-ORG 国 M-ORG 际 M-ORG 关 M-ORG 系 M-ORG 学 M-ORG 院 E-ORG 英 B-ORG 语 M-ORG 专 M-ORG 业 E-ORG , O 获 O 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 并 O 自 O 2 O 0 O 0 O 3 O 年 O 以 O 来 O 拥 O 有 O 中 B-TITLE 国 M-TITLE 律 M-TITLE 师 M-TITLE 资 M-TITLE 格 E-TITLE 。 O 于 O 2 O 0 O 0 O 8 O 年 O , O 杨 S-NAME 先 O 生 O 取 O 得 O 上 B-ORG 海 M-ORG 证 M-ORG 券 M-ORG 交 M-ORG 易 M-ORG 所 E-ORG 颁 O 发 O 的 O 公 B-TITLE 司 M-TITLE 秘 M-TITLE 书 M-TITLE 资 M-TITLE 格 E-TITLE 。 O 杨 S-NAME 先 O 生 O 于 O 1 O 9 O 9 O 8 O 年 O 从 O 中 B-ORG 国 M-ORG 人 M-ORG 民 M-ORG 解 M-ORG 放 M-ORG 军 E-ORG 上 B-TITLE 尉 M-TITLE 军 M-TITLE 衔 E-TITLE 退 O 役 O 后 O 加 O 入 O 中 B-ORG 海 M-ORG 油 M-ORG 服 E-ORG , O 自 O 2 O 0 O 0 O 3 O 年 O 5 O 月 O 起 O 分 O 别 O 担 O 任 O 中 B-ORG 海 M-ORG 油 M-ORG 服 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 及 M-TITLE 法 M-TITLE 律 M-TITLE 事 M-TITLE 务 M-TITLE 部 M-TITLE 法 M-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 、 O 公 B-ORG 司 E-ORG 治 B-TITLE 理 M-TITLE 与 M-TITLE 证 M-TITLE 券 M-TITLE 业 M-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 公 B-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 事 M-TITLE 务 M-TITLE 代 M-TITLE 表 E-TITLE , O 负 O 责 O 处 O 理 O 本 O 公 O 司 O 董 O 事 O 会 O 、 O 监 O 事 O 会 O 及 O 股 O 东 O 的 O 法 O 律 O 事 O 宜 O , O 2 O 0 O 1 O 0 O 年 O 4 O 月 O , O 杨 S-NAME 先 O 生 O 获 O 任 O 为 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 姚 B-NAME 桂 M-NAME 清 E-NAME , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 同 O 时 O 任 O 中 B-ORG 铁 M-ORG 工 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 中 B-ORG 华 M-ORG 全 M-ORG 国 M-ORG 总 M-ORG 工 M-ORG 会 E-ORG 执 B-TITLE 行 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 7 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 任 O 中 B-ORG 铁 M-ORG 工 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 至 O 今 O 任 O 中 B-ORG 铁 M-ORG 工 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 全 B-ORG 国 M-ORG 总 M-ORG 工 M-ORG 会 E-ORG 执 B-TITLE 行 M-TITLE 委 M-TITLE 员 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 4 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 3 O 月 O , O 兼 O 任 O 中 B-ORG 铁 M-ORG 九 M-ORG 局 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 6 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 任 O 中 B-ORG 铁 M-ORG 工 E-ORG 职 B-TITLE 工 M-TITLE 董 M-TITLE 事 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 0 O 9 O 年 O 6 O 月 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 3 O 月 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 9 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 6 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 任 O 中 B-ORG 铁 M-ORG 工 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 8 O 月 O 至 O 今 O 任 O 中 B-ORG 国 M-ORG 中 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 3 O 月 O 至 O 今 O 任 O 中 B-ORG 铁 M-ORG 工 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 姚 S-NAME 先 O 生 O 毕 O 业 O 于 O 中 B-ORG 央 M-ORG 党 M-ORG 校 E-ORG 经 B-PRO 济 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO , O 并 O 取 O 得 O 中 B-ORG 央 M-ORG 党 M-ORG 校 E-ORG 经 B-PRO 济 M-PRO 管 M-PRO 理 M-PRO 专 M-PRO 业 E-PRO 在 B-EDU 职 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 孙 B-NAME 华 E-NAME 先 O 生 O , O 1 O 9 O 7 O 1 O 年 O 2 O 月 O 出 O 生 O , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 毕 O 业 O 于 O 澳 B-ORG 大 M-ORG 利 M-ORG 亚 M-ORG 新 M-ORG 南 M-ORG 威 M-ORG 尔 M-ORG 士 M-ORG 大 M-ORG 学 E-ORG , O 获 O 得 O 国 B-PRO 际 M-PRO 会 M-PRO 计 M-PRO 商 M-PRO 学 E-PRO 硕 B-EDU 士 E-EDU 。 O 自 O 2 O 0 O 0 O 7 O 年 O 1 O 月 O 起 O , O 就 O 职 O 于 O 北 B-ORG 京 M-ORG 嘉 M-ORG 华 M-ORG 筑 M-ORG 业 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 任 O 期 O 已 O 届 O 满 O , O 离 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 魏 B-NAME 相 M-NAME 永 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 9 O 年 O 1 O 0 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 起 O 至 O 今 O 担 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O , O 2 O 0 O 0 O 9 O 年 O 5 O 月 O 受 O 聘 O 担 O 任 O 包 B-ORG 头 M-ORG 华 M-ORG 资 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 职 O 务 O 。 O 2 O 0 O 1 O 4 O 年 O 5 O 月 O 不 O 再 O 担 O 任 O 包 B-ORG 头 M-ORG 华 M-ORG 资 M-ORG 实 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 王 B-NAME 明 M-NAME 中 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 9 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 9 O 月 O — O 2 O 0 O 1 O 3 O 年 O 1 O 月 O , O 任 O 中 B-ORG 原 M-ORG 环 M-ORG 保 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE ; O 2 O 0 O 1 O 3 O 年 O 1 O 月 O 至 O 今 O , O 任 O 中 B-ORG 原 M-ORG 环 M-ORG 保 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 刘 B-NAME 志 M-NAME 敏 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 5 O 3 O 年 O 5 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 职 O 称 O 。 O 历 O 任 O 上 B-ORG 海 M-ORG 北 M-ORG 方 M-ORG 企 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 闸 M-ORG 北 M-ORG 区 M-ORG 国 M-ORG 资 M-ORG 委 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 主 B-TITLE 任 E-TITLE 等 O , O 历 O 任 O 上 B-ORG 海 M-ORG 市 M-ORG 北 M-ORG 高 M-ORG 新 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 北 M-ORG 高 M-ORG 新 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 于 B-NAME 剑 M-NAME 波 E-NAME , O 男 O , O 中 B-ORG 国 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 院 E-ORG 博 B-EDU 士 E-EDU 、 O 高 B-TITLE 级 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 1 O 9 O 9 O 1 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O , O 就 O 职 O 于 O 国 B-ORG 家 M-ORG 级 M-ORG 当 M-ORG 代 M-ORG 中 M-ORG 国 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG , O 专 O 门 O 从 O 事 O 当 O 代 O 重 O 大 O 经 O 济 O 问 O 题 O 研 O 究 O , O 著 O 有 O 《 O 国 O 力 O 论 O 》 O 等 O 著 O 作 O 十 O 余 O 部 O , O 并 O 获 O 得 O 过 O 国 O 家 O 级 O 著 O 作 O 奖 O ; O 1 O 9 O 9 O 8 O 年 O 至 O 2 O 0 O 0 O 5 O 年 O 5 O 月 O , O 任 O 今 B-ORG 日 M-ORG 投 M-ORG 资 E-ORG 董 B-TITLE 事 E-TITLE 、 O 执 B-TITLE 行 M-TITLE 总 M-TITLE 裁 E-TITLE , O 欧 B-ORG 倍 M-ORG 德 E-ORG 中 B-TITLE 国 M-TITLE 区 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE , O 兼 O 任 O 山 B-ORG 大 M-ORG 华 M-ORG 特 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE ; O 2 O 0 O 0 O 5 O 年 O 5 O 月 O 至 O 今 O , O 在 O 北 B-ORG 京 M-ORG 物 M-ORG 美 M-ORG 商 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 任 O 高 B-TITLE 级 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 孙 B-NAME 治 M-NAME 成 E-NAME 先 O 生 O , O 1 O 9 O 6 O 1 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 毕 O 业 O , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ( O 研 O 究 O 员 O 级 O ) O , O 享 O 受 O 国 O 务 O 院 O 政 O 府 O 特 O 殊 O 津 O 贴 O 专 O 家 O 。 O 历 O 任 O 湖 B-ORG 南 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 厂 E-ORG 副 B-TITLE 厂 M-TITLE 长 E-TITLE , O 湖 B-ORG 南 M-ORG 计 M-ORG 算 M-ORG 机 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 意 B-ORG 中 M-ORG 希 M-ORG 诺 M-ORG 达 M-ORG 国 M-ORG 际 M-ORG 商 M-ORG 用 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 裁 E-TITLE , O 有 O 二 O 十 O 多 O 年 O 科 O 研 O 开 O 发 O 、 O 技 O 术 O 管 O 理 O 、 O 企 O 业 O 经 O 营 O 的 O 经 O 验 O 。 O 潘 B-NAME 平 E-NAME 先 O 生 O , O 男 O , O 1 O 9 O 6 O 2 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 二 B-TITLE 级 M-TITLE 律 M-TITLE 师 E-TITLE , O 曾 O 在 O 安 B-ORG 徽 M-ORG 省 M-ORG 人 M-ORG 民 M-ORG 检 M-ORG 察 M-ORG 院 E-ORG 、 O 安 B-ORG 徽 M-ORG 省 M-ORG 经 M-ORG 济 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 任 O 职 O , O 现 O 任 O 公 B-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 安 B-ORG 徽 M-ORG 安 M-ORG 泰 M-ORG 达 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 合 M-TITLE 伙 M-TITLE 人 E-TITLE 。 O 葛 B-NAME 均 M-NAME 友 E-NAME 先 O 生 O , O 1 O 9 O 7 O 2 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 四 B-ORG 川 M-ORG 科 M-ORG 伦 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 执 B-TITLE 业 M-TITLE 药 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 上 B-ORG 海 M-ORG 延 M-ORG 安 M-ORG 制 M-ORG 药 M-ORG 厂 E-ORG 生 B-TITLE 产 M-TITLE 主 M-TITLE 管 E-TITLE , O 上 B-ORG 海 M-ORG 恒 M-ORG 寿 M-ORG 堂 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 技 M-TITLE 术 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 勃 M-ORG 林 M-ORG 格 M-ORG 殷 M-ORG 格 M-ORG 翰 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG G B-TITLE M M-TITLE P M-TITLE 监 M-TITLE 督 E-TITLE , O 浙 B-ORG 江 M-ORG 海 M-ORG 正 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 德 B-ORG 国 M-ORG R M-ORG A M-ORG T M-ORG I M-ORG O M-ORG P M-ORG H M-ORG A M-ORG R M-ORG M M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 亚 B-TITLE 太 M-TITLE 区 M-TITLE 质 M-TITLE 量 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 为 O 国 B-ORG 家 M-ORG 药 M-ORG 监 M-ORG 局 M-ORG 高 M-ORG 级 M-ORG 研 M-ORG 修 M-ORG 学 M-ORG 院 E-ORG 特 B-TITLE 聘 M-TITLE 教 M-TITLE 授 E-TITLE , O 四 B-ORG 川 M-ORG 省 M-ORG 医 M-ORG 药 M-ORG 质 M-ORG 量 M-ORG 管 M-ORG 理 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE , O 成 B-ORG 都 M-ORG 药 M-ORG 学 M-ORG 会 M-ORG 生 M-ORG 产 M-ORG 质 M-ORG 量 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 主 B-TITLE 任 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 6 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 质 B-TITLE 量 M-TITLE 总 M-TITLE 监 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 6 O 月 O 起 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 负 O 责 O 质 O 量 O 管 O 理 O 。 O 目 O 前 O 兼 O 任 O 成 B-ORG 都 M-ORG 青 M-ORG 山 M-ORG 利 M-ORG 康 M-ORG 药 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 四 B-ORG 川 M-ORG 科 M-ORG 伦 M-ORG 斗 M-ORG 山 M-ORG 生 M-ORG 物 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 田 B-NAME 承 M-NAME 明 E-NAME 先 O 生 O , O 男 O , O 中 B-LOC 国 M-LOC 台 M-LOC 湾 E-LOC , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 4 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 毕 O 业 O 于 O 台 B-ORG 湾 M-ORG 中 M-ORG 正 M-ORG 理 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 电 B-PRO 子 M-PRO 电 M-PRO 机 M-PRO 专 M-PRO 业 E-PRO 。 O 2 O 0 O 0 O 1 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 2 O 月 O 任 O 数 B-ORG 位 M-ORG 联 M-ORG 合 M-ORG 电 M-ORG 信 M-ORG ( M-ORG 台 M-ORG 湾 M-ORG 地 M-ORG 区 M-ORG ) E-ORG 事 B-TITLE 业 M-TITLE 群 M-TITLE 协 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 2 O 月 O 任 O 五 B-ORG 色 M-ORG 石 M-ORG 数 M-ORG 位 M-ORG 行 M-ORG 销 M-ORG ( M-ORG 台 M-ORG 湾 M-ORG 地 M-ORG 区 M-ORG ) E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 至 O 2 O 0 O 1 O 0 O 年 O 1 O 0 O 月 O 任 O 任 B-ORG 我 M-ORG 游 M-ORG 科 M-ORG 技 M-ORG 行 M-ORG 销 M-ORG ( M-ORG 台 M-ORG 湾 M-ORG 地 M-ORG 区 M-ORG ) E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 0 O 年 O 1 O 1 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 8 O 月 O 任 O 厦 B-ORG 门 M-ORG 华 M-ORG 日 M-ORG 通 M-ORG 软 M-ORG 件 E-ORG 技 B-TITLE 术 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 1 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 厦 B-ORG 门 M-ORG 三 M-ORG 五 M-ORG 互 M-ORG 联 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 朱 B-NAME 学 M-NAME 军 E-NAME , O 男 O , O 1 O 9 O 5 O 8 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 专 M-EDU 科 E-EDU 毕 O 业 O , O 历 O 任 O 江 B-ORG 西 M-ORG 齿 M-ORG 轮 M-ORG 箱 M-ORG 总 M-ORG 厂 E-ORG 主 B-TITLE 办 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 计 M-TITLE 划 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 中 B-ORG 外 M-ORG 合 M-ORG 作 M-ORG 江 M-ORG 西 M-ORG 江 M-ORG 凯 M-ORG 齿 M-ORG 轮 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 江 B-ORG 西 M-ORG 江 M-ORG 铃 M-ORG 齿 M-ORG 轮 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 江 B-ORG 西 M-ORG 江 M-ORG 铃 M-ORG 齿 M-ORG 轮 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 兼 O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 经 B-TITLE 营 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 江 B-ORG 铃 M-ORG 汽 M-ORG 车 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG V B-TITLE M M-TITLE 发 M-TITLE 动 M-TITLE 机 M-TITLE 项 M-TITLE 目 M-TITLE 指 M-TITLE 挥 M-TITLE 部 M-TITLE 财 M-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 江 B-ORG 铃 M-ORG 汽 M-ORG 车 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 财 M-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 兼 O 任 O 江 B-ORG 铃 M-ORG 集 M-ORG 团 M-ORG 改 M-ORG 装 M-ORG 车 M-ORG 总 M-ORG 厂 E-ORG 董 B-TITLE 事 E-TITLE 、 O 江 B-ORG 铃 M-ORG 汽 M-ORG 车 M-ORG 集 M-ORG 团 M-ORG 财 M-ORG 务 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 曹 B-NAME 海 M-NAME 峰 E-NAME 先 O 生 O : O 天 B-ORG 津 M-ORG 财 M-ORG 经 M-ORG 学 M-ORG 院 E-ORG 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 4 O 年 O 7 O 月 O , O 任 O 中 B-ORG 源 M-ORG 协 M-ORG 和 M-ORG 细 M-ORG 胞 M-ORG 基 M-ORG 因 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 管 B-NAME 一 M-NAME 民 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 出 O 生 O 于 O 1 O 9 O 5 O 0 O 年 O 4 O 月 O , O 本 B-EDU 科 E-EDU , O 会 B-TITLE 计 M-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE 。 O 曾 O 担 O 任 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 M-ORG 成 M-ORG 人 M-ORG 教 M-ORG 育 M-ORG 学 M-ORG 院 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 院 M-TITLE 长 E-TITLE 、 O 上 B-ORG 海 M-ORG 财 M-ORG 经 M-ORG 大 M-ORG 学 E-ORG 校 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 上 B-ORG 海 M-ORG 国 M-ORG 家 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 副 B-TITLE 院 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 资 M-ORG 产 M-ORG 评 M-ORG 估 M-ORG 协 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE 、 O 上 B-ORG 海 M-ORG 国 M-ORG 家 M-ORG 会 M-ORG 计 M-ORG 学 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 上 B-ORG 海 M-ORG 市 M-ORG 总 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 工 M-ORG 作 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 以 O 及 O 多 B-ORG 家 M-ORG 上 M-ORG 市 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 现 O 任 O 重 B-ORG 庆 M-ORG 博 M-ORG 腾 M-ORG 制 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 上 B-ORG 海 M-ORG 银 M-ORG 行 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 上 B-ORG 海 M-ORG 国 M-ORG 际 M-ORG 港 M-ORG 务 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 中 B-ORG 海 M-ORG 集 M-ORG 装 M-ORG 箱 M-ORG 运 M-ORG 输 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 以 O 及 O 天 B-ORG 津 M-ORG 创 M-ORG 业 M-ORG 环 M-ORG 保 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 上 B-ORG 海 M-ORG 复 M-ORG 星 M-ORG 医 M-ORG 药 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 付 B-NAME 万 M-NAME 君 E-NAME 先 O 生 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 5 O 9 O 年 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 洛 B-ORG 阳 M-ORG 轴 M-ORG 承 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 会 B-TITLE 计 M-TITLE 员 E-TITLE 、 O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 会 B-TITLE 计 M-TITLE 师 E-TITLE 、 O 财 B-TITLE 会 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 会 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE , O 洛 B-ORG 阳 M-ORG 轴 M-ORG 研 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 证 M-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 资 B-TITLE 产 M-TITLE 建 M-TITLE 管 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 公 B-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 丁 B-NAME 文 M-NAME 艺 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 4 O 年 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 1 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 四 B-ORG 川 M-ORG 省 M-ORG 射 M-ORG 洪 M-ORG 县 M-ORG 太 M-ORG 和 M-ORG 一 M-ORG 小 E-ORG 教 B-TITLE 导 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 射 B-ORG 洪 M-ORG 县 M-ORG 教 M-ORG 委 E-ORG 语 B-TITLE 文 M-TITLE 教 M-TITLE 研 M-TITLE 员 E-TITLE 、 O 射 B-ORG 洪 M-ORG 县 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG 行 B-TITLE 政 M-TITLE 办 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 党 B-TITLE 办 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 现 O 任 O 射 B-ORG 洪 M-ORG 县 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG 党 B-TITLE 组 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 局 B-TITLE 长 E-TITLE 钟 B-NAME 荣 M-NAME 光 E-NAME , O 男 O , O 国 O 籍 O 新 B-CONT 加 M-CONT 坡 E-CONT , O 1 O 9 O 8 O 0 O 年 O 毕 O 业 O 于 O 英 B-ORG 国 M-ORG 特 M-ORG 许 M-ORG 秘 M-ORG 书 M-ORG 学 M-ORG 院 E-ORG , O 并 O 拥 O 有 O 英 B-ORG 国 M-ORG S M-ORG h M-ORG e M-ORG f M-ORG f M-ORG i M-ORG e M-ORG l M-ORG d M-ORG H M-ORG a M-ORG l M-ORG l M-ORG a M-ORG m M-ORG 大 M-ORG 学 E-ORG 商 B-PRO 业 M-PRO 管 M-PRO 理 E-PRO 文 O 凭 O 。 O 1 O 9 O 9 O 6 O 年 O 升 O 为 O 英 B-ORG 国 M-ORG 特 M-ORG 许 M-ORG 秘 M-ORG 书 M-ORG 学 M-ORG 院 E-ORG 高 B-TITLE 级 M-TITLE 会 M-TITLE 员 E-TITLE 。 O 现 O 任 O 新 B-ORG 加 M-ORG 坡 M-ORG 金 M-ORG 狮 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 金 B-ORG 狮 M-ORG 金 M-ORG 属 M-ORG 工 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 雅 O 加 O 达 O 证 O 交 O 所 O 上 O 市 O 公 O 司 O ) O 、 O 朱 B-ORG 古 M-ORG 力 M-ORG 产 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 马 O 来 O 西 O 亚 O 证 O 交 O 所 O 上 O 市 O 公 O 司 O ) O 、 O 新 B-ORG 加 M-ORG 坡 M-ORG 金 M-ORG 狮 M-ORG 亚 M-ORG 太 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG ( O 新 O 加 O 坡 O 证 O 交 O 所 O 上 O 市 O 公 O 司 O ) O 常 B-TITLE 务 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 浙 B-ORG 江 M-ORG 钱 M-ORG 江 M-ORG 摩 M-ORG 托 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 石 B-NAME 红 M-NAME 艳 E-NAME , O 女 O , O 1 O 9 O 6 O 9 O 年 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU 。 O 2 O 0 O 0 O 0 O 年 O 9 O 月 O 至 O 今 O 任 O 红 B-ORG 珠 M-ORG 山 M-ORG 宾 M-ORG 馆 M-ORG 分 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE ; O 2 O 0 O 0 O 3 O 年 O 1 O 1 O 月 O 至 O 今 O 任 O 峨 B-ORG 眉 M-ORG 山 M-ORG 旅 M-ORG 游 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 刘 B-NAME 马 M-NAME 克 E-NAME , O 男 O , O 澳 B-LOC 洲 M-LOC 国 M-LOC 籍 E-LOC , O 学 B-EDU 士 E-EDU 。 O 历 O 任 O 香 B-ORG 港 M-ORG 五 M-ORG 矿 M-ORG 资 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 兼 O 中 B-ORG 国 M-ORG 五 M-ORG 矿 M-ORG 有 M-ORG 色 M-ORG 集 M-ORG 团 E-ORG 业 B-TITLE 务 M-TITLE 发 M-TITLE 展 M-TITLE 资 M-TITLE 深 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE , O 澳 B-ORG 洲 M-ORG M M-ORG M M-ORG G M-ORG 金 M-ORG 属 M-ORG 矿 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 股 B-TITLE 东 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 现 O 任 O 东 B-ORG 方 M-ORG 集 M-ORG 团 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 东 B-ORG 方 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 总 B-TITLE 裁 E-TITLE 。 O 李 B-NAME 云 M-NAME 章 E-NAME 先 O 生 O , O 1 O 9 O 5 O 7 O 年 O 7 O 月 O 出 O 生 O , O 助 B-TITLE 理 M-TITLE 研 M-TITLE 究 M-TITLE 员 E-TITLE , O 硕 B-EDU 士 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 浦 B-ORG 东 M-ORG 新 M-ORG 区 M-ORG 经 M-ORG 济 M-ORG 贸 M-ORG 易 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE , O 上 B-ORG 海 M-ORG 外 M-ORG 高 M-ORG 桥 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE , O 现 O 任 O 上 B-ORG 海 M-ORG 外 M-ORG 高 M-ORG 桥 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 杨 B-NAME 建 M-NAME 萍 E-NAME 女 O 士 O , O 1 O 9 O 6 O 3 O 年 O 1 O 0 O 月 O 生 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 职 O 称 O , O 2 O 0 O 0 O 8 O 年 O 至 O 2 O 0 O 1 O 1 O 年 O 任 O 职 O 于 O E B-ORG A M-ORG S M-ORG T M-ORG P M-ORG U M-ORG F M-ORG F M-ORG I M-ORG N M-ORG 石 M-ORG 油 M-ORG 勘 M-ORG 探 M-ORG 公 M-ORG 司 E-ORG ; O 2 O 0 O 1 O 1 O 年 O 至 O 2 O 0 O 1 O 2 O 年 O 任 O 职 O 于 O 中 B-ORG 冶 M-ORG 纸 M-ORG 业 M-ORG 集 M-ORG 团 E-ORG 担 O 任 O 贸 B-TITLE 易 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 起 O 加 O 入 O 深 B-ORG 圳 M-ORG 键 M-ORG 桥 M-ORG 通 M-ORG 讯 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 现 O 担 O 任 O 深 B-ORG 圳 M-ORG 键 M-ORG 桥 M-ORG 通 M-ORG 讯 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 白 B-NAME 有 M-NAME 忠 E-NAME 先 O 生 O , O 1 O 9 O 4 O 1 O 年 O 出 O 生 O , O 1 O 9 O 6 O 5 O 年 O 毕 O 业 O 于 O 中 B-ORG 央 M-ORG 民 M-ORG 族 M-ORG 学 M-ORG 院 M-ORG 政 M-ORG 法 M-ORG 系 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 执 B-TITLE 业 M-TITLE 律 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 5 O 月 O 至 O 今 O , O 任 O 广 B-ORG 东 M-ORG 逸 M-ORG 生 M-ORG 律 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 顾 B-TITLE 问 E-TITLE 、 O 执 B-TITLE 业 M-TITLE 律 M-TITLE 师 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 5 O 月 O , O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 王 B-NAME 苏 M-NAME 生 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 9 O 年 O 3 O 月 O 9 O 日 O 出 O 生 O , O 法 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU 、 O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 中 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 律 B-TITLE 师 E-TITLE 、 O 美 B-TITLE 国 M-TITLE 注 M-TITLE 册 M-TITLE 金 M-TITLE 融 M-TITLE 分 M-TITLE 析 M-TITLE 师 E-TITLE ( O C O F O A O ) O 。 O 历 O 任 O 深 B-ORG 圳 M-ORG 经 M-ORG 济 M-ORG 特 M-ORG 区 M-ORG 证 M-ORG 券 M-ORG 公 M-ORG 司 M-ORG 罗 M-ORG 湖 M-ORG 营 M-ORG 业 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 蔚 B-ORG 深 M-ORG 证 M-ORG 券 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 M-ORG 武 M-ORG 汉 M-ORG 营 M-ORG 业 M-ORG 部 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 处 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE , O 国 B-ORG 家 M-ORG 开 M-ORG 发 M-ORG 银 M-ORG 行 M-ORG 中 M-ORG 瑞 M-ORG 创 M-ORG 业 M-ORG 投 M-ORG 资 M-ORG 基 M-ORG 金 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 3 O 年 O 至 O 今 O 任 O 哈 B-ORG 尔 M-ORG 滨 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 深 M-ORG 圳 M-ORG 研 M-ORG 究 M-ORG 生 M-ORG 院 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 雷 M-ORG 柏 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 蒲 B-NAME 承 M-NAME 民 E-NAME : O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 先 O 后 O 任 O 职 O 于 O 西 B-ORG 安 M-ORG 市 M-ORG 财 M-ORG 政 M-ORG 局 E-ORG 、 O 税 B-ORG 务 M-ORG 局 E-ORG 、 O 财 B-ORG 政 M-ORG 部 M-ORG 驻 M-ORG 陕 M-ORG 监 M-ORG 察 M-ORG 专 M-ORG 员 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG , O 并 O 曾 O 兼 O 任 O 西 B-ORG 安 M-ORG 市 M-ORG 商 M-ORG 业 M-ORG 银 M-ORG 行 E-ORG 董 B-TITLE 事 E-TITLE 、 O 监 B-TITLE 事 E-TITLE 。 O 现 O 任 O 西 B-ORG 安 M-ORG 市 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 。 O 阿 B-NAME 肖 M-NAME 克 M-NAME · M-NAME 阿 M-NAME 格 M-NAME 瓦 E-NAME 先 O 生 O , O 印 B-LOC 度 M-LOC 人 E-LOC , O 印 B-CONT 度 M-CONT 国 M-CONT 籍 E-CONT , O M B-EDU B M-EDU A E-EDU ( O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU ) O 。 O 现 O 在 O 米 B-ORG 塔 M-ORG 尔 M-ORG 钢 M-ORG 铁 M-ORG 特 M-ORG 米 M-ORG 它 M-ORG 公 M-ORG 司 M-ORG ( M-ORG 哈 M-ORG 萨 M-ORG 克 M-ORG 斯 M-ORG 坦 M-ORG ) E-ORG 任 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 负 O 责 O 钢 O 铁 O 、 O 煤 O 炭 O 、 O 焦 O 炭 O 、 O 铁 O 矿 O 石 O 等 O 部 O 门 O 的 O M O I O C O ( O 管 O 理 O 信 O 息 O 系 O 统 O ) O 、 O 成 O 本 O 预 O 算 O 和 O 成 O 本 O 控 O 制 O 工 O 作 O 。 O 邹 B-NAME 健 M-NAME 中 E-NAME : O 男 O , O 中 B-LOC 国 M-LOC 台 M-LOC 湾 M-LOC 居 M-LOC 民 E-LOC , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 5 O 5 O 年 O 出 O 生 O , O 毕 O 业 O 于 O 台 B-ORG 北 M-ORG 东 M-ORG 吴 M-ORG 大 M-ORG 学 M-ORG 中 M-ORG 文 M-ORG 系 E-ORG 。 O 历 O 任 O 宁 B-ORG 波 M-ORG 艾 M-ORG 迪 M-ORG 西 M-ORG 国 M-ORG 际 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 E-TITLE , O 艾 B-ORG 迪 M-ORG 西 M-ORG 铜 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 汉 B-ORG 禹 M-ORG 卫 M-ORG 浴 M-ORG 用 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 台 B-ORG 州 M-ORG 艾 M-ORG 迪 M-ORG 西 M-ORG 盛 M-ORG 大 M-ORG 软 M-ORG 管 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE ; O 现 O 任 O 浙 B-ORG 江 M-ORG 艾 M-ORG 迪 M-ORG 西 M-ORG 流 M-ORG 体 M-ORG 控 M-ORG 制 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 兼 O 任 O 宁 B-ORG 波 M-ORG 艾 M-ORG 迪 M-ORG 西 M-ORG 国 M-ORG 际 M-ORG 贸 M-ORG 易 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 邹 B-NAME 健 M-NAME 中 E-NAME 从 O 2 O 0 O 1 O 4 O 年 O 8 O 月 O 1 O 9 O 日 O 起 O 不 O 再 O 担 O 任 O 浙 B-ORG 江 M-ORG 艾 M-ORG 迪 M-ORG 西 M-ORG 流 M-ORG 体 M-ORG 控 M-ORG 制 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 职 O 务 O 。 O 韩 B-NAME 雪 E-NAME : O 女 O , O 1 O 9 O 7 O 0 O 年 O 9 O 月 O 出 O 生 O , O 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 曾 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 友 M-ORG 信 M-ORG 达 M-ORG 通 M-ORG 讯 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 广 M-ORG 播 M-ORG 电 M-ORG 影 M-ORG 电 M-ORG 视 M-ORG 集 M-ORG 团 M-ORG 深 M-ORG 视 M-ORG 传 M-ORG 媒 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 上 O 市 O 公 O 司 O 深 B-ORG 圳 M-ORG 市 M-ORG 齐 M-ORG 心 M-ORG 文 M-ORG 具 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 3 O 年 O 8 O 月 O 1 O 5 O 日 O 起 O 任 O 北 B-ORG 海 M-ORG 国 M-ORG 发 M-ORG 海 M-ORG 洋 M-ORG 生 M-ORG 物 M-ORG 产 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 韩 B-NAME 江 M-NAME 龙 E-NAME , O 男 O , O 1 O 9 O 6 O 5 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 E-EDU 毕 O 业 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 7 O 年 O 毕 O 业 O 于 O 江 B-ORG 苏 M-ORG 化 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 。 O 1 O 9 O 8 O 7 O 年 O 参 O 加 O 工 O 作 O , O 先 O 后 O 担 O 任 O 过 O 连 B-ORG 云 M-ORG 港 M-ORG 市 M-ORG 电 M-ORG 子 M-ORG 器 M-ORG 材 M-ORG 厂 E-ORG 副 B-TITLE 科 M-TITLE 长 E-TITLE 、 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 厂 B-TITLE 长 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 连 B-ORG 云 M-ORG 港 M-ORG 华 M-ORG 威 M-ORG 电 M-ORG 子 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 销 B-TITLE 售 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 连 B-ORG 云 M-ORG 港 M-ORG 中 M-ORG 电 M-ORG 华 M-ORG 威 M-ORG 电 M-ORG 子 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 江 B-ORG 苏 M-ORG 长 M-ORG 电 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 一 M-TITLE 届 M-TITLE 董 M-TITLE 事 M-TITLE 会 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 韩 B-NAME 江 M-NAME 龙 E-NAME 先 O 生 O 1 O 9 O 9 O 5 O 年 O 被 O 连 B-ORG 云 M-ORG 港 M-ORG 市 M-ORG 政 M-ORG 府 E-ORG 评 O 为 O ″ O 企 O 业 O 技 O 术 O 进 O 步 O 优 O 秀 O 工 O 作 O 者 O ″ O , O 其 O 主 O 持 O 的 O ″ O K O L O - O 1 O 0 O 0 O 0 O F O 快 O 速 O 固 O 化 O 环 O 氧 O 模 O 塑 O 料 O ″ O 被 O 江 O 苏 O 省 O 科 O 委 O 授 O 予 O 科 O 技 O 进 O 步 O 三 O 等 O 奖 O 。 O 周 B-NAME 耀 M-NAME 良 E-NAME : O 男 O , O 1 O 9 O 6 O 3 O 出 O 生 O , O 文 O 化 O 程 O 度 O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU 。 O 历 O 任 O 深 B-ORG 圳 M-ORG 大 M-ORG 龙 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 软 B-TITLE 件 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 深 B-ORG 圳 M-ORG 罗 M-ORG 湖 M-ORG 工 M-ORG 业 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 小 B-TITLE 型 M-TITLE 机 M-TITLE 部 M-TITLE 软 M-TITLE 件 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 经 B-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 创 M-ORG 思 M-ORG 科 M-ORG 技 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 交 M-ORG 大 M-ORG 国 M-ORG 飞 M-ORG 集 M-ORG 团 E-ORG 投 B-TITLE 资 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 交 M-ORG 大 M-ORG 顶 M-ORG 峰 M-ORG 科 M-ORG 技 M-ORG 创 M-ORG 业 M-ORG 经 M-ORG 营 M-ORG 管 M-ORG 理 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 经 M-TITLE 理 E-TITLE , O 深 B-ORG 圳 M-ORG 兰 M-ORG 光 M-ORG 电 M-ORG 子 M-ORG 集 M-ORG 团 E-ORG 技 B-TITLE 术 M-TITLE 总 M-TITLE 监 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 周 B-NAME 兆 M-NAME 雪 E-NAME 女 O 士 O , O 1 O 9 O 8 O 3 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 安 B-ORG 徽 M-ORG 省 M-ORG 德 M-ORG 力 M-ORG 玻 M-ORG 璃 M-ORG 器 M-ORG 皿 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 会 M-TITLE 计 E-TITLE 。 O 现 O 任 O 安 B-ORG 徽 M-ORG 德 M-ORG 力 M-ORG 日 M-ORG 用 M-ORG 玻 M-ORG 璃 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 安 B-ORG 徽 M-ORG 德 M-ORG 力 M-ORG 日 M-ORG 用 M-ORG 玻 M-ORG 璃 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 温 B-NAME 萍 E-NAME : O 女 O , O 1 O 9 O 5 O 6 O 年 O 3 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 助 B-TITLE 理 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 7 O 7 O 年 O 开 O 始 O 从 O 事 O 工 B-TITLE 业 M-TITLE 企 M-TITLE 业 M-TITLE 出 M-TITLE 纳 E-TITLE 、 O 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE 等 O 财 O 务 O 工 O 作 O , O 熟 O 练 O 掌 O 握 O 财 O 务 O 核 O 算 O 方 O 法 O 及 O 业 O 务 O 知 O 识 O , O 曾 O 任 O 鞍 B-ORG 重 M-ORG 机 M-ORG 器 M-ORG 厂 E-ORG 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 鞍 B-TITLE 山 M-TITLE 市 M-TITLE 立 M-TITLE 山 M-TITLE 区 M-TITLE 政 M-TITLE 协 M-TITLE 委 M-TITLE 员 E-TITLE 现 O 任 O 公 B-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 鞍 B-TITLE 山 M-TITLE 市 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 吴 B-NAME 贵 M-NAME 槐 E-NAME 先 O 生 O : O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 3 O 年 O 7 O 月 O 参 O 加 O 工 O 作 O , O 历 O 任 O 浙 B-ORG 江 M-ORG 省 M-ORG 财 M-ORG 政 M-ORG 厅 E-ORG 商 B-TITLE 贸 M-TITLE 财 M-TITLE 务 M-TITLE 处 M-TITLE 办 M-TITLE 事 M-TITLE 员 E-TITLE 、 O 科 B-TITLE 员 E-TITLE , O 浙 B-ORG 江 M-ORG 省 M-ORG 能 M-ORG 源 M-ORG 原 M-ORG 材 M-ORG 料 M-ORG 开 M-ORG 发 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 业 B-TITLE 务 M-TITLE 员 E-TITLE , O 省 B-TITLE 经 M-TITLE 建 M-TITLE 投 M-TITLE 业 M-TITLE 务 M-TITLE 员 E-TITLE 、 O 项 B-TITLE 目 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 资 B-TITLE 产 M-TITLE 管 M-TITLE 理 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 省 B-ORG 经 M-ORG 建 M-ORG 投 E-ORG 干 B-TITLE 部 E-TITLE 。 O 毛 B-NAME 幼 M-NAME 平 E-NAME 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 一 O 。 O 教 O 育 O 背 O 景 O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 二 O 。 O 工 O 作 O 简 O 历 O 1 O 9 O 9 O 2 O - O 1 O 9 O 9 O 7 O 天 B-ORG 津 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 部 B-TITLE 长 E-TITLE 1 O 9 O 9 O 7 O - O 1 O 9 O 9 O 9 O 天 B-ORG 津 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 实 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 副 B-TITLE 书 M-TITLE 记 E-TITLE 1 O 9 O 9 O 9 O - O 2 O 0 O 0 O 4 O 天 B-ORG 津 M-ORG 泰 M-ORG 达 M-ORG 建 M-ORG 设 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 2 O 0 O 0 O 4 O . O 1 O 2 O 至 O 今 O 天 B-ORG 津 M-ORG 泰 M-ORG 达 M-ORG 建 M-ORG 设 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 兼 O 任 O 天 B-ORG 津 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 杨 B-NAME 春 M-NAME 山 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 6 O 3 O 年 O 3 O 月 O 出 O 生 O , O 甘 B-LOC 肃 M-LOC 省 M-LOC 兰 M-LOC 州 M-LOC 市 M-LOC 人 E-LOC , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 4 O 年 O 8 O 月 O 毕 O 业 O 于 O 甘 B-ORG 肃 M-ORG 工 M-ORG 业 M-ORG 大 M-ORG 学 M-ORG 自 M-ORG 动 M-ORG 控 M-ORG 制 M-ORG 系 E-ORG 工 B-PRO 业 M-PRO 电 M-PRO 气 M-PRO 自 M-PRO 动 M-PRO 化 M-PRO 专 M-PRO 业 E-PRO , O 获 O 工 B-PRO 学 E-PRO 学 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 2 O 0 O 0 O 8 O 年 O 1 O 0 O 月 O 毕 O 业 O 于 O 西 B-ORG 安 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 工 M-ORG 商 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG E B-PRO M M-PRO B M-PRO A M-PRO 专 M-PRO 业 E-PRO , O 获 O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU 。 O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 今 O 任 O 电 B-ORG 工 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 法 B-TITLE 定 M-TITLE 代 M-TITLE 表 M-TITLE 人 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 今 O 任 O 长 B-ORG 城 M-ORG 电 M-ORG 工 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE ; O 2 O 0 O 1 O 0 O 年 O 1 O 月 O 至 O 今 O 任 O 长 B-ORG 城 M-ORG 电 M-ORG 工 E-ORG 董 B-TITLE 事 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 3 O 月 O 至 O 今 O 兼 O 任 O 天 B-ORG 电 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 申 B-NAME 小 M-NAME 林 E-NAME 先 O 生 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 博 B-EDU 士 E-EDU 。 O 现 O 任 O 天 B-ORG 津 M-ORG 泰 M-ORG 达 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE ; O 兼 O 任 O 泰 B-ORG 达 M-ORG 股 M-ORG 权 M-ORG 投 M-ORG 资 M-ORG 基 M-ORG 金 E-ORG 、 O 上 B-ORG 海 M-ORG 泰 M-ORG 达 M-ORG 投 M-ORG 资 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 滨 B-ORG 海 M-ORG 电 M-ORG 力 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE , O 泰 B-ORG 达 M-ORG 国 M-ORG 际 E-ORG 、 O 渤 B-ORG 海 M-ORG 银 M-ORG 行 E-ORG 、 O 北 B-ORG 方 M-ORG 信 M-ORG 托 E-ORG 、 O 长 B-ORG 江 M-ORG 证 M-ORG 券 E-ORG 、 O 滨 B-ORG 海 M-ORG 投 M-ORG 资 E-ORG 董 B-TITLE 事 E-TITLE ; O 兼 O 任 O 中 B-ORG 国 M-ORG 国 M-ORG 际 M-ORG 经 M-ORG 济 M-ORG 技 M-ORG 术 M-ORG 合 M-ORG 作 M-ORG 促 M-ORG 进 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE , O 中 B-ORG 国 M-ORG 技 M-ORG 术 M-ORG 经 M-ORG 济 M-ORG 学 M-ORG 会 E-ORG 理 B-TITLE 事 E-TITLE , O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 校 M-ORG 友 M-ORG 总 M-ORG 会 M-ORG 房 M-ORG 地 M-ORG 产 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 金 B-ORG 融 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 清 B-ORG 华 M-ORG 天 M-ORG 津 E-ORG 金 B-TITLE 融 M-TITLE 投 M-TITLE 资 M-TITLE 与 M-TITLE 地 M-TITLE 产 M-TITLE 协 M-TITLE 会 M-TITLE 会 M-TITLE 长 E-TITLE 等 O 社 O 会 O 学 O 术 O 职 O 务 O ; O 曾 O 任 O 国 B-ORG 家 M-ORG 冶 M-ORG 金 M-ORG 工 M-ORG 业 M-ORG 部 M-ORG 经 M-ORG 济 M-ORG 发 M-ORG 展 M-ORG 研 M-ORG 究 M-ORG 中 M-ORG 心 E-ORG 经 B-TITLE 济 M-TITLE 师 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 首 B-ORG 钢 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 计 B-TITLE 划 M-TITLE 与 M-TITLE 财 M-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-ORG 央 M-ORG 企 M-ORG 业 M-ORG 工 M-ORG 委 E-ORG / O 国 B-ORG 务 M-ORG 院 M-ORG 国 M-ORG 资 M-ORG 委 M-ORG 国 M-ORG 有 M-ORG 重 M-ORG 点 M-ORG 大 M-ORG 型 M-ORG 企 M-ORG 业 M-ORG 监 M-ORG 事 M-ORG 会 E-ORG 专 B-TITLE 职 M-TITLE 监 M-TITLE 事 E-TITLE , O 泰 B-ORG 达 M-ORG 国 M-ORG 际 M-ORG 酒 M-ORG 店 M-ORG 集 M-ORG 团 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 易 B-NAME 武 E-NAME , O 男 O , O 1 O 9 O 6 O 3 O 年 O 2 O 月 O 生 O , O 湖 B-LOC 南 M-LOC 醴 M-LOC 陵 M-LOC 人 E-LOC , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 1 O 9 O 8 O 3 O 年 O 8 O 月 O 至 O 1 O 9 O 8 O 5 O 年 O 1 O 2 O 月 O , O 湖 B-ORG 南 M-ORG 省 M-ORG 地 M-ORG 矿 M-ORG 局 M-ORG 4 M-ORG 7 M-ORG 3 M-ORG 队 E-ORG 计 B-TITLE 财 M-TITLE 科 M-TITLE 会 M-TITLE 计 E-TITLE ; O 1 O 9 O 8 O 6 O 年 O 1 O 月 O 至 O 1 O 9 O 9 O 2 O 年 O 7 O 月 O , O 湖 B-ORG 南 M-ORG 省 M-ORG 遥 M-ORG 感 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE ; O 1 O 9 O 9 O 2 O 年 O 7 O 月 O 至 O 1 O 9 O 9 O 8 O 年 O 9 O 月 O , O 海 B-ORG 南 M-ORG 水 M-ORG 文 M-ORG 地 M-ORG 质 M-ORG 工 M-ORG 程 M-ORG 地 M-ORG 质 M-ORG 勘 M-ORG 察 M-ORG 院 E-ORG 计 B-TITLE 财 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 科 B-TITLE 长 E-TITLE 、 O 院 B-TITLE 总 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 9 O 月 O 至 O 今 O 在 O 广 B-ORG 州 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 国 M-ORG 有 M-ORG 资 M-ORG 产 M-ORG 监 M-ORG 督 M-ORG 管 M-ORG 理 M-ORG 办 M-ORG 公 M-ORG 室 E-ORG 工 O 作 O , O 先 O 后 O 受 O 派 O 任 O 广 B-ORG 州 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 工 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 、 O 广 B-ORG 州 M-ORG 开 M-ORG 发 M-ORG 区 M-ORG 建 M-ORG 设 M-ORG 发 M-ORG 展 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 广 B-ORG 州 M-ORG 凯 M-ORG 得 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 周 B-NAME 桂 M-NAME 泉 E-NAME , O 男 O , O 1 O 9 O 5 O 5 O 年 O 8 O 月 O 生 O , O 宝 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 监 B-TITLE 察 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 宝 B-ORG 山 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 周 S-NAME 先 O 生 O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU 。 O 周 S-NAME 先 O 生 O 在 O 人 O 力 O 资 O 源 O 管 O 理 O 、 O 纪 O 检 O 监 O 察 O 管 O 理 O 方 O 面 O 具 O 有 O 较 O 丰 O 富 O 的 O 经 O 验 O , O 1 O 9 O 8 O 3 O 年 O 8 O 月 O 加 O 入 O 宝 B-ORG 钢 E-ORG , O 历 O 任 O 宝 B-ORG 钢 E-ORG 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 宝 B-ORG 山 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 察 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 宝 B-ORG 钢 M-ORG 热 M-ORG 轧 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 宝 B-ORG 山 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 三 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 现 O 任 O 宝 B-ORG 钢 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 纪 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 监 B-TITLE 察 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 4 O 月 O 起 O 任 O 宝 B-ORG 山 M-ORG 钢 M-ORG 铁 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 第 B-TITLE 四 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 曹 B-NAME 国 M-NAME 华 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 1 O 9 O 6 O 2 O 年 O 4 O 月 O 2 O 0 O 日 O 生 O , O 江 B-LOC 西 M-LOC 九 M-LOC 江 M-LOC 市 M-LOC 人 E-LOC 。 O 1 O 9 O 8 O 3 O 年 O 7 O 月 O 毕 O 业 O 于 O 中 B-ORG 南 M-ORG 大 M-ORG 学 M-ORG 化 M-ORG 学 M-ORG 系 E-ORG 。 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 江 B-ORG 西 M-ORG 九 M-ORG 江 M-ORG 有 M-ORG 色 M-ORG 金 M-ORG 属 M-ORG 冶 M-ORG 炼 M-ORG 厂 E-ORG 车 B-TITLE 间 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 厂 B-TITLE 办 M-TITLE 副 M-TITLE 主 M-TITLE 任 E-TITLE ; O 有 B-ORG 色 M-ORG 昆 M-ORG 明 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 调 M-TITLE 研 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 投 B-TITLE 资 M-TITLE 经 M-TITLE 营 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE ; O 云 B-ORG 南 M-ORG 铜 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE ; O 中 B-ORG 国 M-ORG 铜 M-ORG 铅 M-ORG 锌 M-ORG 集 M-ORG 团 E-ORG 铜 B-TITLE 镍 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE ; O 墨 B-ORG 江 M-ORG 生 M-ORG 物 M-ORG 镍 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 云 B-ORG 锡 M-ORG 元 M-ORG 江 M-ORG 镍 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 吴 B-NAME 光 E-NAME , O 男 O , O 汉 B-RACE 族 E-RACE , O 1 O 9 O 5 O 8 O 年 O 4 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 教 B-TITLE 授 E-TITLE ( O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE ) O 。 O 1 O 9 O 8 O 2 O 年 O 毕 O 业 O 于 O 西 B-ORG 南 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 铁 M-ORG 道 M-ORG 工 M-ORG 程 M-ORG 系 E-ORG , O 1 O 9 O 8 O 4 O 年 O 获 O 西 B-ORG 南 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 航 M-ORG 地 M-ORG 系 E-ORG 工 B-PRO 学 E-PRO 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 1 O 9 O 9 O 0 O 年 O 获 O 中 B-ORG 国 M-ORG 地 M-ORG 质 M-ORG 大 M-ORG 学 M-ORG 水 M-ORG 土 M-ORG 系 E-ORG 工 B-PRO 学 E-PRO 博 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 1 O 9 O 9 O 7 O 年 O 赴 O 英 B-ORG 国 M-ORG H M-ORG U M-ORG L M-ORG L M-ORG 大 M-ORG 学 E-ORG 研 O 修 O 环 B-PRO 境 M-PRO 管 M-PRO 理 M-PRO 学 E-PRO 。 O 1 O 9 O 9 O 8 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 4 O 年 O 5 O 月 O 在 O 西 B-ORG 南 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 任 O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 导 E-TITLE 、 O 教 B-TITLE 务 M-TITLE 处 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 软 B-TITLE 件 M-TITLE 学 M-TITLE 院 M-TITLE 院 M-TITLE 长 E-TITLE 、 O 生 B-TITLE 物 M-TITLE 工 M-TITLE 程 M-TITLE 系 M-TITLE 主 M-TITLE 任 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 6 O 月 O 至 O 2 O 0 O 0 O 5 O 年 O 2 O 月 O 在 O 西 B-ORG 南 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 任 O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 导 E-TITLE 、 O 政 B-TITLE 策 M-TITLE 法 M-TITLE 规 M-TITLE 所 M-TITLE 所 M-TITLE 长 E-TITLE 、 O 软 B-TITLE 件 M-TITLE 学 M-TITLE 院 M-TITLE 院 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 5 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 在 O 成 B-ORG 都 M-ORG 大 M-ORG 学 E-ORG 任 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 校 B-TITLE 长 E-TITLE , O 2 O 0 O 0 O 8 O 年 O 至 O 今 O 在 O 西 B-ORG 南 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 E-ORG 任 O 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 导 E-TITLE 。 O 2 O 0 O 0 O 5 O 年 O 8 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 1 O 0 O 月 O 在 O 中 B-ORG 铁 M-ORG 二 M-ORG 局 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 担 O 任 O 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 徐 B-NAME 焕 M-NAME 俊 E-NAME , O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 5 O 3 O 年 O 7 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE 。 O 历 O 任 O 陆 B-ORG 军 M-ORG 第 M-ORG 二 M-ORG 十 M-ORG 八 M-ORG 军 M-ORG 炮 M-ORG 兵 M-ORG 团 E-ORG 营 B-TITLE 长 E-TITLE , O 南 B-ORG 京 M-ORG 军 M-ORG 区 E-ORG 舟 B-TITLE 桥 M-TITLE 旅 M-TITLE 正 M-TITLE 营 M-TITLE 职 M-TITLE 参 M-TITLE 谋 E-TITLE , O 南 B-ORG 通 M-ORG 港 M-ORG 口 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 物 B-TITLE 资 M-TITLE 供 M-TITLE 应 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE , O 江 B-ORG 苏 M-ORG 金 M-ORG 通 M-ORG 灵 M-ORG 风 M-ORG 机 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 兼 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 6 O 月 O 起 O 任 O 江 B-ORG 苏 M-ORG 金 M-ORG 通 M-ORG 灵 M-ORG 流 M-ORG 体 M-ORG 机 M-ORG 械 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 兼 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 现 O 任 O 江 B-ORG 苏 M-ORG 金 M-ORG 通 M-ORG 灵 M-ORG 流 M-ORG 体 M-ORG 机 M-ORG 械 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 戴 B-NAME 青 E-NAME 先 O 生 O : O 董 B-TITLE 事 E-TITLE , O 1 O 9 O 6 O 5 O 年 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O 。 O 曾 O 就 O 职 O 于 O 四 B-ORG 川 M-ORG 省 M-ORG 农 M-ORG 机 M-ORG 供 M-ORG 销 M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 、 O 四 B-ORG 川 M-ORG 科 M-ORG 贸 M-ORG 农 M-ORG 机 M-ORG 公 M-ORG 司 E-ORG , O 曾 O 任 O 成 B-ORG 都 M-ORG 通 M-ORG 迪 M-ORG 金 M-ORG 属 M-ORG 材 M-ORG 料 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 四 B-ORG 川 M-ORG 省 M-ORG 佳 M-ORG 炜 M-ORG 物 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 江 B-ORG 苏 M-ORG 通 M-ORG 光 M-ORG 电 M-ORG 子 M-ORG 线 M-ORG 缆 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 龙 B-NAME 泉 E-NAME : O 男 O , O 1 O 9 O 7 O 2 O 年 O 8 O 月 O 出 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 中 B-ORG 电 M-ORG 投 M-ORG 远 M-ORG 达 M-ORG 环 M-ORG 保 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 董 B-TITLE 事 E-TITLE 。 O 现 O 任 O 中 B-ORG 电 M-ORG 投 M-ORG 远 M-ORG 达 M-ORG 环 M-ORG 保 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 朱 B-NAME 天 M-NAME 培 E-NAME : O 男 O , O 出 O 生 O 于 O 1 O 9 O 3 O 7 O 年 O , O 曾 O 在 O 中 B-ORG 国 M-ORG 科 M-ORG 学 M-ORG 院 M-ORG 长 M-ORG 春 M-ORG 应 M-ORG 用 M-ORG 化 M-ORG 学 M-ORG 所 E-ORG 从 O 事 O 稀 O 土 O 化 O 学 O 及 O 稀 O 土 O 在 O 激 O 光 O 材 O 料 O 上 O 的 O 应 O 用 O 等 O 研 O 究 O 工 O 作 O 和 O 科 O 研 O 组 O 织 O 工 O 作 O , O 先 O 后 O 担 O 任 O 助 B-TITLE 研 E-TITLE 、 O 副 B-TITLE 研 E-TITLE 、 O 研 B-TITLE 究 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 所 B-TITLE 学 M-TITLE 术 M-TITLE 委 M-TITLE 员 E-TITLE 等 O 职 O 务 O ; O 赴 O 美 B-ORG 国 M-ORG 休 M-ORG 斯 M-ORG 敦 M-ORG 大 M-ORG 学 E-ORG 作 O 访 B-TITLE 问 M-TITLE 学 M-TITLE 者 E-TITLE ; O 曾 O 历 O 任 O 深 B-ORG 圳 M-ORG 科 M-ORG 技 M-ORG 工 M-ORG 业 M-ORG 园 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 兼 O 发 B-TITLE 展 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 人 M-ORG 民 M-ORG 政 M-ORG 府 M-ORG 经 M-ORG 济 M-ORG 发 M-ORG 展 M-ORG 局 E-ORG 总 B-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 局 M-TITLE 长 E-TITLE , O 美 B-ORG 国 M-ORG 纽 M-ORG 约 M-ORG S M-ORG I M-ORG N M-ORG O M-ORG - M-ORG A M-ORG M M-ORG E M-ORG R M-ORG I M-ORG C M-ORG A M-ORG N M-ORG L M-ORG T M-ORG D M-ORG , M-ORG C M-ORG O M-ORG . M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 创 O 办 O 了 O 深 O 圳 O 市 O 第 O 一 O 家 O 专 O 职 O 从 O 事 O 风 O 险 O 投 O 资 O 业 O 务 O 的 O 公 O 司 O , O 历 O 任 O 中 B-ORG 科 M-ORG 融 M-ORG 投 M-ORG 资 M-ORG 顾 M-ORG 问 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 、 O 高 B-TITLE 级 M-TITLE 顾 M-TITLE 问 E-TITLE , O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 方 M-ORG 天 M-ORG 通 M-ORG 实 M-ORG 业 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O S B-NAME t M-NAME e M-NAME p M-NAME h M-NAME e M-NAME n M-NAME L M-NAME o M-NAME n M-NAME g E-NAME ( O 中 O 文 O 名 O : O 龙 B-NAME 肇 M-NAME 辉 E-NAME ) O , O 男 O , O 1 O 9 O 4 O 3 O 年 O 出 O 生 O , O 美 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 硕 B-EDU 士 E-EDU 。 O 自 O 1 O 9 O 6 O 8 O 年 O 加 O 入 O 花 B-ORG 旗 M-ORG 银 M-ORG 行 E-ORG , O 曾 O 任 O 花 B-ORG 旗 M-ORG 集 M-ORG 团 M-ORG 亚 M-ORG 太 M-ORG 区 E-ORG 企 B-TITLE 业 M-TITLE 及 M-TITLE 投 M-TITLE 资 M-TITLE 银 M-TITLE 行 M-TITLE 行 M-TITLE 政 M-TITLE 总 M-TITLE 裁 E-TITLE , O 现 O 任 O 花 B-ORG 旗 M-ORG 国 M-ORG 际 E-ORG 营 B-TITLE 运 M-TITLE 部 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 连 B-NAME 维 M-NAME 新 E-NAME 同 O 志 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 南 B-ORG 京 M-ORG 港 M-ORG 务 M-ORG 局 E-ORG 政 B-TITLE 治 M-TITLE 处 M-TITLE 干 M-TITLE 事 E-TITLE 、 O 南 B-ORG 京 M-ORG 港 M-ORG 务 M-ORG 局 E-ORG 局 B-TITLE 长 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 外 M-TITLE 事 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 南 B-ORG 京 M-ORG 港 M-ORG 务 M-ORG 局 E-ORG 宣 B-TITLE 传 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 南 B-ORG 京 M-ORG 港 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 王 B-NAME 笃 M-NAME 祥 E-NAME : O 1 O 9 O 7 O 3 O 年 O 5 O 月 O 出 O 生 O , O 男 O , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 2 O 0 O 0 O 2 O 年 O 9 O 月 O 开 O 始 O 在 O 厦 B-ORG 门 M-ORG 三 M-ORG 安 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 现 O 任 O 三 B-ORG 安 M-ORG 光 M-ORG 电 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 高 B-NAME 树 M-NAME 林 E-NAME : O 报 O 告 O 期 O 曾 O 任 O 华 B-ORG 能 M-ORG 国 M-ORG 际 E-ORG 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 华 B-ORG 能 M-ORG 国 M-ORG 际 E-ORG 计 B-TITLE 划 M-TITLE 发 M-TITLE 展 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 毕 O 业 O 于 O 清 B-ORG 华 M-ORG 大 M-ORG 学 M-ORG 经 M-ORG 济 M-ORG 管 M-ORG 理 M-ORG 学 M-ORG 院 E-ORG , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 硕 B-EDU 士 E-EDU ( O E B-EDU M M-EDU B M-EDU A E-EDU ) O 。 O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 涂 B-NAME 善 M-NAME 忠 E-NAME : O 男 O , O 1 O 9 O 6 O 0 O 年 O 生 O , O 中 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 园 B-TITLE 林 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE 。 O 中 B-ORG 国 M-ORG 风 M-ORG 景 M-ORG 园 M-ORG 林 M-ORG 学 M-ORG 会 E-ORG 常 B-TITLE 务 M-TITLE 理 M-TITLE 事 E-TITLE , O 广 B-ORG 东 M-ORG 省 M-ORG 风 M-ORG 景 M-ORG 园 M-ORG 林 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 广 B-ORG 东 M-ORG 园 M-ORG 林 M-ORG 学 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE , O 广 B-ORG 东 M-ORG 省 M-ORG 土 M-ORG 木 M-ORG 建 M-ORG 筑 M-ORG 学 M-ORG 会 M-ORG 环 M-ORG 境 M-ORG 艺 M-ORG 术 M-ORG 学 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE , O 广 B-ORG 州 M-ORG 市 M-ORG 城 M-ORG 市 M-ORG 绿 M-ORG 化 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 广 B-ORG 州 M-ORG 青 M-ORG 年 M-ORG 企 M-ORG 业 M-ORG 家 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE , O 获 O “ O 广 O 州 O 市 O 优 O 秀 O 中 O 国 O 特 O 色 O 社 O 会 O 主 O 义 O 事 O 业 O 建 O 设 O 者 O ” O 荣 O 誉 O 称 O 号 O , O 广 O 东 O 园 O 林 O 学 O 会 O “ O 突 O 出 O 贡 O 献 O 奖 O ” O 。 O 历 O 任 O 广 B-ORG 州 M-ORG 市 M-ORG 流 M-ORG 花 M-ORG 湖 M-ORG 公 M-ORG 园 E-ORG 园 B-TITLE 林 M-TITLE 科 M-TITLE 科 M-TITLE 长 E-TITLE 、 O 广 B-ORG 州 M-ORG 市 M-ORG 普 M-ORG 邦 M-ORG 园 M-ORG 林 M-ORG 配 M-ORG 套 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 E-TITLE 兼 O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE , O 现 O 任 O 广 B-ORG 州 M-ORG 普 M-ORG 邦 M-ORG 园 M-ORG 林 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 孙 B-NAME 黎 M-NAME 明 E-NAME 先 O 生 O : O 1 O 9 O 7 O 7 O 年 O 5 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU 。 O 曾 O 任 O 浙 B-ORG 江 M-ORG 京 M-ORG 东 M-ORG 方 M-ORG 显 M-ORG 示 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 证 B-TITLE 券 M-TITLE 投 M-TITLE 资 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 现 O 任 O 浙 B-ORG 江 M-ORG 亚 M-ORG 太 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 宋 B-NAME 君 M-NAME 恩 E-NAME , O 男 O , O 1 O 9 O 7 O 2 O 年 O 3 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 南 B-ORG 京 M-ORG 航 M-ORG 空 M-ORG 航 M-ORG 天 M-ORG 大 M-ORG 学 E-ORG 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 供 O 职 O 于 O 华 B-ORG 为 M-ORG 电 M-ORG 气 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 和 O 艾 B-ORG 默 M-ORG 生 M-ORG 网 M-ORG 络 M-ORG 能 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 汇 M-ORG 川 M-ORG 技 M-ORG 术 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 陈 B-NAME 良 M-NAME 训 E-NAME : O 男 O , O 1 O 9 O 5 O 6 O 年 O 生 O , O 硕 B-EDU 士 E-EDU / O E B-EDU M M-EDU B M-EDU A E-EDU 。 O 曾 O 任 O 华 B-ORG 泰 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 事 M-TITLE 务 M-TITLE 部 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 至 O 2 O 0 O 1 O 3 O 年 O 1 O 1 O 月 O 华 B-ORG 泰 M-ORG 证 M-ORG 券 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 主 M-TITLE 席 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 7 O 月 O 至 O 今 O 任 O 稽 B-TITLE 查 M-TITLE 部 M-TITLE 调 M-TITLE 研 M-TITLE 员 E-TITLE 。 O 宋 B-NAME 权 M-NAME 礼 E-NAME 先 O 生 O : O 汉 B-RACE 族 E-RACE , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 北 B-ORG 京 M-ORG 群 M-ORG 龙 M-ORG 商 M-ORG 贸 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 农 B-ORG 业 M-ORG 部 M-ORG 人 M-ORG 劳 M-ORG 司 M-ORG 培 M-ORG 训 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE , O 农 B-ORG 业 M-ORG 部 M-ORG 人 M-ORG 劳 M-ORG 司 M-ORG 直 M-ORG 属 M-ORG 单 M-ORG 位 M-ORG 干 M-ORG 部 M-ORG 处 E-ORG 副 B-TITLE 处 M-TITLE 长 E-TITLE 、 O 处 B-TITLE 长 E-TITLE , O 华 B-ORG 龙 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE , O 中 B-ORG 国 M-ORG 水 M-ORG 产 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 中 B-ORG 国 M-ORG 水 M-ORG 产 M-ORG 华 M-ORG 农 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 中 B-ORG 国 M-ORG 水 M-ORG 产 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 总 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 高 B-NAME 其 M-NAME 品 E-NAME : O 男 O , O 出 O 生 O 于 O 1 O 9 O 5 O 2 O 年 O 6 O 月 O 2 O 2 O 日 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 博 B-EDU 士 E-EDU , O 长 B-ORG 春 M-ORG 中 M-ORG 医 M-ORG 药 M-ORG 大 M-ORG 学 E-ORG 教 B-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE 、 O 大 B-TITLE 学 M-TITLE 教 M-TITLE 授 E-TITLE , O 现 O 任 O 长 B-ORG 春 M-ORG 中 M-ORG 医 M-ORG 药 M-ORG 大 M-ORG 学 M-ORG 研 M-ORG 发 M-ORG 中 M-ORG 心 E-ORG 主 B-TITLE 任 E-TITLE 。 O 范 B-NAME 震 M-NAME 东 E-NAME : O 男 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 历 O 任 O 济 B-ORG 南 M-ORG 铁 M-ORG 路 M-ORG 局 E-ORG 助 B-TITLE 理 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE ; O 上 B-ORG 海 M-ORG 市 M-ORG 崇 M-ORG 明 M-ORG 县 M-ORG 科 M-ORG 学 M-ORG 技 M-ORG 术 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 主 M-TITLE 任 E-TITLE ; O 上 B-ORG 海 M-ORG 市 M-ORG 崇 M-ORG 明 M-ORG 县 M-ORG 工 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 副 B-TITLE 书 M-TITLE 记 E-TITLE 、 O 工 B-ORG 业 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 局 B-TITLE 长 E-TITLE ; O 上 B-ORG 海 M-ORG 市 M-ORG 崇 M-ORG 明 M-ORG 县 M-ORG 大 M-ORG 同 M-ORG 镇 E-ORG 镇 B-TITLE 长 E-TITLE ; O 上 B-ORG 海 M-ORG 康 M-ORG 阔 M-ORG 光 M-ORG 通 M-ORG 信 M-ORG 技 M-ORG 术 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE ; O 上 B-ORG 海 M-ORG 塑 M-ORG 胶 M-ORG 线 M-ORG 厂 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 兼 O 上 B-ORG 海 M-ORG 熊 M-ORG 猫 M-ORG 电 M-ORG 线 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 法 B-TITLE 定 M-TITLE 代 M-TITLE 表 M-TITLE 人 E-TITLE 。 O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 起 O 任 O 上 B-ORG 海 M-ORG 熊 M-ORG 猫 M-ORG 线 M-ORG 缆 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 9 O 年 O 1 O 0 O 月 O 1 O 0 O 日 O 至 O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 7 O 日 O 任 O 武 B-ORG 汉 M-ORG 国 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 2 O 月 O 2 O 9 O 日 O 起 O 任 O 武 B-ORG 汉 M-ORG 国 M-ORG 药 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 董 B-NAME 刚 E-NAME 先 O 生 O , O 1 O 9 O 6 O 8 O 年 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 4 O 年 O 至 O 2 O 0 O 0 O 7 O 年 O 任 O 安 B-ORG 徽 M-ORG 安 M-ORG 凯 M-ORG 金 M-ORG 达 M-ORG 工 M-ORG 贸 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 总 M-TITLE 支 M-TITLE 书 M-TITLE 记 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 至 O 2 O 0 O 0 O 9 O 年 O 9 O 月 O 任 O 安 B-ORG 凯 M-ORG 客 M-ORG 车 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 安 B-ORG 徽 M-ORG 安 M-ORG 凯 M-ORG 金 M-ORG 达 M-ORG 工 M-ORG 贸 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 现 O 任 O 安 B-ORG 凯 M-ORG 客 M-ORG 车 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 蔡 B-NAME 景 M-NAME 章 E-NAME , O 男 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 曾 O 任 O 江 B-ORG 西 M-ORG 景 M-ORG 德 M-ORG 镇 M-ORG 市 M-ORG 焦 M-ORG 化 M-ORG 煤 M-ORG 气 M-ORG 总 M-ORG 厂 E-ORG 办 B-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 副 B-TITLE 厂 M-TITLE 长 E-TITLE ; O 现 O 任 O 江 B-ORG 西 M-ORG 黑 M-ORG 猫 M-ORG 炭 M-ORG 黑 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 景 B-ORG 德 M-ORG 镇 M-ORG 市 M-ORG 焦 M-ORG 化 M-ORG 工 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 王 B-NAME 铁 M-NAME 明 E-NAME 先 O 生 O : O 1 O 9 O 5 O 6 O 年 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 2 O 0 O 0 O 2 O 年 O 0 O 8 O 月 O 至 O 今 O 贵 B-ORG 航 M-ORG 股 M-ORG 份 M-ORG 红 M-ORG 阳 M-ORG 密 M-ORG 封 M-ORG 件 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 樊 B-NAME 燕 E-NAME , O 女 O , O 1 O 9 O 6 O 2 O 年 O 3 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 E-EDU , O 注 B-TITLE 册 M-TITLE 化 M-TITLE 工 M-TITLE 师 E-TITLE , O 教 B-TITLE 授 M-TITLE 级 M-TITLE 高 M-TITLE 级 M-TITLE 工 M-TITLE 程 M-TITLE 师 E-TITLE , O 享 O 受 O 国 O 务 O 院 O 特 O 殊 O 津 O 贴 O 专 O 家 O 。 O 2 O 0 O 1 O 1 O 年 O 8 O 月 O 至 O 今 O 担 O 任 O 岳 B-ORG 阳 M-ORG 林 M-ORG 纸 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 曾 O 任 O 中 B-ORG 国 M-ORG 轻 M-ORG 工 M-ORG 业 M-ORG 长 M-ORG 沙 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 海 M-ORG 诚 M-ORG 工 M-ORG 程 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 中 B-ORG 国 M-ORG 轻 M-ORG 工 M-ORG 业 M-ORG 长 M-ORG 沙 M-ORG 工 M-ORG 程 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 蒋 B-NAME 敏 M-NAME 玲 E-NAME 女 O 士 O : O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 女 O , O 毕 O 业 O 于 O 贵 B-ORG 阳 M-ORG 医 M-ORG 学 M-ORG 院 E-ORG , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 8 O 9 O 年 O 至 O 1 O 9 O 9 O 4 O 年 O 工 O 作 O 于 O 安 B-ORG 顺 M-ORG 市 M-ORG 西 M-ORG 秀 M-ORG 药 M-ORG 厂 E-ORG , O 曾 O 任 O 车 B-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE , O 1 O 9 O 9 O 5 O 年 O 在 O 贵 B-ORG 州 M-ORG 百 M-ORG 灵 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 制 M-ORG 药 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 历 O 任 O 片 B-TITLE 剂 M-TITLE 车 M-TITLE 间 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 综 B-TITLE 合 M-TITLE 办 M-TITLE 公 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 1 O 2 O 月 O 2 O 5 O 日 O 至 O 今 O 担 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 李 B-NAME 水 M-NAME 荣 E-NAME : O 男 O , O 1 O 9 O 5 O 6 O 年 O 出 O 生 O , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU ; O 现 O 任 O 宁 B-ORG 波 M-ORG 联 M-ORG 合 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 浙 B-ORG 江 M-ORG 荣 M-ORG 盛 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 裁 E-TITLE , O 荣 B-ORG 盛 M-ORG 石 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 宜 B-ORG 宾 M-ORG 天 M-ORG 原 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 姚 B-NAME 木 M-NAME 成 E-NAME , O 男 O , O 1 O 9 O 4 O 9 O 年 O 1 O 1 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 经 B-TITLE 济 M-TITLE 师 E-TITLE 。 O 历 O 任 O 韶 B-ORG 钢 M-ORG 集 M-ORG 团 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 广 B-ORG 东 M-ORG 省 M-ORG 商 M-ORG 业 M-ORG 企 M-ORG 业 M-ORG 集 M-ORG 团 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 广 B-ORG 东 M-ORG 省 M-ORG 粤 M-ORG 海 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 广 B-ORG 东 M-ORG 省 M-ORG 航 M-ORG 运 M-ORG 集 M-ORG 团 E-ORG 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 已 O 办 O 理 O 退 O 休 O , O 2 O 0 O 0 O 9 O 年 O 1 O 2 O 月 O 至 O 今 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 政 M-ORG 协 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 现 O 兼 O 任 O 广 B-ORG 东 M-ORG 省 M-ORG 商 M-ORG 业 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 6 O 月 O 至 O 今 O 任 O 广 B-ORG 东 M-ORG 韶 M-ORG 钢 M-ORG 松 M-ORG 山 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 汪 B-NAME 国 M-NAME 春 E-NAME : O 男 O , O 1 O 9 O 7 O 2 O 年 O 出 O 生 O , O 上 B-ORG 海 M-ORG 交 M-ORG 通 M-ORG 大 M-ORG 学 M-ORG 机 M-ORG 械 M-ORG 与 M-ORG 动 M-ORG 力 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 物 B-PRO 流 M-PRO 工 M-PRO 程 M-PRO 专 M-PRO 业 E-PRO 硕 B-EDU 士 E-EDU 毕 O 业 O , O 工 B-TITLE 程 M-TITLE 师 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 进 O 入 O 天 B-ORG 奇 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 先 O 后 O 从 O 事 O 设 O 计 O 、 O 行 O 政 O 管 O 理 O 、 O 物 O 资 O 采 O 购 O 、 O 对 O 外 O 投 O 资 O 等 O 工 O 作 O , O 现 O 任 O 天 B-ORG 奇 M-ORG 自 M-ORG 动 M-ORG 化 M-ORG 工 M-ORG 程 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O C B-NAME a M-NAME r M-NAME o M-NAME l M-NAME l M-NAME e M-NAME e M-NAME P M-NAME e M-NAME d M-NAME e M-NAME r M-NAME s M-NAME e M-NAME n E-NAME , O 女 O , O 美 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 1 O 年 O 1 O 月 O 生 O , O 法 B-PRO 学 E-PRO 博 B-EDU 士 E-EDU 。 O 曾 O 任 O L B-ORG i M-ORG b M-ORG e M-ORG r M-ORG t M-ORG y M-ORG H M-ORG a M-ORG r M-ORG d M-ORG w M-ORG a M-ORG r M-ORG e M-ORG I M-ORG n M-ORG c M-ORG . E-ORG 销 B-TITLE 售 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 销 B-TITLE 售 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 裁 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 张 B-NAME 振 M-NAME 武 E-NAME 先 O 生 O , O 大 B-EDU 学 M-EDU 文 M-EDU 化 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE ; O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE , O 曾 O 任 O 赤 B-ORG 峰 M-ORG 大 M-ORG 兴 M-ORG 公 M-ORG 司 E-ORG 法 B-TITLE 定 M-TITLE 代 M-TITLE 表 M-TITLE 人 E-TITLE 、 O 内 B-ORG 蒙 M-ORG 古 M-ORG 平 M-ORG 庄 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 张 B-NAME 航 E-NAME 女 O 士 O , O 1 O 9 O 6 O 1 O 年 O 6 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 现 O 任 O 宁 B-ORG 夏 M-ORG 圣 M-ORG 雪 M-ORG 绒 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 。 O 历 O 任 O 宁 B-ORG 夏 M-ORG 夏 M-ORG 城 M-ORG 进 M-ORG 出 M-ORG 口 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 乐 B-NAME 湘 M-NAME 安 E-NAME 先 O 生 O , O 男 O , O 硕 B-EDU 士 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 现 O 任 O 无 B-ORG 锡 M-ORG 小 M-ORG 天 M-ORG 鹅 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 审 B-TITLE 计 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 。 O 曾 O 任 O 美 B-ORG 的 M-ORG 空 M-ORG 调 M-ORG 事 M-ORG 业 M-ORG 部 M-ORG 国 M-ORG 内 M-ORG 营 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 财 B-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 小 B-TITLE 家 M-TITLE 电 M-TITLE 事 M-TITLE 业 M-TITLE 部 M-TITLE 销 M-TITLE 售 M-TITLE 财 M-TITLE 务 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 美 B-ORG 的 M-ORG 集 M-ORG 团 E-ORG 审 B-TITLE 计 M-TITLE 监 M-TITLE 察 M-TITLE 部 M-TITLE 审 M-TITLE 计 M-TITLE 经 M-TITLE 理 E-TITLE 和 O 美 B-ORG 的 M-ORG 制 M-ORG 冷 M-ORG 家 M-ORG 电 M-ORG 集 M-ORG 团 E-ORG 审 B-TITLE 计 M-TITLE 监 M-TITLE 察 M-TITLE 部 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 监 E-TITLE 、 O 总 B-TITLE 监 E-TITLE 等 O 职 O 。 O 孟 B-NAME 建 M-NAME 新 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 1 O 9 O 6 O 8 O 年 O 2 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 信 B-TITLE 用 M-TITLE 管 M-TITLE 理 M-TITLE 师 E-TITLE 。 O 历 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 M-ORG 汨 M-ORG 罗 M-ORG 生 M-ORG 产 M-ORG 厂 E-ORG 厂 B-TITLE 长 E-TITLE 、 O 公 B-ORG 司 E-ORG 人 B-TITLE 力 M-TITLE 资 M-TITLE 源 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 证 B-TITLE 券 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 1 O 月 O 至 O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 担 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 法 M-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 兼 O 证 B-TITLE 券 M-TITLE 部 M-TITLE 长 E-TITLE ; O 2 O 0 O 0 O 7 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 8 O 年 O 1 O 月 O 担 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 法 M-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 兼 O 董 B-TITLE 秘 E-TITLE ; O 2 O 0 O 0 O 8 O 年 O 3 O 月 O 至 O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 担 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 法 M-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 1 O 1 O 年 O 4 O 月 O 至 O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 任 O 湖 B-ORG 南 M-ORG 省 M-ORG 南 M-ORG 岭 M-ORG 化 M-ORG 工 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 法 M-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE ; O 2 O 0 O 1 O 2 O 年 O 9 O 月 O 至 O 今 O 任 O 湖 B-ORG 南 M-ORG 南 M-ORG 岭 M-ORG 民 M-ORG 用 M-ORG 爆 M-ORG 破 M-ORG 器 M-ORG 材 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 总 B-TITLE 法 M-TITLE 律 M-TITLE 顾 M-TITLE 问 E-TITLE 兼 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE , O 湖 B-ORG 南 M-ORG 新 M-ORG 天 M-ORG 地 M-ORG 投 M-ORG 资 M-ORG 控 M-ORG 股 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 委 M-TITLE 员 E-TITLE 。 O 现 O 为 O 湖 B-ORG 南 M-ORG 省 M-ORG 国 M-ORG 资 M-ORG 委 M-ORG 青 M-ORG 年 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 常 B-TITLE 委 E-TITLE 。 O 陈 B-NAME 雪 M-NAME 凤 E-NAME : O 女 O , O 1 O 9 O 7 O 8 O 年 O 8 O 月 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 春 B-ORG 兰 M-ORG 公 M-ORG 司 E-ORG 项 B-TITLE 目 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 知 B-TITLE 识 M-TITLE 产 M-TITLE 权 M-TITLE 管 M-TITLE 理 E-TITLE 及 O 法 B-TITLE 务 M-TITLE 管 M-TITLE 理 E-TITLE 、 O 湖 B-ORG 南 M-ORG 科 M-ORG 力 M-ORG 远 M-ORG 新 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 职 B-TITLE 工 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 夏 B-NAME 朝 M-NAME 怡 E-NAME : O 女 O , O 1 O 9 O 4 O 6 O 年 O 6 O 月 O 出 O 生 O , O 大 B-EDU 专 M-EDU 文 M-EDU 化 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 四 B-ORG 川 M-ORG 禾 M-ORG 嘉 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 现 O 任 O 禾 B-ORG 嘉 M-ORG 集 M-ORG 团 E-ORG 监 B-TITLE 事 E-TITLE 。 O 张 B-NAME 洪 M-NAME 发 E-NAME 先 O 生 O , O 1 O 9 O 7 O 0 O 年 O 2 O 月 O 出 O 生 O , O 经 B-PRO 济 M-PRO 学 E-PRO 学 B-EDU 士 E-EDU 、 O 会 B-TITLE 计 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 1 O 年 O 至 O 今 O 历 O 任 O 吉 B-ORG 林 M-ORG 紫 M-ORG 鑫 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 会 B-TITLE 计 E-TITLE 、 O 主 B-TITLE 管 M-TITLE 会 M-TITLE 计 E-TITLE 、 O 审 B-TITLE 计 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 长 E-TITLE , O 现 O 任 O 吉 B-ORG 林 M-ORG 紫 M-ORG 鑫 M-ORG 药 M-ORG 业 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 绪 M-NAME 芳 E-NAME , O 女 O , O 1 O 9 O 7 O 6 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 毕 O 业 O 于 O 深 B-ORG 圳 M-ORG 大 M-ORG 学 M-ORG 光 M-ORG 电 M-ORG 工 M-ORG 程 M-ORG 学 M-ORG 院 E-ORG 物 B-PRO 理 M-PRO 电 M-PRO 子 M-PRO 专 M-PRO 业 E-PRO , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 曾 O 任 O 德 B-ORG 昌 M-ORG 电 M-ORG 机 M-ORG ( M-ORG 深 M-ORG 圳 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 材 M-TITLE 料 M-TITLE 控 M-TITLE 制 M-TITLE 科 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 晶 B-ORG 浩 M-ORG 达 M-ORG 电 M-ORG 子 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 生 B-TITLE 产 M-TITLE 材 M-TITLE 料 M-TITLE 控 M-TITLE 制 M-TITLE 科 M-TITLE 主 M-TITLE 管 E-TITLE 、 O 东 B-ORG 莞 M-ORG 新 M-ORG 科 M-ORG 影 M-ORG 音 M-ORG 制 M-ORG 品 M-ORG 厂 E-ORG 生 B-TITLE 产 M-TITLE 材 M-TITLE 料 M-TITLE 控 M-TITLE 制 M-TITLE 科 M-TITLE 主 M-TITLE 管 E-TITLE 。 O 2 O 0 O 0 O 8 O 年 O 加 O 入 O 深 B-ORG 圳 M-ORG 丹 M-ORG 邦 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 深 B-ORG 圳 M-ORG 丹 M-ORG 邦 M-ORG 科 M-ORG 技 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 资 B-TITLE 材 M-TITLE 部 M-TITLE 课 M-TITLE 长 E-TITLE 。 O 荣 B-NAME 幸 M-NAME 华 E-NAME 女 O 士 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 居 O 留 O 权 O , O 1 O 9 O 6 O 1 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 审 M-TITLE 计 M-TITLE 师 E-TITLE 、 O 注 B-TITLE 册 M-TITLE 会 M-TITLE 计 M-TITLE 师 E-TITLE 。 O 历 O 任 O 常 B-ORG 州 M-ORG 市 M-ORG 审 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG 副 B-TITLE 所 M-TITLE 长 E-TITLE 、 O 所 B-TITLE 长 E-TITLE , O 现 O 任 O 常 B-ORG 州 M-ORG 常 M-ORG 申 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 兼 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 江 B-ORG 苏 M-ORG 苏 M-ORG 亚 M-ORG 金 M-ORG 诚 M-ORG 会 M-ORG 计 M-ORG 师 M-ORG 事 M-ORG 务 M-ORG 所 E-ORG ( O 特 O 殊 O 普 O 通 O 合 O 伙 O ) O 管 B-TITLE 理 M-TITLE 合 M-TITLE 伙 M-TITLE 人 E-TITLE 、 O 林 B-ORG 海 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 江 B-ORG 苏 M-ORG 井 M-ORG 神 M-ORG 盐 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 常 B-ORG 林 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 千 B-ORG 红 M-ORG 制 M-ORG 药 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 江 B-ORG 苏 M-ORG 长 M-ORG 海 M-ORG 复 M-ORG 合 M-ORG 材 M-ORG 料 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 邓 B-NAME 勇 E-NAME 先 O 生 O , O 1 O 9 O 6 O 3 O 年 O 1 O 月 O 出 O 生 O , O 工 B-PRO 商 M-PRO 管 M-PRO 理 E-PRO 研 B-EDU 究 M-EDU 生 E-EDU , O 工 B-TITLE 程 M-TITLE 师 E-TITLE , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 营 M-TITLE 师 E-TITLE 。 O 2 O 0 O 0 O 9 O 年 O 至 O 今 O 担 O 任 O 武 B-ORG 汉 M-ORG 三 M-ORG 特 M-ORG 索 M-ORG 道 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE , O 兼 O 任 O 华 B-ORG 山 M-ORG 宾 M-ORG 馆 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 华 B-ORG 山 M-ORG 索 M-ORG 道 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 景 B-ORG 区 M-ORG 营 M-ORG 销 M-ORG 公 M-ORG 司 E-ORG 、 O 创 B-ORG 时 M-ORG 新 M-ORG 一 E-ORG 董 B-TITLE 事 E-TITLE 。 O 陈 B-NAME 俊 M-NAME 孟 E-NAME 男 O , O 出 O 生 O 于 O 1 O 9 O 6 O 9 O 年 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 0 O 年 O 1 O 0 O 月 O 至 O 1 O 9 O 9 O 5 O 年 O 1 O 2 O 月 O 就 O 职 O 于 O 汕 B-ORG 头 M-ORG 市 M-ORG 澳 M-ORG 丽 M-ORG 克 M-ORG 电 M-ORG 器 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 从 O 事 O 管 O 理 O 工 O 作 O ; O 1 O 9 O 9 O 6 O 年 O 3 O 月 O 至 O 2 O 0 O 0 O 2 O 年 O 1 O 1 O 月 O 担 O 任 O 汕 B-ORG 头 M-ORG 市 M-ORG 龙 M-ORG 湖 M-ORG 区 M-ORG 永 M-ORG 明 M-ORG 墙 M-ORG 纸 M-ORG 商 M-ORG 行 E-ORG 负 O 责 O 人 O ; O 2 O 0 O 0 O 3 O 年 O 2 O 月 O 加 O 入 O 本 B-TITLE 公 M-TITLE 司 E-TITLE , O 从 O 事 O 销 O 售 O 管 O 理 O 工 O 作 O , O 区 B-TITLE 域 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 。 O 谭 B-NAME 力 M-NAME 文 E-NAME , O 男 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 博 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 E-EDU , O 企 B-TITLE 业 M-TITLE 管 M-TITLE 理 M-TITLE 专 M-TITLE 业 M-TITLE 教 M-TITLE 授 E-TITLE 、 O 博 B-TITLE 士 M-TITLE 生 M-TITLE 导 M-TITLE 师 E-TITLE , O 毕 O 业 O 于 O 武 B-ORG 汉 M-ORG 大 M-ORG 学 E-ORG , O 自 O 1 O 9 O 8 O 2 O 年 O 起 O , O 在 O 武 B-ORG 汉 M-ORG 大 M-ORG 学 E-ORG 任 O 教 O 至 O 今 O , O 现 O 任 O 武 B-ORG 汉 M-ORG 大 M-ORG 学 M-ORG 企 M-ORG 业 M-ORG 战 M-ORG 略 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 所 E-ORG 所 B-TITLE 长 E-TITLE 。 O 社 B-ORG 会 M-ORG 兼 M-ORG 职 M-ORG 有 M-ORG 国 M-ORG 家 M-ORG 社 M-ORG 会 M-ORG 科 M-ORG 学 M-ORG 基 M-ORG 金 M-ORG 项 M-ORG 目 M-ORG 学 M-ORG 科 M-ORG 评 M-ORG 审 M-ORG 组 E-ORG 专 B-TITLE 家 E-TITLE 、 O 湖 B-ORG 北 M-ORG 省 M-ORG 经 M-ORG 团 M-ORG 联 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 企 M-ORG 业 M-ORG 管 M-ORG 理 M-ORG 研 M-ORG 究 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 湖 B-ORG 北 M-ORG 省 M-ORG 技 M-ORG 术 M-ORG 经 M-ORG 济 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 2 O 年 O 3 O 月 O 起 O 出 O 任 O 武 B-ORG 汉 M-ORG 中 M-ORG 商 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 张 B-NAME 文 M-NAME 斌 E-NAME 先 O 生 O : O 1 O 9 O 6 O 3 O 年 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 会 B-TITLE 计 M-TITLE 师 E-TITLE , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT 。 O 曾 O 任 O 包 B-ORG 钢 M-ORG 集 M-ORG 团 E-ORG 设 B-TITLE 备 M-TITLE 处 M-TITLE 财 M-TITLE 务 M-TITLE 科 M-TITLE 副 M-TITLE 科 M-TITLE 长 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 家 M-ORG 电 M-ORG 宝 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 成 B-TITLE 本 M-TITLE 控 M-TITLE 制 M-TITLE 室 M-TITLE 成 M-TITLE 本 M-TITLE 主 M-TITLE 管 E-TITLE , O 芭 B-ORG 田 M-ORG 股 M-ORG 份 E-ORG 会 B-TITLE 计 M-TITLE 师 E-TITLE 、 O E B-TITLE R M-TITLE P M-TITLE 项 M-TITLE 目 M-TITLE 组 M-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE 、 O 部 B-TITLE 长 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 负 M-TITLE 责 M-TITLE 人 E-TITLE , O 2 O 0 O 0 O 7 O 年 O 1 O 1 O 月 O 加 O 入 O 深 B-ORG 圳 M-ORG 市 M-ORG 尚 M-ORG 荣 M-ORG 医 M-ORG 疗 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 担 O 任 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE 兼 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 现 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 尚 M-ORG 荣 M-ORG 医 M-ORG 疗 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 华 M-ORG 荣 M-ORG 健 M-ORG 康 M-ORG 医 M-ORG 疗 M-ORG 设 M-ORG 备 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE , O 合 B-ORG 肥 M-ORG 普 M-ORG 尔 M-ORG 德 M-ORG 医 M-ORG 疗 M-ORG 用 M-ORG 品 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 张 B-ORG 家 M-ORG 港 M-ORG 市 M-ORG 锦 M-ORG 洲 M-ORG 医 M-ORG 械 M-ORG 制 M-ORG 造 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 苏 B-ORG 州 M-ORG 吉 M-ORG 美 M-ORG 瑞 M-ORG 医 M-ORG 械 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 深 B-ORG 圳 M-ORG 市 M-ORG 尚 M-ORG 荣 M-ORG 康 M-ORG 源 M-ORG 医 M-ORG 疗 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 张 B-NAME 彬 M-NAME 贤 E-NAME : O 男 O , O 1 O 9 O 6 O 1 O 年 O 9 O 月 O 出 O 生 O , O 中 B-CONT 国 M-CONT 籍 E-CONT , O 无 O 永 O 久 O 境 O 外 O 居 O 留 O 权 O , O 硕 B-EDU 士 M-EDU 研 M-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU 。 O 中 B-ORG 国 M-ORG 包 M-ORG 装 M-ORG 联 M-ORG 合 M-ORG 会 E-ORG 第 B-TITLE 七 M-TITLE 届 M-TITLE 理 M-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 会 M-TITLE 长 E-TITLE 、 O 中 B-ORG 国 M-ORG 日 M-ORG 用 M-ORG 化 M-ORG 工 M-ORG 协 M-ORG 会 M-ORG 油 M-ORG 墨 M-ORG 分 M-ORG 会 E-ORG 第 B-TITLE 七 M-TITLE 届 M-TITLE 理 M-TITLE 事 M-TITLE 会 M-TITLE 副 M-TITLE 理 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 广 B-ORG 东 M-ORG 包 M-ORG 装 M-ORG 技 M-ORG 术 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O 珠 B-TITLE 海 M-TITLE 市 M-TITLE 第 M-TITLE 七 M-TITLE 届 M-TITLE 人 M-TITLE 大 M-TITLE 代 M-TITLE 表 E-TITLE 。 O 1 O 9 O 8 O 8 O 年 O 进 O 入 O 珠 B-ORG 海 M-ORG 美 M-ORG 光 M-ORG 塑 M-ORG 胶 M-ORG 油 M-ORG 墨 M-ORG 制 M-ORG 造 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 O 作 O , O 1 O 9 O 8 O 9 O 年 O 至 O 1 O 9 O 9 O 5 O 年 O 任 O 该 B-ORG 珠 M-ORG 海 M-ORG 市 M-ORG 乐 M-ORG 通 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 1 O 9 O 9 O 6 O 年 O 至 O 今 O 任 O 珠 B-ORG 海 M-ORG 市 M-ORG 乐 M-ORG 通 M-ORG 化 M-ORG 工 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 陈 B-NAME 淑 M-NAME 兰 E-NAME , O 女 O , O 1 O 9 O 4 O 6 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 学 M-EDU 历 E-EDU , O 黑 B-ORG 龙 M-ORG 江 M-ORG 省 M-ORG 医 M-ORG 药 M-ORG 专 M-ORG 业 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 委 B-TITLE 员 E-TITLE , O 曾 O 任 O 黑 B-ORG 龙 M-ORG 江 M-ORG 省 M-ORG 食 M-ORG 品 M-ORG 药 M-ORG 品 M-ORG 监 M-ORG 督 M-ORG 管 M-ORG 理 M-ORG 局 E-ORG 副 B-TITLE 局 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 组 M-TITLE 成 M-TITLE 员 E-TITLE , O 哈 B-ORG 药 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 独 B-TITLE 立 M-TITLE 董 M-TITLE 事 E-TITLE , O 黑 B-ORG 龙 M-ORG 江 M-ORG 省 M-ORG 医 M-ORG 药 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 。 O 孙 B-NAME 忠 M-NAME 义 E-NAME 先 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 1 O 9 O 5 O 4 O 年 O 出 O 生 O , O 大 B-EDU 专 M-EDU 学 M-EDU 历 E-EDU 。 O 自 O 2 O 0 O 0 O 0 O 年 O 起 O 历 O 任 O 南 B-ORG 宁 M-ORG 饲 M-ORG 料 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 广 B-ORG 西 M-ORG 南 M-ORG 宁 M-ORG 百 M-ORG 洋 M-ORG 饲 M-ORG 料 M-ORG 集 M-ORG 团 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE 、 O 执 B-TITLE 行 M-TITLE 董 M-TITLE 事 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 长 E-TITLE 等 O 职 O 务 O 。 O 2 O 0 O 1 O 0 O 年 O 9 O 月 O 起 O 任 O 百 B-ORG 洋 M-ORG 水 M-ORG 产 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 此 O 外 O , O 孙 S-NAME 先 O 生 O 还 O 兼 O 任 O “ O 中 B-ORG 国 M-ORG 水 M-ORG 产 M-ORG 流 M-ORG 通 M-ORG 与 M-ORG 加 M-ORG 工 M-ORG 协 M-ORG 会 M-ORG 罗 M-ORG 非 M-ORG 鱼 M-ORG 分 M-ORG 会 E-ORG ” O 副 B-TITLE 会 M-TITLE 长 E-TITLE 、 O “ O 广 B-ORG 西 M-ORG 水 M-ORG 产 M-ORG 畜 M-ORG 牧 M-ORG 业 M-ORG 协 M-ORG 会 M-ORG 第 M-ORG 二 M-ORG 届 M-ORG 理 M-ORG 事 M-ORG 会 E-ORG ” O 副 B-TITLE 会 M-TITLE 长 E-TITLE ” O 、 O “ O 广 B-ORG 西 M-ORG 水 M-ORG 产 M-ORG 畜 M-ORG 牧 M-ORG 业 M-ORG 协 M-ORG 会 M-ORG 罗 M-ORG 非 M-ORG 鱼 M-ORG 分 M-ORG 会 E-ORG ” O 会 B-TITLE 长 E-TITLE 。 O 孙 S-NAME 先 O 生 O 先 O 后 O 荣 O 获 O 南 O 宁 O 市 O 人 O 民 O 政 O 府 O “ O 2 O 0 O 0 O 8 O 年 O 度 O 优 O 秀 O 企 O 业 O 家 O ” O 称 O 号 O 、 O 中 O 国 O 水 O 产 O 流 O 通 O 与 O 加 O 工 O 协 O 会 O 颁 O 发 O 的 O “ O 2 O 0 O 0 O 8 O 年 O 度 O 全 O 国 O 十 O 大 O 罗 O 非 O 鱼 O 人 O 物 O ” O 称 O 号 O 、 O 2 O 0 O 1 O 0 O 年 O 获 O 中 O 国 O 水 O 产 O 流 O 通 O 与 O 加 O 工 O 协 O 会 O “ O 2 O 0 O 1 O 0 O 年 O 度 O 水 O 产 O 行 O 业 O 可 O 持 O 续 O 发 O 展 O 突 O 出 O 贡 O 献 O 十 O 大 O 人 O 物 O ” O 称 O 号 O 、 O 2 O 0 O 1 O 1 O 年 O 获 O 广 O 西 O 区 O 人 O 民 O 政 O 府 O 颁 O 发 O “ O 广 O 西 O 北 O 部 O 湾 O 经 O 济 O 区 O 优 O 秀 O 建 O 设 O 者 O ” O 称 O 号 O 、 O 2 O 0 O 1 O 2 O 年 O 获 O 中 O 国 O 水 O 产 O 流 O 通 O 与 O 加 O 工 O 协 O 会 O 颁 O 发 O 的 O “ O 罗 O 非 O 鱼 O 产 O 业 O 十 O 年 O 领 O 军 O 人 O 物 O ” O 称 O 号 O ; O 2 O 0 O 1 O 4 O 年 O 被 O 聘 O 为 O 广 B-ORG 西 M-ORG E M-ORG M M-ORG B M-ORG A M-ORG 智 M-ORG 库 M-ORG 专 M-ORG 家 M-ORG 委 M-ORG 员 M-ORG 会 E-ORG 顾 B-TITLE 问 E-TITLE ; O 2 O 0 O 1 O 5 O 年 O 1 O 月 O 起 O 任 O 广 B-ORG 西 M-ORG 广 M-ORG 联 M-ORG 水 M-ORG 产 M-ORG 业 M-ORG 商 M-ORG 会 E-ORG 会 B-TITLE 长 E-TITLE 。 O 吴 B-NAME 伟 M-NAME 钢 E-NAME 先 O 生 O , O 1 O 9 O 6 O 7 O 年 O 出 O 生 O , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 无 O 境 O 外 O 永 O 久 O 居 O 留 O 权 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 2 O 0 O 0 O 1 O 年 O 至 O 2 O 0 O 1 O 4 O 年 O 7 O 月 O 任 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 至 O 2 O 0 O 1 O 4 O 年 O 7 O 月 O 任 O 力 B-TITLE 源 M-TITLE 应 M-TITLE 用 M-TITLE 服 M-TITLE 务 M-TITLE 董 M-TITLE 事 E-TITLE 。 O 已 O 于 O 2 O 0 O 1 O 4 O 年 O 7 O 月 O 1 O 日 O 正 O 式 O 辞 O 去 O 公 B-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 、 O 财 B-TITLE 务 M-TITLE 总 M-TITLE 监 E-TITLE , O 力 B-TITLE 源 M-TITLE 应 M-TITLE 用 M-TITLE 服 M-TITLE 务 M-TITLE 董 M-TITLE 事 E-TITLE 职 O 务 O 。 O 陈 B-NAME 永 M-NAME 愉 E-NAME , O 1 O 9 O 7 O 0 O 年 O 参 O 加 O 工 O 作 O 。 O 任 O 浙 B-ORG 江 M-ORG 东 M-ORG 方 M-ORG 集 M-ORG 团 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 工 B-TITLE 会 M-TITLE 专 M-TITLE 职 M-TITLE 干 M-TITLE 事 E-TITLE 、 O 职 B-TITLE 工 M-TITLE 代 M-TITLE 表 E-TITLE 、 O 第 B-TITLE 三 M-TITLE 届 M-TITLE 监 M-TITLE 事 M-TITLE 会 M-TITLE 职 M-TITLE 工 M-TITLE 代 M-TITLE 表 M-TITLE 监 M-TITLE 事 E-TITLE 。 O 刘 B-NAME 恩 M-NAME 孝 E-NAME , O 男 O , O 1 O 9 O 5 O 0 O 年 O 1 O 0 O 月 O 出 O 生 O , O 大 B-EDU 学 M-EDU 专 M-EDU 科 E-EDU 毕 O 业 O , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 1 O 9 O 6 O 9 O 年 O 1 O 月 O 参 O 军 O , O 先 O 后 O 任 O 副 B-TITLE 班 M-TITLE 长 E-TITLE 、 O 文 B-TITLE 书 E-TITLE 、 O 团 B-ORG 政 M-ORG 治 M-ORG 处 E-ORG 和 O 军 B-ORG 政 M-ORG 治 M-ORG 部 E-ORG 新 B-TITLE 闻 M-TITLE 干 M-TITLE 事 E-TITLE 、 O 宣 B-TITLE 传 M-TITLE 干 M-TITLE 事 E-TITLE 、 O 连 B-TITLE 政 M-TITLE 治 M-TITLE 指 M-TITLE 导 M-TITLE 员 E-TITLE 、 O 营 B-TITLE 政 M-TITLE 治 M-TITLE 教 M-TITLE 导 M-TITLE 员 E-TITLE 、 O 团 B-TITLE 政 M-TITLE 治 M-TITLE 处 M-TITLE 宣 M-TITLE 传 M-TITLE 股 M-TITLE 长 E-TITLE 、 O 副 B-TITLE 主 M-TITLE 任 E-TITLE 、 O 团 B-TITLE 副 M-TITLE 政 M-TITLE 委 E-TITLE 。 O 1 O 9 O 8 O 6 O 年 O 2 O 月 O 转 O 业 O 到 O 太 B-ORG 原 M-ORG 煤 M-ORG 炭 M-ORG 气 M-ORG 化 M-ORG 公 M-ORG 司 E-ORG , O 先 O 后 O 任 O 太 B-ORG 原 M-ORG 煤 M-ORG 炭 M-ORG 气 M-ORG 化 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 宣 M-TITLE 传 M-TITLE 部 M-TITLE 副 M-TITLE 部 M-TITLE 长 E-TITLE ( O 主 O 持 O 工 O 作 O ) O 、 O 报 B-TITLE 社 M-TITLE 社 M-TITLE 长 E-TITLE 、 O 电 B-TITLE 视 M-TITLE 台 M-TITLE 台 M-TITLE 长 E-TITLE 、 O 新 B-TITLE 闻 M-TITLE 中 M-TITLE 心 M-TITLE 主 M-TITLE 任 E-TITLE , O 运 B-TITLE 销 M-TITLE 处 M-TITLE 副 M-TITLE 处 M-TITLE 长 E-TITLE 、 O 运 B-TITLE 销 M-TITLE 公 M-TITLE 司 M-TITLE 副 M-TITLE 经 M-TITLE 理 E-TITLE 兼 O 驻 B-ORG 京 M-ORG 办 M-ORG 事 M-ORG 处 E-ORG 主 B-TITLE 任 E-TITLE , O 晋 B-ORG 阳 M-ORG 选 M-ORG 煤 M-ORG 厂 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O 1 O 9 O 9 O 7 O 年 O 7 O 月 O 任 O 太 B-ORG 原 M-ORG 煤 M-ORG 气 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 。 O 1 O 9 O 9 O 8 O 年 O 5 O 月 O 起 O , O 先 O 后 O 任 O 太 B-ORG 原 M-ORG 煤 M-ORG 炭 M-ORG 气 M-ORG 化 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 政 B-TITLE 策 M-TITLE 研 M-TITLE 究 M-TITLE 室 M-TITLE 主 M-TITLE 任 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 处 M-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 、 O 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE 。 O 2 O 0 O 0 O 0 O 年 O 9 O 月 O 任 O 太 B-ORG 原 M-ORG 煤 M-ORG 气 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 2 O 0 O 0 O 6 O 年 O 1 O 0 O 月 O 任 O 太 B-ORG 原 M-ORG 煤 M-ORG 气 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 。 O 2 O 0 O 1 O 2 O 年 O 8 O 月 O 3 O 日 O 辞 O 去 O 太 B-ORG 原 M-ORG 煤 M-ORG 气 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 会 M-TITLE 秘 M-TITLE 书 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE 职 O 务 O 。 O 现 O 任 O 太 B-ORG 原 M-ORG 煤 M-ORG 气 M-ORG 化 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 同 O 时 O 兼 O 任 O 北 B-ORG 京 M-ORG 金 M-ORG 奥 M-ORG 维 M-ORG 科 M-ORG 技 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 。 O 周 B-NAME 润 M-NAME 南 E-NAME , O 男 O , O 1 O 9 O 5 O 7 O 年 O 出 O 生 O , O 大 B-EDU 学 M-EDU 本 M-EDU 科 M-EDU 学 M-EDU 历 E-EDU 。 O 1 O 9 O 9 O 4 O 年 O 至 O 1 O 9 O 9 O 5 O 年 O 和 O 1 O 9 O 9 O 6 O 年 O 至 O 1 O 9 O 9 O 7 O 年 O 分 O 别 O 在 O 国 B-ORG 家 M-ORG 经 M-ORG 贸 M-ORG 委 M-ORG 企 M-ORG 业 M-ORG 司 E-ORG 和 O 上 B-ORG 海 M-ORG 市 M-ORG 工 M-ORG 业 M-ORG 经 M-ORG 济 M-ORG 协 M-ORG 会 E-ORG 工 O 作 O 。 O 1 O 9 O 9 O 0 O 年 O 至 O 1 O 9 O 9 O 7 O 年 O 先 O 后 O 担 O 任 O 上 B-ORG 海 M-ORG 工 M-ORG 业 M-ORG 机 M-ORG 电 M-ORG 学 M-ORG 校 E-ORG 副 B-TITLE 校 M-TITLE 长 E-TITLE , O 中 B-ORG 国 M-ORG 纺 M-ORG 织 M-ORG 机 M-ORG 械 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 企 B-TITLE 业 M-TITLE 发 M-TITLE 展 M-TITLE 研 M-TITLE 究 M-TITLE 所 M-TITLE 副 M-TITLE 所 M-TITLE 长 E-TITLE , O 上 B-ORG 海 M-ORG 洲 M-ORG 际 M-ORG 经 M-ORG 贸 M-ORG 研 M-ORG 究 M-ORG 开 M-ORG 发 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 E-TITLE , O 上 B-ORG 海 M-ORG 纺 M-ORG 织 M-ORG 机 M-ORG 械 M-ORG 器 M-ORG 材 M-ORG 行 M-ORG 业 M-ORG 协 M-ORG 会 E-ORG 副 B-TITLE 秘 M-TITLE 书 M-TITLE 长 E-TITLE ; O 1 O 9 O 9 O 7 O 年 O 至 O 1 O 9 O 9 O 8 O 年 O 担 O 任 O 上 B-ORG 海 M-ORG 华 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 投 B-TITLE 资 M-TITLE 部 M-TITLE 副 M-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 1 O 9 O 9 O 8 O 年 O 至 O 2 O 0 O 0 O 2 O 年 O 先 O 后 O 担 O 任 O 上 B-ORG 海 M-ORG 庆 M-ORG 安 M-ORG 科 M-ORG 技 M-ORG 发 M-ORG 展 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE 、 O 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE ; O 2 O 0 O 0 O 2 O 年 O 8 O 月 O 至 O 2 O 0 O 0 O 3 O 年 O 5 O 月 O 担 O 任 O 安 B-ORG 徽 M-ORG 省 M-ORG 科 M-ORG 苑 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE ; O 现 O 任 O 安 B-ORG 徽 M-ORG 省 M-ORG 科 M-ORG 苑 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 董 M-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 。 O 杨 B-NAME 媛 M-NAME 媛 E-NAME , O 女 O , O 1 O 9 O 8 O 6 O 年 O 8 O 月 O 出 O 生 O , O 本 B-EDU 科 M-EDU 学 M-EDU 历 E-EDU , O 2 O 0 O 0 O 9 O 年 O 任 O 深 B-ORG 圳 M-ORG 市 M-ORG 东 M-ORG 方 M-ORG 金 M-ORG 钰 M-ORG 珠 M-ORG 宝 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 M-TITLE 秘 M-TITLE 书 E-TITLE , O 2 O 0 O 1 O 1 O 年 O 任 O 东 B-ORG 方 M-ORG 金 M-ORG 钰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 裁 M-TITLE 助 M-TITLE 理 E-TITLE 兼 O 深 B-ORG 圳 M-ORG 市 M-ORG 东 M-ORG 方 M-ORG 金 M-ORG 钰 M-ORG 珠 M-ORG 宝 M-ORG 实 M-ORG 业 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 1 O 2 O 年 O 起 O 任 O 东 B-ORG 方 M-ORG 金 M-ORG 钰 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 裁 E-TITLE 。 O 王 B-NAME 建 M-NAME 华 E-NAME , O 男 O , O 1 O 9 O 6 O 2 O 年 O 1 O 月 O 出 O 生 O , O 南 B-ORG 京 M-ORG 工 M-ORG 学 M-ORG 院 E-ORG 毕 O 业 O 。 O 历 O 任 O 建 B-ORG 行 M-ORG 无 M-ORG 锡 M-ORG 市 M-ORG 城 M-ORG 南 M-ORG 支 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE , O 建 B-ORG 行 M-ORG 无 M-ORG 锡 M-ORG 投 M-ORG 资 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 副 B-TITLE 总 M-TITLE 经 M-TITLE 理 E-TITLE , O 2 O 0 O 0 O 4 O 年 O 4 O 月 O 5 O 日 O 起 O 担 O 任 O 张 B-ORG 家 M-ORG 港 M-ORG 东 M-ORG 华 M-ORG 优 M-ORG 尼 M-ORG 科 M-ORG 能 M-ORG 源 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE , O 现 O 任 O 中 B-ORG 国 M-ORG 建 M-ORG 设 M-ORG 银 M-ORG 行 M-ORG 江 M-ORG 阴 M-ORG 支 M-ORG 行 E-ORG 行 B-TITLE 长 E-TITLE , O 张 B-ORG 家 M-ORG 港 M-ORG 东 M-ORG 华 M-ORG 能 M-ORG 源 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 刘 B-NAME 瑞 M-NAME 萍 E-NAME , O 女 O , O 1 O 9 O 5 O 5 O 年 O 9 O 月 O 生 O , O 中 B-TITLE 共 M-TITLE 党 M-TITLE 员 E-TITLE , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 硕 B-EDU 士 M-EDU 学 M-EDU 位 E-EDU , O 高 B-TITLE 级 M-TITLE 政 M-TITLE 工 M-TITLE 师 E-TITLE 。 O 曾 O 任 O 天 B-ORG 津 M-ORG 劝 M-ORG 业 M-ORG 场 E-ORG 人 B-TITLE 事 M-TITLE 部 M-TITLE 部 M-TITLE 长 E-TITLE , O 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 纪 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 监 B-TITLE 事 M-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 。 O 李 B-NAME 晓 M-NAME 鹏 E-NAME , O 中 B-CONT 国 M-CONT 国 M-CONT 籍 E-CONT , O 生 O 于 O 一 O 九 O 七 O 三 O 年 O 三 O 月 O , O 硕 B-EDU 士 E-EDU 、 O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 现 O 任 O 华 B-ORG 电 M-ORG 国 M-ORG 际 M-ORG 电 M-ORG 力 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 监 B-TITLE 事 E-TITLE 、 O 山 B-ORG 东 M-ORG 省 M-ORG 国 M-ORG 际 M-ORG 信 M-ORG 托 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 总 B-TITLE 经 M-TITLE 理 M-TITLE 助 M-TITLE 理 E-TITLE 、 O 兼 O 任 O 山 B-ORG 东 M-ORG 百 M-ORG 年 M-ORG 电 M-ORG 力 M-ORG 发 M-ORG 展 M-ORG 股 M-ORG 份 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG 、 O 山 B-ORG 西 M-ORG 鲁 M-ORG 晋 M-ORG 王 M-ORG 曲 M-ORG 发 M-ORG 电 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 、 O 邯 B-ORG 济 M-ORG 铁 M-ORG 路 M-ORG 有 M-ORG 限 M-ORG 责 M-ORG 任 M-ORG 公 M-ORG 司 E-ORG 等 O 公 B-ORG 司 E-ORG 董 B-TITLE 事 E-TITLE 。 O 李 S-NAME 先 O 生 O 一 O 九 O 九 O 五 O 年 O 参 O 加 O 工 O 作 O , O 一 O 直 O 服 O 务 O 于 O 山 B-ORG 东 M-ORG 省 M-ORG 国 M-ORG 际 M-ORG 信 M-ORG 托 M-ORG 有 M-ORG 限 M-ORG 公 M-ORG 司 E-ORG , O 在 O 基 O 金 O 、 O 投 O 融 O 资 O 、 O 证 O 券 O 等 O 方 O 面 O 具 O 有 O 多 O 年 O 的 O 工 O 作 O 经 O 验 O 。 O 耿 B-NAME 佃 M-NAME 杰 E-NAME 先 O 生 O , O 1 O 9 O 5 O 3 O 年 O 9 O 月 O 出 O 生 O , O 研 B-EDU 究 M-EDU 生 M-EDU 学 M-EDU 历 E-EDU , O 高 B-TITLE 级 M-TITLE 经 M-TITLE 济 M-TITLE 师 E-TITLE , O 1 O 9 O 7 O 2 O 年 O 参 O 加 O 工 O 作 O , O 曾 O 任 O 海 B-ORG 军 M-ORG 航 M-ORG 空 M-ORG 兵 M-ORG 1 M-ORG 2 M-ORG 师 E-ORG 军 B-TITLE 械 M-TITLE 师 E-TITLE , O 南 B-ORG 京 M-ORG 海 M-ORG 军 M-ORG 学 M-ORG 院 M-ORG 航 M-ORG 空 M-ORG 兵 M-ORG 教 M-ORG 研 M-ORG 室 E-ORG 正 B-TITLE 连 M-TITLE 职 M-TITLE 教 M-TITLE 官 E-TITLE 、 O 淄 B-ORG 博 M-ORG 市 M-ORG 化 M-ORG 工 M-ORG 公 M-ORG 司 E-ORG 团 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE 、 O 山 B-ORG 东 M-ORG 张 M-ORG 店 M-ORG 化 M-ORG 工 M-ORG 厂 E-ORG 工 B-TITLE 会 M-TITLE 主 M-TITLE 席 E-TITLE 、 O 常 B-TITLE 务 M-TITLE 副 M-TITLE 厂 M-TITLE 长 E-TITLE , O 山 B-ORG 东 M-ORG 东 M-ORG 大 M-ORG 化 M-ORG 学 M-ORG 工 M-ORG 业 M-ORG ( M-ORG 集 M-ORG 团 M-ORG ) M-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 总 B-TITLE 经 M-TITLE 理 E-TITLE 兼 O 党 B-TITLE 委 M-TITLE 副 M-TITLE 书 M-TITLE 记 E-TITLE , O 淄 B-ORG 博 M-ORG 市 M-ORG 电 M-ORG 子 M-ORG 工 M-ORG 业 M-ORG 公 M-ORG 司 E-ORG 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 兼 O 经 B-TITLE 理 E-TITLE , O 现 O 任 O 本 B-ORG 公 M-ORG 司 E-ORG 董 B-TITLE 事 M-TITLE 长 E-TITLE 、 O 党 B-TITLE 委 M-TITLE 书 M-TITLE 记 E-TITLE 。 O ================================================ FILE: named_entity_recognition/ckpts/bilstm.pkl ================================================ [File too large to display: 14.7 MB] ================================================ FILE: named_entity_recognition/ckpts/bilstm_crf.pkl ================================================ [File too large to display: 14.8 MB] ================================================ FILE: named_entity_recognition/data.py ================================================ from os.path import join from codecs import open def build_corpus(split, make_vocab=True, data_dir="./ResumeNER"): """读取数据""" assert split in ['train', 'dev', 'test'] word_lists = [] tag_lists = [] with open(join(data_dir, split+".char.bmes"), 'r', encoding='utf-8') as f: word_list = [] tag_list = [] for line in f: if line != '\n': word, tag = line.strip('\n').split() word_list.append(word) tag_list.append(tag) else: word_lists.append(word_list) tag_lists.append(tag_list) word_list = [] tag_list = [] # 如果make_vocab为True,还需要返回word2id和tag2id if make_vocab: word2id = build_map(word_lists) tag2id = build_map(tag_lists) return word_lists, tag_lists, word2id, tag2id else: return word_lists, tag_lists def build_map(lists): maps = {} for list_ in lists: for e in list_: if e not in maps: maps[e] = len(maps) return maps ================================================ FILE: named_entity_recognition/evaluate.py ================================================ import time from collections import Counter from models.hmm import HMM from models.crf import CRFModel from models.bilstm_crf import BILSTM_Model from utils import save_model, flatten_lists from evaluating import Metrics def hmm_train_eval(train_data, test_data, word2id, tag2id, remove_O=False): """训练并评估hmm模型""" # 训练HMM模型 train_word_lists, train_tag_lists = train_data test_word_lists, test_tag_lists = test_data hmm_model = HMM(len(tag2id), len(word2id)) hmm_model.train(train_word_lists, train_tag_lists, word2id, tag2id) save_model(hmm_model, "./ckpts/hmm.pkl") # 评估hmm模型 pred_tag_lists = hmm_model.test(test_word_lists, word2id, tag2id) metrics = Metrics(test_tag_lists, pred_tag_lists, remove_O=remove_O) metrics.report_scores() metrics.report_confusion_matrix() return pred_tag_lists def crf_train_eval(train_data, test_data, remove_O=False): # 训练CRF模型 train_word_lists, train_tag_lists = train_data test_word_lists, test_tag_lists = test_data crf_model = CRFModel() crf_model.train(train_word_lists, train_tag_lists) save_model(crf_model, "./ckpts/crf.pkl") pred_tag_lists = crf_model.test(test_word_lists) metrics = Metrics(test_tag_lists, pred_tag_lists, remove_O=remove_O) metrics.report_scores() metrics.report_confusion_matrix() return pred_tag_lists def bilstm_train_and_eval(train_data, dev_data, test_data, word2id, tag2id, crf=True, remove_O=False): train_word_lists, train_tag_lists = train_data dev_word_lists, dev_tag_lists = dev_data test_word_lists, test_tag_lists = test_data start = time.time() vocab_size = len(word2id) out_size = len(tag2id) bilstm_model = BILSTM_Model(vocab_size, out_size, crf=crf) bilstm_model.train(train_word_lists, train_tag_lists, dev_word_lists, dev_tag_lists, word2id, tag2id) model_name = "bilstm_crf" if crf else "bilstm" save_model(bilstm_model, "./ckpts/"+model_name+".pkl") print("训练完毕,共用时{}秒.".format(int(time.time()-start))) print("评估{}模型中...".format(model_name)) pred_tag_lists, test_tag_lists = bilstm_model.test( test_word_lists, test_tag_lists, word2id, tag2id) metrics = Metrics(test_tag_lists, pred_tag_lists, remove_O=remove_O) metrics.report_scores() metrics.report_confusion_matrix() return pred_tag_lists def ensemble_evaluate(results, targets, remove_O=False): """ensemble多个模型""" for i in range(len(results)): results[i] = flatten_lists(results[i]) pred_tags = [] for result in zip(*results): ensemble_tag = Counter(result).most_common(1)[0][0] pred_tags.append(ensemble_tag) targets = flatten_lists(targets) assert len(pred_tags) == len(targets) print("Ensemble 四个模型的结果如下:") metrics = Metrics(targets, pred_tags, remove_O=remove_O) metrics.report_scores() metrics.report_confusion_matrix() ================================================ FILE: named_entity_recognition/evaluating.py ================================================ from collections import Counter from utils import flatten_lists class Metrics(object): """用于评价模型,计算每个标签的精确率,召回率,F1分数""" def __init__(self, golden_tags, predict_tags, remove_O=False): # [[t1, t2], [t3, t4]...] --> [t1, t2, t3, t4...] self.golden_tags = flatten_lists(golden_tags) self.predict_tags = flatten_lists(predict_tags) if remove_O: # 将O标记移除,只关心实体标记 self._remove_Otags() # 辅助计算的变量 self.tagset = set(self.golden_tags) self.correct_tags_number = self.count_correct_tags() self.predict_tags_counter = Counter(self.predict_tags) self.golden_tags_counter = Counter(self.golden_tags) # 计算精确率 self.precision_scores = self.cal_precision() # 计算召回率 self.recall_scores = self.cal_recall() # 计算F1分数 self.f1_scores = self.cal_f1() def cal_precision(self): precision_scores = {} for tag in self.tagset: precision_scores[tag] = self.correct_tags_number.get(tag, 0) / \ self.predict_tags_counter[tag] return precision_scores def cal_recall(self): recall_scores = {} for tag in self.tagset: recall_scores[tag] = self.correct_tags_number.get(tag, 0) / \ self.golden_tags_counter[tag] return recall_scores def cal_f1(self): f1_scores = {} for tag in self.tagset: p, r = self.precision_scores[tag], self.recall_scores[tag] f1_scores[tag] = 2*p*r / (p+r+1e-10) # 加上一个特别小的数,防止分母为0 return f1_scores def report_scores(self): """将结果用表格的形式打印出来,像这个样子: precision recall f1-score support B-LOC 0.775 0.757 0.766 1084 I-LOC 0.601 0.631 0.616 325 B-MISC 0.698 0.499 0.582 339 I-MISC 0.644 0.567 0.603 557 B-ORG 0.795 0.801 0.798 1400 I-ORG 0.831 0.773 0.801 1104 B-PER 0.812 0.876 0.843 735 I-PER 0.873 0.931 0.901 634 avg/total 0.779 0.764 0.770 6178 """ # 打印表头 header_format = '{:>9s} {:>9} {:>9} {:>9} {:>9}' header = ['precision', 'recall', 'f1-score', 'support'] print(header_format.format('', *header)) row_format = '{:>9s} {:>9.4f} {:>9.4f} {:>9.4f} {:>9}' # 打印每个标签的 精确率、召回率、f1分数 for tag in self.tagset: print(row_format.format( tag, self.precision_scores[tag], self.recall_scores[tag], self.f1_scores[tag], self.golden_tags_counter[tag] )) # 计算并打印平均值 avg_metrics = self._cal_weighted_average() print(row_format.format( 'avg/total', avg_metrics['precision'], avg_metrics['recall'], avg_metrics['f1_score'], len(self.golden_tags) )) def count_correct_tags(self): """计算每种标签预测正确的个数(对应精确率、召回率计算公式上的tp),用于后面精确率以及召回率的计算""" correct_dict = {} for gold_tag, predict_tag in zip(self.golden_tags, self.predict_tags): if gold_tag == predict_tag: if gold_tag not in correct_dict: correct_dict[gold_tag] = 1 else: correct_dict[gold_tag] += 1 return correct_dict def _cal_weighted_average(self): weighted_average = {} total = len(self.golden_tags) # 计算weighted precisions: weighted_average['precision'] = 0. weighted_average['recall'] = 0. weighted_average['f1_score'] = 0. for tag in self.tagset: size = self.golden_tags_counter[tag] weighted_average['precision'] += self.precision_scores[tag] * size weighted_average['recall'] += self.recall_scores[tag] * size weighted_average['f1_score'] += self.f1_scores[tag] * size for metric in weighted_average.keys(): weighted_average[metric] /= total return weighted_average def _remove_Otags(self): length = len(self.golden_tags) O_tag_indices = [i for i in range(length) if self.golden_tags[i] == 'O'] self.golden_tags = [tag for i, tag in enumerate(self.golden_tags) if i not in O_tag_indices] self.predict_tags = [tag for i, tag in enumerate(self.predict_tags) if i not in O_tag_indices] print("原总标记数为{},移除了{}个O标记,占比{:.2f}%".format( length, len(O_tag_indices), len(O_tag_indices) / length * 100 )) def report_confusion_matrix(self): """计算混淆矩阵""" print("\nConfusion Matrix:") tag_list = list(self.tagset) # 初始化混淆矩阵 matrix[i][j]表示第i个tag被模型预测成第j个tag的次数 tags_size = len(tag_list) matrix = [] for i in range(tags_size): matrix.append([0] * tags_size) # 遍历tags列表 for golden_tag, predict_tag in zip(self.golden_tags, self.predict_tags): try: row = tag_list.index(golden_tag) col = tag_list.index(predict_tag) matrix[row][col] += 1 except ValueError: # 有极少数标记没有出现在golden_tags,但出现在predict_tags,跳过这些标记 continue # 输出矩阵 row_format_ = '{:>7} ' * (tags_size+1) print(row_format_.format("", *tag_list)) for i, row in enumerate(matrix): print(row_format_.format(tag_list[i], *row)) ================================================ FILE: named_entity_recognition/main.py ================================================ from data import build_corpus from utils import extend_maps, prepocess_data_for_lstmcrf from evaluate import hmm_train_eval, crf_train_eval, \ bilstm_train_and_eval, ensemble_evaluate def main(): """训练模型,评估结果""" # 读取数据 print("读取数据...") train_word_lists, train_tag_lists, word2id, tag2id = \ build_corpus("train") dev_word_lists, dev_tag_lists = build_corpus("dev", make_vocab=False) test_word_lists, test_tag_lists = build_corpus("test", make_vocab=False) # 训练评估hmm模型 print("正在训练评估HMM模型...") hmm_pred = hmm_train_eval( (train_word_lists, train_tag_lists), (test_word_lists, test_tag_lists), word2id, tag2id ) # 训练评估CRF模型 print("正在训练评估CRF模型...") crf_pred = crf_train_eval( (train_word_lists, train_tag_lists), (test_word_lists, test_tag_lists) ) # 训练评估BI-LSTM模型 print("正在训练评估双向LSTM模型...") # LSTM模型训练的时候需要在word2id和tag2id加入PAD和UNK bilstm_word2id, bilstm_tag2id = extend_maps(word2id, tag2id, for_crf=False) lstm_pred = bilstm_train_and_eval( (train_word_lists, train_tag_lists), (dev_word_lists, dev_tag_lists), (test_word_lists, test_tag_lists), bilstm_word2id, bilstm_tag2id, crf=False ) print("正在训练评估Bi-LSTM+CRF模型...") # 如果是加了CRF的lstm还要加入 (解码的时候需要用到) crf_word2id, crf_tag2id = extend_maps(word2id, tag2id, for_crf=True) # 还需要额外的一些数据处理 train_word_lists, train_tag_lists = prepocess_data_for_lstmcrf( train_word_lists, train_tag_lists ) dev_word_lists, dev_tag_lists = prepocess_data_for_lstmcrf( dev_word_lists, dev_tag_lists ) test_word_lists, test_tag_lists = prepocess_data_for_lstmcrf( test_word_lists, test_tag_lists, test=True ) lstmcrf_pred = bilstm_train_and_eval( (train_word_lists, train_tag_lists), (dev_word_lists, dev_tag_lists), (test_word_lists, test_tag_lists), crf_word2id, crf_tag2id ) ensemble_evaluate( [hmm_pred, crf_pred, lstm_pred, lstmcrf_pred], test_tag_lists ) if __name__ == "__main__": main() ================================================ FILE: named_entity_recognition/models/__init__.py ================================================ ================================================ FILE: named_entity_recognition/models/bilstm.py ================================================ import torch import torch.nn as nn from torch.nn.utils.rnn import pad_packed_sequence, pack_padded_sequence class BiLSTM(nn.Module): def __init__(self, vocab_size, emb_size, hidden_size, out_size): """初始化参数: vocab_size:字典的大小 emb_size:词向量的维数 hidden_size:隐向量的维数 out_size:标注的种类 """ super(BiLSTM, self).__init__() self.embedding = nn.Embedding(vocab_size, emb_size) self.bilstm = nn.LSTM(emb_size, hidden_size, batch_first=True, bidirectional=True) self.lin = nn.Linear(2*hidden_size, out_size) def forward(self, sents_tensor, lengths): emb = self.embedding(sents_tensor) # [B, L, emb_size] packed = pack_padded_sequence(emb, lengths, batch_first=True) rnn_out, _ = self.bilstm(packed) # rnn_out:[B, L, hidden_size*2] rnn_out, _ = pad_packed_sequence(rnn_out, batch_first=True) scores = self.lin(rnn_out) # [B, L, out_size] return scores def test(self, sents_tensor, lengths, _): """第三个参数不会用到,加它是为了与BiLSTM_CRF保持同样的接口""" logits = self.forward(sents_tensor, lengths) # [B, L, out_size] _, batch_tagids = torch.max(logits, dim=2) return batch_tagids ================================================ FILE: named_entity_recognition/models/bilstm_crf.py ================================================ from itertools import zip_longest from copy import deepcopy import torch import torch.nn as nn import torch.optim as optim from .util import tensorized, sort_by_lengths, cal_loss, cal_lstm_crf_loss from .config import TrainingConfig, LSTMConfig from .bilstm import BiLSTM class BILSTM_Model(object): def __init__(self, vocab_size, out_size, crf=True): """功能:对LSTM的模型进行训练与测试 参数: vocab_size:词典大小 out_size:标注种类 crf选择是否添加CRF层""" self.device = torch.device( "cuda" if torch.cuda.is_available() else "cpu") # 加载模型参数 self.emb_size = LSTMConfig.emb_size self.hidden_size = LSTMConfig.hidden_size self.crf = crf # 根据是否添加crf初始化不同的模型 选择不一样的损失计算函数 if not crf: self.model = BiLSTM(vocab_size, self.emb_size, self.hidden_size, out_size).to(self.device) self.cal_loss_func = cal_loss else: self.model = BiLSTM_CRF(vocab_size, self.emb_size, self.hidden_size, out_size).to(self.device) self.cal_loss_func = cal_lstm_crf_loss # 加载训练参数: self.epoches = TrainingConfig.epoches self.print_step = TrainingConfig.print_step self.lr = TrainingConfig.lr self.batch_size = TrainingConfig.batch_size # 初始化优化器 self.optimizer = optim.Adam(self.model.parameters(), lr=self.lr) # 初始化其他指标 self.step = 0 self._best_val_loss = 1e18 self.best_model = None def train(self, word_lists, tag_lists, dev_word_lists, dev_tag_lists, word2id, tag2id): # 对数据集按照长度进行排序 word_lists, tag_lists, _ = sort_by_lengths(word_lists, tag_lists) dev_word_lists, dev_tag_lists, _ = sort_by_lengths( dev_word_lists, dev_tag_lists) B = self.batch_size for e in range(1, self.epoches+1): self.step = 0 losses = 0. for ind in range(0, len(word_lists), B): batch_sents = word_lists[ind:ind+B] batch_tags = tag_lists[ind:ind+B] losses += self.train_step(batch_sents, batch_tags, word2id, tag2id) if self.step % TrainingConfig.print_step == 0: total_step = (len(word_lists) // B + 1) print("Epoch {}, step/total_step: {}/{} {:.2f}% Loss:{:.4f}".format( e, self.step, total_step, 100. * self.step / total_step, losses / self.print_step )) losses = 0. # 每轮结束测试在验证集上的性能,保存最好的一个 val_loss = self.validate( dev_word_lists, dev_tag_lists, word2id, tag2id) print("Epoch {}, Val Loss:{:.4f}".format(e, val_loss)) def train_step(self, batch_sents, batch_tags, word2id, tag2id): self.model.train() self.step += 1 # 准备数据 tensorized_sents, lengths = tensorized(batch_sents, word2id) tensorized_sents = tensorized_sents.to(self.device) targets, lengths = tensorized(batch_tags, tag2id) targets = targets.to(self.device) # forward scores = self.model(tensorized_sents, lengths) # 计算损失 更新参数 self.optimizer.zero_grad() loss = self.cal_loss_func(scores, targets, tag2id).to(self.device) loss.backward() self.optimizer.step() return loss.item() def validate(self, dev_word_lists, dev_tag_lists, word2id, tag2id): self.model.eval() with torch.no_grad(): val_losses = 0. val_step = 0 for ind in range(0, len(dev_word_lists), self.batch_size): val_step += 1 # 准备batch数据 batch_sents = dev_word_lists[ind:ind+self.batch_size] batch_tags = dev_tag_lists[ind:ind+self.batch_size] tensorized_sents, lengths = tensorized( batch_sents, word2id) tensorized_sents = tensorized_sents.to(self.device) targets, lengths = tensorized(batch_tags, tag2id) targets = targets.to(self.device) # forward scores = self.model(tensorized_sents, lengths) # 计算损失 loss = self.cal_loss_func( scores, targets, tag2id).to(self.device) val_losses += loss.item() val_loss = val_losses / val_step if val_loss < self._best_val_loss: print("保存模型...") self.best_model = deepcopy(self.model) self._best_val_loss = val_loss return val_loss def test(self, word_lists, tag_lists, word2id, tag2id): """返回最佳模型在测试集上的预测结果""" # 准备数据 word_lists, tag_lists, indices = sort_by_lengths(word_lists, tag_lists) tensorized_sents, lengths = tensorized(word_lists, word2id) tensorized_sents = tensorized_sents.to(self.device) self.best_model.eval() with torch.no_grad(): batch_tagids = self.best_model.test( tensorized_sents, lengths, tag2id) # 将id转化为标注 pred_tag_lists = [] id2tag = dict((id_, tag) for tag, id_ in tag2id.items()) for i, ids in enumerate(batch_tagids): tag_list = [] if self.crf: for j in range(lengths[i] - 1): # crf解码过程中,end被舍弃 tag_list.append(id2tag[ids[j].item()]) else: for j in range(lengths[i]): tag_list.append(id2tag[ids[j].item()]) pred_tag_lists.append(tag_list) # indices存有根据长度排序后的索引映射的信息 # 比如若indices = [1, 2, 0] 则说明原先索引为1的元素映射到的新的索引是0, # 索引为2的元素映射到新的索引是1... # 下面根据indices将pred_tag_lists和tag_lists转化为原来的顺序 ind_maps = sorted(list(enumerate(indices)), key=lambda e: e[1]) indices, _ = list(zip(*ind_maps)) pred_tag_lists = [pred_tag_lists[i] for i in indices] tag_lists = [tag_lists[i] for i in indices] return pred_tag_lists, tag_lists class BiLSTM_CRF(nn.Module): def __init__(self, vocab_size, emb_size, hidden_size, out_size): """初始化参数: vocab_size:字典的大小 emb_size:词向量的维数 hidden_size:隐向量的维数 out_size:标注的种类 """ super(BiLSTM_CRF, self).__init__() self.bilstm = BiLSTM(vocab_size, emb_size, hidden_size, out_size) # CRF实际上就是多学习一个转移矩阵 [out_size, out_size] 初始化为均匀分布 self.transition = nn.Parameter( torch.ones(out_size, out_size) * 1/out_size) # self.transition.data.zero_() def forward(self, sents_tensor, lengths): # [B, L, out_size] emission = self.bilstm(sents_tensor, lengths) # 计算CRF scores, 这个scores大小为[B, L, out_size, out_size] # 也就是每个字对应对应一个 [out_size, out_size]的矩阵 # 这个矩阵第i行第j列的元素的含义是:上一时刻tag为i,这一时刻tag为j的分数 batch_size, max_len, out_size = emission.size() crf_scores = emission.unsqueeze( 2).expand(-1, -1, out_size, -1) + self.transition.unsqueeze(0) return crf_scores def test(self, test_sents_tensor, lengths, tag2id): """使用维特比算法进行解码""" start_id = tag2id[''] end_id = tag2id[''] pad = tag2id[''] tagset_size = len(tag2id) crf_scores = self.forward(test_sents_tensor, lengths) device = crf_scores.device # B:batch_size, L:max_len, T:target set size B, L, T, _ = crf_scores.size() # viterbi[i, j, k]表示第i个句子,第j个字对应第k个标记的最大分数 viterbi = torch.zeros(B, L, T).to(device) # backpointer[i, j, k]表示第i个句子,第j个字对应第k个标记时前一个标记的id,用于回溯 backpointer = (torch.zeros(B, L, T).long() * end_id).to(device) lengths = torch.LongTensor(lengths).to(device) # 向前递推 for step in range(L): batch_size_t = (lengths > step).sum().item() if step == 0: # 第一个字它的前一个标记只能是start_id viterbi[:batch_size_t, step, :] = crf_scores[: batch_size_t, step, start_id, :] backpointer[: batch_size_t, step, :] = start_id else: max_scores, prev_tags = torch.max( viterbi[:batch_size_t, step-1, :].unsqueeze(2) + crf_scores[:batch_size_t, step, :, :], # [B, T, T] dim=1 ) viterbi[:batch_size_t, step, :] = max_scores backpointer[:batch_size_t, step, :] = prev_tags # 在回溯的时候我们只需要用到backpointer矩阵 backpointer = backpointer.view(B, -1) # [B, L * T] tagids = [] # 存放结果 tags_t = None for step in range(L-1, 0, -1): batch_size_t = (lengths > step).sum().item() if step == L-1: index = torch.ones(batch_size_t).long() * (step * tagset_size) index = index.to(device) index += end_id else: prev_batch_size_t = len(tags_t) new_in_batch = torch.LongTensor( [end_id] * (batch_size_t - prev_batch_size_t)).to(device) offset = torch.cat( [tags_t, new_in_batch], dim=0 ) # 这个offset实际上就是前一时刻的 index = torch.ones(batch_size_t).long() * (step * tagset_size) index = index.to(device) index += offset.long() try: tags_t = backpointer[:batch_size_t].gather( dim=1, index=index.unsqueeze(1).long()) except RuntimeError: import pdb pdb.set_trace() tags_t = tags_t.squeeze(1) tagids.append(tags_t.tolist()) # tagids:[L-1](L-1是因为扣去了end_token),大小的liebiao # 其中列表内的元素是该batch在该时刻的标记 # 下面修正其顺序,并将维度转换为 [B, L] tagids = list(zip_longest(*reversed(tagids), fillvalue=pad)) tagids = torch.Tensor(tagids).long() # 返回解码的结果 return tagids ================================================ FILE: named_entity_recognition/models/config.py ================================================ # 设置lstm训练参数 class TrainingConfig(object): batch_size = 64 # 学习速率 lr = 0.001 epoches = 30 print_step = 5 class LSTMConfig(object): emb_size = 128 # 词向量的维数 hidden_size = 128 # lstm隐向量的维数 ================================================ FILE: named_entity_recognition/models/crf.py ================================================ from sklearn_crfsuite import CRF from .util import sent2features class CRFModel(object): def __init__(self, algorithm='lbfgs', c1=0.1, c2=0.1, max_iterations=100, all_possible_transitions=False ): self.model = CRF(algorithm=algorithm, c1=c1, c2=c2, max_iterations=max_iterations, all_possible_transitions=all_possible_transitions) def train(self, sentences, tag_lists): features = [sent2features(s) for s in sentences] self.model.fit(features, tag_lists) def test(self, sentences): features = [sent2features(s) for s in sentences] pred_tag_lists = self.model.predict(features) return pred_tag_lists ================================================ FILE: named_entity_recognition/models/hmm.py ================================================ import torch class HMM(object): def __init__(self, N, M): """Args: N: 状态数,这里对应存在的标注的种类 M: 观测数,这里对应有多少不同的字 """ self.N = N self.M = M # 状态转移概率矩阵 A[i][j]表示从i状态转移到j状态的概率 self.A = torch.zeros(N, N) # 观测概率矩阵, B[i][j]表示i状态下生成j观测的概率 self.B = torch.zeros(N, M) # 初始状态概率 Pi[i]表示初始时刻为状态i的概率 self.Pi = torch.zeros(N) def train(self, word_lists, tag_lists, word2id, tag2id): """HMM的训练,即根据训练语料对模型参数进行估计, 因为我们有观测序列以及其对应的状态序列,所以我们 可以使用极大似然估计的方法来估计隐马尔可夫模型的参数 参数: word_lists: 列表,其中每个元素由字组成的列表,如 ['担','任','科','员'] tag_lists: 列表,其中每个元素是由对应的标注组成的列表,如 ['O','O','B-TITLE', 'E-TITLE'] word2id: 将字映射为ID tag2id: 字典,将标注映射为ID """ assert len(tag_lists) == len(word_lists) # 估计转移概率矩阵 for tag_list in tag_lists: seq_len = len(tag_list) for i in range(seq_len - 1): current_tagid = tag2id[tag_list[i]] next_tagid = tag2id[tag_list[i+1]] self.A[current_tagid][next_tagid] += 1 # 问题:如果某元素没有出现过,该位置为0,这在后续的计算中是不允许的 # 解决方法:我们将等于0的概率加上很小的数 self.A[self.A == 0.] = 1e-10 self.A = self.A / self.A.sum(dim=1, keepdim=True) # 估计观测概率矩阵 for tag_list, word_list in zip(tag_lists, word_lists): assert len(tag_list) == len(word_list) for tag, word in zip(tag_list, word_list): tag_id = tag2id[tag] word_id = word2id[word] self.B[tag_id][word_id] += 1 self.B[self.B == 0.] = 1e-10 self.B = self.B / self.B.sum(dim=1, keepdim=True) # 估计初始状态概率 for tag_list in tag_lists: init_tagid = tag2id[tag_list[0]] self.Pi[init_tagid] += 1 self.Pi[self.Pi == 0.] = 1e-10 self.Pi = self.Pi / self.Pi.sum() def test(self, word_lists, word2id, tag2id): pred_tag_lists = [] for word_list in word_lists: pred_tag_list = self.decoding(word_list, word2id, tag2id) pred_tag_lists.append(pred_tag_list) return pred_tag_lists def decoding(self, word_list, word2id, tag2id): """ 使用维特比算法对给定观测序列求状态序列, 这里就是对字组成的序列,求其对应的标注。 维特比算法实际是用动态规划解隐马尔可夫模型预测问题,即用动态规划求概率最大路径(最优路径) 这时一条路径对应着一个状态序列 """ # 问题:整条链很长的情况下,十分多的小概率相乘,最后可能造成下溢 # 解决办法:采用对数概率,这样源空间中的很小概率,就被映射到对数空间的大的负数 # 同时相乘操作也变成简单的相加操作 A = torch.log(self.A) B = torch.log(self.B) Pi = torch.log(self.Pi) # 初始化 维比特矩阵viterbi 它的维度为[状态数, 序列长度] # 其中viterbi[i, j]表示标注序列的第j个标注为i的所有单个序列(i_1, i_2, ..i_j)出现的概率最大值 seq_len = len(word_list) viterbi = torch.zeros(self.N, seq_len) # backpointer是跟viterbi一样大小的矩阵 # backpointer[i, j]存储的是 标注序列的第j个标注为i时,第j-1个标注的id # 等解码的时候,我们用backpointer进行回溯,以求出最优路径 backpointer = torch.zeros(self.N, seq_len).long() # self.Pi[i] 表示第一个字的标记为i的概率 # Bt[word_id]表示字为word_id的时候,对应各个标记的概率 # self.A.t()[tag_id]表示各个状态转移到tag_id对应的概率 # 所以第一步为 start_wordid = word2id.get(word_list[0], None) Bt = B.t() if start_wordid is None: # 如果字不再字典里,则假设状态的概率分布是均匀的 bt = torch.log(torch.ones(self.N) / self.N) else: bt = Bt[start_wordid] viterbi[:, 0] = Pi + bt backpointer[:, 0] = -1 # 递推公式: # viterbi[tag_id, step] = max(viterbi[:, step-1]* self.A.t()[tag_id] * Bt[word]) # 其中word是step时刻对应的字 # 由上述递推公式求后续各步 for step in range(1, seq_len): wordid = word2id.get(word_list[step], None) # 处理字不在字典中的情况 # bt是在t时刻字为wordid时,状态的概率分布 if wordid is None: # 如果字不再字典里,则假设状态的概率分布是均匀的 bt = torch.log(torch.ones(self.N) / self.N) else: bt = Bt[wordid] # 否则从观测概率矩阵中取bt for tag_id in range(len(tag2id)): max_prob, max_id = torch.max( viterbi[:, step-1] + A[:, tag_id], dim=0 ) viterbi[tag_id, step] = max_prob + bt[tag_id] backpointer[tag_id, step] = max_id # 终止, t=seq_len 即 viterbi[:, seq_len]中的最大概率,就是最优路径的概率 best_path_prob, best_path_pointer = torch.max( viterbi[:, seq_len-1], dim=0 ) # 回溯,求最优路径 best_path_pointer = best_path_pointer.item() best_path = [best_path_pointer] for back_step in range(seq_len-1, 0, -1): best_path_pointer = backpointer[best_path_pointer, back_step] best_path_pointer = best_path_pointer.item() best_path.append(best_path_pointer) # 将tag_id组成的序列转化为tag assert len(best_path) == len(word_list) id2tag = dict((id_, tag) for tag, id_ in tag2id.items()) tag_list = [id2tag[id_] for id_ in reversed(best_path)] return tag_list ================================================ FILE: named_entity_recognition/models/util.py ================================================ import torch import torch.nn.functional as F # ******** CRF 工具函数************* def word2features(sent, i): """抽取单个字的特征""" word = sent[i] prev_word = "" if i == 0 else sent[i-1] next_word = "" if i == (len(sent)-1) else sent[i+1] # 使用的特征: # 前一个词,当前词,后一个词, # 前一个词+当前词, 当前词+后一个词 features = { 'w': word, 'w-1': prev_word, 'w+1': next_word, 'w-1:w': prev_word+word, 'w:w+1': word+next_word, 'bias': 1 } return features def sent2features(sent): """抽取序列特征""" return [word2features(sent, i) for i in range(len(sent))] # ******** LSTM模型 工具函数************* def tensorized(batch, maps): PAD = maps.get('') UNK = maps.get('') max_len = len(batch[0]) batch_size = len(batch) batch_tensor = torch.ones(batch_size, max_len).long() * PAD for i, l in enumerate(batch): for j, e in enumerate(l): batch_tensor[i][j] = maps.get(e, UNK) # batch各个元素的长度 lengths = [len(l) for l in batch] return batch_tensor, lengths def sort_by_lengths(word_lists, tag_lists): pairs = list(zip(word_lists, tag_lists)) indices = sorted(range(len(pairs)), key=lambda k: len(pairs[k][0]), reverse=True) pairs = [pairs[i] for i in indices] # pairs.sort(key=lambda pair: len(pair[0]), reverse=True) word_lists, tag_lists = list(zip(*pairs)) return word_lists, tag_lists, indices def cal_loss(logits, targets, tag2id): """计算损失 参数: logits: [B, L, out_size] targets: [B, L] lengths: [B] """ PAD = tag2id.get('') assert PAD is not None mask = (targets != PAD) # [B, L] targets = targets[mask] out_size = logits.size(2) logits = logits.masked_select( mask.unsqueeze(2).expand(-1, -1, out_size) ).contiguous().view(-1, out_size) assert logits.size(0) == targets.size(0) loss = F.cross_entropy(logits, targets) return loss # FOR BiLSTM-CRF def cal_lstm_crf_loss(crf_scores, targets, tag2id): """计算双向LSTM-CRF模型的损失 该损失函数的计算可以参考:https://arxiv.org/pdf/1603.01360.pdf """ pad_id = tag2id.get('') start_id = tag2id.get('') end_id = tag2id.get('') device = crf_scores.device # targets:[B, L] crf_scores:[B, L, T, T] batch_size, max_len = targets.size() target_size = len(tag2id) # mask = 1 - ((targets == pad_id) + (targets == end_id)) # [B, L] mask = (targets != pad_id) lengths = mask.sum(dim=1) targets = indexed(targets, target_size, start_id) # # 计算Golden scores方法1 # import pdb # pdb.set_trace() targets = targets.masked_select(mask) # [real_L] flatten_scores = crf_scores.masked_select( mask.view(batch_size, max_len, 1, 1).expand_as(crf_scores) ).view(-1, target_size*target_size).contiguous() golden_scores = flatten_scores.gather( dim=1, index=targets.unsqueeze(1)).sum() # 计算golden_scores方法2:利用pack_padded_sequence函数 # targets[targets == end_id] = pad_id # scores_at_targets = torch.gather( # crf_scores.view(batch_size, max_len, -1), 2, targets.unsqueeze(2)).squeeze(2) # scores_at_targets, _ = pack_padded_sequence( # scores_at_targets, lengths-1, batch_first=True # ) # golden_scores = scores_at_targets.sum() # 计算all path scores # scores_upto_t[i, j]表示第i个句子的第t个词被标注为j标记的所有t时刻事前的所有子路径的分数之和 scores_upto_t = torch.zeros(batch_size, target_size).to(device) for t in range(max_len): # 当前时刻 有效的batch_size(因为有些序列比较短) batch_size_t = (lengths > t).sum().item() if t == 0: scores_upto_t[:batch_size_t] = crf_scores[:batch_size_t, t, start_id, :] else: # We add scores at current timestep to scores accumulated up to previous # timestep, and log-sum-exp Remember, the cur_tag of the previous # timestep is the prev_tag of this timestep # So, broadcast prev. timestep's cur_tag scores # along cur. timestep's cur_tag dimension scores_upto_t[:batch_size_t] = torch.logsumexp( crf_scores[:batch_size_t, t, :, :] + scores_upto_t[:batch_size_t].unsqueeze(2), dim=1 ) all_path_scores = scores_upto_t[:, end_id].sum() # 训练大约两个epoch loss变成负数,从数学的角度上来说,loss = -logP loss = (all_path_scores - golden_scores) / batch_size return loss def indexed(targets, tagset_size, start_id): """将targets中的数转化为在[T*T]大小序列中的索引,T是标注的种类""" batch_size, max_len = targets.size() for col in range(max_len-1, 0, -1): targets[:, col] += (targets[:, col-1] * tagset_size) targets[:, 0] += (start_id * tagset_size) return targets ================================================ FILE: named_entity_recognition/output.txt ================================================ 读取数据... 加载并评估hmm模型... precision recall f1-score support E-EDU 0.9167 0.9821 0.9483 112 B-RACE 1.0000 0.9286 0.9630 14 E-TITLE 0.9514 0.9637 0.9575 772 B-NAME 0.9800 0.8750 0.9245 112 M-NAME 0.9459 0.8537 0.8974 82 M-CONT 0.9815 1.0000 0.9907 53 M-ORG 0.9002 0.9327 0.9162 4325 B-CONT 0.9655 1.0000 0.9825 28 B-EDU 0.9000 0.9643 0.9310 112 B-LOC 0.3333 0.3333 0.3333 6 B-ORG 0.8422 0.8879 0.8644 553 B-TITLE 0.8811 0.8925 0.8867 772 E-CONT 0.9655 1.0000 0.9825 28 E-ORG 0.8262 0.8680 0.8466 553 E-NAME 0.9000 0.8036 0.8491 112 M-TITLE 0.9038 0.8751 0.8892 1922 E-LOC 0.5000 0.5000 0.5000 6 B-PRO 0.5581 0.7273 0.6316 33 M-LOC 0.5833 0.3333 0.4242 21 O 0.9568 0.9177 0.9369 5190 M-PRO 0.4490 0.6471 0.5301 68 M-EDU 0.9348 0.9609 0.9477 179 E-PRO 0.6512 0.8485 0.7368 33 E-RACE 1.0000 0.9286 0.9630 14 avg/total 0.9149 0.9122 0.9130 15100 Confusion Matrix: E-EDU B-RACE E-TITLE B-NAME M-NAME M-CONT M-ORG B-CONT B-EDU B-LOC B-ORG B-TITLE E-CONT E-ORG E-NAME M-TITLE E-LOC B-PRO M-LOC O M-PRO M-EDU E-PRO E-RACE E-EDU 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 B-RACE 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 E-TITLE 1 0 744 0 0 0 15 0 0 0 4 0 0 0 0 2 0 0 0 6 0 0 0 0 B-NAME 0 0 0 98 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 M-NAME 0 0 0 0 70 0 3 0 0 0 0 0 0 0 6 0 0 0 0 3 0 0 0 0 M-CONT 0 0 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 M-ORG 3 0 4 1 2 1 4034 0 3 0 38 17 1 42 2 53 3 10 5 70 25 1 7 0 B-CONT 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 B-EDU 0 0 0 0 0 0 1 0 108 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 B-LOC 0 0 0 0 0 0 0 0 0 2 3 0 0 0 0 0 0 0 0 1 0 0 0 0 B-ORG 0 0 0 1 0 0 23 1 0 3 491 6 0 0 0 0 0 0 0 28 0 0 0 0 B-TITLE 0 0 1 0 0 0 23 0 2 0 6 689 0 1 0 28 0 2 0 20 0 0 0 0 E-CONT 0 0 0 0 0 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 E-ORG 0 0 1 0 0 0 30 0 1 0 0 9 0 480 0 18 0 1 0 10 3 0 0 0 E-NAME 0 0 0 0 2 0 0 0 0 0 0 0 0 3 90 0 0 0 0 16 0 0 0 0 M-TITLE 3 0 6 0 0 0 115 0 2 0 3 35 0 17 0 1682 0 1 0 44 7 4 3 0 E-LOC 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 0 0 2 0 0 0 0 B-PRO 0 0 0 0 0 0 5 0 1 0 0 0 0 0 0 0 0 24 0 0 3 0 0 0 M-LOC 0 0 0 0 0 0 7 0 0 1 0 0 0 2 0 0 0 0 7 4 0 0 0 0 O 2 0 26 0 0 0 204 0 1 0 37 26 0 30 2 78 0 3 0 4763 12 1 4 0 M-PRO 0 0 0 0 0 0 18 0 1 0 0 0 0 3 0 0 0 1 0 0 44 1 0 0 M-EDU 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 4 172 0 0 E-PRO 1 0 0 0 0 0 0 0 1 0 0 0 0 2 0 0 0 0 0 0 0 1 28 0 E-RACE 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 13 加载并评估crf模型... precision recall f1-score support E-EDU 0.9910 0.9821 0.9865 112 B-RACE 1.0000 1.0000 1.0000 14 E-TITLE 0.9857 0.9819 0.9838 772 B-NAME 1.0000 0.9821 0.9910 112 M-NAME 1.0000 0.9756 0.9877 82 M-CONT 1.0000 1.0000 1.0000 53 M-ORG 0.9523 0.9563 0.9543 4325 B-CONT 1.0000 1.0000 1.0000 28 B-EDU 0.9820 0.9732 0.9776 112 B-LOC 1.0000 0.8333 0.9091 6 B-ORG 0.9636 0.9566 0.9601 553 B-TITLE 0.9376 0.9339 0.9358 772 E-CONT 1.0000 1.0000 1.0000 28 E-ORG 0.9199 0.9132 0.9165 553 E-NAME 1.0000 0.9821 0.9910 112 M-TITLE 0.9248 0.9022 0.9134 1922 E-LOC 1.0000 0.8333 0.9091 6 B-PRO 0.9091 0.9091 0.9091 33 M-LOC 1.0000 0.8095 0.8947 21 O 0.9630 0.9732 0.9681 5190 M-PRO 0.8354 0.9706 0.8980 68 M-EDU 0.9824 0.9330 0.9570 179 E-PRO 0.9091 0.9091 0.9091 33 E-RACE 1.0000 1.0000 1.0000 14 avg/total 0.9543 0.9543 0.9542 15100 Confusion Matrix: E-EDU B-RACE E-TITLE B-NAME M-NAME M-CONT M-ORG B-CONT B-EDU B-LOC B-ORG B-TITLE E-CONT E-ORG E-NAME M-TITLE E-LOC B-PRO M-LOC O M-PRO M-EDU E-PRO E-RACE E-EDU 110 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 B-RACE 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 E-TITLE 1 0 758 0 0 0 2 0 0 0 0 0 0 1 0 1 0 0 0 9 0 0 0 0 B-NAME 0 0 0 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 M-NAME 0 0 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 M-CONT 0 0 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 M-ORG 0 0 2 0 0 0 4136 0 0 0 1 11 0 12 0 65 0 1 0 91 5 0 1 0 B-CONT 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 B-EDU 0 0 0 0 0 0 1 0 109 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 B-LOC 0 0 0 0 0 0 0 0 0 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 B-ORG 0 0 0 0 0 0 1 0 0 0 529 12 0 0 0 0 0 0 0 11 0 0 0 0 B-TITLE 0 0 0 0 0 0 12 0 0 0 7 721 0 0 0 22 0 1 0 9 0 0 0 0 E-CONT 0 0 0 0 0 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 E-ORG 0 0 1 0 0 0 14 0 0 0 0 0 0 505 0 20 0 0 0 13 0 0 0 0 E-NAME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110 0 0 0 0 2 0 0 0 0 M-TITLE 0 0 3 0 0 0 89 0 1 0 1 19 0 17 0 1734 0 0 0 54 2 1 1 0 E-LOC 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 0 0 0 0 0 0 0 B-PRO 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 30 0 0 1 0 0 0 M-LOC 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 O 0 0 5 0 0 0 75 0 0 0 9 6 0 11 0 33 0 0 0 5051 0 0 0 0 M-PRO 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 66 0 0 0 M-EDU 0 0 0 0 0 0 5 0 0 0 0 0 0 1 0 0 0 1 0 1 4 167 0 0 E-PRO 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 30 0 E-RACE 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 加载并评估bilstm模型... precision recall f1-score support E-EDU 0.9732 0.9732 0.9732 112 B-RACE 1.0000 0.9286 0.9630 14 E-TITLE 0.9754 0.9754 0.9754 772 B-NAME 1.0000 0.8929 0.9434 112 M-NAME 0.9186 0.9634 0.9405 82 M-CONT 0.9815 1.0000 0.9907 53 M-ORG 0.9631 0.9535 0.9583 4325 B-CONT 1.0000 1.0000 1.0000 28 B-EDU 0.9649 0.9821 0.9735 112 B-LOC 1.0000 0.8333 0.9091 6 B-ORG 0.9402 0.9675 0.9537 553 B-TITLE 0.9457 0.9249 0.9352 772 E-CONT 1.0000 1.0000 1.0000 28 E-ORG 0.9194 0.9078 0.9136 553 E-NAME 1.0000 0.9464 0.9725 112 M-TITLE 0.9409 0.8871 0.9132 1922 E-LOC 1.0000 1.0000 1.0000 6 B-PRO 0.8182 0.8182 0.8182 33 M-LOC 1.0000 1.0000 1.0000 21 O 0.9541 0.9819 0.9678 5190 M-PRO 0.7159 0.9265 0.8077 68 M-EDU 0.9716 0.9553 0.9634 179 E-PRO 0.8857 0.9394 0.9118 33 E-RACE 1.0000 1.0000 1.0000 14 avg/total 0.9537 0.9532 0.9532 15100 Confusion Matrix: E-EDU B-RACE E-TITLE B-NAME M-NAME M-CONT M-ORG B-CONT B-EDU B-LOC B-ORG B-TITLE E-CONT E-ORG E-NAME M-TITLE E-LOC B-PRO M-LOC O M-PRO M-EDU E-PRO E-RACE E-EDU 109 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 B-RACE 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 E-TITLE 1 0 753 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 14 0 0 0 0 B-NAME 0 0 0 100 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 M-NAME 0 0 0 0 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 M-CONT 0 0 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 M-ORG 1 0 0 0 0 1 4124 0 0 0 21 11 0 16 0 46 0 2 0 94 8 0 1 0 B-CONT 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 B-EDU 0 0 0 0 0 0 1 0 110 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 B-LOC 0 0 0 0 0 0 0 0 0 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 B-ORG 0 0 0 0 0 0 3 0 1 0 535 4 0 0 0 0 0 0 0 10 0 0 0 0 B-TITLE 0 0 0 0 0 0 10 0 0 0 7 714 0 1 0 24 0 1 0 15 0 0 0 0 E-CONT 0 0 0 0 0 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 E-ORG 0 0 1 0 0 0 14 0 0 0 0 1 0 502 0 21 0 0 0 11 3 0 0 0 E-NAME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 0 0 0 0 2 0 0 0 0 M-TITLE 1 0 6 0 2 0 81 0 1 0 0 17 0 16 0 1705 0 0 0 86 3 3 1 0 E-LOC 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 B-PRO 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 27 0 0 3 0 0 0 M-LOC 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 0 0 0 O 0 0 12 0 0 0 44 0 0 0 5 7 0 7 0 13 0 2 0 5096 4 0 0 0 M-PRO 0 0 0 0 0 0 4 0 0 0 0 0 0 1 0 0 0 0 0 0 63 0 0 0 M-EDU 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 4 171 0 0 E-PRO 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 31 0 E-RACE 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 加载并评估bilstm+crf模型... precision recall f1-score support E-EDU 0.9820 0.9732 0.9776 112 B-RACE 1.0000 0.9286 0.9630 14 E-TITLE 0.9921 0.9767 0.9843 772 B-NAME 1.0000 0.9196 0.9581 112 M-NAME 0.9753 0.9634 0.9693 82 M-CONT 1.0000 0.9623 0.9808 53 M-ORG 0.9525 0.9635 0.9579 4325 B-CONT 1.0000 0.9643 0.9818 28 B-EDU 0.9820 0.9732 0.9776 112 B-LOC 1.0000 0.8333 0.9091 6 B-ORG 0.9555 0.9711 0.9632 553 B-TITLE 0.9420 0.9262 0.9340 772 E-CONT 1.0000 0.9643 0.9818 28 E-ORG 0.9234 0.9150 0.9192 553 E-NAME 1.0000 0.9375 0.9677 112 M-TITLE 0.9528 0.8918 0.9213 1922 E-LOC 1.0000 0.8333 0.9091 6 B-PRO 0.9412 0.9697 0.9552 33 M-LOC 1.0000 0.8095 0.8947 21 O 0.9605 0.9827 0.9714 5190 M-PRO 0.8684 0.9706 0.9167 68 M-EDU 0.9767 0.9385 0.9573 179 E-PRO 0.9118 0.9394 0.9254 33 E-RACE 1.0000 1.0000 1.0000 14 avg/total 0.9574 0.9572 0.9570 15100 Confusion Matrix: E-EDU B-RACE E-TITLE B-NAME M-NAME M-CONT M-ORG B-CONT B-EDU B-LOC B-ORG B-TITLE E-CONT E-ORG E-NAME M-TITLE E-LOC B-PRO M-LOC O M-PRO M-EDU E-PRO E-RACE E-EDU 109 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 B-RACE 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 E-TITLE 1 0 754 0 0 0 3 0 0 0 0 0 0 2 0 1 0 0 0 11 0 0 0 0 B-NAME 0 0 0 103 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 M-NAME 0 0 0 0 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 M-CONT 0 0 0 0 0 51 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 M-ORG 0 0 0 0 0 0 4167 0 0 0 9 14 0 16 0 37 0 0 0 77 4 0 1 0 B-CONT 0 0 0 0 0 0 0 27 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 B-EDU 0 0 0 0 0 0 2 0 109 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 B-LOC 0 0 0 0 0 0 0 0 0 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 B-ORG 0 0 0 0 0 0 1 0 0 0 537 5 0 0 0 0 0 0 0 10 0 0 0 0 B-TITLE 0 0 0 0 0 0 14 0 0 0 7 715 0 2 0 20 0 1 0 13 0 0 0 0 E-CONT 0 0 0 0 0 0 0 0 0 0 0 0 27 0 0 0 0 0 0 1 0 0 0 0 E-ORG 0 0 0 0 0 0 20 0 0 0 0 0 0 506 0 17 0 1 0 9 0 0 0 0 E-NAME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 105 0 0 0 0 6 0 0 0 0 M-TITLE 0 0 2 0 0 0 102 0 1 0 2 18 0 13 0 1714 0 0 0 66 2 1 1 0 E-LOC 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 B-PRO 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 M-LOC 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 O 0 0 4 0 0 0 57 0 0 0 5 7 0 7 0 10 0 0 0 5100 0 0 0 0 M-PRO 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 66 0 0 0 M-EDU 1 0 0 0 0 0 2 0 0 0 1 0 0 1 0 0 0 0 0 2 4 168 0 0 E-PRO 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 31 0 E-RACE 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 Ensemble 四个模型的结果如下: precision recall f1-score support E-EDU 0.9910 0.9821 0.9865 112 B-RACE 1.0000 0.9286 0.9630 14 E-TITLE 0.9832 0.9832 0.9832 772 B-NAME 1.0000 0.9286 0.9630 112 M-NAME 0.9756 0.9756 0.9756 82 M-CONT 1.0000 1.0000 1.0000 53 M-ORG 0.9434 0.9667 0.9549 4325 B-CONT 1.0000 1.0000 1.0000 28 B-EDU 0.9735 0.9821 0.9778 112 B-LOC 1.0000 0.8333 0.9091 6 B-ORG 0.9747 0.9747 0.9747 553 B-TITLE 0.9426 0.9365 0.9396 772 E-CONT 1.0000 1.0000 1.0000 28 E-ORG 0.9305 0.9204 0.9255 553 E-NAME 1.0000 0.9464 0.9725 112 M-TITLE 0.9499 0.8975 0.9230 1922 E-LOC 1.0000 0.8333 0.9091 6 B-PRO 0.9000 0.8182 0.8571 33 M-LOC 1.0000 0.8095 0.8947 21 O 0.9679 0.9707 0.9693 5190 M-PRO 0.7586 0.9706 0.8516 68 M-EDU 0.9773 0.9609 0.9690 179 E-PRO 0.8857 0.9394 0.9118 33 E-RACE 1.0000 1.0000 1.0000 14 avg/total 0.9569 0.9565 0.9564 15100 Confusion Matrix: E-EDU B-RACE E-TITLE B-NAME M-NAME M-CONT M-ORG B-CONT B-EDU B-LOC B-ORG B-TITLE E-CONT E-ORG E-NAME M-TITLE E-LOC B-PRO M-LOC O M-PRO M-EDU E-PRO E-RACE E-EDU 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 B-RACE 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 E-TITLE 1 0 759 0 0 0 2 0 0 0 0 0 0 1 0 1 0 0 0 8 0 0 0 0 B-NAME 0 0 0 104 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 M-NAME 0 0 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 M-CONT 0 0 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 M-ORG 0 0 1 0 0 0 4181 0 0 0 4 10 0 14 0 38 0 0 0 68 8 0 1 0 B-CONT 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 B-EDU 0 0 0 0 0 0 1 0 110 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 B-LOC 0 0 0 0 0 0 0 0 0 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 B-ORG 0 0 0 0 0 0 0 0 0 0 539 5 0 0 0 0 0 0 0 9 0 0 0 0 B-TITLE 0 0 0 0 0 0 13 0 0 0 6 723 0 0 0 19 0 1 0 10 0 0 0 0 E-CONT 0 0 0 0 0 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 E-ORG 0 0 1 0 0 0 15 0 0 0 0 1 0 509 0 15 0 1 0 9 2 0 0 0 E-NAME 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106 0 0 0 0 5 0 0 0 0 M-TITLE 0 0 3 0 0 0 106 0 1 0 0 21 0 13 0 1725 0 0 0 48 3 1 1 0 E-LOC 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 B-PRO 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 27 0 0 3 0 0 0 M-LOC 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 O 0 0 8 0 0 0 106 0 0 0 3 7 0 8 0 18 0 0 0 5038 1 0 1 0 M-PRO 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 66 0 0 0 M-EDU 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 4 172 0 0 E-PRO 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 31 0 E-RACE 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 ================================================ FILE: named_entity_recognition/requirement.txt ================================================ numpy==1.16.2 python-crfsuite==0.9.6 six==1.12.0 sklearn-crfsuite==0.3.6 tabulate==0.8.3 torch==1.0.1.post2 tqdm==4.31.1 ================================================ FILE: named_entity_recognition/test.py ================================================ from utils import load_model, extend_maps, prepocess_data_for_lstmcrf from data import build_corpus from evaluating import Metrics from evaluate import ensemble_evaluate HMM_MODEL_PATH = './ckpts/hmm.pkl' CRF_MODEL_PATH = './ckpts/crf.pkl' BiLSTM_MODEL_PATH = './ckpts/bilstm.pkl' BiLSTMCRF_MODEL_PATH = './ckpts/bilstm_crf.pkl' REMOVE_O = False # 在评估的时候是否去除O标记 def main(): print("读取数据...") train_word_lists, train_tag_lists, word2id, tag2id = \ build_corpus("train") dev_word_lists, dev_tag_lists = build_corpus("dev", make_vocab=False) test_word_lists, test_tag_lists = build_corpus("test", make_vocab=False) print("加载并评估hmm模型...") hmm_model = load_model(HMM_MODEL_PATH) hmm_pred = hmm_model.test(test_word_lists, word2id, tag2id) metrics = Metrics(test_tag_lists, hmm_pred, remove_O=REMOVE_O) metrics.report_scores() # 打印每个标记的精确度、召回率、f1分数 metrics.report_confusion_matrix() # 打印混淆矩阵 # 加载并评估CRF模型 print("加载并评估crf模型...") crf_model = load_model(CRF_MODEL_PATH) crf_pred = crf_model.test(test_word_lists) metrics = Metrics(test_tag_lists, crf_pred, remove_O=REMOVE_O) metrics.report_scores() metrics.report_confusion_matrix() # bilstm模型 print("加载并评估bilstm模型...") bilstm_word2id, bilstm_tag2id = extend_maps(word2id, tag2id, for_crf=False) bilstm_model = load_model(BiLSTM_MODEL_PATH) bilstm_model.model.bilstm.flatten_parameters() # remove warning lstm_pred, target_tag_list = bilstm_model.test(test_word_lists, test_tag_lists, bilstm_word2id, bilstm_tag2id) metrics = Metrics(target_tag_list, lstm_pred, remove_O=REMOVE_O) metrics.report_scores() metrics.report_confusion_matrix() print("加载并评估bilstm+crf模型...") crf_word2id, crf_tag2id = extend_maps(word2id, tag2id, for_crf=True) bilstm_model = load_model(BiLSTMCRF_MODEL_PATH) bilstm_model.model.bilstm.bilstm.flatten_parameters() # remove warning test_word_lists, test_tag_lists = prepocess_data_for_lstmcrf( test_word_lists, test_tag_lists, test=True ) lstmcrf_pred, target_tag_list = bilstm_model.test(test_word_lists, test_tag_lists, crf_word2id, crf_tag2id) metrics = Metrics(target_tag_list, lstmcrf_pred, remove_O=REMOVE_O) metrics.report_scores() metrics.report_confusion_matrix() ensemble_evaluate( [hmm_pred, crf_pred, lstm_pred, lstmcrf_pred], test_tag_lists ) if __name__ == "__main__": main() ================================================ FILE: named_entity_recognition/utils.py ================================================ import pickle def merge_maps(dict1, dict2): """用于合并两个word2id或者两个tag2id""" for key in dict2.keys(): if key not in dict1: dict1[key] = len(dict1) return dict1 def save_model(model, file_name): """用于保存模型""" with open(file_name, "wb") as f: pickle.dump(model, f) def load_model(file_name): """用于加载模型""" with open(file_name, "rb") as f: model = pickle.load(f) return model # LSTM模型训练的时候需要在word2id和tag2id加入PAD和UNK # 如果是加了CRF的lstm还要加入 (解码的时候需要用到) def extend_maps(word2id, tag2id, for_crf=True): word2id[''] = len(word2id) word2id[''] = len(word2id) tag2id[''] = len(tag2id) tag2id[''] = len(tag2id) # 如果是加了CRF的bilstm 那么还要加入token if for_crf: word2id[''] = len(word2id) word2id[''] = len(word2id) tag2id[''] = len(tag2id) tag2id[''] = len(tag2id) return word2id, tag2id def prepocess_data_for_lstmcrf(word_lists, tag_lists, test=False): assert len(word_lists) == len(tag_lists) for i in range(len(word_lists)): word_lists[i].append("") if not test: # 如果是测试数据,就不需要加end token了 tag_lists[i].append("") return word_lists, tag_lists def flatten_lists(lists): flatten_list = [] for l in lists: if type(l) == list: flatten_list += l else: flatten_list.append(l) return flatten_list ================================================ FILE: word2vector/fasttext/README.md ================================================ # Fasttext Fasttext的简单实现。 如果使用本书附带的[docker镜像](https://hub.docker.com/r/chatopera/qna-book/),所有依赖已经安装好,不需要再次安装。使用docker镜像运行程序的方式详见[文档](https://github.com/l11x0m7/book-of-qna-code/blob/master/README.md)。 ## 依赖 * python2.7 ``` pip install scipy pip install numpy ``` ### 运行 ``` ./run.sh ``` ================================================ FILE: word2vector/fasttext/fasttext.py ================================================ # -*- encoding:utf8 -*- from __future__ import print_function from __future__ import division import numpy as np import json import pickle import wget import os import zipfile import heapq import time import itertools import threading import numpy.random as random import sys import scipy import scipy.sparse import math from multiprocessing.pool import ThreadPool from Queue import Queue from numpy import float32 as REAL import logging logging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO) logger = logging.getLogger('fasttext') from utils import * """ # Introduction A simple code version for fasttext # Reference [1] https://github.com/RaRe-Technologies/gensim/blob/develop/gensim """ # ----- fasttext ----- # gensim里用的cython版本。 # 本来用cython版本的train_sentence会快很多,不过主要介绍原理,所以都用python介绍。 def train_sentence_sg(model, sentence, alpha, is_ft=False, work=None): """ skip-gram `model` 训练的词向量模型 `sentence` 一个词列表,表示一个句子 `alpha` 学习率 `is_ft` 表示是否是fasttext模式 """ total_loss = 0. count = 1 # 遍历每个句子的词,该词`word`作为中心词 for pos, word in enumerate(sentence): if word is None: # 跳过OOV的词 continue # 设定一个随机的窗口大小,最终真正的单侧窗口大小为window - reduced_window reduced_window = model.random.randint(model.window) if is_ft: subwords_indices = [word.index] word2_subwords = model.ngrams_word[model.id2word[word.index]] for subword in word2_subwords: subwords_indices.append(model.ngrams[subword]) # 遍历两侧词窗内的所有词,分别预测 start = max(0, pos - model.window + reduced_window) for pos2, word2 in enumerate(sentence[start : pos + model.window + 1 - reduced_window], start): if pos2 == pos or word2 is None: # 跳过OOV的词以及中心词`word` continue if is_ft: l1_vocab = model.syn0[subwords_indices[0]] l1_ngrams = np.sum(model.syn0_ngrams[subwords_indices[1:]], axis=0) if subwords_indices: l1 = np.sum([l1_vocab, l1_ngrams], axis=0) / len(subwords_indices) else: # 得到输入词向量v_w # 此处本应该是`word`而不是`word2`,即求P(word2|word)的极大似然, # 不过这样的话,输入的投影矩阵syn0在每个词窗下只能更新一个词多次, # 因此此处改成求对称的P(word|word2)的极大似然,这样可以让输入的投影矩阵syn0在每个词窗下更新多个词 # 对应fasttext则仍为word,如果是word2vec则为word2 l1 = model.syn0[word2.index] # 用来存储l1的更新梯度*学习率 neu1e = np.zeros(l1.shape, dtype=np.float32) if model.hs >= 1: # `outer((1 - word.code - fa), l1)`为关于l2a的梯度 # `dot((1 - word.code - fa), l2a)`为关于l1的梯度 # `word.point`是一个array,表示抽取出所有的当前叶子结点的结点路径 # `l2a`是一个矩阵,shape为(codelen, layer1_size) l2a = model.syn1[word.point] # 隐层输出,`fa`的shape为(1, codelen),每个值表示code预测为1(向树右侧走)的概率 fa = expit(np.dot(l1, l2a.T)) # shape为(1, codelen) ga = (1 - word.code - fa) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(codelen, layer1_size) model.syn1[word.point] += np.outer(ga, l1) # learn hidden -> output # 更新输入矩阵 neu1e += np.dot(ga, l2a) # 计算loss sgn = (-1.0)**word.code # ch function, 0-> 1, 1 -> -1 loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T)))) total_loss += loss / len(word.code) count += 1 model.running_training_loss += loss else: # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度 # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度 # 从构建的`cum_table`中找到`negative`个负样本 neg_indices = [word.index] while len(neg_indices) < model.negative + 1: w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1])) if w != word.index: neg_indices.append(w) # `l2b`是一个矩阵,shape为(negative+1, layer1_size) l2b = model.syn1neg[neg_indices] # shape为(1, negative+1) prod_term = np.dot(l1, l2b.T) # shape为(1, negative+1) fb = expit(prod_term) # propagate hidden -> output # shape为(1, negative+1) gb = (model.neg_labels - fb) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(negative+1, layer1_size) model.syn1neg[neg_indices] += np.outer(gb, l1) # learn hidden -> output # 更新输入矩阵 neu1e += np.dot(gb, l2b) # 计算loss loss1 = -sum(np.log(expit(-1 * prod_term[1:]))) loss2 = -np.log(expit(prod_term[0])) total_loss += (loss1 + loss2) / len(prod_term) count += 1 model.running_training_loss += loss1 # for the sampled words model.running_training_loss += loss2 # for the output word # 更新输入矩阵 if is_ft: # 这里的梯度需要除以len(subwords_indices)么? # 这块我提了issue,有人和我想的一样,是需要除的 # 但是gensim官方说不需要除 # 其实这个相当于是另一个学习率,对结果影响不大 # 参考链接:https://github.com/RaRe-Technologies/gensim/issues/697 model.syn0[subwords_indices[0]] += neu1e / len(subwords_indices) for i in subwords_indices[1:]: model.syn0_ngrams[i] += neu1e / len(subwords_indices) else: l1 += neu1e # save error # 返回句子中的非OOV的词的个数 return len([word for word in sentence if word is not None]), 1.0 * total_loss / count def train_sentence_cbow(model, sentence, alpha, is_ft=False, work=None, cbow_mean=True): """ cbow `model` 训练的词向量模型 `sentence` 一个词列表,表示一个句子 `alpha` 学习率 """ total_loss = 0. count = 1 for pos, word in enumerate(sentence): if word is None: continue reduced_window = model.random.randint(model.window) start = max(0, pos - model.window + reduced_window) window_pos = enumerate(sentence[start:(pos + model.window + 1 - reduced_window)], start) word2_indices = [word2.index for pos2, word2 in window_pos if (word2 is not None and pos2 != pos)] # 按fasttext方式 if is_ft: word2_subwords = [] # 得到上下文词的索引 vocab_subwords_indices = [] # 得到上下文词的subword的索引 ngrams_subwords_indices = [] for index in word2_indices: vocab_subwords_indices += [index] word2_subwords += model.ngrams_word[model.id2word[index]] for subword in word2_subwords: ngrams_subwords_indices.append(model.ngrams[subword]) # 将每个上下文词的向量求和 l1_vocab = np.sum(model.syn0[vocab_subwords_indices], axis=0) # 1 x vector_size # 将每个上下文词的subword的向量求和 l1_ngrams = np.sum(model.syn0_ngrams[ngrams_subwords_indices], axis=0) # 1 x vector_size # 将两个向量相加,得到最终的上下文向量 l1 = np.sum([l1_vocab, l1_ngrams], axis=0) subwords_indices = [vocab_subwords_indices] + [ngrams_subwords_indices] if (subwords_indices[0] or subwords_indices[1]) and cbow_mean: l1 /= (len(subwords_indices[0]) + len(subwords_indices[1])) # 按word2vec方式 else: # (1, layer1_size) l1 = np.sum(model.syn0[word2_indices], axis=0) if word2_indices and cbow_mean: l1 /= len(word2_indices) neu1e = np.zeros(l1.shape, dtype=np.float32) if model.hs >= 1: # `outer((1 - word.code - fa), l1)`为关于l2a的梯度 # `dot((1 - word.code - fa), l2a)`为关于l1的梯度 # shape为(codelen, layer1_size) l2a = model.syn1[word.point] # shape为(1, codelen) fa = expit(np.dot(l1, l2a.T)) # shape为(1, codelen) ga = (1 - word.code - fa) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(codelen, layer1_size) model.syn1[word.point] += np.outer(ga, l1) # learn hidden -> output # 更新输入矩阵 neu1e += np.dot(ga, l2a) # 计算loss sgn = (-1.0)**word.code # ch function, 0-> 1, 1 -> -1 loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T)))) total_loss += loss / len(word.code) count += 1 model.running_training_loss += loss else: # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度 # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度 # 从构建的`cum_table`中找到`negative`个负样本 neg_indices = [word.index] while len(neg_indices) < model.negative + 1: w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1])) if w != word.index: neg_indices.append(w) # `l2b`是一个矩阵,shape为(negative+1, layer1_size) l2b = model.syn1neg[neg_indices] # shape为(1, negative+1) prod_term = np.dot(l1, l2b.T) # shape为(1, negative+1) fb = expit(prod_term) # propagate hidden -> output # shape为(1, negative+1) gb = (model.neg_labels - fb) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(negative+1, layer1_size) model.syn1neg[neg_indices] += np.outer(gb, l1) # learn hidden -> output # 更新输入矩阵 neu1e += np.dot(gb, l2b) # 计算loss loss1 = -sum(np.log(expit(-1 * prod_term[1:]))) loss2 = -np.log(expit(prod_term[0])) total_loss += (loss1 + loss2) / len(prod_term) count += 1 model.running_training_loss += loss1 # for the sampled words model.running_training_loss += loss2 # for the output word # 更新输入矩阵 if is_ft: if cbow_mean and subwords_indices: neu1e /= (len(subwords_indices[0]) + len(subwords_indices[1])) for i in subwords_indices[0]: model.syn0[i] += (neu1e / len(subwords_indices[0])) for i in subwords_indices[1]: model.syn0_ngrams[i] += (neu1e / len(subwords_indices[1])) else: if cbow_mean and word2_indices: neu1e /= len(word2_indices) for i in word2_indices: model.syn0[i] += neu1e return len([word for word in sentence if word is not None]), 1.0 * total_loss / count class Vocab(object): """ 用来存储词汇,如果用hs,则可以看成一个树结点 """ def __init__(self, **kwargs): """ `count` 词频 `index` 索引 `left` 如果用hs,则表示左孩子 `right` 如果用hs,则表示右孩子 `code` 叶子结点的编码路径(从根结点到叶子结点的huffman编码) `point` 叶子结点的结点路径(从根结点到叶子结点经过的结点索引) """ self.count = 0 self.index = -1 self.left = None self.right = None self.code = [] self.point = [] self.__dict__.update(kwargs) def __lt__(self, vocab): return self.count < vocab.count def __str__(self): return '<' + ', '.join([ '{}:{}'.format( (_, self.__dict__[_]) for _ in self.__dict__ if not self.__dict__[_].startswith('_'))]) + '>' # 由于在构建对象的时候直接训练模型,因此就不直接继承Word2Vec类了 class FastText(SaveAndLoad): def __init__(self, sentences=None, size=100, alpha=0.025, window=5, min_count=5, seed=1, iters=5, workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, sort_vocab=True, min_n=3, max_n=6, bucket=1e5): """ FastText模型,其中sentences可以不给定,表示不训练模型。 此时初始化的模型可以进行加载模型等操作 `sentences` 输入的用于训练的句子集合,可以是迭代器,也可以是一般的list等 `size` 词向量维度,也就是训练的时候隐变量的维度 `window` 一句话中的当前词与上下文词的最大距离,指单侧词窗 `alpha` 初始学习率,学习过程中随着呈线性下降趋势 `seed` 随机数种子 `iters` 迭代次数 `min_count` 用于过滤的最小词频 `workers` CPU多核的时候可以使用多线程来加快训练 `min_alpha` 最小学习率 `hs` 是否使用hierarchical softmax,当hs>=1时表示使用hs,否则为negative sampling `sg` 是否使用skip-gram,如果sg>=1表示使用sg,否则为cbow `negative` 表示负样本个数,用于hs<=0的情况 `sort_vocab` 表示是否对id2word按词频从高到低排序 以下是新加的参数 `min_n` 表示subword的ngram最小数 `max_n` 表示subword的ngram最大值 `bucket` 表示共存储的subword的ngram种类数 """ self.window = int(window) self.size = int(size) self.min_count = int(min_count) self.alpha = alpha self.min_alpha = min_alpha self.epochs = iters self.seed = seed self.random = random.RandomState(seed) self.workers = int(workers) self.hs = int(hs) self.sg = int(sg) self.negative = int(negative) self.sort_vocab = sort_vocab self.cum_table = None # negative sampling时才用到 self.vocab = {} # 词汇表,词->Vocab类 self.id2word = [] # id->词 # 新加的变量 self.min_n = int(min_n) self.max_n = int(max_n) self.bucket = int(bucket) self.ngrams_word = {} # word->suword表 self.ngrams = {} # subword->id, 一个id可能对应多个subword(经过hash后) self.num_ngram_vectors = 0 # 记录ngram总个数 self.syn0 = [] # 即所学的词向量 self.syn1 = [] # 用于hs self.syn1neg = [] # 用于负采样 # 新加的变量 self.syn0_ngrams = [] # (bucket, size),表示存储的subword向量 self.running_training_loss = 0. self.layer1_size = self.size if sentences is not None: self.build_vocab(sentences) if self.epochs is not None and self.epochs > 0: sentences = RepeatCorpusNTimes(sentences, self.epochs) self.train(sentences) def get_latest_training_loss(self): return self.running_training_loss def __reset_vocab(self): """ 重置词典和词表 """ self.vocab = {} self.word_list = [] def build_vocab(self, sentences): """ 构建词典,筛除低频词,并给每个词赋予索引index """ # 统计词频 vocab = {} for sentence in sentences: for word in sentence: vocab.setdefault(word, Vocab(count=0)) vocab[word].count += 1 # 重置词典 self.__reset_vocab() # 构建词典 for word, v in vocab.iteritems(): if v.count >= self.min_count: v.index = len(self.vocab) self.vocab[word] = v self.id2word.append(word) if self.sort_vocab: self.id2word = list(sorted(self.id2word, key=lambda x: self.vocab[x].count, reverse=True)) for i, word in enumerate(self.id2word): self.vocab[word].index = i if self.hs >= 1: self.create_binary_tree() else: self.make_cum_table() self.build_ngrams() self.reset_weights() def build_ngrams(self): self.ngrams_word = {} for w in self.vocab.iterkeys(): self.ngrams_word[w] = self.compute_ngrams(w, self.min_n, self.max_n) self.ngrams = {} all_ngrams = [] for w, ngrams in self.ngrams_word.iteritems(): all_ngrams += ngrams all_ngrams = list(set(all_ngrams)) self.num_ngram_vectors = len(all_ngrams) logger.info("Total number of ngrams is %d", len(all_ngrams)) self.hash2index = {} new_hash_count = 0 for i, ngram in enumerate(all_ngrams): ngram_hash = self.ft_hash(ngram) % self.bucket if ngram_hash in self.hash2index: self.ngrams[ngram] = wv.hash2index[ngram_hash] else: self.hash2index[ngram_hash] = new_hash_count self.ngrams[ngram] = self.hash2index[ngram_hash] new_hash_count = new_hash_count + 1 def reset_weights(self): """ 初始化(重置)两个投影矩阵。 syn0用于输入的词向量矩阵, syn1在输出为hs的时候为tree中每个内部结点 (包括根结点共len(vocab)-1个)的向量矩阵。 """ self.syn0 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL) self.syn0 += (self.random.rand(len(self.vocab), self.layer1_size) - 0.5) / self.layer1_size self.syn0_ngrams = zeros_aligned((self.bucket, self.layer1_size), dtype=REAL) self.syn0_ngrams += (self.random.rand(self.bucket, self.layer1_size) - 0.5) / self.layer1_size if self.hs >= 1: # syn1的索引对应的不是词,而是huffman树内部结点 # 因此syn0与syn1不能直接结合 self.syn1 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL) else: # syn0与syn1neg的索引对应的词一致,可以直接结合(如相加求平均) self.syn1neg = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL) self.syn0norm = None self.syn0_ngrams_norm = None def make_cum_table(self, power=0.75, domain=2**31 - 1): """ 构建用于negative sampling的cumulative table `power` 表示压缩值(论文中的值),可以有效防止负采样时候的长尾效应 `domain` 表示采样点的范围,如果归一化到概率,则是[0, 1],用于轮盘采样 """ vocab_size = len(self.id2word) self.cum_table = np.zeros(vocab_size, dtype=np.uint32) # compute sum of all power (Z in paper) train_words_pow = 0.0 for word_index in xrange(vocab_size): train_words_pow += self.vocab[self.id2word[word_index]].count ** power cumulative = 0.0 for word_index in xrange(vocab_size): cumulative += self.vocab[self.id2word[word_index]].count ** power self.cum_table[word_index] = round(cumulative / train_words_pow * domain) if len(self.cum_table) > 0: assert self.cum_table[-1] == domain def create_binary_tree(self): """ 构建huffman树,用于hierarchical softmax 叶子结点表示词汇。 内部结点包含该路径下的词频和与索引(该索引对应矩阵syn1) 叶子结点包含对应词汇的词频与索引(该索引对应矩阵syn0) 高频词出现在较短的路径上。 叶子结点共`vocab_size`个,而内部结点(包含root结点)共`vocab_size-1`个 """ heap = self.vocab.values() heapq.heapify(heap) # 构建huffman二叉树,每次取词频最高的结点构成新结点 for idx in xrange(len(self.vocab) - 1): min1, min2 = heapq.heappop(heap), heapq.heappop(heap) heapq.heappush(heap, Vocab(count=min1.count + min2.count, index=idx + len(self.vocab), left=min1, right=min2)) # 此时heap里只有一个结点,即根结点 if heap: # max_depth记录树最大深度 # stack中三个元素分别代表:当前结点、当前结点的编码路径、当前结点的结点路径 max_depth, stack = 0, [(heap[0], [], [])] # list可以当做stack用 while stack: node, codes, points = stack.pop() # 表示一个叶子结点 if node.index < len(self.vocab): node.code = codes node.point = points max_depth = max(len(codes), max_depth) else: # 表示一个内部结点 # 编码路径由于是二进制,可以用unit8节省内存 # 这里讲内部结点的index减去一个vocab的大小,是为了保持内部结点的索引对应矩阵syn1的索引(从0开始) points = np.asarray(list(points) + [node.index - len(self.vocab)], dtype=np.uint32) stack.append((node.left, np.asarray(list(codes) + [0], dtype=np.uint8), points)) stack.append((node.right, np.asarray(list(codes) + [1], dtype=np.uint8), points)) logger.info("built huffman tree with maximum node depth %i" % max_depth) self.max_depth = max_depth def train(self, sentences, total_words=None, word_count=0, chunksize=100): """ Update the model's neural weights from a sequence of sentences (can be a once-only generator stream). Each sentence must be a list of utf8 strings. 更新词向量权重 每输入一个句子,表示一次迭代更新。 `sentences` 输入的用于训练的句子集合 `total_words` 总词频和 `word_count` 词种类数 `chunksize` 多线程的时候,每个线程一次性处理或被分配到的句子数 """ logger.info("training model with %i workers on %i vocabulary and %i features" % (self.workers, len(self.vocab), self.layer1_size)) if not self.vocab: raise RuntimeError("you must first build vocabulary before training the model") self.neg_labels = [] if self.negative >= 1: # 负样本标签 self.neg_labels = np.zeros(self.negative + 1) self.neg_labels[0] = 1. # 用来记录时间的起始与打log的判定时间, # `next_report`存到list是因为需要在多个线程内作为类对象被访问,`word_count`同理 start, next_report = time.time(), [1.0] word_count, total_words = [word_count], total_words or sum(v.count for v in self.vocab.itervalues()) # 考虑缓冲区 jobs = Queue(maxsize=2 * self.workers) # 因为有共享变量(如`word_count`),所以加锁 lock = threading.Lock() def worker_train(): """Train the model, lifting lists of sentences from the jobs queue.""" # 多线程配给的memory work = zeros_aligned(self.layer1_size, dtype=REAL) while True: # 一个job就是一个chunksize条句子的数据集 job = jobs.get() if job is None: # 数据读完,退出 break # 在开始训练之前先减小训练速率 alpha = max(self.min_alpha, self.alpha * (1 - 1.0 * word_count[0] / total_words / self.epochs)) # 训练参数;统计当前job训练的词数,OOV的词不算 if self.sg >= 1: func = train_sentence_sg else: func = train_sentence_cbow job_words, total_loss = np.sum([func(self, sentence, alpha, True, work) for sentence in job], axis=0) total_loss /= len(job) # 请求锁,用来更新`word_count` with lock: word_count[0] += job_words elapsed = time.time() - start # 防止一直打log if elapsed >= next_report[0]: logger.info("PROGRESS: at %.2f%% words, alpha %.05f, %.0f words/s, loss %.08f" % (100.0 * word_count[0] / total_words / self.epochs, alpha, word_count[0] / elapsed if elapsed else 0.0, total_loss)) # 可以让log保持一秒及一秒以上打一次 next_report[0] = elapsed + 1.0 workers = [threading.Thread(target=worker_train) for _ in xrange(self.workers)] for thread in workers: thread.daemon = True # 可以更便捷的用ctrl+c中断程序 thread.start() # 把输入的string变成Vocab类,对于OOV则用None表示,并把数据拆分成多个job,存到queue里 no_oov = ([self.vocab.get(word, None) for word in sentence] for sentence in sentences) for job_no, job in enumerate(grouper(no_oov, chunksize)): logger.debug("putting job #%i in the queue, qsize=%i" % (job_no, jobs.qsize())) jobs.put(job) logger.info("reached the end of input; waiting to finish %i outstanding jobs" % jobs.qsize()) # 再补充`self.workers`个jobs,用来告知线程数据读取完成 for _ in xrange(self.workers): jobs.put(None) for thread in workers: thread.join() elapsed = time.time() - start logger.info("training on %i words took %.1fs, %.0f words/s" % (word_count[0], elapsed, word_count[0] / elapsed if elapsed else 0.0)) return word_count[0] # ---辅助函数--- def __getitem__(self, word): """ 返回word对应的词向量 Example:: >>> trained_model['woman'] array([ -1.40128313e-02, ...] """ return self.word_vec(word) def __contains__(self, word): return word in self.vocab def similarity(self, w1, w2): """ 计算词w1与w2的余弦相似度 Example:: >>> trained_model.similarity('woman', 'man') 0.73723527 >>> trained_model.similarity('woman', 'woman') 1.0 """ return np.dot(self.word_vec(w1, True), self.word_vec(w2, True)) def init_sims(self): if getattr(self, 'syn0norm', None) is None: logger.info("precomputing L2-norms of word weight vectors") self.syn0norm = np.vstack(unitvec(vec) for vec in self.syn0).astype(REAL) if getattr(self, 'syn0_ngrams_norm', None) is None: logger.info("precomputing L2-norms of subword weight vectors") self.syn0_ngrams_norm = np.vstack(unitvec(vec) for vec in self.syn0_ngrams).astype(REAL) def most_similar(self, positive=[], negative=[], topn=10): """ 找到topn个最相似的词,即与postive最相似的且与negative最不相似的词 使用给定词的词向量余弦相似度的平均表示词类比 Example:: >>> model.most_similar(positive=['woman', 'king'], negative=['man']) [('queen', 0.50882536), ...] >>> model.most_similar('dog') """ self.init_sims() if isinstance(positive, basestring) and not negative: # allow calls like most_similar('dog'), as a shorthand for most_similar(['dog']) positive = [positive] # add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words positive = [(word, 1.0) if isinstance(word, basestring) else word for word in positive] negative = [(word, -1.0) if isinstance(word, basestring) else word for word in negative] # compute the weighted average of all words all_words, mean = set(), [] for word, weight in positive + negative: mean.append(weight * self.word_vec(word, True)) if word in self.vocab: all_words.add(self.vocab[word].index) if not mean: raise ValueError("cannot compute similarity with no input") mean = unitvec(np.asarray(mean).mean(axis=0)).astype(REAL) dists = np.dot(self.syn0norm, mean) if not topn: return dists best = np.argsort(dists)[::-1][:topn + len(all_words)] # ignore (don't return) words from the input result = [(self.id2word[sim], dists[sim]) for sim in best if sim not in all_words] return result[:topn] def word_vec(self, word, use_norm=False): """ 给定一个词,返回该词的词向量 `use_norm` 如果为True,则返回正则化的词向量 """ self.init_sims() if word in self.vocab: if use_norm: result = self.syn0norm[self.vocab[word].index] else: result = self.syn0[self.vocab[word].index] return result else: word_vec = np.zeros(self.syn0_ngrams.shape[1], dtype=np.float32) ngrams = self.compute_ngrams(word, self.min_n, self.max_n) ngrams = [ng for ng in ngrams if ng in self.ngrams] if use_norm: ngram_weights = self.syn0_ngrams_norm else: ngram_weights = self.syn0_ngrams for ngram in ngrams: word_vec += ngram_weights[self.ngrams[ngram]] if word_vec.any(): return word_vec / len(ngrams) else: # No ngrams of the word are present in self.ngrams raise KeyError('all ngrams for word %s absent from model' % word) # 新加,直接从gensim上获取 def compute_ngrams(self, word, min_n, max_n): """Returns the list of all possible ngrams for a given word. Parameters ---------- word : str The word whose ngrams need to be computed min_n : int minimum character length of the ngrams max_n : int maximum character length of the ngrams Returns ------- :obj:`list` of :obj:`str` List of character ngrams """ BOW, EOW = ('<', '>') # Used by FastText to attach to all words as prefix and suffix extended_word = BOW + word + EOW ngrams = [] for ngram_length in range(min_n, min(len(extended_word), max_n) + 1): for i in range(0, len(extended_word) - ngram_length + 1): ngrams.append(extended_word[i:i + ngram_length]) return ngrams # 新加,直接从gensim上获取 def ft_hash(self, string): """Reproduces [hash method](https://github.com/facebookresearch/fastText/blob/master/src/dictionary.cc) used in [1]_. Parameter --------- string : str The string whose hash needs to be calculated Returns ------- int The hash of the string """ # Runtime warnings for integer overflow are raised, this is expected behaviour. These warnings are suppressed. old_settings = np.seterr(all='ignore') h = np.uint32(2166136261) for c in string: h = h ^ np.uint32(ord(c)) h = h * np.uint32(16777619) np.seterr(**old_settings) return h if __name__ == '__main__': if not os.path.exists('../data'): os.mkdir('../data') # 训练语料 text8 = Text8Corpus('../data/text8.zip', sent_len=20, sent_num=200) # 训练模型 logging.info("start training model") # skip-gram与negative sampling # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, # sort_vocab=True) # cbow与negative sampling # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=0, sg=1, negative=10, # sort_vocab=True) # cbow与hierarchical softmax # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=1, sg=0, negative=10, # sort_vocab=True) # skip-gram与hierarchical softmax # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=1, sg=1, negative=10, # sort_vocab=True) logging.info("finished training model") # 简单例子测试 test_corpus = ("""human interface computer survey user computer system response time eps user interface system system human system eps user response time trees graph trees graph minors trees graph minors survey I like graph and stuff I like trees and stuff Sometimes I build a graph Sometimes I build trees""").split("\n") start = time.time() test_corpus = [_.split() for _ in test_corpus] model = FastText(sentences=test_corpus, size=5, alpha=0.025, window=5, min_count=1, seed=1, iters=500, workers=2, min_alpha=0.0001, hs=1, sg=1, negative=10, sort_vocab=True, min_n=3, max_n=6, bucket=100000) similar = model.most_similar('graph', topn=1)[0][0] print(similar) assert similar == 'trees' similar = model.most_similar('tree', topn=1)[0][0] print(similar) assert similar == 'trees' print('elapsed time:{}s'.format(time.time() - start)) ================================================ FILE: word2vector/fasttext/run.sh ================================================ #! /bin/bash ########################################### # ########################################### # constants baseDir=$(cd `dirname "$0"`;pwd) # functions # main [ -z "${BASH_SOURCE[0]}" -o "${BASH_SOURCE[0]}" = "$0" ] || return echo "active python2.7 environment" source ~/venv-py2/bin/activate # Use python2 cd $baseDir echo `python --version` set -x python fasttext.py echo "deactivate python2.7 environment ..." deactivate ================================================ FILE: word2vector/fasttext/utils.py ================================================ # -*- encoding:utf8 -*- from __future__ import print_function from __future__ import division import numpy as np import json import pickle import wget import os import zipfile import heapq import time import itertools import sys import scipy import scipy.sparse import math from Queue import Queue # ----- utils工具 ----- def zeros_aligned(shape, dtype, order='C', align=128): """Like `numpy.zeros()`, but the array will be aligned at `align` byte boundary.""" nbytes = np.prod(shape) * np.dtype(dtype).itemsize buffer = np.zeros(nbytes + align, dtype=np.uint8) start_index = -buffer.ctypes.data % align return buffer[start_index : start_index + nbytes].view(dtype).reshape(shape, order=order) def chunkize_serial(iterable, chunksize, as_numpy=False): """ Return elements from the iterable in `chunksize`-ed lists. The last returned element may be smaller (if length of collection is not divisible by `chunksize`). >>> print list(grouper(xrange(10), 3)) [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]] """ it = iter(iterable) while True: if as_numpy: # convert each document to a 2d numpy array (~6x faster when transmitting # chunk data over the wire, in Pyro) wrapped_chunk = [[np.array(doc) for doc in itertools.islice(it, int(chunksize))]] else: wrapped_chunk = [list(itertools.islice(it, int(chunksize)))] if not wrapped_chunk[0]: break # memory opt: wrap the chunk and then pop(), to avoid leaving behind a dangling reference yield wrapped_chunk.pop() grouper = chunkize_serial def expit(x): return 1.0 / (1.0 + np.exp(-x)) def unitvec(vec): """ Scale a vector to unit length. The only exception is the zero vector, which is returned back unchanged. Output will be in the same format as input (i.e., gensim vector=>gensim vector, or numpy array=>numpy array, scipy.sparse=>scipy.sparse). """ if scipy.sparse.issparse(vec): # convert scipy.sparse to standard numpy array vec = vec.tocsr() veclen = np.sqrt(np.sum(vec.data ** 2)) if veclen > 0.0: return vec / veclen else: return vec if isinstance(vec, np.ndarray): vec = np.asarray(vec, dtype=float) veclen = np.sqrt(np.sum(vec ** 2)) if veclen > 0.0: return vec / veclen else: return vec def cossim(vec1, vec2): vec1, vec2 = dict(vec1), dict(vec2) if not vec1 or not vec2: return 0.0 vec1len = 1.0 * math.sqrt(sum(val * val for val in vec1.itervalues())) vec2len = 1.0 * math.sqrt(sum(val * val for val in vec2.itervalues())) assert vec1len > 0.0 and vec2len > 0.0, "sparse documents must not contain any explicit zero entries" if len(vec2) < len(vec1): vec1, vec2 = vec2, vec1 # swap references so that we iterate over the shorter vector result = sum(value * vec2.get(index, 0.0) for index, value in vec1.iteritems()) result /= vec1len * vec2len # rescale by vector lengths return result class RepeatCorpusNTimes(object): """Wrap a `corpus` and repeat it `n` times. Examples -------- >>> corpus = [[(1, 0.5)], []] >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []] """ def __init__(self, corpus, n): """ Parameters ---------- corpus : iterable of iterable of (int, int) Input corpus. n : int Number of repeats for corpus. """ self.corpus = corpus self.n = n def __iter__(self): for _ in xrange(self.n): for document in self.corpus: yield document class SaveAndLoad(object): """ 用于保存和读取python类对象的基类 """ def __init__(self): pass def save(self, fname): with open(fname, 'wb') as fw: pickle.dump(self, fw, protocol=2) logger.info('File saved in {}'.format(fname)) @classmethod def load(cls, fname): with open(fname, 'rb') as fr: return pickle.load(fr) # ----- dataset ----- class Text8Corpus(object): """ Iterate over sentences from the "text8" corpus, unzipped from http://mattmahoney.net/dc/text8.zip . text8数据读取,用于训练 """ def __init__(self, fname, sent_num=None, sent_len=1000): self.fname = fname self.sent_num = sent_num self.sent_len = sent_len if not os.path.exists(self.fname): wget.download('http://mattmahoney.net/dc/text8.zip', out=self.fname) print('Downloaded zip file `text8.zip`!') def __iter__(self): # the entire corpus is one gigantic line -- there are no sentence marks at all # so just split the sequence of tokens arbitrarily: 1 sentence = 1000 tokens sentence, rest, max_sentence_length = [], '', self.sent_len idx = 0 with zipfile.ZipFile(self.fname) as zip_text8: with zip_text8.open(zip_text8.getinfo('text8')) as fin: while True: if self.sent_num is not None and idx >= self.sent_num: break text = rest + fin.read(8192) # avoid loading the entire file (=1 line) into RAM if text == rest: # EOF sentence.extend(rest.split()) # return the last chunk of words, too (may be shorter/longer) if sentence: idx += 1 yield sentence break last_token = text.rfind(' ') # the last token may have been split in two... keep it for the next iteration words, rest = (text[:last_token].split(), text[last_token:].strip()) if last_token >= 0 else ([], text) sentence.extend(words) while len(sentence) >= max_sentence_length: idx += 1 yield sentence[:max_sentence_length] if self.sent_num is not None and idx >= self.sent_num: break sentence = sentence[max_sentence_length:] ================================================ FILE: word2vector/fasttext/wget.py ================================================ #!/usr/bin/env python """ Download utility as an easy way to get file from the net python -m wget python wget.py Downloads: http://pypi.python.org/pypi/wget/ Development: http://bitbucket.org/techtonik/python-wget/ wget.py is not option compatible with Unix wget utility, to make command line interface intuitive for new people. Public domain by anatoly techtonik Also available under the terms of MIT license Copyright (c) 2010-2014 anatoly techtonik """ import sys, shutil, os import tempfile import math PY3K = sys.version_info >= (3, 0) if PY3K: import urllib.request as urllib import urllib.parse as urlparse else: import urllib import urlparse __version__ = "2.3-beta1" def filename_from_url(url): """:return: detected filename or None""" fname = os.path.basename(urlparse.urlparse(url).path) if len(fname.strip(" \n\t.")) == 0: return None return fname def filename_from_headers(headers): """Detect filename from Content-Disposition headers if present. http://greenbytes.de/tech/tc2231/ :param: headers as dict, list or string :return: filename from content-disposition header or None """ if type(headers) == str: headers = headers.splitlines() if type(headers) == list: headers = dict([x.split(':', 1) for x in headers]) cdisp = headers.get("Content-Disposition") if not cdisp: return None cdtype = cdisp.split(';') if len(cdtype) == 1: return None if cdtype[0].strip().lower() not in ('inline', 'attachment'): return None # several filename params is illegal, but just in case fnames = [x for x in cdtype[1:] if x.strip().startswith('filename=')] if len(fnames) > 1: return None name = fnames[0].split('=')[1].strip(' \t"') name = os.path.basename(name) if not name: return None return name def filename_fix_existing(filename): """Expands name portion of filename with numeric ' (x)' suffix to return filename that doesn't exist already. """ dirname = '.' name, ext = filename.rsplit('.', 1) names = [x for x in os.listdir(dirname) if x.startswith(name)] names = [x.rsplit('.', 1)[0] for x in names] suffixes = [x.replace(name, '') for x in names] # filter suffixes that match ' (x)' pattern suffixes = [x[2:-1] for x in suffixes if x.startswith(' (') and x.endswith(')')] indexes = [int(x) for x in suffixes if set(x) <= set('0123456789')] idx = 1 if indexes: idx += sorted(indexes)[-1] return '%s (%d).%s' % (name, idx, ext) # --- terminal/console output helpers --- def get_console_width(): """Return width of available window area. Autodetection works for Windows and POSIX platforms. Returns 80 for others Code from http://bitbucket.org/techtonik/python-pager """ if os.name == 'nt': STD_INPUT_HANDLE = -10 STD_OUTPUT_HANDLE = -11 STD_ERROR_HANDLE = -12 # get console handle from ctypes import windll, Structure, byref try: from ctypes.wintypes import SHORT, WORD, DWORD except ImportError: # workaround for missing types in Python 2.5 from ctypes import ( c_short as SHORT, c_ushort as WORD, c_ulong as DWORD) console_handle = windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE) # CONSOLE_SCREEN_BUFFER_INFO Structure class COORD(Structure): _fields_ = [("X", SHORT), ("Y", SHORT)] class SMALL_RECT(Structure): _fields_ = [("Left", SHORT), ("Top", SHORT), ("Right", SHORT), ("Bottom", SHORT)] class CONSOLE_SCREEN_BUFFER_INFO(Structure): _fields_ = [("dwSize", COORD), ("dwCursorPosition", COORD), ("wAttributes", WORD), ("srWindow", SMALL_RECT), ("dwMaximumWindowSize", DWORD)] sbi = CONSOLE_SCREEN_BUFFER_INFO() ret = windll.kernel32.GetConsoleScreenBufferInfo(console_handle, byref(sbi)) if ret == 0: return 0 return sbi.srWindow.Right+1 elif os.name == 'posix': from fcntl import ioctl from termios import TIOCGWINSZ from array import array winsize = array("H", [0] * 4) try: ioctl(sys.stdout.fileno(), TIOCGWINSZ, winsize) except IOError: pass return (winsize[1], winsize[0])[0] return 80 def bar_thermometer(current, total, width=80): """Return thermometer style progress bar string. `total` argument can not be zero. The minimum size of bar returned is 3. Example: [.......... ] Control and trailing symbols (\r and spaces) are not included. See `bar_adaptive` for more information. """ # number of dots on thermometer scale avail_dots = width-2 shaded_dots = int(math.floor(float(current) / total * avail_dots)) return '[' + '.'*shaded_dots + ' '*(avail_dots-shaded_dots) + ']' def bar_adaptive(current, total, width=80): """Return progress bar string for given values in one of three styles depending on available width: [.. ] downloaded / total downloaded / total [.. ] if total value is unknown or <= 0, show bytes counter using two adaptive styles: %s / unknown %s if there is not enough space on the screen, do not display anything returned string doesn't include control characters like \r used to place cursor at the beginning of the line to erase previous content. this function leaves one free character at the end of string to avoid automatic linefeed on Windows. """ # process special case when total size is unknown and return immediately if not total or total < 0: msg = "%s / unknown" % current if len(msg) < width: # leaves one character to avoid linefeed return msg if len("%s" % current) < width: return "%s" % current # --- adaptive layout algorithm --- # # [x] describe the format of the progress bar # [x] describe min width for each data field # [x] set priorities for each element # [x] select elements to be shown # [x] choose top priority element min_width < avail_width # [x] lessen avail_width by value if min_width # [x] exclude element from priority list and repeat # 10% [.. ] 10/100 # pppp bbbbb sssssss min_width = { 'percent': 4, # 100% 'bar': 3, # [.] 'size': len("%s" % total)*2 + 3, # 'xxxx / yyyy' } priority = ['percent', 'bar', 'size'] # select elements to show selected = [] avail = width for field in priority: if min_width[field] < avail: selected.append(field) avail -= min_width[field]+1 # +1 is for separator or for reserved space at # the end of line to avoid linefeed on Windows # render output = '' for field in selected: if field == 'percent': # fixed size width for percentage output += ('%s%%' % (100 * current // total)).rjust(min_width['percent']) elif field == 'bar': # [. ] # bar takes its min width + all available space output += bar_thermometer(current, total, min_width['bar']+avail) elif field == 'size': # size field has a constant width (min == max) output += ("%s / %s" % (current, total)).rjust(min_width['size']) selected = selected[1:] if selected: output += ' ' # add field separator return output # --/ console helpers __current_size = 0 # global state variable, which exists solely as a # workaround against Python 3.3.0 regression # http://bugs.python.org/issue16409 # fixed in Python 3.3.1 def callback_progress(blocks, block_size, total_size, bar_function): """callback function for urlretrieve that is called when connection is created and when once for each block draws adaptive progress bar in terminal/console use sys.stdout.write() instead of "print,", because it allows one more symbol at the line end without linefeed on Windows :param blocks: number of blocks transferred so far :param block_size: in bytes :param total_size: in bytes, can be -1 if server doesn't return it :param bar_function: another callback function to visualize progress """ global __current_size width = min(100, get_console_width()) if sys.version_info[:3] == (3, 3, 0): # regression workaround if blocks == 0: # first call __current_size = 0 else: __current_size += block_size current_size = __current_size else: current_size = min(blocks*block_size, total_size) progress = bar_function(current_size, total_size, width) if progress: sys.stdout.write("\r" + progress) class ThrowOnErrorOpener(urllib.FancyURLopener): def http_error_default(self, url, fp, errcode, errmsg, headers): raise Exception("%s: %s" % (errcode, errmsg)) def download(url, out=None, bar=bar_adaptive): """High level function, which downloads URL into tmp file in current directory and then renames it to filename autodetected from either URL or HTTP headers. :param bar: function to track download progress (visualize etc.) :param out: output filename or directory :return: filename where URL is downloaded to """ names = dict() names["out"] = out or '' names["url"] = filename_from_url(url) # get filename for temp file in current directory prefix = (names["url"] or names["out"] or ".") + "." (fd, tmpfile) = tempfile.mkstemp(".tmp", prefix=prefix, dir=".") os.close(fd) os.unlink(tmpfile) # set progress monitoring callback def callback_charged(blocks, block_size, total_size): # 'closure' to set bar drawing function in callback callback_progress(blocks, block_size, total_size, bar_function=bar) if bar: callback = callback_charged else: callback = None (tmpfile, headers) = ThrowOnErrorOpener().retrieve(url, tmpfile, callback) names["header"] = filename_from_headers(headers) if os.path.isdir(names["out"]): filename = names["header"] or names["url"] filename = names["out"] + "/" + filename else: filename = names["out"] or names["header"] or names["url"] # add numeric ' (x)' suffix if filename already exists if os.path.exists(filename): filename = filename_fix_existing(filename) shutil.move(tmpfile, filename) #print headers return filename usage = """\ usage: wget.py [options] URL options: -o --output FILE|DIR output filename or directory -h --help --version """ if __name__ == "__main__": if len(sys.argv) < 2 or "-h" in sys.argv or "--help" in sys.argv: sys.exit(usage) if "--version" in sys.argv: sys.exit("wget.py " + __version__) from optparse import OptionParser parser = OptionParser() parser.add_option("-o", "--output", dest="output") (options, args) = parser.parse_args() url = sys.argv[1] filename = download(args[0], out=options.output) print("") print("Saved under %s" % filename) r""" features that require more tuits for urlretrieve API http://www.python.org/doc/2.6/library/urllib.html#urllib.urlretrieve [x] autodetect filename from URL [x] autodetect filename from headers - Content-Disposition http://greenbytes.de/tech/tc2231/ [ ] make HEAD request to detect temp filename from Content-Disposition [ ] process HTTP status codes (i.e. 404 error) http://ftp.de.debian.org/debian/pool/iso-codes_3.24.2.orig.tar.bz2 [ ] catch KeyboardInterrupt [ ] optionally preserve incomplete file [x] create temp file in current directory [ ] resume download (broken connection) [ ] resume download (incomplete file) [x] show progress indicator http://mail.python.org/pipermail/tutor/2005-May/038797.html [x] do not overwrite downloaded file [x] rename file automatically if exists [x] optionally specify path for downloaded file [ ] options plan [x] -h, --help, --version (CHAOS speccy) [ ] clpbar progress bar style _ 30.0Mb at 3.0 Mbps eta: 0:00:20 30% [===== ] [ ] test "bar \r" print with \r at the end of line on Windows [ ] process Python 2.x urllib.ContentTooShortError exception gracefully (ideally retry and continue download) (tmpfile, headers) = urllib.urlretrieve(url, tmpfile, callback_progress) File "C:\Python27\lib\urllib.py", line 93, in urlretrieve return _urlopener.retrieve(url, filename, reporthook, data) File "C:\Python27\lib\urllib.py", line 283, in retrieve "of %i bytes" % (read, size), result) urllib.ContentTooShortError: retrieval incomplete: got only 15239952 out of 24807571 bytes [ ] find out if urlretrieve may return unicode headers [ ] test suite for unsafe filenames from url and from headers [ ] security checks [ ] filename_from_url [ ] filename_from_headers [ ] MITM redirect from https URL [ ] https certificate check [ ] size+hash check helpers [ ] fail if size is known and mismatch [ ] fail if hash mismatch """ ================================================ FILE: word2vector/glove/README.md ================================================ # Glove Glove的简单实现。 如果使用本书附带的[docker镜像](https://hub.docker.com/r/chatopera/qna-book/),所有依赖已经安装好,不需要再次安装。使用docker镜像运行程序的方式详见[文档](https://github.com/l11x0m7/book-of-qna-code/blob/master/README.md)。 ## 依赖 * python2.7 ``` pip install scipy pip install numpy ``` ### 运行 ``` ./run.sh ``` ================================================ FILE: word2vector/glove/glove.py ================================================ # -*- encoding:utf8 -*- from __future__ import print_function from __future__ import division import numpy as np import json import pickle import os import zipfile import heapq import time import itertools import threading import numpy.random as random import sys import scipy import scipy.sparse as sparse import math from multiprocessing.pool import ThreadPool from collections import Counter from Queue import Queue from numpy import float32 as REAL import logging logging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO) logger = logging.getLogger('glove') from utils import SaveAndLoad """ # Introduction A simple code version for glove # Reference [1] https://github.com/stanfordnlp/GloVe [2] https://github.com/hans/glove.py/blob/master/glove.py """ class Glove(SaveAndLoad): def __init__(self, corpus=None, size=100, alpha=0.05, window=10, min_count=10, seed=1, iters=5, symmetric=True, sort_vocab=True, use_adagrad=True, merge_func='mean', tokenizer=None): """ glove模型,corpus表示训练语料,输入的可以是string或句子的list,也可以是list(list()) 如`['I am happy.', 'I am unhappy.']`或`[['I', 'am', 'happy'], ['I', 'am', 'unhappy', '.']]` `size` 词向量维度,也就是训练的时候隐变量的维度 `alpha` 初始学习率,学习过程中随着呈线性下降趋势 `window` 一句话中的当前词与上下文词的最大距离,指单侧词窗(与word2vec不同,此处指左侧) `min_count` 用于过滤的最小词频 `seed` 随机数种子 `iters` 迭代次数 `sort_vocab` 表示是否对id2word按词频从高到低排序 `use_adagrad` 表示是否使用online adagrad更新参数,否则是sgd `merge_func` 表示使用什么方式将中心词权重矩阵与上下文权重矩阵合并,方法有mean、sum、concat `tokenizer` 表示传入一个tokenizer的function,默认按空格分词 `` """ self.size =size self.alpha = alpha self.window = window self.min_count = min_count self.seed = seed self.random = random.RandomState(seed) self.epochs = iters self.symmetric = symmetric self.use_adagrad = use_adagrad self.merge_func = merge_func self.vocab = {} self.id2word = {} self.cooccurrences = None self.sort_vocab = sort_vocab self.tokenizer = tokenizer self.corpus = corpus self.W = None self.b = None self.grad_square_W = None self.grad_square_b = None self.W_norm = None self.vocab_size = 0 if self.tokenizer is None: self.tokenizer = lambda sentence: sentence.strip().split() if self.corpus is not None: if len(self.corpus) < 1: raise ValueError('The size of the corpus must not be empty, do you mean `None`?') if isinstance(self.corpus[0], basestring): self.corpus = [self.tokenizer(_) for _ in self.corpus] elif isinstance(self.corpus, basestring): self.corpus = [self.tokenizer(self.corpus)] self.build_vocab(self.corpus) self.build_cooccurance_matrix(self.corpus) self.train() def build_vocab(self, corpus): """ 构建整个语料的词典 """ self.vocab = Counter() for sentence in corpus: self.vocab.update(sentence) vocab_list = self.vocab.iteritems() if self.sort_vocab: vocab_list = sorted(vocab_list, key=lambda k: -k[1]) self.vocab = {word:(i, freq) for (i, (word, freq)) in enumerate(vocab_list)} self.id2word = {i:(word, freq) for (i, (word, freq)) in enumerate(vocab_list)} self.vocab_size = len(self.vocab) def build_cooccurance_matrix(self, corpus): """ 构建整个语料的词共现矩阵 cooccurrences[i][j]表示词i与词j的共现值X_{ij},此处用了距离加权(对应官方源码) """ vocab_size = len(self.vocab) self.cooccurrences = sparse.lil_matrix((vocab_size, vocab_size), dtype=np.float64) for sentence in corpus: tokens = [self.vocab[word][0] for word in sentence] for center_idx, center_word in enumerate(tokens): start = max(center_idx - self.window, 0) context_tokens = tokens[start:center_idx] for context_idx, context_word in enumerate(context_tokens, start): distance = center_idx - context_idx increment = 1. / distance self.cooccurrences[center_word, context_word] += increment if self.symmetric: self.cooccurrences[context_word, center_word] += increment def iter_cooccurance_matrix(self): """ 共现矩阵迭代器,用来迭代共现矩阵中的每个word pair """ # itertools.izip作用与zip一样,只是返回一个迭代器 for i, (row, value) in enumerate(itertools.izip(self.cooccurrences.rows, self.cooccurrences.data)): if self.min_count > self.id2word[i][1]: continue for value_idx, j in enumerate(row): if self.min_count > self.id2word[j][1]: continue yield (i, j, value[value_idx]) def train(self, x_max=100, power=0.75): """ 训练模型 `x_max` 论文中限定的X_{ij}的上限值 `power` 论文中的压缩比率 """ # 读取一遍数据(此时的data为共现矩阵),训练一次 def train_once(data): data = list(data) self.random.shuffle(data) total_cost = 0. sample_num = len(data) for sample in data: # X_center_context 对应 X_{ij} i, j, X_center_context = sample W = self.W b = self.b # w_center 对应 w_i # w_context 对应 \tilde{w_j} # b_center 对应 b_i # b_context 对应 \tilde{b_j} w_center = W[i] w_context = W[j+self.vocab_size] b_center = b[i:i+1] b_context = b[j+self.vocab_size:j+self.vocab_size+1] # 使用adagrad迭代算法 if self.use_adagrad: # grad_square_W为W对应的累加的梯度平方 # grad_square_b为b对应的累加的梯度平方 grad_square_W = self.grad_square_W grad_square_b = self.grad_square_b # grad_square_w_center为w_i的梯度 # grad_square_w_context为\tilde{w_j}的梯度 # grad_square_b_center为b_i的梯度 # grad_square_b_context为\tilde{b_j}的梯度 grad_square_w_center = grad_square_W[i] grad_square_w_context = grad_square_W[j+self.vocab_size] grad_square_b_center = grad_square_b[i:i+1] grad_square_b_context = grad_square_b[j+self.vocab_size:j+self.vocab_size+1] # J'=f(X_center_context) # J' = w_i^Tw_j + b_i + b_j - log(X_{ij}) inner_cost = np.dot(w_center.T, w_context) + b_center + b_context - np.log(X_center_context) # f(X_{ij})=min(1, (X_{ij}/x_max)^power) weight = (1.0 * X_center_context / x_max) ** power if X_center_context < x_max else 1. # J=f(X_{ij})*(J')^2 cost = weight * inner_cost ** 2 total_cost += 0.5 * cost[0] # 计算梯度 grad_w_center = weight * inner_cost * w_context grad_w_context = weight * inner_cost * w_center grad_b_center = weight * inner_cost grad_b_context = weight * inner_cost # 更新梯度 if self.use_adagrad: w_center -= grad_w_center / np.sqrt(grad_square_w_center) * self.alpha w_context -= grad_w_context / np.sqrt(grad_square_w_context) * self.alpha b_center -= grad_b_center / np.sqrt(grad_square_b_center) * self.alpha b_context -= grad_b_context / np.sqrt(grad_square_b_context) * self.alpha # 累积梯度 grad_square_w_center += np.square(grad_w_center) grad_square_w_context += np.square(grad_w_context) grad_square_b_center += np.square(grad_b_center) grad_square_b_context += np.square(grad_b_context) else: w_center -= grad_w_center * self.alpha w_context -= grad_w_context * self.alpha b_center -= grad_b_center * self.alpha b_context -= grad_b_context * self.alpha return 1.0 * total_cost /sample_num self.reset_params() logger.info('start training') for epoch in xrange(self.epochs): epoch_loss = train_once(self.iter_cooccurance_matrix()) logger.info('training epoch {}, loss {}'.format(epoch + 1, epoch_loss)) logger.info('finished training') def reset_params(self): """ 重置参数,包括学习的权重矩阵(包含中心词向量矩阵和上下文词向量矩阵)与bias向量 如果用adagrad迭代,还要保存累加的平方梯度 """ self.W = (self.random.rand(self.vocab_size * 2, self.size) - 0.5) / (self.size + 1) self.b = (self.random.rand(self.vocab_size * 2) - 0.5) / (self.size + 1) if self.use_adagrad: self.grad_square_W = np.ones((self.vocab_size * 2, self.size)) self.grad_square_b = np.ones((self.vocab_size * 2)) def most_similar(self, positive=[], negative=[], topn=10): """ 找到topn个最相似的词,即与postive最相似的且与negative最不相似的词 使用给定词的词向量余弦相似度的平均表示词类比 Example:: >>> model.most_similar(positive=['woman', 'king'], negative=['man']) >>> model.most_similar('dog') """ if isinstance(positive, basestring) and not negative: # allow calls like most_similar('dog'), as a shorthand for most_similar(['dog']) positive = [positive] # add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words positive = [(word, 1.0) if isinstance(word, basestring) else word for word in positive] negative = [(word, -1.0) if isinstance(word, basestring) else word for word in negative] # compute the weighted average of all words W = self.get_embeddings() all_words, mean = set(), [] for word, weight in positive + negative: if word in self.vocab: mean.append(weight * W[self.vocab[word][0]]) all_words.add(self.vocab[word][0]) else: raise KeyError("word '%s' not in vocabulary" % word) if not mean: raise ValueError("cannot compute similarity with no input") mean = np.asarray(mean).mean(axis=0) mean = mean / np.linalg.norm(mean, axis=0) dists = np.dot(W, mean) if not topn: return dists best = np.argsort(dists)[::-1][:topn + len(all_words)] # ignore (don't return) words from the input result = [(self.id2word[sim][0], dists[sim]) for sim in best if sim not in all_words] return result[:topn] def get_vocab(self): """ 获得词表字典 """ return self.vocab def get_embeddings(self): """ 得到大小为`vocab_size`的词向量矩阵 """ if self.W_norm is None: if self.merge_func == 'concat': self.W_norm = np.concatenate([self.W[:self.vocab_size], self.W[self.vocab_size:]], axis=1) elif self.merge_func == 'sum': self.W_norm = self.W[:self.vocab_size] + self.W[self.vocab_size:] else: self.W_norm = (self.W[:self.vocab_size] + self.W[self.vocab_size:]) / 2. self.W_norm = self.W_norm / np.linalg.norm(self.W_norm, axis=1).reshape(-1, 1) return self.W_norm if __name__ == '__main__': test_corpus = ("""human interface computer survey user computer system response time eps user interface system system human system eps user response time trees graph trees graph minors trees graph minors survey I like graph and stuff I like trees and stuff Sometimes I build a graph Sometimes I build trees""").split("\n") glove = Glove(corpus=test_corpus, size=10, alpha=0.025, window=10, min_count=0, seed=1, iters=500, symmetric=True, sort_vocab=True, use_adagrad=True, tokenizer=None) similar = glove.most_similar('graph', topn=1)[0][0] print(similar) assert similar == 'trees' ================================================ FILE: word2vector/glove/run.sh ================================================ #! /bin/bash ########################################### # ########################################### # constants baseDir=$(cd `dirname "$0"`;pwd) # functions # main [ -z "${BASH_SOURCE[0]}" -o "${BASH_SOURCE[0]}" = "$0" ] || return echo "active python2.7 environment" source ~/venv-py2/bin/activate # Use python2 cd $baseDir echo `python --version` set -x python glove.py echo "deactivate python2.7 environment ..." deactivate ================================================ FILE: word2vector/glove/utils.py ================================================ # -*- encoding:utf8 -*- from __future__ import print_function from __future__ import division import numpy as np import json import pickle import os import wget import zipfile import heapq import time import itertools import sys import scipy import scipy.sparse import math from Queue import Queue # ----- utils工具 ----- def zeros_aligned(shape, dtype, order='C', align=128): """Like `numpy.zeros()`, but the array will be aligned at `align` byte boundary.""" nbytes = np.prod(shape) * np.dtype(dtype).itemsize buffer = np.zeros(nbytes + align, dtype=np.uint8) start_index = -buffer.ctypes.data % align return buffer[start_index : start_index + nbytes].view(dtype).reshape(shape, order=order) def chunkize_serial(iterable, chunksize, as_numpy=False): """ Return elements from the iterable in `chunksize`-ed lists. The last returned element may be smaller (if length of collection is not divisible by `chunksize`). >>> print list(grouper(xrange(10), 3)) [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]] """ it = iter(iterable) while True: if as_numpy: # convert each document to a 2d numpy array (~6x faster when transmitting # chunk data over the wire, in Pyro) wrapped_chunk = [[np.array(doc) for doc in itertools.islice(it, int(chunksize))]] else: wrapped_chunk = [list(itertools.islice(it, int(chunksize)))] if not wrapped_chunk[0]: break # memory opt: wrap the chunk and then pop(), to avoid leaving behind a dangling reference yield wrapped_chunk.pop() grouper = chunkize_serial def expit(x): return 1.0 / (1.0 + np.exp(-x)) def unitvec(vec): """ Scale a vector to unit length. The only exception is the zero vector, which is returned back unchanged. Output will be in the same format as input (i.e., gensim vector=>gensim vector, or numpy array=>numpy array, scipy.sparse=>scipy.sparse). """ if scipy.sparse.issparse(vec): # convert scipy.sparse to standard numpy array vec = vec.tocsr() veclen = np.sqrt(np.sum(vec.data ** 2)) if veclen > 0.0: return vec / veclen else: return vec if isinstance(vec, np.ndarray): vec = np.asarray(vec, dtype=float) veclen = np.sqrt(np.sum(vec ** 2)) if veclen > 0.0: return vec / veclen else: return vec def cossim(vec1, vec2): vec1, vec2 = dict(vec1), dict(vec2) if not vec1 or not vec2: return 0.0 vec1len = 1.0 * math.sqrt(sum(val * val for val in vec1.itervalues())) vec2len = 1.0 * math.sqrt(sum(val * val for val in vec2.itervalues())) assert vec1len > 0.0 and vec2len > 0.0, "sparse documents must not contain any explicit zero entries" if len(vec2) < len(vec1): vec1, vec2 = vec2, vec1 # swap references so that we iterate over the shorter vector result = sum(value * vec2.get(index, 0.0) for index, value in vec1.iteritems()) result /= vec1len * vec2len # rescale by vector lengths return result class RepeatCorpusNTimes(object): """Wrap a `corpus` and repeat it `n` times. Examples -------- >>> corpus = [[(1, 0.5)], []] >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []] """ def __init__(self, corpus, n): """ Parameters ---------- corpus : iterable of iterable of (int, int) Input corpus. n : int Number of repeats for corpus. """ self.corpus = corpus self.n = n def __iter__(self): for _ in xrange(self.n): for document in self.corpus: yield document class SaveAndLoad(object): """ 用于保存和读取python类对象的基类 """ def __init__(self): pass def save(self, fname): with open(fname, 'wb') as fw: pickle.dump(self, fw, protocol=2) logger.info('File saved in {}'.format(fname)) @classmethod def load(cls, fname): with open(fname, 'rb') as fr: return pickle.load(fr) # ----- dataset ----- class Text8Corpus(object): """ Iterate over sentences from the "text8" corpus, unzipped from http://mattmahoney.net/dc/text8.zip . text8数据读取,用于训练 """ def __init__(self, fname, sent_num=None, sent_len=1000): self.fname = fname self.sent_num = sent_num self.sent_len = sent_len if not os.path.exists(self.fname): wget.download('http://mattmahoney.net/dc/text8.zip', out=self.fname) print('Downloaded zip file `text8.zip`!') def __iter__(self): # the entire corpus is one gigantic line -- there are no sentence marks at all # so just split the sequence of tokens arbitrarily: 1 sentence = 1000 tokens sentence, rest, max_sentence_length = [], '', self.sent_len idx = 0 with zipfile.ZipFile(self.fname) as zip_text8: with zip_text8.open(zip_text8.getinfo('text8')) as fin: while True: if self.sent_num is not None and idx >= self.sent_num: break text = rest + fin.read(8192) # avoid loading the entire file (=1 line) into RAM if text == rest: # EOF sentence.extend(rest.split()) # return the last chunk of words, too (may be shorter/longer) if sentence: idx += 1 yield sentence break last_token = text.rfind(' ') # the last token may have been split in two... keep it for the next iteration words, rest = (text[:last_token].split(), text[last_token:].strip()) if last_token >= 0 else ([], text) sentence.extend(words) while len(sentence) >= max_sentence_length: idx += 1 yield sentence[:max_sentence_length] if self.sent_num is not None and idx >= self.sent_num: break sentence = sentence[max_sentence_length:] ================================================ FILE: word2vector/glove/wget.py ================================================ #!/usr/bin/env python """ Download utility as an easy way to get file from the net python -m wget python wget.py Downloads: http://pypi.python.org/pypi/wget/ Development: http://bitbucket.org/techtonik/python-wget/ wget.py is not option compatible with Unix wget utility, to make command line interface intuitive for new people. Public domain by anatoly techtonik Also available under the terms of MIT license Copyright (c) 2010-2014 anatoly techtonik """ import sys, shutil, os import tempfile import math PY3K = sys.version_info >= (3, 0) if PY3K: import urllib.request as urllib import urllib.parse as urlparse else: import urllib import urlparse __version__ = "2.3-beta1" def filename_from_url(url): """:return: detected filename or None""" fname = os.path.basename(urlparse.urlparse(url).path) if len(fname.strip(" \n\t.")) == 0: return None return fname def filename_from_headers(headers): """Detect filename from Content-Disposition headers if present. http://greenbytes.de/tech/tc2231/ :param: headers as dict, list or string :return: filename from content-disposition header or None """ if type(headers) == str: headers = headers.splitlines() if type(headers) == list: headers = dict([x.split(':', 1) for x in headers]) cdisp = headers.get("Content-Disposition") if not cdisp: return None cdtype = cdisp.split(';') if len(cdtype) == 1: return None if cdtype[0].strip().lower() not in ('inline', 'attachment'): return None # several filename params is illegal, but just in case fnames = [x for x in cdtype[1:] if x.strip().startswith('filename=')] if len(fnames) > 1: return None name = fnames[0].split('=')[1].strip(' \t"') name = os.path.basename(name) if not name: return None return name def filename_fix_existing(filename): """Expands name portion of filename with numeric ' (x)' suffix to return filename that doesn't exist already. """ dirname = '.' name, ext = filename.rsplit('.', 1) names = [x for x in os.listdir(dirname) if x.startswith(name)] names = [x.rsplit('.', 1)[0] for x in names] suffixes = [x.replace(name, '') for x in names] # filter suffixes that match ' (x)' pattern suffixes = [x[2:-1] for x in suffixes if x.startswith(' (') and x.endswith(')')] indexes = [int(x) for x in suffixes if set(x) <= set('0123456789')] idx = 1 if indexes: idx += sorted(indexes)[-1] return '%s (%d).%s' % (name, idx, ext) # --- terminal/console output helpers --- def get_console_width(): """Return width of available window area. Autodetection works for Windows and POSIX platforms. Returns 80 for others Code from http://bitbucket.org/techtonik/python-pager """ if os.name == 'nt': STD_INPUT_HANDLE = -10 STD_OUTPUT_HANDLE = -11 STD_ERROR_HANDLE = -12 # get console handle from ctypes import windll, Structure, byref try: from ctypes.wintypes import SHORT, WORD, DWORD except ImportError: # workaround for missing types in Python 2.5 from ctypes import ( c_short as SHORT, c_ushort as WORD, c_ulong as DWORD) console_handle = windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE) # CONSOLE_SCREEN_BUFFER_INFO Structure class COORD(Structure): _fields_ = [("X", SHORT), ("Y", SHORT)] class SMALL_RECT(Structure): _fields_ = [("Left", SHORT), ("Top", SHORT), ("Right", SHORT), ("Bottom", SHORT)] class CONSOLE_SCREEN_BUFFER_INFO(Structure): _fields_ = [("dwSize", COORD), ("dwCursorPosition", COORD), ("wAttributes", WORD), ("srWindow", SMALL_RECT), ("dwMaximumWindowSize", DWORD)] sbi = CONSOLE_SCREEN_BUFFER_INFO() ret = windll.kernel32.GetConsoleScreenBufferInfo(console_handle, byref(sbi)) if ret == 0: return 0 return sbi.srWindow.Right+1 elif os.name == 'posix': from fcntl import ioctl from termios import TIOCGWINSZ from array import array winsize = array("H", [0] * 4) try: ioctl(sys.stdout.fileno(), TIOCGWINSZ, winsize) except IOError: pass return (winsize[1], winsize[0])[0] return 80 def bar_thermometer(current, total, width=80): """Return thermometer style progress bar string. `total` argument can not be zero. The minimum size of bar returned is 3. Example: [.......... ] Control and trailing symbols (\r and spaces) are not included. See `bar_adaptive` for more information. """ # number of dots on thermometer scale avail_dots = width-2 shaded_dots = int(math.floor(float(current) / total * avail_dots)) return '[' + '.'*shaded_dots + ' '*(avail_dots-shaded_dots) + ']' def bar_adaptive(current, total, width=80): """Return progress bar string for given values in one of three styles depending on available width: [.. ] downloaded / total downloaded / total [.. ] if total value is unknown or <= 0, show bytes counter using two adaptive styles: %s / unknown %s if there is not enough space on the screen, do not display anything returned string doesn't include control characters like \r used to place cursor at the beginning of the line to erase previous content. this function leaves one free character at the end of string to avoid automatic linefeed on Windows. """ # process special case when total size is unknown and return immediately if not total or total < 0: msg = "%s / unknown" % current if len(msg) < width: # leaves one character to avoid linefeed return msg if len("%s" % current) < width: return "%s" % current # --- adaptive layout algorithm --- # # [x] describe the format of the progress bar # [x] describe min width for each data field # [x] set priorities for each element # [x] select elements to be shown # [x] choose top priority element min_width < avail_width # [x] lessen avail_width by value if min_width # [x] exclude element from priority list and repeat # 10% [.. ] 10/100 # pppp bbbbb sssssss min_width = { 'percent': 4, # 100% 'bar': 3, # [.] 'size': len("%s" % total)*2 + 3, # 'xxxx / yyyy' } priority = ['percent', 'bar', 'size'] # select elements to show selected = [] avail = width for field in priority: if min_width[field] < avail: selected.append(field) avail -= min_width[field]+1 # +1 is for separator or for reserved space at # the end of line to avoid linefeed on Windows # render output = '' for field in selected: if field == 'percent': # fixed size width for percentage output += ('%s%%' % (100 * current // total)).rjust(min_width['percent']) elif field == 'bar': # [. ] # bar takes its min width + all available space output += bar_thermometer(current, total, min_width['bar']+avail) elif field == 'size': # size field has a constant width (min == max) output += ("%s / %s" % (current, total)).rjust(min_width['size']) selected = selected[1:] if selected: output += ' ' # add field separator return output # --/ console helpers __current_size = 0 # global state variable, which exists solely as a # workaround against Python 3.3.0 regression # http://bugs.python.org/issue16409 # fixed in Python 3.3.1 def callback_progress(blocks, block_size, total_size, bar_function): """callback function for urlretrieve that is called when connection is created and when once for each block draws adaptive progress bar in terminal/console use sys.stdout.write() instead of "print,", because it allows one more symbol at the line end without linefeed on Windows :param blocks: number of blocks transferred so far :param block_size: in bytes :param total_size: in bytes, can be -1 if server doesn't return it :param bar_function: another callback function to visualize progress """ global __current_size width = min(100, get_console_width()) if sys.version_info[:3] == (3, 3, 0): # regression workaround if blocks == 0: # first call __current_size = 0 else: __current_size += block_size current_size = __current_size else: current_size = min(blocks*block_size, total_size) progress = bar_function(current_size, total_size, width) if progress: sys.stdout.write("\r" + progress) class ThrowOnErrorOpener(urllib.FancyURLopener): def http_error_default(self, url, fp, errcode, errmsg, headers): raise Exception("%s: %s" % (errcode, errmsg)) def download(url, out=None, bar=bar_adaptive): """High level function, which downloads URL into tmp file in current directory and then renames it to filename autodetected from either URL or HTTP headers. :param bar: function to track download progress (visualize etc.) :param out: output filename or directory :return: filename where URL is downloaded to """ names = dict() names["out"] = out or '' names["url"] = filename_from_url(url) # get filename for temp file in current directory prefix = (names["url"] or names["out"] or ".") + "." (fd, tmpfile) = tempfile.mkstemp(".tmp", prefix=prefix, dir=".") os.close(fd) os.unlink(tmpfile) # set progress monitoring callback def callback_charged(blocks, block_size, total_size): # 'closure' to set bar drawing function in callback callback_progress(blocks, block_size, total_size, bar_function=bar) if bar: callback = callback_charged else: callback = None (tmpfile, headers) = ThrowOnErrorOpener().retrieve(url, tmpfile, callback) names["header"] = filename_from_headers(headers) if os.path.isdir(names["out"]): filename = names["header"] or names["url"] filename = names["out"] + "/" + filename else: filename = names["out"] or names["header"] or names["url"] # add numeric ' (x)' suffix if filename already exists if os.path.exists(filename): filename = filename_fix_existing(filename) shutil.move(tmpfile, filename) #print headers return filename usage = """\ usage: wget.py [options] URL options: -o --output FILE|DIR output filename or directory -h --help --version """ if __name__ == "__main__": if len(sys.argv) < 2 or "-h" in sys.argv or "--help" in sys.argv: sys.exit(usage) if "--version" in sys.argv: sys.exit("wget.py " + __version__) from optparse import OptionParser parser = OptionParser() parser.add_option("-o", "--output", dest="output") (options, args) = parser.parse_args() url = sys.argv[1] filename = download(args[0], out=options.output) print("") print("Saved under %s" % filename) r""" features that require more tuits for urlretrieve API http://www.python.org/doc/2.6/library/urllib.html#urllib.urlretrieve [x] autodetect filename from URL [x] autodetect filename from headers - Content-Disposition http://greenbytes.de/tech/tc2231/ [ ] make HEAD request to detect temp filename from Content-Disposition [ ] process HTTP status codes (i.e. 404 error) http://ftp.de.debian.org/debian/pool/iso-codes_3.24.2.orig.tar.bz2 [ ] catch KeyboardInterrupt [ ] optionally preserve incomplete file [x] create temp file in current directory [ ] resume download (broken connection) [ ] resume download (incomplete file) [x] show progress indicator http://mail.python.org/pipermail/tutor/2005-May/038797.html [x] do not overwrite downloaded file [x] rename file automatically if exists [x] optionally specify path for downloaded file [ ] options plan [x] -h, --help, --version (CHAOS speccy) [ ] clpbar progress bar style _ 30.0Mb at 3.0 Mbps eta: 0:00:20 30% [===== ] [ ] test "bar \r" print with \r at the end of line on Windows [ ] process Python 2.x urllib.ContentTooShortError exception gracefully (ideally retry and continue download) (tmpfile, headers) = urllib.urlretrieve(url, tmpfile, callback_progress) File "C:\Python27\lib\urllib.py", line 93, in urlretrieve return _urlopener.retrieve(url, filename, reporthook, data) File "C:\Python27\lib\urllib.py", line 283, in retrieve "of %i bytes" % (read, size), result) urllib.ContentTooShortError: retrieval incomplete: got only 15239952 out of 24807571 bytes [ ] find out if urlretrieve may return unicode headers [ ] test suite for unsafe filenames from url and from headers [ ] security checks [ ] filename_from_url [ ] filename_from_headers [ ] MITM redirect from https URL [ ] https certificate check [ ] size+hash check helpers [ ] fail if size is known and mismatch [ ] fail if hash mismatch """ ================================================ FILE: word2vector/ngrams/README.md ================================================ # N元模型示例程序 提示:得到源码后,先执行跟目录下的 admin/run.sh 进入docker容器服务。然后在容器内进行下述步骤。 该演示项目基于开源项目[kenlm](https://github.com/kpu/kenlm)。 ## 生成模型文件 ``` ./gen_model.sh ``` 数据文件 data/ngrams.train.tokens 是训练n-grams模型的输入数据。程序执行结束后,将得到 ngrams.arpa.gz文件。 ## 计算一个句子的出现概率 ``` python lm.py Test.test_prob ``` ## 计算一个句子的困惑度 ``` python lm.py Test.test_perplexity ``` ![](/assets/images/ngrams-lm.png) ================================================ FILE: word2vector/ngrams/gen_model.sh ================================================ #! /bin/bash ########################################### # ########################################### # constants baseDir=$(cd `dirname "$0"`;pwd) # functions # main [ -z "${BASH_SOURCE[0]}" -o "${BASH_SOURCE[0]}" = "$0" ] || return cd $baseDir lmplz -o 3 ngrams.arpa gzip ngrams.arpa ================================================ FILE: word2vector/ngrams/lm.py ================================================ #!/usr/bin/env python # -*- coding: utf-8 -*- #=============================================================================== # # Copyright (c) 2017 <> All Rights Reserved # # # File: /Users/hain/ai/book-of-qna-code/tmp/lm.py # Author: Hai Liang Wang # Date: 2018-05-28:16:06:56 # #=============================================================================== """ """ from __future__ import print_function from __future__ import division __copyright__ = "Copyright (c) 2017 . All Rights Reserved" __author__ = "Hai Liang Wang" __date__ = "2018-05-28:16:06:56" import os import sys curdir = os.path.dirname(os.path.abspath(__file__)) sys.path.append(curdir) if sys.version_info[0] < 3: reload(sys) sys.setdefaultencoding("utf-8") # raise "Must be using Python 3" else: unicode = str # Get ENV ENVIRON = os.environ.copy() import kenlm import math import unittest # run testcase: python /Users/hain/ai/book-of-qna-code/tmp/lm.py Test.testExample class Test(unittest.TestCase): ''' ''' def setUp(self): print("加载LM模型 ...") model_file = os.path.join(curdir, "ngrams.arpa.gz") if not os.path.exists(model_file): raise BaseException("模型文件不存在!, 执行 gen_model.sh 生成模型文件。") self.model = kenlm.Model(model_file) def tearDown(self): pass def test_prob(self): print("kenlm: 句子出现的概率") print("保 险:", math.pow(10, self.model.score('保 险', bos = True, eos = True))) def test_perplexity(self): print("kenlm: 句子的困惑度") print("保 险:", math.pow(10, self.model.perplexity('保 险'))) def test(): unittest.main() if __name__ == '__main__': test() ================================================ FILE: word2vector/requirements.txt ================================================ scipy==1.1.0 numpy==1.14.4 ================================================ FILE: word2vector/word2vec/README.md ================================================ # Word2vec word2vec的简单实现。 如果使用本书附带的[docker镜像](https://hub.docker.com/r/chatopera/qna-book/),所有依赖已经安装好,不需要再次安装。使用docker镜像运行程序的方式详见[文档](https://github.com/l11x0m7/book-of-qna-code/blob/master/README.md)。 ## 依赖 * python2.7 ``` pip install scipy pip install numpy ``` ### 运行 ``` ./run.sh ``` ================================================ FILE: word2vector/word2vec/debug.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 测试" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import heapq\n", "import random\n", "random.seed(123)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[18, 17, 15, 19, 12, 13, 16, 11, 14, 10]" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "heap = list(range(10, 20))\n", "random.shuffle(heap)\n", "heap" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "heapq.heapify(heap)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "10" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "heapq.heappop(heap) # 弹出栈顶元素(最小)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "11" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "heapq.heappop(heap) " ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "heapq.heappush(heap, 23)" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "12" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "heapq.heappop(heap) " ] }, { "cell_type": "code", "execution_count": 57, "metadata": {}, "outputs": [], "source": [ "class Vocab(object):\n", " \"\"\"用来存储词汇,如果用hs,则可以看成一个树结点\"\"\"\n", " \n", " def __init__(self, **kwargs):\n", " \"\"\"\n", " count 词频\n", " index 索引\n", " left 如果用hs,则表示左孩子\n", " right 如果用hs,则表示右孩子\n", " code 叶子结点的编码路径(从根结点到叶子结点的huffman编码)\n", " point 叶子结点的结点路径(从根结点到叶子结点经过的结点索引)\n", " \"\"\"\n", " self.count = 0\n", " self.index = -1\n", " self.left = None\n", " self.right = None\n", " self.code = []\n", " self.point = []\n", " self.__dict__.update(kwargs)\n", " print(self.__dict__)\n", " print(kwargs)\n", "\n", " def __lt__(self, vocab):\n", " return self.count < vocab.count\n", "\n", " def __str__(self):\n", " fmt = \"<{}>\"\n", " s = \", \".join(['{}:{}'.format(k, v) for k, v in self.__dict__.items() \\\n", " if not k.startswith('__')])\n", " return fmt.format(s)" ] }, { "cell_type": "code", "execution_count": 58, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'count': 2, 'index': 1, 'left': None, 'right': None, 'code': [], 'point': []}\n", "{'count': 2, 'index': 1, 'left': None, 'right': None}\n" ] } ], "source": [ "a = Vocab(count=2,index=1,left=None,right=None)" ] }, { "cell_type": "code", "execution_count": 59, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'count': 5, 'index': 0, 'left': None, 'right': None, 'code': [], 'point': []}\n", "{'count': 5, 'index': 0, 'left': None, 'right': None}\n" ] } ], "source": [ "b = Vocab(count=5,index=0,left=None,right=None)" ] }, { "cell_type": "code", "execution_count": 60, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'count': 2, 'index': 1, 'left': None, 'right': None, 'code': [], 'point': []}" ] }, "execution_count": 60, "metadata": {}, "output_type": "execute_result" } ], "source": [ "a.__dict__" ] }, { "cell_type": "code", "execution_count": 61, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "mappingproxy({'__module__': '__main__',\n", " '__doc__': '用来存储词汇,如果用hs,则可以看成一个树结点',\n", " '__init__': ,\n", " '__lt__': ,\n", " '__str__': ,\n", " '__dict__': ,\n", " '__weakref__': })" ] }, "execution_count": 61, "metadata": {}, "output_type": "execute_result" } ], "source": [ "Vocab.__dict__" ] }, { "cell_type": "code", "execution_count": 54, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n" ] } ], "source": [ "print(a)" ] }, { "cell_type": "code", "execution_count": 55, "metadata": {}, "outputs": [], "source": [ "li = list(range(10))" ] }, { "cell_type": "code", "execution_count": 56, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sorted(li, reverse=True)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: word2vector/word2vec/run.sh ================================================ #! /bin/bash ########################################### # ########################################### # constants BASEDIR=$(cd `dirname "$0"`;pwd) # functions # main [ -z "${BASH_SOURCE[0]}" -o "${BASH_SOURCE[0]}" = "$0" ] || return echo "active python2.7 environment" #source ~/venv-py2/bin/activate # Use python2 cd $BASEDIR echo `python --version` set -x python word2vec.py echo "Done!" #deactivate ================================================ FILE: word2vector/word2vec/utils.py ================================================ # -*- encoding:utf8 -*- from __future__ import print_function from __future__ import division import numpy as np import json import pickle import wget import os import zipfile import heapq import time import itertools import sys import scipy import scipy.sparse import math from queue import Queue # ----- utils工具 ----- def zeros_aligned(shape, dtype, order='C', align=128): """Like `numpy.zeros()`, but the array will be aligned at `align` byte boundary.""" nbytes = np.prod(shape) * np.dtype(dtype).itemsize buffer = np.zeros(nbytes + align, dtype=np.uint8) start_index = -buffer.ctypes.data % align return buffer[start_index : start_index + nbytes].view(dtype).reshape(shape, order=order) def chunkize_serial(iterable, chunksize, as_numpy=False): """ Return elements from the iterable in `chunksize`-ed lists. The last returned element may be smaller (if length of collection is not divisible by `chunksize`). >>> print list(grouper(range(10), 3)) [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]] """ it = iter(iterable) while True: if as_numpy: # convert each document to a 2d numpy array (~6x faster when transmitting # chunk data over the wire, in Pyro) wrapped_chunk = [[np.array(doc) for doc in itertools.islice(it, int(chunksize))]] else: wrapped_chunk = [list(itertools.islice(it, int(chunksize)))] if not wrapped_chunk[0]: break # memory opt: wrap the chunk and then pop(), to avoid leaving behind a dangling reference yield wrapped_chunk.pop() grouper = chunkize_serial def expit(x): return 1.0 / (1.0 + np.exp(-x)) def unitvec(vec): """ Scale a vector to unit length. The only exception is the zero vector, which is returned back unchanged. Output will be in the same format as input (i.e., gensim vector=>gensim vector, or numpy array=>numpy array, scipy.sparse=>scipy.sparse). """ if scipy.sparse.issparse(vec): # convert scipy.sparse to standard numpy array vec = vec.tocsr() veclen = np.sqrt(np.sum(vec.data ** 2)) if veclen > 0.0: return vec / veclen else: return vec if isinstance(vec, np.ndarray): vec = np.asarray(vec, dtype=float) veclen = np.sqrt(np.sum(vec ** 2)) if veclen > 0.0: return vec / veclen else: return vec def cossim(vec1, vec2): vec1, vec2 = dict(vec1), dict(vec2) if not vec1 or not vec2: return 0.0 vec1len = 1.0 * math.sqrt(sum(val * val for val in vec1.itervalues())) vec2len = 1.0 * math.sqrt(sum(val * val for val in vec2.itervalues())) assert vec1len > 0.0 and vec2len > 0.0, "sparse documents must not contain any explicit zero entries" if len(vec2) < len(vec1): vec1, vec2 = vec2, vec1 # swap references so that we iterate over the shorter vector result = sum(value * vec2.get(index, 0.0) for index, value in vec1.iteritems()) result /= vec1len * vec2len # rescale by vector lengths return result class RepeatCorpusNTimes(object): """Wrap a `corpus` and repeat it `n` times. Examples -------- >>> corpus = [[(1, 0.5)], []] >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []] """ def __init__(self, corpus, n): """ Parameters ---------- corpus : iterable of iterable of (int, int) Input corpus. n : int Number of repeats for corpus. """ self.corpus = corpus self.n = n def __iter__(self): for _ in range(self.n): for document in self.corpus: yield document class SaveAndLoad(object): """ 用于保存和读取python类对象的基类 """ def __init__(self): pass def save(self, fname): with open(fname, 'wb') as fw: pickle.dump(self, fw, protocol=2) logger.info('File saved in {}'.format(fname)) @classmethod def load(cls, fname): with open(fname, 'rb') as fr: return pickle.load(fr) # ----- dataset ----- class Text8Corpus(object): """ Iterate over sentences from the "text8" corpus, unzipped from http://mattmahoney.net/dc/text8.zip . text8数据读取,用于训练 """ def __init__(self, fname, sent_num=None, sent_len=1000): self.fname = fname self.sent_num = sent_num self.sent_len = sent_len if not os.path.exists(self.fname): wget.download('http://mattmahoney.net/dc/text8.zip', out=self.fname) print('Downloaded zip file `text8.zip`!') def __iter__(self): # the entire corpus is one gigantic line -- there are no sentence marks at all # so just split the sequence of tokens arbitrarily: 1 sentence = 1000 tokens sentence, rest, max_sentence_length = [], '', self.sent_len idx = 0 with zipfile.ZipFile(self.fname) as zip_text8: with zip_text8.open(zip_text8.getinfo('text8')) as fin: while True: if self.sent_num is not None and idx >= self.sent_num: break text = rest + fin.read(8192) # avoid loading the entire file (=1 line) into RAM if text == rest: # EOF sentence.extend(rest.split()) # return the last chunk of words, too (may be shorter/longer) if sentence: idx += 1 yield sentence break last_token = text.rfind(' ') # the last token may have been split in two... keep it for the next iteration words, rest = (text[:last_token].split(), text[last_token:].strip()) if last_token >= 0 else ([], text) sentence.extend(words) while len(sentence) >= max_sentence_length: idx += 1 yield sentence[:max_sentence_length] if self.sent_num is not None and idx >= self.sent_num: break sentence = sentence[max_sentence_length:] ================================================ FILE: word2vector/word2vec/wget.py ================================================ #!/usr/bin/env python """ Download utility as an easy way to get file from the net python -m wget python wget.py Downloads: http://pypi.python.org/pypi/wget/ Development: http://bitbucket.org/techtonik/python-wget/ wget.py is not option compatible with Unix wget utility, to make command line interface intuitive for new people. Public domain by anatoly techtonik Also available under the terms of MIT license Copyright (c) 2010-2014 anatoly techtonik """ import sys, shutil, os import tempfile import math PY3K = sys.version_info >= (3, 0) if PY3K: import urllib.request as urllib import urllib.parse as urlparse else: import urllib import urlparse __version__ = "2.3-beta1" def filename_from_url(url): """:return: detected filename or None""" fname = os.path.basename(urlparse.urlparse(url).path) if len(fname.strip(" \n\t.")) == 0: return None return fname def filename_from_headers(headers): """Detect filename from Content-Disposition headers if present. http://greenbytes.de/tech/tc2231/ :param: headers as dict, list or string :return: filename from content-disposition header or None """ if type(headers) == str: headers = headers.splitlines() if type(headers) == list: headers = dict([x.split(':', 1) for x in headers]) cdisp = headers.get("Content-Disposition") if not cdisp: return None cdtype = cdisp.split(';') if len(cdtype) == 1: return None if cdtype[0].strip().lower() not in ('inline', 'attachment'): return None # several filename params is illegal, but just in case fnames = [x for x in cdtype[1:] if x.strip().startswith('filename=')] if len(fnames) > 1: return None name = fnames[0].split('=')[1].strip(' \t"') name = os.path.basename(name) if not name: return None return name def filename_fix_existing(filename): """Expands name portion of filename with numeric ' (x)' suffix to return filename that doesn't exist already. """ dirname = '.' name, ext = filename.rsplit('.', 1) names = [x for x in os.listdir(dirname) if x.startswith(name)] names = [x.rsplit('.', 1)[0] for x in names] suffixes = [x.replace(name, '') for x in names] # filter suffixes that match ' (x)' pattern suffixes = [x[2:-1] for x in suffixes if x.startswith(' (') and x.endswith(')')] indexes = [int(x) for x in suffixes if set(x) <= set('0123456789')] idx = 1 if indexes: idx += sorted(indexes)[-1] return '%s (%d).%s' % (name, idx, ext) # --- terminal/console output helpers --- def get_console_width(): """Return width of available window area. Autodetection works for Windows and POSIX platforms. Returns 80 for others Code from http://bitbucket.org/techtonik/python-pager """ if os.name == 'nt': STD_INPUT_HANDLE = -10 STD_OUTPUT_HANDLE = -11 STD_ERROR_HANDLE = -12 # get console handle from ctypes import windll, Structure, byref try: from ctypes.wintypes import SHORT, WORD, DWORD except ImportError: # workaround for missing types in Python 2.5 from ctypes import ( c_short as SHORT, c_ushort as WORD, c_ulong as DWORD) console_handle = windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE) # CONSOLE_SCREEN_BUFFER_INFO Structure class COORD(Structure): _fields_ = [("X", SHORT), ("Y", SHORT)] class SMALL_RECT(Structure): _fields_ = [("Left", SHORT), ("Top", SHORT), ("Right", SHORT), ("Bottom", SHORT)] class CONSOLE_SCREEN_BUFFER_INFO(Structure): _fields_ = [("dwSize", COORD), ("dwCursorPosition", COORD), ("wAttributes", WORD), ("srWindow", SMALL_RECT), ("dwMaximumWindowSize", DWORD)] sbi = CONSOLE_SCREEN_BUFFER_INFO() ret = windll.kernel32.GetConsoleScreenBufferInfo(console_handle, byref(sbi)) if ret == 0: return 0 return sbi.srWindow.Right+1 elif os.name == 'posix': from fcntl import ioctl from termios import TIOCGWINSZ from array import array winsize = array("H", [0] * 4) try: ioctl(sys.stdout.fileno(), TIOCGWINSZ, winsize) except IOError: pass return (winsize[1], winsize[0])[0] return 80 def bar_thermometer(current, total, width=80): """Return thermometer style progress bar string. `total` argument can not be zero. The minimum size of bar returned is 3. Example: [.......... ] Control and trailing symbols (\r and spaces) are not included. See `bar_adaptive` for more information. """ # number of dots on thermometer scale avail_dots = width-2 shaded_dots = int(math.floor(float(current) / total * avail_dots)) return '[' + '.'*shaded_dots + ' '*(avail_dots-shaded_dots) + ']' def bar_adaptive(current, total, width=80): """Return progress bar string for given values in one of three styles depending on available width: [.. ] downloaded / total downloaded / total [.. ] if total value is unknown or <= 0, show bytes counter using two adaptive styles: %s / unknown %s if there is not enough space on the screen, do not display anything returned string doesn't include control characters like \r used to place cursor at the beginning of the line to erase previous content. this function leaves one free character at the end of string to avoid automatic linefeed on Windows. """ # process special case when total size is unknown and return immediately if not total or total < 0: msg = "%s / unknown" % current if len(msg) < width: # leaves one character to avoid linefeed return msg if len("%s" % current) < width: return "%s" % current # --- adaptive layout algorithm --- # # [x] describe the format of the progress bar # [x] describe min width for each data field # [x] set priorities for each element # [x] select elements to be shown # [x] choose top priority element min_width < avail_width # [x] lessen avail_width by value if min_width # [x] exclude element from priority list and repeat # 10% [.. ] 10/100 # pppp bbbbb sssssss min_width = { 'percent': 4, # 100% 'bar': 3, # [.] 'size': len("%s" % total)*2 + 3, # 'xxxx / yyyy' } priority = ['percent', 'bar', 'size'] # select elements to show selected = [] avail = width for field in priority: if min_width[field] < avail: selected.append(field) avail -= min_width[field]+1 # +1 is for separator or for reserved space at # the end of line to avoid linefeed on Windows # render output = '' for field in selected: if field == 'percent': # fixed size width for percentage output += ('%s%%' % (100 * current // total)).rjust(min_width['percent']) elif field == 'bar': # [. ] # bar takes its min width + all available space output += bar_thermometer(current, total, min_width['bar']+avail) elif field == 'size': # size field has a constant width (min == max) output += ("%s / %s" % (current, total)).rjust(min_width['size']) selected = selected[1:] if selected: output += ' ' # add field separator return output # --/ console helpers __current_size = 0 # global state variable, which exists solely as a # workaround against Python 3.3.0 regression # http://bugs.python.org/issue16409 # fixed in Python 3.3.1 def callback_progress(blocks, block_size, total_size, bar_function): """callback function for urlretrieve that is called when connection is created and when once for each block draws adaptive progress bar in terminal/console use sys.stdout.write() instead of "print,", because it allows one more symbol at the line end without linefeed on Windows :param blocks: number of blocks transferred so far :param block_size: in bytes :param total_size: in bytes, can be -1 if server doesn't return it :param bar_function: another callback function to visualize progress """ global __current_size width = min(100, get_console_width()) if sys.version_info[:3] == (3, 3, 0): # regression workaround if blocks == 0: # first call __current_size = 0 else: __current_size += block_size current_size = __current_size else: current_size = min(blocks*block_size, total_size) progress = bar_function(current_size, total_size, width) if progress: sys.stdout.write("\r" + progress) class ThrowOnErrorOpener(urllib.FancyURLopener): def http_error_default(self, url, fp, errcode, errmsg, headers): raise Exception("%s: %s" % (errcode, errmsg)) def download(url, out=None, bar=bar_adaptive): """High level function, which downloads URL into tmp file in current directory and then renames it to filename autodetected from either URL or HTTP headers. :param bar: function to track download progress (visualize etc.) :param out: output filename or directory :return: filename where URL is downloaded to """ names = dict() names["out"] = out or '' names["url"] = filename_from_url(url) # get filename for temp file in current directory prefix = (names["url"] or names["out"] or ".") + "." (fd, tmpfile) = tempfile.mkstemp(".tmp", prefix=prefix, dir=".") os.close(fd) os.unlink(tmpfile) # set progress monitoring callback def callback_charged(blocks, block_size, total_size): # 'closure' to set bar drawing function in callback callback_progress(blocks, block_size, total_size, bar_function=bar) if bar: callback = callback_charged else: callback = None (tmpfile, headers) = ThrowOnErrorOpener().retrieve(url, tmpfile, callback) names["header"] = filename_from_headers(headers) if os.path.isdir(names["out"]): filename = names["header"] or names["url"] filename = names["out"] + "/" + filename else: filename = names["out"] or names["header"] or names["url"] # add numeric ' (x)' suffix if filename already exists if os.path.exists(filename): filename = filename_fix_existing(filename) shutil.move(tmpfile, filename) #print headers return filename usage = """\ usage: wget.py [options] URL options: -o --output FILE|DIR output filename or directory -h --help --version """ if __name__ == "__main__": if len(sys.argv) < 2 or "-h" in sys.argv or "--help" in sys.argv: sys.exit(usage) if "--version" in sys.argv: sys.exit("wget.py " + __version__) from optparse import OptionParser parser = OptionParser() parser.add_option("-o", "--output", dest="output") (options, args) = parser.parse_args() url = sys.argv[1] filename = download(args[0], out=options.output) print("") print("Saved under %s" % filename) r""" features that require more tuits for urlretrieve API http://www.python.org/doc/2.6/library/urllib.html#urllib.urlretrieve [x] autodetect filename from URL [x] autodetect filename from headers - Content-Disposition http://greenbytes.de/tech/tc2231/ [ ] make HEAD request to detect temp filename from Content-Disposition [ ] process HTTP status codes (i.e. 404 error) http://ftp.de.debian.org/debian/pool/iso-codes_3.24.2.orig.tar.bz2 [ ] catch KeyboardInterrupt [ ] optionally preserve incomplete file [x] create temp file in current directory [ ] resume download (broken connection) [ ] resume download (incomplete file) [x] show progress indicator http://mail.python.org/pipermail/tutor/2005-May/038797.html [x] do not overwrite downloaded file [x] rename file automatically if exists [x] optionally specify path for downloaded file [ ] options plan [x] -h, --help, --version (CHAOS speccy) [ ] clpbar progress bar style _ 30.0Mb at 3.0 Mbps eta: 0:00:20 30% [===== ] [ ] test "bar \r" print with \r at the end of line on Windows [ ] process Python 2.x urllib.ContentTooShortError exception gracefully (ideally retry and continue download) (tmpfile, headers) = urllib.urlretrieve(url, tmpfile, callback_progress) File "C:\Python27\lib\urllib.py", line 93, in urlretrieve return _urlopener.retrieve(url, filename, reporthook, data) File "C:\Python27\lib\urllib.py", line 283, in retrieve "of %i bytes" % (read, size), result) urllib.ContentTooShortError: retrieval incomplete: got only 15239952 out of 24807571 bytes [ ] find out if urlretrieve may return unicode headers [ ] test suite for unsafe filenames from url and from headers [ ] security checks [ ] filename_from_url [ ] filename_from_headers [ ] MITM redirect from https URL [ ] https certificate check [ ] size+hash check helpers [ ] fail if size is known and mismatch [ ] fail if hash mismatch """ ================================================ FILE: word2vector/word2vec/word2vec-python3.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# word2vec python3 实现" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# -*- encoding:utf8 -*-\n", "from __future__ import print_function\n", "from __future__ import division\n", "import numpy as np\n", "import json\n", "import pickle\n", "import wget\n", "import os\n", "import zipfile\n", "import heapq\n", "import time\n", "import itertools\n", "import threading\n", "import numpy.random as random\n", "import sys\n", "import scipy\n", "import scipy.sparse\n", "import math\n", "from multiprocessing.pool import ThreadPool\n", "from queue import Queue\n", "from numpy import float32 as REAL\n", "\n", "import logging\n", "logging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO)\n", "logger = logging.getLogger('word2vec')\n", "\n", "from utils import *" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "\"\"\"\n", "# Introduction\n", "\n", "A simple code version for word2vec\n", "\n", "# Reference\n", "[1] https://www.cnblogs.com/pinard/p/7243513.html\n", "[2] http://www.cnblogs.com/pinard/p/7249903.html\n", "[3] https://github.com/RaRe-Technologies/gensim/blob/develop/gensim/models/word2vec.py\n", "[4] https://github.com/klb3713/word2vec/blob/master/python/word2vec.py\n", "\"\"\"\n", "# ----- word2vec -----\n", "# gensim里用的cython版本。\n", "# 本来用cython版本的train_sentence会快很多,不过主要介绍原理,所以都用python介绍。\n", "# Word2Vec类中使用的多线程可以在一定程度上加快速度。\n", "def train_sentence_sg(model, sentence, alpha, work=None):\n", " \"\"\"\n", " skip-gram\n", "\n", " `model` 训练的词向量模型\n", " `sentence` 一个词列表,表示一个句子\n", " `alpha` 学习率\n", " \"\"\"\n", " total_loss = 0.\n", " count = 1\n", " # 遍历每个句子的词,该词`word`作为中心词\n", " for pos, word in enumerate(sentence):\n", " if word is None:\n", " # 跳过OOV的词\n", " continue\n", " # 设定一个随机的窗口大小,最终真正的单侧窗口大小为window - reduced_window\n", " reduced_window = model.random.randint(model.window)\n", "\n", " # 遍历两侧词窗内的所有词,分别预测\n", " start = max(0, pos - model.window + reduced_window)\n", " for pos2, word2 in enumerate(sentence[start : pos + model.window + 1 - reduced_window], start):\n", " if pos2 == pos or word2 is None:\n", " # 跳过OOV的词以及中心词`word`\n", " continue\n", " # 得到输入词向量v_w\n", " # 此处本应该是`word`而不是`word2`,即求P(word2|word)的极大似然,\n", " # 不过这样的话,输入的投影矩阵syn0在每个词窗下只能更新一个词多次,\n", " # 因此此处改成求对称的P(word|word2)的极大似然,这样可以让输入的投影矩阵syn0在每个词窗下更新多个词\n", " l1 = model.syn0[word2.index]\n", "\n", "\n", " if model.hs >= 1:\n", " # `outer((1 - word.code - fa), l1)`为关于l2a的梯度\n", " # `dot((1 - word.code - fa), l2a)`为关于l1的梯度\n", "\n", " # `word.point`是一个array,表示抽取出所有的当前叶子结点的结点路径\n", " # `l2a`是一个矩阵,shape为(codelen, layer1_size)\n", " l2a = model.syn1[word.point]\n", " # 隐层输出,`fa`的shape为(1, codelen),每个值表示code预测为1(向树右侧走)的概率\n", " fa = expit(np.dot(l1, l2a.T))\n", " # shape为(1, codelen)\n", " ga = (1 - word.code - fa) * alpha # vector of error gradients multiplied by the learning rate\n", " # 更新输出矩阵,shape为(codelen, layer1_size)\n", " model.syn1[word.point] += np.outer(ga, l1) # learn hidden -> output\n", "\n", " # 更新输入矩阵\n", " l1 += np.dot(ga, l2a)\n", "\n", " # 计算loss\n", " sgn = (-1.0)**word.code # ch function, 0-> 1, 1 -> -1\n", " loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\n", " total_loss += loss / len(word.code)\n", " count += 1\n", " model.running_training_loss += loss\n", " else:\n", " # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\n", " # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\n", "\n", " # 从构建的`cum_table`中找到`negative`个负样本\n", " neg_indices = [word.index]\n", " while len(neg_indices) < model.negative + 1:\n", " w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\n", " if w != word.index:\n", " neg_indices.append(w)\n", " # `l2b`是一个矩阵,shape为(negative+1, layer1_size)\n", " l2b = model.syn1neg[neg_indices]\n", " # shape为(1, negative+1)\n", " prod_term = np.dot(l1, l2b.T)\n", " # shape为(1, negative+1)\n", " fb = expit(prod_term) # propagate hidden -> output\n", " # shape为(1, negative+1)\n", " gb = (model.neg_labels - fb) * alpha # vector of error gradients multiplied by the learning rate\n", " # 更新输出矩阵,shape为(negative+1, layer1_size)\n", " model.syn1neg[neg_indices] += np.outer(gb, l1) # learn hidden -> output\n", "\n", " # 更新输入矩阵\n", " l1 += np.dot(gb, l2b) # save error\n", "\n", " # 计算loss\n", " loss1 = -sum(np.log(expit(-1 * prod_term[1:]))) \n", " loss2 = -np.log(expit(prod_term[0]))\n", " total_loss += (loss1 + loss2) / len(prod_term)\n", " count += 1\n", " model.running_training_loss += loss1 # for the sampled words\n", " model.running_training_loss += loss2 # for the output word\n", "\n", " # 返回句子中的非OOV的词的个数\n", " return len([word for word in sentence if word is not None]), 1.0 * total_loss / count\n", "\n", "\n", "def train_sentence_cbow(model, sentence, alpha, work=None, cbow_mean=True):\n", " \"\"\"\n", " cbow\n", "\n", " `model` 训练的词向量模型\n", " `sentence` 一个词列表,表示一个句子\n", " `alpha` 学习率\n", " \"\"\"\n", " total_loss = 0.\n", " count = 1\n", " for pos, word in enumerate(sentence):\n", " if word is None:\n", " continue\n", " reduced_window = model.random.randint(model.window)\n", " start = max(0, pos - model.window + reduced_window)\n", " window_pos = enumerate(sentence[start:(pos + model.window + 1 - reduced_window)], start)\n", " word2_indices = [word2.index for pos2, word2 in window_pos if (word2 is not None and pos2 != pos)]\n", " # (1, layer1_size)\n", " l1 = np.sum(model.syn0[word2_indices], axis=0)\n", " if word2_indices and cbow_mean:\n", " l1 /= len(word2_indices)\n", "\n", " if model.hs >= 1:\n", " # `outer((1 - word.code - fa), l1)`为关于l2a的梯度\n", " # `dot((1 - word.code - fa), l2a)`为关于l1的梯度\n", "\n", " # shape为(codelen, layer1_size)\n", " l2a = model.syn1[word.point]\n", " # shape为(1, codelen)\n", " fa = expit(np.dot(l1, l2a.T))\n", " # shape为(1, codelen)\n", " ga = (1 - word.code - fa) * alpha # vector of error gradients multiplied by the learning rate\n", " # 更新输出矩阵,shape为(codelen, layer1_size)\n", " model.syn1[word.point] += np.outer(ga, l1) # learn hidden -> output\n", "\n", " # 更新输入矩阵\n", " if word2_indices and cbow_mean:\n", " neu1e = np.dot(ga, l2a) / len(word2_indices)\n", " else:\n", " neu1e = np.dot(ga, l2a)\n", " for i in word2_indices:\n", " model.syn0[i] += neu1e\n", "\n", " # 计算loss\n", " sgn = (-1.0)**word.code # ch function, 0-> 1, 1 -> -1\n", " loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\n", " total_loss += loss / len(word.code)\n", " count += 1\n", " model.running_training_loss += loss\n", " else:\n", " # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\n", " # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\n", "\n", " # 从构建的`cum_table`中找到`negative`个负样本\n", " neg_indices = [word.index]\n", " while len(neg_indices) < model.negative + 1:\n", " w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\n", " if w != word.index:\n", " neg_indices.append(w)\n", " # `l2b`是一个矩阵,shape为(negative+1, layer1_size)\n", " l2b = model.syn1neg[neg_indices]\n", " # shape为(1, negative+1)\n", " prod_term = np.dot(l1, l2b.T)\n", " # shape为(1, negative+1)\n", " fb = expit(prod_term) # propagate hidden -> output\n", " # shape为(1, negative+1)\n", " gb = (model.neg_labels - fb) * alpha # vector of error gradients multiplied by the learning rate\n", " # 更新输出矩阵,shape为(negative+1, layer1_size)\n", " model.syn1neg[neg_indices] += np.outer(gb, l1) # learn hidden -> output\n", "\n", " # 更新输入矩阵\n", " if word2_indices and cbow_mean:\n", " neu1e = np.dot(gb, l2b) / len(word2_indices)\n", " else:\n", " neu1e = np.dot(gb, l2b)\n", " for i in word2_indices:\n", " model.syn0[i] += neu1e\n", "\n", " # 计算loss\n", " loss1 = -sum(np.log(expit(-1 * prod_term[1:])))\n", " loss2 = -np.log(expit(prod_term[0]))\n", " total_loss += (loss1 + loss2) / len(prod_term)\n", " count += 1\n", " model.running_training_loss += loss1 # for the sampled words\n", " model.running_training_loss += loss2 # for the output word\n", "\n", "\n", " return len([word for word in sentence if word is not None]), 1.0 * total_loss / count\n", "\n", "\n", "class Vocab(object):\n", " \"\"\"\n", " 用来存储词汇,如果用hs,则可以看成一个树结点\n", " \"\"\"\n", " def __init__(self, **kwargs):\n", " \"\"\"\n", " `count` 词频\n", " `index` 索引\n", " `left` 如果用hs,则表示左孩子\n", " `right` 如果用hs,则表示右孩子\n", " `code` 叶子结点的编码路径(从根结点到叶子结点的huffman编码)\n", " `point` 叶子结点的结点路径(从根结点到叶子结点经过的结点索引)\n", " \"\"\"\n", " self.count = 0\n", " self.index = -1\n", " self.left = None\n", " self.right = None\n", " self.code = []\n", " self.point = []\n", " self.__dict__.update(kwargs)\n", "\n", " def __lt__(self, vocab):\n", " return self.count < vocab.count\n", "\n", " def __str__(self):\n", " return '<' + ', '.join([ '{}:{}'.format(\n", " (_, self.__dict__[_]) for _ in self.__dict__\n", " if not self.__dict__[_].startswith('_'))]) + '>'\n", "\n", "\n", "class Word2Vec(SaveAndLoad):\n", " def __init__(self, sentences=None, size=100, alpha=0.025, \n", " window=5, min_count=5, seed=1, iters=5, \n", " workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \n", " sort_vocab=True):\n", " \"\"\"\n", " Word2Vec模型,其中sentences可以不给定,表示不训练模型。\n", " 此时初始化的模型可以进行加载模型等操作\n", "\n", " `sentences` 输入的用于训练的句子集合,可以是迭代器,也可以是一般的list等\n", " `size` 词向量维度,也就是训练的时候隐变量的维度\n", " `window` 一句话中的当前词与上下文词的最大距离,指单侧词窗\n", " `alpha` 初始学习率,学习过程中随着呈线性下降趋势\n", " `seed` 随机数种子\n", " `iters` 迭代次数\n", " `min_count` 用于过滤的最小词频\n", " `workers` CPU多核的时候可以使用多线程来加快训练\n", " `min_alpha` 最小学习率\n", " `hs` 是否使用hierarchical softmax,当hs>=1时表示使用hs,否则为negative sampling\n", " `sg` 是否使用skip-gram,如果sg>=1表示使用sg,否则为cbow\n", " `negative` 表示负样本个数,用于hs<=0的情况\n", " `sort_vocab` 表示是否对id2word按词频从高到低排序\n", "\n", " \"\"\"\n", " self.window = int(window)\n", " self.size = int(size)\n", " self.min_count = int(min_count)\n", " self.alpha = alpha\n", " self.min_alpha = min_alpha\n", " self.epochs = iters\n", " self.seed = seed\n", " self.random = random.RandomState(seed)\n", " self.workers = int(workers)\n", " self.hs = int(hs)\n", " self.sg = int(sg)\n", " self.negative = int(negative)\n", " self.sort_vocab = sort_vocab\n", " self.cum_table = None # negative sampling时才用到\n", " self.vocab = {}\n", " self.id2word = []\n", " self.syn0 = [] # 即所学的词向量\n", " self.syn1 = [] # 用于hs\n", " self.syn1neg = [] # 用于负采样\n", " self.running_training_loss = 0.\n", " self.layer1_size = self.size\n", " if sentences is not None:\n", " # 构建词表、包括构建哈夫曼树、设置参数\n", " self.build_vocab(sentences)\n", " if self.epochs is not None and self.epochs > 0:\n", " # 重复n次corpus语料\n", " sentences = RepeatCorpusNTimes(sentences, self.epochs)\n", " self.train(sentences)\n", "\n", "\n", " def get_latest_training_loss(self):\n", " return self.running_training_loss\n", "\n", "\n", " def __reset_vocab(self):\n", " \"\"\"\n", " 重置词典和词表\n", " \"\"\"\n", " self.vocab = {}\n", " self.word_list = []\n", "\n", " def build_vocab(self, sentences):\n", " \"\"\"\n", " 构建词典,筛除低频词,并给每个词赋予索引index\n", " \"\"\"\n", " # 统计词频\n", " vocab = {}\n", " for sentence in sentences:\n", " for word in sentence:\n", " vocab.setdefault(word, Vocab(count=0))\n", " vocab[word].count += 1\n", "\n", " # 重置词典\n", " self.__reset_vocab()\n", " # 构建词典\n", " for word, v in vocab.items():\n", " if v.count >= self.min_count:\n", " v.index = len(self.vocab)\n", " self.vocab[word] = v\n", " self.id2word.append(word)\n", " if self.sort_vocab:\n", " self.id2word = list(sorted(self.id2word, key=lambda x: self.vocab[x].count, reverse=True))\n", " for i, word in enumerate(self.id2word):\n", " self.vocab[word].index = i\n", " if self.hs >= 1:\n", " self.create_binary_tree()\n", " else:\n", " self.make_cum_table()\n", " self.reset_weights()\n", "\n", " def reset_weights(self):\n", " \"\"\"\n", " 初始化(重置)两个投影矩阵。\n", "\n", " syn0用于输入的词向量矩阵,\n", " syn1在输出为hs的时候为tree中每个内部结点\n", " (包括根结点共len(vocab)-1个)的向量矩阵。\n", " \"\"\"\n", " self.syn0 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n", " self.syn0 += (self.random.rand(len(self.vocab), self.layer1_size) - 0.5) / self.layer1_size\n", " if self.hs >= 1:\n", " # syn1的索引对应的不是词,而是huffman树内部结点\n", " # 因此syn0与syn1不能直接结合\n", " self.syn1 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n", " else:\n", " # syn0与syn1neg的索引对应的词一致,可以直接结合(如相加求平均)\n", " self.syn1neg = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n", " self.syn0norm = None\n", "\n", "\n", " def make_cum_table(self, power=0.75, domain=2**31 - 1):\n", " \"\"\"\n", " 构建用于negative sampling的cumulative table\n", "\n", " `power` 表示压缩值(论文中的值),可以有效防止负采样时候的长尾效应\n", " `domain` 表示采样点的范围,如果归一化到概率,则是[0, 1],用于轮盘采样\n", " \"\"\"\n", " vocab_size = len(self.id2word)\n", " self.cum_table = np.zeros(vocab_size, dtype=np.uint32)\n", " # compute sum of all power (Z in paper)\n", " train_words_pow = 0.0\n", " for word_index in range(vocab_size):\n", " train_words_pow += self.vocab[self.id2word[word_index]].count ** power\n", " cumulative = 0.0\n", " for word_index in range(vocab_size):\n", " cumulative += self.vocab[self.id2word[word_index]].count ** power\n", " self.cum_table[word_index] = round(cumulative / train_words_pow * domain)\n", " if len(self.cum_table) > 0:\n", " assert self.cum_table[-1] == domain\n", "\n", "\n", " def create_binary_tree(self):\n", " \"\"\"\n", " 构建huffman树,用于hierarchical softmax\n", " 叶子结点表示词汇。\n", " 内部结点包含该路径下的词频和与索引(该索引对应矩阵syn1)\n", " 叶子结点包含对应词汇的词频与索引(该索引对应矩阵syn0)\n", " 高频词出现在较短的路径上。\n", " 叶子结点共`vocab_size`个,而内部结点(包含root结点)共`vocab_size-1`个\n", " \"\"\"\n", " heap = list(self.vocab.values())\n", " print(heap, type(heap))\n", " heapq.heapify(heap)\n", " # 构建huffman二叉树,每次取词频最高的结点构成新结点\n", " for idx in range(len(self.vocab) - 1):\n", " min1, min2 = heapq.heappop(heap), heapq.heappop(heap)\n", " heapq.heappush(heap, Vocab(count=min1.count + min2.count, \n", " index=idx + len(self.vocab), left=min1, right=min2))\n", " # 此时heap里只有一个结点,即根结点\n", " if heap:\n", " # max_depth记录树最大深度\n", " # stack中三个元素分别代表:当前结点、当前结点的编码路径、当前结点的结点路径\n", " max_depth, stack = 0, [(heap[0], [], [])]\n", " # list可以当做stack用\n", " while stack:\n", " node, codes, points = stack.pop()\n", " # 表示一个叶子结点\n", " if node.index < len(self.vocab):\n", " node.code = codes\n", " node.point = points\n", " max_depth = max(len(codes), max_depth)\n", " else:\n", " # 表示一个内部结点\n", " # 编码路径由于是二进制,可以用unit8节省内存\n", " # 这里讲内部结点的index减去一个vocab的大小,是为了保持内部结点的索引对应矩阵syn1的索引(从0开始)\n", " points = np.asarray(list(points) + [node.index - len(self.vocab)], dtype=np.uint32)\n", " stack.append((node.left, np.asarray(list(codes) + [0], dtype=np.uint8), points))\n", " stack.append((node.right, np.asarray(list(codes) + [1], dtype=np.uint8), points))\n", " logger.info(\"built huffman tree with maximum node depth %i\" % max_depth)\n", " self.max_depth = max_depth\n", "\n", "\n", " def train(self, sentences, total_words=None, word_count=0, chunksize=100):\n", " \"\"\"\n", " Update the model's neural weights from a sequence of sentences (can be a once-only generator stream).\n", " Each sentence must be a list of utf8 strings.\n", " 更新词向量权重\n", " 每输入一个句子,表示一次迭代更新。\n", "\n", " `sentences` 输入的用于训练的句子集合\n", " `total_words` 总词频和\n", " `word_count` 词种类数\n", " `chunksize` 多线程的时候,每个线程一次性处理或被分配到的句子数\n", " \"\"\"\n", " logger.info(\"training model with %i workers on %i vocabulary and %i features\" % (self.workers, len(self.vocab), self.layer1_size))\n", "\n", " if not self.vocab:\n", " raise RuntimeError(\"you must first build vocabulary before training the model\")\n", "\n", " self.neg_labels = []\n", " if self.negative >= 1:\n", " # 负样本标签\n", " self.neg_labels = np.zeros(self.negative + 1)\n", " self.neg_labels[0] = 1.\n", " print(\"self.neg_labels >>:\", self.neg_labels)\n", "\n", " # 用来记录时间的起始与打log的判定时间,\n", " # `next_report`存到list是因为需要在多个线程内作为类对象被访问,`word_count`同理\n", " start, next_report = time.time(), [1.0]\n", " word_count, total_words = [word_count], total_words or sum(v.count for v in self.vocab.values())\n", " print(\"word_count:\", word_count)\n", " print(\"total_words:\", total_words)\n", " # 考虑缓冲区\n", " jobs = Queue(maxsize=2 * self.workers)\n", " # 因为有共享变量(如`word_count`),所以加锁\n", " lock = threading.Lock()\n", "\n", " def worker_train():\n", " \"\"\"Train the model, lifting lists of sentences from the jobs queue.\"\"\"\n", " # 多线程配给的memory\n", " work = zeros_aligned(self.layer1_size, dtype=REAL)\n", "\n", " while True:\n", " # 一个job就是一个chunksize条句子的数据集\n", " job = jobs.get()\n", " if job is None: # 数据读完,退出\n", " break\n", " # 在开始训练之前先减小训练速率\n", " alpha = max(self.min_alpha, self.alpha * (1 - 1.0 * word_count[0] / total_words / self.epochs))\n", " # 训练参数;统计当前job训练的词数,OOV的词不算\n", " if self.sg >= 1:\n", " func = train_sentence_sg\n", " else:\n", " func = train_sentence_cbow\n", " job_words, total_loss = np.sum([func(self, sentence, alpha, work) for sentence in job], axis=0)\n", " total_loss /= len(job)\n", " # 请求锁,用来更新`word_count`\n", " with lock:\n", " word_count[0] += job_words\n", " elapsed = time.time() - start\n", " # 防止一直打log\n", " if elapsed >= next_report[0]:\n", " logger.info(\"PROGRESS: at %.2f%% words, alpha %.05f, %.0f words/s, loss %.08f\" %\n", " (100.0 * word_count[0] / total_words / self.epochs, alpha, word_count[0] / elapsed if elapsed else 0.0, total_loss))\n", " # 可以让log保持一秒及一秒以上打一次\n", " next_report[0] = elapsed + 1.0\n", "\n", " workers = [threading.Thread(target=worker_train) for _ in range(self.workers)]\n", " for thread in workers:\n", " thread.daemon = True # 可以更便捷的用ctrl+c中断程序\n", " thread.start()\n", "\n", " # 把输入的string变成Vocab类,对于OOV则用None表示,并把数据拆分成多个job,存到queue里\n", " no_oov = ([self.vocab.get(word, None) for word in sentence] for sentence in sentences)\n", " for job_no, job in enumerate(grouper(no_oov, chunksize)):\n", " logger.debug(\"putting job #%i in the queue, qsize=%i\" % (job_no, jobs.qsize()))\n", " jobs.put(job)\n", " logger.info(\"reached the end of input; waiting to finish %i outstanding jobs\" % jobs.qsize())\n", " # 再补充`self.workers`个jobs,用来告知线程数据读取完成\n", " for _ in range(self.workers):\n", " jobs.put(None)\n", "\n", " for thread in workers:\n", " thread.join()\n", "\n", " elapsed = time.time() - start\n", " logger.info(\"training on %i words took %.1fs, %.0f words/s\" %\n", " (word_count[0], elapsed, word_count[0] / elapsed if elapsed else 0.0))\n", "\n", " return word_count[0]\n", "\n", " # ---辅助函数---\n", " def __getitem__(self, word):\n", " \"\"\"\n", " 返回word对应的词向量\n", " Example::\n", " >>> trained_model['woman']\n", " array([ -1.40128313e-02, ...]\n", " \"\"\"\n", " return self.syn0[self.vocab[word].index]\n", "\n", " def __contains__(self, word):\n", " return word in self.vocab\n", "\n", "\n", " def similarity(self, w1, w2):\n", " \"\"\"\n", " 计算词w1与w2的余弦相似度\n", " Example::\n", " >>> trained_model.similarity('woman', 'man')\n", " 0.73723527\n", " >>> trained_model.similarity('woman', 'woman')\n", " 1.0\n", " \"\"\"\n", " return np.dot(unitvec(self.syn0[w1]), unitvec(self.syn0[w2]))\n", "\n", "\n", " def init_sims(self):\n", " if getattr(self, 'syn0norm', None) is None:\n", " logger.info(\"precomputing L2-norms of word weight vectors\")\n", " self.syn0norm = np.vstack(unitvec(vec) for vec in self.syn0).astype(REAL)\n", "\n", "\n", " def most_similar(self, positive=[], negative=[], topn=10):\n", " \"\"\"\n", " 找到topn个最相似的词,即与postive最相似的且与negative最不相似的词\n", " 使用给定词的词向量余弦相似度的平均表示词类比\n", "\n", " Example::\n", " >>> model.most_similar(positive=['woman', 'king'], negative=['man'])\n", " [('queen', 0.50882536), ...]\n", " >>> model.most_similar('dog')\n", " \"\"\"\n", " self.init_sims()\n", " \n", " if isinstance(positive, str) and not negative:\n", " # allow calls like most_similar('dog'), as a shorthand for most_similar(['dog'])\n", " positive = [positive]\n", "\n", " # add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words\n", " positive = [(word, 1.0) if isinstance(word, str) else word for word in positive]\n", " negative = [(word, -1.0) if isinstance(word, str) else word for word in negative]\n", "\n", " # compute the weighted average of all words\n", " all_words, mean = set(), []\n", " for word, weight in positive + negative:\n", " if word in self.vocab:\n", " mean.append(weight * unitvec(self.syn0[self.vocab[word].index]))\n", " all_words.add(self.vocab[word].index)\n", " else:\n", " raise KeyError(\"word '%s' not in vocabulary\" % word)\n", " if not mean:\n", " raise ValueError(\"cannot compute similarity with no input\")\n", " mean = unitvec(np.asarray(mean).mean(axis=0)).astype(REAL)\n", "\n", " dists = np.dot(self.syn0norm, mean)\n", " if not topn:\n", " return dists\n", " best = np.argsort(dists)[::-1][:topn + len(all_words)]\n", " # ignore (don't return) words from the input\n", " result = [(self.id2word[sim], dists[sim]) for sim in best if sim not in all_words]\n", " return result[:topn]\n", "\n", "\n", " def accuracy(self, questions, restrict_vocab=30000):\n", " \"\"\"\n", " 用于计算模型的准确率(内部评价方法)\n", "\n", " `questions` 表示一个文件名,可以用\n", " https://code.google.com/p/word2vec/source/browse/trunk/questions-words.txt for an example.\n", " 的数据进行测试。该文件内每行包含四元组的词,文件包含多个section,每个section分开测试,最终合成结果。\n", "\n", " `restrict_vocab`用来筛选vocab中词频最高的词。\n", " \"\"\"\n", " ok_vocab = dict(sorted(self.vocab.iteritems(), key=lambda item: -item[1].count)[:restrict_vocab])\n", " ok_index = set(v.index for v in ok_vocab.values())\n", "\n", " # 计算内部评价的准确率\n", " def log_accuracy(section):\n", " correct, incorrect = section['correct'], section['incorrect']\n", " if correct + incorrect > 0:\n", " logger.info(\"%s: %.1f%% (%i/%i)\" %\n", " (section['section'], 100.0 * correct / (correct + incorrect),\n", " correct, correct + incorrect))\n", "\n", " sections, section = [], None\n", " for line_no, line in enumerate(open(questions)):\n", " if line.startswith(': '):\n", " # 把上一个section存起来,并计算该section的accuracy\n", " if section:\n", " sections.append(section)\n", " log_accuracy(section)\n", " section = {'section': line.lstrip(': ').strip(), 'correct': 0, 'incorrect': 0}\n", " else:\n", " if not section:\n", " raise ValueError(\"missing section header before line #%i in %s\" % (line_no, questions))\n", " try:\n", " # 得到4个词\n", " a, b, c, expected = [word.lower() for word in line.split()]\n", " except:\n", " logger.info(\"skipping invalid line #%i in %s\" % (line_no, questions))\n", " # 去掉(a, b, c, expected)中包含OOV的元组\n", " if a not in ok_vocab or b not in ok_vocab or c not in ok_vocab or expected not in ok_vocab:\n", " logger.debug(\"skipping line #%i with OOV words: %s\" % (line_no, line))\n", " continue\n", "\n", " ignore = set(self.vocab[v].index for v in [a, b, c])\n", " predicted = None\n", " # 找到positive为(b, c)且negative为a的最相似的词\n", " # 如果该词为expected,则正确数累加一,否则错误数累加一\n", " for index in np.argsort(self.most_similar(positive=[b, c], negative=[a], topn=False))[::-1]:\n", " if index in ok_index and index not in ignore:\n", " predicted = self.id2word[index]\n", " if predicted != expected:\n", " logger.debug(\"%s: expected %s, predicted %s\" % (line.strip(), expected, predicted))\n", " break\n", " section['correct' if predicted == expected else 'incorrect'] += 1\n", " if section:\n", " # 保存最后一个section\n", " sections.append(section)\n", " log_accuracy(section)\n", "\n", " total = {'section': 'total', 'correct': sum(s['correct'] for s in sections), 'incorrect': sum(s['incorrect'] for s in sections)}\n", " log_accuracy(total)\n", " sections.append(total)\n", " return sections" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2021-01-29 19:53:07,421 : MainThread : INFO : finished training model\n", "2021-01-29 19:53:07,425 : MainThread : INFO : built huffman tree with maximum node depth 5\n", "2021-01-29 19:53:07,427 : MainThread : INFO : training model with 2 workers on 19 vocabulary and 5 features\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "[['human', 'interface', 'computer'], ['survey', 'user', 'computer', 'system', 'response', 'time'], ['eps', 'user', 'interface', 'system'], ['system', 'human', 'system', 'eps'], ['user', 'response', 'time'], ['trees'], ['graph', 'trees'], ['graph', 'minors', 'trees'], ['graph', 'minors', 'survey'], ['I', 'like', 'graph', 'and', 'stuff'], ['I', 'like', 'trees', 'and', 'stuff'], ['Sometimes', 'I', 'build', 'a', 'graph'], ['Sometimes', 'I', 'build', 'trees']]\n", "------------------------------------------------------------\n", "[<__main__.Vocab object at 0x7fb1680839b0>, <__main__.Vocab object at 0x7fb168083978>, <__main__.Vocab object at 0x7fb168083860>, <__main__.Vocab object at 0x7fb1680838d0>, <__main__.Vocab object at 0x7fb168083908>, <__main__.Vocab object at 0x7fb168083898>, <__main__.Vocab object at 0x7fb1680837f0>, <__main__.Vocab object at 0x7fb1680834a8>, <__main__.Vocab object at 0x7fb1680834e0>, <__main__.Vocab object at 0x7fb168083518>, <__main__.Vocab object at 0x7fb168083438>, <__main__.Vocab object at 0x7fb1680839e8>, <__main__.Vocab object at 0x7fb168083a20>, <__main__.Vocab object at 0x7fb168083a90>, <__main__.Vocab object at 0x7fb168083a58>, <__main__.Vocab object at 0x7fb168083ac8>, <__main__.Vocab object at 0x7fb168083b00>, <__main__.Vocab object at 0x7fb168083ba8>, <__main__.Vocab object at 0x7fb168083b38>] \n", "self.neg_labels >>: [1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]\n", "word_count: [0]\n", "total_words: 48\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "2021-01-29 19:53:08,461 : Thread-4 : INFO : PROGRESS: at 36.91% words, alpha 0.01654, 8575 words/s, loss 0.37933202\n", "2021-01-29 19:53:09,469 : Thread-4 : INFO : PROGRESS: at 73.85% words, alpha 0.00731, 8683 words/s, loss 0.37614270\n", "2021-01-29 19:53:09,962 : MainThread : INFO : reached the end of input; waiting to finish 4 outstanding jobs\n", "2021-01-29 19:53:10,170 : MainThread : INFO : training on 24000 words took 2.7s, 8752 words/s\n", "2021-01-29 19:53:10,170 : MainThread : INFO : precomputing L2-norms of word weight vectors\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "graph similar: trees\n", "elapsed time:2.7484989166259766s\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/ipykernel_launcher.py:519: FutureWarning: arrays to stack must be passed as a \"sequence\" type such as list or tuple. Support for non-sequence iterables such as generators is deprecated as of NumPy 1.16 and will raise an error in the future.\n" ] } ], "source": [ "if __name__ == '__main__':\n", "# if not os.path.exists('../data'):\n", "# os.mkdir('../data')\n", "# # 训练语料\n", "# text8 = Text8Corpus('../data/text8.zip', sent_len=20, sent_num=200)\n", "# # 训练模型\n", "# logging.info(\"start training model\")\n", "\n", " # skip-gram与negative sampling\n", " # model = Word2Vec(sentences=text8, size=100, alpha=0.025,\n", " # window=3, min_count=5, seed=1, iters=1, \n", " # workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \n", " # sort_vocab=True)\n", "\n", " # cbow与negative sampling\n", " # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n", " # \t\t\t window=3, min_count=5, seed=1, iters=1, \n", " # \t\t\t workers=1, min_alpha=0.0001, hs=0, sg=1, negative=10, \n", " # \t\t\t sort_vocab=True)\n", "\n", " # cbow与hierarchical softmax\n", " # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n", " # \t\t\t window=3, min_count=5, seed=1, iters=1, \n", " # \t\t\t workers=1, min_alpha=0.0001, hs=1, sg=0, negative=10, \n", " # \t\t\t sort_vocab=True)\n", "\n", " # skip-gram与hierarchical softmax\n", " # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n", " # \t\t\t window=3, min_count=5, seed=1, iters=1, \n", " # \t\t\t workers=1, min_alpha=0.0001, hs=1, sg=1, negative=10, \n", " # \t\t\t sort_vocab=True)\n", "\n", " logging.info(\"finished training model\")\n", "\n", " # 简单例子测试\n", " test_corpus = (\"\"\"human interface computer\n", " survey user computer system response time\n", " eps user interface system\n", " system human system eps\n", " user response time\n", " trees\n", " graph trees\n", " graph minors trees\n", " graph minors survey\n", " I like graph and stuff\n", " I like trees and stuff\n", " Sometimes I build a graph\n", " Sometimes I build trees\"\"\").split(\"\\n\")\n", " start = time.time()\n", " test_corpus = [_.split() for _ in test_corpus]\n", " print(test_corpus)\n", " print(\"---\"*20)\n", " model = Word2Vec(sentences=test_corpus, size=5, alpha=0.025, \n", " window=5, min_count=1, seed=1, iters=500, \n", " workers=2, min_alpha=0.0001, hs=1, sg=1, negative=10, \n", " sort_vocab=True)\n", " similar = model.most_similar('graph', topn=3)[0][0]\n", " print(\"graph similar:\", similar)\n", " print('elapsed time:{}s'.format(time.time() - start))\n", " assert similar == 'trees'\n", "\n", " # 测试模型,内部评价\n", " # logging.info(\"start evaluate model\")\n", " # model.accuracy('../data/questions-words.txt')\n", " # logging.info(\"finished evaluate model\")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.9" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: word2vector/word2vec/word2vec.py ================================================ # -*- encoding:utf8 -*- from __future__ import print_function from __future__ import division import numpy as np import json import pickle import wget import os import zipfile import heapq import time import itertools import threading import numpy.random as random import sys import scipy import scipy.sparse import math from multiprocessing.pool import ThreadPool from Queue import Queue from numpy import float32 as REAL import logging logging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO) logger = logging.getLogger('word2vec') from utils import * """ # Introduction A simple code version for word2vec # Reference [1] https://www.cnblogs.com/pinard/p/7243513.html [2] http://www.cnblogs.com/pinard/p/7249903.html [3] https://github.com/RaRe-Technologies/gensim/blob/develop/gensim/models/word2vec.py [4] https://github.com/klb3713/word2vec/blob/master/python/word2vec.py """ # ----- word2vec ----- # gensim里用的cython版本。 # 本来用cython版本的train_sentence会快很多,不过主要介绍原理,所以都用python介绍。 # Word2Vec类中使用的多线程可以在一定程度上加快速度。 def train_sentence_sg(model, sentence, alpha, work=None): """ skip-gram `model` 训练的词向量模型 `sentence` 一个词列表,表示一个句子 `alpha` 学习率 """ total_loss = 0. count = 1 # 遍历每个句子的词,该词`word`作为中心词 for pos, word in enumerate(sentence): if word is None: # 跳过OOV的词 continue # 设定一个随机的窗口大小,最终真正的单侧窗口大小为window - reduced_window reduced_window = model.random.randint(model.window) # 遍历两侧词窗内的所有词,分别预测 start = max(0, pos - model.window + reduced_window) for pos2, word2 in enumerate(sentence[start : pos + model.window + 1 - reduced_window], start): if pos2 == pos or word2 is None: # 跳过OOV的词以及中心词`word` continue # 得到输入词向量v_w # 此处本应该是`word`而不是`word2`,即求P(word2|word)的极大似然, # 不过这样的话,输入的投影矩阵syn0在每个词窗下只能更新一个词多次, # 因此此处改成求对称的P(word|word2)的极大似然,这样可以让输入的投影矩阵syn0在每个词窗下更新多个词 l1 = model.syn0[word2.index] if model.hs >= 1: # `outer((1 - word.code - fa), l1)`为关于l2a的梯度 # `dot((1 - word.code - fa), l2a)`为关于l1的梯度 # `word.point`是一个array,表示抽取出所有的当前叶子结点的结点路径 # `l2a`是一个矩阵,shape为(codelen, layer1_size) l2a = model.syn1[word.point] # 隐层输出,`fa`的shape为(1, codelen),每个值表示code预测为1(向树右侧走)的概率 fa = expit(np.dot(l1, l2a.T)) # shape为(1, codelen) ga = (1 - word.code - fa) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(codelen, layer1_size) model.syn1[word.point] += np.outer(ga, l1) # learn hidden -> output # 更新输入矩阵 l1 += np.dot(ga, l2a) # 计算loss sgn = (-1.0)**word.code # ch function, 0-> 1, 1 -> -1 loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T)))) total_loss += loss / len(word.code) count += 1 model.running_training_loss += loss else: # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度 # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度 # 从构建的`cum_table`中找到`negative`个负样本 neg_indices = [word.index] while len(neg_indices) < model.negative + 1: w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1])) if w != word.index: neg_indices.append(w) # `l2b`是一个矩阵,shape为(negative+1, layer1_size) l2b = model.syn1neg[neg_indices] # shape为(1, negative+1) prod_term = np.dot(l1, l2b.T) # shape为(1, negative+1) fb = expit(prod_term) # propagate hidden -> output # shape为(1, negative+1) gb = (model.neg_labels - fb) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(negative+1, layer1_size) model.syn1neg[neg_indices] += np.outer(gb, l1) # learn hidden -> output # 更新输入矩阵 l1 += np.dot(gb, l2b) # save error # 计算loss loss1 = -sum(np.log(expit(-1 * prod_term[1:]))) loss2 = -np.log(expit(prod_term[0])) total_loss += (loss1 + loss2) / len(prod_term) count += 1 model.running_training_loss += loss1 # for the sampled words model.running_training_loss += loss2 # for the output word # 返回句子中的非OOV的词的个数 return len([word for word in sentence if word is not None]), 1.0 * total_loss / count def train_sentence_cbow(model, sentence, alpha, work=None, cbow_mean=True): """ cbow `model` 训练的词向量模型 `sentence` 一个词列表,表示一个句子 `alpha` 学习率 """ total_loss = 0. count = 1 for pos, word in enumerate(sentence): if word is None: continue reduced_window = model.random.randint(model.window) start = max(0, pos - model.window + reduced_window) window_pos = enumerate(sentence[start:(pos + model.window + 1 - reduced_window)], start) word2_indices = [word2.index for pos2, word2 in window_pos if (word2 is not None and pos2 != pos)] # (1, layer1_size) l1 = np.sum(model.syn0[word2_indices], axis=0) if word2_indices and cbow_mean: l1 /= len(word2_indices) if model.hs >= 1: # `outer((1 - word.code - fa), l1)`为关于l2a的梯度 # `dot((1 - word.code - fa), l2a)`为关于l1的梯度 # shape为(codelen, layer1_size) l2a = model.syn1[word.point] # shape为(1, codelen) fa = expit(np.dot(l1, l2a.T)) # shape为(1, codelen) ga = (1 - word.code - fa) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(codelen, layer1_size) model.syn1[word.point] += np.outer(ga, l1) # learn hidden -> output # 更新输入矩阵 if word2_indices and cbow_mean: neu1e = np.dot(ga, l2a) / len(word2_indices) else: neu1e = np.dot(ga, l2a) for i in word2_indices: model.syn0[i] += neu1e # 计算loss sgn = (-1.0)**word.code # ch function, 0-> 1, 1 -> -1 loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T)))) total_loss += loss / len(word.code) count += 1 model.running_training_loss += loss else: # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度 # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度 # 从构建的`cum_table`中找到`negative`个负样本 neg_indices = [word.index] while len(neg_indices) < model.negative + 1: w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1])) if w != word.index: neg_indices.append(w) # `l2b`是一个矩阵,shape为(negative+1, layer1_size) l2b = model.syn1neg[neg_indices] # shape为(1, negative+1) prod_term = np.dot(l1, l2b.T) # shape为(1, negative+1) fb = expit(prod_term) # propagate hidden -> output # shape为(1, negative+1) gb = (model.neg_labels - fb) * alpha # vector of error gradients multiplied by the learning rate # 更新输出矩阵,shape为(negative+1, layer1_size) model.syn1neg[neg_indices] += np.outer(gb, l1) # learn hidden -> output # 更新输入矩阵 if word2_indices and cbow_mean: neu1e = np.dot(gb, l2b) / len(word2_indices) else: neu1e = np.dot(gb, l2b) for i in word2_indices: model.syn0[i] += neu1e # 计算loss loss1 = -sum(np.log(expit(-1 * prod_term[1:]))) loss2 = -np.log(expit(prod_term[0])) total_loss += (loss1 + loss2) / len(prod_term) count += 1 model.running_training_loss += loss1 # for the sampled words model.running_training_loss += loss2 # for the output word return len([word for word in sentence if word is not None]), 1.0 * total_loss / count class Vocab(object): """ 用来存储词汇,如果用hs,则可以看成一个树结点 """ def __init__(self, **kwargs): """ `count` 词频 `index` 索引 `left` 如果用hs,则表示左孩子 `right` 如果用hs,则表示右孩子 `code` 叶子结点的编码路径(从根结点到叶子结点的huffman编码) `point` 叶子结点的结点路径(从根结点到叶子结点经过的结点索引) """ self.count = 0 self.index = -1 self.left = None self.right = None self.code = [] self.point = [] self.__dict__.update(kwargs) def __lt__(self, vocab): return self.count < vocab.count def __str__(self): return '<' + ', '.join([ '{}:{}'.format( (_, self.__dict__[_]) for _ in self.__dict__ if not self.__dict__[_].startswith('_'))]) + '>' class Word2Vec(SaveAndLoad): def __init__(self, sentences=None, size=100, alpha=0.025, window=5, min_count=5, seed=1, iters=5, workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, sort_vocab=True): """ Word2Vec模型,其中sentences可以不给定,表示不训练模型。 此时初始化的模型可以进行加载模型等操作 `sentences` 输入的用于训练的句子集合,可以是迭代器,也可以是一般的list等 `size` 词向量维度,也就是训练的时候隐变量的维度 `window` 一句话中的当前词与上下文词的最大距离,指单侧词窗 `alpha` 初始学习率,学习过程中随着呈线性下降趋势 `seed` 随机数种子 `iters` 迭代次数 `min_count` 用于过滤的最小词频 `workers` CPU多核的时候可以使用多线程来加快训练 `min_alpha` 最小学习率 `hs` 是否使用hierarchical softmax,当hs>=1时表示使用hs,否则为negative sampling `sg` 是否使用skip-gram,如果sg>=1表示使用sg,否则为cbow `negative` 表示负样本个数,用于hs<=0的情况 `sort_vocab` 表示是否对id2word按词频从高到低排序 """ self.window = int(window) self.size = int(size) self.min_count = int(min_count) self.alpha = alpha self.min_alpha = min_alpha self.epochs = iters self.seed = seed self.random = random.RandomState(seed) self.workers = int(workers) self.hs = int(hs) self.sg = int(sg) self.negative = int(negative) self.sort_vocab = sort_vocab self.cum_table = None # negative sampling时才用到 self.vocab = {} self.id2word = [] self.syn0 = [] # 即所学的词向量 self.syn1 = [] # 用于hs self.syn1neg = [] # 用于负采样 self.running_training_loss = 0. self.layer1_size = self.size if sentences is not None: self.build_vocab(sentences) if self.epochs is not None and self.epochs > 0: # 重复n次corpus语料 sentences = RepeatCorpusNTimes(sentences, self.epochs) self.train(sentences) def get_latest_training_loss(self): return self.running_training_loss def __reset_vocab(self): """ 重置词典和词表 """ self.vocab = {} self.word_list = [] def build_vocab(self, sentences): """ 构建词典,筛除低频词,并给每个词赋予索引index """ # 统计词频 vocab = {} for sentence in sentences: for word in sentence: vocab.setdefault(word, Vocab(count=0)) vocab[word].count += 1 # 重置词典 self.__reset_vocab() # 构建词典 for word, v in vocab.iteritems(): if v.count >= self.min_count: v.index = len(self.vocab) self.vocab[word] = v self.id2word.append(word) if self.sort_vocab: self.id2word = list(sorted(self.id2word, key=lambda x: self.vocab[x].count, reverse=True)) for i, word in enumerate(self.id2word): self.vocab[word].index = i if self.hs >= 1: self.create_binary_tree() else: self.make_cum_table() self.reset_weights() def reset_weights(self): """ 初始化(重置)两个投影矩阵。 syn0用于输入的词向量矩阵, syn1在输出为hs的时候为tree中每个内部结点 (包括根结点共len(vocab)-1个)的向量矩阵。 """ self.syn0 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL) self.syn0 += (self.random.rand(len(self.vocab), self.layer1_size) - 0.5) / self.layer1_size if self.hs >= 1: # syn1的索引对应的不是词,而是huffman树内部结点 # 因此syn0与syn1不能直接结合 self.syn1 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL) else: # syn0与syn1neg的索引对应的词一致,可以直接结合(如相加求平均) self.syn1neg = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL) self.syn0norm = None def make_cum_table(self, power=0.75, domain=2**31 - 1): """ 构建用于negative sampling的cumulative table `power` 表示压缩值(论文中的值),可以有效防止负采样时候的长尾效应 `domain` 表示采样点的范围,如果归一化到概率,则是[0, 1],用于轮盘采样 """ vocab_size = len(self.id2word) self.cum_table = np.zeros(vocab_size, dtype=np.uint32) # compute sum of all power (Z in paper) train_words_pow = 0.0 for word_index in xrange(vocab_size): train_words_pow += self.vocab[self.id2word[word_index]].count ** power cumulative = 0.0 for word_index in xrange(vocab_size): cumulative += self.vocab[self.id2word[word_index]].count ** power self.cum_table[word_index] = round(cumulative / train_words_pow * domain) if len(self.cum_table) > 0: assert self.cum_table[-1] == domain def create_binary_tree(self): """ 构建huffman树,用于hierarchical softmax 叶子结点表示词汇。 内部结点包含该路径下的词频和与索引(该索引对应矩阵syn1) 叶子结点包含对应词汇的词频与索引(该索引对应矩阵syn0) 高频词出现在较短的路径上。 叶子结点共`vocab_size`个,而内部结点(包含root结点)共`vocab_size-1`个 """ heap = self.vocab.values() heapq.heapify(heap) # 构建huffman二叉树,每次取词频最高的结点构成新结点 for idx in xrange(len(self.vocab) - 1): min1, min2 = heapq.heappop(heap), heapq.heappop(heap) heapq.heappush(heap, Vocab(count=min1.count + min2.count, index=idx + len(self.vocab), left=min1, right=min2)) # 此时heap里只有一个结点,即根结点 if heap: # max_depth记录树最大深度 # stack中三个元素分别代表:当前结点、当前结点的编码路径、当前结点的结点路径 max_depth, stack = 0, [(heap[0], [], [])] # list可以当做stack用 while stack: node, codes, points = stack.pop() # 表示一个叶子结点 if node.index < len(self.vocab): node.code = codes node.point = points max_depth = max(len(codes), max_depth) else: # 表示一个内部结点 # 编码路径由于是二进制,可以用unit8节省内存 # 这里讲内部结点的index减去一个vocab的大小,是为了保持内部结点的索引对应矩阵syn1的索引(从0开始) points = np.asarray(list(points) + [node.index - len(self.vocab)], dtype=np.uint32) stack.append((node.left, np.asarray(list(codes) + [0], dtype=np.uint8), points)) stack.append((node.right, np.asarray(list(codes) + [1], dtype=np.uint8), points)) logger.info("built huffman tree with maximum node depth %i" % max_depth) self.max_depth = max_depth def train(self, sentences, total_words=None, word_count=0, chunksize=100): """ Update the model's neural weights from a sequence of sentences (can be a once-only generator stream). Each sentence must be a list of utf8 strings. 更新词向量权重 每输入一个句子,表示一次迭代更新。 `sentences` 输入的用于训练的句子集合 `total_words` 总词频和 `word_count` 词种类数 `chunksize` 多线程的时候,每个线程一次性处理或被分配到的句子数 """ logger.info("training model with %i workers on %i vocabulary and %i features" % (self.workers, len(self.vocab), self.layer1_size)) if not self.vocab: raise RuntimeError("you must first build vocabulary before training the model") self.neg_labels = [] if self.negative >= 1: # 负样本标签 self.neg_labels = np.zeros(self.negative + 1) self.neg_labels[0] = 1. # 用来记录时间的起始与打log的判定时间, # `next_report`存到list是因为需要在多个线程内作为类对象被访问,`word_count`同理 start, next_report = time.time(), [1.0] word_count, total_words = [word_count], total_words or sum(v.count for v in self.vocab.itervalues()) # 考虑缓冲区 jobs = Queue(maxsize=2 * self.workers) # 因为有共享变量(如`word_count`),所以加锁 lock = threading.Lock() def worker_train(): """Train the model, lifting lists of sentences from the jobs queue.""" # 多线程配给的memory work = zeros_aligned(self.layer1_size, dtype=REAL) while True: # 一个job就是一个chunksize条句子的数据集 job = jobs.get() if job is None: # 数据读完,退出 break # 在开始训练之前先减小训练速率 alpha = max(self.min_alpha, self.alpha * (1 - 1.0 * word_count[0] / total_words / self.epochs)) # 训练参数;统计当前job训练的词数,OOV的词不算 if self.sg >= 1: func = train_sentence_sg else: func = train_sentence_cbow job_words, total_loss = np.sum([func(self, sentence, alpha, work) for sentence in job], axis=0) total_loss /= len(job) # 请求锁,用来更新`word_count` with lock: word_count[0] += job_words elapsed = time.time() - start # 防止一直打log if elapsed >= next_report[0]: logger.info("PROGRESS: at %.2f%% words, alpha %.05f, %.0f words/s, loss %.08f" % (100.0 * word_count[0] / total_words / self.epochs, alpha, word_count[0] / elapsed if elapsed else 0.0, total_loss)) # 可以让log保持一秒及一秒以上打一次 next_report[0] = elapsed + 1.0 workers = [threading.Thread(target=worker_train) for _ in xrange(self.workers)] for thread in workers: thread.daemon = True # 可以更便捷的用ctrl+c中断程序 thread.start() # 把输入的string变成Vocab类,对于OOV则用None表示,并把数据拆分成多个job,存到queue里 no_oov = ([self.vocab.get(word, None) for word in sentence] for sentence in sentences) for job_no, job in enumerate(grouper(no_oov, chunksize)): logger.debug("putting job #%i in the queue, qsize=%i" % (job_no, jobs.qsize())) jobs.put(job) logger.info("reached the end of input; waiting to finish %i outstanding jobs" % jobs.qsize()) # 再补充`self.workers`个jobs,用来告知线程数据读取完成 for _ in xrange(self.workers): jobs.put(None) for thread in workers: thread.join() elapsed = time.time() - start logger.info("training on %i words took %.1fs, %.0f words/s" % (word_count[0], elapsed, word_count[0] / elapsed if elapsed else 0.0)) return word_count[0] # ---辅助函数--- def __getitem__(self, word): """ 返回word对应的词向量 Example:: >>> trained_model['woman'] array([ -1.40128313e-02, ...] """ return self.syn0[self.vocab[word].index] def __contains__(self, word): return word in self.vocab def similarity(self, w1, w2): """ 计算词w1与w2的余弦相似度 Example:: >>> trained_model.similarity('woman', 'man') 0.73723527 >>> trained_model.similarity('woman', 'woman') 1.0 """ return np.dot(unitvec(self.syn0[w1]), unitvec(self.syn0[w2])) def init_sims(self): if getattr(self, 'syn0norm', None) is None: logger.info("precomputing L2-norms of word weight vectors") self.syn0norm = np.vstack(unitvec(vec) for vec in self.syn0).astype(REAL) def most_similar(self, positive=[], negative=[], topn=10): """ 找到topn个最相似的词,即与postive最相似的且与negative最不相似的词 使用给定词的词向量余弦相似度的平均表示词类比 Example:: >>> model.most_similar(positive=['woman', 'king'], negative=['man']) [('queen', 0.50882536), ...] >>> model.most_similar('dog') """ self.init_sims() if isinstance(positive, basestring) and not negative: # allow calls like most_similar('dog'), as a shorthand for most_similar(['dog']) positive = [positive] # add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words positive = [(word, 1.0) if isinstance(word, basestring) else word for word in positive] negative = [(word, -1.0) if isinstance(word, basestring) else word for word in negative] # compute the weighted average of all words all_words, mean = set(), [] for word, weight in positive + negative: if word in self.vocab: mean.append(weight * unitvec(self.syn0[self.vocab[word].index])) all_words.add(self.vocab[word].index) else: raise KeyError("word '%s' not in vocabulary" % word) if not mean: raise ValueError("cannot compute similarity with no input") mean = unitvec(np.asarray(mean).mean(axis=0)).astype(REAL) dists = np.dot(self.syn0norm, mean) if not topn: return dists best = np.argsort(dists)[::-1][:topn + len(all_words)] # ignore (don't return) words from the input result = [(self.id2word[sim], dists[sim]) for sim in best if sim not in all_words] return result[:topn] def accuracy(self, questions, restrict_vocab=30000): """ 用于计算模型的准确率(内部评价方法) `questions` 表示一个文件名,可以用 https://code.google.com/p/word2vec/source/browse/trunk/questions-words.txt for an example. 的数据进行测试。该文件内每行包含四元组的词,文件包含多个section,每个section分开测试,最终合成结果。 `restrict_vocab`用来筛选vocab中词频最高的词。 """ ok_vocab = dict(sorted(self.vocab.iteritems(), key=lambda item: -item[1].count)[:restrict_vocab]) ok_index = set(v.index for v in ok_vocab.itervalues()) # 计算内部评价的准确率 def log_accuracy(section): correct, incorrect = section['correct'], section['incorrect'] if correct + incorrect > 0: logger.info("%s: %.1f%% (%i/%i)" % (section['section'], 100.0 * correct / (correct + incorrect), correct, correct + incorrect)) sections, section = [], None for line_no, line in enumerate(open(questions)): if line.startswith(': '): # 把上一个section存起来,并计算该section的accuracy if section: sections.append(section) log_accuracy(section) section = {'section': line.lstrip(': ').strip(), 'correct': 0, 'incorrect': 0} else: if not section: raise ValueError("missing section header before line #%i in %s" % (line_no, questions)) try: # 得到4个词 a, b, c, expected = [word.lower() for word in line.split()] except: logger.info("skipping invalid line #%i in %s" % (line_no, questions)) # 去掉(a, b, c, expected)中包含OOV的元组 if a not in ok_vocab or b not in ok_vocab or c not in ok_vocab or expected not in ok_vocab: logger.debug("skipping line #%i with OOV words: %s" % (line_no, line)) continue ignore = set(self.vocab[v].index for v in [a, b, c]) predicted = None # 找到positive为(b, c)且negative为a的最相似的词 # 如果该词为expected,则正确数累加一,否则错误数累加一 for index in np.argsort(self.most_similar(positive=[b, c], negative=[a], topn=False))[::-1]: if index in ok_index and index not in ignore: predicted = self.id2word[index] if predicted != expected: logger.debug("%s: expected %s, predicted %s" % (line.strip(), expected, predicted)) break section['correct' if predicted == expected else 'incorrect'] += 1 if section: # 保存最后一个section sections.append(section) log_accuracy(section) total = {'section': 'total', 'correct': sum(s['correct'] for s in sections), 'incorrect': sum(s['incorrect'] for s in sections)} log_accuracy(total) sections.append(total) return sections if __name__ == '__main__': if not os.path.exists('../data'): os.mkdir('../data') # 训练语料 text8 = Text8Corpus('../data/text8.zip', sent_len=20, sent_num=200) # 训练模型 logging.info("start training model") # skip-gram与negative sampling # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, # sort_vocab=True) # cbow与negative sampling # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=0, sg=1, negative=10, # sort_vocab=True) # cbow与hierarchical softmax # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=1, sg=0, negative=10, # sort_vocab=True) # skip-gram与hierarchical softmax # model = Word2Vec(sentences=text8, size=100, alpha=0.025, # window=3, min_count=5, seed=1, iters=1, # workers=1, min_alpha=0.0001, hs=1, sg=1, negative=10, # sort_vocab=True) logging.info("finished training model") # 简单例子测试 test_corpus = ("""human interface computer survey user computer system response time eps user interface system system human system eps user response time trees graph trees graph minors trees graph minors survey I like graph and stuff I like trees and stuff Sometimes I build a graph Sometimes I build trees""").split("\n") start = time.time() test_corpus = [_.split() for _ in test_corpus] model = Word2Vec(sentences=test_corpus, size=5, alpha=0.025, window=5, min_count=1, seed=1, iters=500, workers=2, min_alpha=0.0001, hs=1, sg=1, negative=10, sort_vocab=True) similar = model.most_similar('graph', topn=1)[0][0] print("graph similar:", similar) print('elapsed time:{}s'.format(time.time() - start)) assert similar == 'trees' # 测试模型,内部评价 # logging.info("start evaluate model") # model.accuracy('../data/questions-words.txt') # logging.info("finished evaluate model")